diff --git a/.circleci/config.yml b/.circleci/config.yml index b5d94298735..32e27a37aa9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -483,11 +483,32 @@ jobs: name: Bundle bundle-stackgl/index.js command: cd stackgl_modules && cp index.js INDEX.js && npm run bundle-stackgl - run: - name: Test stackgl_modules/index.js diff - If failed please remember this file in auto generated and you should not modify it directly until a dependeny change. To suggest changes please submit pull request to the relevant dependency. + name: Test stackgl_modules/index.js diff - If failed please remember this file in auto generated and you should not modify it directly until a dependency change. To suggest changes please submit pull request to the relevant dependency. command: diff --unified --color stackgl_modules/INDEX.js stackgl_modules/index.js - store_artifacts: path: stackgl_modules/index.js destination: stackgl_modules/index.js + + test-topojson-build: + docker: + - image: cimg/node:18.20.4 + working_directory: ~/plotly.js + steps: + - checkout + - run: + name: Set up build environment + command: cd topojson && npm ci + - run: + name: Build topojson + command: cd topojson && mv dist dist_backup && npm run build + - run: + name: Compare existing files with newly built files. Any difference is a failure. A failure might mean that the source data changed. + command: diff -qr topojson/dist topojson/dist_backup + - run: + name: Compress artifacts + command: tar -cvzf topojson.tar topojson/dist + - store_artifacts: + path: topojson.tar workflows: version: 2 @@ -560,3 +581,5 @@ workflows: - publish-dist-node-v22 - test-stackgl-bundle + + - test-topojson-build diff --git a/devtools/test_dashboard/devtools.js b/devtools/test_dashboard/devtools.js index 39b5bc38400..2bc5cdbc366 100644 --- a/devtools/test_dashboard/devtools.js +++ b/devtools/test_dashboard/devtools.js @@ -17,8 +17,7 @@ var Tabs = { Plotly.setPlotConfig({ // use local topojson files - topojsonURL: '../../node_modules/sane-topojson/dist/', - + topojsonURL: "../../topojson/dist", // register mapbox access token // run `npm run preset` if you haven't yet mapboxAccessToken: credentials.MAPBOX_ACCESS_TOKEN, @@ -268,4 +267,3 @@ function handleOnLoad() { Tabs.setPlotConfig(); plotFromHash(); } - diff --git a/draftlogs/7393_change.md b/draftlogs/7393_change.md new file mode 100644 index 00000000000..6904f37b2cd --- /dev/null +++ b/draftlogs/7393_change.md @@ -0,0 +1 @@ +- Switch to United Nations (coastlines, countries, land, ocean) + Natural Earth (lakes, rivers, subunits) geodata for building topojson used in geo plot diff --git a/package-lock.json b/package-lock.json index 4062c814583..8b12aaf2fc3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -112,7 +112,6 @@ "raw-loader": "^4.0.2", "read-last-lines": "^1.8.0", "run-series": "^1.1.9", - "sane-topojson": "^4.0.0", "sass": "^1.78.0", "stream-browserify": "^3.0.0", "style-loader": "^4.0.0", @@ -1399,25 +1398,23 @@ } }, "node_modules/@turf/helpers": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-7.1.0.tgz", - "integrity": "sha512-dTeILEUVeNbaEeoZUOhxH5auv7WWlOShbx7QSd4s0T4Z0/iz90z9yaVCtZOLbU89umKotwKaJQltBNO9CzVgaQ==", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-7.2.0.tgz", + "integrity": "sha512-cXo7bKNZoa7aC7ydLmUR02oB3IgDe7MxiPuRz3cCtYQHn+BJ6h1tihmamYDWWUlPHgSNF0i3ATc4WmDECZafKw==", "dependencies": { "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" }, "funding": { "url": "https://opencollective.com/turf" } }, "node_modules/@turf/meta": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-7.1.0.tgz", - "integrity": "sha512-ZgGpWWiKz797Fe8lfRj7HKCkGR+nSJ/5aKXMyofCvLSc2PuYJs/qyyifDPWjASQQCzseJ7AlF2Pc/XQ/3XkkuA==", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-7.2.0.tgz", + "integrity": "sha512-igzTdHsQc8TV1RhPuOLVo74Px/hyPrVgVOTgjWQZzt3J9BVseCdpfY/0cJBdlSRI4S/yTmmHl7gAqjhpYH5Yaw==", "dependencies": { - "@turf/helpers": "^7.1.0", + "@turf/helpers": "^7.2.0", "@types/geojson": "^7946.0.10" }, "funding": { @@ -3227,6 +3224,7 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz", "integrity": "sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==", + "license": "BSD-3-Clause", "dependencies": { "d3-array": "1" } @@ -3235,6 +3233,7 @@ "version": "2.9.0", "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-2.9.0.tgz", "integrity": "sha512-ZULvK/zBn87of5rWAfFMc9mJOipeSo57O+BBitsKIXmU4rTVAnX1kSsJkE0R+TxY8pGNoM1nbyRRE7GYHhdOEQ==", + "license": "BSD-3-Clause", "dependencies": { "commander": "2", "d3-array": "1", @@ -5577,6 +5576,7 @@ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, + "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -9068,12 +9068,6 @@ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "node_modules/sane-topojson": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/sane-topojson/-/sane-topojson-4.0.0.tgz", - "integrity": "sha512-bJILrpBboQfabG3BNnHI2hZl52pbt80BE09u4WhnrmzuF2JbMKZdl62G5glXskJ46p+gxE2IzOwGj/awR4g8AA==", - "dev": true - }, "node_modules/sass": { "version": "1.78.0", "resolved": "https://registry.npmjs.org/sass/-/sass-1.78.0.tgz", @@ -9856,6 +9850,7 @@ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", "dev": true, + "license": "MIT", "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", @@ -10315,10 +10310,9 @@ } }, "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "license": "0BSD" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/tunnel-agent": { "version": "0.6.0", diff --git a/package.json b/package.json index 39f76f1a5dd..d29b8a44cb2 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,7 @@ "@plotly/d3-sankey": "0.7.2", "@plotly/d3-sankey-circular": "0.33.1", "@plotly/mapbox-gl": "1.13.4", + "@plotly/regl": "^2.1.2", "@turf/area": "^7.1.0", "@turf/bbox": "^7.1.0", "@turf/centroid": "^7.1.0", @@ -105,7 +106,6 @@ "point-in-polygon": "^1.1.0", "polybooljs": "^1.2.2", "probe-image-size": "^7.2.3", - "@plotly/regl": "^2.1.2", "regl-error2d": "^2.0.12", "regl-line2d": "^3.1.3", "regl-scatter2d": "^3.3.1", @@ -121,6 +121,8 @@ }, "devDependencies": { "@biomejs/biome": "1.8.3", + "@plotly/mathjax-v2": "npm:mathjax@2.7.5", + "@plotly/mathjax-v3": "npm:mathjax@^3.2.2", "amdefine": "^1.0.1", "assert": "^2.1.0", "browserify-transform-tools": "^1.7.0", @@ -160,8 +162,6 @@ "karma-viewport": "1.0.2", "lodash": "^4.17.21", "madge": "^8.0.0", - "@plotly/mathjax-v2": "npm:mathjax@2.7.5", - "@plotly/mathjax-v3": "npm:mathjax@^3.2.2", "minify-stream": "^2.1.0", "npm-link-check": "^5.0.1", "open": "^8.4.2", @@ -171,7 +171,6 @@ "raw-loader": "^4.0.2", "read-last-lines": "^1.8.0", "run-series": "^1.1.9", - "sane-topojson": "^4.0.0", "sass": "^1.78.0", "stream-browserify": "^3.0.0", "style-loader": "^4.0.0", diff --git a/src/assets/geo_assets.js b/src/assets/geo_assets.js index 49327775b2c..4157285ae13 100644 --- a/src/assets/geo_assets.js +++ b/src/assets/geo_assets.js @@ -1,8 +1,27 @@ 'use strict'; -var saneTopojson = require('sane-topojson'); +const topojson = { + africa_110m: require('../../dist/topojson/africa_110m.json'), + antarctica_110m: require('../../dist/topojson/antarctica_110m.json'), + asia_110m: require('../../dist/topojson/asia_110m.json'), + europe_110m: require('../../dist/topojson/europe_110m.json'), + 'north-america_110m': require('../../dist/topojson/north-america_110m.json'), + oceania_110m: require('../../dist/topojson/oceania_110m.json'), + 'south-america_110m': require('../../dist/topojson/south-america_110m.json'), + usa_110m: require('../../dist/topojson/usa_110m.json'), + world_110m: require('../../dist/topojson/world_110m.json'), + africa_50m: require('../../dist/topojson/africa_50m.json'), + antarctica_50m: require('../../dist/topojson/antarctica_50m.json'), + asia_50m: require('../../dist/topojson/asia_50m.json'), + europe_50m: require('../../dist/topojson/europe_50m.json'), + 'north-america_50m': require('../../dist/topojson/north-america_50m.json'), + oceania_50m: require('../../dist/topojson/oceania_50m.json'), + 'south-america_50m': require('../../dist/topojson/south-america_50m.json'), + usa_50m: require('../../dist/topojson/usa_50m.json'), + world_50m: require('../../dist/topojson/world_50m.json'), +} - -exports.version = require('../version').version; - -exports.topojson = saneTopojson; +module.exports = { + topojson, + version: require('../version').version +} diff --git a/src/lib/topojson_utils.js b/src/lib/topojson_utils.js index b533b1a71bf..d8dd0647dbb 100644 --- a/src/lib/topojson_utils.js +++ b/src/lib/topojson_utils.js @@ -13,7 +13,9 @@ topojsonUtils.getTopojsonName = function(geoLayout) { }; topojsonUtils.getTopojsonPath = function(topojsonURL, topojsonName) { - return topojsonURL + topojsonName + '.json'; + topojsonURL += topojsonURL.endsWith('/') ? '' : '/'; + + return `${topojsonURL}${topojsonName}.json`; }; topojsonUtils.getTopojsonFeatures = function(trace, topojson) { diff --git a/src/plots/geo/constants.js b/src/plots/geo/constants.js index ad130053460..5439ea5a8d9 100644 --- a/src/plots/geo/constants.js +++ b/src/plots/geo/constants.js @@ -185,7 +185,19 @@ exports.scopeDefaults = { lataxisRange: [-60, 15], projType: 'mercator', projRotate: [0, 0, 0] - } + }, + antarctica: { + lonaxisRange: [-180, 180], + lataxisRange: [-90, -60], + projType: 'equirectangular', + projRotate: [0, 0, 0] + }, + oceania: { + lonaxisRange: [-180, 180], + lataxisRange: [-50, 25], + projType: 'equirectangular', + projRotate: [0, 0, 0] + }, }; // angular pad to avoid rounding error around clip angles diff --git a/tasks/preprocess.js b/tasks/preprocess.js index 2436d8add38..302628090ec 100644 --- a/tasks/preprocess.js +++ b/tasks/preprocess.js @@ -73,7 +73,6 @@ function writeLibFiles(obj) { } } -// copy topojson files from sane-topojson to dist/ function copyTopojsonFiles() { fs.copy( constants.pathToTopojsonSrc, diff --git a/tasks/util/constants.js b/tasks/util/constants.js index 6442501d9aa..76f8bf48ad7 100644 --- a/tasks/util/constants.js +++ b/tasks/util/constants.js @@ -24,20 +24,7 @@ var strictIndex = fs.readFileSync(pathToPlotlyStrict, 'utf-8'); var allTraces = fs.readdirSync(path.join(pathToSrc, 'traces')) .filter(startsWithLowerCase); -var pathToTopojsonSrc; -try { - pathToTopojsonSrc = path.join(path.dirname(require.resolve('sane-topojson')), 'dist/'); -} catch(e) { - console.log([ - '', - 'WARN: Cannot resolve path to *sane-topojson* package.', - ' This can happen when one `npm link sane-topojson`', - ' and runs a command in a Docker container.', - ' There is nothing to worry, if you see this warning while running', - ' `npm run test-image`, `npm run test-export` or `npm run baseline` ;)', - '' - ].join('\n')); -} +var pathToTopojsonSrc = path.join(pathToRoot, 'topojson/dist'); var partialBundleNames = [ 'basic', 'cartesian', 'geo', 'gl3d', 'gl2d', 'mapbox', 'finance', 'strict' diff --git a/test/image/baselines/canada_geo_projections.png b/test/image/baselines/canada_geo_projections.png index 4c73c096ce4..eab832631d7 100644 Binary files a/test/image/baselines/canada_geo_projections.png and b/test/image/baselines/canada_geo_projections.png differ diff --git a/test/image/baselines/distance_satellite.png b/test/image/baselines/distance_satellite.png index 6dbe808db06..c15b6344857 100644 Binary files a/test/image/baselines/distance_satellite.png and b/test/image/baselines/distance_satellite.png differ diff --git a/test/image/baselines/geo_across-antimeridian.png b/test/image/baselines/geo_across-antimeridian.png index c805f0723e2..94698edb32d 100644 Binary files a/test/image/baselines/geo_across-antimeridian.png and b/test/image/baselines/geo_across-antimeridian.png differ diff --git a/test/image/baselines/geo_africa-insets.png b/test/image/baselines/geo_africa-insets.png index ccccecfdc1f..e7cdb812040 100644 Binary files a/test/image/baselines/geo_africa-insets.png and b/test/image/baselines/geo_africa-insets.png differ diff --git a/test/image/baselines/geo_aitoff-sinusoidal.png b/test/image/baselines/geo_aitoff-sinusoidal.png index 05c418fd674..40e76ef24b4 100644 Binary files a/test/image/baselines/geo_aitoff-sinusoidal.png and b/test/image/baselines/geo_aitoff-sinusoidal.png differ diff --git a/test/image/baselines/geo_bg-color.png b/test/image/baselines/geo_bg-color.png index 6ff22e2f38b..626ea1ad7c3 100644 Binary files a/test/image/baselines/geo_bg-color.png and b/test/image/baselines/geo_bg-color.png differ diff --git a/test/image/baselines/geo_big-frame.png b/test/image/baselines/geo_big-frame.png index 4caa8fb532d..32e6624ef2c 100644 Binary files a/test/image/baselines/geo_big-frame.png and b/test/image/baselines/geo_big-frame.png differ diff --git a/test/image/baselines/geo_bubbles-colorscales.png b/test/image/baselines/geo_bubbles-colorscales.png index 329cf6f9f8d..7f38d8a9f50 100644 Binary files a/test/image/baselines/geo_bubbles-colorscales.png and b/test/image/baselines/geo_bubbles-colorscales.png differ diff --git a/test/image/baselines/geo_bubbles-sizeref.png b/test/image/baselines/geo_bubbles-sizeref.png index 534b5ab7642..19db6b8c270 100644 Binary files a/test/image/baselines/geo_bubbles-sizeref.png and b/test/image/baselines/geo_bubbles-sizeref.png differ diff --git a/test/image/baselines/geo_canadian-cities.png b/test/image/baselines/geo_canadian-cities.png index f83012e6946..1ffc3b3ba07 100644 Binary files a/test/image/baselines/geo_canadian-cities.png and b/test/image/baselines/geo_canadian-cities.png differ diff --git a/test/image/baselines/geo_centering.png b/test/image/baselines/geo_centering.png index 876eae09959..c5460cab299 100644 Binary files a/test/image/baselines/geo_centering.png and b/test/image/baselines/geo_centering.png differ diff --git a/test/image/baselines/geo_choropleth-legend.png b/test/image/baselines/geo_choropleth-legend.png index 2aff9b3245a..207ba40e9c4 100644 Binary files a/test/image/baselines/geo_choropleth-legend.png and b/test/image/baselines/geo_choropleth-legend.png differ diff --git a/test/image/baselines/geo_choropleth-text.png b/test/image/baselines/geo_choropleth-text.png index 0206a92d616..cb0e5a95a72 100644 Binary files a/test/image/baselines/geo_choropleth-text.png and b/test/image/baselines/geo_choropleth-text.png differ diff --git a/test/image/baselines/geo_choropleth-usa.png b/test/image/baselines/geo_choropleth-usa.png index fe3b168c388..134c6996d1a 100644 Binary files a/test/image/baselines/geo_choropleth-usa.png and b/test/image/baselines/geo_choropleth-usa.png differ diff --git a/test/image/baselines/geo_choropleth-usa_legend.png b/test/image/baselines/geo_choropleth-usa_legend.png index df33be59778..77e1bc8c681 100644 Binary files a/test/image/baselines/geo_choropleth-usa_legend.png and b/test/image/baselines/geo_choropleth-usa_legend.png differ diff --git a/test/image/baselines/geo_conic-conformal.png b/test/image/baselines/geo_conic-conformal.png index b4900e61c1c..dfe4ca38f7a 100644 Binary files a/test/image/baselines/geo_conic-conformal.png and b/test/image/baselines/geo_conic-conformal.png differ diff --git a/test/image/baselines/geo_connectgaps.png b/test/image/baselines/geo_connectgaps.png index 41e635d38b4..8d8f546da2b 100644 Binary files a/test/image/baselines/geo_connectgaps.png and b/test/image/baselines/geo_connectgaps.png differ diff --git a/test/image/baselines/geo_country-names-text-chart.png b/test/image/baselines/geo_country-names-text-chart.png index 51c99316b62..9ceb8d9a756 100644 Binary files a/test/image/baselines/geo_country-names-text-chart.png and b/test/image/baselines/geo_country-names-text-chart.png differ diff --git a/test/image/baselines/geo_country-names.png b/test/image/baselines/geo_country-names.png index 50e7749a5ac..4413d903096 100644 Binary files a/test/image/baselines/geo_country-names.png and b/test/image/baselines/geo_country-names.png differ diff --git a/test/image/baselines/geo_custom-colorscale.png b/test/image/baselines/geo_custom-colorscale.png index 643e97b2a2f..e2e31b3552a 100644 Binary files a/test/image/baselines/geo_custom-colorscale.png and b/test/image/baselines/geo_custom-colorscale.png differ diff --git a/test/image/baselines/geo_custom-geojson.png b/test/image/baselines/geo_custom-geojson.png index fa1728f90cc..2e55acbb2fc 100644 Binary files a/test/image/baselines/geo_custom-geojson.png and b/test/image/baselines/geo_custom-geojson.png differ diff --git a/test/image/baselines/geo_europe-bubbles.png b/test/image/baselines/geo_europe-bubbles.png index 4b13c7342ac..20f3f7fd312 100644 Binary files a/test/image/baselines/geo_europe-bubbles.png and b/test/image/baselines/geo_europe-bubbles.png differ diff --git a/test/image/baselines/geo_fill.png b/test/image/baselines/geo_fill.png index aafeb426e0f..6ae9485e00f 100644 Binary files a/test/image/baselines/geo_fill.png and b/test/image/baselines/geo_fill.png differ diff --git a/test/image/baselines/geo_first.png b/test/image/baselines/geo_first.png index d944c459f71..cc67b45aac7 100644 Binary files a/test/image/baselines/geo_first.png and b/test/image/baselines/geo_first.png differ diff --git a/test/image/baselines/geo_fitbounds-geojson.png b/test/image/baselines/geo_fitbounds-geojson.png index f75fc2ea1b0..6fb135d0e20 100644 Binary files a/test/image/baselines/geo_fitbounds-geojson.png and b/test/image/baselines/geo_fitbounds-geojson.png differ diff --git a/test/image/baselines/geo_fitbounds-locations.png b/test/image/baselines/geo_fitbounds-locations.png index 0ff77f7c43c..2191e321fb7 100644 Binary files a/test/image/baselines/geo_fitbounds-locations.png and b/test/image/baselines/geo_fitbounds-locations.png differ diff --git a/test/image/baselines/geo_fitbounds-scopes.png b/test/image/baselines/geo_fitbounds-scopes.png index 155c91d9365..7a55226ca7d 100644 Binary files a/test/image/baselines/geo_fitbounds-scopes.png and b/test/image/baselines/geo_fitbounds-scopes.png differ diff --git a/test/image/baselines/geo_kavrayskiy7.png b/test/image/baselines/geo_kavrayskiy7.png index ad50d380972..189e43770fb 100644 Binary files a/test/image/baselines/geo_kavrayskiy7.png and b/test/image/baselines/geo_kavrayskiy7.png differ diff --git a/test/image/baselines/geo_lakes-and-rivers.png b/test/image/baselines/geo_lakes-and-rivers.png index 210d367fdd2..c6c59fb801f 100644 Binary files a/test/image/baselines/geo_lakes-and-rivers.png and b/test/image/baselines/geo_lakes-and-rivers.png differ diff --git a/test/image/baselines/geo_legendonly.png b/test/image/baselines/geo_legendonly.png index 0203c2cc1ae..08507fc9d2b 100644 Binary files a/test/image/baselines/geo_legendonly.png and b/test/image/baselines/geo_legendonly.png differ diff --git a/test/image/baselines/geo_miterlimit-base-layers.png b/test/image/baselines/geo_miterlimit-base-layers.png index eda64eef89e..6a49bd91af3 100644 Binary files a/test/image/baselines/geo_miterlimit-base-layers.png and b/test/image/baselines/geo_miterlimit-base-layers.png differ diff --git a/test/image/baselines/geo_multi-geos.png b/test/image/baselines/geo_multi-geos.png index 04787f8aabd..96350fc0817 100644 Binary files a/test/image/baselines/geo_multi-geos.png and b/test/image/baselines/geo_multi-geos.png differ diff --git a/test/image/baselines/geo_multiple-usa-choropleths.png b/test/image/baselines/geo_multiple-usa-choropleths.png index 66589581958..8e376fde24d 100644 Binary files a/test/image/baselines/geo_multiple-usa-choropleths.png and b/test/image/baselines/geo_multiple-usa-choropleths.png differ diff --git a/test/image/baselines/geo_orthographic.png b/test/image/baselines/geo_orthographic.png index ab6d925ebb5..0af0a1cf684 100644 Binary files a/test/image/baselines/geo_orthographic.png and b/test/image/baselines/geo_orthographic.png differ diff --git a/test/image/baselines/geo_point-selection.png b/test/image/baselines/geo_point-selection.png index a343a9a0c13..aa0bd089ee9 100644 Binary files a/test/image/baselines/geo_point-selection.png and b/test/image/baselines/geo_point-selection.png differ diff --git a/test/image/baselines/geo_scattergeo-locations.png b/test/image/baselines/geo_scattergeo-locations.png index c25e73877ba..2bc09bb0618 100644 Binary files a/test/image/baselines/geo_scattergeo-locations.png and b/test/image/baselines/geo_scattergeo-locations.png differ diff --git a/test/image/baselines/geo_scattergeo-out-of-usa.png b/test/image/baselines/geo_scattergeo-out-of-usa.png index 623f7d08cf0..63cbafae8d3 100644 Binary files a/test/image/baselines/geo_scattergeo-out-of-usa.png and b/test/image/baselines/geo_scattergeo-out-of-usa.png differ diff --git a/test/image/baselines/geo_second.png b/test/image/baselines/geo_second.png index 082fcf710b0..1862b82ec1e 100644 Binary files a/test/image/baselines/geo_second.png and b/test/image/baselines/geo_second.png differ diff --git a/test/image/baselines/geo_stereographic.png b/test/image/baselines/geo_stereographic.png index cf0b24814ca..4bc1840532d 100644 Binary files a/test/image/baselines/geo_stereographic.png and b/test/image/baselines/geo_stereographic.png differ diff --git a/test/image/baselines/geo_text_chart_arrays.png b/test/image/baselines/geo_text_chart_arrays.png index 56d065433c3..5fc9ccac512 100644 Binary files a/test/image/baselines/geo_text_chart_arrays.png and b/test/image/baselines/geo_text_chart_arrays.png differ diff --git a/test/image/baselines/geo_tick0.png b/test/image/baselines/geo_tick0.png index e64926fbcdb..31281a5d2a9 100644 Binary files a/test/image/baselines/geo_tick0.png and b/test/image/baselines/geo_tick0.png differ diff --git a/test/image/baselines/geo_usa-states-on-world-scope.png b/test/image/baselines/geo_usa-states-on-world-scope.png index 096091151bf..43d4bf6c718 100644 Binary files a/test/image/baselines/geo_usa-states-on-world-scope.png and b/test/image/baselines/geo_usa-states-on-world-scope.png differ diff --git a/test/image/baselines/geo_usa-states.png b/test/image/baselines/geo_usa-states.png index 596a3cf78ba..fbf826ac9d1 100644 Binary files a/test/image/baselines/geo_usa-states.png and b/test/image/baselines/geo_usa-states.png differ diff --git a/test/image/baselines/geo_visible_false_override_template.png b/test/image/baselines/geo_visible_false_override_template.png index 201e71d72cf..8c189cf1c9b 100644 Binary files a/test/image/baselines/geo_visible_false_override_template.png and b/test/image/baselines/geo_visible_false_override_template.png differ diff --git a/test/image/baselines/geo_winkel-tripel.png b/test/image/baselines/geo_winkel-tripel.png index 57cb4573905..b0c9e969c03 100644 Binary files a/test/image/baselines/geo_winkel-tripel.png and b/test/image/baselines/geo_winkel-tripel.png differ diff --git a/test/image/baselines/grid_subplot_types.png b/test/image/baselines/grid_subplot_types.png index 26c6136a62f..bd090a28244 100644 Binary files a/test/image/baselines/grid_subplot_types.png and b/test/image/baselines/grid_subplot_types.png differ diff --git a/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths.png b/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths.png index 2afb83662c4..cfb609faa71 100644 Binary files a/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths.png and b/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths.png differ diff --git a/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths_with-border.png b/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths_with-border.png index bafbf74d3d3..3f6769a1b98 100644 Binary files a/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths_with-border.png and b/test/image/baselines/h-colorbar_geo_multiple-usa-choropleths_with-border.png differ diff --git a/test/image/baselines/marker-standoff.png b/test/image/baselines/marker-standoff.png index 54db57a75a5..6a10a991a96 100644 Binary files a/test/image/baselines/marker-standoff.png and b/test/image/baselines/marker-standoff.png differ diff --git a/test/image/baselines/marker-standoff_auto-backoff.png b/test/image/baselines/marker-standoff_auto-backoff.png index 34abdddae0c..40f335cd078 100644 Binary files a/test/image/baselines/marker-standoff_auto-backoff.png and b/test/image/baselines/marker-standoff_auto-backoff.png differ diff --git a/test/image/baselines/marker-standoff_auto-backoff2.png b/test/image/baselines/marker-standoff_auto-backoff2.png index 9ba17f625d7..fcb8027f2ca 100644 Binary files a/test/image/baselines/marker-standoff_auto-backoff2.png and b/test/image/baselines/marker-standoff_auto-backoff2.png differ diff --git a/test/image/baselines/plot_types.png b/test/image/baselines/plot_types.png index 913272c8916..dd92619cb17 100644 Binary files a/test/image/baselines/plot_types.png and b/test/image/baselines/plot_types.png differ diff --git a/test/image/baselines/plot_types_grid_dash.png b/test/image/baselines/plot_types_grid_dash.png index faeabbba42a..1aee49f0fcf 100644 Binary files a/test/image/baselines/plot_types_grid_dash.png and b/test/image/baselines/plot_types_grid_dash.png differ diff --git a/test/image/baselines/texttemplate_scatter.png b/test/image/baselines/texttemplate_scatter.png index eaaabb65bfa..8b5581d166e 100644 Binary files a/test/image/baselines/texttemplate_scatter.png and b/test/image/baselines/texttemplate_scatter.png differ diff --git a/test/image/baselines/various_geo_projections.png b/test/image/baselines/various_geo_projections.png index ff79ac26983..5ac03c21a2b 100644 Binary files a/test/image/baselines/various_geo_projections.png and b/test/image/baselines/various_geo_projections.png differ diff --git a/test/image/baselines/zz-geo_choropleth-egypt-sudan.png b/test/image/baselines/zz-geo_choropleth-egypt-sudan.png new file mode 100644 index 00000000000..057789410e5 Binary files /dev/null and b/test/image/baselines/zz-geo_choropleth-egypt-sudan.png differ diff --git a/test/image/compare_pixels_test.js b/test/image/compare_pixels_test.js index 75aba5fc7af..656ce846532 100644 --- a/test/image/compare_pixels_test.js +++ b/test/image/compare_pixels_test.js @@ -63,6 +63,10 @@ argv._.forEach(function(pattern) { var blacklist = [ 'map_angles', 'map_stamen-style', + 'map_predefined-styles2', + 'map_scattercluster', + 'map_fonts-supported-open-sans', + 'map_fonts-supported-open-sans-weight', ]; if(virtualWebgl) { diff --git a/test/image/make_baseline.py b/test/image/make_baseline.py index 519335d31cd..6b29e47e09f 100644 --- a/test/image/make_baseline.py +++ b/test/image/make_baseline.py @@ -53,6 +53,7 @@ plotlyjs = plotlyjs_with_virtual_webgl pio.kaleido.scope.plotlyjs = plotlyjs +pio.kaleido.scope.topojson = "file://" + os.path.join(root, 'topojson', 'dist') pio.templates.default = 'none' ALL_MOCKS = [os.path.splitext(a)[0] for a in os.listdir(dirIn) if a.endswith('.json')] @@ -66,6 +67,10 @@ # unable to generate baselines for the following mocks blacklist = [ 'map_stamen-style', + 'map_predefined-styles2', + 'map_scattercluster', + 'map_fonts-supported-open-sans', + 'map_fonts-supported-open-sans-weight', ] allNames = [a for a in allNames if a not in blacklist] diff --git a/test/image/mocks/zz-geo_choropleth-egypt-sudan.json b/test/image/mocks/zz-geo_choropleth-egypt-sudan.json new file mode 100644 index 00000000000..35361d3b4aa --- /dev/null +++ b/test/image/mocks/zz-geo_choropleth-egypt-sudan.json @@ -0,0 +1,35 @@ +{ + "data": [ + { + "type": "choropleth", + "name": "Egypt", + "locations": ["EGY"], + "z": [1], + "colorscale": [[0, "orange"], [1, "orange"]], + "showscale": false, + "showlegend": true + }, + { + "type": "choropleth", + "name": "Sudan", + "locations": ["SDN"], + "z": [1], + "colorscale": [[0, "blue"], [1, "blue"]], + "showscale": false, + "showlegend": true + } + ], + "layout": { + "geo": { + "projection": { + "rotation": { + "lon": 30, + "lat": 20 + }, + "scale": 7 + } + }, + "width": 800, + "height": 600 + } +} diff --git a/test/jasmine/karma.conf.js b/test/jasmine/karma.conf.js index a2e3b9d8d7c..cdd1ce2e60d 100644 --- a/test/jasmine/karma.conf.js +++ b/test/jasmine/karma.conf.js @@ -118,7 +118,7 @@ if(isFullSuite) { } var pathToCustomMatchers = path.join(__dirname, 'assets', 'custom_matchers.js'); -var pathToSaneTopojsonDist = path.join(__dirname, '..', '..', 'node_modules', 'sane-topojson', 'dist'); +var pathToTopojsonDist = path.join(__dirname, '..', '..', 'topojson', 'dist'); var pathToMathJax2 = path.join(__dirname, '..', '..', 'node_modules', '@plotly/mathjax-v2'); var pathToMathJax3 = path.join(__dirname, '..', '..', 'node_modules', '@plotly/mathjax-v3'); var pathToVirtualWebgl = path.join(__dirname, '..', '..', 'node_modules', 'virtual-webgl', 'src', 'virtual-webgl.js'); @@ -196,8 +196,7 @@ func.defaultConfig = { // more info: http://karma-runner.github.io/3.0/config/files.html {pattern: pathToMathJax2 + '/**', included: false, watched: false, served: true}, {pattern: pathToMathJax3 + '/**', included: false, watched: false, served: true}, - // available to fetch from /base/node_modules/sane-topojson/dist/ - {pattern: pathToSaneTopojsonDist + '/**', included: false, watched: false, served: true} + {pattern: pathToTopojsonDist + '/**', included: false, watched: false, served: true} ], // list of files / pattern to exclude diff --git a/test/jasmine/tests/geo_test.js b/test/jasmine/tests/geo_test.js index 16ff8e10138..809d00ffeda 100644 --- a/test/jasmine/tests/geo_test.js +++ b/test/jasmine/tests/geo_test.js @@ -23,9 +23,7 @@ var DBLCLICKDELAY = require('../../../src/plot_api/plot_config').dfltConfig.doub var HOVERMINTIME = require('../../../src/components/fx').constants.HOVERMINTIME; // use local topojson files -Plotly.setPlotConfig({ - topojsonURL: '/base/node_modules/sane-topojson/dist/' -}); +Plotly.setPlotConfig({ topojsonURL: '/base/topojson/dist' }); function move(fromX, fromY, toX, toY, delay) { return new Promise(function(resolve) { @@ -1484,7 +1482,9 @@ describe('Test geo interactions', function() { }) .then(function() { check([179, -16.6], 1, 'spot on Fiji island that cross antimeridian west of antimeridian'); - check([-179.9, -16.2], 1, 'spot on Fiji island that cross antimeridian east of antimeridian'); + // This island no longer crosses the antimeridian due to differences in the simplification process. + // Commenting out for now in the event that we update the simplification and the test is needed again. + // check([-179.9, -16.7], 1, 'spot on Fiji island that cross antimeridian east of antimeridian'); return Plotly.relayout(gd, { 'geo.center.lat': null, @@ -1798,8 +1798,8 @@ describe('Test event property of interactions on a geo plot:', function() { expect(pt.curveNumber).toEqual(0, 'points[0].curveNumber'); expect(typeof pt.data).toEqual(typeof {}, 'points[0].data'); expect(typeof pt.fullData).toEqual(typeof {}, 'points[0].fullData'); - expect(pt.lat).toEqual(57.75, 'points[0].lat'); - expect(pt.lon).toEqual(-101.57, 'points[0].lon'); + expect(pt.lat).toEqual(57.72, 'points[0].lat'); + expect(pt.lon).toEqual(-101.67, 'points[0].lon'); expect(pt.location).toEqual('CAN', 'points[0].location'); expect(pt.pointNumber).toEqual(0, 'points[0].pointNumber'); expect(pt.text).toEqual(20, 'points[0].text'); @@ -1902,8 +1902,8 @@ describe('Test event property of interactions on a geo plot:', function() { expect(pt.curveNumber).toEqual(0, 'points[0].curveNumber'); expect(typeof pt.data).toEqual(typeof {}, 'points[0].data'); expect(typeof pt.fullData).toEqual(typeof {}, 'points[0].fullData'); - expect(pt.lat).toEqual(57.75, 'points[0].lat'); - expect(pt.lon).toEqual(-101.57, 'points[0].lon'); + expect(pt.lat).toEqual(57.72, 'points[0].lat'); + expect(pt.lon).toEqual(-101.67, 'points[0].lon'); expect(pt.location).toEqual('CAN', 'points[0].location'); expect(pt.pointNumber).toEqual(0, 'points[0].pointNumber'); expect(pt.text).toEqual(20, 'points[0].text'); @@ -1943,8 +1943,8 @@ describe('Test event property of interactions on a geo plot:', function() { expect(pt.curveNumber).toEqual(0, 'points[0].curveNumber'); expect(typeof pt.data).toEqual(typeof {}, 'points[0].data'); expect(typeof pt.fullData).toEqual(typeof {}, 'points[0].fullData'); - expect(pt.lat).toEqual(57.75, 'points[0].lat'); - expect(pt.lon).toEqual(-101.57, 'points[0].lon'); + expect(pt.lat).toEqual(57.72, 'points[0].lat'); + expect(pt.lon).toEqual(-101.67, 'points[0].lon'); expect(pt.location).toEqual('CAN', 'points[0].location'); expect(pt.pointNumber).toEqual(0, 'points[0].pointNumber'); expect(pt.text).toEqual(20, 'points[0].text'); @@ -2626,7 +2626,8 @@ describe('Test geo zoom/pan/drag interactions:', function() { _assert('after scroll', [ [-94.5, 35.0], 1.3 ], [ - [387.1, 245.9], 974.4 + // TODO: Verify that this change is acceptable + [380.5, 245.9], 974.4 ], [ 'geo.center.lon', 'geo.center.lon', 'geo.projection.scale' ]); @@ -2636,8 +2637,9 @@ describe('Test geo zoom/pan/drag interactions:', function() { _assert('after some relayout call that causes a replot', [ [-94.5, 35.0], 1.3 ], [ + // TODO: Verify that this change is acceptable // new center values are reflected in translate() - [387.1, 245.9], 974.4 + [380.5, 245.9], 974.4 ], [ 'geo.showlakes' ]); @@ -2759,11 +2761,11 @@ describe('Test geo interactions update marker angles:', function() { }) .then(function() { newPath = getPath(); - expect(newPath).toEqual('M0,0L18.238949470790537,8.206139299448276L19.579067739888885,-4.081679364776507Z'); + expect(newPath).toEqual('M0,0L18.224184879370906,8.238876469671625L19.58636536037447,-4.046516028625488Z'); expect(newPath).not.toEqual(initialPath); - expect(newPath).toEqual('M0,0L18.238949470790537,8.206139299448276L19.579067739888885,-4.081679364776507Z'); - expect(initialPath).toEqual('M0,0L-1.5033314641545745,19.94341982983066L10.506227353572104,17.01820163222463Z'); + expect(newPath).toEqual('M0,0L18.224184879370906,8.238876469671625L19.58636536037447,-4.046516028625488Z'); + expect(initialPath).toEqual('M0,0L-1.5094067529528923,19.942960945008643L10.501042615957648,17.021401351764233Z'); }) .then(done, done.fail); }); diff --git a/test/plot-schema.json b/test/plot-schema.json index df08db9d5c3..161815bbaf3 100644 --- a/test/plot-schema.json +++ b/test/plot-schema.json @@ -2545,9 +2545,11 @@ "valType": "enumerated", "values": [ "africa", + "antarctica", "asia", "europe", "north america", + "oceania", "south america", "usa", "world" diff --git a/topojson/.gitignore b/topojson/.gitignore new file mode 100644 index 00000000000..e3fbd98336e --- /dev/null +++ b/topojson/.gitignore @@ -0,0 +1,2 @@ +build +node_modules diff --git a/topojson/bin/get_geodata.mjs b/topojson/bin/get_geodata.mjs new file mode 100644 index 00000000000..291aaf6e249 --- /dev/null +++ b/topojson/bin/get_geodata.mjs @@ -0,0 +1,59 @@ +import { exec } from 'child_process'; +import fs from 'fs'; +import { Readable } from 'stream'; +import { pipeline } from 'stream/promises'; +import config, { getNEDownloadUrl, getNEFilename } from '../config.mjs'; + +const { inputDir, resolutions, unDownloadUrl, unFilename, vectors } = config; + +const outputPath = inputDir; + +// Download Natural Earth vector maps +for (const vector of Object.values(vectors)) { + for (const resolution of resolutions) { + const url = getNEDownloadUrl({ resolution, vector }); + const filename = getNEFilename({ resolution, source: vector.source }); + const archivePath = `${outputPath}/${filename}.zip`; + + if (!fs.existsSync(archivePath)) { + try { + const response = await fetch(url); + if (!response.ok || !response.body) throw new Error(`Bad response: ${response.status}`); + + if (!fs.existsSync(outputPath)) fs.mkdirSync(outputPath, { recursive: true }); + const file = fs.createWriteStream(archivePath); + await pipeline(Readable.fromWeb(response.body), file); + + // Use the shell to handle decompressing + if (!fs.existsSync(outputPath)) fs.mkdirSync(outputPath, { recursive: true }); + exec(`unzip -o ${archivePath} -d ${outputPath}`); + } catch (error) { + console.error(`Error when downloading file '${archivePath}': ${error}`); + continue; + } + } + } +} + +// Download UN GeoJSON file +const url = unDownloadUrl; +const archivePath = `${outputPath}/${unFilename}.zip`; +const geojsonPath = `${outputPath}`; +const geojsonFilePath = `${geojsonPath}/${unFilename}.geojson`; + +if (fs.existsSync(archivePath)) { + if (!fs.existsSync(geojsonFilePath)) exec(`unzip -o ${archivePath} -d ${geojsonPath}`); +} else { + try { + const response = await fetch(url); + if (!response.ok || !response.body) throw new Error(`Bad response: ${response.status}`); + + const file = fs.createWriteStream(geojsonFilePath); + await pipeline(Readable.fromWeb(response.body), file); + + // Use the shell to handle compression + exec(`zip -j ${archivePath} ${geojsonFilePath}`); + } catch (error) { + console.error(`Error when downloading file '${geojsonFilePath}': ${error}`); + } +} diff --git a/topojson/bin/process_geodata.mjs b/topojson/bin/process_geodata.mjs new file mode 100644 index 00000000000..846c63d249d --- /dev/null +++ b/topojson/bin/process_geodata.mjs @@ -0,0 +1,421 @@ +import rewind from '@mapbox/geojson-rewind'; +import { geoIdentity, geoPath } from 'd3-geo'; +import { geoStitch } from 'd3-geo-projection'; +import fs from 'fs'; +import mapshaper from 'mapshaper'; +import path from 'path'; +import { topology } from 'topojson-server'; +import config, { getNEFilename } from '../config.mjs'; + +const { filters, inputDir, layers, resolutions, scopes, unFilename, vectors } = config; + +// Create output directories +const outputDirGeojson = path.resolve(config.outputDirGeojson); +if (!fs.existsSync(outputDirGeojson)) fs.mkdirSync(outputDirGeojson, { recursive: true }); +const outputDirTopojson = path.resolve(config.outputDirTopojson); +if (!fs.existsSync(outputDirTopojson)) fs.mkdirSync(outputDirTopojson, { recursive: true }); + +async function convertShpToGeo(filename) { + const inputFilePath = `${inputDir}/${filename}.shp`; + const outputFilePath = `${outputDirGeojson}/${filename}.geojson`; + const commands = [inputFilePath, `-proj wgs84`, `-o format=geojson ${outputFilePath}`].join(' '); + await mapshaper.runCommands(commands); +} + +function getJsonFile(filename) { + try { + return JSON.parse(fs.readFileSync(filename, 'utf8')); + } catch (err) { + console.error(`❌ Failed to load JSON input file '${filename}':`, err.message); + process.exit(1); + } +} + +function addCentroidsToGeojson(geojsonPath) { + const geojson = getJsonFile(geojsonPath); + if (!geojson.features) return; + + const features = geojson.features.map((feature) => { + const centroid = getCentroid(feature); + feature.properties.ct = centroid; + + return feature; + }); + + fs.writeFileSync(geojsonPath, JSON.stringify({ ...geojson, features })); +} + +// Wind the polygon rings in the correct direction to indicate what is solid and what is whole +const rewindGeojson = (geojson, clockwise = true) => rewind(geojson, clockwise); + +// Clamp x-coordinates to the antimeridian +function clampToAntimeridian(inputFilepath, outputFilepath) { + outputFilepath ||= inputFilepath; + const jsonString = fs.readFileSync(inputFilepath, 'utf8'); + const updatedString = jsonString.replaceAll(/179\.9999\d+,/g, '180,').replaceAll(/180\.0000\d+,/g, '180,'); + + fs.writeFileSync(outputFilepath, updatedString); +} + +function pruneProperties(topojson) { + for (const layer in topojson.objects) { + switch (layer) { + case 'countries': + topojson.objects[layer].geometries = topojson.objects[layer].geometries.map((geometry) => { + const { properties } = geometry; + if (properties) { + geometry.id = properties.iso3cd; + geometry.properties = { + ct: properties.ct + }; + } + + return geometry; + }); + break; + case 'subunits': + topojson.objects[layer].geometries = topojson.objects[layer].geometries.map((geometry) => { + const { properties } = geometry; + if (properties) { + geometry.id = properties.postal; + geometry.properties = { + ct: properties.ct, + gu: properties.gu_a3 + }; + } + + return geometry; + }); + + break; + default: + topojson.objects[layer].geometries = topojson.objects[layer].geometries.map((geometry) => { + delete geometry.id; + delete geometry.properties; + + return geometry; + }); + + break; + } + } + + return topojson; +} + +function getCentroid(feature) { + const { type } = feature.geometry; + const projection = geoIdentity(); + const geoPathGenerator = geoPath(projection); + + if (type === 'MultiPolygon') { + let maxArea = -Infinity; + + for (const coordinates of feature.geometry.coordinates) { + const polygon = { type: 'Polygon', coordinates }; + const area = geoPathGenerator.area(polygon); + if (area > maxArea) { + maxArea = area; + feature = polygon; + } + } + } + + return geoPathGenerator.centroid(feature).map((coord) => +coord.toFixed(2)); +} + +async function createCountriesLayer({ bounds, filter, name, resolution, source }) { + const inputFilePath = `${outputDirGeojson}/${unFilename}_${resolution}m/${source}.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/countries.geojson`; + const commands = [ + inputFilePath, + bounds.length ? `-clip bbox=${bounds.join(',')}` : '', + filter ? `-filter '${filter}'` : '', + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); + addCentroidsToGeojson(outputFilePath); +} + +async function createLandLayer({ bounds, name, resolution, source }) { + const inputFilePath = `${outputDirGeojson}/${name}_${resolution}m/countries.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/land.geojson`; + const commands = [ + inputFilePath, + '-dissolve', + bounds.length ? `-clip bbox=${bounds.join(',')}` : '', + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); +} + +async function createCoastlinesLayer({ bounds, name, resolution, source }) { + const inputFilePath = `${outputDirGeojson}/${unFilename}_${resolution}m/${source}.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/coastlines.geojson`; + const commands = [ + inputFilePath, + '-dissolve2', + '-lines', + bounds.length ? `-clip bbox=${bounds.join(',')}` : '', + // Erase world border to avoid unpleasant lines through polygons crossing the border. + '-clip bbox=-179.99999,-89.99999,179.99999,89.99999', + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); + clampToAntimeridian(outputFilePath); +} + +async function createOceanLayer({ bounds, name, resolution, source }) { + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/ocean.geojson`; + const eraseFilePath = `${outputDirGeojson}/${unFilename}_${resolution}m/${source}.geojson`; + const commands = [ + '-rectangle bbox=-180,-90,180,90', + bounds.length ? `-clip bbox=${bounds.join(',')}` : '', + `-erase ${eraseFilePath}`, + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); +} + +async function createRiversLayer({ name, resolution, source }) { + const inputFilePath = `${outputDirGeojson}/${getNEFilename({ resolution, source })}.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/rivers.geojson`; + const commands = [ + inputFilePath, + `-clip ${outputDirGeojson}/${name}_${resolution}m/countries.geojson`, // Clip to the continent + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); +} + +async function createLakesLayer({ name, resolution, source }) { + const inputFilePath = `${outputDirGeojson}/${getNEFilename({ resolution, source })}.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/lakes.geojson`; + const commands = [ + inputFilePath, + `-clip ${outputDirGeojson}/${name}_${resolution}m/countries.geojson`, // Clip to the continent + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); +} + +async function createSubunitsLayer({ name, resolution, source }) { + const filter = ['AUS', 'BRA', 'CAN', 'USA'].map((id) => `adm0_a3 === "${id}"`).join(' || '); + const inputFilePath = `${outputDirGeojson}/${getNEFilename({ resolution, source })}.geojson`; + const outputFilePath = `${outputDirGeojson}/${name}_${resolution}m/subunits.geojson`; + const commands = [ + inputFilePath, + `-filter "${filter}"`, + `-clip ${outputDirGeojson}/${name}_${resolution}m/countries.geojson`, // Clip to the continent + `-o ${outputFilePath}` + ].join(' '); + await mapshaper.runCommands(commands); + addCentroidsToGeojson(outputFilePath); +} + +async function convertLayersToTopojson({ name, resolution }) { + const regionDir = path.join(outputDirGeojson, `${name}_${resolution}m`); + if (!fs.existsSync(regionDir)) return; + + const outputFile = `${outputDirTopojson}/${name}_${resolution}m.json`; + // Scopes with polygons that cross the antimeridian need to be stitched + if (['antarctica', 'world'].includes(name)) { + const geojsonObjects = {}; + for (const layer of Object.keys(config.layers)) { + const filePath = path.join(regionDir, `${layer}.geojson`); + geojsonObjects[layer] = geoStitch(rewindGeojson(getJsonFile(filePath))); + } + // Convert geojson to topojson + const topojsonTopology = topology(geojsonObjects, 1000000); + fs.writeFileSync(outputFile, JSON.stringify(topojsonTopology)); + } else { + // In Mapshaper, layer names default to file names + const commands = [`${regionDir}/*.geojson combine-files`, `-o format=topojson ${outputFile}`].join(' '); + await mapshaper.runCommands(commands); + } + + // Remove extra information from features + const topojson = getJsonFile(outputFile); + const prunedTopojson = pruneProperties(topojson); + fs.writeFileSync(outputFile, JSON.stringify(prunedTopojson)); +} + +// Get required polygon features from UN GeoJSON +const inputFilePathUNGeojson = `${inputDir}/${unFilename}.geojson`; +// await mapshaper.runCommands(`${inputFilePathUNGeojson} -filter 'stscod !== undefined' target=1 -clean target=1 -o force ${inputFilePathUNGeojson}`) +const outputFilePathAntarctica50m = `${outputDirGeojson}/${unFilename}_50m/antarctica.geojson`; +const outputFilePathFiji50m = `${outputDirGeojson}/${unFilename}_50m/fiji.geojson`; +const outputFilePathFijiAntimeridian50m = `${outputDirGeojson}/${unFilename}_50m/fiji_antimeridian.geojson`; +const outputFilePathRussia50m = `${outputDirGeojson}/${unFilename}_50m/russia.geojson`; +const outputFilePathRussiaAntimeridian50m = `${outputDirGeojson}/${unFilename}_50m/russia_antimeridian.geojson`; +const copyFieldsList = + 'objectid,iso3cd,m49_cd,nam_en,lbl_en,georeg,geo_cd,sub_cd,int_cd,subreg,intreg,iso2cd,lbl_fr,name_fr,globalid,stscod,isoclr,ct,FID'; +// The following fix up code is necessary to isolate/join/cut the polygons that cross the antimeridian. +// This is necessary for two reasons: the UN geojson is poor around the antimeridian and Mapshaper +// doesn't handle antimeridian cutting. + +// Fix up Antarctica polygons +await mapshaper.runCommands( + `${inputFilePathUNGeojson} -filter 'iso3cd === "ATA"' target=1 -o ${outputFilePathAntarctica50m}` +); +const commandsAntarctica = [ + outputFilePathAntarctica50m, + // Use 'snap-interval' to patch gap in Antarctica + '-clean snap-interval=0.015 target=antarctica', + // Add rectangle to extend Antarctica to bottom of world + '-rectangle bbox=-180,-90,180,-89 name=antarctica_rectangle', + '-merge-layers target=antarctica,antarctica_rectangle force', + `-dissolve2 target=antarctica copy-fields=${copyFieldsList}`, + `-o force target=antarctica ${outputFilePathAntarctica50m}` +].join(' '); +await mapshaper.runCommands(commandsAntarctica); + +// Fix up Fiji polygons +await mapshaper.runCommands( + `${inputFilePathUNGeojson} -filter 'iso3cd === "FJI"' target=1 -o ${outputFilePathFiji50m}` +); +const commandsIsolateFijiAntimeridian = [ + outputFilePathFiji50m, + '-explode', + `-each 'id = this.id'`, + `-filter '[31, 36, 39, 40].includes(id)' target=fiji + name=fiji_antimeridian`, + `-o target=fiji_antimeridian ${outputFilePathFijiAntimeridian50m}` +].join(' '); +await mapshaper.runCommands(commandsIsolateFijiAntimeridian); + +const commandsFixFijiAntimeridian = [ + outputFilePathFijiAntimeridian50m, + '-proj +proj=eck4 +lon_0=11 +datum=WGS84', + `-dissolve2 copy-fields=${copyFieldsList}`, + '-clean snap-interval=951', + `-proj +proj=webmerc +datum=WGS84 +lon_0=11`, + '-erase bbox=18812993.94,-22000000,20000000,16500000 target=1 + name=east', + '-erase bbox=972000,-22000000,18812993.95,16500000 target=1 + name=west', + '-merge-layers target=east,west name=complete', + `-dissolve2 target=complete copy-fields=${copyFieldsList}`, + '-proj wgs84', + `-o force target=complete ${outputFilePathFijiAntimeridian50m}` +].join(' '); +await mapshaper.runCommands(commandsFixFijiAntimeridian); + +const commandsFiji = [ + `-i combine-files ${outputFilePathFiji50m} ${outputFilePathFijiAntimeridian50m}`, + '-explode target=fiji', + `-each 'id = this.id' target=fiji`, + `-filter '![31, 36, 39, 40].includes(id)' target=fiji`, + '-merge-layers target=fiji,fiji_antimeridian force name=fiji', + `-dissolve2 target=fiji copy-fields=${copyFieldsList}`, + `-o force target=fiji ${outputFilePathFiji50m}` +].join(' '); +await mapshaper.runCommands(commandsFiji); + +// Fix up Russia polygons +await mapshaper.runCommands( + `${inputFilePathUNGeojson} -filter 'iso3cd === "RUS"' target=1 -o ${outputFilePathRussia50m}` +); +const commandsIsolateRussiaAntimeridian = [ + outputFilePathRussia50m, + '-explode', + `-each 'id = this.id'`, + `-filter '[13, 15].includes(id)' target=russia + name=russia_antimeridian`, + `-o target=russia_antimeridian ${outputFilePathRussiaAntimeridian50m}` +].join(' '); +await mapshaper.runCommands(commandsIsolateRussiaAntimeridian); + +const commandsFixRussiaAntimeridian = [ + outputFilePathRussiaAntimeridian50m, + '-proj +proj=eck4 +lon_0=11 +datum=WGS84', + `-dissolve2 copy-fields=${copyFieldsList}`, + '-clean snap-interval=257', + `-proj +proj=webmerc +datum=WGS84 +lon_0=11`, + '-erase bbox=18812993.94,-22000000,20000000,16500000 target=1 + name=east', + '-erase bbox=972000,-22000000,18812993.95,16500000 target=1 + name=west', + '-merge-layers target=east,west name=complete', + `-dissolve2 target=complete copy-fields=${copyFieldsList}`, + '-proj wgs84', + `-o force target=complete ${outputFilePathRussiaAntimeridian50m}` +].join(' '); +await mapshaper.runCommands(commandsFixRussiaAntimeridian); + +const commandsRussia = [ + `-i combine-files ${outputFilePathRussia50m} ${outputFilePathRussiaAntimeridian50m}`, + '-explode target=russia', + `-each 'id = this.id' target=russia`, + `-filter '![13, 15].includes(id)' target=russia`, + '-merge-layers target=russia,russia_antimeridian force name=russia', + `-dissolve2 target=russia copy-fields=${copyFieldsList}`, + `-o force target=russia ${outputFilePathRussia50m}` +].join(' '); +await mapshaper.runCommands(commandsRussia); + +// Process 50m UN geodata + +// Get countries from all polygon features +const outputFilePathCountries50m = `${outputDirGeojson}/${unFilename}_50m/countries.geojson`; +const commandsCountries50m = [ + `-i combine-files ${inputFilePathUNGeojson} ${outputFilePathAntarctica50m} ${outputFilePathFiji50m} ${outputFilePathRussia50m}`, + `-rename-layers un_polygons,un_polylines,antarctica,fiji,russia`, + // Remove country polygons with bad geometry + `-filter '!["ATA", "FJI", "RUS"].includes(iso3cd)' target=un_polygons`, + '-merge-layers target=un_polygons,antarctica,fiji,russia force name=all_features', + // Subtract Caspian Sea from country polygons + `-filter 'globalid === "{BBBEF27F-A6F4-4FBC-9729-77B3A8739409}"' target=all_features + name=caspian_sea`, + '-erase source=caspian_sea target=all_features', + // Update country codes for disputed territories at Egypt/Sudan border: https://en.wikipedia.org/wiki/Egypt%E2%80%93Sudan_border + `-each 'if (globalid === "{CA12D116-7A19-41D1-9622-17C12CCC720D}") iso3cd = "XHT"'`, // Halaib Triangle + `-each 'if (globalid === "{9FD54A50-0BFB-4385-B342-1C3BDEE5ED9B}") iso3cd = "XBT"'`, // Bir Tawil + `-each 'if (iso3cd) iso3cd = iso3cd.toUpperCase()'`, + `-filter '${filters.countries}'`, + '-clean', + `-o ${outputFilePathCountries50m}` +].join(' '); +await mapshaper.runCommands(commandsCountries50m); +clampToAntimeridian(outputFilePathCountries50m); + +// Get land from all polygon features +const inputFilePathLand50m = outputFilePathCountries50m; +const outputFilePathLand50m = `${outputDirGeojson}/${unFilename}_50m/land.geojson`; +const commandsLand50m = [inputFilePathLand50m, '-dissolve2', `-o ${outputFilePathLand50m}`].join(' '); +await mapshaper.runCommands(commandsLand50m); + +// Process 110m UN geodata + +// Get countries from all polygon features +const inputFilePathCountries110m = outputFilePathCountries50m; +const outputFilePathCountries110m = `${outputDirGeojson}/${unFilename}_110m/countries.geojson`; +const commandsCountries110m = [ + inputFilePathCountries110m, + '-simplify 20%', + // Use 'snap-interval' to fix alignment issues with continental USA, Alaska, and Mexico + '-clean snap-interval=0.015', + `-o ${outputFilePathCountries110m}` +].join(' '); +await mapshaper.runCommands(commandsCountries110m); + +// Get land from all polygon features +const inputFilePathLand110m = outputFilePathCountries110m; +const outputFilePathLand110m = `${outputDirGeojson}/${unFilename}_110m/land.geojson`; +const commandsLand110m = [inputFilePathLand110m, '-dissolve2', `-o ${outputFilePathLand110m}`].join(' '); +await mapshaper.runCommands(commandsLand110m); + +for (const resolution of resolutions) { + for (const { source } of Object.values(vectors)) { + await convertShpToGeo(getNEFilename({ resolution, source })); + } +} + +for (const resolution of resolutions) { + for (const { + name, + specs: { bounds, filter } + } of scopes) { + await createCountriesLayer({ bounds, filter, name, resolution, source: layers.countries }); + await createLandLayer({ bounds, name, resolution, source: layers.land }); + await createCoastlinesLayer({ bounds, name, resolution, source: layers.coastlines }); + await createOceanLayer({ bounds, name, resolution, source: layers.ocean }); + await createRiversLayer({ bounds, name, resolution, source: layers.rivers }); + await createLakesLayer({ bounds, name, resolution, source: layers.lakes }); + await createSubunitsLayer({ bounds, name, resolution, source: layers.subunits }); + await convertLayersToTopojson({ name, resolution }); + } +} diff --git a/topojson/config.mjs b/topojson/config.mjs new file mode 100644 index 00000000000..1c5c53f26b5 --- /dev/null +++ b/topojson/config.mjs @@ -0,0 +1,109 @@ +const config = { + resolutions: [50, 110], + scopes: [ + { + name: 'africa', + specs: { + filter: 'georeg === "AFR"', + bounds: [-30, -50, 60, 50] + } + }, + { + name: 'antarctica', + specs: { + filter: 'georeg === "ANT"', + bounds: [-180, -90, 180, -60] + } + }, + { + name: 'asia', + specs: { + filter: 'georeg === "ASI"', + bounds: [15, -90, 180, 85] + } + }, + { + name: 'europe', + specs: { + filter: 'georeg === "EUR" && iso3cd !== "GRL"', + bounds: [-30, 0, 60, 90] + } + }, + { + name: 'north-america', + specs: { + filter: 'subreg === "Northern America" || ["Central America", "Caribbean"].includes(intreg)', + bounds: [-180, 0, -45, 85] + } + }, + { + name: 'oceania', + specs: { + filter: 'georeg === "OCE"', + bounds: [-180, -50, 180, 25] + } + }, + { + name: 'south-america', + specs: { + filter: 'intreg === "South America"', + bounds: [-100, -70, -30, 25] + } + }, + { + name: 'usa', + specs: { + filter: 'iso3cd === "USA" && ![4, undefined].includes(stscod)', + bounds: [-180, 0, -45, 85] + } + }, + { + name: 'world', + specs: { + filter: '!(iso3cd === "USA" && stscod === 4)', + bounds: [] + } + } + ], + outputDirGeojson: './build/geojson', + outputDirTopojson: './dist', + inputDir: './build', + vectors: { + // 'coastlines', 'countries', 'land', and 'ocean' are derived from UN geodata + lakes: { + source: 'lakes', + type: 'physical' + }, + rivers: { + source: 'rivers_lake_centerlines', + type: 'physical' + }, + subunits: { + source: 'admin_1_states_provinces_lakes', + type: 'cultural' + } + }, + layers: { + coastlines: 'land', + countries: 'countries', + ocean: 'land', + lakes: 'lakes', + land: 'land', + rivers: 'rivers_lake_centerlines', + subunits: 'admin_1_states_provinces_lakes' + }, + unFilename: 'un_geodata_simplified', + unDownloadUrl: 'https://geoportal.un.org/arcgis/sharing/rest/content/items/d7caaff3ef4b4f7c82689b7c4694ad92/data', + filters: { + countries: 'stscod !== undefined', + subunits: ['AUS', 'BRA', 'CAN', 'USA'].map((id) => `adm0_a3 === "${id}"`).join(' || ') + } +}; + +export const getNEFilename = ({ resolution, source }) => `ne_${resolution}m_${source}`; + +export function getNEDownloadUrl({ resolution, vector: { source, type } }) { + return `https://naciscdn.org/naturalearth/${resolution}m/${type}/${getNEFilename({ resolution, source })}.zip`; +} + +export default config; diff --git a/topojson/dist/africa_110m.json b/topojson/dist/africa_110m.json new file mode 100644 index 00000000000..5bfa294d618 --- /dev/null +++ b/topojson/dist/africa_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[13210,11041],[-48,3],[-110,16],[-95,10],[-137,31],[-31,67],[-8,58],[-24,52],[-30,23],[-66,3],[-90,-28],[-40,-33],[-87,-37],[-60,20],[-68,12],[-63,22],[-65,35],[-63,43],[-25,35],[-55,27],[-53,0],[-54,24],[-71,166],[-31,51],[-71,78],[-41,26],[-53,-21],[-38,23],[-9,43],[-39,-11],[-6,-59],[-30,-12],[-29,7],[-77,4],[10,-27],[-14,-69],[26,-20],[47,-99],[55,-115],[56,-45],[25,-41],[39,-16],[56,-45],[4,-33],[24,-17],[5,-27],[-14,-25],[2,-46],[57,-69],[6,-32],[34,-44],[9,7],[-14,50],[-2,53],[26,16],[9,52],[37,29],[51,-36],[-17,-57],[21,-41],[-1,-28],[-27,-57],[-20,-23],[12,-31],[31,-7],[19,-3],[17,-36],[37,-5],[86,27],[99,-4],[36,-9],[42,2],[80,33],[46,74],[181,151],[17,34],[18,29],[33,-3],[-11,-59],[-13,-29],[13,-16],[2,-79],[33,-69],[50,-57],[31,-25],[102,-34],[106,-13],[24,-17],[95,-122],[22,-18],[39,-4],[2,-45],[-58,-96],[-54,-45],[-31,-32],[-47,-92],[-45,-3],[-19,24],[-36,-64],[-19,-79],[10,-60],[-31,-34],[-78,-11],[-34,-17],[-25,-31],[-12,-56],[-28,-32],[-91,-5],[-45,-12],[-18,-27],[-6,-57],[-27,-29],[-42,-15],[-41,13],[-70,-7],[-137,-49],[-86,-29],[-21,-13],[-25,-34],[-18,-83],[-72,-35],[-54,-20],[-191,-51],[-80,-28],[-44,-21],[-36,-51],[-22,-18],[-56,-6],[-49,7],[-112,-66],[-72,-23],[-98,-3],[-55,-10],[-98,-75],[-110,-31],[-50,0],[-51,15],[-46,70],[-11,107],[-21,54],[-14,89],[-23,41],[-2,36],[9,98],[-9,44],[-7,41],[-36,53],[-23,50],[-70,63],[-53,69],[-25,43],[-29,76],[-46,86],[-42,43],[-59,42],[-24,-1],[-48,41],[-19,32],[-26,24],[-30,54],[6,34],[-17,78],[7,72],[-25,61],[-19,27],[-53,97],[-24,20],[-73,42],[-49,37],[-24,56],[0,33],[-28,50],[-111,155],[-96,126],[-38,63],[-32,39],[-24,9],[-55,-3],[-3,11],[23,70],[26,104],[2,27],[-10,-7]],[[9527,11644],[-24,-27],[-37,-122],[-8,-72],[-33,-32],[-58,33],[-65,64],[-26,56],[-39,58],[-52,112],[-15,-5],[-20,-51],[46,-75],[12,-38],[68,-88],[55,-63],[4,-39],[30,-36],[22,-62],[-3,-27],[110,-175],[77,-150],[42,-46],[6,-27],[-6,-62],[19,-55]],[[9632,10715],[8,-29],[24,-28],[74,-44],[80,-58],[-1,-8]],[[9817,10548],[4,-57],[29,-58],[9,-58],[4,-116],[11,-76],[20,-92],[14,-24],[25,0],[43,-28],[39,-45],[49,-33]],[[10064,9961],[54,-93],[30,-111],[20,-94],[63,-111],[15,34],[29,-9],[22,-56],[19,-14],[19,11],[41,-13],[14,-27],[59,-14],[49,-63],[36,-39],[68,-54],[38,-54],[39,-44],[34,-6],[20,-18]],[[10733,9186],[34,-48],[9,-39],[-7,-20],[-88,-36],[-37,-24],[14,-16],[26,17],[53,2],[16,-19]],[[10753,9003],[26,-14],[37,-62],[35,-35],[53,-40],[39,-7],[66,9],[103,53],[68,-5],[41,-13],[32,9],[65,39],[66,23],[24,-11],[56,4],[27,14],[80,7],[18,-4],[63,13],[102,27],[52,23],[18,33],[31,11],[73,-18],[-26,-96],[11,-113],[-40,-43],[-11,-93],[-100,-184],[-47,-64],[-37,-75],[-44,-69],[-22,-48],[-4,-30],[-18,-40],[-44,-72],[-75,-106],[-27,-46],[-166,-182],[-119,-115],[-22,-16],[-177,-103],[-167,-140],[-119,-125],[-109,-122],[-61,-97]],[[10504,7080],[-35,-39],[-42,-16],[-82,-72],[-24,-11],[-21,-26],[-10,-76],[-65,-104],[-1,-18],[-28,-56],[-38,-23]],[[10158,6639],[-15,-57],[-47,-145],[13,-49],[62,-65],[22,-5],[-1,-48],[-13,-19],[-17,-76],[24,-11],[-20,-57],[18,-89],[18,-37],[13,6],[22,-84],[3,-40],[71,-45],[24,-7],[-3,-27]],[[10332,5784],[17,-11],[9,-65],[-24,-39],[9,-71],[-1,-70],[16,-54],[-11,-37],[16,-151],[-6,-35],[22,-42],[18,-9],[0,-40],[-14,-15],[-24,-86],[-65,-79],[-34,-35],[-25,-40],[-98,-62],[-103,-37],[-42,-1],[-35,-31],[-57,-28],[-79,-47],[-1,-13],[-41,-60],[-51,-53],[0,-15],[-42,-3],[-40,-27],[-54,-61],[-67,-50],[-29,13],[-7,-94],[3,-26],[39,-16],[16,-36],[12,-66],[28,-84],[21,-21],[11,-53],[2,-68],[-23,-142],[16,-28],[-51,-73],[-51,-25],[-201,-71],[-60,-30],[-29,-21],[-41,-57],[55,-62],[-5,-67]],[[9231,3390],[-55,-200],[-15,-40],[-56,-54],[-28,-11],[-74,-65],[-117,-183],[-78,-97],[-99,-75],[-116,-112],[-95,-69],[-118,-71],[-78,-32],[-105,3],[-35,-30],[-107,-27],[-62,-5],[-45,13],[-75,11],[-39,-14],[-118,12],[-67,-21],[-28,-24],[-32,-13],[-121,2],[-66,-22],[-55,-39],[-56,2],[-83,59],[-36,33],[-62,-5],[-19,22],[25,22],[-6,26],[-59,95],[-21,5],[4,45],[34,-6],[24,31],[1,50],[-15,67],[-62,80],[-74,122],[-27,68],[-25,78],[-57,98],[-15,11]],[[6818,3130],[-114,101],[-40,70],[-39,91],[2,25],[-21,47],[-25,99],[1,75],[-24,76],[-26,62],[1,83],[-11,103],[15,10],[-4,45],[-17,43],[-42,54],[-99,150],[-27,73],[-84,162],[-51,79],[-48,48],[-22,42],[-17,79],[3,50]],[[6129,4797],[9,81],[-3,96],[38,117],[34,75],[10,70],[27,111],[28,39],[31,59],[38,32],[42,19],[20,29],[25,69],[10,115],[-13,47],[-34,49],[-47,95],[-7,47],[-23,45],[48,47],[10,20],[-12,53],[-37,71],[-29,72],[-5,26],[-74,128],[-4,19],[71,10],[44,23]],[[6326,6461],[-12,5],[-90,-19],[-31,33]],[[6193,6480],[-7,18],[11,25],[-12,38],[-22,31]],[[6163,6592],[-20,26],[-4,27],[-21,27],[-78,72]],[[6040,6744],[-42,54],[-85,88],[-57,44],[-36,37],[-58,93],[-62,129],[-6,27],[45,6],[29,43],[14,92],[22,10],[-34,33],[25,21],[16,51],[11,7]],[[5822,7479],[-37,6],[-3,21],[30,48],[28,66],[5,48]],[[5845,7668],[0,31],[15,64],[-28,71],[-11,54],[-25,18],[-41,2],[-33,16],[-22,74],[-20,-17],[-27,2],[2,35]],[[5655,8018],[-60,-28],[-154,-16],[-53,-14],[-91,-10],[-32,16],[-42,39],[-33,75],[-1,34],[-70,91],[-58,46],[-92,16],[-168,-9]],[[4801,8258],[-83,-7],[-74,-14]],[[4644,8237],[-65,-18]],[[4579,8219],[-30,-30],[-59,-19],[-80,-14],[-120,-63],[-98,-27],[-91,-47],[-42,27],[-112,24]],[[3947,8070],[-137,22],[-305,-36],[2,-4],[-180,-80],[-28,-9]],[[3299,7963],[-30,2],[-94,39],[-126,70],[-31,25],[-92,90],[-191,129],[-20,20]],[[2715,8338],[-8,11],[-125,63],[-10,28],[-36,14],[-52,76],[-30,27],[24,31],[-27,60]],[[2451,8648],[-1,32],[-45,45],[-10,54],[-51,27],[-23,-5],[-68,56],[16,51],[-30,-14],[-26,49]],[[2213,8943],[-36,4],[-35,19],[-14,17],[14,38],[-25,40],[-91,8],[-21,16],[2,20],[-57,26]],[[1950,9131],[-7,30],[2,77]],[[1945,9238],[-9,39],[37,39]],[[1973,9316],[-4,36],[-99,126],[94,133],[13,29],[3,36]],[[1980,9676],[-1,28],[11,55],[50,122],[10,70],[-3,76],[-18,64],[-43,78],[27,46],[5,80],[-35,65],[-27,-5],[-35,68],[-20,-56]],[[1901,10367],[-6,12],[19,135],[22,55],[19,20],[27,5],[82,176],[15,50],[85,79],[33,20],[22,27],[8,30],[1,57],[62,138],[65,32],[56,37],[59,137]],[[2470,11377],[27,30],[132,30],[68,26],[118,88],[46,25],[43,43],[63,81],[26,72],[-32,38],[-2,75],[4,44],[20,37],[43,45],[46,105],[84,80],[163,66],[52,24],[44,41],[53,85],[58,135],[19,21],[68,16],[24,-53],[79,-50],[55,-6],[56,11],[48,-1],[95,13],[7,-26],[37,-8],[31,6],[34,-7]],[[4079,12463],[63,5],[74,36],[27,39],[44,20],[71,12],[31,-8],[44,45],[113,52],[53,13],[158,9],[192,39],[38,4],[120,-2],[41,-21],[64,-9],[109,43],[47,5],[45,-15],[37,0],[50,20],[42,-23],[42,-2],[88,10]],[[5672,12735],[86,41],[74,18],[66,-19],[15,-63],[37,-4],[54,40],[24,2],[6,-30],[-36,-41],[-46,-26],[-10,-48],[24,-34],[42,-23],[28,-60],[-32,-57],[-52,-49],[-63,-32],[-15,-22],[14,-39],[33,-28],[61,-34],[44,21],[21,-60],[54,-6]],[[6101,12182],[116,-50],[56,-4],[97,13],[92,-23],[53,-22],[103,-25],[38,-47],[5,-29],[22,-42],[41,-35],[51,-17],[96,-7],[78,-17],[117,-42],[80,-57],[52,-20],[32,1],[54,21],[38,32],[40,60],[-1,28],[-19,26],[-13,58],[2,20],[31,41],[74,52],[59,26],[106,23],[56,-2],[141,-45],[-3,-42],[20,-13],[108,-23],[16,-8],[91,2],[48,-17],[16,-38]],[[8094,11960],[4,-16],[49,-4],[86,12],[174,-33],[55,-28],[37,-10],[92,-9],[79,-34],[63,18],[85,53],[51,24],[18,-11],[60,9],[24,10],[107,-3],[-9,-31],[36,-30],[68,5],[34,-13],[35,8],[114,6],[70,29]],[[9426,11912],[40,40],[41,73],[45,120],[4,27],[53,98],[26,65],[38,38],[11,24],[-27,128],[5,50],[13,12],[9,13],[-29,44],[61,42],[0,28],[-28,20],[-42,-25],[-25,-28],[-39,1],[-71,33],[-21,0],[-60,-36],[-43,-43],[-172,-35],[-39,10],[-32,21],[-42,45],[-92,35],[-102,15],[-41,-92],[-31,9],[-80,-24],[-42,12],[-38,22],[-5,43],[-30,2],[-88,23],[-118,-28],[1,14],[46,6],[79,37],[-146,-7],[33,18],[9,22],[-42,12],[-17,32],[-1,61],[-56,24],[-45,2],[25,26],[41,16],[-35,30],[44,41],[-29,15],[-10,47],[25,31],[-117,-18],[-11,4],[23,77],[71,53],[83,15],[39,-25],[33,1],[38,21],[152,-13],[-40,26],[39,16],[74,7],[-65,34],[-4,31],[56,8],[211,-17],[54,4],[46,39],[135,62],[88,22],[67,8],[160,-8],[68,-8],[52,-35],[44,3],[52,-24],[40,-37],[31,13],[62,-13],[60,-26],[138,-24],[150,26],[115,-26],[136,49],[64,40],[19,20],[5,63],[-27,65],[-35,37],[-60,42],[-76,13],[-18,23],[-33,10],[-114,87],[-67,44],[-155,54],[-130,68],[-17,35],[38,6],[54,-10],[27,8],[24,47],[30,31],[37,14],[20,38],[-56,21],[-25,40],[91,-4],[82,44],[58,16],[-10,28],[-42,1],[-20,-13],[-86,-8],[-84,-4],[-131,-49],[-144,-22],[-66,-39],[-16,16],[-58,-35],[21,-66],[42,-46],[39,-24],[89,26],[66,-3],[-19,-50],[-31,-9],[-126,-1],[-64,-28],[-69,-17],[-22,-25],[-52,-23],[-36,0],[-36,17],[20,59],[-19,36],[-78,27],[-45,-4],[-14,21],[95,44],[82,24],[-18,23],[-65,14],[-96,-15],[-95,32],[-22,29],[83,10],[-59,21],[-112,-11],[-49,-10],[-10,-27],[-73,-72],[-70,-39],[-12,-61],[-34,-56],[-55,-10],[-55,-56],[-10,-22],[-9,-70],[3,-25],[-28,-26],[-36,3],[-31,-35],[-8,-46],[-52,-43],[72,-86],[-8,-21],[18,-30],[35,-24],[103,-31],[-1,-29],[-53,-14],[-78,16],[-92,-14],[-57,-53],[-64,-24],[-77,-58],[15,43],[48,22],[-5,17],[-66,-2],[-11,19],[-17,19],[-60,3],[-54,19],[-126,-29],[-66,-3],[-19,-17],[31,-45],[-17,-25],[-58,13],[-39,0],[-38,52],[-38,-22],[-10,-50],[6,-18],[100,-105],[-50,8],[-12,-30],[31,-17],[-43,-24],[48,-36],[104,-44],[37,-28],[3,-57],[-21,-11],[-50,51],[-82,-15],[18,-45],[40,-16],[-35,-29],[-11,21],[-50,20],[-5,-20],[22,-40],[45,-106],[-54,34],[-69,1],[-35,49],[-65,-19],[-2,53],[-44,58],[-26,24],[7,22],[35,31],[40,15],[52,-3],[98,-39],[53,10],[-17,22],[-90,22],[-103,-2],[-86,12],[-34,46],[3,41],[-28,-3],[-52,41],[-30,52],[-22,7],[0,26],[-24,26],[-55,25],[-17,30],[15,106],[20,74],[-1,24],[-31,4],[-19,10],[-81,87],[-25,-12],[-128,68],[-10,8],[-112,68],[-51,14],[-52,-4],[-28,13],[-11,33],[-55,19],[-48,41],[25,15],[-62,58],[-13,63],[-71,33],[-23,-49],[-42,-30],[-40,47],[-4,51],[21,17],[-27,29],[-47,-4],[-28,-20],[-48,-16],[-62,-7],[-9,-37],[17,-19],[4,-42],[-18,-17],[22,-70],[36,-28],[141,-67],[52,-114],[37,-44],[76,-55],[69,-28],[119,4],[-7,-70],[202,-78],[82,-37],[77,-56],[15,-24],[-18,-47],[-33,6],[-25,20],[-19,42],[-34,4],[-76,31],[-32,-12],[-38,-46],[-23,-53],[6,-14],[44,-14],[42,-24],[9,-54],[-93,-49],[-13,-54],[-57,-60],[-44,-1],[-19,39],[68,78],[16,32],[-21,33],[-40,103],[-48,25],[-77,29],[8,18],[-40,46],[-36,3],[-71,40],[-38,41],[-55,7],[-36,-6],[-79,38],[-127,104],[-77,46],[-86,62],[-53,135],[-18,18],[-144,53],[-57,10],[-43,-21],[-42,-47],[-37,-19],[-56,-8],[-14,-5],[-3,-3],[-37,-10],[-52,-36],[-30,-35],[-68,-16],[-58,11],[-112,38],[-49,-3],[-10,12],[-66,10],[-42,-5],[-75,-32],[-33,-22],[-11,-23],[4,-63],[16,-15],[8,-70],[-9,-13],[-149,-80],[-172,-41],[-40,-35],[4,-27],[-39,-23],[-57,-59],[-50,-66],[-10,-29],[14,-40],[32,-39],[34,-21],[-99,-55],[-57,-90],[17,-16],[-85,-10],[-72,-50],[-18,-42],[-32,-29],[-67,5],[-208,-3],[-62,-8],[-109,-41],[-25,-37],[-37,-22],[-68,32],[-54,76],[14,14],[-88,54],[-70,0],[-67,-30],[-94,14],[-71,-12],[29,61],[-3,92],[10,69],[-68,-18],[-7,36],[-33,14],[36,97],[25,26],[26,66],[1,28],[36,83],[-4,49],[-27,83],[8,30],[-13,20],[14,22],[7,67],[-26,-5],[-49,40],[-3,19],[46,35],[70,13],[28,30],[57,30],[54,-3],[44,-25],[167,-1],[33,10],[185,-34],[61,0],[81,15],[93,-17],[39,9],[45,-16],[96,2],[46,38],[27,98],[30,54],[-22,21],[12,101],[14,13],[1,65],[-23,40],[-86,29],[-38,42],[-19,68],[-52,10],[1,32],[-34,16],[-39,-9],[-46,20],[-122,25],[-25,-6],[-38,26],[44,48],[-69,-1],[6,33],[90,20],[25,-5],[72,23],[47,7],[39,-28],[48,-11],[42,7],[124,3],[-60,110],[-11,45],[59,-7],[54,-46],[33,2],[97,-14],[35,6],[29,56],[75,25],[74,15],[5,3]],[[10765,5659],[10,-8],[15,-67],[-33,5],[-9,16],[7,47],[10,7]],[[919,9571],[45,-52],[-29,-10],[-21,26],[5,36]],[[1058,9700],[17,-11],[-17,-25],[-23,6],[23,30]],[[726,9841],[9,-19],[-44,-21],[-6,27],[41,13]],[[9378,12446],[-28,2],[-17,-24],[-85,-25],[-45,-1],[-43,17],[-13,47],[98,43],[63,-6],[82,-1],[4,-50],[-16,-2]],[[5794,13611],[13,-107],[-45,-111],[-23,-1],[-46,21],[-32,114],[25,34],[51,20],[27,-1],[30,31]],[[5712,7854],[-33,-58],[-36,8],[-1,23],[28,37],[36,11],[6,-21]],[[7931,12527],[68,-22],[80,2],[81,-7],[35,-30],[61,21],[0,-32],[-144,-12],[-74,6],[-5,11],[-75,15],[-89,6],[-12,11],[8,37],[66,-6]],[[8493,12587],[-23,35],[32,26],[41,-4],[-22,-36],[-28,-21]],[[7425,12956],[34,-48],[-40,-3],[-29,12],[9,25],[26,14]],[[8237,12925],[-43,45],[47,-5],[-4,-40]],[[8008,12887],[-36,6],[-25,31],[-125,79],[-45,15],[49,25],[24,-31],[73,-23],[35,-48],[52,-28],[-2,-26]],[[8309,13039],[-63,1],[-49,25],[9,14],[66,13],[37,-53]],[[12620,11237],[-55,-11],[25,31],[61,21],[14,-8],[-45,-33]],[[6695,12928],[-60,-77],[-17,-34],[1,-26],[25,-48],[-31,-47],[-78,16],[-41,41],[-81,17],[-109,57],[-29,1],[-40,41],[11,29],[34,10],[87,4],[62,-25],[82,5],[103,17],[74,24],[7,-5]],[[5816,13329],[17,-90],[-16,-139],[-16,-46],[-43,16],[-31,-12],[1,-21],[-26,-18],[-34,5],[-30,37],[-4,32],[15,51],[-1,77],[-24,45],[-22,21],[22,20],[37,-2],[29,12],[57,47],[49,-13],[20,-22]],[[11498,11669],[-24,-7],[-13,30],[22,17],[21,-21],[-6,-19]],[[11635,5573],[13,-48],[29,-38],[1,-18],[54,-61],[31,-113],[6,-103],[23,-70],[20,-33],[-4,-30],[-32,-73],[-31,14],[-18,63],[-27,-2],[-14,-15],[34,-129],[-22,-64],[-16,-6],[-25,-69],[10,-63],[-22,-83],[-100,-278],[-52,-170],[-64,-176],[-40,-164],[-40,-92],[-29,-81],[-47,-27],[-69,-9],[-38,-13],[-81,-44],[-58,0],[-70,40],[-43,11],[-46,32],[-55,98],[-3,81],[10,56],[-54,92],[-17,68],[2,41],[32,87],[33,24],[117,189],[-9,41],[6,38],[-33,72],[-32,123],[-13,91],[58,95],[16,95],[49,-1],[41,16],[75,10],[18,35],[31,2],[57,-23],[6,39],[80,63],[26,-13],[-16,-40],[43,26],[-20,44],[33,45],[24,-41],[37,65],[-6,35],[12,24],[39,20],[-27,49],[8,26],[18,4],[37,-35],[34,38],[46,40],[16,65],[-13,40],[49,57],[12,31]],[[12550,4265],[24,-5],[23,-33],[-3,-30],[-22,-6],[-48,18],[-14,24],[10,26],[30,6]],[[5383,7385],[12,-25],[-34,-32],[-1,44],[23,13]],[[10211,6381],[-40,21],[-10,58],[19,7],[10,-42],[12,-6],[9,-38]],[[12291,9175],[58,6],[53,-19],[-58,-28],[-63,-8],[-50,35],[33,25],[27,-11]],[[4639,13041],[-30,-26],[-15,27],[45,-1]],[[4877,13089],[-19,-10],[-91,26],[-15,22],[61,35],[60,14],[35,-45],[-31,-42]],[[5034,13168],[-4,-12],[-64,16],[-2,20],[39,4],[31,-28]],[[1974,11429],[-22,-2],[-30,47],[49,9],[48,25],[15,-7],[-60,-72]],[[2135,11395],[-22,-8],[-26,14],[-6,25],[18,20],[38,1],[10,-22],[-12,-30]],[[2373,11528],[1,-23],[-17,-47],[-47,-18],[33,70],[30,18]],[[1791,11499],[-29,35],[39,0],[-10,-35]],[[12849,4318],[-33,8],[13,39],[31,32],[28,-37],[-13,-31],[-26,-11]],[[1930,12104],[-52,14],[2,20],[68,-17],[-18,-17]],[[11534,13453],[64,-60],[34,-65],[41,-48],[27,-12],[47,0],[30,-13],[3,-23],[-44,2],[-57,-20],[-21,-23],[-4,-45],[-29,-102],[-39,9],[-10,-54],[0,-44],[11,-79],[23,-38],[50,-23],[73,-5],[35,-8],[23,-39],[92,-50],[38,-12],[97,-18],[33,2],[202,42],[60,-13],[21,22],[-18,58],[-15,81],[5,77],[13,51],[-20,40],[-31,40],[-41,4],[0,27],[38,-10],[25,8],[-36,54],[-20,13],[-53,0],[-37,12],[-2,58],[28,83],[18,-19],[103,-39],[92,15],[50,22],[4,34],[-97,54],[-26,87],[-35,11],[-74,-7],[-28,-15],[-21,-43],[8,-28],[-8,-42],[-51,83],[-1,59],[41,67],[-28,23],[-68,11],[-98,42],[-16,19],[-68,127],[-83,24],[3,48],[90,-9],[34,-17],[37,19],[-65,36],[-2,15],[74,58],[172,4],[18,39],[50,53],[18,99],[-22,30],[-28,10],[-66,-1],[-26,-21],[-68,14],[-37,23],[-49,8],[-32,-8],[-207,-77],[-50,-27],[-87,-64],[-72,-25],[-42,-3],[-42,-23],[-66,-102],[-50,-26],[-9,-39],[50,-15],[31,-26],[44,-67],[-12,-34],[-3,-64],[49,-59],[77,-81],[38,-32]],[[7926,5729],[5,-45],[-7,-63],[5,-121],[-14,-63],[-28,-17],[-238,0],[-16,-16],[-1,-443],[33,-64],[133,-128],[46,-29]],[[7844,4740],[-295,-56],[-80,3],[-98,17],[-194,10],[-39,26],[-31,37],[-587,0],[-64,-7],[-64,42],[-12,20],[-46,7],[-27,-4],[-60,-36],[-56,8],[-62,-10]],[[6326,6461],[109,6],[130,-4],[255,4],[34,-39],[9,-79],[26,-66],[85,-138],[17,-11],[69,7],[25,11],[38,4],[125,-4],[19,124],[10,23],[107,4],[39,-19],[-3,-27],[178,0],[11,-49],[-3,-66],[19,-55],[-23,-140],[15,-38],[33,-32],[29,-77],[1,-45],[-23,-24],[19,-54],[72,19],[48,0],[82,16],[22,-4],[26,21]],[[6163,6592],[111,81],[52,-35]],[[6326,6638],[-37,-11],[-46,-57],[-6,-86],[-44,-4]],[[8886,6971],[-18,-68],[57,-16],[5,-40],[-58,-47],[-7,-22],[-35,-57],[-23,-25],[-46,-24],[-39,1]],[[8722,6673],[-22,75],[-9,84],[-12,62],[-13,28]],[[8666,6922],[8,22],[34,-9],[11,-24],[72,11],[24,54],[47,6],[24,-11]],[[4930,9039],[-16,-40],[9,-25],[27,-26],[17,-71],[-17,-25],[-33,-84],[-90,-114],[-15,-3],[-11,-156],[8,-113],[-8,-124]],[[4644,8237],[24,9],[-30,80],[5,33],[-2,290],[-38,92],[-1,48],[-85,56],[7,53],[14,37]],[[4538,8935],[33,26],[36,39],[94,-1],[41,38],[15,30]],[[4757,9067],[-2,31],[28,26],[38,17],[109,-102]],[[4538,8935],[-42,-2],[-113,23]],[[4383,8956],[-16,3],[-60,-27],[-45,3],[-275,1],[-14,-59],[20,-48],[6,-49],[-2,-50],[12,-16]],[[4009,8714],[-14,-10],[-55,62],[-71,15],[-76,-19],[-45,-24],[-36,7],[-37,34],[-26,54],[-31,-1],[-24,20]],[[3594,8852],[25,102],[21,46],[-9,43],[-14,14],[44,22],[49,6],[25,20],[42,80],[-10,65],[34,31],[25,10],[51,-33],[23,0],[25,29],[60,88],[55,43],[42,-15],[58,42],[96,43],[63,45],[68,0],[71,-24]],[[4438,9509],[-11,-56],[32,-71],[34,-45],[91,-51],[-35,-3],[0,-40],[129,-73],[35,18],[24,-43],[-30,-11],[50,-67]],[[8715,4073],[-53,-6],[-27,-35],[-72,-15],[-26,-22],[-58,-67],[-90,-51],[-19,-16],[-17,-57],[-24,-41],[-67,-51],[-64,-20],[-1,-26],[-39,-97],[-39,-20],[-103,-4],[-113,35],[-42,29],[-31,11],[-44,-1],[-29,-30],[-27,-85],[-103,-86],[-50,-29],[-54,3],[-81,-6],[-10,13],[-3,50],[35,49],[-10,41],[-56,111],[-59,47]],[[7339,3697],[1,404],[146,0],[0,499],[29,42],[103,13],[175,32],[30,0],[40,-68],[9,-3],[53,47],[53,30],[55,8],[35,14],[43,3]],[[8111,4718],[-2,-21],[44,-70],[26,-27],[40,-64],[22,-66],[71,-59],[46,-18],[52,-44],[57,-26],[3,-54],[11,-45],[28,-47],[38,-17],[47,-7],[56,-18],[65,-62]],[[7761,8925],[21,-33],[47,-39],[49,-79],[4,-32],[-8,-42],[-20,-32],[1,-50],[19,-13],[86,-7],[-1,-8]],[[7959,8590],[-11,-36],[30,-21],[73,-12],[41,-39],[16,-40],[-6,-20],[29,-23],[95,-53],[38,-39],[0,-33],[24,-59],[57,-22],[49,-30],[10,-19],[19,-64],[10,-13],[-2,-8]],[[8431,8059],[-2,10],[-49,18],[-30,-18],[-53,-4],[-31,13],[-70,9],[-45,24],[-21,-6],[-11,-43],[-45,-11],[-96,7],[-135,-55],[-21,0],[-46,28],[-24,-15],[-28,-34],[-13,-42],[-35,-13],[-74,25],[-42,-4],[-40,6],[-115,40],[-18,28],[-73,48],[-45,8],[-23,-8],[-45,-34],[-62,-73],[-7,-88],[5,-42]],[[7137,7833],[-24,22],[-26,-5],[-65,1],[-67,7],[-106,-16],[-10,-10],[-20,-108],[-39,-75]],[[6780,7649],[-17,37],[1,52],[-121,128],[-27,47],[2,39],[-53,49],[-20,115],[-1,116],[32,28],[34,55],[21,45],[47,67]],[[6678,8427],[39,-11],[35,7],[91,38],[26,-30],[16,2],[77,45],[38,15],[131,10],[40,39],[35,50],[-34,29],[19,18],[26,6],[78,2],[111,22],[46,34],[75,84],[46,33],[36,92],[98,24],[54,-11]],[[4009,8714],[5,-71],[10,-32],[13,-85],[-38,-40],[-24,-47],[-48,-141],[9,-43],[24,-80],[38,-32],[5,-66],[-56,-7]],[[3299,7963],[-8,81],[28,67],[-7,61],[-19,11],[-49,60],[-53,7],[-49,26],[36,40],[5,62],[-23,53]],[[3160,8431],[25,6],[30,29],[16,34],[-34,30],[-1,34],[39,5],[30,-14],[-7,98],[-49,78],[-4,48],[27,35]],[[3232,8814],[32,20],[51,6],[6,-12],[43,-13],[61,42],[12,23],[54,14],[5,-32],[-7,-30],[36,-14],[32,35],[37,-1]],[[6780,7649],[-14,-48],[-26,-16],[-20,16],[-43,13],[-56,2],[-124,26],[-142,0]],[[6355,7642],[-16,17],[-79,-7],[-146,11],[-38,-2],[-9,-19]],[[6067,7642],[-195,0],[-27,26]],[[5655,8018],[36,54],[14,55],[-2,33],[15,32],[92,82],[60,61],[83,20],[40,-19],[39,-57],[33,-2],[33,23],[56,112],[55,148],[24,27],[21,-2],[22,22],[19,46],[4,29],[34,39],[56,125],[10,44],[24,46],[30,36],[52,11],[36,23],[14,95],[-22,29],[-45,31],[-18,79]],[[6470,9240],[57,0],[56,-74],[33,-105],[5,-53],[-7,-12],[2,-82],[17,-51],[44,-56],[-16,-25],[-168,8],[-35,-56],[72,-82],[83,-56],[78,-136],[-13,-33]],[[6326,6638],[14,3],[32,-31],[43,24],[3,32],[100,28],[-1,-82],[42,-8],[18,11],[50,62],[86,63],[33,28],[29,53],[8,133],[-4,50],[61,71],[36,65],[83,54],[43,45],[-1,66],[18,53],[8,52],[-5,56],[34,82],[-2,77],[6,33],[36,51],[42,82],[-1,42]],[[8431,8059],[37,-24],[27,-45],[73,-36],[48,27],[50,-1],[19,-15],[50,44],[39,-15],[13,-34],[55,-58],[75,-43],[16,-24]],[[8933,7835],[12,-1],[-21,-70],[-1,-52],[7,-36],[34,-9],[36,-33],[-109,-121],[-41,-18],[-48,-71],[-37,-96],[-19,-207]],[[8746,7121],[-33,-18],[-32,-46],[0,-27],[-40,-57],[4,-39],[21,-12]],[[8722,6673],[-8,-40],[30,-166],[-11,-23],[8,-42],[27,-50],[48,-31],[37,-43],[52,-113],[18,-53]],[[8923,6112],[-180,-15],[-99,-15],[7,-36],[-28,-37],[-33,-28],[17,-124],[2,-76],[-25,-81],[-14,-67],[8,-37],[31,-23],[54,-57],[70,-9],[9,31],[37,6],[-2,-189],[-61,16],[-24,-12],[-31,-1],[-32,68],[-76,79],[-94,22],[-17,20],[-43,73],[-30,-16],[-22,-35],[-32,-1],[-96,10],[-73,25],[-25,21],[1,54],[-47,-2],[-99,-17],[7,39],[-57,31]],[[6040,6744],[15,31],[34,37],[25,-21],[36,-1],[8,46],[-35,32],[-19,35],[-9,73],[16,-5],[129,-2],[-8,80],[22,9],[26,-11],[40,-65],[62,-14],[36,35],[26,-44],[26,-1],[22,20],[17,62],[12,22],[10,49],[-3,47],[6,67],[-14,29],[-78,36],[2,70],[35,46],[20,-3],[30,43],[-1,16],[-28,57],[-16,10],[-54,4],[-34,-20],[-53,-1],[-12,44],[6,42],[18,44]],[[10753,9003],[-43,-68]],[[10710,8935],[-97,-1],[-49,-10],[-26,8],[-3,72],[11,39],[16,12],[65,95]],[[10627,9150],[25,0],[81,36]],[[5672,12735],[0,-13],[-46,-61],[-5,-60],[14,-113],[-19,-87],[-15,-16],[-77,-56],[-15,-17],[1,-39],[36,-75],[51,-29],[64,-102],[74,-43],[70,-270]],[[5805,11754],[-20,-10],[54,-110],[18,-97],[-2,-168],[-16,-39],[17,-68],[-9,-55],[-60,-50],[88,-122],[1,-52],[32,-55],[25,-18],[55,8],[49,-21],[70,-19],[57,-110]],[[6164,10768],[-331,-190],[-335,-201],[-208,-176],[-81,-38],[-183,-35]],[[5026,10128],[-131,-24],[-33,21],[16,46],[0,59],[-169,59],[-61,26],[-71,65],[-4,39],[-419,274],[-460,293]],[[3694,10986],[-281,173],[-282,166]],[[3131,11325],[0,51]],[[3131,11376],[0,154],[128,78],[82,34],[149,14],[73,-1],[57,29],[66,58],[83,54],[98,24],[18,47],[-35,20],[15,69],[85,19],[24,40],[23,13],[116,8],[60,-11],[60,2],[15,52],[-50,44],[-21,29],[-15,67],[-5,109],[-9,85],[-69,50]],[[9407,10547],[-133,0]],[[9274,10547],[-193,0],[-71,22],[-74,-21],[-432,3],[-431,-4]],[[8073,10547],[0,1062],[-43,129],[32,51],[13,43],[-16,46],[-4,48],[39,34]],[[9426,11912],[7,-15],[84,-210],[10,-43]],[[9632,10715],[-48,-42],[-29,-7],[-45,-43],[-52,-39],[-41,-7],[-10,-30]],[[10627,9150],[-122,139],[-118,114],[-107,45],[-153,9],[-28,-13],[-50,-8],[-80,69],[-50,-90],[-30,15],[-36,2],[-83,-20]],[[9770,9412],[-5,11],[-13,119],[28,51],[30,80],[15,60],[1,34],[19,60],[48,-4],[14,33],[19,13],[65,24],[50,38],[23,30]],[[3131,11325],[0,-193],[-489,0],[0,-356],[-71,-40],[-16,-2],[-62,-39],[-20,-37],[11,-35],[11,-174],[-581,0],[-16,-65],[3,-17]],[[2470,11377],[661,-1]],[[10710,8935],[-39,-53],[26,-63],[39,-46],[42,-62],[67,-52],[37,-24],[424,-139],[139,-2],[-403,-412],[-71,-36],[-107,5],[-85,-25],[-58,-32],[-31,-44],[-45,-10],[-64,-4],[-26,-29]],[[10555,7907],[-83,-5],[-87,48],[-81,-33],[-49,-26],[-45,-66],[-79,15],[-123,15],[-20,7],[-139,96],[-46,18],[-108,1],[-15,24]],[[9680,8001],[-19,22],[6,76],[-56,17],[-27,1],[-41,68],[-8,59],[6,28],[-100,71],[-56,79],[-45,30],[-83,13],[-9,23],[28,67],[61,9],[22,-15],[55,34],[-4,132]],[[9410,8715],[17,70],[9,78],[27,45],[17,12],[31,-26],[24,30],[17,107],[12,29],[78,117],[60,9],[50,152],[18,74]],[[5822,7479],[48,-12],[197,3],[0,172]],[[4383,8956],[25,-24],[-15,-48],[55,-41],[10,-15],[0,-113],[28,-14],[-9,-65],[-10,-23],[44,-74],[-20,-41],[-8,-60],[10,-29],[-10,-85],[26,-47],[70,-58]],[[3160,8431],[-36,4],[-18,-44],[-31,-10],[-55,31],[9,44],[-21,85],[-32,30],[-81,-4]],[[2895,8567],[-39,-26],[-20,1],[25,62],[-31,91],[-72,94],[-101,0],[-86,-22],[-29,-60],[-42,-39],[-49,-20]],[[2213,8943],[19,39],[28,27],[41,15],[81,11],[-10,60],[16,23],[8,40],[-5,23]],[[2391,9181],[86,-6],[46,-24],[63,-19],[36,7],[101,7],[11,-3]],[[2734,9143],[-18,-34],[37,-27],[112,18],[25,14],[54,-17],[39,0],[37,24],[8,32],[31,0],[29,-19],[20,-47],[2,-30],[49,-85],[-4,-35],[28,-35],[31,-53],[18,-11],[0,-24]],[[1973,9316],[123,0],[64,27],[63,0],[76,-49],[58,17],[21,-24],[-13,-12],[-66,-12],[-106,46],[-57,-26],[-94,-30],[-86,0],[-11,-15]],[[1950,9131],[117,16],[158,34],[166,0]],[[9817,10548],[-410,-1]],[[10555,7907],[-77,-110],[-57,-60],[0,-527],[72,-105],[11,-25]],[[10158,6639],[-209,146],[-29,35],[19,19],[-6,37],[-506,286],[-44,16]],[[9383,7178],[0,67],[10,112],[15,34],[56,70],[75,106],[2,44],[-18,89],[-34,45],[-29,52],[-4,38],[-14,35],[-36,45],[-13,28]],[[9393,7943],[56,58]],[[9449,8001],[166,0]],[[9615,8001],[65,0]],[[2715,8338],[11,3],[23,42],[69,53],[73,90],[4,41]],[[5805,11754],[46,15],[60,69],[2,38],[-22,60],[23,30],[61,43],[80,45],[39,46],[-4,41],[11,41]],[[8073,10547],[-2,-294],[-145,0],[0,-73]],[[7926,10180],[-590,301],[-584,276],[-147,-64]],[[6605,10693],[-118,-51],[-76,62],[-29,16],[-218,48]],[[8546,2867],[-17,-36],[-54,11],[-55,55],[-51,82],[42,21],[77,89],[59,31],[58,18],[101,-74],[19,-43],[-19,-25],[-22,-55],[-50,-26],[-67,-10],[-21,-38]],[[2734,9143],[-1,84],[-22,40],[-32,16],[-12,-8],[-34,56],[17,34],[-12,50],[-31,72]],[[2607,9487],[29,-5],[34,23],[-5,30],[20,64],[27,10],[24,-7],[32,-30],[52,-6],[16,19],[67,7],[42,-4],[139,7],[505,-1],[9,8],[22,113],[-41,26],[-142,1245],[257,0]],[[5026,10128],[0,-286],[-24,-97],[0,-30],[-25,-80],[-57,-64],[-108,3],[-214,-14],[-59,-43],[-31,-3],[-69,6],[-1,-11]],[[9407,10547],[-18,-34],[-59,-7],[-56,41]],[[9231,3390],[-111,2]],[[9120,3392],[-7,122],[-16,8]],[[9097,3522],[8,121],[-4,88],[-17,72],[-42,75],[-6,50],[-38,112]],[[8998,4040],[11,6],[160,156],[-6,11],[10,69],[13,31],[18,9],[47,74],[5,30],[-31,25],[-11,86],[10,36],[30,58],[-8,33],[7,76],[-18,138],[-78,35],[-71,9],[-35,30],[-48,22],[-33,7],[-96,-1],[-6,56]],[[8868,5036],[-8,11],[-19,81],[108,36],[65,16],[109,42],[160,51]],[[9283,5273],[30,-52],[26,-27],[107,23],[23,-25],[12,-58],[1,-48],[-41,-68],[-6,-27],[30,-53],[86,-79],[6,-44],[29,1],[-1,45],[-12,24],[11,59],[76,31],[4,144],[11,23],[-13,41],[-104,129],[-84,77],[-19,164],[35,75],[45,1]],[[9535,5629],[46,0],[70,15],[64,-19],[14,-17],[39,-2],[35,16],[94,-6],[47,16],[12,34],[43,8],[71,-7],[120,38],[80,35],[62,44]],[[2607,9487],[-66,49],[-59,64],[-28,39],[-14,35],[-27,14],[-45,0],[-43,51],[-37,22],[-101,-1],[-78,-21],[-44,3],[-56,-11],[-29,-55]],[[9283,5273],[-40,9],[-24,21],[-12,32],[17,9],[20,40],[0,53],[16,42],[41,5],[16,35],[-26,44],[-6,88],[11,52],[14,37],[38,35],[-51,109],[-17,27],[-33,13],[-6,23]],[[9241,5947],[86,-30],[60,0],[13,16],[43,-40],[30,-44],[14,-83],[0,-69],[37,-39],[11,-29]],[[7844,4740],[112,23],[97,-7],[23,-9],[35,-29]],[[7339,3697],[0,-537],[-54,-13],[-45,-32],[-7,-20],[-41,-5],[-63,7],[-79,0],[-87,21],[-18,71],[-32,27],[-32,-9],[-39,-60],[-24,-17]],[[9449,8001],[134,57],[21,-13],[11,-44]],[[6605,10693],[39,-227],[46,-77],[2,-22],[57,-61],[-34,-65],[-23,-172],[-13,-270],[-142,-148],[-45,-53],[-49,-66],[-15,-40],[-46,-50],[23,-110]],[[6405,9332],[-37,0],[-72,-31],[-50,-42],[-12,-21],[-46,5],[-40,21],[-53,16],[-47,3],[-79,-2],[-67,-14],[-22,-9],[-60,-59],[-113,9],[-35,13],[-54,35],[-74,18],[-51,-30],[-72,-17],[-38,53],[-38,42],[-22,11],[-71,13],[-135,-3],[-58,-15],[-43,-30],[-12,-73],[-23,-34],[-39,-31],[-4,-104],[-8,-17]],[[6405,9332],[65,-92]],[[8746,7121],[26,5],[23,-19],[37,20],[25,36],[19,6]],[[8876,7169],[13,-35],[26,-23],[14,-33],[6,-65],[-16,-39],[-33,-3]],[[7761,8925],[12,34],[-15,37],[-44,43],[-19,120],[-34,27],[-37,-13],[-18,29],[16,33],[32,21],[18,32],[-29,54],[57,44],[13,83],[20,20],[47,68],[-8,48],[25,22],[56,3],[73,-5],[0,555]],[[9410,8715],[-29,0],[1,37],[11,26],[-3,31],[-60,62],[-45,38],[-14,95],[-1,32],[16,77],[-75,3],[-6,-42],[-89,0],[33,-29],[9,-27],[9,-78],[-78,-74],[-25,-38],[-64,-73],[-65,-5],[-129,81],[-67,-30],[0,-22],[-44,-27],[-35,-12],[-159,-8],[-115,2],[-62,-20],[-58,22],[-58,112],[-10,5],[-85,-14],[-36,-26],[-24,-41],[-28,-66],[-27,-89],[-39,-27]],[[9393,7943],[-58,-57],[-97,0],[-60,-12],[-48,-24],[-79,19],[-71,11],[-30,-14],[-17,-31]],[[9120,3392],[-18,4],[-5,-74],[-71,1],[-50,16],[-52,56],[5,60],[42,68],[27,28],[19,4],[64,-39],[16,6]],[[8876,7169],[104,9],[89,0],[314,0]],[[9241,5947],[-177,72],[-26,25],[-77,20],[-38,48]],[[8715,4073],[43,9],[47,-14],[84,-14],[37,4],[52,-5],[20,-13]],[[8868,5036],[-10,-5],[-70,6],[-42,-6],[-55,-17],[-43,-26],[-12,-49],[-37,-45],[-44,-18],[-69,-40],[-28,-42],[-88,-100],[-38,-10],[-134,13],[-87,21]],[[9372,7343],[18,-28],[24,-38],[-9,-107],[-1,-1],[-72,-66],[-48,-66],[58,-50],[-84,-36],[-18,17],[-85,-9],[-66,-33],[-40,57],[27,102],[5,89],[-1,4],[-7,52],[67,86],[93,21],[63,35],[76,-29]],[[8925,6067],[-50,12],[8,29],[7,27],[-43,39],[-19,81],[-89,80],[-51,105],[26,61],[-39,83],[22,196],[4,38],[55,-141],[-1,-5],[-7,-65],[28,-21],[-5,-63],[29,-58],[-34,-56],[118,-99],[11,-91],[79,-158],[7,-16],[-24,-8],[-32,30]],[[9579,5233],[-4,-19],[-52,58],[-26,-37],[-23,31],[1,55],[-34,43],[1,64],[-43,108],[42,81],[-9,177],[-52,94],[10,33],[3,12],[4,-3],[69,-70],[5,-5],[0,-2],[12,-152],[45,-52],[3,-4],[-1,-4],[-3,-12],[-31,-125],[21,-154],[4,-33],[28,-6],[30,-78]],[[9855,9060],[-19,27],[34,29],[40,-11],[-5,-49],[-22,-16],[-28,20]],[[13210,11041],[0,-11041],[-13210,0],[0,14648],[4586,0]],[[8256,5604],[-46,13],[-43,69],[10,64],[-36,54],[-2,42],[7,93],[22,30],[40,22],[24,49],[52,72],[43,16],[18,17],[9,19],[-4,41],[18,95],[1,54],[-13,148],[8,53],[-6,35],[-19,39],[-67,60],[-32,39],[-18,48],[-3,23],[-7,50],[-7,50],[-4,22],[-1,21],[-2,51],[-4,61],[-2,50],[-1,22],[-18,50],[-19,34],[-11,35],[5,71],[-15,59],[-70,28],[-94,36],[-229,171],[-57,26],[-93,2],[-212,-32],[-53,-12],[-112,-39],[-63,-57],[-33,-41],[-22,-47],[-20,-71],[-73,-91],[-15,-19],[-12,-14],[-96,-71],[-67,-75],[-26,-58],[-6,-13],[-32,-71],[5,-121],[-37,-47],[-86,-71],[-77,-82],[-9,-10],[-57,0],[-18,-7],[-36,-35],[-32,-16],[-21,-58],[-6,-2],[-7,-13],[-6,-2],[-46,-16],[-14,1]],[[9277,7362],[-3,25],[-43,129],[-13,8],[-26,16],[-17,9],[-22,10],[-17,9],[-10,2],[-2,7],[19,30],[1,22],[-16,18],[-28,12],[-34,1],[-15,-4],[-29,-7],[-15,-4],[8,15],[8,16],[-2,20],[-3,20],[3,40],[15,40],[23,31],[44,26],[-3,4],[-39,56],[-19,47],[0,50],[21,108],[-11,75],[-77,131],[-52,61],[-29,44],[-20,49],[-25,102],[-4,49],[10,44],[28,28],[40,9],[49,-4],[29,-4],[31,8],[37,25],[54,60],[12,26],[-9,32],[3,19],[57,82],[15,50],[9,77],[2,35],[3,59],[-5,53],[-14,51],[-49,114],[-10,50],[35,171],[10,46],[21,40],[37,32],[53,30],[39,33],[28,44],[16,57],[5,52],[-5,42],[-42,89],[-31,90],[-33,4],[-35,-7],[-40,-23],[-81,-66],[-88,-94],[-27,-17],[-24,0],[-25,6],[-23,19],[-20,29],[-28,91],[-21,116],[31,39],[4,16],[-33,49],[-3,18],[39,59],[71,81],[50,72],[5,4],[45,47],[34,25],[65,16],[21,20],[23,30],[16,41],[6,46],[-3,48],[2,84],[-7,47],[-37,65],[-10,42],[30,38],[3,19],[-12,12],[-80,8],[-49,51],[-71,89],[-32,30],[-23,32],[-11,37],[-2,39],[-10,34],[4,27],[54,124],[9,51],[1,69],[-9,131],[-19,70]]],"transform":{"scale":[0.006813020439061317,0.006826870562534135],"translate":[-30,-50]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[71,72,12,73]],[[14,74,75]]],"type":"MultiPolygon","properties":{"ct":[17.57,-12.34]},"id":"AGO"},{"arcs":[[76,77,78]],"type":"Polygon","properties":{"ct":[29.89,-3.37]},"id":"BDI"},{"arcs":[[79,20,80,81,82]],"type":"Polygon","properties":{"ct":[2.34,9.66]},"id":"BEN"},{"arcs":[[-82,83,84,85,86,87]],"type":"Polygon","properties":{"ct":[-1.74,12.28]},"id":"BFA"},{"arcs":[[88,89,90]],"type":"Polygon","properties":{"ct":[23.81,-22.19]},"id":"BWA"},{"arcs":[[91,92,93,94,95,96]],"type":"Polygon","properties":{"ct":[20.49,6.58]},"id":"CAF"},{"arcs":[[-86,97,23,98,99,100]],"type":"Polygon","properties":{"ct":[-5.55,7.62]},"id":"CIV"},{"arcs":[[-96,101,102,103,18,104,105]],"type":"Polygon","properties":{"ct":[12.74,5.69]},"id":"CMR"},{"arcs":[[39]],"type":"Polygon","properties":{"ct":[43.36,-11.65]},"id":"COM"},{"arcs":[[-74,13,-76,106,-94,107,108,109,-78,110,111]],"type":"Polygon","properties":{"ct":[23.65,-2.88]},"id":"COD"},{"arcs":[[-75,15,112,-102,-95,-107]],"type":"Polygon","properties":{"ct":[15.22,-0.84]},"id":"COG"},{"arcs":[[[40]],[[41]],[[42]]],"type":"MultiPolygon","properties":{"ct":[-23.64,15.09]},"id":"CPV"},{"arcs":[[113,114,115,5]],"type":"Polygon","properties":{"ct":[42.58,11.74]},"id":"DJI"},{"arcs":[[116,117,118,119,120,121,122,34]],"type":"Polygon","properties":{"ct":[2.68,28.16]},"id":"DZA"},{"arcs":[[123,124,125,37,126,1,127]],"type":"Polygon","properties":{"ct":[29.77,26.57]},"id":"EGY"},{"arcs":[[-116,128,129,4]],"type":"Polygon","properties":{"ct":[38.8,15.4]},"id":"ERI"},{"arcs":[[-122,130,32,131]],"type":"Polygon","properties":{"ct":[-13.14,24.66]},"id":"ESH"},{"arcs":[[-115,132,133,134,135,-129]],"type":"Polygon","properties":{"ct":[39.63,8.63]},"id":"ETH"},{"arcs":[[-103,-113,16,136]],"type":"Polygon","properties":{"ct":[11.79,-0.6]},"id":"GAB"},{"arcs":[[-85,137,22,-98]],"type":"Polygon","properties":{"ct":[-1.2,7.97]},"id":"GHA"},{"arcs":[[-100,138,139,26,140,141,142]],"type":"Polygon","properties":{"ct":[-10.92,10.44]},"id":"GIN"},{"arcs":[[29,143]],"type":"Polygon","properties":{"ct":[-15.48,13.45]},"id":"GMB"},{"arcs":[[-141,27,144]],"type":"Polygon","properties":{"ct":[-14.93,12.05]},"id":"GNB"},{"arcs":[[[-104,-137,17]],[[45]]],"type":"MultiPolygon","properties":{"ct":[10.46,1.57]},"id":"GNQ"},{"arcs":[[-128,2,145]],"type":"Polygon","properties":{"ct":[35.49,22.36]},"id":"XHT"},{"arcs":[[-134,146,7,147,148,149,150,151]],"type":"Polygon","properties":{"ct":[37.86,0.54]},"id":"KEN"},{"arcs":[[-123,-132,33]],"type":"Polygon","properties":{"ct":[-6.27,31.85]},"id":"MAR"},{"arcs":[[-99,24,152,-139]],"type":"Polygon","properties":{"ct":[-9.3,6.43]},"id":"LBR"},{"arcs":[[-118,153,36,-126,154,155,156]],"type":"Polygon","properties":{"ct":[18.03,27.04]},"id":"LBY"},{"arcs":[[157]],"type":"Polygon","properties":{"ct":[28.26,-29.58]},"id":"LSO"},{"arcs":[[56]],"type":"Polygon","properties":{"ct":[46.69,-19.4]},"id":"MDG"},{"arcs":[[-87,-101,-143,158,159,-120,160]],"type":"Polygon","properties":{"ct":[-3.53,17.36]},"id":"MLI"},{"arcs":[[-124,161]],"type":"Polygon","properties":{"ct":[33.68,21.89]},"id":"XBT"},{"arcs":[[162,163,164,165,166,167,168,9]],"type":"Polygon","properties":{"ct":[35.55,-17.25]},"id":"MOZ"},{"arcs":[[-121,-160,169,31,-131]],"type":"Polygon","properties":{"ct":[-10.34,20.26]},"id":"MRT"},{"arcs":[[-168,170,171]],"type":"Polygon","properties":{"ct":[34.31,-13.23]},"id":"MWI"},{"arcs":[[-73,172,-90,173,11]],"type":"Polygon","properties":{"ct":[17.22,-22.14]},"id":"NAM"},{"arcs":[[-151,174]],"type":"Polygon","properties":{"ct":[35.09,4.76]},"id":"SSD"},{"arcs":[[-83,-88,-161,-119,-157,175,176]],"type":"Polygon","properties":{"ct":[9.4,17.42]},"id":"NER"},{"arcs":[[-80,-177,177,-105,19]],"type":"Polygon","properties":{"ct":[8.1,9.59]},"id":"NGA"},{"arcs":[[57]],"type":"Polygon","properties":{"ct":[55.54,-21.13]},"id":"REU"},{"arcs":[[-79,-110,178,179]],"type":"Polygon","properties":{"ct":[29.91,-2]},"id":"RWA"},{"arcs":[[-92,180,-155,-125,-162,-146,3,-130,-136,181]],"type":"Polygon","properties":{"ct":[29.95,16.01]},"id":"SDN"},{"arcs":[[-142,-145,28,-144,30,-170,-159]],"type":"Polygon","properties":{"ct":[-14.46,14.36]},"id":"SEN"},{"arcs":[[-140,-153,25]],"type":"Polygon","properties":{"ct":[-11.77,8.58]},"id":"SLE"},{"arcs":[[-114,6,-147,-133]],"type":"Polygon","properties":{"ct":[45.87,6.05]},"id":"SOM"},{"arcs":[[-93,-182,-135,-152,-175,-150,182,-108]],"type":"Polygon","properties":{"ct":[30.31,7.31]},"id":"SSD"},{"arcs":[[58]],"type":"Polygon","properties":{"ct":[6.62,0.24]},"id":"STP"},{"arcs":[[-164,183]],"type":"Polygon","properties":{"ct":[31.5,-26.57]},"id":"SWZ"},{"arcs":[[-97,-106,-178,-176,-156,-181]],"type":"Polygon","properties":{"ct":[18.66,15.36]},"id":"TCD"},{"arcs":[[-81,21,-138,-84]],"type":"Polygon","properties":{"ct":[0.98,8.52]},"id":"TGO"},{"arcs":[[-117,35,-154]],"type":"Polygon","properties":{"ct":[9.57,34.12]},"id":"TUN"},{"arcs":[[[-77,-180,184,-148,8,-169,-172,185,-111]],[[59]]],"type":"MultiPolygon","properties":{"ct":[34.8,-6.27]},"id":"TZA"},{"arcs":[[-109,-183,-149,-185,-179]],"type":"Polygon","properties":{"ct":[32.39,1.28]},"id":"UGA"},{"arcs":[[-89,186,-165,-184,-163,10,-174],[-158]],"type":"Polygon","properties":{"ct":[25.09,-28.99]},"id":"ZAF"},{"arcs":[[-72,-112,-186,-171,-167,187,-173]],"type":"Polygon","properties":{"ct":[27.79,-13.46]},"id":"ZMB"},{"arcs":[[-91,-188,-166,-187]],"type":"Polygon","properties":{"ct":[29.88,-18.99]},"id":"ZWE"},{"arcs":[[68]],"type":"Polygon","properties":{"ct":[57.57,-20.29]},"id":"MUS"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[188]],"type":"Polygon"},{"arcs":[[189]],"type":"Polygon"},{"arcs":[[190]],"type":"Polygon"},{"arcs":[[191]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[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,126,1,2,3,4,5,6,7,8,9,10,11]],[[39]],[[40]],[[41]],[[42]],[[45]],[[56]],[[57]],[[58]],[[59]],[[68]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,192],[-40],[-60],[-69],[-58],[-57],[-64],[-63],[-62],[-45],[-41],[-59],[-44],[-56],[-52],[-51],[-50],[-61],[-48],[-47],[-46],[-53],[-54],[-55],[-49],[-43],[-42],[-70],[-67],[-66],[-65],[-68]],[[-71]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[193]},{"type":"LineString","arcs":[194]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/africa_50m.json b/topojson/dist/africa_50m.json new file mode 100644 index 00000000000..7ca01192bee --- /dev/null +++ b/topojson/dist/africa_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[18503,14692],[3,127],[27,123],[-10,292],[113,360],[102,229],[32,215],[82,340],[83,118],[96,180],[113,100],[48,4],[78,54],[61,89],[63,149],[13,61],[31,354],[-39,142],[-103,153],[-143,289],[-21,144],[-9,24],[-6,12],[-54,103],[144,144],[30,61],[-12,75],[-23,88],[-113,217],[-88,220],[-13,78],[-224,394],[-12,57],[213,31],[22,7],[113,64]],[[19100,19790],[-3,12],[-33,2],[-272,-57],[-93,100]],[[18699,19847],[-23,55],[17,41],[21,3],[-3,34],[-38,115],[-65,95]],[[18608,20190],[-61,80],[-14,83],[-62,83],[-147,150],[-87,70]],[[18237,20656],[-128,167],[-150,165],[-106,104],[-174,134],[-108,114],[-176,285],[-185,393],[-19,85],[41,-5],[95,23],[86,132],[43,281],[51,-29],[113,-19],[63,23],[10,8],[-2,6],[-8,-3],[-159,44],[-104,101],[8,45],[69,19],[48,158],[32,22]],[[17577,22909],[-37,-4],[-73,22],[-10,64],[89,148],[86,200],[1,116],[14,32]],[[17647,23487],[0,95],[46,195],[-86,217],[-33,165],[-74,57],[-124,5],[-101,50],[-65,227],[-49,-17],[-9,-11],[9,-17],[-14,-8],[-79,6],[-7,53],[12,53]],[[17073,24557],[-19,-20],[-163,-65],[-464,-49],[-161,-43],[-272,-30],[-99,49],[-76,60],[-50,61],[-99,227],[-3,104],[-213,280],[-173,140],[-59,20],[-220,29],[-507,-27]],[[14495,25293],[-250,-20],[-225,-42]],[[14020,25231],[-195,-56]],[[13825,25175],[-53,-30],[-37,-64],[-180,-56],[-239,-45],[-362,-191],[-297,-84],[-274,-144],[-24,5],[-70,65],[-34,14],[-337,72]],[[11918,24717],[-414,68],[-922,-109],[7,-15],[-543,-242],[-87,-29]],[[9959,24390],[-88,6],[-286,120],[-381,214],[-93,75],[-277,277],[-576,396],[-60,61]],[[8198,25539],[-25,33],[-376,195],[-31,83],[-3,60],[-46,-29],[-60,14],[-94,76],[-9,13],[24,13],[-78,130],[-38,-14],[-54,98],[-4,31],[40,-1],[32,-15],[89,49],[-83,29],[-24,93],[18,6],[-76,86]],[[7400,26489],[9,50],[-13,46],[-136,140],[-30,164],[-153,83],[-8,16],[-16,0],[-1,-21],[-44,-10],[-207,173],[-2,34],[52,122],[-90,-43],[-29,46],[-3,48],[69,45],[-17,3],[-40,-29],[-27,-2],[-34,38]],[[6680,27392],[-1,-2],[-14,-27],[-3,-5],[-61,-7],[-27,53],[-108,58],[-40,53],[32,71],[88,61],[46,5],[-68,21],[-56,-43],[-59,41],[-4,19],[43,56],[131,20],[69,30],[-4,18],[-146,-14],[-108,-48],[-142,20],[-18,18],[-60,-18],[-54,5],[-62,51],[6,61],[-171,78]],[[5889,27967],[-22,92],[6,235]],[[5873,28294],[-27,121],[58,68],[45,-12],[-14,-10],[18,-57],[49,-18],[45,3],[56,22],[49,43],[23,10],[-48,-6],[-55,-37],[-51,-9],[-28,15],[-38,108]],[[5955,28535],[-9,109],[-302,388],[286,407],[39,89],[10,109]],[[5979,29637],[-4,84],[34,169],[151,376],[30,214],[-11,232],[-54,196],[-129,238],[29,77],[53,66],[22,179],[-8,66],[-106,197],[-16,4],[-1,-78],[-64,60],[-106,209],[-40,-68],[-20,-105]],[[5739,31753],[-19,38],[58,413],[66,168],[57,62],[31,-11],[53,26],[245,538],[48,155],[255,241],[100,61],[65,84],[24,91],[-5,126],[10,48],[188,424],[194,98],[170,112],[180,419]],[[7459,34846],[81,94],[398,92],[204,80],[356,268],[139,77],[132,133],[188,246],[48,88],[32,131],[-48,83],[-49,36],[-7,229],[14,134],[60,114],[129,138],[54,81],[4,43],[82,197],[252,244],[492,203],[157,76],[54,39],[80,86],[160,258],[176,415],[56,64],[206,50],[5,-13],[12,-5],[5,-70],[50,-76],[123,-94],[115,-59],[166,-16],[170,33],[145,-5],[286,40],[-6,-17],[17,-5],[11,-56],[39,-20],[72,-5],[93,19],[102,-22]],[[12314,38174],[104,-4],[86,20],[188,89],[36,20],[34,80],[47,39],[133,61],[215,39],[26,-18],[69,-9],[54,32],[78,108],[61,36],[279,122],[162,39],[475,29],[582,118],[114,13],[363,-7],[113,-46],[11,-17],[191,-27],[330,130],[141,17],[137,-47],[112,1],[53,40],[1,13],[-35,23],[12,3],[120,-17],[127,-72],[126,-6],[265,31]],[[17124,39007],[48,9],[213,115],[222,57],[59,-7],[8,-24],[-47,-30],[19,-31],[45,12],[8,19],[-13,22],[120,-21],[18,-19],[-4,-87],[32,-85],[45,-31],[66,18],[165,123],[57,23],[14,-17],[17,-93],[-109,-124],[-136,-80],[-28,-49],[-10,-60],[8,-39],[70,-103],[127,-71],[56,-80],[29,-105],[-97,-173],[-73,-81],[-84,-71],[-190,-97],[-46,-66],[3,-21],[12,-55],[29,-46],[100,-84],[185,-104],[69,24],[3,42],[37,8],[23,-10],[26,-32],[13,-102],[-21,-12],[44,-38],[163,-18]],[[18419,37313],[350,-154],[170,-13],[164,35],[130,5],[275,-69],[160,-68],[311,-75],[118,-147],[14,-86],[65,-129],[53,-66],[71,-42],[155,-52],[289,-22],[237,-53],[352,-128],[242,-175],[156,-61],[98,5],[162,63],[116,99],[78,98],[43,86],[6,51],[-10,34],[-59,80],[-39,177],[8,62],[92,124],[102,88],[122,73],[177,79],[227,55],[94,16],[170,-5],[373,-115],[51,-24],[5,-53],[-13,-75],[60,-42],[327,-70],[47,-23],[176,-9],[100,13],[106,-24],[39,-27],[49,-116]],[[24438,36633],[10,-50],[47,-15],[102,5],[78,23],[181,12],[527,-102],[166,-84],[110,-30],[278,-28],[70,-21],[96,-56],[73,-27],[68,8],[121,48],[257,160],[156,75],[151,26],[-9,-16],[-86,-30],[-3,-14],[181,25],[65,19],[7,15],[324,-12],[-26,-94],[108,-92],[22,-4],[88,26],[93,-7],[104,-38],[107,25],[194,1],[149,17],[141,44],[70,44]],[[28458,36486],[2,2],[0,0],[119,121],[66,98],[57,126],[138,367],[10,81],[160,303],[79,196],[114,117],[34,75],[-33,88],[-6,108],[-43,195],[17,154],[39,36],[27,40],[-87,136],[66,62],[117,66],[9,25],[-7,59],[-36,40],[-50,21],[-126,-75],[-40,-67],[-36,-19],[-118,3],[-215,101],[-63,1],[-181,-111],[-57,-52],[-17,-40],[-57,-40],[-520,-106],[-116,31],[-45,27],[-53,36],[-127,138],[-278,108],[-144,29],[-162,16],[-32,-17],[-19,-23],[-9,-64],[-65,-178],[-47,23],[-46,4],[-167,-63],[-73,-11],[-128,39],[-115,66],[-14,132],[-60,30],[-32,-22],[-266,69],[-11,-9],[-2,-9],[6,-15],[-120,-75],[46,52],[-1,31],[-209,-52],[-64,-10],[-42,12],[-5,11],[50,21],[137,20],[153,60],[87,41],[0,10],[-440,-21],[99,57],[27,65],[-128,37],[-51,99],[8,65],[-12,122],[-168,73],[-87,14],[-49,-7],[-119,44],[16,33],[41,-15],[55,44],[3,12],[-34,19],[86,-3],[29,-56],[192,33],[19,15],[-88,0],[-104,94],[3,33],[81,20],[44,35],[2,36],[-86,48],[-31,144],[73,53],[3,41],[-148,-13],[-205,-42],[-34,11],[69,237],[214,163],[252,44],[20,-9],[5,-14],[-10,-6],[11,-15],[92,-31],[100,3],[52,30],[-26,12],[87,22],[460,-39],[42,33],[-30,19],[-73,-4],[-60,30],[119,50],[222,20],[-194,107],[-38,47],[23,46],[169,26],[637,-54],[163,14],[51,35],[10,35],[80,49],[406,191],[265,65],[203,24],[483,-24],[76,9],[129,-34],[41,-49],[117,-58],[52,-7],[82,17],[156,-74],[53,-68],[67,-46],[49,2],[46,39],[186,-40],[74,-49],[109,-31],[414,-73],[70,2],[122,39],[261,40],[349,-80],[410,150],[120,58],[75,64],[55,61],[14,194],[-79,199],[-105,114],[-118,94],[-66,32],[-116,11],[-111,31],[-56,70],[-100,30],[0,0],[-172,133],[-171,133],[-86,58],[-116,79],[-469,163],[-393,210],[-50,106],[115,20],[69,-23],[4,-2],[0,0],[4,0],[85,-6],[15,4],[67,18],[24,21],[0,0],[1,3],[6,38],[42,84],[50,54],[39,42],[65,34],[23,12],[0,0],[11,-2],[14,-2],[0,0],[36,68],[25,47],[-83,58],[-52,5],[0,0],[4,-12],[0,0],[-11,-2],[-12,7],[-17,10],[-66,110],[-7,12],[274,-11],[247,133],[151,42],[23,6],[-31,86],[-16,14],[-40,2],[-29,-5],[-39,-7],[0,0],[-8,-29],[-28,-6],[-25,-5],[-261,-24],[0,0],[-43,-31],[-16,4],[-56,15],[-139,0],[-394,-152],[-128,-20],[-126,-19],[-121,-5],[-41,-16],[-21,-7],[-64,-39],[-134,-78],[-48,48],[-29,-19],[-145,-90],[-4,-8],[-7,-11],[7,-26],[10,-40],[49,-98],[8,-17],[128,-143],[63,-47],[21,-16],[0,0],[3,0],[30,-10],[127,38],[140,42],[26,2],[39,4],[136,-16],[0,0],[3,-3],[25,-25],[-8,-6],[-10,-8],[-37,1],[0,0],[-16,-58],[-15,-52],[-25,-13],[-11,-6],[-59,-11],[-118,6],[-82,4],[-179,-11],[-84,-37],[-108,-48],[-53,-6],[-44,-5],[-112,-42],[-44,-50],[-24,-27],[0,0],[-94,-53],[-62,-17],[-108,0],[-111,53],[-24,18],[-20,15],[0,0],[48,15],[0,0],[57,130],[-9,38],[-6,26],[-40,47],[-90,32],[-146,52],[-138,-12],[-62,14],[-6,2],[0,0],[-1,3],[-5,12],[1,1],[31,32],[95,47],[48,24],[145,64],[197,51],[51,22],[0,0],[-5,15],[-50,54],[0,0],[-121,26],[-77,17],[-288,-45],[-84,29],[-203,68],[-65,89],[83,1],[194,0],[0,0],[-28,30],[-145,53],[-32,12],[-226,-22],[-114,-11],[-70,-15],[-76,-17],[0,0],[-23,-31],[-7,-51],[-38,-42],[-67,-75],[-88,-77],[-29,-26],[-210,-122],[0,0],[-17,6],[-24,36],[0,0],[37,-123],[-9,-88],[-10,-7],[-14,-8],[-5,-21],[-4,-13],[-93,-136],[-2,-3],[0,0],[-164,-31],[-108,-110],[-59,-60],[-16,-33],[-16,-34],[-9,-79],[-16,-137],[7,-78],[-82,-77],[-110,7],[-4,-2],[-25,-13],[-64,-90],[-23,-141],[-73,-62],[-86,-71],[-1,-33],[0,-17],[96,-54],[105,-120],[8,-9],[4,-13],[5,-16],[-23,-66],[54,-91],[107,-73],[241,-87],[68,-9],[15,-35],[-17,-54],[-70,-37],[-90,-4],[-237,47],[-276,-42],[-171,-163],[-194,-73],[-137,-108],[-6,-32],[-80,-43],[-10,5],[46,132],[144,68],[-16,51],[-198,-7],[-19,13],[-15,47],[0,0],[-2,2],[-50,54],[-98,6],[-83,5],[-63,14],[-45,11],[-52,21],[0,0],[8,8],[-10,5],[-1,0],[-379,-89],[-23,-1],[-176,-8],[-33,-13],[-11,-4],[-15,-36],[58,-67],[137,-104],[29,-22],[0,0],[-129,57],[-81,-8],[-8,-13],[-7,-13],[15,-21],[17,-17],[0,0],[14,-5],[0,0],[-4,-54],[0,0],[-60,68],[0,0],[-46,10],[-66,14],[-31,-32],[61,-68],[-62,8],[-85,94],[-117,158],[0,0],[-99,-60],[-15,-9],[0,0],[-17,-86],[-13,-65],[15,-48],[3,-9],[8,-8],[294,-314],[8,-12],[25,-40],[0,0],[-21,-19],[-81,-26],[-16,2],[-12,1],[0,0],[2,6],[6,18],[15,7],[1,-17],[42,10],[5,19],[-6,7],[-38,45],[-80,24],[0,0],[-52,-39],[0,-8],[0,-16],[13,-24],[2,-4],[0,0],[56,-24],[38,-28],[0,0],[-1,-2],[-4,-8],[-33,-31],[-94,-33],[-33,1],[52,-42],[30,-16],[98,-53],[121,-46],[49,-18],[143,-72],[4,-3],[106,-80],[8,-140],[2,-35],[-18,-41],[0,0],[-44,6],[-35,37],[-116,121],[0,0],[-2,0],[-63,-2],[-161,-41],[-22,-6],[55,-136],[49,-26],[21,-11],[13,5],[7,2],[0,0],[-2,6],[-2,5],[0,0],[36,-31],[-44,-36],[-63,-51],[0,0],[-33,63],[-153,62],[-25,-13],[0,0],[11,-48],[0,0],[5,-9],[62,-116],[137,-323],[-83,53],[-82,52],[-191,2],[-17,0],[0,0],[-105,150],[-42,0],[-44,-20],[5,-78],[0,0],[-116,39],[-4,123],[-2,39],[-64,88],[-68,92],[-80,73],[0,0],[23,67],[40,49],[65,47],[122,44],[154,-8],[299,-119],[53,-4],[34,-3],[72,38],[0,0],[-45,59],[-6,8],[-274,66],[-142,6],[-169,-13],[-257,37],[-45,80],[-12,22],[-11,9],[-36,30],[13,52],[9,35],[-6,18],[-7,21],[0,0],[-85,-8],[-68,54],[-88,72],[-91,157],[-26,9],[-40,15],[-1,79],[0,1],[-71,79],[-112,51],[-55,24],[-80,94],[22,0],[5,0],[48,324],[59,226],[-1,73],[-31,12],[-36,14],[-30,-12],[0,0],[-38,20],[-18,9],[-158,161],[-13,16],[-42,54],[-4,29],[0,0],[-26,7],[-25,-12],[-51,-26],[-287,159],[-121,33],[-205,56],[0,0],[64,-6],[74,-6],[87,-25],[0,0],[-22,16],[-8,6],[-65,40],[-274,169],[-61,17],[-90,27],[-158,-13],[-65,18],[-20,22],[3,23],[3,29],[-38,48],[0,1],[0,0],[-27,4],[-63,9],[-78,46],[-71,62],[-73,63],[-4,9],[-6,13],[12,9],[0,0],[74,15],[-124,105],[-12,10],[0,0],[-21,25],[-32,38],[-7,46],[11,47],[-42,98],[0,0],[-113,70],[-72,23],[-30,9],[-10,-12],[-9,-11],[-49,-126],[-1,-1],[-80,-87],[0,0],[-45,-5],[0,0],[-11,8],[-22,15],[-5,32],[0,0],[-6,7],[-78,83],[-51,155],[-1,3],[0,0],[4,5],[3,4],[0,0],[34,-13],[61,52],[24,10],[-2,7],[-4,13],[0,0],[-2,2],[-56,45],[-42,12],[-54,-4],[-87,-6],[-30,-23],[-53,-39],[-146,-49],[-101,-18],[0,0],[20,27],[-8,12],[-98,-44],[-31,-79],[1,-15],[2,-19],[41,-45],[10,-11],[13,-131],[0,0],[-20,18],[0,0],[-16,-6],[-7,-2],[-12,-60],[25,-109],[43,-105],[99,-79],[9,-7],[224,-114],[116,-44],[55,-22],[15,-13],[16,-13],[43,-81],[32,-59],[82,-208],[41,-65],[8,-11],[7,-7],[54,-54],[21,-15],[209,-153],[130,-52],[79,-32],[78,-8],[271,19],[9,1],[0,0],[-23,-136],[-21,-24],[-2,-2],[0,0],[22,-45],[5,-10],[0,0],[179,-70],[430,-168],[226,-103],[21,-9],[0,0],[7,-5],[227,-169],[37,-61],[7,-12],[0,0],[-55,-141],[-10,-5],[-12,-6],[-42,15],[-35,13],[-59,39],[0,0],[-16,22],[3,27],[2,25],[-33,40],[-30,37],[-101,10],[-230,97],[-46,-7],[0,0],[-51,-30],[0,0],[-114,-142],[-16,-36],[-53,-124],[8,-21],[10,-25],[57,-17],[74,-23],[129,-74],[11,-73],[14,-94],[0,0],[-281,-149],[-37,-165],[0,0],[-174,-184],[0,0],[-40,-1],[-92,-3],[-38,17],[-19,29],[0,0],[-1,32],[0,43],[206,237],[49,98],[-64,103],[-121,314],[-112,61],[-32,17],[-92,22],[0,0],[-54,25],[-88,41],[-3,6],[-5,8],[8,17],[3,6],[21,18],[-40,46],[-81,95],[0,0],[-40,4],[-69,7],[0,0],[-213,120],[-69,91],[-2,2],[-3,2],[-42,32],[-71,9],[-94,10],[-108,-17],[-159,78],[-80,39],[-262,216],[-122,101],[-204,124],[-29,18],[-8,6],[-252,184],[-107,279],[-52,133],[0,0],[-54,56],[-145,54],[-289,109],[-173,30],[0,0],[-61,-29],[-69,-34],[-49,-44],[-16,-15],[-13,-18],[-48,-68],[-32,-22],[-8,-6],[-74,-29],[-169,-24],[-40,-16],[-5,-7],[-4,-4],[-113,-30],[-157,-109],[-90,-109],[0,0],[-119,-28],[-85,-20],[-88,17],[-88,17],[-45,17],[-189,72],[-55,14],[-49,13],[-148,-9],[0,0],[-22,27],[-8,10],[-151,22],[-49,7],[-7,-1],[-120,-13],[-149,-64],[-79,-33],[-73,-52],[-24,-17],[-34,-70],[0,0],[0,-8],[11,-186],[50,-45],[23,-215],[-27,-40],[-435,-235],[-14,-8],[-519,-128],[-87,-76],[-33,-28],[19,-17],[0,0],[-2,-11],[-6,-57],[-62,-36],[-57,-33],[-171,-182],[-46,-61],[-107,-141],[-25,-48],[-4,-40],[22,-63],[21,-60],[43,-73],[53,-46],[0,0],[6,-2],[85,-27],[12,-36],[-16,-10],[-102,-64],[-128,-48],[-14,-6],[0,0],[-15,-14],[-25,-26],[-171,-276],[0,0],[51,-48],[0,0],[-154,-20],[-103,-12],[0,0],[-44,-26],[-112,-66],[-32,-32],[-29,-29],[-39,-91],[-16,-38],[-34,-37],[-33,-37],[-28,-15],[-204,17],[-626,-12],[-102,-12],[-86,-10],[-157,-61],[-171,-65],[-72,-115],[-2,-21],[0,0],[-1,9],[-3,12],[0,0],[-51,-46],[-61,-19],[-183,88],[-22,10],[0,0],[-7,8],[-52,61],[-81,130],[-20,33],[41,42],[0,0],[-45,35],[-15,12],[-207,119],[0,0],[-210,0],[0,-4],[1,-8],[-203,-79],[-27,0],[-32,0],[-90,35],[-137,8],[-175,-31],[-37,-7],[0,0],[3,5],[36,57],[47,127],[-4,138],[-4,141],[11,136],[16,10],[21,13],[-4,19],[-5,20],[-3,5],[-5,9],[-76,-15],[-37,-19],[-27,-13],[-61,-6],[-7,-1],[0,0],[-19,109],[110,7],[71,160],[0,0],[-3,-1],[-34,-6],[-55,-73],[-32,-67],[-30,-1],[-115,-4],[-10,23],[-3,6],[35,117],[17,60],[11,22],[45,96],[66,70],[11,12],[78,200],[3,55],[1,31],[61,169],[5,14],[0,0],[6,1],[10,3],[17,30],[8,40],[0,0],[-1,10],[-11,138],[-79,244],[-3,10],[6,24],[18,69],[0,0],[-36,-13],[0,0],[-2,74],[42,66],[0,0],[23,205],[-12,1],[-20,2],[-25,-9],[-22,-8],[-148,124],[-15,19],[6,38],[7,7],[67,69],[61,30],[2,1],[74,14],[139,26],[27,19],[41,28],[15,40],[1,4],[0,0],[173,94],[53,1],[54,1],[57,-14],[131,-76],[50,-4],[454,2],[73,23],[26,8],[561,-105],[184,2],[244,43],[73,-23],[2,0],[0,0],[4,-1],[200,-27],[58,23],[53,3],[9,0],[135,-49],[180,-4],[14,0],[96,12],[82,39],[39,52],[19,25],[33,125],[48,174],[91,165],[0,0],[27,5],[0,0],[-12,10],[-50,43],[0,0],[-8,-9],[-16,-19],[0,0],[-10,36],[0,0],[14,124],[22,184],[10,17],[32,23],[0,0],[88,-78],[41,-71],[41,-71],[27,-24],[8,-4],[9,8],[-38,77],[-49,102],[-32,34],[-93,52],[0,0],[-9,139],[3,9],[8,26],[-51,97],[-12,17],[-6,9],[-261,91],[-58,65],[-56,62],[0,0],[-8,47],[-18,106],[-20,39],[-10,17],[-10,6],[-9,4],[0,0],[-33,-9],[-4,1],[-101,27],[2,61],[1,39],[-61,40],[-44,8],[-105,-25],[-12,-3],[-139,60],[-173,42],[-73,17],[-123,19],[-74,-18],[0,0],[-113,80],[64,39],[66,108],[-209,-4],[0,52],[-1,28],[20,22],[73,23],[62,20],[68,9],[71,10],[75,-16],[218,71],[21,3],[120,17],[0,0],[116,-85],[0,0],[10,-3],[136,-32],[66,11],[62,10],[373,11],[0,0],[-72,152],[-109,184],[-34,137],[0,0],[88,-10],[92,-11],[86,-39],[0,0],[-4,-22],[0,0],[81,-79],[0,0],[5,0],[95,7],[217,-33],[75,-12],[104,20],[75,33],[53,23],[0,0],[-73,6],[0,0],[-22,20],[0,0],[8,13],[47,77],[228,76],[142,19],[40,13],[39,12],[16,11]],[[39883,33819],[-146,8],[-235,27],[-96,22],[-285,32],[-417,93],[-17,14],[-74,193],[-26,107],[0,70],[-24,75],[-49,84],[-51,56],[-39,13],[-198,11],[-273,-85],[-119,-102],[-265,-114],[-79,12],[-102,49],[-205,38],[-188,66],[-197,109],[-189,130],[-76,107],[-168,84],[-160,-1],[-163,75],[-184,438],[2,42],[-30,27],[-96,156],[-213,240],[-124,79],[-160,-63],[-116,69],[-29,68],[17,0],[20,34],[-34,29],[-118,-33],[-27,-27],[-4,-18],[40,-62],[-6,-53],[-20,-22],[-92,-35],[-88,21],[40,-17],[-4,-10],[-55,0],[-73,35],[-144,30],[3,-26],[31,-82],[-5,-110],[-70,-29],[-69,-61],[55,-22],[47,11],[78,-61],[112,-213],[31,-92],[29,-26],[51,-142],[85,-182],[169,-140],[-22,-15],[97,-108],[69,-20],[50,-31],[169,-136],[-6,-26],[17,-76],[20,-29],[52,-23],[18,-33],[-2,-51],[-42,-76],[-10,-62],[15,-78],[174,-211],[16,-99],[76,-115],[29,-21],[26,23],[-43,152],[-6,164],[46,40],[21,-19],[14,28],[25,159],[48,50],[65,37],[152,-109],[-15,-84],[-36,-90],[65,-126],[-3,-86],[-28,-69],[-53,-104],[-61,-73],[26,16],[53,5],[-42,-116],[91,-20],[6,30],[53,-40],[26,-49],[7,-45],[17,-15],[112,-16],[103,21],[88,47],[69,14],[299,-12],[109,-27],[127,6],[100,35],[142,67],[85,124],[18,59],[37,41],[544,465],[51,103],[56,88],[87,49],[41,1],[-29,-59],[-32,-179],[-42,-91],[33,-13],[7,-33],[6,-243],[49,-126],[51,-85],[150,-176],[95,-76],[309,-103],[167,-30],[151,-12],[72,-50],[289,-375],[64,-54],[120,-14],[18,-46],[-14,-90],[-174,-294],[-163,-138],[-94,-100],[-91,-163],[-49,-117],[-37,-29],[-99,19],[-7,16],[36,64],[-38,19],[-50,-25],[-109,-196],[-43,-145],[-12,-97],[29,-185],[-93,-102],[-118,-8],[-117,-29],[-104,-49],[-75,-95],[1,-44],[-37,-129],[-85,-97],[-276,-15],[-134,-36],[-56,-84],[-18,-83],[14,-39],[-15,-54],[-79,-88],[-61,-30],[-68,-15],[-46,14],[-14,20],[-62,5],[-213,-21],[-411,-150],[-262,-90],[-64,-41],[-75,-102],[-24,-75],[6,-53],[-34,-125],[-219,-107],[-163,-63],[-576,-157],[-241,-86],[-132,-64],[-109,-155],[-67,-54],[-170,-20],[-60,5],[-44,19],[-44,-2],[-338,-202],[-217,-72],[-297,-8],[-167,-31],[-293,-230],[-334,-94],[-149,1],[-156,45],[-137,214],[-13,35],[10,59],[-32,235],[-62,165],[-41,271],[-41,104],[-32,21],[-4,112],[26,298],[-25,136],[-23,124],[-108,165],[-71,151],[-209,194],[-160,212],[-77,131],[-88,233],[-137,263],[-127,131],[-179,128],[-72,-1],[-146,125],[-57,98],[-78,74],[-44,74],[-46,92],[18,103],[-53,238],[21,102],[0,121],[-74,185],[-58,84],[-159,296],[-74,61],[-220,129],[-148,115],[-71,170],[-1,100],[-83,154],[-196,280],[-142,194],[-287,388],[-117,191],[-96,122],[-72,26],[-165,-9],[-12,33],[72,215],[35,186],[41,133],[9,84],[-33,-23]],[[28762,35665],[-20,-9],[-51,-73],[-112,-373],[-25,-127],[0,-94],[-99,-98],[-45,13],[-131,86],[-194,196],[-80,173],[-117,178],[-158,343],[-43,-16],[-61,-156],[139,-231],[36,-116],[205,-270],[165,-191],[-26,-10],[37,-111],[39,-65],[55,-45],[36,-100],[28,-91],[-7,-80],[330,-537],[234,-460],[126,-142],[19,-81],[-17,-75],[0,-114],[35,-132],[21,-39]],[[29081,32818],[25,-89],[19,-28],[53,-55],[223,-136],[128,-99],[113,-79],[-4,-23]],[[29638,32309],[-1,-3],[-1,-94],[16,-79],[88,-179],[25,-176],[14,-355],[31,-233],[62,-283],[42,-72],[76,1],[31,-18],[97,-68],[120,-139],[146,-101]],[[30384,30510],[109,-170],[54,-114],[93,-340],[58,-288],[192,-339],[42,15],[-10,17],[5,51],[8,19],[32,17],[55,-44],[29,-41],[-18,-21],[5,-16],[51,-93],[27,-26],[31,-18],[56,35],[63,-6],[62,-34],[18,-23],[-2,-27],[26,-33],[56,-2],[120,-41],[148,-192],[111,-120],[205,-167],[115,-164],[116,-135],[66,-40],[36,22],[47,-27],[16,-29]],[[32406,28136],[101,-147],[27,-118],[-20,-62],[-266,-111],[-113,-73],[15,-29],[27,-19],[32,5],[-9,24],[57,22],[161,5],[23,-36],[24,-22]],[[32465,27575],[79,-44],[21,-27],[16,-54],[75,-108],[105,-106],[159,-123],[118,-22],[200,29],[310,163],[205,-16],[79,-38],[46,-4],[96,29],[198,121],[197,69],[72,-33],[172,13],[80,40],[243,22],[53,-11],[191,40],[306,81],[157,73],[42,53],[14,46],[32,21],[60,15],[220,-58],[5,-24],[-83,-270],[33,-345],[-120,-133],[-33,-284],[-300,-562],[-53,-53],[-90,-143],[-111,-232],[-136,-210],[-64,-146],[-13,-92],[-53,-123],[-132,-221],[-228,-326],[-82,-141],[-501,-555],[-358,-353],[-67,-50],[-535,-314],[-505,-428],[-358,-385],[-328,-374],[-186,-296]],[[31713,21686],[-105,-121],[-128,-49],[-245,-219],[-75,-34],[-38,-36],[-24,-44],[-30,-231],[-197,-319],[-32,-13],[28,-43],[-82,-172],[-13,-1],[-104,-71]],[[30668,20333],[-55,-170],[10,-4],[-143,-443],[41,-151],[186,-197],[68,-16],[-4,-148],[-39,-58],[-51,-232],[3,-17],[18,-12],[3,-1],[21,10],[26,-14],[-34,-150],[-25,-3],[0,-21],[55,-274],[52,-113],[40,18],[68,-257],[8,-122],[214,-138],[72,-22],[12,-17],[-3,-41],[-18,-23]],[[31193,17717],[39,13],[26,-7],[4,-24],[-16,-1],[-5,-1],[-10,-3],[6,-12],[9,0],[25,-199],[-70,-120],[26,-217],[-3,-214],[0,0],[12,-52],[38,-112],[-36,-113],[-34,-14],[-5,-19],[16,-32],[23,-12],[10,26],[40,-412],[-20,-108],[67,-130],[54,-26],[1,-125],[-10,-26],[-32,-19],[-34,-97],[-6,-36],[10,-45],[-44,-86],[-193,-240],[-104,-107],[-55,-18],[5,-31],[17,-29],[-44,-47],[-295,-187],[-310,-115],[-128,-3],[-104,-94],[-174,-86],[-237,-143],[-2,9],[-16,9],[-4,0],[-17,-10],[35,-48],[-123,-183],[-156,-163],[20,-14],[-18,-33],[-126,-10],[-122,-81],[-162,-188],[-204,-154],[-26,2],[-4,25],[-59,43],[-13,-10],[0,-6],[12,-12],[3,-2],[-20,-288],[7,-79],[8,-14],[-1,8],[111,-43],[50,-111],[35,-203],[84,-254],[65,-65],[33,-162],[6,-210],[-72,-433],[45,32],[24,-31],[-19,-87],[-49,-87],[-106,-136],[-28,-19],[-126,-58],[-606,-218],[-182,-92],[-86,-64],[-124,-176],[69,-93],[49,-43],[27,1],[21,-55],[-14,-204]],[[27871,10384],[-166,-614],[-47,-120],[-61,-72],[-109,-96],[-83,-34],[-223,-199],[-94,-121],[-39,-87],[-221,-352],[-234,-296],[-301,-231],[-349,-343],[-288,-212],[-355,-217],[-237,-98],[-132,-1],[-94,20],[-90,-8],[-76,-40],[-28,-54],[-325,-81],[-188,-16],[-135,39],[-225,36],[-93,-13],[-27,-33],[-357,39],[-113,-24],[-87,-41],[-84,-74],[-99,-40],[-363,6],[-99,-30],[-103,-35],[-165,-122],[-168,9],[-24,11],[-227,169],[-110,101],[-185,-17],[23,-75],[-39,21],[-43,123],[50,60],[11,-8],[17,15],[-18,78],[-179,291],[-42,26],[-23,-9],[-12,83],[25,54],[18,5],[45,-32],[39,8],[45,43],[29,54],[2,153],[-44,203],[-189,248],[-222,373],[-83,208],[-75,239],[-52,108],[-122,190],[-43,35]],[[20585,9587],[-344,309],[-122,215],[-116,279],[5,75],[-63,144],[-75,306],[-9,125],[10,102],[-73,234],[-32,54],[-45,136],[-9,126],[12,16],[-1,113],[-31,316],[18,-14],[28,43],[-14,138],[-51,131],[-128,166],[-299,459],[-80,224],[-253,495],[-155,244],[-144,145],[-68,130],[-50,243],[7,151]],[[36418,1619],[26,-2],[1,0],[1,0],[2,0],[2,0],[0,1],[5,-2],[1,0],[15,-9],[2,-2],[2,-1],[2,-3],[1,-7],[0,-2],[-6,-4],[-4,-3],[-6,-2],[0,-1],[-8,-2],[-1,-1],[-37,4],[-21,8],[-4,2],[-7,5],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[1,3],[1,1],[0,1],[2,1],[33,9]],[[36262,1583],[-5,-2],[-41,8],[-11,6],[-9,6],[-6,7],[-2,3],[-2,4],[3,5],[19,10],[16,7],[6,1],[8,-2],[6,-2],[4,-3],[38,-25],[0,0],[1,0],[-5,-10],[-7,-6],[-7,-4],[-6,-3]],[[35572,1730],[-4,-1],[-3,0],[-23,10],[-10,6],[-1,1],[-1,0],[0,1],[-1,1],[-1,3],[0,0],[-1,3],[0,1],[0,1],[1,0],[1,2],[2,3],[1,1],[2,1],[4,3],[2,0],[0,1],[2,0],[5,1],[1,0],[20,1],[1,0],[2,-1],[1,0],[0,0],[1,-1],[2,-1],[6,-7],[3,-6],[1,-7],[0,-2],[-4,-7],[-1,-1],[-1,-1],[-7,-5]],[[31183,12383],[0,-1],[-1,1],[-2,0],[-2,0],[0,1],[-2,0],[-1,1],[-8,7],[-1,3],[-1,0],[0,1],[1,9],[0,1],[0,1],[1,1],[1,1],[1,0],[0,0],[3,1],[18,2],[1,0],[0,-1],[1,0],[0,0],[0,-1],[1,-1],[2,-4],[0,-1],[1,-1],[2,-7],[-3,-3],[0,-1],[-8,-8],[-2,-1],[-2,0]],[[35722,34033],[-16,-23],[-39,55],[-14,125],[20,12],[36,-12],[-6,-8],[29,-32],[1,-38],[-11,-79]],[[32502,17333],[2,0],[5,0],[10,-2],[1,0],[3,-1],[1,0],[0,-1],[1,-2],[6,-14],[1,-4],[44,-207],[-33,-19],[-64,34],[-1,1],[-1,1],[-2,2],[-1,1],[-2,1],[0,1],[-1,1],[-15,24],[-5,18],[0,1],[0,1],[1,1],[15,125],[1,5],[2,11],[3,8],[0,0],[0,1],[2,2],[6,4],[4,2],[17,5]],[[32641,16937],[19,-6],[11,-4],[9,-5],[39,-21],[9,-6],[1,-2],[5,-7],[1,-5],[0,-6],[-83,12],[-8,4],[-12,17],[-6,13],[0,1],[0,5],[1,3],[1,1],[1,3],[11,3],[1,0]],[[33014,16983],[5,-14],[4,-11],[6,-20],[0,-6],[0,-40],[-1,-9],[0,-2],[-2,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-9,4],[-68,62],[-14,19],[21,4],[9,2],[1,0],[0,0],[18,12],[1,1],[0,0],[1,3],[3,9],[1,7],[28,3],[3,-19]],[[2773,29316],[11,-4],[14,-13],[70,-72],[7,-7],[30,-39],[3,-9],[2,-7],[1,-4],[1,-4],[-1,0],[0,-1],[-23,-34],[-13,-3],[-11,1],[-40,4],[-23,14],[-9,8],[-8,8],[-16,28],[-10,23],[4,89],[1,6],[2,5],[2,4],[2,3],[3,3],[1,0],[0,1]],[[2357,29117],[5,-16],[1,-1],[0,-1],[0,-7],[-1,-3],[-2,-4],[-3,-4],[-5,-4],[-3,-1],[-3,0],[-5,2],[-3,1],[-11,11],[1,7],[1,6],[4,6],[7,3],[16,6],[1,0],[0,-1]],[[2501,29185],[2,0],[6,-2],[1,0],[2,-1],[9,-7],[4,-4],[0,-1],[1,-1],[5,-17],[1,-3],[3,-37],[0,-2],[-1,-6],[-2,-3],[-3,-3],[-1,-1],[-2,-3],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-8,-5],[-1,0],[-1,-1],[-6,-3],[-8,-2],[-3,0],[0,0],[-1,0],[0,0],[-12,1],[-4,1],[-2,1],[-4,2],[-1,1],[-1,0],[-1,1],[-30,24],[-1,1],[0,2],[0,2],[-1,14],[1,7],[0,2],[1,1],[6,15],[5,4],[9,9],[9,5],[7,2],[13,7],[5,3],[3,2],[6,-1]],[[3049,29305],[1,-1],[1,0],[0,0],[2,-4],[1,0],[0,-1],[0,0],[1,-3],[2,-7],[3,-23],[2,-21],[0,-2],[0,-2],[0,-3],[-6,-7],[-3,-4],[-2,-1],[-15,-10],[-1,0],[-1,0],[-2,-1],[-3,0],[-8,1],[-2,1],[-6,2],[-2,0],[-9,9],[-2,2],[-1,4],[0,1],[-1,1],[2,13],[1,11],[6,30],[13,20],[4,0],[25,-5]],[[3193,29711],[5,1],[24,-8],[10,-9],[13,-17],[2,-3],[0,-3],[1,-15],[0,-10],[-5,-11],[-6,-6],[-43,-29],[-8,-1],[-25,0],[-32,15],[-2,1],[-1,1],[-1,0],[0,0],[-1,1],[-1,1],[-3,3],[0,1],[-1,0],[-1,6],[0,3],[3,16],[18,42],[54,21]],[[2514,29914],[1,-1],[2,0],[110,-27],[3,-1],[2,-1],[6,-2],[11,-8],[5,-4],[0,-1],[1,-2],[0,-1],[-3,-6],[-1,-1],[-1,-1],[-1,0],[-1,0],[-25,1],[-90,0],[-54,20],[-5,3],[-3,4],[-1,3],[0,2],[-1,1],[1,7],[0,0],[0,2],[1,2],[1,1],[1,1],[13,6],[1,0],[2,1],[2,0],[13,2],[10,0]],[[2322,29970],[33,-19],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,-1],[-3,-3],[-4,-1],[-8,-1],[-2,0],[-2,0],[-6,0],[-2,1],[-18,13],[0,1],[-2,4],[0,2],[0,1],[3,6],[2,3],[1,0],[0,0],[7,-3]],[[3143,29989],[7,-24],[7,-50],[0,-4],[-7,-29],[-3,-3],[-9,-3],[-4,1],[-25,52],[-4,38],[0,7],[3,7],[1,2],[2,1],[26,11],[1,1],[3,-3],[0,0],[0,-1],[2,-3]],[[2253,30025],[1,-1],[1,-1],[1,0],[0,-1],[2,-3],[14,-20],[-1,-24],[-44,-13],[-10,2],[-19,8],[-18,11],[0,6],[4,7],[8,9],[1,2],[1,0],[52,17],[2,1],[3,1],[1,-1],[0,0],[1,0]],[[2191,30142],[17,-10],[23,-21],[0,0],[0,-2],[0,0],[0,-1],[0,-2],[1,-6],[0,-1],[-1,0],[-2,-2],[-7,-11],[-3,-2],[-83,-60],[-1,0],[-8,-3],[-6,-1],[-34,0],[-11,16],[-20,42],[0,1],[0,1],[0,0],[0,4],[1,3],[2,4],[7,10],[1,1],[3,2],[94,42],[27,-4]],[[28313,38121],[-23,-4],[-40,11],[-1,-1],[-2,1],[-18,-2],[-28,-41],[-22,-30],[-47,-19],[-53,-20],[-14,-4],[-28,-7],[-4,-1],[-6,0],[-106,-27],[10,-37],[-122,40],[-3,-1],[-15,-4],[-3,0],[-2,1],[-17,5],[-19,5],[-54,18],[-10,4],[-31,18],[-28,50],[-13,36],[-11,35],[14,22],[100,41],[171,83],[25,10],[69,-6],[70,-7],[14,-2],[14,-2],[22,-1],[0,0],[1,0],[5,0],[18,0],[16,3],[59,8],[120,33],[15,4],[26,8],[50,20],[56,27],[47,25],[22,9],[70,24],[1,0],[0,0],[0,0],[11,1],[2,0],[-5,-14],[-8,-9],[-144,-80],[-114,-62],[9,-114],[4,-39],[-50,-8]],[[31091,29444],[39,-5],[18,15],[-34,13],[44,2],[42,-26],[6,-30],[-190,17],[-29,41],[38,16],[10,41],[-39,29],[29,0],[37,-23],[29,-90]],[[17492,41691],[39,-329],[-85,-214],[-51,-125],[0,0],[-31,-3],[-37,-2],[-87,41],[-51,24],[0,0],[0,11],[1,19],[-50,137],[-31,88],[-7,38],[-9,55],[41,78],[26,22],[6,5],[0,0],[1,0],[154,63],[33,-2],[48,-3],[17,21],[16,21],[0,1],[-1,89],[25,6],[10,3],[0,0],[23,-44]],[[17246,24057],[-99,-177],[-109,23],[-11,37],[8,33],[84,114],[107,35],[20,-65]],[[23945,38370],[72,-24],[133,-43],[243,4],[242,-22],[0,0],[63,-30],[3,-1],[0,0],[42,-59],[0,0],[66,29],[35,15],[38,10],[45,11],[0,0],[14,-22],[10,-17],[-25,-60],[-51,-24],[-23,2],[-85,9],[-275,-24],[-123,11],[-101,9],[-15,33],[-227,46],[-239,17],[-28,2],[-39,33],[11,51],[13,61],[72,-6],[129,-11]],[[25643,38554],[-41,-17],[-6,-2],[0,0],[-24,125],[51,42],[46,39],[132,49],[0,0],[8,-10],[-14,-49],[-1,-5],[0,0],[-7,-10],[-60,-99],[-49,-37],[-35,-26]],[[25289,39355],[-41,-12],[-40,-12],[-131,6],[-8,25],[0,0],[76,37],[0,0],[97,-12],[37,-3],[5,-13],[5,-16]],[[22417,39684],[102,-148],[0,0],[-2,-5],[-9,-20],[-37,6],[-73,11],[-88,35],[28,78],[3,0],[13,-2],[45,32],[18,13],[0,0]],[[24869,39588],[-47,-37],[-64,42],[14,20],[0,0],[26,6],[4,1],[11,37],[-20,19],[-53,51],[16,14],[8,7],[58,5],[0,0],[51,-21],[4,-10],[5,-11],[-13,-123]],[[24177,39473],[-20,-8],[-8,-4],[0,0],[-41,16],[-39,15],[0,0],[-75,93],[-377,243],[-80,27],[-56,19],[-10,14],[0,0],[29,19],[46,30],[81,13],[26,-22],[0,0],[49,-72],[46,-27],[54,-20],[53,-18],[66,-5],[104,-148],[134,-74],[24,-13],[8,-48],[-14,-30]],[[25086,39938],[-39,-18],[-84,1],[-68,19],[-146,76],[0,0],[6,32],[0,0],[21,13],[118,40],[77,0],[3,0],[27,-34],[79,-103],[3,-13],[3,-13],[0,0]],[[38100,34418],[-163,-33],[-62,21],[122,44],[9,6],[4,24],[105,45],[79,19],[42,-25],[-136,-101]],[[20212,39597],[-97,-127],[-82,-109],[-24,-48],[-28,-55],[4,-78],[0,-2],[42,-38],[34,-59],[-2,-49],[0,0],[-22,-33],[-72,-111],[-101,14],[-62,10],[-71,25],[0,0],[-14,17],[-58,70],[-47,34],[-6,5],[-72,20],[-32,-2],[-22,-1],[-117,34],[-215,114],[-115,61],[-31,1],[-56,2],[-122,126],[-7,20],[9,22],[12,30],[17,14],[3,2],[103,30],[261,13],[0,0],[188,-78],[249,18],[309,51],[221,73],[2,1],[21,-17]],[[17560,40826],[0,0],[26,-101],[11,-76],[14,-99],[-48,-424],[-26,-118],[-16,-17],[-8,-9],[-51,21],[-77,30],[-60,-6],[-35,-31],[5,-19],[5,-18],[-7,-28],[-10,-7],[-41,-32],[-19,-11],[-9,-6],[-63,7],[-20,3],[-6,2],[-13,6],[-53,67],[-37,46],[-13,98],[47,154],[0,7],[-5,229],[-65,130],[-6,10],[-44,13],[-2,3],[-14,15],[-4,17],[-4,17],[17,84],[1,4],[50,-29],[65,-11],[22,3],[25,4],[16,6],[71,31],[173,143],[37,4],[109,-45],[29,-30],[22,-25],[11,-12]],[[34713,35741],[-48,-38],[-24,16],[-40,94],[18,17],[11,33],[40,1],[62,-65],[3,-18],[-22,-40]],[[35129,17070],[37,-101],[-24,-14],[-24,27],[-11,-14],[0,-26],[36,-31],[16,-1],[7,14],[89,-117],[2,-56],[163,-187],[94,-347],[19,-314],[18,-80],[50,-136],[62,-98],[-12,-94],[-57,-156],[-39,-68],[-37,-3],[-58,48],[-54,192],[-14,8],[-69,-13],[-41,-48],[64,-274],[40,-36],[-1,-84],[-66,-196],[-51,-20],[-75,-210],[27,-82],[3,-113],[-65,-254],[-302,-849],[-157,-522],[-193,-538],[-120,-504],[-123,-280],[-86,-249],[-143,-83],[-93,-26],[-41,8],[-72,-10],[-118,-39],[-242,-134],[-174,-2],[-212,123],[-132,34],[-110,64],[-29,36],[-165,299],[-10,249],[27,84],[3,88],[-161,279],[-53,211],[6,123],[96,268],[102,72],[351,579],[1,19],[-8,53],[-18,53],[21,71],[-5,47],[-98,221],[-98,377],[-40,228],[2,50],[174,292],[50,290],[146,-3],[124,49],[147,26],[80,4],[21,-17],[0,90],[33,35],[95,7],[25,-9],[4,-33],[36,-4],[10,24],[97,-49],[44,-44],[61,21],[-13,18],[-76,61],[-11,38],[13,25],[69,66],[78,44],[-1,-7],[3,-3],[9,-1],[-3,27],[86,66],[38,13],[39,-51],[-65,-129],[19,4],[123,69],[7,11],[-62,134],[100,140],[63,60],[23,-64],[-51,-78],[-1,-52],[19,-5],[20,14],[112,198],[-19,106],[36,75],[96,31],[-16,-61],[10,-29],[6,7],[21,114],[-34,73],[-33,24],[-13,51],[23,82],[33,21],[24,-10],[61,-89],[26,-23],[23,4],[101,118],[71,42],[71,80],[48,200],[-39,123],[37,26],[81,102],[30,45],[-6,64],[42,31]],[[19696,38564],[13,-5],[21,-13],[16,-10],[0,0],[1,-1],[4,-4],[3,-2],[0,-1],[0,-11],[0,-2],[-3,-4],[0,0],[-1,-1],[-11,-9],[-3,-1],[0,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[-2,1],[-8,1],[-26,5],[-5,3],[-13,6],[-3,2],[-17,11],[-2,3],[-2,4],[-1,3],[-2,14],[-4,19],[3,4],[1,2],[4,1],[6,2],[5,1],[28,-14],[7,-4]],[[19602,38621],[0,0],[2,0],[4,0],[0,0],[0,0],[1,0],[2,-1],[2,0],[0,0],[3,-1],[19,-7],[1,0],[2,-1],[6,-4],[1,-1],[1,-1],[2,-2],[1,0],[0,-1],[0,0],[0,-1],[1,0],[-1,-2],[0,0],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-28,-5],[-2,0],[-2,0],[-10,2],[-4,1],[-5,2],[-6,2],[-2,1],[0,0],[-3,6],[-2,8],[0,1],[0,1],[0,0],[0,0],[0,1],[0,0],[1,0],[1,0],[2,1],[6,2],[0,0],[1,0],[0,0],[1,0],[1,1],[1,-1],[1,0],[2,0],[2,0],[0,0]],[[12183,44645],[0,0],[0,-8],[-11,-27],[-3,-2],[-24,-3],[-4,1],[-8,0],[-20,2],[0,0],[-1,1],[-3,2],[0,0],[0,1],[0,1],[0,0],[0,0],[0,0],[0,0],[34,20],[14,8],[10,3],[2,0],[3,1],[2,0],[3,0],[6,0]],[[12347,44531],[1,0],[5,0],[11,0],[25,-7],[9,-3],[0,0],[0,-1],[0,0],[0,-1],[1,-1],[-1,-4],[-3,-19],[-2,-1],[-5,-1],[-10,-1],[-43,1],[-8,0],[-12,4],[-10,4],[-4,12],[-4,13],[-2,2],[0,0],[0,1],[0,1],[2,1],[0,1],[1,1],[1,0],[0,0],[0,0],[1,0],[5,0],[8,-2],[1,-1],[4,-2],[1,0],[0,0],[1,0],[3,0],[5,1],[1,0],[1,0],[0,0],[1,1],[1,1],[0,0],[5,1],[6,1],[4,-2],[0,0],[0,0]],[[33281,16758],[24,-36],[19,-57],[-2,-53],[-19,-9],[-11,0],[-9,4],[-13,31],[9,0],[-22,73],[-1,1],[-2,1],[-1,1],[1,2],[0,0],[0,1],[6,19],[15,18],[5,4],[0,0],[1,0],[0,0]],[[33364,16701],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[-1,0],[-4,-3],[-3,-1],[-3,6],[-1,6],[1,2],[6,8],[1,0],[1,-1],[2,-6],[0,-2]],[[37889,13063],[24,-2],[2,0],[1,-1],[1,0],[12,-1],[1,0],[18,-7],[10,-4],[1,0],[0,0],[1,-1],[1,0],[1,-1],[8,-9],[0,0],[64,-89],[0,-1],[0,0],[1,-2],[2,-7],[1,-6],[-11,-69],[-2,-6],[-1,-1],[0,-1],[-1,-1],[-4,-2],[0,-1],[-1,0],[-1,0],[-11,-4],[-1,0],[-49,-10],[-14,1],[-7,1],[-33,9],[-21,6],[-24,11],[-33,19],[-11,7],[-15,15],[-6,10],[-22,51],[4,37],[24,42],[33,14],[39,8],[19,-5]],[[7756,25822],[-17,-57],[-177,63],[31,23],[124,8],[39,-37]],[[16252,22619],[8,-3],[5,-4],[6,-5],[3,-5],[8,-12],[6,-15],[2,-12],[-2,-19],[-1,-1],[0,-2],[-2,-2],[0,0],[-5,-7],[-1,-1],[0,-1],[-4,-5],[-50,-55],[-26,-21],[-12,-4],[-25,77],[0,21],[2,9],[1,2],[0,1],[0,0],[9,17],[8,9],[10,8],[8,6],[24,18],[9,5],[17,2],[1,-1],[1,0]],[[16573,23196],[19,-3],[7,-8],[-4,-26],[-9,-26],[0,-1],[-1,0],[-8,-7],[-2,-1],[-5,1],[-4,1],[-14,8],[-4,8],[-3,8],[20,39],[6,6],[2,1]],[[37872,20377],[20,-39],[7,-22],[3,-32],[-15,3],[-11,11],[-28,44],[1,19],[23,16]],[[35977,17902],[1,-2],[0,-1],[0,-1],[1,0],[1,-6],[0,-1],[0,-2],[0,-2],[-1,0],[0,-1],[-1,-1],[-4,-2],[-1,0],[-6,13],[0,1],[2,3],[1,2],[2,1],[1,1],[1,-1],[3,-1]],[[33899,18235],[3,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-3],[1,-1],[-1,-4],[0,-2],[-1,-1],[0,0],[-1,-1],[-3,-3],[0,-1],[-2,-1],[-1,-1],[-11,-7],[-82,-17],[-21,15],[7,-3],[0,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[0,0],[7,0],[12,3],[26,7],[35,11],[2,3],[-11,15],[0,1],[0,1],[1,0],[1,0],[11,-2],[12,-3]],[[33785,18232],[-15,-6],[0,0],[0,0],[-1,0],[0,1],[-1,1],[0,3],[-1,2],[0,0],[0,1],[1,1],[3,3],[1,1],[2,1],[0,0],[1,1],[1,0],[5,1],[1,0],[1,0],[0,0],[1,-1],[1,-9]],[[33825,18242],[11,0],[13,1],[8,-1],[14,-2],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-8,-2],[-48,3],[2,6],[11,-1]],[[38219,19211],[-1,-1],[-1,0],[-1,0],[0,0],[-1,1],[0,0],[0,1],[0,1],[0,1],[0,2],[1,2],[12,27],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[0,0],[0,-1],[0,-1],[-1,-9],[-1,-5],[-12,-17],[-1,-1],[0,0]],[[37781,20422],[1,-3],[-1,-6],[-1,-2],[-2,-2],[-1,0],[0,0],[-1,0],[-1,0],[0,0],[-5,2],[-3,2],[-5,6],[-2,2],[0,1],[-1,1],[-1,1],[0,1],[1,2],[0,1],[2,2],[1,0],[0,0],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[0,0],[1,-1],[0,0],[0,-1],[1,0],[2,-5]],[[38045,20476],[-7,-6],[-1,0],[-5,7],[0,1],[-1,0],[0,2],[0,0],[0,2],[2,6],[0,1],[0,0],[1,0],[0,1],[0,0],[1,0],[4,-3],[0,0],[1,-1],[2,-2],[3,-6],[1,-1],[0,-1],[-1,0]],[[37982,20508],[25,-9],[8,-9],[-6,-8],[-4,-4],[-2,0],[-1,0],[-12,4],[-17,13],[-1,0],[-1,2],[0,1],[-1,1],[-1,7],[0,1],[0,2],[8,2],[1,0],[0,0],[1,0],[0,0],[3,-3]],[[18195,37592],[-67,-50],[-54,16],[-25,25],[6,53],[89,3],[52,-31],[-1,-16]],[[30909,18854],[-46,-8],[-20,16],[135,144],[-2,-47],[-27,-72],[-40,-33]],[[30828,19546],[-26,-20],[-66,78],[-29,6],[-31,176],[60,24],[30,-130],[37,-20],[31,-91],[-6,-23]],[[30934,20024],[-36,-46],[-33,17],[-8,18],[37,107],[-13,10],[-3,79],[6,27],[13,-6],[41,-18],[6,-72],[16,-6],[-26,-110]],[[37109,28103],[55,-6],[120,25],[159,-59],[-40,-37],[-136,-50],[-190,-22],[-49,15],[-101,90],[45,60],[53,18],[26,-6],[58,-28]],[[14007,39944],[-91,-81],[0,0],[-6,1],[-72,10],[0,0],[-3,36],[10,11],[24,25],[84,33],[14,5],[13,-6],[1,0],[0,0],[13,-18],[13,-16]],[[14724,40092],[-58,-30],[-273,78],[-48,36],[-9,7],[11,23],[185,108],[96,32],[34,5],[52,7],[43,-58],[60,-81],[-17,-23],[-76,-104]],[[15200,40332],[-14,-36],[-194,50],[0,0],[-16,40],[1,2],[11,17],[117,15],[40,-25],[35,-22],[9,-19],[11,-22]],[[5960,35006],[0,0],[-42,-10],[-11,1],[-13,3],[-37,52],[-1,2],[0,0],[-2,3],[-52,87],[1,4],[1,7],[11,4],[12,4],[10,0],[5,0],[45,0],[62,10],[36,12],[4,3],[4,2],[4,3],[1,1],[7,8],[6,5],[84,41],[29,7],[11,3],[1,0],[0,0],[1,0],[0,0],[0,-1],[2,-1],[4,-2],[3,-2],[1,0],[1,-2],[0,-2],[-6,-22],[-129,-170],[-5,-6],[-13,-14],[0,0],[-1,-1],[-1,-1],[0,0],[-3,-3],[0,0],[0,-1],[-1,-1],[0,0],[0,0],[-2,-1],[0,0],[-6,-6],[-6,-5],[-1,-1],[-6,-5],[-5,-3],[-3,-2]],[[5332,34851],[-4,-2],[-17,-9],[-47,20],[0,0],[-1,10],[-3,22],[0,0],[59,22],[47,-12],[0,0],[-10,-15],[-24,-36]],[[6445,34902],[0,0],[-65,-26],[0,0],[-7,2],[-22,6],[-14,10],[-12,8],[-4,3],[-12,8],[0,0],[-1,1],[0,0],[-5,3],[-2,2],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[-2,2],[0,1],[0,1],[-12,23],[-1,5],[-1,2],[1,20],[2,16],[0,1],[0,0],[54,64],[60,1],[56,2],[0,0],[3,-3],[3,-3],[3,-14],[8,-35],[0,0],[3,-2],[1,0],[0,0],[0,-1],[1,-1],[1,0],[1,-1],[0,0],[1,-1],[0,0],[0,0],[1,-1],[1,-2],[1,0],[0,0],[0,0],[0,-1],[0,-2],[1,-1],[0,0],[0,-1],[0,-1],[-2,-17],[0,-5],[-8,-41],[-13,-17],[-9,-7],[-5,-4]],[[5673,35004],[-18,-2],[0,0],[-8,2],[-1,0],[-3,1],[0,0],[-19,16],[-2,2],[-1,1],[-6,8],[0,1],[0,0],[-1,1],[0,1],[-1,1],[0,1],[-1,3],[0,1],[-1,0],[0,1],[1,5],[1,6],[2,11],[0,0],[0,1],[0,0],[1,2],[1,3],[1,1],[2,5],[3,4],[2,1],[0,1],[18,5],[29,-4],[2,-1],[2,-1],[3,-1],[0,0],[1,0],[12,-7],[19,-12],[0,0],[0,0],[1,-1],[1,0],[2,-3],[1,-2],[1,-3],[2,-3],[1,-6],[0,-2],[0,0],[0,-2],[-1,-5],[-4,-6],[-1,-1],[0,0],[0,0],[-1,-1],[-1,-1],[0,0],[-1,-1],[-15,-10],[-7,-4],[-7,-4],[-9,-2]],[[7166,35309],[1,-7],[0,-1],[3,-27],[0,-4],[0,-7],[-1,-5],[0,-3],[0,-7],[-2,-9],[-7,-41],[-3,-12],[-10,-34],[-10,-30],[0,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-5,-7],[-5,-7],[-8,-7],[-1,0],[-2,-1],[0,0],[-4,-2],[-137,-53],[-75,-2],[-4,0],[104,62],[27,56],[48,98],[13,36],[0,1],[0,0],[1,3],[0,1],[1,0],[0,1],[-2,7],[0,1],[0,0],[-1,1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,2],[0,2],[0,1],[0,3],[1,0],[1,1],[4,2],[4,2],[19,8],[8,3],[1,0],[6,1],[15,3],[0,0],[9,-6],[8,-7],[3,-4],[1,-2],[1,-4],[1,-2]],[[5409,35221],[-17,-25],[0,0],[-1,0],[-2,0],[-1,1],[0,0],[-3,2],[-2,2],[-3,2],[-2,2],[0,1],[-2,2],[-2,3],[0,1],[-55,116],[-2,6],[0,1],[0,1],[0,0],[0,1],[1,2],[0,0],[0,1],[0,0],[1,1],[0,0],[2,5],[0,0],[3,4],[2,4],[2,4],[5,5],[1,0],[0,0],[1,1],[0,0],[6,3],[15,9],[52,-3],[4,-1],[1,-1],[1,0],[1,-1],[6,-8],[2,-3],[16,-29],[-11,-68],[0,-1],[-3,-12],[0,-1],[0,-1],[0,-1],[-7,-10],[-9,-15]],[[7286,35423],[-100,-51],[0,0],[-25,8],[0,0],[-10,16],[17,51],[0,1],[1,0],[4,7],[1,1],[0,1],[11,10],[5,4],[0,0],[9,5],[0,0],[45,17],[45,19],[16,7],[21,-5],[16,-4],[-10,-36],[-3,-12],[-2,-13],[-8,-9],[-3,-2],[-30,-15]],[[7312,35543],[0,0],[-7,-2],[-6,-2],[-3,0],[-3,1],[0,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[15,25],[1,1],[0,0],[0,0],[1,0],[1,0],[7,-3],[3,-5],[2,-4],[0,0],[-10,-16],[0,0]],[[7303,35612],[-1,0],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-1,3],[0,0],[0,1],[0,2],[0,2],[0,0],[0,0],[1,1],[0,1],[1,1],[0,0],[0,1],[1,1],[3,2],[3,1],[1,1],[0,0],[1,-1],[1,0],[1,0],[6,-3],[0,0],[0,0],[0,0],[1,-1],[0,-1],[-1,-2],[0,0],[0,-1],[-1,0],[0,-1],[0,0],[0,-1],[-3,-2],[-1,-1],[0,0],[0,0],[-3,-1],[-4,-1],[-1,-1],[-1,0],[-1,0]],[[38792,13225],[-6,0],[-49,6],[-22,10],[-5,2],[-15,9],[2,12],[20,72],[11,26],[4,9],[53,64],[4,4],[10,12],[13,11],[6,3],[5,2],[2,0],[4,-1],[18,-7],[9,-5],[55,-99],[-16,-45],[-2,-7],[-22,-43],[-20,-15],[-7,-4],[-29,-10],[-23,-6]],[[38416,17726],[-1,0],[-1,1],[-1,0],[-22,28],[-6,8],[-2,4],[-1,0],[-12,20],[0,1],[0,1],[0,0],[1,6],[0,0],[0,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,0],[41,-51],[1,0],[2,-1],[0,-1],[1,-1],[0,0],[2,-5],[-1,-2],[0,0],[0,-1],[-1,0],[0,-1],[-4,-3],[-1,0]],[[5826,37075],[-41,-1],[-13,4],[-24,7],[-30,10],[-15,7],[-34,16],[-11,13],[-5,8],[-6,12],[0,3],[0,1],[0,0],[12,12],[4,3],[6,4],[8,5],[3,1],[2,0],[1,0],[0,0],[2,0],[1,0],[0,0],[0,0],[1,0],[1,-1],[1,0],[83,-17],[52,-13],[58,-24],[0,0],[-5,-6],[-17,-21],[-15,-16],[-6,-5],[-1,0],[-3,-1],[-1,-1],[-7,0],[0,0],[-1,0]],[[5988,37007],[-2,-6],[0,0],[-20,33],[0,4],[-1,5],[1,1],[0,1],[0,0],[1,0],[0,0],[0,0],[1,-1],[0,0],[1,-1],[0,0],[0,-1],[3,-2],[1,-3],[13,-20],[2,-10]],[[6077,37264],[-39,-17],[0,0],[-1,0],[-5,5],[0,2],[0,1],[0,1],[5,8],[3,5],[1,1],[4,4],[3,3],[0,0],[0,0],[0,0],[1,1],[2,0],[4,2],[1,1],[2,1],[0,0],[1,1],[1,0],[0,0],[3,1],[5,-1],[3,-1],[4,0],[2,-3],[0,0],[0,-8],[0,-7]],[[1958,39398],[7,0],[3,0],[1,0],[42,3],[45,9],[32,7],[13,0],[30,0],[4,0],[1,0],[1,0],[2,0],[0,0],[1,-1],[0,0],[1,0],[0,0],[5,-1],[2,-1],[1,-1],[0,0],[0,0],[1,0],[0,-1],[4,-11],[0,0],[0,-1],[0,-1],[0,0],[0,-7],[-1,-12],[0,-2],[-1,-3],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,0],[-1,-1],[-1,-1],[-2,-3],[0,0],[-2,-1],[-3,-2],[0,0],[-1,0],[-14,-3],[-17,-3],[-65,-8],[-21,-1],[-34,-1],[-55,7],[-26,3],[-5,3],[-3,1],[-1,1],[0,0],[-1,0],[-1,1],[-1,0],[0,0],[-2,1],[-4,2],[-22,15],[-12,8],[-7,5],[-7,6],[-2,1],[0,0],[0,1],[-1,0],[0,1],[-2,3],[-1,0],[0,1],[0,0],[0,0],[-1,3],[0,0],[0,1],[0,0],[0,1],[0,1],[-1,2],[0,0],[14,14],[5,3],[13,-4],[38,-11],[12,-14],[18,-4],[16,-3],[3,0],[3,-1]],[[2208,39001],[0,0],[0,0],[0,0],[-9,0],[-9,0],[-15,2],[-31,3],[0,0],[-1,0],[-2,2],[-2,1],[-4,7],[-4,10],[0,1],[0,0],[-1,1],[1,0],[1,2],[0,0],[1,1],[0,0],[1,0],[1,1],[8,2],[8,1],[1,1],[21,3],[3,0],[1,1],[6,-1],[2,0],[0,0],[5,-6],[15,-18],[1,-1],[0,-1],[3,-8],[-1,-3],[0,-1]],[[848,39662],[-31,-1],[-47,-2],[-49,9],[-24,4],[-13,3],[-10,2],[-1,0],[-13,6],[-1,0],[0,0],[0,0],[-1,1],[-1,0],[-2,2],[-7,10],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,0],[-1,1],[0,2],[-1,6],[0,3],[0,1],[1,3],[0,1],[0,1],[0,0],[1,1],[1,1],[2,1],[6,4],[0,1],[0,0],[2,1],[1,1],[4,1],[0,0],[1,0],[1,1],[4,1],[7,1],[9,0],[20,1],[1,0],[3,-1],[1,0],[5,-1],[8,-2],[23,-8],[109,-41],[5,-2],[3,-1],[9,-4],[1,-1],[0,0],[0,-1],[0,0],[1,-2],[0,-1],[0,-1],[0,0],[0,0],[0,0],[0,-1],[0,-1],[-1,0],[0,0],[-4,-2],[0,0],[0,0],[-2,0],[0,0],[-1,0],[-10,-3],[-4,0],[-2,0],[0,0],[-1,0],[0,0]],[[605,39718],[-15,-1],[-23,-3],[-4,1],[-9,2],[-17,20],[-3,20],[0,0],[11,4],[18,7],[29,-3],[0,0],[5,-2],[11,-6],[5,-6],[5,-6],[-1,-9],[-1,-5],[-1,-5],[-4,-4],[-2,-2],[-4,-2]],[[985,39723],[-21,-3],[-1,0],[0,0],[0,0],[-1,0],[-87,33],[-59,22],[-23,10],[-4,2],[0,0],[-23,17],[0,0],[-6,4],[-5,4],[-9,8],[0,1],[-1,1],[0,0],[1,0],[0,0],[0,1],[2,0],[17,-4],[13,-5],[53,-18],[27,-10],[49,-17],[20,-9],[46,-19],[0,0],[11,-5],[5,-3],[1,0],[0,-1],[5,-3],[0,-1],[1,0],[0,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,0],[0,0],[0,0],[-1,0],[-1,-1],[0,0],[-1,0],[-1,0],[0,0],[-1,0]],[[1297,39774],[0,0],[-7,-4],[-56,3],[-8,1],[-6,0],[-24,4],[-4,2],[-15,8],[-3,1],[0,0],[0,1],[-3,2],[-1,0],[0,1],[-2,1],[-1,1],[-2,2],[-3,7],[0,0],[0,0],[0,1],[-1,6],[-1,2],[0,1],[0,1],[0,0],[0,1],[1,3],[1,4],[1,2],[3,6],[1,3],[0,0],[0,0],[1,0],[0,0],[13,5],[4,1],[0,0],[1,0],[3,1],[0,0],[1,0],[6,0],[9,1],[0,0],[4,0],[4,0],[1,0],[3,0],[1,0],[6,-1],[59,-6],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[10,-7],[2,-1],[0,0],[1,-2],[0,-1],[1,0],[3,-7],[3,-8],[3,-10],[-1,-1],[0,-2],[0,0],[-1,0],[0,0],[0,-1],[-9,-12],[-4,-6]],[[901,39934],[-1,0],[0,0],[-1,0],[-3,0],[-7,2],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-1,1],[-2,0],[0,0],[-3,1],[-9,3],[-1,0],[0,0],[-1,0],[-1,1],[-3,3],[-3,2],[0,0],[-5,8],[-1,2],[-3,6],[0,0],[6,7],[1,2],[1,0],[3,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,-1],[0,0],[0,0],[1,0],[5,-1],[3,-1],[3,-2],[7,-3],[5,-7],[7,-8],[1,-2],[1,-2],[1,-2],[2,-5],[-1,0],[0,-1],[0,0],[-1,-1],[-1,-2],[0,0],[0,0],[0,-1],[-1,0],[-2,-1],[-2,0],[-1,0]],[[10781,15253],[-28,-7],[-9,1],[-10,7],[1,10],[5,11],[0,0],[1,1],[0,0],[0,0],[25,21],[2,0],[1,0],[0,0],[1,0],[0,0],[14,-3],[6,-4],[8,-14],[-1,-7],[-2,-3],[-3,-4],[-1,0],[-1,-1],[0,-1],[-9,-7]],[[8895,4364],[7,-6],[18,-21],[0,0],[1,-1],[0,-1],[0,0],[0,-2],[-5,-10],[-1,-1],[-14,3],[-2,0],[-1,1],[0,0],[-5,7],[-14,9],[-10,5],[-2,0],[0,0],[-1,0],[-1,0],[-1,0],[-1,5],[3,9],[7,2],[1,-1],[5,1],[16,1]],[[7674,5689],[-3,-1],[-6,2],[-2,1],[0,1],[-1,0],[0,5],[0,1],[0,1],[1,1],[0,0],[7,4],[6,2],[12,-4],[4,-3],[0,-1],[0,-1],[0,0],[-1,-1],[-17,-7]],[[7853,5757],[0,0],[-4,0],[-15,5],[-9,12],[-2,3],[-1,2],[-1,1],[3,7],[2,4],[0,0],[9,12],[7,1],[13,0],[7,0],[5,-3],[2,-2],[4,-3],[1,-1],[0,0],[1,-1],[0,0],[0,-1],[5,-8],[0,0],[0,-3],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-21,-19],[0,0],[-1,-1],[-1,-1],[0,0],[-1,0],[0,0],[-2,0]],[[6936,18852],[-20,-5],[-4,1],[-4,4],[-1,1],[0,1],[-1,2],[0,10],[2,11],[3,9],[7,5],[4,1],[3,0],[4,-1],[1,0],[1,-1],[0,0],[11,-8],[7,-5],[6,-7],[2,-7],[-9,-6],[-12,-5]],[[34822,41207],[43,-27],[151,-159],[104,-199],[122,-145],[82,-38],[142,-1],[89,-38],[57,-58],[6,-45],[-51,30],[-58,13],[-75,-4],[-173,-62],[-34,-25],[-30,-47],[-13,-136],[-45,-181],[-24,-25],[-17,-107],[-43,-15],[18,35],[-45,38],[-35,-1],[-15,-28],[-29,-165],[1,-136],[0,-61],[33,-182],[26,-65],[45,-51],[76,-44],[74,-25],[219,-17],[107,-26],[19,-12],[9,-39],[41,-65],[67,-47],[211,-108],[114,-36],[295,-57],[98,8],[609,128],[234,25],[-32,-16],[-142,-17],[23,-20],[98,-13],[65,22],[-1,47],[-54,176],[-2,5],[-45,243],[17,236],[38,158],[-58,122],[-96,124],[-124,10],[-56,-23],[50,159],[6,-54],[117,-28],[74,24],[-107,165],[-63,40],[-158,0],[-6,-57],[-28,9],[-78,83],[-21,99],[14,79],[86,256],[54,-58],[202,-68],[107,-54],[279,47],[151,69],[24,40],[-12,63],[-292,167],[-78,266],[-39,23],[-67,10],[-225,-22],[-82,-45],[-56,-97],[-9,-36],[25,-84],[-3,-129],[-22,-1],[-149,226],[-6,29],[-17,93],[16,86],[75,104],[48,103],[-5,29],[-81,42],[-204,33],[-296,127],[-48,60],[-205,389],[-252,73],[-24,31],[5,81],[29,34],[272,-25],[32,-29],[70,-24],[124,15],[-14,42],[-193,110],[-7,46],[224,179],[520,10],[212,-34],[55,17],[-213,82],[-6,13],[6,43],[58,60],[24,9],[67,92],[33,121],[22,184],[-66,92],[-85,28],[-199,0],[-79,-67],[-15,1],[-189,45],[-112,68],[-147,27],[-98,-26],[-625,-237],[-151,-82],[-1,-1],[-6,4],[-210,74],[210,-74],[6,-4],[-263,-195],[-217,-76],[-125,-11],[-131,-52],[4,-16],[-87,-149],[-113,-165],[-153,-78],[-25,-40],[-16,-39],[15,-40],[152,-48],[93,-79],[133,-205],[-35,-103],[-9,-198],[147,-180],[231,-249],[83,-76],[32,-20],[0,0]],[[23929,17547],[16,-138],[-22,-194],[16,-370],[-42,-191],[-86,-52],[-717,-1],[-49,-49],[-2,-1356],[100,-197],[399,-393],[139,-86]],[[23681,14520],[-889,-174],[-243,12],[-296,51],[-586,31],[-117,79],[-94,112],[-1771,0],[-193,-20],[-193,126],[-38,63],[-48,17],[-88,5],[-85,-14],[-181,-110],[-117,2],[-50,23],[-125,-10],[-64,-21]],[[19100,19790],[328,17],[393,-12],[769,13],[56,-42],[47,-77],[6,-144],[20,-98],[80,-204],[258,-420],[49,-36],[209,21],[75,36],[117,11],[376,-11],[57,380],[29,68],[325,15],[118,-60],[-8,-81],[534,0],[35,-153],[-10,-200],[58,-169],[-69,-430],[46,-115],[100,-98],[39,-78],[48,-159],[2,-136],[-68,-75],[41,-145],[16,-20],[216,59],[145,0],[247,47],[67,-9],[78,62]],[[18608,20190],[334,250],[108,-54],[50,-55]],[[19100,20331],[-111,-34],[-103,-107],[-38,-67],[-18,-264],[-131,-12]],[[26829,21350],[-31,-72],[-24,-135],[37,-35],[15,9],[121,-24],[13,-120],[-33,-16],[-140,-128],[-24,-70],[-104,-172],[-68,-77],[-140,-74],[-49,1],[-69,1]],[[26333,20438],[-13,80],[-52,149],[-20,188],[-7,70],[-37,191],[-40,86]],[[26164,21202],[5,56],[18,12],[103,-27],[33,-75],[160,10],[58,22],[32,116],[41,51],[142,19],[38,-7],[35,-29]],[[14884,27687],[-48,-124],[28,-76],[80,-78],[53,-218],[-23,-65],[-28,-12],[-99,-259],[-272,-349],[-47,-10],[-32,-477],[22,-345],[-23,-381]],[[14020,25231],[73,26],[-89,244],[14,103],[-5,887],[-115,282],[-4,147],[-256,171],[21,164],[40,114]],[[13699,27369],[101,78],[109,119],[246,-11],[38,9],[124,115],[44,93]],[[14361,27772],[-5,94],[85,81],[113,51],[330,-311]],[[13699,27369],[-126,-6],[-339,67]],[[13234,27430],[-49,11],[-182,-84],[-136,12],[-828,2],[-43,-182],[58,-145],[21,-150],[-9,-154],[38,-48]],[[12104,26692],[-32,-36],[-11,3],[-64,68],[-48,74],[-55,49],[-115,37],[-99,9],[-117,-24],[-111,-36],[-138,-73],[-108,24],[-110,103],[-25,75],[-53,89],[-96,-3],[-71,62]],[[10851,27113],[74,311],[65,143],[-27,130],[-44,44],[133,66],[149,21],[75,60],[128,246],[-30,197],[103,95],[74,31],[153,-101],[71,0],[65,38],[11,53],[179,269],[168,132],[127,-46],[174,129],[291,130],[189,139],[206,-2],[213,-73]],[[13398,29125],[-19,-42],[-13,-129],[97,-217],[101,-137],[275,-159],[11,-23],[-35,-8],[-81,24],[0,-122],[388,-223],[52,58],[55,-5],[53,-72],[21,-60],[-85,-17],[-8,-15],[151,-206]],[[26312,12475],[-87,0],[-74,-19],[-20,-51],[-61,-56],[-149,-45],[-68,-1],[-80,-68],[-173,-202],[-273,-157],[-56,-51],[-34,-75],[-19,-99],[-71,-125],[-114,-104],[-88,-54],[-153,-38],[-42,-23],[-3,-78],[-80,-222],[-36,-76],[-28,-19],[-91,-42],[-309,-13],[-344,109],[-125,88],[-95,34],[-131,-3],[-87,-92],[-63,-234],[-18,-26],[-313,-263],[-150,-91],[-163,12],[-244,-21],[-13,11],[-18,31],[-12,129],[4,22],[86,106],[17,44],[-28,127],[-59,136],[-111,205],[-53,57],[-126,85]],[[22157,11323],[4,1240],[439,0],[0,1526],[88,128],[311,40],[528,99],[91,1],[122,-210],[27,-10],[161,145],[159,93],[165,24],[107,43],[130,8]],[[24489,14450],[-7,-62],[15,-33],[119,-182],[77,-85],[120,-193],[16,-74],[50,-129],[216,-181],[139,-56],[157,-135],[171,-80],[11,-164],[31,-139],[85,-142],[117,-54],[142,-20],[169,-57],[195,-189]],[[23431,27337],[63,-100],[142,-122],[149,-240],[11,-100],[-22,-128],[-63,-97],[6,-152],[57,-43],[258,-19],[-3,-26]],[[24029,26310],[-32,-110],[23,-41],[67,-22],[220,-37],[123,-120],[49,-122],[-33,-25],[17,-38],[85,-69],[136,-66],[152,-97],[113,-121],[0,-98],[74,-182],[171,-67],[148,-92],[32,-57],[57,-198],[30,-39],[-5,-24]],[[25456,24685],[-8,28],[-147,57],[-71,-30],[-20,-24],[-160,-14],[-93,42],[-212,27],[-135,73],[-63,-19],[-19,-22],[-15,-38],[14,-22],[-13,-51],[-136,-33],[-292,21],[-408,-168],[-63,0],[-79,35],[-58,53],[-72,-47],[-85,-104],[-40,-130],[-35,-30],[-72,-8],[-222,74],[-129,-10],[-119,17],[-185,60],[-162,64],[-5,31],[-51,55],[-219,146],[-56,19],[-79,4],[-70,-23],[-136,-103],[-188,-225],[-15,-65],[-6,-205],[16,-129]],[[21548,23991],[-73,69],[-77,-15],[-198,3],[-202,21],[-320,-49],[-30,-32],[-59,-330],[-119,-229]],[[20470,23429],[-51,113],[4,158],[-367,394],[-82,142],[37,24],[-30,98],[-159,148],[-63,354],[0,353],[96,86],[102,168],[64,139],[140,206]],[[20161,25812],[120,-33],[105,20],[274,116],[79,-92],[48,6],[234,137],[114,48],[395,29],[120,121],[107,153],[-4,22],[-100,66],[58,57],[79,18],[236,4],[334,68],[138,105],[228,256],[139,102],[54,135],[31,126],[24,22],[295,74],[162,-35]],[[12104,26692],[14,-219],[30,-97],[42,-262],[-117,-122],[-36,-63],[-37,-81],[-81,-262],[-47,-78],[-16,-93],[26,-132],[73,-244],[70,-73],[45,-25],[17,-203],[-18,-14],[-115,8],[-36,-15]],[[9959,24390],[-16,26],[-8,221],[85,206],[0,116],[-22,70],[-55,36],[-150,183],[-45,21],[-46,-13],[-69,13],[-147,81],[30,47],[80,73],[24,121],[-9,70],[-43,122],[-28,41]],[[9540,25824],[75,18],[92,88],[47,105],[-39,62],[-64,29],[-2,106],[16,15],[101,1],[91,-44],[-20,300],[-150,240],[-9,145],[80,108]],[[9758,26997],[25,-6],[39,26],[33,42],[153,16],[19,-36],[129,-38],[183,127],[39,71],[85,38],[77,4],[16,-97],[-22,-91],[17,-28],[29,-13],[62,-4],[56,81],[42,27],[85,8],[26,-11]],[[20470,23429],[-17,-16],[-26,-133],[-77,-48],[-63,50],[-129,41],[-167,4],[-374,81],[-430,0]],[[19187,23408],[-8,35],[-40,15],[-239,-19],[-442,32],[-113,-6],[-28,-57]],[[18317,23408],[-588,0],[-69,32],[-13,47]],[[17073,24557],[109,168],[43,168],[-7,102],[44,96],[280,251],[78,94],[104,92],[250,63],[19,25],[102,-83],[117,-175],[98,-7],[79,44],[23,27],[168,344],[166,454],[73,83],[16,7],[47,-16],[66,69],[57,140],[13,90],[104,119],[169,384],[28,134],[73,139],[90,113],[66,5],[91,28],[111,68],[39,293],[-9,28],[-56,61],[-44,15],[-92,78],[-53,245]],[[19535,28303],[87,0],[83,0],[62,-83],[107,-146],[102,-321],[13,-161],[-21,-39],[-1,-61],[9,-189],[13,-52],[38,-104],[131,-171],[37,-25],[-84,-51],[-507,22],[-106,-169],[216,-251],[252,-174],[236,-415],[-9,-70],[-32,-31]],[[19100,20331],[43,11],[96,-94],[86,35],[42,37],[9,97],[303,85],[30,-62],[-25,-32],[-9,-156],[11,-12],[117,-11],[54,34],[150,189],[261,192],[98,87],[87,162],[25,407],[-13,54],[3,98],[182,219],[55,116],[55,83],[72,57],[179,107],[111,108],[18,31],[-2,203],[54,161],[22,158],[-13,173],[45,134],[56,118],[-6,139],[0,11],[2,11],[-1,75],[15,87],[1,9],[2,3],[33,37],[12,21],[64,99],[126,252],[-2,127]],[[25456,24685],[111,-73],[81,-138],[122,-73],[97,-39],[51,11],[94,73],[49,10],[102,-14],[58,-46],[133,105],[18,31],[64,-17],[55,-31],[39,-104],[166,-177],[226,-130],[49,-76]],[[26971,23997],[33,9],[2,-12],[-62,-212],[-4,-161],[22,-111],[102,-26],[89,-72],[18,-15],[0,-14],[-329,-373],[-63,-27],[-59,-25],[-146,-219],[-110,-292],[-57,-637]],[[26407,21810],[-101,-53],[-98,-140],[-8,-42],[10,-43],[-123,-173],[14,-120],[63,-37]],[[26333,20438],[-26,-121],[91,-510],[-29,-42],[-4,-28],[24,-128],[84,-153],[144,-94],[55,-53],[56,-81],[157,-346],[56,-162]],[[26941,18720],[-123,-11],[-421,-35],[-300,-44],[31,-65],[-11,-46],[-82,-112],[-99,-86],[51,-382],[5,-232],[-20,-95],[-55,-155],[-44,-204],[25,-112],[44,-45],[49,-25],[164,-175],[57,-18],[154,-9],[-17,34],[10,34],[35,25],[113,20],[-7,-581],[-66,3],[-19,30],[-100,18],[-73,-38],[-93,-3],[-97,208],[-229,243],[-140,43],[-145,23],[-51,64],[-128,223],[-91,-51],[-24,-68],[-43,-38],[-96,-4],[-291,31],[-220,76],[-76,64],[-15,112],[18,54],[-142,-5],[-298,-53],[28,53],[-6,66],[-114,79],[-60,16]],[[18237,20656],[43,95],[103,114],[75,-66],[8,-44],[62,15],[40,28],[23,142],[-105,97],[-57,108],[-29,221],[50,-14],[390,-6],[-10,122],[-19,69],[5,53],[65,29],[80,-36],[120,-197],[187,-42],[66,48],[43,57],[64,-97],[-1,-27],[15,-9],[77,-3],[67,60],[52,190],[37,68],[29,149],[-8,143],[19,207],[-44,89],[-233,108],[5,217],[19,44],[86,95],[59,-7],[27,32],[65,98],[-4,50],[-84,176],[-47,28],[-162,14],[-11,-16],[-95,-46],[-103,-15],[-54,12],[-38,133],[2,48],[17,84],[36,67],[18,67]],[[32465,27575],[-130,-208]],[[32335,27367],[-292,-2],[-150,-33],[-77,27],[-8,219],[31,121],[50,37],[197,291]],[[32086,28027],[75,0],[127,47],[118,62]],[[17124,39007],[0,-40],[-94,-105],[-45,-83],[-14,-183],[43,-346],[-59,-267],[-44,-48],[-234,-173],[-45,-50],[-2,-74],[7,-46],[107,-230],[74,-54],[81,-34],[192,-313],[225,-132],[211,-826]],[[17527,36003],[-61,-30],[8,-67],[47,-56],[109,-214],[54,-298],[-7,-517],[-47,-118],[51,-207],[-27,-169],[-183,-155],[266,-372],[5,-161],[96,-166],[75,-58],[106,31],[58,-5],[107,-36],[43,-28],[212,-59],[172,-335]],[[18611,32983],[-1001,-583],[-1010,-615],[-627,-539],[-245,-117],[-553,-108]],[[15175,31021],[-398,-74],[-97,66],[47,141],[1,181],[-510,179],[-185,80],[-214,199],[4,50],[-17,69],[-1264,841],[-1390,897]],[[11152,33650],[-848,529],[-850,508]],[[9454,34687],[0,157]],[[9454,34844],[0,472],[387,238],[245,106],[451,42],[221,-2],[173,88],[196,177],[252,165],[77,25],[132,18],[88,31],[52,144],[-6,19],[-99,43],[47,212],[256,56],[71,123],[72,41],[348,23],[181,-33],[146,-8],[37,15],[46,158],[-152,136],[-64,87],[-46,207],[-13,115],[0,219],[-30,259],[-126,81],[-82,73]],[[28400,32305],[-401,-1]],[[27999,32304],[-582,1],[-214,68],[-224,-66],[-1303,10],[-1303,-13]],[[24373,32304],[0,3252],[-128,398],[51,102],[44,53],[41,133],[-51,140],[-18,125],[6,21],[120,105]],[[28458,36486],[22,-46],[252,-642],[30,-133]],[[29081,32818],[-145,-128],[-87,-20],[-136,-133],[-159,-119],[-122,-22],[-32,-91]],[[32086,28027],[-370,426],[-355,346],[-323,141],[-464,27],[-85,-42],[-149,-25],[-241,214],[-153,-277],[-90,48],[-109,5],[-251,-60]],[[29496,28830],[-15,32],[-38,364],[84,158],[92,242],[45,185],[1,106],[59,182],[144,-11],[38,58],[5,42],[58,41],[195,73],[151,116],[69,92]],[[9454,34687],[0,-589],[-1477,0],[0,-1092],[-216,-121],[-46,-8],[-188,-120],[-43,-64],[-17,-48],[31,-108],[35,-533],[-1753,0],[-50,-198],[9,-53]],[[7459,34846],[1995,-2]],[[32335,27367],[-117,-162],[6,-47],[73,-145],[117,-142],[72,-127],[55,-62],[200,-159],[113,-73],[1280,-428],[420,-6],[-1216,-1261],[-214,-111],[-325,15],[-257,-75],[-173,-100],[-33,-75],[-60,-60],[-136,-30],[-195,-11],[-45,-38],[-33,-50]],[[31867,24220],[-40,-15],[-211,-1],[-171,87],[-55,50],[-37,11],[-242,-104],[-150,-78],[-52,-99],[-84,-102],[-239,45],[-372,45],[-58,23],[-420,293],[-140,54],[-297,3],[-29,1],[-7,5],[-40,35],[1,33]],[[29224,24506],[-55,67],[-3,130],[20,103],[-170,53],[-80,2],[-125,209],[-22,182],[20,56],[-3,29],[-52,55],[-116,62],[-134,101],[-168,240],[-69,50],[-69,44],[-248,38],[-32,39],[4,33],[82,205],[37,19],[150,7],[39,-42],[27,-3],[166,104],[-12,406]],[[28411,26695],[49,214],[30,239],[16,47],[64,91],[52,35],[47,-28],[45,-51],[39,30],[36,63],[51,327],[36,88],[233,359],[143,33],[40,-5],[150,465],[54,228]],[[17577,22909],[144,-37],[596,9],[0,527]],[[13234,27430],[36,-23],[37,-50],[-53,-117],[10,-28],[165,-127],[29,-46],[2,-346],[52,-5],[33,-37],[-29,-201],[-30,-69],[61,-121],[62,-68],[9,-38],[-59,-125],[-23,-183],[30,-88],[-31,-262],[78,-145],[212,-176]],[[9540,25824],[-35,28],[-74,-17],[-53,-133],[-94,-32],[-165,94],[25,136],[-63,260],[-54,59],[-43,34],[-33,5],[-212,-18]],[[8739,26240],[-75,-41],[-41,-37],[-62,2],[29,100],[41,35],[8,54],[-94,281],[-217,286],[-305,0],[-241,-54],[-21,-14],[-85,-184],[-36,-42],[-91,-77],[-149,-60]],[[6680,27392],[59,120],[86,81],[124,48],[242,34],[-30,183],[48,71],[24,121],[-14,70]],[[7219,28120],[258,-17],[140,-73],[190,-59],[110,22],[305,20],[31,-10]],[[8253,28003],[-53,-102],[68,-62],[43,-21],[339,54],[77,44],[162,-53],[116,0],[114,73],[25,70],[-16,21],[15,9],[92,0],[69,-39],[21,-20],[58,-144],[7,-91],[147,-261],[-10,-108],[83,-108],[93,-161],[55,-34],[14,-44],[-14,-29]],[[5955,28535],[372,0],[194,81],[109,15],[80,-15],[230,-148],[175,52],[30,-15],[33,-59],[-37,-38],[-137,-41],[-62,4],[-320,142],[-173,-80],[-284,-92],[-261,-1],[-31,-46]],[[5889,27967],[183,35],[168,14],[477,105],[502,-1]],[[29638,32309],[-1238,-4]],[[31867,24220],[-233,-338],[-173,-183],[0,-1616],[218,-321],[34,-76]],[[30668,20333],[-630,450],[-77,78],[-10,28],[56,58],[-18,112],[-1529,879],[-66,34],[-24,12],[-40,2]],[[28330,21986],[0,205],[23,256],[7,86],[43,107],[171,212],[207,289],[20,38],[4,43],[0,90],[-54,274],[-42,75],[-60,62],[-87,160],[-21,59],[9,56],[-44,106],[-109,138],[-38,88]],[[28359,24330],[170,176]],[[28529,24506],[250,0],[251,0]],[[29030,24506],[194,0]],[[8198,25539],[33,8],[70,131],[206,161],[223,274],[9,127]],[[17527,36003],[138,46],[64,57],[118,153],[12,48],[-7,68],[-65,184],[68,92],[184,131],[243,139],[117,140],[-13,29],[1,97],[32,126]],[[24373,32304],[-4,-899],[-439,0],[0,-223]],[[23930,31182],[-1781,921],[-1764,846],[-444,-198]],[[19941,32751],[-355,-157],[-229,191],[-89,51],[-657,147]],[[25802,8780],[-53,-109],[-162,33],[-165,170],[-153,249],[-2,21],[126,45],[233,272],[178,96],[175,53],[53,-48],[252,-176],[56,-93],[3,-41],[-59,-75],[-67,-168],[-150,-79],[-203,-32],[-45,-39],[-17,-79]],[[8253,28003],[-3,259],[-66,121],[-97,51],[-20,-28],[-15,3],[-103,171],[53,103],[-36,156],[-96,219]],[[7870,29058],[87,-14],[105,70],[5,40],[-22,51],[60,196],[84,30],[72,-22],[97,-89],[155,-19],[50,57],[203,21],[127,-11],[417,20],[1527,-1],[24,23],[69,347],[-124,79],[-430,3814],[776,0]],[[15175,31021],[-2,-877],[-71,-295],[-1,-94],[-76,-242],[-172,-197],[-326,7],[-646,-41],[-128,-105],[-49,-27],[-93,-8],[-84,17],[-126,-1],[-3,-33]],[[28400,32305],[0,0],[-31,-88],[-22,-17],[-179,-20],[-169,124]],[[27871,10384],[-336,7]],[[27535,10391],[-22,373],[-49,25]],[[27464,10789],[26,369],[-12,271],[-22,120],[-31,100],[-125,228],[-23,117],[4,37],[-114,344]],[[27167,12375],[32,17],[483,478],[-18,33],[29,211],[41,97],[54,26],[142,227],[15,93],[-93,77],[-16,61],[-17,202],[30,111],[92,176],[-25,102],[19,232],[-20,200],[-32,223],[-238,106],[-213,30],[-105,92],[-146,65],[-99,22],[-290,-1],[-17,20],[0,149]],[[26775,15424],[-25,35],[-57,247],[326,110],[195,51],[330,126],[482,159]],[[28026,16152],[92,-159],[76,-84],[40,-11],[25,17],[261,63],[67,-74],[36,-179],[4,-147],[-122,-209],[-20,-83],[92,-162],[258,-240],[-4,-101],[22,-35],[88,3],[-1,139],[-10,47],[-28,25],[4,71],[28,109],[61,61],[50,-15],[73,22],[47,29],[14,439],[32,72],[-41,125],[-203,261],[-109,133],[-122,114],[-133,123],[-57,502],[106,231],[134,2]],[[28786,17241],[2,0],[140,0],[209,45],[193,-57],[0,-34],[42,-19],[120,-6],[105,50],[283,-20],[143,52],[35,104],[36,21],[94,3],[214,-23],[363,116],[243,108],[185,136]],[[7870,29058],[-60,32],[-138,117],[-179,197],[-84,120],[-41,108],[-83,41],[-136,1],[-130,156],[-111,69],[-304,-4],[-237,-64],[-132,7],[-169,-32],[-59,-145],[-28,-24]],[[28026,16152],[-121,27],[-71,65],[-38,96],[54,28],[58,122],[11,109],[-9,53],[48,130],[122,15],[81,85],[-4,13],[-28,8],[-79,136],[-18,269],[33,161],[42,111],[117,110],[-155,332],[-50,82],[-51,-3],[-49,43],[-19,72]],[[27900,18216],[259,-92],[173,1],[8,0],[7,32],[0,0],[0,1],[29,14],[3,2],[3,-3],[127,-122],[88,-128],[4,-4],[11,-70],[31,-186],[0,-49],[0,-130],[1,-32],[77,-82],[35,-36],[9,-28],[21,-63]],[[23681,14520],[329,67],[10,2],[111,2],[183,-22],[70,-28],[105,-90]],[[24489,14451],[0,-1]],[[22157,11323],[0,-1644],[-72,-27],[-91,-12],[-136,-100],[-21,-61],[-122,-15],[-190,22],[-239,-1],[-262,66],[-56,218],[-95,81],[-77,-11],[-20,-16],[-119,-183],[-72,-53]],[[28529,24506],[404,176],[64,-41],[-2,-57],[35,-78]],[[19941,32751],[118,-696],[138,-234],[-13,-20],[19,-47],[174,-186],[-104,-199],[-68,-530],[-39,-825],[-430,-455],[-136,-161],[-147,-202],[-47,-122],[-100,-134],[-39,-19],[69,-337]],[[19336,28584],[-111,1],[-217,-98],[-150,-126],[-37,-67],[-137,18],[-123,64],[-161,48],[-140,10],[-238,-8],[-204,-40],[-65,-29],[-182,-180],[-340,27],[-106,40],[-165,106],[-222,57],[-153,-92],[-157,-48],[-61,-7],[-53,61],[-60,104],[-80,90],[-37,37],[-66,35],[-214,39],[-196,3],[-212,-13],[-107,-20],[-70,-26],[-128,-92],[-35,-223],[-71,-103],[-117,-95],[-15,-183],[3,-136],[-25,-51]],[[19336,28584],[199,-281]],[[26407,21810],[77,17],[52,-20],[18,-38],[110,61],[75,111],[60,18]],[[26799,21959],[-10,-14],[7,-23],[41,-71],[80,-71],[41,-100],[19,-199],[-10,-76],[-38,-45],[-100,-10]],[[23431,27337],[38,104],[5,64],[-13,54],[-39,-4],[-132,129],[-58,369],[-102,83],[-22,-18],[-89,-21],[-55,89],[47,100],[97,64],[42,52],[14,46],[-87,165],[172,137],[39,253],[60,63],[140,206],[-23,149],[77,65],[166,9],[222,-13],[0,1700]],[[28411,26695],[-90,0],[-10,21],[14,92],[21,31],[12,49],[-9,95],[-180,189],[-86,57],[-49,59],[-45,292],[-1,98],[55,224],[-7,12],[-140,6],[-86,2],[-18,-129],[-270,-1],[101,-89],[26,-82],[26,-237],[-235,-227],[-74,-117],[-195,-223],[-194,-15],[-69,31],[-83,67],[-238,149],[-24,0],[-179,-93],[0,-66],[-133,-83],[-72,-2],[-33,-35],[-482,-25],[0,0],[-344,6],[-189,-60],[-89,18],[-60,20],[-27,28],[-175,345],[-30,15],[-254,-44],[-109,-78],[-73,-128],[-85,-201],[-82,-271],[-118,-85]],[[28359,24330],[-176,-176],[-293,0],[-182,-38],[-143,-72],[-238,58],[-215,33],[-89,-43],[-52,-95]],[[27535,10391],[-13,11],[-41,-1],[-15,-224],[-215,1],[-152,51],[-63,65],[-51,113],[-41,-9],[-4,115],[17,70],[128,206],[82,89],[55,12],[195,-122],[47,21]],[[26799,21959],[314,26],[267,0],[950,1]],[[27900,18216],[-534,220],[-78,75],[-168,55],[-11,4],[-55,3],[-113,147]],[[26312,12475],[129,28],[143,-42],[253,-45],[112,14],[156,-15],[62,-40]],[[26775,15424],[-32,-14],[-211,19],[-126,-18],[-166,-53],[-131,-81],[-28,-56],[-8,-92],[-110,-138],[-133,-56],[-210,-122],[-83,-129],[-266,-308],[-115,-28],[-404,40],[-263,63]],[[27241,23503],[-34,-47],[-5,-9],[1,-27],[6,-137],[-6,-17],[-8,-9],[-11,-1],[-9,-14],[-8,-27],[-16,-25],[-46,-37],[-16,-8],[-40,-10],[-11,-8],[-20,-9],[-34,-35],[-48,-63],[-25,-38],[-4,-15],[-55,-67],[-11,-6],[-13,-3],[-15,9],[-2,4],[1,32],[-5,23],[0,14],[4,4],[-3,8],[-8,4],[-1,3],[-3,5],[-8,1],[-16,-2],[-6,1],[-6,18],[24,38],[17,38],[22,30],[27,21],[37,43],[18,12],[68,70],[30,25],[21,8],[87,63],[36,36],[7,12],[12,21],[18,29],[39,43],[19,6],[-1,-7]],[[19827,28301],[1,-7],[-12,-7],[-10,-11],[-4,-14],[-11,-4],[-18,4],[-12,-1],[-23,-3],[-11,-2],[-18,-12],[-30,-24],[-27,-10],[-23,4],[-9,8],[-7,37],[0,9],[10,4],[3,7],[8,16],[2,7],[0,1],[1,2],[8,13],[0,8],[5,12],[12,11],[20,10],[36,14],[26,0],[16,-12],[28,-2],[6,-6],[17,-26],[16,-26]],[[28920,16027],[10,-39],[-4,-12],[-7,-5],[-10,1],[-19,22],[-28,28],[-36,50],[-16,9],[-24,4],[-5,6],[-2,29],[-6,13],[-10,9],[-11,4],[-11,-1],[-4,-9],[4,-17],[-3,-18],[-11,-16],[-4,-13],[4,-8],[-3,-9],[-22,-17],[-17,-6],[-11,2],[-2,12],[-10,10],[-18,8],[-17,17],[-14,23],[-9,26],[-4,29],[3,21],[11,13],[11,28],[12,43],[-8,36],[-25,31],[-22,15],[-18,-2],[-21,19],[-40,67],[-3,15],[2,17],[9,19],[3,48],[-7,96],[-4,11],[-9,29],[-11,14],[-4,15],[3,16],[-4,12],[-12,7],[-10,13],[-8,19],[0,72],[-7,25],[-13,15],[-19,4],[-15,14],[-16,46],[-2,18],[11,72],[19,33],[28,23],[13,20],[-1,18],[14,23],[42,49],[2,12],[-15,102],[-12,51],[-14,38],[-3,27],[8,16],[2,14],[-5,12],[-14,206],[-6,11],[3,10],[10,10],[5,13],[-1,14],[5,10],[9,7],[-5,21],[-20,36],[-21,29],[-43,44],[-19,26],[-14,34],[-19,67],[-10,14],[-5,18],[-1,23],[5,17],[17,25],[2,14],[-2,15],[-2,12],[5,15],[15,17],[10,-5],[30,-13],[1,-1],[103,-87],[4,-11],[65,-87],[22,-36],[0,-6],[0,-13],[19,-73],[1,-3],[1,-6],[3,-29],[-4,-27],[1,-21],[8,-31],[-3,-13],[21,-42],[2,-3],[12,-38],[2,-37],[-7,-36],[-7,-18],[-13,-35],[-4,-21],[5,-19],[13,-21],[22,-23],[17,-27],[12,-32],[9,-15],[12,1],[22,-5],[18,-19],[7,-10],[13,-21],[9,-47],[1,-2],[0,-2],[-1,-71],[-10,-61],[-19,-51],[-15,-28],[-11,-5],[-19,-16],[-28,-28],[-11,-20],[4,-11],[2,-24],[-2,-38],[-3,-18],[-4,-8],[43,-99],[7,-56],[-15,-46],[-2,-42],[14,-36],[4,-44],[-4,-52],[5,-34],[15,-15],[7,-42],[0,-18],[-1,-52],[4,-38],[9,-7],[63,-6],[11,-6],[18,-37],[37,-107],[-1,-11],[37,-85]],[[28637,17019],[9,24],[-8,13],[-15,6],[-16,-5],[-6,-16],[17,-21],[19,-1]],[[28655,17004],[9,-8],[16,3],[12,10],[4,14],[0,12],[-7,8],[-11,5],[-15,-3],[-6,-17],[-2,-24]],[[28679,22392],[43,-83],[-7,-9],[-42,-13],[-56,-2],[-44,-11],[-9,-7],[8,-42],[-9,-14],[-14,-3],[-21,19],[-21,0],[-24,6],[-26,2],[-18,-13],[-43,-49],[-8,-29],[3,-36],[17,-33],[25,-36],[-8,-28],[-10,-15],[-23,-11],[-2,-11],[-1,-5],[-58,-69],[-13,-26],[2,-14],[20,-20],[-4,-8],[-44,-1],[-7,-10],[0,-12],[-6,-7],[3,-8],[42,-32],[2,-8],[-14,0],[-44,13],[-26,2],[-20,-4],[-8,-8],[-10,-29],[10,-15],[3,-15],[-32,-24],[-4,-31],[-21,-17],[-25,-11],[-39,5],[-16,-8],[-15,-16],[-15,-25],[68,3],[12,-6],[6,-11],[13,-12],[1,-8],[-49,0],[-17,-16],[-33,4],[-30,-21],[-3,-11],[22,-13],[107,-17],[30,-3],[75,26],[18,-6],[7,-15],[0,-16],[-19,-20],[-77,-54],[-37,-32],[-34,-14],[4,-19],[-2,-9],[-10,-4],[-91,19],[-63,36],[-30,3],[-24,-8],[-17,-13],[-7,-16],[-3,-80],[28,-69],[7,-14],[-32,-6],[-49,-49],[-9,-6],[6,33],[-4,20],[37,31],[6,18],[-21,49],[4,47],[-6,13],[-26,0],[-22,6],[-7,4],[-7,16],[-12,8],[-42,-31],[-6,6],[0,14],[-6,4],[-36,4],[-22,10],[-15,13],[-16,40],[-17,10],[-19,0],[-13,-12],[-16,-26],[-26,-4],[-8,-8],[19,-41],[5,-18],[-9,-5],[-44,9],[-20,-14],[-8,-27],[5,-31],[10,-36],[-14,2],[-24,35],[-8,-3],[-6,-9],[-16,-2],[-13,-41],[-8,3],[-8,18],[-1,26],[15,32],[-20,11],[-12,14],[-3,16],[22,29],[-2,11],[-6,19],[-13,19],[-16,13],[-12,22],[0,89],[-5,28],[0,38],[44,198],[21,33],[7,26],[17,120],[-2,22],[-5,12],[-9,2],[-11,-4],[-9,5],[-1,5],[-6,28],[-5,22],[-11,22],[-4,22],[42,99],[22,39],[56,72],[3,30],[-11,19],[-16,14],[-3,10],[8,12],[36,18],[10,16],[47,7],[22,22],[21,-6],[13,11],[29,-2],[14,23],[13,10],[11,2],[5,-17],[16,-1],[21,7],[14,13],[10,43],[13,18],[14,8],[15,-28],[13,-5],[-15,-19],[-3,-8],[9,-5],[20,1],[19,4],[33,23],[11,0],[8,-26],[8,-7],[19,5],[29,18],[21,21],[3,20],[27,6],[28,61],[-6,18],[26,10],[12,6],[17,-5],[23,9],[2,-9],[-16,-38],[10,-8],[48,-7],[10,-9],[0,-9],[-19,-11],[2,-11],[16,-12],[22,-5],[21,7],[27,35],[18,7],[14,-4],[7,-35],[7,-10],[52,-10],[37,15],[13,-2],[0,-56],[3,-24],[0,-5],[10,-22],[11,-17],[13,-8],[25,0],[5,-5],[-8,-19],[4,-13],[48,-43],[26,-41],[12,-3],[10,9],[9,10],[7,32],[22,21],[53,24],[79,23]],[[27499,21388],[3,29],[-7,10],[-31,-10],[-33,-9],[-11,9],[-16,22],[-10,11],[-12,-19],[-3,-39],[26,-27],[3,-33],[23,5],[7,32],[22,3],[32,6],[7,10]],[[27607,22257],[9,25],[-22,21],[-33,-19],[-7,10],[2,33],[-16,2],[-27,0],[-9,-10],[7,-16],[10,-15],[12,-6],[34,-12],[-1,-15],[-17,-20],[-10,-21],[-5,-17],[61,24],[12,36]],[[27996,21464],[3,20],[-19,21],[-9,26],[-10,20],[-31,-3],[-24,0],[-11,32],[-28,-1],[-24,-15],[7,-19],[2,-36],[21,-11],[40,-9],[31,-14],[29,-10],[23,-1]],[[28083,22530],[7,25],[-31,12],[-42,-10],[-1,-19],[-1,-20],[-17,-6],[2,-12],[35,-3],[4,-10],[29,-18],[-6,28],[-3,19],[24,14]],[[29817,27725],[-14,11],[-19,1],[-18,-2],[-11,7],[-14,10],[-8,-7],[-8,-5],[-9,2],[-7,8],[-8,13],[-9,12],[1,29],[1,26],[4,26],[5,35],[9,20],[10,15],[11,10],[14,2],[17,-5],[13,-13],[11,0],[22,-2],[28,21],[20,7],[16,1],[21,6],[16,-8],[14,-12],[12,-16],[4,-26],[12,-22],[-3,-15],[-1,-15],[-3,-14],[-7,-15],[-5,-19],[-16,-14],[-5,-16],[-3,-18],[-24,-37],[-24,-54],[-11,1],[-9,-1],[-6,2],[-3,5],[-9,9],[9,18],[-5,15],[-9,13],[-2,11]],[[28948,15874],[-14,-29],[-10,-22],[-9,-3],[-23,26],[0,46],[5,21],[14,10],[12,-3],[13,-21],[12,-25]],[[29551,23572],[-23,-51],[-27,-9],[-16,19],[-50,129],[-41,62],[-39,42],[-19,3],[-20,29],[-18,58],[-34,44],[-32,46],[-12,51],[-10,17],[-19,35],[-11,80],[4,45],[14,73],[14,104],[3,51],[10,71],[1,5],[19,5],[22,-12],[13,8],[11,30],[15,14],[10,0],[9,-10],[9,-79],[1,-11],[8,-127],[-1,-42],[6,-78],[-2,-183],[39,-119],[52,-88],[49,-39],[50,-30],[20,-59],[-5,-84]],[[26202,18547],[-9,-35],[-38,-82],[-58,-76],[-54,-81],[-32,-56],[-46,-4],[-15,0],[-17,1],[-7,-17],[2,-19],[-15,-10],[-43,2],[-20,23],[-4,39],[1,57],[18,61],[123,149],[99,115],[19,-2],[19,-2],[55,-36],[22,-27]],[[15371,27084],[-3,-10],[-36,-66],[1,-38],[7,-49],[19,-53],[-15,-9],[-14,1],[-12,16],[-13,56],[-19,17],[-9,2],[-3,13],[12,12],[7,10],[-2,12],[-16,5],[-3,4],[10,15],[-9,35],[-29,31],[0,13],[17,6],[6,9],[4,10],[4,75],[10,8],[33,-19],[18,6],[22,-4],[10,-10],[-13,-30],[8,-48],[8,-20]],[[26586,17457],[-25,-56],[-9,-38],[-35,-36],[-38,-16],[-37,1],[-36,9],[-12,43],[-5,22],[-17,8],[-7,16],[11,10],[20,7],[78,102],[14,-1],[33,21],[35,3],[32,-26],[9,-35],[-11,-34]],[[26233,21696],[13,-24],[10,-18],[18,-56],[30,-69],[-9,-19],[-24,-17],[-12,-16],[-7,-14],[-40,-52],[-17,-11],[-16,-19],[-12,-5],[-24,-2],[-37,-33],[-16,-4],[-11,-2],[3,34],[27,38],[-6,21],[-13,6],[-1,18],[3,15],[16,32],[-3,33],[35,77],[20,85],[17,19],[56,-17]],[[26331,22150],[-23,-4],[-14,28],[-4,21],[15,35],[26,51],[34,71],[45,21],[21,6],[27,0],[35,-1],[46,-22],[-9,-59],[-86,-79],[-14,-13],[-58,-46],[-26,2],[-15,-11]],[[27703,18826],[7,-13],[-4,-10],[-70,26],[-85,31],[-53,-3],[-41,-7],[-17,12],[-21,34],[-22,45],[-13,37],[2,21],[15,16],[28,15],[58,-22],[101,-86],[86,-73],[29,-23]],[[29134,20802],[8,37],[13,33],[14,21],[11,7],[10,-3],[5,-13],[-6,-55],[-13,-57],[-14,-16],[-14,-9],[-10,4],[-5,19],[1,32]],[[30158,25384],[21,-1],[16,1],[2,-8],[-6,-18],[-6,-21],[-4,-11],[-8,-11],[-13,-19],[-20,-33],[-31,-47],[-31,-42],[-14,-16],[-18,-11],[-28,-16],[-17,1],[-2,13],[6,20],[16,21],[20,16],[16,8],[17,14],[10,19],[-5,44],[-6,42],[3,16],[29,26],[36,18],[17,-5]],[[21287,22004],[-10,11],[-14,18],[-18,18],[-11,16],[0,20],[-7,16],[-26,10],[-11,8],[-3,10],[10,2],[30,2],[37,6],[27,-3],[19,-10],[11,-13],[3,-10],[-4,-23],[-1,-8],[4,-27],[4,-32],[1,-22],[-12,-4],[-11,9],[-9,6],[-9,0]],[[32104,27672],[-2,-17],[-11,-4],[-8,7],[-1,12],[1,9],[6,9],[11,-7],[4,-9]],[[26140,14980],[-9,-6],[-11,-15],[-5,-14],[-13,3],[-16,3],[-5,-22],[-11,-20],[-18,-9],[-12,-8],[-17,4],[-12,11],[1,12],[-4,17],[-15,4],[-19,-7],[-12,-5],[-14,-5],[-20,-9],[-15,-15],[-7,-19],[1,-14],[-3,1],[-16,12],[-16,19],[-18,3],[-45,-13],[-40,-10],[-15,-10],[-7,-16],[-7,-22],[2,-14],[6,-7],[-3,-11],[-9,-13],[-13,-8],[-21,6],[-18,5],[-7,-5],[-13,-13],[-19,-17],[-13,-13],[-12,-4],[-28,-9],[-20,-14],[-10,-10],[-7,-11],[-6,-18],[-19,-39],[-15,-32],[-5,-1],[-7,-9],[-21,-15],[-21,-11],[-7,-9],[5,-3],[5,0],[-4,-4],[-20,-6],[-24,-9],[-8,-7],[-22,-25],[-26,-36],[-14,-22],[-14,-19],[-21,-30],[-18,-20],[-11,-3],[-14,2],[0,0],[-1,14],[10,10],[11,14],[13,11],[1,19],[4,16],[29,37],[37,35],[17,13],[11,8],[9,6],[7,10],[8,11],[0,11],[-12,8],[12,32],[26,40],[18,24],[35,42],[26,36],[14,2],[13,-3],[8,4],[-1,11],[8,20],[6,17],[-5,9],[5,5],[16,2],[21,3],[14,7],[-7,15],[-12,14],[2,8],[14,4],[14,8],[9,9],[10,1],[8,-5],[11,-7],[14,-10],[15,-2],[15,3],[14,12],[14,16],[14,8],[14,13],[5,13],[-2,10],[14,4],[17,8],[17,13],[6,15],[-3,11],[11,-3],[16,-5],[10,-6],[9,-5],[21,12],[25,8],[14,-2],[10,4],[3,6],[9,8],[20,4],[14,-3],[11,-3],[35,-10],[42,-18],[20,1],[19,-3],[11,-10],[9,-6]],[[28134,23170],[-20,-1],[-48,-8],[-47,-17],[-29,-19],[-16,-18],[6,-9],[29,-2],[24,-3],[-4,-8],[-19,-11],[-5,-13],[21,-6],[17,7],[9,8],[7,0],[2,-10],[2,-19],[-10,-22],[-15,-24],[-5,-13],[-13,14],[-28,15],[-19,11],[-46,31],[-54,22],[-13,0],[-2,-6],[2,-6],[10,-11],[1,-31],[-15,10],[-16,25],[-17,6],[-9,-3],[-6,-17],[-4,-8],[-36,16],[-36,16],[-11,12],[-8,27],[3,11],[30,-4],[55,14],[29,16],[1,-4],[-3,-7],[6,-3],[23,3],[34,3],[19,-4],[8,-3],[10,6],[20,18],[15,15],[5,-4],[7,-4],[15,10],[19,10],[14,4],[14,-2],[19,-4],[20,9],[26,25],[14,-2],[5,-19],[6,-6],[5,-8],[2,-5]],[[13415,25428],[12,19],[8,9],[-4,-18],[-14,-22],[-21,-15],[-17,-3],[-9,3],[-5,1],[-3,-3],[0,-6],[-1,-12],[-2,-15],[-2,-14],[-4,-25],[3,-38],[-16,-12],[-10,6],[-3,23],[-14,1],[-24,-12],[-9,13],[-12,20],[-18,17],[-33,19],[-36,24],[-30,16],[-46,21],[-55,22],[-36,16],[-18,22],[-5,14],[11,1],[19,-13],[16,-10],[13,12],[15,-8],[12,-26],[11,-6],[10,2],[11,2],[4,15],[1,23],[6,6],[11,-25],[15,-26],[13,1],[15,2],[19,5],[15,4],[9,-8],[5,-17],[9,-17],[21,-9],[17,1],[7,21],[7,19],[4,6],[-3,7],[-12,9],[-7,9],[-2,9],[2,7],[11,10],[13,3],[11,-4],[8,2],[20,9],[16,12],[-4,6],[-20,2],[-7,15],[20,12],[15,-1],[1,5],[-11,9],[-5,9],[3,6],[3,7],[-1,13],[-6,18],[0,12],[-8,1],[-10,6],[-7,6],[-8,4],[-1,11],[3,0],[9,-5],[12,-2],[9,0],[7,-1],[9,5],[10,8],[5,9],[3,5],[6,0],[5,6],[0,9],[-5,8],[-8,2],[-9,2],[-14,13],[-16,23],[-7,18],[0,7],[-2,5],[0,8],[-22,10],[-27,3],[2,-18],[-3,-10],[-18,6],[-9,6],[-4,11],[-9,6],[-22,1],[-16,2],[4,7],[11,7],[18,1],[15,2],[13,-1],[15,-1],[19,-1],[18,-2],[-14,22],[-20,22],[-20,2],[-32,1],[-27,-4],[-41,-9],[-43,-11],[-19,-2],[-10,3],[-15,-9],[-32,-10],[-22,-1],[18,7],[31,15],[26,11],[28,11],[28,7],[28,1],[14,8],[3,9],[1,7],[19,-3],[22,3],[16,9],[12,3],[-1,4],[-15,5],[-10,5],[-1,7],[3,9],[0,12],[-8,22],[-7,17],[-3,12],[-14,10],[-27,17],[-13,11],[-13,-1],[-3,-16],[-15,-10],[-14,-3],[10,12],[6,22],[-16,14],[-13,5],[-23,-15],[-13,2],[0,30],[-7,11],[-8,-9],[-14,-15],[-14,-7],[-9,1],[0,9],[-22,1],[-28,-3],[-2,7],[6,8],[12,0],[29,3],[23,7],[1,7],[-9,8],[-24,21],[-22,19],[-13,7],[-18,9],[-3,8],[8,14],[-24,37],[-33,48],[-23,22],[-15,12],[-19,7],[-20,-3],[-19,-3],[-5,-17],[-6,-19],[-12,23],[-17,25],[-15,4],[-22,13],[-21,12],[-24,7],[-17,-4],[-20,-15],[-25,-15],[-27,-9],[-26,-7],[-23,1],[23,19],[32,10],[32,16],[24,14],[24,9],[15,10],[10,-5],[27,-19],[11,-11],[63,-10],[29,8],[-3,13],[-12,15],[-17,13],[-5,27],[-13,32],[-2,16],[0,21],[2,21],[10,19],[9,-18],[2,-21],[1,-22],[2,-23],[6,-14],[14,-20],[13,-4],[9,0],[13,-31],[29,-55],[25,-30],[14,-3],[11,9],[0,23],[-3,25],[7,17],[8,8],[4,-3],[-6,-15],[-5,-15],[16,-15],[21,-7],[8,2],[-1,-8],[-22,-22],[-21,-25],[3,-11],[7,-12],[27,-30],[27,-21],[15,-12],[14,-18],[13,-6],[5,-11],[12,-8],[19,-11],[16,0],[24,6],[17,9],[16,1],[15,4],[18,-4],[19,-14],[4,-12],[-28,-1],[-29,-3],[-4,-9],[10,-7],[20,-15],[32,-25],[28,-19],[11,-16],[9,-44],[13,-29],[13,-9],[11,0],[8,-2],[16,2],[6,13],[-5,19],[-1,10],[2,15],[6,23],[2,15],[-7,17],[3,18],[13,5],[14,-3],[10,-4],[8,4],[-2,13],[-6,21],[-13,21],[-8,15],[14,5],[14,16],[13,22],[9,11],[-25,8],[-31,10],[-5,12],[5,14],[-1,18],[-2,21],[9,16],[13,6],[7,16],[4,31],[11,18],[6,-2],[-6,-21],[-7,-29],[-7,-15],[-11,-8],[-3,-25],[-4,-28],[-4,-10],[5,-8],[28,-8],[29,-9],[8,-10],[8,-7],[6,-3],[-4,-3],[-18,-2],[-13,-4],[2,-8],[-12,-20],[-3,-20],[7,-18],[14,-18],[16,-9],[0,-5],[-12,-3],[-19,-4],[-16,-9],[-7,-17],[-11,-22],[-6,-15],[7,-12],[10,-8],[10,-14],[23,9],[16,10],[-2,-14],[0,-5],[-2,-6],[-5,-7],[5,-14],[13,-18],[1,-29],[1,-37],[0,-18],[-10,2],[-8,-1],[-5,-10],[0,-9],[6,-11],[3,-9],[16,11],[15,12],[-3,-17],[-5,-15],[-2,-8],[-1,-17],[-3,-15],[-5,-13],[0,-6],[0,-4],[7,-12],[1,-12],[-8,-9],[-2,-10],[3,-8],[1,-7],[-1,-9],[-1,-4],[-2,-16],[7,-14],[8,-3],[-3,-12],[-8,-11],[-4,-21],[-4,-24],[-10,-23],[-2,-57],[8,-43],[8,1]],[[13352,25430],[22,21],[-9,18],[-20,13],[-23,5],[-20,-13],[-3,-27],[17,-10],[18,-17],[18,10]],[[26946,18584],[-3,6],[-39,14],[-13,9],[-5,5],[-7,-2],[-15,-16],[-29,-16],[-10,0],[12,10],[4,9],[-1,10],[-11,5],[-21,-2],[-14,4],[-7,22],[6,30],[8,12],[13,11],[18,8],[3,8],[8,15],[3,37],[-6,29],[-15,23],[-15,14],[-14,5],[-11,11],[-21,31],[-12,11],[-33,14],[-7,11],[-6,36],[-19,44],[-8,37],[4,13],[-2,38],[-27,78],[-26,38],[-34,31],[-37,23],[-41,14],[-37,30],[-61,78],[-35,31],[-11,15],[-14,39],[2,43],[-3,10],[-10,-1],[-8,4],[-6,8],[-50,134],[-9,7],[-9,20],[-9,10],[-15,9],[-10,23],[-4,36],[3,19],[11,10],[51,42],[4,15],[1,9],[-4,38],[4,12],[13,2],[0,6],[-64,110],[-31,61],[-18,50],[-6,31],[4,13],[1,140],[5,57],[10,26],[10,11],[14,-3],[0,33],[23,151],[-4,16],[-8,-3],[-4,-21],[-32,-97],[-6,-4],[-31,12],[-2,14],[14,18],[5,18],[-5,17],[-1,34],[7,88],[6,20],[0,16],[-6,13],[3,17],[13,20],[4,39],[-4,57],[2,37],[6,17],[8,11],[9,3],[7,-1],[39,-6],[15,-16],[-1,-32],[2,-90],[5,-59],[8,-28],[31,-54],[-1,-11],[40,-91],[25,-43],[22,-30],[11,-24],[-2,-14],[-3,-17],[-15,-135],[3,-41],[-7,-7],[4,-5],[13,-2],[21,-12],[28,-20],[19,-26],[10,-30],[1,-20],[-6,-7],[-1,-40],[-5,-2],[-7,-41],[-9,-23],[3,-28],[24,-27],[23,-46],[26,-63],[12,-41],[-1,-17],[-14,-17],[-27,-19],[-17,-7],[-9,3],[-10,-5],[-12,-14],[-9,-29],[-5,-45],[3,-21],[11,-20],[32,-37],[55,-49],[2,-8],[7,-1],[26,14],[31,5],[19,-4],[13,-7],[7,-13],[52,-47],[26,-34],[18,-39],[25,-35],[33,-30],[15,-31],[-1,-33],[-8,-17],[-10,-2],[-3,-3],[4,-23],[24,-50],[10,-44],[-4,-40],[6,-35],[19,-30],[35,-41],[44,-94],[36,-57],[3,-17],[6,-10],[14,-10],[2,-9],[-6,-10],[1,-13],[6,-21],[22,-29],[39,-37],[18,-30],[-2,-22],[6,-23],[14,-23],[2,-5],[5,-17],[-4,-35],[-5,-5],[-6,1],[-7,9],[-7,-2],[-9,-14],[-13,-10],[-17,-6],[-10,2],[-23,18],[-73,75]],[[27579,32606],[-30,3],[-18,3],[-14,-2],[-17,-8],[-16,-14],[-15,-15],[-11,-12],[-4,-17],[-8,-25],[-16,-17],[-19,-12],[-11,-16],[-2,-13],[-16,3],[-20,2],[-14,-5],[-9,-8],[-7,-3],[-6,-2],[-8,-5],[-2,-6],[3,-11],[-10,-14],[-32,-15],[-30,-22],[-10,-13],[-10,-13],[-13,-20],[-9,-32],[-16,-47],[-16,-31],[-11,-12],[-17,-10],[-23,-24],[-21,-27],[-14,-17],[-15,-1],[9,28],[26,35],[29,44],[30,38],[15,35],[16,42],[14,20],[20,28],[64,57],[40,41],[9,11],[16,7],[19,6],[-14,23],[-32,32],[-2,9],[24,-10],[29,-15],[13,-2],[7,8],[11,14],[9,11],[12,10],[23,17],[27,16],[16,8],[12,5],[20,8],[15,3],[10,-4],[15,-4],[30,-21],[20,-14],[34,1],[39,29],[11,16],[7,16],[9,31],[9,13],[14,18],[10,16],[14,33],[14,33],[17,35],[22,19],[14,3],[6,7],[5,11],[5,11],[-2,18],[1,25],[-5,20],[-24,9],[-20,6],[-16,-10],[-20,-10],[-18,2],[-10,9],[23,17],[25,16],[-4,8],[-10,3],[-6,-6],[-7,-6],[-9,9],[13,20],[37,-4],[26,-18],[17,16],[8,26],[-4,14],[2,11],[10,12],[1,14],[-4,17],[-16,20],[-2,16],[25,35],[23,-21],[6,-67],[18,-43],[-3,-18],[-13,-5],[-13,-4],[-5,-11],[1,-12],[5,-7],[8,-2],[4,-4],[17,-11],[7,-10],[-24,0],[-13,-10],[10,-25],[16,-15],[5,-11],[2,-16],[5,-16],[0,-18],[0,-11],[-5,-2],[-17,4],[-16,4],[4,-20],[-8,-20],[-21,-2],[-5,-6],[1,-11],[6,-13],[17,-17],[16,-21],[21,-22],[-8,-9],[-51,19],[-32,28],[-19,-3],[-2,-11],[-7,-16],[-8,-12],[-6,-4],[-14,-7],[-12,-7],[-6,-4],[-3,-13],[-2,-20],[-9,-18],[-31,-26],[-39,-33],[-27,-21],[-16,-11],[-2,-14],[-13,-8],[-19,2],[-3,5],[10,8],[12,12],[-1,9],[-8,5],[-9,8],[-8,8],[-2,7]],[[39883,33819],[0,-33819],[-39883,0],[0,44866],[13845,0]],[[29741,27752],[16,17],[21,6],[30,-2],[25,-30],[29,-90]],[[29862,27653],[0,-1]],[[27194,23417],[-5,27],[12,24],[41,42]],[[29214,29134],[-11,-32],[-2,-110]],[[28529,27720],[14,-65],[44,-55],[119,-99]],[[12535,26305],[63,23],[31,15],[29,19],[27,2],[33,-21],[55,-19],[89,-5]],[[12863,26319],[-61,87],[-20,51],[2,66]],[[15344,26859],[-42,168],[3,83],[53,83]],[[11531,29289],[-83,38],[-36,25],[-25,38]],[[27865,33195],[13,-80],[-3,-50],[-14,-47],[3,-50],[11,-30],[5,-37],[-26,-56],[-78,-89],[-41,-60],[-5,-31],[-27,-29],[-43,-31],[-40,-9],[-42,30],[-42,7],[-43,-16],[-35,-31],[-30,-47],[-70,-58],[-85,-65],[-46,-51],[-18,-20],[-17,-51],[-36,-60],[-84,-106]],[[24804,8728],[-31,0],[-28,-16],[-34,-29],[-41,-7],[-73,23]],[[24254,8983],[109,-128]],[[10173,25592],[-6,-58],[8,-39],[20,-38],[2,-69],[-16,-99],[8,-46]],[[26346,22161],[64,212]],[[27194,23417],[-23,-30],[-20,-27],[-49,-65],[-96,-107],[-51,-49],[-148,-143],[-6,-7]],[[28918,15925],[9,-113]],[[27724,35974],[-1,0]],[[27723,35974],[-89,109]],[[24856,10048],[-13,-38],[-11,-4],[-11,17],[-25,16],[-40,14],[-41,-4],[-66,-30]],[[25922,10323],[-22,8],[-143,48]],[[28001,22625],[32,-22],[-12,-38],[-46,-61],[-49,-94],[-54,-128],[-67,-94],[-82,-58],[-118,-51],[-233,-66]],[[27716,23116],[31,-30],[31,-13],[42,-2],[25,-8],[26,-42]],[[27582,23180],[104,-51]],[[12862,26319],[111,-134],[88,-74],[103,-58],[62,-55],[23,-53],[21,-31],[19,-9],[23,-41],[26,-70],[25,-44],[24,-15],[10,-51],[-6,-88],[-10,-57],[-16,-27],[1,-27],[16,-28],[-2,-23],[-26,-24],[-12,-38],[-2,-95]],[[25268,14376],[0,0],[14,14],[35,35],[16,23],[46,69],[44,35],[30,24],[88,112],[14,23],[39,68],[10,9],[43,41],[25,23],[103,57],[44,20],[43,20],[18,8],[14,5],[145,54]],[[27789,15443],[-94,6],[-67,-10],[-71,-26],[-116,-9],[-158,8],[-105,-6],[-52,-19],[-65,0],[-119,28]],[[29770,27384],[-70,70],[-18,43],[15,58],[16,74],[21,34],[31,19],[5,25],[-29,45]],[[29862,27653],[3,-29],[25,-16],[49,-14],[53,-37],[59,-60],[91,-45],[126,-32],[71,-35],[16,-39],[6,-80],[-4,-120],[-11,-86],[-18,-51],[-28,-29],[-38,-5],[-79,-34],[-121,-61],[-79,-13],[-38,37],[-37,25],[-36,12],[-24,2],[-12,-9],[-9,4],[-5,16],[-15,13],[-22,8],[-11,18],[3,27],[-16,19],[-50,16],[-163,26],[-61,20],[-12,22],[-13,7],[-15,-7],[-24,-35],[-34,-64],[-50,-35],[-67,-5],[-44,-15],[-19,-23],[-28,-10],[-36,4],[-19,-7],[-1,-9],[-1,-5],[-7,-1],[-34,9],[-115,56],[-7,6]],[[27482,24054],[-36,-38],[-22,-9],[-21,8],[-23,-1],[-27,-11],[-45,-61],[-61,-111],[-36,-74],[-10,-39],[3,-27],[14,-15],[6,-23],[-3,-31],[10,-28],[23,-26],[6,-24],[-18,-34]],[[29063,29612],[-102,140],[-36,59],[-2,26],[-35,58],[-67,91],[-37,58],[-4,25],[-79,53],[-153,81],[-86,60],[-17,40],[-29,29],[-76,42]],[[29064,29613],[12,-129],[45,-111],[82,-134],[23,-56],[3,-21],[-15,-28]],[[7937,27184],[37,-27],[33,-3],[43,12],[26,31],[10,51],[11,27],[17,8],[30,1],[9,23],[-4,45],[14,49],[31,51],[29,29],[26,5],[36,24],[47,43],[31,39],[16,34],[15,11],[13,-11],[28,0],[43,9],[55,63],[69,115],[50,60],[4,6],[25,11],[17,7],[2,4],[12,19],[-13,28],[11,46],[35,65],[12,43],[-9,22],[3,18],[16,15],[-3,17],[-22,19],[-9,20],[5,22],[-5,11],[-13,2],[-13,27],[-12,53],[-23,33],[-33,13],[-46,6],[-59,0],[-27,19],[3,38],[11,20],[15,5],[1,7],[-8,22],[-35,62],[-15,42],[-3,8],[-9,12]],[[26826,25918],[38,118],[11,82],[-2,84],[12,52],[28,20],[23,36],[20,52],[5,52],[-9,51],[32,68],[109,129]],[[27482,24054],[-12,13],[-123,136],[-55,70],[-19,42],[-12,59],[-4,76],[8,50],[20,22],[28,72],[38,121],[22,96],[8,70],[0,60],[-6,50],[-14,45],[-31,58],[-94,191],[-58,101],[-80,111]],[[27098,25497],[-101,69],[-67,76],[-68,107],[-31,58],[6,11],[-5,17],[-16,22],[-2,28],[12,32],[-12,51],[-37,71],[-26,39],[-16,8],[-3,38],[11,70],[-4,46],[-19,22],[-6,25],[8,29],[-5,22],[-19,17],[-13,34],[-8,52],[15,49],[37,47],[15,40],[-8,33],[16,38],[40,42],[71,19],[101,-5],[68,-11],[55,-28]],[[22039,25815],[-47,10],[-16,18],[0,30],[-30,26],[-60,24],[-25,48],[8,73],[-29,89],[-98,158],[20,26],[-7,9],[-12,17],[-79,54]],[[18578,26691],[-62,3],[-93,-40],[-144,-80],[-93,-76],[-43,-72],[-37,-47],[-31,-23],[-68,-16],[-103,-11],[-82,-42],[-58,-73],[-49,-45],[-57,-25],[-140,-68],[-60,-36],[-26,-28],[-87,-38],[-148,-47],[-164,5],[-269,86],[-181,13],[-117,-23],[-169,-79]],[[22491,22307],[-63,-6],[-48,6],[-54,17],[-37,4],[-19,-9],[-15,12],[-11,33],[-18,11],[-24,-12],[-33,4],[-40,19],[-32,0],[-24,-19],[-43,-1],[-60,17],[-74,-1],[-87,-18],[-51,-20],[-15,-22],[-19,-5],[-32,18]],[[19287,25922],[67,35],[19,30],[-6,38],[14,29],[51,30],[49,46],[16,32],[1,35],[-10,29],[-21,23],[-1,41],[17,58],[-18,48],[-55,38],[-53,61],[-51,86],[-40,31],[-28,-22],[-41,-18],[-54,-12],[-50,11],[-58,42],[-12,8],[-47,18],[-46,-10],[-61,-34],[-55,14],[-50,61],[-66,28],[-120,-7]],[[21664,26397],[-20,-9],[-36,13],[-60,31],[-66,57],[-107,123]],[[21375,26612],[-1,2],[-196,181],[-74,85],[-19,51],[-27,46],[-65,75],[-25,24],[-30,17],[-35,10],[-29,21],[-24,31],[-20,18],[-18,4],[-39,-12],[-60,-26],[-58,-4],[-56,19],[-64,34],[-70,49],[-73,29],[-74,9],[-62,19],[-47,27],[-37,28],[-24,28],[-15,38],[-4,49],[-16,59],[-29,68],[-9,64],[9,60],[-17,55],[-44,50],[-48,35]],[[19975,27855],[-28,-10],[-28,-9],[-47,14],[-67,31],[-23,17],[-25,17],[-29,36],[-46,20],[-63,6],[-33,12],[-10,39]],[[19975,27855],[-36,14],[-17,6],[-33,63],[-15,104],[-38,69],[-61,33],[-35,41],[-13,71]],[[25012,18722],[94,22],[39,13],[15,13],[8,18],[0,25],[20,26],[39,27],[20,23],[0,16],[-19,27],[-40,37],[12,86],[63,135],[18,106],[-29,79],[-10,68],[8,57],[-4,52],[-17,46],[-11,66],[-5,85],[2,74],[13,93]],[[24059,22784],[-50,63],[-77,44],[-120,46],[-121,98],[-123,151],[-96,87],[-103,35],[-79,68],[-71,26],[-90,8],[-99,0],[-110,-9],[-98,-20],[-87,-32],[-160,-21],[-233,-10],[-228,-49],[-337,-130],[-190,-157],[-83,-77],[-40,-49],[-41,-113],[-64,-265],[-6,-17]],[[21353,22461],[-34,-84],[-92,-119],[-66,-71]],[[21161,22187],[-35,-39],[-23,-25],[-35,-38],[-40,-35],[-24,-20],[-53,-45],[-66,-26],[-10,-4],[-58,-33],[-42,-39],[-2,-3],[-12,-18]],[[20761,21862],[-31,-47],[-70,-144],[-36,-64],[-47,-54],[-71,-66],[-26,-31],[-10,-46],[4,-83],[0,-13],[2,-49],[5,-192],[-12,-73]],[[20469,21000],[-15,-93],[-3,-18],[-1,-10],[-70,-136],[-52,-75],[-52,-23],[-13,-4],[-56,-17],[-32,-25],[-20,-38],[-1,0],[-38,-33],[-19,-9],[-37,-19],[-38,-36],[-27,-27],[-6,-6],[-86,-109],[-59,-63],[-32,-16],[-33,-2],[-34,13],[-28,2],[-33,-14],[-1,0],[-81,-13],[-45,-15],[-35,-20],[-22,-28],[-8,-34],[-21,-34],[-33,-33],[-14,-10],[-10,-1],[-15,11],[-11,0],[-7,-11],[-19,-3],[-31,4],[-22,-7],[-13,-19],[3,-25],[20,-30],[-2,-14],[-11,-9],[-6,-20],[5,-35],[-23,-40],[-50,-44],[-40,-17],[-3,-1],[-3,1],[-49,11],[-46,-4]],[[20449,16756],[21,9],[18,-12],[24,-29],[18,-43],[16,-85],[30,-191],[-8,-124],[-35,-119],[-21,-98],[-7,-77],[10,-57],[27,-35],[40,-31],[54,-26],[35,-54],[15,-83],[31,-73],[48,-62],[38,-40],[27,-19],[51,-17],[74,-15],[41,-21],[6,-27],[31,-44],[54,-63],[35,-74],[14,-87],[32,-92],[48,-98],[97,-142],[219,-277],[50,-52],[7,-8],[29,-17],[19,-11],[57,-17],[54,-6],[50,4],[83,-8],[61,-10],[55,-9],[121,-6],[49,3],[76,5],[88,-10],[31,-18],[20,-12],[52,-19],[54,-11],[72,6],[9,3],[82,20],[77,-3],[61,-28],[34,-16]],[[27104,35961],[-38,78],[13,42],[46,40],[18,51],[-11,64],[-1,46],[9,29],[29,39],[49,49],[40,26],[30,3],[41,38],[66,99]],[[27087,26665],[98,-30],[47,-5],[30,9],[27,32],[26,52],[47,43],[68,33],[61,46],[54,60],[34,47],[14,34],[2,44],[-12,55],[-19,30],[-27,5],[-14,11],[-1,18],[60,65],[120,113],[59,87],[-1,62],[13,78],[28,94],[12,77],[-6,90],[-5,51],[-4,36],[6,64],[18,70],[3,73],[-11,77],[1,52],[13,30],[-20,50],[-52,72],[-22,66],[8,60],[-7,36],[-23,11],[-15,18],[-9,27],[-19,28],[-29,27],[-34,66],[-40,104],[-15,90],[11,77],[29,65],[48,54],[31,102],[22,227]],[[28961,26989],[-5,14],[-22,101],[-22,48],[-42,25],[15,180],[-9,74],[-29,28],[-36,17],[-10,4],[-95,21]],[[28529,27720],[-24,119],[-3,65],[10,51],[-17,43],[-46,33],[-18,26],[8,17],[0,29],[-10,41],[-16,34],[-23,26],[-11,4],[-18,14],[-8,25],[-9,83],[-14,51],[-18,19],[-27,12],[-37,4],[-23,20],[-9,39],[-15,28],[-20,19],[-5,21],[11,23],[-2,17],[-11,12],[1,10],[7,7],[2,9],[-9,12],[-2,9],[3,8],[6,4],[4,10],[-6,22],[8,33],[21,44],[-40,106],[-102,167],[-56,107],[-9,48],[-25,43],[-38,38],[-43,27],[-48,16],[-47,37],[-48,59],[-33,31],[-28,6]],[[30477,25396],[-22,-28],[16,-40],[70,-89],[32,-58],[53,-32],[109,-33],[14,-5],[8,-8],[32,-70],[36,-32],[42,-7],[21,-23],[-1,-38],[16,-21],[33,-2],[31,-15],[29,-27],[38,-19],[46,-9],[61,2],[76,14],[81,39],[87,63],[58,33],[27,3],[26,-7],[22,-15],[32,-60],[41,-105],[47,-90],[53,-76],[29,-54],[3,-33],[44,-58],[124,-123]],[[27137,35947],[20,4],[18,23],[24,43],[47,46],[69,47],[100,30],[194,19]],[[31891,24373],[28,-15],[12,-16],[5,-22],[18,-11],[6,-4],[43,-8],[55,-34],[65,-61],[24,-66],[-19,-72],[-1,-51],[17,-30],[-1,-25],[-20,-22],[-7,-31],[6,-42],[13,-26],[20,-10],[6,-16],[-5,-23],[-27,-35],[-48,-47],[-21,-39],[6,-33],[-7,-28],[-19,-25],[-3,-25],[12,-26],[-3,-26],[-18,-24],[-20,-6],[-22,12],[-15,-1],[-9,-15],[8,-14],[25,-13],[2,-14],[-21,-14],[9,-24],[39,-33],[14,-31],[-10,-28],[14,-43],[37,-55],[16,-43],[-4,-28],[3,-18],[1,-23],[16,-39],[44,-70],[20,-67],[-5,-63],[14,-55],[32,-46],[17,-55],[6,-98],[-9,-103],[-20,-53],[-34,-39],[-10,-34],[21,-46]],[[19772,25064],[0,-165],[-13,-22],[-42,-72],[-14,-47],[10,-32],[-21,-36],[-52,-40],[-29,-65],[-5,-89],[24,-76],[53,-61],[36,-28],[18,-1],[14,-8],[2,-9],[21,-8],[26,15],[32,10],[33,1],[20,-12],[9,-25],[28,-13],[48,-1],[37,-12],[2,-1],[37,-31],[58,16],[38,-3],[35,-19],[21,-33],[6,-48],[26,-31],[46,-14],[56,-34],[67,-51],[34,-61],[0,-69],[22,-64],[41,-59],[5,-21],[-8,-18],[-31,-27],[-25,-48],[-10,-53],[5,-56],[13,-49],[21,-43],[-1,-11],[-2,-18],[0,0],[0,0],[-27,-16],[-16,-28],[-5,-38],[9,-46],[4,-12],[16,-43],[1,-37],[-17,-27]],[[25329,17217],[-2,-20],[-4,-35],[17,-46],[59,-84],[23,-52],[34,-45],[55,-56],[39,-22],[22,10],[51,-6],[80,-25],[60,-50],[38,-75],[8,-85],[-25,-94],[-26,-59],[-29,-25],[-43,-13],[-56,-1],[-34,-16],[-12,-31],[-20,-18],[-27,-4],[-11,-22],[6,-38],[-24,-50],[-56,-60],[-22,-49],[12,-37],[-1,-31],[-14,-25],[-27,-26],[-42,-29],[-45,-18],[-72,-12],[-134,-14],[-69,-34],[-49,-59],[-44,-19],[-37,21],[-25,-2],[-11,-24],[2,-16],[14,-8],[7,-15],[0,-24],[-29,-17],[-58,-12],[-15,-18],[26,-24],[4,-24],[-17,-26],[-5,-79],[9,-134],[27,-76],[46,-18],[60,9],[74,38],[51,12],[27,-11],[52,10],[77,32],[71,-5],[65,-41],[64,-10],[64,21],[25,0],[23,-5],[8,0],[4,9],[10,8],[16,0],[81,-6],[64,-20],[59,-34],[46,-13],[34,7],[58,-15],[80,-37],[62,-20],[50,1],[26,1]],[[26409,21094],[103,-28],[33,-20],[-3,-20],[6,-11],[16,0],[14,-11],[20,-32],[-14,-26],[0,-14],[9,-9],[42,23],[75,53],[52,49],[28,43],[7,31],[0,1],[-16,20],[-4,18],[0,5],[4,13],[3,12],[40,40],[71,56],[37,41],[2,26],[8,19],[14,11],[5,14],[7,19],[3,18],[6,36],[-1,8],[-4,37],[-20,34],[-6,53],[9,70],[-2,19],[-4,40],[-23,47],[-22,27],[-29,11],[-6,2],[-8,11],[-47,60],[0,1],[-1,1],[-16,34],[3,21],[19,9],[35,-3],[33,8],[8,6],[22,14],[30,6],[29,-9],[6,-4],[24,-18],[31,-36],[50,-25],[69,-16],[57,-2],[46,12],[27,25],[9,38],[23,30],[5,3],[49,28]],[[23149,17386],[-8,88],[-1,18],[-18,54],[8,19],[4,9],[10,6],[24,15],[5,17],[7,24],[-11,63],[-1,44],[10,25],[-13,62],[-34,98],[-48,80],[-62,62],[-15,21],[-12,17],[-14,20],[-19,57],[0,5],[7,123],[0,6],[34,214],[-5,158],[-42,103],[-9,110],[24,118],[0,5],[3,76],[-25,66],[-41,74],[-64,66],[-151,121],[-119,71],[-69,76],[-60,104],[-30,63],[0,23],[26,30],[52,37],[35,36],[28,52],[62,116],[17,106],[-9,136],[-40,84],[-70,33],[-53,37],[-36,41],[-38,25],[-25,6],[-27,-2],[-13,-9],[-8,-19],[-15,-13],[-16,0],[-62,34],[-107,69],[-72,36],[-36,4],[-111,51],[-186,97],[-111,52],[-55,11],[-47,1],[-43,22],[-54,42],[-72,20],[-89,-1],[-58,11],[-28,23],[-27,12],[-27,1],[-82,34],[-32,15]],[[20985,20997],[-131,63],[-36,4],[-41,-10],[-62,-6],[-100,8],[-69,-2],[-37,-10],[-22,-19],[-18,-25]],[[26753,23480],[30,148],[-34,72],[-37,24],[-53,-1],[-67,22],[-81,45],[-64,25],[-49,6],[-27,25],[-6,45],[-24,23],[-42,1],[-45,35],[-48,69],[-46,28],[-42,-13],[-55,-2],[-101,14]],[[22572,25727],[-47,-37],[-28,-11],[-24,2],[-17,-12],[-12,-26],[-22,-22],[-49,-27],[-46,-8],[-35,3],[-40,12],[-48,25],[-55,39],[-48,52],[-62,98]],[[21624,17383],[-40,169],[-33,66],[-5,33],[14,22],[-19,37],[-50,52],[-7,22],[3,10],[4,10],[-7,16],[6,22],[19,28],[22,24],[28,20],[12,34],[-3,47],[-10,39],[-16,29],[-29,26],[-41,23],[-41,49],[-42,74],[-34,46],[-27,19],[-17,4],[-15,6],[-6,17],[3,17],[-3,46],[-13,61],[-33,72],[-55,82],[-48,53],[-41,23],[-25,41],[-10,88],[-8,13],[-2,4],[-119,186],[-31,57],[-8,15],[-5,7],[-10,12],[-26,25],[-35,48],[-14,45],[0,7],[6,36],[-21,57],[-47,72],[-27,61],[-4,9],[-15,65],[-4,57],[2,9],[6,38],[-9,34],[0,0],[-26,23],[-16,33],[-8,44],[-4,23],[-27,224],[-3,105],[12,60],[0,82],[-12,103],[0,68],[12,33],[0,32],[-10,31],[33,30],[76,27],[49,25],[23,23],[32,9],[41,-5],[43,37],[46,80],[15,59],[-13,39],[3,32],[29,38],[5,33],[-9,42]],[[25242,11783],[23,30],[18,23],[14,19],[27,24],[7,0],[10,0],[25,15],[14,13],[18,16],[38,19],[7,1],[37,6],[29,19],[6,16],[7,16],[23,16],[25,-1],[7,0],[18,11],[1,5],[4,16],[19,18],[14,7],[21,9],[18,18],[2,19],[0,2],[41,50],[23,24],[58,57],[76,45],[71,9],[68,17],[64,25],[47,38],[30,53],[51,29],[96,8],[12,1],[2,0],[17,3],[109,18],[52,-8],[54,-9],[60,-23],[68,-25],[120,-17],[29,4],[82,10],[91,3],[69,-8],[28,-8],[21,-7],[6,-1],[40,-26],[14,-4],[33,-12],[53,-6],[52,-24],[53,-43],[57,-62],[61,-83],[46,-50],[30,-18],[19,-26],[8,-32],[24,-44],[41,-54],[41,-95],[40,-136],[42,-91],[67,-70],[21,-48],[15,-16],[17,0],[30,-20],[43,-39],[33,-19],[23,2],[13,-7],[4,-14],[25,-20],[45,-23],[24,-9],[11,0],[7,7],[5,5],[7,3],[7,-6],[13,-32],[15,-57],[-8,-41],[-31,-25],[-13,-20],[7,-21]],[[19793,25438],[18,-16],[-8,-35],[-41,-86],[-55,-40],[-18,-36],[1,-45],[-7,-36],[-14,-29],[-32,-23],[-49,-16],[-32,-34],[-13,-52],[-15,-27],[-17,-1],[-17,-13],[-17,-27],[-19,-11],[-19,2],[-8,-13],[4,-29],[-25,-28],[-54,-27],[-37,-5],[-30,26],[-27,10],[-19,-8],[-20,-25],[-6,-33],[7,-41],[-10,-39],[-26,-34],[-30,-19],[-47,-2]],[[24927,17164],[-37,32],[-21,7],[-18,-10],[-22,0],[-40,12],[-23,13],[-21,34],[-25,59],[-30,38],[-34,19],[-16,19],[1,21],[-7,14],[-13,7],[-4,18],[7,27],[20,21],[32,16],[19,42],[4,66],[-17,55],[-39,45],[-30,18],[-23,-9],[-18,1],[-14,10],[-1,25],[11,39],[0,40],[-12,42],[13,45],[37,49],[9,52],[-18,54],[-7,47],[5,59],[27,85],[22,17],[26,-23],[26,1],[25,25],[26,11],[25,-3],[29,30],[31,63],[10,52],[-12,39],[24,39],[61,38],[27,35],[-7,31],[6,24],[19,17],[9,16],[-2,15],[11,11],[34,8]],[[25228,19916],[33,104],[4,41],[-11,14],[-13,60],[-14,106],[-21,69],[-29,32],[-72,50],[-114,68],[-87,66],[-59,63],[-24,68],[13,73],[-12,66],[-37,58],[-11,70],[13,82],[6,71],[-1,59],[-8,39],[-23,27]],[[24761,21198],[-39,133],[-1,154],[23,220],[-9,151],[-60,123],[-65,88],[-31,60],[-18,61],[8,72],[37,81],[12,76],[-11,70],[-17,52],[-36,49],[-68,51],[-53,22],[-89,14],[-64,17],[-44,23],[-47,34],[-50,22],[-80,13]],[[34196,12557],[-1,18],[-28,15],[-55,19],[-32,20],[-12,30],[-66,22],[-24,37],[-4,50],[-13,13],[-18,18],[-10,4],[-35,38],[-66,35],[-71,12],[-75,-12],[-52,-21],[-31,-30],[-31,-13],[-47,7]],[[33525,12819],[-61,-5],[-40,-27],[-58,-77],[-216,-23],[-107,-21],[-69,-27],[-48,-7],[-25,12],[-35,-5],[-44,-21],[-35,-6],[-32,8],[-9,5],[-9,10],[-40,90],[-39,61],[-53,65]],[[10962,27431],[35,-7],[26,14],[29,31],[31,18],[49,8],[73,55],[34,12],[19,-14],[25,6],[31,24],[39,18],[46,12],[68,73],[89,135],[46,80],[2,25],[13,29],[26,31],[27,16],[26,0],[17,34],[8,68],[18,39],[26,10],[20,-8],[12,-26],[19,-8],[26,10],[13,-12],[0,-33],[18,-30],[36,-27],[46,-19],[55,-11],[22,-15],[-12,-18],[5,-28],[21,-38],[-3,-24],[-28,-10],[-4,-26],[19,-41],[0,-30],[-21,-18],[8,-18],[36,-16],[5,-62],[-26,-106],[-4,-57],[18,-7],[6,-28],[-12,-70],[0,-1],[-10,-36],[-24,-89],[-1,-19],[-2,-42],[16,-38],[18,-23],[20,-10],[2,-14],[-16,-18],[1,-13],[1,-5],[2,-2],[17,-16],[4,-20],[-9,-18],[0,-2],[2,-49],[13,-73],[1,-5],[1,-50],[-5,-9],[-9,-14],[6,-36],[1,-4],[26,-56],[2,-10],[3,-13],[4,-22],[-9,-36],[2,-23],[12,-8],[-6,-29],[-26,-49],[0,-29],[25,-9],[18,-31],[11,-52],[18,-29],[12,-20],[50,-45],[36,-52],[23,-60],[29,-48],[34,-35],[36,-16],[39,3],[29,11],[19,21],[21,8],[23,-5],[11,7],[-1,20],[-12,10],[-24,3],[-16,10],[-8,19],[3,32],[12,46],[22,24],[48,2]],[[12371,28719],[12,-148],[-23,-52],[2,-41],[18,-49],[-3,-50],[-23,-51],[-6,-32],[14,-11],[51,-2],[89,7],[71,-10],[52,-29],[44,-10],[37,11],[29,-4],[21,-18],[14,-38],[9,-58],[10,-25],[11,7],[9,-4],[6,-15],[-4,-131],[20,-81],[47,-79],[36,-49],[27,-17],[12,-34],[-3,-50],[24,-38],[51,-23],[33,-23],[15,-22],[3,-16],[-9,-9],[13,-26],[35,-44],[11,-41],[3,-9],[-5,-57],[4,-39],[14,-22],[2,-16],[-9,-11],[0,-17],[10,-37],[-120,-42],[-41,1],[-1,27],[-10,15],[-18,1],[-23,-17],[-28,-35],[-25,-12],[-22,10],[-18,0],[-12,-11],[-6,-24],[1,-35],[7,-29],[14,-22],[-2,-21],[-20,-20],[-1,-20],[18,-19],[13,-51],[10,-82],[-19,-37],[-48,9],[-48,-13],[-46,-35],[-20,-38],[9,-42],[17,-32],[26,-23],[12,-24],[-2,-25],[10,-18],[32,-19]],[[16071,24672],[-19,-32],[-41,-34],[-23,-60],[-10,-130],[9,-58]],[[16071,24672],[2,-250]],[[16155,24839],[-36,-8],[-32,-13],[-27,-19],[-14,-17],[0,-16],[-17,-16],[-36,-18],[-43,3],[-52,23],[-61,4],[-116,-17]],[[16155,24839],[-27,-28],[-20,-20],[-8,-16],[1,-11],[11,-7],[-2,-12],[-15,-18],[-12,-8],[-12,0],[-4,-15],[4,-32]],[[16200,24920],[22,-71],[-8,-38],[-29,-29],[-22,-35],[-13,-42],[7,-28],[29,-14],[21,-28],[12,-41],[19,-39],[29,-55],[3,-48],[-2,-22],[0,-12],[2,-37]],[[8538,26511],[30,29],[5,10],[14,26],[19,54],[-2,44],[-32,51],[6,83],[-18,73],[-42,93],[-17,57],[9,20],[22,13],[35,4],[15,12],[-5,21],[14,10],[32,0],[27,11],[21,23],[31,10],[41,-5],[23,-10],[9,-6],[11,-3],[10,5],[43,39],[37,18],[31,-4],[15,11],[8,8],[21,9],[63,7],[55,46],[45,84],[40,43],[33,1],[31,14],[28,26],[8,38],[-10,50],[23,30],[56,9],[49,30],[41,52],[20,19],[28,25],[55,37],[41,46],[29,57],[38,50],[48,45],[34,59],[20,74],[39,39],[56,4],[76,50],[95,95],[77,65],[89,54],[57,45],[71,17],[105,3],[82,18],[57,34],[41,39],[23,45],[32,17],[53,4],[52,12],[84,64],[71,33],[58,3],[40,18],[22,32],[74,34],[126,36],[72,14],[28,3],[32,18],[95,106],[37,99],[33,51],[42,36],[12,48],[-26,94],[11,4],[18,8],[27,21],[14,18],[1,17],[-15,10],[-33,6],[2,16],[56,44],[4,8],[-33,10],[5,8],[17,6],[28,5],[16,21],[2,39],[12,24],[21,10],[16,20],[12,30],[30,18]],[[15344,26859],[8,-49],[-5,-39],[-17,-44],[-3,-44],[11,-44],[19,-28],[26,-11],[16,-20],[6,-28],[30,-9],[52,11],[48,-16],[45,-42],[59,-30],[73,-18],[66,-30],[88,-63],[96,6],[62,-6],[58,-14],[42,-37],[23,-59],[37,-53],[50,-49],[36,-56],[25,-62],[2,-96]],[[16297,25929],[-29,-193],[-20,-174],[-3,-104],[14,-135],[23,-107],[-15,-101],[-67,-196],[-27,-34],[-7,-19],[4,-16],[-15,-11]],[[11387,29390],[-15,51],[9,28],[29,22],[20,28],[10,32],[21,12],[32,-8],[46,23],[61,54],[59,30],[60,5],[39,17]],[[11742,29632],[16,52]],[[11758,29684],[19,29],[20,16],[20,2],[10,11],[0,21],[21,22],[19,10]],[[11867,29795],[14,-49],[1,-21],[-8,-12],[-13,-8],[-16,-4],[-14,-16],[-12,-28],[-29,-17],[-48,-8]],[[11867,29795],[24,13],[27,33],[11,43],[24,19],[35,-3],[91,21],[147,46],[95,20],[42,-5],[26,4],[9,13],[56,23],[103,33],[95,21],[88,10],[59,-4],[29,-18],[39,-6],[48,6],[38,-7],[29,-19],[46,-6],[64,8],[49,-37],[34,-82],[29,-50],[25,-20],[26,-48],[41,-115],[62,-84],[51,-50],[61,-43],[33,-43],[4,-43],[30,-33],[55,-24],[30,-21],[4,-18],[-9,-39],[-24,-62],[-7,-45],[7,-26],[18,-15],[3,-3],[34,-9],[25,-30],[16,-49],[33,-54],[49,-59],[59,-53],[68,-45],[45,-60],[21,-75],[31,-59],[40,-45],[62,-44],[85,-41],[54,-37],[22,-33],[27,-26],[33,-20],[20,-55],[7,-90],[20,-71],[33,-51],[13,-35],[-5,-17],[3,-16],[11,-11],[13,1],[12,9],[8,0],[5,-9],[12,-4],[17,4],[12,-5],[8,-23],[14,-16],[21,-6],[11,-8],[1,-1],[136,-126],[52,-57],[14,-29],[27,-21],[31,-10],[9,-3],[36,-28],[22,-31],[3,-5],[4,-5],[44,-35],[69,-22],[76,-39],[49,-41],[48,-59],[56,-41],[64,-24],[48,-32],[30,-39],[7,-54],[-21,-103]],[[27692,29448],[20,182],[41,97],[70,72],[63,40],[59,9],[46,18],[34,28],[52,25],[71,24],[51,38],[32,54],[11,38],[-8,23],[1,32],[11,43],[31,59],[51,77],[12,67]],[[28340,30374],[7,42],[-12,141],[-18,77],[-24,12],[-27,26],[-30,41],[-16,45],[-3,48],[-13,28],[-24,7],[-11,48],[3,88],[-15,58],[-34,29],[-22,32],[-15,51],[-107,36],[-53,4],[-35,-17],[-45,-41],[-53,-65],[-43,-34],[-33,-4],[-35,-31],[-36,-58],[-35,-29],[-34,1],[-34,-12],[-35,-24],[-16,-31],[2,-37],[-17,-24],[-37,-12],[-54,-57],[-70,-103],[-74,-65],[-79,-28],[-67,-6],[-54,15],[-50,23],[-45,30],[-29,46],[-12,63],[-19,46],[-25,28],[-24,44],[-23,60],[-11,87],[1,115],[-13,102],[-28,90],[-20,51],[-1,16],[10,16],[57,26],[33,24],[9,21],[2,37],[-3,52],[-9,35],[-14,17],[-22,10],[-30,3],[-25,26],[-20,50],[-2,39],[16,31],[4,23],[4,18],[12,13],[50,16],[29,27],[8,38],[17,27],[24,14],[10,20],[-5,25],[29,33],[62,39],[29,28],[-2,16],[13,26],[43,52]],[[27865,33195],[15,153],[-1,57],[-10,10],[1,28],[13,45],[0,58],[-11,74],[-11,46],[-10,20],[-36,31],[-61,40],[-40,49],[-17,60],[-4,37],[14,21],[80,64],[27,56],[-1,69],[-13,43],[-25,15],[-55,-9],[-85,-34],[-59,5],[-33,42],[-26,8],[-24,0],[-11,5],[-8,21],[-14,23],[-42,34],[-23,32],[-3,29],[-14,14],[-23,1],[-10,9],[2,19],[-7,12],[-18,5],[-45,53],[-82,111],[-12,21],[-17,19],[-11,11],[-15,9],[-122,95],[-45,65],[10,53],[-3,67],[-2,60],[-7,38],[-11,23],[-14,22],[-14,15],[-14,21],[-1,29],[9,35],[22,42],[11,40],[1,41],[9,44],[18,50],[42,68],[67,86],[33,66],[-2,44],[9,48],[20,54],[3,78],[-14,97],[-1,37],[-7,18]],[[24257,12892],[-21,36],[-42,31],[-68,36],[-34,41],[0,47],[15,60],[30,75],[12,44],[-5,16],[-13,7],[-23,-2],[-35,22],[-49,44],[-51,8],[-52,-26],[-44,2],[-36,31],[-45,24],[-54,15],[-52,3],[-24,1],[-15,7],[-1,10],[10,14],[68,73],[22,68],[-7,23]],[[23644,13659],[35,-30],[64,-27]],[[23721,13674],[22,-72]],[[23592,13757],[52,-98]],[[23592,13757],[24,-22],[34,-8],[31,-16],[39,-36]],[[23277,13934],[7,-58],[41,-57],[60,-76],[54,-47],[47,-20],[56,-12],[102,-5]],[[23277,13934],[24,-44],[36,-19],[49,7],[54,-5],[57,-14],[47,-36],[37,-56],[11,-10]],[[22823,14330],[60,-16],[44,-40],[17,-24],[33,-45],[39,-35],[28,-2],[38,-43],[50,-84],[52,-53],[54,-21],[39,-33]],[[29705,26539],[-1,-45],[16,-24],[33,-20],[19,-21],[9,-31],[-21,-43],[-3,-22],[7,-15],[108,-132],[48,-47],[25,-15],[11,-51],[-4,-106],[-28,-102],[-51,-100],[-15,-63],[22,-25],[21,-13],[21,0],[1,-8],[-18,-16],[-14,-34],[-10,-51],[-15,-30],[-20,-7],[-22,-25],[-24,-43],[-36,-29],[-50,-15],[-31,3],[-13,21],[-34,12],[-54,1],[-78,-33],[-99,-69],[-65,-30],[-29,9],[-26,-7],[-22,-23],[-14,-28],[-9,-48],[-12,-12],[2,-24],[13,-40],[-5,-85],[-23,-129],[-6,-72],[9,-17],[22,-4],[37,9],[21,20],[6,32],[12,9],[18,-14],[3,-23],[-12,-33],[-2,-27],[10,-20],[-12,-14],[-32,-10],[-12,-10],[6,-11],[-4,-12],[-13,-13],[3,-19],[17,-23],[-6,-34],[-28,-46],[-7,-48],[22,-75]],[[24597,8699],[-72,23],[-58,39],[-104,94]],[[24254,8983],[-107,72],[-44,37],[-15,26],[-27,15],[-40,5],[-46,21],[-52,36],[-27,29],[-1,22],[-17,20],[-33,20],[-32,33],[-48,70],[-23,-41],[-16,-18],[-19,-8],[-20,2],[-18,7],[-16,-4],[-12,-15],[-30,-19],[-52,-20],[-28,-17],[-6,-9],[-14,-10],[-18,-8],[-5,-25],[-10,-12],[-25,-5],[-14,-2],[-10,-4],[-8,-10],[5,-29],[-6,-17],[-17,-3],[-31,25],[-46,54],[-58,40],[-69,27],[-37,34],[-5,40],[-21,53],[-38,64],[-30,29],[-19,-7],[-22,5],[-24,14],[-32,47],[-41,79],[-36,47],[-34,15],[-44,3],[-55,-8],[-56,-34],[-57,-61],[-61,-38],[-63,-15],[-55,-5],[-45,5],[-52,25],[-59,44],[-63,36],[-67,27],[-54,1],[-26,1],[-91,-25],[-5,-2],[-40,-22],[-14,-7],[-3,-5],[-22,-34],[-33,-24],[-32,-6],[-10,-2],[-19,-20],[5,-32],[-8,-12],[-8,-12],[-37,-17],[-60,5],[-42,13],[-41,14],[-106,6],[-9,-1],[-119,-13],[-93,6],[-12,6],[-44,22],[-59,15],[-63,4],[-37,11],[-75,20],[-11,28],[-3,7],[-9,26],[-21,28],[-2,22],[11,11],[5,6],[3,27],[-12,38],[-18,16],[-3,2],[-29,-1],[-19,14],[-7,30],[-13,17],[-4,6],[-7,3],[-20,12],[-14,8],[-55,-18],[0,0],[-25,-26],[-16,-41],[-13,-20],[-7,-34],[-3,-25],[-14,-25],[-15,-11],[-15,5],[-25,-9],[-3,-1],[-62,-39],[-17,-20]],[[26171,9385],[-18,-61],[-26,-26],[-40,-13],[-26,-24],[-19,-55],[-20,-31],[2,-16],[16,-12],[3,-14],[-11,-16],[1,-23],[12,-32],[-9,-22],[-29,-12],[-9,-14],[12,-17],[-4,-17],[-18,-15],[-34,-9],[-50,-3],[-36,6],[-22,14],[-51,-3],[-81,-19],[-45,-23],[-8,-28],[-13,-22],[-19,-17],[-19,-6],[-21,3],[-14,-11],[-7,-26],[-18,-15],[-29,-6],[-33,6],[-3,1],[-35,14],[-10,6],[-8,0],[-1,-4],[1,-8],[-6,-9],[-14,-6],[-3,-7],[0,-7],[-2,-4],[-10,-2],[-7,-6],[-5,-14],[-26,-11],[-63,-10],[-18,-9],[-7,-14],[-17,-16],[-40,-20],[-45,-11],[-50,-1],[-45,14],[-42,27],[-38,11],[-36,-4],[-33,8],[-29,21],[-34,4],[-58,-21]],[[20084,25332],[34,-54],[43,-7],[97,30],[34,31],[24,11],[28,2],[23,-24],[18,-49],[33,-26],[47,-3],[42,17],[36,37],[21,29],[4,22],[27,28],[49,35],[34,15],[21,-4],[29,-24],[36,-43],[34,-18],[30,6],[36,-5],[41,-15],[47,3],[53,22],[48,10],[43,-2],[46,19],[49,41],[36,55],[21,69],[24,44],[27,18],[28,34],[31,52],[23,26],[16,1],[-4,21],[-25,43],[-33,14],[-41,-13],[-30,4],[-18,22],[-29,14],[-43,5],[-14,23],[13,39],[-5,57],[-20,71],[-2,5],[-9,59],[5,44],[27,65],[49,86],[29,82],[6,79],[14,41],[22,3],[25,17],[30,32],[19,33],[12,51]],[[21375,26612],[0,1]],[[27137,35947],[-11,8],[-22,6]],[[27104,35961],[-49,18],[-35,24],[-17,27],[-17,13],[-19,9],[2,13],[-4,39],[-28,88],[-7,51],[7,14],[-6,14],[-5,10],[1,35],[-7,30],[-14,25],[-27,23],[-38,24],[-20,26],[-2,30],[-14,28],[-40,43]],[[21692,22335],[-65,44],[-63,23],[-83,17],[-50,20],[-19,22],[-21,9],[-38,-9]],[[29070,17584],[-107,43],[-43,7],[-16,-13],[-9,-23],[-2,-46],[75,-236],[26,-60],[10,-23],[24,-7],[26,1],[30,10],[33,22],[25,26],[10,10],[56,-1],[76,-37],[30,-23],[11,-10],[5,-18],[2,-9],[51,-16],[94,-5],[51,11],[18,4],[17,13],[26,20],[45,17],[47,2],[36,-11],[22,-22],[2,-3],[46,-17],[69,-11],[75,16],[81,42],[46,45],[12,46],[13,28],[15,9],[43,6],[71,2],[61,-15],[79,-46],[96,59],[38,24],[85,28],[36,0],[46,0],[66,20],[37,28],[16,11],[55,25],[26,5],[32,6],[54,19],[76,41],[188,143]],[[19111,24646],[-58,23],[-42,4],[-83,-15],[-36,-10],[-37,-27],[-38,-42],[-34,-23],[-47,-3],[-66,-67],[-32,-14],[-20,17],[-47,-18],[-73,-53],[-65,-11],[-57,31],[-76,-26],[-96,-82],[-97,-54],[-99,-24],[-60,-3],[-19,18],[-29,-19],[-40,-57],[-30,-27],[-22,3],[-31,-23],[-41,-49],[-38,-27],[-52,-7],[-24,-2]],[[20428,23175],[-3,-17],[26,-58],[27,-27],[31,-3],[34,-24],[36,-44],[28,-21],[23,-17],[21,-56],[28,-154],[29,-86],[30,-19],[28,-3],[20,-8],[8,-12],[18,-9],[12,-1],[20,-6],[16,-15],[10,-20],[3,-27],[13,-16],[22,-4],[4,-19],[-13,-34],[-2,-42],[9,-52],[-1,-44],[-12,-37],[0,-22],[9,-6],[2,-14],[-6,-22],[5,-14],[16,-7],[10,-31],[4,-57],[-4,-28],[-21,-13],[-6,-31],[-29,-35],[-50,-40],[-34,-42],[-24,-64],[-4,-12]],[[10189,25243],[24,-35],[79,-59],[33,-36],[-13,-13],[-2,-19],[12,-25],[14,-16],[17,-6],[20,-27],[22,-49],[27,-40],[48,-49],[44,-49],[19,-42],[7,-52],[20,-36],[23,-17]],[[10088,26446],[15,-52],[1,-37],[-9,-36],[8,-53],[26,-67],[18,-102],[13,-203],[4,-34],[10,-14],[17,-7],[6,-19],[-5,-32],[-11,-25],[-18,-18],[-4,-46],[15,-109]],[[10118,26791],[-21,-49],[-7,-42],[0,-78],[12,-65],[-3,-29],[-15,-17],[-4,-22],[8,-40]],[[26517,21894],[-25,27],[-38,-3],[-39,-17],[-20,-8],[-39,-7],[-19,9],[-16,18],[-13,28],[5,65],[33,155]],[[26410,22373],[18,111],[-11,54],[-33,34],[-2,34],[31,35],[25,43],[20,50],[57,46],[95,40],[40,34],[20,16],[16,38],[9,20],[15,15],[17,18],[4,4],[26,9],[43,15]],[[30053,28658],[-52,16],[-31,27],[-42,66],[-81,114],[-4,4],[-38,33],[-32,-4],[-24,-18],[-2,-6],[-12,-26],[-16,-20],[-17,-8],[-38,4],[-57,16],[-5,-1],[-54,-3],[-53,-19],[-7,-3],[-51,-4],[-41,15],[-51,-2],[-60,-16],[-48,7],[-36,30],[-13,45],[13,87]],[[28927,15812],[7,-73],[-18,-61],[-64,-111],[-65,-31],[-38,-32],[-33,-45],[-19,-36],[-6,-27],[3,-45],[20,-92],[41,-63],[16,-43],[4,-43],[18,-32],[33,-18],[38,-37],[38,-50],[4,-5],[4,-14],[19,-62],[4,-141],[1,-3],[-1,-259]],[[28918,15925],[-9,47]],[[27723,35974],[3,-93]],[[27634,36083],[-25,76]],[[27609,36159],[14,43],[1,76],[-4,121]],[[8467,28615],[-9,5],[-17,5],[-26,24],[-23,53],[-30,32],[-37,13],[-14,14],[8,15],[-1,24],[-10,34],[-21,34],[-32,34],[-47,32],[-62,30],[-54,18],[-46,7],[-41,15],[-55,38],[-19,6],[-88,33],[-47,32],[-23,39],[-37,28],[-52,20],[-14,9],[-19,13],[-16,25],[-19,16],[-20,9],[-2,9],[4,8],[1,4],[-5,23],[-30,50],[-28,23],[-24,-3],[-4,1],[-10,5],[-8,11],[-1,8],[-2,8],[-11,10],[-6,5],[-28,6],[-23,37],[-15,61],[-2,8],[-11,27],[-12,27],[-27,38],[-8,6],[-12,8],[-9,2],[-5,1],[-3,3],[-2,3],[-4,11],[-22,4],[-8,-3],[-22,-8],[-27,4],[-3,4],[-10,14],[-19,2],[-23,-15],[0,-1],[-1,1],[-25,4],[-11,9],[-18,16],[-16,24],[0,0],[-3,24],[-49,48],[-22,18],[-44,33],[-29,22],[-14,4],[-66,22],[-23,8],[-112,-5],[-63,4],[-14,11],[-14,-1],[-14,-13],[-14,-3],[-16,8],[-10,-6],[-2,-8],[-2,-11],[-39,-9],[-32,0],[-43,0],[-61,-12],[-46,-22],[-38,-6],[-27,-4],[-85,3],[-10,2],[-41,7],[-17,13],[-25,3],[-31,-7],[-28,-36],[-3,-8],[-22,-57],[-8,-15],[-12,-22],[-16,-9],[-18,-48],[-1,-8],[-8,-73],[-11,-26]],[[24193,21008],[10,81],[-15,42],[-37,28],[-26,32],[-23,50],[-9,81],[-43,75],[-81,97],[-52,119],[-22,139],[-33,52],[-35,18],[-27,14],[-17,26],[-80,28],[-143,29],[-91,37],[-40,44],[-44,27],[-48,9],[-47,15],[-44,22],[-26,22],[-10,21],[-45,25],[-121,41],[-96,33],[-45,22],[-26,22],[-22,8],[-17,-6],[-27,8],[-36,22],[-40,9],[-44,-2],[-34,7],[-25,17],[-19,-6],[-9,5],[-13,20],[-19,6],[-26,-2],[-25,-12],[-11,-21],[-19,-5]],[[21535,24083],[6,-86],[6,-82],[-59,-170],[-112,-207],[-11,-22],[-62,-180],[0,-132],[-3,-40],[-3,-42],[-21,-51],[-7,-20],[-41,-116],[-8,-118],[18,-143],[-17,-136],[-51,-129],[-21,-101],[12,-121]],[[25962,24046],[-69,23],[-36,2],[-26,-13],[-23,7],[-20,26],[-23,15],[-27,5],[-45,-9],[-64,-23],[-61,-11],[-61,0],[-57,23],[-54,48],[-36,22],[-19,-5],[-7,-23],[5,-41],[-12,-36],[-28,-33],[-22,-12],[-15,8],[-23,0],[-33,-9],[-21,31],[-7,70],[-14,56],[-20,39],[-19,22],[-18,5],[-42,-26],[-100,-85],[-45,-38],[-34,-5],[-40,15],[-35,6],[-32,-5],[-25,-21],[-19,-40],[-24,-12],[-30,16],[-34,-1],[-39,-16],[-45,-7],[-51,3],[-39,-11],[-26,-25],[-29,-16],[-31,-6],[-23,7],[-14,20],[-49,9],[-84,-2],[-83,25],[-82,53],[-86,26],[-91,0],[-63,16],[-37,33],[-47,12],[-57,-9],[-51,5],[-45,20],[-67,2],[-88,-15],[-80,26],[-108,100],[-1,1],[-228,54],[-17,2],[-70,8],[-11,2],[-15,-4],[-51,-13],[-24,9],[-59,21],[-37,6],[-17,-10],[-9,3],[-37,11],[-7,3],[-68,33],[-72,15],[-6,0],[-59,-5],[-39,12],[-32,36],[-8,12],[-10,15],[-23,37],[-74,65],[-100,51],[-62,39],[-24,26],[-54,15],[-82,3],[-66,-22],[-13,-4],[-113,-80],[-24,-39],[-80,-127],[-59,-63],[-28,-9],[-19,-7],[-12,-40],[15,-39],[9,-24],[6,-73],[-16,-119],[-1,-5]],[[24649,10019],[-114,-40],[-63,-44],[-50,-60],[-53,-36],[-56,-10],[-40,-25],[-24,-40],[-12,-44],[2,-48],[-10,-24],[-20,-3],[-11,-12],[-2,-15],[-8,-8],[-12,7],[-17,5],[-22,-8],[-19,7],[-10,21],[-19,21],[-27,14],[-37,-19],[-44,-51],[-33,-61],[-22,-71],[-48,-48],[-113,-38]],[[25757,10379],[-55,67],[-40,10],[-44,-25],[-42,-8],[-39,9],[-31,-10],[-23,-31],[-30,-14],[-38,3],[-34,-10],[-28,-22],[-41,0],[-55,21],[-23,-1],[-10,-19],[-15,-7],[-27,6],[-57,-24],[-84,-56],[-26,-28],[0,-18],[8,-8],[4,-20],[-8,-22],[3,-15],[-15,-16],[-43,-4],[-47,-24],[-61,-65]],[[26648,10596],[34,-43],[-10,-36],[-62,-67],[-92,-46],[-64,-15],[-64,-1],[-35,-9],[-5,-19],[-21,-7],[-35,6],[-29,-10],[-24,-25],[-26,-16],[-24,-8],[-18,-1],[-31,17],[-26,1],[-33,-10],[-35,4],[-38,19],[-13,0],[-4,-8],[-13,-11],[-27,-12],[-15,1],[-4,13],[-12,10]],[[25922,10323],[0,1]],[[27871,23021],[52,-225],[33,-99],[45,-72]],[[27686,23129],[30,-13]],[[27194,23417],[9,3],[161,56],[88,4],[62,-31],[44,-13],[26,4],[22,-20],[16,-45],[8,-43],[-3,-40],[-27,-38],[-53,-34],[-26,-25],[0,-15],[15,-6],[46,6]],[[13340,25277],[-2,-68],[26,-33],[52,-22],[47,-10],[40,1],[32,-11],[25,-23],[18,-32],[10,-44]],[[29265,14206],[29,-39],[16,-50],[2,-38],[-11,-26],[4,-19],[9,-13],[2,-20],[-13,-22]],[[29265,14206],[195,-103]],[[26039,15016],[32,48],[11,53],[0,74],[8,47],[17,22],[27,17]],[[26134,15277],[34,22],[105,56],[88,35],[108,24],[223,0],[62,1],[21,0],[167,0]],[[27788,15443],[97,-3],[46,-21],[26,-41],[51,-50],[75,-57],[85,-82],[142,-162],[44,-41],[98,-44],[167,-62],[95,-39],[21,-19],[24,-42],[37,-100],[51,-108],[40,-51],[46,-32]],[[28933,14489],[44,-42],[40,-54],[54,-42],[68,-30],[40,-29],[14,-30],[29,-28],[43,-28]],[[24047,17328],[28,30],[3,33],[-12,43],[-36,19],[-89,-12],[-1,0],[-121,-92],[-67,-41],[-54,-20],[-40,-24],[-25,-29],[-70,-45],[-114,-61],[-69,-58],[-23,-55],[-25,-41],[-28,-28],[-16,-53],[-3,-79],[16,-75],[36,-72],[16,-52],[-2,-15],[-3,-18],[29,-42],[94,-78],[26,-22],[22,-46],[28,-77],[22,-43],[16,-10],[3,-17],[-10,-24],[0,-32],[10,-37],[-2,-33],[-12,-29],[-1,-38],[10,-49],[-12,-53],[-37,-58],[-32,-95],[-29,-132],[6,-90],[40,-48],[23,-43],[5,-37],[-4,-27],[-12,-19],[9,-32],[30,-45],[26,-78],[20,-113],[89,-128],[156,-143],[103,-122],[71,-152],[24,-2],[196,-16],[69,-9],[19,-2],[31,-11],[40,-30],[52,-50],[21,-21],[1,0],[1,-1],[84,-22],[21,-1],[26,-1],[36,11],[46,-15],[38,-30],[15,-12],[59,-8],[22,9],[42,17],[86,-8],[75,-29],[33,-13],[90,-9],[106,38]]],"transform":{"scale":[0.0022566005566281373,0.002228859269825703],"translate":[-30,-50]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[127,128,0,129]],[[2,130,131]]],"type":"MultiPolygon","properties":{"ct":[17.57,-12.34]},"id":"AGO"},{"arcs":[[132,133,134]],"type":"Polygon","properties":{"ct":[29.89,-3.37]},"id":"BDI"},{"arcs":[[[39]],[[40]],[[41]],[[42]]],"type":"MultiPolygon","properties":{"ct":[51.77,-46.41]},"id":"ATF"},{"arcs":[[135,8,136,137,138]],"type":"Polygon","properties":{"ct":[2.34,9.66]},"id":"BEN"},{"arcs":[[-138,139,140,141,142,143]],"type":"Polygon","properties":{"ct":[-1.73,12.28]},"id":"BFA"},{"arcs":[[144,145,146]],"type":"Polygon","properties":{"ct":[23.82,-22.19]},"id":"BWA"},{"arcs":[[147,148,149,150,151,152]],"type":"Polygon","properties":{"ct":[20.49,6.58]},"id":"CAF"},{"arcs":[[-142,153,11,154,155,156]],"type":"Polygon","properties":{"ct":[-5.55,7.62]},"id":"CIV"},{"arcs":[[-152,157,158,159,6,160,161]],"type":"Polygon","properties":{"ct":[12.74,5.69]},"id":"CMR"},{"arcs":[[[44]],[[45]],[[46]]],"type":"MultiPolygon","properties":{"ct":[43.36,-11.66]},"id":"COM"},{"arcs":[[-130,1,-132,162,-150,163,164,165,-134,166,167]],"type":"Polygon","properties":{"ct":[23.65,-2.88]},"id":"COD"},{"arcs":[[-131,3,168,-158,-151,-163]],"type":"Polygon","properties":{"ct":[15.22,-0.84]},"id":"COG"},{"arcs":[[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]]],"type":"MultiPolygon","properties":{"ct":[-23.63,15.09]},"id":"CPV"},{"arcs":[[169,170,171,32]],"type":"Polygon","properties":{"ct":[42.58,11.73]},"id":"DJI"},{"arcs":[[172,173,174,175,176,177,178,22]],"type":"Polygon","properties":{"ct":[2.68,28.16]},"id":"DZA"},{"arcs":[[179,180,181,25,182,28,183]],"type":"Polygon","properties":{"ct":[29.77,26.57]},"id":"EGY"},{"arcs":[[[-172,184,185,31]],[[58]]],"type":"MultiPolygon","properties":{"ct":[38.8,15.4]},"id":"ERI"},{"arcs":[[-178,186,20,187]],"type":"Polygon","properties":{"ct":[-13.14,24.66]},"id":"ESH"},{"arcs":[[-171,188,189,190,191,-185]],"type":"Polygon","properties":{"ct":[39.63,8.63]},"id":"ETH"},{"arcs":[[-159,-169,4,192]],"type":"Polygon","properties":{"ct":[11.79,-0.61]},"id":"GAB"},{"arcs":[[-141,193,10,-154]],"type":"Polygon","properties":{"ct":[-1.21,7.97]},"id":"GHA"},{"arcs":[[-156,194,195,14,196,197,198]],"type":"Polygon","properties":{"ct":[-10.92,10.44]},"id":"GIN"},{"arcs":[[17,199]],"type":"Polygon","properties":{"ct":[-15.41,13.46]},"id":"GMB"},{"arcs":[[-197,15,200]],"type":"Polygon","properties":{"ct":[-14.92,12.05]},"id":"GNB"},{"arcs":[[[-160,-193,5]],[[60]]],"type":"MultiPolygon","properties":{"ct":[10.46,1.56]},"id":"GNQ"},{"arcs":[[-184,29,201]],"type":"Polygon","properties":{"ct":[35.49,22.36]},"id":"XHT"},{"arcs":[[-190,202,34,203,204,205,206,207]],"type":"Polygon","properties":{"ct":[37.86,0.54]},"id":"KEN"},{"arcs":[[-179,-188,21]],"type":"Polygon","properties":{"ct":[-6.27,31.85]},"id":"MAR"},{"arcs":[[-155,12,208,-195]],"type":"Polygon","properties":{"ct":[-9.29,6.44]},"id":"LBR"},{"arcs":[[-174,209,24,-182,210,211,212]],"type":"Polygon","properties":{"ct":[18.03,27.04]},"id":"LBY"},{"arcs":[[213]],"type":"Polygon","properties":{"ct":[28.25,-29.58]},"id":"LSO"},{"arcs":[[72]],"type":"Polygon","properties":{"ct":[46.69,-19.41]},"id":"MDG"},{"arcs":[[-143,-157,-199,214,215,-176,216]],"type":"Polygon","properties":{"ct":[-3.53,17.36]},"id":"MLI"},{"arcs":[[-180,217]],"type":"Polygon","properties":{"ct":[33.69,21.89]},"id":"XBT"},{"arcs":[[218,219,220,221,222,223,224,36]],"type":"Polygon","properties":{"ct":[35.55,-17.25]},"id":"MOZ"},{"arcs":[[-177,-216,225,19,-187]],"type":"Polygon","properties":{"ct":[-10.34,20.26]},"id":"MRT"},{"arcs":[[-224,226,227]],"type":"Polygon","properties":{"ct":[34.31,-13.23]},"id":"MWI"},{"arcs":[[[77]],[[78]]],"type":"MultiPolygon","properties":{"ct":[45.13,-12.83]},"id":"MYT"},{"arcs":[[-129,228,229,-146,230,38]],"type":"Polygon","properties":{"ct":[17.22,-22.14]},"id":"NAM"},{"arcs":[[-207,231]],"type":"Polygon","properties":{"ct":[35.08,4.76]},"id":"SSD"},{"arcs":[[-139,-144,-217,-175,-213,232,233]],"type":"Polygon","properties":{"ct":[9.4,17.42]},"id":"NER"},{"arcs":[[-136,-234,234,-161,7]],"type":"Polygon","properties":{"ct":[8.1,9.59]},"id":"NGA"},{"arcs":[[79]],"type":"Polygon","properties":{"ct":[55.54,-21.13]},"id":"REU"},{"arcs":[[-135,-166,235,236]],"type":"Polygon","properties":{"ct":[29.91,-2]},"id":"RWA"},{"arcs":[[-148,237,-211,-181,-218,-202,30,-186,-192,238]],"type":"Polygon","properties":{"ct":[29.95,16.01]},"id":"SDN"},{"arcs":[[-198,-201,16,-200,18,-226,-215]],"type":"Polygon","properties":{"ct":[-14.46,14.36]},"id":"SEN"},{"arcs":[[[-196,-209,13]],[[80]]],"type":"MultiPolygon","properties":{"ct":[-11.77,8.58]},"id":"SLE"},{"arcs":[[-170,33,-203,-189]],"type":"Polygon","properties":{"ct":[45.87,6.06]},"id":"SOM"},{"arcs":[[-149,-239,-191,-208,-232,-206,239,-164]],"type":"Polygon","properties":{"ct":[30.31,7.31]},"id":"SSD"},{"arcs":[[[81]],[[82]]],"type":"MultiPolygon","properties":{"ct":[6.61,0.24]},"id":"STP"},{"arcs":[[-220,240]],"type":"Polygon","properties":{"ct":[31.5,-26.56]},"id":"SWZ"},{"arcs":[[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]]],"type":"MultiPolygon","properties":{"ct":[55.47,-4.69]},"id":"SYC"},{"arcs":[[-153,-162,-235,-233,-212,-238]],"type":"Polygon","properties":{"ct":[18.66,15.36]},"id":"TCD"},{"arcs":[[-137,9,-194,-140]],"type":"Polygon","properties":{"ct":[0.98,8.53]},"id":"TGO"},{"arcs":[[[-173,23,-210]],[[92]]],"type":"MultiPolygon","properties":{"ct":[9.57,34.11]},"id":"TUN"},{"arcs":[[[-133,-237,241,-204,35,-225,-228,242,-167]],[[93]],[[94]],[[95]]],"type":"MultiPolygon","properties":{"ct":[34.79,-6.26]},"id":"TZA"},{"arcs":[[-165,-240,-205,-242,-236]],"type":"Polygon","properties":{"ct":[32.39,1.28]},"id":"UGA"},{"arcs":[[-145,243,-221,-241,-219,37,-231],[-214]],"type":"Polygon","properties":{"ct":[25.09,-28.99]},"id":"ZAF"},{"arcs":[[-128,-168,-243,-227,-223,244,-229]],"type":"Polygon","properties":{"ct":[27.79,-13.46]},"id":"ZMB"},{"arcs":[[-147,-230,-245,-222,-244]],"type":"Polygon","properties":{"ct":[29.88,-18.99]},"id":"ZWE"},{"arcs":[[[109]],[[110]]],"type":"MultiPolygon","properties":{"ct":[57.57,-20.28]},"id":"MUS"},{"arcs":[[[121]],[[122]],[[123]],[[124]],[[125]]],"type":"MultiPolygon","properties":{"ct":[-5.7,-15.96]},"id":"SHN"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[245]],"type":"Polygon"},{"arcs":[[246]],"type":"Polygon"},{"arcs":[[247],[248],[249]],"type":"Polygon"},{"arcs":[[250],[251],[252],[253],[254]],"type":"Polygon"},{"arcs":[[255]],"type":"Polygon"},{"arcs":[[256]],"type":"Polygon"},{"arcs":[[257]],"type":"Polygon"},{"arcs":[[258]],"type":"Polygon"},{"arcs":[[259]],"type":"Polygon"},{"arcs":[[260]],"type":"Polygon"},{"arcs":[[261]],"type":"Polygon"},{"arcs":[[262]],"type":"Polygon"},{"arcs":[[263]],"type":"Polygon"},{"arcs":[[264]],"type":"Polygon"},{"arcs":[[265]],"type":"Polygon"},{"arcs":[[266]],"type":"Polygon"},{"arcs":[[267]],"type":"Polygon"},{"arcs":[[268]],"type":"Polygon"},{"arcs":[[269]],"type":"Polygon"},{"arcs":[[270],[271]],"type":"Polygon"},{"arcs":[[272]],"type":"Polygon"},{"arcs":[[273]],"type":"Polygon"},{"arcs":[[270],[271]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"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,182,28,29,30,31,32,33,34,35,36,37,38]],[[39]],[[40]],[[41]],[[42]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[58]],[[60]],[[72]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[109]],[[110]],[[121]],[[122]],[[123]],[[124]],[[125]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,274],[-42],[-41],[-40],[-87],[-85],[-88],[-111],[-89],[-90],[-91],[-96],[-92],[-94],[-95],[-84],[-45],[-46],[-47],[-43],[-80],[-110],[-73],[-78],[-79],[-86],[-75],[-71],[-65],[-74],[-99],[-98],[-100],[-60],[-66],[-72],[-44],[-67],[-68],[-97],[-69],[-64],[-63],[-62],[-58],[-70],[-93],[-59],[-56],[-55],[-54],[-53],[-52],[-57],[-48],[-51],[-49],[-50],[-83],[-81],[-82],[-61],[-103],[-107],[-106],[-108],[-101],[-105],[-102],[-104],[-116],[-119],[-115],[-117],[-118],[-120],[-121],[-113],[-77],[-76],[-114],[-112],[-109],[-123],[-122],[-126],[-125],[-124]],[[-127]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[275,276]},{"type":"LineString","arcs":[277]},{"type":"LineString","arcs":[278]},{"type":"LineString","arcs":[279]},{"type":"LineString","arcs":[280]},{"type":"LineString","arcs":[281]},{"type":"MultiLineString","arcs":[[282],[283]]},{"type":"LineString","arcs":[284]},{"type":"MultiLineString","arcs":[[285],[286]]},{"type":"LineString","arcs":[287]},{"type":"MultiLineString","arcs":[[288],[289]]},{"type":"LineString","arcs":[290]},{"type":"LineString","arcs":[291,292]},{"type":"MultiLineString","arcs":[[293],[294]]},{"type":"MultiLineString","arcs":[[295],[296],[297]]},{"type":"LineString","arcs":[298]},{"type":"MultiLineString","arcs":[[299],[300]]},{"type":"LineString","arcs":[301]},{"type":"LineString","arcs":[302]},{"type":"LineString","arcs":[303]},{"type":"MultiLineString","arcs":[[304],[305]]},{"type":"LineString","arcs":[306]},{"type":"LineString","arcs":[307]},{"type":"LineString","arcs":[308]},{"type":"LineString","arcs":[309]},{"type":"LineString","arcs":[310]},{"type":"LineString","arcs":[311]},{"type":"LineString","arcs":[312]},{"type":"LineString","arcs":[313]},{"type":"MultiLineString","arcs":[[314,315],[316],[317]]},{"type":"MultiLineString","arcs":[[318],[319,320,321,322,323]]},{"type":"LineString","arcs":[324]},{"type":"LineString","arcs":[325]},{"type":"LineString","arcs":[326]},{"type":"MultiLineString","arcs":[[327],[328]]},{"type":"LineString","arcs":[329]},{"type":"LineString","arcs":[330]},{"type":"LineString","arcs":[331]},{"type":"LineString","arcs":[332]},{"type":"LineString","arcs":[333]},{"type":"LineString","arcs":[334]},{"type":"LineString","arcs":[335,336]},{"type":"LineString","arcs":[337]},{"type":"LineString","arcs":[338]},{"type":"LineString","arcs":[339]},{"type":"LineString","arcs":[340]},{"type":"LineString","arcs":[341]},{"type":"LineString","arcs":[342]},{"type":"MultiLineString","arcs":[[343],[344]]},{"type":"LineString","arcs":[345]},{"type":"LineString","arcs":[346]},{"type":"LineString","arcs":[347]},{"type":"LineString","arcs":[348]},{"type":"MultiLineString","arcs":[[349],[350],[351],[352],[353],[354],[355,356],[357],[358],[359],[360],[361]]},{"type":"MultiLineString","arcs":[[362,363],[364]]},{"type":"MultiLineString","arcs":[[365],[366],[367],[368],[369],[370],[371],[372]]},{"type":"LineString","arcs":[373]},{"type":"MultiLineString","arcs":[[374],[375],[376]]},{"type":"LineString","arcs":[377,378]},{"type":"LineString","arcs":[379,380]},{"type":"LineString","arcs":[381]},{"type":"LineString","arcs":[382]},{"type":"LineString","arcs":[383]},{"type":"LineString","arcs":[384]},{"type":"MultiLineString","arcs":[[385],[386],[387]]},{"type":"MultiLineString","arcs":[[388],[389]]},{"type":"LineString","arcs":[390]},{"type":"MultiLineString","arcs":[[391],[392]]},{"type":"MultiLineString","arcs":[[393],[394,395]]},{"type":"LineString","arcs":[396]},{"type":"LineString","arcs":[397]},{"type":"LineString","arcs":[398]},{"type":"LineString","arcs":[399]},{"type":"MultiLineString","arcs":[[400],[401],[402,403]]},{"type":"MultiLineString","arcs":[[404],[405],[406]]},{"type":"LineString","arcs":[407]},{"type":"MultiLineString","arcs":[[408],[409],[410,411],[412,413],[414]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/antarctica_110m.json b/topojson/dist/antarctica_110m.json new file mode 100644 index 00000000000..7060a6d33de --- /dev/null +++ b/topojson/dist/antarctica_110m.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[1,31,32]],[[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]]],"id":"ATA","properties":{"ct":[21.36,-80.47]}}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-25],[-6],[-20],[-21],[-22],[-15],[-24],[-26],[-27],[-28],[-29],[-30],[-31],[-4],[-19],[-7],[-18],[-9],[-10],[-11],[-12],[-13],[-14],[-23],[-16],[-17],[-8],[-5],[-32,-2,-1,33]]}]},"lakes":{"type":"GeometryCollection","geometries":[]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[1,31,32]],[[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]]]}]},"rivers":{"type":"GeometryCollection","geometries":[]},"subunits":{"type":"GeometryCollection","geometries":[]}},"arcs":[[[0,48754],[8114,4403]],[[8114,53157],[5472,-5925],[5827,-2183],[12573,-8325],[9772,-16765],[5629,-2358],[1420,-9516],[3898,-4362],[17423,-220],[9105,-3503],[3360,3169],[5534,14999],[15536,-2121],[5512,-3864],[6209,1725],[999,9780],[-7481,-1684],[-14666,7508],[-10978,12955],[-5823,12861],[-3036,17349],[1032,6161],[-845,21330],[-2815,19301],[24,22408],[-1941,11931],[-246,12741],[1138,7792],[3161,10382],[7370,9074],[13353,5741],[1554,8830],[-6939,15087],[-5128,3144],[-3967,-1571],[-2479,16764],[-3247,4127],[-2134,14941],[-3458,6527],[-1825,7214],[-4032,10547],[-1119,6851],[2029,10337],[652,11785],[-3070,3573],[-875,5723],[892,11036],[-327,21048],[1283,984],[2295,-11343],[1173,10612],[1163,1986],[6973,-7857],[2566,-9200],[2524,4471],[4335,-15736],[1610,-1381],[2612,11632],[1665,1891],[1028,2617],[1965,6496],[2575,-1694],[-1461,12237],[2117,2925],[167,7744],[-3765,11156],[-2903,2049],[-1173,-3366],[-3197,4007],[3399,13912],[6864,-15770],[1042,4901],[-2681,12425],[1148,6428],[4647,3757],[866,6795],[3943,6939],[2977,-4683],[2515,3260],[1299,10462],[1661,4661],[5976,2195],[1731,7814],[-872,9933],[2252,2357],[2050,7496],[2630,-2873],[1515,-12516],[5057,3869],[6914,-4415],[7991,9545],[2117,-5376],[2852,3626],[5137,679],[12297,6217],[2909,10486],[1299,-8879],[2076,-2410],[5109,3498],[-563,15910],[1189,7226],[1416,2769],[2171,-13610],[-1215,-8889],[2194,-6440],[150,-11912],[3293,878],[373,3296],[-555,19770],[3399,58],[2229,-16922],[1895,-5484],[1777,5837],[1719,1696],[3043,-8308],[-767,-19526],[1715,-1411],[2338,4178],[664,17147],[566,3985],[3579,-2359],[4425,-12436],[242,-7894],[2166,593],[2232,4193],[-595,7131],[-2447,13743],[-471,7309],[1936,7300],[939,8001],[-945,7962],[-2923,1930],[-723,11940],[2504,1154],[2771,-2874],[1030,4015],[71,7560],[-2730,9264],[-1285,-6564],[-3406,-4895],[-1538,8932],[-809,9214],[1014,6663],[2561,-1396],[1251,-10524],[2937,3791],[2048,-8041],[3171,8312],[2397,3010],[1497,-9898],[3745,-7756],[1778,5501],[1733,-1401],[2293,8664],[1034,-6830],[3324,1254],[4282,-5673],[3030,5299],[1070,5137],[65,15335],[669,3563],[2039,-2674],[806,-4676],[-1380,-10563],[3054,-4603],[2089,-8322],[2836,10768],[982,-14711],[1945,-4474],[3069,85],[4088,-16078],[3371,5613],[-542,11786],[187,9013],[2636,-1533],[-456,13156],[2408,-4708],[2989,-21111],[2464,3931],[2281,-2864],[-1082,-8433],[1771,-1945],[3138,7731],[2952,-1254],[1932,5782],[6543,11152],[1663,-328],[3391,5235],[4354,12581],[2240,23553],[-129,18764],[-1281,10879],[-626,10095],[447,18508],[-1269,24862],[-1374,9177],[12,20040],[-736,6139],[317,5615],[1314,2464],[2137,-1133],[1475,12119],[-934,4875],[-74,19258],[457,12493],[-801,8993],[1149,2890],[-796,17786],[-1232,-2809],[320,19920],[1103,6769],[887,-11717],[832,-2468],[-350,24758],[1066,3430],[1216,-4010],[67,15327],[457,9682],[937,837],[3614,21495],[-377,6859],[149,11555],[574,4446],[1562,-4912],[2310,23077],[596,-7160],[1458,7398],[3079,24998],[3295,8283],[1135,5541],[454,6113],[4191,12815],[740,-1797],[766,-11889],[-1708,3063],[-750,-6852],[-1684,-4265],[-1093,-12124],[-603,-13885],[133,-7391],[-2403,7398],[-1986,-10039],[-2024,-16757],[-2626,-11893],[-122,-5263],[813,-6629],[-1461,-9579],[-96,-6616],[1387,-10173],[1453,8609],[2119,1157],[-1026,-13904],[-1240,6905],[-778,-7221],[-1959,4093],[-1184,-1754],[1062,-17795],[-811,77],[-1211,13420],[-1671,1988],[-562,-12173],[270,-15406],[-1418,1510],[-1992,-18898],[-633,-1117],[-810,-17029],[-231,-15423],[1852,-3688],[-938,-6835],[1328,-11860],[1981,-5119],[58,7854],[2655,-9696],[-1196,-5122],[907,-10830],[2487,-13321],[-359,-14188],[1509,-8050],[364,-6583],[-1629,-7274],[746,-6814],[1958,-2910],[-1712,-12465],[2258,-467],[731,-13490],[-1155,-9184],[1788,-9269],[-57,-4913],[-2905,-4629],[1007,-8391],[1959,3371],[-337,-19771],[-1402,2793],[177,-11475],[2282,774],[176,-7513],[1976,-4357],[-247,-12168],[-2384,-10289],[-474,-26063],[-2183,-8796],[2599,-2908],[-926,-6341],[-1687,-41],[-1157,-5744],[511,-5825],[-2351,-13374],[-3787,-4290],[2411,-8291],[-2180,-8806],[-10936,-25478],[-4369,-5788],[-707,-5431],[6032,-16572],[-11,-31345],[-2300,-14697],[-3189,-5799],[-5837,2713],[-6640,11723],[-4640,29070],[66,18509],[-14352,-13628],[189,-8550],[-1798,-11482],[-1359,13636],[-1946,-7335],[1980,-31990],[-242,-12292],[2789,-15241],[-851,-22551],[2506,-21105],[1313,6916],[-984,9722],[903,3947],[3696,-8715],[-855,-3751],[4640,-18650],[-2067,-7592],[3260,-5793],[3946,-12623],[2721,-4069],[6040,-3344],[15107,7045],[11684,11585],[5094,3446],[3215,6360],[1808,19557],[8323,8036],[5111,9241],[2931,23914],[7724,23142],[2747,13487],[2861,3132],[5402,-9735],[1449,-5356],[2759,-18524],[-1324,-4370],[-7760,-6598],[856,-6514],[6863,6904],[3200,-3240],[-224,-12396],[-5663,-4340],[972,-10194],[5773,6050],[2747,-1189],[-113,-22736],[-1609,-2966],[-2898,4833],[-933,-5485],[1858,-6984],[-2041,-10693],[-2451,-4769],[-8319,-8520],[-7166,812],[-3649,10377],[-4576,19803],[-4508,-4475],[-6663,-15077],[-5510,-21908],[-2651,-4625],[-5033,-3088],[-14143,-3091],[-6424,-2872],[-3158,-6061],[-813,-11963],[1356,-8543],[4857,-12032],[5413,-8461],[5661,-4002],[7809,230],[7777,3271],[3277,-9455],[-944,-11958],[3642,-1326],[5260,22216],[5521,11942],[6965,13207],[3191,3119],[9682,2224],[4254,-119],[7057,7686],[13919,29350],[5722,20600],[3571,6080],[7595,2881],[-584,-10931],[3864,-1165],[1630,16242],[-1914,21275],[2444,7385],[-2670,7002],[-8347,1294],[-1525,4276],[-4287,5529],[-1635,9828],[277,13124],[2207,17019],[7474,25484],[3413,6151],[1019,4767],[7398,25756],[198,9255],[5862,9798],[4843,13024],[3652,22514],[1420,20939],[1257,6873],[2590,5549],[8191,35762],[9718,28938],[3776,143],[4627,13575],[1845,11597],[884,12749],[-251,7995],[-1276,1289],[-1480,9171],[-385,8761],[1969,2989],[231,-8040],[1842,-7052],[562,10781],[1574,11367],[-324,8376],[1562,795],[2169,-16695],[400,-18195],[769,-3954],[2057,4838],[693,18931],[-615,16808],[2001,7174],[2437,1286],[739,-2105],[5,-17392],[-1092,-9046],[1254,-3824],[3353,5336],[2674,-1675],[180,33367],[725,9497],[1588,-4159],[-1318,-7350],[977,-6062],[2262,-3557],[-1559,-6600],[852,-18839],[1470,-314],[1190,5678],[1281,-4076],[-369,-8126],[1654,-3282],[2508,17338],[3232,8672],[1703,6549],[1969,16908],[2481,8017],[2503,1881],[1254,-7004],[3143,939],[1742,6094],[2261,3502],[4614,-688],[1792,-4467],[2517,-10921],[1920,-2513],[1981,13203],[4645,-660],[4806,4488],[6823,-757],[4735,-7205],[3398,1751],[5351,-6500],[3148,1701],[3761,8333],[3111,2830],[6445,13400],[5335,5245],[1997,6080],[3437,-2894],[1544,5854],[-290,17697],[-641,5455],[207,10720],[1281,6347],[1961,-2746],[566,-9673],[1323,-4521],[2020,-15344],[2378,-7050],[1393,-10412],[1491,4910],[2308,-13146],[1154,2058],[1326,10878],[895,1238],[-35,26893],[632,5578],[2463,7747],[459,5086],[2858,8601],[2436,12283],[2518,1160],[2057,4877],[1405,7921],[3183,3772],[104,12469],[1619,2733],[1495,-3728],[-430,-10706],[1544,-2599],[3833,13179],[-2344,12441],[465,5725],[1483,2313],[2129,-5826],[191,-6108],[2203,-1062],[-1011,20002],[-48,8226],[1074,10133],[1801,3881],[2223,10484],[4598,4515],[4033,-1819],[1272,-4304],[2345,-16323],[989,-914],[1215,-6301],[147,-5680],[-2136,-4337],[120,-7230],[987,-4457],[1157,1411],[4108,-6074],[293,-9231],[4387,729],[3014,-6899],[1517,-540],[1510,-4166],[2482,6443],[6770,-9821],[7926,-7669],[1630,6584],[887,-389],[824,-36118],[-1176,-8271],[397,-7195],[-401,-13549],[-2240,2443],[-698,-2778],[488,-14995],[1077,-7064],[-2002,-1091],[-908,-4964],[-257,-11928],[772,-5902],[2182,3270],[349,-19391],[4613,-22165],[1429,-5320],[1319,14556],[2746,22805],[999,4896],[-1205,14452],[2682,12171],[1248,3461],[3113,-1811],[1845,5421],[991,10260],[5083,17466],[-113,15740],[1003,7105],[2592,13851],[2588,7436],[3162,5115],[4086,9641],[2633,10029],[1731,12200],[1803,-478],[1574,-3790],[4487,12865],[1872,7263],[1700,91],[3269,-5157],[5503,14411],[2822,-6088],[2349,505],[5238,4985],[1015,-4831],[1489,-778],[1012,3149],[1707,-1645],[4132,6895],[-127,14309],[-580,14088],[2420,-2773],[549,5319],[2192,11776],[1270,-306],[439,-4770],[-1643,-6699],[-979,880],[-398,-6579],[77,-10898],[2397,-7038],[1611,10857],[2910,5515],[3051,-5557],[3474,-2961],[2554,-6423],[2328,-7778],[3527,-7844],[2285,-14310],[1050,1533],[717,12026],[2292,-806],[997,10113],[-384,5860],[1137,8576],[1721,5228],[2581,1865],[2007,7182],[605,-1398],[1415,-12951],[781,-1477],[917,-12299],[962,-4258],[2163,4746],[1545,-1695],[2132,-17804],[1907,-6897],[1599,-1828],[1848,4033],[1851,372],[3943,5217],[368,-9896],[774,-585],[8052,15888],[5101,16779],[3593,-14307],[1325,-17405],[3849,-148],[1198,11118],[-186,9832],[939,12322],[-1338,8700],[609,4423],[5333,-12056],[2593,1106],[2245,3725],[2034,-4883],[1654,14708],[-736,13188],[216,9541],[838,2079],[1659,-12507],[-577,-17030],[3078,-15331],[1575,756],[2169,-2653],[1291,-5329],[3020,-1862],[2352,-7662],[4994,-2461],[1760,-10146],[2395,7195],[1097,-3302],[589,-6355],[2250,43],[2072,11352],[2529,-1157],[1033,-7276],[-597,-9237],[-3017,-7659],[-796,-7769],[2171,49],[2867,-13610],[2098,5158],[1756,-462],[471,-17479],[-1542,-2125],[944,-6934],[1989,4586],[1909,-5594],[3336,6653],[139,-14094],[895,-4053],[1388,354],[1470,10435],[3937,6115],[2422,-10380],[-674,-9537],[1154,-9461],[1584,4922],[3780,-12588],[1304,3623],[2741,-7723],[2150,-3354],[1817,-14035],[2240,-8001],[302,-8478],[1221,-7850],[1798,-3729],[2516,3021],[1382,-14260],[1598,5251],[4904,-5413],[3405,188],[513,-3380],[2387,-3861],[1521,-17286],[1771,-4258],[3485,-15707],[809,8749],[1377,-15777],[-2196,-7287],[-673,-8616],[760,-16714],[-1556,-15121],[-1577,-7866],[29,-8232],[-1621,-9307],[-1412,4285],[-2093,-2350],[-1513,-7773],[-5278,-17328],[1436,-15598],[-4566,-2617],[-804,2094],[-1840,-13925],[-331,-16604],[3715,-1465],[2143,-5904],[-228,-6279],[-5004,4150],[-797,-9942],[1035,-2111],[-695,-13437],[-1077,-3146],[1503,-13524],[-177,-17251],[2381,-22837],[-581,-11978],[2960,-3363],[-427,-14649],[-2696,-7966],[1193,-3780],[4334,6121],[2278,-13163],[-5527,-2535],[-3816,-9784],[-698,-10066],[-4464,222],[-1184,-4683],[-1072,-20416],[643,-12033],[-628,-5624],[2294,-26517],[-1224,-8825],[-66,-18855],[4277,-13488],[4922,-22028],[-7047,-6609],[1284,-4940],[8391,4126],[2591,-11418],[3145,-6473],[-589,-4895],[4951,-5429],[-1610,-9849],[6455,-8519],[4280,-1840],[9808,-18116],[3961,-1742],[7530,-9781]],[[998019,55542],[1980,-6844]],[[54653,240168],[-1618,-250],[-6675,12546],[-2282,9753],[-644,8994],[1846,6915],[896,9526],[1990,1208],[3787,-5690],[899,-8227],[3388,-13886],[1683,-12879],[-3270,-8010]],[[307504,269709],[-3207,1467],[3387,19376],[3246,8869],[2795,4468],[3322,-3934],[-3445,-8746],[-6098,-21500]],[[963883,346190],[3626,-860],[2466,-3619],[-2081,-10244],[-2106,2998],[-1632,-4044],[-2088,3317],[-312,15630],[2127,-3178]],[[89902,343319],[-1081,-87],[-2068,4737],[431,9612],[2380,-4484],[635,-7729],[-297,-2049]],[[288509,328787],[1192,-10930],[-2535,-4797],[-3987,-218],[-2855,5693],[-1320,-2202],[-3176,12018],[2315,12338],[550,10400],[3732,8426],[2210,1206],[2022,-7310],[800,-20961],[1052,-3663]],[[85773,355577],[-3106,2104],[-792,6211],[2293,2612],[1605,-10927]],[[134179,478703],[1527,-3906],[326,-8792],[-2430,3763],[577,8935]],[[147071,464449],[-2259,7738],[100,7346],[2629,-6590],[-470,-8494]],[[176328,483105],[-2647,4410],[3569,9004],[-922,-13414]],[[166264,502017],[3457,-957],[195,-8729],[-3007,-12440],[-1903,-4372],[-4915,1795],[-789,6310],[1012,11127],[-1630,5705],[949,6726],[6631,-5165]],[[152527,520088],[1229,-10944],[-894,-8839],[2859,3702],[1511,-10678],[-420,-9351],[-2316,1453],[-1259,6118],[-2448,5722],[-1492,14073],[-1849,4585],[810,10780],[2372,1329],[1897,-7950]],[[250839,528544],[-1640,-920],[-188,7816],[2237,1839],[-409,-8735]],[[292948,504296],[-3323,8928],[-1282,11543],[1428,6010],[275,7868],[1711,141],[1871,-6918],[-381,-8971],[143,-14396],[-442,-4205]],[[285014,533980],[-2771,-9365],[-1225,353],[-150,9505],[1565,1013],[469,7172],[2543,1180],[-431,-9858]],[[247384,532063],[-2041,16052],[1836,3240],[550,-6479],[-345,-12813]],[[226905,572943],[933,9989],[1451,-6769],[1699,8553],[1637,-1152],[399,-6277],[1705,-8176],[223,-7911],[-1750,-9866],[-3629,1768],[-3250,-1257],[-749,5466],[-2999,224],[-5881,6621],[-1176,4969],[671,5203],[4363,8028],[862,-7859],[2945,8655],[1227,6218],[1348,-4381],[-29,-12046]],[[292874,623451],[-2200,-1436],[-354,7154],[4242,6627],[191,-7245],[-1879,-5100]],[[292529,676342],[574,-10180],[-470,-5907],[-3403,949],[-598,11142],[3897,3996]],[[327681,670076],[-552,2366],[-1038,19596],[1049,1717],[793,-9636],[-252,-14043]],[[307221,675720],[841,-23694],[1115,-8636],[688,-10886],[708,-38819],[-509,-24914],[-1970,-9722],[-89,-7414],[-1061,-4623],[-2090,-2471],[-4966,293],[-1788,9742],[1355,8850],[3758,-1967],[491,3965],[-586,9556],[-2511,14051],[-1753,3030],[-230,-6885],[-1870,-187],[317,-9051],[-1515,-9057],[-1858,4444],[-3422,15927],[-591,9770],[2456,-2627],[-735,8807],[4246,6875],[1814,7320],[2926,529],[2319,10431],[-1485,7022],[580,11647],[1008,7043],[-2641,14410],[-13,11066],[569,10543],[-1152,7650],[1759,7190],[2522,5725],[1258,-4167],[262,-9790],[1843,-20976]],[[311030,768656],[-1635,-15460],[-960,703],[-547,12046],[1055,7822],[843,18160],[1642,1203],[363,-16342],[-761,-8132]],[[840327,801148],[-2013,179],[-1545,27295],[-133,9995],[698,2202],[972,-16159],[2035,-15762],[-14,-7750]],[[317028,834724],[-932,2463],[692,9782],[799,-1367],[-559,-10878]],[[324241,894395],[578,-5231],[-1738,-12049],[-1624,5016],[123,5038],[1738,12600],[923,-5374]],[[339425,915651],[1828,-7411],[-560,-10658],[-2361,-2579],[-536,16797],[810,5687],[819,-1836]],[[347028,944705],[-728,-6326],[-1196,3110],[-1814,-5991],[-25,8374],[2180,5460],[1583,-4627]],[[332504,973716],[-119,-8970],[-2504,6568],[2623,2402]],[[338749,999999],[1046,-4712],[-2763,-9845],[-159,9404],[1876,5153]],[[998019,55542],[-998019,-6846]],[[0,48696],[0,55],[8114,4406]],[[0,48754],[0,-58]]],"bbox":[-180,-85.58276367299999,180,-61.91226959299996],"transform":{"scale":[0.00036000036000036,0.000023670517750517778],"translate":[-180,-85.58276367299999]}} \ No newline at end of file diff --git a/topojson/dist/antarctica_50m.json b/topojson/dist/antarctica_50m.json new file mode 100644 index 00000000000..29d43011e6a --- /dev/null +++ b/topojson/dist/antarctica_50m.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[35,1,36]],[[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]]],"id":"ATA","properties":{"ct":[21.35,-80.47]}}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-6],[-25],[-27],[-28],[-21],[-20],[-22],[-23],[-15],[-26],[-29],[-30],[-31],[-32],[-33],[-34],[-35],[-4],[-12],[-7],[-9],[-8],[-10],[-11],[-5],[-13],[-14],[-19],[-17],[-18],[-16],[-24],[-37,-2,-1,37]]}]},"lakes":{"type":"GeometryCollection","geometries":[]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[35,1,36]],[[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]]]}]},"rivers":{"type":"GeometryCollection","geometries":[]},"subunits":{"type":"GeometryCollection","geometries":[]}},"arcs":[[[0,48754],[4734,3303]],[[4734,52057],[-2215,3814],[73,291],[1670,-909],[3852,-2096],[5472,-5925],[3436,-1287],[2391,-896],[11132,-7371],[1441,-954],[623,-1271],[627,-1281],[1071,-898],[849,-711],[1308,-4896],[3429,-4140],[1865,-3568],[3353,-118],[57,-146],[87,-221],[-468,-737],[-521,-821],[567,-658],[468,-544],[1692,719],[394,168],[384,-1349],[817,-2868],[215,-5184],[4,-115],[1716,-2460],[244,605],[1246,3087],[2166,-1324],[-148,-909],[-264,-1626],[-553,-904],[-509,-831],[5388,-1041],[2386,-461],[-453,1283],[-53,152],[-557,3350],[290,189],[314,206],[1696,-2669],[394,-621],[783,-202],[3795,-978],[3440,572],[47,-28],[2758,-1662],[298,-1498],[2002,-105],[4000,-210],[181,1380],[124,946],[1181,1558],[92,122],[208,-97],[1574,-740],[2246,6109],[1468,6825],[1708,1937],[112,128],[362,-49],[15174,-2072],[3598,-2523],[1914,-1341],[2524,136],[1223,66],[2462,1523],[1263,3517],[1558,4338],[-1463,1547],[-359,378],[-7481,-1684],[-521,126],[-2652,644],[-11493,6738],[-3408,4022],[-7570,8933],[-3055,5225],[-981,2707],[-1787,4929],[-2373,11331],[-367,2781],[-239,1814],[-57,1423],[789,3740],[243,2421],[-30,5710],[-28,5325],[-334,5947],[-212,2036],[-241,2312],[-2077,14246],[-738,5055],[-74,5223],[-2,146],[160,7308],[20,473],[164,3804],[-244,5454],[-1941,11931],[-430,6122],[-62,879],[-9,2306],[28,385],[227,3049],[1138,7792],[1462,5260],[1111,4002],[588,1120],[6097,7506],[1273,1568],[2303,990],[11050,4751],[801,1165],[549,800],[565,2279],[113,2310],[-474,2276],[-1816,3270],[-1302,2344],[-3821,9473],[-5128,3144],[-1071,-1018],[-1370,-1301],[-1526,748],[-1857,9384],[-317,3488],[-110,2802],[-109,611],[-86,479],[-3247,4127],[-241,1265],[-525,2761],[-1368,10915],[-1890,3568],[-1568,2959],[-1825,7214],[-4032,10547],[-676,2692],[-27,253],[-416,3906],[-51,1959],[31,848],[55,1553],[659,3404],[1335,2573],[346,6251],[306,5534],[-3050,3549],[-20,24],[-129,-394],[-1151,-3522],[223,5308],[182,4331],[892,11036],[-74,9053],[-6,753],[-255,2504],[-7,721],[-7,738],[22,7279],[304,1518],[534,-291],[445,-243],[135,-1687],[125,-1566],[544,-3179],[1491,-4911],[356,1330],[604,2258],[143,3108],[-138,1685],[208,2231],[1163,1986],[2240,-2161],[3187,-3074],[1546,-2622],[300,-1204],[266,-1069],[213,-2116],[-1839,-2363],[358,-1041],[936,-403],[2332,-1004],[523,4212],[546,1459],[128,341],[662,-769],[665,-772],[4335,-15736],[901,-1576],[207,57],[502,138],[1067,3377],[-408,862],[-1250,2640],[945,1802],[908,-2118],[566,-1322],[344,1272],[100,370],[-6,1088],[-7,1315],[115,766],[238,1580],[1213,1379],[452,512],[1028,2617],[1090,6138],[568,1387],[307,-1029],[206,-1437],[721,-5030],[112,-229],[173,-350],[835,1372],[528,3980],[-1163,9739],[-298,2498],[742,660],[1730,-2844],[-355,5109],[-1678,3283],[615,624],[1326,1347],[3,950],[2,672],[-93,792],[-8,76],[-1306,3870],[-2459,7286],[-2903,2049],[-63,-181],[-1110,-3185],[-817,584],[-20,14],[-12,18],[-2348,3391],[-64,3500],[226,1364],[21,130],[914,320],[307,107],[197,315],[1290,2059],[34,237],[19,132],[-520,1401],[-79,213],[531,3438],[523,696],[2520,-5396],[425,-910],[1540,-4562],[2379,-4902],[506,171],[305,952],[234,733],[-3,3045],[-683,1941],[-904,2570],[-416,2348],[-498,2817],[-180,2749],[141,1026],[488,3540],[189,680],[330,1182],[1506,-22],[2762,2792],[379,987],[866,6795],[1176,1944],[737,1216],[204,-232],[394,-446],[771,2400],[661,2057],[834,-2205],[745,-1969],[886,-322],[512,-187],[1000,1296],[1515,1964],[697,4350],[602,6112],[551,1548],[1110,3113],[3208,880],[1026,2421],[1391,-884],[351,-222],[180,814],[1551,7000],[-461,3108],[-238,1609],[-164,4936],[-9,280],[1178,2031],[261,79],[813,247],[2050,7496],[2630,-2873],[478,-3153],[361,-2376],[318,-6169],[358,-818],[3013,3290],[2044,579],[6914,-4415],[3862,4612],[4129,4933],[516,-647],[406,-508],[683,-3349],[512,-872],[406,218],[658,356],[1788,3052],[2213,292],[2924,387],[12297,6217],[2909,10486],[1299,-8879],[549,-1261],[92,-212],[1435,-937],[1435,1213],[1102,932],[1003,-598],[1569,1951],[54,2569],[-49,2087],[-653,7772],[85,3482],[638,4835],[551,2391],[539,1054],[877,1715],[821,-1738],[93,-784],[54,-459],[-29,-555],[-41,-779],[-449,-1573],[-272,-4453],[199,700],[697,2453],[196,36],[550,102],[101,-320],[103,-327],[309,-3551],[-161,-2362],[-835,-3672],[-227,-3123],[-153,-2094],[317,-1510],[626,181],[632,183],[262,-2238],[357,-3056],[166,-5816],[-14,-5395],[-2,-701],[998,-681],[1126,765],[1169,794],[271,2391],[102,905],[-408,7821],[-59,1141],[-53,6464],[-35,4344],[168,1551],[498,368],[197,146],[2536,-2007],[2229,-16922],[991,1978],[290,-1431],[312,-1544],[-384,-2992],[417,-909],[269,-586],[1795,-71],[107,508],[42,200],[-35,1084],[-132,4116],[419,414],[1300,1282],[3043,-8308],[81,-956],[-223,-7992],[-101,-3610],[-524,-6968],[325,-1245],[847,-101],[543,-65],[1092,1951],[1246,2227],[331,1528],[21,562],[15,417],[-189,4069],[77,3267],[7,274],[62,1081],[340,5949],[269,2864],[297,1121],[1488,-981],[2091,-1378],[522,-1043],[564,-1126],[-52,-257],[-45,-226],[3436,-9784],[186,-1966],[76,-2544],[-18,-3113],[-2,-271],[490,-993],[298,282],[1378,1304],[854,1605],[1378,2588],[-321,3848],[-274,3283],[-2447,13743],[-612,5458],[80,1046],[61,805],[988,3725],[948,3575],[559,-36],[466,-30],[-86,8067],[-843,7108],[-102,854],[-91,355],[-209,810],[-987,1070],[-1636,-305],[-30,266],[-261,2338],[-417,7607],[-15,1729],[761,853],[515,578],[456,-103],[772,-174],[1092,-1671],[874,-1338],[805,135],[108,418],[922,3597],[71,7560],[-2730,9264],[-582,-902],[-489,-3939],[-214,-1723],[-3406,-4895],[-214,662],[-201,625],[-1123,7645],[-809,9214],[22,820],[69,2546],[108,845],[56,447],[759,2005],[1181,-644],[1380,-752],[191,-857],[132,-590],[124,-2831],[-182,-1800],[218,-2152],[70,-694],[698,-1600],[1503,1940],[1434,1851],[476,-1300],[289,-788],[903,-4188],[380,-1765],[3171,8312],[2397,3010],[71,-305],[578,-2464],[588,-4948],[260,-2181],[938,-2360],[1125,-2833],[632,-963],[1050,-1600],[321,179],[350,195],[304,3571],[803,1556],[656,-530],[1077,-871],[1102,3441],[17,463],[94,2578],[-270,6464],[136,1133],[1099,-4903],[115,-512],[120,-2051],[914,-4779],[3324,1254],[1376,-1823],[2906,-3850],[425,315],[399,1963],[2206,3021],[945,4225],[125,912],[260,7425],[-5,1310],[-5,1470],[-140,3882],[-45,1248],[-253,842],[-346,1150],[787,975],[481,596],[893,-1170],[1146,-1504],[364,-1223],[176,-589],[266,-2864],[-21,-1539],[-3,-202],[-166,-1625],[-1190,-7197],[42,-1542],[766,-1373],[424,-758],[822,1038],[633,-1245],[367,-723],[511,-2655],[870,-4524],[708,-1143],[315,961],[1042,3179],[1479,6628],[169,-2532],[813,-12179],[631,-1451],[1314,-3023],[1005,28],[2064,57],[713,-2173],[60,-183],[384,-2067],[687,-3691],[1002,-3557],[1242,-4407],[731,-331],[1350,2020],[903,2746],[387,1178],[202,4872],[-744,6914],[-30,6981],[217,2032],[996,75],[762,-4398],[212,-17],[635,-50],[31,2857],[-287,3859],[-328,2685],[-135,1108],[2,2755],[292,2749],[830,-1622],[1578,-3086],[854,-5104],[2135,-16007],[2464,3931],[525,36],[1224,83],[463,-2601],[69,-382],[-63,-1324],[-49,-1017],[-346,-2919],[-624,-3173],[279,-1772],[146,-929],[1339,751],[7,5],[3138,7731],[855,-1091],[914,-1168],[1183,1005],[292,875],[1640,4907],[3986,6794],[2557,4358],[1663,-328],[3391,5235],[4354,12581],[1164,12235],[1076,11318],[-129,18764],[-532,6750],[-749,4129],[-464,4932],[-23,731],[-139,4432],[498,7873],[84,4747],[-58,2515],[-77,3373],[-1269,24862],[-414,4235],[-960,4942],[-26,1307],[-107,5399],[38,1165],[48,1509],[120,1391],[108,1250],[-55,4711],[-114,3308],[-621,5180],[-115,959],[317,5615],[366,722],[294,579],[500,888],[154,275],[558,-1655],[1579,522],[841,6910],[634,5209],[-53,2229],[-279,836],[-602,1810],[-164,5869],[61,9029],[29,4360],[273,5929],[590,5285],[31,280],[-437,999],[-801,8993],[466,1172],[683,1718],[32,1015],[139,4403],[-357,311],[-121,105],[-10,3976],[188,1678],[194,1733],[486,765],[212,3347],[-799,232],[-760,221],[-701,-1597],[-531,-1212],[-109,4358],[322,4798],[-145,6379],[137,2390],[115,1995],[123,756],[980,6013],[387,-87],[140,-2031],[-25,-1362],[-50,-2685],[322,-4115],[113,-1437],[609,-3506],[223,1038],[-350,24758],[38,1210],[4,121],[447,1831],[244,113],[333,155],[299,-1559],[319,-1660],[267,-353],[331,-438],[92,8159],[-25,7168],[446,9448],[11,234],[551,492],[386,345],[353,4283],[353,2188],[215,-211],[293,-289],[945,6115],[1455,9409],[411,4382],[-768,2414],[-20,63],[-58,6236],[207,5319],[574,4446],[676,-2126],[886,-2786],[245,2802],[851,9711],[543,4217],[151,2950],[187,3656],[333,-259],[290,-4193],[-86,-2272],[210,-372],[182,-323],[250,1943],[486,3770],[722,1685],[3079,24998],[3295,8283],[1135,5541],[96,3677],[358,2436],[2040,5212],[504,3502],[1647,4101],[300,-270],[440,-1527],[766,-11889],[-1,-2133],[-195,-2393],[-237,45],[-575,109],[-107,1933],[-11,202],[95,1490],[44,673],[-70,2994],[-651,143],[-537,-4903],[-213,-1949],[-334,-716],[-551,-1178],[-278,587],[-306,-1736],[-215,-1222],[-353,-3906],[-740,-8218],[-452,-8184],[-94,-3562],[-57,-2139],[16,-1488],[7,-638],[219,-481],[-51,-2208],[-58,-2576],[-280,166],[-165,99],[-303,1071],[-633,2238],[-294,3710],[-540,85],[-188,29],[-897,-3036],[-635,-4083],[-454,-2920],[-2024,-16757],[-1229,-5565],[-1397,-6328],[-148,-3136],[3,-214],[23,-1913],[33,-220],[616,-4110],[91,-1283],[73,-1016],[-1016,-6659],[-445,-2920],[-47,-1506],[-51,-1631],[2,-3479],[1387,-10173],[1453,8609],[2119,1157],[30,-1606],[-85,-2456],[-6,-173],[-484,-4851],[-481,-4818],[-635,-367],[-252,4111],[-129,2090],[-224,1071],[-417,-3872],[-361,-3349],[-452,-655],[-39,855],[-70,1518],[-238,1399],[-284,383],[-185,249],[-691,344],[-570,-844],[-614,-910],[-210,-1887],[-9,-81],[593,-3081],[688,-12746],[-811,77],[-191,3880],[-77,1570],[-449,3793],[-494,4177],[-50,260],[-1062,5502],[-133,-594],[-164,-728],[-262,-2452],[6,-2213],[-223,-5046],[-201,-2870],[-144,-2044],[166,-8614],[323,-46],[275,-4014],[-7,-187],[-22,-581],[-394,-1667],[-71,-297],[-1418,1510],[-1301,-2644],[-82,-1041],[-180,-2280],[449,-1462],[87,-281],[-105,-1892],[-107,-1928],[-753,-7370],[-397,-1837],[-236,720],[-181,-3071],[-295,-4984],[-334,-8974],[-26,-4113],[-52,-8273],[-61,-1199],[-92,-1838],[1212,-1499],[557,3194],[67,-4389],[16,-994],[-938,-6835],[354,-4902],[974,-6958],[1981,-5119],[438,1105],[-307,2458],[-73,4291],[1073,6028],[1019,1253],[1219,-809],[39,-288],[91,-673],[-174,-1954],[-256,-776],[-311,974],[-176,552],[-656,-1172],[-310,-1377],[-291,-1293],[-446,-3766],[1302,-3639],[532,-2756],[-1196,-5122],[90,-2031],[105,-2412],[317,-3659],[298,-2059],[97,-669],[1788,-7717],[379,-3042],[320,-2562],[99,-4598],[-11,-1727],[-9,-1613],[-99,-1973],[-213,-406],[-181,-346],[55,-3525],[589,-5691],[920,-2359],[104,-1112],[169,-1805],[91,-3666],[-64,-602],[-57,-540],[-619,-3320],[-405,-813],[-302,-608],[-182,-1391],[177,-3658],[67,-372],[502,-2784],[1912,2152],[143,-498],[124,-437],[48,-3902],[-269,-225],[-1266,-6255],[-295,-2209],[-54,-881],[-115,-1866],[17,-1174],[1,-80],[143,-474],[166,-550],[258,58],[259,58],[182,1377],[1250,-936],[532,-9813],[199,-3677],[-64,-2598],[-81,-3258],[-809,-2668],[-201,-660],[456,-4332],[391,-130],[113,-38],[184,-1059],[644,-3710],[136,-3066],[-90,-860],[-103,-987],[-333,-830],[-600,-1494],[-1233,-1441],[-739,-864],[-191,-1653],[7,-1746],[3,-970],[305,-2262],[14,-105],[869,-1655],[1959,3371],[19,-604],[125,-4007],[-219,-7355],[283,-2207],[265,-2072],[-308,-1341],[-502,-2185],[-1402,2793],[-41,-221],[-58,-317],[-117,-3999],[393,-6938],[1207,-751],[692,2842],[383,-1317],[192,-4817],[-16,-2696],[-446,-4049],[-125,-408],[-185,-605],[-208,-1833],[-80,-705],[52,-506],[596,370],[1569,5393],[429,1472],[125,-382],[111,-337],[138,-2767],[-247,-12168],[-56,-629],[-45,-496],[-500,-1012],[-498,-1007],[-99,495],[-104,521],[-148,2327],[-546,277],[-388,-10765],[-243,-10653],[-233,-10169],[2,-5241],[-1648,-6638],[-535,-2158],[110,-367],[449,-1495],[857,1513],[1058,1870],[337,-1030],[-48,-764],[-164,-2635],[-657,-4500],[-269,-1841],[-137,-155],[-593,-671],[-728,596],[-229,189],[-696,-2340],[-461,-3404],[319,-2682],[156,-2551],[36,-592],[-96,-1654],[-53,-902],[-238,-1690],[-287,-2044],[-1677,-7084],[-3787,-4290],[-746,-2065],[-139,-1320],[-57,-541],[358,-1311],[2838,992],[482,-859],[-325,-3187],[-2180,-8806],[-8716,-20305],[-2220,-5173],[-4369,-5788],[-902,-2897],[-44,-368],[-40,-334],[279,-1832],[5222,-13499],[810,-3073],[16,-1249],[229,-18076],[-12,-7683],[-197,-3490],[-47,-847],[-1245,-7953],[-1055,-6744],[-1636,-4656],[-1462,-1076],[-91,-67],[-5837,2713],[-638,906],[-2340,3325],[-1003,2051],[-2659,5441],[-1588,7798],[-1939,13514],[-1113,7758],[66,18509],[-9897,-9398],[-4455,-4230],[-43,-2867],[-27,-1854],[282,-2685],[-9,-438],[-14,-706],[-987,-10099],[-201,-1250],[-215,-1330],[-235,712],[-160,485],[-615,6170],[-744,7466],[-55,153],[-273,751],[-3073,-2281],[1455,-5958],[390,-5317],[581,-7921],[1009,-18752],[-131,-6691],[-111,-5601],[1930,-8109],[824,-5156],[35,-1976],[-426,-7366],[-268,-4641],[-157,-10544],[92,-1305],[479,-6811],[1172,-7868],[763,-5121],[255,-298],[109,-128],[882,3923],[38,1940],[29,1479],[-984,9722],[-61,930],[54,749],[451,1123],[459,1145],[676,-1180],[1048,-1830],[1049,-3034],[923,-2671],[-211,-478],[-683,-1546],[39,-1727],[2005,-7151],[1393,-4964],[1242,-6535],[-264,-687],[-414,-1080],[-651,-259],[-503,-201],[-2842,2361],[-1886,1566],[-977,-760],[47,-605],[5423,-7927],[381,-160],[2851,-1198],[28,-4435],[1177,-4347],[692,-2555],[2077,-5721],[715,-1069],[2006,-3000],[6040,-3344],[7500,2445],[7607,4600],[8934,8859],[2750,2726],[5094,3446],[2272,3259],[337,1110],[606,1991],[586,11090],[67,1267],[544,4405],[371,1700],[240,1095],[8323,8036],[1589,2391],[1677,2523],[1845,4327],[522,2448],[496,3918],[336,2658],[1577,14890],[4075,11250],[1300,3590],[395,1397],[1954,6905],[2747,13487],[1416,3687],[1445,-555],[2300,-4145],[3102,-5590],[950,-3512],[499,-1844],[518,-4038],[477,-3717],[1481,-7641],[230,-2541],[53,-587],[-138,-746],[-338,-1827],[-848,-1797],[-7760,-6598],[-967,-3841],[165,-2086],[1658,-587],[6863,6904],[1323,-646],[1122,-547],[351,-951],[404,-1096],[306,-5392],[174,-3064],[-13,-551],[-8,-329],[-184,-824],[-499,-2236],[-5663,-4340],[-339,-906],[-44,-509],[-89,-1023],[469,-5760],[975,-1996],[2667,2795],[3106,3255],[1273,1],[965,1],[509,-1191],[90,-2036],[58,-1322],[9,-2071],[-135,-2258],[-5,-83],[-130,-14966],[-75,-308],[-467,-1914],[-860,-600],[-207,-144],[-1780,2126],[-1118,2707],[-871,-729],[-160,-1458],[-77,-708],[175,-2590],[1349,-2736],[345,-1730],[160,-1352],[2,-674],[2,-492],[-1935,-10135],[-106,-558],[-2451,-4769],[-4518,-4627],[-3801,-3893],[-4444,-676],[-2722,1488],[-1500,3062],[-128,263],[-2021,7052],[-1144,5031],[-529,3707],[-758,3208],[-1005,4251],[-696,2203],[-444,1403],[-1051,502],[-3457,-4977],[-6663,-15077],[-772,-2335],[-98,-295],[-4640,-19278],[-982,-2567],[-171,-211],[-1498,-1847],[-1707,-1047],[-3326,-2041],[-14143,-3091],[-440,-197],[-5984,-2675],[-1902,-3651],[-1256,-2410],[-599,-3813],[-304,-5475],[90,-2675],[707,-4453],[649,-4090],[1359,-4424],[3498,-7608],[5413,-8461],[5661,-4002],[2197,-299],[5612,529],[3045,1281],[4732,1990],[2094,-4534],[937,-3899],[246,-1022],[-12,-848],[-7,-478],[-477,-4013],[-160,-1342],[-288,-5277],[187,-2213],[595,-1475],[1756,255],[213,406],[891,1701],[2375,10029],[2885,12187],[291,807],[916,2550],[4314,8585],[2124,2840],[1009,1350],[1399,3291],[2433,5726],[1477,2249],[1714,870],[9682,2224],[2545,-71],[1709,-48],[7057,7686],[2569,4790],[3255,6069],[8095,18491],[3343,10293],[1172,5080],[1207,5227],[3571,6080],[6006,3242],[222,335],[999,1510],[294,-1763],[74,-443],[-605,-9868],[-4,-51],[25,-1012],[1579,-1974],[69,-86],[2216,895],[646,7667],[503,1939],[288,2575],[46,415],[50,1244],[97,2402],[-134,3326],[-1752,16411],[-2,80],[-26,1458],[1028,3108],[1416,4277],[21,936],[-52,597],[-168,1902],[-729,2163],[-1742,1404],[-4913,762],[-3434,532],[-1525,4276],[-4287,5529],[-1097,4348],[-538,5480],[29,1988],[95,4285],[153,6851],[161,1868],[846,4292],[123,629],[1077,10230],[1496,7516],[502,864],[978,1682],[2070,8194],[2428,7228],[1945,3507],[1468,2644],[612,3230],[68,360],[339,1177],[7398,25756],[728,3701],[-530,5554],[709,1266],[2554,4562],[502,1359],[420,1135],[141,2370],[1259,-733],[277,-161],[858,1660],[3985,11364],[2068,10667],[1584,11847],[643,7498],[40,457],[208,5600],[529,7384],[613,4322],[644,2551],[2590,5549],[4231,17679],[1726,7880],[2234,10203],[5269,15689],[4449,13249],[1010,1615],[1383,-2594],[828,672],[555,450],[1513,4439],[3114,9136],[922,4734],[200,1026],[318,2568],[405,3269],[884,12749],[54,4116],[-172,3187],[-133,692],[-1276,1289],[-600,3009],[-389,1949],[-491,4213],[-161,3672],[-224,5089],[575,1804],[764,2394],[187,10],[250,13],[94,-596],[99,-636],[118,-4125],[113,-3915],[678,-4500],[473,-3141],[691,589],[235,6157],[9,127],[318,4497],[1133,8183],[441,3184],[-17,2175],[-861,1844],[-184,2038],[329,1033],[409,1286],[734,374],[828,421],[378,-1146],[6,-1416],[641,-5872],[106,-478],[358,-1614],[680,-6169],[255,-4775],[2,-28],[62,-11732],[81,-1660],[106,-545],[663,-3409],[293,688],[1764,4150],[89,2430],[604,16501],[-98,7708],[-60,4710],[-394,2668],[-26,701],[-37,1021],[815,4288],[1186,2886],[1279,675],[1158,611],[344,-397],[168,-194],[51,-341],[176,-1173],[243,-8054],[-43,-1673],[-195,-7665],[-637,-5276],[-455,-3770],[560,-2832],[148,-751],[546,-241],[1291,2054],[2062,3282],[1075,141],[969,127],[101,-642],[194,-1232],[88,-18],[247,-51],[937,1759],[598,1123],[39,851],[-114,890],[-673,1639],[-605,1472],[-61,20869],[59,4764],[187,3106],[227,3788],[311,2603],[416,696],[349,582],[633,-1056],[206,-2690],[-16,-1691],[-26,-227],[-321,-2786],[-971,-4337],[-24,-2457],[1001,-3605],[1135,-1785],[1127,-1772],[-51,-1415],[-1256,-2973],[-118,-1040],[-134,-1172],[11,-5341],[58,-1735],[51,-1509],[403,-5643],[329,-4611],[1470,-314],[467,2226],[723,3452],[771,205],[58,-254],[227,-993],[225,-3034],[-369,-8126],[838,-2167],[585,-1513],[143,247],[88,151],[258,2313],[798,7138],[1032,5605],[420,2282],[3232,8672],[774,2978],[929,3571],[544,3990],[154,1126],[794,9009],[155,904],[322,1879],[2481,8017],[1469,2432],[1034,-551],[976,-5450],[278,-1554],[1139,-1353],[1026,1173],[978,1119],[923,3228],[819,2866],[2261,3502],[928,255],[1183,325],[1354,-686],[1149,-582],[1792,-4467],[2517,-10921],[750,-982],[1170,-1531],[1207,10175],[432,1688],[342,1340],[1503,-214],[3142,-446],[2917,1617],[1403,2133],[486,738],[1020,186],[1125,206],[4678,-1149],[4735,-7205],[3398,1751],[967,-1174],[4384,-5326],[1200,648],[1948,1053],[2437,5399],[1324,2934],[943,287],[427,130],[1741,2413],[2561,5326],[3884,8074],[3009,2958],[2326,2287],[1096,4179],[901,1901],[917,71],[710,55],[582,-971],[1228,-2049],[541,829],[320,490],[571,2130],[34,743],[78,1662],[-290,17697],[-434,3692],[-207,1763],[2,1444],[5,2983],[200,6293],[778,4796],[87,269],[416,1282],[765,392],[116,59],[61,-19],[362,-115],[384,-1789],[273,-1274],[566,-9673],[1323,-4521],[748,-4916],[462,-3040],[148,-2694],[662,-4694],[1163,-4768],[593,-1113],[622,-1169],[1393,-10412],[540,-451],[607,3422],[344,1939],[220,8],[292,-1389],[505,-2399],[474,-3439],[817,-5927],[1154,2058],[992,8135],[334,2743],[208,141],[626,424],[61,673],[57,18964],[-92,7929],[632,5578],[2118,6661],[345,1086],[459,5086],[2858,8601],[776,3803],[702,3439],[141,1076],[261,2005],[306,1078],[250,882],[2518,1160],[2057,4877],[427,2406],[978,5515],[3183,3772],[128,4666],[55,1996],[-22,1603],[-57,4204],[443,2022],[130,592],[1046,119],[523,-1306],[972,-2422],[217,-1315],[-578,-4219],[-32,-2400],[-37,-2772],[724,-2141],[820,-458],[3833,13179],[315,1647],[434,2260],[78,1818],[8,201],[-684,3895],[-533,-857],[-565,-3008],[-435,-221],[-196,636],[-303,980],[-235,1946],[-139,1147],[-21,486],[-68,1511],[19,934],[61,2987],[156,731],[229,1073],[1483,2313],[1116,-1935],[44,-172],[969,-3719],[69,-2195],[122,-3913],[537,-1375],[1666,313],[274,731],[206,553],[462,1801],[-1181,3028],[-242,3901],[19,757],[21,837],[576,4578],[-199,2266],[-805,1318],[-142,232],[-68,2784],[-41,1711],[2,144],[59,3587],[290,4741],[784,5392],[1760,3793],[41,88],[746,4433],[486,2889],[197,627],[794,2535],[1891,1856],[2707,2659],[1973,-889],[2060,-930],[1272,-4304],[2345,-16323],[989,-914],[815,-4226],[400,-2075],[59,-649],[129,-1434],[-7,-594],[-34,-3003],[-2136,-4337],[61,-3649],[59,-3581],[987,-4457],[505,616],[652,795],[2119,-3133],[1989,-2941],[141,-719],[150,-764],[335,-3765],[-101,-283],[-246,-695],[-882,1716],[-132,-1734],[26,-177],[178,-1216],[824,-1594],[2518,-452],[1869,1181],[1766,-4785],[628,-1064],[620,-1050],[1004,-358],[513,-182],[542,-1495],[968,-2671],[1250,4851],[1232,1592],[6770,-9821],[7926,-7669],[990,1540],[304,3136],[54,551],[282,1357],[439,526],[121,145],[132,-427],[195,-633],[281,-10531],[306,-11505],[106,-6273],[131,-7809],[-40,-2198],[-10,-536],[-222,-2019],[-167,-651],[-737,-2867],[-901,-1037],[-389,-2447],[-320,-2014],[184,-753],[118,196],[1270,2121],[506,119],[398,93],[-469,-3473],[-854,-2847],[-22,-3156],[168,-32],[225,-42],[236,-1150],[187,-911],[77,-2685],[-418,-2726],[-154,-52],[-892,-305],[-1194,2800],[-137,-361],[-506,-1343],[-16,-315],[-39,-759],[488,-14995],[128,-259],[600,-1214],[125,-1250],[199,-1982],[25,-2359],[-48,-183],[-861,-3273],[-586,29],[-507,2336],[-311,-781],[-115,-288],[-243,-1966],[-239,-1929],[-52,-2392],[-205,-9536],[772,-5902],[1589,2380],[593,890],[221,-3117],[115,-4591],[-40,-3353],[-35,-2853],[65,-4037],[23,-1440],[1600,-7691],[3013,-14474],[859,-3200],[570,-2120],[227,1351],[227,2753],[865,10452],[1020,8691],[489,4171],[464,3728],[773,6215],[999,4896],[19,477],[32,768],[-117,2397],[-1095,6871],[-17,1520],[-27,2419],[2682,12171],[1248,3461],[1297,245],[734,139],[190,-765],[226,-913],[666,-517],[344,430],[710,885],[202,1047],[589,3059],[224,3285],[46,674],[721,6301],[1686,4528],[413,1477],[1501,5360],[556,330],[588,349],[243,3887],[96,1535],[67,10038],[-63,2019],[-117,3683],[378,2678],[625,4427],[2592,13851],[2588,7436],[3162,5115],[4086,9641],[1117,4256],[1516,5773],[1304,9194],[427,3006],[228,-60],[1575,-418],[20,-159],[570,-4409],[250,197],[734,581],[2519,7222],[1968,5643],[1872,7263],[1700,91],[1792,-3866],[778,-680],[699,-611],[1619,3029],[731,2699],[471,1738],[1027,2659],[1655,4286],[2822,-6088],[2349,505],[3484,3316],[1754,1669],[739,-3514],[276,-1317],[1489,-778],[1012,3149],[1707,-1645],[845,1861],[837,1845],[1552,1750],[180,-405],[259,-584],[390,2067],[69,361],[-19,5324],[-83,6884],[-25,2101],[-307,4855],[-96,2362],[-208,5092],[17,989],[14,790],[1192,-1366],[1228,-1407],[397,3850],[152,1469],[1053,4455],[245,1038],[894,6283],[162,420],[249,650],[661,-1058],[198,-318],[25,-174],[314,-2188],[100,-2408],[-1643,-6699],[-979,880],[-398,-6579],[43,-6096],[34,-4802],[563,-2978],[539,216],[205,3271],[611,4105],[216,-1106],[-138,-2671],[-86,-1652],[-432,-4199],[919,-2024],[572,3857],[1039,7000],[2910,5515],[1304,-1200],[1747,-4357],[3474,-2961],[2554,-6423],[2328,-7778],[1666,-4294],[1412,-3637],[115,22],[334,65],[2285,-14310],[516,754],[534,779],[23,242],[59,603],[20,3850],[334,5034],[281,2297],[459,702],[550,841],[375,-2666],[908,317],[578,4351],[171,2353],[248,3409],[-122,542],[-266,1177],[-50,1331],[54,2810],[1137,8576],[1103,3351],[618,1877],[1084,784],[1497,1081],[2007,7182],[342,-790],[263,-608],[1415,-12951],[781,-1477],[293,-2427],[449,-3726],[125,-1795],[53,-762],[-1,-1070],[-2,-2519],[359,-1592],[603,-2666],[602,40],[287,2090],[1274,2616],[1209,-519],[7,-3],[329,-1173],[862,-6437],[690,-5158],[580,-6209],[640,-3096],[1267,-3801],[1249,-1428],[350,-400],[1848,4033],[916,184],[935,188],[1423,1883],[2520,3334],[110,-2965],[258,-6931],[774,-585],[8052,15888],[1035,430],[149,639],[215,916],[223,1936],[181,1581],[2730,10353],[255,414],[313,510],[2229,-8872],[1364,-5435],[1058,-13887],[267,-3518],[578,-343],[559,-332],[647,234],[274,2010],[929,126],[734,-1570],[128,-273],[480,1078],[375,3043],[275,5627],[68,1370],[-125,3696],[-5,144],[-39,4172],[-17,1820],[131,1717],[808,10605],[-498,3234],[-840,5466],[-177,2168],[0,7],[95,1430],[691,818],[5333,-12056],[1380,588],[1213,518],[993,1646],[1252,2079],[1152,-609],[237,-2280],[59,-567],[586,-1427],[342,2748],[772,6193],[540,5767],[-210,7147],[-526,6041],[112,4923],[104,4618],[271,1511],[567,568],[1659,-12507],[80,-4518],[-657,-12512],[292,-1453],[2786,-13878],[834,-1140],[741,1896],[916,-1120],[1253,-1533],[848,-3503],[443,-1826],[1616,-2022],[769,88],[635,72],[2352,-7662],[2631,-1296],[2363,-1165],[317,-929],[165,-484],[341,-2108],[134,-2715],[175,-1242],[176,-1246],[240,-756],[212,-666],[875,1465],[878,4313],[642,1417],[747,-1360],[140,-777],[210,-1165],[471,-5085],[118,-1270],[2250,43],[2072,11352],[758,482],[1771,-1639],[404,-2844],[629,-4432],[-38,-2229],[-18,-1061],[-541,-5947],[-1502,-3813],[-1515,-3846],[-445,-3323],[-248,-1851],[-5,-136],[-98,-2459],[177,-200],[1066,-1207],[130,203],[798,1253],[2800,-13291],[67,-319],[66,114],[1165,2017],[867,3027],[895,-235],[861,-227],[54,-559],[69,-707],[348,-16213],[-8,-722],[-16,-1599],[-509,-1987],[-571,1235],[-438,948],[-623,-1493],[-202,-487],[32,-378],[260,-3025],[1477,-1551],[1989,4586],[694,-928],[503,-671],[712,-3995],[1721,3431],[1615,3222],[95,-461],[128,-5676],[-207,-3616],[50,-1786],[73,-2555],[895,-4053],[584,149],[804,205],[258,643],[207,518],[395,2191],[610,7083],[660,2535],[885,-360],[190,-77],[97,256],[1428,3772],[677,-11],[2422,-10380],[16,-281],[197,-3413],[-887,-5843],[411,-3369],[743,-6092],[399,-231],[232,3150],[152,2078],[801,-75],[1438,-4075],[923,-2619],[1419,-5894],[420,340],[363,292],[521,2991],[1125,-3170],[1616,-4553],[2150,-3354],[1817,-14035],[1060,-2374],[155,-737],[1025,-4890],[219,-3324],[-106,-501],[-67,-318],[256,-4335],[534,-4230],[279,-2211],[408,-1409],[1323,1699],[260,-1612],[134,-831],[24,-908],[57,-2077],[153,-68],[65,-29],[894,326],[597,2930],[71,349],[736,-487],[442,-5187],[387,-4543],[361,-2960],[192,-1570],[259,-507],[825,-1607],[618,1823],[-41,312],[-147,1134],[39,1878],[45,2218],[4904,-5413],[3130,173],[275,15],[295,-842],[85,-988],[133,-1550],[-672,15],[-733,17],[595,-3446],[1520,471],[853,265],[824,-1183],[178,-1453],[362,-2961],[-79,-2678],[678,-6515],[382,-3679],[532,-1279],[1239,-2979],[3485,-15707],[86,183],[145,311],[44,2153],[59,2865],[475,3237],[1320,-15129],[57,-648],[-329,-3049],[-493,-2373],[-1374,-1865],[-303,-1779],[-212,-3923],[-158,-2914],[-16,-5024],[286,-576],[114,-228],[376,-10886],[-482,-2323],[-327,-1582],[-728,-10927],[-19,-289],[-785,-3915],[-792,-3951],[14,-3993],[15,-4239],[-564,-5085],[-36,-327],[-266,-1017],[-755,-2878],[-663,2011],[-749,2274],[-2093,-2350],[-564,-1816],[-428,-2684],[-521,-3273],[-1173,-3559],[-1799,-5453],[978,-1865],[810,-1543],[68,-457],[-73,-3486],[-782,195],[-621,155],[-367,1045],[-534,1521],[-1785,-3881],[7,-2007],[164,-2765],[1265,-10826],[-221,-3656],[-872,-353],[-87,-35],[-1349,1723],[-910,-9237],[-77,-1321],[-159,-2703],[-385,-2325],[-324,3734],[45,2357],[52,2735],[-206,4788],[-73,1676],[-508,2685],[-296,-591],[-1265,-8436],[-575,-5489],[-101,-2010],[-568,-11206],[338,-3388],[1311,-517],[2404,-948],[961,-1845],[107,-204],[1075,-3855],[-51,-2714],[-60,-3182],[-117,-383],[-5004,4150],[-797,-9942],[24,-49],[1011,-2062],[-1,-1974],[-198,-4776],[-55,-1328],[-61,-740],[-380,-4619],[-746,-2180],[-331,-966],[460,-4772],[174,-321],[319,-591],[550,-7840],[-46,-4427],[-131,-12824],[-684,-1151],[-564,-5140],[30,-1308],[1135,-626],[1031,-570],[446,-4371],[987,-9671],[84,-6756],[-665,-5222],[205,-1372],[285,-123],[416,-179],[698,1044],[668,999],[383,-2079],[305,-1653],[48,-4700],[21,-2105],[-111,-3411],[-385,-4433],[-1487,-4626],[-871,-858],[-220,-666],[-118,-1816],[1193,-3780],[972,1112],[1571,1797],[1004,2431],[234,2204],[-115,766],[6,527],[5,525],[793,5841],[372,-1842],[60,-1423],[-7,-375],[-23,-1210],[-559,-2663],[2,-106],[19,-1463],[707,-5794],[269,-2204],[344,-1389],[1566,-1933],[136,-167],[1557,-467],[414,-2946],[130,-3466],[-920,-1174],[161,1018],[67,423],[-25,741],[-85,472],[-216,1207],[-1533,2111],[-294,405],[-2832,-3071],[-212,42],[-2483,494],[-1369,-3510],[-2447,-6274],[-166,-1276],[-93,-720],[-114,-6289],[-106,-579],[-219,-1202],[-2306,115],[-2158,107],[-952,-3765],[-232,-918],[-1072,-20416],[643,-12033],[-628,-5624],[580,-7607],[818,-5651],[239,-1649],[294,-3142],[-3089,-5955],[1058,-1746],[95,-159],[176,324],[1351,2496],[946,-1711],[-174,-1717],[-936,-2474],[-820,-2166],[59,-465],[473,-3720],[5,-15655],[-28,-1278],[-43,-1922],[859,-1635],[1011,-1924],[-15,-2603],[-14,-2507],[2436,-4819],[2012,-9005],[2910,-13023],[-35,-593],[-56,-974],[-188,-560],[-248,-740],[-2339,3],[-974,1],[-1137,-1329],[-2070,-2417],[437,-1682],[847,-3258],[1314,-913],[1219,-847],[332,-1841],[488,-2700],[426,-401],[385,-363],[473,4319],[-304,1643],[-353,1909],[50,200],[70,278],[4291,2842],[887,-2105],[885,-2103],[-161,-1392],[-116,-1006],[-1336,-4441],[91,-325],[934,-1462],[595,599],[812,817],[1052,-1336],[836,-1062],[1027,-3328],[230,-747],[-335,-3268],[-437,-121],[52,-428],[131,-1078],[2054,-3295],[2308,-946],[589,-1188],[79,-622],[574,-4490],[-430,-2127],[-273,-1347],[-1560,-1263],[-317,-3526],[-191,-2131],[352,-2202],[1180,-789],[1075,3961],[1556,1263],[55,44],[140,-262],[2605,-4877],[2410,-1036],[1870,-804],[545,-1742],[331,-1058],[-849,-6781],[-375,-979],[397,-1868],[1058,3209],[401,1217],[1703,212],[1989,-3243],[-1592,-4621],[1250,-841],[2826,2499],[1269,-134],[285,-672],[422,-993],[141,-2206],[7,-115],[3961,-1742],[46,-87],[3646,-6974],[3545,-2513],[293,-207]],[[998019,55542],[1980,-6788]],[[54653,240168],[-736,-114],[-882,-136],[-691,765],[-461,509],[-2398,3935],[-311,511],[-2814,6826],[-2282,9753],[-197,2745],[-447,6249],[21,1325],[343,2166],[1225,2830],[257,594],[76,765],[133,1327],[56,4721],[631,2713],[1990,1208],[2189,-2523],[590,-681],[205,-506],[803,-1980],[589,-5393],[310,-2834],[2422,-9928],[966,-3958],[5,-54],[734,-8027],[516,-2624],[428,-2174],[-241,-2342],[-210,-607],[-155,-448],[-2664,-4613]],[[307504,269709],[-907,-449],[-2300,1916],[-507,1804],[1669,5854],[2225,11718],[1286,3512],[1960,5357],[1430,2285],[1365,2183],[2267,758],[391,-15],[750,-29],[-86,-4648],[-461,-1169],[-2984,-7577],[-2875,-10138],[-3223,-11362]],[[963883,346190],[1446,-3045],[1485,1489],[695,696],[210,-307],[2256,-3312],[247,-2606],[-231,-1724],[-79,-586],[-762,-2012],[-1256,-3316],[-2106,2998],[-280,-157],[-248,-139],[-1043,-3540],[-61,-208],[-220,-18],[-635,-53],[-1233,3388],[-90,4496],[-222,11134],[824,4015],[634,-265],[206,-86],[76,-459],[387,-2340],[21,-333],[34,-526],[-103,-1668],[31,-961],[17,-555]],[[89902,343319],[-1081,-87],[-2068,4737],[-144,711],[-169,837],[26,3235],[3,339],[238,2332],[53,519],[424,1639],[1231,-1367],[276,-749],[873,-2368],[254,-1866],[167,-1234],[163,-3523],[51,-1106],[-78,-1418],[-219,-631]],[[288509,328787],[310,-2840],[882,-8090],[-1000,-1893],[-1535,-2904],[-1219,-441],[-1192,-430],[-1576,653],[-295,589],[-2560,5104],[-308,-39],[-347,-44],[-330,-1050],[-335,-1069],[-1425,4399],[-232,718],[-1175,4984],[-184,1024],[-160,893],[-121,2245],[254,2238],[2182,7855],[54,2354],[70,3022],[426,5024],[243,946],[746,1924],[1047,2700],[1696,2856],[543,296],[1667,910],[981,-2578],[1041,-4732],[368,-13091],[399,-7274],[33,-596],[982,-3419],[70,-244]],[[85773,355577],[-812,-297],[-2294,2401],[-697,2952],[-385,1634],[128,715],[162,910],[2293,2612],[982,-4111],[402,-2955],[389,-2864],[-125,-746],[-43,-251]],[[134179,478703],[1527,-3906],[719,694],[162,38],[47,10],[214,-3660],[-205,-3612],[-32,-563],[-579,-1699],[-2430,3763],[-47,354],[-47,357],[-41,3197],[78,2357],[15,445],[619,2225]],[[147071,464449],[-132,-182],[-391,-543],[-779,1874],[-557,3230],[-273,1582],[-36,511],[-91,1266],[-18,6353],[13,114],[105,879],[233,-323],[812,-1124],[722,-2345],[862,-2798],[-23,-1625],[-67,-4735],[-303,-1699],[-77,-435]],[[176328,483105],[-274,-522],[-448,-854],[-2611,279],[686,5507],[3569,9004],[413,-223],[91,-414],[355,-1613],[-720,-2857],[-454,-4165],[-241,-2536],[-228,-999],[-138,-607]],[[166264,502017],[872,-2012],[1781,727],[804,328],[582,-1451],[81,-811],[89,-892],[0,-44],[-11,-1231],[-325,-2563],[-221,-1737],[-3007,-12440],[-1903,-4372],[-1688,-172],[-1121,-114],[-2106,2081],[-683,2057],[-132,2993],[26,1260],[670,8440],[168,1318],[174,1369],[3,167],[31,1570],[-175,1476],[-701,1173],[-788,1319],[458,5594],[491,1132],[1209,-708],[1136,-666],[1863,-2853],[2423,-938]],[[152527,520088],[1229,-10944],[-169,-1393],[-190,-1564],[-921,-3315],[386,-2567],[1283,1662],[1576,2040],[802,-5664],[709,-5014],[24,-1722],[16,-1171],[-202,-4781],[-49,-1142],[-209,-535],[-2316,1453],[-577,2803],[-682,3315],[-1701,3974],[-747,1748],[-217,2517],[-575,6677],[-700,4879],[-237,-2727],[-378,-2114],[-184,406],[-398,874],[-340,4252],[-312,3894],[-3,3676],[98,2112],[55,1182],[341,1965],[319,1845],[2372,1329],[822,-1953],[312,-741],[327,-2254],[436,-3002]],[[250839,528544],[-231,-1295],[-1008,268],[-401,107],[-138,1825],[-171,2262],[-3,985],[-2,792],[126,1952],[1001,2384],[465,1107],[771,-1652],[58,-639],[56,-613],[-43,-1208],[-12,-319],[-209,-2660],[-259,-3296]],[[292948,504296],[-287,-322],[-70,-78],[-2966,9328],[-379,1977],[-640,3347],[-263,6219],[169,1493],[143,1262],[17,10],[373,218],[643,2682],[83,345],[-430,2116],[705,5752],[1012,543],[699,-402],[254,-704],[694,-1921],[433,-2015],[490,-2278],[8,-3656],[-389,-5315],[143,-14396],[-377,-3583],[-65,-622]],[[285014,533980],[-1251,-2346],[-731,-3375],[-789,-3644],[-547,-1267],[-241,577],[-437,1043],[-672,5511],[159,2362],[136,614],[227,1018],[350,110],[253,79],[232,-1029],[39,-174],[208,611],[483,1416],[322,2779],[152,1312],[-3,1558],[-2,1523],[1376,2789],[849,-871],[151,-351],[167,-387],[-111,-4473],[-320,-5385]],[[247384,532063],[-443,-3528],[-511,-4064],[-501,600],[-130,1562],[544,5593],[8,417],[43,2359],[-122,5035],[-322,4251],[-607,3827],[190,1405],[937,1799],[207,396],[502,-360],[442,-5205],[108,-1274],[-62,-4205],[-31,-2102],[-62,-1616],[-190,-4890]],[[226905,572943],[503,-313],[314,-196],[116,5085],[-82,2687],[-38,1266],[61,744],[59,716],[1004,-2060],[447,-4709],[-732,-3870],[763,-5298],[729,10932],[939,6789],[1637,-1152],[277,-1109],[173,-691],[-51,-4477],[-1090,-4856],[-455,-1197],[-1163,-3063],[831,-1727],[1022,1511],[774,1145],[593,1631],[14,142],[294,3028],[203,84],[214,90],[160,-605],[27,-102],[73,-1107],[208,-3150],[-524,-2617],[-117,-582],[-446,80],[-954,169],[-648,-1980],[2912,-2981],[-16,-343],[-37,-835],[-307,-1125],[-217,-795],[-1217,-906],[45,-1186],[298,-647],[-33,-955],[-81,-2405],[-50,-179],[-135,-490],[-1246,-178],[-1240,-177],[-1143,2123],[-831,-322],[-2419,-935],[-875,1146],[-384,503],[414,1817],[15,67],[81,1933],[-2999,224],[-5881,6621],[-549,2319],[-627,2650],[47,2238],[157,1289],[78,644],[389,1032],[4363,8028],[390,-2225],[256,-1459],[-553,-1235],[-18,-408],[-103,-2408],[890,-124],[368,1356],[469,1734],[628,1087],[285,493],[285,-874],[1928,-5919],[209,55],[51,14],[17,620],[11,394],[-313,3285],[-829,3671],[-80,1325],[-84,1414],[422,2912],[349,2409],[456,897],[1348,-4381],[-244,-2388],[-20,-194],[-20,-2538],[-16,-2036],[62,-1126],[209,-3764]],[[292874,623451],[-570,-729],[-654,-837],[-976,130],[-556,5287],[202,1867],[1611,2525],[550,38],[270,19],[554,1555],[506,3808],[751,-1318],[484,-3403],[117,-1294],[-410,-2548],[-1029,-2794],[-850,-2306]],[[292529,676342],[251,-3286],[289,-3785],[34,-3109],[-74,-933],[-396,-4974],[-2844,-443],[-559,1392],[-598,11142],[77,1080],[594,1417],[1455,-248],[372,3447],[877,22],[522,-1722]],[[299723,677866],[-426,-934],[-88,98],[-918,1018],[-655,3234],[34,986],[41,1185],[380,3201],[567,741],[121,-548],[175,-787],[769,-8194]],[[327681,670076],[-44,-52],[-138,-166],[-370,2584],[-626,11820],[-412,7776],[240,1597],[84,560],[725,-440],[793,-9636],[61,-1587],[43,-1114],[13,-3816],[-149,-5416],[-93,-895],[-127,-1215]],[[307221,675720],[841,-23694],[581,-5915],[279,-1421],[255,-1300],[369,-5025],[156,-2121],[28,-639],[135,-3101],[465,-20647],[243,-18172],[-130,-12094],[-42,-3870],[-337,-8950],[-834,-6313],[-231,-19],[-413,-33],[-225,-1530],[-267,-1827],[-1,-40],[-90,-4398],[89,-61],[103,-69],[-190,-2846],[-1061,-4623],[-416,-764],[-409,-753],[-1265,-954],[-3490,1188],[-1476,-895],[-570,3102],[-1218,6640],[504,4204],[298,2488],[229,896],[324,1262],[1240,136],[2518,-2103],[135,231],[383,660],[168,1797],[-122,796],[-73,481],[-586,9556],[-2511,14051],[-847,2633],[-515,226],[-391,171],[-112,-822],[-118,-6063],[-480,-1719],[-137,-490],[-521,1642],[-353,183],[-379,197],[-470,-971],[-140,-289],[-84,-772],[62,-1275],[499,-1370],[147,-403],[252,-3306],[51,-665],[-972,-7392],[-2,-8],[-541,-1657],[-1702,4071],[-156,373],[-2457,9979],[-480,2959],[-485,2989],[-591,9770],[-2,414],[-4,945],[93,965],[99,1019],[433,1280],[462,-2384],[514,-5632],[861,766],[-594,5964],[-141,2843],[25,632],[39,974],[232,1494],[597,680],[798,-1499],[677,-4872],[353,-2540],[1650,-5467],[93,302],[169,549],[139,1166],[-10,1105],[-183,1389],[-198,1510],[-552,1594],[-1058,3054],[-80,1135],[-118,1673],[118,1341],[66,749],[333,956],[283,232],[873,718],[734,-1971],[233,-1472],[783,-4951],[600,1639],[407,1111],[-20,2035],[-1130,1475],[-689,3895],[-62,2869],[672,1885],[286,805],[2926,529],[690,3220],[782,3645],[501,-153],[269,-1479],[149,-818],[186,-5755],[296,624],[269,568],[208,3449],[-14,97],[-1017,7033],[-1485,7022],[-17,800],[-88,4022],[158,2602],[121,2003],[173,943],[233,1277],[832,947],[274,312],[719,-92],[1561,-198],[308,1121],[-141,1562],[-44,486],[-170,378],[-548,1215],[-611,-1458],[-159,-379],[-391,798],[-622,2351],[-2641,14410],[0,473],[-13,10593],[148,2070],[140,1955],[281,6518],[-609,2647],[-653,2842],[18,356],[92,1805],[309,1260],[1450,5930],[1614,2409],[503,1838],[405,1478],[218,-277],[229,-292],[811,-3598],[204,-3103],[50,-5710],[8,-977],[999,-9334],[844,-11642]],[[739705,786013],[-142,-1118],[-103,-818],[-159,367],[-445,1029],[-1082,7814],[-107,2208],[37,748],[27,544],[260,57],[1084,-2778],[493,-3645],[212,-1569],[-71,-2681],[-4,-158]],[[311030,768656],[-1635,-15460],[-389,285],[-571,418],[-419,3630],[-87,1363],[-118,1850],[77,5203],[644,4770],[411,3052],[843,18160],[154,1083],[362,2539],[698,2737],[725,2844],[143,-294],[112,-230],[72,-2134],[4,-102],[-262,-2181],[-366,-3059],[139,-10190],[169,-4657],[55,-1495],[-761,-8132]],[[769415,820265],[-909,-2766],[-689,90],[-437,2017],[240,4971],[182,1093],[1227,-908],[218,-1260],[68,-396],[100,-2841]],[[840327,801148],[-76,-1170],[-40,-608],[-1897,1957],[-560,3435],[-174,8032],[-811,15828],[-125,4525],[-8,5470],[44,767],[54,960],[343,1904],[130,-719],[127,-710],[362,-4812],[228,-3274],[58,-832],[324,-7241],[2035,-15762],[43,-3034],[33,-2338],[-90,-2378]],[[317028,834724],[-847,-2103],[-139,577],[14,1056],[40,2933],[265,2673],[427,7109],[227,660],[179,520],[315,-529],[30,-784],[48,-1234],[-45,-1925],[-38,-1577],[-104,-518],[-7,-34],[-365,-6824]],[[324241,894395],[54,-485],[524,-4746],[371,924],[199,-1338],[7,-46],[-651,-3258],[-1664,-8331],[-1624,5016],[123,5038],[1738,12600],[619,1304],[44,-142],[285,-915],[-44,-2373],[-23,-1211],[42,-2037]],[[327154,897103],[-181,-1357],[-583,-4357],[-427,-216],[-479,-243],[86,1278],[23,-7],[171,-50],[520,8594],[84,2261],[-140,3996],[52,1546],[58,1707],[35,104],[377,1115],[80,-162],[74,-153],[505,-4782],[88,-841],[-251,-6181],[-92,-2252]],[[339425,915651],[103,-2223],[140,-3008],[121,669],[443,2439],[704,-3646],[317,-1642],[65,-1563],[59,-1430],[-370,-4145],[-314,-3520],[-750,-1626],[-980,-2123],[-631,1170],[-46,849],[-101,1860],[-96,3924],[-93,3791],[-320,459],[-50,715],[-36,517],[83,1877],[123,2805],[801,5618],[9,69],[279,1285],[555,2558],[-35,-2222],[20,-3457]],[[347028,944705],[96,-2641],[40,-1084],[-372,-2063],[-191,-209],[-301,-329],[-480,1247],[-716,1863],[-1814,-5991],[-183,1178],[-214,1377],[37,2080],[251,2799],[84,940],[105,489],[682,3170],[1393,1801],[436,-1499],[983,-1999],[57,-390],[107,-739]],[[332504,973716],[420,-1393],[549,-1819],[235,101],[119,52],[-563,-3410],[-879,-2501],[-194,1468],[-993,1678],[-117,198],[-137,51],[-865,328],[-198,2845],[2623,2402]],[[338749,999999],[348,-227],[399,-261],[342,182],[-15,-1547],[-28,-2859],[-370,-1065],[-1006,-2892],[-1039,-5328],[-269,-433],[-79,-127],[-968,2268],[809,7136],[594,2469],[483,1009],[799,1675]],[[0,48751],[4734,3306]],[[998019,55542],[-998019,-6791]],[[0,48754],[0,-3]]],"bbox":[-180,-85.58276367299999,180,-61.91226959299996],"transform":{"scale":[0.00036000036000036,0.000023670517750517778],"translate":[-180,-85.58276367299999]}} \ No newline at end of file diff --git a/topojson/dist/asia_110m.json b/topojson/dist/asia_110m.json new file mode 100644 index 00000000000..907eddb83a8 --- /dev/null +++ b/topojson/dist/asia_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[794,26467],[-58,-60],[64,-13],[32,15],[-9,38],[32,16],[-61,4]],[[794,26467],[18,52],[-5,98],[-12,49],[11,90],[47,64],[1,29],[35,48],[121,37],[86,-119],[43,-26],[49,6],[63,45],[-7,120],[18,47],[-26,45],[-30,-20],[-39,18],[-29,40],[2,32],[-20,55],[13,27],[130,54],[121,7],[38,24],[55,-3],[140,-30],[86,-8],[41,-19],[-9,33],[24,45],[148,51],[110,-22],[12,20],[-40,27],[-56,13],[-67,0],[-36,27],[2,75],[-71,-33],[-14,36],[-70,-45],[-67,7],[-144,-28],[-45,-1],[-138,-49],[-167,-35],[-54,6],[8,68],[-60,-20],[-11,36],[-124,28],[-36,84],[32,46],[12,70],[-25,57],[-9,68],[-34,78],[39,37],[36,62],[45,-2],[46,19],[17,51],[118,67],[167,173],[104,22],[-9,91],[-41,36],[-119,37],[-128,-2],[-109,11],[-15,-42],[-106,-51],[13,-37],[-53,-67],[20,-45],[38,-29],[-41,-27],[-96,-94],[-106,-48],[-44,-4],[-42,-46],[-54,-2],[-165,-189],[-8,-103],[-44,-30],[15,-55],[4,-111],[68,-31],[36,3],[73,-81],[35,-3],[16,-39],[-29,-45],[-53,-37],[-48,-5],[63,-51],[-53,-23],[-50,11],[-24,-53],[-100,-41],[7,-93],[-33,-40],[3,-106],[-32,-130],[-34,-63],[-37,-33],[-103,0],[-2,-1]],[[0,28791],[29,11],[-29,21]],[[0,28836],[78,56],[58,22],[79,86],[113,47],[24,39],[39,9],[19,16],[9,40],[105,31],[27,27],[97,5],[71,22],[-25,-83],[57,16],[-8,45],[79,30],[104,12],[-105,42],[131,14],[165,-61],[-15,55],[101,48],[55,43],[12,35],[177,-14],[-111,-65],[-13,-53],[38,-25],[54,69],[115,88],[31,-20],[-31,-83],[56,19],[22,38],[47,25],[-30,41],[67,8],[111,-18],[-72,-61],[54,-21],[45,58],[76,-24],[86,-4],[131,-50],[15,-29],[-178,-40],[-24,-71],[69,5],[38,22],[62,-11],[91,-22],[121,36],[89,-22],[-31,-35],[134,-49],[68,-2],[106,-22],[19,12],[133,-31],[178,-73],[108,-68],[69,-18],[89,-41],[39,5],[85,-54],[53,-12],[16,-75],[35,-39],[-21,-53],[-110,-83],[-51,-24],[-184,-38],[-98,6],[-132,37],[-186,21],[-55,26],[-165,43],[-52,-2],[-78,43],[-20,-41],[24,-43],[96,-12],[2,-31],[128,-48],[27,-86],[-56,-40],[57,-75],[2,-90],[70,-40],[40,15],[79,-51],[11,-24],[152,-37],[83,39],[-5,63],[-26,20],[-68,-17],[-100,72],[-18,39],[54,42],[98,-18],[64,-39],[15,-25],[98,4],[86,-37],[128,-3],[19,27],[-46,61],[-79,66],[9,48],[167,80],[60,19],[95,75],[54,-21],[73,2],[58,-23],[59,-47],[59,119],[-1,50],[-42,37],[-53,13],[51,104],[9,101],[-110,58],[313,-22],[92,-61],[32,-63],[-169,-17],[-58,-46],[-8,-30],[47,-18],[104,-76],[67,-1],[137,17],[22,19],[19,91],[21,26],[110,10],[-8,31],[95,18],[173,78],[165,35],[33,-43],[60,31],[-41,22],[120,56],[77,-17],[-27,-104],[52,-26],[108,31],[58,51],[156,13],[102,-15],[69,48],[143,37],[55,-4],[-27,-105],[55,-13],[52,15],[20,49],[151,32],[-127,123],[13,32],[55,-1],[18,39],[92,-18],[190,-14],[173,-38],[93,-45],[231,-73],[92,-45],[104,-67],[43,-4],[58,81],[-16,42],[-50,12],[-47,45],[-14,54],[-162,40],[10,49],[73,13],[-22,31],[-5,61],[22,35],[-78,44],[49,70],[103,39],[74,60],[58,154],[52,56],[98,-13],[197,4],[151,-41],[14,-67],[-68,-122],[-55,-48],[87,-50],[36,-52],[-10,-93],[-23,-61],[10,-140],[-18,-45],[43,-56],[89,-41],[-7,-34],[-51,-61],[23,-33],[-200,-191],[-188,-27],[-184,21],[30,-48],[40,-23],[126,-31],[137,2],[54,-19],[57,3],[33,65],[33,4],[147,69],[14,44],[58,61],[44,26],[10,68],[-59,74],[34,65],[196,43],[63,0],[12,-29],[82,-69],[-8,-103],[-13,-21],[53,-32],[16,-56],[80,39],[66,-12],[16,25],[-185,23],[3,69],[68,48],[-51,102],[-216,66],[-252,-29],[-40,24],[-16,115],[12,49],[68,68],[6,27],[-93,110],[-50,31],[33,80],[143,44],[58,34],[9,50],[-39,68],[91,-10],[17,-97],[-26,-39],[-20,-113],[21,-27],[67,-17],[245,-16],[24,-29],[64,-9],[-15,58],[-122,16],[-126,45],[-48,63],[110,35],[91,-44],[71,7],[-9,43],[-72,19],[135,36],[134,-8],[149,-49],[92,-63],[44,-12],[172,14],[48,-19],[-44,-42],[-99,-35],[0,-111],[-32,-51],[39,-47],[49,0],[117,-80],[56,6],[-85,59],[-35,48],[64,2],[33,23],[-79,142],[58,83],[-43,37],[-86,14],[-52,64],[-125,18],[-74,30],[14,82],[-57,64],[50,52],[146,15],[244,6],[230,14],[37,17],[157,8],[50,34],[-189,60],[93,38],[-104,15],[42,36],[105,-27],[70,67],[106,18],[131,66],[558,66],[-47,41],[124,-1],[196,22],[90,-12],[2,-28],[192,7],[70,30],[145,36],[8,24],[138,-3],[107,19],[8,76],[126,77],[141,49],[103,16],[250,-26],[-45,-91],[239,-16],[1,-33],[-98,-46],[135,-15],[114,43],[427,-5],[154,-73],[87,-28],[54,-76],[-35,-49],[8,-36],[-120,-70],[-147,-50],[-168,-36],[-70,-56],[-106,-28],[-110,-69],[-157,-32],[-70,-67],[175,0],[73,25],[174,26],[117,39],[-113,7],[-20,29],[49,33],[164,-7],[80,-43],[111,-6],[75,24],[41,-61],[99,17],[85,1],[58,19],[174,-8],[77,-12],[201,-8],[-41,-27],[16,-44],[142,-29],[164,-14],[317,-10],[57,54],[-35,38],[54,38],[93,31],[84,-15],[178,-61],[74,31],[115,-15],[18,-17],[165,-48],[21,-30],[-16,-62],[39,-89],[-118,-15],[-14,-32],[99,-71],[22,-43],[104,-62],[104,-48],[84,41],[75,137],[42,44],[84,-56],[74,-31],[121,-5],[112,41],[70,3],[166,-41],[55,-31],[67,62],[86,11],[81,-37],[81,15],[-58,79],[33,30],[-80,51],[46,24],[116,-3],[99,22],[-63,46],[59,5],[92,-24],[220,-7],[282,-29],[161,-34],[211,-8],[118,-22],[74,-31],[21,-39],[-58,-16],[153,-73],[57,1],[72,-25],[42,-47],[61,-30],[180,10],[142,24],[147,14],[172,-2],[182,-28],[116,-42],[41,-30],[30,-54],[-56,-73],[57,-31],[113,-16],[7,-73],[196,78],[228,7],[81,-25],[123,2],[162,-17],[93,50],[52,-11],[24,-55],[36,-36],[110,-23],[25,-54],[112,2],[95,53],[-52,91],[-31,5],[10,95],[80,-3],[185,-28],[186,-19],[293,9],[103,-45],[257,-48],[80,-31]],[[21878,29109],[77,-46]],[[21955,28314],[-70,-44]],[[21885,28270],[-91,-31],[-142,11],[-57,25],[-110,-2],[37,-42],[83,30],[17,-63],[42,-31],[108,-39],[36,-118],[91,-113],[1,-40],[-67,-65],[-133,47],[-69,6],[-77,-7],[-209,-79],[-104,-50],[-118,-25],[-90,-60],[-76,-38],[-54,-57],[-185,-90],[-36,-83],[-22,-7],[-50,44],[-20,44],[-78,30],[-104,8],[-168,-45],[-112,-103],[-24,0],[33,108],[-35,6],[-102,-54],[-9,-26],[-56,-23],[-49,44],[-116,-41],[-38,-57],[-33,-111],[-70,-53],[-52,-74],[-17,-61],[39,-41],[60,25],[75,-38],[-25,-43],[-39,-23],[-3,-97],[24,-31],[37,0],[14,-97],[-41,-34],[-58,42],[-71,-28],[-40,-83],[-7,-45],[9,-45],[40,-56],[2,-23],[-64,-45],[-59,12],[-44,-3],[-41,-20],[-68,-55],[-27,-74],[19,-100],[-49,0],[-78,-32],[-55,-8],[-11,-26],[-9,-121],[-76,-119],[-88,-78],[-68,-54],[-26,74],[-1,107],[-8,44],[-46,164],[-23,156],[-35,149],[-18,149],[15,98],[44,148],[17,25],[82,58],[29,43],[-8,65],[23,20],[58,3],[86,36],[125,81],[87,83],[13,43],[82,66],[61,36],[108,88],[75,81],[115,47],[78,13],[5,62],[28,92],[25,116],[53,32],[84,9],[-100,38],[-155,-32],[-19,-86],[-41,-67],[-70,-26],[-171,-122],[-22,-28],[-91,-26],[18,48],[-52,22],[-6,46],[54,57],[18,45],[-11,27],[-70,-45],[-52,30],[-71,2],[-93,-19],[-82,4],[-73,-34],[-50,-46],[-19,-34],[-76,-60],[-2,-22],[-141,-84],[-58,-60],[-25,-49],[32,-39],[59,-9],[31,-20],[-2,-38],[-164,-14],[-70,23],[-65,-58],[-45,9],[-72,-17],[-87,-1],[-31,43],[47,12],[76,-3],[16,28],[-52,12],[-41,40],[-108,-9],[-24,14],[-118,31],[-66,-25],[-16,-65],[-49,-7],[-26,25],[-74,-1],[-41,-22],[-145,39],[-20,-52],[-42,-7],[-19,48],[-144,-6],[-213,-3],[-92,-30],[-62,-42],[-61,-71],[-103,-57],[-33,-67],[-134,-113],[-59,-28],[-120,-113],[-4,-31],[-56,-53],[-188,-134],[-21,-30],[-79,-40],[-43,-35],[6,-34],[58,-28],[154,-3],[-25,-122],[14,-29],[45,8],[47,61],[32,-31],[-53,-82],[71,6],[55,29],[26,-37],[26,36],[17,109],[58,-21],[53,13],[78,-41],[20,-48],[144,-116],[-34,-31],[11,-65],[-9,-28],[32,-67],[-23,-50],[-69,-103],[-33,-92],[-7,-69],[7,-45],[-5,-150],[-21,-111],[-34,-97],[-100,-104],[-23,-47],[-67,-94],[-36,-87],[-33,-67],[-51,-77],[-62,-73],[-63,-63],[-50,-67],[-65,-71],[-35,-50],[-19,-47],[-34,-35],[-16,-41],[-156,-111],[-79,-27],[-47,-10],[-70,37],[-19,49],[-78,22],[-45,-68],[-27,-60],[-43,5],[-25,-64],[-9,23]],[[15387,24031],[-7,-21],[-17,3],[-48,-45],[-53,-82],[-6,-31],[12,-45],[0,-56],[-189,-173],[-60,-20],[-49,-41],[-18,-84],[24,-25],[95,-76],[13,-24]],[[15084,23311],[22,-56],[106,-196],[18,-116],[-12,-122],[21,-24],[-15,-81],[-23,-47],[-39,-27],[-45,11],[-26,-16],[6,-30],[-34,0],[-26,22],[-57,-18],[-40,-47],[-68,-24],[-38,-31],[-18,60],[8,29],[-11,53],[19,96],[36,65],[-14,22],[-23,92],[-42,27],[36,32],[0,22],[55,-6],[-36,119],[18,44]],[[14862,23164],[-84,-2],[-45,19],[-20,-31],[-51,19],[-8,42],[-60,9],[69,96],[-7,44],[30,68],[7,66],[-103,17],[-39,56]],[[14551,23567],[-45,-31],[-46,8],[-92,-36],[-92,-57],[-61,-64],[-42,-35],[-50,-22],[-6,39],[79,38],[22,52],[-51,8],[10,44],[58,83],[40,71],[-16,32],[-47,56],[-42,-12],[-38,7],[-26,-17],[-66,-96],[-56,-47],[-76,-39],[-24,-29],[-20,-64],[-27,-36],[-69,-16],[-58,22],[-40,-25],[-28,-77],[23,-60],[53,-44],[54,-5],[40,18],[29,-55],[4,-44],[-13,-22],[4,-53],[33,-22],[64,-6],[84,104],[55,27],[23,-7],[86,-70],[42,7],[86,-13],[5,-27],[-8,-63],[-26,-16],[-16,31],[-38,-6],[-22,-19],[-64,-30],[-53,-9],[-25,-100],[-51,-14],[-12,-22],[-60,-61],[-73,-107],[1,-54],[143,-91],[23,-102],[70,-229],[98,-98],[20,-44],[-10,-18],[-48,27],[-75,19],[-48,28],[-9,-20],[46,-20],[122,-111],[25,-66],[-65,-33],[-101,-70],[-34,-3],[-10,-30],[48,-25],[50,28],[57,-9],[61,-58],[-33,-62],[33,-3],[-62,-84],[24,-35],[-18,-64],[10,-55],[-29,-20],[-28,39],[-29,-75],[-29,0],[-17,-114],[-19,-41],[-28,-20],[-26,-51],[-64,-3],[20,-90],[-19,-44],[18,-14],[-26,-56],[-25,-18],[-29,-37],[29,-26],[-4,-18],[-42,-29],[-8,-25],[-27,-3],[-1,-39],[-21,-25],[-34,8],[-19,18],[-39,-47],[36,-29],[-46,-52],[-57,-43],[-59,-27],[-32,-59],[-1,-19],[-40,-56],[-107,-38],[-41,25],[-35,-31],[-57,7],[-20,-26],[-26,-10],[-25,-7],[-28,16],[-41,86],[-14,-59],[17,-29],[8,-43],[-10,-25],[-29,27],[-7,-50],[-24,17],[-9,-48],[-15,-14],[-68,19],[-26,-40],[-35,8],[-41,-50],[-113,-12],[-21,-29],[-27,-14],[-27,-32],[-3,-39],[47,-73],[-27,-40],[-53,3],[-22,94],[-14,25],[15,76],[-1,35],[-21,19],[-17,-24],[-36,-10],[-20,41],[-44,-2],[-12,22],[-82,-37]],[[12378,20077],[-87,-53],[-22,-58],[-59,4],[-26,-132],[-43,-43],[-39,-31],[-10,-24],[-27,-127],[-3,-40],[36,-82],[48,-52],[27,-49],[-3,-29],[27,-61],[148,-202],[35,-13],[27,-40],[43,-99],[45,-71],[51,-249],[-4,-87],[20,-106],[-6,-34],[-22,-23],[7,-112],[-4,-49],[-43,-74],[-183,-154],[-56,-31],[-23,22],[-18,-5],[-3,-38],[-26,-96],[-51,-62],[-101,-72],[-22,-50],[-21,-24],[-51,-7],[8,48],[7,136],[7,49],[25,21],[-37,49],[-20,-8],[-27,51]],[[11902,17970],[-33,25],[-46,9],[-13,-14],[-17,40],[11,21],[-5,39],[-30,8],[-4,-34],[-39,-9],[-3,81],[-26,66]],[[11697,18202],[-2,19],[-33,81],[-14,-13],[-27,17],[-63,84],[-25,8],[-47,-9],[-47,1],[-14,24],[14,131],[-52,11],[-41,-5],[-42,-35],[14,-59],[-19,-179],[-36,-97],[-28,-132],[-27,-71],[-13,-124],[12,-105],[23,-11],[40,23],[20,-8],[8,-38],[7,-89],[25,-42],[23,-73],[15,-92],[13,-46],[32,-55],[28,-23],[46,11],[36,-26],[28,-61],[37,-41]],[[11588,17178],[43,-37],[17,-39],[75,-83],[35,-90],[11,-43],[5,-68],[-18,-101],[10,-44],[2,-126],[38,-53],[26,-54],[43,-131],[5,-56],[-23,5],[-20,39],[-31,-27],[-7,-6],[-34,-6],[-56,67],[-198,178],[-22,59],[-8,53],[-30,61],[-29,35],[-27,74],[-5,117],[-14,22],[-10,72],[-11,141],[-29,75]],[[11326,17212],[-42,72],[-31,100],[-32,31],[-35,79],[-43,56],[-15,33],[-46,-27],[-9,64],[6,69],[13,24],[1,40],[51,210]],[[11144,17963],[-17,-50],[-14,28],[-8,66],[33,57],[2,80],[18,68],[-13,35],[-7,90],[1,83],[-62,191],[-15,-49],[-22,159],[-1,63],[-22,39],[-22,241],[17,62],[-21,9],[-28,-11],[-21,32],[-14,72],[-34,21],[-3,-66],[-34,-57],[-26,-9],[-22,24],[-31,-38],[-19,7],[-6,-52],[-48,-82],[-24,12],[12,40],[-7,32],[-22,-2],[-22,-61],[-10,47],[-26,23],[-4,42],[-49,-87],[-15,14],[7,64],[14,57],[32,167],[-19,80],[-11,71],[-34,97],[-6,91],[-39,43],[1,53],[-36,23],[-13,32],[-32,7],[-12,64],[-23,-71],[-32,40],[-38,65],[-17,64]],[[10280,19983],[-28,34],[-8,69],[-13,11],[4,101],[8,44],[-39,19],[-34,49],[-43,-58],[-52,88],[-10,74],[-23,6],[-9,-68],[5,-44],[24,-72],[-53,-76],[-22,37],[-42,19],[-24,-5],[-17,33],[-32,-40],[-16,-4]],[[9856,20200],[-14,4],[-99,-83],[-19,46],[-38,-62],[-82,-30],[-24,-22],[-23,-53],[23,-81],[-77,-136],[-30,-20],[-68,-27],[-35,-23],[-80,-87],[-40,-77],[-50,-80],[-96,-95],[-27,-46],[-83,-59],[-35,-41],[-11,-27],[14,-40],[-6,-23],[-71,-48],[-34,4],[-38,-25],[-28,-84],[-31,-2],[-20,20],[-48,-37],[-26,-80],[-5,-34],[8,-62],[7,-141],[21,-103],[-1,-57],[-8,-71],[-12,-59],[-37,-80],[-16,-82],[13,-111],[3,-132],[-47,-5],[-40,-35],[-33,-83],[8,-72],[-69,-33],[-48,-69],[-14,-74],[-68,-58],[-29,9],[-41,44],[-64,109],[-24,84],[-16,111],[-67,264],[-26,65],[-42,60],[-35,99],[-20,75],[-32,193],[-30,108],[-53,121],[-8,36],[-57,147],[-15,64],[-16,159],[-43,222],[-15,158],[-16,103],[17,94],[14,43],[-25,106],[-12,0],[1,77],[14,18],[-24,31],[-6,31],[10,44],[-32,12],[-16,-62],[11,-59],[-28,-75],[-20,-20],[-127,-76],[-24,-3],[-70,48],[-29,34],[-116,161],[-29,44],[0,35],[43,-23],[102,51],[52,56],[7,50],[-38,-3],[-26,-36],[-42,-31],[-71,21],[-67,55],[-27,49],[-4,29],[28,45],[-20,34]],[[7119,20536],[-57,8],[-30,15],[-50,5],[3,52],[-9,70],[-22,9],[-72,5],[2,58],[-33,72],[-17,-12],[-192,-25],[-37,-15],[-45,7],[-45,30],[-64,-36],[-21,-4],[-113,5],[-94,-32],[-20,17]],[[6203,20765],[-58,-5],[-104,39],[-97,7],[-99,21],[-86,13],[-125,40],[-28,87],[-7,75],[-22,67],[-27,29],[-60,5],[-82,-36],[-36,-43],[-79,-48],[-54,25],[-62,16],[-56,28],[-60,46],[-56,55],[-23,45],[-51,36],[-48,-1],[-49,32],[-63,214],[-29,66],[-64,101],[-37,34],[-48,-27],[-35,29],[-8,55],[-35,-13],[-5,-77],[-28,-15],[-27,9]],[[4455,21674],[-69,5]],[[4386,21679],[9,-35],[-13,-89],[24,-26],[43,-128]],[[4449,21401],[49,-148],[51,-59],[22,-52],[36,-22],[51,-57],[3,-43],[22,-22],[5,-36],[-13,-32],[2,-59],[52,-89],[5,-42],[31,-57]],[[4765,20683],[8,9],[-13,65],[-2,69],[24,21],[8,67],[34,37],[46,-47],[-16,-73],[20,-53],[-1,-36],[-25,-74],[-18,-31]],[[4830,20637],[11,-39],[28,-9]],[[4869,20589],[17,-4],[15,-46],[34,-7],[78,35],[90,-6],[33,-11],[38,3],[72,43],[42,95],[164,196],[15,43]],[[5467,20930],[17,37],[30,-4],[-10,-75],[-12,-38]],[[5492,20850],[11,-20],[2,-103]],[[5505,20727],[30,-89],[45,-74],[29,-32],[92,-43],[96,-18],[22,-21],[86,-158],[20,-24],[36,-5],[1,-58],[-52,-124],[-49,-58],[-28,-42],[-43,-119],[-40,-4],[-18,31],[-33,-82],[-16,-102],[8,-78],[-28,-44],[-70,-15],[-31,-21],[-23,-40],[-11,-73],[-25,-41],[-83,-7],[-40,-15],[-17,-35],[-6,-74],[-24,-38],[-38,-19],[-37,17],[-64,-9],[-123,-63]],[[5071,19150],[-79,-38],[-19,-18],[-23,-43],[-15,-107],[-66,-45],[-49,-27],[-173,-66],[-72,-36],[-40,-27],[-33,-65],[-20,-23],[-51,-9],[-44,10],[-102,-85],[-65,-31],[-89,-3],[-50,-13],[-88,-98],[-101,-39],[-44,0],[-47,19],[-41,91],[-11,138],[-18,70],[-13,114],[-22,53],[-1,48],[8,125],[-8,58]],[[3695,19103],[-6,52],[-33,70],[-21,64],[-63,81],[-48,90],[-23,55],[-27,99],[-41,111],[-38,55],[-54,54],[-21,0],[-44,52],[-17,42],[-24,31],[-27,70],[6,44],[-16,100],[6,94],[-22,79],[-17,35],[-48,125],[-22,26],[-66,54],[-45,49],[-21,72],[0,42],[-26,65],[-101,200],[-86,164],[-35,80],[-29,52],[-21,11],[-50,-4],[-4,14],[22,91],[23,135]],[[2656,21557],[2,35]],[[2658,21592],[-9,-10]],[[2649,21582],[-22,-34],[-33,-158],[-8,-93],[-30,-42],[-53,42],[-58,83],[-24,73],[-35,75],[-47,145],[-13,-7],[-19,-66],[42,-97],[11,-49],[62,-114],[49,-81],[3,-51],[28,-46],[20,-81],[-2,-34],[99,-227],[70,-194],[38,-60],[6,-34],[-6,-80],[17,-72],[8,-37],[21,-36],[67,-57],[73,-75],[-2,-10],[5,-74],[26,-76],[8,-74],[4,-150],[9,-98],[19,-120],[12,-30],[23,0],[39,-36],[36,-59],[43,-42],[49,-120],[28,-144],[18,-121],[57,-144],[14,43],[26,-11],[20,-72],[18,-19],[16,15],[38,-17],[13,-35],[53,-18],[44,-81],[33,-51],[62,-71],[34,-69],[35,-57],[31,-7],[19,-24],[30,-62],[8,-50],[-6,-26],[-80,-47],[-34,-31],[13,-20],[24,22],[48,2],[14,-25],[24,-18],[34,-80],[31,-45],[48,-52],[36,-9],[60,12],[93,69],[61,-7],[38,-18],[29,13],[59,51],[59,29],[22,-14],[51,5],[24,17],[73,10],[16,-5],[57,17],[93,34],[47,31],[16,42],[28,15],[66,-25],[-23,-124],[10,-145],[-36,-56],[-10,-120],[-91,-238],[-42,-83],[-34,-98],[-40,-88],[-20,-62],[-4,-39],[-16,-52],[-39,-93],[-69,-138],[-24,-59],[-151,-234],[-107,-149],[-20,-22],[-161,-132],[-151,-181],[-108,-162],[-99,-159],[-55,-124],[-32,-52],[-38,-20],[-74,-93],[-23,-14],[-18,-34],[-9,-97],[-59,-135],[-2,-24],[-24,-72],[-35,-31],[-14,-73],[-43,-187],[13,-64],[55,-83],[21,-7],[-1,-62],[-12,-25],[-15,-98],[21,-14],[-18,-74],[17,-115],[16,-48],[11,7],[21,-108],[2,-52],[64,-58],[22,-9],[-3,-34],[16,-15],[8,-84],[-21,-51],[8,-92],[-1,-90],[15,-69],[-11,-48],[15,-195],[-6,-46],[20,-55],[16,-11],[1,-52],[-13,-19],[-22,-112],[-58,-101],[-31,-46],[-23,-52],[-89,-79],[-93,-49],[-39,-1],[-31,-40],[-52,-36],[-71,-61],[-1,-16],[-37,-78],[-47,-69],[0,-19],[-37,-4],[-37,-35],[-49,-79],[-61,-65],[-26,17],[-6,-122],[2,-33],[35,-21],[15,-47],[11,-85],[25,-108],[20,-27],[10,-69],[1,-88],[-21,-183],[15,-37],[-47,-94],[-46,-32],[-182,-92],[-55,-39],[-25,-27],[-38,-74],[50,-80],[-4,-87],[-50,-259],[-14,-51],[-51,-70],[-25,-15],[-67,-84],[-106,-236],[-71,-125],[-90,-98],[-105,-145],[-86,-89],[-107,-92],[-71,-41],[-95,4],[-31,-39],[-97,-35],[-57,-6],[-40,16],[-68,15],[-36,-19],[-107,17],[-61,-28],[-25,-31],[-29,-17],[-109,2],[-61,-27],[-50,-51],[-50,3],[-75,76],[-33,43],[-56,-7],[-18,29],[24,28],[-6,33],[-53,123],[-20,7],[4,58],[30,-8],[23,41],[1,65],[-14,85],[-57,105],[-66,157],[-25,88],[-23,101],[-52,126],[-13,15],[-103,130],[-37,91],[-35,118],[2,32],[-19,61],[-1,6]],[[0,22139],[11,-4],[36,-62],[4,-36],[19,-55],[38,-46],[46,-21],[87,-10],[71,-22],[106,-54],[73,-74],[46,-26],[30,2],[49,27],[34,42],[36,77],[-1,36],[-17,34],[-12,75],[2,26],[28,52],[67,69],[53,33],[97,29],[51,-2],[127,-58],[-2,-54],[18,-18],[98,-30],[14,-9],[83,2],[43,-22],[15,-49],[3,-21],[45,-4],[78,14],[158,-43],[50,-35],[33,-13],[83,-12],[72,-44],[57,24],[77,68],[47,31],[16,-14],[54,11],[22,14],[97,-5],[-8,-40],[33,-39],[61,7],[31,-17],[32,11],[103,8],[63,37]],[[2557,21929],[37,52]],[[2594,21981],[37,94],[41,155],[3,35]],[[2675,22265],[48,127],[24,83],[34,50],[10,31]],[[2791,22556],[-24,166],[5,65],[11,15]],[[2783,22802],[8,17],[-26,57],[55,54],[1,35],[-26,26],[-38,-31],[-23,-37],[-35,2],[-65,42],[-18,1],[-55,-47],[-39,-56],[-156,-45],[-35,13],[-30,27],[-38,58],[-83,46],[-92,19],[-38,-119],[-28,11],[-72,-31],[-38,16],[-35,28],[-4,56],[-27,3],[-80,30],[-107,-37],[1,18],[41,9],[72,47],[-132,-9],[30,24],[8,27],[-38,16],[-16,42],[-1,78],[-51,32],[-40,2],[23,33],[37,21],[-32,39],[40,53],[-26,20],[-10,61],[23,39],[-106,-23],[-10,5],[21,100],[64,69],[76,18],[35,-31],[30,1],[34,27],[138,-16],[-36,33],[36,21],[66,8],[-58,45],[-4,39],[50,11],[191,-23],[49,7],[43,50],[122,80],[79,28],[61,10],[145,-10],[62,-10],[47,-46],[41,4],[46,-31],[36,-48],[29,18],[56,-18],[55,-33],[124,-31],[136,34],[105,-34],[123,63],[58,52]],[[3532,23861],[17,26],[4,82],[-23,84],[-32,48],[-55,53],[-69,18],[-16,30],[-30,12],[-103,112],[-61,58],[-141,69],[-118,89],[-15,45],[35,8],[48,-13],[25,9],[22,62],[27,40],[33,18],[19,49],[-51,28],[-22,51],[82,-5],[74,57],[52,20],[-9,36],[-37,2],[-19,-17],[-78,-10],[-76,-5],[-118,-64],[-132,-29],[-59,-49],[-15,20],[-52,-46],[19,-84],[38,-61],[36,-30],[80,33],[60,-4],[-17,-64],[-29,-12],[-114,-1],[-57,-36],[-63,-22],[-21,-33],[-46,-29],[-33,0],[-33,22],[18,76],[-16,46],[-71,36],[-41,-6],[-13,28],[86,56],[75,32],[-17,29],[-59,18],[-86,-19],[-87,41],[-19,38],[75,12],[-54,28],[-102,-14],[-44,-14],[-9,-34],[-66,-93],[-63,-51],[-11,-78],[-32,-73],[-49,-13],[-50,-72],[-10,-29],[-7,-91],[2,-33],[-25,-32],[-33,3],[-28,-44],[-7,-60],[-47,-56],[65,-111]],[[1734,23948],[-7,-28],[16,-38],[32,-31],[93,-40],[0,-38],[-48,-17],[-72,19],[-83,-17],[-51,-69],[-58,-31],[-70,-75],[14,56],[43,28],[-5,22],[-59,-3],[-10,25]],[[1469,23711],[-16,24],[-55,4],[-49,26],[-113,-38],[-60,-4],[-18,-22],[29,-58],[-15,-32],[-53,16],[-35,0],[-35,67],[-34,-29],[-10,-64],[6,-24],[91,-136],[-46,11],[-11,-38],[29,-22],[-40,-32],[44,-46],[94,-57],[33,-36],[3,-73],[-18,-15],[-46,66],[-74,-20],[16,-57],[37,-22],[-32,-36],[-10,26],[-46,26],[-4,-25],[20,-53],[41,-137],[-50,45],[-62,1],[-32,63],[-59,-25],[-2,68],[-39,76],[-24,31],[7,28],[31,41],[37,19],[46,-4],[90,-50],[48,13],[-16,28],[-82,28],[-93,-3],[-78,16],[-31,60],[3,52],[-26,-3],[-47,53],[-27,67],[-20,10],[0,34],[-21,33],[-50,32],[-16,39],[14,137],[18,96],[0,30],[-29,6],[-17,13],[-73,112],[-23,-16],[-117,89],[-9,10],[-101,88],[-46,18],[-47,-5],[-26,17],[-9,42],[-51,25],[-43,53],[23,20],[-43,56]],[[0,23951],[25,-14],[108,5],[-6,-92],[183,-100],[74,-48],[70,-73],[14,-31],[-17,-60],[-30,8],[-22,25],[-18,55],[-30,4],[-69,41],[-29,-16],[-34,-60],[-21,-67],[5,-19],[40,-17],[38,-31],[8,-71],[-84,-63],[-12,-70],[-52,-77],[-39,-2],[-18,51],[62,100],[15,41],[-19,44],[-37,132],[-43,34],[-62,32]],[[0,26237],[35,15],[93,21],[59,40],[92,42],[107,26],[60,0],[29,-71],[23,-14],[89,-20],[52,33],[32,24],[-12,22],[4,53],[62,-1],[69,60]],[[655,27441],[45,-31],[-24,-40],[-41,9],[-13,32],[33,30]],[[7192,6691],[70,-36],[36,7],[63,39],[27,-9],[1,-38],[-27,-9],[-68,1],[2,-39],[39,8],[16,-33],[-51,-3],[-26,30],[-79,1],[1,-29],[-43,6],[19,41],[-20,66],[27,76],[20,-15],[-7,-64]],[[16971,13929],[23,-12],[10,-25],[8,-95],[23,-64],[14,-77],[19,-12],[18,-51],[-7,-37],[20,-16],[6,-130],[7,-51],[23,-89],[33,-18],[62,56],[17,-48],[75,-77],[30,-208],[1,-82],[14,-41],[53,-96],[28,-97],[-14,-124],[21,-34],[13,-84],[26,-39],[86,-61],[40,-2],[10,-46],[21,-29],[78,-39],[66,-44],[-6,-71],[20,-41],[38,-29],[34,-96],[28,-147],[5,-48],[57,-22],[-19,63],[16,36],[19,-41],[57,-52],[-10,45],[15,7],[19,-40],[4,-35],[-6,-108],[-9,-54],[54,-12],[9,-39],[36,-40],[39,11],[60,-126],[82,-110],[12,-81],[31,-71],[-10,-229],[17,-32],[51,-182],[3,-89],[-41,-92],[10,-31],[-23,-124],[-19,-58],[-6,-66],[7,-40],[-34,-126],[-32,-58],[-10,-84],[-58,-62],[-54,-40],[-11,-56],[-33,-48],[-1,-48],[-50,-99],[-23,-104],[3,-37],[-18,-18],[-56,-104],[-10,-37],[-6,-83],[-17,-84],[2,-134],[-41,-35],[-37,-17],[-150,-8],[-76,-12],[1,-23],[-115,-115],[-83,-18],[11,-39],[23,-2],[-10,-42],[-51,60],[-55,28],[-21,26],[14,36],[-38,23],[-13,-33],[-37,-16],[32,69],[-30,55],[-54,-49],[2,-35],[-74,-58],[-43,-40],[-21,-5],[-160,86],[-44,15],[-78,1],[-47,40],[-48,3],[-38,34],[-75,116],[-14,52],[23,49],[-21,80],[-46,81],[-60,59],[-27,9],[-28,-22],[-41,-6],[-3,27],[37,39],[16,93],[-61,130],[-13,-19],[-34,-152],[-20,-19],[-89,-26],[-12,13],[23,58],[41,-5],[21,86],[3,64],[15,47],[26,41],[24,101],[-2,22],[-29,73],[-22,-70],[-34,-86],[-46,-46],[-49,-35],[-96,-132],[11,-28],[-5,-51],[-105,83],[34,10],[-21,100],[-29,44],[-44,109],[-59,5],[-21,53],[25,34],[-14,38],[-68,66],[-29,-6],[-185,50],[-52,44],[-70,40],[-80,-23],[-52,2],[-147,-18],[-129,-73],[-109,-40],[-76,-8],[-72,12],[-23,-8],[-134,-91],[-83,-36],[-30,-33],[-17,-59],[-33,-62],[-31,-29],[-47,-3],[-19,16],[-120,-25],[-29,24],[-73,9],[-86,-15],[-96,-8],[-46,-31],[-18,-46],[-43,-27],[-58,-17],[-56,-61],[-63,-37],[-70,16],[-92,-7],[-89,57],[-39,50],[-31,25],[-53,15],[-6,60],[2,80],[27,-23],[38,21],[24,47],[-3,74],[12,95],[0,109],[-9,35],[-63,156],[-18,57],[-13,84],[-1,79],[-13,104],[-35,83],[-46,89],[-17,113],[-18,60],[-50,106],[-44,63],[-8,32],[22,22],[12,-55],[24,-51],[27,28],[1,37],[-42,55],[-20,59],[9,32],[52,-98],[26,-70],[22,25],[-4,94],[-47,108],[-30,91],[-29,53],[4,87],[25,74],[22,33],[6,79],[-20,82],[43,139],[20,-4],[-9,-49],[5,-59],[36,10],[34,108],[107,64],[57,72],[102,79],[112,-3],[39,11],[47,56],[88,18],[40,55],[45,-5],[102,19],[66,33],[52,35],[41,57],[62,148],[56,56],[9,38],[-19,17],[-9,72],[4,46],[19,39],[60,66],[21,58],[15,-50],[32,-70],[16,-55],[23,-37],[5,73],[31,-2],[4,27],[-50,96],[28,14],[-16,31],[18,22],[23,-50],[11,12],[52,-19],[22,21],[-8,43],[34,55],[-36,0],[-9,24],[10,36],[22,1],[10,27],[19,-2],[43,-27],[-14,62],[58,4],[-30,38],[-16,44],[28,27],[29,5],[9,32],[38,-48],[22,77],[49,25],[14,-26],[22,44],[1,40],[26,11],[27,-47],[23,13],[40,-42],[43,-77],[23,-60],[-4,-53],[-16,-71],[42,30],[12,52],[17,24],[-2,33],[63,-13],[29,-23],[40,7],[12,-22],[27,40],[3,59],[-36,-3],[-22,25],[19,64],[33,30],[21,78],[14,-3],[33,37],[-13,28],[4,51],[21,31],[22,8],[9,57],[36,-11],[20,50],[42,5],[15,-19],[31,-2],[100,11],[22,22],[20,94],[-27,34],[-51,-15],[-42,44],[71,23],[27,-40],[34,-7],[33,-26],[25,-36],[21,-9],[62,-5],[40,-62],[37,11],[46,3],[37,-37],[34,1],[36,33],[38,-20],[14,-51],[40,9],[7,34],[-22,12],[34,40],[27,-61],[31,8],[8,-27],[-28,-35],[-17,-37],[4,-50],[-34,-36],[-31,3],[-31,-16],[-7,-35],[2,-47],[20,3],[-19,-92],[-21,-24],[-27,-60],[-42,-27],[55,-55],[6,-29],[32,-2],[27,-27],[81,-98],[26,-5],[84,-50],[32,-26],[15,-29],[56,-55],[93,-28],[44,-90],[88,-65],[67,14],[45,37],[61,191],[13,82],[5,66],[19,79],[7,54],[-22,207],[11,68],[25,24],[-20,72],[45,77],[-45,6],[30,96],[24,54],[21,117],[39,82],[13,-36]],[[17696,7863],[-1,-44],[-25,-12],[-24,29],[50,27]],[[17277,8277],[56,-12],[120,-66],[26,-6],[60,11],[24,26],[53,-1],[81,47],[44,-49],[-6,-45],[0,-153],[-16,8],[-20,-49],[-10,-68],[-34,-52],[-45,-11],[-13,-44],[-25,-27],[-30,-57],[-45,19],[-63,13],[-3,25],[-67,69],[-26,65],[-13,60],[7,33],[-60,124],[-26,89],[31,51]],[[17733,8375],[-31,5],[-34,65],[23,23],[44,-60],[-2,-33]],[[17178,8410],[-26,-20],[-8,49],[17,55],[18,-15],[-1,-69]],[[16249,9169],[-55,-1],[-21,25],[5,29],[106,30],[26,-26],[58,-33],[-119,-24]],[[18406,11266],[-33,-142],[-17,22],[18,84],[32,36]],[[16592,12875],[-16,-6],[-38,-45],[-14,28],[18,24],[29,12],[21,-13]],[[16226,13288],[-42,1],[-32,19],[4,43],[38,46],[8,-49],[24,-60]],[[15367,13784],[2,-32],[-52,2],[9,78],[22,16],[19,-64]],[[15393,13830],[69,25],[12,18],[29,-50],[-22,-37],[-48,-51],[-41,27],[-27,32],[-15,71],[43,-35]],[[10091,20216],[-21,0],[-1,47],[-20,40],[18,8],[24,-95]],[[12608,15805],[-44,21],[-6,56],[-26,3],[-14,56],[13,63],[-23,48],[-16,83],[9,90],[27,74],[65,90]],[[12593,16389],[11,-46],[22,-22],[54,-13],[25,7],[77,-54],[-4,52],[23,89],[31,43],[-1,62],[27,25],[157,48],[27,16],[71,126],[28,37],[23,47],[19,58]],[[13183,16864],[49,15],[55,57],[21,-14]],[[13308,16922],[3,-18]],[[13311,16904],[16,21]],[[13327,16925],[27,-2],[25,37],[-24,55],[31,36],[36,1],[29,78],[75,159],[25,22],[0,-70],[22,39],[29,10],[9,-43],[31,-3],[28,-31],[-3,-35],[-17,-13],[1,-51],[23,0],[36,20],[11,-33],[16,0],[52,-37],[83,-53],[-12,-48],[-58,-31],[-27,-2],[-27,16],[-26,-26],[13,-32],[28,-36],[-12,-34],[-23,-9],[-56,9],[-22,-32]],[[13650,16786],[-14,-19],[32,-41],[-15,-44],[-33,-34],[15,-62],[19,-25],[51,-118],[-24,-67],[10,-32],[72,-86],[64,-61],[7,-25],[-20,-23],[-64,3],[-37,15],[-46,-38],[-25,-79],[-7,-36],[4,-120],[-10,-60],[-18,18],[-38,-85],[-14,-13],[-24,39],[-24,-91],[-23,-43],[-4,-68],[35,-13],[-10,-64],[-43,-75],[-16,-13],[2,-50],[-19,-66],[-92,-54],[-77,-53],[-11,51],[-13,102],[-57,9],[-27,-21],[-33,10],[-24,36],[-32,16],[-30,-9],[-65,-49],[-60,-8],[-27,21],[-1,56],[-17,43],[-29,-27],[-73,-25],[-84,21],[-10,22],[-29,221],[9,65],[-20,46],[-23,22]],[[12761,19784],[-2,-85],[-54,-72],[4,-74],[-76,-69],[-26,-11],[-18,-31],[-119,57],[-8,61],[-3,86],[8,19],[77,68],[8,35],[52,16],[39,-14],[53,26],[38,8],[27,-20]],[[14220,21962],[-13,-4],[-53,28],[-20,42],[88,-55],[-2,-11]],[[3771,13842],[10,-11],[13,-87],[-30,7],[-8,21],[6,60],[9,10]],[[2514,22619],[-26,3],[-15,-31],[-77,-33],[-41,0],[-39,21],[-11,61],[88,56],[57,-7],[75,-2],[4,-65],[-15,-3]],[[16,26417],[-16,5]],[[0,26452],[21,-14],[-5,-21]],[[1059,27099],[31,-26],[-46,-33],[-104,-47],[-24,52],[20,31],[68,27],[55,-4]],[[1056,27166],[3,-23],[-65,-23],[-10,40],[33,28],[39,-22]],[[17292,18572],[-26,-60],[-16,12],[26,48],[16,0]],[[1202,22724],[62,-28],[73,2],[72,-9],[33,-39],[55,28],[0,-42],[-131,-15],[-67,8],[-5,14],[-68,19],[-80,8],[-11,14],[7,48],[60,-8]],[[1712,22802],[-21,45],[29,34],[37,-6],[-20,-46],[-25,-27]],[[743,23279],[31,-62],[-36,-3],[-27,14],[8,33],[24,18]],[[1479,23239],[-38,58],[42,-6],[-4,-52]],[[1272,23190],[-33,8],[-22,39],[-113,103],[-41,20],[44,32],[22,-40],[66,-30],[31,-62],[48,-37],[-2,-33]],[[1545,23386],[-58,1],[-44,32],[9,19],[59,17],[34,-69]],[[14361,13927],[-15,26],[78,58],[-5,-40],[-58,-44]],[[14055,14055],[-28,-10],[-28,8],[-45,58],[-35,32],[-56,6],[-33,36],[35,33],[38,2],[58,14],[18,-25],[71,-63],[31,-61],[-26,-30]],[[14648,14202],[-42,-72],[-47,-60],[-80,-35],[-44,-2],[26,130],[7,19],[41,44]],[[14509,14226],[36,26],[22,5]],[[14567,14257],[63,41]],[[14630,14298],[33,66],[55,14],[218,29],[-33,-57],[-41,-14],[-22,-23],[-84,-48],[-66,-25],[-42,-38]],[[14486,14438],[-48,-66],[-38,3],[18,46],[68,17]],[[13536,14403],[-24,-86],[-22,-15],[-28,6],[-12,31],[-1,64],[41,36],[37,-15],[9,-21]],[[14543,14422],[-22,-44],[-29,16],[51,28]],[[14573,14455],[18,-8],[54,4],[5,-37],[-68,-16],[-30,14],[21,43]],[[13759,14421],[48,-1],[35,-42],[0,-41],[-69,-22],[-16,20],[-168,-63],[-51,17],[10,36],[3,50],[45,34],[35,-8],[49,-60],[60,13],[-3,20],[-41,21],[-31,40],[5,17],[35,8],[54,-39]],[[14360,14458],[11,-32],[-30,-28],[0,-34],[-50,-25],[-58,-16],[-45,-3],[-73,-18],[-63,24],[-56,6],[-35,-13],[-15,15],[9,54],[52,39],[20,2],[74,-22],[48,-35],[79,14],[33,-17],[43,6],[51,55],[5,28]],[[13355,14455],[45,-43],[-12,-27],[-63,-34],[-65,51],[-30,43],[3,17],[51,-19],[45,25],[26,-13]],[[15273,14470],[-27,28],[13,22],[24,-21],[-10,-29]],[[14865,14544],[2,-17],[-39,-37],[-39,9],[-47,-18],[5,30],[23,30],[24,-9],[61,29],[10,-17]],[[16404,14403],[-86,-4],[17,61],[43,96],[42,34],[41,7],[24,-18],[23,-34],[-5,-27],[-38,-66],[-28,-35],[-33,-14]],[[15518,14548],[-44,-67],[-28,22],[14,53],[45,79],[18,10],[2,-56],[-7,-41]],[[13189,14672],[-82,-47],[-70,5],[-37,11],[22,48],[149,3],[18,-20]],[[15893,14776],[10,-32],[-43,-60],[-19,31],[17,104],[35,-43]],[[15930,14803],[-14,-12],[-23,18],[-12,42],[40,18],[16,-28],[-7,-38]],[[12277,14866],[48,-52],[75,-12],[14,10],[24,-39],[16,-59],[14,-10],[99,-4],[85,-11],[38,-15],[29,38],[17,61],[43,2],[42,-50],[157,-32],[10,-9],[21,-94],[-3,-22],[70,-46],[94,24],[65,-35],[-17,-114],[21,-38],[-17,-17],[-50,22],[-87,53],[-50,-1],[-46,-17],[-103,28],[-104,4],[-80,28],[-74,49],[-73,26],[-65,13],[-31,-8],[-26,-24],[-80,19],[-49,36],[-52,13],[-66,7],[-28,26],[6,60],[-68,28],[-49,-10],[-7,13],[27,52],[31,91],[25,18],[80,-21],[43,4],[31,15]],[[15916,14911],[6,-40],[-28,-9],[-20,16],[2,27],[21,37],[19,-31]],[[14243,14976],[-13,-17],[-18,35],[23,36],[13,-25],[-5,-29]],[[14320,15001],[-14,-30],[-31,3],[10,88],[13,36],[38,17],[1,-59],[-17,-55]],[[14396,15112],[-21,-14],[-11,-78],[36,-26],[-53,-76],[-22,-3],[-13,39],[26,47],[12,81],[3,57],[28,30],[15,-57]],[[14404,15216],[-14,-26],[-25,21],[7,30],[32,-25]],[[15063,15284],[-37,-5],[10,33],[37,21],[9,-27],[-19,-22]],[[13474,15251],[-29,-21],[0,98],[14,42],[16,15],[4,-72],[-5,-62]],[[14932,15300],[-74,-30],[-62,39],[-25,51],[11,47],[79,9],[44,-19],[32,-40],[-5,-57]],[[11372,15403],[-10,-16],[-27,49],[10,23],[24,-34],[3,-22]],[[15248,15462],[56,-35],[29,3],[48,-31],[36,-78],[-4,-56],[-30,12],[-96,86],[-40,5],[-33,-20],[-50,27],[-45,-31],[-30,2],[-27,58],[-19,-28],[-19,-54],[-9,73],[17,13],[26,45],[190,9]],[[12413,15449],[-43,-59],[-48,3],[-6,53],[10,57],[23,12],[42,-21],[22,-45]],[[11325,15457],[-16,0],[-4,51],[27,-14],[-7,-37]],[[14773,15553],[-23,49],[18,11],[5,-60]],[[14803,15640],[-92,-11],[-18,23],[110,-12]],[[15338,15610],[-22,-3],[-52,31],[39,26],[43,14],[13,-53],[-21,-15]],[[14587,15619],[-29,-7],[-10,26],[10,42],[33,4],[85,-19],[4,-26],[-61,-4],[-32,-16]],[[16185,15641],[-55,-1],[-98,52],[164,-25],[-11,-26]],[[12103,15701],[24,-60],[3,-44],[22,-67],[47,-43],[-13,-47],[-23,-8],[-61,32],[-22,118],[-44,12],[-22,-5],[-21,35],[29,57],[28,22],[21,-9],[32,7]],[[15034,15709],[1,-38],[-67,-4],[-15,19],[7,39],[28,17],[46,-33]],[[14396,15754],[24,10],[23,-11],[-12,-45],[-37,7],[-34,-23],[-18,28],[15,50],[39,-16]],[[12608,15805],[3,-28],[-36,-29],[-12,10],[8,52],[37,-5]],[[11207,15655],[-16,-4],[-30,23],[-38,86],[16,53],[30,-25],[45,-109],[-7,-24]],[[15440,15768],[-9,-32],[-25,19],[-14,58],[46,7],[2,-52]],[[16089,15851],[63,-65],[-32,-21],[-43,18],[-14,58],[-23,-13],[-23,46],[72,-23]],[[16768,14266],[-21,18],[-83,123],[-29,57],[-25,-6],[-107,-12],[-16,20],[29,90],[-44,57],[24,14],[80,-6],[8,21],[-74,-12],[-42,16],[-29,32],[52,30],[-39,40],[-33,49],[-20,121],[-62,79],[-28,23],[-7,32],[-44,-2],[-18,29],[-36,5],[-126,62],[-64,10],[-73,36],[-21,30],[2,20],[-44,6],[-59,53],[-12,-5],[-20,38],[-24,10],[-8,-89],[-19,-29],[-48,-5],[-24,84],[21,30],[-8,29],[-64,72],[-45,12],[17,38],[46,-2],[24,-16],[40,35],[49,26],[47,-42],[47,42],[5,21],[-13,55],[-62,-33],[-149,-8],[-55,57],[-12,60],[-19,41],[-73,-13],[-34,15],[33,40],[13,56],[118,94],[29,12],[44,-1],[75,-47],[70,-20],[35,-29],[28,-90],[-21,-84],[3,-69],[10,-45],[27,-65],[33,22],[13,-70],[15,-48],[41,-22],[43,2],[109,182],[27,30],[50,11],[47,21],[-4,59],[75,52],[14,1],[249,-168],[34,0],[68,-13],[28,-15],[-2,-25],[36,7]],[[16766,15502],[59,-27],[147,-93],[133,-45],[51,-50],[72,-42],[100,-82],[15,-2],[61,-92],[-4,-112],[38,-5],[62,-29],[67,-53],[41,3],[34,-28],[35,-73],[-8,-45],[-63,-9],[-45,1],[-4,-46],[43,-96],[32,-30],[24,-45],[46,-33],[22,-47],[43,-133],[31,-20],[51,22],[24,-29],[-19,-40],[7,-25],[32,-20],[72,-8],[-2,-20],[-38,-20],[28,-39],[65,-47],[-9,-18],[37,-34],[-52,-22],[-27,16],[11,34],[-148,32],[-30,24],[-55,-9],[-82,20],[-22,25],[-39,83],[-27,16],[-16,56],[-50,27],[-10,52],[-56,110],[-45,34],[-116,40],[-17,61],[-55,-8],[-31,-61],[-37,24],[11,-66],[-22,-8],[-37,15],[9,-52],[-88,-16],[31,-24],[36,-52],[5,-45],[-118,-62],[-39,25],[-129,-7],[-33,13]],[[11910,15880],[-23,-10],[-12,30],[31,28],[13,-21],[-9,-27]],[[15009,15863],[-19,-25],[-23,0],[-9,37],[0,49],[19,10],[32,-71]],[[15438,15988],[31,-22],[0,-43],[-86,13],[-37,40],[26,9],[66,3]],[[11951,15957],[3,-23],[-40,11],[-9,19],[18,27],[28,-34]],[[11645,16208],[70,-56],[-16,-11],[-56,30],[2,37]],[[11707,16201],[25,-39],[-12,-11],[-44,39],[31,11]],[[11931,16192],[-6,-28],[-27,16],[-1,42],[23,5],[11,-35]],[[11632,16168],[-18,15],[-9,56],[10,23],[27,-35],[-10,-59]],[[11029,16115],[-28,-6],[-66,136],[22,34],[22,-15],[55,-92],[-5,-57]],[[11643,16272],[-53,1],[-15,27],[64,-18],[4,-10]],[[14644,16235],[-52,-85],[-23,-66],[-37,-15],[-80,-21],[-46,6],[-47,32],[-104,1],[-79,9],[-54,-19],[-38,5],[-28,14],[-38,-16],[-27,-46],[-19,-75],[7,-83],[7,-22],[79,-124],[52,-5],[14,36],[34,62],[23,21],[10,-28],[32,-7],[27,20],[60,20],[16,22],[51,17],[36,-13],[10,-27],[-9,-43],[-15,-8],[-28,32],[-27,-8],[-60,-105],[-23,-23],[-50,-19],[-11,-16],[-43,-12],[-11,-26],[48,-42],[89,-177],[-15,-65],[-12,-23],[54,-70],[11,-35],[28,3],[-1,-51],[-44,-2],[-60,-21],[-13,-69],[-38,9],[-30,30],[9,82],[-15,48],[-27,25],[-48,63],[27,112],[0,44],[-43,16],[-26,-15],[-50,-50],[27,-80],[1,-74],[-7,-200],[3,-138],[-98,-19],[-22,14],[-15,33],[5,53],[16,49],[14,111],[-1,41],[-14,97],[-27,26],[-48,-26],[-20,81],[-2,52],[13,34],[33,38],[24,180],[3,67],[63,107],[-4,60],[7,102],[13,47],[42,75],[45,-20],[28,49],[5,44],[15,15],[58,-18],[36,-38],[53,0],[57,-9],[50,-37],[34,25],[101,-20],[56,32],[85,126],[27,2],[16,-31],[-25,-47]],[[11534,16394],[14,-28],[-6,-36],[-36,-9],[-9,55],[37,18]],[[15003,16149],[23,10],[35,99],[36,32],[36,-2],[-5,-87],[-67,-57],[15,-25],[25,-11],[30,-59],[-79,34],[-22,3],[-11,-26],[5,-77],[12,-46],[28,-75],[-29,9],[-41,101],[-14,166],[-24,64],[17,74],[4,43],[40,75],[28,16],[-11,-81],[6,-38],[-4,-44],[-13,-28],[-34,-30],[14,-40]],[[15104,16386],[-31,-5],[-10,46],[19,40],[29,29],[15,-46],[-22,-64]],[[10830,16466],[-10,-24],[-66,52],[-15,20],[13,33],[78,-81]],[[12410,16688],[-33,44],[-4,23],[32,35],[23,-58],[-18,-44]],[[14890,16803],[-24,-31],[-5,47],[15,34],[14,-50]],[[10804,16992],[39,-11],[28,8],[90,-7],[26,-9],[37,-49],[25,-71],[33,-22],[-15,-60],[44,-28],[168,-152],[30,-43],[1,-21],[29,-19],[48,-106],[29,-7],[5,32],[27,1],[31,-39],[18,-71],[20,-12],[28,5],[53,-61],[8,-65],[24,-35],[86,-55],[12,-27],[26,30],[51,-49],[7,-56],[-21,-6],[-21,-33],[19,-40],[-24,-19],[-5,-39],[49,-51],[60,-12],[25,2],[12,-112],[21,-55],[37,-72],[85,-17],[51,-104],[6,-67],[-22,-62],[7,-71],[3,-120],[-13,-218],[-9,-20],[-50,72],[-23,-17],[5,-30],[-55,29],[-20,-21],[10,-39],[-23,1],[-86,151],[-79,70],[-135,145],[-39,89],[-53,54],[-31,69],[-39,60],[-35,72],[-13,86],[-45,132],[-37,80],[-68,130],[-33,29],[-28,44],[-47,187],[8,37],[-9,21],[-60,54],[-55,41],[-33,49],[-14,71],[-33,37],[-57,112],[-34,12],[-38,33],[-110,149],[-39,107],[1,42],[27,32],[60,-29],[24,-38],[18,-8]],[[10496,17284],[-27,41],[0,26],[27,5],[6,-43],[-6,-29]],[[10320,17996],[-22,-1],[-2,38],[29,-9],[-5,-28]],[[10343,18250],[3,-47],[-19,-11],[-13,49],[29,9]],[[10359,18444],[13,-21],[2,-62],[-35,-29],[0,52],[14,55],[2,78],[12,40],[18,-23],[-26,-90]],[[5453,21056],[-50,-14],[22,40],[56,27],[12,-10],[-40,-43]],[[81,23243],[-54,-100],[-15,-44],[1,-33],[22,-62],[-28,-61],[-7,2]],[[0,23216],[8,2],[67,32],[6,-7]],[[16824,23825],[-6,-70],[8,-61],[43,-56],[25,-76],[9,-64],[-23,-104],[-36,-32],[-12,-79],[-56,-18],[-17,-41],[-3,-42],[15,-80],[-7,-95],[-26,-27],[-30,-114],[19,-66],[0,-41],[-64,-112],[-39,-38],[-21,8],[24,94],[23,23],[-21,21],[-23,-12],[-30,-64],[-26,6],[-30,-15],[-3,-68],[-20,-38],[-30,11],[0,75],[-25,-6],[-43,-68],[-23,-17],[-118,3],[-26,32],[-13,40],[-34,-12],[-15,-53],[8,-18],[46,-30],[-83,-53],[-46,-110],[-22,-24],[-52,22],[-29,48],[-8,78],[44,62],[-15,30],[-66,-1],[-17,11],[-64,-11],[-34,-36],[-61,-7],[-92,-34],[-68,3],[-24,-72],[-13,-9],[-40,30],[-52,-19],[-60,-5],[0,62],[8,31],[60,-1],[30,46],[37,21],[64,70],[33,51],[66,30],[38,-21],[113,19],[108,32],[27,-11],[0,-30],[39,-4],[60,35],[-5,41],[35,76],[35,44],[31,59],[-11,63],[23,43],[56,25],[13,-16],[-66,-70],[26,-52],[31,-8],[49,43],[80,39],[42,40],[22,37],[93,126],[53,136],[22,73],[8,61],[-16,38],[-6,143],[56,82],[43,16],[22,-60],[47,8],[15,50],[-18,16],[-43,-21],[12,71],[70,-32]],[[14999,20936],[-9,16],[9,51],[58,56],[16,-12],[-57,-51],[-3,-45],[-14,-15]],[[15265,21385],[-45,-65],[-22,29],[16,18],[51,18]],[[15314,22097],[-15,5],[9,50],[23,-20],[-17,-35]],[[15450,22363],[42,-7],[35,11],[2,-44],[24,-35],[-1,-86],[-24,-30],[-31,-135],[0,-46],[-11,-34],[-35,-40],[-60,-35],[20,108],[-25,11],[-13,-35],[12,-47],[-15,-16],[-37,11],[-4,111],[55,142],[-6,51],[-25,54],[-32,-10],[9,-67],[-48,-5],[-28,44],[5,30],[-13,54],[55,11],[43,28],[29,56],[41,15],[36,-65]],[[15851,22510],[67,-40],[4,-63],[-59,-86],[-62,27],[-60,-28],[-33,-68],[-11,-54],[-43,5],[-19,28],[3,73],[-24,38],[52,75],[45,15],[60,-2],[17,42],[32,34],[31,4]],[[15962,22487],[-40,0],[19,34],[21,-34]],[[16412,23160],[-13,50],[30,45],[14,-47],[-31,-48]],[[17211,24324],[60,-6],[44,44],[13,-158],[29,-28],[-76,-38],[-50,-8],[-31,11],[-33,-15],[-47,-43],[-42,-67],[-24,-68],[-180,119],[-31,2],[-56,-35],[-43,7],[-17,21],[-31,0],[-24,-63],[75,-45],[44,-40],[-28,-18],[-27,13],[-78,-71],[-27,32],[12,38],[-15,67],[-25,26],[7,60],[55,38],[38,47],[-19,25],[19,36],[43,-28],[42,-11],[33,33],[-2,95],[35,46],[17,105],[-18,82],[5,66],[36,21],[104,-141],[33,-38],[70,-56],[110,-57]],[[4435,21614],[-21,-9],[-12,40],[20,21],[19,-27],[-6,-25]],[[14848,22292],[-39,-7],[-18,25],[20,24],[62,20],[21,-20],[-11,-26],[-35,-16]],[[8826,17171],[-99,-53],[-53,22],[-20,45],[-26,125],[-6,141],[-6,38],[9,29],[13,148],[21,52],[11,67],[24,22],[-44,19],[4,29],[29,-1],[14,-27],[57,-68],[40,-90],[50,-147],[39,-77],[13,-56],[3,-63],[-14,-75],[-10,-26],[-49,-54]],[[4560,13730],[11,-61],[27,-50],[1,-23],[49,-79],[28,-147],[6,-132],[20,-92],[19,-41],[-4,-40],[-29,-94],[-28,19],[-17,81],[-24,-2],[-13,-20],[31,-167],[-20,-82],[-15,-9],[-23,-89],[10,-82],[-20,-107],[-91,-359],[-47,-220],[-58,-228],[-36,-212],[-37,-118],[-26,-106],[-43,-35],[-61,-11],[-36,-17],[-73,-56],[-52,-1],[-63,51],[-40,15],[-42,42],[-49,127],[-3,104],[9,73],[-49,118],[-16,89],[2,52],[29,113],[31,30],[105,245],[-8,53],[5,50],[-29,93],[-29,159],[-12,118],[52,123],[15,122],[44,-1],[38,21],[68,13],[16,45],[28,3],[52,-30],[5,50],[73,81],[23,-16],[-14,-52],[39,33],[-18,57],[29,59],[22,-53],[34,84],[-6,45],[11,31],[35,26],[-24,63],[7,35],[17,4],[33,-45],[31,49],[42,52],[15,84],[-12,52],[44,73],[11,40]],[[10509,19590],[-5,-19],[-38,34],[-25,59],[57,-32],[11,-42]],[[19848,12161],[55,-25],[71,-74],[93,-113],[63,-53],[85,-86],[12,-31],[-17,-26],[-58,32],[-40,34],[-11,23],[-72,41],[-35,28],[-116,150],[-19,38],[-11,62]],[[20367,11930],[5,-33],[-33,8],[-6,34],[34,-9]],[[20263,12068],[-2,-36],[23,-29],[-14,-22],[-42,46],[6,44],[29,-3]],[[20375,7118],[3,-40],[-26,-11],[-32,15],[2,64],[32,-2],[21,-26]],[[21010,8320],[-33,-27],[32,-33],[28,-87],[41,27],[81,25],[38,2],[-36,-90],[32,-51],[-108,-166],[-30,-63],[-36,-24],[-35,-59],[19,-42],[38,-24],[-19,-27],[-38,11],[-53,-8],[-88,-48],[-53,-49],[-29,-128],[-64,-154],[-32,-17],[-25,-43],[-67,-56],[-5,-15],[-67,-20],[-96,25],[-20,25],[-63,19],[-131,17],[-36,38],[-2,37],[47,20],[-19,30],[17,43],[65,87],[79,48],[16,47],[46,62],[85,31],[98,69],[117,98],[60,65],[30,63],[29,108],[52,28],[30,64],[0,72],[39,41],[41,31],[25,-2]],[[21052,9388],[71,-38],[52,-48],[25,3],[34,-100],[-35,1],[58,-91],[-9,-20],[13,-71],[69,-58],[29,10],[-5,59],[44,-20],[20,-149],[28,-7],[119,-59],[11,-10],[49,20],[63,72],[39,-1],[24,-17],[-20,-141],[-39,-54],[-17,-74],[-64,0],[-49,-25],[-21,-55],[19,-32],[-19,-79],[-55,-90],[-57,-113],[-63,-66],[-44,-22],[-46,70],[-8,27],[30,51],[22,94],[-9,42],[-32,40],[-129,68],[-26,48],[12,24],[44,30],[31,3],[26,42],[23,120],[17,10],[-10,62],[-24,90],[28,41],[-52,21],[-14,40],[11,14],[-8,98],[-20,0],[-30,-26],[-112,182],[-3,63],[-46,77],[28,-7],[27,-49]],[[21,28966],[-21,-14]],[[0,28963],[21,3]],[[103,28994],[105,39],[-6,-48],[-38,-1],[-71,-41],[-81,8],[54,49],[37,-6]],[[44,29043],[10,-36],[-50,-20],[-4,4]],[[0,29032],[44,11]],[[374,29176],[36,-27],[-10,-45],[-57,-7],[-50,-19],[-41,15],[43,62],[79,21]],[[580,29224],[-87,19],[69,29],[18,-48]],[[1143,29369],[6,-29],[-72,-30],[-33,22],[35,27],[64,10]],[[1054,29357],[-108,-4],[2,26],[104,10],[2,-32]],[[5389,12039],[22,-7],[21,-42],[-2,-39],[-21,-8],[-43,23],[-13,32],[9,33],[27,8]],[[14185,19475],[39,-18],[31,21],[18,-39],[-17,-73],[14,-80],[21,-16],[11,-32],[-4,-47],[-31,-108],[-65,-46],[-21,-25],[-23,-102],[28,-134],[6,-51],[16,-55],[22,-25],[39,-17],[9,14],[-4,49],[15,10],[61,-1],[26,-40],[1,-55],[24,-9],[28,36],[65,-24],[-46,-14],[-7,-27],[62,-92],[23,-16],[-12,-88],[-27,22],[-2,41],[-67,28],[-29,84],[-52,64],[-42,23],[23,-76],[-15,-23],[-21,33],[-78,74],[-33,-21],[-24,-44],[-28,1],[-19,27],[-39,5],[-8,80],[48,50],[-18,51],[-38,15],[7,-66],[-28,-5],[-15,69],[-29,29],[-16,95],[-5,73],[-20,17],[3,70],[50,-54],[36,24],[-12,37],[-3,52],[16,93],[-2,78],[7,95],[15,78],[35,38],[16,-15],[38,-1],[47,-37]],[[14129,17138],[10,-28],[-45,1],[-3,22],[38,5]],[[14262,17218],[-28,-9],[-23,39],[37,24],[27,-18],[-13,-36]],[[14811,17688],[-21,-78],[23,-33],[5,-86],[26,-56],[5,-58],[-20,-53],[-22,-18],[-12,-116],[-14,42],[-14,86],[-18,62],[-26,-18],[-34,-77],[0,-39],[26,-23],[15,-51],[-5,-53],[-33,-68],[-16,2],[-14,47],[-49,12],[-68,44],[-34,48],[-11,75],[14,70],[20,51],[-29,44],[-58,38],[-20,-7],[-17,-56],[-25,38],[-37,-37],[-2,42],[-37,-5],[-14,-25],[-37,-128],[-29,11],[-4,33],[31,80],[-4,37],[32,53],[45,15],[40,25],[12,51],[54,24],[35,-9],[16,-83],[27,6],[57,73],[33,-15],[4,80],[33,-2],[66,20],[-2,47],[-15,74],[13,26],[54,-70],[55,-92]],[[14538,17813],[-54,8],[-1,48],[22,14],[21,35],[23,-5],[23,-51],[-16,-38],[-18,-11]],[[14393,17716],[-31,2],[-67,109],[12,60],[23,1],[22,31],[13,126],[33,33],[40,-16],[3,-14],[-43,-160],[-13,-65],[26,-58],[-18,-49]],[[14418,17781],[2,79],[61,170],[27,39],[-1,-62],[-27,-72],[-27,-48],[-21,-80],[-14,-26]],[[13904,18058],[10,-42],[18,-26],[-17,-26],[-34,-16],[-10,-22],[-44,-41],[-21,-8],[-6,-59],[-31,-61],[-46,-29],[-17,-48],[-62,-53],[-38,-42],[5,50],[44,70],[35,41],[19,2],[51,83],[49,63],[29,64],[19,4],[38,64],[-1,106],[16,9],[-6,-83]],[[14638,18106],[28,-143],[0,-27],[-26,-37],[-36,26],[4,111],[-25,45],[-26,0],[-15,97],[36,-36],[54,-1],[6,-35]],[[14335,18038],[-108,-56],[16,124],[8,106],[-10,34],[112,-85],[35,-4],[-8,-47],[-41,-42],[-4,-30]],[[13959,18329],[34,-38],[-14,-20],[-24,36],[4,22]],[[14487,18310],[20,-41],[6,-54],[-38,39],[-25,40],[-43,4],[-1,57],[12,5],[69,-50]],[[14659,18375],[17,-20],[22,-68],[-2,-90],[13,-38],[-4,-58],[-41,0],[-28,48],[-8,73],[-49,59],[-31,56],[0,33],[43,-5],[38,12],[30,-2]],[[14258,18393],[-18,-80],[-11,10],[10,48],[19,22]],[[14031,18557],[38,-10],[31,6],[30,-15],[44,-68],[-2,-97],[-22,-45],[-30,4],[-29,61],[-29,92],[-38,48],[7,24]],[[14255,18532],[-14,-36],[-22,18],[2,50],[34,-32]],[[14550,18571],[-19,-11],[-24,22],[14,76],[8,6],[28,-60],[-7,-33]],[[18463,13793],[-29,-2],[-47,45],[3,13],[65,-37],[8,-19]],[[18064,14155],[52,-54],[-19,-22],[-33,76]],[[18087,14168],[-10,-7],[-50,8],[2,58],[35,-13],[23,-46]],[[18014,14217],[-31,-6],[11,42],[20,-36]],[[18330,14288],[35,-28],[-25,-20],[-23,18],[13,30]],[[18757,14723],[-33,-29],[-26,5],[-46,55],[-6,54],[-23,21],[-30,49],[2,74],[41,-9],[16,-44],[33,-57],[27,-22],[36,-55],[9,-42]],[[18199,15198],[31,-17],[14,17],[34,-23],[2,-63],[-7,-31],[-23,-30],[-14,-45],[5,-41],[-24,-19],[-54,3],[-5,-31],[-40,-51],[-48,-13],[-64,-44],[-86,-5],[-30,36],[-59,11],[-80,50],[-13,24],[14,38],[137,-21],[56,6],[22,43],[9,-42],[24,-8],[61,10],[36,27],[10,40],[38,45],[30,-9],[12,27],[-22,119],[34,-3]],[[18348,15083],[-29,76],[0,46],[-48,102],[-25,27],[-56,39],[-94,93],[77,-41],[68,-57],[19,-30],[71,-79],[42,-63],[-3,-72],[-22,-41]],[[18022,15499],[-48,5],[-14,20],[28,24],[34,-26],[0,-23]],[[17607,15609],[-20,-32],[-71,3],[-4,36],[63,5],[32,-12]],[[173,31163],[137,-26],[186,-73],[24,-71],[347,-66],[-235,-37],[-103,-33],[2,-47],[-82,-34],[-21,-99],[-67,0],[-122,-176],[-164,57],[-67,50],[-8,1]],[[0,30708],[227,41],[-227,-17]],[[0,30795],[4,0],[75,35],[-54,80],[-25,-3]],[[0,31091],[78,-75],[56,-1],[-51,105],[90,43]],[[1093,30797],[46,-46],[102,-13],[-17,-33],[-202,-77],[9,48],[-253,8],[94,71],[-99,32],[121,26],[163,4],[36,-20]],[[861,30885],[62,-3],[14,-61],[-163,-5],[-68,45],[155,24]],[[2415,31208],[26,-29],[-215,-19],[-13,28],[202,20]],[[1064,31236],[16,-57],[193,32],[348,-45],[-32,-42],[-109,-33],[-50,-46],[-140,-13],[-87,-27],[-435,29],[-148,35],[11,31],[-135,-1],[-80,35],[-16,41],[177,8],[11,53],[115,-7],[83,-41],[204,-26],[-10,66],[84,8]],[[19262,14237],[32,-28],[46,4],[31,-28],[33,-55],[-49,-9],[-83,17],[-32,59],[0,36],[22,4]],[[19480,14064],[85,-52],[30,-41],[5,-27],[-33,-1],[-38,16],[-35,39],[-14,66]],[[19479,14217],[19,-43],[-20,-5],[1,48]],[[19027,14379],[16,-14],[-11,-30],[-22,18],[17,26]],[[19390,14419],[38,-63],[1,-40],[31,-56],[18,-77],[-40,47],[-43,71],[-21,97],[16,21]],[[18962,14487],[16,-51],[19,-4],[14,-35],[-9,-29],[-33,32],[-6,32],[-32,-16],[-11,14],[27,50],[15,7]],[[18906,14510],[12,-50],[-24,2],[-6,34],[18,14]],[[19088,14572],[37,-15],[46,-58],[46,-20],[57,-68],[-34,-4],[-79,59],[-47,56],[-26,50]],[[18824,14745],[19,-11],[66,-66],[3,-17],[47,-56],[-47,11],[-96,112],[8,27]],[[14089,20194],[-23,-14],[-62,108],[-24,72],[9,99],[10,43],[99,209],[69,71],[14,5],[39,-32],[7,-31],[-9,-64],[-37,-153],[-11,-72],[-17,-64],[-23,-57],[-16,-20],[-25,-100]],[[198,26648],[-14,50],[18,47],[67,72],[-71,-169]],[[450,26794],[-23,-2],[-10,84],[10,31],[70,62],[14,-36],[-2,-57],[-59,-82]],[[3269,14776],[-37,27],[-9,74],[18,10],[9,-54],[11,-9],[8,-48]],[[20175,13220],[22,-61],[36,-3],[15,-50],[7,-51],[-60,-21],[-15,51],[-15,99],[10,36]],[[20533,12335],[25,-39],[-19,-20],[-18,35],[12,24]],[[20506,12467],[31,-61],[-9,-9],[-38,23],[1,35],[15,12]],[[20411,12674],[24,-29],[-12,-25],[-37,16],[25,38]],[[20383,12856],[32,-38],[-26,-9],[-14,21],[8,26]],[[20384,12940],[15,-31],[-25,-15],[-25,29],[35,17]],[[20261,12984],[21,-40],[43,-45],[3,-32],[-47,3],[-6,59],[-29,26],[15,29]],[[5155,18389],[52,8],[48,-25],[-53,-36],[-57,-10],[-45,44],[30,33],[25,-14]],[[5660,12107],[-29,11],[11,50],[28,41],[26,-47],[-12,-40],[-24,-15]],[[21057,26025],[23,-21],[-69,-13],[-37,45],[83,-11]],[[0,2683],[113,10],[327,-4],[227,-32],[163,8],[256,-29],[151,7],[180,38],[149,12],[309,60],[255,24],[96,27],[165,-13],[74,26],[-14,80],[-31,24],[10,48],[61,29],[94,-12],[27,-44],[64,-20],[97,-69],[113,-32],[67,-46],[72,22],[110,-59],[55,9],[64,49],[43,5],[-2,121],[30,25],[118,35],[22,23],[137,38],[117,55],[121,5],[98,22],[67,36],[153,17],[5,56],[77,12],[72,-17],[-21,-48],[74,-12],[184,60],[-112,55],[22,26],[71,10],[102,-26],[9,-27],[106,-5],[-49,90],[-2,37],[51,45],[87,18],[106,47],[220,20],[194,-8],[61,-20],[112,-73],[47,-4],[58,-28],[7,-26],[-102,-19],[6,-33],[47,-20],[56,7],[196,-27],[14,-42],[211,3],[144,-30],[73,-3],[72,-19],[119,29],[324,-44],[380,-34],[78,29],[42,-1],[40,-162],[-56,-37],[19,-33],[-20,-60],[-107,11],[-33,-13],[23,-67],[52,-32],[-96,-5],[-44,-22],[-12,-53],[37,-27],[104,15],[17,-87],[221,-100],[68,-23],[64,65],[131,102],[48,22],[-58,65],[129,54],[60,16],[149,-8],[88,24],[48,46],[243,78],[-5,71],[48,32],[124,62],[124,33],[151,23],[196,43],[126,45],[83,55],[86,-2],[76,-17],[215,58],[89,32],[82,1],[156,-23],[264,64],[135,-27],[113,2],[251,23],[48,-22],[72,-4],[48,14],[82,-7],[198,31],[-6,64],[-28,63],[116,-12],[26,24],[105,53],[61,-2],[21,-21],[-79,-30],[-47,4],[-19,-30],[4,-49],[115,-31],[77,49],[139,24],[147,-25],[166,-13],[122,-29],[112,-35],[169,-35],[109,-64],[51,7],[34,54],[110,-4],[47,46],[-18,26],[54,38],[83,24],[124,8],[96,32],[29,-6],[67,-58],[38,-7],[44,-55],[46,-19],[104,21],[73,-7],[103,-80],[91,-31],[77,-8],[88,18],[89,2],[189,23],[17,-44],[37,-3],[386,71],[244,75],[173,-64],[63,-78],[184,0],[58,49],[-9,45],[45,55],[-64,39],[29,20],[255,-54],[125,5],[107,16],[98,-22],[79,66],[-35,59],[10,43],[40,10],[79,-57],[-27,-76],[147,-69],[76,4],[104,-12],[61,-24],[145,-8],[113,-35],[239,-11],[84,-45],[115,32],[53,-15],[28,-28],[108,0],[99,51],[121,-5],[49,-33],[-28,-42],[-145,-34],[-38,-35],[104,1],[138,-62],[100,24],[84,-2],[23,-79],[-74,-9],[45,-31],[95,20],[92,-25],[160,30],[6,-63],[43,-19],[67,2],[70,47],[189,27],[116,-46],[-33,-43],[56,-42],[76,22],[181,-57],[62,16],[131,-34],[103,-15],[87,-63],[108,-36],[14,-38],[59,-35],[86,-17],[120,14],[66,-64],[77,23],[235,-24],[163,1],[25,-15],[114,-18],[73,-77],[85,-19],[167,-71],[38,39],[66,-70],[-105,-33],[-32,-39],[36,-75],[-74,-67],[-76,-36],[2,-37],[-78,-41],[-68,19],[-100,-11],[-72,-34],[-253,-78],[69,-70],[-219,-12],[-39,10],[-88,-63],[-16,-74],[178,-7],[103,-26],[-11,-29],[-240,19],[-38,-45],[50,-9],[-34,-60],[-51,-14],[72,-61],[-9,-77],[114,-103],[-27,-54],[141,-15],[-20,-65],[-129,-36],[57,-17],[207,27],[110,-59],[-265,-11],[-183,-44],[-33,-45],[-214,1],[-57,-21],[-51,-91],[31,-54],[-31,-26],[110,-119],[-58,-39],[-3,-85],[204,-60],[236,-99],[-337,-30],[61,-22],[402,19],[124,-51],[151,-29],[-28,-22],[237,-25],[-77,-44],[309,-38],[205,-8],[470,-82],[189,-7],[361,-44]],[[21860,31],[95,-31]],[[20225,1334],[174,-4],[118,-16],[-100,-46],[-101,13],[-78,-18],[-100,15],[-15,70],[102,-14]],[[14306,3374],[-96,1],[-74,122],[-6,45],[33,10],[47,-72],[97,-71],[-1,-35]],[[21770,12589],[-7,-23],[-28,-5],[-30,-26],[-32,-1],[-72,27],[-9,50],[56,81],[65,19],[36,-44],[21,-78]],[[21951,12930],[-54,-74],[-2,-37],[-22,-7],[-25,19],[-17,-34],[-36,-15],[-39,25],[11,34],[102,46],[17,22],[65,21]],[[17921,24637],[0,43],[71,64],[12,-23],[-83,-84]],[[18745,25513],[-65,-39],[-14,51],[48,14],[35,60],[33,-21],[-37,-65]],[[17009,26274],[8,-58],[32,-108],[-4,-57],[30,-58],[-31,-117],[7,-65],[43,-86],[30,-129],[28,-105],[74,-214],[-43,43],[-53,17],[-56,-3],[-45,-32],[-57,-201],[-2,-53],[12,-38],[57,-105],[50,-41],[21,-81],[-58,41],[-62,27],[-37,-32],[-28,-97],[-35,-1],[-16,99],[33,94],[-13,101],[31,73],[-8,63],[-13,25],[-9,81],[21,116],[5,121],[-9,53],[9,95],[11,43],[-32,69],[-46,74],[3,95],[18,35],[8,96],[-17,51],[65,32],[27,-32],[28,26],[17,43],[-60,104],[66,-4]],[[16359,26367],[-29,-24],[-65,26],[37,69],[57,-2],[26,-22],[-26,-47]],[[20176,26388],[-58,13],[-54,74],[23,10],[89,-97]],[[19857,27137],[-88,-45],[54,86],[85,37],[5,-67],[-56,-11]],[[7523,28616],[-68,-6],[-13,40],[57,11],[24,-45]],[[4618,29044],[-138,-33],[-54,31],[-7,29],[27,62],[112,30],[98,-38],[32,-26],[-70,-55]],[[20526,29177],[-46,-5],[-101,24],[-50,24],[79,39],[144,-39],[-26,-43]],[[5864,29343],[184,-106],[4,-33],[-117,-3],[-72,28],[-57,39],[11,54],[47,21]],[[5074,29436],[-109,75],[67,8],[52,-47],[-10,-36]],[[21955,29446],[-55,-26],[-108,-14],[-14,59],[97,54]],[[21875,29519],[80,27]],[[21955,29441],[0,5]],[[8331,29690],[-74,20],[74,39],[74,-8],[20,-31],[-94,-20]],[[8589,29775],[-124,22],[90,46],[34,-68]],[[5352,29891],[150,-23],[-46,-86],[-79,-65],[-12,-97],[117,-139],[97,-56],[87,-35],[-43,-30],[-222,29],[-56,-29],[-113,39],[-109,9],[35,24],[-3,42],[-146,73],[-74,-15],[-58,14],[-29,47],[19,54],[110,-3],[72,94],[-69,37],[19,21],[96,10],[-16,44],[33,18],[240,23]],[[7438,29846],[-130,-14],[22,69],[110,16],[48,-11],[49,-50],[-99,-10]],[[17111,29911],[-4,-41],[-41,-11],[-216,21],[-105,25],[-5,38],[48,46],[127,8],[153,-54],[43,-32]],[[16726,29997],[-66,31],[28,35],[94,-10],[-7,-35],[-49,-21]],[[13102,30082],[-85,-53],[-150,31],[42,58],[159,-10],[34,-26]],[[17532,30273],[116,14],[83,-7],[98,-34],[54,8],[175,-27],[-5,-44],[-150,-26],[-176,4],[-88,37],[-179,51],[72,24]],[[16715,30338],[40,-1],[19,67],[100,10],[110,-48],[192,-11],[153,-42],[-59,-39],[-10,-43],[-80,-25],[-212,-40],[-38,41],[-360,-53],[-47,-19],[-111,21],[-129,59],[-52,39],[42,43],[-16,41],[77,55],[112,32],[156,-37],[113,-50]],[[7162,30492],[-91,-51],[-253,-55],[-538,-99],[-121,-32],[-105,-63],[-21,-32],[-234,-61],[14,-43],[-106,-61],[1,-25],[-154,-101],[-240,39],[-164,64],[128,32],[-9,14],[119,47],[34,31],[-16,39],[137,3],[-116,79],[115,1],[54,56],[88,0],[59,55],[70,22],[234,42],[85,50],[209,-12],[254,30],[186,43],[11,30],[199,47],[165,-23],[6,-66]],[[11728,31018],[179,-87],[96,-9],[24,-48],[-74,-43],[-271,-26],[-206,-2],[-199,-41],[0,45],[157,118],[61,74],[131,39],[102,-20]],[[10468,31118],[-72,-22],[-242,24],[-9,38],[243,-3],[80,-37]],[[11002,31181],[59,-21],[159,0],[93,-36],[-28,-111],[21,-68],[-73,-19],[-233,-1],[-99,36],[-276,14],[-55,30],[-3,48],[-146,13],[151,44],[69,58],[361,13]],[[5596,31163],[-164,5],[17,40],[140,9],[26,-10],[-19,-44]],[[5160,31186],[-184,0],[70,36],[114,-36]],[[5849,31229],[-214,-49],[-8,34],[-38,21],[260,-6]],[[4346,31309],[28,-15],[-186,-49],[-42,32],[200,32]],[[6263,31313],[1,-50],[-127,-44],[-233,26],[30,53],[329,15]],[[4787,31318],[110,-32],[-89,-25],[-172,-19],[-117,-41],[-269,-15],[-21,25],[194,15],[172,46],[-47,30],[83,21],[156,-5]],[[5666,31283],[-411,56],[26,21],[264,-29],[121,-48]],[[6485,31281],[-162,18],[89,29],[292,-4],[-54,-26],[-165,-17]],[[11020,31300],[-85,-29],[31,-69],[-357,-27],[-121,-22],[-158,21],[-78,56],[111,11],[54,88],[216,31],[117,30],[139,-68],[131,-22]],[[17770,24575],[-34,-17],[-106,-77],[-70,-68],[-4,27],[140,146],[40,-15],[39,41],[42,4],[-7,-34],[-40,-7]],[[4468,23922],[58,-78],[32,-84],[36,-62],[25,-15],[42,-1],[27,-16],[4,-31],[-40,4],[-52,-26],[-19,-30],[-4,-58],[-26,-132],[-36,12],[-9,-70],[1,-57]],[[4507,23278],[10,-103],[21,-49],[45,-29],[66,-7],[32,-11],[21,-49],[83,-65],[34,-16],[89,-23],[29,3],[183,54],[54,-17],[20,29],[-17,74]],[[5177,23069],[-14,105],[5,99],[12,67],[-18,51],[-29,53],[-37,4],[0,35],[35,-12],[23,10],[-33,70],[-18,17],[-48,0],[-33,14],[-3,75],[26,109],[16,-25],[93,-51],[84,20],[45,29],[4,43],[-88,70],[-23,113],[-32,14],[-68,-9],[-24,-19],[-20,-57],[8,-35],[-8,-55],[-46,108]],[[4986,23912],[-1,75],[37,88],[-25,30],[-62,14],[-89,53],[-14,26],[-62,164],[-75,31],[3,61],[81,-10],[31,-23],[33,25],[-58,46],[-2,20],[67,75],[156,4],[17,51],[44,68],[17,129],[-20,39],[-26,12],[-59,0],[-24,-28],[-61,19],[-34,28],[-44,12],[-29,-11],[-188,-100],[-46,-35]],[[4553,24775],[-79,-82],[-65,-33],[-37,-4],[-38,-29],[-61,-132],[-45,-33],[-8,-51],[45,-20],[28,-33],[40,-87],[-10,-43],[-3,-84],[44,-76],[70,-105],[34,-41]],[[7969,23049],[-52,1],[9,-40]],[[7926,23010],[-58,-33],[-65,9]],[[7803,22986],[-113,-10],[-62,-18],[-83,-56],[-61,-65],[39,-73],[15,-96],[-19,-47],[-47,-49],[-18,-49],[20,-23],[-12,-49],[-29,-19],[-41,-5],[-84,17],[5,-50],[32,-30],[15,-41],[-14,-29],[-37,-26],[-46,-2],[-45,-130],[9,-82],[-26,-52],[-28,-21],[-25,21],[-38,10],[-48,-11],[-56,-34],[16,-38],[-66,-23],[-32,21],[-27,-9],[-61,-71],[-12,-61],[10,-116],[-13,-19],[-162,-61],[-45,7],[-70,-17],[-55,-5],[-25,6],[-102,-12],[-89,12],[-169,71]],[[6104,21652],[119,178],[8,34],[-7,61],[-9,14],[-114,23],[-11,205],[-25,104],[23,79],[-27,23],[-4,82],[64,105],[36,162],[0,18]],[[6157,22740],[81,-32],[55,-42],[60,9],[41,29],[17,47],[2,38],[90,27],[76,45],[26,38],[16,124],[118,57],[16,27],[71,-40],[34,5]],[[6860,23072],[73,-4],[91,-31]],[[7024,23037],[31,-47],[98,68],[18,7],[28,-23],[44,7],[-7,37],[18,25],[44,8],[42,-14],[18,30],[-4,51],[59,86],[32,12],[56,-42],[24,-98],[-16,-123],[17,-59],[38,-18],[191,147],[65,-6],[10,-35],[57,31],[55,-1],[27,-31]],[[5505,20727],[-39,-44],[-16,49],[-19,-18],[-3,-165],[-39,-23],[-7,-90],[-29,-63],[-3,-76]],[[5350,20297],[-30,-11],[-292,50],[-44,33],[-109,185],[-6,35]],[[5467,20930],[12,-24],[-3,-45],[16,-11]],[[4196,23358],[-52,-4]],[[4144,23354],[-44,132],[-40,-4],[-84,42],[-15,-5]],[[3961,23519],[-29,35],[-42,28],[-34,-4],[-42,16],[-8,49],[19,60],[-9,46],[-27,37]],[[3789,23786],[74,12],[95,6],[36,15]],[[3994,23819],[13,-35],[44,-19],[21,-25],[-31,-41],[11,-31],[57,-37],[-11,-75],[41,-44],[54,-38],[-4,-62],[7,-54]],[[3994,23819],[38,32],[32,-10],[60,-45],[63,-19],[23,6],[3,48],[-44,28],[-12,47],[25,29],[55,-32],[41,-39],[33,-51],[63,-10],[94,119]],[[4507,23278],[-37,-2],[-76,78],[46,101],[-49,59],[-25,-6],[-135,-108],[-35,-42]],[[4144,23354],[-93,33],[-40,47],[-45,69]],[[3966,23503],[-5,16]],[[10326,20157],[-8,-112],[-27,16],[-20,-51],[9,-27]],[[9856,20200],[-11,30],[-12,105],[-19,86],[-25,56],[3,35],[22,27],[-10,63],[-50,17],[-38,51],[17,49],[40,28],[48,17],[25,18],[-32,46],[-40,22],[-46,37],[9,61],[23,24],[10,58],[58,-62],[28,28],[9,-38],[27,-33],[26,-7],[30,27],[11,-45],[-1,-84],[7,-29],[74,-28],[108,11],[73,-7],[34,4],[39,-26],[19,-33],[-29,-31],[-15,-53],[-43,-43],[-22,-6],[-52,-37],[-16,-69],[31,-98],[27,-27],[28,28],[-5,24],[29,87],[38,-4],[10,-82],[20,-95],[13,-145]],[[13308,16922],[-29,-29],[8,-89],[-11,-30],[-21,-19],[-48,93],[-24,16]],[[13327,16925],[24,-115],[-32,24],[-8,70]],[[10198,21254],[-11,-24],[12,-27],[50,-5],[9,-30],[3,-78]],[[10261,21090],[-51,-14],[-133,-9],[-18,6],[-129,-12],[-63,14],[-33,31],[-18,30],[20,36]],[[9836,21172],[23,54],[54,88],[37,29],[66,-14],[40,-23],[57,-2],[45,6],[40,-56]],[[7969,23049],[19,12],[3,42],[-22,97],[-27,72],[-52,34],[-41,-13],[-24,21],[-9,56],[-26,68],[7,32]],[[7797,23470],[36,5],[11,22],[-9,50],[11,33],[202,110],[27,-37],[33,-16],[55,4],[25,20],[26,82],[49,26],[53,-7],[38,5],[70,69],[239,123],[9,33]],[[8672,23992],[15,9],[-14,62],[36,71],[43,34],[-3,58],[-31,71],[-20,115],[5,33],[-32,40],[-34,21],[27,23],[117,21],[77,30],[48,-16],[72,-10],[9,46],[-35,22],[8,67],[40,86],[55,167],[76,-34],[67,-15],[83,7],[30,-24],[80,39],[16,57],[-22,122],[34,74],[45,3],[61,20],[26,37],[-7,48],[15,20],[59,4]],[[9618,25300],[71,10]],[[9689,25310],[2,-42],[21,-63],[80,-59],[9,-26],[50,-28],[75,-10],[103,-61],[17,-56],[59,-87],[17,-61],[-22,-120],[-25,-39],[-6,-46],[27,-51],[85,-23],[148,-14],[36,4],[84,-16],[60,-37],[95,-75],[42,-22],[48,-4],[34,-74],[43,-120],[69,-90],[84,9],[163,-25],[147,-14],[118,22],[71,-3],[111,-30],[47,-47],[139,-49],[46,-24],[60,-15],[86,4],[64,-45],[30,31],[207,103],[97,29],[184,-5],[74,7],[111,50],[21,14],[82,106],[57,26],[61,38],[-11,47],[-41,43],[-19,36],[43,112],[31,26],[49,-4],[69,-42],[94,-16],[78,44],[51,66],[47,11],[73,2],[32,10],[55,42],[23,53],[42,61],[36,19],[70,6],[36,26],[89,36],[63,-6],[67,-18],[51,-2],[31,12],[0,43],[-18,41],[-161,167],[-101,4],[-43,-48],[-33,-5],[-58,31],[-72,-3],[-47,-33],[-40,37],[-5,50],[153,318]],[[13534,25438],[37,-23],[90,-31],[55,12],[67,59],[67,12],[28,27],[8,32],[-27,21],[83,138],[47,100],[77,61],[8,34],[-8,71],[-52,13],[-21,36],[58,53],[69,37],[155,35],[75,-2],[98,15],[101,-47],[71,-25],[39,8],[61,-28],[95,-129],[73,-220],[53,-95],[30,-120],[1,-40],[40,-52],[73,-4],[156,-39],[90,-92],[58,-10],[6,-128],[34,-69],[81,-18],[120,6],[50,44],[57,30],[118,45],[74,8],[-6,-42],[14,-79],[-51,-60],[-32,-66],[-55,-192],[-38,-71],[-36,-40],[-9,-50],[-22,-39],[-137,55],[-25,-16],[-32,-47],[-42,-8],[-15,-32],[31,-137],[-10,-87],[6,-50],[-30,-85],[-50,-5],[-35,-23],[15,-27],[17,-31]],[[15387,24031],[-74,106],[-27,2],[-24,-107],[-27,-3],[-50,-49],[-34,-24],[-103,0],[8,-56],[21,-25],[-26,-43],[-65,9],[-68,23],[-22,48],[-46,-25],[-16,-54],[-76,-93],[-138,-81],[-70,-70],[1,-22]],[[12378,20077],[-18,13],[-53,-2],[-40,24],[-64,70],[-20,50],[6,40],[26,46],[-35,23],[-38,-3],[-61,16],[-22,13],[-41,59],[-36,-27],[-50,-80],[-37,-24],[-77,-13],[-33,9],[-34,24],[-31,-67],[-80,63],[-45,-72]],[[11595,20239],[-53,18],[-23,-55],[6,-40],[21,-34],[1,-99],[-20,-19],[-52,14],[-13,56]],[[11462,20080],[-3,39],[-31,-16],[-37,-42],[-64,9],[-21,76],[-14,27],[-57,10],[-24,43],[13,64],[23,44],[-82,63],[-17,104],[0,66],[-89,-8],[-60,-44],[6,46],[-21,73],[2,46],[44,96],[94,110],[16,77],[6,66],[-4,148],[-11,44],[-15,10],[-29,-22],[-22,79],[0,28],[-22,38],[-36,39],[-28,-7],[-22,-46]],[[10957,21340],[-70,55],[-26,32],[-43,98],[-21,27],[-40,2],[-38,-29],[-53,-18],[-55,32],[-46,-15],[-23,-48],[-67,-49],[-32,0],[-28,-22],[-72,-108],[-34,-31],[-83,-13],[-28,1]],[[9836,21172],[-20,41],[15,59],[-8,31],[-28,18],[-64,-44]],[[9731,21277],[-120,-11],[-75,53],[-14,0],[-75,-36],[-35,78],[-43,0],[-38,31],[-51,24],[-69,62],[-7,57],[-28,17],[-29,-17],[-40,12],[-37,57],[-59,37],[-75,73],[-12,32],[-81,9],[-30,-75],[-25,39]],[[8788,21719],[-62,48],[-49,25],[-4,18],[-43,53],[-41,-2],[-18,21],[-77,42],[-11,17],[-4,84],[5,22],[-34,49],[-14,61]],[[8436,22157],[44,29],[10,-44],[36,-13],[41,64],[-14,81],[-46,46]],[[8507,22320],[3,89],[26,29],[25,-1],[31,42],[14,43],[30,46],[23,7],[17,34],[20,117],[-51,4],[-36,18],[-17,38],[-31,25],[-68,-13],[-106,-62],[-14,-16]],[[8373,22720],[-34,-6],[-61,11],[-61,28],[-19,18],[-62,17],[-22,58],[10,16],[-15,67],[-30,29],[-90,48],[-63,4]],[[10957,21340],[-5,-57],[-33,-31]],[[10919,21252],[-12,22],[-52,36],[-111,51],[-19,-6],[-75,-93],[-95,-47],[-70,-92],[-42,-24],[-36,-5],[-114,2],[-32,-6]],[[12593,16389],[-8,-24],[11,-53],[22,-42],[58,-76],[41,-37],[49,33],[36,9],[31,-12],[41,-1],[40,23],[33,68],[26,17],[72,-3],[12,-30],[66,-32],[68,44],[34,9],[22,-16],[39,88],[-8,46],[32,44],[12,89],[18,31],[35,12],[9,75],[2,79],[11,52],[25,41],[178,-4],[50,-33]],[[14509,14226],[42,-28],[16,59]],[[14630,14298],[18,-96]],[[16766,15502],[0,-364],[0,-341],[-21,-54],[20,-54],[3,-123],[0,-300]],[[3963,23032],[24,-72],[65,-146],[63,-31],[31,-27],[-18,-119],[-19,-11],[-27,-55],[-23,-70],[-12,-69],[30,-42],[42,-39],[29,-53],[14,-57],[66,-45],[98,-85],[46,-99],[-23,-69],[0,-75],[32,-1],[14,-70],[60,-123]],[[4386,21679],[-34,19],[-45,0],[-32,-26],[-31,-89],[-46,-75]],[[4198,21508],[-31,-6],[-181,21],[-54,28],[-328,338],[-135,89],[-87,69],[-162,40]],[[3220,22087],[-54,231]],[[3166,22318],[246,178],[31,11],[24,27],[21,47],[1,92],[21,71],[-1,41],[-14,38],[2,58],[16,33],[50,11],[76,89],[1,9]],[[3640,23023],[63,50],[38,2],[48,-23],[64,6],[62,-42],[27,24],[21,-8]],[[7119,20536],[33,0],[2,52],[107,8],[19,-19],[49,8],[8,14],[51,19],[6,-29],[44,1],[19,34],[-2,70],[-59,171],[-42,1],[-23,43],[11,59],[-1,57],[-51,9],[-37,28],[1,50],[9,32],[59,73],[17,50],[30,35],[23,3],[17,-29],[43,-24],[85,24],[35,21],[66,151],[74,52],[42,96],[9,38],[59,56],[41,96],[63,104],[2,51],[-11,60],[13,32],[31,25],[60,23],[7,38]],[[8028,22119],[26,-1],[40,33],[28,78],[59,50],[36,-2],[34,-37],[36,-24],[43,8],[106,-67]],[[8788,21719],[-13,1],[-69,-79],[-49,-168],[1,-15],[44,-38],[38,-6],[46,-34],[63,-67],[41,-32],[70,-28],[48,-7],[5,-41],[141,-22],[35,13],[75,-22],[8,-37],[68,-70],[34,2],[67,-29],[43,-2],[76,-34],[92,-4],[65,-10],[21,73],[-9,45],[-16,22],[8,68],[18,63],[-8,16]],[[10919,21252],[-22,-33],[16,-50],[-18,-10],[-23,22],[-64,-18],[-27,-18],[-19,-31],[-53,-52],[-35,-15],[-18,-34],[4,-62],[-10,-80],[-49,-56],[-11,-47],[20,-33],[-14,-42],[-72,-173],[-89,33],[-9,-22],[10,-53],[-9,-103],[-31,-23],[-2,-84],[11,-53],[-38,-58],[-41,0]],[[6104,21652],[45,-70],[53,-120],[67,-68],[91,-52],[3,-82],[-2,-81],[68,-42],[-16,-78],[-24,-16],[-37,-2],[-50,-19],[-45,-42],[-27,-66],[-27,-149]],[[3963,23032],[-24,89],[-45,48],[19,65],[-20,121],[-21,81],[68,96],[26,-29]],[[5177,23069],[62,3],[38,15],[27,61],[79,62],[117,13],[17,21],[91,-3],[28,-40],[32,-23],[120,-50],[42,7],[65,-31],[32,-72],[73,-36],[35,-62],[105,2],[5,-14],[1,-118],[11,-64]],[[2649,21582],[-10,56],[-75,272]],[[2564,21910],[30,71]],[[2675,22265],[29,-3],[40,31]],[[2744,22293],[7,-105]],[[2751,22188],[-16,-57]],[[2735,22131],[-43,29],[-19,-13],[-13,-50],[-1,-46],[32,-32],[-28,-26],[-10,-60],[39,6],[33,22]],[[2725,21961],[-4,-60],[-29,-104],[-34,-205]],[[3220,22087],[-28,-31],[-265,-93],[129,-184],[-54,-77],[-118,-70],[-23,-48],[-55,-57],[-150,30]],[[2725,21961],[6,42],[4,128]],[[2751,22188],[27,7],[70,-66],[54,-12],[264,201]],[[8672,23992],[-27,39],[-69,17],[-37,45],[-76,20],[-138,15],[-103,4],[-134,-13],[-23,-12],[-48,7],[-63,27],[-76,45],[-84,-38],[-19,-73],[-17,-33],[-118,46],[-78,22],[-74,-16],[-38,-49],[-6,-43]],[[7444,24002],[-52,-40],[-39,-20],[-53,-45],[-78,-50],[-83,-85],[0,-76],[-27,-1],[-62,41],[17,43],[-49,27],[-75,-8],[-63,1],[-23,139],[-71,12],[12,79],[1,111],[-24,-11],[-69,95],[-42,44],[-43,9],[-30,-17],[-192,9],[-85,-18],[-60,-4],[-90,109],[-33,56],[-143,118],[-188,112],[-345,-112],[0,-697]],[[5455,23823],[-66,-13],[-53,73],[-23,55],[-95,85],[-86,-16],[-78,-32],[-68,-63]],[[4553,24775],[-65,33],[-3,41],[34,20],[-52,90],[-36,49],[-42,35],[-105,0],[-14,35],[4,60],[-83,32],[38,98],[33,27],[-32,55],[20,93],[50,54],[-3,24],[42,34],[41,-40],[42,-70],[24,-12],[65,37],[-23,47],[-16,66],[53,14],[47,29],[1,27],[28,25],[105,44],[69,69],[66,-13],[34,-28],[48,36],[43,15],[33,-57],[111,5],[101,-80],[40,-58],[35,-25],[2,74],[69,-55],[60,-33],[36,21],[73,75],[82,5],[48,-40],[58,41],[54,16],[62,-80],[86,-33],[42,-7],[58,40],[15,-16],[68,-1],[82,31],[24,80],[-20,30],[-36,9],[-106,49],[-44,53],[91,40],[37,25],[-37,55],[39,67],[27,8],[115,-6],[-1,23],[-126,38],[22,46],[-47,22],[18,57],[26,20],[53,-10],[92,-4],[66,21],[155,36],[108,17],[47,0],[30,44],[153,21],[155,28],[46,14],[14,32],[92,45],[105,-3],[25,-16],[121,0],[60,-125],[-19,-54],[10,-42],[118,19],[27,23],[22,-39],[73,-6],[38,-27],[-3,-57],[25,-39],[60,39],[78,-12],[44,47],[21,-1],[84,53],[177,68],[-23,-55],[-33,-25],[188,-144],[170,-258],[113,-215],[37,28],[47,73],[57,-22],[2,-24],[46,-49],[33,-10],[71,-1],[65,19],[59,29],[31,1],[50,-24],[57,-65],[7,-35],[101,-67],[24,-66],[15,-12],[113,-18],[52,41],[84,-88],[12,-25]],[[7797,23470],[-196,-36],[-48,15],[-26,43],[-65,-21],[-96,23],[-135,-5],[-12,56],[37,51],[76,12],[61,-38],[57,45]],[[7450,23615],[29,24],[80,-30],[59,53],[56,18],[48,38],[-4,14],[-132,57],[-29,57],[-19,7],[-35,-66],[-79,17],[-73,52],[5,24],[50,53],[75,46],[-37,23]],[[12316,18777],[-21,-131],[30,-97],[-7,-47],[-3,-159],[-22,-21],[-38,-15],[-70,-44],[-41,-48],[-26,11],[-29,-40],[7,-60],[41,-52],[-2,-35],[-45,19],[-49,11],[-55,-32],[-46,-48],[-38,-19]],[[11697,18202],[0,24],[-74,288],[0,43],[35,17],[48,112],[23,22],[60,18],[56,-15],[107,16],[20,-7],[8,-29],[22,21]],[[12002,18712],[23,-45],[56,-16],[41,-19],[11,26],[-25,59],[45,14],[46,-2],[21,-24],[55,33],[41,39]],[[4449,21401],[-90,-2],[-39,90],[-122,19]],[[14862,23164],[0,22],[57,64],[36,7],[92,-4],[26,23],[11,35]],[[11595,20239],[6,-17],[60,-85],[37,-14],[-3,-82],[4,-37],[26,-52],[20,-12],[69,-9],[42,37],[24,-11],[34,-45],[10,-47],[39,-52],[2,-31],[-15,-39],[-23,-30],[-80,9],[-16,-64],[163,-141],[-5,-28],[69,-98],[17,-44],[43,-61],[61,-74],[3,-50],[18,-51],[97,-59],[-13,-49],[8,-71],[24,-60],[-8,-48],[8,-47]],[[12002,18712],[30,14],[15,28],[2,91],[7,82],[-6,51],[-73,89],[-36,79],[0,48],[7,97],[-116,176],[-71,22],[-15,-8],[-37,-78],[-41,-30],[-67,61],[-48,-19],[-88,-109],[-22,16],[24,139],[16,152],[-12,96],[-38,4],[-22,-21],[-36,15],[-9,26],[20,84],[-27,34],[-26,-17],[-11,17]],[[11322,19851],[11,49],[93,134],[36,46]],[[2791,22556],[59,-2],[26,-81],[-82,-110],[3,-16],[-53,-54]],[[11322,19851],[-18,21],[-49,-23],[-44,-43],[-30,-44],[-58,-32],[-27,-5],[-47,10],[-31,-69],[-6,-116],[-29,-48],[0,-40],[20,-89],[19,-36],[72,-110],[56,-181],[-28,-54],[-5,-90],[-34,-7],[-12,-19],[5,-63],[56,-111],[41,-46],[18,-34],[13,-73],[1,-48],[-13,-27],[16,-61],[25,-48],[27,-127],[-13,-41],[-46,-107],[-35,-48],[-22,-79]],[[9689,25310],[45,22],[7,35],[101,-1],[62,32],[35,29],[14,31],[122,66],[67,27],[58,38],[114,28],[107,-34],[124,-5],[18,-61],[30,-41],[84,-16],[69,7],[165,-21],[63,-16],[78,44],[32,53],[2,34],[-43,42],[-14,42],[9,72],[37,54],[47,37],[43,66],[31,-22],[93,-42],[83,-13],[74,-29],[118,-33],[32,-25],[14,-91],[59,-77],[88,-36],[88,-10],[65,31],[100,24],[79,-2],[117,-22],[42,-37],[121,-43],[17,-57],[50,-44],[129,-13],[29,-12],[118,-7],[57,6],[58,25],[63,4],[101,26],[65,38],[29,33],[131,75],[71,-12],[51,-45],[67,-18],[72,25],[57,-33]],[[8507,22320],[-27,35],[-7,86],[49,57],[-95,53],[-15,21],[-39,148]],[[11326,17212],[6,28],[21,9],[99,-68],[7,-56],[-8,-43],[11,-24],[22,38],[32,20],[23,-29],[26,15],[23,76]],[[5071,19150],[-148,445]],[[4923,19595],[366,174],[44,62],[78,332],[-61,134]],[[7803,22986],[-16,-34],[-62,-16],[-67,-77],[-5,-63],[21,-15],[59,-8],[81,-66],[28,-44],[24,-14],[-20,-50],[-65,-54],[-10,-32],[24,-121],[6,-127],[123,-65],[19,-50],[55,-4],[30,-27]],[[4923,19595],[-218,-49],[-165,-24],[-125,-85],[-77,-136],[-16,-56],[-66,-35],[-31,59],[-48,-9],[-122,17],[-34,21],[-114,0],[-51,-15],[-73,39],[-25,-16],[-10,-73],[12,-63],[-41,-67],[-24,0]],[[4765,20683],[25,-47],[40,1]],[[2783,22802],[34,-8],[22,19],[37,66],[-9,31],[18,62],[62,-30],[31,-3],[54,19],[46,26],[39,0],[59,-36],[46,-6],[84,19],[45,21],[77,45],[62,-9],[98,17],[24,19],[28,-31]],[[7024,23037],[9,67],[36,69],[15,7],[22,50],[-40,47],[3,72],[-31,38],[-56,34],[-7,64],[38,23],[54,-19],[59,-3],[39,62],[21,68],[26,-3],[19,94],[31,5],[24,-16],[106,63],[32,-48],[-54,-65],[25,-27],[55,-4]],[[5455,23823],[126,-12],[13,35],[-5,89],[36,41],[43,4],[107,98],[49,5],[67,-58],[86,-20],[17,-21],[6,-49],[-2,-87],[47,-40],[87,-4],[70,7],[50,-52],[65,-194],[163,-134],[166,-117],[81,-65],[50,-4],[101,-67],[-20,-28],[2,-78]],[[3532,23861],[44,-12],[94,21],[30,-7],[89,-77]],[[1469,23711],[30,33],[7,35],[41,49],[-7,50],[-29,19],[2,21],[98,50],[24,2],[54,-23],[45,1]],[[2564,21910],[-7,19]],[[8515,24851],[34,-19],[-48,-52],[-59,-14],[-165,19],[-212,21],[-20,31],[-7,-38],[-66,-13],[-19,-56],[-65,-20],[-24,-192],[-88,118],[0,37],[40,39],[-8,32],[45,4],[10,43],[113,73],[168,-7],[130,-26],[90,1],[58,-34],[14,36],[79,17]],[[0,2683],[0,8326]],[[21885,28270],[70,44],[0,-28314],[-95,31]],[[0,22139],[0,806]],[[0,23216],[0,396]],[[0,23951],[0,493]],[[0,26237],[0,185]],[[0,26452],[0,180]],[[0,28791],[0,32]],[[0,28836],[0,116]],[[0,28963],[0,28]],[[0,29032],[0,1577]],[[0,31091],[0,1007],[21955,0],[0,-2552],[-80,-27]],[[21955,29446],[0,-5],[0,-378],[-77,46]],[[0,30708],[0,24]],[[0,30795],[0,112]],[[8968,21756],[43,-8],[138,-101],[41,-42],[42,-22],[43,-38],[94,-4],[299,-23],[17,21],[26,15],[86,1],[321,-6],[140,-12],[154,-35],[48,8],[99,38],[62,44],[44,50],[15,4],[10,-17],[4,-27],[-7,-34],[-36,-53],[-23,-32],[0,-26],[23,-61],[6,-55],[31,-32],[10,-9],[-2,-19],[-13,-22],[-61,-61],[-58,-80],[-85,-59],[-143,-33],[-47,-17],[-85,-48],[-58,-6],[-86,0],[-36,-9],[-30,-20],[-24,-29],[-11,-27],[-8,-19],[-23,-130],[14,-69],[4,-137],[34,-38],[30,-45],[21,-57],[4,-14]],[[10523,22276],[48,2],[66,-14],[120,-87],[53,-20],[93,-106],[30,-91],[12,-74],[79,-155],[58,-116],[45,-133],[54,-274],[16,-93],[3,-189],[9,-68],[20,-62],[37,-62],[33,-34],[51,-22],[16,-14],[9,-23],[4,-28],[-6,-40],[-44,-131],[-3,-31],[7,-39],[108,-239],[5,-8],[17,9],[4,-76],[0,-2],[-106,-116],[-7,-7],[-2,-6],[-26,-64],[20,-20],[37,-38],[0,0],[2,-21],[1,-20],[4,0],[68,-8],[48,3],[95,34],[-40,-93],[-16,-158],[-36,-107],[-1,-36],[10,-27],[0,-1],[3,-2],[70,57],[40,-34],[15,1],[55,4],[8,1],[19,47],[8,19],[1,0],[100,-13],[101,-154],[4,-91],[3,-68],[1,-28],[107,-165],[1,0],[0,-2],[-2,-45],[1,-1],[26,-37],[15,-67],[-3,-104],[9,-47],[4,-22],[-2,-96],[3,-131],[-6,-49],[-16,-21],[-21,-10],[-38,-50],[-42,-32],[-13,-40],[21,-125],[7,-22],[6,-21],[48,-83],[97,-145]],[[10023,25022],[-17,-46],[-62,-46],[-45,-18],[-46,4],[-280,108],[-72,37],[-114,20],[-37,6],[-121,-49],[-70,57],[-28,30],[-10,23],[-7,88],[16,22],[34,25],[19,28],[-17,33],[-69,56],[-117,79],[-46,23],[-48,13],[-180,25],[-251,73],[-173,208],[-32,50],[-53,106],[-37,40],[-98,75],[-37,38],[-26,36],[-12,30],[0,0]],[[10085,22493],[48,4],[245,-42],[112,42],[43,45],[31,18],[38,4],[43,-14],[50,-37],[83,-99],[54,-38],[83,-84],[56,-87],[95,-93],[28,-53],[22,-60],[31,-63],[-10,-40],[28,-90],[10,-63],[15,-207],[18,-154],[6,-15],[10,-29],[6,-15],[5,-20],[10,-44],[11,-44],[5,-19],[22,-55],[25,-16],[21,32],[14,47],[17,31],[13,-17],[5,-40],[-9,-106],[1,-80],[7,-26],[15,-5],[52,9],[87,51],[22,0],[8,-23],[4,-36],[11,-22],[59,33],[42,7],[19,15],[11,38],[-3,119],[9,29],[16,11],[43,86],[10,49],[32,35],[8,29],[1,35],[63,0],[55,21],[49,-2],[58,21],[37,0],[11,25],[94,102],[132,71],[38,41],[56,83],[12,30],[23,23],[39,15],[79,14],[106,2],[76,-19],[51,-36],[43,-67],[66,-5],[24,-25],[30,-76],[21,-15],[25,1],[18,-7],[5,-30],[23,-16],[70,81],[37,33],[-1,29],[17,16],[33,55],[32,0],[33,-14],[80,-96],[38,-30],[40,-9],[38,6],[58,40],[34,68],[50,54],[36,23],[37,55],[53,52],[36,83],[25,39],[36,24],[43,10],[56,-13],[110,-99],[46,-18],[70,-11]],[[13465,21631],[2,7]]],"transform":{"scale":[0.007515372352539284,0.005278524017997818],"translate":[15,-84.43006392969399]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285,286,287,288,289]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[290,291,292,293,294,295,296]],"type":"Polygon","properties":{"ct":[66.03,33.84]},"id":"AFG"},{"arcs":[[28,297,298,26,299]],"type":"Polygon","properties":{"ct":[54.33,23.9]},"id":"ARE"},{"arcs":[[300,301,302,303,304]],"type":"Polygon","properties":{"ct":[44.94,40.29]},"id":"ARM"},{"arcs":[[[-305,305,285,306]],[[-302,307,308]]],"type":"MultiPolygon","properties":{"ct":[47.66,40.35]},"id":"AZE"},{"arcs":[[[309,17,310]],[[59]]],"type":"MultiPolygon","properties":{"ct":[90.26,23.98]},"id":"BGD"},{"arcs":[[[62,311]],[[312,64]]],"type":"MultiPolygon","properties":{"ct":[114.61,4.49]},"id":"BRN"},{"arcs":[[313,314,315]],"type":"Polygon","properties":{"ct":[90.43,27.39]},"id":"BTN"},{"arcs":[[[-291,316,317,318,319,320,321,322,10,323,324,325,326,-316,327,328,329,330,331,332]],[[67]],[[68]]],"type":"MultiPolygon","properties":{"ct":[103.87,36.63]},"id":"CHN"},{"arcs":[[70]],"type":"Polygon","properties":{"ct":[33.14,35.02]},"id":"CYP"},{"arcs":[[-314,-327,333,334]],"type":"Polygon","properties":{"ct":[94.39,28.13]},"id":"XAP"},{"arcs":[[[335,66,60]],[[82]],[[83]],[[84,336,86,337]],[[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]],[[338,127]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]]],"type":"MultiPolygon","properties":{"ct":[114,-0.19]},"id":"IDN"},{"arcs":[[339,21,340,341,342,343,344]],"type":"Polygon","properties":{"ct":[43.76,33.05]},"id":"IRQ"},{"arcs":[[[-311,18,345,346,-330,347,-328,-315,-335,348]],[[147]],[[148]],[[149]],[[150]]],"type":"MultiPolygon","properties":{"ct":[79.35,22.34]},"id":"IND"},{"arcs":[[[-294,349,20,-340,350,-308,-301,-307,286,351]],[[151]]],"type":"MultiPolygon","properties":{"ct":[54.3,32.57]},"id":"IRN"},{"arcs":[[352,353,37,354,355,356,357,358,33]],"type":"Polygon","properties":{"ct":[34.97,31.38]},"id":"ISR"},{"arcs":[[-343,359,32,-359,360,-357,361]],"type":"Polygon","properties":{"ct":[36.79,31.25]},"id":"JOR"},{"arcs":[[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]]],"type":"MultiPolygon","properties":{"ct":[137.99,36.66]},"id":"JPN"},{"arcs":[[-319,362,363,364,288,365]],"type":"Polygon","properties":{"ct":[67.29,48.16]},"id":"KAZ"},{"arcs":[[-318,366,367,-363]],"type":"Polygon","properties":{"ct":[74.53,41.46]},"id":"KGZ"},{"arcs":[[368,12,369,370]],"type":"Polygon","properties":{"ct":[104.93,12.71]},"id":"KHM"},{"arcs":[[[-341,22,371]],[[163]]],"type":"MultiPolygon","properties":{"ct":[47.57,29.33]},"id":"KWT"},{"arcs":[[[372,8]],[[164]]],"type":"MultiPolygon","properties":{"ct":[127.86,36.48]},"id":"KOR"},{"arcs":[[-325,373,-371,374,375]],"type":"Polygon","properties":{"ct":[103.76,18.51]},"id":"LAO"},{"arcs":[[-355,38,376]],"type":"Polygon","properties":{"ct":[35.89,33.92]},"id":"LBN"},{"arcs":[[165]],"type":"Polygon","properties":{"ct":[80.71,7.61]},"id":"LKA"},{"arcs":[[[-310,-349,-334,-326,-376,377,16]],[[167]]],"type":"MultiPolygon","properties":{"ct":[96.52,21.25]},"id":"MMR"},{"arcs":[[-321,378]],"type":"Polygon","properties":{"ct":[103.07,46.84]},"id":"MNG"},{"arcs":[[-332,379]],"type":"Polygon","properties":{"ct":[79.12,35.02]},"id":"XAC"},{"arcs":[[[-312,63,-313,65,-336,61]],[[14,380]]],"type":"MultiPolygon","properties":{"ct":[114.72,3.61]},"id":"MYS"},{"arcs":[[-329,-348]],"type":"Polygon","properties":{"ct":[83.93,28.26]},"id":"NPL"},{"arcs":[[[-298,29,381,382]],[[-300,27]]],"type":"MultiPolygon","properties":{"ct":[56.1,20.58]},"id":"OMN"},{"arcs":[[-293,383,-346,19,-350]],"type":"Polygon","properties":{"ct":[68.8,29.38]},"id":"PAK"},{"arcs":[[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]]],"type":"MultiPolygon","properties":{"ct":[121.41,15.97]},"id":"PHL"},{"arcs":[[-299,-383,384,31,-360,-342,-372,23,385,25]],"type":"Polygon","properties":{"ct":[44.55,24.13]},"id":"SAU"},{"arcs":[[-323,7,-373,9]],"type":"Polygon","properties":{"ct":[127.18,40.14]},"id":"PRK"},{"arcs":[[-386,24]],"type":"Polygon","properties":{"ct":[51.2,25.28]},"id":"QAT"},{"arcs":[[228]],"type":"Polygon","properties":{"ct":[120.97,23.75]},"id":"TWN"},{"arcs":[[-344,-362,-356,-377,39,386]],"type":"Polygon","properties":{"ct":[38.5,35.02]},"id":"SYR"},{"arcs":[[-370,13,-381,15,-378,-375]],"type":"Polygon","properties":{"ct":[101.03,15.16]},"id":"THA"},{"arcs":[[-297,387,-367,-317]],"type":"Polygon","properties":{"ct":[71.01,38.52]},"id":"TJK"},{"arcs":[[-295,-352,287,-365,388]],"type":"Polygon","properties":{"ct":[59.4,39.11]},"id":"TKM"},{"arcs":[[[-338,87]],[[-337,85]]],"type":"MultiPolygon","properties":{"ct":[125.89,-8.82]},"id":"TLS"},{"arcs":[[[-303,-309,-351,-345,-387,40,389]],[[42,390]]],"type":"MultiPolygon","properties":{"ct":[35.45,38.99]},"id":"TUR"},{"arcs":[[-296,-389,-364,-368,-388]],"type":"Polygon","properties":{"ct":[63.12,41.77]},"id":"UZB"},{"arcs":[[-324,11,-369,-374]],"type":"Polygon","properties":{"ct":[106.31,16.62]},"id":"VNM"},{"arcs":[[-292,-333,-380,-331,-347,-384]],"type":"Polygon","properties":{"ct":[75.8,34.55]},"id":"XJK"},{"arcs":[[[-382,30,-385]],[[239]]],"type":"MultiPolygon","properties":{"ct":[47.55,15.94]},"id":"YEM"},{"arcs":[[391,36,-354]],"type":"Polygon","properties":{"ct":[34.33,31.38]},"id":"PSE"},{"arcs":[[-358,-361]],"type":"Polygon","properties":{"ct":[35.27,31.95]},"id":"PSE"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[392]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[28,29,30,31,32,33,352,391,36,37,38,39,40,389,303,305,285,286,287,288,365,319,378,321,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27]],[[59]],[[62,63,64,65,66,60,61]],[[67]],[[68]],[[70]],[[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]],[[338,127]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[167]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[228]],[[42,390]],[[239]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[393,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,394,-243],[-172],[-173],[-245],[-115],[-147],[-125],[-70],[-184],[-138],[-167],[-232],[-48],[-246],[-241],[-50],[-51],[-53],[-52],[-131],[-123],[-67,-66,-65,-64,-63,-62,-61,-124],[-140],[-137],[-139],[-136],[-134],[-114],[-121],[-130],[-133],[-135],[-103],[-112],[-96],[-99],[-101],[-104],[-102],[-109],[-113],[-111],[-116],[-117],[-118],[-119],[-122],[-126],[-132],[-142],[-91],[-84],[-89],[-94],[-100],[-95],[-83],[-93],[-90],[-110],[-108],[-92],[-107],[-106],[-105],[-97],[-224],[-221],[-248],[-55],[-54],[-171],[-234],[-170],[-235],[-174],[-169],[-247],[-49],[-59],[-58],[-88,-87,-86,-85],[-226],[-206],[-202],[-203],[-205],[-204],[-57],[-56],[-223],[-239],[-238],[-237],[-236],[-233],[-220],[-222],[-146],[-197],[-143],[-76],[-225],[-227],[-210],[-211],[-120],[-127],[-129,-128],[-208],[-98],[-209],[-228],[-207],[-151],[-150],[-149],[-148],[-144],[-141],[-192],[-145],[-187],[-186],[-194],[-190],[-189],[-191],[-188],[-193],[-229],[-60],[-158],[-69],[-159],[-156],[-201],[-185],[-157],[-198],[-196],[-200],[-195],[-168],[-68],[-199],[-253],[-252],[-254],[-251],[-250],[-163],[-285],[-242],[-249],[-155],[-161],[-162],[-160],[-165],[-166],[-164],[-240],[-152]],[[395,-153,-154,396,-45,397,-44,-43,-42,-41,-40,-39,-38,-37,-36],[-71],[-77],[-78],[-79],[-80],[-81],[-82]],[[398,-72,-73,399,-2,-46],[-47],[-231],[-75],[-74],[-230]],[[400,-3]],[[401,-175,-176,402,-178,-179,403,-212,-215,404,-260,405,-4],[-270],[-257],[-278],[-276],[-264],[-272],[-263],[-283],[-274],[-266],[-284],[-255],[-269],[-275],[-273],[-268],[-267],[-271],[-181],[-217],[-218],[-219],[-216],[-265],[-259],[-256],[-182],[-183],[-281],[-258],[-279],[-277],[-282],[-280],[-180],[-177]],[[406,-213]],[[407,-214]],[[-1]],[[-290,-289,-288,-287,-286]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[408]},{"type":"LineString","arcs":[409]},{"type":"LineString","arcs":[410]},{"type":"LineString","arcs":[411]},{"type":"LineString","arcs":[412]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/asia_50m.json b/topojson/dist/asia_50m.json new file mode 100644 index 00000000000..756df7427e5 --- /dev/null +++ b/topojson/dist/asia_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[0,97742],[49,-17],[154,-274],[19,-161],[85,-240],[70,-124],[93,-78],[202,-96],[379,-42],[311,-98],[461,-239],[317,-327],[205,-113],[128,9],[212,118],[151,185],[103,182],[56,160],[8,95],[-13,63],[-77,150],[-51,330],[10,115],[120,232],[134,164],[160,136],[233,146],[296,104],[124,28],[222,-8],[489,-214],[67,-45],[6,-99],[-17,-139],[78,-78],[429,-132],[62,-43],[231,-16],[131,24],[138,-44],[51,-51],[65,-216],[13,-94],[62,-28],[133,9],[101,44],[237,22],[691,-190],[218,-157],[143,-56],[366,-52],[92,-39],[125,-105],[96,-50],[88,16],[159,88],[336,298],[205,141],[198,49],[-12,-30],[-112,-57],[-5,-26],[238,48],[85,34],[9,29],[424,-22],[-34,-177],[142,-170],[29,-8],[114,49],[123,-13],[136,-72],[140,46],[254,2],[195,32],[185,83],[92,82]],[[11157,96815],[3,4],[0,0],[156,224]],[[11316,97043],[86,184],[75,234],[181,685],[13,151]],[[11671,98297],[210,564],[102,366],[150,218],[44,140]],[[12177,99585],[-42,163],[-9,201],[-56,366],[22,286],[51,67]],[[12143,100668],[36,75],[-114,253],[86,115],[154,124],[12,46],[-11,110],[-46,74],[-65,41],[-166,-141],[-52,-125],[-47,-36],[-155,6],[-282,188],[-82,3],[-237,-207],[-74,-97],[-23,-75],[-75,-74],[-680,-198],[-153,58],[-59,50],[-70,68],[-166,256],[-363,201],[-190,56],[-212,28],[-42,-31],[-25,-42],[-11,-120],[-86,-331],[-61,43],[-60,6],[-219,-117],[-96,-20],[-167,71],[-151,124],[-19,246],[-78,55],[-42,-41],[-348,130],[-15,-17],[-3,-18],[8,-27],[-156,-139],[60,97],[-1,56],[-275,-95],[-83,-19],[-56,22],[-6,20],[65,40],[180,36],[200,113],[114,77],[1,18],[-576,-40],[128,106],[36,122],[-167,69],[-68,185],[11,122],[-15,225],[-221,138],[-114,25],[-64,-13],[-156,82],[21,62],[54,-28],[72,82],[3,22],[-44,37],[113,-7],[37,-105],[252,62],[25,28],[-115,1],[-137,174],[4,62],[106,37],[59,65],[2,67],[-112,90],[-42,269],[97,99],[4,76],[-195,-25],[-267,-77],[-45,20],[90,441],[280,305],[330,81],[26,-17],[7,-26],[-13,-11],[14,-28],[122,-56],[130,5],[68,55],[-34,23],[114,40],[602,-72],[56,62],[-40,34],[-96,-7],[-78,57],[156,92],[290,38],[-254,198],[-50,89],[31,85],[221,49],[835,-101],[213,27],[68,64],[13,65],[104,93],[532,355],[348,122],[264,44],[633,-45],[100,17],[169,-62],[54,-93],[153,-107],[68,-14],[108,33],[204,-138],[70,-127],[88,-85],[64,2],[60,74],[244,-76],[97,-91],[142,-57],[542,-137],[93,4],[159,72],[342,76],[457,-150],[537,279],[158,108],[97,120]],[[15411,105345],[73,115],[19,361],[-104,371],[-138,212],[-155,176],[-86,59],[-152,20],[-146,58],[-73,131],[-131,56],[0,0],[-225,248],[-224,247],[-113,109],[-151,146],[-615,306],[-515,390],[-66,199],[151,36],[90,-43],[6,-3],[0,0],[5,-1],[112,-10],[20,7],[86,34],[33,39],[0,0],[0,5],[8,72],[55,156],[67,101],[51,77],[84,64],[31,23],[0,0],[14,-4],[18,-4],[0,0],[47,126],[33,88],[-109,109],[-68,9],[0,0],[6,-23],[-1,0],[-14,-4],[-15,14],[-22,19],[-87,204],[-10,23],[359,-21],[324,249],[198,78],[29,11],[-39,161],[-21,25],[-53,4],[-38,-10],[-52,-12],[0,0],[-9,-54],[-37,-11],[-33,-10],[-342,-46],[0,0],[-56,-57],[-21,8],[-73,27],[-182,0],[-516,-282],[-169,-37],[-164,-37],[-159,-9],[-54,-29],[-27,-14],[-85,-71],[-174,-147],[-64,89],[-38,-34],[-189,-168],[-6,-14],[-9,-22],[9,-49],[14,-74],[63,-182],[11,-32],[167,-267],[83,-87],[28,-30],[0,0],[3,-1],[40,-17],[166,70],[184,78],[33,4],[52,7],[178,-30],[0,0],[4,-5],[32,-46],[-10,-11],[-12,-15],[-49,1],[0,0],[-21,-108],[-19,-97],[-33,-25],[-15,-11],[-78,-19],[-154,11],[-107,7],[-235,-20],[-110,-70],[-142,-90],[-69,-10],[-58,-9],[-146,-79],[-58,-92],[-32,-51],[0,0],[-122,-99],[-82,-33],[-142,2],[-144,97],[-32,35],[-26,28],[0,0],[63,28],[0,0],[75,242],[-12,70],[-8,49],[-53,87],[-118,60],[-191,97],[-180,-23],[-82,28],[-8,2],[0,0],[-2,7],[-5,22],[1,2],[40,59],[125,89],[63,44],[190,118],[257,96],[67,42],[0,0],[-6,26],[-66,101],[0,0],[-158,49],[-100,32],[-378,-83],[-110,52],[-266,127],[-86,168],[109,0],[254,1],[0,0],[-36,55],[-191,100],[-41,22],[-296,-42],[-149,-21],[-91,-28],[-101,-30],[0,0],[-29,-58],[-10,-95],[-49,-78],[-89,-140],[-115,-144],[-37,-48],[-275,-227],[0,0],[-23,10],[-32,67],[0,0],[49,-230],[-11,-163],[-14,-12],[-18,-17],[-7,-38],[-5,-24],[-122,-254],[-3,-6],[0,0],[-214,-57],[-142,-205],[-78,-111],[-20,-62],[-21,-65],[-12,-147],[-21,-255],[10,-145],[-108,-144],[-144,14],[-6,-4],[-32,-25],[-84,-167],[-31,-264],[-95,-114],[-112,-134],[-1,-62],[-1,-30],[126,-101],[137,-224],[11,-17],[5,-24],[7,-29]],[[7565,105730],[-30,-124],[70,-169],[140,-136],[316,-162],[89,-17],[20,-66],[-22,-101],[-91,-69],[-118,-6],[-311,87],[-362,-78],[-224,-304],[-254,-137],[-180,-200],[-8,-60],[-105,-81],[-12,11],[60,246],[189,126],[-21,95],[-259,-13],[-26,24],[-19,87]],[[6407,104683],[0,0],[-2,4],[-66,102],[-129,10],[-109,9],[-82,27],[-59,19],[-69,39],[0,0],[12,16],[-13,8],[-3,2],[-496,-166],[-30,-2],[-230,-16],[-43,-23],[-14,-8],[-20,-66],[76,-126],[178,-194],[39,-42],[0,0],[-169,107],[-107,-15],[-9,-24],[-10,-24],[20,-40],[22,-31],[0,0],[18,-10],[0,0],[-5,-99],[0,0],[-78,126],[0,0],[-61,19],[-87,26],[-40,-60],[80,-127],[-81,15],[-112,175],[-152,295],[0,0],[-130,-112],[-19,-16],[0,0],[-24,-162],[-17,-120],[21,-89],[4,-18],[10,-14],[385,-585],[10,-24],[33,-74],[0,0],[-27,-35],[-107,-48],[-21,3],[-15,2],[0,0],[3,12],[8,33],[18,12],[2,-30],[56,19],[6,34],[-8,14],[-49,84],[-106,44],[0,0],[-68,-74],[0,-13],[0,-30],[17,-46],[3,-6],[0,0],[74,-46],[49,-51],[0,0],[-2,-4],[-4,-15],[-44,-59],[-123,-61],[-43,3],[68,-79],[39,-30],[129,-98],[158,-86],[64,-35],[187,-133],[6,-6],[139,-149],[11,-261],[2,-64],[-24,-77],[0,0],[-57,10],[-47,70],[-151,225],[0,0],[-3,0],[-82,-4],[-211,-76],[-29,-10],[72,-254],[65,-49],[27,-21],[17,9],[9,5],[0,0],[-3,11],[-2,9],[0,0],[46,-59],[-57,-66],[-83,-95],[0,0],[-42,117],[-201,116],[-33,-24],[0,0],[15,-90],[0,0],[7,-17],[81,-215],[179,-603],[-109,98],[-108,98],[-249,3],[-23,0],[0,0],[-137,280],[-55,0],[-58,-36],[6,-146],[0,0],[-151,73],[-6,228],[-2,73],[-85,163],[-88,172],[-105,136],[0,0],[31,125],[52,92],[85,88],[159,82],[203,-16],[391,-221],[70,-8],[44,-5],[94,71],[0,0],[-58,110],[-8,15],[-359,122],[-186,12],[-222,-24],[-337,69],[-58,149],[-16,41],[-14,17],[-48,56],[18,96],[11,65],[-7,34],[-9,39],[0,0],[-112,-14],[-89,101],[-116,133],[-119,294],[-34,17],[-52,26],[-2,149],[0,1],[-93,147],[-146,94],[-72,47],[-105,174],[28,0],[8,0],[62,604],[77,422],[-1,136],[-40,22],[-48,27],[-39,-24],[0,0],[-50,38],[-23,17],[-207,299],[-17,31],[-56,100],[-5,54],[0,0],[-34,14],[-32,-23],[-67,-48],[-376,295],[-159,62],[-268,105],[0,0],[83,-11],[97,-12],[115,-47],[0,0],[-29,30],[-11,11],[-85,75],[-359,315],[-80,33],[-118,49],[-207,-25],[-84,35],[-27,41],[3,42],[4,55],[-49,89],[-1,2],[0,0],[-34,7],[-83,18],[-102,85],[-93,115],[-95,118],[-6,16],[-8,26],[16,16],[0,0],[96,29],[-162,195],[-15,18],[0,0],[-9,15]],[[0,105742],[7,-4],[104,-59],[101,-15],[356,35],[12,2],[0,0],[-30,-253],[-28,-44],[-3,-5],[0,0],[29,-84],[6,-18],[0,0],[235,-131],[563,-312],[297,-192],[28,-18],[0,0],[8,-9],[297,-314],[49,-114],[10,-23],[0,0],[-73,-264],[-12,-9],[-16,-11],[-55,29],[-47,24],[-76,73],[0,0],[-22,40],[4,50],[3,48],[-43,75],[-40,68],[-132,19],[-301,181],[-61,-13],[0,0],[-66,-57],[0,0],[-150,-265],[-20,-67],[-70,-231],[11,-39],[13,-46],[74,-32],[97,-42],[169,-138],[14,-136],[19,-177],[0,0],[-369,-276],[-48,-308],[0,0],[-228,-344],[0,0],[-52,-2],[-120,-4],[-50,32],[-26,53],[0,0],[0,60],[0,80],[269,441],[65,182],[-85,194],[-157,584],[-148,114],[-42,33],[-121,41],[0,0],[-70,46],[-79,52]],[[0,115849],[80,26],[74,25],[211,48],[194,44],[48,33],[211,146],[401,183],[244,62],[220,56],[195,0],[66,0],[217,-118],[7,-5],[27,-19],[25,-26],[0,0],[-4,-24],[0,0],[-75,83],[-129,66],[-25,13],[0,0],[-4,-10],[-11,-25],[19,-49],[81,-199],[77,-49],[24,-15],[0,0],[6,-1],[137,-23],[74,5],[81,5],[80,21],[49,12],[93,52],[4,-4],[1,0],[0,0],[1,0],[0,0],[-20,-15],[-11,-8],[-163,-62],[-53,-16],[0,0],[34,-46],[0,0],[75,-6],[228,144],[0,0],[125,94],[13,10],[54,90],[-67,7],[-39,4],[-12,148],[16,43],[15,40],[270,-5],[44,30],[103,70],[146,170],[8,-2],[-8,2],[0,0],[60,119],[23,97],[2,8],[0,0],[-5,88],[-16,347],[-37,97],[-10,25],[-2,32],[-2,63],[27,238],[18,160],[20,21],[52,52],[135,209],[4,101],[1,24],[0,0],[50,71],[103,145],[529,163],[372,-526],[37,-23],[152,-93],[106,-7],[31,9],[76,23],[140,83],[123,108],[10,9],[-11,212],[-16,316],[76,211],[-79,139],[-32,58],[-133,-87],[-96,45],[-72,34],[0,0],[-47,64],[-81,112],[0,0],[10,141],[-6,15],[-83,229],[0,0],[28,55],[30,62],[32,27],[25,21],[108,43],[24,9],[137,-11],[0,0],[-5,56],[247,95],[159,19],[130,15],[27,0],[208,-3],[109,68],[60,38],[238,-15],[610,-133],[194,-18],[184,-17],[87,13],[0,0],[25,24],[28,25],[97,-83],[-61,-62],[61,62],[-97,83],[0,0],[11,42],[19,72],[0,0],[75,84],[468,156],[13,5],[0,0],[5,33],[2,11],[2,1],[47,25],[109,-4],[283,-58],[196,-41],[13,5],[13,6],[23,68],[4,13],[0,0],[-13,9],[-164,108],[-157,39],[-86,21],[-113,-19],[-111,11],[-68,7],[-141,103],[-18,13],[-107,131],[0,0],[28,-16],[39,-21],[10,3],[11,3],[0,0],[12,98],[16,137],[-4,5],[-28,38],[-153,-104],[-124,-85],[-186,-31],[-64,33],[190,156],[-190,-156],[-35,-13],[-84,-32],[-289,34],[-631,-123],[-58,-29],[-138,23],[-602,-216],[-364,-77],[-364,-78],[-82,-25],[-46,-13],[10,35],[20,71],[0,0],[-78,-24],[-57,-17],[26,117],[7,180],[0,0],[-34,5],[-30,-12],[-197,-78],[-54,25],[5,41],[43,63],[0,0],[-13,10],[-29,20],[-258,76],[-114,33],[-55,-46],[0,0],[24,32],[14,59],[10,44],[-162,-76],[-105,84],[50,43],[-75,126],[-17,69],[-11,49],[70,103],[71,102],[-18,36],[24,175],[27,60],[17,38],[0,0],[-27,62],[-82,189],[-36,301],[-142,214],[-9,127],[25,74],[7,23],[0,0],[46,52],[94,15],[156,276],[197,-11],[150,64],[48,20],[25,145],[53,81],[80,30],[104,39],[69,87],[-36,39],[-36,-2],[-19,-1],[-31,35],[0,0],[77,14],[307,56],[124,149],[23,28],[358,361],[222,224],[0,0],[4,2],[108,44],[128,22],[27,5],[84,-40],[0,0],[101,63],[-36,132],[-28,74],[24,198],[-61,81],[-74,50],[-41,27],[-327,104],[-193,61],[-556,-11],[-208,34],[-23,4],[0,0],[-84,36],[-161,-25],[-4,0],[0,0],[-70,-104],[6,-79],[0,0],[-22,-17],[-44,-36],[-156,-56],[-56,-28],[-107,-53],[-78,-37],[2,-7],[5,-22],[17,-9],[9,-4],[0,0],[27,-120],[-47,-61],[-74,-96],[-67,-51],[0,0],[-47,-90],[9,-54],[8,-50],[74,-93],[112,-67],[39,-45],[13,-16],[-77,-52],[-102,-69],[-418,-413],[-462,-213],[-100,-32],[-94,16],[-102,-113],[-82,-92],[-234,-10],[-32,-77],[-49,-33],[-103,-68],[-16,-27],[-12,-19],[45,-16],[45,-16],[-7,-17],[-12,-32],[-126,1],[-27,-23],[0,0],[2,-21],[1,-19],[35,13],[8,3],[-36,-42],[-84,0],[-30,0],[0,0],[-127,184],[-28,81],[0,0],[-22,14],[-54,35],[0,0],[-17,0],[0,0],[92,-105],[16,-18],[0,0],[59,-134],[27,-100],[21,-77],[0,0],[-9,-11],[-11,-13],[0,0],[-3,-6],[-69,-110],[-57,-31],[-10,-5],[-99,28],[-20,22],[-35,40],[0,0],[-29,-31],[-29,-31],[27,-109],[8,-9],[46,-54],[-34,-456],[-14,-59],[0,0],[-95,31],[-29,9],[0,0],[-54,-113],[18,-25],[8,-9],[9,-49],[31,-158],[-21,-288],[0,-2],[2,-15],[34,-187],[296,-135],[159,13],[143,-122],[41,-35],[0,0],[-7,-31],[-1,-9],[2,-4],[11,-17],[132,-141],[0,0],[26,16],[10,6],[0,0],[32,-10],[83,-26],[0,0],[70,-171],[0,0],[-39,-86],[-87,-110],[-232,-166],[-210,-20],[0,0],[55,-62],[0,0],[175,-108],[0,0],[47,-57],[-93,-33],[-36,-13],[-29,-16],[-76,-39],[-66,-98],[-26,-40],[-31,12],[-36,97],[8,65],[0,0],[-39,20],[-27,-9],[-106,-233],[-143,-72],[-102,-51],[-252,-31],[-65,5],[-162,14],[-15,-28],[0,0],[19,-10],[15,-8],[145,15],[36,4],[0,0],[1,0],[87,-20],[128,-105],[-111,-46],[-72,17],[-50,11],[0,0],[104,-103],[52,-87],[9,-86],[-29,-10],[-46,-57],[-99,-121],[5,-18],[17,-62],[0,-111],[1,-42],[-25,-35],[15,-201],[-53,-131],[-6,-194],[-46,-146],[-33,-103],[-114,-215],[-34,-63],[-163,-144],[-87,21],[-36,8],[-327,-29],[-7,-3]],[[0,126849],[72,1],[34,-7],[133,-30],[0,0],[-3,-38],[-1,-20],[0,0],[30,-11],[0,0],[7,34],[7,35],[-73,43],[-106,63],[-100,-8]],[[0,127102],[46,14],[46,15],[175,-122],[84,-58],[52,38],[0,0],[-120,106],[-95,38],[-61,24],[0,0],[120,133],[2,3],[19,0],[94,2],[120,-63],[12,17],[0,0],[-87,47],[-14,7],[-150,45],[-225,-119],[-18,-4]],[[0,127316],[112,96],[243,44],[164,-23],[48,59],[0,0],[-21,23],[-7,7],[-199,34],[-29,-1],[-8,0],[-27,-9],[-46,-16],[0,0],[23,-16],[-16,-18],[-40,12],[-32,9],[0,0],[0,0],[-6,26],[0,0],[32,27],[58,48],[136,34],[30,-54],[-7,-8],[-7,-7],[114,27],[0,0],[17,9],[60,34],[130,-249],[158,-62],[0,0],[-66,41],[-25,16],[11,92],[3,29],[84,47],[-40,52],[-19,25],[-48,39],[-40,124],[261,39],[232,-24],[5,0],[347,35],[91,-11],[0,0],[-39,8],[-273,52],[-57,2],[-184,6],[-22,-15],[-20,-13],[-91,-8],[-108,-10],[0,0],[-4,38],[16,50],[13,44],[18,18],[15,14],[508,154],[129,39],[0,0],[20,-2],[58,-5],[0,0],[-20,13],[-62,43],[-143,-35],[0,0],[-12,14],[8,25],[13,38],[0,0],[99,95],[81,21],[88,22],[72,60],[10,8],[0,0],[8,35],[33,145],[50,32],[0,0],[44,-12],[32,-9],[0,0],[15,-18],[86,-109],[197,22],[0,0],[-135,26],[-61,47],[-49,39],[-1,27],[0,0],[22,16],[64,10],[82,12],[116,-88],[97,-74],[2,9],[2,13],[0,0],[-31,13],[-52,71],[0,0],[-22,108],[0,0],[36,37],[81,81],[272,51],[63,-219],[0,0],[62,66],[0,0],[-32,50],[0,0],[32,42],[26,34],[217,157],[12,8],[28,-9],[18,-6],[12,-20],[22,-35],[-30,-102],[-79,-262],[0,0],[247,70],[0,0],[-35,198],[0,0],[174,64],[51,-62],[0,0],[24,3],[61,46],[42,31],[0,0],[-4,52],[0,0],[54,4],[159,11],[252,-187],[92,11],[0,0],[-50,101],[-55,110],[-296,89],[-112,68],[-48,29],[0,0],[137,49],[105,-20],[54,-10],[129,21],[143,22],[173,-29],[126,-54],[121,-51],[157,-144],[142,11],[0,0],[-37,138],[-27,103],[288,173],[152,38],[81,61],[16,13],[146,119],[-27,87],[77,65],[0,0],[69,8],[83,9],[139,-32],[115,-70],[67,84],[153,-11],[119,-8],[15,-23],[13,-19],[-484,-288],[0,0],[12,-13],[13,-15],[19,1],[19,2],[16,-57],[1,-3],[0,0],[-37,-52],[-53,-71],[-30,-14],[-19,-9],[-17,-120],[16,-13],[25,-20],[94,16],[0,0],[52,25],[142,146],[-2,21],[-1,14],[94,126],[240,215],[179,119],[82,54],[82,25],[22,7],[32,-48],[0,-18],[1,-55],[-46,-77],[-92,-289],[4,-7],[8,-14],[0,0],[161,70],[74,32],[39,42],[0,0],[58,128],[0,0],[52,28],[154,83],[0,0],[-38,39],[-23,23],[0,0],[-34,3],[-63,5],[-39,26],[0,0],[26,33],[39,49],[291,38],[155,-10],[164,-10],[77,-29],[87,-33],[0,0],[-34,-66],[-49,-35],[-63,-44],[-195,-79],[-189,-75],[0,0],[217,31],[0,0],[26,-133],[242,-34],[0,0],[-7,35],[-3,21],[-21,18],[-1,1],[0,0],[42,82],[47,90],[106,82],[116,26],[29,-5],[110,-20],[33,-28],[28,-25],[13,-44],[2,-10],[0,0],[377,-15],[105,-51],[94,-47],[355,-119],[19,-6],[52,-64],[10,-61],[-411,-113],[-363,-66],[-327,41],[-351,43],[14,-15],[43,-50],[303,-51],[288,-49],[13,-24],[19,-34],[-96,-152],[-13,-21],[304,19],[72,43],[95,56],[270,-46],[0,0],[156,-24],[87,-13],[48,-15],[59,-18],[0,0],[1,-36],[11,1],[35,4],[253,106],[0,0],[-12,45],[-12,45],[119,-13],[178,-21],[389,-100],[8,-8],[11,-10],[-15,-65],[-116,-57],[-22,-11],[-348,49],[-44,44],[-2,2],[0,0],[-18,-47],[-10,-27],[0,0],[141,-64],[63,-28],[92,-29],[211,-64],[123,27],[64,14],[30,2],[35,2],[20,-12],[20,-12],[-8,-37],[-4,-17],[0,0],[-47,-25],[0,0],[17,-43],[11,-29],[0,0],[-125,-87],[-66,-45],[0,0],[57,7],[132,16],[87,88],[0,0],[-10,32],[-7,21],[0,0],[62,16],[106,27],[297,-10],[197,-41],[264,-55],[26,3],[18,3],[0,0],[-7,19],[-3,8],[0,0],[49,22],[546,-130],[36,-8],[779,-321],[252,-161],[217,-139],[299,-80],[389,-182],[105,14],[66,8],[20,-13],[353,-225],[67,8],[163,-62],[10,-15],[29,-45],[-15,-142],[23,-65],[24,-64],[112,-86],[23,-18],[0,0],[15,-68],[-58,-151],[-32,-81],[-147,-112],[-333,-255],[-134,-64],[-91,-43],[-803,-166],[-187,-6],[-140,18],[-98,13],[-577,162],[-298,17],[-514,78],[-238,114],[-353,92],[-370,97],[-74,3],[-57,2],[1,-31],[-25,-3],[-9,-1],[-19,6],[-41,14],[-239,135],[-100,57],[-38,48],[0,0],[24,40],[0,0],[-125,20],[-184,31],[-94,-2],[-163,-3],[0,0],[78,-20],[76,-20],[35,12],[8,3],[0,0],[56,-32],[155,-88],[34,-53],[40,-62],[1,-10],[7,-46],[0,0],[140,-47],[2,-41],[3,-61],[-40,-39],[0,0],[253,-50],[97,-2],[71,-2],[10,-28],[-8,-33],[-13,-51],[-89,-14],[-199,-32],[-19,-7],[-27,-9],[0,0],[354,37],[140,-50],[16,-16],[16,-15],[143,-6],[203,-105],[37,-19],[108,-129],[-9,-29],[-12,-39],[0,0],[-9,-4],[-37,-20],[0,0],[77,-158],[0,0],[-40,-74],[-97,-49],[-105,-54],[0,0],[41,-48],[74,-85],[135,-201],[8,-392],[0,-5],[83,-48],[220,-126],[157,57],[19,7],[25,-11],[84,-34],[234,-179],[0,0],[20,-81],[31,-27],[230,-57],[430,-105],[250,88],[49,36],[63,47],[0,0],[-19,280],[-116,87],[-23,-1],[-85,-6],[-186,-65],[-104,40],[-334,276],[-41,65],[-37,59],[-1,18],[-2,28],[0,0],[85,66],[151,120],[117,13],[311,-93],[279,-169],[69,-113],[111,23],[124,25],[115,-17],[76,-12],[102,-44],[273,-117],[126,25],[372,-42],[27,1],[35,0],[81,120],[-119,83],[-81,186],[-98,45],[-236,235],[-13,12],[-1,54],[-1,76],[23,42],[22,39],[607,295],[122,59],[259,81],[271,197],[19,27],[60,88],[66,23],[42,-11],[140,-37],[47,-40],[5,-4],[104,2],[217,6],[176,-71],[76,-31],[43,-40],[11,-52],[0,0],[5,-3],[200,-112],[0,0],[6,30],[13,68],[128,268],[107,156],[6,99],[2,46],[-13,76],[-102,93],[-81,74],[-76,28],[-53,-7],[-37,-5],[-41,24],[-22,13],[0,0],[9,62],[11,68],[153,251],[48,80],[28,178],[9,52],[0,0],[4,216],[0,0],[-54,40],[-69,52],[-358,163],[-41,27],[-37,24],[0,0],[-1,24],[0,0],[50,0],[59,1],[176,-56],[354,-52],[46,-7],[453,-9],[306,-49],[97,-26],[60,-16],[0,0],[-31,7],[-36,9],[-8,-6],[-10,-9],[330,-225],[147,-218],[-9,-62],[0,0],[-737,-76],[-21,-9],[-38,-17],[-193,-178],[-36,-85],[1,-27],[2,-17],[205,-83],[119,-80],[83,-55],[16,-19],[106,-123],[78,-36],[49,-22],[292,-3],[597,74],[98,86],[4,55],[3,54],[76,292],[17,22],[73,93],[481,42],[0,0],[-23,89],[-13,50],[69,2],[135,4],[213,74],[287,131],[468,212],[717,157],[27,-3],[37,-3],[19,-21],[16,-18],[21,-67],[-9,-4],[-51,-30],[0,0],[40,-22],[47,-26],[152,61],[76,31],[19,27],[15,21],[0,0],[-179,95],[-21,-7],[-20,-7],[-58,17],[145,56],[478,187],[92,20],[207,45],[330,27],[41,-7],[38,-7],[0,0],[-548,-68],[-13,-23],[-1,-2],[15,-8],[15,-9],[113,-30],[44,-12],[0,0],[-56,-357],[0,0],[-221,-19],[-78,-7],[-5,-5],[-86,-85],[-4,-13],[-22,-67],[11,3],[56,15],[0,0],[-4,15],[-3,13],[0,0],[32,30],[125,8],[140,9],[81,-40],[145,-72],[469,137],[-6,28],[-7,28],[0,0],[6,7],[36,44],[107,57],[117,62],[137,25],[152,27],[158,2],[234,3],[209,-57],[84,-22],[18,1],[137,9],[90,48],[90,107],[117,57],[76,20],[549,144],[242,-16],[-36,-238],[-49,-14],[-11,-23],[-36,-74],[12,-108],[0,-7],[0,0],[240,-60],[35,2],[49,4],[56,23],[86,37],[14,25],[6,10],[-16,37],[0,0],[29,48],[58,99],[71,12],[245,42],[196,85],[158,-44],[0,0],[-11,37],[-4,10],[0,0],[-196,175],[-62,55],[0,0],[-3,3],[-291,309],[-21,38],[-14,26],[16,44],[32,14],[43,20],[133,-9],[33,-25],[31,-6],[24,-5],[21,5],[17,4],[0,0],[-17,26],[-2,3],[-14,85],[-7,43],[0,0],[100,44],[0,0],[401,-77],[828,-60],[533,-119],[222,-50],[407,-201],[157,-53],[500,-102],[0,0],[-258,29],[-35,3],[0,0],[644,-200],[399,-195],[80,-51],[378,-245],[0,0],[0,-51],[0,0],[21,-20],[24,-23],[46,24],[94,49],[218,308],[36,50],[0,0],[-70,185],[-78,6],[-41,3],[-100,45],[-67,66],[-137,135],[0,0],[-3,48],[-5,93],[-55,97],[-553,161],[-37,-19],[-77,-39],[6,-26],[1,-8],[53,-34],[14,-9],[-14,-6],[-26,-10],[-46,37],[-16,75],[-12,53],[11,119],[0,0],[35,96],[0,0],[40,53],[15,-3],[29,-6],[0,0],[-44,-13],[7,-29],[86,-15],[75,11],[111,60],[0,0],[-12,17],[-87,120],[-24,150],[2,121],[0,0],[99,156],[0,0],[-68,97],[-3,4],[0,0],[-129,-6],[-141,97],[0,0],[36,97],[9,22],[171,190],[281,107],[166,63],[71,44],[98,59],[117,117],[26,35],[11,13],[25,63],[65,163],[65,181],[98,274],[83,90],[146,157],[231,6],[0,0],[0,0],[21,-22],[0,0],[-23,-4],[-25,-5],[0,0],[220,-32],[863,15],[736,-161],[0,0],[-79,-18],[60,-298],[-60,-145],[-237,-391],[-85,-81],[-74,-21],[-45,-12],[-55,-48],[0,0],[20,-53],[146,-131],[97,-56],[136,-34],[60,-88],[97,-142],[0,0],[-43,-407],[-74,-197],[-27,-72],[0,0],[38,-136],[8,-486],[0,0],[-65,-101],[0,0],[-1,-12],[-13,-83],[39,-96],[17,-44],[115,-92],[17,-14],[386,-184],[55,-52],[6,-20],[12,-42],[-14,-31],[-11,27],[-38,-16],[-41,-17],[-88,-84],[-92,-86],[-40,-96],[0,0],[100,-148],[0,0],[-8,-52],[-92,-112],[-169,-86],[-485,-503],[-22,-17],[-97,-75],[-149,51],[-121,-70],[-431,-76],[-120,-22],[-451,76],[-119,6],[-234,11],[131,-211],[110,-63],[68,-39],[58,-15],[488,-121],[238,3],[362,5],[108,-21],[69,-14],[23,-20],[34,-30],[159,-8],[26,6],[65,15],[34,29],[58,48],[0,0],[2,10],[3,21],[-30,75],[75,103],[78,11],[70,10],[270,112],[202,84],[167,107],[41,135],[19,61],[252,267],[196,113],[30,63],[11,239],[0,0],[-21,39],[-38,74],[-126,136],[-70,77],[0,0],[28,122],[20,89],[0,0],[3,4],[22,32],[36,22],[37,21],[396,101],[319,60],[142,27],[106,-1],[166,-1],[0,0],[9,-20],[46,-104],[356,-305],[-23,-300],[-12,-157],[-56,-91],[0,0],[232,-142],[28,-100],[42,-145],[144,47],[-1,9],[-5,48],[0,0],[43,16],[71,27],[98,23],[164,-18],[43,-13],[80,-24],[94,-75],[31,-25],[147,-66],[263,-118],[178,7],[0,0],[-211,17],[-141,63],[-259,116],[-1,1],[-88,89],[1,2],[15,45],[232,-58],[188,-148],[0,0],[-5,9],[-23,37],[-90,67],[-66,49],[-95,48],[-100,50],[-439,44],[-258,25],[-50,16],[-59,18],[0,0],[8,199],[4,106],[0,0],[49,40],[42,33],[122,25],[55,75],[30,39],[-197,432],[0,0],[-27,18],[-944,291],[-52,2],[-218,8],[-160,-70],[-374,-38],[-293,-29],[-174,104],[-71,510],[26,110],[26,105],[0,0],[296,303],[26,117],[-19,39],[-6,13],[-67,56],[-49,60],[-266,319],[-109,84],[-109,51],[0,0],[29,170],[0,0],[36,59],[79,127],[154,57],[140,52],[226,58],[107,28],[251,146],[20,43],[26,54],[-5,125],[-37,108],[-21,60],[0,0],[-50,77],[-37,30],[-29,24],[0,0],[48,32],[39,25],[50,2],[191,-73],[71,-28],[54,-180],[0,0],[4,-40],[18,-209],[0,0],[-2,-4],[-113,-169],[-57,-330],[-29,-167],[-20,-13],[22,-33],[23,-35],[46,-26],[19,-11],[291,-77],[483,-31],[587,-38],[35,-16],[35,-17],[36,-98],[43,-6],[236,-31],[0,0],[26,43],[0,0],[-1,6],[-6,23],[-69,147],[-17,36],[-181,46],[-99,24],[-26,-9],[-37,-14],[-99,12],[-88,11],[-552,201],[-71,61],[-14,21],[-122,194],[17,27],[220,98],[240,28],[0,0],[400,-194],[147,-10],[160,41],[29,27],[54,49],[0,0],[-12,28],[-5,13],[-84,60],[-19,14],[-177,8],[-47,-14],[-76,-22],[-31,4],[-35,5],[0,0],[-9,33],[47,54],[15,16],[209,79],[138,52],[103,0],[47,-26],[131,-44],[11,9],[2,1],[0,0],[-8,15],[-8,4],[-95,29],[0,0],[36,25],[19,13],[586,-35],[150,-66],[236,-71],[265,-79],[400,-276],[131,-35],[63,-17],[335,9],[347,43],[65,9],[157,-38],[15,-13],[40,-32],[0,0],[-190,-187],[-195,-69],[-237,-85],[-9,-221],[26,-61],[15,-34],[0,0],[-2,-12],[-31,-162],[-63,-61],[-27,-26],[-49,-138],[0,0],[24,-20],[81,-66],[0,0],[3,-48],[10,-155],[0,0],[8,1],[9,2],[-4,31],[-2,21],[0,0],[38,26],[102,15],[6,1],[0,0],[108,-18],[164,-80],[24,-12],[-12,-33],[-5,-14],[0,0],[338,-215],[189,-64],[204,-68],[59,-1],[55,0],[81,39],[0,0],[-18,10],[-85,47],[-111,31],[-129,36],[-162,112],[-210,146],[-151,213],[0,0],[140,-16],[129,22],[9,2],[37,27],[106,76],[-199,432],[-116,106],[-26,87],[116,175],[0,0],[14,13],[60,53],[62,127],[0,0],[-131,136],[-59,28],[-375,62],[-142,124],[0,0],[-4,19],[-5,18],[28,21],[0,0],[-102,98],[-226,56],[-83,6],[-236,20],[-163,47],[-110,32],[-7,7],[-44,43],[-8,159],[-2,45],[0,0],[32,22],[27,18],[7,67],[6,52],[-127,168],[-33,44],[-56,44],[-35,26],[0,0],[219,233],[639,65],[586,14],[476,11],[321,38],[162,20],[524,5],[67,31],[91,42],[166,16],[392,39],[127,-17],[219,152],[4,20],[0,0],[-221,-9],[-103,41],[-8,29],[0,0],[5,13],[10,24],[0,0],[-59,35],[-416,54],[-41,26],[2,16],[2,14],[122,46],[39,15],[217,37],[190,-109],[0,0],[2,-13],[3,-15],[0,0],[58,-17],[224,55],[9,11],[0,0],[-39,56],[-4,1],[-7,3],[-21,-6],[0,0],[2,-32],[-245,20],[-66,53],[-76,61],[-186,49],[-131,9],[-139,9],[0,0],[6,21],[14,49],[165,91],[0,0],[25,-10],[267,-116],[86,2],[78,2],[0,0],[125,146],[14,16],[26,17],[57,38],[106,27],[-22,51],[0,0],[-298,17],[-34,25],[3,20],[89,17],[77,14],[280,-21],[174,-13],[54,7],[120,16],[388,225],[182,67],[63,12],[-5,-12],[-8,-20],[0,0],[18,-5],[45,-14],[150,0],[172,51],[-13,33],[0,0],[41,20],[165,22],[357,46],[278,-6],[100,-2],[63,27],[95,40],[914,96],[112,23],[330,67],[-1,1],[-20,17],[-392,-38],[-244,-23],[-22,3],[-40,6],[-16,19],[-16,19],[0,0],[48,77],[0,0],[12,2],[42,11],[257,-2],[287,-2],[17,6],[0,0],[-32,11],[0,0],[19,20],[21,22],[439,-2],[388,37],[183,-24],[209,-28],[0,0],[1,0],[12,-14],[-33,-33],[-41,-39],[0,0],[72,-38],[241,-4],[227,-4],[195,21],[174,20],[174,55],[130,76],[445,87],[320,-133],[86,-4],[14,-1],[87,53],[0,0],[-274,137],[-42,21],[0,0],[35,106],[601,-15],[90,12],[207,27],[168,46],[114,131],[-39,33],[0,0],[-1,3],[-39,167],[0,0],[55,10],[27,5],[0,0],[23,75],[-43,-3],[2,2],[71,47],[417,207],[192,41],[132,83],[184,59],[106,34],[450,68],[221,6],[55,-27],[63,-11],[278,-52],[235,-14],[239,-14],[54,-30],[0,0],[86,-97],[0,0],[-3,-13],[-6,-23],[-143,-1],[-121,-1],[-3,-88],[-74,-31],[-39,-16],[-446,-47],[-218,-48],[2,-5],[8,-2],[57,-9],[491,4],[158,1],[0,0],[2,-1],[53,-45],[42,2],[261,10],[635,-30],[51,-2],[11,-14],[38,-43],[-47,-91],[-425,-205],[-25,-2],[-53,-3],[0,0],[76,-64],[15,-13],[406,14],[170,6],[0,0],[19,9],[219,106],[83,24],[174,49],[259,12],[170,9],[289,-11],[47,-1],[37,0],[244,-2],[121,17],[118,16],[235,-24],[346,-41],[33,-36],[26,-29],[194,-98],[117,-58],[49,-2],[34,-2],[33,-14],[186,-80],[-97,-209],[-20,-9],[0,0],[172,1],[141,47],[83,27],[0,0],[-69,35],[-28,2],[-60,5],[-32,34],[0,0],[135,12],[54,5],[45,-34],[54,-42],[35,-114],[30,-95],[0,0],[6,1],[164,12],[27,-42],[-23,-80],[-5,-16],[0,0],[-20,-26],[-72,-96],[-86,-49],[-26,-14],[-73,-1],[4,20],[-27,26],[-77,76],[-271,93],[-34,-7],[-48,-11],[0,0],[43,-32],[185,-140],[352,-56],[0,0],[46,-103],[-11,-58],[-95,-84],[-288,-151],[-142,-73],[-198,-33],[-443,-185],[-733,-162],[-136,-83],[-41,-25],[-82,-13],[-340,-52],[0,0],[98,11],[211,22],[14,-25],[7,-13],[-8,-14],[-31,-54],[-93,-41],[-66,-30],[-224,-40],[-76,-13],[-63,-40],[-418,-264],[-252,-34],[-157,-21],[0,0],[-40,3],[-720,38],[-60,-13],[0,0],[30,-13],[49,-22],[266,4],[188,-47],[9,-27],[2,-8],[0,0],[-38,-43],[-85,-96],[-178,-40],[-84,2],[-81,3],[-47,-23],[-34,-17],[-100,-117],[-29,-102],[0,0],[-379,-179],[0,0],[36,-32],[127,-3],[208,92],[249,169],[128,88],[225,-24],[185,9],[356,18],[98,-8],[98,-8],[58,-25],[45,-20],[69,-1],[0,0],[-28,88],[-10,33],[-136,13],[0,0],[123,39],[370,56],[389,59],[512,171],[0,0],[-15,25],[-41,69],[-192,-46],[-5,-1],[-242,-20],[-36,55],[-51,78],[0,0],[67,45],[147,97],[144,15],[40,4],[533,-49],[58,-89],[84,-44],[36,-9],[169,-48],[215,-24],[271,-1],[115,19],[42,7],[51,50],[0,0],[-55,74],[-3,3],[9,14],[16,24],[151,-88],[0,0],[7,-7],[118,-120],[12,-35],[13,-36],[0,0],[-5,-2],[-83,-38],[-59,-83],[0,0],[47,-34],[158,-113],[209,35],[13,3],[0,0],[14,33],[-35,-3],[-28,-2],[-147,65],[-55,68],[432,79],[25,-3],[140,-12],[91,7],[116,8],[148,50],[102,34],[342,-4],[421,-28],[236,-39],[98,-16],[878,-35],[99,-57],[46,-25],[0,0],[-115,-24],[-48,15],[-50,14],[-62,-20],[-27,-10],[-22,-13],[-18,-93],[16,-61],[69,-41],[476,-98],[144,-29],[123,-17],[592,-45],[113,-3],[888,-23],[84,12],[53,7],[97,-15],[150,-23],[122,57],[82,85],[25,26],[0,0],[21,74],[-154,165],[41,225],[80,6],[0,0],[9,-5],[105,-59],[96,14],[92,57],[51,32],[92,19],[73,16],[370,-68],[0,0],[6,-7],[42,-51],[27,-68],[0,0],[145,16],[47,-23],[64,-30],[107,-12],[33,-4],[102,38],[125,46],[56,-34],[0,0],[6,-12],[14,-32],[0,0],[-42,-64],[0,0],[42,-29],[263,21],[61,113],[504,-64],[46,-25],[24,-37],[8,-13],[718,-210],[125,-68],[40,-21],[30,-28],[0,0],[-104,-18],[0,0],[-16,-32],[-32,-64],[-36,-92],[0,0],[2,-13],[12,-73],[0,0],[-233,-21],[-29,-16],[2,-12],[6,-38],[0,0],[32,-10],[30,-9],[289,-37],[46,-72],[0,0],[8,-46],[20,-130],[0,0],[-90,-43],[-81,-14],[-37,-6],[-81,-1],[-227,-3],[-27,-26],[-32,-31],[1,-48],[0,-39],[0,0],[39,-39],[77,-78],[131,-14],[60,13],[26,6],[68,55],[0,0],[-55,52],[-31,99],[0,0],[3,-3],[162,-176],[-5,-25],[-4,-22],[-216,-31],[-57,-8],[0,0],[-31,-37],[0,0],[21,-49],[0,0],[46,2],[63,3],[135,-58],[0,0],[16,-34],[77,-156],[455,-273],[455,-215],[79,10],[53,24],[61,28],[172,120],[127,235],[200,370],[0,0],[1,1],[184,194],[60,29],[59,28],[109,7],[105,7],[109,-67],[5,-13],[7,-18],[0,0],[-160,86],[-83,-15],[-76,-14],[0,0],[-26,-99],[7,-14],[6,-12],[242,-154],[183,-76],[142,-59],[298,-47],[231,23],[178,92],[144,42],[164,47],[305,16],[118,-21],[132,-24],[52,-25],[240,-65],[182,-49],[67,-30],[81,-36],[91,-68],[116,-16],[113,-16],[61,23],[0,0],[-1,8],[-4,23],[-117,99],[87,133],[0,0],[41,18],[372,49],[73,-19],[99,-25],[0,0],[12,-106],[0,0],[169,-14],[322,41],[16,13],[18,15],[0,0],[-131,138],[-37,39],[0,0],[-85,171],[141,130],[63,15],[125,29],[21,12],[31,17],[-1,2],[-7,16],[-175,14],[-144,11],[-32,-4],[-28,-3],[-60,-33],[-53,-29],[-121,25],[-4,1],[-4,5],[-15,15],[0,39],[0,26],[59,67],[198,109],[506,-17],[433,100],[0,0],[-123,91],[-151,112],[-9,17],[-10,18],[0,0],[89,8],[185,-22],[154,-40],[247,-65],[964,-32],[337,-32],[238,-22],[651,-74],[553,-118],[151,-32],[319,-28],[264,-2],[339,-3],[514,-99],[81,-35],[240,-102],[75,-63],[9,-9],[33,-76],[0,0],[-25,-26],[-117,-33],[-136,-38],[-13,20],[-59,90],[-56,3],[-41,2],[-62,-53],[-71,-110],[-3,-5],[0,0],[224,-26],[237,17],[101,-63],[89,-55],[322,-142],[141,4],[108,4],[32,-7],[78,-17],[167,-72],[38,-17],[0,0],[184,-205],[0,0],[-95,-1],[-61,-1],[0,0],[36,-29],[1,-1],[383,-104],[788,47],[329,56],[290,50],[210,20],[429,42],[752,-10],[381,-59],[412,-64],[186,-56],[61,-18],[77,-33],[185,-80],[177,-131],[33,-47],[56,-80],[43,-111],[-35,-58],[-67,-110],[-83,-89],[-61,-67],[0,0],[36,-27],[74,-55],[139,-56],[152,-21],[342,-49],[0,0],[25,-96],[-8,-131],[14,-95],[8,-2],[36,-10],[33,26],[27,22],[0,0],[-57,75],[-13,18],[2,41],[0,0],[22,16],[4,2],[6,3],[146,54],[17,-30],[-54,-86],[0,0],[21,-25],[72,1],[233,96],[352,144],[336,22],[185,11],[472,0],[58,-29],[99,-49],[195,-33],[538,8],[89,-19],[83,-17],[303,-23],[234,-18],[406,221],[83,21],[123,-59],[17,-8],[20,-31],[42,-65],[16,-56],[27,-91],[157,-159],[480,-102],[22,-49],[48,-107],[-2,-30],[33,-41],[9,-11],[107,-26],[24,-6],[361,40],[292,123],[116,82],[1,5],[4,25],[0,0],[-227,401],[-135,21],[23,238],[18,182],[0,0],[85,-3],[265,-10],[809,-122],[810,-86],[1277,40],[79,-53],[100,-65],[273,-83],[662,-124],[458,-86],[344,-135],[4,-1],[0,0],[64,-38]],[[95515,128477],[273,-165]],[[95788,125006],[-192,-122]],[[95596,124884],[-114,-72],[-268,-71],[-84,-44],[-45,-24],[0,0],[-621,49],[-51,44],[-36,32],[-159,37],[-69,-2],[-410,-7],[-57,29],[-54,27],[-87,2],[-99,3],[-154,-67],[-68,-29],[-216,-39],[0,0],[334,11],[94,44],[19,33],[23,37],[39,-1],[84,-4],[121,-135],[20,-62],[95,-21],[65,-14],[364,131],[86,-8],[8,-17],[0,-1],[-50,-105],[-14,-29],[0,0],[3,-61],[42,-59],[181,-134],[217,-54],[28,84],[30,89],[195,-291],[42,-94],[45,-155],[15,-53],[0,0],[10,-124],[11,-23],[34,-76],[144,-146],[253,-350],[30,-120],[-1,-3],[-21,-53],[-169,-165],[-126,-123],[-582,209],[-300,27],[-162,-16],[-173,-17],[-517,-196],[-394,-151],[-454,-220],[-129,-15],[-82,-9],[-305,-90],[-390,-263],[0,0],[-30,-15],[-304,-151],[-78,-61],[-83,-139],[-75,-55],[-167,-73],[-146,-64],[-494,-260],[-71,-105],[-23,-56],[-43,-106],[-13,-62],[-7,-37],[-40,-19],[-24,-11],[-4,-1],[-26,-1],[-150,111],[-55,67],[-13,17],[-13,29],[-76,165],[-185,98],[-90,20],[-64,14],[-362,30],[-93,8],[-299,-81],[-435,-118],[-121,-114],[-365,-341],[-108,-1],[0,0],[146,477],[-126,20],[-26,5],[0,0],[-447,-238],[-17,-49],[-23,-63],[0,0],[-97,-42],[-147,-62],[0,0],[-31,64],[-17,33],[0,0],[-22,14],[-141,85],[-58,-16],[0,0],[-61,-79],[0,0],[-150,25],[-237,-110],[-114,-148],[-54,-104],[-116,-344],[-25,-148],[0,0],[-105,-79],[-203,-153],[-37,-45],[-68,-81],[-122,-202],[0,0],[-65,-166],[-3,-48],[-4,-54],[48,-112],[119,-70],[89,-12],[42,-6],[0,0],[-3,35],[-2,24],[61,30],[76,38],[116,-40],[152,-52],[28,-36],[31,-38],[0,0],[-57,-127],[-21,-25],[-29,-37],[-79,-47],[-93,-55],[-22,-32],[-9,-70],[17,-329],[0,0],[104,-138],[50,27],[17,8],[75,0],[0,0],[9,-13],[14,-21],[48,-275],[9,-50],[3,-103],[-103,-87],[-75,-63],[-81,28],[-54,18],[-121,140],[-106,-30],[-99,-29],[-44,-28],[-58,-38],[-114,-234],[-63,-131],[-21,-69],[-9,-131],[39,-199],[40,-83],[0,0],[134,-164],[0,0],[2,-17],[9,-84],[-190,-154],[-88,-44],[0,0],[-163,-15],[-88,63],[-10,7],[0,0],[-18,3],[-25,4],[-60,-9],[-89,-14],[-82,-41],[-94,-47],[-298,-243],[-22,-34],[-15,-21],[-21,-70],[-59,-198],[84,-443],[0,0],[-94,-15],[-35,-6],[-87,20],[0,0],[-338,-142],[-244,-33],[0,0],[-47,-115],[-20,-248],[7,-116],[2,-36],[-26,-135],[-208,-365],[-113,-148],[-10,-13],[0,0],[-384,-346],[-296,-234],[-1,-1],[-54,154],[-60,172],[-26,204],[20,266],[-33,197],[-201,722],[-101,691],[-151,655],[-16,105],[-60,391],[-3,164],[64,431],[193,655],[74,107],[233,151],[124,107],[128,191],[33,85],[-5,58],[-41,94],[-22,51],[-19,13],[-23,16],[41,17],[101,42],[254,10],[373,163],[267,174],[279,181],[164,159],[214,207],[14,66],[-10,24],[-1,1],[34,62],[21,39],[359,291],[265,156],[473,391],[124,171],[201,188],[500,206],[271,46],[72,12],[10,21],[17,39],[-5,213],[27,90],[94,317],[110,511],[231,142],[53,6],[47,4],[229,-37],[38,65],[0,0],[-299,138],[-38,17],[-99,12],[-192,-40],[-483,-101],[-39,-68],[-11,-73],[-34,-235],[-69,-169],[-20,-48],[0,0],[147,-63],[0,0],[11,-78],[-55,-55],[-28,-27],[-58,-25],[-61,71],[0,0],[5,12],[13,26],[-10,24],[-28,17],[-26,17],[-125,-46],[-181,-67],[-746,-540],[-98,-125],[-174,-64],[-120,-44],[-46,-3],[-57,-4],[0,0],[82,213],[-134,82],[-69,10],[-24,3],[-6,40],[-23,163],[0,0],[162,176],[75,80],[0,0],[76,195],[0,0],[-5,69],[-25,31],[-16,20],[-87,-42],[-36,-18],[-183,-136],[-68,-15],[-91,19],[0,0],[-10,18],[-59,107],[0,0],[-296,11],[-14,0],[-405,-85],[-323,16],[-34,1],[0,0],[-8,-2],[-57,-13],[-254,-133],[-218,-202],[-82,-151],[-332,-267],[-7,-98],[-616,-369],[-161,-166],[-94,-98],[-107,-217],[-22,-111],[7,-134],[0,0],[128,-1],[56,0],[-6,14],[-24,61],[0,0],[259,-41],[24,-16],[110,-72],[29,-64],[-11,-93],[0,-3],[-19,-5],[-10,-3],[-715,-64],[-302,104],[-219,-198],[-66,-60],[-197,40],[0,0],[-16,-2],[-210,-23],[-13,-24],[0,-1],[0,0],[-77,-22],[-98,-6],[-235,-14],[-13,4],[-30,10],[-56,77],[-80,110],[0,0],[132,37],[73,19],[231,-10],[100,-4],[151,44],[0,0],[3,5],[7,16],[0,0],[-86,54],[-5,4],[0,0],[-69,16],[-158,39],[-33,41],[-39,50],[-63,50],[-44,34],[-185,10],[-33,2],[-87,-21],[-16,-25],[-152,-4],[0,0],[0,22],[-105,41],[-158,41],[-355,93],[-112,-16],[-177,-96],[0,0],[-83,-141],[-7,-20],[-12,-38],[29,-6],[11,-2],[-4,-41],[-4,-36],[-15,-13],[-24,-20],[0,0],[-173,2],[-93,40],[-22,69],[-112,26],[0,0],[-209,-28],[-78,-72],[-102,-26],[-632,171],[-85,-61],[5,-41],[11,-95],[0,0],[-3,-5],[-17,-27],[-182,-33],[-63,59],[5,75],[-26,81],[0,0],[-36,3],[-110,6],[-480,-36],[-928,-12],[-405,-133],[-147,-84],[-15,-9],[-108,-93],[-155,-215],[-28,-26],[-81,-74],[-204,-109],[-87,-22],[0,0],[-29,-22],[-128,-100],[-70,-112],[-76,-180],[-583,-501],[-170,-80],[-88,-42],[-334,-301],[-191,-200],[-4,-30],[-14,-107],[-201,-193],[-42,-41],[-221,-160],[-599,-433],[-93,-131],[-70,-45],[-61,-38],[-215,-93],[-116,-95],[-72,-59],[-21,-34],[-5,-8],[5,-48],[37,-47],[12,-15],[118,-57],[135,-65],[90,1],[337,6],[223,40],[22,-62],[0,0],[-27,-130],[-83,-406],[19,-95],[2,-9],[0,0],[20,-13],[22,-14],[144,29],[52,10],[2,1],[39,29],[32,84],[25,65],[-35,7],[-45,9],[-24,47],[-14,30],[12,17],[9,13],[130,69],[89,47],[77,6],[58,4],[0,0],[-93,-99],[-58,-62],[0,0],[142,-136],[0,0],[7,0],[74,3],[0,0],[-133,-124],[-134,-124],[-39,-17],[-34,-15],[-32,-38],[0,0],[15,-12],[42,-36],[310,29],[243,125],[4,6],[28,40],[0,0],[19,-23],[35,-39],[-31,-43],[-58,-79],[0,-11],[0,-17],[19,1],[94,4],[46,40],[0,0],[30,51],[40,66],[14,59],[32,132],[25,290],[79,-28],[174,-63],[125,31],[108,26],[124,-49],[131,-80],[87,-54],[0,0],[3,-4],[34,-41],[7,-23],[41,-144],[111,-106],[372,-278],[60,-6],[36,-4],[0,0],[15,-33],[37,-81],[-148,-138],[-26,0],[-26,1],[-163,111],[-44,1],[0,0],[-4,-22],[0,0],[263,-227],[0,0],[45,-154],[0,0],[0,-51],[0,0],[-13,-23],[-25,-46],[0,0],[81,-216],[0,0],[57,-82],[0,0],[-70,-154],[-30,-67],[-300,-455],[-143,-403],[-17,-83],[-12,-60],[-4,-165],[31,-197],[-20,-662],[-38,-169],[-47,-209],[-5,-65],[-5,-49],[-96,-281],[-51,-147],[-208,-200],[-226,-256],[-97,-202],[-4,-8],[-29,-45],[-162,-248],[-103,-121],[-116,-239],[-39,-145],[-146,-295],[-53,-83],[-167,-257],[-273,-322],[-129,-131],[-145,-147],[-159,-216],[-60,-82],[-285,-311],[-103,-153],[-46,-68],[-67,-168],[-17,-42],[0,0],[-81,-84],[-66,-69],[-34,31],[-6,0],[-10,0],[0,0],[-11,-104],[-13,-108],[-390,-283],[-288,-210],[-344,-118],[-206,-41],[-77,54],[-5,3],[-101,54],[-73,30],[-51,21],[-66,-18],[-14,196],[-3,37],[0,0],[-6,1],[-217,44],[0,0],[9,68],[0,0],[-72,-8],[-53,-6],[-84,-128],[-112,-173],[-35,-79],[-83,-187],[-159,17],[-29,3],[-73,-12],[-21,-4],[0,0],[27,-29],[49,-53],[0,0],[-92,-184],[0,0],[-32,32],[0,0],[-5,70],[-76,138]],[[67057,106232],[76,-138]],[[67133,106094],[-30,-92],[-74,15],[-210,-199],[-234,-364],[-25,-135],[51,-200],[2,-245],[-823,-767],[-265,-87],[-169,-106],[-44,-73],[-69,-261],[-10,-113],[104,-110],[418,-334],[50,-48],[5,-61]],[[65810,102914],[97,-243],[460,-868],[77,-392],[5,-117],[-49,-393],[-3,-146],[50,-31],[27,31],[14,-109],[-65,-357],[-100,-206],[-71,-86],[-100,-36],[-151,20],[-45,30],[-73,-32],[-40,-38],[23,-131],[-59,-26],[-89,23],[-113,98],[-248,-80],[13,-54],[20,-25],[17,11],[29,-97],[-79,37],[-51,82],[-40,-27],[-30,-78],[31,-156],[-51,-91],[-95,68],[61,121],[-298,-103],[-89,-135],[-73,-1],[-57,138],[-24,124],[24,22],[9,110],[-45,234],[19,34],[64,389],[61,114],[5,5],[0,-1],[88,169],[-60,94],[-97,406],[-184,121],[157,141],[-53,86],[53,13],[217,-62],[19,34],[-157,527],[80,194]],[[64841,102269],[-366,-11],[-194,86],[-88,-137],[-137,-70],[-15,22],[26,53],[48,47],[24,-7],[-61,26],[-107,12],[-36,187],[-263,37],[112,180],[189,247],[17,66],[-49,59],[2,67],[133,299],[40,272],[-10,19],[-452,75],[-170,250]],[[63484,104048],[-32,-3],[-8,-3],[-2,-27],[-33,-8],[-37,-66],[-84,-32],[-200,37],[-402,-159],[-401,-252],[-265,-284],[-185,-153],[-216,-96],[-26,169],[344,168],[91,200],[4,29],[-222,37],[-15,36],[51,55],[6,105],[256,364],[175,315],[-70,142],[-207,244],[-184,-49],[-166,28],[-114,-74],[-286,-426],[-246,-204],[-331,-173],[-104,-127],[-89,-286],[-118,-159],[-297,-70],[-168,37],[-28,41],[-61,22],[-103,-32],[-71,-79],[-121,-342],[102,-263],[76,-89],[152,-108],[235,-22],[175,82],[84,-121],[43,-124],[18,-192],[-56,-99],[15,-233],[145,-96],[279,-28],[100,77],[14,55],[252,325],[240,122],[61,-4],[41,-29],[374,-307],[183,29],[376,-56],[21,-119],[-26,-239],[-8,-37],[-65,-49],[-49,-23],[-80,9],[12,128],[-166,-29],[-98,-84],[-277,-131],[-229,-39],[-38,-27],[-20,-23],[23,-103],[-75,-290],[-223,-63],[41,93],[-27,89],[-116,-58],[-24,-63],[89,-118],[-17,-40],[-263,-268],[-315,-473],[-21,-139],[25,-100],[624,-399],[98,-449],[307,-1012],[427,-432],[88,-198],[4,-68],[-48,-10],[-122,46],[-88,75],[-327,83],[-52,66],[-113,49],[-45,9],[-63,-33],[-59,-65],[5,-23],[69,17],[10,14],[201,-86],[252,-217],[277,-273],[87,-190],[25,-102],[-28,-69],[-51,5],[-207,-82],[-441,-311],[-145,-10],[-78,-93],[31,-41],[210,-110],[94,32],[124,93],[252,-43],[266,-254],[-49,-131],[-97,-145],[-124,-15],[-32,-73],[4,-27],[44,1],[142,116],[110,-16],[7,-288],[-51,-23],[-29,43],[8,21],[-6,58],[-2,20],[-26,27],[-169,-225],[104,-157],[-81,-281],[43,-245],[-124,-85],[-72,139],[-50,33],[-126,-334],[-167,51],[-14,-12],[52,-38],[-75,-505],[-81,-178],[-122,-91],[-72,-114],[-24,-101],[19,-10],[-3,-131],[-106,-58],[-5,41],[73,105],[4,43],[-277,-12],[-17,-50],[-1,-76],[54,-23],[40,-126],[11,-121],[-57,-50],[-29,-147],[81,-61],[-59,-180],[-55,-68],[-4,-126],[44,-94],[-31,1],[-120,143],[-124,-166],[28,-48],[52,-39],[25,6],[19,-32],[-16,-79],[-85,-50],[-59,8],[-7,99],[-89,-20],[-7,-97],[64,-68],[-1,-23],[-34,-91],[-120,-10],[-17,-75],[13,-97],[-22,-63],[-66,-48],[-148,34],[-84,81],[-169,-209],[16,-31],[60,5],[57,-40],[21,-63],[-199,-226],[-248,-190],[-203,-114],[-56,-6],[-139,-262],[-5,-86],[-78,-135],[-95,-109],[-470,-167],[-179,111],[-76,-46],[-77,-92],[-139,47],[4,57],[-112,-74],[-88,-114],[-112,-45]],[[57604,89473],[-3,-119],[29,-22],[14,-103],[-100,84],[-104,7],[-15,45],[68,76]],[[57493,89441],[-120,71],[-181,381],[-24,33],[-24,6],[11,-249],[-21,-53],[72,-127],[35,-190],[-15,-98],[-24,-18],[-3,5],[-127,119],[-32,-217],[-85,90],[-24,186],[-38,58],[-22,2],[16,-45],[36,-33],[12,-185],[-39,-213],[-50,-68],[-15,6],[-35,121],[-51,-77],[-140,24],[-9,24],[-63,-5],[-110,-177],[-155,36],[-82,-79],[-4,-57],[-93,-86],[-491,-52],[-88,-87],[-4,-42],[-118,-64],[-116,-141],[-30,-72],[16,-101],[91,-170],[37,-52],[50,-30],[24,-67],[-40,-100],[-76,-80],[-231,14],[-33,68],[-65,349],[-17,30],[-9,-8],[-22,36],[-11,54],[9,162],[54,171],[51,37],[-55,119],[-90,83],[-74,-107],[-157,-45],[-55,58],[-32,124],[-126,143],[-18,10],[-20,2],[47,-148],[-77,-15],[-53,96],[-70,-11],[-48,-52],[-56,53],[-12,-62],[-97,-70],[-73,-19]],[[54004,88640],[13,-54],[-30,-20],[-43,10],[-95,-37],[-223,-136],[-1,-68],[-97,-185],[-183,4],[-58,26],[-17,-16],[-111,-582],[-187,-191],[-174,-133],[-40,-106],[-118,-562],[-15,-175],[158,-366],[105,-148],[105,-80],[118,-214],[-24,-62],[9,-68],[117,-270],[648,-891],[22,-74],[40,-13],[22,38],[66,-7],[57,-80],[63,-97],[186,-437],[198,-313],[221,-1102],[-15,-383],[88,-468],[14,-168],[-2,-87],[-40,103],[-95,-101],[31,-495],[-20,-214],[-45,-113],[-141,-212],[-798,-681],[-244,-138],[-100,99],[-82,-24],[-10,-167],[-116,-425],[-223,-271],[-438,-322],[-98,-217],[-90,-109],[-100,-43],[-69,-13],[-55,28],[-7,26],[18,11],[26,173],[30,602],[28,216],[113,94],[-64,132],[-99,82],[-88,-37],[-109,183],[-10,45]],[[51926,79337],[-142,111],[-201,36],[-58,-58],[-72,174],[48,92],[-24,175],[-71,90],[-26,-1],[-35,-53],[-14,-154],[-42,-28],[-128,-10],[-14,35],[1,321],[-113,291]],[[51035,80358],[-11,88],[-143,355],[-41,20],[-22,-78],[-118,75],[-127,201],[-146,172],[-110,35],[-203,-38],[-207,4],[-62,102],[19,228],[53,287],[-8,67],[-229,47],[-178,-23],[-75,-38],[-58,-41],[-49,-75],[59,-260],[-81,-788],[-157,-431],[-124,-582],[-119,-313],[-24,-168],[-29,-380],[50,-466],[22,-32],[77,-16],[59,25],[30,46],[88,33],[84,-37],[38,-167],[29,-393],[74,-164],[37,-21],[100,-324],[64,-405],[57,-200],[138,-247],[124,-98],[117,1],[83,46],[156,-117],[124,-268],[163,-180]],[[50559,75840],[74,-44],[112,-120],[75,-172],[173,-217],[74,-45],[79,-105],[151,-397],[49,-188],[22,-301],[-78,-448],[45,-193],[10,-559],[54,-121],[56,-77],[52,-32],[114,-238],[191,-579],[27,-186],[-8,-62],[-100,20],[-40,135],[-46,37],[-133,-116],[-3,-1]],[[51509,71831],[49,14],[2,1],[2,0],[1,1],[1,0],[1,0],[15,-9],[1,-1],[2,-2],[0,-1],[1,-1],[0,-1],[3,-9],[69,-44],[-132,-71],[-52,-11],[-4,9],[-9,18],[0,1],[-1,1],[0,1],[-1,3],[2,7],[16,53],[5,14]],[[51480,71804],[-10,-9],[-138,-19],[-246,300],[-865,782],[-96,260],[8,73],[-40,163],[-135,269],[-123,155],[-117,325],[-22,208],[-4,311],[-60,98],[-41,314],[-49,623],[-126,331]],[[49416,75988],[-30,88],[-157,233],[-134,442],[-35,-23],[-105,158],[-153,347],[-184,247],[-22,87],[-48,59],[-81,-54],[-17,-25],[-1,-7],[-12,-96],[-36,-9],[-53,72],[-38,286],[26,304],[59,105],[3,177],[224,927]],[[48622,79306],[-76,-220],[-62,122],[-36,293],[33,89],[115,163],[8,349],[78,304],[-24,116],[-32,36],[-6,66],[-27,331],[-6,307],[11,59],[-87,347],[-25,22],[-159,476],[-3,90],[-6,38],[-7,17],[-8,-10],[-14,-125],[-8,-219],[-20,-7],[-94,703],[-3,276],[-31,120],[-12,-57],[2,-34],[-56,145],[-95,1064],[1,83],[74,188],[19,-12],[9,1],[17,26],[-130,91],[-5,-27],[-3,-39],[-125,-48],[-89,142],[-63,316],[-105,174],[-29,20],[-12,-100],[9,-177],[-25,-113],[-94,-186],[-51,-64],[-81,-43],[-33,3],[-98,106],[-135,-168],[-81,29],[-26,-230],[-100,-201],[-112,-160],[-86,-20],[-19,73],[16,63],[20,38],[17,75],[15,195],[-45,-52],[-46,-219],[-25,94],[16,71],[-42,46],[-48,-91],[-47,-182],[-55,132],[12,75],[-32,45],[-52,-1],[-32,58],[17,125],[-32,62],[-95,-121],[2,-71],[-44,-91],[-77,-99],[-41,-16],[-25,75],[29,283],[63,252],[139,739],[-83,353],[-46,313],[-109,347],[-27,54],[1,8],[-7,4],[-8,14],[-27,400],[-168,191],[17,103],[-16,131],[-153,103],[-59,139],[-113,11],[-24,22],[-54,283],[-31,-73],[-6,-51],[-65,-191],[-72,85],[-26,267],[-60,104],[3,-21],[29,-72],[8,-16],[15,-167],[-36,-3],[-163,285],[-72,275],[-5,11]],[[44850,88225],[-3,-23],[11,-88],[9,-18],[-24,-7],[-115,284],[-40,159],[23,162],[-4,8],[-11,3],[-4,-27],[-53,50],[17,444],[34,193],[-169,84],[-151,216],[-91,-28],[-10,-43],[13,-71],[-58,-120],[-40,9],[-174,265],[-55,122],[-30,291],[-13,38],[-100,23],[-37,-296],[18,-199],[41,-146],[46,-137],[21,-30],[-233,-339],[-39,-1],[-57,165],[-185,85],[-43,73],[-25,-5],[-34,-91],[-50,125],[-22,23],[-141,-179],[-72,-16]],[[43000,89183],[-59,15],[-319,-258],[-46,-133],[-70,26],[-32,84],[36,171],[-11,24],[-76,-78],[-92,-182],[-73,-90],[-357,-132],[-105,-98],[-80,-133],[-20,-102],[85,-243],[16,-115],[-337,-600],[-128,-86],[-299,-122],[-152,-101],[-264,-267],[-84,-115],[-176,-340],[-220,-353],[-419,-421],[-117,-202],[-362,-262],[-154,-178],[-44,-120],[5,-30],[36,-29],[14,-61],[4,-55],[-24,-105],[-310,-213],[-151,19],[-121,-42],[-46,-69],[-121,-369],[-134,-9],[6,64],[-91,23],[-128,-65],[-83,-98],[-114,-355],[-20,-150],[34,-271],[31,-623],[89,-453],[-2,-254],[-34,-312],[-55,-262],[-161,-354],[-69,-360],[55,-492],[13,-581],[-203,-21],[-173,-154],[-145,-371],[36,-314],[-305,-149],[-209,-305],[-18,-223],[-41,-100],[-164,-158],[-135,-97],[-125,37],[-179,193],[-278,484],[-108,371],[-67,491],[-62,270],[-230,892],[-116,287],[-182,265],[-152,440],[-90,330],[-139,849],[-127,479],[-69,186],[-164,348],[-34,161],[-249,646],[-65,283],[-71,702],[-189,979],[-23,185],[4,71],[19,19],[-3,163],[-40,18],[-26,176],[5,67],[64,-9],[-13,28],[-13,9],[-61,93],[-47,334],[76,417],[57,188],[-105,470],[-14,17],[-6,1],[-10,-8],[-3,-16],[-21,6],[4,339],[63,77],[54,26],[-100,12],[-61,100],[-28,139],[44,194],[35,16],[65,-28],[55,57],[-15,16],[-279,-11],[-67,-272],[45,-263],[-120,-330],[-86,-86],[-554,-338],[-108,-13],[-121,65],[-184,149],[-124,150],[-510,711],[-124,195],[-23,74],[24,81],[52,63],[9,-74],[43,-63],[80,-30],[446,226],[88,65],[142,183],[8,29],[20,190],[-122,1],[-43,-14],[-112,-160],[-183,-134],[-312,90],[-294,245],[-50,65],[-67,151],[-18,128],[52,112],[71,87],[-84,150]],[[31062,90666],[-72,20],[-177,14],[-135,69],[-216,19],[10,46],[4,183],[-38,310],[-15,16],[-82,22],[-314,26],[-25,33],[33,220],[-95,236],[-51,82],[-118,73],[-80,-60],[-28,-49],[68,15],[86,-30],[-837,-111],[-163,-68],[-197,32],[-125,61],[-7,26],[51,11],[11,60],[-124,-25],[-282,-161],[-89,-17],[-495,23],[-409,-139],[-88,72]],[[27063,91675],[-73,-28],[-181,9],[-452,170],[-424,31],[-308,51],[-126,42],[-374,58],[-545,174],[-22,26],[-97,360],[-35,198],[0,132],[-31,140],[-64,156],[-67,104],[-51,26],[-259,19],[-358,-158],[-157,-190],[-346,-212],[-104,21],[-134,93],[-269,70],[-245,123],[-258,203],[-248,242],[-99,200],[-220,157],[-210,-3],[-214,140],[-240,817],[2,79],[-40,49],[-125,292],[-279,446],[-163,147],[-209,-117],[-153,130],[-37,127],[22,-2],[26,65],[-45,53],[-154,-61],[-35,-51],[-5,-34],[52,-114],[-8,-100],[-26,-40],[-121,-66],[-116,40]],[[19438,95689],[54,-33],[-5,-18],[-72,0],[-97,66],[-188,55],[4,-47]],[[19134,95712],[40,-155],[-6,-204],[-92,-54],[-91,-115],[72,-40],[62,20],[103,-113],[146,-397],[41,-171]],[[19409,94483],[38,-48],[67,-266],[111,-339],[221,-261],[-29,-28],[128,-202],[90,-37],[65,-56],[221,-255],[-7,-49],[22,-141],[26,-54],[69,-43],[23,-62],[-2,-95],[-56,-141],[-12,-115],[20,-147],[227,-392],[21,-185],[100,-215],[38,-39]],[[20790,91313],[34,42],[-56,285],[-9,305],[61,74],[28,-35],[17,53],[34,297],[62,93],[85,69],[200,-204],[-20,-156],[-47,-169],[85,-235],[-4,-160],[-37,-128],[-69,-195],[-80,-136]],[[21074,91113],[34,30],[70,9],[-56,-215],[120,-38]],[[21242,90899],[7,57],[70,-76],[34,-92],[9,-83],[23,-27],[145,-31],[135,39],[117,88],[89,27],[392,-24],[143,-50],[167,13],[131,64],[186,125],[111,230],[23,112],[49,77],[713,866],[66,191]],[[23852,92405],[74,164],[113,92],[54,2],[-37,-111],[-42,-333],[-55,-169]],[[23959,92050],[42,-24],[10,-63],[8,-453]],[[24019,91510],[64,-234],[67,-159],[196,-328],[124,-140],[405,-193],[220,-57],[197,-21],[95,-95],[377,-697],[85,-102],[156,-26],[24,-86],[-18,-168],[-227,-548],[-214,-256],[-123,-187],[-119,-304],[-65,-219],[-48,-54],[-130,36],[-9,29],[48,121],[-50,35],[-66,-47],[-142,-365],[-58,-269],[-15,-181],[38,-345],[-122,-192],[-155,-14],[-153,-53],[-135,-93],[-100,-176],[2,-83],[-48,-239],[-112,-182],[-362,-28],[-175,-68],[-73,-155],[-23,-156],[17,-71],[-19,-101],[-103,-165],[-81,-55],[-88,-29],[-61,26],[-18,38],[-82,10],[-278,-40],[-539,-280]],[[22123,84544],[-344,-168],[-82,-75],[-99,-191],[-32,-140],[9,-98],[-46,-234],[-286,-200],[-214,-118],[-755,-291],[-315,-161],[-174,-119],[-142,-289],[-87,-101],[-223,-38],[-79,11],[-58,34],[-57,-3],[-442,-376],[-286,-134],[-388,-15],[-218,-58],[-385,-430],[-438,-174],[-195,1],[-204,85],[-179,399],[-17,65],[13,110],[-43,437],[-80,308],[-55,505],[-53,195],[-42,38],[-5,209],[33,556],[-32,253]],[[16123,84337],[-29,232],[-142,307],[-93,282],[-275,361],[-209,396],[-101,244],[-116,433],[-179,491],[-166,245],[-234,239],[-95,-4],[-191,234],[-74,183],[-103,138],[-58,138],[-60,171],[25,193],[-71,444],[29,190],[-1,224],[-97,346],[-75,156],[-209,552],[-97,114],[-288,241],[-195,214],[-93,317],[0,186],[-110,287],[-256,522],[-186,362],[-376,723],[-154,356],[-124,227],[-95,49],[-217,-16],[-15,62],[94,399],[46,347],[54,249]],[[11587,95171],[11,155]],[[11598,95326],[-42,-41]],[[11556,95285],[-27,-18],[-66,-136],[-147,-695],[-33,-236],[0,-175],[-130,-185],[-59,26],[-172,160],[-254,365],[-105,323],[-152,331],[-208,639],[-57,-29],[-79,-290],[182,-431],[47,-216],[269,-504],[216,-356],[-35,-18],[50,-207],[51,-122],[71,-84],[47,-186],[37,-169],[-9,-150],[432,-1001],[307,-858],[165,-264],[26,-151],[-23,-140],[-1,-213],[46,-246],[28,-72],[32,-166],[25,-53],[70,-103],[292,-253],[167,-184],[150,-147],[-6,-43],[-1,-6],[-2,-176],[21,-147],[115,-333],[33,-329],[18,-660],[41,-435],[82,-527],[55,-135],[98,2],[42,-34],[127,-127],[157,-259],[191,-188],[143,-318],[70,-211],[122,-634],[77,-537],[251,-633],[55,29],[-13,32],[6,94],[10,36],[42,31],[73,-82],[37,-75],[-23,-40],[7,-29],[66,-174],[36,-49],[41,-32],[73,63],[83,-10],[81,-63],[23,-44],[-2,-50],[34,-62],[73,-3],[158,-76],[193,-358],[145,-224],[270,-312],[149,-305],[153,-252],[86,-75],[48,42],[62,-50],[19,-55],[133,-275],[36,-218],[-27,-116],[-348,-206],[-148,-138],[19,-54],[36,-35],[41,10],[-11,44],[75,41],[210,9],[31,-67],[31,-41],[103,-81],[28,-50],[21,-101],[99,-202],[138,-197],[208,-230],[154,-42],[262,54],[406,305],[269,-29],[103,-72],[61,-7],[126,54],[258,225],[259,130],[94,-63],[225,25],[105,75],[318,41],[69,-21],[250,75],[402,150],[205,137],[56,99],[18,86],[42,39],[78,27],[289,-108],[6,-45],[-109,-503],[44,-643],[-157,-247],[-44,-530],[-393,-1048],[-70,-100],[-117,-266],[-145,-433],[-178,-391],[-85,-272],[-17,-172],[-69,-229],[-174,-412],[-297,-607],[-108,-263],[-657,-1034],[-468,-658],[-88,-95],[-702,-585],[-660,-798],[-469,-716],[-431,-699],[-242,-551],[-138,-226],[-168,-91],[-322,-408],[-98,-64],[-50,-67],[-31,-82],[-39,-431],[-258,-594],[-42,-24],[36,-81],[-107,-321],[-17,-1],[-136,-131],[-72,-319],[13,-6],[-187,-826],[53,-281],[244,-369],[89,-29],[-5,-276],[-51,-108],[-66,-433],[4,-31],[22,-24],[4,0],[29,18],[33,-26],[-45,-279],[-32,-6],[0,-39],[71,-510],[70,-211],[51,32],[90,-479],[10,-227],[280,-256],[94,-42],[17,-32],[-5,-77],[-24,-41],[52,23],[34,-12],[5,-45],[-21,-2],[-6,-2],[-14,-7],[9,-20],[11,-1],[33,-371],[-92,-224],[34,-405],[-4,-399],[0,0],[17,-97],[49,-209],[-47,-211],[-45,-25],[-6,-35],[20,-60],[30,-22],[14,48],[53,-768],[-27,-202],[88,-243],[70,-48],[2,-232],[-14,-48],[-41,-36],[-44,-181],[-9,-68],[14,-84],[-58,-158],[-253,-448],[-136,-201],[-73,-33],[7,-57],[23,-55],[-58,-86],[-386,-349],[-407,-215],[-168,-6],[-135,-175],[-229,-160],[-309,-268],[-3,17],[-21,18],[-5,-1],[-23,-18],[46,-90],[-162,-341],[-203,-304],[26,-25],[-24,-62],[-165,-18],[-159,-151],[-213,-351],[-268,-288],[-33,4],[-6,47],[-77,80],[-17,-18],[0,-12],[16,-23],[3,-2],[-26,-537],[10,-147],[10,-27],[-1,15],[145,-81],[65,-206],[47,-378],[110,-475],[85,-120],[43,-303],[8,-390],[-94,-808],[59,60],[31,-58],[-25,-163],[-64,-162],[-139,-254],[-37,-35],[-165,-108],[-794,-405],[-239,-172],[-111,-120],[-163,-327],[90,-175],[65,-79],[34,2],[28,-102],[-19,-382],[-217,-1144],[-62,-224],[-80,-134],[-142,-179],[-108,-63],[-293,-371],[-122,-225],[-52,-163],[-290,-655],[-306,-553],[-394,-430],[-457,-641],[-378,-394],[-465,-404],[-311,-184],[-173,-2],[-122,37],[-118,-14],[-100,-75],[-37,-100],[-425,-152],[-246,-30],[-177,74],[-295,66],[-123,-24],[-34,-61],[-468,73],[-148,-46],[-115,-75],[-109,-139],[-129,-73],[-477,10],[-130,-57],[-134,-65],[-217,-226],[-220,16],[-30,20],[-298,316],[-144,188],[-243,-32],[31,-139],[-52,39],[-56,228],[65,112],[14,-14],[23,27],[-24,147],[-233,542],[-56,48],[-30,-17],[-16,155],[33,102],[24,8],[59,-59],[50,14],[60,81],[37,100],[4,286],[-59,378],[-247,462],[-291,696],[-108,387],[-99,447],[-68,200],[-159,355],[-57,64],[-450,576],[-161,401],[-152,520],[7,141],[-82,269],[-5,26]],[[2860,121152],[1,-1],[4,-5],[11,-24],[4,-14],[0,0],[33,-2],[8,-5],[133,-87],[0,0],[3,-33],[-39,-28],[-3,-3],[0,0],[-14,-24],[-52,-89],[-106,24],[-73,16],[-6,2],[-1,1],[0,0],[0,0],[-3,6],[-6,10],[-1,2],[0,1],[-1,1],[0,0],[0,1],[-22,63],[-7,22],[-9,31],[0,0],[32,15],[26,13],[10,-7],[-3,-33],[8,-25],[5,-10],[1,-2],[0,0],[1,0],[1,-1],[3,0],[2,0],[3,1],[3,1],[21,32],[4,7],[9,15],[19,44],[-1,2],[-3,11],[-14,6],[-37,16],[-6,2],[-10,9],[0,0],[1,7],[1,4],[8,14],[8,5],[18,9],[7,3],[2,0],[3,1],[3,0],[2,0],[10,-2],[8,-1],[1,-1]],[[3446,120725],[0,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,0],[-1,0],[-3,0],[-6,0],[-1,0],[-15,8],[-1,0],[0,0],[0,0],[-1,1],[-1,0],[-4,2],[-2,2],[0,0],[-7,8],[-1,0],[0,0],[-1,1],[4,2],[5,3],[20,9],[1,0],[1,0],[0,0],[0,0],[5,-12],[10,-22]],[[3156,120810],[2,0],[3,-1],[1,-1],[1,0],[0,0],[1,-1],[8,-5],[0,0],[-2,-4],[-1,-4],[-2,-1],[0,0],[0,0],[-1,0],[-60,-1],[-7,0],[0,0],[-4,3],[-13,7],[0,0],[14,8],[11,6],[2,1],[47,-7]],[[3238,120846],[3,-2],[15,-9],[0,0],[1,-2],[1,-1],[2,-2],[1,-1],[0,0],[0,0],[-3,-5],[-4,-7],[-8,-6],[-34,-8],[-1,1],[-3,1],[-4,1],[-6,7],[-1,2],[1,2],[1,1],[1,1],[0,1],[0,0],[14,20],[3,2],[1,1],[3,3],[2,1],[3,1],[4,2],[0,0],[0,1],[8,-5],[0,0]],[[3219,120851],[0,0],[-4,-5],[-15,-18],[-6,-6],[-6,-4],[-6,-5],[-2,-2],[-1,0],[-1,0],[-4,0],[-3,1],[0,0],[-1,1],[0,1],[-1,1],[2,9],[6,20],[1,1],[1,1],[3,2],[1,1],[7,1],[6,1],[1,0],[10,2],[4,0],[2,0],[1,0],[4,0],[1,-1],[0,-1]],[[3170,120827],[-1,0],[0,0],[-1,-1],[-5,-5],[0,0],[-3,-2],[-30,-4],[1,8],[0,0],[0,0],[3,3],[16,17],[15,12],[3,2],[4,-1],[1,0],[0,-1],[2,0],[4,-1],[-3,-9],[-6,-18]],[[3055,120911],[0,0],[1,23],[0,1],[0,1],[1,0],[0,0],[0,0],[0,0],[1,0],[1,0],[2,0],[0,-1],[2,0],[11,-8],[3,-8],[1,-5],[1,-12],[1,-7],[-13,-28],[-11,-11],[-2,-1],[0,0],[-3,2],[-22,21],[0,0],[0,1],[0,2],[-1,2],[0,1],[5,21],[5,20],[2,5],[0,3],[1,1],[1,3],[0,0],[1,0],[1,0],[0,0],[1,0],[1,-1],[2,-1],[0,0],[3,-2],[0,0],[1,-1],[1,0],[0,-1],[0,0],[1,0],[0,0],[1,-20]],[[3302,120995],[6,-5],[0,0],[2,-2],[8,-8],[0,0],[0,-2],[5,-10],[0,0],[-2,-3],[0,-1],[-1,-2],[0,0],[-1,-1],[0,0],[0,0],[-3,-1],[-4,-1],[-9,-2],[-14,12],[0,3],[0,1],[0,2],[3,10],[2,2],[2,2],[2,3],[1,2],[1,0],[0,0],[1,1],[1,0]],[[3142,121019],[3,-2],[12,-9],[-1,-6],[-2,-5],[-2,-2],[0,-1],[-1,-2],[-1,-1],[-16,-24],[0,0],[0,0],[-4,-2],[-3,-1],[-2,-1],[0,0],[0,0],[-1,0],[0,0],[-26,31],[-2,11],[0,5],[0,25],[1,0],[0,1],[0,0],[0,1],[2,0],[9,-1],[1,0],[0,0],[0,0],[8,-3],[0,0],[1,0],[1,-1],[23,-13]],[[2690,121035],[-4,-80],[-7,-22],[0,0],[0,-1],[1,-2],[0,0],[-1,-1],[0,-1],[-1,-1],[-7,-3],[-1,0],[-1,0],[-6,-1],[-20,1],[0,0],[-1,1],[-3,4],[-9,14],[-1,11],[0,7],[0,12],[28,52],[9,14],[9,13],[5,4],[1,0],[9,-21]],[[3340,121061],[-2,0],[-2,1],[-1,10],[-1,5],[0,2],[1,1],[3,10],[1,1],[1,2],[1,1],[0,1],[1,1],[2,1],[2,1],[1,1],[2,2],[9,4],[0,0],[3,1],[1,0],[1,-1],[4,-6],[1,-1],[0,-1],[1,-4],[0,0],[0,-1],[0,-1],[0,0],[-2,-4],[-2,-4],[-2,-4],[0,-1],[0,0],[-1,-2],[-7,-5],[-1,-1],[-14,-9]],[[31379,29540],[89,-16],[16,1],[60,22],[78,36],[34,68],[40,-56],[20,-64],[-97,-6],[-46,-49],[108,-97],[2,0],[21,-3],[45,-6],[11,0],[5,2],[49,18],[26,20],[134,122],[140,53],[44,-5],[35,-10],[30,-16],[5,-4],[2,-1],[4,-6],[18,-80],[0,-2],[0,-1],[0,-2],[1,-11],[0,-5],[0,-17],[-5,-23],[-8,-25],[-21,-28],[-30,-34],[-15,0],[-54,21],[-288,8],[-9,-1],[-70,-62],[57,-90],[24,-22],[55,-22],[90,-35],[-28,31],[-1,0],[-3,3],[-1,1],[-2,3],[-1,1],[0,1],[-6,21],[-1,3],[0,1],[1,1],[4,2],[6,3],[2,1],[51,18],[32,-5],[45,-13],[28,-12],[0,-1],[1,0],[2,-2],[7,-12],[1,-1],[1,-2],[0,-1],[0,-1],[-19,-44],[-25,-50],[-2,-2],[-2,-2],[-1,-1],[-8,-6],[-90,-24],[-119,20],[-43,65],[0,1],[-2,6],[-4,9],[-1,2],[-1,2],[-2,5],[-2,6],[-2,18],[5,13],[-6,19],[-19,20],[-10,8],[-3,1],[-1,1],[-20,9],[-6,-50],[-209,-14],[-64,43],[-70,-25],[0,0],[-3,-1],[-5,-8],[1,-31],[5,-13],[5,-13],[6,-12],[3,-4],[0,-3],[2,-10],[0,-2],[-4,-20],[-4,-10],[-14,-7],[-17,-8],[-15,-7],[-11,-5],[-101,-8],[-4,0],[-15,0],[-2,3],[-10,34],[0,24],[21,72],[34,87],[19,12],[7,11],[-5,27],[-59,195],[-20,69],[75,83],[-35,80],[10,52],[68,118],[37,26],[3,0],[8,0],[2,-1],[2,0],[2,-1],[1,0],[9,-6],[0,-2],[0,-1],[-15,-39],[37,-39],[-43,-195],[-10,-11],[-3,-9],[-2,-12],[1,-7],[7,-26],[8,-9],[12,-15]],[[31925,29143],[-2,0],[-5,3],[-2,1],[-1,0],[-1,1],[-60,37],[11,19],[8,-1],[9,-6],[26,-18],[1,-1],[5,-5],[13,-12],[1,-2],[1,-1],[0,-1],[3,-5],[2,-3],[1,-2],[-1,0],[-2,-2],[-3,-1],[-1,-1],[-1,0],[-2,0]],[[31873,29223],[-2,-2],[-35,22],[-1,2],[-5,6],[-10,17],[3,9],[10,6],[18,-17],[7,-17],[8,-4],[1,-1],[1,-1],[1,-1],[2,-2],[1,0],[1,-3],[1,-1],[0,0],[1,-9],[0,-2],[0,-1],[-1,-1],[-1,0]],[[31900,29307],[-6,-5],[-1,0],[-3,2],[-2,0],[-25,14],[-2,1],[-3,2],[-1,1],[2,1],[0,1],[3,3],[28,-2],[1,-1],[2,-1],[0,0],[9,-9],[-2,-7]],[[31715,29452],[-2,-1],[-20,2],[-1,0],[-3,1],[-1,0],[-1,0],[-12,4],[-11,3],[-4,1],[-6,2],[-1,1],[-1,0],[-1,2],[0,2],[0,1],[1,1],[1,2],[2,1],[44,24],[2,1],[2,1],[14,7],[3,1],[0,0],[9,0],[0,0],[2,-1],[7,-3],[1,0],[-10,-38],[-6,-7],[-6,-6],[-1,-1],[-1,0]],[[31517,29547],[-35,-8],[-10,20],[-7,73],[19,29],[58,58],[1,1],[6,4],[1,1],[1,1],[2,0],[1,0],[1,1],[8,-7],[2,-2],[1,-1],[0,-1],[0,-1],[2,-5],[0,-2],[0,-1],[-2,-2],[17,-17],[-32,-125],[-6,-4],[-11,-7],[-5,-1],[-10,-3],[-1,-1],[-1,0]],[[31436,29643],[-1,0],[-1,1],[-1,1],[5,40],[2,9],[8,22],[18,31],[1,2],[1,1],[0,0],[2,2],[2,1],[1,0],[3,0],[2,0],[3,-33],[-1,-30],[-1,-2],[-1,-1],[0,-2],[-7,-13],[-16,-21],[-4,-4],[0,0],[-2,-2],[-1,0],[-3,-1],[-3,-1],[-6,0]],[[31617,29718],[-3,-1],[-1,1],[-2,0],[-22,24],[0,1],[-2,3],[-6,10],[0,2],[0,1],[-1,5],[1,1],[2,4],[1,1],[1,1],[1,0],[1,0],[18,6],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,-1],[28,-23],[1,-2],[2,-2],[-1,-7],[-2,-2],[-1,-1],[-21,-18],[-1,-1]],[[31145,29921],[-2,0],[-16,4],[-4,7],[2,4],[12,7],[13,0],[0,1],[14,-1],[2,0],[0,-1],[0,-2],[-5,-9],[-1,-1],[-2,-3],[-1,-1],[-1,-1],[-3,-1],[0,-1],[-5,-2],[-1,0],[-2,0]],[[21585,31814],[33,-3],[2,0],[2,1],[2,0],[2,0],[1,0],[6,-2],[2,-1],[19,-16],[3,-4],[2,-2],[3,-6],[2,-13],[-1,-4],[-8,-8],[-5,-5],[-7,-4],[-1,-1],[-10,-5],[-1,-1],[-49,7],[-27,15],[-5,5],[-10,9],[-1,1],[-2,4],[-1,1],[0,3],[1,1],[0,7],[2,1],[0,1],[2,2],[44,17]],[[21380,31747],[-6,-4],[-53,16],[-16,10],[-11,13],[-7,11],[-3,7],[-3,8],[3,9],[26,17],[20,13],[9,4],[10,-4],[7,-5],[6,-5],[50,-46],[0,-1],[1,0],[-6,-18],[-9,-11],[-10,-9],[-8,-5]],[[20476,32022],[-5,-3],[-3,2],[-31,17],[-12,11],[-2,2],[-1,1],[-1,1],[-1,2],[-1,5],[0,1],[-1,5],[0,2],[0,1],[1,1],[1,4],[3,5],[1,2],[3,3],[5,4],[2,1],[1,1],[2,0],[7,2],[1,0],[26,2],[2,0],[2,-1],[1,0],[1,-1],[1,-1],[2,-2],[8,-14],[4,-11],[2,-13],[0,-4],[-6,-13],[-1,-1],[-1,-2],[-10,-9]],[[36305,38216],[-1,0],[-1,0],[-3,0],[-1,1],[-4,0],[-2,1],[-2,1],[-5,17],[0,1],[0,2],[1,2],[1,4],[0,1],[5,2],[2,-1],[4,-2],[1,-1],[9,-12],[1,-1],[1,-2],[0,-2],[1,0],[1,-3],[0,-2],[0,-1],[0,-1],[-2,-1],[-1,-2],[-3,-1],[-2,0]],[[36319,38938],[-2,-1],[-3,0],[-1,0],[-2,0],[-2,1],[-1,0],[0,0],[-1,1],[-1,1],[-13,19],[-1,8],[-1,4],[0,1],[0,1],[0,2],[2,9],[8,18],[8,4],[1,0],[4,2],[0,0],[1,0],[1,0],[3,0],[8,-3],[1,-1],[2,-1],[1,-1],[2,-4],[1,-1],[2,-5],[1,-1],[1,-3],[0,-3],[1,-2],[0,-1],[1,-7],[1,-15],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-5,-8],[-10,-6],[-4,-2]],[[14727,51880],[-1,0],[0,0],[-4,1],[-1,0],[-1,1],[-2,2],[-2,1],[-10,14],[-2,4],[0,1],[-1,2],[1,17],[1,1],[0,1],[1,2],[1,2],[1,0],[1,1],[3,1],[24,3],[1,0],[0,0],[1,0],[1,-1],[0,-1],[1,-2],[2,-7],[1,-3],[0,-1],[3,-13],[-3,-7],[-1,-1],[-9,-15],[-4,-2],[-2,-1]],[[74044,61494],[76,-58],[24,8],[1,0],[0,0],[41,-112],[19,-220],[18,-199],[91,-253],[10,-29],[59,-340],[85,-56],[63,-180],[14,-42],[-30,-163],[56,-47],[30,-26],[19,-428],[7,-147],[33,-223],[28,-113],[69,-280],[56,-75],[0,0],[38,-2],[52,-3],[76,70],[195,179],[19,-2],[4,-1],[38,-65],[14,-145],[93,-107],[98,-115],[90,-78],[46,-39],[128,-921],[5,-360],[57,-161],[7,-19],[137,-228],[93,-197],[121,-428],[-2,-14],[-31,-310],[-14,-55],[-23,-87],[10,-80],[43,-72],[49,-82],[21,-138],[36,-230],[111,-168],[3,-5],[226,-170],[30,-20],[118,-79],[137,-8],[36,-2],[44,-201],[36,-51],[57,-81],[338,-169],[290,-195],[14,-19],[35,-48],[61,-164],[-16,-8],[-1,-1],[-18,13],[-102,73],[-19,-12],[20,-148],[87,-182],[99,-76],[67,-51],[30,-81],[14,-39],[103,-304],[121,-650],[26,-212],[155,-59],[90,-35],[-84,275],[14,67],[10,45],[25,26],[24,24],[80,-181],[251,-233],[0,0],[14,49],[6,23],[-51,46],[-4,30],[-9,54],[18,53],[0,0],[47,-24],[83,-175],[17,-157],[-25,-473],[0,0],[-57,-124],[0,0],[-41,37],[-31,29],[0,0],[1,-2],[76,-166],[11,-15],[133,-64],[67,32],[35,-22],[20,-77],[23,-93],[154,-177],[31,-4],[103,-13],[0,0],[-3,42],[-19,31],[62,-6],[37,-78],[96,-201],[36,-122],[91,-159],[355,-484],[6,-29],[42,-204],[6,-125],[6,-10],[83,-136],[23,-80],[23,-85],[-31,-701],[-14,-34],[1,-118],[1,-159],[55,-107],[18,-36],[102,-334],[25,-99],[63,-241],[-14,-18],[0,0],[3,-1],[10,-1],[36,-108],[9,-103],[16,-171],[-10,-73],[-5,-45],[-102,-266],[-76,-142],[3,-31],[6,-5],[41,-32],[-4,-66],[0,-2],[-102,-549],[-83,-254],[0,0],[-28,-171],[1,-83],[0,-41],[8,-21],[6,-15],[12,-4],[13,-4],[-1,-26],[-7,-104],[-15,-70],[-38,-179],[-94,-308],[-34,-62],[-106,-194],[-20,-66],[-5,-16],[-3,-42],[5,-11],[24,-45],[-21,-89],[-23,-101],[0,0],[-28,-25],[-111,-99],[-115,-48],[-45,4],[-11,-13],[1,-32],[27,-28],[30,-31],[-160,-119],[-78,-58],[-48,-141],[0,0],[0,-110],[-17,-39],[-64,-151],[-16,-5],[-46,-15],[-86,63],[0,0],[-2,-22],[-2,-21],[0,0],[70,-105],[8,-4],[7,-4],[10,29],[0,0],[-3,-38],[-9,-108],[-16,-24],[-59,2],[-58,2],[0,0],[76,-35],[41,4],[0,0],[-42,-96],[-33,-75],[-117,-204],[-8,-14],[-101,-457],[6,-65],[9,-98],[-78,-82],[-248,-457],[-40,-166],[-29,-364],[-75,-372],[-5,-263],[20,-92],[6,-26],[-4,-68],[-9,-144],[-26,-23],[-151,-131],[-163,-76],[-339,-18],[-311,-17],[-333,-52],[-74,-101],[-20,-27],[34,9],[63,17],[0,0],[-500,-506],[-361,-78],[0,0],[-11,-50],[55,-123],[22,18],[33,27],[35,-41],[12,-15],[1,-31],[2,-79],[-33,-52],[-12,-21],[-30,8],[-13,25],[-4,6],[1,2],[0,4],[-85,106],[-91,112],[-240,123],[-95,115],[-7,67],[70,94],[-32,61],[-24,44],[-97,7],[-15,-10],[-55,-146],[0,0],[-97,-72],[-30,-1],[-35,-1],[-68,91],[4,11],[1,4],[32,-8],[6,-2],[79,38],[51,105],[33,68],[0,0],[-14,74],[-91,152],[-26,16],[-234,-218],[5,-107],[2,-45],[-186,-148],[-136,-108],[-33,-44],[-28,-38],[-125,-96],[-45,-10],[-49,-11],[-324,176],[-373,204],[-191,66],[-101,-12],[-97,-12],[-96,20],[-44,9],[-75,87],[-58,39],[-74,50],[-209,14],[-97,87],[-69,61],[-210,329],[-117,184],[-7,28],[-53,202],[85,116],[14,102],[-34,176],[-53,157],[-6,18],[-3,7],[-96,200],[-65,96],[-37,55],[-83,82],[-179,176],[0,0],[27,-11],[32,-13],[184,-203],[87,-119],[34,-47],[89,-169],[0,0],[-43,103],[-50,123],[-250,262],[-71,75],[-155,43],[-72,-58],[-51,-41],[-14,-2],[-166,-25],[-11,7],[-41,26],[0,0],[21,46],[20,43],[76,46],[85,121],[2,2],[55,325],[15,88],[0,0],[-161,342],[-109,230],[-19,-1],[-18,-41],[-17,-39],[-148,-675],[-88,-81],[0,0],[-55,-17],[-334,-101],[-51,59],[0,0],[34,90],[63,167],[22,-3],[158,-20],[94,379],[0,0],[14,284],[54,177],[9,30],[0,0],[57,90],[57,92],[24,101],[81,345],[-5,48],[-5,48],[-124,465],[0,0],[-1,-34],[-3,-107],[-93,-309],[-151,-380],[-76,-77],[-125,-126],[-32,23],[-179,-178],[-418,-586],[-58,-167],[0,0],[53,23],[49,21],[0,0],[10,-206],[-14,-10],[-14,-9],[-308,246],[-152,121],[0,0],[26,20],[36,27],[87,-3],[-93,445],[-65,98],[-63,94],[-190,480],[-61,31],[-66,-3],[-130,-5],[0,0],[-28,72],[-62,163],[-6,96],[0,0],[28,-13],[41,-20],[0,0],[43,87],[-14,98],[-43,68],[0,0],[-42,35],[-126,108],[-39,43],[-92,105],[-114,33],[0,0],[-7,-32],[-6,-25],[-805,220],[-227,195],[-307,177],[-227,-68],[-120,-37],[-229,12],[-211,-26],[-431,-55],[-263,-150],[-299,-171],[-474,-179],[-136,-14],[-198,-21],[-229,41],[-85,15],[-89,-32],[-9,-3],[-94,-65],[-494,-340],[-154,-81],[-96,-51],[-109,-27],[-31,-23],[-34,-25],[0,0],[-65,-96],[-76,-260],[-85,-163],[-59,-113],[0,0],[-28,-27],[-109,-99],[-36,-9],[-85,-19],[-54,8],[-30,4],[-81,72],[-170,-35],[-354,-74],[-28,23],[-101,84],[-169,20],[-146,18],[-378,-65],[-415,-37],[-60,-29],[-53,-26],[-91,-81],[-65,-115],[-11,-88],[-188,-120],[0,0],[-36,-11],[-219,-65],[-242,-270],[-54,-31],[-223,-129],[-29,1],[-94,2],[-73,27],[-107,38],[-404,-31],[-388,253],[-148,193],[-21,27],[-42,35],[-92,76],[-93,37],[-27,-12],[-37,-16],[-26,7],[-11,3],[0,0],[-4,5],[-35,43],[-23,221],[-4,44],[9,353],[0,0],[20,-9],[10,-4],[31,-55],[5,-10],[44,-21],[6,-3],[9,1],[84,8],[44,50],[30,32],[106,208],[8,140],[-21,189],[54,416],[-2,481],[-23,91],[-16,65],[-277,688],[-76,254],[-57,372],[0,0],[-6,349],[-57,458],[0,0],[-151,367],[-142,275],[-59,115],[-64,431],[-10,69],[-78,264],[-218,468],[-193,280],[-35,140],[5,9],[27,55],[0,0],[64,34],[0,0],[53,-184],[-2,-60],[105,-225],[20,-3],[0,0],[73,73],[0,0],[10,21],[17,35],[3,160],[-183,243],[-70,208],[-19,54],[12,80],[12,25],[18,36],[0,0],[51,-90],[102,-178],[75,-163],[70,-247],[42,-64],[52,37],[27,19],[18,54],[0,0],[-21,416],[-203,477],[-57,177],[-72,226],[-128,232],[-6,64],[17,220],[7,100],[106,328],[0,0],[82,89],[16,55],[28,350],[-68,277],[-21,85],[0,0],[186,615],[0,0],[63,59],[0,0],[40,9],[11,-17],[0,0],[-26,-69],[-28,-156],[-10,-60],[24,-263],[20,-44],[8,1],[9,2],[110,79],[9,7],[103,337],[43,139],[0,0],[210,126],[260,156],[0,0],[247,320],[444,348],[131,-3],[357,-9],[126,29],[23,11],[21,10],[61,74],[33,39],[13,43],[99,91],[186,37],[198,40],[173,243],[0,0],[82,21],[18,-7],[100,-35],[209,38],[232,43],[290,147],[132,89],[94,64],[32,36],[55,60],[53,89],[41,68],[174,419],[97,235],[0,0],[77,58],[62,70],[105,118],[37,168],[-81,77],[0,0],[-41,317],[19,201],[81,174],[161,178],[100,112],[-5,16],[-5,15],[3,14],[13,54],[87,157],[63,16],[12,-50],[-18,-9],[0,0],[3,-56],[6,-122],[140,-307],[62,-176],[0,0],[1,-8],[5,-57],[55,-89],[48,-77],[0,0],[27,228],[-4,42],[-4,52],[0,0],[136,-10],[6,41],[11,82],[-215,423],[0,0],[90,47],[29,15],[1,36],[2,33],[-43,22],[-9,4],[-16,37],[-1,4],[0,0],[18,81],[0,0],[26,7],[31,10],[26,-24],[31,-28],[-8,-20],[-11,-28],[-25,7],[-14,3],[0,0],[26,-32],[77,-99],[12,13],[36,40],[120,-45],[107,-41],[248,19],[56,5],[-114,59],[-93,9],[-16,81],[-22,109],[152,245],[36,100],[0,0],[-32,42],[0,0],[-59,-117],[0,0],[-49,-12],[-55,-12],[-15,-31],[-11,-21],[0,0],[-12,155],[18,71],[22,89],[0,0],[97,4],[34,36],[11,86],[0,0],[83,-10],[115,-102],[8,-2],[62,-17],[0,0],[-20,92],[-41,182],[-29,21],[-49,34],[0,0],[334,-35],[0,0],[-63,101],[-17,28],[-50,36],[-14,31],[-39,83],[-17,81],[119,120],[0,0],[19,-16],[20,-16],[89,55],[0,0],[6,54],[6,51],[0,0],[29,35],[0,0],[110,-134],[38,-83],[6,2],[9,3],[95,338],[-15,136],[39,64],[48,-193],[3,-13],[70,46],[0,0],[-24,33],[97,41],[27,-53],[32,-62],[0,0],[38,47],[59,147],[23,115],[-13,41],[-6,20],[68,30],[45,20],[76,-108],[42,-101],[0,0],[16,18],[33,39],[15,0],[38,0],[173,-187],[185,-339],[30,-24],[39,-135],[31,-105],[-9,-131],[-8,-102],[-68,-314],[-58,-49],[-11,-23],[3,-8],[12,-31],[0,0],[191,197],[47,48],[51,229],[0,0],[51,31],[0,0],[24,72],[0,0],[-17,63],[-7,8],[-36,47],[0,0],[33,20],[17,10],[0,0],[19,0],[87,2],[80,-28],[88,-31],[48,-37],[81,-64],[53,60],[61,-4],[9,-1],[27,-13],[23,-11],[51,-99],[1,0],[36,33],[81,146],[8,130],[9,127],[-65,-32],[-93,21],[-24,27],[-73,81],[11,74],[55,165],[15,44],[135,122],[11,10],[0,0],[93,346],[28,-7],[32,-8],[53,43],[13,10],[0,0],[77,111],[-32,73],[-23,52],[10,131],[8,92],[33,50],[59,91],[93,34],[51,-6],[90,-9],[0,0],[-116,90],[16,176],[5,3],[22,12],[68,-33],[69,-135],[62,-73],[0,0],[-7,67],[-4,44],[0,0],[-57,67],[87,221],[181,19],[3,-3],[62,-81],[99,-5],[36,-2],[439,48],[36,37],[61,62],[86,414],[-108,136],[-10,12],[0,0],[-51,-6],[-107,-12],[-10,-8],[-53,-37],[-186,193],[7,38],[1,9],[80,84],[16,-24],[28,-39],[0,0],[75,14],[102,20],[108,-163],[10,-14],[0,0],[32,-7],[119,-26],[143,-112],[50,-75],[57,-84],[95,-42],[268,-20],[0,0],[34,-35],[32,-34],[100,-163],[-3,-24],[11,-20],[117,36],[47,14],[55,3],[146,9],[0,0],[15,-34],[11,-27],[0,0],[133,-101],[0,0],[14,-5],[64,-21],[6,3],[64,27],[40,59],[-20,1],[0,0],[54,54],[84,33],[120,-64],[45,-24],[62,-228],[116,-11],[20,18],[37,33],[34,151],[-11,11],[-10,10],[-53,-11],[-19,34],[-5,9],[0,0],[44,52],[106,124],[38,16],[33,14],[0,0],[-34,-33],[-3,-33],[60,-166],[23,-65],[0,0],[54,-3],[5,14],[7,18],[-43,34],[34,17],[21,10],[56,-58],[33,-75],[1,-25],[1,-16],[0,0],[-123,-154],[-62,-145],[-9,-21],[-21,-141],[35,-79],[0,0],[-18,-30],[-35,-59],[-94,-68],[-110,10],[-24,2],[0,0],[-27,-7],[-58,-15],[-49,-49],[-34,-154],[12,-210],[9,-6],[31,-24],[27,27],[19,19],[0,0],[-83,-407],[-91,-105],[-72,-143],[-33,-64],[0,0],[-14,-60],[-275,-120],[-43,-18],[4,-8],[3,-7],[31,-15],[0,0],[97,50],[0,0],[125,-96],[115,-149],[15,-80],[9,-46],[140,-11],[68,-66],[52,-51],[182,-223],[171,-210],[115,-20],[0,0],[363,-221],[140,-118],[66,-125],[181,-205],[54,-32],[11,-7],[406,-122],[136,-283],[56,-118],[221,-165],[161,-121],[25,-3],[41,-4],[132,40],[94,29],[52,44],[143,122],[101,313],[169,527],[52,338],[4,26],[-10,75],[11,80],[19,136],[60,248],[24,99],[31,240],[-49,463],[-48,449],[32,202],[15,101],[54,101],[0,0],[28,-4],[0,0],[1,-60],[0,0],[24,54],[5,12],[0,0],[-41,143],[-50,178],[0,0],[124,230],[0,0],[56,-19],[0,0],[2,-10],[5,-18],[0,0],[27,43],[-5,39],[-9,72],[-126,59],[0,0],[-41,-48],[0,0],[-29,18],[0,0],[127,425],[19,35],[22,42],[8,-1],[6,-1],[46,149],[4,14],[8,45],[86,472],[118,220],[52,142],[0,0],[29,4],[25,3],[11,-10],[13,-12],[-13,-90],[-8,-57]],[[77207,34715],[-4,-125],[-3,-69],[0,0],[-7,-3],[-101,-50],[-38,17],[-35,60],[-29,51],[-1,41],[-1,8],[43,55],[38,-87],[28,-4],[22,-3],[0,0],[12,16],[11,13],[-15,68],[-8,38],[0,0],[39,35],[19,-12],[15,-10],[10,-27],[5,-12]],[[75379,36539],[100,-36],[83,-29],[26,5],[35,8],[522,-287],[89,-25],[25,-6],[32,6],[232,43],[-1,4],[-12,45],[49,28],[66,38],[230,-5],[0,0],[357,207],[120,-84],[70,-128],[-8,-69],[-16,-131],[-1,-417],[0,-260],[0,0],[-33,54],[0,0],[-35,-16],[-27,-52],[-61,-167],[-16,-104],[-31,-193],[-93,-148],[-53,-84],[0,0],[-198,-47],[-54,-195],[0,0],[-65,-56],[-75,45],[-16,10],[30,101],[2,8],[2,6],[0,0],[-3,-2],[-4,-1],[-36,-85],[0,0],[0,-17],[-1,-13],[10,-20],[47,-97],[0,0],[-3,-7],[-84,-192],[-46,-53],[-196,86],[-106,23],[-170,35],[-41,61],[-4,5],[0,0],[13,17],[20,26],[-116,88],[-178,218],[-113,287],[-17,83],[-38,181],[27,22],[0,0],[73,-73],[41,-42],[0,0],[7,6],[49,46],[0,0],[-165,185],[-183,345],[-17,41],[-64,161],[-111,393],[-2,47],[0,7],[68,236],[0,0],[68,-66]],[[77368,36974],[-9,-2],[-38,-12],[-90,35],[-119,233],[-29,56],[102,99],[0,0],[167,-231],[24,-34],[0,0],[3,-21],[11,-70],[-22,-53]],[[74945,37127],[-47,-37],[-63,-51],[0,0],[-12,25],[-15,35],[-10,135],[-1,21],[27,156],[25,34],[-2,32],[-1,20],[0,0],[7,1],[20,2],[79,-66],[0,0],[9,-114],[8,-108],[-19,-66],[-5,-19]],[[70895,40482],[-181,-8],[-10,1],[-50,1],[-20,18],[-54,50],[-18,43],[23,126],[0,0],[460,134],[71,9],[55,8],[12,-18],[-24,-114],[0,0],[253,-144],[0,0],[-517,-106]],[[57020,48809],[0,-3],[-7,-70],[0,0],[-141,317],[-31,149],[3,53],[28,29],[148,-475]],[[80302,49737],[-140,-625],[0,0],[-77,97],[81,371],[87,150],[-9,59],[-49,72],[78,66],[0,0],[24,-155],[5,-35],[0,0]],[[72388,56843],[12,-45],[0,0],[-37,-11],[-15,-4],[-12,15],[-16,18],[0,0],[-78,-94],[-87,-106],[-28,25],[-36,32],[4,67],[34,70],[43,38],[0,0],[127,52],[89,-57],[0,0]],[[70793,58667],[-26,-20],[-158,24],[-137,81],[15,192],[33,59],[26,47],[66,33],[0,0],[0,5],[0,59],[0,0],[26,18],[13,-16],[4,-5],[0,0],[33,-216],[87,-165],[24,-15],[-6,-81]],[[62681,60347],[-2,-1],[0,0],[0,0],[0,0],[-2,2],[0,0],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,0],[0,1],[0,0],[1,0],[2,-1],[1,0],[1,0],[0,-2],[1,-1],[0,0],[-1,-2],[0,-1],[-1,-1],[0,0]],[[67045,60854],[8,-139],[-224,8],[38,344],[52,68],[44,4],[0,0],[5,-17],[77,-268]],[[67157,61056],[33,-3],[60,41],[67,46],[42,9],[7,2],[80,-80],[39,-39],[-2,12],[-24,124],[0,0],[54,78],[23,-24],[63,-67],[39,-129],[0,0],[-97,-164],[-208,-224],[0,0],[-178,122],[-119,140],[0,0],[-41,198],[-25,116],[7,67],[16,1],[164,-226]],[[44027,89254],[-59,-194],[-35,191],[4,43],[-7,166],[-56,133],[-16,19],[-14,24],[21,49],[55,-12],[55,-189],[52,-230]],[[20673,92242],[-22,-43],[-50,103],[-18,232],[25,23],[48,-22],[-8,-16],[38,-58],[1,-72],[-14,-147]],[[57514,74455],[95,5],[121,58],[239,255],[116,65],[35,-2],[-60,-128]],[[58060,74708],[15,-78]],[[58075,74630],[35,80],[33,15]],[[58143,74725],[119,-13],[111,165],[17,117],[-53,-19],[-71,72],[1,72],[135,159],[78,-36],[80,43],[127,341],[324,704],[55,171],[55,-74],[10,-80],[-17,-94],[-41,-90],[-3,-37],[8,-14],[9,-6],[7,-2],[30,14],[95,174],[127,40],[39,-186],[104,-46],[31,29],[121,-136],[-12,-151],[-42,0],[-31,-58],[1,-227],[102,1],[93,78],[64,11],[47,-147],[-44,-34],[-78,-2],[3,-45],[35,-54],[81,8],[26,74],[48,54],[106,-51],[119,-116],[277,-176],[40,11],[47,-69],[5,-126],[-56,-83],[-255,-138],[-116,-10],[-120,72],[-111,-116],[54,-141],[125,-158],[-53,-152],[-101,-36],[-247,38],[-75,-17],[-18,-122]],[[59555,74111],[-56,-56],[-5,-29],[137,-180],[-63,-195],[-135,12],[-137,0],[-38,-3],[-23,-19],[-7,-20],[274,-36],[72,-44],[-2,-20],[-127,-4],[-21,-16],[65,-277],[83,-109],[222,-518],[-55,-191],[-51,-107],[43,-142],[314,-379],[191,-189],[92,-81],[23,-9],[21,-51],[-14,-49],[-89,-101],[-279,13],[-161,66],[-39,73],[-7,56],[-55,49],[-3,-244],[-71,-54],[-24,-48],[-113,-349],[-29,-162],[16,-527],[-4,-64],[-27,-53],[18,-39],[36,-16],[-63,-93],[-82,78],[-163,-374],[-62,-59],[-54,-5],[-3,64],[-42,123],[-4,-8],[-106,-404],[-100,-189],[-18,-300],[30,-67],[114,34],[8,-22],[-43,-284],[-186,-333],[-41,79],[-30,-133],[7,-221],[-45,-134],[-4,-15],[-34,-145],[-399,-238],[-336,-234],[-50,9],[-1,218],[-37,473],[-20,-23],[-246,38],[-119,-89],[-145,40],[-103,162],[-141,67],[-131,-37],[-281,-218],[-262,-33],[-120,90],[-3,250],[-76,186],[-125,-115],[-320,-111],[-366,92],[-44,98],[-124,973],[37,286],[-86,205],[-93,96],[-200,95],[-33,152],[110,-36],[-69,107],[-32,25],[-115,13],[-63,248],[5,60],[24,36],[29,179],[-36,143],[-65,71],[-69,364],[41,397],[51,181],[66,149],[284,396]],[[54943,72356],[3,-86],[44,-116],[95,-97],[239,-58],[3,38],[25,20],[80,-27],[335,-241],[148,-64],[-13,60],[-54,10],[-99,224],[88,302],[12,94],[86,156],[52,30],[-29,159],[21,117],[120,112],[687,212],[116,70],[310,557],[121,162],[102,209],[33,149],[46,107]],[[47506,60446],[10,-18],[6,-10],[0,-1],[1,-1],[0,-1],[0,0],[-1,-1],[-1,0],[-3,-3],[-2,-1],[-2,-2],[-1,0],[0,0],[-1,-1],[-1,0],[0,0],[-1,0],[-1,0],[-1,1],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[0,0],[-2,6],[-4,8],[-1,3],[0,14],[-1,13],[3,1],[2,0],[0,-1],[4,-8]],[[47560,60420],[0,-1],[-1,-2],[0,0],[-1,-1],[-1,-2],[0,0],[0,0],[-1,-1],[-1,-1],[-8,-6],[-2,0],[-1,-1],[-1,0],[0,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,2],[0,0],[-1,3],[0,1],[0,2],[0,0],[0,1],[13,18],[7,10],[0,0],[0,0],[1,0],[0,0],[1,-1],[1,-1],[0,0],[0,-1],[1,-1],[0,0],[0,-1],[1,-2],[0,-3],[0,-2],[1,0],[0,-1],[0,0],[0,-1],[0,-3],[-3,-7]],[[55676,87344],[-11,-374],[-233,-320],[17,-34],[-1,-292],[-332,-304],[-115,-50],[-33,-101],[-45,-36],[-518,253],[-36,270],[-11,379],[34,85],[338,299],[24,45],[-47,-19],[56,128],[229,71],[80,-50],[87,-9],[234,112],[93,-75],[1,41],[71,69],[118,-88]],[[62039,96959],[-21,-23],[-35,8],[-232,124],[-57,56],[-29,73],[-29,12],[30,41],[88,-16],[6,-48],[291,-175],[-12,-52]],[[16455,61110],[2,-1],[6,0],[14,-3],[2,-1],[3,-2],[1,0],[1,-2],[1,-4],[7,-25],[3,-8],[57,-385],[-44,-36],[-83,64],[-2,1],[-1,1],[-3,4],[-1,2],[-2,3],[-1,1],[-1,2],[-20,45],[-6,34],[0,1],[0,3],[1,2],[20,232],[1,10],[2,21],[4,14],[1,1],[0,1],[3,3],[7,8],[5,5],[23,9]],[[16637,60371],[25,-12],[14,-8],[11,-8],[52,-40],[12,-11],[2,-3],[5,-13],[2,-10],[-1,-12],[-107,23],[-12,7],[-15,33],[-8,23],[0,2],[1,10],[1,7],[0,1],[3,5],[14,6],[1,0]],[[17125,60457],[7,-26],[5,-21],[8,-37],[0,-12],[1,-75],[-2,-15],[-1,-4],[-2,-5],[-2,-2],[0,0],[-2,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-11,7],[-90,115],[-19,35],[29,7],[12,4],[0,1],[1,0],[23,22],[1,1],[1,2],[1,5],[3,16],[2,13],[36,7],[4,-36]],[[52659,61901],[4,-15],[0,-3],[0,-1],[0,0],[0,-1],[0,0],[0,-25],[-6,-13],[-16,-34],[0,0],[-21,-6],[-49,22],[0,0],[-2,2],[-5,5],[0,0],[12,27],[6,11],[0,0],[59,32],[18,-1]],[[10968,99863],[-32,-8],[-51,20],[-3,-2],[-2,2],[-23,-2],[-37,-77],[-29,-56],[-61,-36],[-69,-38],[-19,-6],[-37,-14],[-5,-2],[-8,0],[-138,-50],[12,-69],[-159,74],[-4,-2],[-20,-6],[-4,0],[-3,1],[-22,9],[-24,11],[-71,32],[-13,8],[-40,34],[-38,92],[-17,67],[-15,65],[19,43],[131,76],[224,153],[33,19],[91,-11],[90,-12],[19,-3],[18,-4],[29,-3],[1,0],[1,0],[7,0],[23,1],[21,4],[77,17],[157,60],[19,8],[35,15],[65,36],[73,51],[63,47],[29,16],[91,46],[1,0],[1,0],[0,0],[13,2],[3,-1],[-6,-25],[-11,-17],[-188,-150],[-150,-116],[12,-211],[6,-74],[-65,-14]],[[70,116631],[-21,-22],[0,0],[-49,18]],[[0,116778],[31,-19],[60,-37],[-21,-91]],[[14606,83686],[51,-9],[25,29],[-45,23],[58,5],[54,-48],[8,-57],[-249,31],[-38,77],[49,29],[14,77],[-51,55],[37,-1],[49,-43],[38,-168]],[[4622,119640],[14,-8],[201,-119],[-14,-22],[-52,26],[-17,9],[-104,-78],[-95,-70],[0,0],[-453,-207],[-106,233],[0,0],[38,78],[18,22],[30,37],[117,46],[183,72],[9,-5],[18,-11],[213,-3]],[[4609,119938],[79,-108],[0,0],[-22,1],[-47,4],[-140,-69],[-34,-8],[-108,-26],[-131,177],[56,2],[33,1],[0,0],[82,73],[28,56],[19,-5],[12,-2],[173,-96]],[[75442,81992],[-17,-68],[-93,-196],[-2,-3],[-1,-3],[-15,-21],[-3,-4],[-7,-1],[-5,0],[-3,0],[-1,1],[-13,6],[-1,1],[0,0],[0,0],[-1,2],[-1,3],[-3,3],[-3,7],[-10,53],[-1,4],[0,5],[-1,63],[8,25],[4,10],[0,0],[25,4],[21,7],[20,9],[0,0],[3,6],[13,23],[13,43],[6,24],[13,3],[26,5],[29,-11]],[[83121,76458],[5,-1],[6,-3],[19,-10],[27,-20],[0,-6],[0,-2],[0,-1],[1,-2],[0,-1],[0,0],[1,-1],[0,0],[1,-1],[0,-1],[10,-6],[0,0],[4,8],[0,0],[2,-2],[6,-6],[2,-12],[2,-11],[-2,-23],[-1,-18],[-11,-30],[-2,-5],[-39,-9],[-5,-1],[0,0],[-6,2],[-6,2],[-11,5],[-6,2],[-9,3],[0,0],[-1,2],[0,1],[-6,21],[-12,48],[17,44],[2,6],[12,28]],[[85899,75031],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-1,-2],[-3,-1],[-2,-1],[-1,-1],[0,0],[-1,0],[0,0],[-2,-1],[-1,0],[-11,2],[-2,1],[-4,1],[-3,2],[-2,3],[0,0],[0,2],[-2,3],[0,1],[-1,3],[-1,2],[0,2],[0,1],[0,0],[-1,1],[0,3],[0,0],[1,0],[15,-7],[22,-11]],[[85935,75068],[-18,-28],[-7,-11],[-4,4],[-3,2],[-4,2],[0,-1],[0,0],[-1,0],[-1,0],[0,0],[34,50],[1,-4],[1,-2],[-1,0],[0,0],[0,0],[0,-2],[1,-2],[0,0],[2,-8]],[[79445,76743],[-1,-5],[-1,-3],[0,-2],[0,-1],[0,0],[0,0],[-1,1],[-3,1],[-1,0],[-1,0],[0,0],[-13,38],[0,2],[0,1],[0,1],[1,0],[0,0],[0,1],[2,0],[0,0],[2,0],[1,0],[0,0],[1,-1],[0,0],[0,0],[1,0],[2,-2],[6,-5],[1,0],[0,0],[0,-1],[1,0],[1,-1],[1,-12],[1,-12]],[[79312,76787],[5,-2],[1,-1],[0,0],[2,-1],[0,0],[0,0],[0,-1],[1,-1],[0,-3],[-1,-32],[0,0],[0,-1],[-1,-1],[-13,-6],[0,0],[-1,0],[0,0],[-1,0],[-13,1],[-2,2],[-13,8],[0,1],[0,0],[-1,1],[0,0],[4,15],[3,14],[1,2],[1,3],[0,0],[1,2],[1,2],[0,1],[1,0],[1,1],[9,6],[13,-9],[2,-1],[0,0]],[[79447,76856],[0,0],[6,-1],[0,0],[16,-8],[1,0],[0,0],[1,-1],[0,0],[-1,0],[0,0],[-1,-2],[0,0],[-26,-26],[0,0],[-1,-1],[-1,-1],[0,0],[0,0],[-2,3],[0,1],[-1,4],[-1,3],[0,0],[0,1],[0,2],[0,3],[0,1],[0,3],[0,0],[0,1],[0,3],[0,4],[0,3],[0,0],[1,5],[0,1],[0,1],[1,0],[1,0],[2,1],[1,0],[0,0],[1,0],[2,0],[1,0],[0,0]],[[71502,78656],[7,-16],[10,-30],[-2,-7],[-3,-11],[-4,-7],[-51,-56],[-16,-18],[-1,0],[-1,0],[-2,1],[0,0],[0,0],[-1,2],[0,0],[-2,5],[0,1],[1,1],[0,10],[1,1],[4,21],[14,39],[13,33],[2,4],[0,0],[6,5],[25,22],[0,0]],[[5245,100326],[94,-44],[174,-80],[318,7],[318,-40],[0,0],[82,-56],[4,-2],[0,0],[55,-111],[0,0],[87,55],[45,28],[50,18],[60,21],[0,0],[17,-41],[14,-32],[-34,-112],[-66,-44],[-30,4],[-112,16],[-359,-45],[-162,21],[-132,17],[-20,61],[-297,86],[-313,31],[-37,3],[-51,63],[14,94],[18,114],[94,-11],[169,-21]],[[7469,100671],[-54,-33],[-7,-4],[0,0],[-32,233],[67,79],[60,72],[173,92],[0,0],[10,-19],[-18,-92],[-1,-8],[0,0],[-9,-19],[-79,-185],[-64,-68],[-46,-48]],[[7006,102164],[-54,-24],[-52,-22],[-173,11],[-10,47],[0,0],[100,69],[0,0],[127,-22],[49,-6],[6,-25],[7,-28]],[[3243,102777],[134,-277],[0,0],[-3,-9],[-11,-37],[-49,11],[-96,21],[-115,64],[36,146],[4,0],[18,-3],[58,60],[24,24],[0,0]],[[6455,102598],[-62,-70],[-83,79],[19,37],[0,0],[34,11],[4,2],[15,69],[-26,36],[-69,94],[21,27],[9,13],[77,9],[0,0],[67,-40],[5,-18],[6,-20],[-17,-229]],[[5548,102384],[-25,-16],[-11,-7],[0,0],[-54,30],[-50,27],[0,0],[-99,173],[-494,453],[-105,51],[-73,36],[-13,26],[0,0],[38,35],[60,55],[106,25],[34,-41],[0,0],[64,-134],[60,-51],[72,-36],[69,-35],[87,-9],[136,-275],[175,-138],[32,-25],[9,-88],[-18,-56]],[[6740,103249],[-51,-33],[-110,3],[-89,34],[-192,142],[0,0],[8,59],[0,0],[27,25],[155,74],[101,1],[4,0],[35,-64],[104,-192],[4,-24],[4,-25],[0,0]],[[33915,26268],[13,3],[40,7],[9,-1],[5,-1],[2,0],[5,-1],[6,-1],[6,-1],[36,-14],[77,-68],[-80,-55],[-2,-1],[-2,-1],[-1,0],[0,0],[0,-1],[-14,-5],[-2,-1],[-1,0],[-1,0],[-5,0],[-46,1],[-1,0],[-6,0],[-1,0],[-1,0],[-1,1],[-9,7],[0,0],[-1,1],[-3,3],[-3,1],[-1,1],[-5,5],[-1,1],[0,0],[0,0],[-41,60],[-42,62],[0,0],[35,17],[21,-11],[15,-8]],[[62657,61487],[-41,-15],[-22,33],[-2,95],[339,257],[-25,-62],[12,-43],[-8,-73],[-253,-192]],[[61320,62052],[-120,-44],[-124,34],[-194,255],[-153,141],[-246,27],[-86,55],[-60,104],[50,95],[105,54],[168,6],[252,62],[78,-112],[307,-278],[110,-160],[27,-54],[1,-54],[-53,-81],[-62,-50]],[[63909,62702],[-186,-320],[-203,-263],[-351,-158],[-188,-5],[-11,28],[19,83],[29,45],[73,416],[32,82],[140,176],[40,22]],[[63303,62808],[155,114],[97,21]],[[63555,62943],[274,181]],[[63829,63124],[83,182],[19,84],[43,24],[241,64],[951,127],[26,-43],[-172,-207],[-76,-49],[-101,-16],[-14,-5],[-49,-31],[-36,-62],[-366,-213],[-288,-110],[-181,-167]],[[62867,63597],[-173,-18],[21,88],[56,52],[57,1],[59,-21],[-20,-102]],[[63201,63745],[-207,-294],[-166,11],[-10,34],[87,171],[196,72],[100,6]],[[59058,63590],[-104,-380],[-96,-70],[-125,28],[-160,121],[30,-11],[63,1],[13,27],[-11,197],[11,84],[112,129],[64,31],[164,-68],[37,-50],[2,-39]],[[63451,63673],[-95,-197],[-48,-10],[-82,83],[37,96],[42,34],[35,-65],[96,163],[23,-19],[-8,-85]],[[63582,63819],[75,-35],[239,16],[33,-55],[6,-88],[-19,-21],[-294,-69],[-133,60],[15,102],[78,90]],[[60028,63668],[159,-26],[51,21],[151,-184],[11,-102],[53,18],[-64,-100],[-139,-61],[-158,-35],[-72,88],[-67,-8],[-162,-84],[-504,-183],[-73,-1],[-148,76],[-2,89],[46,69],[-23,72],[4,93],[31,55],[197,150],[153,-38],[106,-108],[106,-154],[262,56],[16,32],[-30,55],[-179,96],[-132,177],[21,74],[93,41],[58,-6],[235,-172]],[[62650,63833],[51,-143],[-75,-103],[-57,-20],[-2,-152],[-214,-108],[-256,-71],[-197,-14],[-318,-80],[-105,15],[-169,89],[-245,26],[-150,-57],[-69,69],[-1,138],[43,101],[84,40],[98,85],[43,44],[88,12],[323,-101],[211,-150],[341,59],[144,-76],[189,30],[225,241],[16,47],[-17,21],[-46,-12],[-12,-24],[-33,8],[36,96],[46,19],[28,-29]],[[58265,63819],[109,-85],[89,-108],[7,-36],[-58,-82],[-274,-149],[-287,226],[-33,2],[-95,188],[11,72],[222,-84],[88,12],[111,101],[110,-57]],[[66634,63883],[-38,-4],[-77,129],[3,63],[50,34],[75,-22],[29,-26],[3,-45],[-45,-129]],[[64855,64212],[9,-77],[-170,-163],[-169,40],[-208,-78],[24,130],[57,115],[41,19],[107,-41],[264,130],[45,-75]],[[71568,63589],[-372,-18],[72,268],[80,201],[109,225],[80,90],[102,60],[143,31],[35,-2],[107,-78],[62,-71],[36,-78],[-20,-120],[-166,-291],[-124,-156],[-144,-61]],[[67706,64228],[-196,-294],[-105,1],[-13,92],[60,236],[147,238],[47,111],[79,44],[16,-81],[-5,-165],[-30,-182]],[[57544,64778],[-357,-211],[-138,11],[-76,29],[-26,45],[-10,-32],[16,-29],[-72,-2],[-163,50],[5,88],[91,126],[651,11],[70,-50],[9,-36]],[[69341,65237],[42,-144],[-95,-166],[-90,-98],[-59,67],[-26,68],[37,264],[36,-43],[32,-91],[-21,131],[-48,57],[2,121],[18,36],[18,-17],[79,-139],[75,-46]],[[69503,65355],[-61,-55],[-30,6],[-73,74],[-50,186],[141,77],[34,1],[70,-122],[-31,-167]],[[53562,65633],[212,-232],[328,-50],[9,42],[50,2],[107,-175],[67,-259],[63,-44],[430,-16],[372,-51],[166,-66],[65,39],[62,129],[73,272],[114,42],[72,-34],[186,-223],[683,-143],[44,-38],[59,-251],[34,-162],[-15,-18],[3,-79],[82,-72],[221,-133],[411,107],[267,-120],[15,-37],[-72,-500],[8,-68],[83,-102],[-76,-74],[-215,97],[-380,235],[-217,-6],[-61,-56],[-143,-20],[-227,76],[-220,48],[-454,20],[-348,121],[-325,219],[-319,113],[-282,59],[-134,-36],[-80,-51],[-5,-34],[-29,-23],[-71,4],[-281,79],[-212,163],[-230,57],[-287,28],[-97,41],[-22,75],[23,265],[-296,125],[-213,-47],[-152,37],[-11,55],[22,37],[81,-79],[30,11],[116,229],[135,401],[109,77],[71,-37],[280,-52],[188,14],[-18,30],[11,76],[140,-37]],[[61281,65539],[-48,-358],[-23,274],[5,262],[22,74],[16,-60],[28,-192]],[[69440,65833],[29,-179],[-84,17],[-42,-58],[-86,70],[10,120],[62,137],[30,29],[81,-136]],[[68462,65695],[-51,-95],[54,242],[50,84],[58,267],[27,8],[19,-32],[-30,-134],[-127,-340]],[[62141,66117],[-7,-77],[-49,2],[-81,156],[9,95],[67,56],[25,5],[56,-110],[-15,-72],[-5,-55]],[[62477,66229],[-59,-134],[-137,14],[-8,67],[51,321],[55,157],[127,112],[17,-7],[24,-27],[11,-196],[-6,-66],[-75,-241]],[[62807,66720],[-13,-93],[-31,64],[-47,-36],[-48,-344],[19,-22],[53,9],[86,-101],[-233,-337],[-96,-14],[-53,175],[11,22],[16,11],[23,35],[61,140],[53,356],[-6,122],[19,130],[69,106],[52,26],[67,-211],[-2,-38]],[[62844,67176],[-63,-112],[-49,5],[-59,87],[-7,69],[38,63],[98,-22],[43,-44],[-1,-46]],[[65720,67478],[-161,-22],[-12,73],[56,72],[161,91],[24,-10],[13,-107],[-81,-97]],[[58784,67332],[-96,-112],[-26,21],[-3,431],[62,187],[71,63],[14,-318],[-22,-272]],[[65147,67549],[-267,-136],[-54,1],[-273,175],[-87,154],[-23,71],[3,137],[45,70],[348,41],[68,-8],[121,-76],[143,-180],[-4,-180],[-20,-69]],[[49615,68001],[-43,-67],[-117,215],[-4,77],[45,25],[107,-150],[12,-100]],[[66527,68262],[242,-154],[129,13],[207,-135],[157,-345],[-15,-247],[-130,51],[-421,383],[-173,21],[-147,-88],[-101,35],[-115,82],[-196,-133],[-99,-19],[-31,27],[-122,254],[-79,-125],[-84,-238],[-41,322],[74,58],[76,105],[38,92],[831,41]],[[54157,68205],[-188,-262],[-68,114],[-22,-21],[18,-29],[-10,-37],[-101,-55],[-27,45],[-23,233],[20,61],[22,190],[100,52],[49,-36],[132,-55],[39,-40],[41,-65],[18,-95]],[[49408,68242],[-66,-1],[-19,226],[1,48],[15,6],[101,-118],[29,-112],[-61,-49]],[[49168,68866],[65,-232],[-126,85],[-25,42],[-16,48],[34,101],[22,8],[46,-52]],[[64455,68664],[-48,-32],[-54,248],[34,88],[46,-38],[22,-266]],[[64582,69048],[-398,-48],[-71,27],[-15,21],[8,55],[536,-6],[-60,-49]],[[66917,68918],[-93,-15],[-83,28],[-74,37],[-72,73],[169,112],[119,16],[23,12],[46,37],[63,-133],[-6,-104],[-92,-63]],[[63640,68956],[-125,-30],[-43,113],[17,148],[26,41],[66,15],[80,2],[368,-88],[17,-112],[-263,-19],[-143,-70]],[[70613,69053],[-240,-5],[-138,50],[-29,36],[-96,44],[-169,43],[-21,53],[27,3],[716,-108],[108,-50],[-158,-66]],[[52805,69317],[106,-264],[10,-194],[43,-194],[56,-102],[203,-188],[-55,-207],[9,-28],[58,-38],[-170,30],[-266,140],[-36,130],[6,46],[-65,347],[-17,22],[-174,31],[-95,-24],[-98,57],[6,97],[127,253],[67,77],[52,17],[75,-92],[17,54],[109,71],[32,-41]],[[65592,69353],[48,-60],[15,4],[-61,-113],[-290,-16],[-58,53],[-6,30],[29,174],[123,74],[200,-146]],[[62808,69553],[-3,-45],[32,-62],[77,150],[101,-47],[-12,-120],[-42,-81],[-195,-41],[33,75],[-17,146],[-130,-248],[-39,9],[-39,113],[23,140],[43,81],[132,-4],[36,-66]],[[55020,69654],[-155,-128],[-53,43],[14,196],[21,35],[126,-14],[36,-9],[11,-123]],[[48893,69116],[-68,-20],[-132,103],[-163,380],[31,150],[37,83],[127,-54],[3,-54],[95,-255],[101,-228],[-6,-71],[-25,-34]],[[67362,69613],[-40,-139],[-53,18],[-56,65],[-67,213],[8,44],[135,48],[66,-16],[7,-233]],[[70195,69983],[273,-290],[-44,-53],[-92,-41],[-134,23],[-55,60],[-61,257],[-99,-61],[-85,129],[-18,76],[97,-28],[218,-72]],[[73158,62983],[0,0],[-93,81],[-363,540],[-127,255],[29,48],[-6,109],[-132,-187],[-463,-50],[-72,87],[129,399],[-193,250],[106,60],[348,-24],[54,-23],[2,1],[-12,98],[-12,18],[-320,-55],[-186,71],[-123,139],[-2,36],[16,17],[106,2],[106,38],[-1,40],[-171,179],[-142,215],[-90,536],[-269,346],[-122,102],[19,109],[55,28],[-33,73],[-72,-69],[-84,12],[11,62],[-49,-59],[-69,-24],[-64,57],[10,45],[-20,49],[-5,-21],[-139,0],[-20,20],[-179,90],[-371,186],[-277,44],[-319,159],[-39,35],[-52,97],[10,87],[69,23],[46,-26],[45,6],[3,43],[-357,-18],[-76,92],[-180,143],[-54,-23],[-46,62],[-39,103],[17,216],[20,60],[108,73],[-23,131],[-110,-162],[-116,-272],[-36,-394],[-85,-126],[-148,-42],[-61,18],[-51,125],[-52,249],[46,2],[45,130],[-36,128],[-281,315],[-70,17],[-60,-16],[-52,33],[-13,22],[22,112],[53,55],[101,8],[100,-16],[104,-71],[175,155],[216,115],[35,-41],[168,-148],[76,36],[129,151],[20,71],[2,21],[-56,243],[-271,-143],[-651,-36],[-238,250],[-53,266],[-86,182],[-26,26],[-36,-4],[-61,-58],[-194,-21],[-148,63],[43,38],[101,141],[39,112],[17,135],[514,415],[127,54],[192,-6],[213,-118],[114,-88],[308,-92],[154,-126],[121,-399],[-92,-371],[11,-302],[45,-199],[116,-288],[43,75],[103,22],[58,-310],[66,-212],[75,-70],[101,-26],[187,10],[476,801],[120,135],[217,46],[206,94],[9,112],[-25,147],[324,233],[63,4],[1087,-744],[145,2],[297,-60],[122,-64],[9,-26],[-13,10],[-25,-75],[21,-20],[156,29]],[[73147,68438],[0,0],[93,-21],[9,-3],[0,0],[159,-92],[639,-412],[0,0],[579,-198],[0,0],[225,-223],[148,-87],[15,-9],[0,0],[19,6],[49,14],[82,-106],[233,-202],[167,-131],[37,-29],[0,0],[66,-9],[20,-30],[188,-281],[56,-96],[1,-270],[-18,-86],[-18,-81],[18,-60],[108,-12],[60,-6],[59,-27],[89,-42],[92,-46],[31,-15],[39,-36],[87,-83],[163,-114],[92,-19],[73,27],[16,6],[148,-126],[62,-105],[47,-79],[36,-110],[8,-27],[3,-163],[-36,-38],[-129,-31],[-37,-3],[-113,-6],[-23,5],[-97,23],[-30,-9],[-44,-13],[-9,-26],[-6,-16],[-1,-70],[-2,-89],[114,-284],[27,-51],[48,-89],[24,-24],[112,-109],[109,-199],[80,-60],[118,-88],[99,-208],[42,-134],[144,-451],[16,-25],[25,-38],[42,-11],[53,-15],[108,49],[112,50],[47,-11],[44,-10],[14,-111],[-48,-71],[-36,-105],[30,-108],[0,0],[10,-6],[134,-85],[312,-33],[14,-21],[11,-17],[-14,-21],[-20,-29],[-115,-32],[0,0],[-32,-37],[-17,-20],[120,-172],[151,-67],[276,-122],[127,45],[0,0],[-152,-102],[0,0],[-35,11],[-83,28],[-39,-26],[0,0],[-1,-53],[40,-37],[121,-114],[0,0],[-100,-66],[-59,-15],[-65,-17],[-52,32],[-66,40],[33,78],[16,36],[0,4],[-2,32],[0,0],[-393,86],[-254,55],[-130,105],[0,0],[-238,-40],[-362,89],[0,0],[-92,111],[-74,189],[-98,176],[-40,29],[-49,37],[0,0],[-16,4],[-11,3],[-73,245],[9,36],[9,34],[-9,12],[-2,2],[-39,-69],[0,0],[-155,67],[-29,36],[-15,58],[-8,28],[8,22],[-31,126],[-122,263],[-60,128],[-62,93],[-193,150],[-403,153],[-94,22],[-12,3],[-61,122],[-6,68],[-7,79],[0,0],[-113,0],[-2,3],[0,0],[0,0],[0,-1],[0,-2],[0,0],[-2,0],[-2,0],[-94,-29],[-26,-8],[0,0],[-95,-130],[18,-36],[11,-23],[0,0],[-27,-51],[0,0],[-18,-12],[-24,-16],[-126,66],[-23,23],[-14,15],[-35,108],[-13,11],[-11,1],[-9,-2],[-8,-1],[28,-81],[80,-236],[16,-89],[-6,-7],[-22,-30],[-58,1],[-9,0],[0,0],[-44,17],[-116,48],[-26,50],[0,0],[-7,-1],[-22,-4],[0,0],[9,-60],[39,-68],[16,-16],[73,-75],[25,-4],[13,-2],[-13,-7],[-68,-40],[-359,-68],[-25,-5],[0,0],[-2,-48],[0,0],[15,-15],[23,-21],[98,-24],[88,-102],[29,-51],[42,-76],[22,-199],[-8,-9],[-38,-41],[-46,-6],[-41,-5],[0,0],[-23,-16],[-117,-80],[-155,-74],[-88,-43],[-87,58],[-83,56],[-564,-34],[-27,-11],[-46,-20],[-62,81],[-8,9]],[[51962,70107],[-75,-55],[-23,13],[-55,132],[42,74],[93,51],[32,-28],[26,-64],[-5,-38],[-35,-85]],[[65483,70035],[-82,-114],[-99,1],[-41,167],[-1,212],[60,56],[26,-10],[70,-114],[67,-198]],[[67357,70584],[134,-95],[30,-52],[8,-79],[-41,-60],[-173,15],[-172,238],[-25,-35],[71,-148],[-27,-12],[-48,-2],[-141,58],[41,36],[-17,37],[-32,13],[-11,-18],[0,55],[112,37],[244,7],[47,5]],[[52141,70450],[12,-102],[-171,47],[-41,87],[32,121],[14,17],[31,-19],[77,-122],[46,-29]],[[50808,71559],[89,-111],[57,8],[158,-147],[12,-43],[-17,-79],[-21,2],[-43,74],[-244,132],[-24,116],[15,49],[18,-1]],[[51076,71526],[69,-103],[42,-68],[-22,-52],[-32,2],[-190,173],[-63,-6],[40,90],[32,21],[124,-57]],[[52054,71487],[-25,-125],[-118,70],[-5,49],[0,137],[99,25],[49,-156]],[[50750,71379],[-21,-2],[-56,68],[-22,65],[-19,185],[14,97],[31,4],[114,-153],[-27,-143],[27,-99],[-41,-22]],[[48120,71145],[-48,-68],[-74,41],[-290,601],[16,71],[80,81],[32,-2],[65,-63],[150,-228],[91,-178],[-22,-255]],[[50798,71839],[5,-184],[-125,154],[-112,35],[-63,118],[137,-36],[139,-42],[19,-45]],[[63889,71675],[-225,-372],[-102,-293],[-160,-67],[-349,-91],[-201,27],[-205,140],[-218,16],[-235,-14],[-343,42],[-98,-54],[-138,-32],[-170,22],[-118,65],[-50,-4],[-119,-67],[-118,-205],[-80,-330],[31,-367],[29,-97],[345,-546],[227,-22],[59,158],[150,273],[100,92],[17,-9],[-8,-77],[36,-36],[136,-31],[88,28],[31,60],[263,88],[71,96],[223,74],[49,0],[105,-54],[44,-123],[-40,-185],[-30,-43],[-35,4],[-67,77],[-2,50],[-52,17],[-116,-38],[-39,-42],[-42,-119],[-181,-300],[-101,-103],[-218,-85],[-48,-72],[-187,-50],[-74,56],[-21,-53],[30,-137],[16,17],[75,-48],[133,-135],[387,-780],[-64,-289],[-50,-62],[0,-40],[233,-309],[49,-154],[91,7],[-44,70],[49,-1],[27,-62],[-6,-225],[-22,-21],[-169,13],[-260,-95],[-40,-100],[-2,-61],[45,-75],[-63,-68],[-163,38],[-106,69],[-27,66],[39,360],[-65,211],[-116,112],[-211,279],[-9,90],[77,153],[32,135],[17,117],[0,191],[-42,52],[-145,23],[-113,-66],[-219,-222],[119,-356],[20,-248],[-16,-77],[-32,-883],[15,-611],[-429,-80],[-96,59],[-66,148],[-1,58],[25,176],[70,215],[61,488],[-7,183],[-60,427],[-37,79],[-79,39],[-211,-118],[-11,11],[-77,347],[-6,232],[36,179],[18,-30],[63,44],[81,125],[107,792],[-7,220],[21,78],[272,472],[-15,264],[29,450],[57,210],[182,328],[60,45],[-4,-68],[34,-36],[109,-29],[123,218],[18,192],[66,67],[253,-80],[157,-166],[179,-8],[53,6],[247,-38],[222,-163],[61,101],[86,7],[438,-88],[244,142],[373,557],[54,22],[63,-14],[71,-135],[-8,-42],[-18,-16],[-85,-152]],[[50322,72379],[63,-123],[-29,-162],[-70,-67],[-87,28],[-48,162],[9,81],[41,43],[22,-14],[82,62],[17,-10]],[[65456,71295],[52,-8],[47,55],[85,216],[14,130],[55,88],[159,142],[120,35],[29,-15],[6,-28],[-20,-384],[-154,-135],[-45,-14],[-94,-103],[66,-110],[108,-48],[168,-236],[-38,-24],[-342,148],[-97,14],[-34,-36],[-13,-80],[22,-339],[49,-201],[122,-335],[63,-87],[-58,-28],[-131,158],[-177,443],[-64,735],[32,46],[1,36],[-58,27],[-26,37],[-52,135],[23,167],[54,159],[16,190],[86,201],[88,132],[83,73],[39,-2],[-48,-356],[19,-46],[8,-125],[-19,-193],[-54,-122],[-150,-134],[-15,-40],[23,-83],[52,-55]],[[65897,72344],[-134,-25],[-42,207],[81,176],[56,73],[68,54],[27,-49],[39,-67],[0,-89],[-62,-245],[-33,-35]],[[47253,72696],[-47,-106],[-287,229],[-67,89],[12,71],[45,75],[8,-11],[175,-179],[133,-122],[28,-46]],[[54142,73677],[-53,-16],[-43,45],[25,49],[-69,117],[-20,98],[139,155],[31,-90],[69,-166],[-18,-86],[-61,-106]],[[64966,74186],[-54,-193],[-52,52],[-23,208],[22,151],[12,18],[30,-16],[65,-220]],[[47136,75019],[172,-49],[122,33],[221,-10],[173,-19],[111,-40],[163,-217],[110,-314],[67,-14],[74,-82],[-18,-174],[-58,-35],[12,-53],[190,-126],[736,-670],[131,-192],[2,-90],[76,-241],[2,128],[17,29],[31,0],[209,-471],[208,-255],[9,9],[0,13],[-36,134],[-53,70],[-15,89],[36,54],[117,3],[138,-174],[54,-254],[23,-57],[88,-56],[120,23],[233,-271],[37,-285],[104,-156],[372,-240],[-203,-241],[0,-21],[96,25],[161,117],[14,15],[49,78],[50,39],[47,-15],[178,-200],[29,-75],[14,-138],[-13,-34],[-95,-26],[-84,-113],[-5,-35],[81,-176],[-105,-83],[-21,-172],[217,-224],[260,-56],[90,28],[19,-20],[52,-492],[90,-243],[121,-255],[41,-63],[370,-76],[226,-459],[24,-296],[-64,-120],[-32,-154],[31,-312],[14,-531],[-20,-423],[-39,-541],[-36,-86],[-220,316],[-58,43],[-44,-116],[22,-132],[-240,128],[-87,-92],[47,-172],[-103,0],[-375,667],[-345,312],[-587,642],[-170,392],[-232,238],[-134,304],[-90,161],[-82,104],[-123,231],[-30,88],[-58,380],[-194,581],[-164,354],[-297,573],[-142,126],[-123,197],[-204,824],[-3,81],[37,81],[-41,94],[-257,237],[-243,184],[-145,215],[-60,315],[-143,161],[-249,494],[-150,57],[-164,142],[-481,658],[-78,182],[-92,292],[7,187],[31,58],[86,80],[108,-29],[152,-97],[16,-64],[90,-105],[77,-34]],[[45792,76306],[-31,-38],[-43,168],[-45,54],[-3,36],[4,79],[16,23],[69,42],[15,3],[-1,-20],[21,-27],[27,-191],[-29,-129]],[[45024,79450],[-32,-42],[-64,39],[-8,165],[84,119],[22,-30],[20,-127],[-22,-124]],[[45127,80574],[14,-208],[-26,-138],[-23,12],[-38,76],[-53,216],[26,68],[19,-31],[10,37],[30,229],[27,-19],[17,-97],[-3,-145]],[[45197,81427],[10,-27],[23,10],[22,-74],[7,-275],[-32,-53],[-38,-1],[11,-150],[-60,-8],[12,52],[-31,5],[-13,30],[-1,227],[60,242],[11,347],[54,174],[66,48],[12,-146],[-16,-45],[-26,-2],[21,-53],[-92,-301]],[[23789,92960],[-215,-61],[-81,39],[161,81],[12,12],[5,44],[137,84],[104,35],[55,-46],[-178,-188]],[[355,102615],[-127,-238],[-108,-202],[-32,-91],[-36,-102],[4,-145],[0,-3],[57,-73],[43,-108],[-2,-92],[0,0],[-28,-61],[-96,-208],[-30,7]],[[0,102499],[35,9],[289,136],[3,1],[28,-30]],[[73403,105186],[-25,-152],[-3,-157],[34,-269],[34,-82],[43,-1],[113,-166],[106,-336],[41,-281],[-99,-457],[-78,-34],[-81,-107],[-58,-261],[5,-91],[-242,-78],[-73,-182],[-20,-104],[4,-80],[49,-159],[16,-196],[-31,-419],[-110,-118],[-134,-503],[32,-161],[53,-132],[-1,-183],[-279,-490],[-169,-171],[-51,-7],[-44,43],[31,170],[78,245],[100,100],[-16,30],[-76,63],[-100,-52],[-75,-117],[-58,-163],[-114,23],[-71,-19],[-59,-47],[-32,-102],[20,-198],[-87,-167],[-78,-61],[-37,32],[-17,80],[8,187],[81,72],[-88,70],[-110,-25],[-186,-301],[-103,-78],[-515,17],[-110,139],[-58,176],[6,26],[-92,-23],[-63,-52],[-65,-237],[34,-79],[85,-67],[115,-66],[-19,-145],[-25,-24],[-45,11],[-11,12],[27,3],[5,22],[-60,16],[-233,-127],[-202,-487],[-97,-104],[-160,52],[-64,45],[-128,209],[-25,142],[-9,202],[38,79],[99,99],[46,67],[10,28],[-8,100],[-59,35],[-288,-7],[-75,51],[-121,-10],[-157,-37],[-150,-162],[-140,-35],[-123,7],[-405,-153],[-190,17],[-50,32],[-9,-1],[-45,-32],[-53,-89],[-53,-229],[-56,-42],[-173,132],[-227,-84],[-264,-19],[0,270],[37,139],[140,-27],[9,-22],[112,46],[129,202],[164,93],[277,310],[145,224],[102,69],[186,62],[74,-13],[94,-78],[492,83],[471,143],[118,-50],[-57,-104],[56,-31],[171,-17],[148,61],[114,95],[-23,183],[152,336],[155,190],[87,146],[46,117],[9,104],[-54,173],[29,130],[68,60],[246,110],[51,-23],[4,-48],[-177,-197],[-59,16],[-25,-30],[-28,-95],[71,-172],[46,-61],[134,-35],[55,41],[16,52],[143,98],[351,171],[181,177],[98,165],[406,558],[123,363],[106,235],[98,322],[31,270],[-17,101],[-49,69],[-26,628],[243,362],[188,73],[95,-268],[204,37],[30,51],[37,172],[-54,104],[-25,-35],[-189,-94],[-30,17],[36,198],[47,100],[31,11],[40,-28],[236,-125]],[[65440,92432],[-35,-3],[-5,74],[39,224],[255,248],[53,87],[28,7],[16,-71],[-31,-76],[-246,-227],[-17,-82],[5,-118],[-62,-63]],[[66600,94413],[-197,-287],[-46,31],[-49,97],[70,81],[206,113],[16,-35]],[[67330,96033],[-63,-38],[-8,77],[88,286],[32,42],[7,-116],[-56,-251]],[[66812,97557],[-48,-18],[-16,38],[40,222],[27,20],[63,-12],[10,-97],[-23,-71],[-53,-82]],[[67406,98731],[134,-36],[51,4],[48,80],[39,11],[67,-39],[31,-70],[-4,-73],[-19,-53],[-44,-28],[146,-128],[20,-233],[-22,-145],[-106,-132],[-136,-597],[-10,-69],[17,-55],[-7,-78],[-49,-153],[-152,-176],[-262,-155],[90,480],[-15,37],[-63,26],[-32,-16],[-58,-153],[-1,-88],[23,-83],[33,-40],[-68,-70],[-161,51],[-15,490],[94,262],[120,264],[22,101],[-24,222],[-111,240],[-88,40],[-50,-85],[15,-152],[41,-30],[-15,-112],[-149,26],[-60,-49],[-96,118],[-27,76],[23,133],[25,-16],[46,-106],[11,96],[-129,120],[-17,105],[6,39],[241,50],[184,123],[66,82],[18,107],[44,56],[178,68],[-6,-35],[45,-13],[118,-239]],[[69155,99380],[41,-51],[253,-124],[16,-281],[-255,-379],[-272,118],[-91,-17],[-170,-103],[-145,-301],[-23,-206],[-22,-32],[-191,21],[-80,122],[-18,151],[44,110],[-13,61],[-104,171],[222,330],[198,66],[261,-9],[65,73],[9,111],[17,27],[125,123],[62,-12],[71,31]],[[69640,99278],[-128,-63],[-44,62],[79,151],[123,133],[12,-29],[-42,-75],[-31,-47],[-3,-59],[34,-73]],[[71604,102250],[-71,-10],[14,230],[131,198],[32,1],[-7,-55],[37,-154],[-39,-122],[-97,-88]],[[75088,107388],[142,-36],[120,11],[196,192],[55,-696],[50,-50],[113,-16],[16,47],[66,63],[100,-3],[-221,-165],[-327,-168],[-221,-36],[-86,49],[-48,1],[-147,-65],[-202,-193],[-105,-140],[-78,-153],[-106,-302],[-784,525],[-138,12],[-85,-38],[-160,-118],[-184,29],[-77,93],[-134,1],[-50,-58],[-50,-111],[-6,-111],[329,-198],[166,-129],[28,-46],[-125,-78],[-115,54],[-343,-314],[-63,18],[-29,33],[-27,93],[13,88],[40,81],[-62,295],[-112,112],[30,266],[83,95],[106,73],[53,0],[134,159],[31,50],[-82,111],[83,159],[187,-127],[183,-45],[63,37],[81,106],[-7,419],[150,203],[76,465],[-22,189],[-57,171],[23,294],[157,92],[196,-249],[254,-372],[145,-167],[304,-249],[480,-253]],[[19352,95426],[-64,-71],[-31,30],[-52,175],[23,32],[14,61],[52,3],[82,-123],[4,-32],[-28,-75]],[[93223,68981],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[0,2],[-13,66],[0,2],[0,3],[0,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[9,-11],[0,0],[4,-6],[3,-6],[3,-10],[2,-6],[1,-12],[0,-4],[0,-8],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-3,-3],[-1,0],[-1,0],[-1,0],[0,0]],[[93746,69464],[-4,-9],[0,0],[-36,54],[-1,0],[0,0],[0,0],[-1,2],[-2,3],[0,1],[0,0],[0,1],[0,1],[1,1],[1,0],[0,0],[0,0],[0,0],[1,0],[4,-2],[2,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[5,-8],[1,-2],[2,-1],[19,-40]],[[93477,69462],[-1,0],[-1,1],[-1,1],[-1,1],[-13,13],[-9,20],[-19,40],[0,11],[0,2],[0,2],[0,0],[2,-1],[2,-1],[1,-1],[5,-5],[2,-3],[5,-6],[2,-3],[2,-3],[1,-1],[0,-1],[5,-9],[2,-5],[8,-21],[1,-1],[0,-2],[0,-1],[2,-5],[2,-5],[2,-6],[1,-5],[1,-2],[0,-1],[0,-2],[0,-1],[0,0],[-1,0]],[[92756,69581],[-1,0],[-2,1],[-19,17],[-7,7],[-6,9],[-27,41],[-1,10],[1,3],[0,0],[0,1],[1,0],[0,0],[0,0],[1,-1],[1,-1],[0,0],[0,0],[43,-61],[15,-20],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[1,-1],[0,-1],[-1,-1]],[[92581,69965],[0,-10],[0,0],[-1,1],[-1,0],[-7,36],[-2,13],[-2,10],[0,7],[0,5],[0,3],[0,10],[-1,1],[0,1],[0,2],[0,3],[-1,4],[0,1],[-1,2],[0,2],[-1,1],[0,0],[0,0],[0,2],[-1,3],[-1,1],[0,0],[-1,2],[0,0],[-13,21],[-8,10],[-9,10],[-3,3],[-4,5],[0,0],[0,1],[1,0],[1,1],[0,0],[1,-1],[4,-2],[0,0],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[1,0],[0,0],[1,-1],[1,-1],[1,-1],[0,-1],[10,-14],[4,-6],[3,-4],[3,-4],[4,-7],[6,-8],[0,-2],[0,-1],[1,-1],[0,-2],[0,0],[1,-3],[0,-2],[0,-1],[0,-1],[0,0],[12,-85]],[[92068,70708],[0,0],[-1,0],[-1,1],[0,0],[-1,0],[10,43],[5,19],[0,0],[0,0],[1,1],[0,0],[0,0],[2,-1],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,0],[0,-1],[2,-5],[0,-3],[0,-5],[0,0],[0,-1],[0,-4],[0,-1],[-1,0],[-6,-24],[-1,-6],[-1,0],[0,-1],[0,-1],[0,0],[-1,-2],[-8,-5],[0,0],[-1,0]],[[92260,70953],[0,0],[-48,36],[-16,13],[0,0],[-1,1],[-1,3],[0,0],[0,1],[1,0],[0,1],[7,15],[1,1],[1,1],[2,1],[1,1],[0,0],[2,1],[1,0],[1,0],[0,0],[3,-1],[2,-1],[2,-1],[2,-2],[1,-1],[0,0],[1,0],[2,-3],[3,-4],[3,-3],[26,-34],[2,-7],[2,-3],[2,-13],[-1,-1],[0,0],[-1,-1],[0,0]],[[91723,71312],[0,-1],[-1,0],[0,0],[0,1],[7,22],[0,2],[13,40],[13,21],[1,0],[0,0],[1,1],[1,0],[0,0],[0,1],[3,3],[0,0],[2,2],[1,1],[0,0],[1,4],[1,0],[0,1],[0,1],[1,2],[1,3],[0,2],[0,3],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,0],[-1,1],[0,1],[-3,4],[0,1],[-14,19],[-4,5],[-4,4],[0,0],[3,-1],[4,-3],[9,-7],[0,-1],[1,0],[2,-1],[2,-2],[0,-1],[1,0],[1,-1],[0,0],[5,-8],[4,-6],[0,-5],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,0],[-1,-1],[0,-1],[-1,-4],[0,-1],[-1,-1],[0,0],[-1,-3],[-27,-62],[-10,-20],[-1,-2],[0,-1],[-2,-4],[-1,-1],[-3,-3]],[[91822,71746],[0,0],[-2,-1],[-59,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[-1,0],[-1,0],[0,1],[0,1],[1,2],[33,16],[17,9],[5,-2],[1,-1],[8,-5],[0,0],[0,0],[1,-2],[0,0],[0,0],[0,-1],[0,-1],[1,-3],[0,0],[2,-7],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,0]],[[91729,72044],[-3,0],[-1,0],[-1,1],[0,0],[-1,0],[0,0],[-1,0],[0,1],[0,0],[0,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[19,57],[7,18],[0,0],[1,-1],[4,-1],[1,-2],[2,-3],[0,-1],[0,0],[1,-1],[1,-1],[2,-6],[0,0],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,0],[0,-1],[-1,0],[0,-1],[0,-5],[0,0],[-1,-6],[-1,-2],[0,-1],[0,-2],[-1,-4],[-1,-3],[0,-2],[-1,-1],[0,-1],[-3,-4],[-7,-12],[0,-1],[-3,-3],[-2,-1],[-1,0],[-2,-1],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-3,-1]],[[91898,72257],[0,0],[-1,0],[-4,1],[-1,1],[0,0],[-1,0],[-1,0],[-6,2],[-3,1],[0,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,0],[-1,2],[0,0],[0,1],[-1,3],[0,5],[0,3],[0,0],[0,1],[0,1],[1,0],[0,1],[0,0],[1,1],[1,0],[8,-1],[19,-2],[6,-12],[0,-2],[0,-2],[0,0],[-1,-2],[0,-1],[-1,0],[0,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,0],[-2,0],[0,0]],[[91901,72284],[-4,-2],[0,0],[-23,30],[0,1],[0,0],[0,0],[0,0],[0,1],[0,2],[0,1],[0,0],[0,1],[0,1],[1,1],[0,4],[0,2],[0,1],[1,0],[0,1],[0,2],[1,1],[0,2],[1,3],[2,2],[0,0],[0,0],[0,1],[1,0],[1,0],[0,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,0],[1,0],[0,-1],[0,0],[2,-3],[0,0],[1,-1],[2,-4],[0,-1],[0,0],[1,-1],[1,-5],[0,0],[0,-1],[0,-3],[6,-33],[0,0],[-1,0],[0,0]],[[91588,73161],[-5,-1],[0,0],[0,11],[1,2],[2,5],[14,10],[12,9],[9,6],[2,1],[0,0],[5,2],[0,0],[2,0],[1,1],[1,0],[3,1],[2,0],[7,1],[0,1],[18,3],[2,-2],[-3,-8],[-73,-42]],[[91700,73260],[-33,-37],[0,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,0],[4,9],[2,2],[0,0],[1,1],[33,39],[0,0],[1,-1],[1,-3],[0,0],[1,-2],[-6,-9]],[[64783,98417],[-174,-30],[-76,70],[0,40],[86,107],[272,85],[58,-29],[32,-57],[-49,-113],[-149,-73]],[[38508,75810],[-434,-237],[-128,38],[-100,60],[-49,68],[-42,132],[-110,553],[-27,620],[-25,170],[37,128],[58,650],[89,231],[18,68],[10,41],[21,188],[95,7],[25,10],[17,14],[0,23],[-32,43],[-22,20],[-33,28],[-19,14],[-24,14],[-95,6],[-44,53],[-7,42],[69,35],[128,-5],[59,-121],[251,-296],[174,-399],[218,-651],[171,-338],[56,-250],[12,-274],[-62,-333],[-44,-116],[-211,-236]],[[57235,89124],[-23,-14],[-5,44],[22,-1],[-5,-19],[11,-10]],[[19896,60619],[48,-188],[-31,-27],[-31,52],[-14,-27],[-1,-49],[47,-59],[21,-1],[10,26],[116,-218],[2,-104],[215,-348],[123,-647],[24,-586],[23,-149],[66,-254],[81,-183],[-15,-175],[-75,-290],[-51,-127],[-49,-5],[-75,89],[-71,358],[-18,15],[-90,-25],[-55,-89],[84,-510],[52,-68],[0,-156],[-86,-365],[-67,-39],[-99,-390],[36,-153],[3,-211],[-85,-473],[-396,-1583],[-205,-973],[-253,-1004],[-157,-939],[-161,-522],[-113,-464],[-187,-155],[-122,-48],[-54,14],[-94,-18],[-154,-73],[-318,-249],[-228,-5],[-278,229],[-172,64],[-144,120],[-39,66],[-215,558],[-14,464],[36,158],[4,162],[-212,520],[-69,394],[8,229],[126,500],[133,134],[461,1081],[1,34],[-10,99],[-25,99],[28,133],[-6,86],[-129,413],[-128,702],[-53,425],[3,94],[227,544],[66,541],[192,-6],[163,92],[191,49],[106,7],[27,-33],[0,169],[43,64],[125,14],[32,-17],[6,-61],[47,-7],[13,44],[127,-91],[57,-82],[81,38],[-17,34],[-100,113],[-14,71],[17,48],[90,123],[102,81],[-1,-12],[4,-5],[12,-3],[-4,50],[112,124],[50,24],[52,-96],[-85,-239],[23,7],[162,129],[10,20],[-82,250],[131,261],[83,112],[30,-120],[-67,-145],[-2,-98],[25,-8],[26,26],[147,369],[-24,197],[47,140],[125,57],[-20,-113],[13,-54],[7,14],[28,211],[-45,137],[-43,44],[-17,95],[30,153],[43,40],[31,-19],[80,-166],[35,-42],[30,6],[133,220],[92,79],[93,148],[63,374],[-51,228],[48,50],[106,190],[40,83],[-8,119],[55,59]],[[33979,74110],[0,0],[-2,0],[0,1],[0,4],[-1,3],[0,1],[1,10],[0,3],[1,7],[0,1],[1,2],[1,5],[2,6],[0,1],[1,2],[0,1],[1,3],[1,2],[1,1],[1,1],[1,0],[1,0],[0,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[-3,-14],[0,-1],[-1,-2],[0,-1],[0,-1],[-2,-10],[0,-1],[-1,-2],[0,-1],[0,-1],[-3,-9],[-1,-1]],[[33769,70040],[0,-1],[-3,-1],[-2,-1],[-5,5],[-1,2],[-1,0],[-2,4],[1,0],[4,-1],[2,0],[1,0],[5,-1],[1,-1],[0,0],[2,-2],[2,-1],[-2,-1],[-2,-1]],[[33787,70051],[-1,0],[-6,-5],[-2,-2],[-1,3],[0,1],[7,12],[1,-1],[2,-3],[1,-2],[0,-1],[-1,-2]],[[33745,70060],[-1,-1],[0,-2],[-2,1],[-1,0],[-2,3],[0,1],[-1,2],[-1,3],[1,2],[1,1],[1,-2],[1,-1],[1,0],[0,-1],[1,-3],[1,-2],[1,-1]],[[33803,70089],[-1,-1],[0,1],[-1,5],[3,3],[0,1],[1,0],[0,1],[3,3],[0,-1],[1,0],[-1,-3],[0,-3],[-5,-6]],[[33736,70083],[0,-1],[0,-2],[-1,-2],[0,1],[-1,0],[-1,0],[-11,25],[0,2],[-4,9],[0,1],[0,5],[1,2],[2,4],[0,1],[1,2],[2,2],[1,1],[0,-1],[2,-9],[0,-1],[3,-18],[1,-2],[1,-1],[4,-18]],[[33812,70107],[-1,-1],[-1,0],[-1,3],[0,3],[-1,1],[-4,15],[1,3],[5,4],[1,0],[1,0],[1,-2],[1,-1],[0,0],[0,-2],[-1,-2],[-1,-15],[0,-6]],[[33928,70363],[0,-1],[-1,-2],[-1,0],[-1,0],[-2,0],[-8,16],[3,2],[2,2],[1,1],[1,0],[1,-1],[1,-1],[1,-5],[1,-2],[0,-1],[1,-3],[1,-5]],[[33719,70805],[0,-1],[-2,0],[0,0],[-2,2],[-1,2],[0,1],[0,0],[1,1],[4,-3],[0,-1],[0,-1]],[[33732,70808],[3,-4],[1,-1],[0,-2],[-1,-2],[-1,-3],[-2,0],[-2,4],[-1,2],[0,3],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,-1],[0,-1]],[[33714,70815],[0,-1],[-2,-1],[-3,2],[1,1],[0,1],[1,0],[2,0],[0,0],[1,-1],[0,0],[0,-1]],[[33801,70816],[-1,-1],[0,-1],[-1,-3],[-7,-1],[-1,1],[-1,0],[0,2],[1,2],[3,4],[2,0],[3,-1],[1,0],[0,-1],[1,-1]],[[33686,70850],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,2],[0,0],[2,-1],[1,0],[1,-1],[1,-1]],[[33888,70847],[-2,0],[-1,0],[0,1],[-1,1],[0,2],[0,1],[1,1],[0,0],[4,6],[1,2],[1,0],[1,0],[0,0],[1,0],[0,-1],[1,-1],[-6,-12]],[[33907,70865],[-1,0],[-1,-1],[-1,2],[1,1],[1,2],[0,0],[2,1],[0,-1],[0,-1],[0,-2],[-1,-1]],[[33668,70869],[-1,-1],[-1,-1],[-5,4],[-1,1],[0,2],[1,0],[6,-4],[1,-1]],[[33915,70879],[-1,-1],[0,-1],[-1,0],[0,3],[0,2],[2,2],[1,1],[1,0],[0,-2],[0,-1],[-2,-3]],[[33922,70892],[-1,0],[-2,-1],[0,1],[0,3],[0,1],[0,1],[1,1],[1,0],[3,1],[1,-1],[0,-1],[0,0],[-3,-5]],[[33930,70895],[-1,0],[-1,1],[-1,1],[1,2],[2,4],[0,0],[1,-5],[0,-2],[-1,-1]],[[33935,70902],[0,0],[-1,-1],[-1,0],[0,2],[0,2],[2,2],[3,4],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[-4,-6],[-1,-1]],[[33954,70913],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,2],[1,1],[0,1],[2,1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,0],[-1,-2]],[[33959,70923],[-1,-2],[-1,0],[0,3],[0,2],[1,1],[1,1],[0,1],[1,0],[0,-2],[0,-1],[0,-2],[-1,-1]],[[33963,70933],[-1,0],[-1,-1],[0,3],[1,5],[2,2],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-1],[-1,-1]],[[33652,70950],[0,-1],[0,0],[-2,0],[-2,0],[0,1],[-2,3],[0,1],[0,1],[0,1],[5,-3],[0,-1],[1,0],[0,-2]],[[33968,70971],[-1,0],[0,0],[-1,1],[-1,0],[0,4],[0,1],[0,1],[1,0],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1]],[[33645,70993],[-1,-5],[0,1],[-2,3],[0,2],[1,2],[0,1],[1,1],[0,0],[1,-1],[0,-1],[1,-2],[-1,0],[0,-1]],[[33966,70994],[-1,-2],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,0],[0,-1],[0,-2],[1,-2]],[[33962,71020],[0,-1],[-1,0],[-1,3],[-1,0],[-1,1],[0,1],[0,1],[2,0],[1,-2],[1,0],[0,-1],[0,-1],[0,-1]],[[33640,71023],[0,-1],[-2,1],[-1,0],[-1,6],[0,2],[-1,1],[1,1],[0,1],[2,0],[1,0],[1,-2],[1,-4],[0,-2],[0,-1],[-1,-2]],[[33959,71034],[0,0],[-1,0],[0,0],[-2,1],[0,1],[-1,1],[-1,5],[-1,2],[1,0],[4,-4],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1]],[[33640,71058],[-1,0],[-1,-1],[-2,1],[3,7],[2,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1]],[[33901,71144],[-1,0],[0,0],[-4,5],[0,2],[0,2],[2,1],[0,-1],[3,-3],[0,-2],[0,-2],[0,-1],[0,-1]],[[33760,71187],[-2,-1],[-1,-1],[-1,0],[0,1],[0,2],[1,0],[1,2],[2,0],[0,0],[0,-3]],[[33898,71192],[-1,-2],[-1,1],[-1,0],[0,1],[0,2],[-1,5],[1,1],[0,1],[2,0],[0,-1],[0,-1],[1,-3],[0,-4]],[[33895,71206],[0,0],[-1,-1],[-1,1],[1,3],[0,2],[0,1],[1,1],[1,1],[0,0],[1,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1]],[[33892,71225],[0,0],[-1,0],[-2,1],[1,2],[1,2],[2,4],[0,0],[1,0],[0,-1],[1,-1],[-1,-2],[-2,-5]],[[33895,71243],[-1,-1],[-1,-1],[-1,0],[0,0],[0,2],[-1,4],[0,3],[1,0],[0,1],[1,-1],[1,-2],[1,-4],[0,0],[0,-1]],[[33879,71318],[-1,-1],[-1,1],[-1,3],[0,2],[0,2],[1,1],[1,0],[0,-1],[1,-1],[0,-3],[0,-2],[0,-1]],[[33891,72111],[-3,-5],[-2,-1],[-6,0],[0,2],[0,2],[1,1],[1,0],[8,3],[1,-2]],[[33869,72116],[0,-1],[1,-2],[-2,-1],[-1,-1],[-3,1],[-1,1],[-1,1],[0,0],[0,2],[7,0]],[[33901,72120],[-1,-1],[-1,0],[-2,-3],[-2,-1],[0,0],[-1,0],[-2,1],[-1,0],[0,1],[5,6],[1,0],[2,0],[0,0],[1,-1],[1,0],[0,-1],[0,-1]],[[33845,72121],[-2,-1],[-1,0],[-1,2],[0,2],[1,0],[3,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-2]],[[33908,72134],[-1,0],[-1,0],[-1,2],[0,1],[-1,1],[1,1],[0,0],[1,-1],[1,-1],[1,-1],[0,-2]],[[33899,72135],[0,-1],[-2,0],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[2,-6]],[[33901,72141],[-1,-2],[-1,1],[0,1],[1,2],[0,0],[1,0],[0,-1],[0,-1]],[[33934,72137],[0,-1],[-1,0],[0,-1],[-2,1],[-2,0],[0,1],[0,3],[5,2],[2,0],[-2,-5]],[[33835,72138],[-1,0],[-1,0],[-6,5],[0,2],[1,1],[0,1],[1,-1],[3,0],[1,0],[1,-1],[1,-3],[0,-1],[1,-1],[-1,-1],[0,-1]],[[33962,72146],[-1,0],[-5,-7],[-1,1],[-2,1],[0,1],[15,21],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-3],[-2,-4],[-1,-1],[-1,-1],[0,-1]],[[33976,72171],[-2,-6],[-2,1],[-2,0],[1,2],[3,10],[0,3],[1,-1],[1,-1],[0,-8]],[[33818,72194],[-2,0],[-1,0],[-1,1],[-1,1],[0,2],[1,0],[3,2],[1,2],[0,-1],[2,0],[0,-1],[1,-2],[-1,-1],[-2,-3]],[[33980,72190],[-2,1],[6,47],[0,2],[1,1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-5],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[-2,-5],[0,-1],[-1,-2],[-7,-23],[-1,-3]],[[33832,72250],[-2,-1],[-1,1],[0,3],[0,2],[1,0],[0,1],[1,0],[0,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[33987,72260],[-1,-1],[-2,5],[0,1],[-1,2],[1,2],[1,-1],[1,-2],[1,-1],[0,-4],[0,-1]],[[33862,72275],[-1,-1],[-1,0],[-2,1],[0,0],[-1,1],[0,2],[0,1],[1,2],[1,0],[1,1],[1,0],[0,0],[1,-1],[0,-6]],[[33983,72296],[0,-1],[0,-3],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,0],[2,1],[0,1],[1,-2],[0,-1],[0,-1]],[[33982,72328],[0,-1],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,3],[1,0],[1,-2],[0,-1],[0,-3],[-1,-2]],[[33985,72344],[-1,-1],[-1,0],[0,2],[1,4],[0,1],[1,0],[0,0],[1,-1],[0,0],[0,-2],[0,-2],[-1,-1]],[[33990,72356],[-1,-1],[-1,-1],[-1,1],[0,2],[2,13],[1,2],[1,-1],[1,0],[0,-2],[-1,-2],[0,-3],[0,-7],[-1,-1]],[[33998,72373],[-1,-1],[-1,0],[0,0],[-3,0],[0,1],[0,2],[1,4],[1,6],[13,2],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-9,-6]],[[33692,72430],[-2,-1],[-2,1],[-1,1],[-1,0],[0,1],[0,2],[1,0],[1,0],[3,0],[0,-1],[1,-1],[0,-1],[0,-1]],[[33716,72430],[-2,0],[0,0],[-1,1],[-1,1],[0,2],[1,2],[2,-2],[0,-1],[1,-1],[0,-1],[0,-1]],[[33730,72440],[-1,0],[-2,-1],[0,1],[-1,1],[0,2],[1,3],[0,2],[1,0],[0,0],[2,-2],[0,-2],[0,-1],[0,-2],[0,-1]],[[33658,72451],[0,-2],[-1,0],[-2,0],[0,1],[-2,3],[2,1],[0,1],[1,-1],[1,-2],[1,-1]],[[33743,72449],[-1,-1],[-1,0],[-2,0],[-1,2],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[5,-3],[0,-1],[0,-1],[0,-2]],[[33759,72461],[-1,0],[0,0],[-2,1],[0,3],[0,1],[0,1],[1,0],[1,-1],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[33640,72518],[0,-4],[0,-1],[-2,2],[-1,2],[-1,2],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0]],[[33645,72532],[0,-1],[0,-1],[-4,0],[0,1],[0,2],[2,3],[1,0],[1,-4]],[[33632,72555],[0,-1],[-2,1],[0,1],[-1,3],[0,3],[-1,2],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,-1],[1,-6],[0,-1],[0,-2],[0,-1]],[[33871,72573],[-1,-1],[-1,-1],[-1,1],[-1,1],[1,5],[1,2],[1,0],[0,0],[2,-1],[0,-1],[0,-1],[0,-2],[-1,-2]],[[33878,72589],[-1,-1],[0,1],[0,2],[1,2],[2,5],[1,1],[0,0],[0,-2],[0,-2],[-1,-2],[-1,-3],[-1,-1]],[[33625,72594],[-1,-2],[0,1],[-3,7],[0,1],[1,1],[1,0],[0,0],[1,-1],[0,-2],[1,-5]],[[33883,72612],[-1,-1],[-1,1],[-4,34],[6,-8],[2,-11],[-1,-12],[-1,-2],[0,-1]],[[33855,72708],[-2,-1],[0,0],[-1,1],[-1,3],[-1,3],[0,2],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-3],[1,-3],[0,-2]],[[33618,72855],[-1,0],[-1,-1],[0,1],[0,1],[-1,3],[0,1],[0,2],[2,0],[1,0],[0,-5],[0,-1],[0,-1]],[[33599,72866],[0,0],[-1,-1],[-1,0],[-2,1],[0,1],[-1,1],[0,2],[-1,3],[0,1],[1,1],[2,-1],[1,-1],[0,-2],[2,-3],[0,-2]],[[33590,72877],[0,-1],[-2,1],[0,2],[1,2],[0,1],[0,0],[1,0],[0,0],[2,-2],[0,-1],[0,-1],[-2,-1]],[[33687,72910],[-2,0],[0,2],[-1,1],[0,1],[6,7],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-3,-5]],[[33905,72934],[-1,0],[0,4],[1,1],[0,1],[0,1],[0,0],[1,0],[0,-2],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1]],[[33885,72937],[0,-1],[-1,0],[-1,0],[-8,4],[0,2],[-1,1],[0,1],[0,1],[1,0],[6,-3],[1,-1],[1,0],[1,-2],[1,-2]],[[33926,72978],[-2,-1],[-1,0],[-1,1],[0,2],[1,1],[1,0],[1,1],[1,0],[1,-2],[-1,-2]],[[33678,73000],[-1,-1],[0,-2],[-2,1],[0,1],[0,2],[0,1],[0,1],[0,0],[1,1],[1,-1],[1,-2],[0,-1]],[[33593,73017],[0,-2],[-6,-1],[0,1],[1,1],[1,3],[1,1],[2,1],[0,1],[1,0],[0,-5]],[[33992,73032],[-1,-1],[-1,-1],[-1,1],[0,1],[1,1],[1,2],[1,0],[0,0],[1,0],[0,-1],[0,-1],[-1,-1]],[[33585,73036],[0,0],[0,-1],[-2,0],[-1,1],[-1,1],[1,2],[0,1],[1,0],[1,0],[0,0],[0,-1],[1,-1],[0,-2]],[[33994,73042],[-1,-2],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[1,2],[0,0],[1,1],[1,-1],[0,0],[0,-1],[1,-1]],[[33995,73050],[0,-1],[-1,-1],[0,0],[-3,0],[0,2],[1,1],[1,1],[1,0],[0,-1],[1,-1]],[[33996,73055],[0,0],[-1,-1],[-2,4],[0,1],[1,2],[0,2],[1,1],[0,1],[2,-1],[0,-1],[-1,-8]],[[33612,73064],[-2,-1],[-1,0],[-1,2],[1,2],[1,1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[0,0]],[[33618,73069],[-1,0],[-2,0],[-1,2],[0,1],[0,1],[2,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2]],[[33679,73082],[0,-1],[-1,-3],[-2,1],[-1,0],[0,1],[-2,3],[1,0],[1,1],[1,1],[1,0],[1,1],[1,-4]],[[34001,73081],[-1,-1],[0,-1],[-2,0],[-1,2],[-1,2],[-1,2],[2,1],[1,0],[1,-1],[1,0],[0,-1],[1,-3]],[[34010,73086],[-1,0],[-1,-2],[-1,2],[1,6],[0,3],[0,2],[0,1],[1,0],[2,0],[0,0],[0,-1],[0,-2],[-1,-9]],[[33690,73110],[-1,0],[-1,-1],[-2,2],[0,0],[0,2],[0,2],[1,0],[1,0],[0,0],[1,-1],[0,-1],[0,-1],[1,-2]],[[33616,73187],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,0],[0,1],[0,2],[0,2],[0,1],[1,3],[0,0],[2,0],[0,-3],[0,-2]],[[33660,73209],[-1,0],[-2,-1],[0,0],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[2,1],[2,0],[1,0],[0,-1],[1,-1],[-1,0],[0,-1]],[[33666,73333],[-1,0],[-1,1],[-1,2],[0,1],[1,1],[1,1],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[33979,73512],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,1],[2,0],[0,-1],[0,0],[0,-1],[-3,-3]],[[33575,73522],[-1,-1],[-2,1],[-1,0],[0,1],[0,4],[1,0],[0,0],[3,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-2],[-1,-1]],[[33558,73531],[-1,-2],[0,-1],[-7,-1],[1,3],[0,1],[2,2],[2,1],[1,-2],[2,-1]],[[33547,73533],[-2,0],[-2,-1],[0,3],[1,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1]],[[33623,73552],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,3],[7,12],[1,0],[1,1],[1,-2],[0,0],[0,-3],[0,-2],[-1,-1],[-5,-6],[-1,-2],[-1,0],[-1,-2]],[[33541,73660],[-2,0],[0,2],[-1,6],[1,1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1]],[[33904,73697],[-2,-1],[-1,0],[0,1],[-1,3],[3,1],[0,0],[2,-1],[2,0],[-1,-1],[0,-1],[0,-1],[-2,0]],[[33499,73726],[-4,-1],[-1,2],[0,0],[-1,6],[0,1],[1,-1],[3,-1],[1,0],[0,-1],[1,-2],[0,-2],[0,-1]],[[33925,73834],[0,-1],[0,-2],[-1,1],[0,0],[-1,1],[0,5],[1,1],[0,0],[1,0],[0,0],[1,-1],[0,-1],[0,-2],[-1,-1]],[[33927,73842],[0,0],[-1,0],[-1,2],[0,2],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,-2]],[[33930,73850],[-1,-1],[-2,3],[0,2],[1,0],[1,0],[0,0],[1,-1],[0,-1],[0,-1],[0,-1]],[[33936,73873],[0,-3],[-1,1],[0,1],[-1,8],[1,0],[1,0],[1,-2],[-1,-2],[0,-2],[0,-1]],[[33947,73908],[-2,0],[-2,-1],[0,1],[-1,2],[0,0],[2,2],[2,2],[1,1],[1,0],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-3]],[[33504,73958],[-2,0],[-1,-1],[-1,0],[0,1],[-3,0],[0,2],[0,1],[1,0],[1,0],[5,1],[1,0],[-1,-3],[0,-1]],[[33639,73991],[-1,0],[0,0],[-2,0],[0,1],[2,6],[1,2],[1,-7],[-1,-1],[0,-1]],[[33508,74008],[-1,0],[0,-2],[-2,1],[-3,0],[-1,0],[0,1],[0,1],[1,1],[0,0],[1,0],[4,0],[1,0],[0,-1],[0,-1]],[[33969,74043],[-1,-2],[-1,0],[-2,0],[0,1],[0,3],[0,1],[-1,1],[1,2],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1]],[[33634,74049],[-1,0],[-1,2],[1,4],[0,1],[1,0],[1,0],[0,-1],[1,-2],[-1,-2],[-1,-2]],[[33964,74104],[-3,2],[1,3],[0,2],[1,1],[3,1],[1,1],[5,-3],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,-1],[-5,0]],[[33933,74111],[0,0],[-2,0],[-7,6],[0,1],[0,1],[4,0],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[0,-2],[0,-2]],[[33591,74146],[0,-2],[1,-1],[-1,1],[-3,0],[-1,2],[-1,1],[0,1],[0,2],[1,0],[1,-2],[3,-2]],[[33657,74179],[-3,-1],[-3,2],[-1,0],[0,1],[-1,0],[-1,3],[1,-1],[3,0],[3,-1],[1,0],[0,-1],[1,-1],[0,-1]],[[33876,74219],[-1,-1],[-2,0],[-2,0],[0,1],[1,0],[3,2],[1,-1],[0,0],[0,-1]],[[34051,74272],[-1,0],[-3,0],[0,2],[-1,1],[1,3],[0,1],[1,0],[0,1],[1,-1],[0,0],[1,-1],[1,-4],[0,-1],[0,-1]],[[33646,74316],[-2,0],[0,0],[-1,2],[0,1],[0,1],[0,4],[1,1],[0,1],[1,0],[1,1],[1,-6],[0,-1],[0,-1],[0,-1],[-1,-2]],[[34083,74329],[0,2],[1,1],[1,2],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-3,-1]],[[33908,74448],[-2,-1],[0,0],[-2,0],[-1,3],[1,1],[0,1],[2,1],[0,-1],[1,-1],[1,-2],[0,-1]],[[33994,74483],[-3,-1],[-2,0],[0,1],[0,1],[2,1],[1,0],[2,0],[0,0],[1,-1],[-1,-1]],[[33674,74696],[0,-1],[0,-1],[-7,-9],[-1,0],[0,7],[0,4],[4,3],[0,0],[2,-1],[2,0],[0,-2]],[[33655,74698],[-1,-1],[-3,0],[-1,1],[0,0],[-4,3],[1,0],[0,1],[1,0],[1,0],[2,0],[1,-1],[1,-1],[2,-2]],[[33637,74700],[-2,-1],[0,-1],[-2,1],[-6,1],[-1,1],[0,0],[2,1],[1,1],[1,0],[1,0],[4,-1],[2,0],[0,-2]],[[33942,74756],[-1,0],[-3,-1],[-2,0],[-1,0],[0,0],[0,3],[0,1],[3,1],[2,1],[3,2],[0,-1],[0,-1],[-1,-4],[0,-1]],[[33616,74818],[-1,-1],[0,-1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[1,1],[1,0],[0,-1],[1,-2],[0,0],[1,-1],[0,-1],[1,-1]],[[33626,74818],[-1,0],[0,-1],[-1,1],[-2,1],[0,2],[-1,1],[1,2],[0,1],[1,1],[1,0],[0,-1],[1,-2],[0,-1],[1,-3],[0,-1]],[[33631,74824],[-2,-1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[33695,74889],[-3,0],[-2,1],[0,1],[0,2],[1,0],[0,0],[4,-2],[0,-1],[0,-1]],[[33705,74903],[-1,-1],[0,-1],[-2,0],[0,1],[-4,1],[-1,2],[0,1],[0,2],[0,0],[1,1],[1,0],[1,-1],[5,-5]],[[33724,74926],[-3,0],[-1,0],[0,1],[-1,1],[0,0],[1,1],[1,0],[4,-2],[-1,0],[0,-1]],[[33735,74938],[-1,0],[0,-1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[1,1],[1,0],[3,0],[1,0],[1,-1],[0,0],[0,-2]],[[33730,74987],[-2,-1],[-1,1],[0,2],[0,1],[1,2],[1,0],[1,-1],[0,-2],[0,-1],[0,-1]],[[33752,75018],[-2,-1],[0,2],[1,3],[0,1],[1,0],[1,-2],[0,-1],[-1,-1],[0,-1]],[[34013,75031],[-1,-5],[-1,-1],[-2,1],[-1,1],[-2,1],[1,2],[2,2],[0,1],[5,8],[0,-3],[-1,-5],[0,-2]],[[33684,75039],[-2,-1],[-2,1],[-1,0],[0,1],[1,1],[0,0],[1,2],[2,-2],[1,0],[0,-1],[0,-1]],[[33734,75040],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,-3],[-2,0]],[[34040,75077],[0,-3],[-1,-1],[0,0],[0,1],[-1,1],[0,5],[0,2],[0,2],[1,0],[1,1],[0,-2],[0,-4],[0,-2]],[[33862,75098],[-1,0],[-4,0],[-1,0],[-3,0],[-2,0],[0,2],[1,1],[0,1],[1,0],[6,1],[1,0],[1,-1],[0,-2],[1,-2]],[[33906,75097],[-1,-1],[-1,0],[0,1],[-5,5],[-1,1],[0,1],[1,0],[2,-1],[2,-3],[2,-1],[1,-2]],[[34042,75102],[0,-4],[0,-2],[-1,0],[-2,8],[0,1],[0,1],[1,0],[1,0],[1,-4]],[[34033,75146],[6,-6],[0,-19],[-2,-4],[-1,-1],[-1,0],[-3,27],[1,3]],[[33870,75154],[-1,-5],[0,-2],[-1,1],[-2,7],[0,1],[1,0],[1,0],[0,0],[1,0],[0,-1],[1,-1]],[[33873,75164],[0,-2],[-1,-2],[-1,1],[0,1],[0,2],[0,4],[0,1],[0,1],[2,0],[0,-2],[0,-1],[0,-1],[0,-2]],[[33671,75182],[6,0],[1,-1],[1,-1],[0,0],[-2,-1],[0,-1],[-4,0],[-1,-1],[0,0],[-1,5]],[[33876,75178],[-1,-4],[0,-1],[-1,1],[-1,0],[0,1],[0,4],[0,1],[1,2],[1,1],[1,0],[0,-2],[0,-2],[0,-1]],[[33988,75184],[0,-1],[0,-2],[-1,1],[-2,0],[-3,3],[-1,2],[0,0],[2,1],[3,-2],[2,-1],[0,-1]],[[33675,75189],[-1,0],[-1,1],[0,1],[2,3],[1,0],[3,0],[0,-1],[0,-1],[-4,-3]],[[33680,75323],[-2,-2],[0,3],[-1,1],[1,3],[1,1],[0,1],[2,2],[0,-4],[0,-1],[0,-1],[0,-1],[-1,-2]],[[33874,75374],[-2,0],[0,0],[-1,0],[-1,2],[-1,0],[7,4],[0,-3],[0,-1],[-1,-1],[-1,-1]],[[33896,75394],[-4,-9],[0,-1],[0,1],[0,3],[0,4],[2,13],[1,1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-5]],[[33897,75416],[0,-4],[-1,-2],[0,2],[-2,7],[0,1],[2,0],[0,0],[1,-1],[0,-1],[0,-2]],[[33867,75416],[-1,0],[0,0],[-1,1],[-1,2],[-2,3],[0,1],[1,1],[1,0],[1,-1],[0,-1],[2,-2],[0,-2],[0,-2]],[[33664,75433],[-1,2],[-3,9],[1,1],[0,1],[1,0],[1,-1],[1,-1],[0,-3],[1,-1],[-1,-7]],[[33893,75444],[-1,0],[-2,0],[-1,2],[0,6],[0,2],[1,-1],[5,-1],[1,0],[1,-1],[0,-2],[-1,-2],[-2,-2],[-1,-1]],[[33658,75471],[-1,0],[-1,4],[-1,1],[0,1],[0,2],[-1,2],[1,0],[2,0],[0,-1],[1,-2],[0,-1],[0,-4],[0,-2]],[[33749,75476],[-1,1],[-1,1],[1,5],[1,1],[1,0],[3,0],[0,0],[1,0],[2,-1],[1,-1],[0,-1],[-8,-5]],[[33926,75493],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-2,1],[11,20],[1,0],[2,0],[-1,-1],[0,-10],[-5,-6],[-1,0]],[[33651,75509],[0,-2],[0,-1],[0,1],[-2,1],[-2,10],[0,2],[1,1],[1,0],[0,-1],[1,0],[0,-2],[1,-9]],[[33922,75555],[-2,0],[-2,-1],[-1,3],[-1,5],[0,1],[2,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,-3]],[[33899,75602],[-1,0],[-7,7],[-1,1],[0,2],[1,0],[1,1],[1,-1],[0,0],[2,0],[4,-8],[0,-1],[0,-1]],[[33784,75636],[1,-2],[1,-1],[0,-1],[-1,-1],[-6,-1],[0,0],[-2,1],[1,2],[1,4],[1,0],[2,-1],[2,0]],[[33703,75656],[-1,-1],[-6,5],[0,1],[0,1],[-1,1],[1,0],[2,-1],[5,-4],[1,0],[0,-2],[-1,0]],[[33821,75698],[-2,-4],[-2,2],[0,2],[0,3],[0,1],[1,2],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1]],[[33775,75710],[-1,0],[-1,-1],[-1,2],[0,1],[-2,5],[2,1],[0,0],[1,0],[2,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1]],[[33823,75770],[2,-4],[1,0],[0,-1],[1,-2],[-1,-2],[0,-2],[-1,-2],[0,0],[-1,-2],[-1,3],[-1,1],[0,1],[0,3],[0,5],[1,1],[0,1]],[[33829,75796],[-2,-1],[-3,-1],[-1,3],[1,7],[1,0],[1,0],[2,-4],[0,-3],[1,-1]],[[33813,75828],[-4,-2],[0,1],[-2,1],[1,2],[1,2],[1,1],[0,0],[2,-1],[1,0],[0,-2],[0,-1],[0,-1]],[[33666,75869],[-1,0],[-3,-2],[-1,-2],[0,4],[1,2],[0,1],[1,2],[2,-2],[1,-3]],[[33798,75868],[0,-2],[-1,-1],[0,1],[-2,1],[-2,13],[2,1],[0,0],[1,0],[2,-2],[0,-3],[0,-8]],[[33791,75901],[-1,-2],[0,-2],[-1,0],[-2,-1],[-3,4],[1,4],[3,3],[0,-1],[2,-1],[0,-1],[1,-2],[0,-1]],[[33745,75901],[-1,-1],[-2,-2],[0,2],[0,3],[-1,1],[1,2],[2,1],[0,1],[2,0],[1,0],[-1,-3],[-1,-3],[0,-1]],[[33645,75908],[-1,0],[-4,-1],[4,10],[0,0],[2,1],[1,-3],[0,-1],[-1,-1],[0,-1],[-1,-4]],[[33781,75926],[-2,-4],[0,-2],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,1],[-1,4],[3,5],[1,-1],[1,-1],[2,-2]],[[33491,75971],[-1,-1],[-1,-1],[-2,1],[1,1],[0,1],[2,6],[0,1],[1,0],[1,0],[0,-2],[1,-1],[-1,-3],[-1,-2]],[[33621,75986],[-2,-1],[-2,-1],[-1,1],[-2,0],[5,5],[1,0],[1,0],[2,-1],[0,0],[0,-1],[-2,-2]],[[33611,75992],[-1,0],[-1,0],[0,2],[-1,2],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-2],[-1,-2],[-2,0],[-1,-1]],[[33691,76066],[0,-1],[-1,-1],[-1,0],[-1,0],[-3,6],[1,2],[0,0],[1,1],[4,-3],[0,-1],[0,-3]],[[33648,76088],[-2,0],[-1,0],[-2,1],[4,5],[0,0],[2,0],[0,-1],[0,-2],[-1,-2],[0,-1]],[[33637,76098],[-2,-1],[-2,-1],[0,-1],[-1,0],[-2,1],[1,2],[1,1],[1,0],[2,2],[0,-1],[2,-2]],[[33690,76108],[-1,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[0,6],[1,0],[1,2],[1,0],[0,-1],[1,-1],[-1,-8]],[[33667,76132],[-2,0],[-1,0],[-1,3],[0,2],[0,1],[-1,2],[0,1],[2,1],[1,0],[0,0],[1,-1],[0,-1],[1,-6],[0,-2]],[[33700,76149],[-1,-4],[-1,2],[-1,0],[-4,12],[0,3],[0,1],[0,4],[1,0],[2,0],[1,-2],[2,-2],[0,-1],[0,-1],[1,-3],[0,-2],[0,-3],[0,-2],[0,-2]],[[33611,76167],[-2,0],[-1,0],[0,3],[0,1],[1,3],[1,0],[1,0],[2,0],[-2,-7]],[[33674,76179],[-2,-1],[0,0],[0,1],[-1,2],[1,4],[0,1],[1,0],[1,1],[1,1],[0,-2],[1,-2],[-1,-3],[-1,-1],[0,-1]],[[33611,76191],[-6,-3],[-2,-2],[-1,1],[-2,2],[-1,2],[0,2],[0,1],[0,0],[1,0],[6,0],[2,0],[1,0],[1,-1],[1,-2]],[[33709,76184],[-2,0],[0,1],[-1,4],[0,2],[0,3],[1,2],[0,1],[1,0],[2,0],[0,-1],[1,-2],[-2,-10]],[[33629,76227],[-1,0],[-1,-1],[-1,2],[-1,4],[1,3],[0,1],[1,0],[1,0],[0,-1],[0,-3],[1,-4],[0,-1]],[[33731,76223],[-3,-5],[0,-1],[-2,0],[-1,1],[4,22],[1,-1],[1,-3],[1,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-1]],[[33621,76250],[-1,-1],[-1,0],[0,1],[1,6],[0,3],[0,1],[1,1],[1,-1],[1,-1],[1,-1],[1,0],[-1,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1]],[[33693,76257],[-2,-4],[-3,11],[0,1],[1,1],[1,-1],[2,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[33753,76249],[-1,-1],[-2,-2],[0,1],[-1,0],[-3,2],[16,40],[1,1],[2,2],[1,-2],[1,-3],[0,-2],[-1,-5],[-7,-20],[-6,-11]],[[33735,76289],[-1,-1],[-1,0],[-1,1],[-1,2],[1,3],[0,1],[0,2],[1,0],[1,1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1]],[[33779,76329],[7,1],[1,-1],[1,-2],[-1,-3],[-1,-3],[-2,-1],[-1,0],[-1,0],[-4,0],[0,1],[-1,4],[0,5],[1,-1],[1,0]],[[33692,76342],[-1,0],[-1,3],[-1,3],[0,2],[-1,4],[1,1],[1,1],[2,-14]],[[33651,76358],[-1,-3],[-1,0],[0,4],[0,1],[0,1],[1,2],[0,-1],[1,-3],[0,-1]],[[33728,76377],[-1,-2],[-1,0],[-1,1],[-1,2],[-1,3],[-2,3],[0,1],[0,3],[0,1],[1,3],[0,-1],[2,-1],[4,-13]],[[33750,76391],[-3,-1],[-1,0],[5,8],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1]],[[33795,76385],[0,-2],[-5,-9],[-1,-2],[-1,3],[-2,5],[3,29],[1,0],[1,2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-7],[0,-2],[1,-1],[-1,-2],[-1,-9]],[[33620,76434],[-2,-1],[-2,1],[-1,0],[0,5],[0,1],[2,2],[1,-1],[0,-1],[2,-2],[0,-2],[0,-1],[0,-1]],[[33609,76440],[0,-1],[0,-2],[0,0],[-2,0],[-1,2],[0,1],[-1,3],[1,2],[0,2],[2,-4],[1,-2],[0,-1]],[[33787,76429],[-2,0],[-1,0],[-1,1],[-1,1],[1,11],[1,12],[2,-1],[2,-1],[0,-1],[2,-7],[-3,-15]],[[33604,76457],[-1,0],[-1,0],[0,1],[-2,3],[0,3],[-1,2],[1,0],[1,0],[2,-4],[0,-1],[1,-3],[0,-1]],[[33663,76483],[-2,-1],[-2,1],[-3,13],[1,0],[1,1],[1,-2],[1,-2],[0,-1],[3,-9]],[[33554,76537],[-1,0],[-1,1],[2,3],[1,1],[0,1],[2,0],[1,1],[0,-1],[0,-2],[-3,-3],[-1,-1]],[[33623,76540],[-2,-1],[-1,2],[-3,12],[2,1],[0,-1],[1,0],[4,-7],[0,-1],[0,-1],[-1,-2],[0,-2]],[[90680,76525],[-37,19],[-38,20],[0,1],[-1,1],[-4,4],[-1,1],[-1,1],[-1,0],[0,0],[-11,16],[-2,2],[-1,3],[0,3],[0,1],[1,3],[0,2],[4,8],[0,0],[1,0],[0,0],[0,0],[37,-31],[64,-57],[0,0],[-4,1],[-6,2]],[[89248,74448],[0,0],[-2,-1],[-4,-2],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[0,0],[-1,1],[0,0],[-2,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,0],[31,4],[9,1],[-4,-4],[-2,-2],[0,-1],[-1,-2],[-1,0],[-5,-6]],[[89213,74473],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[-1,1],[0,0],[0,2],[0,1],[0,1],[0,0],[0,0],[1,1],[0,0],[0,0],[1,-1],[0,0],[1,-1],[0,-1],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[1,-2]],[[89270,74500],[0,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,0],[0,-4],[0,-3],[-1,-1],[0,-2],[-1,0],[0,0],[-1,0],[0,0],[0,0],[0,2],[0,1],[-1,2],[0,7],[0,1],[1,2],[0,1],[0,1],[1,1],[1,0],[0,0]],[[89205,74489],[0,-1],[-1,0],[-1,1],[-1,1],[0,0],[-2,3],[-2,4],[0,1],[0,1],[0,0],[1,1],[1,1],[3,3],[1,-3],[0,-2],[1,-1],[0,-1],[0,-1],[1,-5],[0,-1],[-1,-1],[0,0]],[[89211,74520],[-1,-2],[0,0],[0,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,0],[1,1],[0,0],[0,1],[1,0],[0,0],[2,1],[0,0],[0,-1],[0,-4],[-1,-1],[-1,-1]],[[88898,75329],[0,-2],[0,-3],[-1,-5],[-1,-6],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[-1,-1],[0,0],[0,-2],[-1,-2],[-1,-4],[0,-1],[0,0],[-1,-1],[-1,-3],[-1,-2],[-1,-1],[0,0],[-2,-1],[-1,-1],[-3,0],[-2,2],[0,1],[0,0],[-1,2],[0,0],[-1,1],[0,1],[-1,7],[0,0],[-1,1],[0,1],[0,0],[0,1],[0,1],[19,29],[0,0],[0,0],[0,0],[1,-1],[0,0],[0,-1],[0,-2],[1,-4]],[[88878,75329],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,1],[-1,1],[0,0],[-1,1],[-1,1],[0,0],[0,1],[-1,1],[-1,0],[0,0],[0,1],[0,1],[1,2],[0,0],[0,-1],[1,-1],[3,-2],[1,0],[0,0],[1,0],[1,-1],[0,-1],[0,0],[1,-1],[0,-1],[0,0],[-2,-2],[0,0]],[[89468,75331],[-2,0],[0,2],[0,1],[1,2],[0,1],[1,2],[0,0],[1,2],[1,2],[0,1],[0,0],[2,1],[0,0],[1,0],[2,0],[0,-1],[0,0],[0,-1],[1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,0],[0,0]],[[89726,75489],[-1,-2],[0,0],[0,1],[0,0],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,0],[0,1],[-1,3],[0,0],[0,0],[0,-1],[1,0],[2,-6],[0,0],[1,-1],[0,-1]],[[89715,75499],[-1,0],[-1,2],[0,1],[0,0],[-1,2],[-1,3],[0,1],[-1,1],[0,1],[1,1],[1,0],[0,0],[1,-1],[0,0],[1,-2],[1,-2],[2,-4],[0,-1],[0,-1],[-1,0],[0,-1],[0,0],[-1,0]],[[91237,75541],[0,-1],[1,-2],[0,0],[0,-1],[0,0],[-1,0],[-1,1],[0,0],[0,1],[-1,0],[-1,2],[-1,1],[0,0],[-1,4],[-1,1],[0,0],[0,3],[-1,1],[2,-1],[0,0],[1,0],[0,-1],[1,0],[0,0],[0,0],[1,-1],[1,-1],[0,-2],[1,-2],[0,-2]],[[89761,75462],[0,0],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,0],[-2,1],[-1,0],[0,0],[0,0],[0,1],[-3,3],[-2,1],[-7,9],[0,1],[-1,2],[0,0],[0,0],[9,15],[23,37],[0,0],[-8,-50],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,0]],[[89782,75568],[0,0],[0,0],[0,0],[-3,2],[0,0],[0,1],[-1,2],[0,1],[-1,0],[3,-1],[0,-1],[1,0],[0,-1],[0,0],[1,-1],[0,-2],[0,0]],[[91224,75565],[-1,0],[-1,0],[0,0],[-2,6],[-1,3],[0,0],[1,0],[2,-1],[2,-6],[0,-1],[0,-1]],[[89663,75590],[0,0],[0,-1],[0,0],[0,0],[0,0],[-1,0],[0,0],[-1,1],[-6,3],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[0,1],[0,1],[0,2],[0,1],[0,0],[2,0],[0,0],[1,0],[0,0],[0,0],[0,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-3]],[[91213,75609],[0,0],[-1,0],[0,0],[-1,0],[0,1],[-1,0],[-1,1],[0,0],[-1,1],[0,2],[0,0],[-1,2],[0,0],[1,0],[1,0],[0,0],[1,-1],[0,0],[1,-1],[1,0],[1,-5]],[[89782,75579],[-1,0],[-1,-1],[0,0],[0,2],[0,1],[0,0],[17,20],[4,5],[0,0],[0,0],[1,1],[7,5],[8,4],[2,2],[0,0],[-4,-7],[-29,-29],[-2,-1],[-1,-2],[-1,0],[0,0]],[[89824,75635],[0,-2],[-1,0],[0,1],[-1,0],[-3,11],[-2,6],[1,0],[0,0],[1,0],[0,0],[1,0],[0,0],[0,0],[1,-1],[1,0],[0,0],[1,-2],[0,0],[1,-2],[0,0],[0,-1],[1,-2],[0,-1],[0,0],[0,-1],[0,0],[0,-2],[0,-1],[0,0],[-1,-3]],[[91121,75668],[0,0],[4,2],[6,2],[5,1],[0,0],[0,0],[2,0],[2,-1],[12,-4],[0,-1],[1,0],[1,-1],[0,0],[1,-1],[1,0],[1,-1],[16,-13],[2,-2],[0,0],[-1,-1],[0,0],[-1,0],[-2,0],[0,-1],[-3,2],[-5,3],[-14,6],[-21,8],[-7,2]],[[89796,75679],[0,-1],[4,-7],[1,-1],[0,-1],[-1,1],[0,0],[-2,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,3],[0,0],[0,3],[-1,1],[0,1],[0,0],[0,1],[0,0],[0,-1],[1,0],[0,0],[1,-1],[0,0],[1,0],[1,-2]],[[91043,75678],[-1,-1],[0,0],[0,-2],[-1,-1],[0,0],[0,-1],[0,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,1],[-3,2],[0,0],[0,1],[-3,2],[-1,1],[-2,2],[-10,11],[0,0],[-1,1],[-1,2],[0,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[1,0],[36,-16]],[[91083,75695],[1,0],[2,-3],[0,-1],[-16,0],[-1,1],[0,0],[0,0],[-1,0],[0,1],[0,0],[0,1],[0,0],[1,1],[0,0],[0,0],[1,0],[4,1],[5,-1],[3,0],[1,0],[0,0]],[[89763,75692],[0,0],[-1,0],[0,0],[-1,0],[-1,1],[-1,0],[-2,2],[1,1],[0,1],[0,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,-1],[0,-1],[0,0],[0,0],[1,-1]],[[89748,75716],[0,-1],[2,-5],[1,-4],[0,-1],[0,-1],[0,0],[0,0],[-2,0],[-1,3],[0,1],[0,1],[0,0],[-2,6],[1,1],[1,0]],[[90993,75702],[0,0],[1,-1],[1,0],[0,-1],[1,0],[0,0],[0,-1],[0,0],[1,-1],[-2,0],[0,1],[0,0],[-8,2],[-6,3],[0,0],[2,14],[0,0],[3,1],[7,-17]],[[89745,75722],[1,-1],[0,-1],[-2,0],[-2,6],[-1,2],[2,1],[0,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,0],[0,-1],[0,0],[0,-1],[0,-1]],[[90986,75740],[-1,1],[0,0],[-1,1],[0,1],[-1,2],[0,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,0],[0,0],[0,-1],[0,-2],[1,-1],[0,-2],[1,-5],[0,0]],[[89729,75739],[0,0],[0,0],[0,0],[-1,0],[0,1],[-1,0],[0,1],[-3,13],[-5,20],[0,0],[1,0],[1,0],[0,0],[0,0],[1,-1],[2,-7],[1,-3],[2,-5],[0,-2],[1,-8],[1,-9],[0,0]],[[90984,75765],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,2],[-1,2],[-1,5],[0,1],[0,1],[0,1],[1,1],[1,4],[0,0],[1,-4],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[1,-4],[0,0],[0,-5]],[[90979,75797],[-1,1],[-1,1],[0,0],[0,0],[-1,2],[0,2],[0,2],[0,0],[0,1],[1,3],[0,1],[0,1],[0,2],[1,1],[2,1],[0,0],[2,1],[0,0],[0,-1],[0,-1],[0,0],[-3,-17],[0,0]],[[89707,75812],[0,-1],[0,-1],[0,0],[-1,0],[0,0],[-3,9],[-1,4],[0,0],[1,0],[0,0],[0,0],[0,0],[1,-2],[1,-2],[0,0],[0,-1],[1,-1],[1,-3],[0,0],[0,-1],[0,-1],[0,0]],[[91078,75834],[0,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,0],[-1,-1],[0,0],[0,1],[0,2],[0,1],[0,0],[3,1],[1,0],[1,1],[1,0],[0,0],[1,0],[0,-2],[0,0],[0,-1]],[[89701,75827],[0,0],[-2,1],[0,0],[-2,7],[0,0],[0,1],[0,1],[1,1],[1,-2],[0,0],[0,-1],[0,0],[2,-8]],[[89645,75868],[-1,0],[0,0],[-1,1],[0,1],[0,0],[0,1],[0,0],[0,0],[2,1],[0,-1],[0,-3],[0,0]],[[90937,76469],[3,-2],[0,0],[-2,-1],[-1,0],[0,0],[-1,-1],[0,0],[-2,0],[-7,-3],[-2,0],[-4,0],[-2,-1],[-1,0],[0,0],[-2,1],[0,0],[-2,2],[-1,0],[-1,1],[-1,2],[-2,1],[-1,1],[0,0],[-1,3],[-2,5],[-4,11],[-3,10],[0,0],[0,0],[1,-1],[2,-1],[36,-27]],[[91008,76495],[6,11],[12,21],[2,1],[0,0],[1,0],[0,0],[0,-1],[0,0],[1,0],[0,-1],[0,0],[-10,-19],[-6,-8],[-7,-8],[0,0],[0,2],[1,2]],[[90889,76519],[2,-7],[0,-1],[1,-1],[-1,0],[-5,4],[-3,2],[0,0],[-1,2],[0,0],[0,1],[0,2],[-1,0],[4,11],[0,0],[1,0],[1,0],[0,-1],[2,-12]],[[91073,76543],[0,0],[0,0],[0,-1],[-1,0],[-7,-5],[-2,-1],[-1,-2],[-2,0],[-1,-1],[-1,-1],[-5,-1],[0,-1],[0,0],[-1,0],[0,0],[0,1],[-1,2],[0,0],[18,12],[0,0],[1,0],[0,0],[1,0],[0,-1],[0,0],[2,-1]],[[91060,76543],[0,-1],[0,0],[0,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-1,0],[0,0],[-1,0],[-1,0],[-1,1],[0,0],[0,0],[0,1],[3,1],[1,0],[1,0],[0,0],[1,0],[2,0],[1,0],[0,0],[0,0],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,0],[0,0],[0,0]],[[90726,76521],[-6,0],[0,0],[-1,0],[0,0],[-1,0],[-2,0],[-2,0],[0,0],[0,0],[-1,1],[0,0],[26,10],[27,10],[0,0],[-22,-14],[-6,-4],[-4,-1],[-5,-1],[-1,-1],[-1,0],[-1,0]],[[90892,76563],[0,0],[0,3],[0,1],[0,3],[0,1],[0,1],[0,0],[0,0],[2,1],[0,0],[2,-1],[-4,-9]],[[90778,76571],[1,-1],[0,0],[-1,0],[-4,4],[-3,3],[1,1],[0,1],[0,0],[0,0],[0,0],[1,0],[0,0],[1,0],[1,0],[0,-1],[1,0],[0,0],[0,0],[0,-1],[1,-1],[1,-1],[0,0],[0,-2],[0,-1],[0,-1]],[[91103,76576],[1,-2],[0,-1],[0,0],[0,0],[-1,-2],[-7,-14],[0,0],[-1,0],[-4,-7],[-5,-4],[0,0],[0,0],[-6,1],[0,1],[0,1],[0,0],[0,1],[13,28],[2,2],[0,0],[1,0],[0,0],[1,0],[1,-1],[1,0],[1,0],[0,0],[1,-1],[0,0],[0,0],[1,-1],[1,-1]],[[90750,76574],[0,0],[-1,0],[0,0],[-1,0],[0,1],[-1,2],[0,0],[0,1],[-4,7],[1,1],[0,0],[1,1],[0,0],[0,-2],[1,-3],[3,-6],[0,-1],[1,0],[0,-1],[0,0]],[[90600,76653],[0,0],[-1,0],[0,0],[0,1],[0,1],[1,1],[2,2],[1,1],[1,0],[0,0],[1,0],[0,0],[0,-2],[0,0],[0,0],[0,-1],[-1,0],[-1,-1],[-3,-2]],[[90612,76651],[-4,5],[0,2],[0,1],[0,0],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,0],[1,-2],[0,-1],[0,0],[0,0],[0,0],[0,-1],[-2,0]],[[90933,76652],[0,0],[0,-1],[0,0],[-1,1],[-1,0],[0,0],[0,0],[0,1],[0,0],[0,1],[0,0],[-1,4],[0,19],[0,3],[0,1],[0,0],[1,1],[1,0],[0,0],[1,-1],[4,-2],[0,0],[-4,-27]],[[89230,76726],[4,-1],[5,0],[3,0],[9,-2],[47,-12],[0,0],[-1,-2],[-3,-7],[-23,4],[-8,2],[-34,14],[0,0],[1,4]],[[89219,76732],[-1,-2],[0,-1],[0,0],[-1,1],[0,0],[0,0],[-3,2],[-1,1],[-2,1],[0,0],[-2,2],[0,0],[-1,2],[-1,1],[-1,2],[0,0],[0,1],[1,1],[1,1],[11,-12]],[[89191,76760],[0,0],[0,0],[-1,0],[-2,0],[0,0],[-3,0],[0,0],[-6,2],[0,0],[-1,0],[0,0],[-1,1],[-1,0],[-3,1],[0,1],[0,2],[1,0],[0,0],[3,0],[1,-1],[10,-3],[1,0],[0,-1],[1,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,0]],[[89151,76791],[0,0],[-1,2],[-3,4],[0,2],[-1,4],[0,1],[-1,0],[-3,20],[-2,14],[0,0],[0,1],[0,3],[0,1],[0,0],[-1,3],[1,4],[0,0],[1,1],[0,0],[0,1],[1,1],[0,1],[0,0],[1,2],[0,1],[1,0],[0,0],[0,0],[0,0],[1,1],[0,0],[1,0],[0,0],[0,-1],[5,-66]],[[89366,76879],[0,-1],[-2,-1],[0,0],[0,3],[0,3],[0,0],[0,0],[0,2],[1,1],[0,0],[0,0],[0,0],[1,1],[0,0],[0,0],[1,0],[0,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-3],[-1,-1]],[[89368,76907],[-1,0],[-1,0],[0,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,0],[1,1],[0,2],[1,0],[0,0],[1,0],[0,0],[0,0],[0,-1],[0,0],[0,-1],[-1,-9]],[[89379,76973],[0,-1],[1,0],[0,0],[2,-1],[0,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,0],[0,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-2],[-1,-6],[-1,-4],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,0],[-2,-1],[0,0],[-1,1],[-14,30],[0,0],[0,1],[0,0],[1,1],[0,0],[8,0],[0,0],[2,0],[2,0],[1,-1],[0,0],[1,0],[0,0],[1,0],[0,0]],[[88966,77098],[0,0],[-3,-3],[-1,0],[-2,0],[0,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[0,0],[-3,3],[-1,1],[0,0],[0,0],[-1,1],[-1,1],[0,1],[0,2],[0,0],[22,-4],[-1,-2],[-3,-3]],[[88994,77156],[-1,0],[0,0],[0,-1],[-1,0],[0,0],[0,1],[-1,5],[0,4],[0,3],[0,1],[0,0],[0,1],[0,0],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,0],[0,-2],[0,0]],[[88919,77368],[-1,-1],[0,-1],[0,0],[0,0],[-1,0],[-1,2],[0,0],[0,0],[0,2],[0,0],[0,0],[0,0],[2,-1],[0,0],[0,0],[0,0],[0,-1],[0,0],[0,0],[1,0]],[[90667,77427],[-1,-1],[0,0],[0,0],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,0],[0,0],[0,1],[1,1],[1,-1],[0,0],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[88922,77443],[2,-2],[1,-2],[0,0],[1,-1],[1,-2],[1,-2],[0,-1],[0,0],[0,-3],[0,0],[0,-1],[0,-1],[0,0],[-9,12],[0,1],[0,1],[0,1],[0,0],[0,1],[0,0],[1,0],[1,-1],[1,0],[0,0]],[[90665,77455],[0,-2],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,1],[0,2],[0,1],[0,2],[1,0],[0,0],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,0]],[[90631,77456],[0,-2],[0,-1],[0,0],[0,-1],[-1,0],[-1,0],[-1,2],[-1,2],[1,0],[0,1],[0,1],[1,2],[0,0],[1,-2],[0,0],[1,-1],[0,-1],[0,0]],[[88812,77460],[0,0],[-1,0],[0,0],[-1,0],[-1,1],[0,1],[0,0],[-1,2],[-1,2],[0,2],[0,1],[0,0],[1,0],[0,0],[4,-7],[0,-1],[0,-1]],[[90662,77469],[-1,-2],[0,-1],[0,0],[0,0],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,0],[-1,1],[0,0],[2,1],[0,-1],[1,0],[0,-1],[1,-1]],[[90602,77475],[0,-1],[0,0],[0,0],[-1,0],[0,0],[-1,0],[0,1],[0,0],[0,1],[0,0],[0,1],[1,1],[0,0],[0,0],[0,-1],[1,0],[0,0],[0,-2]],[[90654,77489],[0,0],[0,-1],[0,0],[-1,0],[0,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,0],[1,0],[0,0],[0,-1],[1,-1],[-1,-3]],[[90574,77498],[0,0],[0,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,0],[1,1],[1,0],[0,0],[0,-2],[0,0],[0,-2],[0,-1]],[[88479,77567],[-1,0],[0,0],[-1,0],[0,1],[-1,1],[0,0],[0,1],[0,0],[0,0],[1,0],[2,0],[0,0],[0,-1],[0,0],[0,-2]],[[90658,77566],[0,-1],[0,0],[-1,0],[-1,-1],[0,1],[-3,7],[0,0],[1,0],[0,1],[1,-1],[2,0],[1,-1],[1,-2],[0,0],[-1,-2],[0,-1]],[[90646,77582],[-1,-1],[-2,0],[0,0],[0,3],[0,0],[0,1],[1,0],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,0],[0,-1],[0,0],[0,-1]],[[90589,77613],[-1,-1],[0,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,0],[0,0],[1,-1],[0,0],[1,-1],[-1,-3],[0,-1]],[[90670,77715],[-1,-1],[0,0],[-2,2],[0,0],[1,1],[0,1],[0,0],[0,0],[0,0],[1,0],[1,0],[0,-2],[0,0],[0,-1]],[[90676,77721],[-1,0],[-1,0],[0,0],[0,0],[0,1],[-1,0],[0,0],[0,1],[0,1],[1,1],[0,0],[0,1],[1,2],[0,1],[2,0],[0,0],[1,-3],[0,0],[0,-1],[-1,-2],[0,0],[-1,-2]],[[90577,77817],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,1],[-1,1],[0,1],[0,0],[0,2],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[0,0],[0,-1]],[[90699,77896],[0,0],[0,0],[-1,0],[-1,-1],[0,0],[-1,1],[0,0],[0,0],[-1,2],[0,1],[0,0],[0,0],[0,2],[0,0],[1,1],[0,0],[2,3],[1,0],[0,1],[0,0],[1,0],[1,-1],[0,0],[0,-1],[1,-2],[0,0],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,0]],[[88671,77915],[0,-5],[-1,-3],[0,-1],[0,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,0],[0,0],[-1,2],[0,0],[-1,1],[0,1],[-1,0],[0,3],[0,1],[-1,1],[0,1],[0,0],[0,1],[0,0],[0,2],[0,2],[0,0],[1,0],[0,0],[4,2],[6,2],[1,0],[1,-1],[1,0],[0,0],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[0,-1]],[[88643,77934],[0,-1],[0,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,2],[-1,1],[0,1],[-1,0],[0,2],[0,0],[1,-1],[0,0],[0,0],[2,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,0]],[[90501,77932],[-1,0],[-1,0],[0,1],[0,0],[-1,1],[0,2],[0,1],[0,1],[0,0],[1,2],[0,0],[0,0],[0,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2]],[[90669,77953],[0,0],[0,-1],[0,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,1],[-1,0],[-1,2],[0,0],[0,1],[1,0],[1,1],[0,-1],[1,-1],[0,0],[1,-1]],[[88672,77958],[0,-1],[-1,0],[0,0],[0,1],[0,0],[-1,1],[0,0],[0,0],[0,0],[0,1],[0,2],[0,2],[0,1],[0,0],[0,1],[0,0],[1,0],[0,0],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,-2]],[[88605,77973],[-1,0],[-4,2],[0,1],[-2,1],[0,0],[0,1],[1,1],[0,0],[3,-2],[3,-2],[0,-1],[0,-1]],[[90621,78009],[-1,-1],[0,-1],[-1,1],[-1,1],[0,0],[-1,1],[0,0],[1,0],[1,0],[0,1],[0,0],[1,-1],[1,-1]],[[90486,78008],[-1,-1],[0,0],[-1,3],[1,1],[0,1],[0,0],[0,-1],[1,-1],[1,0],[-1,-2]],[[88674,78018],[0,-1],[0,0],[-1,-1],[-1,0],[0,0],[1,2],[0,1],[0,1],[0,0],[0,1],[1,1],[0,1],[0,0],[1,0],[0,0],[0,1],[0,-1],[1,-1],[0,0],[-1,-1],[-1,-2],[0,-1]],[[90603,78031],[0,0],[0,-2],[0,0],[-1,0],[0,0],[0,1],[-1,0],[-1,2],[-1,0],[0,0],[2,2],[0,-1],[1,-1],[1,-1]],[[88679,78030],[0,-1],[-1,0],[-1,0],[0,1],[0,0],[0,0],[1,2],[1,1],[0,1],[1,0],[0,0],[0,0],[0,0],[1,0],[0,-1],[0,-1],[-2,-2]],[[90555,78051],[-1,0],[-1,0],[0,1],[-1,1],[0,0],[1,0],[0,0],[1,0],[1,0],[0,0],[0,-1],[1,0],[0,0],[-1,-1],[0,0]],[[90479,78064],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-4],[-3,-5],[0,-1],[-2,-2],[-2,1],[1,2],[0,1],[0,0],[0,1],[0,2],[1,2],[0,1],[2,5],[0,0],[1,1],[5,0]],[[88690,78047],[0,0],[-2,1],[1,15],[1,2],[0,-1],[1,-1],[0,-2],[0,0],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,0],[0,-1]],[[90529,78064],[0,0],[-1,-1],[-1,-1],[0,0],[0,1],[-1,1],[0,0],[1,1],[0,0],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0]],[[87789,78074],[-1,0],[0,0],[0,0],[-1,1],[0,2],[0,0],[1,1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[1,-2]],[[87815,78074],[-3,-1],[-1,0],[-1,0],[-1,1],[0,0],[-1,0],[0,1],[1,0],[0,1],[0,0],[7,7],[1,-1],[1,-1],[0,-1],[0,0],[0,-1],[0,-2],[0,0],[0,0],[0,-1],[-1,-1],[-2,-1]],[[87528,78083],[-1,0],[-1,0],[-1,-1],[-2,0],[0,0],[0,1],[-1,1],[0,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[3,-2],[0,-1],[0,0],[1,-1],[0,0],[0,0]],[[87811,78095],[-1,-1],[0,0],[0,1],[0,1],[0,1],[0,0],[1,0],[0,-2]],[[87794,78108],[0,-1],[-2,-1],[0,2],[0,1],[0,0],[0,1],[0,0],[1,0],[1,-1],[0,0],[0,-1],[0,0]],[[90010,78162],[0,0],[-1,-1],[-1,1],[-1,1],[0,1],[0,0],[0,2],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,0],[0,-1],[0,0],[1,0],[-1,-2]],[[88571,78162],[0,-1],[0,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,0],[0,1],[1,1],[0,0],[0,0],[1,1],[0,0],[0,-1],[0,-1],[0,0],[1,-3],[0,-3]],[[88536,78200],[0,0],[0,-1],[-1,0],[0,1],[-1,1],[0,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,0],[1,-1],[0,0],[0,0],[0,0],[0,-1],[0,-1],[1,-2]],[[87479,78208],[-1,-1],[0,0],[0,-1],[0,0],[-1,1],[0,0],[0,0],[-1,2],[0,0],[0,0],[0,0],[1,2],[0,0],[1,0],[0,-1],[0,0],[0,0],[1,-1],[0,-1]],[[88528,78210],[-1,-1],[0,0],[0,0],[-1,0],[0,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,0],[1,-1],[0,-1],[1,-1]],[[88406,78225],[-1,-1],[-1,1],[1,1],[1,1],[1,0],[0,0],[0,0],[1,0],[0,0],[-1,-1],[0,-1],[-1,0]],[[88436,78235],[0,0],[4,0],[1,0],[0,0],[1,0],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-3,1],[0,1],[2,0],[0,0],[0,0]],[[88390,78232],[1,-1],[0,0],[-2,0],[-1,0],[0,0],[-1,1],[0,0],[-2,1],[0,0],[-1,2],[1,2],[0,0],[2,-1],[3,-4]],[[88424,78234],[-1,0],[0,0],[0,0],[0,0],[-1,1],[-1,0],[0,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,0],[1,-2],[0,0],[-1,-1],[-1,0],[-1,-1]],[[88486,78238],[0,0],[0,-1],[-1,-1],[0,0],[0,0],[0,0],[-2,1],[0,0],[0,0],[-1,2],[1,0],[0,1],[0,0],[0,0],[1,0],[1,0],[0,0],[0,0],[0,-1],[1,-1]],[[88382,78240],[-1,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-2,1],[0,0],[0,0],[0,1],[0,1],[1,0],[0,0],[0,0],[3,-1],[0,0],[0,-1],[1,0]],[[88367,78253],[0,-2],[0,0],[-1,1],[-2,1],[0,0],[0,1],[-2,2],[0,0],[0,0],[0,2],[0,1],[0,0],[0,0],[1,0],[1,0],[0,0],[0,0],[0,-1],[0,0],[1,0],[0,-1],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[1,0],[0,-1]],[[88357,78259],[-1,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,1],[0,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1]],[[87460,78260],[0,0],[0,-1],[0,-1],[-1,0],[0,0],[-1,1],[-1,1],[0,1],[-2,1],[0,0],[1,1],[1,1],[1,0],[1,-1],[0,0],[0,0],[0,-1],[1,0],[0,-1],[0,-1]],[[89955,78278],[0,0],[-2,0],[0,0],[-1,1],[0,0],[0,2],[1,0],[1,-1],[0,0],[1,0],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,0]],[[89932,78301],[0,-1],[-1,0],[0,0],[-2,1],[0,2],[1,0],[2,0],[0,0],[0,-1],[0,-1],[0,0]],[[87391,78318],[-1,0],[-1,-1],[0,0],[-3,4],[0,1],[0,1],[-1,1],[0,1],[0,0],[0,1],[0,1],[0,1],[0,0],[0,0],[1,0],[2,-1],[0,-1],[1,-2],[1,-2],[0,-1],[0,0],[0,-2],[0,0],[1,-1]],[[88441,78389],[-1,0],[0,1],[0,0],[0,1],[0,0],[0,0],[0,1],[1,0],[1,0],[0,0],[0,0],[0,-1],[0,-1],[-1,-1]],[[88170,78404],[-1,-1],[0,0],[-1,1],[-2,2],[1,1],[0,0],[0,1],[1,0],[0,0],[1,-1],[1,0],[0,0],[0,-1],[0,-2]],[[88156,78411],[0,0],[0,-1],[0,0],[0,-1],[-2,0],[-1,1],[0,0],[0,0],[0,0],[-1,1],[1,2],[0,0],[0,0],[2,0],[0,0],[1,-1],[0,-1],[0,0]],[[88144,78415],[-1,-1],[0,0],[0,0],[-2,1],[-3,1],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,0],[1,0],[0,1],[3,-1],[0,0],[1,-1],[0,0],[0,0],[0,0],[1,-2],[1,0],[0,0],[0,-1],[1,-2]],[[88276,78424],[-1,0],[-1,0],[-1,1],[1,1],[0,0],[0,0],[1,0],[3,2],[2,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,0],[-2,-1],[0,0],[0,0],[-1,0],[-2,-1]],[[90015,78455],[-1,0],[-1,0],[0,0],[0,0],[1,2],[0,0],[0,0],[2,2],[1,0],[0,0],[0,0],[1,0],[0,0],[0,-1],[0,0],[-1,-1],[-2,-2],[0,0]],[[90100,78467],[-2,-1],[0,0],[0,0],[0,0],[-1,1],[0,1],[2,3],[1,1],[0,0],[0,0],[1,1],[1,0],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,-1],[-1,-1],[0,-1],[0,0],[-1,0],[0,-2],[0,0]],[[88525,78475],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-7,-1],[-5,-1],[-1,0],[0,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,2],[0,1],[0,1],[1,1],[0,2],[0,2],[1,3],[1,1],[1,1],[1,1],[1,1],[0,0],[3,2],[0,0],[0,0],[1,0],[0,0],[2,-1],[0,0],[3,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1]],[[90111,78480],[-1,-1],[-2,0],[0,0],[0,0],[0,0],[1,2],[0,0],[1,1],[1,1],[0,1],[0,0],[0,0],[1,0],[1,0],[0,0],[0,-1],[0,-1],[-1,-1],[0,0],[0,-1],[-1,0]],[[90124,78517],[-1,-1],[-2,-1],[0,0],[0,2],[0,0],[0,2],[0,19],[2,0],[1,0],[0,0],[1,0],[0,0],[0,-1],[1,-2],[0,-1],[0,0],[1,-2],[0,0],[0,0],[0,-2],[0,-1],[0,-2],[0,0],[0,-1],[-1,-5],[0,0],[0,-1],[-1,-1],[-1,-2]],[[90117,78545],[0,-1],[0,0],[-1,1],[-1,2],[0,1],[-1,1],[0,0],[1,0],[0,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,0],[0,0]],[[90100,78576],[0,-1],[0,0],[0,0],[0,0],[-1,1],[-1,1],[0,0],[0,2],[0,0],[0,0],[0,0],[0,1],[1,0],[0,0],[0,0],[0,-1],[1,0],[0,-1],[0,0],[0,-1],[0,-1],[0,0],[0,0]],[[89970,78581],[0,-1],[0,-1],[-1,1],[0,0],[-1,1],[0,0],[0,1],[0,1],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,-1]],[[89959,78584],[-2,0],[-1,0],[1,1],[1,2],[0,0],[1,0],[1,1],[1,0],[0,0],[1,-1],[0,0],[-1,-1],[0,0],[-2,-2]],[[90092,78588],[0,-2],[1,0],[0,0],[-1,0],[0,0],[-1,1],[0,1],[0,1],[0,0],[0,0],[0,0],[1,0],[0,0],[0,-1],[0,0]],[[89917,78591],[0,-1],[0,-1],[0,0],[0,0],[-4,2],[-1,0],[0,0],[-2,1],[0,0],[1,0],[0,1],[1,0],[0,0],[0,0],[1,0],[0,0],[0,0],[1,0],[1,0],[2,-2]],[[89893,78594],[0,-1],[0,0],[0,0],[-1,-1],[0,0],[0,1],[0,1],[0,0],[0,0],[1,1],[0,1],[1,-1],[-1,-1]],[[90076,78610],[0,-1],[0,0],[-1,0],[-3,-1],[-1,2],[1,0],[0,2],[0,0],[1,0],[1,1],[1,0],[0,0],[1,-1],[0,0],[0,-2],[0,0]],[[89506,78816],[0,0],[0,0],[-1,0],[-1,-1],[-1,-1],[-4,0],[-4,-1],[-2,0],[0,0],[-1,1],[0,0],[0,1],[0,0],[6,3],[10,4],[0,0],[-1,0],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-1,-2],[0,0],[0,-1]],[[89586,78833],[0,0],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,0],[0,0],[-1,-1],[0,0],[-2,0],[-1,0],[-1,0],[0,0],[-1,0],[0,1],[0,0],[0,2],[0,0],[4,2],[7,3],[0,0],[1,0],[1,0],[1,-1],[1,0],[0,0],[0,-1],[0,0],[-1,-1],[-1,-1],[0,0]],[[89531,78835],[-1,-1],[0,0],[-1,0],[0,0],[-1,1],[0,0],[-1,0],[0,1],[0,0],[1,1],[1,0],[0,0],[1,0],[1,1],[0,0],[1,0],[0,0],[1,1],[0,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0]],[[89542,78838],[0,0],[-2,0],[-1,0],[0,0],[-1,1],[0,0],[0,0],[0,1],[0,1],[0,1],[6,-2],[1,-1],[0,0],[-2,-1],[-1,0]],[[89587,78849],[0,0],[0,0],[0,-1],[0,0],[-1,0],[-1,2],[-4,4],[0,0],[1,0],[0,0],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1]],[[89576,78858],[-1,0],[0,0],[-1,2],[0,0],[0,1],[0,0],[1,1],[0,0],[1,0],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,-2],[0,0],[0,0]],[[89444,78876],[0,0],[-1,-2],[-2,2],[0,0],[0,1],[0,2],[1,0],[0,0],[1,0],[0,0],[0,-1],[1,-1],[0,-1],[0,0]],[[89565,78890],[0,-1],[1,-2],[0,0],[-4,3],[-1,1],[1,1],[2,-1],[1,-1]],[[89557,78894],[-1,1],[0,2],[0,0],[1,0],[0,0],[1,1],[0,0],[1,-1],[0,0],[0,0],[0,0],[0,-1],[-1,-1],[-1,-1]],[[89553,78900],[-1,-2],[0,0],[-1,0],[0,0],[0,2],[0,2],[0,0],[1,0],[0,0],[1,0],[0,-1],[0,-1]],[[89415,78906],[0,0],[-1,-1],[0,0],[-1,0],[0,1],[0,0],[-1,0],[0,0],[0,1],[-1,0],[0,1],[0,2],[0,0],[1,2],[0,1],[0,0],[0,0],[1,-1],[1,0],[0,-1],[0,0],[1,-4],[0,-1]],[[89539,78911],[-1,-2],[-1,0],[0,0],[0,0],[-1,1],[0,1],[1,1],[0,0],[0,1],[1,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[0,0],[0,-1],[0,0]],[[87682,79004],[-1,0],[-1,0],[0,0],[-1,1],[-2,1],[0,0],[0,2],[1,0],[1,1],[0,0],[1,0],[1,1],[1,0],[0,0],[0,-1],[0,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[0,-1]],[[89413,79005],[-1,0],[0,0],[-1,0],[-1,1],[0,0],[-1,1],[0,2],[0,0],[0,0],[0,1],[0,0],[0,0],[0,0],[2,0],[0,0],[1,0],[1,0],[1,-1],[1,-1],[0,0],[0,0],[0,-1],[-2,-2]],[[89406,79014],[0,-1],[-1,0],[0,-1],[0,0],[0,0],[-2,2],[-1,1],[-1,2],[0,0],[0,1],[-1,2],[0,0],[1,2],[0,0],[0,0],[1,0],[0,-1],[0,0],[1,0],[0,0],[0,0],[1,-1],[0,0],[0,0],[1,-1],[1,-1],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,0]],[[89710,79048],[-1,-1],[0,-1],[0,0],[0,0],[-1,1],[-1,1],[0,0],[0,1],[1,1],[0,0],[1,1],[0,0],[0,-1],[0,0],[0,0],[1,-1],[0,0],[0,-1]],[[87674,79133],[1,-1],[0,0],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[0,-2],[0,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,0],[-1,0],[-4,5],[-3,3],[-1,4],[0,0],[1,2],[0,0],[0,1],[1,1],[1,0],[5,-5]],[[87624,79134],[-1,-2],[0,0],[-1,0],[0,1],[0,0],[-1,2],[0,1],[0,1],[0,3],[0,0],[0,0],[0,0],[1,-1],[0,-1],[0,0],[0,0],[1,-1],[0,-1],[1,-1],[0,0],[0,-1]],[[89976,79157],[0,0],[-1,-1],[0,0],[0,0],[-1,1],[0,0],[0,1],[0,2],[1,2],[1,0],[1,0],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-1,0],[0,-1]],[[89907,79218],[0,-1],[0,0],[0,-1],[0,0],[0,0],[-1,0],[-1,2],[0,1],[0,0],[0,1],[0,1],[0,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0]],[[90500,79223],[0,-2],[-1,-6],[0,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-2,-2],[-1,0],[0,0],[-1,0],[-1,-1],[-1,1],[2,14],[0,1],[0,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,0],[1,0],[1,-1],[0,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[89970,79236],[-1,0],[0,0],[0,0],[-1,1],[0,2],[0,0],[0,0],[1,0],[0,1],[1,-1],[0,-2],[0,0],[0,-1],[0,0]],[[89971,79272],[0,0],[-1,0],[0,0],[0,0],[0,-1],[-1,1],[0,0],[0,0],[0,1],[0,0],[0,2],[0,0],[1,1],[0,0],[0,1],[1,-1],[0,-1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0]],[[89967,79327],[-1,0],[-1,0],[0,0],[0,0],[0,1],[0,1],[0,1],[1,2],[1,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,-1]],[[89963,79346],[0,-1],[0,0],[-2,1],[0,0],[0,1],[-1,1],[0,2],[0,0],[0,1],[1,2],[0,0],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1]],[[89959,79357],[0,-1],[0,0],[-1,0],[-1,1],[0,0],[0,1],[0,0],[0,0],[0,2],[0,0],[0,0],[0,0],[1,-1],[1,0],[1,0],[-1,-1],[0,0],[0,-1]],[[89956,79363],[0,0],[-1,-1],[0,0],[-1,0],[-1,1],[0,0],[-1,0],[0,0],[0,1],[0,2],[0,0],[0,1],[1,2],[0,0],[1,-1],[1,-1],[0,0],[1,0],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[-1,-1],[0,0]],[[87943,79912],[-1,0],[0,-1],[-1,0],[0,0],[-2,0],[0,0],[-1,0],[0,0],[0,3],[0,0],[0,0],[1,0],[1,0],[1,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[0,0],[0,0]],[[87968,79913],[-1,-1],[0,-1],[0,0],[-1,0],[-1,1],[0,2],[0,0],[1,0],[0,-1],[1,0],[1,0]],[[87894,79913],[0,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[3,1],[0,0],[0,0],[2,0],[0,0],[0,0],[0,-1],[0,0],[0,-1],[-1,-1],[0,0],[-1,0],[0,0],[0,0],[-1,-1],[-1,0]],[[87904,79916],[-1,0],[0,0],[0,0],[0,2],[0,0],[0,0],[2,2],[0,0],[0,0],[0,0],[1,0],[1,0],[0,0],[0,0],[0,-1],[0,-1],[-3,-2]],[[87871,79919],[0,-1],[-1,0],[-1,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[1,2],[0,0],[1,0],[0,0],[1,0],[0,-1],[0,0],[0,-1],[0,0]],[[87863,79918],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-2,0],[0,0],[-1,1],[0,0],[0,1],[0,1],[0,0],[0,0],[0,0],[2,0],[1,0],[1,0],[0,0],[1,0],[1,0],[0,0],[1,0],[0,0],[0,-2],[0,0],[0,-1],[0,0]],[[87830,79931],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-2,1],[1,1],[0,1],[0,1],[0,0],[2,-1],[0,0],[0,0],[0,-1],[1,-1],[0,-1],[0,0]],[[89796,79930],[-1,0],[-1,0],[0,1],[0,0],[0,2],[1,1],[0,0],[0,1],[0,0],[1,-1],[0,0],[1,0],[-1,-2],[0,-1],[0,-1]],[[87830,79950],[-1,-2],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,0],[0,-1],[1,0],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-1,-1]],[[88113,79952],[-1,-1],[0,0],[0,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[0,0],[1,0],[0,1],[10,4],[0,0],[-1,-1],[0,-4]],[[88177,79941],[-14,0],[0,0],[9,5],[9,5],[2,1],[-6,-11]],[[88059,79987],[-2,0],[0,1],[0,1],[4,6],[0,1],[0,0],[1,-2],[0,0],[1,-1],[0,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,0],[-1,0],[0,0]],[[89854,79995],[0,0],[-1,0],[0,0],[-1,0],[-2,1],[0,0],[-1,2],[0,1],[0,0],[0,2],[0,0],[2,0],[1,-1],[0,0],[0,0],[0,0],[0,-1],[1,-1],[0,0],[0,-1],[1,-2]],[[89904,80018],[2,0],[1,0],[1,-1],[0,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,0],[-8,-5],[0,1],[0,3],[4,6],[1,1],[0,0],[0,0],[0,1],[1,0],[1,-1]],[[88515,80062],[-1,0],[0,0],[0,1],[0,0],[1,1],[1,1],[1,0],[0,0],[3,1],[2,1],[0,0],[0,-1],[0,0],[-1,-1],[-1,-1],[-1,-1],[0,0],[-1,0],[-3,-1]],[[88546,80134],[0,-2],[-1,-1],[-1,-1],[0,0],[0,-1],[-2,0],[0,0],[-1,1],[0,1],[0,0],[0,2],[0,0],[-1,1],[1,1],[0,1],[5,-2]],[[88540,80140],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,3],[0,0],[1,0],[1,0],[0,0],[1,-1],[0,0],[0,-1],[0,0],[-1,-1]],[[88524,80152],[-1,0],[-1,0],[0,0],[0,1],[0,1],[1,1],[0,0],[0,0],[1,1],[0,0],[1,-1],[0,0],[0,0],[0,-2],[-1,-1]],[[88277,80184],[0,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[1,5],[0,0],[0,0],[1,0],[1,0],[0,0],[1,0],[0,0],[0,-1],[0,-1],[0,-1],[0,0],[0,0],[-1,-2]],[[88059,80201],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[1,2],[0,1],[0,0],[1,1],[0,0],[0,0],[0,1],[1,0],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[0,0],[-2,-1]],[[87285,80231],[0,0],[-1,0],[0,-1],[-1,0],[0,0],[-1,1],[0,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,0],[0,0],[0,1],[0,1],[-1,1],[1,0],[1,1],[0,0],[1,-2],[1,-1],[3,-2],[1,0],[-1,-3]],[[87299,80238],[0,-1],[-1,0],[-3,1],[1,0],[1,1],[1,0],[1,0],[0,0],[0,0],[0,0],[0,-1]],[[87323,80244],[-1,0],[-1,0],[0,0],[0,1],[0,1],[0,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,0],[0,-1],[-2,-2]],[[87408,80248],[-2,2],[3,12],[0,1],[0,1],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-1],[0,0],[0,-2],[0,-1],[0,0],[-1,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-2,-1],[0,-1],[0,0]],[[87403,80330],[-1,-1],[0,0],[-10,20],[3,2],[3,-1],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[1,-1],[0,0],[0,-1],[0,0],[0,0],[1,-2],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,0]],[[87233,80397],[0,-1],[-1,0],[-1,-1],[0,0],[0,1],[0,0],[0,1],[0,0],[0,0],[0,1],[1,0],[0,1],[0,0],[1,0],[0,-1],[0,0],[0,-1]],[[87251,80409],[0,-1],[0,0],[0,-2],[0,0],[-5,1],[0,0],[1,2],[2,1],[0,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,0],[0,-1],[0,-1],[-1,-1]],[[90050,80815],[0,0],[-1,0],[0,-1],[0,0],[0,0],[-1,1],[-1,2],[0,2],[0,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1]],[[90066,80867],[0,0],[-1,-1],[0,0],[-1,0],[0,1],[1,2],[1,0],[1,0],[0,-1],[0,0],[-1,-1]],[[89371,82792],[-2,-1],[0,0],[-1,0],[1,1],[0,0],[0,2],[1,0],[0,0],[0,0],[0,1],[0,0],[1,0],[0,0],[0,0],[1,0],[0,0],[1,0],[0,0],[0,0],[0,0],[-2,-3]],[[89380,82800],[-2,-1],[-1,0],[0,1],[0,0],[0,1],[0,1],[1,1],[0,0],[1,2],[3,5],[0,0],[1,1],[1,0],[0,0],[-1,-2],[0,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,0],[0,-1],[-1,-1],[0,0],[0,-2]],[[89388,82812],[0,0],[-2,0],[0,0],[1,2],[3,2],[1,1],[0,0],[0,0],[0,-1],[0,0],[1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1]],[[89395,82817],[-2,-1],[-1,1],[1,0],[0,1],[0,1],[18,24],[1,-1],[1,-1],[-2,-10],[-3,-3],[0,0],[0,-1],[-1,-2],[0,0],[-6,-4],[-2,-1],[-1,-1],[-2,-1],[-1,-1]],[[89414,82850],[0,-1],[0,0],[-2,2],[0,1],[0,0],[0,0],[0,1],[1,2],[0,1],[0,0],[2,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2]],[[89414,82864],[0,-2],[0,-1],[-1,-1],[0,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,5],[1,2],[0,0],[0,0],[0,1],[1,2],[0,0],[0,0],[1,0],[0,0],[1,0],[0,0],[0,-1],[1,-1],[-1,-2],[0,0],[0,-2],[0,-1],[0,0],[0,-3]],[[48445,81026],[-65,-112],[-18,17],[-6,262],[6,34],[30,-14],[70,-79],[-17,-108]],[[45852,86488],[-23,-84],[-111,81],[-53,68],[-111,261],[16,49],[36,0],[60,-109],[138,-80],[30,-54],[18,-132]],[[75944,83402],[2,-3],[5,-8],[0,-1],[0,0],[0,-2],[0,-4],[-24,-74],[-21,-67],[0,0],[-4,1],[-14,7],[-8,4],[-9,7],[0,0],[0,2],[0,0],[0,2],[1,3],[0,6],[4,15],[0,2],[9,38],[9,18],[3,5],[42,51],[0,1],[0,0],[1,0],[0,0],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[0,0],[3,-3]],[[75634,82463],[-7,-8],[-35,-32],[-5,-1],[-4,0],[-5,0],[-4,0],[-4,1],[-2,0],[-14,7],[-11,5],[0,0],[3,5],[8,14],[10,9],[4,4],[38,25],[1,1],[1,0],[0,0],[1,1],[0,0],[0,0],[2,0],[1,0],[0,0],[1,0],[8,-1],[8,-2],[3,-2],[3,-1],[0,0],[1,0],[1,-1],[0,0],[0,-1],[0,0],[1,-1],[0,0],[0,0],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-4,-19]],[[75860,83168],[0,-1],[0,0],[0,0],[-2,-13],[-5,-34],[-3,-6],[-6,-13],[-1,-1],[0,0],[0,0],[0,0],[-1,-1],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[0,0],[-1,1],[-1,1],[-27,61],[-2,18],[2,4],[2,7],[5,14],[3,8],[10,15],[11,17],[1,0],[0,1],[2,2],[0,0],[0,0],[1,0],[0,0],[0,0],[0,0],[1,-1],[0,-1],[1,-1],[0,0],[0,0],[1,-2],[2,-3],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[9,-65]],[[75855,84309],[0,0],[22,-1],[1,0],[0,0],[1,0],[2,-1],[1,-1],[6,-5],[0,0],[1,0],[0,0],[0,-1],[0,0],[0,0],[1,-4],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[-3,-8],[-2,-4],[-1,0],[-1,-1],[-4,-1],[-1,-1],[-33,0],[0,0],[-5,7],[0,1],[0,0],[0,1],[-2,5],[-1,4],[0,1],[0,1],[-1,6],[0,1],[0,1],[2,2],[0,0],[1,0],[16,1]],[[75956,85320],[0,0],[-6,0],[0,0],[-1,0],[0,1],[-1,0],[-5,9],[0,0],[0,0],[-1,6],[0,2],[0,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,0],[0,0],[2,7],[1,1],[0,1],[0,0],[1,1],[0,1],[1,0],[0,0],[4,1],[0,0],[0,1],[1,0],[0,0],[1,0],[1,0],[1,-1],[0,0],[0,0],[5,-7],[0,-1],[1,-1],[1,-4],[0,-1],[0,0],[0,-1],[1,-1],[0,0],[0,-3],[0,0],[0,-1],[-1,-4],[0,0],[0,-1],[0,0],[0,0],[0,0],[-1,-1],[-5,-7],[0,0],[-1,-1]],[[75931,85811],[0,0],[1,-1],[1,0],[0,0],[1,-1],[0,-1],[1,0],[2,-4],[1,-1],[0,0],[0,-1],[0,-4],[1,-3],[0,-6],[0,-6],[0,0],[0,-1],[0,-2],[-3,-8],[-2,-6],[-2,-4],[0,0],[-31,-37],[0,0],[-1,10],[0,11],[5,34],[3,22],[1,2],[0,1],[1,0],[1,2],[0,0],[3,3],[2,2],[1,0],[0,1],[1,0],[0,0],[1,0],[0,0],[1,0],[2,1],[5,-2],[4,-1]],[[75856,86349],[1,-1],[1,0],[1,-1],[6,-3],[6,-7],[1,-1],[1,-2],[1,-2],[0,-7],[1,-5],[1,-9],[0,-1],[0,-1],[-1,-2],[-5,-12],[-3,-6],[-10,-11],[-8,8],[-1,2],[-1,1],[-4,11],[-2,8],[-1,5],[-2,8],[0,0],[1,1],[0,1],[0,0],[0,3],[0,1],[4,11],[2,5],[1,3],[1,1],[0,1],[1,2],[2,1],[1,1],[1,0],[1,0],[0,0],[1,0],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[0,0]],[[17476,60036],[30,-67],[26,-106],[-3,-98],[-24,-16],[-16,0],[-11,6],[-17,59],[12,0],[-29,135],[-2,2],[-2,3],[-1,1],[0,3],[0,1],[0,1],[8,36],[21,34],[6,7],[0,0],[1,0],[1,-1]],[[17585,59931],[0,0],[1,-2],[0,-2],[0,-2],[0,-3],[-1,-6],[0,-1],[-1,-1],[-5,-6],[-4,-2],[-4,12],[-2,11],[2,4],[8,14],[1,0],[1,-1],[3,-12],[1,-3]],[[86594,53689],[9,-9],[40,-39],[24,-16],[15,-11],[5,3],[1,0],[0,0],[0,0],[0,1],[0,1],[1,4],[0,1],[0,0],[-1,3],[-1,4],[0,0],[0,1],[0,2],[0,0],[146,-54],[176,-183],[137,-144],[403,-499],[140,-111],[53,-49],[83,-76],[350,-353],[6,-6],[16,-17],[53,-140],[-5,-36],[-14,-40],[-22,-22],[0,0],[-13,-6],[-20,-8],[-64,22],[-28,10],[-163,108],[-173,151],[-6,48],[-1,9],[0,1],[-1,4],[-1,1],[0,1],[-1,1],[0,2],[-5,4],[-8,8],[-15,13],[-10,8],[-235,146],[-12,7],[-66,29],[-11,7],[-2,2],[-10,8],[-133,105],[-53,62],[-189,264],[-11,16],[-162,208],[-91,113],[0,0],[-14,29],[-69,137],[-24,64],[-30,77],[-84,222],[0,0],[90,-88]],[[88561,51657],[-3,-11],[-2,-8],[0,-1],[0,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,0],[-1,0],[-1,-1],[-8,1],[-9,1],[-1,1],[0,0],[-2,2],[1,3],[2,13],[9,16],[7,-1],[6,-5],[4,-3],[0,0],[0,-1],[0,-1],[1,-1]],[[88537,51729],[11,-7],[0,-1],[0,0],[1,0],[1,-1],[2,-5],[2,-4],[1,-2],[0,-1],[0,0],[2,-6],[1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[-1,-10],[-1,-11],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-1,2],[-1,0],[-10,-2],[-5,-2],[0,0],[0,-1],[-1,0],[-9,-13],[-1,-1],[0,0],[-1,-1],[-2,-3],[-1,0],[0,0],[-2,0],[-2,-1],[-3,0],[0,0],[-1,0],[-4,1],[-1,0],[-2,1],[-15,6],[-10,14],[-3,13],[0,10],[0,9],[0,8],[1,12],[0,0],[17,2],[38,5]],[[88128,51884],[15,-4],[0,0],[0,-1],[1,-1],[1,-3],[1,-2],[0,-1],[0,-1],[1,-5],[-1,-11],[-1,-1],[0,0],[0,-1],[0,0],[0,-1],[-7,-19],[0,0],[-1,-1],[-3,-5],[-1,-1],[-1,-2],[-1,-1],[0,0],[-3,-2],[-1,-1],[0,0],[-16,6],[-1,0],[0,0],[-1,1],[0,1],[-3,12],[0,2],[0,0],[3,22],[7,9],[8,10],[1,1],[1,0],[1,0],[1,0],[0,0]],[[87692,52145],[-1,0],[-1,0],[0,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1],[0,0],[0,0],[-1,1],[-1,1],[-1,1],[0,0],[-7,16],[0,1],[0,0],[0,3],[-1,2],[0,2],[0,1],[10,11],[0,0],[1,-1],[1,-1],[0,0],[1,0],[1,-3],[0,0],[1,-1],[2,-12],[3,-22],[0,-1],[0,-1]],[[87692,52217],[0,0],[0,0],[1,-1],[1,-1],[0,0],[0,0],[1,-1],[1,-3],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[-4,-4],[-8,-8],[-4,-5],[0,0],[-9,5],[-2,10],[-3,15],[0,0],[2,2],[0,1],[0,0],[0,0],[24,-7]],[[88861,52672],[29,-27],[-1,-29],[-2,-76],[-5,-15],[0,0],[0,0],[-50,-24],[0,0],[-2,0],[-23,1],[-6,5],[-55,44],[-4,5],[-6,5],[-24,149],[0,0],[9,7],[18,14],[63,14],[59,-73]],[[88723,52936],[-1,-2],[-1,-1],[-2,-4],[-1,-1],[0,0],[0,0],[-1,1],[-5,4],[-6,5],[-3,3],[-1,1],[-1,2],[-2,2],[0,2],[-1,2],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,-1],[1,0],[0,0],[2,-1],[0,0],[1,-1],[1,0],[0,-1],[0,0],[3,-3],[1,-1],[1,-1],[5,-8],[6,-8],[0,-2],[0,-1]],[[88404,53281],[-3,-27],[-2,-35],[-1,-30],[-2,-32],[0,-13],[1,-8],[1,-16],[63,-43],[7,-18],[29,-69],[0,0],[-4,-18],[-14,-56],[0,-1],[-1,0],[0,-1],[-1,-1],[0,0],[-2,-1],[-1,-1],[-6,-4],[-10,-6],[-9,-4],[-5,-3],[0,0],[-4,1],[-2,1],[-2,0],[0,0],[-28,21],[-85,64],[-4,4],[-3,3],[-8,9],[-13,17],[-18,39],[-22,45],[15,122],[9,74],[28,12],[42,18],[2,0],[0,0],[1,0],[1,0],[1,1],[10,-5],[4,-2],[4,-2],[1,0],[0,-1],[0,0],[12,-11],[0,-1],[1,-1],[6,-7],[12,-14]],[[88014,53558],[22,-41],[-14,-96],[-8,-53],[-17,-44],[-16,-20],[-1,-1],[-5,-3],[-16,-10],[-1,0],[-15,-3],[-1,1],[-1,1],[12,22],[1,1],[30,68],[14,67],[7,32],[0,1],[0,0],[0,3],[1,3],[1,13],[1,7],[0,1],[0,1],[-1,2],[0,3],[0,1],[0,1],[0,1],[-1,1],[-1,3],[-8,22],[-2,6],[0,0],[-8,-5],[0,0],[1,10],[17,10],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[3,-3],[0,-1]],[[86629,53765],[-2,-2],[-2,-2],[-4,0],[-3,0],[-2,0],[-1,0],[-1,1],[-1,1],[-17,24],[-10,23],[4,17],[6,4],[0,0],[23,-43],[5,-9],[5,-14],[0,0]],[[86396,53817],[-1,-1],[0,-1],[-1,0],[0,0],[0,0],[-1,1],[-2,1],[-3,2],[0,0],[-1,0],[-6,10],[-6,9],[-1,0],[0,1],[0,1],[-1,1],[0,3],[0,0],[0,1],[0,1],[1,0],[1,4],[0,0],[1,1],[1,1],[1,1],[1,1],[1,0],[2,2],[1,0],[0,0],[1,0],[0,0],[1,0],[0,0],[1,0],[1,0],[2,0],[0,0],[0,0],[1,0],[1,-1],[0,-1],[0,0],[0,0],[1,-1],[3,-4],[2,-3],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[-2,-23],[0,-1],[0,-1],[0,-1]],[[86483,53868],[11,-29],[0,0],[0,-2],[2,-12],[-1,-3],[-2,-2],[0,0],[0,-1],[-2,-3],[0,0],[0,-1],[-1,0],[0,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,0],[-7,2],[-4,1],[-5,9],[-2,4],[1,27],[0,15],[0,1],[0,1],[1,2],[0,2],[0,1],[1,0],[0,1],[0,0],[1,1],[1,0],[1,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,0],[1,-1],[2,-3],[0,-1],[1,-2],[1,-2],[0,0],[0,0],[0,-1]],[[86321,54099],[1,-5],[2,-10],[0,-1],[1,-6],[0,0],[-15,-11],[0,0],[-8,13],[-1,1],[-1,1],[-2,5],[-7,19],[-6,18],[-7,70],[0,1],[0,2],[0,0],[1,0],[0,0],[2,0],[0,-1],[2,-3],[1,-1],[1,-1],[0,0],[1,-2],[0,-1],[2,-3],[12,-23],[0,0],[0,0],[1,-2],[0,-1],[3,-5],[1,-1],[16,-53]],[[86273,54219],[-9,-5],[-2,0],[-1,0],[-1,0],[0,0],[0,1],[-1,1],[-2,4],[-7,25],[2,3],[4,6],[0,0],[8,-14],[9,-17],[0,-1],[0,0],[0,-1],[0,-1],[0,-1],[0,0],[0,0]],[[84143,54448],[-1,-1],[0,0],[-3,-2],[-3,0],[-2,2],[-1,1],[0,0],[0,1],[-2,4],[-1,2],[-1,5],[0,1],[-1,1],[0,1],[0,0],[0,19],[-1,33],[1,38],[0,3],[4,34],[0,1],[0,0],[1,2],[3,23],[2,13],[0,2],[0,1],[0,0],[1,0],[2,4],[2,1],[1,0],[1,1],[1,0],[0,0],[1,0],[1,0],[0,-1],[1,0],[0,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-8],[1,-5],[0,0],[0,-1],[1,-3],[3,-34],[0,-1],[0,-2],[-2,-29],[0,0],[0,-2],[0,-3],[0,-1],[0,0],[0,-4],[-1,-4],[0,-6],[-4,-44],[0,-1],[0,0],[0,-1],[-2,-10],[0,-1],[0,0],[0,-4],[-1,-4],[-1,-4],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,-2]],[[88896,31423],[3,-25],[0,0],[-61,-11],[0,0],[1,1],[1,3],[-20,21],[0,0],[-32,-63],[77,-36],[9,-1],[10,-1],[10,1],[16,-64],[0,0],[-118,-50],[-145,-19],[-19,-10],[-64,-56],[-1,-1],[-1,-2],[0,0],[11,72],[0,0],[19,19],[63,64],[29,98],[2,8],[0,28],[-10,26],[-23,57],[8,61],[0,5],[0,0],[51,8],[41,7],[19,-9],[32,-16],[92,-115]],[[91664,36731],[49,-14],[12,-11],[8,-6],[0,0],[-27,13],[-25,8],[-20,5],[-42,1],[-38,2],[-41,-81],[-19,-37],[0,0],[20,-50],[4,-10],[9,-11],[18,-26],[58,-49],[8,0],[23,0],[64,-193],[4,-64],[55,-127],[53,-34],[127,153],[125,66],[125,67],[0,0],[-27,-47],[-27,-46],[71,-127],[117,51],[0,0],[-29,17],[-32,19],[0,0],[4,17],[23,94],[168,10],[0,0],[-46,-97],[-31,-65],[-118,-35],[-26,-29],[0,0],[137,-10],[13,-1],[-38,-16],[-36,-68],[-1,-8],[-11,-68],[12,-52],[2,-4],[3,-7],[23,-30],[97,-133],[-469,-732],[-94,-226],[-39,-54],[-156,-103],[-152,-260],[0,0],[-25,-220],[0,0],[108,34],[103,-31],[46,-59],[15,-19],[0,0],[-22,-69],[-4,-12],[-9,-6],[-47,-32],[-166,50],[-75,-11],[-154,-24],[-388,-210],[-60,-49],[-117,-97],[-26,-36],[-24,-35],[-58,-257],[-68,-311],[-252,-569],[-31,-109],[0,0],[45,19],[16,6],[0,0],[11,-26],[0,0],[-120,-42],[-91,-32],[-46,-62],[-63,-130],[-291,-245],[0,0],[4,-3],[5,-4],[0,0],[31,5],[4,1],[3,1],[0,0],[-71,-69],[-57,-17],[-233,-70],[-121,8],[-192,66],[-105,36],[-87,114],[0,0],[-53,16],[-224,67],[-260,34],[-309,40],[-53,71],[0,0],[3,5],[46,84],[0,0],[-70,28],[-70,-15],[-16,-4],[0,0],[-2,17],[-19,109],[0,0],[5,12],[9,24],[76,34],[126,55],[0,0],[-37,110],[-16,-1],[-17,-2],[0,0],[-9,22],[0,0],[74,194],[39,33],[0,0],[67,-39],[34,-20],[-39,128],[-1,4],[5,40],[81,108],[98,129],[159,126],[212,28],[0,0],[-30,58],[70,207],[203,273],[227,85],[141,53],[430,305],[320,282],[-3,3],[-8,9],[-12,-2],[-7,-9],[-4,-4],[0,0],[38,58],[108,56],[77,40],[152,134],[39,53],[72,97],[74,138],[7,17],[50,124],[68,263],[56,216],[0,0],[106,18],[26,5],[95,97],[22,37],[81,140],[25,95],[3,11],[0,0],[3,319],[0,0],[6,11],[32,50],[131,122],[46,34],[133,101],[108,-9]],[[91848,41446],[11,-92],[2,-21],[18,2],[22,2],[29,10],[37,14],[117,-50],[73,-31],[67,8],[39,5],[50,-51],[0,0],[-20,-61],[-7,-20],[0,0],[97,-90],[1,-2],[36,23],[0,0],[-3,5],[-10,14],[33,16],[14,-12],[38,-37],[16,-63],[9,-39],[124,-336],[0,0],[-79,48],[-59,36],[0,0],[-7,-49],[-4,-30],[251,-402],[0,-42],[0,-23],[-38,-25],[-2,-2],[17,-93],[41,-218],[-3,-23],[-38,-1],[-3,-1],[0,0],[-7,8],[-32,34],[0,0],[19,-99],[0,0],[-2,21],[12,-2],[2,0],[0,0],[41,25],[35,-2],[27,-2],[5,-8],[31,-26],[36,-30],[76,-65],[99,-84],[130,41],[-25,264],[-29,60],[-60,121],[0,0],[4,6],[19,36],[0,0],[15,-11],[81,-57],[44,-173],[40,-23],[79,-47],[42,-156],[-12,-145],[37,-309],[13,-32],[7,-18],[62,-15],[61,-15],[0,0],[-5,-41],[1,-4],[0,-1],[39,10],[70,-28],[66,-26],[194,-96],[154,-76],[-2,-12],[-2,-15],[52,-17],[17,5],[133,39],[23,17],[43,30],[151,206],[63,57],[60,54],[72,-3],[98,-5],[83,-57],[20,-14],[-2,-25],[-7,-122],[-17,-105],[-58,-370],[-174,-242],[-26,-117],[-46,-209],[0,0],[-142,0],[-136,-1],[-216,-110],[0,0],[-72,-120],[-17,-111],[-1,-11],[0,0],[35,-59],[48,-80],[-85,-353],[-237,-397],[-35,-69],[-216,-428],[-35,-52],[-26,-37],[-178,-167],[-38,-36],[-144,-98],[0,0],[-39,2],[-9,0],[0,0],[-200,310],[-29,5],[-18,-21],[-19,-24],[1,8],[32,148],[131,228],[29,86],[47,135],[20,191],[-24,118],[-14,68],[-70,88],[-72,90],[-561,299],[0,0],[-6,7],[-87,102],[-2,6],[-21,99],[0,0],[0,2],[23,70],[30,33],[0,0],[52,36],[142,96],[133,13],[30,36],[53,61],[20,47],[3,9],[8,34],[80,425],[19,103],[45,-11],[32,55],[0,0],[-15,46],[-53,163],[22,67],[0,0],[-104,396],[0,0],[1,23],[8,147],[0,0],[38,-72],[75,83],[0,0],[-49,38],[-18,14],[0,0],[11,15],[11,15],[0,0],[0,1],[0,1],[22,2],[0,0],[6,18],[-211,-12],[-28,96],[-14,47],[-17,34],[-1,13],[-6,78],[54,-26],[-12,258],[0,0],[-18,7],[0,0],[0,-1],[-11,-34],[0,0],[-30,46],[-1,3],[37,150],[0,0],[-85,3],[-97,-84],[-37,-32],[-355,586],[-15,36],[33,84],[0,0],[10,10],[14,16],[8,-6],[27,-23],[0,0],[14,19],[26,51],[0,0],[3,26],[0,0],[-18,0],[-19,0],[-59,-81],[-55,-75],[0,0],[-100,160],[-15,59],[-14,58],[0,0],[6,11],[26,47],[-18,103],[-28,54],[-59,108],[-87,134],[-27,42],[89,120],[7,10],[0,0],[2,-42],[2,-34],[-13,-56],[36,-27],[79,-145],[39,-72]],[[90,127884],[-69,-78],[-21,-12]],[[0,127860],[90,24],[0,0]],[[451,128006],[-25,-51],[-7,-15],[258,169],[8,9],[17,18],[-9,65],[-3,18],[59,29],[80,-34],[77,-34],[12,-75],[6,-41],[0,0],[-5,-11],[-39,-85],[-113,-3],[-50,-1],[-34,-13],[-30,-11],[-136,-69],[-112,-91],[-153,53],[-151,-67],[-49,49],[0,0],[174,184],[64,36],[28,178],[31,49],[4,7],[0,0],[66,37],[82,-1],[13,-3],[16,-3],[0,0],[15,-30],[14,-25],[0,0],[-1,-22],[-3,-60],[-46,-94],[-14,-28],[0,0],[-5,-4],[-39,-30]],[[192,128224],[36,-87],[14,-34],[0,0],[-5,-38],[-132,-52],[-87,-35],[-18,1]],[[0,128179],[66,20],[0,0],[-56,78],[-3,4],[-2,47],[0,0],[86,23],[16,-7],[24,-81],[61,-39]],[[1632,128809],[77,-58],[79,-59],[0,0],[-43,-199],[0,0],[-95,-29],[-59,-1],[-96,-1],[-30,8],[-17,4],[0,0],[22,21],[0,0],[-25,10],[-169,-127],[-177,-2],[1,66],[91,133],[98,144],[-5,11],[-9,19],[0,0],[153,58],[50,-1],[102,-3],[28,3],[24,3]],[[2287,128918],[-103,-21],[0,0],[-15,-36],[0,0],[15,-3],[0,0],[-46,-64],[-109,-12],[-163,-18],[-121,38],[0,0],[5,9],[12,23],[163,95],[251,-23],[0,0],[-10,92],[0,0],[-48,44],[26,24],[67,-3],[97,-45],[43,-48],[0,0],[-37,-31],[-27,-21]],[[2528,129020],[-142,-32],[-119,59],[-116,58],[0,0],[57,38],[71,48],[97,23],[77,19],[14,-9],[82,-58],[31,-90],[-38,-41],[-14,-15]],[[4985,129662],[30,-81],[1,-4],[0,0],[-2,-18],[-2,-23],[0,0],[-75,-48],[-93,-61],[-59,-19],[-43,-13],[-43,8],[-142,97],[21,36],[11,17],[121,66],[74,-18],[53,11],[85,17],[0,0],[3,18],[0,0],[-46,27],[10,3],[37,14],[8,-4],[51,-25]],[[4600,129612],[-472,-18],[0,0],[4,44],[6,67],[0,0],[222,23],[229,23],[133,75],[101,57],[41,-17],[12,-4],[19,-16],[34,-29],[-69,-43],[-260,-162]],[[88206,70193],[1,-2],[1,0],[1,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-3],[-6,-17],[-1,-1],[0,-1],[0,0],[-3,-2],[-1,-1],[0,0],[0,0],[-2,0],[-1,0],[-1,0],[0,0],[-2,0],[-3,2],[0,1],[-1,1],[-1,1],[-1,0],[0,0],[0,1],[-1,2],[-1,1],[0,0],[-1,1],[0,0],[1,1],[0,4],[1,3],[0,1],[1,1],[0,2],[0,0],[1,0],[0,1],[4,6],[7,10],[2,0],[0,0],[1,1],[1,0],[0,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,0]],[[23512,53149],[32,-4],[1,-1],[2,0],[2,0],[15,-3],[1,0],[25,-13],[12,-7],[1,0],[1,-1],[1,0],[2,-1],[1,-2],[10,-16],[1,-1],[82,-166],[1,-1],[0,-1],[1,-3],[3,-14],[1,-11],[-15,-129],[-2,-10],[-1,-2],[0,-2],[-2,-2],[-5,-4],[0,-1],[-1,-1],[-1,0],[-15,-7],[-2,0],[-64,-18],[-17,2],[-10,2],[-43,16],[-28,11],[-31,20],[-43,36],[-14,12],[-21,29],[-7,18],[-30,95],[6,70],[32,78],[43,26],[50,15],[26,-9]],[[61889,85982],[169,-82],[66,13],[69,81],[1,3],[76,-177],[-73,-319],[32,-233],[30,-122],[90,-68],[50,-145],[-17,-205],[-138,-478],[-87,-84],[-196,-119],[-89,-110],[-100,-453],[121,-591],[25,-223],[70,-244],[98,-109],[169,-75],[40,61],[2,40],[-20,177],[67,43],[151,-2],[21,13],[-2,40],[96,-53],[113,-177],[29,-143],[-28,-101],[28,-27],[80,-13],[47,47],[31,188],[44,-76],[282,-107],[24,-67],[-225,8],[-30,-121],[269,-405],[101,-72],[-15,-258],[-35,-130],[-52,2],[-68,96],[-16,69],[7,109],[21,-10],[30,-8],[42,22],[7,73],[-218,-48],[-172,95],[-130,371],[-224,283],[-126,116],[-57,-15],[35,-158],[66,-177],[-50,-180],[-18,78],[-89,146],[-341,329],[-146,-95],[-28,-130],[-78,-64],[-120,4],[-84,121],[-169,22],[-33,117],[-2,237],[211,217],[7,13],[1,29],[-18,87],[-71,97],[-167,67],[-6,-19],[-2,-60],[43,-211],[-26,-51],[-62,6],[-38,22],[-47,146],[-15,158],[-130,129],[-69,421],[13,28],[-35,294],[-29,85],[-47,-40],[-11,29],[16,307],[18,33],[53,22],[8,-114],[137,-177],[93,22],[62,82],[-50,163],[-13,230],[70,413],[14,240],[-8,96],[-3,9],[-3,5],[-4,0],[-3,-6],[4,183],[26,235],[63,346],[37,75],[114,93],[71,-67],[168,-5],[205,-162]],[[61643,75664],[28,-26],[77,2],[-61,-101],[-195,6],[-25,26],[11,69],[68,61],[50,9],[47,-46]],[[62222,76016],[-122,-39],[-98,172],[162,105],[116,-77],[-58,-161]],[[64619,78092],[12,-82],[-87,-124],[-15,-137],[98,-150],[21,-378],[62,-100],[55,-145],[19,-258],[-86,-235],[-94,-79],[-45,29],[-30,-40],[38,-83],[7,-111],[-24,-307],[-62,185],[-2,71],[-57,308],[-79,273],[-116,-76],[-146,-340],[-10,-94],[8,-80],[51,-16],[63,-85],[67,-226],[-1,-142],[-23,-92],[-144,-301],[-70,9],[-61,209],[-58,35],[-32,-19],[-124,36],[-297,198],[-66,62],[-80,147],[-50,331],[62,309],[51,45],[42,120],[-5,60],[-127,193],[-183,138],[-69,32],[-88,-32],[-25,-177],[-49,-71],[-58,64],[-5,19],[-45,87],[-167,-167],[2,5],[-7,181],[-59,35],[-50,-7],[-52,-47],[-60,-112],[-107,-334],[0,-68],[-55,-162],[-27,-18],[-99,65],[-20,146],[136,352],[-16,167],[68,167],[70,65],[199,68],[174,111],[53,222],[236,106],[44,-53],[13,62],[57,-12],[37,-37],[60,-216],[9,-148],[-86,-95],[45,12],[161,110],[249,322],[103,-85],[37,16],[21,357],[143,-13],[230,57],[56,34],[-6,208],[-68,327],[7,95],[21,34],[30,-15],[102,-161],[132,-147],[241,-407]],[[63427,78645],[-117,-8],[-115,40],[-43,105],[34,110],[97,58],[92,157],[69,15],[32,-32],[0,-2],[0,-2],[102,-227],[42,-36],[-114,-133],[-79,-45]],[[62796,78214],[-95,-33],[-42,41],[-293,482],[54,264],[99,5],[77,60],[21,77],[25,373],[32,183],[102,127],[41,22],[173,-74],[17,-60],[-188,-707],[-57,-285],[41,-125],[73,-135],[-8,-89],[-72,-126]],[[62903,78500],[-30,-7],[40,359],[269,751],[68,287],[49,-113],[-4,-5],[-1,-275],[-119,-317],[-119,-211],[-89,-352],[-64,-117]],[[60661,79726],[46,-188],[22,0],[56,-113],[-6,-31],[-69,-84],[-70,-16],[-78,-56],[-46,-94],[-189,-182],[-93,-36],[-24,-263],[-135,-266],[-58,-64],[-143,-65],[-74,-212],[-125,-130],[-148,-104],[-167,-187],[-19,-34],[-17,37],[16,90],[45,128],[191,310],[150,182],[84,10],[225,364],[211,278],[130,282],[65,44],[17,-26],[106,193],[10,79],[50,13],[8,102],[-18,156],[5,207],[71,41],[-29,-365]],[[63863,79937],[126,-633],[-3,-117],[-113,-162],[1,-33],[-130,98],[-27,50],[4,314],[23,86],[-11,88],[-109,200],[-30,-37],[-82,36],[-67,427],[21,28],[136,-187],[236,-4],[25,-154]],[[63619,80216],[-72,-8],[-41,77],[1,23],[-35,75],[56,24],[62,-29],[48,-114],[-19,-48]],[[62543,79637],[-472,-246],[69,547],[35,465],[-20,33],[-122,30],[28,105],[27,24],[44,-42],[490,-374],[9,-4],[144,-14],[-34,-206],[-35,-33],[-144,-153],[12,-69],[-31,-63]],[[60903,80923],[149,-168],[25,9],[6,46],[23,-50],[-56,-84],[-61,-13],[-103,160],[-9,87],[26,13]],[[63204,80839],[90,-182],[24,-237],[-163,168],[-112,180],[-99,48],[-89,-30],[-3,250],[27,99],[20,-21],[5,-58],[162,-97],[138,-120]],[[63958,81123],[70,-89],[15,-48],[-13,-78],[54,-26],[42,-146],[-14,-212],[5,-185],[58,-168],[-1,-196],[-15,-62],[-179,0],[-125,213],[-32,321],[-144,210],[-73,51],[-134,250],[-15,69],[16,76],[185,-25],[94,19],[38,30],[36,4],[49,-34],[69,42],[14,-16]],[[62205,81205],[-75,-443],[-36,37],[3,42],[6,-23],[9,-6],[15,38],[-47,44],[42,212],[29,67],[54,32]],[[61216,81926],[167,-44],[135,28],[132,-64],[170,-233],[18,-69],[-9,-276],[1,-153],[-97,-198],[-29,-22],[-107,15],[7,7],[1,17],[-129,270],[-124,405],[-168,211],[-27,-10],[-21,36],[21,65],[59,15]],[[62194,81817],[-61,-161],[-98,83],[-21,52],[-4,66],[34,103],[133,-107],[17,-36]],[[63479,81989],[-81,-46],[-84,49],[-20,47],[59,335],[37,25],[69,-157],[52,-109],[-32,-144]],[[62136,82929],[-54,-79],[-16,17],[-47,253],[15,73],[50,13],[46,-21],[-5,-60],[-28,-50],[18,-54],[13,-12],[8,-80]],[[69458,76937],[-12,-66],[-17,-73],[-6,-25],[-18,-24],[-4,-1],[-1,0],[0,0],[-1,2],[-5,9],[-3,7],[-15,41],[-9,24],[5,28],[5,31],[21,68],[5,14],[2,4],[43,81],[0,0],[4,-5],[7,-8],[-1,-107]],[[69169,76407],[0,0],[1,0],[1,-1],[0,0],[2,-3],[2,-4],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[0,0],[0,0],[-1,-1],[0,0],[-8,-12],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[0,0],[1,2],[0,0],[0,1],[2,7],[2,9],[1,4],[1,5],[0,0],[4,0],[1,1],[0,0],[0,-1],[2,0]],[[69236,76472],[-14,-21],[-2,-1],[0,0],[0,0],[-1,1],[0,3],[-1,2],[0,7],[0,8],[0,0],[0,1],[0,2],[0,1],[0,0],[0,2],[1,1],[0,2],[0,0],[1,1],[6,10],[10,17],[5,4],[1,0],[0,0],[1,0],[0,0],[0,0],[0,0],[0,0],[1,-1],[-1,-2],[0,-4],[-7,-33]],[[69310,76611],[-1,-4],[-1,-16],[-1,-2],[-8,0],[-8,1],[-1,0],[-1,1],[0,0],[-1,2],[0,0],[0,0],[-1,3],[0,1],[0,1],[-1,0],[0,2],[0,11],[0,1],[0,1],[0,2],[0,0],[1,0],[1,1],[0,0],[1,0],[8,2],[9,3],[1,0],[1,0],[0,0],[1,-4],[0,-3],[1,-1],[0,-1],[0,-1],[0,0]],[[69350,76726],[0,-3],[0,-2],[-4,-23],[0,-2],[-36,-39],[-2,0],[-1,0],[-2,1],[-1,2],[-8,12],[-4,6],[-5,7],[0,0],[1,0],[0,0],[1,0],[1,0],[0,0],[0,0],[1,0],[0,0],[1,-1],[1,-1],[1,0],[1,-2],[4,-4],[0,-1],[1,-1],[2,-4],[4,-1],[3,-1],[0,0],[9,11],[12,18],[9,13],[5,13],[0,2],[0,2],[-1,1],[0,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,0],[0,0],[-1,1],[0,1],[-1,0],[-1,5],[0,0],[11,-10],[0,0],[1,-3],[0,0],[0,-1],[0,-1],[1,0],[0,-1]],[[69360,76766],[14,-2],[2,-17],[2,-11],[0,0],[-14,12],[-12,11],[-2,1],[-1,1],[-4,5],[-1,2],[0,0],[0,0],[-1,1],[0,1],[0,1],[-1,2],[2,-1],[0,0],[1,0],[0,0],[1,-1],[7,-2],[1,0],[1,-1],[1,0],[1,-1],[0,0],[1,0],[0,0],[0,-1],[2,0]],[[80552,60894],[-128,-10],[-7,16],[-4,9],[-15,12],[-13,10],[-133,127],[-29,28],[0,0],[-5,27],[-2,14],[0,0],[19,16],[284,-163],[26,-40],[15,-24],[-8,-22],[0,0]],[[78813,62494],[225,-238],[0,0],[23,48],[50,18],[0,0],[10,-65],[-42,-143],[0,0],[-67,24],[-57,20],[-88,222],[0,0],[-33,42],[-18,-8],[0,0],[-1,14],[-2,66],[0,0]],[[78914,62552],[-4,-3],[-43,-29],[-214,36],[0,0],[-16,141],[0,0],[24,115],[75,-50],[60,-7],[18,-2],[0,0],[71,-86],[29,-115]],[[78596,62767],[-1,-5],[-25,-109],[-111,89],[-31,66],[5,26],[6,35],[29,41],[38,15],[22,-17],[7,-5],[31,-39],[23,-75],[7,-22]],[[79973,63078],[150,-123],[-35,-65],[0,0],[-73,-20],[-41,31],[-59,45],[18,70],[-116,53],[-19,-7],[-18,-6],[0,0],[0,-20],[0,-6],[0,2],[-19,66],[35,18],[16,8],[121,-34],[40,-12]],[[81836,65000],[-4,-9],[-26,-63],[0,0],[-6,45],[0,0],[-55,-19],[0,0],[-56,-82],[0,0],[-11,2],[-98,21],[-6,5],[-97,85],[-71,111],[-27,41],[0,0],[-3,30],[-24,208],[0,0],[-22,20],[-79,73],[-132,215],[-17,144],[27,184],[0,0],[57,-8],[123,-32],[31,-90],[36,-102],[144,-254],[118,-97],[110,-139],[14,-28],[35,-74],[27,-129],[12,-58]],[[77260,65904],[-37,-162],[0,0],[-37,40],[0,0],[-98,269],[0,0],[67,-42],[60,-36],[45,-69]],[[81058,66432],[44,-138],[-10,-178],[-27,-47],[-12,-20],[0,0],[-36,156],[8,138],[-31,-10],[37,57],[27,42],[0,0]],[[79402,67097],[92,-52],[43,-24],[54,70],[5,6],[69,-12],[81,-90],[3,-155],[3,-123],[-26,-137],[-54,-106],[0,0],[-48,-27],[-62,-198],[30,-53],[17,-30],[-6,-64],[-17,-35],[-109,-80],[-69,4],[-166,9],[0,0],[-9,-63],[-10,-77],[-64,-100],[-13,-20],[-39,-41],[-60,-64],[-85,-36],[-26,-11],[0,0],[-9,-1],[-90,-7],[-150,-125],[-127,-72],[-109,-3],[-96,-2],[-26,-5],[-38,-6],[-51,-3],[-55,-2],[0,0],[-73,42],[-57,117],[0,0],[-72,31],[0,0],[-15,1],[-171,18],[0,0],[-48,30],[-304,189],[-47,64],[-1,4],[-7,40],[21,124],[23,23],[18,19],[598,-92],[0,0],[241,27],[52,110],[45,302],[26,15],[16,9],[33,-29],[21,-19],[-51,-51],[-43,-149],[37,-185],[106,-35],[264,45],[159,120],[44,175],[163,197],[0,0],[131,-39],[0,0],[6,4],[31,28],[19,89],[-34,261],[-38,76],[-8,18],[-27,125],[-6,29],[13,12],[4,4],[52,-5],[96,-9]],[[80053,66591],[-4,-3],[-7,-7],[0,0],[-116,343],[0,206],[-92,232],[-118,218],[-80,88],[-29,31],[-99,70],[-146,103],[-305,302],[-108,106],[-97,120],[35,21],[0,0],[170,-163],[46,-44],[183,-114],[244,-207],[54,-45],[12,-21],[70,-111],[306,-342],[6,-8],[154,-242],[27,-34],[14,-145],[-11,-79],[-14,-96],[-95,-179]],[[78627,68426],[-61,-28],[-145,53],[-58,78],[-7,9],[87,73],[37,30],[0,0],[60,-42],[55,-39],[22,-19],[12,-11],[3,-13],[8,-33],[-13,-58]],[[76817,68910],[0,-4],[1,-14],[-14,0],[-2,0],[0,0],[-72,-121],[-178,8],[-132,5],[0,0],[-8,17],[-16,35],[8,106],[180,28],[0,0],[96,-3],[61,-25],[76,-32]],[[754,137582],[92,-10],[36,-4],[63,-72],[77,-9],[85,-10],[6,3],[9,3],[22,6],[20,3],[8,2],[43,-3],[2,0],[137,-22],[83,-22],[82,-21],[40,-17],[41,-16],[1,-1],[2,-1],[41,-18],[1,-1],[0,0],[88,-48],[1,0],[1,-1],[1,-1],[13,-7],[16,-10],[1,-1],[0,0],[2,-3],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[4,-6],[0,0],[0,0],[-1,0],[-23,-15],[-2,-1],[-3,-1],[0,0],[-1,-1],[0,0],[-1,0],[-12,-5],[-4,-1],[-135,-62],[-45,-28],[-30,-17],[0,0],[2,-6],[26,-124],[19,-24],[92,28],[33,14],[3,1],[15,12],[34,26],[20,45],[9,36],[4,19],[1,1],[68,27],[4,1],[2,1],[13,3],[1,0],[1,0],[1,0],[2,0],[25,1],[1,0],[0,0],[15,-3],[6,-1],[2,0],[0,0],[172,-42],[1,0],[2,-1],[32,-9],[1,0],[1,0],[0,0],[1,-1],[1,0],[8,-4],[11,-6],[17,-8],[73,-87],[15,-31],[3,-6],[-32,-61],[-11,-21],[0,0],[-1,-1],[-8,-3],[-6,-2],[-2,-1],[-2,0],[-7,-2],[-7,-2],[-21,-5],[-1,0],[19,-24],[0,0],[82,-59],[0,0],[1,0],[6,-5],[3,-2],[1,0],[0,0],[2,-1],[22,-6],[108,-8],[1,0],[1,0],[0,1],[1,0],[53,8],[2,0],[0,0],[5,1],[1,0],[1,1],[1,0],[8,6],[1,1],[1,0],[0,1],[106,3],[156,-17],[37,-11],[44,-69],[22,-35],[132,-25],[222,-42],[434,-65],[1,0],[6,0],[2,0],[2,0],[1,0],[1,0],[3,0],[20,-2],[1,0],[1,0],[0,0],[26,-3],[17,-2],[33,-8],[12,-3],[25,-17],[0,0],[-9,-32],[-9,-27],[-51,-41],[-6,-4],[-162,-28],[-1,0],[-10,0],[0,0],[-1,0],[-2,-1],[-1,1],[-6,1],[-1,0],[-12,2],[-12,3],[-12,4],[-32,8],[-18,6],[-79,17],[0,0],[-168,-16],[-42,-5],[-37,-4],[-353,-47],[-51,-11],[-62,-14],[-156,-86],[-112,-11],[-68,-21],[0,0],[3,-153],[4,-57],[0,0],[-191,-122],[0,0],[-26,3],[-1,1],[-1,0],[-2,0],[-10,0],[-16,0],[0,0],[-1,0],[-83,-11],[-23,-20],[0,0],[0,-19],[-2,-51],[-1,-55],[13,-130],[-51,-149],[-53,-33],[0,0],[-121,2],[-56,2],[-95,-3],[-4,0],[0,0],[-1,0],[-16,-3],[-23,-27],[-4,-5],[-37,-44],[-36,-43],[-13,-18],[-30,-40],[-105,-154],[-27,-39],[-50,-82],[-53,-86],[-22,-66],[0,0],[31,-9],[1,-1],[0,0],[2,0],[16,-10],[40,-24],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-3],[0,-1],[0,-2],[0,-2],[-2,-2],[-6,-6],[0,0],[-48,-37],[-59,-42],[-73,-21],[-3,-1],[-8,-2],[-25,-5],[-1,-1],[-1,0],[-2,0],[-32,-3],[-9,-1],[-1,0],[-1,0],[-1,0],[0,0],[-3,0],[-1,0],[0,0],[-2,0],[-10,1],[-31,1],[-11,1],[-10,1],[-2,0],[-1,0],[-108,20],[-36,45],[-75,60],[-192,64],[-185,62],[-15,2],[-8,1],[-1,0],[0,0],[-6,3],[0,0],[-1,1],[0,0],[1,1],[3,8],[5,9],[2,1],[10,6],[2,1],[20,5],[1,1],[128,26],[12,3],[8,1],[65,11],[58,9],[2,0],[4,1],[18,3],[1,0],[0,0],[7,0],[1,0],[20,-1],[1,0],[1,0],[7,-1],[12,-2],[0,-1],[1,0],[1,0],[0,0],[0,0],[0,0],[17,-7],[8,-4],[0,-1],[2,-2],[2,-2],[3,-4],[133,28],[0,0],[-55,23],[-6,3],[-3,0],[-173,34],[-65,-20],[-36,-11],[-131,-12],[-34,-1],[-73,-1],[-34,0],[-19,1],[-16,3],[-50,8],[-21,5],[-1,0],[0,1],[-1,0],[-5,1],[0,0],[0,0],[-1,0],[-11,3],[-7,2],[-19,4],[-5,11],[-3,8],[-38,47],[-11,15],[-36,8]],[[0,135486],[24,-1],[354,-18],[115,-31],[144,-40],[23,-5],[2,0],[47,-10],[1,0],[1,1],[3,0],[0,0],[0,1],[1,2],[1,1],[0,1],[12,30],[0,1],[-13,6],[-165,56],[-100,21],[-242,21],[-39,2],[-47,3],[-35,0],[-64,-1],[-23,3]],[[0,135596],[86,14],[73,12],[64,7],[25,3],[74,7],[430,39],[154,7],[167,8],[22,17],[50,56],[28,32],[0,0],[-1,0],[0,0],[-46,0],[-1,0],[-1,0],[-4,-1],[-10,-1],[-2,0],[-1,0],[-64,-14],[0,0],[-1,0],[-12,-4],[-2,0],[-1,0],[-1,-1],[-1,0],[0,0],[-24,-11],[0,0],[-4,-2],[-2,0],[-1,-2],[-2,-2],[-2,-3],[0,-1],[-226,-21],[-7,0],[-226,-21],[-1,0],[-21,0],[-2,0],[-68,4],[0,0],[-1,0],[-5,1],[-31,6],[-1,0],[-1,0],[-2,1],[-207,-22],[-191,-20]],[[0,135955],[19,3],[133,66],[79,39],[114,51],[4,1],[1,1],[1,0],[105,28],[4,1],[3,1],[0,0],[1,0],[27,3],[2,0],[128,10],[2,0],[2,0],[2,0],[4,1],[2,0],[8,0],[4,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,0],[0,0],[1,0],[0,0],[11,-1],[10,-1],[10,-1],[2,-1],[25,-3],[37,-4],[60,-5],[47,-4],[42,-1],[58,-3],[4,0],[0,0],[1,0],[80,4],[1,0],[0,0],[1,0],[5,1],[23,2],[175,42],[91,23],[0,0],[-38,21],[0,0],[-1,0],[-12,0],[-11,0],[-23,-4],[-102,-18],[-100,-13],[-38,-6],[-127,22],[-67,12],[-51,14],[0,0],[141,105],[67,31],[62,20],[23,7],[0,0],[8,24],[0,0],[-157,39],[-1,0],[-2,0],[-6,0],[-5,1],[-4,-1],[-12,-4],[-3,0],[-2,-1],[-1,-1],[0,0],[-2,-1],[-18,-12],[-4,-3],[-1,-1],[-18,-21],[-26,-30],[0,0],[-4,-15],[-3,-15],[-32,-22],[-7,-5],[-13,-8],[-16,-6],[-120,-37],[-62,-20],[-193,-21],[-77,-1],[0,0],[-1,0],[-7,1],[-21,3],[0,0],[-1,0],[-32,13],[-39,17],[-1,1],[0,0],[-8,5],[-1,2],[-42,64],[0,0],[26,22],[9,0],[1,0],[4,1],[2,0],[0,0],[52,4],[3,0],[1,0],[39,13],[12,23],[6,11],[10,51],[-15,51],[-8,26],[-1,1],[0,1],[-4,3],[-1,2],[-1,1],[-1,0],[-17,4],[-25,6],[-15,1],[-1,0],[0,0],[-1,0],[-3,-1],[-1,0],[-1,0],[0,0],[-9,-3],[-16,-6],[-14,-15],[-39,-40],[-5,-25],[-2,-8],[0,0],[-108,-28]],[[0,137280],[44,-31],[51,-36],[244,-278],[248,-193],[94,-74],[60,-30],[15,-8],[6,-1],[1,-1],[5,-1],[25,-8],[0,0],[0,0],[3,-1],[5,-1],[2,-1],[3,0],[1,-1],[0,0],[0,0],[1,0],[23,1],[9,1],[2,0],[41,3],[0,0],[1,0],[-1,2],[-1,1],[-1,3],[-6,9],[0,0],[0,1],[-127,109],[-164,184],[-45,83],[-134,249],[-17,37],[-8,17],[-4,13],[-4,13],[-2,12],[-6,40],[3,6],[9,16],[25,7],[1,0],[4,0],[27,2],[10,4],[92,45],[27,52],[2,4],[2,1],[1,1],[0,0],[11,7],[0,1],[1,0],[24,10],[48,17],[36,13],[28,5],[20,2],[0,0],[1,0],[0,-1],[0,0],[8,0],[4,-1],[6,-2]],[[2410,132946],[10,-3],[5,-3],[3,-1],[21,-11],[35,-18],[0,0],[-11,-41],[-10,-10],[-36,-34],[-7,-6],[-6,-4],[-19,-9],[-6,-3],[-17,-3],[0,0],[-8,1],[-4,1],[-1,0],[-1,1],[-75,43],[-24,14],[-31,21],[-38,35],[0,0],[8,7],[13,9],[1,0],[4,1],[6,2],[1,1],[1,0],[17,3],[66,3],[8,1],[34,2],[11,1],[17,2],[1,0],[0,0],[0,0],[2,0],[24,1],[6,-3]],[[5942,134658],[-66,-44],[-29,-28],[-24,-25],[3,-5],[0,0],[-22,-8],[-12,1],[-1,0],[-3,1],[-13,2],[-1,1],[0,0],[0,2],[-1,1],[11,14],[0,1],[6,7],[16,21],[56,41],[210,123],[1,0],[24,11],[2,0],[20,6],[2,0],[2,1],[1,0],[1,0],[11,1],[8,0],[2,1],[0,0],[0,-1],[0,0],[0,-1],[1,-1],[0,-1],[1,-1],[-206,-120]],[[4769,135969],[-17,-6],[-1,0],[-1,0],[-1,-1],[-7,-3],[-6,-3],[-2,-1],[-1,0],[0,-1],[-1,0],[-13,-14],[0,0],[0,-1],[0,-1],[0,0],[0,-2],[0,-3],[0,-3],[1,-12],[2,-13],[0,0],[9,-6],[89,-60],[26,-13],[38,-20],[36,-17],[49,-25],[79,-26],[29,-9],[0,0],[9,1],[65,12],[3,1],[3,1],[1,0],[0,0],[2,0],[1,1],[1,0],[1,0],[32,3],[6,1],[1,0],[2,0],[41,4],[3,0],[0,0],[1,0],[1,0],[26,-4],[2,0],[61,-12],[53,-10],[9,-8],[15,-12],[-76,-147],[-513,-203],[-78,-31],[-154,-60],[-135,-45],[-1,0],[-1,0],[-2,1],[0,0],[-12,3],[-34,7],[0,0],[-4,3],[-5,3],[-14,9],[0,1],[-1,1],[0,1],[0,0],[-1,1],[0,1],[-1,0],[0,0],[1,3],[1,8],[4,3],[3,3],[10,6],[7,3],[5,2],[8,3],[38,64],[36,87],[-12,16],[-36,46],[-16,9],[-66,27],[-45,2],[-106,-32],[-140,-42],[-523,-66],[-12,-1],[-42,-2],[-69,0],[-5,0],[-23,36],[-9,43],[7,8],[20,20],[6,6],[7,7],[21,4],[1,1],[2,-1],[2,0],[1,0],[40,16],[93,36],[211,213],[0,0],[0,2],[0,0],[0,1],[-2,5],[0,0],[0,0],[-1,2],[-2,5],[-1,2],[-2,1],[-1,0],[-2,1],[0,0],[-1,0],[-1,0],[-2,1],[-12,4],[-17,6],[0,0],[-1,1],[0,0],[-1,0],[-1,0],[-2,1],[-2,0],[0,0],[-22,5],[0,0],[-1,0],[-145,28],[-35,13],[-179,66],[0,1],[3,10],[2,6],[2,5],[1,3],[2,3],[1,0],[1,1],[5,3],[0,0],[1,0],[3,2],[41,8],[13,3],[32,6],[62,12],[157,25],[114,13],[88,11],[499,13],[48,7],[77,11],[38,-4],[42,-5],[5,-2],[2,-1],[159,-86],[0,0]],[[3755,136355],[9,6],[6,4],[69,9],[15,2],[1,0],[30,0],[2,0],[91,-21],[28,-6],[1,-1],[0,0],[1,0],[8,-2],[12,-4],[1,0],[0,0],[0,0],[0,-1],[2,0],[31,-19],[0,-1],[1,0],[42,-45],[39,-42],[28,-41],[1,-1],[1,-2],[1,-1],[1,-2],[4,-7],[0,-1],[0,0],[0,0],[1,-2],[3,-17],[0,-1],[0,-1],[-5,-12],[-1,-1],[0,0],[-38,-52],[-33,-13],[-11,-3],[-2,-1],[0,0],[-2,0],[-2,-1],[0,0],[-612,-41],[-26,5],[-75,13],[-51,41],[-30,25],[-61,37],[-154,95],[0,0],[304,67],[87,21],[71,17],[160,4],[28,-2],[24,-2]],[[6940,136442],[10,-4],[9,-3],[0,0],[-23,-20],[0,0],[-1,-1],[-6,-3],[-7,-3],[-2,-1],[-2,-2],[-1,0],[0,0],[-1,0],[-6,-3],[-10,-3],[-12,-2],[-65,-4],[-16,-1],[-81,29],[-54,20],[-15,12],[0,0],[-10,10],[-13,12],[0,0],[-1,2],[-3,5],[-9,12],[-1,1],[0,0],[0,0],[-1,7],[-1,6],[0,1],[0,0],[0,1],[1,1],[5,8],[3,5],[51,16],[0,0],[1,0],[2,0],[11,-1],[7,0],[4,0],[34,-9],[42,-37],[161,-51]],[[7854,136655],[0,0],[2,1],[36,2],[33,2],[154,-7],[2,0],[0,0],[369,-35],[0,0],[-2,-19],[-131,-35],[-77,8],[-7,1],[-26,3],[-4,1],[-1,0],[-3,0],[-1,0],[-1,0],[-13,3],[-14,4],[-23,8],[-4,2],[-27,11],[-5,2],[-9,5],[-14,2],[-1,0],[-3,1],[0,0],[-1,0],[0,0],[-6,0],[-51,1],[-12,1],[-3,-1],[-1,0],[-19,-1],[-3,0],[-83,-7],[-59,-5],[-196,-41],[7,13],[24,45],[169,34],[4,1]],[[8844,136696],[13,0],[2,0],[11,1],[1,-1],[3,0],[9,-1],[2,-1],[20,-7],[0,0],[-2,-2],[0,0],[-1,-1],[-74,-19],[0,0],[-1,0],[-5,0],[-20,0],[-13,3],[-9,4],[-28,20],[0,1],[2,3],[1,2],[1,0],[63,-1],[25,-1]],[[3145,136788],[14,0],[16,-1],[86,-14],[28,-5],[6,-1],[64,-13],[1,-1],[1,0],[0,0],[1,0],[3,-3],[3,-3],[1,0],[0,0],[0,0],[-1,-1],[-1,0],[-7,-5],[-2,-2],[-3,-2],[-23,-8],[-31,-10],[-25,-4],[-5,0],[-135,-17],[-6,0],[0,0],[0,0],[-2,0],[-57,-2],[-1,0],[-79,19],[-34,13],[-10,32],[7,20],[4,12],[0,0],[2,1],[4,2],[0,0],[1,1],[0,0],[1,0],[22,0],[157,-8]],[[2926,136947],[7,-2],[20,-9],[7,-3],[10,-7],[3,-3],[0,-1],[4,-5],[1,0],[0,-1],[0,0],[-1,-2],[0,0],[0,-1],[-2,-3],[-14,-12],[-62,-14],[-5,1],[-5,1],[-9,1],[-5,0],[-3,1],[-4,0],[0,0],[-1,0],[-1,2],[-5,3],[-1,1],[-1,0],[-1,1],[0,0],[12,15],[21,29],[7,4],[1,1],[0,0],[2,1],[1,0],[1,0],[0,0],[1,0],[1,1],[5,0],[2,1],[0,0],[0,0],[2,0],[2,0],[9,0],[1,0]],[[2794,137027],[72,-13],[0,0],[1,0],[1,-1],[2,0],[28,-7],[3,-1],[2,0],[1,-1],[4,-1],[11,-2],[0,0],[32,-11],[39,-12],[1,-1],[0,0],[3,-3],[0,-1],[-1,-1],[-7,-7],[0,0],[0,-1],[-1,0],[-1,0],[-4,0],[-5,-1],[0,0],[-1,0],[-16,3],[-2,0],[0,0],[-2,1],[-184,11],[-3,0],[-2,-1],[-5,0],[-1,-1],[0,0],[-2,0],[-1,0],[0,0],[-1,0],[-1,0],[-8,0],[-5,-1],[-4,0],[-1,0],[-1,0],[-14,2],[-2,0],[-1,0],[-2,0],[-2,1],[-1,1],[0,0],[-6,2],[-11,10],[0,0],[-2,5],[-7,28],[0,5],[3,2],[8,6],[1,0],[2,0],[15,1],[1,0],[0,0],[1,0],[3,0],[0,0],[1,0],[8,-1],[7,-1],[22,-3],[35,-6]],[[7572,137566],[-45,9],[-32,6],[-59,21],[-41,45],[-21,23],[0,1],[0,3],[0,2],[0,1],[0,2],[1,1],[0,0],[11,9],[1,1],[2,0],[1,1],[5,2],[1,1],[2,1],[41,9],[6,2],[88,-9],[55,-14],[89,-24],[38,-10],[3,-2],[14,-5],[1,0],[2,-1],[11,-4],[3,-2],[1,0],[0,0],[1,0],[1,-3],[2,-2],[2,-4],[9,-17],[2,-2],[0,0],[-2,-2],[-2,-3],[-2,0],[0,0],[-1,-1],[-6,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-34,-4],[-46,-8],[-55,-16],[-12,-1],[-28,-3]],[[10537,137782],[1,0],[0,0],[1,0],[1,-1],[2,0],[55,-14],[0,0],[1,0],[2,-1],[5,-1],[120,-37],[1,0],[0,0],[0,-1],[1,0],[2,-2],[3,-1],[3,-2],[0,0],[-9,-23],[-8,-13],[-4,-6],[-32,-19],[-9,-5],[-24,-4],[0,0],[-294,-20],[-90,-8],[-359,-34],[-4,-1],[-4,0],[-38,-5],[-20,-3],[0,0],[-1,0],[0,0],[0,0],[-127,-11],[-4,0],[-39,-1],[-2,0],[0,0],[-9,2],[-41,8],[0,0],[-1,0],[-1,0],[-2,2],[0,0],[0,0],[-40,21],[-15,8],[0,0],[-2,6],[-2,3],[11,25],[0,0],[0,1],[0,0],[6,6],[5,5],[4,3],[1,1],[1,1],[3,2],[7,3],[1,1],[2,1],[0,0],[1,0],[2,1],[2,1],[1,1],[3,1],[22,9],[17,7],[1,0],[2,0],[1,1],[5,1],[5,1],[191,32],[41,10],[15,3],[26,9],[40,14],[130,19],[3,0],[18,2],[1,0],[1,0],[96,9],[136,11],[4,0],[5,0],[0,0],[1,0],[1,0],[3,0],[7,0],[1,0],[27,0],[6,-1],[0,0],[0,0],[17,-1],[2,0],[2,-1],[2,0],[68,-10],[35,-5],[1,0]],[[1940,137841],[10,0],[27,-2],[42,-9],[7,-1],[24,-6],[12,-10],[3,-3],[-6,-4],[-26,-20],[0,0],[64,-1],[48,0],[-6,-13],[-49,-21],[-2,-1],[0,0],[-2,-1],[-15,-3],[-2,0],[-17,-2],[-1,0],[-3,0],[-4,-1],[0,0],[-5,0],[-48,-4],[-23,-1],[-3,-1],[0,0],[-164,31],[0,0],[-6,10],[-6,10],[0,0],[2,25],[0,3],[0,1],[0,0],[1,0],[0,0],[15,6],[33,12],[82,10],[0,0],[0,0],[5,0],[13,-4]],[[5422,137848],[-26,-8],[-2,0],[0,0],[0,-1],[-3,1],[-3,0],[-1,0],[-64,10],[-1,0],[-2,0],[-28,2],[0,0],[-1,0],[-9,2],[-4,1],[-1,0],[-1,1],[-2,0],[-1,1],[-3,2],[-1,0],[0,1],[43,31],[0,0],[1,1],[12,4],[2,0],[2,1],[2,0],[9,1],[1,1],[0,0],[0,0],[1,0],[17,-2],[1,0],[0,0],[9,-2],[13,-3],[0,0],[1,0],[1,0],[49,-30],[0,0],[-1,-1],[0,0],[-1,-2],[-6,-7],[-3,-4]],[[4644,137906],[20,3],[10,1],[34,-1],[13,0],[1,0],[1,0],[2,0],[72,-8],[1,0],[0,0],[0,0],[1,-1],[1,0],[19,-8],[8,-4],[1,0],[1,-1],[1,0],[0,-1],[2,-3],[0,0],[2,-2],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[-1,0],[-40,-66],[-42,-69],[-22,-51],[-17,-39],[113,-10],[113,-10],[255,124],[269,33],[22,1],[71,6],[160,-25],[1,0],[410,-67],[178,-23],[87,-12],[23,8],[3,1],[5,0],[10,0],[3,1],[14,0],[8,1],[2,0],[96,-2],[59,-2],[162,-10],[46,-3],[1,0],[1,0],[11,-1],[17,-2],[0,0],[1,0],[1,0],[5,-1],[1,0],[1,0],[22,-3],[0,0],[1,0],[2,-1],[10,-2],[9,-3],[0,0],[1,0],[50,-16],[118,-40],[0,0],[-28,-39],[-55,-77],[-28,-34],[-30,-35],[-357,-117],[-47,-11],[-73,-18],[-71,-66],[-107,-99],[-35,-34],[-4,-5],[-4,-1],[-83,-24],[-65,-16],[-6,-1],[-10,-2],[-191,-44],[-13,-1],[-2,0],[-9,1],[-90,6],[-1,0],[-20,4],[-3,0],[-2,1],[-2,0],[0,1],[-1,1],[-1,0],[-2,3],[0,0],[-106,15],[-284,-67],[-94,-50],[-153,-5],[-84,-3],[-183,20],[-149,21],[-64,9],[-48,7],[-1,1],[-59,16],[-1,0],[0,0],[-29,11],[-35,14],[0,3],[-1,0],[0,0],[0,2],[-1,6],[3,2],[20,12],[1,1],[1,0],[0,0],[1,0],[2,1],[15,5],[32,11],[1,0],[0,0],[-5,3],[-16,7],[-191,-8],[-92,-4],[-3,0],[-37,-4],[-1,0],[0,0],[-1,-1],[-140,-21],[0,0],[-13,0],[-108,1],[-154,3],[-149,3],[-255,16],[-391,66],[-43,12],[-190,66],[-1,1],[-4,1],[-6,3],[-11,4],[-1,0],[0,0],[-1,1],[-16,20],[-1,1],[0,0],[-3,5],[-1,1],[-2,3],[0,0],[12,6],[0,0],[2,1],[1,0],[1,1],[1,0],[19,6],[0,0],[3,1],[1,0],[182,9],[56,-2],[20,-1],[1,0],[0,0],[19,-2],[8,-1],[1,0],[1,0],[0,0],[2,0],[1,-1],[0,0],[41,-6],[2,0],[3,-1],[0,0],[0,0],[0,-1],[0,0],[1,-1],[2,-2],[0,0],[55,-12],[110,-23],[286,-23],[16,0],[16,0],[37,5],[14,1],[7,1],[10,2],[19,2],[0,0],[-3,1],[-2,1],[-9,4],[-6,2],[-1,1],[-2,0],[-93,15],[-36,6],[-16,2],[-75,10],[-60,5],[-42,1],[-17,-2],[-44,18],[-21,13],[-14,9],[-3,3],[-7,8],[0,0],[36,3],[24,2],[25,2],[36,3],[24,2],[104,7],[172,7],[23,1],[18,0],[42,-4],[1,0],[3,-1],[3,0],[1,-1],[1,0],[26,-3],[32,-4],[2,0],[1,0],[1,0],[1,0],[22,0],[7,1],[13,3],[1,0],[1,0],[1,0],[0,0],[1,0],[2,1],[0,0],[0,0],[5,2],[0,0],[42,71],[3,8],[5,11],[0,1],[-3,3],[-20,6],[-1,0],[-19,1],[-66,5],[-431,-30],[-568,-48],[-372,-5],[-145,-2],[-69,4],[-155,55],[-60,26],[-30,15],[-30,16],[-78,41],[0,0],[32,10],[15,5],[43,10],[0,0],[284,24],[20,0],[7,-1],[0,0],[-7,57],[0,0],[-137,5],[-311,68],[-13,2],[-143,6],[-5,-2],[-1,0],[-5,-1],[-1,0],[0,0],[-2,0],[-3,0],[-18,1],[-1,0],[0,0],[0,1],[1,4],[31,9],[25,8],[108,18],[10,0],[18,2],[36,2],[35,1],[165,7],[164,4],[193,-48],[163,26],[27,101],[109,-24],[130,-29],[0,0],[-5,24],[-13,47],[0,0],[-27,21],[-55,41],[-31,-2],[-34,-1],[-1,0],[-8,1],[-3,0],[-1,0],[0,0],[-10,3],[-2,0],[-20,17],[-6,4],[0,0],[-1,1],[-2,3],[0,1],[-1,1],[-7,10],[-1,1],[0,0],[1,0],[0,1],[3,2],[6,7],[1,2],[2,0],[28,9],[3,1],[1,0],[1,1],[0,0],[19,5],[98,29],[0,0],[74,-15],[276,-59],[45,-23],[255,-129],[12,-11],[4,-4],[3,-2],[3,-3],[1,0],[1,-1],[0,0],[1,0],[14,-3],[13,-3],[1,-1],[0,0],[2,0],[0,0],[1,0],[5,0],[1,0],[1,-1],[104,8],[24,4],[38,5],[88,24],[54,7],[149,12],[26,-38],[24,-36],[55,-42],[189,-93],[104,25],[34,8],[0,0],[16,211],[-10,2],[0,0],[-1,0],[-1,0],[0,0],[-1,1],[-14,7],[-33,16],[-2,1],[-5,4],[-5,4],[-1,0],[0,1],[-1,0],[-2,5],[-4,8],[-1,2],[1,1],[0,1],[1,2],[2,5],[1,2],[1,1],[1,2],[3,3],[11,10],[1,1],[2,0],[6,2],[3,1],[10,2],[24,3],[5,1],[7,1],[1,0],[0,0],[26,3],[3,0],[11,1],[20,0],[14,-1],[3,0],[3,0],[1,0],[1,0],[6,-1],[1,0],[1,0],[0,0],[0,0],[1,0],[2,-1],[0,0],[9,-3],[1,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[1,-16],[0,-2],[-1,-3],[0,0],[82,28],[86,30],[14,-1],[25,-2]],[[2872,137927],[-8,0],[-1,0],[-1,0],[-1,0],[-2,0],[-5,1],[-1,0],[-20,5],[-18,4],[-1,0],[0,1],[0,0],[-3,1],[-4,3],[-1,0],[-1,1],[0,0],[0,0],[0,1],[2,8],[0,2],[0,0],[0,2],[0,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,0],[4,1],[77,22],[1,0],[0,0],[2,0],[5,0],[2,0],[8,-1],[4,-1],[26,-11],[23,-9],[1,-1],[2,-2],[0,0],[1,-1],[0,0],[-1,0],[0,-1],[0,0],[-1,-2],[-1,-1],[-12,-4],[-7,-2],[-16,-5],[-4,-1],[-4,-2],[-4,-1],[-1,0],[0,0],[-3,-1],[-36,-6],[-5,-1]],[[3287,138087],[29,-1],[24,-2],[14,-4],[24,-7],[0,0],[-66,-29],[-76,17],[-7,2],[0,0],[-2,0],[-26,9],[0,0],[-2,1],[-1,1],[0,0],[-4,3],[-5,3],[-2,1],[0,0],[2,2],[2,1],[5,4],[2,0],[0,0],[1,1],[1,0],[3,0],[1,0],[0,0],[13,1],[38,0],[2,0],[0,0],[21,-1],[1,0],[1,0],[1,0],[6,-2]],[[3680,138110],[0,0],[-5,-9],[0,0],[-4,-2],[-16,-7],[-47,-9],[-39,-8],[-1,0],[-1,0],[-6,-1],[-2,0],[0,0],[-5,1],[-2,0],[-1,0],[0,0],[0,0],[-1,1],[-3,2],[-1,0],[-4,2],[-20,11],[-4,6],[-3,6],[0,0],[-1,1],[1,0],[0,0],[2,1],[1,0],[2,1],[6,1],[45,7],[3,1],[1,0],[1,0],[1,0],[1,0],[24,2],[37,3],[0,0],[6,0],[4,1],[1,0],[1,0],[2,0],[27,-11]],[[3428,138132],[15,0],[23,0],[51,-10],[0,-1],[0,-2],[-8,-2],[-1,0],[-2,0],[-21,-5],[-1,0],[-13,-3],[-62,-10],[-48,7],[-79,16],[-34,16],[-31,14],[-3,2],[0,0],[0,0],[-1,1],[0,0],[2,2],[1,0],[0,1],[1,0],[26,6],[2,0],[1,0],[19,2],[2,0],[1,0],[0,0],[1,0],[2,0],[1,0],[0,0],[8,-1],[4,0],[1,0],[0,0],[5,-2],[138,-31]],[[84037,62857],[67,-83],[35,-20],[38,-22],[34,3],[45,3],[122,10],[13,-7],[14,-6],[105,-106],[2,-2],[126,-203],[2,-6],[2,-8],[0,-1],[0,-1],[5,-12],[1,-4],[1,-2],[2,-3],[0,-1],[1,0],[1,-1],[1,-1],[3,-3],[0,0],[0,0],[-212,-37],[-364,72],[-2,1],[0,0],[-4,1],[0,1],[-1,0],[0,0],[-3,3],[-9,10],[-36,48],[-36,58],[-5,14],[-2,6],[-40,119],[-4,115],[0,12],[1,16],[0,1],[0,0],[2,8],[2,6],[0,2],[0,0],[1,0],[1,2],[0,1],[5,6],[3,4],[4,4],[38,28],[26,-10],[10,-10],[5,-5]],[[88233,60897],[2,-6],[1,-2],[0,0],[-1,-4],[-1,0],[0,-1],[0,-1],[-5,-5],[-2,-2],[-15,-14],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,1],[-1,1],[0,0],[-1,3],[0,1],[-1,4],[0,3],[0,2],[0,1],[0,0],[5,14],[1,3],[3,7],[11,5],[0,0],[1,0],[1,0],[0,-1],[0,0],[7,-7]],[[88147,60915],[49,-24],[9,-30],[3,-10],[12,1],[2,-2],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,0],[0,-1],[1,0],[2,-10],[1,-1],[0,-1],[0,0],[-1,-2],[0,-2],[-2,-1],[-1,-1],[-1,-2],[0,0],[-2,0],[-9,-4],[-1,0],[-46,-10],[-4,3],[-13,7],[-11,13],[-7,8],[-14,44],[0,7],[0,12],[4,8],[5,10],[0,0],[20,-6]],[[84245,60984],[16,-12],[115,-94],[7,-36],[14,-75],[0,0],[-206,146],[-2,1],[-7,6],[-6,9],[-12,19],[-5,8],[-1,2],[-4,7],[-7,16],[0,9],[0,3],[0,2],[1,2],[7,11],[1,2],[0,1],[13,15],[1,1],[0,0],[0,0],[0,1],[1,0],[2,1],[1,2],[0,0],[1,-1],[1,0],[0,0],[1,0],[0,0],[1,0],[4,-1],[0,0],[63,-45]],[[84048,61188],[0,0],[13,-7],[3,-2],[1,0],[1,0],[1,-1],[0,0],[15,-16],[1,-1],[1,-1],[0,-1],[1,-1],[1,-5],[1,-1],[0,0],[-1,-2],[0,0],[-1,-1],[-2,0],[-10,3],[-1,0],[-6,1],[-6,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,0],[-1,2],[-2,2],[-6,8],[-7,9],[0,1],[-1,1],[-1,2],[-1,2],[0,0],[0,0],[2,2],[0,0],[0,0],[4,0],[4,0],[1,0]],[[87954,61229],[7,0],[1,-1],[0,-1],[3,-4],[2,-3],[4,-16],[0,0],[-5,-27],[-2,-6],[-4,-12],[-19,-7],[0,-1],[-1,0],[0,0],[0,0],[-9,9],[0,0],[-2,2],[-11,20],[-1,6],[0,0],[0,5],[0,11],[3,9],[10,19],[3,2],[3,2],[0,0],[14,-5],[4,-2],[0,0]],[[85607,61535],[0,0],[0,0],[-2,1],[-5,3],[-1,3],[0,1],[0,1],[4,20],[0,1],[0,0],[0,0],[1,1],[0,1],[0,0],[1,2],[1,1],[1,0],[1,1],[2,2],[3,-1],[1,0],[0,-1],[2,-1],[2,-1],[0,-1],[1,-1],[1,-3],[1,-1],[0,-2],[1,-3],[0,-3],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[-3,-10],[-1,-3],[-1,0],[-2,-2],[-1,0],[0,0],[-7,-1]],[[87681,61583],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-3],[-1,-2],[0,-2],[-1,-2],[-3,-4],[-2,-4],[-1,-1],[-4,-5],[-1,0],[0,-1],[-1,0],[0,0],[0,0],[-8,-4],[-2,-1],[-5,4],[-6,5],[0,2],[0,0],[1,1],[0,1],[0,1],[1,0],[0,0],[1,1],[0,1],[2,1],[2,3],[4,3],[14,14],[4,1],[0,0],[1,1],[1,0],[0,0],[1,0],[4,-2]],[[87507,61650],[0,0],[-1,0],[-1,0],[-2,2],[0,0],[0,0],[1,5],[1,4],[1,1],[0,1],[0,1],[0,0],[2,4],[4,13],[1,1],[1,2],[0,0],[0,1],[3,2],[1,0],[0,0],[0,0],[1,-1],[1,-2],[1,0],[3,-8],[0,-1],[0,0],[1,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,0],[-1,-6],[-1,-1],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-4,-3],[-8,-6]],[[87661,61691],[8,-1],[32,-3],[2,-1],[1,-1],[1,0],[1,-1],[3,-1],[0,0],[1,0],[0,-1],[1,-1],[2,-2],[0,-1],[0,0],[0,-4],[-2,-8],[-11,-20],[-5,-11],[-9,-12],[-29,-39],[-6,-3],[0,0],[-11,4],[-9,-4],[-111,-50],[-2,0],[-2,0],[-1,0],[-1,0],[-2,1],[-11,1],[0,0],[-1,0],[-1,1],[-2,2],[0,0],[-2,5],[-9,24],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,4],[1,8],[3,14],[0,4],[1,2],[1,3],[1,1],[0,1],[0,0],[20,27],[37,33],[18,15],[75,8],[19,-1]],[[87508,61896],[-1,1],[-1,0],[-3,3],[-1,1],[0,1],[0,2],[-1,0],[0,3],[0,1],[0,2],[1,3],[0,0],[0,3],[1,5],[1,2],[0,1],[1,1],[6,4],[1,1],[1,0],[0,-1],[0,0],[1,-1],[1,-1],[4,-6],[1,-1],[0,-1],[0,-2],[1,-3],[0,0],[0,-1],[-1,-7],[0,-2],[-1,-1],[-1,-2],[-5,-3],[-5,-2]],[[87817,62009],[0,0],[-8,-2],[-2,-1],[0,0],[-4,-1],[0,0],[0,0],[-2,1],[0,1],[1,12],[0,3],[0,0],[2,2],[0,1],[1,0],[1,1],[1,0],[0,0],[2,1],[6,3],[1,0],[0,0],[9,2],[1,0],[1,0],[0,0],[1,0],[2,0],[0,0],[0,0],[1,0],[1,-2],[1,-1],[0,-1],[0,-2],[0,0],[0,-1],[-1,-2],[-1,-1],[0,0],[0,-1],[-1,0],[-1,-1],[-12,-11]],[[85206,62049],[1,-1],[0,0],[0,0],[0,-2],[0,-1],[0,0],[0,-4],[0,-1],[-1,-6],[-1,-1],[-1,-5],[-1,-2],[0,0],[0,-1],[-4,-7],[-6,-8],[-2,-3],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,0],[-3,2],[0,0],[-1,0],[-1,4],[-7,25],[-3,10],[1,4],[1,4],[3,16],[0,5],[1,1],[0,0],[1,2],[3,3],[2,0],[2,1],[2,0],[1,0],[0,0],[0,0],[6,-5],[0,0],[0,-1],[1,-2],[2,-2],[2,-4],[3,-5],[2,-6],[4,-11]],[[84988,62092],[42,-33],[47,-37],[285,-159],[57,-68],[8,-9],[35,-60],[27,-47],[0,0],[7,-32],[17,-84],[-38,-2],[-46,-1],[-58,-2],[-71,24],[-23,9],[-10,4],[-14,7],[-19,9],[-31,15],[-24,24],[-42,48],[-33,37],[-35,45],[-16,21],[-1,65],[-10,68],[-4,9],[0,0],[-3,2],[-7,5],[-20,13],[-19,8],[-6,3],[-10,3],[-11,2],[0,0],[-1,-1],[-3,-1],[0,0],[-2,-1],[-1,-2],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[0,0],[-2,0],[0,0],[0,0],[-1,-1],[-9,2],[-17,6],[-9,2],[-1,1],[-2,1],[0,0],[0,2],[-1,2],[0,0],[-1,4],[0,1],[0,1],[-1,21],[7,70],[0,1],[0,2],[1,5],[1,3],[1,1],[0,1],[1,0],[1,1],[0,0],[1,1],[24,10],[8,3],[3,-1],[10,-5],[16,-7],[2,-1],[5,-2]],[[88375,62276],[-1,-2],[-1,-1],[-1,0],[0,1],[-1,0],[-3,5],[-2,4],[-1,2],[-3,6],[-1,4],[-1,2],[-3,10],[0,0],[0,1],[0,1],[1,2],[3,0],[1,0],[1,-1],[1,0],[1,-1],[3,-2],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[0,0],[1,-6],[2,-7],[0,-1],[1,-2],[0,0],[-1,-1],[0,-1],[-1,-4],[0,-1],[0,-1]],[[85322,62479],[4,-89],[-1,-6],[-1,-1],[-7,-11],[-1,0],[0,0],[0,0],[-7,15],[0,0],[0,0],[-1,1],[-4,12],[-1,5],[-1,2],[-3,15],[-1,3],[-4,21],[0,4],[-1,15],[2,24],[0,0],[0,0],[1,1],[1,5],[1,2],[0,0],[0,0],[2,2],[0,0],[0,0],[1,0],[0,1],[1,0],[3,0],[2,0],[0,0],[0,0],[1,-1],[0,0],[14,-20]],[[84984,62767],[10,-16],[2,-4],[13,-23],[1,-2],[1,-1],[0,0],[0,-1],[1,0],[0,-1],[14,-34],[29,-73],[6,-18],[6,-18],[8,-46],[10,-56],[0,-2],[0,0],[0,-12],[0,0],[0,-1],[0,-2],[-1,-5],[0,0],[0,-2],[-2,-9],[0,-1],[-5,-13],[-1,-2],[0,0],[0,0],[-1,-1],[0,0],[-2,-1],[0,-1],[0,0],[-58,47],[-32,84],[0,1],[1,3],[0,2],[1,2],[0,2],[1,1],[1,15],[0,67],[-1,68],[-9,19],[-14,31],[-3,11],[-5,22],[0,0],[29,-30]],[[84071,62953],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,0],[0,1],[-2,2],[-1,0],[-1,1],[-1,1],[-2,4],[-6,9],[-1,2],[0,1],[-1,1],[0,2],[-1,2],[0,0],[0,3],[0,1],[3,13],[0,1],[0,1],[1,2],[0,2],[1,0],[0,0],[1,1],[1,1],[0,0],[0,0],[1,0],[0,1],[7,4],[2,1],[1,0],[1,0],[1,0],[0,0],[1,0],[1,-1],[6,-8],[1,-2],[3,-4],[0,0],[0,0],[2,-3],[1,-2],[0,-1],[0,-1],[0,-3],[-3,-15],[0,-2],[0,-1],[0,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,0],[-7,-8],[-2,-2]],[[84387,62994],[0,0],[0,0],[2,1],[0,0],[3,2],[3,0],[2,0],[3,-1],[3,-1],[1,0],[1,0],[4,-3],[6,-4],[2,-6],[2,-5],[0,-2],[0,-1],[-5,-8],[-13,-18],[-7,-6],[-7,-5],[-2,0],[-3,-1],[-4,0],[-3,0],[-35,0],[-7,5],[-15,13],[0,0],[5,-2],[5,4],[1,2],[6,7],[6,8],[2,4],[1,2],[2,2],[5,13],[6,14],[1,4],[1,6],[0,1],[11,-7],[12,-8],[5,-10],[0,0]],[[83731,63066],[2,-54],[0,-1],[-1,0],[0,-3],[0,-1],[0,0],[-8,-19],[-2,-2],[-4,-4],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,0],[0,0],[-5,0],[-10,1],[-4,0],[-7,2],[0,1],[0,1],[-1,1],[1,1],[0,2],[9,27],[8,20],[22,34],[0,0],[3,-4],[1,0],[0,0]],[[83662,63089],[0,0],[11,1],[38,-28],[-22,-53],[-7,-13],[-2,-2],[-1,0],[0,0],[-14,2],[-9,2],[-3,1],[-7,2],[-20,11],[-12,19],[1,1],[0,1],[0,1],[1,6],[1,3],[0,0],[23,24],[0,0],[1,1],[5,4],[0,0],[11,-10],[0,0],[0,7],[-1,9],[0,0],[-1,0],[-1,2],[-7,8],[-1,1],[-2,3],[0,0],[-1,0],[0,0],[1,1],[2,0],[9,0],[7,-4]],[[84312,63084],[1,0],[2,0],[1,0],[0,0],[2,0],[2,-1],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[24,-29],[1,-1],[0,-1],[1,-1],[0,-1],[5,-12],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-4],[0,-1],[0,-2],[0,0],[0,-1],[0,-1],[0,-1],[-1,-3],[0,0],[0,0],[0,-2],[-1,-1],[0,-1],[-2,-3],[-15,-25],[-8,-5],[-12,-3],[-60,44],[-39,38],[0,0],[33,33],[3,0],[57,-5]],[[84232,63130],[0,0],[0,0],[0,-1],[7,-41],[-15,-14],[-2,-3],[0,0],[-3,14],[-2,13],[-4,19],[-1,6],[2,6],[1,3],[2,1],[0,1],[0,0],[0,0],[6,-1],[6,-1],[0,0],[1,-1],[1,0],[0,-1],[1,0]],[[84183,63188],[10,2],[1,-1],[1,0],[1,0],[1,-1],[0,0],[0,-1],[1,-1],[1,0],[0,0],[0,-1],[2,-5],[1,-2],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[0,0],[0,-4],[0,-1],[-1,-2],[0,0],[-4,1],[0,1],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[0,2],[-4,7],[-12,6],[-1,-12],[-2,-8],[-5,7],[3,11],[0,0],[1,2],[1,4],[2,5],[0,1],[1,1],[1,1],[0,0],[1,0],[3,-1]],[[84782,63300],[1,0],[0,0],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,-3],[0,-1],[1,-2],[1,-3],[0,-1],[-1,-2],[-16,-3],[-1,0],[0,0],[0,1],[-15,15],[0,0],[-1,1],[0,1],[0,0],[2,3],[1,1],[1,0],[0,0],[2,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,0],[7,-3]],[[82785,63319],[25,-37],[0,-2],[2,-4],[0,-4],[0,-8],[-4,-7],[-3,0],[-8,1],[-1,0],[-1,0],[0,0],[0,0],[-18,10],[-61,33],[-5,3],[-10,9],[-6,6],[-9,9],[-1,1],[-1,1],[-1,3],[0,0],[0,1],[0,0],[4,2],[7,3],[55,5],[28,-19],[8,-6]],[[83125,63235],[0,0],[-12,-3],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,2],[-1,1],[0,0],[-11,20],[-1,5],[-1,9],[0,0],[0,4],[1,7],[1,5],[0,1],[0,0],[3,5],[33,47],[0,0],[24,-74],[0,0],[-31,-32]],[[83012,63481],[11,2],[25,3],[34,-63],[0,-1],[-6,-64],[-2,-7],[0,-1],[-1,-3],[-1,-4],[-35,-57],[-2,-1],[-1,-2],[-7,-4],[-7,-2],[-19,8],[-15,6],[-18,19],[-1,2],[-1,0],[0,0],[-18,30],[-4,5],[0,1],[-2,7],[-1,2],[0,0],[-3,12],[7,61],[3,20],[47,23],[17,8]],[[82634,63585],[1,0],[0,0],[2,0],[0,0],[1,0],[7,-2],[1,0],[0,0],[0,0],[1,-1],[1,0],[1,-1],[3,-1],[2,-1],[2,-3],[2,-6],[3,-6],[8,-35],[0,-1],[1,-14],[-15,-81],[-17,-89],[0,0],[-30,10],[-23,32],[-32,43],[-6,10],[0,0],[-1,8],[0,3],[1,2],[9,17],[39,61],[17,36],[3,5],[4,7],[9,10],[0,0],[6,-3]],[[83963,63596],[45,-112],[-5,-23],[-4,-6],[-4,-4],[-1,-1],[-6,0],[-10,1],[-6,0],[-1,0],[-1,1],[0,0],[-1,0],[-26,32],[-29,35],[-1,3],[0,2],[0,1],[0,0],[-1,2],[0,1],[-1,6],[-1,4],[-1,3],[0,2],[0,0],[0,0],[0,3],[0,0],[0,1],[-1,4],[0,3],[0,0],[0,1],[0,4],[0,2],[0,2],[0,0],[1,1],[0,3],[1,2],[1,3],[2,3],[14,20],[2,1],[3,1],[8,3],[0,0],[2,0],[2,1],[2,0],[0,0],[1,0],[0,0],[0,1],[1,0],[2,0],[0,0],[0,0],[2,0],[0,0],[1,-1],[2,0],[2,-1],[6,-4]],[[84598,63656],[1,1],[4,0],[0,0],[1,-1],[0,0],[0,0],[2,-1],[1,0],[0,-1],[3,-3],[0,0],[1,-1],[22,-30],[5,-6],[6,-9],[1,-1],[1,-1],[1,-1],[0,0],[0,-1],[1,0],[4,-7],[85,-154],[22,-43],[2,-5],[1,-5],[1,-5],[0,0],[0,-1],[1,-2],[0,-1],[-1,-3],[0,-2],[0,-2],[-1,-1],[0,0],[0,-1],[-1,-1],[-7,-10],[0,-1],[0,0],[-8,-6],[-3,-2],[0,0],[24,-135],[1,-9],[0,0],[21,-14],[9,-9],[5,-5],[11,-12],[15,-24],[7,-11],[4,-10],[6,-14],[33,-87],[23,-60],[64,-279],[14,-63],[0,-3],[1,-18],[2,-19],[-2,-18],[-1,-3],[0,0],[-1,0],[0,0],[-1,-1],[-4,-3],[0,0],[0,1],[-2,0],[-1,0],[0,0],[-3,5],[-30,39],[-17,35],[-16,37],[-9,20],[-6,19],[-9,25],[-8,17],[-29,38],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-4,4],[-28,25],[-3,2],[-187,312],[-3,27],[-5,44],[-83,358],[11,42],[7,23],[28,-18],[8,-2],[9,0],[0,1],[0,0],[1,0],[0,1],[1,2],[0,1],[1,2],[0,15],[0,0],[-1,5],[-8,21],[0,0],[13,-2]],[[84645,63667],[2,-6],[2,-7],[0,-2],[0,-1],[-1,-9],[0,-7],[0,0],[-2,-1],[0,0],[-21,28],[-4,5],[-2,3],[0,0],[10,6],[1,1],[0,0],[1,0],[0,0],[1,0],[1,0],[1,0],[1,-1],[3,-3],[4,-2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1]],[[82727,63674],[0,0],[0,1],[0,0],[1,1],[1,2],[4,1],[2,1],[8,-2],[0,-1],[1,0],[0,0],[2,-1],[1,-1],[3,-4],[4,-6],[0,-1],[1,0],[7,-30],[0,0],[0,-2],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,0],[-1,1],[-1,0],[-1,6],[0,1],[-1,3],[-2,9],[0,0],[-36,8],[-10,1],[-1,1],[-1,0],[-2,1],[-1,2],[-1,2],[0,1],[-1,4],[0,9],[-1,9],[1,1],[2,2],[1,1],[22,-14]],[[82453,63771],[7,0],[10,0],[13,-13],[5,-6],[1,-1],[0,0],[0,0],[1,-2],[0,-3],[1,-2],[1,-3],[2,-16],[5,-44],[1,-10],[0,0],[-5,7],[-43,61],[1,32],[0,0]],[[82540,63740],[2,-21],[0,-8],[0,0],[-33,18],[0,0],[1,2],[0,1],[0,0],[0,0],[0,1],[0,2],[-1,0],[0,0],[0,1],[0,0],[-1,0],[-1,0],[-3,3],[-1,1],[-5,6],[-2,4],[-2,3],[-5,11],[-5,17],[7,12],[2,4],[0,0],[13,1],[8,1],[20,-46],[6,-13]],[[82322,63892],[14,-30],[4,-9],[4,-12],[-5,-5],[0,-1],[-2,0],[-7,-2],[0,0],[0,0],[-12,10],[-9,7],[-9,15],[0,2],[1,9],[0,2],[0,8],[0,1],[1,0],[1,2],[1,3],[1,0],[0,1],[16,0],[1,-1]],[[82731,63957],[16,-35],[40,-86],[7,-62],[6,-39],[15,-4],[7,1],[6,6],[5,8],[5,7],[6,1],[4,-1],[3,-1],[25,-22],[0,0],[5,-8],[2,-3],[1,-1],[33,-82],[15,-37],[3,-10],[10,-30],[4,-32],[2,-24],[-7,-28],[-3,-12],[-6,-17],[-30,-13],[-80,65],[-26,24],[-5,6],[-32,45],[-2,8],[-5,16],[0,1],[-1,2],[0,2],[-1,3],[1,9],[1,4],[0,1],[1,0],[0,1],[0,1],[1,3],[0,0],[0,0],[1,0],[0,0],[1,0],[1,1],[0,-1],[0,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,0],[7,-1],[27,-1],[0,0],[-34,72],[-27,28],[-34,-7],[-40,-12],[-17,-5],[-19,-22],[0,0],[0,0],[0,-1],[-2,-3],[0,0],[-4,-4],[-12,-12],[-10,-4],[-14,2],[0,0],[-16,26],[-9,18],[-6,11],[-2,4],[0,1],[-1,13],[1,20],[9,26],[2,0],[1,1],[0,0],[8,1],[4,1],[3,0],[37,66],[29,54],[2,4],[3,7],[1,1],[0,1],[1,1],[0,0],[1,2],[17,21],[16,15],[23,18],[0,0],[3,2],[1,1],[4,3],[1,0],[4,0],[11,-5],[0,0],[2,-4]],[[82171,63974],[6,-10],[1,-1],[1,-2],[6,-13],[3,-8],[4,-23],[4,-24],[15,-87],[-1,-6],[-3,-13],[-3,-2],[-9,-6],[-7,0],[0,0],[-20,64],[-19,122],[1,1],[1,3],[4,5],[0,1],[0,0],[1,1],[1,1],[0,0],[1,1],[1,0],[1,0],[4,-1],[7,-3]],[[84545,64008],[2,-9],[0,-3],[0,-2],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-1,-1],[-1,0],[-5,0],[-1,1],[-1,0],[0,0],[-3,2],[-6,16],[-3,9],[-1,2],[4,9],[1,2],[0,0],[3,0],[2,0],[0,0],[1,0],[0,0],[0,0],[1,-1],[1,0],[0,0],[0,0],[1,0],[2,-4],[2,-4],[3,-14],[0,-1]],[[82484,64061],[5,0],[1,0],[0,0],[3,0],[5,-2],[18,-24],[17,-24],[1,-2],[0,-1],[0,0],[1,-2],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[3,-12],[3,-21],[1,-5],[0,-2],[1,-6],[1,-14],[0,-56],[-3,-22],[-4,-20],[-2,-4],[0,0],[-8,-15],[-6,-10],[0,0],[-2,-1],[-3,-2],[-5,1],[-4,1],[-32,12],[-17,6],[-10,5],[-3,1],[-3,2],[-6,3],[0,0],[0,1],[-1,1],[-1,0],[0,1],[-4,3],[-4,6],[-2,3],[-5,8],[-2,3],[-3,4],[-4,12],[-3,8],[-4,11],[-2,8],[-1,5],[-3,25],[0,8],[1,11],[1,3],[4,26],[3,8],[1,2],[2,4],[9,13],[5,7],[12,16],[5,6],[7,5],[8,4],[1,1],[0,0],[0,0],[3,1],[3,2],[10,4],[1,0],[3,0],[2,1],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[2,-1],[0,0],[0,0]],[[82169,64091],[0,0],[1,-1],[2,0],[0,-1],[1,0],[1,0],[2,-2],[0,0],[0,0],[1,-1],[1,-2],[1,-8],[1,-6],[0,-3],[0,-3],[-1,-2],[0,0],[0,-1],[-1,-1],[0,0],[0,0],[-1,-1],[0,-1],[-5,-4],[-1,-1],[-2,0],[-2,1],[-1,0],[-10,4],[0,0],[-1,1],[-1,1],[-5,11],[0,1],[0,1],[0,1],[11,19],[1,1],[1,2],[1,0],[2,1],[1,0],[1,0],[2,0],[0,-1],[0,-1],[0,-3],[0,-1]],[[83334,64226],[6,-20],[0,-4],[0,-4],[-1,-2],[-2,-4],[-1,-1],[0,0],[-1,-1],[0,0],[-1,0],[-1,0],[0,0],[-1,1],[0,0],[-1,0],[0,0],[0,1],[-1,1],[-1,0],[-1,1],[0,0],[-12,9],[1,4],[2,6],[9,12],[4,2],[0,0],[1,0],[0,0],[1,-1]],[[82198,64287],[4,-2],[76,-112],[12,-86],[-32,-126],[0,0],[-13,8],[-8,6],[-22,56],[-2,4],[-11,32],[1,9],[1,9],[0,1],[0,0],[0,2],[0,1],[0,0],[1,9],[-2,3],[-2,5],[-1,1],[0,0],[0,1],[-19,25],[-20,22],[-11,15],[0,0],[-1,0],[0,2],[-1,1],[-1,2],[-3,13],[0,15],[-1,16],[2,14],[0,3],[0,0],[1,3],[2,7],[1,1],[2,4],[6,9],[5,6],[29,18],[5,2],[2,1]],[[83232,64297],[23,-13],[16,-8],[14,-38],[0,0],[-58,10],[-16,16],[-13,13],[-12,13],[1,1],[0,1],[1,1],[0,1],[0,0],[0,0],[1,0],[2,-1],[2,0],[2,0],[21,0],[8,2],[8,2]],[[83278,64333],[70,-29],[93,-37],[33,-42],[91,-116],[41,-53],[38,-42],[105,-68],[15,-2],[13,-2],[31,-1],[2,-1],[8,-3],[22,-16],[59,-61],[8,-9],[117,-128],[57,-75],[3,-8],[9,-17],[-7,-8],[-14,-19],[-16,-12],[-18,-5],[-28,-6],[-31,25],[0,0],[-1,1],[0,1],[-1,0],[0,0],[-1,1],[-1,0],[-3,3],[-4,3],[-2,1],[-2,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-8,-1],[-1,0],[-1,-1],[-2,-1],[0,0],[-94,68],[-54,39],[-57,44],[-140,110],[-51,50],[-48,63],[-48,61],[-16,20],[-40,52],[-41,71],[-8,18],[-13,28],[-1,1],[-1,2],[0,0],[-10,12],[-19,19],[-5,5],[-1,1],[-13,12],[-4,2],[0,1],[0,0],[0,12],[-1,36]],[[83165,64390],[5,-2],[17,-9],[44,-25],[0,0],[-5,-29],[-2,-12],[-61,50],[-3,8],[-1,5],[0,2],[1,9],[0,0],[3,3],[0,0],[1,0],[1,0]],[[83155,64433],[3,-1],[11,-4],[3,-10],[-11,-26],[0,0],[-27,24],[19,17],[1,0],[1,0]],[[82880,64443],[6,-1],[5,-7],[3,-4],[11,-19],[5,-26],[0,-11],[0,0],[0,0],[-1,-2],[-1,-2],[0,0],[0,0],[-3,-2],[-1,-1],[-32,1],[0,0],[-2,1],[-2,2],[-4,2],[-1,2],[-1,1],[-2,2],[0,0],[0,1],[-7,9],[-1,0],[0,0],[0,2],[-2,6],[-1,2],[0,0],[0,1],[1,8],[0,11],[4,4],[1,1],[0,0],[14,11],[0,0],[11,8]],[[83139,64444],[8,-5],[0,-3],[-6,-10],[-3,-5],[-1,-1],[0,0],[-2,2],[-7,7],[-6,10],[0,1],[-1,1],[0,0],[0,1],[0,1],[0,0],[5,5],[0,0],[1,1],[0,0],[6,-3],[6,-2]],[[82744,64447],[12,-5],[17,-6],[23,-32],[-1,-5],[0,0],[-16,-5],[-11,-1],[-4,0],[0,0],[0,1],[1,7],[-9,8],[-6,5],[-26,9],[0,0],[0,1],[0,1],[0,1],[0,0],[2,9],[3,10],[0,0],[5,6],[0,0],[1,0],[1,1],[0,0],[1,0],[0,0],[1,0],[0,0],[4,-4],[2,-1]],[[81618,64434],[-1,-1],[-2,-2],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-13,1],[-2,0],[-8,3],[-4,1],[-6,3],[-1,1],[0,1],[-1,1],[-1,5],[0,4],[-1,2],[0,3],[0,0],[0,1],[0,0],[1,2],[2,10],[0,0],[1,1],[0,1],[1,2],[0,1],[1,0],[0,1],[0,0],[1,1],[2,3],[1,1],[1,1],[7,5],[0,0],[1,1],[1,0],[0,0],[6,1],[2,1],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[0,0],[1,0],[1,0],[1,-1],[2,-1],[4,-1],[4,-1],[0,0],[2,-5],[11,-21],[0,0],[-1,-1],[-7,-10],[-7,-9]],[[81766,64665],[-2,-4],[0,-1],[-1,-1],[0,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-8,0],[-5,1],[0,0],[-2,0],[-6,2],[0,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,0],[0,2],[0,2],[1,2],[0,1],[7,7],[0,0],[0,0],[2,1],[1,0],[0,0],[3,3],[0,0],[16,-12],[1,-5],[0,0],[1,-1]],[[81705,64776],[12,-28],[28,-64],[-2,-1],[-5,-4],[-24,-11],[-45,17],[-6,3],[0,0],[2,20],[3,13],[3,13],[17,55],[0,1],[0,0],[1,1],[1,1],[0,0],[0,0],[2,1],[7,0],[1,0],[1,0],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[0,0],[1,-14]],[[81863,64950],[11,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[-14,-24],[0,0],[-3,-2],[-5,-3],[-5,-3],[-1,0],[-2,-1],[0,1],[0,1],[0,1],[0,1],[0,0],[-2,8],[-1,7],[0,1],[0,1],[1,1],[0,2],[0,1],[0,0],[0,1],[1,1],[1,1],[0,0],[1,1],[0,1],[2,1],[1,1],[1,1],[6,3],[4,3]],[[82129,65097],[0,0],[4,-2],[62,-37],[16,-9],[123,-116],[46,-43],[11,-12],[109,-119],[1,-20],[1,-10],[1,-6],[1,-7],[6,-28],[1,-6],[0,0],[0,0],[14,-22],[27,-34],[9,-10],[51,-55],[34,-37],[0,0],[11,-6],[33,-18],[43,27],[5,-71],[-8,-7],[-14,-12],[-203,47],[-77,75],[-166,214],[-52,63],[-46,56],[-23,24],[-37,40],[-17,22],[-17,65],[36,38],[15,16]],[[95316,63479],[0,0],[0,0],[-1,0],[0,0],[0,-1],[-3,-1],[-1,-1],[0,0],[0,2],[-2,49],[-1,15],[2,0],[3,-10],[3,-10],[1,-12],[1,-1],[1,-15],[0,-4],[0,-2],[0,-1],[0,-3],[0,-1],[0,0],[-1,0],[-2,-4]],[[95013,64386],[8,-9],[8,-9],[1,-1],[1,-3],[1,-2],[1,-2],[0,-1],[0,-1],[0,0],[0,0],[-1,-2],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,-1],[-1,0],[-3,1],[0,0],[-10,19],[-3,8],[-1,2],[-1,3],[0,0],[0,2],[0,1],[0,0],[1,1],[0,1],[0,0],[1,0],[1,0],[0,0],[0,0],[1,0]],[[95689,62792],[0,-1],[2,-4],[0,0],[1,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-6],[0,0],[-1,0],[0,0],[-11,17],[3,4],[0,0],[0,0],[1,0],[1,-1],[2,-1],[1,0],[0,0]],[[61470,89155],[-103,-60],[-269,475],[-104,320],[33,233],[6,200],[43,191],[433,926],[300,312],[64,20],[167,-140],[30,-136],[-38,-285],[-163,-676],[-47,-318],[-73,-281],[-101,-250],[-71,-90],[-107,-441]],[[863,117648],[-44,-31],[0,0],[-15,251],[14,58],[34,79],[31,71],[266,463],[59,58],[0,0],[6,-9],[13,-20],[-34,-112],[-19,-62],[-95,-214],[-78,-176],[-108,-291],[-30,-65]],[[1961,118293],[-98,-7],[-42,368],[41,139],[173,187],[6,7],[77,52],[19,11],[32,18],[93,-4],[67,-9],[41,-67],[0,0],[-70,-64],[-73,-15],[-9,-25],[-16,-46],[-6,-59],[-7,-64],[31,-57],[0,0],[-259,-365]],[[23490,66784],[25,-72],[10,-42],[4,-60],[-20,6],[-14,20],[-37,82],[2,37],[30,29]],[[21007,62169],[1,-4],[0,-1],[1,-1],[0,-1],[2,-11],[0,-1],[0,-5],[-1,-2],[0,-2],[-1,-2],[0,-2],[-6,-3],[-1,1],[-8,24],[0,1],[3,7],[1,2],[3,3],[1,1],[2,-1],[3,-3]],[[18285,62791],[3,-3],[2,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-2],[1,-2],[0,-1],[2,-5],[0,-2],[-1,-8],[-1,-3],[0,-1],[-1,-1],[-1,-2],[-3,-7],[-1,-1],[-2,-2],[-1,-2],[-15,-13],[-107,-31],[-28,29],[9,-6],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,0],[3,0],[1,0],[9,1],[15,5],[34,14],[46,19],[3,7],[-15,27],[0,3],[0,1],[1,0],[1,0],[15,-3],[16,-6]],[[18136,62785],[-20,-12],[0,0],[-1,1],[0,0],[-1,2],[-1,2],[0,6],[-1,2],[0,2],[0,1],[1,1],[4,6],[1,1],[3,3],[0,0],[1,1],[2,1],[7,2],[1,0],[1,0],[0,-1],[1,-2],[2,-16]],[[18187,62804],[15,0],[17,1],[11,-2],[19,-3],[0,-1],[1,-1],[-1,-2],[-1,-1],[-3,-2],[-1,0],[-11,-3],[-62,5],[2,11],[14,-2]],[[23944,64609],[-2,-1],[0,-1],[-2,1],[0,0],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,3],[1,4],[16,51],[1,1],[0,1],[1,0],[1,0],[1,1],[2,0],[1,-2],[1,-1],[0,-1],[0,-1],[0,-3],[-1,-15],[-1,-9],[-17,-33],[-1,-2],[0,-1]],[[23370,66867],[2,-5],[-2,-11],[-1,-3],[-2,-5],[-2,0],[-1,0],[0,0],[-2,0],[0,0],[-6,4],[-3,4],[-8,11],[-2,4],[-1,1],[-1,2],[0,3],[0,1],[0,4],[1,2],[2,3],[1,1],[1,0],[1,1],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[1,-1],[1,0],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[3,-10]],[[23717,66968],[-10,-12],[-2,1],[-6,12],[0,3],[-1,1],[0,2],[0,2],[0,2],[2,12],[0,1],[0,1],[1,0],[1,1],[0,0],[1,0],[5,-5],[1,-1],[1,-1],[2,-4],[5,-11],[0,-1],[0,-2],[0,-1]],[[23633,67028],[34,-18],[10,-16],[-9,-15],[-5,-7],[-1,-1],[-2,1],[-16,7],[-23,24],[0,1],[-1,3],[-1,2],[-1,2],[-2,14],[1,1],[0,3],[10,5],[1,0],[0,0],[1,-1],[1,0],[3,-5]],[[14367,63945],[-59,-15],[-27,30],[178,268],[-4,-88],[-34,-135],[-54,-60]],[[14261,65235],[-34,-37],[-86,146],[-38,9],[-40,330],[78,43],[39,-241],[49,-38],[41,-169],[-9,-43]],[[14401,66125],[-48,-86],[-42,32],[-11,34],[49,199],[-18,20],[-4,146],[8,51],[17,-11],[54,-34],[7,-134],[22,-12],[-34,-205]],[[51714,79196],[-31,-152],[-24,17],[-47,164],[9,56],[46,76],[46,-66],[1,-95]],[[88022,58366],[0,0],[32,-75],[25,-60],[26,-88],[13,-45],[0,0],[110,-12],[4,-1],[44,-4],[0,0],[23,-79],[41,-142],[35,-189],[-6,-34],[0,0],[-101,-59],[-6,3],[-5,2],[-35,1],[-1,0],[-1,0],[0,0],[-1,-1],[-8,-1],[0,0],[0,0],[-14,-3],[0,0],[-1,0],[0,-1],[0,0],[-1,0],[-1,-1],[-2,-1],[0,0],[0,0],[-2,-1],[0,0],[0,-1],[-5,-5],[-30,-46],[-45,22],[0,0],[-21,62],[-17,48],[-30,113],[-34,228],[-30,197],[-1,12],[0,7],[5,61],[11,65],[0,0],[0,0],[0,1],[1,2],[0,1],[1,2],[6,5],[0,1],[0,0],[21,16]],[[89880,53776],[5,0],[2,-1],[0,0],[1,0],[1,0],[27,-19],[1,-1],[0,0],[0,0],[2,-1],[0,-1],[1,-1],[0,0],[1,-1],[0,-1],[1,-1],[0,-1],[3,-10],[0,-1],[1,-3],[1,-5],[0,-3],[-2,-6],[-1,-7],[-1,-3],[0,-1],[-4,-8],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,0],[-1,-1],[0,0],[0,-1],[-4,-7],[-1,-1],[-2,-1],[-9,-5],[-16,5],[-26,8],[-4,1],[-3,1],[0,0],[0,0],[-1,1],[0,0],[0,0],[-1,1],[0,0],[0,0],[-8,19],[-3,6],[-4,14],[1,7],[0,7],[0,7],[1,1],[0,0],[2,4],[4,5],[2,3],[6,3],[0,0],[10,3],[10,1],[11,1]],[[90121,54299],[0,-1],[0,-1],[0,-1],[-3,-21],[-5,-7],[-1,-1],[-6,1],[-1,0],[0,0],[-2,5],[0,1],[-1,1],[-3,6],[-1,5],[-1,8],[0,0],[22,5],[2,0],[0,0],[0,0]],[[89585,54459],[13,0],[6,-1],[6,-1],[1,-1],[0,0],[0,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-3],[-1,-7],[36,-93],[13,-35],[32,-28],[0,0],[-19,-80],[-2,-8],[0,-2],[0,0],[-1,-3],[-6,-10],[-2,-4],[-3,-3],[0,0],[-2,0],[0,0],[-4,0],[-2,0],[-1,1],[-1,0],[-5,2],[-20,8],[-4,2],[0,0],[-11,7],[-8,7],[0,1],[-1,1],[0,1],[-23,33],[-25,43],[-10,24],[-3,8],[-6,18],[-1,6],[-2,6],[0,1],[0,2],[0,0],[0,1],[0,1],[0,0],[16,83],[3,6],[7,4],[2,2],[4,4],[2,1],[16,9],[5,0]],[[89466,55042],[18,-9],[1,-1],[0,0],[0,0],[2,-2],[1,-1],[1,-1],[4,-7],[10,-20],[76,-162],[3,-3],[2,-2],[11,-22],[1,-2],[0,0],[4,-13],[1,-10],[0,-5],[0,-11],[-2,-6],[-8,-14],[-1,-1],[-2,-2],[-2,-4],[0,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-12,-9],[0,0],[0,-1],[-1,0],[0,0],[0,0],[-1,0],[-1,1],[0,0],[-1,0],[-3,1],[-94,49],[-4,3],[-6,4],[-13,8],[-40,28],[-2,1],[0,0],[0,1],[-4,4],[0,1],[-1,2],[0,0],[-1,0],[0,1],[0,0],[0,1],[0,1],[-1,1],[0,16],[1,92],[2,32],[1,13],[0,1],[0,1],[0,0],[1,1],[1,7],[2,2],[0,1],[1,3],[3,6],[6,9],[9,11],[1,1],[0,0],[3,4],[3,2],[0,0],[1,1],[1,0],[31,4],[2,0],[0,0],[1,0],[0,0]],[[89052,55953],[50,-44],[0,0],[55,-83],[-1,-23],[-1,-12],[-8,-43],[0,-1],[0,0],[-1,-6],[0,0],[-1,-1],[0,-1],[0,-1],[-2,-3],[-1,-1],[-3,-3],[-1,-1],[-1,0],[-26,-15],[-1,-1],[0,0],[-1,-1],[-1,0],[-1,0],[0,0],[-1,1],[-1,0],[-3,0],[-98,64],[-31,5],[-33,6],[0,-2],[0,-1],[-1,-1],[0,-1],[-4,-5],[0,0],[0,0],[-1,-1],[-1,0],[0,0],[-1,0],[0,-1],[0,0],[-1,0],[-2,-1],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-3,5],[-3,3],[0,32],[9,33],[1,2],[3,8],[4,7],[2,2],[0,0],[0,1],[61,90],[51,-6]],[[88990,55975],[0,0],[1,0],[1,-2],[0,0],[3,-5],[0,0],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[2,-4],[0,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-26,-17],[-13,-8],[-3,1],[-4,2],[0,0],[4,19],[4,3],[8,8],[9,6],[8,5],[1,0],[4,2],[0,0],[2,-1],[0,0]],[[89047,55994],[-1,-1],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[-5,1],[-4,1],[-4,3],[-5,4],[-1,1],[0,0],[0,0],[0,0],[0,2],[-1,0],[0,1],[-2,6],[-2,3],[-7,21],[0,3],[1,7],[4,4],[0,0],[1,1],[1,0],[0,0],[0,1],[0,0],[0,0],[2,0],[2,1],[0,0],[1,0],[0,0],[1,0],[0,0],[2,-1],[0,0],[0,0],[1,-2],[0,0],[7,-18],[12,-29],[0,-2],[1,-2],[1,-3],[0,0],[0,-2]],[[89034,56318],[-1,0],[0,-1],[-2,-1],[-2,0],[0,0],[0,-1],[-1,0],[0,0],[-1,0],[-1,0],[-2,0],[0,0],[-1,1],[-8,5],[0,4],[0,2],[0,6],[0,1],[0,0],[0,1],[28,30],[0,0],[1,0],[1,2],[1,1],[2,1],[1,0],[1,0],[2,0],[0,0],[1,0],[1,0],[8,-4],[9,-9],[0,0],[0,0],[1,-1],[1,-1],[0,0],[0,0],[0,-1],[0,-2],[0,0],[0,-1],[-1,0],[0,0],[0,-1],[-3,-2],[-35,-29]],[[89163,56505],[1,0],[0,-1],[0,0],[1,0],[1,-3],[1,-3],[1,-1],[0,-3],[-1,-9],[0,-2],[-1,0],[0,-1],[-14,-23],[0,-1],[0,0],[0,0],[-11,-6],[-2,-1],[-1,0],[0,0],[-3,0],[-5,2],[-1,2],[0,1],[-1,4],[0,3],[0,3],[0,10],[0,3],[0,2],[1,5],[1,6],[0,5],[1,1],[0,1],[5,3],[8,6],[9,0],[3,0],[7,-3]],[[88931,56760],[3,-1],[2,-4],[5,-8],[126,-159],[0,0],[-27,-20],[-83,-20],[0,0],[-8,4],[-25,13],[-6,9],[-3,5],[-1,3],[-3,6],[-11,38],[-4,17],[9,63],[4,14],[6,22],[7,12],[1,2],[0,0],[1,1],[2,2],[0,0],[5,1]],[[89022,56829],[1,0],[3,0],[1,-2],[0,-1],[1,-1],[1,-1],[1,-2],[2,-4],[2,-8],[2,-7],[0,-1],[0,-1],[0,-1],[0,0],[0,0],[0,-2],[0,-5],[-1,-1],[0,-1],[-3,-3],[0,0],[-3,-1],[-7,-1],[-1,0],[-5,3],[-6,3],[-2,2],[-1,2],[-1,1],[-6,14],[0,5],[1,8],[1,2],[0,2],[1,0],[0,1],[1,0],[0,1],[6,1],[0,0],[0,0],[1,0],[0,0],[2,0],[0,0],[0,0],[1,0],[8,-2]],[[88967,56873],[1,-3],[5,-8],[-3,-41],[0,-3],[0,-1],[0,0],[-1,-3],[0,-1],[-1,-1],[-1,-2],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-4,-1],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-3,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,4],[0,0],[0,0],[0,1],[-1,1],[0,0],[0,0],[0,1],[0,0],[0,0],[0,1],[0,1],[0,0],[2,8],[3,17],[1,8],[4,12],[6,10],[7,-1],[0,0]],[[88932,57131],[0,0],[68,-140],[0,-1],[1,-2],[3,-12],[0,-2],[0,-2],[-1,-5],[-1,-6],[-3,-5],[-2,-3],[-1,-3],[-2,-2],[-7,-7],[-4,-2],[-1,-1],[-1,0],[-8,-2],[-1,0],[-3,-1],[-5,-1],[-40,-4],[-14,-1],[-15,-2],[-3,0],[-6,4],[-21,12],[-29,17],[-9,6],[-15,10],[-37,35],[0,1],[0,0],[-1,1],[-3,22],[-1,5],[0,5],[0,0],[0,1],[1,1],[1,2],[2,2],[1,1],[2,1],[2,1],[1,1],[152,76]],[[88398,57325],[19,-15],[14,-18],[41,-97],[3,-17],[14,-31],[11,-12],[10,-12],[25,-21],[25,-21],[109,-123],[9,-12],[30,-65],[-4,-22],[-5,-35],[-7,-17],[0,0],[-34,-3],[-39,1],[-41,1],[-93,16],[-21,213],[-5,44],[-8,17],[-15,31],[-25,-4],[0,0],[-78,71],[5,49],[5,61],[1,5],[1,5],[0,0],[1,2],[2,4],[1,1],[2,2],[10,7],[6,4],[2,1],[1,0],[1,0],[0,0],[1,0],[0,0],[1,0],[5,-1],[4,-2],[12,-5],[4,-2]],[[88338,57547],[5,-1],[23,-6],[16,-19],[5,-5],[-1,-20],[0,-27],[-2,-7],[-1,-4],[-1,-4],[-3,-6],[0,0],[-1,-1],[-1,-1],[-2,-1],[-5,-3],[-3,-2],[-1,0],[-1,0],[-1,-1],[-6,3],[0,0],[-1,0],[-2,2],[0,0],[-1,0],[0,0],[-1,1],[-1,0],[-3,3],[0,0],[0,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-33,25],[-2,2],[-3,2],[0,0],[-1,1],[0,0],[0,0],[-1,1],[0,0],[-1,2],[-1,0],[0,1],[-5,8],[-3,3],[-1,4],[-1,3],[0,0],[-1,2],[0,1],[0,4],[0,2],[1,1],[0,3],[2,15],[0,0],[3,6],[0,1],[0,0],[0,0],[10,6],[3,1],[2,1],[7,0],[13,1],[1,0],[0,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[88398,57575],[0,0],[-1,0],[-1,0],[0,0],[-1,1],[-1,1],[-1,1],[0,0],[0,1],[0,0],[-1,0],[0,0],[0,1],[0,1],[0,0],[-1,0],[0,1],[-1,3],[-1,0],[1,2],[0,1],[13,25],[3,6],[0,0],[0,0],[0,0],[1,0],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,-1],[1,0],[0,-1],[1,-2],[0,0],[0,-2],[1,-1],[0,0],[0,-1],[1,-2],[0,-2],[1,-5],[0,0],[0,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,0],[-1,-2],[0,-2],[0,0],[-1,-1],[0,0],[-2,-3],[0,-1],[-1,-2],[-1,-1],[-3,-4],[-2,-2],[0,0],[-1,0],[0,-1],[-2,-1],[-1,0],[0,0],[0,-1],[-1,0]],[[88367,57621],[5,-27],[2,-7],[0,-5],[0,-2],[0,-2],[0,0],[-1,-1],[0,-2],[-1,-5],[-1,-1],[0,0],[0,-1],[-2,-2],[-1,-2],[-1,-1],[0,0],[0,0],[-1,-1],[-2,-1],[-1,0],[0,0],[0,0],[-2,-1],[0,0],[-1,0],[-5,-1],[-24,2],[-2,0],[-4,2],[-8,2],[-1,1],[-1,1],[0,0],[-1,1],[-1,1],[0,1],[0,1],[2,4],[0,3],[1,0],[0,1],[0,1],[1,2],[0,0],[0,0],[16,23],[0,1],[12,13],[5,5],[0,0],[5,3],[1,0],[0,1],[1,-1],[0,0],[1,0],[1,0],[3,-1],[2,-1],[1,0],[0,0],[0,0],[1,-1],[0,0],[0,0],[0,0],[1,-1],[0,-1],[0,0],[0,-1]],[[88918,57694],[1,-1],[0,0],[0,0],[1,-1],[0,-2],[14,-55],[2,-34],[23,-139],[16,-96],[-35,-85],[-12,-29],[0,0],[-17,125],[-12,84],[-1,141],[3,44],[3,42],[1,2],[1,1],[1,3],[3,1],[4,0],[2,0],[0,0],[0,0],[2,-1]],[[88801,57840],[2,0],[8,-2],[1,-13],[1,-9],[-32,-77],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-13,-18],[-12,-18],[-13,-16],[-6,-6],[0,0],[-6,-4],[0,0],[0,0],[-1,0],[-3,-1],[-62,5],[-5,1],[-4,0],[0,0],[-1,0],[-2,2],[-16,15],[-1,2],[-1,2],[0,0],[0,7],[1,7],[2,6],[0,0],[14,19],[10,12],[7,8],[3,4],[4,3],[46,41],[1,0],[48,25],[28,9],[1,1],[1,0],[0,0],[1,0],[0,0],[2,-1]],[[88858,58155],[12,-9],[5,-17],[1,-5],[6,-28],[9,-44],[13,-71],[20,-104],[5,-71],[0,-2],[-2,-36],[-5,-20],[-1,-1],[0,-2],[0,0],[-1,0],[-5,-2],[-2,-1],[-1,0],[-4,0],[-3,2],[-6,4],[-5,30],[-1,11],[-5,29],[0,1],[-1,11],[0,4],[0,1],[-1,1],[0,1],[0,1],[1,3],[0,0],[0,1],[-5,69],[-4,47],[-29,172],[-4,16],[-1,5],[0,2],[1,2],[0,0],[2,5],[0,0],[1,0],[0,0],[0,0],[1,0],[9,-5]],[[88849,58539],[10,-3],[1,-1],[1,0],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,-3],[-1,-3],[0,-2],[0,-1],[-3,-11],[0,-1],[-1,0],[0,-1],[0,0],[-1,-1],[-1,-2],[-2,-2],[0,0],[-3,-1],[-6,-1],[0,0],[-1,0],[-3,3],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[-2,10],[1,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,0],[1,2],[0,1],[1,1],[0,0],[0,0],[1,1],[1,1],[0,0],[1,1],[1,0],[0,0],[2,1],[1,0],[5,-1]],[[88558,58737],[3,-2],[20,-8],[0,0],[2,-3],[3,-3],[2,-7],[2,-3],[1,-3],[4,-23],[0,-2],[1,0],[0,0],[0,-1],[-1,-2],[0,0],[0,-1],[-3,-14],[-1,0],[0,-2],[-13,-45],[-2,-6],[-1,0],[-1,-2],[-4,-5],[-3,-4],[-1,0],[-1,-1],[0,-1],[-1,0],[0,0],[-1,-1],[-1,0],[-4,-2],[-3,0],[-3,0],[0,0],[-58,5],[0,0],[-8,19],[0,0],[0,68],[1,5],[5,20],[2,2],[2,2],[20,13],[11,2],[7,4],[2,1],[4,2],[5,3],[1,0],[0,1],[0,0],[1,-1],[1,0],[1,-1],[4,-2],[5,-2]],[[88533,59135],[1,-1],[2,-2],[0,-1],[0,0],[1,-1],[4,-7],[1,-2],[11,-32],[2,-9],[7,-24],[8,-36],[1,-2],[-20,-30],[-27,-27],[-12,-3],[-14,-4],[0,0],[-34,75],[0,1],[0,0],[0,1],[-1,1],[0,1],[-2,13],[2,17],[2,31],[2,5],[1,4],[2,4],[2,6],[2,3],[2,3],[7,8],[7,8],[3,3],[2,1],[1,1],[13,6],[7,2],[0,0],[0,0],[2,0],[15,-13]],[[88655,59198],[2,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-2],[0,0],[0,0],[0,-1],[-4,-1],[-32,-15],[0,0],[-3,3],[-6,4],[7,14],[4,8],[16,9],[7,2],[7,2],[3,-3]],[[88431,59322],[4,0],[2,-1],[2,0],[3,-2],[8,-5],[0,0],[0,0],[0,-2],[1,-5],[1,-5],[2,-6],[0,-2],[1,-1],[0,0],[0,-4],[1,-5],[0,-2],[-4,-4],[0,-1],[0,0],[-1,-1],[-2,-1],[-1,-2],[0,0],[-1,-1],[-2,-1],[-4,-1],[-4,-1],[-4,-1],[-1,0],[-1,0],[-3,1],[0,0],[-2,1],[0,0],[0,0],[-1,1],[-3,1],[-5,4],[-2,2],[0,2],[-1,0],[0,0],[-2,5],[-1,3],[0,1],[-1,3],[0,2],[0,1],[0,1],[1,5],[1,3],[0,0],[0,1],[1,1],[1,2],[1,2],[2,4],[2,3],[1,1],[3,3],[7,2],[0,-1],[1,0],[0,0]],[[88067,59414],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,0],[1,-1],[0,-1],[0,0],[0,-1],[1,0],[0,-1],[1,-2],[0,0],[0,-1],[1,-8],[0,-1],[0,-1],[-1,-5],[-3,-10],[-1,-6],[0,0],[-1,-2],[0,0],[-1,-1],[0,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[0,1],[0,0],[-1,1],[-1,0],[0,1],[-2,2],[0,1],[-6,20],[-1,4],[-1,4],[0,1],[0,0],[1,1],[0,2],[1,0],[0,0],[0,1],[1,0],[10,7],[0,0],[0,0],[1,0],[1,0],[1,-1],[1,0],[0,0],[0,0]],[[88031,59474],[2,-2],[4,-3],[2,-6],[4,-11],[1,-6],[0,-1],[0,0],[0,-3],[0,0],[0,0],[-1,-5],[0,-2],[0,0],[0,-1],[-1,0],[-2,-4],[0,0],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-3,4],[-13,21],[0,0],[0,1],[-1,2],[-1,0],[0,3],[-1,7],[1,2],[1,2],[0,0],[5,6],[1,-1],[0,0],[0,0],[1,0],[2,-2],[1,0]],[[88036,59561],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,0],[1,0],[3,-14],[0,0],[0,-1],[0,-8],[0,-2],[0,-2],[0,-1],[0,0],[0,0],[-10,-8],[-13,-5],[-6,1],[-8,9],[-2,9],[0,0],[-1,8],[0,8],[6,10],[0,1],[1,0],[0,0],[0,0],[1,1],[23,-2]],[[87983,59681],[4,-1],[7,-4],[0,0],[1,-1],[1,-2],[1,-2],[2,-4],[1,-2],[0,-1],[1,-15],[0,-8],[0,-13],[1,-19],[-2,-16],[-1,-5],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[0,0],[0,0],[-5,2],[-3,2],[-7,6],[-1,1],[-2,3],[-1,1],[-1,1],[0,1],[-2,3],[0,0],[0,6],[0,14],[1,6],[2,9],[6,13],[0,1],[1,2],[0,0],[0,1],[0,1],[-1,3],[-1,4],[-1,2],[-2,2],[-1,3],[-1,1],[-1,3],[0,1],[-1,1],[0,1],[0,2],[0,4],[0,1],[0,0],[0,1],[1,0],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[4,-1],[0,-1]],[[22490,81187],[72,-12],[157,48],[209,-111],[-53,-68],[-178,-94],[-249,-42],[-64,29],[-133,167],[60,112],[69,34],[34,-11],[76,-52]],[[88813,46315],[-1,0],[0,-1],[-1,-1],[0,0],[-5,-2],[-5,-2],[-8,1],[-7,1],[-2,1],[-2,2],[-4,2],[-2,1],[-1,6],[-1,4],[0,4],[0,4],[0,1],[0,16],[0,2],[4,9],[0,0],[13,-5],[2,-1],[1,-1],[5,-2],[0,-1],[0,0],[16,-12],[0,-17],[-1,-4],[-1,-5]],[[24695,53452],[-8,-1],[-64,11],[-28,18],[-8,5],[-20,15],[4,24],[25,134],[15,49],[6,15],[68,121],[6,7],[13,21],[17,21],[7,6],[8,4],[2,0],[5,-2],[24,-13],[12,-10],[71,-183],[-20,-84],[-3,-13],[-29,-81],[-26,-28],[-9,-6],[-38,-20],[-30,-10]],[[28137,54105],[-54,-22],[-3,1],[-1,0],[-2,1],[-2,1],[-22,23],[6,12],[52,40],[2,1],[7,4],[1,1],[9,0],[16,-9],[4,-2],[5,-4],[1,-19],[-1,-2],[0,-1],[-9,-13],[-2,-4],[-5,-7],[-1,-1],[-1,0]],[[24202,61842],[-1,0],[-1,1],[-1,0],[-29,53],[-8,15],[-4,7],[0,1],[-16,37],[0,1],[0,1],[0,1],[1,11],[0,1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[54,-93],[1,-1],[2,-3],[1,-2],[0,-1],[1,0],[2,-10],[-1,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[-5,-5],[-1,0]],[[33366,64436],[-22,-37],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,2],[-2,2],[0,1],[-29,114],[32,-85],[-1,-1],[0,-8],[0,-4],[0,-1],[0,-2],[0,-6],[0,-1],[0,-2],[0,-1],[0,-1],[2,-1],[2,2],[1,0],[0,1],[18,32],[7,12],[3,57],[-7,22],[-11,16],[-11,20],[1,1],[3,1],[3,-2],[0,0],[25,-40],[-3,-72],[-5,-15]],[[91870,114900],[81,-76],[22,-20],[-91,-17],[-214,-40],[-40,17],[-14,6],[-7,6],[-20,23],[-4,28],[-1,17],[-23,13],[-44,27],[-17,-4],[-56,-13],[-30,18],[0,0],[0,0],[97,62],[68,8],[210,-15],[44,-21],[39,-19]],[[0,11825],[100,5],[293,42],[102,15],[213,4],[235,4],[978,-23],[989,-143],[710,35],[202,-23],[917,-106],[250,13],[408,21],[509,107],[277,58],[197,6],[89,2],[364,48],[535,105],[812,160],[629,59],[486,45],[229,83],[188,37],[192,2],[148,1],[122,-19],[256,-41],[113,17],[67,9],[120,42],[0,0],[7,15],[16,33],[-61,350],[-90,73],[-44,35],[1,29],[1,59],[42,125],[162,95],[18,5],[87,25],[160,8],[24,1],[13,0],[76,-2],[80,-36],[57,-25],[119,-192],[276,-89],[156,-97],[97,-61],[0,0],[31,-53],[0,0],[138,-93],[243,-94],[124,-22],[130,-23],[291,-207],[113,-9],[127,68],[72,39],[46,0],[61,-28],[106,-47],[99,-68],[170,-118],[241,41],[208,161],[70,54],[43,3],[131,9],[13,13],[0,0],[12,375],[-20,157],[132,111],[443,132],[72,21],[0,0],[96,101],[597,170],[163,75],[146,69],[30,21],[54,40],[64,21],[53,17],[526,23],[430,97],[89,48],[204,109],[665,74],[27,93],[12,39],[-5,32],[-12,83],[93,40],[27,12],[219,2],[109,-26],[203,-47],[45,-27],[-120,-83],[0,0],[-7,-48],[-8,-54],[0,0],[151,-43],[172,-9],[801,261],[66,33],[90,44],[17,36],[2,4],[0,0],[-143,77],[-112,-16],[-118,-60],[-91,-4],[-41,12],[-63,20],[-49,38],[-29,23],[-5,9],[-14,30],[0,0],[4,19],[13,59],[0,0],[32,14],[48,22],[310,45],[233,-38],[10,-3],[202,-74],[0,0],[14,-43],[26,-78],[112,-27],[0,0],[349,6],[57,15],[43,11],[96,35],[0,0],[-246,60],[-51,77],[0,0],[4,15],[4,17],[121,91],[-42,45],[-168,26],[-30,4],[-14,55],[-9,34],[0,0],[1,3],[12,71],[61,94],[164,107],[367,75],[9,1],[156,88],[102,57],[41,13],[166,50],[395,37],[565,52],[413,-17],[430,-19],[266,-85],[490,-323],[207,-18],[170,-84],[84,-41],[12,-13],[27,-28],[-1,-12],[-7,-59],[0,0],[-447,-86],[0,0],[13,-72],[12,-71],[206,-88],[106,12],[136,15],[443,-62],[416,-58],[29,-14],[32,-15],[70,-75],[0,0],[-21,-5],[-52,-14],[-184,34],[0,0],[-28,-34],[0,0],[6,-4],[37,-24],[172,-32],[526,-9],[391,24],[369,-95],[131,-21],[130,-21],[210,-7],[107,-3],[113,-30],[202,-53],[262,96],[257,32],[1415,-195],[1657,-152],[207,31],[0,0],[63,62],[11,11],[59,27],[92,10],[25,3],[28,-8],[41,-13],[58,-208],[64,-228],[22,-124],[28,-155],[-9,-44],[-2,-10],[-46,-40],[-35,-13],[-154,-57],[-188,-20],[-81,-49],[-67,-40],[0,0],[38,-15],[0,0],[25,4],[265,42],[106,3],[83,2],[0,0],[-98,-69],[-178,-57],[-5,-62],[35,-1],[47,-1],[49,-22],[39,-18],[16,-53],[0,0],[-87,-54],[-32,-1],[-186,-7],[-250,56],[-28,-7],[-106,-27],[-4,-6],[-8,-15],[0,0],[102,-297],[0,0],[27,-5],[125,-24],[27,-25],[41,-39],[5,-47],[-10,-3],[-180,-65],[-122,0],[-106,47],[-65,-16],[-24,-6],[-51,-39],[-50,-38],[0,0],[-11,-47],[-43,-189],[0,0],[162,-117],[332,47],[124,18],[0,0],[46,-62],[24,-91],[-8,-66],[-8,-56],[14,-80],[5,-29],[334,-152],[630,-287],[179,-63],[119,-42],[48,27],[47,54],[181,207],[213,172],[103,83],[96,74],[162,123],[209,97],[4,9],[6,15],[-24,48],[-229,136],[-3,30],[-6,48],[0,0],[560,241],[261,68],[271,5],[154,3],[39,-15],[48,-18],[139,-11],[72,9],[148,17],[42,21],[124,61],[46,65],[10,13],[150,125],[353,89],[86,30],[314,106],[116,6],[123,7],[51,77],[20,31],[0,0],[14,198],[0,0],[-13,40],[-25,73],[0,0],[79,53],[131,88],[542,274],[541,147],[660,102],[854,190],[234,85],[317,114],[272,182],[89,60],[0,0],[48,-2],[329,-8],[0,0],[4,-3],[119,-87],[53,4],[153,11],[526,143],[412,112],[391,144],[355,1],[375,-76],[162,-14],[146,-12],[339,60],[153,54],[98,34],[215,53],[346,85],[589,-121],[491,10],[728,66],[367,33],[154,-70],[58,-26],[311,-15],[212,62],[357,-33],[176,37],[175,37],[325,34],[37,-8],[54,-11],[82,41],[14,7],[0,0],[-4,105],[-17,137],[-5,41],[0,0],[-65,96],[-20,47],[-43,101],[4,20],[2,15],[0,0],[249,-27],[257,-28],[83,76],[32,30],[220,88],[51,20],[187,125],[34,8],[52,13],[138,-21],[41,-6],[0,0],[6,-4],[65,-43],[21,-48],[0,0],[-343,-132],[-205,17],[-83,-130],[9,-121],[7,-95],[0,0],[118,-59],[112,4],[0,0],[43,65],[128,81],[45,-22],[0,0],[-29,-52],[-18,-33],[-90,-83],[0,0],[192,-40],[0,0],[120,76],[217,139],[608,109],[272,-24],[366,-86],[725,-59],[534,-127],[487,-154],[348,-85],[295,-72],[24,0],[70,2],[477,-284],[108,15],[112,16],[5,5],[12,11],[0,0],[4,77],[0,0],[70,99],[59,46],[96,14],[115,16],[78,-52],[190,6],[0,0],[121,86],[35,47],[52,67],[0,0],[-25,11],[-56,23],[-10,26],[11,56],[238,170],[230,66],[129,37],[227,16],[313,21],[419,143],[71,-16],[55,-12],[296,-257],[164,-29],[61,-48],[94,-74],[26,-35],[11,-15],[0,-21],[-1,-50],[75,-32],[126,-53],[126,1],[0,0],[60,42],[266,51],[253,-10],[1,0],[69,-23],[180,-128],[145,-102],[121,-123],[133,-61],[265,-75],[261,-28],[73,-8],[387,79],[191,4],[196,4],[297,37],[526,66],[0,0],[23,-59],[54,-137],[162,-11],[1683,314],[216,9],[32,12],[44,18],[47,39],[38,31],[570,205],[54,8],[65,10],[466,-175],[285,-108],[221,-275],[56,-70],[121,-6],[117,-7],[135,5],[0,0],[57,40],[194,2],[154,-31],[26,-5],[101,21],[78,60],[58,112],[14,27],[0,0],[-26,73],[-1,3],[-9,82],[-3,36],[0,0],[27,34],[169,210],[0,0],[-104,64],[-176,109],[-37,42],[1,1],[19,28],[145,16],[1114,-239],[289,12],[253,10],[208,33],[261,41],[241,-12],[50,-45],[12,-11],[122,-29],[72,55],[161,122],[113,115],[-44,141],[0,0],[-110,120],[24,97],[21,92],[57,29],[118,12],[347,-248],[0,0],[17,-89],[-137,-248],[61,-29],[582,-275],[174,-22],[155,37],[191,-22],[262,-30],[178,-69],[92,-37],[338,-40],[161,2],[132,2],[492,-152],[550,-26],[494,-23],[66,-18],[34,-10],[72,-42],[28,-53],[36,-25],[37,-25],[50,-15],[44,-13],[183,29],[184,86],[134,28],[156,-27],[29,-16],[44,-23],[99,-100],[24,-26],[0,0],[471,1],[433,225],[158,10],[370,-33],[85,-56],[131,-88],[-8,-44],[-4,-21],[-113,-118],[-314,-75],[-316,-76],[-93,-66],[-52,-37],[0,0],[-1,-3],[-21,-48],[37,-4],[223,-24],[27,4],[167,25],[585,-263],[14,-7],[14,3],[244,39],[181,60],[187,-4],[180,-5],[11,-11],[14,-14],[73,-321],[-1,-14],[-4,-32],[0,0],[-106,-39],[-119,24],[-92,19],[-130,-29],[-43,-10],[7,-8],[55,-59],[308,-31],[416,91],[145,-19],[105,-13],[149,-79],[359,68],[338,64],[20,-9],[27,-113],[0,0],[-44,-71],[0,0],[11,-36],[15,-50],[187,-81],[122,3],[168,4],[54,13],[43,10],[83,44],[127,140],[0,0],[138,50],[185,-7],[40,-1],[20,5],[299,74],[141,0],[507,-205],[0,0],[3,-6],[41,-68],[0,0],[-185,-115],[86,-67],[155,-121],[83,-4],[49,62],[31,41],[168,-1],[300,-81],[193,-52],[297,-116],[88,6],[75,6],[109,59],[235,-62],[338,-91],[449,-66],[380,-278],[222,-47],[32,-14],[214,-97],[46,-66],[0,0],[-22,-10],[-14,-6],[0,0],[54,-86],[111,-84],[58,-44],[86,-27],[276,33],[54,-32],[28,-16],[6,-18],[11,-41],[0,0],[32,-2],[14,0],[187,6],[125,58],[15,7],[153,-10],[93,-102],[81,-90],[75,-59],[40,-31],[54,-10],[173,-32],[129,36],[0,0],[-9,7],[-30,22],[0,0],[8,37],[9,44],[0,0],[1025,-107],[654,3],[58,1],[61,-17],[18,-20],[28,-30],[0,0],[-141,0],[-153,0],[0,0],[125,-68],[317,10],[179,5],[172,-24],[37,-28],[76,-59],[-17,-53],[0,0],[142,-129],[80,-73],[111,-25],[259,-59],[728,-311],[18,3],[30,7],[10,42],[12,57],[99,64],[0,0],[276,-299],[12,-13],[-69,-61],[-103,-47],[-287,-37],[-63,-35],[-45,-77],[-33,-58],[-3,-100],[60,-11],[23,-5],[0,0],[79,-215],[-101,-46],[-68,-31],[-152,-217],[-4,-5],[0,0],[-164,-78],[-166,-78],[0,0],[3,-79],[3,-84],[-117,-101],[-8,-6],[0,0],[-56,-20],[-157,-57],[-139,39],[-157,45],[-437,-46],[-118,-36],[-89,-53],[-109,-65],[-245,-70],[-376,-108],[0,0],[204,-37],[169,-31],[15,-9],[0,0],[-16,-69],[0,0],[-163,4],[-130,3],[-76,21],[-112,30],[-373,-77],[0,0],[1,-40],[0,0],[35,-55],[264,-214],[-46,-72],[-182,-7],[-19,-1],[-282,34],[-190,-183],[-16,-26],[-33,-53],[-80,-46],[-68,74],[9,46],[11,54],[-43,95],[-15,33],[0,0],[-107,53],[-61,-11],[-265,-167],[-120,-109],[0,0],[-21,-40],[-119,-222],[71,-67],[274,-10],[502,-19],[201,-36],[23,-4],[224,-77],[-10,-53],[-13,-63],[-24,-8],[-1046,82],[-167,-197],[5,0],[212,-41],[0,0],[-1,-39],[-41,-95],[-12,-26],[0,0],[-12,-15],[-80,-91],[-156,-43],[-69,-20],[0,0],[96,-94],[37,-6],[66,-12],[115,-155],[-9,-88],[-28,-254],[-143,-23],[0,0],[-118,-101],[7,-26],[0,0],[237,-13],[216,-11],[93,-87],[206,-191],[17,-134],[-139,-103],[0,0],[43,-27],[60,-3],[87,-3],[146,20],[139,20],[80,-41],[64,-33],[10,-93],[5,-41],[0,0],[-24,-68],[-80,-88],[-311,-91],[-182,-17],[-46,-14],[-25,-35],[0,0],[250,-75],[203,22],[328,35],[210,48],[49,44],[-24,15],[1,11],[1,10],[166,116],[78,-37],[12,-28],[-1,-7],[-5,-24],[0,0],[-117,-53],[1,-2],[4,-29],[147,-115],[56,-43],[72,-28],[0,0],[328,-38],[28,-4],[0,0],[326,-9],[86,-58],[27,-69],[0,0],[-192,-23],[0,0],[34,20],[14,9],[0,0],[-6,14],[0,0],[-17,10],[-46,23],[-320,42],[-61,8],[0,0],[-592,-61],[-45,1],[-518,10],[-287,-69],[-511,-125],[-35,-25],[-19,-14],[0,0],[-24,-125],[0,0],[-22,-11],[-46,-24],[-482,2],[-451,2],[-199,-74],[-48,-18],[-224,-404],[134,-239],[0,0],[-131,-111],[121,-151],[171,-112],[50,-32],[0,0],[61,-62],[0,0],[-645,-118],[0,0],[221,-35],[20,-3],[0,0],[36,6],[283,50],[198,-34],[0,0],[-37,-34],[-195,-49],[-172,-43],[0,0],[13,-9],[98,-74],[2,-310],[-6,-25],[-9,-38],[179,-32],[211,-38],[-3,-52],[-3,-50],[509,-95],[421,-178],[608,-258],[0,0],[-7,-12],[-12,-19],[-39,-11],[-52,-15],[-489,0],[-203,0],[-238,-26],[-433,-48],[0,0],[92,-33],[177,-65],[274,-18],[255,-17],[70,-36],[101,-54],[90,-8],[80,-7],[99,86],[0,0],[-64,32],[-73,38],[0,0],[10,4],[15,6],[897,56],[185,-42],[185,-41],[0,0],[-34,-28],[-24,-20],[-279,-88],[0,0],[19,-6],[195,-29],[124,12],[170,16],[220,-27],[175,-21],[214,-66],[48,-14],[-70,-65],[-91,-2],[0,0],[11,-9],[27,-21],[429,-65],[483,-19],[123,-24],[16,-12],[120,-89],[0,0],[-90,-42],[-57,-27],[-326,-25],[-66,-70],[-40,-42],[0,0],[74,-43],[246,-16],[225,78],[325,25],[12,1],[0,0],[29,-5],[544,-96],[504,-21],[391,-16],[114,-34],[69,-21],[-177,-134],[-79,-20],[0,0],[83,-37],[221,64],[84,24],[356,4],[416,-64],[0,0],[-333,-92],[0,0],[261,-16],[591,49],[265,-3],[60,-13],[88,-20],[29,-43],[2,-2],[0,0],[828,-35],[0,0],[9,-2],[762,-138],[741,-50],[61,-4]],[[95374,134],[414,-134]],[[88240,5889],[302,-61],[311,30],[145,14],[44,-6],[471,-66],[52,-52],[0,0],[-49,-34],[-16,-11],[-159,-40],[-263,-66],[-440,60],[-58,-4],[-52,-2],[-218,-70],[-13,-5],[0,0],[-46,0],[-133,-1],[-257,67],[-19,89],[-46,221],[0,0],[172,79],[132,-5],[43,-2],[0,0],[16,-9],[81,-46],[5,-7],[6,-10],[0,0],[-21,-33],[0,0],[6,-19],[4,-11]],[[41389,14596],[-30,-22],[-22,-16],[-33,7],[-93,21],[-226,154],[-22,44],[7,15],[6,11],[54,1],[227,-55],[103,-72],[44,-31],[0,0],[-15,-54],[0,-3]],[[47598,15274],[-190,-54],[-144,1],[-92,40],[0,0],[51,99],[38,21],[256,-17],[46,-25],[14,-8],[0,0],[21,-57],[0,0]],[[62418,14896],[-16,-23],[-8,-12],[-397,39],[-117,68],[-36,159],[-170,313],[-26,90],[-2,108],[10,15],[11,19],[72,38],[27,-15],[26,-14],[76,-95],[48,-65],[12,-16],[68,-144],[425,-312],[9,-60],[7,-46],[0,0],[-19,-47]],[[95648,54563],[-1,0],[-1,0],[0,1],[-2,1],[-3,1],[-6,3],[0,0],[0,0],[-3,8],[0,0],[4,8],[2,3],[3,13],[0,0],[-1,0],[-3,8],[0,0],[0,8],[0,0],[0,1],[0,0],[4,3],[2,0],[0,1],[8,0],[2,-2],[0,0],[1,-1],[2,-1],[1,-1],[3,-3],[1,-2],[0,0],[4,-31],[-9,-11],[0,0],[0,0],[-2,-2],[-6,-4],[0,-1]],[[94908,54726],[-18,-35],[-1,0],[0,-1],[-23,-7],[-2,0],[-8,-1],[-24,-3],[-11,3],[-8,13],[-5,9],[0,0],[0,9],[0,0],[-20,-1],[-20,-1],[-44,-28],[0,0],[-4,-17],[0,-1],[0,0],[0,45],[53,47],[19,8],[28,14],[10,-2],[12,-2],[15,-5],[9,-2],[12,-4],[9,-3],[14,-17],[5,-12],[2,-6]],[[94917,54832],[2,-3],[2,1],[1,0],[1,0],[0,0],[2,0],[1,0],[1,0],[4,-22],[0,-4],[0,-1],[0,0],[-2,-5],[-14,-22],[0,0],[-2,0],[-1,0],[-2,0],[-2,2],[0,0],[-9,12],[-3,4],[-2,6],[0,5],[0,2],[1,5],[0,3],[0,0],[0,0],[4,7],[12,8],[6,2]],[[95728,55008],[0,0],[-2,-1],[-2,0],[-5,2],[-26,45],[-2,5],[-2,3],[0,2],[0,1],[0,2],[1,2],[0,1],[10,7],[9,7],[2,1],[2,0],[26,8],[6,1],[1,0],[0,0],[7,0],[1,-1],[1,0],[3,-2],[1,-1],[1,0],[0,0],[0,-1],[0,0],[1,-3],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,0],[-1,-1],[0,0],[0,-1],[-31,-70],[-1,-2],[0,-1]],[[94424,55059],[0,0],[0,0],[0,0],[-1,0],[-4,5],[0,1],[-1,1],[-21,61],[0,5],[0,3],[0,0],[1,2],[10,13],[0,0],[0,1],[1,0],[0,0],[0,0],[1,0],[0,1],[1,0],[1,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[0,0],[0,-1],[0,0],[2,-4],[3,-8],[1,-1],[0,0],[1,-5],[8,-65],[-1,-3],[0,-2],[-1,-1],[0,0],[0,-1],[-1,0],[0,0],[-1,-1],[0,0],[-1,0]],[[94954,55434],[0,0],[-3,0],[-18,7],[-1,1],[-1,0],[3,7],[4,11],[1,2],[1,1],[0,1],[1,1],[5,7],[6,3],[6,-9],[6,-18],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,0],[-1,-1],[0,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-7,-4]],[[95407,55463],[0,0],[-1,-1],[0,1],[-1,0],[-1,0],[-6,2],[0,0],[-1,1],[-32,44],[-16,22],[-3,6],[0,19],[2,16],[3,17],[6,7],[6,8],[2,2],[3,3],[0,0],[2,2],[2,1],[2,0],[3,0],[2,0],[1,0],[0,0],[0,0],[1,0],[1,-1],[0,0],[1,-1],[0,0],[0,0],[0,0],[1,-1],[0,0],[1,-1],[3,-6],[2,-4],[0,-1],[0,0],[1,-1],[15,-36],[5,-12],[0,0],[0,-1],[3,-17],[5,-28],[1,-8],[0,-7],[0,-1],[0,-1],[0,-4],[0,-4],[-8,-13],[-1,-1],[0,0],[-1,-1],[0,0],[-2,0],[-1,0]],[[95439,55748],[0,0],[4,-2],[5,-1],[7,0],[1,0],[0,-1],[8,-4],[0,0],[2,-1],[0,0],[0,0],[-6,-35],[0,-1],[-1,-2],[0,-1],[0,-1],[0,0],[-1,-1],[-2,-5],[0,-1],[0,0],[-1,-1],[-1,-1],[0,0],[0,0],[-1,-1],[0,1],[-1,0],[-2,0],[-1,1],[0,0],[-1,0],[0,1],[-11,20],[-1,9],[-2,12],[5,15]],[[95305,55727],[-6,0],[-3,3],[-4,5],[-2,3],[-3,6],[0,1],[0,0],[0,6],[0,0],[5,3],[2,1],[4,-1],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[1,-1],[1,0],[0,0],[0,0],[0,-1],[0,0],[1,-1],[0,0],[0,0],[7,-9],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[0,0],[0,-1],[0,0],[-2,-5],[-1,-1],[0,-1],[0,0],[0,0],[-1,-1],[0,0]],[[94154,55762],[-7,-2],[-6,0],[-1,0],[-3,4],[-2,2],[-4,10],[0,1],[0,0],[0,1],[0,0],[3,3],[4,1],[0,0],[7,2],[3,0],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,-1],[0,0],[1,0],[1,-1],[0,-1],[1,-3],[2,-8],[1,-4],[-2,-3]],[[95069,55739],[-1,0],[0,-1],[-1,0],[0,0],[-5,5],[-6,5],[0,1],[-2,4],[-1,2],[-1,4],[-2,6],[-8,23],[-1,9],[0,0],[0,0],[0,2],[0,1],[1,1],[0,1],[0,0],[1,1],[1,1],[0,0],[1,0],[0,0],[15,-25],[13,-22],[0,0],[0,0],[0,0],[0,0],[0,0],[2,-4],[0,0],[0,-6],[0,-1],[0,0],[0,0],[0,-1],[-1,0],[0,-1],[0,0],[-3,-3],[-2,-2],[0,0]],[[95096,55781],[-12,-2],[-7,2],[-8,3],[0,0],[-1,1],[0,1],[0,0],[-1,1],[0,1],[-3,6],[0,0],[-1,2],[-3,17],[-1,5],[-2,14],[0,5],[0,9],[3,8],[7,15],[0,0],[2,2],[8,6],[1,1],[2,1],[4,0],[3,1],[4,-1],[2,0],[0,-1],[1,0],[1,-1],[4,-3],[1,-1],[5,-14],[3,-7],[0,-2],[5,-28],[0,-1],[0,-2],[-1,-7],[-1,-7],[-1,-5],[-1,-3],[-2,-4],[-1,-3],[-1,-1],[-1,-1],[0,0],[-1,-2],[-3,-2],[-3,-3],[-1,0]],[[94980,55579],[-22,-112],[0,0],[-5,9],[-1,1],[0,0],[0,0],[-1,0],[-3,-1],[-60,-7],[-38,-5],[-7,-3],[-16,-7],[-38,-26],[-21,-17],[-23,-19],[-12,-20],[-14,-23],[0,0],[-24,-7],[-24,-2],[-35,-2],[-19,0],[-32,-1],[-27,-1],[-314,121],[-24,40],[-15,44],[-11,30],[-4,27],[3,54],[1,4],[2,6],[7,11],[2,3],[242,357],[286,84],[32,-39],[13,-16],[33,-53],[13,-20],[60,-60],[3,-3],[61,-159],[31,-184],[1,-4]],[[94123,56132],[-15,-2],[-1,0],[-2,9],[0,3],[3,20],[1,4],[1,6],[0,0],[3,1],[12,2],[7,-2],[0,-5],[1,-2],[0,0],[0,-2],[1,-6],[0,-1],[0,0],[-1,-1],[-2,-8],[-4,-9],[-2,-4],[-2,-3]],[[95428,56066],[-5,-2],[-1,3],[-11,111],[1,1],[1,1],[3,2],[7,5],[7,2],[2,1],[22,5],[1,-1],[2,0],[0,-1],[0,0],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,0],[3,-52],[-8,-23],[-5,-17],[-4,-8],[-1,-2],[0,0],[-14,-13],[-4,-3]],[[94183,56280],[-14,-12],[0,0],[0,0],[-7,8],[18,48],[31,14],[0,0],[5,-12],[-2,-5],[-2,-7],[-1,-2],[-1,-1],[-4,-5],[-1,-1],[0,0],[-22,-25]],[[94247,56413],[0,0],[0,0],[-1,-1],[-2,1],[0,0],[0,1],[-1,0],[-3,3],[-1,1],[-2,2],[-2,6],[0,0],[5,16],[7,4],[0,0],[4,0],[0,0],[0,1],[0,0],[0,0],[0,0],[2,0],[0,0],[0,0],[1,-2],[1,-2],[0,0],[0,0],[0,-3],[1,-4],[0,0],[0,-1],[-1,-4],[0,-1],[-6,-15],[0,0],[0,-1],[-2,-1]],[[94298,56479],[-17,-24],[0,1],[-1,0],[-10,7],[0,5],[1,12],[1,2],[0,1],[2,3],[2,2],[18,27],[2,2],[4,4],[0,0],[1,0],[0,-1],[1,-1],[3,-26],[-7,-14]],[[94816,56548],[-2,-11],[-11,3],[-5,3],[-5,3],[-3,3],[0,2],[-6,20],[0,0],[1,1],[1,0],[0,0],[4,-2],[10,-5],[3,0],[6,-1],[5,-6],[1,-1],[1,-4],[0,-5]],[[94364,56595],[-35,-52],[-3,-3],[-3,-3],[-8,-7],[-7,-2],[-2,0],[0,0],[-4,5],[-2,2],[1,13],[0,1],[0,0],[0,1],[0,1],[0,1],[0,0],[2,2],[1,3],[1,0],[1,-1],[1,-2],[44,60],[26,34],[-1,5],[2,0],[2,-1],[6,-4],[3,-6],[-1,-2],[0,-2],[-2,-5],[-3,-6],[-19,-32]],[[95726,56670],[-2,0],[0,0],[0,0],[-3,1],[-3,0],[-1,1],[-1,1],[0,0],[-1,1],[0,1],[0,0],[0,1],[13,24],[18,17],[4,4],[0,0],[2,-1],[1,-7],[-1,-10],[-1,-7],[0,-1],[-3,-6],[-1,-1],[0,0],[0,-1],[-3,-5],[-4,-7],[-1,0],[-2,-2],[0,-1],[-11,-2]],[[95098,56795],[-6,-5],[-7,-5],[0,0],[-2,4],[-3,6],[9,32],[0,1],[0,0],[1,0],[0,0],[1,0],[13,-4],[1,-1],[0,0],[1,-2],[0,0],[0,-1],[-2,-14],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[0,0],[-2,-2]],[[95419,56939],[-7,-1],[-12,0],[0,0],[-3,7],[0,1],[-1,1],[0,0],[0,0],[1,1],[0,1],[1,0],[0,0],[0,0],[6,4],[20,5],[3,0],[0,0],[0,-2],[0,-3],[1,-1],[0,0],[0,-1],[-1,-1],[0,-1],[-2,-3],[0,-1],[-1,-1],[0,0],[-1,-2],[0,0],[0,0],[-1,0],[-1,-2],[0,0],[-1,-1],[0,0],[-1,0],[0,0]],[[95771,57083],[0,0],[-60,-69],[-20,-23],[-36,-54],[-120,-180],[-51,-106],[-1,-44],[-1,-9],[0,0],[5,-2],[7,-2],[0,0],[32,2],[36,27],[63,34],[74,40],[5,-11],[13,-29],[-16,-32],[-8,-18],[0,0],[-264,-43],[-3,3],[-19,18],[0,0],[2,2],[0,0],[0,0],[3,5],[3,4],[0,1],[1,1],[1,15],[0,1],[0,0],[0,1],[-1,1],[0,0],[0,1],[0,0],[-1,1],[-1,1],[0,0],[0,0],[-39,27],[-1,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[0,0],[-1,0],[-12,3],[-26,0],[-11,-1],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-5,-5],[-22,-25],[-48,-55],[0,-60],[0,-6],[-53,-23],[-103,-43],[-40,23],[-62,37],[-68,51],[-10,18],[-1,7],[-4,22],[-2,9],[6,12],[5,13],[1,3],[4,7],[33,40],[6,7],[10,10],[0,0],[64,-16],[0,0],[69,67],[128,62],[185,90],[24,40],[4,6],[1,2],[43,50],[54,31],[97,32],[52,-17],[7,0],[75,45]],[[94124,60144],[-2,-1],[0,0],[-8,0],[-29,1],[-20,2],[-8,3],[0,1],[-1,0],[-4,3],[0,0],[0,1],[0,0],[-1,2],[0,1],[-1,2],[0,1],[0,0],[0,2],[0,1],[0,0],[0,1],[1,0],[0,1],[0,0],[0,1],[1,1],[0,0],[32,10],[34,-5],[3,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,0],[0,-2],[-1,-8],[-1,-3],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,0],[0,0]],[[95770,56533],[0,0],[1,0],[16,-12],[0,0],[0,0]],[[95787,56521],[1,46]],[[95788,56423],[-2,-4]],[[95786,56419],[0,0],[-6,-7],[-9,-7],[-1,-1],[-22,-11],[-2,-1],[0,0],[-7,5],[-6,5],[-6,14],[-3,7],[0,0],[-1,14],[0,0],[0,0],[2,6],[0,0],[0,0],[45,90]],[[95774,56802],[3,8],[5,11],[0,0],[5,9],[0,0]],[[95787,56830],[1,1]],[[95788,56793],[-9,-9]],[[95779,56784],[0,0],[-7,2],[0,0],[0,0],[2,16]],[[78189,108773],[-39,-18],[-53,-23],[-14,4],[-40,12],[0,0],[125,187],[18,28],[153,136],[160,143],[28,11],[60,24],[108,-10],[0,0],[-117,-101],[-28,-24],[-173,-205],[-188,-164]],[[81785,112640],[-286,-174],[-12,2],[-74,13],[-11,154],[22,33],[16,24],[155,46],[52,15],[0,0],[70,78],[42,96],[40,91],[39,33],[37,32],[51,-10],[6,-1],[5,-70],[7,-79],[-159,-283]],[[74208,116000],[10,-74],[25,-183],[78,-309],[63,-168],[9,-6],[15,-10],[25,-79],[16,-50],[34,-212],[10,-63],[-1,-13],[-1,-11],[0,0],[-64,296],[-23,109],[-1,1],[-9,22],[0,0],[-34,-14],[-26,-62],[12,-62],[19,-99],[40,-102],[36,-92],[15,7],[0,0],[10,62],[0,0],[9,-14],[0,-1],[0,0],[6,-33],[14,-83],[-11,-143],[-8,-104],[-24,-71],[-42,-54],[0,0],[5,30],[5,26],[17,21],[26,35],[5,89],[1,22],[-7,4],[-2,0],[-70,-172],[-1,-13],[-25,-185],[7,-72],[23,-215],[22,-47],[163,-332],[130,-573],[126,-461],[131,-383],[191,-561],[0,0],[-189,189],[-66,21],[-163,51],[-200,-9],[-45,-3],[-115,-57],[-54,-54],[-27,-29],[-181,-641],[-69,-244],[-4,-109],[-5,-127],[51,-167],[46,-70],[33,-51],[171,-346],[46,-37],[171,-141],[21,-51],[20,-52],[45,-219],[8,-35],[-96,-288],[-6,-20],[0,0],[-1,12],[-8,56],[6,32],[6,26],[-46,238],[-5,11],[-17,31],[-46,41],[-42,38],[-271,122],[0,0],[-55,-26],[-44,-31],[-17,-12],[-44,-71],[-80,-278],[-43,-152],[-13,-27],[-54,-120],[0,0],[-87,142],[-36,228],[-33,211],[86,249],[57,166],[-2,47],[-2,46],[0,0],[-6,15],[-37,91],[-6,247],[0,0],[27,65],[106,258],[-33,275],[-56,111],[-41,358],[93,514],[13,360],[7,173],[-39,233],[19,199],[21,222],[43,93],[1,27],[3,67],[0,0],[-139,308],[-19,21],[-32,34],[-135,240],[-17,31],[-2,97],[-2,187],[21,134],[76,157],[10,128],[24,294],[-54,130],[-2,5],[-4,20],[-14,71],[92,66],[194,72],[4,-2],[6,-5],[-22,-94],[20,-42],[107,5],[123,113],[4,9],[73,182],[0,0],[-30,82],[-105,169],[-130,208],[98,-21],[69,30],[0,0],[-4,24],[40,81],[19,-4],[33,-64],[26,-49],[7,-13]],[[71374,116408],[-127,-104],[-166,67],[-116,47],[5,14],[35,101],[121,191],[0,0],[117,25],[16,-7],[17,-7],[72,-15],[25,-6],[22,-12],[78,-43],[11,-38],[1,-5],[-100,-189],[-11,-19]],[[88026,116500],[11,-83],[11,-79],[-276,223],[-39,64],[-33,54],[-1,8],[-4,31],[-76,93],[-27,14],[-40,20],[-6,18],[-7,23],[0,0],[46,33],[20,14],[0,0],[3,0],[30,-3],[144,-135],[71,-86],[173,-209]],[[86635,119809],[-383,-200],[0,0],[94,153],[140,225],[174,60],[24,8],[25,21],[47,40],[100,35],[53,-118],[7,-16],[0,-48],[1,-69],[0,0],[-17,-20],[-20,-24],[-119,-7],[-126,-40]],[[32820,126340],[-281,-27],[-14,-1],[-166,63],[0,0],[0,32],[0,0],[109,79],[0,0],[249,49],[81,-21],[39,-65],[12,-19],[0,0],[1,-1],[21,-17],[0,0],[-6,-37],[-1,-7],[0,0],[-19,-12],[-25,-16]],[[20146,128226],[-109,-40],[-41,-16],[-66,-13],[-384,-74],[-47,12],[-47,12],[-101,82],[-39,32],[0,0],[-5,-2],[-20,-5],[5,-18],[11,-36],[90,-59],[0,0],[-91,40],[-18,42],[-2,75],[-3,89],[39,165],[79,107],[149,85],[140,40],[199,8],[172,-67],[117,-46],[140,-54],[142,-113],[0,0],[-179,-141],[-131,-105]],[[89552,128817],[-30,-20],[-12,-7],[-49,0],[-107,2],[-283,61],[-31,9],[-126,39],[-101,48],[-121,58],[0,0],[67,58],[52,46],[163,65],[0,0],[64,2],[503,-101],[24,-7],[79,-22],[12,-21],[12,-21],[0,0],[-116,-189]],[[25584,129546],[805,-466],[56,-85],[0,0],[-17,-25],[-22,-34],[-80,-20],[-78,-19],[-353,25],[0,0],[-14,35],[10,30],[0,0],[68,-6],[-98,54],[-69,39],[-38,4],[-123,15],[-6,-25],[12,-13],[9,-12],[0,0],[-66,1],[-160,109],[-91,62],[-19,49],[-15,39],[0,0],[84,151],[0,0],[57,37],[45,30],[103,25]],[[22136,129957],[0,0],[-49,-6],[-126,119],[-177,104],[-12,6],[0,0],[-76,17],[-37,8],[0,0],[-40,38],[0,0],[45,45],[82,20],[65,15],[117,2],[26,0],[0,0],[150,-93],[52,-77],[26,-38],[0,0],[-24,-82],[-22,-78]],[[95788,130001],[-241,-111],[0,0],[-1,-1],[-81,-14],[0,0],[-152,20],[-30,-9],[-206,-60],[0,0],[-26,50],[-52,101],[15,109],[122,90],[305,149]],[[95441,130325],[347,118]],[[95788,129981],[0,20]],[[36349,131080],[-182,-5],[-140,-4],[-2,95],[0,0],[77,51],[89,60],[159,65],[289,-33],[31,-3],[0,0],[21,-12],[48,-26],[11,-15],[21,-30],[-14,-55],[0,0],[-408,-88]],[[37472,131457],[-24,-6],[-102,-24],[-133,15],[-71,8],[-80,20],[-97,25],[-38,35],[0,0],[7,23],[149,99],[118,78],[125,24],[109,-150],[37,-147],[0,0]],[[23350,131968],[133,-21],[520,-82],[76,-29],[13,-6],[38,-44],[-13,-24],[-1,-1],[0,0],[-89,-26],[-66,-19],[0,0],[-156,-230],[-97,-19],[-37,-8],[-47,-88],[-34,-64],[-84,-68],[-48,-39],[0,0],[20,-250],[-71,-179],[0,0],[510,-614],[422,-249],[294,-84],[86,-69],[0,0],[-72,-47],[-63,-42],[-196,32],[-158,26],[0,0],[107,-45],[127,-5],[70,-51],[0,0],[-178,32],[-181,32],[-56,72],[-187,16],[-11,-83],[0,0],[52,1],[73,3],[0,0],[3,-55],[0,0],[-35,11],[-149,48],[-173,29],[-51,-16],[-28,-9],[-34,34],[-15,15],[-114,-12],[-52,-6],[0,0],[9,-67],[0,0],[-27,-15],[-60,-32],[-149,52],[-346,120],[-475,42],[-13,7],[-54,27],[0,0],[148,23],[75,51],[0,0],[-79,65],[10,51],[196,0],[94,0],[1,4],[7,21],[-35,67],[0,0],[-21,-2],[-187,-23],[-53,18],[-54,18],[-134,119],[-23,78],[9,67],[2,19],[-174,-32],[0,0],[9,-74],[-34,-22],[-7,-5],[0,0],[-87,41],[-93,97],[-108,0],[-90,-28],[-124,-38],[-130,13],[-122,45],[-44,50],[-66,130],[-15,30],[0,7],[1,45],[33,95],[13,39],[31,50],[46,21],[93,33],[345,-66],[148,239],[66,73],[97,105],[0,0],[-45,9],[-67,14],[-18,26],[-9,14],[0,0],[124,26],[329,-22],[122,15],[0,0],[-652,14],[-47,36],[-38,29],[0,0],[47,51],[38,42],[82,18],[99,22],[209,-24],[151,-1],[0,0],[-14,3],[-110,26],[-24,21],[-72,63],[0,0],[24,95],[5,16],[0,0],[59,33],[85,46],[268,52],[19,-6],[30,-9],[118,12],[132,13],[61,45],[7,5],[218,52],[86,-27],[106,-34]],[[32450,131769],[-478,-95],[-43,4],[-37,3],[0,0],[-4,13],[-5,14],[32,123],[32,124],[31,54],[1,2],[129,40],[351,32],[121,-29],[88,-22],[48,-42],[36,-31],[72,-61],[49,-41],[5,-16],[7,-27],[0,0],[-435,-45]],[[74656,132055],[0,0],[-8,-74],[-10,-107],[-99,-27],[-81,-23],[-692,70],[-252,26],[-211,50],[-247,58],[-214,-3],[-87,-19],[-211,-47],[-50,12],[-25,26],[-16,15],[0,0],[24,14],[31,16],[275,1],[65,28],[79,33],[110,91],[26,46],[15,28],[99,99],[66,30],[556,37],[197,-49],[155,-62],[315,-125],[49,-30],[62,-38],[60,-58],[19,-18]],[[72976,132437],[-11,-5],[-11,-4],[-84,16],[-65,12],[0,0],[-16,16],[-104,101],[0,5],[9,93],[38,36],[75,19],[119,7],[137,7],[84,-17],[40,-8],[33,-35],[-32,-154],[0,0],[-75,-23],[-77,-24],[-39,-13],[-37,-12],[2,-2],[14,-15],[0,0]],[[57162,132809],[-371,-231],[-312,38],[-343,95],[8,46],[10,61],[87,78],[81,73],[277,-19],[365,-21],[52,-2],[107,-38],[19,-39],[20,-41]],[[76492,133653],[154,-37],[82,1],[34,9],[54,16],[0,0],[-15,1],[-26,3],[0,0],[48,38],[174,33],[364,-33],[138,-49],[286,-100],[104,14],[132,19],[372,-56],[391,-59],[33,8],[36,8],[90,-17],[-180,-196],[-652,-114],[-205,-11],[-132,-8],[-197,17],[-234,19],[-387,165],[-7,1],[-298,55],[-285,85],[-189,83],[71,170],[35,84],[0,0],[5,4],[45,36],[115,-33],[44,-36],[-36,-81],[0,0],[5,-6],[31,-33]],[[70176,133659],[-17,0],[-180,0],[-1,5],[-8,42],[0,0],[112,364],[104,-93],[90,-80],[0,0],[-34,-132],[0,0],[24,-44],[0,0],[-7,-11],[-18,-26],[-65,-25]],[[72927,133940],[175,-5],[0,0],[3,47],[9,155],[69,95],[0,0],[145,-4],[164,-35],[34,-8],[0,0],[-111,112],[0,0],[15,12],[7,5],[181,-37],[240,-107],[241,-107],[286,-47],[137,18],[150,-6],[267,-11],[407,-113],[258,-72],[54,-36],[52,-34],[0,0],[-134,4],[-158,-56],[-21,-7],[-49,-43],[5,-7],[35,-60],[-7,-20],[-5,-16],[-73,-90],[-347,-108],[-298,-57],[-629,-120],[-212,67],[-89,28],[0,0],[8,12],[20,28],[109,-4],[0,0],[-2,32],[-1,16],[-1232,-173],[-25,-4],[0,0],[3,3],[15,11],[0,0],[-24,47],[-7,13],[0,0],[-58,19],[-147,48],[-86,-45],[0,0],[0,-22],[0,-27],[57,-17],[0,0],[-16,-21],[-49,-67],[-112,-62],[0,0],[-12,-3],[-79,-18],[-186,35],[-300,57],[-544,256],[-16,7],[-10,7],[-219,167],[-15,41],[-6,15],[0,0],[100,31],[6,6],[98,93],[-17,69],[-77,33],[24,81],[165,36],[13,8],[67,46],[91,153],[262,45],[135,58],[90,39],[279,19],[0,0],[-7,-19],[-3,-10],[30,-41],[384,-112],[252,-145],[241,-78]],[[31246,134619],[-72,-41],[-324,-185],[-1105,-242],[-1597,-279],[-751,-155],[-305,-106],[0,0],[-11,-2],[-212,-34],[-135,-69],[-41,-21],[0,0],[-84,-77],[-370,-81],[0,0],[88,-17],[87,-16],[8,-75],[1,-5],[-102,-61],[-502,-129],[-202,55],[0,0],[6,-109],[-189,-74],[-135,-10],[0,0],[25,-43],[28,-48],[5,-62],[3,-36],[-107,-70],[-102,-29],[-67,-20],[4,-27],[5,-47],[0,0],[-69,-12],[-155,37],[-62,15],[-25,24],[-85,82],[-35,17],[-9,-3],[-33,-11],[0,0],[20,-84],[259,-141],[0,0],[3,-111],[-50,-27],[-87,-18],[0,0],[-62,77],[-86,21],[-161,11],[-168,12],[0,0],[117,-20],[150,-25],[116,-48],[69,-109],[0,0],[-166,-68],[-139,26],[-61,12],[-179,92],[0,0],[72,-66],[0,0],[244,-107],[0,0],[8,-26],[-178,-115],[-108,-70],[-264,18],[-8,1],[-118,43],[-198,33],[-461,78],[-86,-15],[-159,-28],[-194,-64],[-78,23],[-9,16],[-5,8],[0,0],[100,79],[107,85],[519,118],[83,-18],[105,-22],[0,0],[-123,34],[-82,23],[-415,-30],[-110,-44],[-88,-34],[-36,4],[-36,4],[-133,64],[-43,21],[-33,57],[0,0],[314,81],[246,64],[0,0],[-7,27],[0,1],[-14,4],[-24,8],[0,0],[6,19],[0,0],[235,104],[99,13],[234,-46],[158,-30],[0,0],[2,22],[1,12],[-63,17],[-277,75],[0,0],[128,40],[-8,12],[-36,52],[0,0],[195,73],[287,46],[0,0],[-325,36],[-39,16],[-30,12],[0,0],[20,38],[14,27],[116,39],[482,-27],[180,21],[0,0],[-252,86],[-286,-17],[-91,21],[0,0],[2,4],[11,20],[157,49],[322,53],[0,0],[-198,60],[-21,6],[0,0],[-17,-3],[-157,-34],[-25,13],[-128,69],[0,0],[24,43],[6,10],[0,0],[44,24],[37,21],[0,0],[46,-7],[129,-17],[38,-27],[84,-59],[90,17],[144,103],[0,0],[-90,72],[0,0],[36,22],[42,25],[107,26],[102,-15],[103,-15],[176,29],[43,58],[63,84],[61,40],[93,61],[183,59],[120,40],[322,57],[388,69],[133,102],[31,13],[49,21],[315,15],[0,0],[-66,-29],[-150,-65],[0,0],[11,-7],[26,-15],[77,5],[79,6],[126,53],[110,46],[-1,1],[-25,26],[-118,4],[28,79],[56,22],[397,10],[424,-52],[94,-11],[271,18],[140,36],[192,49],[294,-1],[208,32],[3,1],[283,103],[111,13],[269,32],[150,42],[48,131],[111,32],[266,79],[488,95],[196,6],[73,-2],[67,-2],[276,-55],[109,-46],[95,-97],[30,-70],[-100,-127]],[[51169,136943],[-259,-267],[-160,-166],[0,0],[85,3],[394,209],[16,9],[35,9],[103,29],[21,28],[0,0],[45,4],[154,13],[23,-6],[63,-16],[14,-72],[245,-160],[133,-14],[14,-2],[0,0],[78,21],[159,-36],[35,-8],[0,0],[63,-60],[44,-154],[-134,-106],[-142,-65],[-47,-21],[0,0],[-332,1],[-849,-113],[-10,1],[-231,23],[-242,-6],[-246,-5],[-83,-11],[-90,-12],[-516,-141],[-353,-39],[0,0],[0,51],[0,148],[0,0],[474,336],[-22,3],[-80,11],[10,19],[14,28],[157,97],[59,-4],[0,0],[74,32],[77,76],[81,79],[0,0],[-42,33],[-5,3],[155,135],[81,9],[13,2],[105,6],[80,17],[73,16],[79,43],[141,78],[105,-14],[118,-15],[223,-59],[0,0]],[[45669,137386],[-19,-6],[-291,-91],[-757,-46],[-75,10],[-198,30],[-52,29],[0,0],[307,-11],[148,-6],[54,9],[152,24],[0,0],[-70,26],[-59,22],[-258,8],[-249,9],[-52,19],[0,0],[5,63],[6,86],[107,4],[318,11],[66,-9],[492,-17],[79,-2],[62,-12],[422,-80],[0,0],[-138,-70]],[[48000,137661],[0,0],[71,-25],[187,-65],[-104,-127],[-852,-150],[0,0],[268,18],[15,1],[14,2],[423,56],[15,-23],[-248,-57],[-59,-14],[0,0],[-13,-27],[-21,-42],[0,0],[23,-12],[14,-8],[58,37],[115,72],[231,53],[70,17],[74,34],[133,62],[51,53],[12,13],[15,6],[136,52],[147,-8],[179,-8],[40,-47],[115,-9],[249,-104],[56,-46],[21,-17],[-92,-29],[0,0],[-14,-26],[-41,-74],[-27,-69],[12,-60],[-36,-171],[0,0],[-81,-30],[-183,52],[-9,0],[-70,-4],[0,0],[24,-18],[29,-21],[382,-144],[0,0],[45,-105],[-35,-23],[-11,-7],[-320,-80],[-1018,-6],[-292,73],[-137,83],[-952,48],[-61,-15],[-32,-8],[-162,37],[-127,72],[-112,64],[2,113],[1,58],[0,0],[-2,7],[-13,31],[-142,7],[-52,3],[-4,-27],[0,0],[-60,11],[-65,12],[-3,28],[-2,17],[15,25],[15,25],[-150,-65],[-119,-52],[-72,7],[-68,7],[0,0],[71,60],[659,197],[-35,81],[74,64],[16,14],[243,94],[255,-14],[619,21],[51,1],[35,4],[474,44],[142,1]],[[24416,137582],[-141,-1],[-395,-2],[-180,25],[28,68],[44,109],[0,0],[613,41],[78,-30],[34,-14],[0,0],[-45,-165],[-19,-16],[-17,-15]],[[22512,137683],[-67,-4],[-405,-27],[-309,32],[-22,2],[-9,4],[-93,43],[0,0],[73,10],[49,7],[194,64],[93,30],[270,2],[0,0],[-2,-20],[-2,-13],[0,0],[156,-44],[172,-48],[0,0],[-77,-30],[-21,-8]],[[25518,137875],[9,-3],[200,-75],[0,0],[-388,4],[-274,-51],[-4,-3],[-39,-25],[0,0],[163,-20],[63,-7],[0,0],[-5,-10],[-19,-36],[-233,-49],[-60,4],[-51,3],[-140,24],[-155,26],[-42,75],[0,0],[5,74],[0,0],[-162,96],[0,0],[98,4],[525,21],[431,-44],[78,-8]],[[18963,138228],[163,-32],[155,13],[39,3],[126,-16],[18,-5],[40,-14],[65,-60],[45,-42],[0,0],[-55,-19],[-31,-11],[-51,5],[-171,17],[-92,19],[-48,11],[0,0],[-16,32],[-2,4],[-66,29],[-114,10],[-111,-26],[-48,-48],[-240,-80],[-42,-14],[-254,-57],[-92,-2],[-160,-3],[-671,84],[0,0],[203,16],[534,44],[339,51],[112,17],[128,33],[0,12],[-1,11],[0,0],[51,17],[247,1]],[[27326,138244],[86,-74],[0,0],[-3,-11],[-20,-78],[0,0],[-61,-59],[-203,-69],[-352,-121],[-287,19],[-362,23],[-144,-17],[-222,88],[0,0],[7,32],[22,87],[30,43],[37,36],[38,37],[96,23],[8,2],[13,1],[183,15],[55,-7],[53,-7],[0,0],[-8,-1],[-114,-19],[0,0],[154,-6],[661,53],[218,18],[9,-1],[106,-7]],[[20884,138268],[2,-2],[15,-20],[0,0],[-288,-40],[-64,-19],[-106,-32],[0,0],[6,-1],[130,-21],[106,23],[113,24],[105,7],[127,8],[335,-70],[0,0],[-233,-64],[-156,-43],[-366,-42],[-384,-43],[-9,-11],[-19,-25],[-281,-71],[0,0],[-232,21],[-41,-11],[-128,-33],[5,-13],[12,-28],[182,-10],[59,-49],[30,-26],[-108,-29],[-551,-45],[-57,65],[0,0],[62,62],[0,0],[-328,-14],[-129,-38],[-49,-14],[-70,15],[-30,6],[-91,109],[0,0],[207,42],[43,8],[9,-1],[43,-7],[25,-21],[29,-23],[204,-4],[176,-3],[35,22],[0,0],[-207,18],[-77,29],[-11,5],[369,3],[0,0],[11,10],[8,8],[0,0],[-42,27],[-288,2],[-168,1],[0,0],[382,70],[244,5],[0,0],[7,-2],[139,-49],[269,30],[0,0],[46,25],[141,75],[-50,58],[-73,5],[-112,7],[0,0],[-11,22],[41,40],[160,40],[203,52],[238,33],[0,0],[130,-17],[0,0],[-301,-37],[0,0],[165,-20],[378,76],[69,-55],[0,0]],[[24720,138114],[-135,-12],[-140,-13],[-67,22],[-211,72],[-1240,176],[-8,7],[-19,14],[0,0],[54,28],[87,44],[140,-14],[95,-10],[651,-73],[266,-30],[142,-33],[530,-123],[0,0],[-102,-39],[-43,-16]],[[28294,138103],[-333,-41],[-23,1],[-51,2],[-300,117],[0,0],[390,130],[307,15],[226,11],[45,33],[0,0],[-12,24],[-4,7],[11,72],[55,18],[47,15],[119,16],[9,1],[35,-2],[212,-14],[188,-72],[20,-26],[25,-33],[-10,-85],[-236,-111],[-261,-51],[-237,-14],[-222,-13]],[[48078,138188],[31,-26],[88,-74],[0,0],[-243,-30],[-130,-16],[-58,9],[-56,8],[132,-302],[0,0],[-32,-22],[-15,-10],[-179,-6],[-537,-18],[-573,-46],[-220,-17],[-152,-29],[-374,-72],[-136,2],[-287,49],[-266,45],[-275,106],[0,0],[394,20],[0,0],[-677,-11],[-122,-2],[155,55],[150,9],[135,7],[21,21],[5,4],[0,0],[-163,28],[0,0],[15,5],[18,4],[433,43],[52,6],[45,61],[106,147],[0,0],[-214,-17],[-65,-5],[0,0],[-21,11],[-22,13],[3,1],[406,176],[502,74],[439,64],[284,73],[0,0],[-144,22],[15,21],[260,11],[95,5],[36,-7],[62,-11],[0,0],[15,-15],[10,-10],[-17,-16],[0,0],[502,-240],[569,-98]],[[24817,138602],[-812,-99],[-436,28],[0,0],[-34,37],[-28,31],[17,17],[19,18],[56,6],[363,-47],[24,-3],[25,14],[30,17],[0,0],[5,50],[0,0],[31,29],[105,7],[574,-77],[61,-28],[0,0]],[[77529,108495],[-4,-1],[-146,-72],[-459,-339],[-306,-303],[-68,18],[48,102],[283,298],[328,346],[21,-62],[0,0],[12,-8],[10,-6],[135,11],[36,25],[39,27],[94,128],[0,0],[25,13],[77,42],[80,-36],[0,0],[-30,-149],[-175,-34]],[[75855,107342],[-51,-87],[0,0],[-6,23],[-18,80],[124,115],[169,285],[55,9],[85,15],[89,-18],[1,0],[-136,-122],[-84,-43],[-228,-257]],[[19494,105615],[56,-50],[198,-295],[136,-372],[161,-271],[106,-70],[187,-3],[116,-70],[74,-108],[8,-84],[-67,57],[-76,23],[-97,-7],[-227,-115],[-44,-47],[-39,-87],[-17,-255],[-60,-338],[-31,-46],[-22,-199],[-57,-28],[24,64],[-59,73],[-47,-4],[-18,-52],[-38,-307],[1,-254]],[[19662,102770],[0,-114],[43,-338],[34,-121],[59,-96],[100,-81],[96,-48],[288,-30],[139,-49],[26,-22],[11,-73],[54,-122],[87,-87],[278,-201],[149,-68],[385,-105],[129,13],[798,239],[307,48],[-42,-30],[-187,-31],[31,-39],[128,-24],[85,41],[-1,88],[-71,328]],[[22588,101848],[-2,9],[-59,453],[21,440],[51,295],[-77,227],[-126,231],[-162,20],[-73,-44],[65,297],[9,-101],[153,-52],[97,44],[-141,308],[-82,75],[-207,0],[-8,-107],[-37,17],[-101,155],[-29,185],[19,146],[113,479],[70,-109],[265,-128],[141,-99],[365,88],[198,128],[31,75],[-16,116],[-383,311],[-102,497],[-50,43],[-88,18],[-295,-40],[-108,-85],[-73,-180],[-11,-68],[32,-157],[-4,-240],[-28,-2],[-196,422],[-7,55]],[[21753,105570],[-22,173],[19,159],[100,194],[63,193],[-8,53],[-105,78],[-267,63],[-389,235],[-62,114],[-269,723],[-330,138],[-31,58],[6,149],[38,65],[357,-48],[42,-53],[90,-45],[163,28],[-17,79],[-254,205],[-8,86],[292,333],[681,18],[279,-64],[72,33],[-279,152],[-9,25],[8,79],[77,113],[31,17],[87,171],[44,226],[29,343],[-86,172],[-113,52],[-259,-1],[-104,-124],[-20,1],[-247,84],[-147,127],[-193,50],[-128,-47],[-819,-443],[-198,-153],[-1,-1],[-7,6],[-277,140]],[[19582,109526],[277,-140],[7,-6],[-345,-363],[-284,-143],[-164,-20],[-171,-97],[5,-31],[-115,-276],[-147,-308],[-200,-145],[-33,-75],[-21,-73],[20,-75],[199,-89],[121,-146],[175,-384],[-46,-191],[-12,-370],[193,-335],[302,-465],[108,-142],[43,-37],[0,0]],[[3969,116712],[-180,65],[-60,57],[-93,-9],[-96,8],[-12,3],[-56,15],[0,0],[-90,-116],[-172,-149],[23,-23],[121,-15],[135,-18],[42,9],[77,16],[9,16],[13,23],[-38,166],[44,65],[0,0],[93,9],[60,-57],[180,-65]],[[34768,101759],[-114,27],[-112,-22],[-24,-78],[61,-97]],[[34579,101589],[-251,-146],[-286,40]],[[34042,101483],[-489,-46],[-273,-80],[-360,-248],[-268,-285],[-27,-64],[110,-80],[85,-176],[38,-163],[28,-263],[-80,-206],[-207,-217],[-74,-133],[-2,-86],[84,-99],[-51,-218],[-125,-83],[-179,-22],[-369,73],[-36,-96],[61,-125],[137,-130],[67,-182],[2,-56],[-64,-71],[-163,-114],[-199,-10],[-51,-68],[-19,-150],[-125,-356],[38,-362],[-113,-227],[-55,-63],[-68,-33],[-60,15],[-47,79],[-167,44],[-211,-49],[-243,-150],[33,-98],[23,8],[27,-28],[-14,-51],[-286,-101],[-109,19],[-32,73],[-118,-38],[-265,-315],[-55,-270],[46,-510],[-58,-84],[-707,-271],[-197,33],[-304,-74],[-239,-23],[-112,27],[-442,-56],[-388,54],[-739,312]],[[26631,95590],[518,789],[38,149],[-31,271],[-41,61],[-495,99],[-24,179],[5,246],[-32,483],[-106,460],[45,103],[53,242],[-118,104],[-16,363],[29,81],[248,381],[157,717],[3,79]],[[26864,100397],[353,-142],[238,-187],[265,40],[176,128],[76,206],[6,169],[395,122],[333,199],[77,89],[33,76],[71,549],[514,251],[36,117],[33,0],[310,-175],[106,0],[43,21]],[[29929,101860],[317,-17],[260,-70],[138,-65]],[[30644,101708],[14,-84],[123,-125],[427,300],[80,33],[119,-103],[193,31],[-30,162],[79,113],[31,13],[159,21],[185,-62],[61,77],[19,57],[-13,105],[-15,14],[8,103],[258,384],[142,52],[243,-185],[-3,-70],[106,-364],[-68,-543],[75,-262],[41,-70],[27,-13],[95,6],[836,646],[151,10],[133,-33],[0,-72],[-91,-58],[22,-29],[110,0],[196,83],[52,57],[113,10],[127,-16],[63,-35],[56,-102]],[[24019,91510],[-105,-167],[-47,-35],[-18,4],[-23,61],[-13,56],[23,48],[-30,45],[-27,10],[-63,-34],[-23,-46],[-8,-518],[31,-68],[-34,-145],[-170,-102],[-33,-395],[-123,-278],[-14,-336]],[[23342,89610],[-130,-51],[-1277,222],[-190,145],[-475,820],[-28,153]],[[23852,92405],[50,-106],[-10,-198],[14,-55],[53,4]],[[18306,103126],[-226,-21]],[[18080,103105],[3,43],[-93,284],[-102,257],[-173,-17],[-368,185],[-66,-22]],[[17281,103835],[-125,157],[-185,120],[-149,-17],[-182,70],[-36,219],[18,131],[66,131],[0,32],[-40,172],[-102,71],[-31,64],[15,27]],[[16530,105012],[323,55],[417,26],[155,65]],[[17425,105158],[58,-154],[189,-81],[94,-114],[-26,-78],[-89,-49],[-20,-51],[46,-140],[130,-112],[119,-52],[-21,-255],[-25,-73],[180,-197],[106,-47],[126,-118],[-19,-123],[2,-152],[31,-236]],[[17425,105158],[168,145],[137,-46],[262,-198],[274,-84],[103,24],[49,145],[-38,69],[-193,123],[-53,74],[4,135],[106,127],[240,-140],[70,-67],[111,-106],[66,-160],[80,-65],[225,-61],[0,0],[11,4],[37,13],[410,525]],[[19662,102770],[-21,7],[-49,-27],[-90,11],[-332,346],[0,54],[47,32],[155,359],[-213,263],[-110,-28],[-383,-298],[-207,-181],[-153,-182]],[[18080,103105],[-408,147],[-171,206],[-197,304]],[[17304,103762],[-23,73]],[[45053,88993],[2,-151],[-38,-344],[-116,69],[-64,-93],[-27,-132],[40,-117]],[[43000,89183],[-48,129],[-53,467],[-82,377],[-110,248],[13,157],[79,58],[20,58],[-12,152],[-33,126],[-219,75],[-98,92],[-68,135],[75,216],[174,125],[212,75],[75,0],[34,79],[-140,202],[-177,97],[-201,163],[-3,94],[44,174],[99,106],[9,171],[34,85],[255,-270],[106,27],[-74,68],[24,75],[66,-48],[39,-170],[29,-56],[87,-88],[115,-31],[25,15],[40,49],[-23,49],[1,45],[12,28],[27,2],[51,-67],[48,-199],[13,-192],[-19,-178],[31,-131],[324,-124],[470,49],[318,-28],[147,14],[172,-114],[76,-91],[6,-55],[-127,-137],[-65,-232],[-26,-40],[-159,-152],[-97,-23],[-169,-98],[-60,-66],[-76,-230],[6,-75],[138,-435],[115,-120],[71,34],[45,63],[10,29],[-23,104],[124,384],[147,18],[22,-33],[41,-361],[88,-422],[58,-638]],[[58060,74708],[-126,-128],[14,-190],[28,-73],[-5,-130],[-49,-133],[-67,-84],[-25,1],[-122,206],[-86,206],[-108,72]],[[58143,74725],[105,-511],[-118,61],[-19,44],[-36,311]],[[44494,93836],[-47,-108],[6,-47],[44,-71],[217,-22],[40,-134],[-5,-227],[19,-116]],[[44768,93111],[-56,-34],[-166,-30],[-580,-39],[-80,26],[-563,-50],[-272,61],[-146,137],[-77,131],[0,40],[17,52],[69,68]],[[42914,93473],[98,236],[239,393],[54,64],[107,61],[286,-60],[56,-69],[118,-33],[248,-11],[200,28],[51,-34],[71,-94],[52,-118]],[[34768,101759],[81,55],[15,185],[-97,426],[-117,320],[-229,152],[-176,-58],[-75,48],[-30,42],[-64,183],[23,63],[-110,302],[-8,87],[38,56]],[[34019,103620],[154,19],[48,97],[-34,126],[-4,96],[48,147],[28,32],[103,36],[753,416],[115,-162],[146,-71],[237,16],[111,91],[114,359],[215,118],[227,-33],[166,24],[305,303],[1046,544],[37,49],[2,95]],[[37836,105922],[56,13],[11,28],[-64,274],[87,205],[69,110],[191,146],[1,138],[-14,119],[-135,314],[-43,159],[-46,349],[22,145],[-142,179],[-73,-11],[-79,80],[6,24],[116,101],[514,92],[334,132],[151,9],[58,-79],[315,-46],[50,22],[16,118],[-26,64],[-153,96],[-13,68],[45,229],[49,65],[127,317],[240,734],[59,7],[274,-157],[178,-51],[114,-14],[154,29],[209,1],[130,-106],[347,175],[65,133],[6,117],[-97,537],[14,91],[96,191],[39,44],[195,16],[267,87],[113,163],[4,118],[-28,39],[-5,54],[67,88],[149,45],[108,-26]],[[41964,111697],[0,0],[59,-4],[70,-5],[60,33],[49,26],[47,-3],[22,-1]],[[42271,111743],[36,-130],[-27,-58],[92,-277],[349,-258],[42,-115],[217,-124],[326,-46],[450,-268],[76,-249],[172,-294],[83,-89],[44,-112],[31,-159],[-97,-530],[-110,-171],[-27,-154],[1,-47],[119,-225],[372,-105],[644,-60],[157,18],[366,-71],[265,-161],[414,-334],[182,-94],[128,19],[83,-41],[148,-325],[188,-530],[298,-396],[367,40],[710,-110],[643,-63],[517,97],[308,-13],[484,-131],[206,-209],[605,-219],[200,-104],[263,-66],[375,18],[169,-144],[112,-57],[129,139],[902,453],[423,130],[806,-21],[320,28],[484,222],[91,63],[360,469],[251,111],[263,169],[4,110],[-50,98],[-180,191],[-85,158],[97,291],[93,202],[135,116],[212,-17],[123,-72],[85,-79],[94,-37],[409,-71],[343,199],[181,190],[42,98],[201,48],[320,12],[142,41],[237,186],[100,151],[-11,24],[14,61],[30,54],[150,212],[160,86],[303,28],[157,112],[391,158],[273,-25],[295,-79],[221,-9],[133,53],[13,127],[-10,62],[-81,181],[-703,739],[-181,27],[-257,-9],[-187,-214],[-145,-23],[-85,77],[-168,63],[-312,-15],[-86,-52],[-73,-90],[-50,-4],[-173,164],[-46,210],[26,13],[666,1403]],[[59048,112308],[59,-37],[104,-64],[188,-77],[183,-53],[21,-6],[36,-1],[64,-1],[74,28],[63,25],[132,116],[163,142],[292,54],[44,43],[76,78],[14,24],[15,25],[9,92],[-118,91],[359,613],[90,217],[63,150],[52,71],[168,134],[170,138],[33,149],[-8,74],[-26,240],[-129,64],[-98,-6],[-75,130],[-16,28],[253,234],[302,164],[676,155],[97,-3],[229,-9],[200,52],[227,14],[95,-27],[55,-15],[294,-162],[307,-111],[70,31],[101,1],[86,-39],[181,-83],[30,-30],[18,-19],[12,-18],[212,-320],[56,-48],[37,-57],[49,-75],[145,-441],[174,-532],[106,-224],[37,-33],[50,-93],[36,-69],[131,-529],[-10,-44],[-6,-23],[23,-109],[110,-178],[62,-55],[52,-10],[161,-32],[41,10],[66,15],[680,-171],[40,-37],[80,-74],[45,-62],[55,-74],[174,-159],[91,-17],[160,-30],[11,-106],[16,-160],[1,-295],[148,-304],[0,0],[49,-22],[94,-41],[84,-8],[125,-11],[430,20],[95,5],[216,195],[249,132],[212,83],[302,119],[172,38],[80,-2],[72,-2],[8,-34],[2,-9],[-35,-142],[42,-243],[18,-107],[-223,-266],[-140,-288],[-239,-851],[-131,-247],[-35,-67],[-154,-175],[-21,-42],[-6,-14],[-26,-133],[11,-32],[-82,-144],[-15,-27],[-351,128]],[[68119,108401],[-45,16],[-11,5]],[[68063,108422],[-187,91],[-31,-2],[-25,-2],[-57,-64],[-76,-143],[-28,-30],[-33,-34],[-124,-25],[-59,-13],[-65,-140],[123,-553],[12,-53],[-17,-37],[-17,-37],[-12,-164],[3,-143],[5,-18],[19,-60],[-1,-145],[-77,-298],[-53,-79],[-113,-10],[-105,-10],[-71,-47],[-83,-55],[0,0],[66,-119]],[[67133,106094],[-324,471],[-118,7],[-56,-190],[-49,-280],[-117,-14],[-172,-149],[-46,-70],[-150,-104],[-448,-1],[-35,-22],[70,-226],[62,-51],[29,-57],[-47,-128],[-64,-65],[-286,43],[-295,100],[-5,69],[-40,102],[-53,42],[-55,-27],[-144,-86],[-68,-238],[-215,-285],[-118,-124],[-189,-95],[-414,-264],[-304,-309],[2,-95]],[[57604,89473],[-37,14],[-74,-46]],[[54004,88640],[-79,54],[-231,-8],[-172,108],[-280,307],[-87,222],[3,91],[22,88],[78,68],[41,91],[-8,40],[-152,105],[-164,-16],[-268,72],[-93,59],[-180,260],[-158,-122],[-220,-354],[-158,-105],[-216,-20],[-119,-38],[-146,43],[-147,103],[-135,-295],[-198,180],[-151,98],[-48,-107],[-148,-211]],[[50590,89353],[-75,46],[-157,35],[-58,-67],[-43,-178],[25,-176],[92,-150],[15,-145],[-10,-292],[-89,-82],[-154,14],[-73,45],[-12,224],[-42,26]],[[50009,88653],[14,37],[-30,134],[-132,-69],[-96,-145],[-69,-40],[-254,18],[-24,21],[-93,334],[-58,118],[-250,46],[-105,189],[59,281],[99,195],[-175,159],[-60,9],[-97,62],[-24,51],[-78,456],[3,293],[-391,-34],[-260,-194],[-68,52],[15,46],[80,103],[-91,321],[6,204],[192,426],[411,483],[68,340],[30,294],[-20,650],[-46,196],[-66,46],[-61,-14],[-9,-62],[-26,-32],[-33,9],[-95,351],[2,120],[-96,169],[-157,172],[-124,-31],[-39,-145],[-56,-56]],[[47805,94216],[-306,242],[-112,142],[-189,432],[-91,119],[-87,30],[-88,-22],[-164,-129],[-167,-74],[-68,-5],[-240,144],[-90,1],[-109,-70],[-25,-124],[-76,-89],[-289,-214],[-143,1],[-120,-97],[-316,-478],[-149,-138],[-360,-57],[-122,6]],[[42914,93473],[-65,65],[-17,57],[-4,59],[65,260],[-36,139],[-32,37],[-91,39],[-236,-132],[-40,-60]],[[42458,93937],[-100,12],[-217,-53],[-210,-6],[-70,24],[-57,84],[-199,122],[-61,1],[-326,-159],[-154,345],[-187,-1],[-165,137],[-225,109],[-298,273],[-34,249],[-49,45],[-72,30],[-80,-23],[-48,-49],[-174,53],[-161,252],[-255,161],[-327,324],[-55,138],[-281,58],[-70,-15],[-60,-187],[-73,-145],[-63,12],[-15,22],[-32,136]],[[38340,95886],[-38,49],[-231,164],[-214,109],[-10,58],[1,5],[-9,21],[-127,145],[-5,3],[-55,84],[-66,14],[-112,-24],[-80,92],[-70,30],[-67,37],[-74,49],[-19,38],[-52,17],[-24,4],[-2,4],[-25,6],[-50,76],[-16,371],[22,100],[-3,7],[-39,53],[-27,38],[-80,116],[-8,57],[-1,2],[-52,211]],[[36807,97822],[11,36],[178,91],[25,-40],[21,-155],[66,-66],[37,-6],[55,17],[114,148],[8,7],[55,126],[0,69],[-45,120],[-15,168],[-73,28],[0,0],[0,0],[-2,5],[-125,172]],[[37117,98542],[-19,151],[29,242],[117,128],[109,-7],[85,120],[47,65],[60,194],[135,201],[101,32],[73,149],[15,220],[24,105],[86,134],[-39,57],[-82,35],[-27,-20],[-115,4],[-154,80],[-74,169],[-139,107],[-294,-54],[-465,-277],[-60,-70]],[[36530,100307],[-147,-25],[-266,46],[-266,127],[-85,77],[-147,62],[-123,12],[-64,140],[-31,118],[42,72],[-28,190],[-37,102],[-39,48],[-89,80],[-393,214],[-188,36],[-90,-17]],[[47805,94216],[12,-138],[-36,-117],[-121,-135],[-19,1]],[[47641,93827],[-57,96],[-224,159],[-484,227],[-83,-27],[-106,-115],[-104,-152],[2,-50],[-16,-19],[-102,-74],[-416,-208],[-307,-409],[-59,-55],[-124,-49],[-157,-24],[-496,12],[-140,-28]],[[54943,72356],[-37,-108],[48,-230],[99,-187],[253,-336],[113,-128],[64,-35],[135,65],[81,80],[157,39],[135,-51],[177,-6],[67,20],[108,83],[75,147],[20,79],[50,73],[111,76],[317,-13],[16,-26],[-18,-41],[55,-65],[284,-141],[33,-2],[68,54],[20,44],[178,96],[146,41],[96,-69],[173,386],[5,72],[-41,130],[139,197],[40,211],[15,182],[27,75],[51,60],[77,-18],[74,71],[39,333],[-8,180],[15,170],[49,227],[108,182],[779,-19],[41,-11],[84,-97],[94,-35]],[[63303,62808],[181,-125],[71,260]],[[63829,63124],[80,-422]],[[73147,68438],[0,-1607],[0,-1502],[-51,-211],[-41,-31],[91,-235],[2,-12],[10,-86],[0,-447],[0,-1324]],[[17291,101685],[10,-74],[94,-246],[284,-641],[146,-92],[130,-47],[133,-117],[-78,-525],[-83,-49],[-118,-245],[-101,-308],[-50,-304],[130,-188],[99,-112],[82,-59],[52,-87],[75,-146],[20,-58],[-30,-52],[72,-142],[290,-198],[426,-375],[199,-440],[-99,-304],[-1,-331],[143,-2],[58,-311],[264,-543]],[[19134,95712],[-146,83],[-195,0],[-106,-63],[-36,-53],[-134,-392],[-118,-218],[-81,-112]],[[18318,94957],[-138,-26],[-789,93],[-236,121],[-1431,1494],[-588,392],[-383,307],[-704,173]],[[14049,97511],[-236,1020]],[[13813,98531],[1072,787],[137,48],[102,121],[96,208],[2,405],[27,177],[67,137],[-8,182],[-61,168],[11,255],[68,146],[220,49],[83,73],[248,317],[2,43]],[[15879,101647],[162,105],[113,115],[169,8],[210,-101],[277,25],[270,-185],[117,105],[94,-34]],[[31062,90666],[143,0],[9,229],[466,33],[83,-82],[213,37],[34,61],[222,85],[31,-71],[-2,-57],[89,-30],[100,34],[59,82],[27,67],[-9,307],[-258,757],[-115,-28],[-69,33],[-98,190],[-9,121],[53,139],[-1,252],[-68,41],[-156,-1],[-162,124],[-14,47],[17,172],[42,143],[255,320],[74,220],[133,156],[100,11],[60,-72],[12,-54],[187,-105],[373,106],[151,91],[194,419],[36,153],[61,95],[323,231],[184,422],[38,170],[257,247],[177,424],[216,328],[62,128],[8,229],[-47,261],[54,143],[138,110],[260,100],[59,121],[-29,49]],[[35025,97654],[115,-4],[172,145],[50,94],[20,100],[-25,62],[77,90],[260,220],[157,-11],[92,-79],[54,-82],[158,-105],[97,-13],[89,49],[173,-94],[252,-162],[-29,-88],[21,-29],[49,75]],[[38340,95886],[-57,5],[-298,-349],[-216,-739],[3,-66],[196,-170],[165,-26],[198,-150],[278,-298],[178,-137],[304,-125],[208,-31],[33,-104],[-9,-76],[615,-97],[153,54],[127,-29],[199,-65],[40,-99],[-4,-64],[299,-312],[144,11],[164,-50],[132,-77],[186,-13],[167,-95],[165,-51],[402,-19],[283,-44],[37,55],[55,265],[-39,199],[-48,43],[-21,54],[33,304],[79,276],[0,48],[-33,23]],[[47641,93827],[-79,-85],[-19,-61],[21,-122],[47,-97],[-76,-45],[-46,64],[-53,30],[-282,-80],[-116,-79],[-86,-136],[-230,-230],[-151,-66],[-40,-41],[-39,-108],[-6,-123],[24,-150],[-47,-352],[-98,-147],[-113,-100],[-49,-147],[2,-63],[82,-49],[5,-34],[-1,-60],[-62,-186],[-315,-765],[-386,144],[-39,-96],[41,-232],[-37,-457],[-39,-91],[-47,18],[-52,-30],[-18,-166],[9,-204],[43,-130],[7,-103],[-117,-204],[-48,-51],[-139,33],[-39,-33]],[[26631,95590],[198,-308],[230,-528],[291,-302],[396,-227],[16,-364],[-11,-357],[142,-108],[91,13],[42,-27],[25,-63],[-70,-346],[-108,-71],[-160,-10],[-219,-83],[-193,-185],[-119,-289],[-119,-660]],[[17291,101685],[0,92],[-107,302],[-193,210],[81,289],[-85,533],[-95,356],[229,355],[71,68],[112,-128]],[[22588,101848],[268,14],[168,68],[81,149],[-5,29],[39,90],[107,103],[239,168],[509,59],[8,41],[67,52],[397,-11],[124,-179],[138,-102],[527,-221],[180,32],[283,-137],[141,-318],[319,-159],[150,-274],[461,10],[22,-64],[4,-519],[34,-260],[15,-22]],[[11556,95285],[-40,246],[-330,1199]],[[11186,96730],[3,5],[0,-1],[22,20],[31,33],[3,32],[0,1],[-1,5],[0,2],[0,2],[-1,3],[0,2],[-1,4],[0,1],[0,1],[-1,4],[0,3],[0,1],[0,2],[0,1],[1,3],[12,20],[6,10],[2,2],[0,1],[1,0],[0,1],[1,2],[37,43],[30,31],[19,15],[9,13],[0,4],[1,2],[-13,13],[-1,1],[-4,5],[-2,1],[0,1],[-3,3],[-1,1],[-1,1],[-1,0],[-1,1],[-2,3],[-1,0],[-3,3],[-1,1],[-1,1],[-4,4],[-1,1],[0,1],[-1,1],[-2,2],[-1,0],[0,1]],[[11671,98297],[128,-11],[174,135]],[[11973,98421],[23,-50],[-24,-244],[29,-167]],[[12001,97960],[-68,-253]],[[11933,97707],[-128,107],[-60,22],[-82,-57],[-58,-222],[-2,-202],[137,-141],[-58,-74],[-64,-42],[-32,-58],[-35,-135],[22,-71],[173,26],[141,98]],[[11887,96958],[-17,-269],[-127,-457],[-145,-906]],[[14049,97511],[-124,-134],[-1153,-414],[561,-809],[-234,-341],[-515,-310],[-100,-213],[-242,-252],[-655,133]],[[11887,96958],[27,185],[24,395],[-5,169]],[[12001,97960],[68,49],[53,-21],[306,-290],[233,-52],[1152,885]],[[37836,105922],[-121,172],[-299,75],[-137,125],[-26,73],[-330,91],[-603,66],[-448,19],[-584,-58],[-100,-56],[-213,33],[-271,118],[-278,194],[-56,4],[-363,-164],[-35,-86],[-50,-238],[29,-157],[-102,9],[-516,205],[-340,99],[-323,-72],[-166,-216],[-63,-124],[-9,-36],[45,-32]],[[32477,105966],[-225,-176],[-173,-86],[-230,-199],[-224,-124],[-115,-97],[-364,-378],[1,-332],[-40,-26],[-76,21],[-273,182],[8,39],[41,26],[24,121],[-104,99],[-108,23],[-328,-36],[-272,4],[-101,616],[-311,50],[0,355],[51,-5],[6,488],[-105,-48],[-300,420],[-185,196],[-186,39],[-134,-78],[-837,43],[-369,-80],[-260,-18],[-395,480],[-142,249],[-584,485],[-43,36],[-331,199],[-367,221],[-121,73],[-5,-1],[-1499,-492],[0,-3079]],[[23801,105176],[-290,-56],[-40,28],[-188,292],[-66,127],[-37,119],[-106,119],[-308,256],[-375,-74],[-340,-140],[-298,-277]],[[19582,109526],[-101,51],[-24,44],[-17,33],[18,52],[82,31],[8,-9],[19,-21],[136,81],[11,7],[-111,197],[-112,201],[-159,215],[-182,154],[0,0],[-259,4],[-75,1],[-15,-70],[-105,63],[-4,2],[-43,61],[-1,4],[-20,92],[36,78],[-9,91],[-9,94],[-286,114],[-77,30],[166,431],[79,38],[38,46],[28,35],[8,42],[4,21],[-33,57],[-64,47],[-46,34],[-7,42],[45,294],[42,118],[216,235],[-16,45],[2,40],[2,21],[144,150],[39,3],[2,0],[179,-178],[61,-103],[120,-206],[38,-19],[66,-33],[0,0],[195,87],[88,77],[-97,207],[-69,292],[231,59],[186,120],[18,11],[4,119],[76,68],[44,39],[45,13],[122,35],[182,93],[110,57],[0,0],[148,173],[53,63],[4,3],[96,64],[288,-57],[-5,-41],[-3,-23],[-20,0],[-53,-1],[26,-55],[55,-17],[151,15],[208,158],[187,64],[97,-171],[46,-81],[0,0],[154,29],[22,4],[310,-9],[99,-53],[26,-48],[23,-22],[125,-121],[69,-46],[98,-65],[177,-256],[-30,-115],[0,0],[24,-24],[51,-53],[45,34],[62,47],[-25,181],[-25,31],[-41,53],[-2,21],[-2,34],[9,10],[8,10],[1,0],[86,-11],[202,-134],[4,-2],[19,-36],[6,-12],[69,-58],[260,-147],[0,0],[158,93],[172,203],[77,66],[71,60],[216,16],[140,10],[53,-60],[60,-68],[76,-38],[21,-11],[19,7],[85,33],[39,37],[108,102],[114,34],[122,37],[42,-33],[55,-44],[55,-81],[5,-7],[6,-25],[21,-88],[88,-76],[376,-144],[-1,-8],[-2,-19],[13,-16],[18,-22],[154,32],[1,0],[79,73],[32,30],[142,76],[45,-49],[20,-21],[180,-5],[115,-3],[299,102],[62,39],[0,0],[101,349],[-3,33],[-41,52],[-40,51],[-160,37],[-289,136],[-171,81],[-54,43],[-105,85],[-34,105],[310,138],[86,38],[161,111],[-20,60],[-29,86],[0,0],[-19,17],[-94,81],[67,159],[105,135],[120,38],[96,-9],[183,-16],[123,-37],[99,34],[4,29],[6,36],[-8,18],[-9,19],[-359,109],[-188,57],[-13,79],[60,84],[26,-3],[22,-3],[-1,49],[0,0],[0,0],[-205,96],[45,142],[35,111],[113,86],[91,5],[141,-49],[399,-17],[153,50],[138,44],[406,95],[271,63],[196,31],[273,43],[45,-14],[74,-23],[86,39],[0,0],[21,75],[19,68],[91,49],[374,52],[294,41],[675,124],[203,61],[58,141],[77,38],[326,162],[457,-13],[41,-19],[52,-24],[9,-15],[9,-15],[214,1],[314,2],[63,-80],[51,-65],[2,-62],[0,0],[0,0],[142,-344],[-27,-131],[-49,-100],[-5,-9],[43,-187],[515,86],[-7,46],[-15,93],[58,-6],[33,-4],[20,-12],[29,-18],[55,-96],[41,-73],[-5,-22],[-22,-99],[28,-25],[31,-27],[102,30],[17,5],[0,0],[-33,27],[-64,50],[11,39],[6,22],[0,0],[51,13],[198,-40],[46,-72],[0,0],[13,-5],[107,-42],[113,16],[29,4],[-43,-76],[-111,-196],[9,-68],[0,0],[41,-59],[13,-18],[0,0],[10,-6],[35,-20],[105,102],[19,18],[136,50],[60,-9],[280,-43],[24,37],[31,46],[137,125],[43,-2],[48,-1],[231,145],[138,86],[773,300],[4,-14],[3,-16],[-36,-101],[-72,-112],[-55,-31],[-9,-5],[-17,25],[0,0],[0,0],[-37,4],[-66,7],[1,-17],[2,-26],[23,-43],[13,-23],[820,-635],[716,-1102],[25,-39],[208,-398],[285,-549],[0,0],[163,120],[53,91],[38,64],[25,80],[79,81],[9,10],[251,-99],[8,-107],[0,0],[0,0],[74,-85],[81,-84],[46,-48],[123,-37],[18,-5],[0,0],[313,-5],[151,46],[130,39],[204,102],[53,27],[57,1],[81,1],[219,-103],[96,-101],[49,-61],[101,-126],[15,-78],[14,-76],[243,-141],[161,-126],[41,-32],[87,-251],[13,-37],[22,-18],[46,-37],[33,-5],[460,-73],[144,95],[79,82],[4,4],[367,-388],[53,-113]],[[34019,103620],[-856,-159],[-209,65],[-115,188],[-281,-92],[-200,30],[-220,71],[-460,-23],[-109,-25],[-19,26],[-52,247],[58,117],[99,109],[219,54],[113,2],[266,-172],[250,202]],[[32503,104260],[-6,47],[132,56],[351,-129],[125,63],[-5,21],[135,150],[97,51],[149,26],[207,167],[-16,63],[-574,253],[-63,85],[-65,165],[-81,30],[-58,-156],[-97,-132],[-343,71],[-190,169],[-128,62],[22,106],[219,233],[326,204],[26,45],[-118,80],[-71,-24]],[[53732,82901],[-92,-580],[97,-264],[37,-163],[2,-99],[-31,-111],[-10,-406],[15,-154],[-20,-142],[-22,-50],[-42,-56],[-34,13],[-164,-64],[-304,-195],[-79,-117],[-100,-96],[-115,47],[-100,-85],[-25,-90],[9,-201],[22,-63],[70,-88],[43,-50],[28,18],[14,-25],[20,-83],[-8,-157],[-195,84],[-213,50],[-242,-143],[-198,-211],[-169,-83]],[[51035,80358],[-4,109],[-320,1272],[0,187],[35,36],[116,41],[212,492],[99,97],[260,81],[244,-64],[470,70],[84,-32],[35,-128],[32,-19],[40,31],[26,82]],[[52364,82613],[41,-133],[60,-68],[243,-70],[82,-76],[96,-9],[50,117],[-81,139],[-27,121],[194,61],[200,-9],[91,-106],[60,17],[182,130],[177,174]],[[19409,94483],[-393,-8],[-167,397],[-531,85]],[[64841,102269],[1,94],[247,284],[157,32],[401,-19],[116,101],[47,153]],[[50590,89353],[25,-73],[263,-379],[159,-61],[-12,-362],[18,-162],[114,-230],[83,-52],[305,-39],[125,93],[55,71],[108,-51],[148,-197],[44,-208],[77,-131],[91,-100],[9,-134],[-67,-173],[-100,-133],[-349,39],[-67,-282],[711,-622],[-24,-127],[130,-200],[52,-30],[122,-198],[73,-195],[188,-269],[265,-329],[14,-219],[79,-227],[32,-26],[16,14],[372,-249],[-57,-213],[38,-315],[105,-267],[-35,-210],[16,-182],[16,-24]],[[52364,82613],[132,59],[64,125],[9,404],[29,360],[-27,225],[-316,393],[-115,214],[-40,134],[-3,215],[39,342],[-6,84],[-45,94],[-58,53],[-407,629],[-308,99],[-67,-34],[-160,-345],[-176,-135],[-297,271],[-106,-21],[-103,-61],[-382,-482],[-38,14],[-58,56],[-12,166],[13,48],[26,14],[78,383],[68,673],[-51,424],[-165,18],[-97,-95],[-90,15],[-68,52],[-38,114],[85,374],[-114,150],[-114,-75],[-47,15],[-4,58]],[[49395,87640],[48,215],[408,596],[167,168],[-9,34]],[[12177,99585],[217,25],[41,-34],[114,-359],[-358,-486],[26,-19],[-15,-53],[-229,-238]],[[49395,87640],[-77,92],[-212,-101],[-194,-191],[-128,-193],[-254,-141],[-118,-20],[-208,42],[-75,-134],[-59,-171],[-27,-511],[-125,-214],[0,-175],[88,-391],[81,-159],[317,-488],[244,-800],[-123,-237],[-23,-395],[-146,-32],[-54,-84],[-3,-112],[25,-167],[71,-163],[172,-325],[180,-205],[80,-151],[54,-322],[5,-213],[-44,-52],[-12,-65],[70,-271],[109,-210],[118,-563],[-57,-180],[-201,-471],[-153,-213],[-67,-172],[-27,-176]],[[42271,111743],[82,10],[15,2],[100,85],[7,55],[-15,14],[40,85],[113,11],[95,9],[213,-24],[19,-2],[0,0],[102,54],[170,88],[151,128],[63,139],[217,133],[312,159],[295,119],[147,98],[104,70],[239,57],[261,63],[141,-24],[210,-82],[112,-44],[542,-20],[54,-70],[25,-201],[130,-181],[0,0],[0,0],[368,-69],[303,30],[260,-33],[457,-58],[234,-61],[43,-11],[0,0],[213,96],[31,14],[0,0],[45,40],[49,43],[0,0],[139,237],[6,96],[3,52],[0,0],[-80,81],[-107,107],[-62,182],[11,170],[12,61],[17,88],[22,49],[29,66],[112,123],[93,75],[112,90],[130,168],[24,52],[34,72],[68,-51],[66,-49],[126,-58],[281,-128],[182,-28],[180,-27],[162,-66],[159,-65],[517,-145],[140,-107],[6,-191],[53,-214],[41,-71],[218,-267],[0,0],[130,-70],[252,-91],[217,-49],[168,5],[283,138],[213,52],[223,54],[76,-2],[270,-5],[510,-97],[48,-31],[95,-59],[19,-38],[19,-37],[126,-46],[403,-144],[77,-251],[0,0],[216,-195],[424,-45],[139,-14],[85,-36],[41,-17],[184,-22],[332,-9],[248,29],[212,91],[42,18],[12,1],[260,17],[441,116],[286,166],[57,67],[71,81],[294,181],[193,119],[41,14],[43,15],[306,-53],[80,-38],[49,-55],[95,-103],[169,-65],[0,0],[123,-18],[0,0],[50,28],[135,73],[131,11],[126,-45],[67,-24],[55,-76],[0,0]],[[37117,98542],[-60,38],[-58,114],[-34,382],[215,252],[-415,235],[-37,40],[-27,51],[-170,649],[-1,4]],[[51509,71831],[-1,0],[-1,-1],[-1,0],[-3,-2],[-20,-18],[-1,-2],[-1,-1],[-1,-3],[0,0]],[[49416,75988],[25,125],[93,42],[131,-110],[299,-193],[25,-68],[4,-177],[-20,-42],[-15,-147],[52,-107],[93,165],[141,92],[24,2],[37,-39],[37,-92],[73,21],[41,43],[76,195],[27,142]],[[22123,84544],[-643,1964]],[[21480,86508],[1598,770],[191,276],[339,1463],[-266,593]],[[34042,101483],[117,-94],[8,-65],[-192,8],[-270,-72],[-294,-339],[-23,-277],[92,-69],[257,-34],[353,-293],[125,-192],[104,-62],[-35,-127],[-52,-95],[-285,-239],[-21,-31],[-22,-109],[3,-61],[47,-133],[53,-340],[29,-562],[470,-253],[64,-34],[86,-220],[240,-17],[129,-119]],[[21480,86508],[-952,-212],[-722,-108],[-542,-377],[-339,-599],[-68,-246],[-289,-155],[-136,261],[-209,-39],[-189,15],[-344,59],[-148,91],[-494,0],[-223,-65],[-241,107],[-79,67],[-47,-10],[-61,-64],[-44,-322],[19,-205],[35,-72],[-93,-193],[-88,-101],[-103,-3]],[[20790,91313],[109,-204],[175,4]],[[12143,100668],[82,-44],[65,9],[96,84],[130,206],[33,85],[-42,139],[49,220],[29,51],[179,-53],[95,-80],[135,-13],[235,85],[200,118],[75,19],[96,-23],[258,-157],[198,-27],[368,85],[197,91],[114,92],[219,109],[93,9],[178,-49],[192,13],[238,63],[105,82],[112,-42],[7,-93]],[[30644,101708],[40,295],[156,303],[69,31],[78,144],[15,79],[-176,206],[-16,123],[30,195],[-135,168],[-245,152],[-27,281],[163,101],[238,-82],[254,-14],[29,72],[145,201],[64,162],[-77,44],[-94,-24],[-55,11],[-22,12],[1,24],[272,70],[116,-12],[82,413],[133,24],[108,-73],[336,198],[25,104],[31,27],[67,-50],[142,-211],[-185,-191],[-51,-98],[107,-118],[133,-31],[108,16]],[[23801,105176],[547,-51],[57,153],[-33,212],[-4,134],[14,46],[161,181],[184,18],[468,434],[127,45],[89,-25],[293,-253],[374,-89],[44,-32],[31,-62],[22,-217],[-8,-382],[13,-33],[196,-143],[378,-19],[184,19],[31,46],[90,-32],[137,-114],[80,-118],[285,-857],[709,-591],[728,-516],[350,-287],[155,-29],[63,11],[321,-196],[121,-100],[-51,-44],[-34,-78],[-16,-324],[22,-23]],[[15411,105345],[193,-52],[208,31],[200,61],[130,-32],[388,-341]],[[6407,104683],[54,28],[78,118],[33,156],[178,215],[0,0],[-6,40],[-27,180],[-123,84],[-17,34],[23,58],[318,165],[111,57],[7,1],[97,7],[128,-54],[109,-47],[155,4],[40,1]],[[11186,96730],[-29,85]],[[36749,106238],[-6,-21],[-78,-11],[-83,-53],[-83,-49],[-11,-22],[1,-30],[-80,-105],[-71,-34],[-46,-15],[-220,-12],[-66,4],[-59,15],[-199,84],[-85,24],[-60,9],[-38,-2],[-21,51],[-6,39],[6,21],[131,23],[171,64],[127,40],[131,29],[85,19],[115,-16],[86,43],[221,20],[107,6],[-57,-52],[-18,-25],[10,-28],[96,-16]],[[40356,110705],[-52,-61],[-18,-34],[-22,-70],[-35,-28],[-32,6],[-143,115],[-133,90],[-82,52],[-105,30],[-107,38],[-103,70],[-32,28],[7,32],[83,0],[54,10],[93,7],[36,29],[20,59],[-41,48],[-40,56],[-3,45],[18,37],[3,122],[28,96],[68,87],[92,64],[72,20],[96,40],[49,40],[-12,67],[-74,75],[-72,74],[-72,19],[-37,3],[-31,36],[-40,38],[-35,6],[-30,29],[-36,44],[-1,15],[16,7],[126,-39],[77,21],[87,75],[43,5],[-2,-20],[-83,-58],[-12,-30],[-24,-28],[-15,-24],[54,-43],[270,-206],[42,-64],[-18,-30],[-105,-33],[-165,-76],[-51,-16],[-97,-55],[-55,-81],[-16,-79],[17,-85],[56,-150],[94,-23],[84,-11],[-7,-20],[-131,-16],[-50,-43],[-8,-29],[30,-22],[62,-37],[82,-38],[99,-57],[67,-23],[97,-28],[78,-45],[27,-33]],[[60146,98362],[-18,-26],[-32,-88],[-16,-32],[-35,-21],[-95,-40],[-23,-24],[-26,-9],[-7,17],[12,30],[-6,25],[-23,12],[-31,-23],[-13,-19],[-9,24],[20,35],[27,18],[55,-31],[8,15],[-3,32],[-30,78],[-47,3],[-72,-1],[-37,-14],[-13,-51],[-31,-22],[-17,8],[25,12],[13,26],[7,53],[15,20],[46,6],[71,23],[35,-4],[30,-57],[29,-82],[37,-42],[39,13],[6,24],[13,25],[12,25],[6,25],[-9,27],[-77,19],[-42,32],[-10,56],[23,-17],[27,0],[42,59],[32,57],[25,-4],[47,-25],[21,3],[-35,51],[-34,86],[3,70],[30,18],[16,-21],[21,-87],[32,-44],[64,-17],[51,-72],[0,-15],[-16,-28],[-32,-108],[-37,-72],[-20,-11],[-1,40],[-15,41],[-28,-1]],[[49802,113605],[-9,-87],[-13,-59],[-11,-70],[-26,-100],[2,-30],[-105,-146],[-21,-58],[-15,-67],[16,-28],[0,-19],[-17,-29],[-43,-25],[-102,-37],[-8,31],[8,53],[20,50],[11,74],[28,306],[-7,119],[42,84],[27,34],[-8,41],[-5,21],[64,75],[20,34],[20,12],[112,-137],[20,-42]],[[44885,112689],[-47,93],[65,52],[115,55],[141,64],[60,34],[42,-16],[15,-26],[-7,-57],[57,-93],[88,-54],[18,-5],[-3,-25],[42,-16],[21,-23],[-36,-22],[-49,-3],[-70,-44],[-45,-45],[-61,-74],[-111,-39],[-70,-4],[-60,40],[-67,75],[-27,71],[-11,62]],[[68063,108422],[-111,54],[12,19],[92,34],[100,1],[103,-27],[84,-56],[49,-68],[0,-78],[-273,100]],[[51998,81010],[-22,27],[-39,40],[-37,2],[-83,46],[-68,90],[-21,98],[-56,13],[-65,53],[-52,66],[-30,77],[-18,69],[-14,72],[18,36],[65,-13],[80,-46],[69,-120],[58,-160],[21,-68],[19,-21],[59,7],[41,-19],[16,-71],[0,-57],[2,-10],[16,-15],[33,-22],[1,-24],[5,-20],[14,-26],[-12,-4]],[[49782,101405],[-4,-25],[-13,-30],[0,-60],[-11,-70],[-44,-27],[-61,19],[-54,51],[-117,3],[-157,29],[-76,51],[-74,95],[-29,48],[18,31],[47,0],[32,6],[10,28],[-17,65],[-10,69],[28,28],[70,30],[86,-14],[99,-43],[100,-104],[80,-103],[97,-77]],[[16407,98827],[-38,53],[-52,103],[-19,166],[-5,121],[10,48],[19,12],[72,-157],[71,-83],[61,-77],[15,-52],[-9,-68],[1,-65],[-34,-19],[-51,9],[-41,9]],[[16765,97957],[-9,-64],[-41,-64],[-31,-3],[-41,18],[-23,23],[-30,13],[-55,39],[-26,61],[-8,79],[5,49],[11,9],[14,34],[-4,76],[23,41],[24,16],[19,-33],[80,-193],[58,-64],[34,-37]],[[11950,97151],[-10,-126],[-13,-179],[-14,-27],[-35,-1],[-22,-1],[-11,19],[-1,92],[0,29],[11,106],[24,76],[35,38],[2,1],[19,7],[15,-34]],[[17803,102184],[46,-34],[2,-32],[3,-71],[60,-127],[-15,-72],[-75,-31],[-23,-12],[-29,-64],[-45,-65],[-51,13],[-48,64],[-42,177],[-21,148],[-2,58],[-11,66],[-85,102],[-4,86],[43,47],[19,53],[-10,30],[-46,-3],[-44,4],[6,40],[46,60],[146,0],[59,-76],[17,-84],[-23,-118],[-7,-105],[28,-44],[36,1],[70,-11]],[[24885,105556],[-28,-61],[-77,-54],[-92,-35],[-56,-13],[-49,-4],[-57,66],[-42,69],[-34,-3],[-32,-6],[-5,41],[24,163],[5,18],[46,164],[53,98],[69,27],[92,-62],[39,-82],[6,-11],[-9,-38],[11,-33],[30,-46],[10,-81],[84,-63],[12,-54]],[[38973,108894],[-223,90],[-113,78],[-74,76],[-13,80],[3,70],[-6,58],[25,73],[51,50],[70,3],[64,-20],[46,-30],[42,-37],[37,-61],[28,-78],[8,-88],[15,-114],[40,-150]],[[59347,111254],[-66,-21],[-15,15],[10,42],[-6,64],[-47,68],[-15,45],[41,55],[96,81],[95,114],[82,109],[61,61],[32,7],[10,-24],[-11,-40],[-1,-45],[17,-34],[19,-5],[16,-11],[21,-30],[50,-12],[63,-5],[16,-28],[-41,-30],[-51,-2],[-30,22],[-30,0],[-23,-25],[-10,-36],[-116,-117],[-109,-127],[-11,-49],[-47,-42]],[[61305,96618],[-120,-97],[-92,-29],[-77,31],[-73,98],[-22,136],[28,116],[70,83],[64,34],[21,-18],[1,-13],[-3,-16],[11,-26],[32,-2],[32,-11],[-5,-36],[-24,-31],[-2,-24],[17,-42],[20,-36],[23,-22],[6,-40],[-27,-44],[17,-14],[21,-2],[46,38],[36,-33]],[[43741,96147],[-19,41],[-12,104],[-2,125],[37,28],[71,-22],[60,-21],[42,9],[14,26],[21,20],[90,-8],[45,32],[18,-1],[21,-29],[2,-40],[-48,-39],[-51,-63],[-76,-64],[-68,-37],[-145,-61]],[[10715,103114],[39,-35],[42,-11],[45,-72],[-33,-113],[-49,-46],[-64,30],[-56,44],[-53,47],[-45,88],[36,87],[43,76],[9,75],[-2,58],[26,-5],[43,-54],[17,-53],[-8,-45],[10,-71]],[[42016,105621],[-67,36],[-91,6],[-121,-26],[-82,-37],[-14,20],[4,44],[34,60],[20,82],[35,30],[69,-20],[178,-56],[35,-92],[0,-47]],[[59044,94986],[1,-28],[-21,-4],[-22,4],[-9,11],[-22,11],[-35,12],[-14,-17],[-11,-67],[15,-75],[16,-49],[3,-41],[-14,-35],[-25,1],[-16,46],[-13,17],[-6,21],[-35,0],[-11,47],[-135,121],[-19,36],[-10,34],[-38,75],[-9,27],[21,69],[14,49],[37,86],[16,82],[-10,29],[-10,12],[18,19],[39,22],[10,0],[18,-45],[3,-27],[-16,-17],[-5,-35],[-10,-26],[-13,-45],[-8,-54],[-20,-23],[3,-21],[16,-12],[26,-4],[5,-17],[-25,-23],[-10,-21],[10,-47],[91,-18],[19,2],[15,-10],[-6,-30],[2,-27],[26,19],[19,50],[17,12],[42,-9],[36,-3],[21,0],[14,-9],[-1,-30],[7,-26],[19,-19]],[[58901,95754],[21,-28],[14,-27],[-13,-20],[-64,1],[-57,23],[-18,46],[-1,38],[14,-12],[10,6],[17,0],[34,-14],[32,6],[11,-19]],[[58747,95740],[27,-4],[6,-19],[5,-28],[-4,-35],[-25,-23],[-46,-8],[-51,-14],[-38,59],[4,54],[51,-13],[27,0],[6,22],[12,29],[26,-20]],[[57676,95873],[12,12],[14,21],[6,27],[22,14],[31,4],[3,17],[-16,19],[-9,27],[25,1],[22,-18],[37,-38],[12,-35],[10,-104],[-10,-31],[-25,34],[-22,43],[-20,5],[-20,-30],[-17,-61],[-21,18],[-25,49],[-9,26]],[[43144,97209],[-18,-5],[-20,-32],[-24,-59],[-42,-65],[-47,-5],[-40,11],[-25,13],[-5,28],[6,36],[-12,23],[-45,-2],[-50,-12],[-46,15],[-44,56],[-24,40],[24,30],[56,-11],[32,-27],[17,-5],[14,11],[30,38],[60,26],[88,-4],[85,-34],[33,-41],[-3,-25]],[[45158,110913],[-96,-67],[-104,-57],[-52,-55],[-42,-95],[-47,-68],[-67,39],[-54,98],[-9,64],[75,38],[83,63],[1,111],[22,75],[44,7],[36,-1],[34,-18],[-48,-84],[2,-68],[44,-15],[37,0],[58,46],[1,65],[-4,49],[54,-16],[41,-48],[-9,-63]],[[16248,102689],[-38,37],[-6,30],[-17,43],[-15,6],[-44,-21],[-57,-2],[-56,21],[-28,7],[-108,8],[7,41],[40,52],[15,27],[-1,41],[40,44],[114,31],[71,10],[52,0],[84,13],[48,31],[-2,19],[-19,11],[-22,-1],[-7,29],[44,27],[77,13],[88,20],[72,-8],[29,-26],[-46,-41],[-86,-52],[-53,-19],[-47,-81],[-14,-95],[59,-46],[18,-49],[-49,-68],[-50,-59],[-35,-9],[-58,16]],[[43314,101978],[-56,-8],[-87,15],[-79,20],[-49,9],[-27,18],[-9,22],[38,10],[75,14],[70,15],[52,-4],[45,-13],[32,-15],[15,-16],[-4,-19],[1,-22],[3,-14],[-20,-12]],[[51016,86112],[-30,0],[-62,-24],[-25,-27],[-17,-13],[-19,22],[-25,70],[-15,47],[-11,44],[-12,65],[12,10],[20,-19],[12,-33],[24,-13],[9,-6],[12,-9],[26,-5],[25,-5],[4,-43],[22,-25],[35,-16],[19,-5],[5,-2],[-9,-13]],[[60612,98045],[-9,-35],[-24,-2],[-29,-1],[-27,-10],[-31,-38],[-16,-4],[-5,17],[-10,39],[-13,38],[-19,32],[-7,15],[2,10],[27,9],[33,1],[24,3],[8,12],[-1,19],[7,20],[-1,30],[-3,29],[11,17],[19,7],[10,10],[-7,26],[-20,30],[-18,28],[-13,2],[-20,-7],[-7,-26],[-2,-23],[-6,-21],[-32,-32],[-37,4],[-40,5],[-35,18],[-14,16],[44,-6],[59,-11],[25,10],[19,62],[20,36],[33,11],[16,1],[29,-31],[26,-72],[-2,-45],[16,-20],[14,-70],[6,-103]],[[58880,95799],[-13,8],[-9,21],[-7,15],[-13,12],[-20,24],[-2,22],[12,4],[13,9],[9,-1],[10,-17],[31,-14],[17,-2],[24,3],[15,-1],[1,-23],[-8,-26],[-1,-27],[0,-23],[-11,-9],[-7,6],[-15,16],[-26,3]],[[59552,110501],[-13,20],[-17,24],[1,32],[16,37],[6,12],[39,55],[42,39],[9,3],[23,9],[21,-10],[24,-33],[16,-38],[-8,-33],[-29,-44],[-44,-46],[-43,-32],[-29,-11],[-12,4],[-2,12]],[[39610,96933],[-17,0],[-62,24],[-60,19],[-45,2],[-33,20],[-11,19],[33,9],[19,18],[4,13],[23,13],[50,11],[23,9],[24,-46],[39,-33],[48,-41],[29,-39],[-4,-14],[-22,1],[-38,15]],[[41669,96684],[-8,-25],[-34,-11],[-45,-32],[-12,-42],[-24,-76],[-25,-72],[-16,-39],[-22,-13],[-22,10],[-13,28],[0,25],[9,19],[19,49],[41,88],[53,137],[27,122],[52,-21],[13,-71],[7,-76]],[[33895,115004],[-35,37],[-75,77],[-63,53],[-43,2],[-32,-18],[-15,8],[-6,18],[20,24],[14,29],[3,20],[26,13],[45,10],[55,2],[68,-13],[49,-18],[11,-20],[-1,-69],[-2,-84],[-6,-38],[-3,-18],[2,-13],[-12,-2]],[[44080,94808],[-23,9],[-14,-6],[-6,1],[-12,4],[-16,5],[-23,-20],[-10,-33],[-7,-8],[-14,14],[-26,-16],[-22,-21],[-24,-34],[-14,-9],[-19,0],[-15,15],[-17,25],[-15,21],[-3,15],[5,8],[10,-2],[11,-13],[10,-8],[12,1],[17,11],[20,24],[16,30],[15,30],[14,30],[-4,30],[-3,35],[-4,32],[-13,21],[-24,13],[-32,-2],[-33,-16],[-31,-29],[-21,-15],[-1,12],[22,26],[46,42],[34,19],[41,-16],[34,-26],[22,-26],[-2,-18],[-4,-12],[2,-18],[5,-17],[22,-33],[12,-18],[23,-2],[9,20],[19,9],[24,-2],[26,-15],[17,-21],[-2,-23],[8,-39],[-6,-10],[-21,17],[-15,9]],[[60248,96888],[-7,7],[-12,34],[-3,28],[-11,25],[0,16],[20,3],[63,0],[43,8],[14,-43],[-3,-32],[-26,-25],[-38,-36],[-20,8],[-20,7]],[[57154,95659],[2,-22],[-17,-32],[-20,-42],[-13,-34],[-16,-21],[-16,-9],[-22,26],[-22,56],[-4,38],[11,9],[31,-13],[17,5],[17,46],[26,3],[26,-10]],[[59761,96980],[-17,1],[-48,41],[-26,8],[-46,-46],[-48,-59],[-35,-8],[-55,18],[-50,58],[-37,47],[-12,49],[11,40],[29,9],[27,-12],[12,-36],[9,-35],[22,-14],[33,-2],[29,16],[34,37],[47,5],[44,-33],[64,-58],[13,-26]],[[17410,104504],[-10,22],[10,34],[-2,24],[16,3],[47,-20],[85,-67],[40,-19],[37,-7],[37,-37],[58,-59],[37,-39],[20,-33],[12,-30],[2,-23],[-5,-17],[-25,-19],[-38,-14],[-36,0],[-53,-4],[-44,-2],[-22,13],[-16,28],[-17,82],[-20,75],[-18,15],[-17,21],[-17,27],[-32,25],[-29,21]],[[57960,95949],[-16,-4],[-17,-4],[-17,4],[-8,-3],[2,-13],[10,-21],[12,-15],[-2,-4],[-9,-4],[-16,1],[-17,0],[-15,13],[0,19],[1,23],[-4,19],[23,24],[29,13],[12,0],[13,1],[16,-16],[7,-20],[-4,-13]],[[57822,96262],[12,-4],[10,2],[6,12],[-2,35],[16,7],[17,10],[9,13],[16,-11],[20,-31],[3,-32],[-17,-11],[-35,-31],[-43,-3],[-22,35],[1,10],[9,-1]],[[59404,99546],[-19,-33],[-26,-39],[-23,-3],[-21,38],[-19,57],[-7,42],[6,53],[23,-5],[51,-45],[30,-37],[5,-28]],[[57822,95996],[-28,34],[-31,28],[-10,11],[7,7],[22,-3],[25,-26],[15,-5],[17,18],[1,17],[-2,13],[-13,23],[1,10],[18,-7],[15,3],[7,5],[14,13],[22,-15],[10,-14],[-2,-12],[-3,-17],[3,-11],[-15,-8],[-26,-19],[-16,-43],[-19,-6],[-12,4]],[[57647,95730],[-6,-19],[-22,-26],[-5,-28],[12,-19],[-5,-8],[-22,-4],[-27,17],[-16,55],[2,80],[18,26],[23,23],[18,-1],[-1,-21],[-5,-26],[9,-33],[12,-1],[12,0],[3,-15]],[[57564,95602],[-12,-8],[-13,17],[-16,42],[-14,-5],[-19,-25],[-23,-16],[-12,2],[-4,10],[12,20],[12,22],[-4,14],[-16,3],[-15,3],[-2,12],[46,17],[32,21],[15,-3],[17,-73],[13,-38],[3,-15]],[[44304,100389],[-8,-18],[-9,-25],[-11,-13],[-60,15],[-70,15],[-38,37],[-16,21],[1,10],[23,6],[23,-2],[48,-12],[49,-2],[13,10],[29,-14],[26,-28]],[[18930,96285],[-20,-21],[-48,-1],[-49,13],[-94,27],[-82,25],[-37,2],[-50,-8],[-43,-5],[-16,-5],[-17,3],[-9,11],[-2,21],[-1,19],[-6,14],[-15,12],[-9,5],[-18,12],[-4,25],[21,30],[30,8],[11,2],[24,1],[21,-14],[17,-7],[33,-29],[47,-24],[23,-2],[25,-10],[28,-11],[55,-24],[40,9],[41,25],[25,2],[16,-5],[3,-10],[15,-24],[35,-46],[10,-20]],[[45746,111708],[-12,-21],[-59,-28],[-82,-30],[-50,-21],[-31,-15],[-43,38],[-48,51],[-35,12],[-44,23],[-75,40],[-64,32],[-19,23],[2,25],[17,20],[44,7],[69,6],[116,-25],[94,-55],[29,-18],[26,6],[26,-5],[55,7],[39,-20],[37,-27],[8,-25]],[[41153,96486],[-22,-36],[-3,-50],[-11,-36],[-14,-20],[-11,0],[2,25],[-17,42],[-38,26],[-30,-2],[-23,-11],[-19,-11],[-32,3],[-43,21],[-36,29],[-14,32],[5,41],[24,35],[43,9],[49,-14],[50,-3],[45,3],[50,-20],[38,-22],[7,-22],[0,-19]],[[11914,96693],[-3,-19],[-5,-24],[-6,-17],[-23,-7],[-23,6],[-2,0],[-14,26],[-9,36],[3,31],[11,13],[26,1],[4,-3],[24,-19],[17,-24]],[[11977,98035],[-9,-27],[-22,-24],[-15,25],[-10,45],[3,43],[15,30],[19,7],[14,-18],[8,-37],[-3,-44]],[[48119,99755],[-15,-12],[-35,3],[-29,1],[-20,-1],[-13,3],[-3,-15],[-4,-18],[-20,-3],[-26,9],[-16,22],[-17,43],[5,22],[16,23],[25,20],[11,21],[-5,20],[8,21],[21,21],[28,23],[17,6],[18,-46],[1,-42],[3,-42],[26,-42],[24,-37]],[[47875,99870],[-4,-12],[-28,-38],[-30,-42],[-42,-25],[-33,-8],[-85,68],[-7,20],[-6,40],[2,15],[11,3],[19,6],[66,13],[69,-3],[40,-18],[28,-19]],[[33840,105544],[-14,-4],[-38,-7],[-55,9],[-78,-1],[-77,-13],[-93,-64],[-15,3],[-11,17],[13,12],[19,22],[11,33],[-12,46],[-17,43],[15,22],[77,-2],[71,-16],[41,-19],[44,-23],[89,-23],[35,-21],[-5,-14]],[[38495,96240],[-12,-15],[-20,-8],[-25,3],[-31,19],[-19,24],[14,21],[20,27],[0,70],[9,40],[20,9],[24,-20],[11,-18],[1,-23],[-25,-30],[15,-37],[17,-40],[1,-22]],[[38654,96294],[-18,-38],[-34,-37],[-35,-16],[-24,16],[-11,41],[1,83],[20,16],[29,-3],[38,-14],[28,-20],[6,-28]],[[25144,108307],[35,57],[26,134],[77,98],[14,104],[29,37],[9,11],[8,111],[34,94],[74,0],[-15,39],[21,31],[122,-20],[11,41],[59,-15],[35,57],[36,7],[-34,-92],[-81,4],[-110,-85],[-26,-167],[-60,-28],[-18,-28],[-37,-58],[-25,-164],[31,-112],[-79,-102],[24,-15],[-12,-62],[33,-81],[-35,-39],[-23,-170],[-24,-54],[-69,-66],[-60,5],[-15,25],[1,53],[49,66],[-58,204],[53,180]],[[26578,109163],[-17,27],[42,69],[-60,145],[-83,-68],[-134,92],[-125,-39],[-84,68],[8,113],[165,107],[47,-70],[20,-90],[5,-4],[6,3],[19,92],[4,5],[6,-1],[64,-50],[93,54],[3,10],[0,12],[-128,81],[0,22],[32,6],[134,-31],[-20,-138],[67,-91],[140,-20],[71,36],[5,6],[1,11],[-37,54],[55,28],[10,31],[124,25],[-45,-78],[-47,-48],[-50,-66],[10,-53],[-48,-124],[-140,-56],[-66,-67],[-47,-3]],[[25966,109160],[-79,106],[-51,92],[132,2],[31,-31],[17,-134],[-50,-35]],[[37149,109717],[16,17],[2,22],[17,11],[19,2],[22,-10],[32,-29],[26,-36],[13,-34],[0,-29],[-5,-10],[-11,-20],[-34,-6],[-37,-17],[-15,-47],[-27,-66],[-30,-34],[-47,-30],[-59,12],[-44,10],[-50,-14],[-47,18],[-46,-8],[-16,-13],[-2,-21],[16,-32],[-10,-13],[-21,1],[-24,33],[-29,10],[-49,-11],[-42,-15],[-19,0],[-31,8],[-33,12],[-89,72],[-27,9],[-21,-14],[-33,-13],[-42,7],[-52,16],[-78,54],[-43,2],[-42,-24],[-68,13],[-36,-29],[-58,8],[-87,24],[-65,33],[-161,8],[-131,11],[-36,-19],[-83,-17],[-72,20],[-25,0],[-88,-16],[-60,-8],[-31,20],[-25,30],[-14,25],[0,29],[10,4],[23,-1],[8,10],[-1,5],[-4,17],[-25,4],[-27,-6],[-27,-25],[-7,-26],[16,-57],[9,-36],[-24,-23],[-33,-1],[-11,36],[-16,6],[-15,-4],[-12,-34],[-9,-22],[-17,-18],[-35,9],[-18,8],[-16,12],[-15,-9],[-32,-28],[-59,-10],[-13,-24],[-18,-69],[-24,-65],[-13,-72],[-13,-19],[-100,-71],[-28,-14],[-105,12],[-53,-13],[-12,-23],[-3,-30],[30,-127],[-9,-21],[-22,-3],[-5,-7],[2,-11],[38,-37],[1,-20],[-13,-17],[-35,-30],[-75,-65],[-7,-23],[-3,-132],[2,-7],[24,-5],[13,-17],[3,-39],[-7,-140],[-5,-28],[-20,-9],[-4,-16],[15,-33],[-11,-9],[-26,4],[-23,16],[-4,17],[4,19],[-13,47],[8,28],[-5,36],[-11,13],[-60,29],[-22,21],[-102,143],[-28,65],[-87,58],[-17,23],[4,39],[30,25],[22,40],[-8,24],[-39,14],[-7,22],[14,17],[14,4],[42,-12],[42,75],[48,64],[13,25],[-43,41],[-5,26],[-5,48],[19,27],[42,17],[14,3],[31,-18],[40,19],[49,-18],[22,16],[4,14],[-45,55],[43,68],[41,49],[108,36],[55,39],[32,51],[55,37],[17,57],[42,51],[103,24],[79,30],[20,-2],[66,0],[43,-33],[22,-13],[80,-24],[52,6],[231,67],[73,-19],[146,-12],[55,-23],[23,-20],[40,-56],[26,-18],[27,-4],[60,24],[40,7],[18,-5],[54,-30],[38,11],[130,-16],[54,-58],[29,9],[23,38],[61,9],[134,15],[25,13],[27,2],[98,-9],[161,-44],[19,-13],[74,-93],[16,12],[14,25],[6,93],[5,16],[17,12],[21,-4],[11,-29],[14,6],[16,33],[28,36],[17,13],[28,20],[76,-19],[14,9],[2,17],[3,21],[17,12],[27,3],[35,-8],[36,-34]],[[48848,72634],[0,-13],[-29,-22],[-55,-18],[-53,-4],[-35,7],[-17,23],[-37,73],[-38,74],[13,18],[43,-52],[58,-33],[24,6],[13,18],[-17,45],[-54,95],[-39,48],[-21,-4],[-19,-30],[-16,-37],[-13,5],[-34,69],[-32,77],[2,29],[24,14],[40,-3],[39,-16],[49,-45],[45,-57],[28,-56],[36,-74],[36,-78],[35,-38],[24,-21]],[[16601,98474],[-17,-73],[-49,-24],[-28,8],[-18,48],[-57,44],[2,33],[43,72],[26,-38],[29,-43],[44,8],[25,-35]],[[30763,105122],[99,-46],[47,-9],[87,-23],[37,-45],[-31,-25],[-71,-22],[-84,-2],[-65,42],[-52,105],[33,25]],[[70278,100215],[15,46],[31,20],[26,-11],[25,-38],[25,-51],[-31,-69],[-136,-139],[-34,-60],[-19,-22],[2,77],[45,93],[36,84],[15,70]],[[44151,112611],[38,-28],[8,-37],[-31,-26],[-68,-16],[-41,46],[30,66],[64,-5]],[[43773,98658],[-4,-76],[-42,-60],[-44,-32],[-84,43],[-40,7],[-15,43],[23,7],[81,-24],[60,49],[-4,79],[4,58],[17,53],[48,-147]],[[43372,98610],[35,0],[36,10],[25,20],[34,15],[20,-36],[-29,-87],[-17,-39],[-35,-61],[-14,25],[-11,110],[-30,25],[-14,18]],[[35511,97298],[-51,7],[-62,54],[-21,74],[-2,65],[28,12],[64,-67],[45,-93],[-1,-52]],[[44393,97338],[-19,36],[-7,59],[17,42],[33,18],[13,-45],[-2,-95],[-7,-19],[-28,4]],[[42039,97257],[6,51],[38,35],[32,12],[26,-17],[3,-38],[-38,-46],[-67,3]],[[36831,99004],[27,28],[97,-131],[28,-28],[31,-30],[101,-5],[16,0],[9,-15],[-29,-18],[-7,-4],[-104,-17],[-10,14],[-96,132],[-63,74]],[[31516,113012],[48,26],[85,-22],[58,-14],[-3,-51],[-65,-20],[-64,7],[-32,4],[-35,-14],[-96,-106],[-36,-29],[-6,-25],[12,-27],[104,-8],[13,-36],[-2,-47],[-32,-1],[-30,-10],[-43,-34],[-79,-18],[-93,41],[-51,31],[17,54],[23,90],[12,63],[47,48],[77,-6],[57,0],[78,44],[36,60]],[[28779,114616],[65,69],[61,67],[54,74],[38,43],[19,-21],[-8,-127],[-45,-49],[-56,-41],[-17,-9],[-25,-16],[-42,-34],[-78,-31],[-8,16],[42,59]],[[0,11825],[0,36776]],[[95596,124884],[192,122],[0,-68175],[-1,-1]],[[95779,56784],[9,9],[0,-226],[-1,-46]],[[95786,56419],[2,4],[0,-56423],[-414,134]],[[0,97742],[0,3557]],[[0,102499],[0,1743]],[[0,105742],[0,2157]],[[0,115849],[0,778]],[[0,116778],[0,802]],[[0,126849],[0,62]],[[0,127102],[0,123]],[[0,127316],[0,478]],[[0,127860],[0,119]],[[0,128179],[0,6960]],[[0,137280],[0,4431],[95788,0],[0,-11268],[-347,-118]],[[95788,130001],[0,-21],[0,-1668],[-273,165]],[[0,135486],[0,43]],[[0,135596],[0,88]],[[0,135955],[0,484]],[[13678,100612],[-114,34],[-69,40],[-62,58],[-35,45],[-8,33],[16,45],[37,54],[18,44],[-2,49]],[[39687,112139],[139,-104],[74,-41],[56,-13],[77,-63],[100,-112],[42,-70],[-16,-27],[-95,-50],[-173,-72],[-105,-80],[-38,-87],[-10,-97],[16,-105],[27,-74],[36,-42],[1,-38],[-33,-34],[-15,-38],[6,-42],[73,-72],[142,-99],[108,-97],[73,-93],[50,-47],[42,-2]],[[13798,103080],[26,52],[-42,170]],[[58623,95106],[31,33],[31,99],[64,263]],[[56009,97856],[-278,145]],[[47771,99753],[-23,45],[-32,20],[-70,15]],[[48047,99964],[-29,-105],[-31,-44],[-66,-28]],[[33544,99575],[31,-210],[7,-95],[-5,-50],[-21,-42],[-55,-52]],[[11856,96817],[16,130],[9,69],[20,92],[12,27],[22,50]],[[11958,98134],[-12,-150]],[[37152,84192],[93,4],[32,55],[1,107],[15,72],[43,54]],[[39974,88616],[-84,128],[-45,46],[-33,7],[-29,-16],[-24,-40],[-36,-10],[-73,32]],[[33845,105558],[-213,12],[-94,-23],[-68,-80]],[[49013,113565],[-68,52]],[[38486,96371],[-55,50]],[[35856,96887],[-12,-63],[-16,-29],[-26,-17],[-43,23],[-94,97]],[[32135,104437],[-21,-54],[-76,-34],[-209,-48]],[[31033,104998],[-164,20],[-71,29],[-28,40],[-7,35]],[[27146,109109],[-115,74]],[[56837,94899],[-60,-88],[-63,-44],[-86,-30],[-112,19],[-208,104]],[[56889,94996],[44,202]],[[13677,100613],[207,41],[181,-27],[223,-81],[129,-84],[32,-87],[67,-89],[101,-92],[49,-54],[-4,-17],[22,-21],[48,-23],[28,-48],[7,-74],[22,-53],[35,-32],[28,-50],[21,-67],[53,-71],[84,-75],[42,-69],[1,-63],[10,-39],[11,-11],[16,-14]],[[13367,101426],[18,-79],[27,-39],[42,-26],[32,-38],[24,-50],[-3,-64],[-48,-116]],[[30891,101582],[-83,-60],[-64,18],[-72,77],[-18,29],[-22,35],[-5,35],[-2,15],[-31,23],[-41,-3],[-13,-1],[-35,11],[-10,15],[-7,11],[-20,-4],[-24,-4],[-71,-40],[-72,21],[-73,84],[-4,1],[-136,29],[-139,-15],[-29,-3],[-39,-4],[-211,58],[-215,140],[-150,83],[-83,26],[-67,72],[-52,117],[-130,125],[-208,134],[-161,154],[-114,176],[-71,132],[-29,88],[-104,120],[-181,153],[-124,83],[-68,11],[-39,47],[-9,84],[-59,90],[-109,96],[-79,102],[-37,77],[-40,83],[-38,248],[-45,113],[-58,56],[-6,5],[-54,119],[-45,176],[-28,87],[-9,28],[-29,53],[-60,58],[-90,64],[-1,0],[-85,30],[-37,-1],[-44,-2],[-55,23],[-28,50],[-107,106],[-186,162],[-106,121],[-26,79],[-36,49],[-45,18],[-30,34],[-15,50],[-36,53],[-59,58],[-88,49],[-119,42],[-92,63],[-65,83],[-51,49],[-37,14],[-14,34],[12,55],[-13,39],[-36,23],[-14,30],[6,37],[-10,44],[-28,51],[-10,50],[8,49],[-7,57],[-22,65],[-5,49],[-52,113],[-7,86],[23,98],[-8,74],[-38,51],[-71,39],[-102,27],[-49,64],[3,100],[-37,112],[-115,189]],[[69498,111085],[-3,-1],[-27,11]],[[69352,111098],[-149,-33],[-134,-46]],[[68968,110980],[-75,-42],[-57,-63],[-61,-30],[-97,4],[-35,1]],[[68256,110588],[-7,-18]],[[68249,110570],[-50,-44],[-21,4]],[[67949,110519],[-151,-22],[-133,1],[-14,9]],[[67469,110524],[-56,-13],[-70,-5],[-23,15],[-17,42],[-10,70],[-39,72],[-67,75],[-12,91],[1,4]],[[67167,111148],[-23,20],[-36,77],[-26,23],[8,65],[30,78],[-26,51]],[[66880,111509],[-5,1],[-92,67],[-48,64]],[[66623,111784],[-53,49],[-46,7],[-33,31],[-16,40]],[[66417,111926],[-13,0],[-20,-22],[-23,-8],[-36,21],[-37,2],[-37,-16],[-32,11],[-26,37],[-48,25],[-69,12],[-29,26],[2,5]],[[65371,112249],[-32,22],[-28,60],[-5,80]],[[61772,115211],[-120,-13]],[[61279,115001],[-78,-82],[-118,-107],[-24,-15]],[[61154,114632],[11,2],[9,-1]],[[61391,114207],[0,-17],[-10,-26]],[[61356,114099],[-4,-12],[-100,-104],[-158,-105],[-99,-102],[-58,-150],[-42,-61]],[[60809,113371],[0,-8],[-36,-65],[-17,-18]],[[60671,113135],[-4,-46],[-33,-64],[-59,-58],[-37,-61],[-14,-64],[-23,-43],[-26,-19]],[[60526,112741],[25,-8],[6,-15]],[[60567,112589],[-2,-23],[-39,-74],[-65,-44],[-28,-8]],[[60389,112427],[-25,-8],[-37,-4]],[[60214,112395],[-157,-88],[-103,-85]],[[59827,112117],[-106,-87]],[[47905,92113],[-6,-9],[4,-19],[-6,-65],[-33,-145],[-32,-66],[-31,11],[-28,-34],[-25,-79],[1,-53],[25,-27],[-2,-17],[-29,-7],[-14,-23],[2,-37],[-14,-32],[-45,-40],[-36,-82],[0,-67],[23,-80],[13,-90],[1,-100],[13,-71],[25,-43],[8,-37],[-9,-32],[-40,-30],[-72,-28],[-57,20],[-43,68],[-47,48],[-52,28],[-50,3],[-48,-23],[-44,-55],[-42,-86],[-23,-75],[-6,-94],[-113,-245],[-46,-246],[-16,-329],[-17,-177],[-19,-26],[4,-50],[26,-75],[9,-65],[-8,-58],[3,-41],[14,-25],[12,-98],[8,-171],[-14,-100],[-37,-28],[-39,2],[-40,31],[-58,13],[-77,-6],[-56,-41],[-37,-77],[-26,-95],[-16,-113],[-18,-61],[-26,-16],[-56,-78],[-65,-49],[-93,-46],[-47,-71],[0,-98],[-15,-81],[-31,-66],[12,-127],[56,-188],[29,-144],[3,-101],[25,-95],[73,-134],[34,-55],[17,-113],[11,-188],[-7,-174],[-24,-159],[3,-119],[28,-77],[-5,-68],[-39,-58],[-21,-51],[-5,-44],[44,-91],[93,-139],[56,-110],[19,-83],[11,-106],[2,-83]],[[46707,85552],[1,-45],[9,-50]],[[46717,85457],[7,-38],[31,-46],[13,-48],[-5,-47],[16,-41],[38,-34],[6,-41],[-26,-49],[-4,-65],[17,-80],[-4,-60],[-25,-40],[-5,-52],[15,-63]],[[46791,84753],[-33,-53],[-36,-20]],[[46722,84680],[-45,-25],[-42,-53],[-5,-62],[-50,-106],[-142,-225],[-23,-34],[-34,-23]],[[57959,71089],[20,-89],[-11,-35],[-35,-11],[-33,-41],[-45,-105],[1,-38],[-13,-20],[-26,-15],[-41,3],[-57,18],[-43,6],[-32,-7],[-21,-19],[-11,-31],[-12,-10],[-16,-44],[17,-38],[32,-34],[-16,-54],[-63,-74],[-36,-75],[-6,-75],[42,-105],[91,-135],[76,-61],[61,14],[31,27],[1,39],[30,20],[59,-1],[48,-36],[37,-71],[20,-65],[5,-58],[-15,-42],[-34,-26],[-6,-42],[22,-57],[-6,-58],[-33,-57],[0,-41],[34,-25],[12,-63],[-14,-151],[-38,-172],[-3,-60],[19,-7],[17,-33],[14,-59],[-1,-63],[-16,-67],[3,-88],[21,-110],[-14,-127],[-50,-144],[-16,-105],[18,-65],[2,-54],[-11,-44],[-30,-45],[-46,-48],[-30,-67],[-29,-133]],[[43389,90966],[-15,-163],[-4,-144],[22,-87],[71,-116],[73,-83],[47,-39]],[[43583,90334],[112,-96]],[[43389,90966],[40,-132],[66,-75],[112,-93],[57,-85],[3,-78],[15,-35],[27,9],[37,-30],[70,-105],[50,-39]],[[46673,94038],[27,-99],[-43,-66],[-105,-63],[-42,-26],[-7,-13],[3,-4],[8,-2],[8,-9],[1,-18],[-32,-24],[-64,-24],[-55,-36],[-45,-47],[-44,-62],[-43,-76],[-12,-37],[-19,-37],[-18,-37],[-4,-49],[-24,-49],[-43,-49],[-63,-52],[-83,-55],[-42,-16],[-56,1],[-158,-114],[-202,6],[-92,-18],[-49,-39],[-88,-29],[-129,-20],[-76,-27],[-24,-35],[-41,-14],[-59,7],[-76,-29],[-91,-64],[-49,-48],[-5,-32],[-56,-44],[-187,-89],[-56,-13],[-64,2],[-108,27],[-57,18],[-58,-11],[-79,-34],[-91,4],[-104,41],[-130,-25],[-156,-91],[-115,-137],[-21,-53],[-53,-131],[-37,-160],[2,-139],[-13,-130],[-34,-119],[-5,-65],[4,-45],[64,-206],[12,-199],[-6,-68]],[[51581,94595],[53,-35],[88,-5],[140,13],[91,36],[42,59],[33,25]],[[52028,94688],[17,13],[59,19],[47,-2],[35,-21],[27,2],[26,-2],[16,-11],[18,-26],[28,-18],[21,6],[15,31],[32,15],[51,-2],[32,17],[13,36],[29,25],[46,12],[26,19],[17,6],[25,-13],[31,-7],[39,17],[26,-10],[10,-37],[15,-20],[19,-1],[12,13],[5,27],[-9,25],[-22,24],[-2,31],[18,37],[47,28],[76,18],[40,38],[7,58],[55,67],[106,74],[48,53],[-7,30],[10,45],[28,61],[27,19],[24,-22],[36,-6],[47,8],[54,52],[60,95],[50,20],[38,-55],[51,-19],[62,16],[43,44],[23,72],[42,28],[60,-14],[121,142],[270,448],[49,94],[15,54],[0,43],[15,38],[30,33],[152,37],[408,62],[50,20],[30,-3],[28,-19],[56,7],[82,32],[58,5],[34,-20],[58,-4],[83,11],[110,-21],[205,-82],[83,-58],[43,-15],[31,10],[35,-15],[41,-40],[46,-90],[53,-140],[38,-74],[24,-9],[8,-19],[-8,-28],[4,-27],[14,-26],[20,0],[24,20],[71,65],[48,31],[25,-4],[29,-29],[34,-53],[51,-25],[71,1],[39,-14],[9,-30],[-6,-43],[-21,-55],[21,-48],[64,-41],[25,-76],[-14,-112],[17,-46],[47,20],[30,25],[15,-7],[14,-15],[7,-11],[14,0],[2,10],[14,19],[29,10],[19,-12],[-4,-11],[7,-15],[22,-8],[21,-6],[38,19],[33,-17],[8,-41],[-9,-18],[-13,-58],[4,-58],[16,-19],[22,-2],[16,-9],[8,-11],[13,-10],[25,-11],[18,5]],[[33171,96698],[0,-56],[-21,-57],[-63,-116],[-129,-247],[-54,-26],[-59,-62],[-83,-107],[-69,-146],[-55,-184],[-28,-131],[0,-78],[-24,-72],[-48,-66],[-18,-55],[11,-45],[-1,-50],[-12,-55]],[[32518,95145],[-15,-43],[-19,-31],[-25,-14],[-32,2],[-35,-38],[-38,-78],[-28,-39],[-42,-12]],[[36246,97627],[-175,137],[-113,114],[-100,65],[-125,54],[-67,89],[-8,122],[-39,90],[-10,22],[-91,101],[-94,67],[-96,34],[-55,6],[-13,-20],[5,-35],[24,-49],[8,-37],[-8,-26],[-64,-16],[-121,-7],[-93,25],[-64,56],[-44,5],[-24,-47],[-47,-17],[-70,13],[-41,-52],[-11,-118],[-120,-162],[-30,-26],[-199,-180],[-200,-143],[-172,-80],[-123,-108],[-114,-204],[-96,-121],[-70,-49],[-77,-18],[-81,-47],[-85,-74],[-59,-63],[-32,-52],[-18,-56],[-5,-60],[-17,-38],[-41,-24]],[[49386,98223],[55,-92],[44,-48],[76,-50],[80,-127],[62,-68],[71,-50],[36,-49],[1,-48],[23,-37],[46,-25],[28,-70],[17,-170],[125,-144],[121,-31],[158,34],[107,-14],[57,-63],[36,-85],[15,-108],[-6,-71],[-25,-36],[-4,-33],[17,-29],[-14,-48],[-45,-69],[-26,-59],[-7,-100],[4,-51],[27,-66],[49,-82],[26,-77],[4,-73],[22,-102],[39,-130],[15,-97],[-10,-65],[4,-54],[17,-45],[-1,-116],[-18,-189],[14,-146],[46,-104],[65,-31],[127,60],[83,-31],[34,-28],[13,-36],[21,1],[32,37],[28,5],[25,-25],[22,0],[21,26],[32,0],[43,-24],[30,1],[18,26],[29,15],[40,5],[46,-21],[51,-45],[29,-1],[6,44],[-9,27],[-25,10],[-16,22],[-5,34],[20,46],[28,34],[20,25],[24,10]],[[14306,102748],[218,-57],[3,-35],[26,-31],[47,-38],[17,-38],[-15,-36],[11,-24],[37,-13],[15,-57],[-5,-100],[101,-60],[315,-26],[108,-36],[118,-11],[163,2],[94,-32],[23,-64],[8,-64],[-8,-62],[24,-34],[56,-5],[67,-33],[76,-61],[51,-77],[3,-11],[18,-67],[7,-28],[9,-34]],[[72963,66555],[28,-50],[7,-42],[-5,-53],[-22,-67],[-58,-120],[-161,-237],[-56,-114],[-4,-72],[13,-58],[29,-46],[12,-66],[-8,-129],[-18,-31],[1,-53],[14,-86],[14,-46],[14,-6],[5,-38],[-6,-69],[7,-53],[19,-36],[-5,-50],[-30,-63],[-32,-43],[-35,-24],[-30,-40],[-25,-56],[-12,-53],[1,-48],[-18,-40],[-36,-32],[-47,6],[-40,34],[-29,0],[-34,-27],[-20,-56],[-25,-12]],[[72291,64553],[-2,-2],[-7,3]],[[72244,64626],[-14,2],[-5,-5]],[[72141,64608],[-17,6],[-35,-12]],[[46069,95131],[98,108],[67,38],[68,5],[50,26],[31,50],[13,46],[-6,45],[29,32],[64,20],[33,35],[1,48],[25,21],[48,-7],[24,-15],[-3,-21],[13,-20],[28,-16],[20,-76],[13,-134],[-19,-100],[-50,-68],[-62,-60],[-74,-50],[-29,-38],[-41,-53],[-66,-131],[-12,-72],[41,-14],[47,-66],[53,-118],[26,-87],[-2,-56],[-15,-53],[-29,-50],[-9,-48],[12,-47],[38,-25],[64,-2],[53,-36],[27,-46],[35,-58]],[[40792,110759],[-156,-55],[-68,-41],[-34,-43],[-54,-38],[-75,-32],[-63,-15],[-78,5]],[[39687,112139],[-136,32],[-80,55],[-69,90],[-102,76],[-136,63],[-82,66],[-28,71],[-71,28],[-114,-14],[-104,21],[-93,56],[-77,26],[-60,-6],[-76,16],[-92,38],[-73,8],[-54,-21],[-104,-6],[-154,10],[-107,32],[-60,52],[-69,20],[-80,-14],[-104,31],[-130,77],[-96,45],[-64,13],[-51,-9],[-38,-31],[-87,17],[-206,98],[-114,75],[-60,55],[-43,58],[-38,85],[-33,110],[-52,92],[-71,74],[-85,62],[-98,52],[-47,76],[6,100],[-68,96],[-143,93],[-74,93],[-7,93],[-28,70],[-50,48],[-20,42],[10,37],[-1,40],[-12,42],[-23,30],[-36,19],[-11,24],[14,27],[1,27],[-12,26],[-63,67],[-21,10],[-12,2],[-8,17],[3,29],[-14,11],[-85,6],[-31,21],[-11,41],[-57,29],[-102,17],[-66,36],[-28,57],[-46,47],[-63,37],[-29,30],[-1,18],[-13,15],[-14,9],[-10,10],[2,14],[-2,30],[-26,49],[-59,54],[-89,59],[-59,53],[-30,47],[-6,66],[13,64]],[[43729,110471],[-24,-133],[-18,-50],[-31,-19],[-39,-6],[-40,-38],[-53,-72],[-58,-47],[-63,-22],[-64,-51],[-63,-80],[-81,-34],[-100,13],[-117,47],[-132,82],[-168,62],[-203,42],[-185,54],[-167,65],[-100,58],[-32,50],[-38,21],[-44,-7],[-52,16],[-91,58],[-196,144],[-101,38],[-71,-21],[-91,19],[-109,58],[-101,29],[-92,2],[-52,10],[-4,6],[-9,13],[-42,2],[-106,-21]],[[17685,96800],[45,-64],[84,-37],[137,-32],[116,-50],[140,-101],[2,-1]],[[18209,96515],[68,-51],[56,-1],[65,33],[113,15],[159,-5],[99,11],[40,28],[24,4]],[[18833,96549],[1,0],[15,-30]],[[15090,99413],[73,-34],[34,4],[18,31],[39,11],[60,-11],[30,5],[10,3],[13,8],[18,-11],[52,10],[73,41],[64,10],[55,-21],[39,-32],[38,-64],[39,-56],[28,-12],[29,15],[16,-7],[9,-6],[14,2],[9,35],[16,10],[21,-14],[0,-23],[-20,-32],[0,-27],[22,-23],[8,-32],[-5,-43],[25,-46],[17,-16],[36,-33],[24,-48],[-5,-46],[12,-15],[32,17],[32,-1],[33,-20],[10,-38],[-13,-57],[25,-68],[64,-79],[51,-46],[39,-15],[27,1],[15,18],[29,-9],[42,-37],[35,-14],[27,10],[70,-20],[47,-20],[66,-29],[73,-61],[33,-71],[23,-23],[20,0],[24,-3],[47,-29],[54,-90],[77,-188],[5,-29],[0,-55],[-15,-87],[11,-106],[38,-124],[20,-95],[0,-65],[18,-71],[35,-76],[17,-87],[-1,-96],[43,-96],[128,-141],[158,-32],[68,-32],[30,-42],[48,-26],[101,-14]],[[13798,103080],[-124,-38],[-61,-45],[-39,-66],[-16,-45],[8,-25],[49,-36],[91,-49],[64,-20],[35,8],[39,-19],[43,-46],[44,-20],[46,6],[22,-29],[0,-63],[20,-35],[40,-5],[18,-24],[-5,-44],[-40,-57],[-75,-71],[-37,-51],[0,-32],[-13,-25],[-4,-19],[-15,-43],[-47,-27],[-8,-19],[6,-21],[-15,-17],[-65,-12],[-54,-31],[-44,-52],[-54,-31],[-64,-10],[-45,-18],[-25,-27],[-41,-6],[-57,13],[-42,-10],[-27,-34],[-38,-77],[-4,-63],[8,-85],[20,-45],[32,-6],[23,-48],[18,-124],[2,-11]],[[15358,104223],[-74,-137],[-199,-60],[-125,-13],[-116,14],[-101,-3],[-84,-19],[-47,-20],[-12,-22],[12,-38],[35,-53],[6,-55],[-22,-57],[-23,-35],[-24,-13],[-106,22],[-189,59],[-116,15],[-41,-29],[-85,-25],[-128,-21],[-137,-48],[-147,-76],[-35,-86],[75,-95],[50,-49],[27,-3],[17,-19],[13,-55]],[[57712,91282],[39,1],[29,22],[49,67],[68,56],[18,60],[-8,82],[20,51],[48,20],[20,50],[-8,79],[26,116],[59,155],[33,110],[7,67],[-19,31],[-44,-3],[-31,18],[-15,40],[-3,52],[17,95],[-19,17],[2,23],[18,34],[4,37],[-9,38],[-40,72],[-72,107],[-12,98],[47,90],[47,56],[48,20],[19,30],[-8,40],[5,38],[18,36],[1,39],[-18,43],[10,46],[39,50],[13,72],[-13,93],[32,98],[77,102],[61,126],[45,151],[76,121],[109,90],[49,83],[-18,113],[-1,111],[31,109],[61,145],[24,136],[-20,191]],[[43217,89373],[-11,59],[-30,72],[-43,31]],[[43133,89535],[-22,-38],[-3,-107],[18,-115],[1,-5]],[[42634,89843],[-32,-100],[-22,-111],[-1,-88],[-32,-67],[-60,-45],[-40,-71],[-18,-161]],[[42634,89843],[46,-10],[46,0],[49,-18],[43,-32],[37,-48],[13,-46],[-11,-46],[13,-40],[37,-35],[27,-92],[9,-31],[45,-198],[2,-37],[1,-25]],[[43583,90334],[13,-195],[18,-74],[31,-39],[28,-23],[8,-33],[13,-19],[19,-23],[2,-29],[8,-32],[27,-46],[0,-71],[19,-84],[24,-20]],[[43023,90684],[63,-154],[49,-63],[46,-33],[38,-45],[30,-57],[12,-39],[-6,-21],[10,-14],[28,-6],[14,-27],[0,-51],[10,-38],[10,-30],[3,-41],[12,-25],[29,-25],[6,-50],[27,-94],[93,-151],[47,-129],[4,-102],[-17,-81]],[[43023,90684],[52,-50],[48,-2],[57,-24],[68,-49],[62,-17],[84,21]],[[42609,91016],[4,-5],[62,-102],[14,-44],[-4,-36],[16,-31],[35,-25],[16,-33],[-4,-40],[32,-37],[29,-14],[37,-19],[35,-60],[2,-87],[-18,-72],[-38,-57],[-5,-56],[28,-56],[24,-19],[19,-15],[12,-28],[11,-22],[37,-26],[7,-58],[15,-64],[36,-62],[14,-60],[-8,-59],[8,-65],[24,-70],[31,-50],[35,-35],[4,-4],[-2,-20],[16,-50]],[[42609,91016],[17,-10],[42,-26],[81,-16],[3,-1],[1,-1],[25,-23],[21,-19],[11,-68],[16,-41],[21,-14],[30,3],[39,20],[49,-39],[58,-97]],[[42332,91380],[12,-133],[46,-103],[90,-129],[37,-129],[-17,-130],[-2,-112],[13,-95],[-7,-76],[-19,-34],[18,-53],[34,-41],[18,-37],[24,-11],[9,-58],[-5,-106],[14,-65],[32,-24],[21,-34],[11,-44],[-16,-89],[-11,-34]],[[42332,91380],[16,-60],[31,-76],[46,-94],[38,-53],[42,-19],[5,-2],[36,16],[29,-22],[34,-54]],[[37642,96452],[-12,-43],[5,-42],[18,-55],[3,-35],[-18,-26],[-51,-88],[-46,-18],[-56,24],[-58,-29],[-91,-120],[-47,-60],[-43,-13],[-53,13],[-74,-7],[-94,-27],[-63,-49],[-32,-71],[-55,-22],[-77,28],[-61,-26],[-45,-79],[-20,-91],[8,-102],[-25,-79],[-58,-56],[-11,-95],[37,-134],[12,-126],[-13,-118],[9,-132],[45,-219],[38,-83],[17,-65],[7,-76],[31,-83],[54,-90],[101,-100],[146,-111],[99,-58],[50,-3],[32,-29],[14,-53],[37,-36],[60,-18],[51,-32],[42,-44],[42,-84],[41,-126],[42,-83],[61,-60],[49,-16],[44,-85],[55,-157],[84,-158],[111,-158],[66,-118],[21,-80],[42,-70],[63,-61],[63,-23],[64,13],[84,-54],[104,-121],[53,-83],[2,-44],[35,-39],[67,-33],[44,-36],[21,-38],[41,-16],[59,7],[29,-17],[-2,-62],[80,-84],[45,-23],[37,9],[19,-19],[1,-12],[5,-13],[8,-1],[8,3],[12,14],[15,-1],[11,-26],[15,-3],[20,19],[33,-12],[44,-43],[23,1],[7,15],[12,13],[20,1],[97,-63],[54,-2],[50,39],[30,42],[10,47],[23,30],[38,12],[12,27],[-14,42],[2,37],[18,32],[42,8],[64,-18],[50,-27],[29,-18],[14,15],[0,29],[3,31],[47,42],[41,19],[25,-14],[23,-40],[30,-19],[36,3],[54,45],[71,89],[52,33],[32,-24],[33,6],[35,36],[50,3],[64,-30],[55,-3],[45,25],[67,8],[90,-11],[79,-43],[70,-77],[58,-39],[43,-8],[25,3],[26,5],[32,-1],[36,-41],[46,-17],[52,17],[54,-27],[58,-71],[69,-45],[80,-17],[78,32],[75,80],[41,9],[8,-63],[19,-48],[30,-32],[43,3],[57,39],[72,-6],[87,-50],[60,6],[33,61],[44,36],[54,9],[43,-23],[31,-55],[42,-36],[52,-17],[27,-37],[0,-57],[26,-50],[50,-43],[19,-48],[-14,-53],[0,-57]],[[17886,97802],[53,-60],[16,-45],[-3,-51],[11,-44],[27,-37],[5,-72],[-16,-107],[9,-70],[35,-33],[25,-92],[16,-151],[22,-113],[29,-75],[42,-71],[55,-67],[20,-75],[-23,-124]],[[38744,84787],[55,-228],[13,-97],[-9,-43],[-24,-31],[-36,-20],[-18,-34],[3,-50]],[[38744,84787],[87,-138],[85,-54],[176,-5]],[[34050,87355],[137,-19],[59,8],[26,27],[28,4],[46,-28],[151,-71],[96,-69],[93,-92],[98,-61],[102,-33],[61,-29],[28,-38],[131,-90],[69,-38],[50,-15],[53,0],[45,12],[34,-11],[7,-31],[14,-10],[27,15],[14,-5],[9,-13],[38,-16],[132,-29],[16,-13],[4,-33],[-10,-51],[6,-14],[12,-3],[16,-8],[18,-28],[27,-4],[36,22],[27,-11],[19,-42],[25,-28],[31,-14],[22,9],[13,32],[49,30],[87,29],[51,3],[16,-23],[44,7],[71,37],[50,-11],[28,-60],[73,-69],[119,-78],[107,-2],[96,73],[59,22],[24,-30],[25,-2],[28,26],[36,2],[43,-20],[42,9],[39,38],[34,13],[29,-11],[48,10],[69,31],[56,-25],[44,-80],[44,-56],[67,-46],[49,23],[55,-28],[78,-73],[56,-27],[34,18],[21,42],[31,34],[29,4],[61,-53],[65,-35],[59,6],[44,-19],[27,-46],[14,-49],[0,-53],[11,-39],[22,-24],[15,-39],[7,-53],[33,-53],[85,-80],[88,-142],[31,-109],[1,-125],[53,-79],[104,-33],[59,-32],[14,-31],[36,-20],[56,-9],[46,-20],[34,-31],[35,-110],[53,-282]],[[59721,112030],[23,-71],[33,-46],[51,-45],[68,10],[87,67],[67,21],[49,-26],[34,-49],[20,-71],[75,-42],[197,-17],[85,6],[61,23],[66,40],[151,0],[236,-41],[233,26],[228,93],[177,88],[126,83],[112,53],[147,35],[237,144]],[[56009,97856],[72,-83],[23,-51],[-2,-44],[27,-75],[55,-104],[80,-63],[107,-24],[50,-59],[-4,-94],[26,-69],[55,-44],[40,-51],[24,-60],[5,-75],[-13,-91],[9,-66],[51,-65],[20,-10],[10,-30],[5,-54],[-7,-18],[-17,-16],[-10,-32],[19,-84],[25,-54],[21,-22],[-1,-27],[-6,-24],[-10,-62],[13,-36],[36,-10],[14,-26],[-4,-21],[5,-22],[22,-3],[26,-6],[30,-38],[21,-3],[51,13],[57,-47],[80,-37],[99,-20],[76,30],[53,80],[41,49],[56,24],[19,-3],[21,7],[13,12],[23,-7],[15,7],[7,13],[15,-2],[26,-36],[51,-24],[111,-12]],[[53060,98275],[161,62],[90,-7],[58,-27],[55,-50],[95,18],[134,85],[102,30],[71,-25],[51,6],[32,36],[26,11],[19,-16],[10,-34],[0,-52],[47,-42],[92,-32],[41,-50],[-11,-70],[24,-58],[58,-48],[13,-16],[0,-21],[8,-37],[51,-97],[80,-36],[39,18],[24,60],[14,12],[9,3],[12,-7],[10,-6],[11,5],[39,23],[82,83],[65,34],[48,-15],[39,17],[30,51],[64,39],[133,41],[13,2],[16,-2],[217,-92],[96,-15],[36,29],[62,2],[89,-24],[51,0],[12,26],[42,2],[71,-23],[21,-28],[1,-14],[18,-25]],[[65274,112670],[-25,17],[-33,43],[8,36],[-6,29],[-21,21],[2,34],[20,43]],[[65128,113139],[-96,122],[-56,96],[-8,60],[-6,21]],[[64949,113473],[-14,19],[-12,45],[2,10]],[[64861,113742],[-10,5],[-12,36],[2,20]],[[64783,113979],[-47,69],[-25,88],[-7,79],[-36,39],[-2,35],[-4,58]],[[64661,114350],[-21,16],[-13,21],[11,25],[-17,32],[-44,38],[-20,32],[-5,30],[-22,23],[-64,22],[-18,31],[5,27],[6,11]],[[64333,114849],[-20,6],[-32,0],[-27,33],[8,21],[-2,40],[-14,19]],[[64231,114983],[-26,11],[-29,-8],[-72,30],[-114,69],[-78,28]],[[63804,115090],[-14,-35],[-40,3],[-100,64],[-101,16],[-57,35],[-15,20]],[[63376,115248],[-8,-2],[-93,39],[-134,81]],[[63037,115395],[-14,-8],[-15,-1],[-26,3],[-38,1],[-1,0]],[[62495,115334],[-78,-6],[-79,5],[-10,8]],[[62036,115286],[-264,-75]],[[27055,96716],[87,-160],[23,-112],[14,-65],[14,-247],[110,-164],[204,-79],[176,-20],[146,39],[149,87],[153,135],[120,56],[86,-23],[55,-4],[25,16],[30,50],[37,86],[32,127],[27,169],[40,138],[54,106],[25,102],[-3,75],[14,67],[37,59],[108,99],[93,128],[76,152],[77,90],[76,28],[80,137],[82,248],[85,152],[129,84],[54,47],[47,68],[56,104],[46,56],[36,7],[32,33],[27,57],[56,63],[85,69],[75,41],[65,13],[69,50],[74,89],[49,45],[26,1],[10,30],[-7,57],[4,44],[22,40],[135,124],[137,74],[277,99],[55,-17],[41,13],[65,53]],[[53129,87586],[-76,50],[-34,7],[-23,-14],[-11,6],[4,25],[-7,17],[-17,9],[-23,49],[-27,88],[-23,43],[-19,-4],[-31,39],[-42,80],[-24,84],[-7,86],[-36,73],[-64,59],[-58,33],[-51,7],[-35,28],[-30,74],[-58,-16],[-30,24],[-19,58],[-15,16],[-10,-26],[-47,59],[-82,146],[-165,227],[-371,459],[-143,172],[-190,228],[-185,183],[-147,100],[-170,94],[-287,135],[-132,155],[-86,132],[-83,160],[-55,133],[-25,107],[-31,82],[-35,60],[-34,29],[-31,-1],[-70,97],[-108,197],[-69,95],[-30,-9],[-69,23],[-106,57],[-63,51],[-28,71],[-70,174]],[[53376,91715],[11,-2],[7,-19],[5,-55],[21,-62],[26,-26],[54,-17],[70,-112],[22,-66],[-2,-56],[29,-106],[61,-155],[44,-82],[25,-9],[13,-23],[0,-37],[-18,-40],[-35,-41],[-13,-44],[10,-47],[21,-37],[31,-27],[24,-7],[18,13],[35,-47],[51,-108],[47,-45],[42,18],[37,32],[32,45],[22,17],[12,-11],[41,39],[70,88],[63,33],[58,-22],[46,-40],[35,-58],[39,-34],[43,-12],[19,-25],[-6,-40],[11,-40],[26,-40],[46,0],[66,41],[46,9],[27,-23],[26,-6],[23,11],[27,38],[31,66],[28,19],[34,-43]],[[47771,99753],[150,34]],[[48047,99964],[99,-4],[55,-41],[42,-78],[56,-56],[70,-32],[37,-31],[8,-43],[2,-61],[-9,-36],[-21,-31],[17,-52],[53,-73],[55,-46],[57,-19],[30,11],[4,42],[19,26],[33,10],[48,-9],[64,-29],[32,-106],[2,-184],[36,-139],[71,-94],[46,-45],[20,2],[13,17],[6,31],[28,3],[50,-26],[55,-5],[58,14],[86,-40],[112,-95],[75,-22],[38,49],[13,39],[30,40],[60,35],[89,71],[60,36],[29,1],[49,-42],[68,-84],[39,-11],[10,63],[56,-10],[104,-84],[104,-41],[106,1],[84,-57],[65,-116],[49,-71],[36,-26],[73,12],[112,53],[56,42],[0,31],[-18,30],[-37,29],[-20,39],[-13,72],[-8,17],[-18,46],[-46,81],[-60,52],[-73,23],[-81,51],[-87,80],[-99,63],[-109,46],[-69,64],[-27,84],[-45,52],[-61,22],[-40,46],[-20,69],[-37,26],[-54,-18],[-53,19],[-52,54],[-49,33],[-46,12],[-40,91],[-51,255],[22,34],[-12,48],[-41,71],[3,100],[48,127],[46,66],[44,3],[79,77],[115,151],[90,77],[64,2],[36,-8],[8,-19],[53,-19],[97,-21],[88,18],[78,55],[78,0],[75,-55],[59,-74],[40,-93],[71,-35],[99,24],[148,-11],[196,-45],[133,5],[70,55],[11,45],[-50,32],[14,58],[77,84],[100,15],[123,-52],[84,-23],[46,6],[20,25],[-4,43],[28,61],[62,77],[101,89],[139,99],[71,68],[3,36],[-17,48],[-38,59],[-56,43],[-74,28],[-43,52],[-11,75],[4,49],[22,67],[54,19],[43,37],[33,55],[67,44],[154,47],[24,39],[89,17],[163,10],[126,23],[88,36],[61,80],[33,125],[43,88],[51,52],[42,73],[31,94],[51,88],[69,81],[43,99],[16,119],[47,117],[78,116],[44,82],[12,49],[-13,91],[-38,131],[-14,119],[10,107],[-5,125],[-29,214],[189,226],[62,92],[-3,32],[17,55],[38,77],[82,66],[126,56],[71,46],[15,37],[68,23],[120,8],[70,-9],[20,-28],[38,-13],[57,1],[51,-31],[44,-65],[57,-58],[70,-49],[66,-22],[63,6],[82,-16],[102,-37],[81,-1],[62,34],[46,2],[30,-32],[86,-2],[142,27],[130,-33],[117,-93],[98,-60],[80,-26],[62,-4],[45,17],[75,-43],[105,-104],[58,-82],[11,-59],[-5,-62],[-22,-65],[4,-60],[30,-55],[-2,-64],[-36,-73],[-51,-49],[-42,-14],[-25,-11],[-7,-25],[-1,-19],[22,-43],[4,-47],[-32,-96],[-37,-68],[-42,-39],[-16,-34],[9,-30],[-15,-74],[-38,-118],[-16,-76],[8,-36],[-54,-95],[-116,-155],[-55,-121],[4,-89],[43,-106],[81,-124],[34,-99],[-14,-75],[-23,-50],[-32,-26],[-12,-41],[9,-57],[-28,-83],[-64,-109],[-42,-55],[-21,-2],[-4,-11],[13,-21],[0,-51],[-12,-80],[4,-51],[18,-20],[2,-18],[-15,-16],[9,-42],[31,-69],[9,-114],[-15,-160],[17,-194],[50,-228],[2,-167],[-70,-159],[-54,-91],[-29,-84],[-22,-106],[-9,-117],[4,-193],[114,-33],[89,6],[102,34],[56,31],[46,35],[33,18],[43,41],[82,30],[122,18],[79,40],[36,60],[50,49],[62,37],[159,-44],[256,-125],[173,-53],[90,19],[84,36],[76,54],[65,29],[52,3],[75,-20],[97,-43],[67,-6],[38,30],[111,4],[183,-22],[121,15],[68,42],[19,35]],[[47119,99999],[338,-64],[189,-102]],[[57959,99907],[14,35],[2,70],[23,70],[63,84],[71,65],[79,44],[40,36],[0,30],[24,49],[47,70],[78,65],[107,60],[52,42],[-3,25],[10,24],[24,23],[24,8],[41,80],[24,32],[22,28],[65,49],[129,114],[76,85],[7,42],[30,60],[53,79],[73,59],[95,39],[73,74],[52,110],[65,74],[77,38],[50,40],[22,44],[49,24],[76,3],[84,25],[92,48],[64,70],[35,92],[51,53],[65,12],[85,49],[106,86],[69,36],[50,-11]],[[48188,110763],[-226,64],[-96,55],[-23,51],[18,65],[6,65],[-6,65],[50,88],[106,111],[197,53],[288,-6],[218,-27],[149,-49],[237,72],[327,195],[187,99],[45,1],[36,18],[27,34],[16,38],[7,65]],[[49665,70144],[64,-6],[37,-25],[32,-46],[35,-15],[56,23],[41,-9],[21,17],[16,40],[26,4],[37,-32],[46,-10],[56,11],[40,-4],[34,-4],[30,17],[56,85],[81,20],[106,-44],[84,3],[92,78],[68,72],[86,-19],[128,-86],[59,-21],[54,23],[98,88],[72,36],[68,-25],[34,-1]],[[37581,97753],[-177,252]],[[37408,97999],[-56,119],[-1,2],[-69,95],[-103,114],[-79,47],[-56,-20],[-99,36],[-229,159],[-36,39],[-18,41],[-1,40],[-43,66],[-84,89],[-81,109],[-77,129],[-75,79],[-111,45],[-216,107],[-107,82],[-71,94],[-76,71],[-82,47],[-60,58],[-37,68],[-15,60],[8,52],[-39,70],[-85,88],[-54,81],[-23,74],[-42,31],[-60,-12],[-69,30],[-80,72],[-45,57],[-12,42],[-40,24],[-69,7],[-84,29],[-98,51],[-53,50],[-6,49],[-17,20],[-27,-8],[-13,-66],[0,-123],[-33,-84],[-66,-46],[-69,-25],[-71,-6],[-94,23],[-117,51],[-123,29],[-63,3],[-65,3],[-71,-56],[-12,-118],[-61,-105],[-110,-94],[-59,-73],[-8,-55],[14,-44],[35,-35],[-6,-30],[-47,-27],[-29,-42],[-19,-87]],[[33501,99126],[-32,-45],[-35,-14],[-48,3],[-57,-16],[-66,-34],[-34,-54],[-2,-71],[-22,-31],[-43,10],[-30,-5],[-19,-18],[-31,-76],[-42,-135],[-43,-82],[-45,-29],[-23,-82],[-1,-136],[-40,-98],[-79,-60],[-53,-71],[-40,-124],[-6,-172],[-42,-144],[-117,-261],[-122,-360],[-35,-225],[17,-318],[-35,-91],[3,-79],[28,-97],[4,-96],[-22,-95],[0,-134],[20,-174],[-20,-150],[-60,-125],[-18,-104],[24,-84],[2,-81],[-21,-77],[-9,-71],[4,-66],[-27,-62]],[[32284,94892],[-56,-60],[-42,-30],[-26,-1],[-64,-66],[-100,-133],[-89,-85],[-77,-37],[-66,-72],[-55,-109],[-50,-58],[-44,-7],[-29,-20],[-11,-34],[-19,-13],[-27,7],[-36,-20],[-45,-47],[-37,-23],[-28,3],[-19,-18],[-11,-37],[-16,-17],[-22,5],[-7,-21],[8,-49],[-9,-37],[-26,-25],[1,-26],[27,-26],[11,-20],[-7,-15],[-65,-35],[-37,17],[-33,52],[-21,9],[-9,-33],[-47,-36],[-85,-39],[-52,-33],[-18,-25],[-4,-51],[11,-76],[-12,-41],[-34,-4],[-26,-20],[-19,-35],[-1,-31],[16,-27],[-7,-20],[-31,-12],[-13,-25],[5,-39],[-26,-46],[-58,-53],[-30,-74],[-4,-140],[-8,-214],[5,-99],[15,-55],[33,-49],[50,-43],[28,-44],[8,-43],[41,-75],[76,-105],[27,-66],[-22,-24],[4,-31],[31,-38],[-1,-52],[-33,-68],[-11,-80],[10,-92],[-2,-61],[-14,-29],[3,-29],[20,-28],[-1,-16],[-22,-6],[-16,-36],[-9,-67],[-14,-25],[-19,15],[-17,-20],[-17,-55],[-22,-29],[-28,-2],[-25,-92],[-23,-180],[-29,-96],[-36,-10],[-14,-19],[8,-27],[-9,-16],[-24,-4],[-6,-18],[13,-30],[-18,-36],[-50,-40],[-25,-38],[0,-34]],[[46270,84427],[15,135],[9,92],[-1,105],[31,106],[62,108],[30,78],[-4,48],[17,31],[38,16],[45,85],[53,153],[54,92],[88,76]],[[46707,85552],[16,19],[22,24],[31,-3],[34,-79],[36,-155],[51,-156],[68,-157],[32,-101],[-2,-46],[53,-88],[27,-103],[58,-65]],[[46722,84680],[-92,-406],[-50,-164],[-15,-22]],[[46791,84753],[29,-112],[40,-49],[64,-46],[25,-51],[-15,-53],[-1,-43],[13,-32]],[[46717,85457],[-39,-21],[-29,-44],[-34,-93],[-4,-43],[19,-29],[10,-31],[-3,-44],[-10,-26],[-24,-21],[-7,-17],[-7,-65],[-2,-38],[-20,-29],[-16,-56],[-12,-82],[5,-63],[22,-43],[5,-47],[-26,-102],[-18,-53],[-22,-31],[-27,-7],[-27,-52],[-27,-97],[-35,-83],[-66,-105],[-6,-15]],[[74347,107167],[-106,92],[-94,57],[-52,14],[-42,-9],[-46,-29],[-50,-47],[-82,-46],[-180,-75],[-20,-21],[-14,-49],[-14,-114],[-88,-83],[-38,-63],[-18,-70],[-26,-33],[-35,4],[-35,23],[-52,63]],[[48996,94136],[19,-232],[37,-168],[61,-180],[74,-151],[85,-121],[47,-90],[7,-60],[17,-15],[26,31],[13,60],[0,90],[26,84],[53,78],[19,71],[-15,63],[7,67],[30,72],[15,67],[2,62],[18,33],[35,3],[21,-70],[9,-142],[18,-84],[27,-25],[15,-51],[3,-76],[-16,-54],[-35,-30],[-8,-27],[19,-25],[2,-75],[-13,-124],[-15,-71],[-17,-16],[2,-89],[19,-160],[3,-102],[-14,-43],[2,-40],[18,-35],[71,-28],[125,-21],[95,28],[64,74],[75,48],[86,20],[57,51],[28,83],[56,43],[83,5],[62,-37],[41,-79],[17,-82],[-9,-84],[-15,-58],[-21,-29],[-9,-50],[3,-68],[34,-29],[67,10],[58,53],[48,96],[70,79],[92,62],[55,25],[16,-14],[7,-25],[-5,-36],[12,-24],[29,-13],[39,22],[49,57],[40,28],[32,0],[17,26],[2,50],[10,36],[18,21],[-13,92],[-46,162],[-25,155],[-4,147],[8,104],[20,60],[18,23],[17,-14],[28,2],[58,31],[31,83],[22,32],[22,9],[10,15],[-3,22],[22,36],[49,50],[40,70],[32,90],[-1,59],[-35,28],[-16,33],[4,39],[19,42],[61,74],[21,11],[22,-5],[23,-23],[34,11],[46,46],[10,66],[-24,86],[-4,72],[24,86]],[[48499,97122],[149,-211],[33,-96],[-34,-51],[-34,-8],[-35,36],[-24,-13],[-13,-61],[23,-68],[57,-75],[27,-60],[-4,-47],[22,-55],[51,-64],[17,-45],[-16,-27],[14,-170],[43,-313],[12,-211],[-20,-111],[6,-139],[48,-251],[28,-510],[44,-235],[103,-195]],[[11857,96817],[-14,-79]],[[11946,97984],[-15,-272],[0,-4],[3,-28],[9,-99],[-5,-27],[-17,-86],[-2,-99],[5,-58],[11,-126]],[[12112,98717],[-98,-139],[-44,-156],[-1,-4],[-13,-107],[2,-177]],[[57162,71621],[-134,-198],[-163,-92],[-92,-26],[-78,9],[-72,-26],[-67,-63],[-98,-46],[-130,-31],[-46,-31],[-2,-43],[-17,-37],[-44,-34],[-11,-27],[3,-18],[-14,-28],[-39,-37],[-32,-8],[-20,-8],[-8,-33],[-8,-25],[-22,0],[-14,-18],[-8,-53],[-24,-45],[-21,-4],[-35,6],[-21,-14],[-23,8],[-14,3],[-13,-17],[-11,5],[-18,15],[-15,-14],[-29,-9],[-46,11],[-31,-8],[-16,-28],[-37,-21],[-58,-13],[-35,18],[-23,14],[-21,-11],[-25,9],[-23,13],[-19,0],[-8,-21],[-14,-12],[-15,3],[-18,-21],[-12,-30],[-27,-24],[-49,-12],[-92,21],[-46,-12],[-53,-21],[-34,-75],[-80,-70],[-124,-65],[-43,-5],[-40,12],[-29,28],[-39,31],[-68,31],[-40,37]],[[57915,72089],[7,10],[59,95],[47,39],[74,14],[103,52],[58,16],[46,-2],[29,-15],[11,-29],[25,-6],[38,16],[44,61],[51,106],[37,14],[24,-78],[42,-37],[60,5],[46,61],[31,117],[76,151],[122,184],[70,94],[17,6],[19,-19],[22,-44],[32,5],[44,54],[55,8],[68,-38],[40,-8],[13,20],[23,6],[31,-8],[34,27],[35,63],[34,32],[30,5],[33,1]],[[43184,104602],[-271,33],[-119,15],[-170,45],[-79,60],[-92,37],[-107,14],[-91,28],[-74,40],[-76,13],[-76,-14],[-81,12],[-83,38],[-52,44],[-20,51],[-53,63],[-88,74],[-87,17],[-131,-60]],[[37336,84484],[200,92],[93,11],[54,-40],[48,19],[40,79],[34,-3],[28,-87],[54,-48],[80,-8],[72,-37],[61,-65],[51,-69],[39,-72],[29,-89],[28,-156],[6,-36],[-1,-88],[-8,-39],[-7,-31]],[[34133,85665],[59,-51],[37,-64],[54,-140],[37,-45],[5,-45],[-14,-61],[11,-70],[34,-78],[14,-62],[-6,-44],[22,-38],[52,-32],[28,-30],[4,-29],[11,-12],[19,3],[17,-18],[20,-62],[26,-71],[29,-41],[42,-36],[8,-27],[-26,-18],[-3,-37],[22,-55],[54,-5],[89,45],[62,-12],[35,-69],[30,-10],[24,49],[37,19],[50,-11],[38,-24],[27,-36],[12,-37],[-4,-38],[27,-14],[59,9],[50,-16],[42,-41],[51,-29],[61,-18],[43,-32],[25,-45],[38,-31],[51,-17],[112,50],[170,118],[107,85],[41,53],[60,-4],[117,-95],[208,-55],[133,-98],[128,-158],[74,-73],[20,12],[9,18],[0,26],[23,23],[45,18],[80,0],[113,-21],[65,14],[16,49],[30,41],[65,50]],[[47570,97353],[66,-229],[38,-97],[31,-40],[19,-55],[5,-68],[-7,-47],[-18,-24],[-3,-53],[12,-82],[32,-71],[52,-60],[26,-74],[0,-88],[68,-139],[204,-285],[68,-96],[43,-98],[41,-130],[31,-67],[19,-3],[28,-37],[37,-69],[33,-93],[28,-119],[42,-100],[57,-82],[22,-70],[-14,-56],[-1,-41],[18,-39],[26,-159],[33,-118],[48,-128],[31,-146],[15,-163],[29,-125],[43,-86],[14,-74],[-15,-61],[-3,-61],[13,-89],[35,-116],[9,-58],[-6,-36],[10,-42],[24,-46],[14,-74],[4,-103],[-10,-123],[-24,-141],[-6,-85],[12,-27],[4,-99],[-4,-171],[3,-129],[10,-87],[33,-105],[56,-123],[18,-103],[-19,-83],[19,-90],[57,-98],[50,-57],[42,-17],[59,-77],[75,-137],[64,-76],[53,-16],[33,-21],[11,-26],[19,2],[28,32],[37,16],[47,2],[50,-56],[54,-115],[21,-131],[-11,-148],[-25,-87],[-40,-25],[-16,-43],[7,-61],[-26,-83],[-60,-103],[-40,-93],[-26,-122],[-42,-164],[23,-107],[73,-106],[47,-113],[20,-120],[39,-91],[59,-60],[29,-52],[-1,-42],[14,-45],[27,-46],[7,-31],[-15,-15],[6,-16],[26,-18],[16,-35],[7,-53],[31,-79],[58,-104],[66,-65],[77,-27],[29,-20],[-18,-12],[-3,-41],[-1,-17],[11,-103],[-38,-94],[0,-1],[-9,-8],[-80,-78],[-63,-43],[-36,-1],[-31,-52],[-26,-101],[-23,-52],[-3,-7],[-3,-2],[-25,-16],[-17,-38],[-2,-9],[-7,-50],[16,-32],[40,-4],[3,-16],[-34,-29],[-41,-10],[-50,8],[-26,-12],[-21,-11],[-45,-55],[-19,-59],[-19,-59],[-31,-181],[-7,-79],[-2,-17],[14,-10],[16,18],[4,5],[26,56],[28,31],[30,7],[24,-29],[8,-9],[34,-83],[35,-47],[36,-12],[3,-14],[17,-67],[5,-151],[32,-57],[60,38],[59,6],[59,-24],[45,-1],[32,24],[36,-3],[40,-29],[64,-13],[88,1],[125,55],[162,111],[92,54],[21,-3],[18,-21],[16,-39],[-53,-90],[-122,-142],[-62,-108],[-1,-77],[12,-51],[25,-27],[0,-39],[-24,-52],[-15,-109],[-6,-164],[5,-108],[14,-51],[-8,-80],[-33,-109],[-65,-122],[-99,-134],[-46,-120],[6,-106],[23,-75],[58,-65],[3,-3]],[[63019,106986],[35,-71],[-6,-91],[-34,-135],[-7,-91],[22,-47],[7,-72],[-9,-97],[25,-84],[59,-70],[36,-61],[13,-51],[20,-31],[-35,-66],[-150,-104],[-94,-44],[-39,14],[-62,-18],[-83,-50],[-82,-107],[-78,-164],[-47,-152],[-24,-213],[-103,-93],[-33,-67],[23,-66],[-18,-44],[-49,-32],[-18,-55],[-34,-39],[-49,-24],[-2,-36],[-4,-77]],[[38098,87846],[3,97],[20,41],[57,28],[73,144],[68,64],[87,31],[67,114],[45,197],[46,111],[66,36],[57,-35],[23,27],[8,76],[30,43],[52,10],[49,28],[48,45],[65,-13],[82,-72],[70,-28],[60,14],[141,-5],[335,-36]],[[39974,88616],[53,-55],[-4,-98],[-65,-236],[1,-78],[20,-46],[38,-39],[67,-12],[95,18],[58,-17],[21,-50],[57,-48],[92,-47],[61,-49],[28,-52],[96,-61],[245,-103],[187,72],[96,2],[70,-44],[56,-68],[64,-141],[10,-41],[40,-34]],[[71813,67948],[-19,-9],[-27,3],[-14,33],[-4,110],[-20,65],[-36,20],[-24,59],[-11,99],[-16,69],[-30,56],[-78,140],[-57,65],[-61,35],[-55,65],[-49,94],[-14,69],[21,42],[4,57],[-14,72],[2,45],[9,28],[-5,30],[3,42],[36,139]],[[39128,96053],[187,-39],[60,5],[35,-30],[31,-62],[131,-113],[346,-245],[95,-60],[34,-42],[2,-44],[16,-34],[28,-27],[73,-25],[118,-25],[64,-62],[9,-98],[68,-68],[128,-37],[92,10],[59,58],[64,19],[107,-32],[106,-59],[160,-7],[248,24],[255,-13],[261,-51],[167,-18],[110,21]],[[52220,80311],[0,-69],[14,-31],[29,-15],[9,-21],[-11,-28],[13,-153],[35,-279],[25,-59],[95,-228],[301,-447]],[[52220,80311],[133,-121],[50,-75],[9,-69],[-10,-78],[-28,-88],[-10,-81],[6,-74],[16,-39],[6,-15],[39,-34],[25,-51],[11,-70],[66,-93],[119,-116],[107,-76],[29,-13]],[[52788,79218],[120,-52]],[[50253,85522],[72,57],[33,53],[11,43],[7,25],[25,26],[9,-4],[24,-11],[42,29],[23,34],[27,40],[39,34],[27,-6],[49,-46],[70,-86],[62,-51],[54,-16],[27,-32],[-1,-31],[-1,-17],[12,-31],[26,-12],[11,5],[-1,12],[-2,11],[25,34],[52,44],[53,27],[51,7],[3,0],[35,36],[21,82],[2,10]],[[51139,85787],[1,1]],[[51140,85788],[1,2]],[[51140,85788],[33,69],[2,3],[28,29],[37,16],[9,22],[-18,28],[2,29],[0,0],[0,1],[21,28],[46,13],[70,-4],[82,-30],[95,-55],[62,-18],[19,13],[10,7],[58,-86],[38,-84],[47,-107],[74,-144],[61,-98],[65,-75],[67,-52],[49,-71],[38,-116],[6,-19],[-12,-71],[-21,-116],[-7,-125],[-2,-36],[4,-198],[40,-152],[76,-106],[44,-85],[7,-38],[5,-27],[59,-56],[4,-1],[102,-45],[44,-42],[-18,-38],[-1,-33],[0,-11],[15,-50],[36,-42],[55,-31],[3,-1],[35,-35],[11,-36],[-1,-59],[-14,-82],[-8,-22],[-16,-41],[-35,-44],[4,-24],[38,-6],[6,-1],[41,-42],[67,-128],[50,-73],[22,-74],[11,-99],[-6,-94],[-24,-90],[-8,-93],[8,-96],[-5,-94],[-19,-92],[13,-73],[46,-55],[27,-47],[5,-20],[4,-20],[0,-41],[-8,-40],[5,-43],[18,-45],[-10,-74],[-37,-104],[-13,-67],[18,-46],[43,-129],[1,-113],[-26,-140],[-1,-177],[23,-212],[-19,-116],[-61,-20],[-68,-2],[-74,17],[-54,-67],[-33,-150],[-56,-74],[-80,2],[-48,-15],[-18,-34],[-28,-21],[-37,-9],[-15,-19],[8,-30],[-7,-32],[-21,-35],[-10,-36],[2,-60]],[[51504,95322],[28,-18],[38,-109],[20,-59],[-5,-21],[39,-55],[128,-136],[61,-55],[24,-40],[6,-44],[45,-39],[140,-58]],[[51622,92262],[-39,-65],[-11,-64],[6,-126],[22,-195],[-10,-102],[-33,-76],[-56,-67],[-131,-91],[-23,-4],[-19,17],[-13,38],[-39,10],[-62,-16],[-31,-41],[0,-68],[-20,-74],[-39,-82],[-6,-57],[26,-32],[4,-42],[-18,-51],[4,-115],[37,-266],[14,-111],[15,-44],[21,-13],[18,6],[15,25],[51,20],[88,14],[48,30],[10,46],[-5,41],[-17,38],[1,37],[18,37],[30,26],[42,16],[46,56],[50,95],[44,48],[37,0],[58,25],[117,76],[107,149],[84,-69],[69,12],[82,70],[67,78],[51,89],[37,29],[23,-29],[35,-16],[47,-2],[35,-25],[23,-49],[54,-47],[86,-46],[60,-19],[32,9],[31,-13],[30,-37],[41,21],[52,79],[20,67],[-13,54],[37,43],[88,32],[74,45],[61,57],[75,42],[76,22],[40,8]],[[38649,89648],[-171,103],[-107,66],[-40,11],[-10,-22],[-21,-6],[-33,10],[-23,26],[-14,43],[-12,9],[-12,-26],[-47,-21],[-82,-18],[-47,-32],[-12,-46],[-2,-69],[8,-91],[-7,-56],[-22,-21],[-22,-2],[-22,15],[-23,47],[-25,77],[-43,34],[-91,-13],[-56,64],[-17,69],[3,94],[-61,55],[-123,13],[-118,-5],[-113,-26],[-62,-25],[-12,-26],[-58,-5],[-103,14],[-85,-2],[-69,-18],[-65,-39],[-60,-59],[-47,-26],[-33,8],[-24,-16],[-15,-39],[-34,-16],[-53,8],[-38,18],[-22,27],[-52,-26],[-81,-81],[-113,-75],[-215,-104],[-117,-48],[-47,-42],[-16,-54],[-36,-45],[-58,-34],[-49,5],[-41,46],[-89,-8],[-136,-62],[-269,-66],[-604,-105],[-59,12],[-46,-19],[-53,-46],[-54,-21],[-55,4],[-71,-19],[-89,-44],[-75,8],[-62,60],[-45,32],[-29,3],[-30,-20],[-31,-42],[-31,-12],[-30,19],[-13,-9],[3,-36],[-14,-18],[-31,0],[-17,-19],[2,-32],[-15,-27]],[[33470,105467],[-177,-142],[-74,-101],[-30,-109],[-62,-100],[-6,-8],[-106,-108],[-159,-68],[-210,-29],[-77,-25],[-23,-17],[-21,-11],[-36,-10],[-58,-34],[-86,-71],[-10,-8],[-200,-189]],[[36421,105645],[140,-9],[23,-27],[-68,-73],[-80,-105],[-52,-48],[-51,-25],[-178,-16],[-307,-6],[-210,-15],[-172,-36],[-122,8],[-78,-14],[-76,-35],[-81,-3],[-85,29],[-154,13],[-221,-4],[-145,-15],[-69,-29],[-79,9],[-90,46],[-46,53],[-2,60],[-12,49],[-21,39],[-51,37],[-83,36],[-82,12],[-124,-18]],[[33845,105558],[-1,0]],[[48175,94391],[121,-146],[61,-99],[22,-103],[4,-141],[-24,-92],[-29,-25],[-21,-18],[-36,-4],[-20,35],[-22,9],[-24,-16],[2,-65],[26,-113],[49,-138],[72,-164],[39,-134],[6,-103],[-11,-124],[-43,-216],[-71,-346],[-36,-136],[-24,-43],[-45,-63],[-68,-84],[-50,-17],[-31,49],[-46,23],[-48,-2],[-23,-2]],[[47369,96083],[46,-3],[19,-32],[6,-61],[79,-73],[152,-87],[101,-91],[50,-96],[28,-85],[7,-73],[24,-79],[40,-83],[66,-74],[92,-66],[76,-118],[59,-170],[65,-128],[105,-130],[13,-115],[14,-47],[19,-16],[16,-84],[13,-152],[36,-111],[58,-70],[27,-76],[-3,-80],[19,-79],[62,-118],[31,-201],[11,-236],[4,-337],[-6,-246],[-16,-155],[-1,-206],[15,-256],[0,-211],[-15,-167],[9,-151],[33,-137],[30,-88],[29,-39],[4,-69],[-22,-99],[10,-78],[42,-55],[-18,-57],[-78,-61],[-81,-44],[-11,-6],[-105,-38],[-64,-37],[-24,-35],[-7,-43],[10,-51],[34,-74],[59,-97],[24,-87],[-12,-76],[10,-46],[33,-16],[17,-35],[1,-52],[-40,-39],[-82,-23],[-23,-39],[36,-54],[8,-34],[-19,-14],[-7,-23],[5,-30],[24,-29],[43,-29],[1,-40],[-42,-50],[-3,-88],[36,-126],[6,-103],[-22,-80],[0,-72],[22,-62],[30,-52],[38,-41],[-14,-59],[-65,-75],[-19,-96],[29,-117],[3,-72],[-23,-28],[4,-40],[30,-52],[19,-70],[9,-88],[18,-73],[27,-56],[-28,-48],[-126,-58]],[[44421,97334],[16,-107],[32,-57],[52,-43],[38,-75],[22,-107],[40,-50],[58,6],[41,-25],[22,-55],[37,-26],[50,5],[36,36],[21,68],[64,47],[159,40],[96,25],[52,-3],[40,-21],[75,-4],[111,12],[103,-6],[94,-27],[77,-3],[60,21],[107,-2],[154,-24],[91,-23],[27,-21],[0,-46],[-27,-72],[2,-42],[29,-12],[27,-34],[24,-56],[23,-32],[25,-9],[40,19],[56,46],[70,24],[83,1],[69,-14],[57,-29],[51,-52],[45,-75],[60,-23],[77,28],[94,-10],[114,-48],[73,-40],[32,-32],[42,-96],[50,-160],[33,-77],[24,9]],[[34022,101937],[-53,16],[-19,5],[-57,-8],[-6,-2],[-93,-43],[-47,-30],[-137,-88],[-80,-79],[0,-1],[-58,-119]],[[33472,101588],[-136,-30],[-37,-9],[-119,-69],[-123,-112],[-82,-60],[-39,-9],[-40,11],[-38,29],[-1,1],[-2,4],[-30,73],[-7,17],[-12,48],[-41,174],[-4,14],[42,398],[20,135],[4,26],[20,57],[1,39],[-18,19],[-37,-1],[-10,-4],[-47,-17],[-40,-4],[-24,14],[2,75],[29,135],[-45,115],[-118,92],[-100,33],[-30,-10],[-53,-19],[-3,-2],[-31,-33],[-36,-38],[-25,-53],[-32,-66],[-58,-98],[-61,-76],[-24,-20],[-19,-16],[-14,-14],[-9,-32],[32,-101],[-2,-85],[-36,-68],[-40,-33],[-11,1],[-33,2],[-34,16],[-6,6],[-20,23],[-70,7],[-113,-13],[-27,-11],[-38,-18],[-13,-5],[-41,-55],[-4,-21],[-8,-52],[17,-91],[-3,-22],[-3,-26],[-3,-22],[-35,-48],[-29,-28],[-22,-7],[-50,42],[-30,36],[-45,54],[-52,49],[-28,8],[-16,-5],[-17,-9],[-8,-10],[-2,-2],[-9,-27],[-24,-11],[-31,8],[-3,1],[-31,-8],[-19,-29],[-52,-34],[-93,-38],[-51,-41],[-6,-30],[-2,-14],[-14,-19],[-23,5],[-6,2]],[[54877,90520],[8,-56],[19,-24],[31,-10],[13,-20],[-6,-30],[13,-45],[32,-61],[45,-41],[60,-19],[37,0],[14,21],[20,-3],[40,-39]],[[48479,88140],[-3,-102],[20,-98],[44,-126],[27,-123],[12,-119],[-74,-103],[-239,-133],[-115,-24],[-45,-27],[-14,-37],[-18,-22],[-23,-6],[-43,-112],[-96,-323],[-43,-401],[-10,-17],[-20,-3],[-30,13],[-13,-54],[6,-121],[23,-117],[40,-112],[43,-54],[10,2],[34,4],[19,-10],[-6,-27],[17,-71],[40,-114],[11,-85],[-24,-85],[2,-11],[31,-209],[-3,-106],[-29,-67],[-24,-94],[-19,-121],[-10,-134],[-1,-146],[9,-101],[1,-3]],[[49751,111820],[210,69],[60,54],[53,25],[66,13],[57,-9],[47,-31],[86,-14],[125,5],[87,-9],[50,-25],[101,-1],[151,23],[91,2],[31,-18],[23,0],[17,18],[67,-6],[119,-33],[153,20],[186,70],[143,32],[102,-7],[90,31],[79,70],[165,81],[253,92],[233,129],[323,248],[-42,102],[6,21]],[[18849,96519],[66,-115],[38,-47],[31,-18],[20,-41],[8,-67],[21,-53],[34,-41],[55,-29],[74,-16],[47,-35],[20,-51],[26,-28],[10,-2],[21,-3],[30,-26],[30,-46],[11,-35],[-8,-24],[6,-42],[11,-32],[10,-28],[8,-9],[17,-19],[40,-35]],[[38687,96921],[-53,-38],[-28,-3],[-32,26],[-89,87],[-39,56],[-20,54],[-2,63],[15,72],[32,60],[49,48],[8,37],[-33,26],[-16,39],[0,53],[-18,68],[-37,84],[-92,80],[-148,74],[-139,37],[-131,-1],[-133,-23],[-200,-67]],[[48654,112961],[102,-59],[45,-3],[34,48],[50,118],[67,49],[46,74],[44,125],[8,85],[-28,43],[14,107],[-25,18]],[[48945,113617],[-178,51],[-139,2],[-161,-31],[-131,4],[-101,40]],[[63670,108632],[81,-4],[35,17],[16,37],[26,10],[36,-17],[25,-30],[12,-45],[48,-20],[85,5],[53,21],[22,36],[68,21],[114,6],[83,46],[53,85],[74,42],[97,-4],[82,11],[69,26],[56,46],[43,67],[57,56],[70,45],[93,0],[117,-44],[76,-19],[37,7],[28,25],[18,45],[47,-2],[77,-49],[80,-26],[85,-3],[76,11],[67,26],[67,-3],[67,-32],[66,-1],[67,30],[56,-6],[48,-41],[55,0],[63,40],[59,79],[55,119],[52,77],[49,38],[36,51],[23,63],[49,56],[76,48],[48,56],[22,63],[29,33],[36,3],[22,14],[10,27],[34,14],[89,1]],[[68249,110570],[-86,-168],[-66,-73],[-92,-66],[-57,-56],[-21,-45],[-176,-36],[-329,-27],[-191,-45],[-50,-64],[-45,-39],[-39,-15],[-28,-33],[-16,-52],[-31,-35],[-69,-25]],[[38533,96343],[-47,28]],[[38431,96421],[-189,169],[-83,57],[-60,0],[-54,-46],[-35,-11],[-33,9],[-71,50],[-109,93],[-74,84],[-36,76],[-71,45],[-104,16],[-93,42],[-82,69],[-84,31],[-86,-5],[-58,28],[-31,60],[-33,39],[-37,18],[-13,-6],[-43,-21],[-76,-72],[-40,-52],[-4,-31],[-23,-16],[-44,0],[-26,-16],[-9,-33],[-67,-8],[-126,18],[-105,-35],[-84,-88],[-67,-43],[-50,2],[-33,-16],[-18,-35],[-30,-24],[-43,-15],[-62,19],[-80,54],[-40,36],[1,19],[-18,9],[-52,-4]],[[35665,96898],[-30,-12],[-8,-18],[3,-26],[93,-177],[19,-75],[-24,-42],[-96,-12],[-170,19],[-161,1],[-153,-15],[-129,33],[-105,83],[-81,36],[-57,-10],[-92,-61],[-127,-111],[-55,-40],[-20,-15],[-24,0],[-71,-104],[-120,-209],[-118,-130],[-175,-80],[-71,-33],[-33,-29],[-18,-36],[-15,-10],[-14,18],[-50,-31],[-88,-79],[-86,-58],[-87,-37],[-45,-33],[-5,-28],[-40,-11],[-74,5],[-68,-35],[-63,-75],[-28,-54],[5,-33],[-24,-35],[-52,-37],[-73,-22],[-92,-8],[-56,-21],[-20,-36],[-29,-23],[-38,-9],[-47,9],[-57,26],[-65,0],[-113,-73]],[[31829,104301],[-83,24],[-71,-13],[-86,-44],[-67,-7],[-47,29],[0,0],[-38,65],[-29,104],[-9,65],[4,32],[-7,18],[-36,49],[-118,116],[-66,85],[-16,54],[-14,19],[-24,31],[-89,70]],[[30763,105122],[10,26],[35,42],[10,106],[-20,164],[9,147],[39,131],[30,75],[9,16],[4,27],[-9,15],[-3,27],[39,46],[17,54],[-4,63],[-14,55],[-24,48],[-2,45],[20,41],[7,50],[-6,60],[-9,29],[-3,21],[-14,26],[-37,34],[-10,35],[6,32],[-23,37],[-93,34],[-53,75],[-11,117],[-17,68],[-22,19],[-18,-5],[-16,-23],[-19,10],[-8,38],[-24,25],[-33,2],[-20,32],[-5,62],[-36,82],[-64,100],[-43,50],[-21,1],[-16,23],[-11,46],[-40,46],[-69,45],[-50,5],[-31,-35],[-45,-7],[-62,21],[-36,4],[-24,17],[-16,78],[-23,41],[-30,6],[-14,19],[2,31],[-23,41],[-48,52],[-21,35],[-44,45],[-98,27],[-26,43],[-10,26],[-24,37],[-48,47],[-22,39],[-2,30],[-31,21],[-71,7],[-71,50],[-71,93],[-82,55],[-91,17],[-63,-1],[-35,-19],[-70,11],[-105,41],[-79,52],[-53,61],[-24,40],[-9,30],[-33,9],[-24,34],[-13,60],[-50,44],[-86,28],[-47,26],[-8,24],[5,23],[17,23],[-18,31],[-53,40],[-19,28],[-30,4],[-211,-69],[-123,-2],[-69,56],[-61,17],[-53,-24],[-44,0],[-35,24],[-23,33],[-10,41],[-30,4],[-48,-34],[-61,-12],[-76,12],[-69,-18],[-63,-46],[-71,7],[-79,60],[-34,47],[13,35],[22,24],[32,13],[3,26],[-36,60]],[[27031,109183],[-173,-49],[-99,6],[-106,55]],[[38250,104464],[80,43],[60,13],[66,-1],[58,34],[51,71],[67,40],[86,10],[67,28],[50,47],[131,65],[212,84],[153,15],[94,-55],[99,-9],[103,36],[113,23],[123,9],[74,-7],[24,-22],[35,19],[46,60],[68,52],[89,43],[134,10],[179,-22],[116,-33],[54,-44],[82,-40],[110,-37],[122,7],[134,52],[110,13],[85,-24],[87,-4],[88,18],[11,35],[-65,52],[-28,37],[16,30]],[[41434,105112],[6,30],[-8,6],[-20,-9],[-40,19],[-60,46],[-59,25],[-59,5],[-48,32],[-36,58],[-16,63],[5,67],[20,46],[34,26],[49,13],[65,-1],[47,17],[27,36],[54,3],[80,-27],[75,-3],[105,36]],[[72738,67513],[-205,68],[-89,64],[-61,20],[-63,-2],[-31,32],[-20,18],[-42,-8],[-18,6],[-28,29],[-73,-4],[-51,34],[-30,72],[-65,53],[-118,42],[-31,11]],[[15893,101616],[33,-61],[19,-19],[13,-6],[12,-16],[2,-54],[27,-37],[89,-39],[27,-25],[9,-19],[-8,-12],[56,-9],[22,-14],[4,-25],[-9,-13],[-21,-1],[-23,-30],[-23,-57],[43,-52],[108,-45],[80,-76],[52,-107],[34,-108],[17,-109],[-2,-74],[-20,-38],[-6,-39],[8,-40],[-7,-30],[-23,-21],[-7,-59],[8,-97],[50,-129],[91,-159],[37,-100],[-18,-41],[27,-105],[72,-168],[44,-149],[18,-128],[23,-89],[29,-49],[32,-31],[56,-19],[102,-21],[56,-26],[43,-38],[15,-54],[-15,-70],[-2,-47],[10,-25],[-9,-35],[-30,-47],[-18,-46],[-5,-46],[9,-67],[21,-87],[21,-45],[20,-2],[28,-46],[37,-91],[76,-86],[114,-83],[64,-31],[26,3],[9,-10],[0,-19],[2,-20],[20,-24],[35,-16],[49,-6],[21,-22],[-1,-32],[23,-42],[50,-50],[80,-40],[167,-44]],[[17886,97802],[128,97],[62,11],[37,-37],[83,-38],[128,-40],[74,-43],[23,-47],[2,-55],[-16,-61],[-5,-48],[8,-34],[25,-32],[42,-28],[35,-54],[30,-80],[40,-42],[49,-2],[26,-33],[5,-64],[43,-102],[83,-141],[41,-145],[4,-235]],[[18833,96549],[0,-5]],[[26652,113833],[50,-122]],[[26793,113668],[122,-25],[89,10],[43,49],[9,103],[-23,156],[-6,106],[11,56],[-9,59],[-29,60],[22,79],[74,99],[35,60],[25,19],[33,15],[123,3],[146,35],[169,67],[104,73],[38,79],[110,84],[182,90],[145,123],[161,232],[7,120],[-17,87],[-40,93],[-15,88],[9,81],[18,48],[26,12],[9,20],[0,32],[11,29],[50,43],[25,40],[33,43],[2,1]],[[45277,99138],[59,79],[98,23],[155,-6],[103,20],[76,69],[100,151],[62,55],[57,9],[71,42],[86,76],[102,18],[118,-39],[89,-58],[59,-78],[54,-38],[49,0],[59,-37],[69,-73],[34,-51],[-3,-31],[15,-23],[32,-16],[61,-82],[89,-150],[66,-91],[41,-33],[34,-12],[25,9],[15,-10],[5,-28],[26,-9],[48,12],[35,-20],[21,-51],[43,-42],[67,-32],[34,-41],[1,-52],[11,-40],[19,-28],[14,-7],[8,14],[8,-9],[8,-32],[30,-10],[52,12],[28,-21],[5,-53],[38,-86],[71,-118],[49,-67],[27,-14],[23,-48],[20,-83],[123,-113],[225,-144],[115,-94],[4,-43],[36,-78],[67,-112],[30,-92],[-8,-71],[13,-61],[51,-78]],[[44001,99306],[208,17],[287,-33],[120,-39],[48,-55],[59,-4],[69,48],[88,15],[107,-16],[74,-34],[40,-52],[59,-23],[117,8]],[[25179,113408],[-28,-10],[-67,-36],[-16,-28],[-79,-3],[-69,11]],[[22206,113684],[-14,-5],[-109,-18],[-79,3],[-45,21]],[[21826,113660],[-25,-17],[-24,-43],[-49,-7],[-73,30],[-45,2],[-15,-24],[-41,-8],[-67,7],[-41,-11],[-15,-29],[-86,-48],[-156,-67],[-60,-48],[-18,-61],[-28,-64],[-55,-79],[-23,-65],[11,-51],[-7,-48],[-24,-43],[-7,-52],[11,-60],[-3,-37],[-16,-15],[-3,-20],[10,-25],[-2,-35],[-12,-44],[27,-50],[65,-55],[35,-54],[7,-79],[-12,-61],[16,-35],[40,-31],[32,-62],[23,-92],[27,-51],[21,-14],[8,-25],[16,-32],[42,-48],[18,-33],[3,-24],[10,-13],[39,-25],[11,-19],[0,-14],[7,-10],[14,-8],[19,-32],[18,-59],[-6,-57],[-32,-55],[-19,-59],[-5,-62],[8,-26],[15,-22],[-2,-45],[-42,-161],[-17,-31],[-26,-21],[-37,-12],[-24,-27],[-11,-38],[-2,-21],[5,-16],[14,-17],[-1,-15],[-18,-13],[-8,-44],[2,-74],[-5,-40],[-8,-12],[7,-40],[34,-86],[8,-113],[-18,-139],[29,-114],[77,-91],[43,-61],[9,-31],[-2,-24],[-12,-18],[3,-14],[18,-11],[11,-25],[4,-39],[-29,-69],[-92,-148]],[[59336,106241],[-22,17],[4,27],[22,43],[8,43],[-10,66],[-14,49],[3,41],[16,50],[73,58],[129,66],[102,36],[75,5],[82,24],[91,42],[173,5],[256,-33],[179,-7],[153,28],[740,135]],[[56913,89683],[34,-55],[41,-129],[28,-77],[30,-101],[21,-37]],[[56913,89683],[153,-81],[56,-40],[28,-43],[28,-7],[24,-2]],[[56881,89888],[264,12]],[[56779,89978],[8,-56],[42,-137],[42,-80],[42,-22]],[[56779,89978],[62,-30],[36,-51],[29,-81],[39,-40],[71,4],[72,-19]],[[55906,90256],[77,-26],[38,-62],[25,-106],[96,-73],[249,-60],[78,44],[48,-9],[43,-47],[41,2],[38,49],[46,24],[54,-1],[40,-13]],[[61396,106936],[175,72],[168,6],[221,-35],[174,39],[129,113],[115,76],[101,40],[85,17],[67,-6],[76,-36],[85,-65],[62,-34],[40,-3],[38,-13],[37,-23],[27,-33],[23,-65]],[[55202,90195],[65,115],[78,9],[167,-89],[71,14],[40,-16],[32,-42],[74,1],[177,69]],[[36771,96474],[-155,-148],[-50,-142],[-26,-42],[-18,11],[-56,-17],[-92,-46],[-47,-54],[-3,-95],[-25,-63],[-49,-63],[-82,-84],[-66,-130],[-50,-176],[-16,-103],[18,-30],[1,-27],[-7,-16],[-1,-19],[16,-22],[14,-51],[-4,-125],[10,-105],[26,-84],[13,-89],[0,-95],[16,-82],[45,-106],[74,-80],[20,-42],[-9,-33],[6,-44],[21,-57],[0,-56],[-20,-56],[6,-80],[32,-104],[33,-53],[32,0],[11,-40],[-10,-80],[2,-44],[14,-7],[5,-19],[-6,-31],[12,-55],[31,-80],[33,-55],[34,-30],[23,-6],[13,20],[14,3],[16,-13],[11,-25],[4,-36],[28,-15],[51,4],[28,-20],[4,-43],[22,-14],[25,8],[10,-9],[2,-13],[8,-15],[33,-3],[31,-28],[30,-53],[11,-7],[9,6],[12,-2],[38,-40],[32,-13],[25,14],[42,-26],[58,-66],[40,-32],[22,0],[22,-35],[23,-68],[42,-50],[61,-32],[13,-25],[-1,-22],[-6,-11],[8,-22],[9,-11],[18,-4],[52,7],[42,-17],[12,-37],[14,-10],[10,-4],[5,-17],[-4,-24],[32,-52],[70,-74],[53,-40],[37,-7],[26,11],[11,11],[9,0],[5,-25],[19,-20],[36,0],[17,-16],[0,-30],[19,-31],[57,-49],[134,-26],[48,-17],[6,-15],[-7,-14],[-20,-13],[21,-32],[61,-49],[51,-17],[39,15],[35,-2],[30,-18],[20,-24],[8,-30],[14,-12],[21,5],[10,-15],[-2,-35],[23,-28],[49,-20],[22,-34],[-3,-49],[27,-33],[56,-19],[34,-22],[13,-25],[42,5],[73,36],[56,11],[39,-11],[25,12],[9,36],[16,18],[33,-1]],[[56966,95259],[23,19],[25,44],[186,246],[97,98],[37,-9],[57,29],[79,65],[9,62],[-59,59],[-14,43],[32,25],[29,2],[25,-22],[48,63],[100,204]],[[57640,96187],[9,18],[54,59],[44,-2],[50,-49],[60,-17],[71,13],[33,-28],[-5,-69],[31,-49],[65,-31],[35,-42],[5,-56],[20,-34],[34,-11],[54,-73],[71,-136],[75,-72],[78,-11],[65,-32],[54,-54],[81,-15],[109,24],[24,9]],[[58749,95501],[8,28]],[[58757,95529],[67,25],[72,44],[54,53],[35,63],[45,46],[54,30],[41,59],[29,87],[10,65],[-8,41],[42,40],[92,38],[48,51],[3,64],[17,37],[46,18],[161,68],[70,92],[32,138],[37,61],[42,-17],[30,22],[18,60],[53,45],[87,29],[42,42],[-4,55],[16,87],[36,119],[70,158],[103,195],[156,108],[210,20],[120,1],[66,5],[74,-23],[56,-90],[43,-50],[77,-67]],[[36298,100326],[65,52],[27,40],[14,71],[-71,118],[7,96],[62,112],[-2,76],[-66,40],[-44,54],[-24,68],[-65,40],[-108,12],[-90,-10],[-73,-31],[-63,-13],[-54,7],[-99,29],[-32,32],[-17,47],[-54,52],[-93,57],[-72,84],[-51,112],[-13,102],[26,92],[-2,76],[-28,50],[6,17],[11,9],[21,-5],[29,-10],[50,21],[42,60],[8,118],[-23,175],[16,119],[57,63],[51,33],[45,3],[25,-12],[6,-26],[37,-23],[69,-21],[123,85],[176,191],[80,147],[-15,102],[28,111],[70,120],[33,89],[-5,57],[11,56],[27,55],[26,29],[25,4],[52,49],[78,93],[107,92],[135,89],[147,55],[159,20],[128,33],[95,44],[193,124],[290,206],[162,139],[35,73],[79,49],[183,40]],[[42182,94999],[50,114],[44,51],[55,26],[57,1],[59,-25],[38,-3],[15,17],[28,-1],[41,-20],[59,-6],[117,13],[449,12],[171,-5],[44,-21],[51,0],[59,18],[69,3],[79,-13],[60,-24],[41,-35],[66,4],[90,43],[49,9],[7,-25],[16,-2],[25,20],[40,5],[82,-18],[602,-30],[226,-41],[50,-64],[83,-45],[117,-27],[74,3],[32,32],[22,-4],[13,-38],[26,-26],[39,-14],[47,31],[55,76],[82,31],[109,-12],[102,6],[96,26],[74,32],[77,58]],[[53702,92645],[-2,-82],[10,-40],[23,-23],[30,3],[57,43],[42,117],[12,61],[-4,45],[19,37],[42,29],[35,44],[27,59],[38,55],[51,49],[53,23],[56,-4],[28,-15],[1,-26],[33,-50],[66,-75],[45,-15],[22,44],[20,21],[18,-1],[8,-13],[-1,-25],[20,-29],[43,-33],[54,-1],[65,29],[70,59],[113,133],[28,46],[4,51],[-12,71],[10,34],[31,-1],[36,24],[42,49],[23,10],[4,-28],[10,-13],[15,2],[13,18],[9,32],[39,-2],[70,-34],[62,36],[97,194],[27,68],[11,52],[-4,37],[13,36],[30,34],[10,30],[-12,24],[1,27],[13,31],[-14,29],[-42,28],[-14,26],[14,23],[-13,22],[-41,20],[-27,26],[-12,34],[8,43],[30,55],[9,40],[-12,28],[4,12],[20,-3],[33,29],[45,60],[40,79],[34,96],[90,74],[147,51],[89,44],[32,35],[32,-6],[34,-48],[41,-16],[73,24],[68,164],[22,16],[19,-13],[20,5],[16,14],[14,0],[16,-17],[22,-4],[31,18],[39,2],[75,-22]],[[56837,94899],[52,97]],[[56933,95197],[33,62]],[[45911,98348],[211,7],[34,34],[60,1],[97,-21],[81,-34],[64,-48],[37,-48],[9,-49],[69,-43],[129,-38],[78,-46],[27,-56],[58,-63],[90,-71],[74,-29],[60,12],[40,-4],[33,-31],[82,-77],[43,-75],[30,-99],[46,-59],[61,-18],[46,-40],[32,-61],[28,-33],[40,-6]],[[53098,79230],[-46,27],[-144,-20]],[[52908,79237],[-120,-19]],[[52908,79237],[27,-44],[22,-8],[41,15],[22,-12],[17,-31],[28,-78],[35,-56],[30,-29],[35,-31],[45,-25]]],"transform":{"scale":[0.001722553973357832,0.0011955933286541577],"translate":[15,-84.42872619690934]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285],[286],[287],[288],[289],[290],[291],[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],[461],[462],[463],[464],[465],[466],[467],[468],[469],[470],[471],[472],[473],[474],[475],[476],[477],[478],[479],[480],[481],[482],[483],[484],[485],[486],[487],[488],[489],[490],[491],[492],[493],[494],[495],[496],[497],[498],[499],[500],[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],[545],[546],[547],[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],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652],[653],[654],[655],[656],[657],[658],[659],[660],[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],[709],[710],[711],[712],[713],[714],[715],[716],[717],[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],[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],[792],[793],[794],[795],[796],[797],[798],[799],[800],[801],[802],[803],[804],[805],[806],[807],[808],[809],[810],[811],[812],[813],[814],[815],[816],[817],[818],[819],[820],[821],[822],[823],[824],[825],[826],[827],[828],[829],[830],[831],[832],[833],[834],[835],[836],[837],[838],[839],[840],[841],[842],[843],[844],[845],[846],[847,848],[849],[850],[851],[852],[853],[854],[855],[856],[857],[858],[859],[860],[861],[862],[863],[864],[865],[866],[867],[868],[869],[870],[871],[872],[873],[874],[875],[876],[877],[878,879],[880,881],[882,883],[884,885],[886],[887],[888],[889],[890],[891],[892],[893],[894],[895],[896],[897,898],[899],[900],[901],[902],[903],[904],[905],[906],[907],[908],[909],[910],[911],[912],[913],[914],[915],[916],[917],[918],[919],[920],[921],[922],[923],[924],[925],[926,927,928,929,930],[931]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[932,933,934,935,936,937,938]],"type":"Polygon","properties":{"ct":[66.03,33.84]},"id":"AFG"},{"arcs":[[43,939,940,41,941]],"type":"Polygon","properties":{"ct":[54.34,23.9]},"id":"ARE"},{"arcs":[[942,943,944,945,946]],"type":"Polygon","properties":{"ct":[44.93,40.29]},"id":"ARM"},{"arcs":[[[-947,947,926,948]],[[-944,949,950]]],"type":"MultiPolygon","properties":{"ct":[47.66,40.35]},"id":"AZE"},{"arcs":[[[951,32,952]],[[89]]],"type":"MultiPolygon","properties":{"ct":[90.26,23.98]},"id":"BGD"},{"arcs":[[90]],"type":"Polygon","properties":{"ct":[50.55,26.04]},"id":"BHR"},{"arcs":[[[91,953]],[[954,93]]],"type":"MultiPolygon","properties":{"ct":[114.63,4.5]},"id":"BRN"},{"arcs":[[955,956,957]],"type":"Polygon","properties":{"ct":[90.43,27.39]},"id":"BTN"},{"arcs":[[[-933,958,959,960,961,962,963,964,965,17,966,21,967,23,968,969,970,971,-958,972,973,974,975,976,977]],[[99]],[[100]]],"type":"MultiPolygon","properties":{"ct":[103.87,36.63]},"id":"CHN"},{"arcs":[[105]],"type":"Polygon","properties":{"ct":[33.21,35.05]},"id":"CYP"},{"arcs":[[-956,-972,978,979]],"type":"Polygon","properties":{"ct":[94.39,28.13]},"id":"XAP"},{"arcs":[[-968,22]],"type":"Polygon","properties":{"ct":[114.12,22.42]},"id":"HKG"},{"arcs":[[[980,95]],[[127]],[[128]],[[129,981,131,982]],[[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]],[[983,176]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]]],"type":"MultiPolygon","properties":{"ct":[114,-0.19]},"id":"IDN"},{"arcs":[[984,36,985,986,987,988,989]],"type":"Polygon","properties":{"ct":[43.76,33.05]},"id":"IRQ"},{"arcs":[[[-953,33,990,991,-975,992,-973,-957,-980,993]],[[196]],[[197]],[[198]],[[199]]],"type":"MultiPolygon","properties":{"ct":[79.35,22.34]},"id":"IND"},{"arcs":[[[-936,994,35,-985,995,-950,-943,-949,927,996]],[[200]]],"type":"MultiPolygon","properties":{"ct":[54.3,32.57]},"id":"IRN"},{"arcs":[[997,998,2,999,1000,1001,1002,1003,48]],"type":"Polygon","properties":{"ct":[34.97,31.37]},"id":"ISR"},{"arcs":[[-988,1004,47,-1004,1005,-1002,1006]],"type":"Polygon","properties":{"ct":[36.79,31.25]},"id":"JOR"},{"arcs":[[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]]],"type":"MultiPolygon","properties":{"ct":[138,36.67]},"id":"JPN"},{"arcs":[[-961,1007,1008,1009,929,1010]],"type":"Polygon","properties":{"ct":[67.3,48.17]},"id":"KAZ"},{"arcs":[[-960,1011,1012,-1008]],"type":"Polygon","properties":{"ct":[74.52,41.46]},"id":"KGZ"},{"arcs":[[1013,25,1014,1015]],"type":"Polygon","properties":{"ct":[104.93,12.71]},"id":"KHM"},{"arcs":[[[-986,37,1016]],[[213]]],"type":"MultiPolygon","properties":{"ct":[47.57,29.33]},"id":"KWT"},{"arcs":[[[1017,19]],[[228]]],"type":"MultiPolygon","properties":{"ct":[127.86,36.47]},"id":"KOR"},{"arcs":[[-970,1018,-1016,1019,1020]],"type":"Polygon","properties":{"ct":[103.76,18.51]},"id":"LAO"},{"arcs":[[-1000,3,1021]],"type":"Polygon","properties":{"ct":[35.9,33.92]},"id":"LBN"},{"arcs":[[229]],"type":"Polygon","properties":{"ct":[80.71,7.6]},"id":"LKA"},{"arcs":[[230]],"type":"Polygon","properties":{"ct":[113.56,22.14]},"id":"MAC"},{"arcs":[[[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]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[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]]],"type":"MultiPolygon","properties":{"ct":[73.54,4.21]},"id":"MDV"},{"arcs":[[[-952,-994,-979,-971,-1021,1022,31]],[[633]],[[634]]],"type":"MultiPolygon","properties":{"ct":[96.52,21.25]},"id":"MMR"},{"arcs":[[-963,1023]],"type":"Polygon","properties":{"ct":[103.07,46.84]},"id":"MNG"},{"arcs":[[-977,1024]],"type":"Polygon","properties":{"ct":[79.12,35.02]},"id":"XAC"},{"arcs":[[[-954,92,-955,94,-981,96]],[[27,1025,29,1026]]],"type":"MultiPolygon","properties":{"ct":[114.71,3.6]},"id":"MYS"},{"arcs":[[-974,-993]],"type":"Polygon","properties":{"ct":[83.94,28.26]},"id":"NPL"},{"arcs":[[[-940,44,1027,1028]],[[-942,42]]],"type":"MultiPolygon","properties":{"ct":[56.1,20.58]},"id":"OMN"},{"arcs":[[-935,1029,-991,34,-995]],"type":"Polygon","properties":{"ct":[68.81,29.38]},"id":"PAK"},{"arcs":[[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]]],"type":"MultiPolygon","properties":{"ct":[121.41,15.96]},"id":"PHL"},{"arcs":[[-941,-1029,1030,46,-1005,-987,-1017,38,1031,40]],"type":"Polygon","properties":{"ct":[44.55,24.13]},"id":"SAU"},{"arcs":[[-967,18,-1018,20]],"type":"Polygon","properties":{"ct":[127.17,40.14]},"id":"PRK"},{"arcs":[[-1032,39]],"type":"Polygon","properties":{"ct":[51.2,25.29]},"id":"QAT"},{"arcs":[[28,-1026]],"type":"Polygon","properties":{"ct":[103.78,1.38]},"id":"SGP"},{"arcs":[[794]],"type":"Polygon","properties":{"ct":[120.97,23.75]},"id":"TWN"},{"arcs":[[-989,-1007,-1001,-1022,4,1032]],"type":"Polygon","properties":{"ct":[38.5,35.02]},"id":"SYR"},{"arcs":[[-1015,26,-1027,30,-1023,-1020]],"type":"Polygon","properties":{"ct":[101.02,15.16]},"id":"THA"},{"arcs":[[-939,1033,-1012,-959]],"type":"Polygon","properties":{"ct":[71.01,38.52]},"id":"TJK"},{"arcs":[[-937,-997,928,-1010,1034]],"type":"Polygon","properties":{"ct":[59.39,39.12]},"id":"TKM"},{"arcs":[[[-983,132]],[[-982,130]]],"type":"MultiPolygon","properties":{"ct":[125.91,-8.81]},"id":"TLS"},{"arcs":[[[-945,-951,-996,-990,-1033,5,1035]],[[7,1036]]],"type":"MultiPolygon","properties":{"ct":[35.45,38.99]},"id":"TUR"},{"arcs":[[-938,-1035,-1009,-1013,-1034]],"type":"Polygon","properties":{"ct":[63.12,41.78]},"id":"UZB"},{"arcs":[[[-969,24,-1014,-1019]],[[809]]],"type":"MultiPolygon","properties":{"ct":[106.31,16.63]},"id":"VNM"},{"arcs":[[-934,-978,-1025,-976,-992,-1030]],"type":"Polygon","properties":{"ct":[75.8,34.54]},"id":"XJK"},{"arcs":[[[-1028,45,-1031]],[[840]]],"type":"MultiPolygon","properties":{"ct":[47.55,15.94]},"id":"YEM"},{"arcs":[[1037,1,-999]],"type":"Polygon","properties":{"ct":[34.38,31.41]},"id":"PSE"},{"arcs":[[-1003,-1006]],"type":"Polygon","properties":{"ct":[35.26,31.94]},"id":"PSE"},{"arcs":[[845]],"type":"Polygon","properties":{"ct":[72.44,-7.35]},"id":"MUS"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[1038]],"type":"Polygon"},{"arcs":[[1039]],"type":"Polygon"},{"arcs":[[1040]],"type":"Polygon"},{"arcs":[[1041]],"type":"Polygon"},{"arcs":[[1042]],"type":"Polygon"},{"arcs":[[964,1043]],"type":"Polygon"},{"arcs":[[1044]],"type":"Polygon"},{"arcs":[[1045]],"type":"Polygon"},{"arcs":[[1046]],"type":"Polygon"},{"arcs":[[1047]],"type":"Polygon"},{"arcs":[[1048]],"type":"Polygon"},{"arcs":[[1049]],"type":"Polygon"},{"arcs":[[1050]],"type":"Polygon"},{"arcs":[[1051]],"type":"Polygon"},{"arcs":[[1052]],"type":"Polygon"},{"arcs":[[1053]],"type":"Polygon"},{"arcs":[[1054]],"type":"Polygon"},{"arcs":[[1055]],"type":"Polygon"},{"arcs":[[1056]],"type":"Polygon"},{"arcs":[[1057]],"type":"Polygon"},{"arcs":[[1058]],"type":"Polygon"},{"arcs":[[1059]],"type":"Polygon"},{"arcs":[[1060]],"type":"Polygon"},{"arcs":[[1061]],"type":"Polygon"},{"arcs":[[1062]],"type":"Polygon"},{"arcs":[[1063]],"type":"Polygon"},{"arcs":[[1064]],"type":"Polygon"},{"arcs":[[1065]],"type":"Polygon"},{"arcs":[[1066]],"type":"Polygon"},{"arcs":[[1067]],"type":"Polygon"},{"arcs":[[1068]],"type":"Polygon"},{"arcs":[[1069]],"type":"Polygon"},{"arcs":[[1070]],"type":"Polygon"},{"arcs":[[1071]],"type":"Polygon"},{"arcs":[[1072]],"type":"Polygon"},{"arcs":[[1073]],"type":"Polygon"},{"arcs":[[1074]],"type":"Polygon"},{"arcs":[[1075]],"type":"Polygon"},{"arcs":[[1076]],"type":"Polygon"},{"arcs":[[1077]],"type":"Polygon"},{"arcs":[[1078]],"type":"Polygon"},{"arcs":[[1079]],"type":"Polygon"},{"arcs":[[1080]],"type":"Polygon"},{"arcs":[[1081]],"type":"Polygon"},{"arcs":[[1082]],"type":"Polygon"},{"arcs":[[1083]],"type":"Polygon"},{"arcs":[[1084]],"type":"Polygon"},{"arcs":[[1085]],"type":"Polygon"},{"arcs":[[1086]],"type":"Polygon"},{"arcs":[[1087]],"type":"Polygon"},{"arcs":[[1088]],"type":"Polygon"},{"arcs":[[1089]],"type":"Polygon"},{"arcs":[[1090]],"type":"Polygon"},{"arcs":[[1091]],"type":"Polygon"},{"arcs":[[1092]],"type":"Polygon"},{"arcs":[[1093]],"type":"Polygon"},{"arcs":[[1094]],"type":"Polygon"},{"arcs":[[1095]],"type":"Polygon"},{"arcs":[[1096]],"type":"Polygon"},{"arcs":[[1097]],"type":"Polygon"},{"arcs":[[1039]],"type":"Polygon"},{"arcs":[[1098]],"type":"Polygon"},{"arcs":[[1099]],"type":"Polygon"},{"arcs":[[1100]],"type":"Polygon"},{"arcs":[[1101]],"type":"Polygon"},{"arcs":[[1102]],"type":"Polygon"},{"arcs":[[1103]],"type":"Polygon"},{"arcs":[[1104]],"type":"Polygon"},{"arcs":[[1105]],"type":"Polygon"},{"arcs":[[1106]],"type":"Polygon"},{"arcs":[[1107]],"type":"Polygon"},{"arcs":[[1108]],"type":"Polygon"},{"arcs":[[1109]],"type":"Polygon"},{"arcs":[[1110]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[43,44,45,46,47,48,997,1037,1,2,3,4,5,1035,945,947,926,927,928,929,1010,961,1023,963,964,965,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]],[[89]],[[90]],[[91,92,93,94,95,96]],[[99]],[[100]],[[105]],[[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]],[[983,176]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[228]],[[229]],[[230]],[[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]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[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]],[[633]],[[634]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[794]],[[7,1036]],[[809]],[[840]],[[845]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[1111,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,1112,-883,-886,1113,-879,-882,1114,-848],[-79],[-851],[-71],[-852],[-81],[-78],[-853],[-850],[-80],[-662],[-661],[-843],[-75],[-844],[-74],[-62],[-66],[-67],[-68],[-69],[-70],[-127],[-65],[-64],[-72],[-63],[-73],[-809],[-808],[-807],[-798],[-804],[-76],[-805],[-803],[-104],[-103],[-102],[-806],[-232],[-675],[-258],[-256],[-242],[-243],[-241],[-238],[-248],[-245],[-846],[-845],[-644],[-799],[-801],[-802],[-643],[-800],[-266],[-274],[-280],[-270],[-278],[-277],[-269],[-264],[-276],[-272],[-271],[-273],[-263],[-279],[-275],[-261],[-262],[-260],[-259],[-257],[-253],[-249],[-250],[-247],[-251],[-252],[-267],[-246],[-255],[-268],[-254],[-265],[-162],[-173],[-160],[-149],[-196],[-187],[-234],[-235],[-236],[-237],[-164],[-163],[-239],[-174],[-240],[-244],[-175],[-167],[-181],[-191],[-180],[-185],[-172],[-188],[-97,-96,-95,-94,-93,-92],[-189],[-183],[-186],[-184],[-179],[-182],[-170],[-134],[-138],[-143],[-157],[-145],[-147],[-142],[-151],[-165],[-152],[-148],[-159],[-161],[-168],[-166],[-171],[-137],[-135],[-128],[-139],[-136],[-140],[-129],[-141],[-87],[-156],[-146],[-154],[-153],[-158],[-155],[-150],[-651],[-647],[-663],[-646],[-648],[-842],[-77],[-99],[-98],[-84],[-83],[-82],[-105],[-89],[-88],[-133,-132,-131,-130],[-812],[-813],[-814],[-815],[-659],[-658],[-657],[-656],[-655],[-654],[-653],[-652],[-660],[-645],[-649],[-650],[-874],[-876],[-868],[-861],[-862],[-864],[-863],[-865],[-866],[-860],[-857],[-856],[-859],[-858],[-854],[-855],[-742],[-837],[-838],[-839],[-840],[-794],[-792],[-867],[-869],[-870],[-871],[-872],[-878],[-873],[-877],[-875],[-751],[-750],[-749],[-752],[-753],[-755],[-761],[-747],[-746],[-745],[-767],[-743],[-739],[-744],[-748],[-738],[-834],[-835],[-740],[-836],[-741],[-762],[-763],[-764],[-766],[-754],[-737],[-756],[-757],[-758],[-759],[-760],[-819],[-820],[-821],[-822],[-825],[-824],[-823],[-828],[-826],[-827],[-831],[-829],[-830],[-811],[-832],[-833],[-777],[-774],[-770],[-772],[-771],[-705],[-765],[-701],[-702],[-704],[-816],[-703],[-817],[-86],[-85],[-818],[-176],[-169],[-707],[-706],[-708],[-709],[-144],[-710],[-791],[-178,-177],[-790],[-789],[-787],[-788],[-776],[-779],[-781],[-773],[-769],[-775],[-793],[-768],[-786],[-778],[-784],[-780],[-782],[-783],[-674],[-785],[-711],[-712],[-469],[-467],[-464],[-472],[-463],[-474],[-220],[-219],[-221],[-224],[-223],[-222],[-215],[-216],[-217],[-218],[-455],[-457],[-459],[-462],[-465],[-466],[-468],[-470],[-476],[-475],[-473],[-458],[-453],[-456],[-461],[-471],[-444],[-446],[-115],[-113],[-443],[-114],[-225],[-226],[-227],[-228],[-460],[-445],[-450],[-454],[-452],[-451],[-527],[-493],[-497],[-498],[-499],[-492],[-525],[-522],[-491],[-501],[-517],[-509],[-504],[-448],[-449],[-447],[-549],[-548],[-530],[-518],[-554],[-547],[-546],[-545],[-544],[-543],[-542],[-541],[-561],[-539],[-538],[-521],[-622],[-623],[-625],[-540],[-624],[-553],[-550],[-536],[-535],[-534],[-532],[-533],[-556],[-555],[-557],[-558],[-599],[-600],[-602],[-603],[-604],[-601],[-613],[-614],[-615],[-616],[-620],[-619],[-589],[-588],[-584],[-621],[-591],[-593],[-592],[-590],[-571],[-568],[-611],[-605],[-606],[-607],[-608],[-609],[-610],[-612],[-617],[-618],[-587],[-577],[-579],[-580],[-581],[-583],[-576],[-582],[-595],[-586],[-597],[-578],[-585],[-596],[-594],[-598],[-562],[-563],[-537],[-551],[-552],[-559],[-564],[-565],[-566],[-572],[-574],[-573],[-575],[-570],[-569],[-567],[-512],[-515],[-516],[-519],[-520],[-523],[-514],[-524],[-510],[-531],[-526],[-560],[-513],[-528],[-529],[-511],[-506],[-503],[-505],[-502],[-482],[-442],[-487],[-490],[-484],[-488],[-495],[-508],[-507],[-496],[-494],[-486],[-632],[-631],[-630],[-629],[-628],[-627],[-626],[-485],[-500],[-478],[-479],[-480],[-481],[-483],[-477],[-489],[-696],[-192],[-195],[-116],[-117],[-118],[-119],[-642],[-112],[-639],[-638],[-637],[-636],[-641],[-640],[-633],[-677],[-678],[-683],[-681],[-682],[-679],[-686],[-685],[-680],[-700],[-699],[-698],[-697],[-689],[-695],[-684],[-688],[-691],[-690],[-198],[-810],[-197],[-100],[-199],[-200],[-687],[-231],[-635],[-634],[-193],[-190],[-194],[-229],[-101],[-212],[-211],[-210],[-209],[-795],[-208],[-207],[-206],[-205],[-90],[-694],[-693],[-676],[-692],[-891],[-892],[-213],[-887],[-888],[-925],[-889],[-890],[-926],[-847],[-204],[-441],[-201],[-841],[-214],[-91],[-296],[-290],[-289],[-286],[-288],[-291],[-284],[-287],[-281],[-283],[-282],[-285],[-230],[-438],[-439],[-440],[-335],[-329],[-312],[-323],[-315],[-318],[-317],[-319],[-324],[-311],[-310],[-305],[-301],[-302],[-304],[-297],[-352],[-351],[-427],[-348],[-345],[-429],[-437],[-434],[-433],[-233],[-347],[-341],[-340],[-339],[-338],[-337],[-390],[-388],[-392],[-393],[-403],[-395],[-396],[-397],[-401],[-399],[-400],[-407],[-402],[-406],[-405],[-409],[-360],[-373],[-376],[-370],[-369],[-379],[-378],[-381],[-382],[-377],[-375],[-385],[-386],[-387],[-374],[-372],[-371],[-368],[-367],[-361],[-362],[-363],[-364],[-365],[-366],[-357],[-359],[-353],[-354],[-358],[-356],[-355],[-413],[-414],[-415],[-410],[-419],[-408],[-404],[-411],[-412],[-398],[-394],[-391],[-389],[-384],[-380],[-383],[-436],[-426],[-428],[-423],[-435],[-432],[-431],[-424],[-425],[-420],[-430],[-421],[-422],[-417],[-418],[-416],[-325],[-327],[-326],[-331],[-332],[-330],[-333],[-328],[-334],[-336],[-344],[-343],[-346],[-342],[-349],[-350],[-295],[-294],[-303],[-300],[-298],[-299],[-308],[-309],[-307],[-306],[-322],[-313],[-316],[-314],[-321],[-320],[-109],[-293],[-292]],[[1115,-202,-203,1116,-10,1117,-9,-8,-7,-6,-5,-4,-3,-2,-1],[-123],[-106],[-126],[-125],[-124],[-122],[-121],[-120]],[[1118,-107,-108,1119,-11],[-56],[-54],[-53],[-796],[-797],[-61],[-60],[-110],[-111],[-59],[-58],[-57],[-52],[-51],[-55]],[[1120,-12]],[[1121,-13]],[[1122,-664,-665,1123,-667,-668,1124,-713,-717,1125,-898,1126,-14],[-908],[-910],[-906],[-895],[-905],[-919],[-922],[-911],[-917],[-924],[-915],[-902],[-904],[-901],[-893],[-914],[-913],[-912],[-923],[-907],[-909],[-722],[-723],[-731],[-673],[-724],[-729],[-728],[-672],[-896],[-897],[-920],[-894],[-903],[-918],[-921],[-916],[-730],[-734],[-725],[-736],[-735],[-732],[-733],[-726],[-721],[-727],[-718],[-719],[-720],[-669],[-670],[-671],[-666]],[[1127,-714]],[[1128,-715]],[[1129,-716]],[[-932]],[[-931,-930,-929,-928,-927]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[1130]},{"type":"LineString","arcs":[1131]},{"type":"LineString","arcs":[1132]},{"type":"LineString","arcs":[1133]},{"type":"LineString","arcs":[1134]},{"type":"MultiLineString","arcs":[[1135],[1136]]},{"type":"LineString","arcs":[1137]},{"type":"MultiLineString","arcs":[[1138],[1139]]},{"type":"LineString","arcs":[1140]},{"type":"LineString","arcs":[1141]},{"type":"LineString","arcs":[1142]},{"type":"LineString","arcs":[1143]},{"type":"MultiLineString","arcs":[[1144],[1145]]},{"type":"MultiLineString","arcs":[[1146],[1147],[1148]]},{"type":"MultiLineString","arcs":[[1149],[1150]]},{"type":"MultiLineString","arcs":[[1151],[1152]]},{"type":"LineString","arcs":[1153]},{"type":"MultiLineString","arcs":[[1154],[1155],[1156],[1157,1158],[1159],[1160],[1161],[1162],[1163],[1164],[1165]]},{"type":"MultiLineString","arcs":[[1166],[1167],[1168],[1169],[1170],[1171],[1172],[1173],[1174],[1175],[1176],[1177]]},{"type":"LineString","arcs":[1178,1179,1180,1181,1182]},{"type":"LineString","arcs":[1183]},{"type":"MultiLineString","arcs":[[1184,1185],[1186],[1187]]},{"type":"LineString","arcs":[1188,1189]},{"type":"MultiLineString","arcs":[[1190,1191],[1192]]},{"type":"LineString","arcs":[1193]},{"type":"LineString","arcs":[1194]},{"type":"MultiLineString","arcs":[[1195],[1196],[1197],[1198]]},{"type":"LineString","arcs":[1199]},{"type":"MultiLineString","arcs":[[1200],[1201]]},{"type":"LineString","arcs":[1202]},{"type":"MultiLineString","arcs":[[1203,1204,1205],[1206]]},{"type":"MultiLineString","arcs":[[1207],[1208]]},{"type":"LineString","arcs":[1209]},{"type":"MultiLineString","arcs":[[1210],[1211],[1212],[1213],[1214],[1215],[1216],[1217],[1218],[1219],[1220],[1221]]},{"type":"LineString","arcs":[1222]},{"type":"MultiLineString","arcs":[[1223],[1224],[1225]]},{"type":"LineString","arcs":[1226]},{"type":"MultiLineString","arcs":[[1227],[1228]]},{"type":"MultiLineString","arcs":[[1229],[1230],[1231],[1232],[1233],[1234],[1235],[1236],[1237],[1238],[1239],[1240],[1241]]},{"type":"LineString","arcs":[1242]},{"type":"LineString","arcs":[1243]},{"type":"LineString","arcs":[1244]},{"type":"MultiLineString","arcs":[[1245],[1246],[1247]]},{"type":"LineString","arcs":[1248]},{"type":"LineString","arcs":[1249]},{"type":"LineString","arcs":[1250]},{"type":"MultiLineString","arcs":[[1251],[1252],[1253,1254]]},{"type":"MultiLineString","arcs":[[1255,1256],[1257],[1258],[1259]]},{"type":"LineString","arcs":[1260]},{"type":"MultiLineString","arcs":[[1261],[1262]]},{"type":"MultiLineString","arcs":[[1263],[1264],[1265]]},{"type":"LineString","arcs":[1266]},{"type":"LineString","arcs":[1267]},{"type":"LineString","arcs":[1268]},{"type":"MultiLineString","arcs":[[1269],[1270]]},{"type":"LineString","arcs":[1271]},{"type":"LineString","arcs":[1272]},{"type":"MultiLineString","arcs":[[1273],[1274]]},{"type":"LineString","arcs":[1275]},{"type":"LineString","arcs":[1276]},{"type":"MultiLineString","arcs":[[1277],[1278,1279],[1280],[1281],[1282],[1283]]},{"type":"LineString","arcs":[1284]},{"type":"LineString","arcs":[1285]},{"type":"LineString","arcs":[1286]},{"type":"MultiLineString","arcs":[[1287],[1288,1289]]},{"type":"LineString","arcs":[1290]},{"type":"LineString","arcs":[1291]},{"type":"LineString","arcs":[1292]},{"type":"LineString","arcs":[1293]},{"type":"LineString","arcs":[1294]},{"type":"LineString","arcs":[1295]},{"type":"LineString","arcs":[1296]},{"type":"LineString","arcs":[1297]},{"type":"LineString","arcs":[1298]},{"type":"LineString","arcs":[1299]},{"type":"MultiLineString","arcs":[[1300],[1301]]},{"type":"MultiLineString","arcs":[[1302],[1303]]},{"type":"MultiLineString","arcs":[[1304],[1305],[1306]]},{"type":"MultiLineString","arcs":[[1307],[1308],[1309]]},{"type":"LineString","arcs":[1310,1311]},{"type":"LineString","arcs":[1312]},{"type":"LineString","arcs":[1313,1314,1315]},{"type":"MultiLineString","arcs":[[1316],[1317]]},{"type":"LineString","arcs":[1318]},{"type":"LineString","arcs":[1319]},{"type":"MultiLineString","arcs":[[1320],[1321],[1322]]},{"type":"LineString","arcs":[1323]},{"type":"MultiLineString","arcs":[[1324],[1325],[1326],[1327],[1328],[1329]]},{"type":"LineString","arcs":[1330]},{"type":"LineString","arcs":[1331]},{"type":"LineString","arcs":[1332]},{"type":"MultiLineString","arcs":[[1333,1334],[1335],[1336]]},{"type":"LineString","arcs":[1337]},{"type":"LineString","arcs":[1338]},{"type":"MultiLineString","arcs":[[1339],[1340],[1341]]},{"type":"LineString","arcs":[1342]},{"type":"MultiLineString","arcs":[[1343],[1344],[1345]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/europe_110m.json b/topojson/dist/europe_110m.json new file mode 100644 index 00000000000..81fdcbb0d55 --- /dev/null +++ b/topojson/dist/europe_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5865,10817],[-51,-62],[56,-13],[27,15],[-7,39],[27,17]],[[5917,10813],[-52,4]],[[5865,10817],[15,53],[-4,102]],[[5876,10972],[-10,51],[9,93],[41,66],[1,29],[30,51],[105,38],[74,-123],[37,-27],[42,6],[54,46],[-5,124]],[[6254,11326],[15,49],[-22,46],[-26,-20],[-34,19],[-25,41],[2,33],[-17,57],[11,27],[113,56],[103,7],[34,25],[47,-3],[121,-31],[75,-9],[35,-19]],[[6686,11604],[-7,34],[20,46],[128,53],[95,-23],[11,22],[-35,27],[-48,14],[-58,0],[-32,27],[2,78],[-61,-34],[-12,37]],[[6689,11885],[-61,-47],[-58,8],[-125,-29],[-38,-1],[-120,-50],[-144,-37],[-46,7],[6,69],[-52,-20],[-9,37],[-107,29],[-32,87],[28,48],[10,72],[-21,59],[-8,70],[-29,80],[34,38],[31,65],[39,-3],[39,20],[15,53],[102,69],[145,178],[89,23],[-8,94],[-35,37],[-103,39]],[[6231,12880],[-110,-3],[-95,12],[-13,-43],[-91,-53],[11,-38],[-46,-70],[18,-46],[32,-30],[-35,-28],[-83,-97],[-92,-49],[-38,-4],[-37,-48],[-46,-2],[-143,-195],[-7,-107],[-38,-31],[14,-56],[2,-115],[59,-32],[32,3],[63,-84],[30,-3],[14,-40],[-25,-46],[-46,-39],[-42,-5],[55,-53],[-46,-23],[-43,11],[-21,-55],[-86,-42],[6,-96],[-29,-42],[3,-110],[-28,-134],[-29,-65],[-32,-34],[-90,0],[-61,-23],[-24,-28],[-7,-37],[18,-29],[-20,-34],[-55,10],[-47,-17],[-48,11],[-4,90],[-25,77],[28,34],[-8,45],[-63,81],[-15,54],[-39,80],[8,113],[-49,4],[-21,18],[-10,95],[5,30]],[[4742,11562],[-44,16],[-33,101],[-35,-22],[18,-26],[-4,-49],[-25,-32],[-59,18],[-41,-73],[-103,-99],[-84,-43],[-94,13],[-4,31],[-43,5],[-88,58],[-16,32],[76,103],[-37,46],[-61,-30],[-11,33],[84,54],[-2,34],[-65,42],[-11,55],[51,7],[4,42],[-42,6],[-35,48],[25,18],[-36,43],[24,13],[-17,80],[53,32],[-32,35],[84,25],[86,44],[12,38],[70,-12],[1,32],[-52,-6],[-3,42],[116,7],[89,44],[-4,27],[83,34],[30,26],[28,-35],[106,-4],[5,47],[67,22],[-65,22],[3,-32],[-95,-48],[-34,25],[-28,7],[7,33],[36,14],[12,31],[68,76],[49,23],[21,-44],[53,48],[-3,55],[60,68],[29,60],[23,78],[69,60],[-14,36],[19,56],[42,23],[12,31],[53,6],[48,89],[65,27],[-33,30],[75,64],[50,22],[69,89],[98,49],[21,40],[33,10],[17,16],[8,42],[90,32],[24,27],[83,6],[62,22],[-22,-85],[49,16],[-7,47],[69,31],[90,11],[-91,44],[113,15],[143,-63],[-13,56],[87,50],[48,45],[10,36],[153,-15],[-96,-67],[-11,-54],[33,-26],[47,71],[99,91],[27,-21],[-27,-85],[49,19],[19,39],[41,26],[-26,42],[57,9],[96,-19],[-62,-63],[47,-22],[38,60],[66,-25],[75,-3],[113,-53],[13,-29],[-154,-42],[-21,-73],[60,5],[33,23],[54,-11]],[[6999,13657],[78,-24],[105,38],[77,-23],[-27,-35],[116,-52],[59,-2],[91,-22],[16,12],[116,-32],[154,-75],[93,-70],[59,-19],[77,-42],[34,5],[74,-56],[46,-13],[14,-77],[30,-40],[-18,-55],[-95,-85],[-45,-26],[-159,-38],[-84,5],[-115,38],[-161,23],[-47,26],[-143,45],[-44,-3],[-68,45],[-18,-43],[21,-43],[84,-13],[1,-32],[110,-49],[24,-89],[-48,-42],[49,-78],[2,-93],[60,-40],[35,15],[68,-53],[10,-25],[131,-38],[72,40],[-4,66],[-23,20],[-58,-17],[-87,74],[-16,40],[46,43],[85,-18],[56,-40],[13,-26],[85,4],[74,-38],[111,-3],[16,28],[-40,63],[-68,68],[8,49],[145,83],[51,19],[83,79],[46,-22],[64,2],[49,-24],[52,-48],[50,122],[-1,51],[-36,39],[-46,13],[44,108],[8,104],[-95,60],[271,-23],[79,-62],[28,-66],[-146,-18],[-50,-47],[-7,-30],[41,-20],[89,-78],[58,-1],[118,17],[20,21],[16,93],[18,27],[95,10],[-7,33],[83,18],[150,81],[142,36],[29,-45],[52,33],[-36,22],[104,58],[66,-18],[-23,-108],[45,-26],[93,32],[50,53],[135,14],[89,-17],[59,50],[124,38],[48,-3],[-24,-109],[47,-14],[45,16],[10,27]],[[10356,4966],[-38,3],[-86,22],[-74,14],[-108,41],[-24,90],[-6,77],[-19,69],[-24,31],[-51,4],[-71,-37],[-31,-44],[-69,-50],[-47,27],[-53,16],[-49,29],[-51,48],[-49,56],[-20,47],[-43,37],[-42,-1],[-42,33],[-55,221],[-25,68],[-56,105],[-32,34],[-41,-27],[-31,30],[-6,57],[-31,-15],[-4,-79],[-24,-15],[-23,9],[-61,5],[8,-36],[-10,-92],[20,-26],[37,-133],[43,-153],[44,-61],[19,-54],[31,-22],[44,-59],[3,-45],[19,-22],[4,-37],[-11,-33],[1,-61],[45,-92],[4,-43],[28,-60],[6,10],[-11,67],[-1,71],[21,22],[6,69],[30,38],[39,-48],[-13,-76],[17,-55],[-1,-37],[-21,-76],[-16,-32],[10,-41],[23,-9],[16,-4],[13,-47],[29,-7],[67,35],[78,-5],[28,-12],[33,3],[63,44],[36,98],[142,203],[13,45],[14,38],[26,-4],[-8,-78],[-11,-39],[10,-21],[2,-106],[26,-92],[39,-76],[24,-33],[80,-45],[83,-19],[19,-22],[75,-163],[17,-24],[31,-6],[1,-59],[-45,-128],[-43,-60],[-24,-44],[-37,-122],[-35,-5],[-15,33],[-28,-86],[-15,-105],[8,-81],[-24,-45],[-61,-15],[-27,-22],[-20,-41],[-9,-76],[-22,-42],[-72,-7],[-35,-16],[-14,-36],[-5,-77],[-21,-38],[-33,-20],[-32,17],[-55,-9],[-107,-66],[-68,-39],[-17,-17],[-19,-45],[-14,-110],[-56,-47],[-43,-28],[-149,-68],[-63,-38],[-34,-28],[-29,-67],[-17,-24],[-44,-9],[-38,10],[-88,-88],[-57,-31],[-77,-4],[-43,-13],[-76,-101],[-87,-40],[-39,0],[-40,20],[-36,93],[-9,143],[-16,72],[-11,118],[-18,55],[-1,49],[6,130],[-6,59],[-6,54],[-28,72],[-19,66],[-54,85],[-41,92],[-21,57],[-22,102],[-36,114],[-33,58],[-46,56],[-19,-1],[-38,55],[-15,42],[-20,33],[-23,72],[4,45],[-14,104],[6,97],[-19,81],[-15,36],[-42,130],[-19,26],[-57,57],[-38,50],[-19,74],[0,43],[-22,68],[-87,206],[-75,169],[-30,84],[-25,53],[-19,11],[-43,-4],[-3,15],[19,93],[20,140],[2,36],[-9,-10],[-18,-36],[-29,-162],[-7,-96],[-25,-43],[-46,43],[-51,85],[-20,76],[-31,77],[-41,150],[-11,-7],[-16,-68],[36,-100],[10,-51],[53,-118],[43,-83],[3,-53],[24,-48],[17,-83],[-2,-35],[86,-235],[60,-200],[33,-62],[5,-35],[-4,-83],[14,-74],[7,-39],[18,-37],[58,-59],[63,-77],[-1,-10],[3,-77],[23,-78],[7,-77],[3,-155],[9,-101],[16,-124],[11,-31],[19,0],[34,-38],[31,-60],[37,-44],[43,-124],[24,-148],[15,-126],[50,-148],[11,45],[23,-12],[17,-75],[16,-19],[14,15],[33,-17],[11,-36],[45,-19],[39,-84],[28,-52],[54,-73],[29,-71],[31,-59],[26,-8],[16,-25],[27,-64],[7,-51],[-5,-27],[-69,-48],[-30,-33],[11,-20],[21,22],[42,2],[12,-25],[20,-19],[30,-83],[27,-46],[41,-54],[31,-10],[52,13],[80,71],[53,-6],[33,-19],[25,13],[51,52],[51,31],[19,-15],[45,6],[20,17],[63,10],[14,-5],[50,18],[79,35],[41,32],[15,43],[23,15],[58,-25],[-21,-128],[9,-150],[-31,-58],[-9,-124],[-78,-245],[-37,-86],[-29,-101],[-35,-92],[-17,-64],[-3,-40],[-14,-53],[-34,-97],[-59,-142],[-21,-61],[-131,-242],[-93,-154],[-17,-22],[-139,-137],[-131,-187],[-74,-134]],[[4529,0],[4,44],[17,13],[-27,44],[20,28],[13,69],[8,10],[-29,8],[-2,27],[23,65],[22,87],[4,65],[0,41],[12,85],[-22,95],[-9,72],[-19,25],[-32,2],[-26,22],[-17,99],[-16,-23],[-21,2],[1,47],[-47,-38],[-121,-21],[-41,-19],[-71,-13],[-26,21],[-32,53],[-26,99],[-1,46],[-55,122],[-45,61],[-73,21],[-131,-11],[-65,-9],[-59,-19],[-50,-24],[-24,-41],[-46,-24],[-62,-20],[-94,-84],[-77,-36],[-72,-63],[-33,37],[-87,31],[-108,30],[-239,-48],[2,-6],[-142,-106],[-22,-12],[-23,2],[-74,53],[-99,93],[-24,33],[-72,120],[-150,173],[-15,27],[-7,14],[-98,85],[-7,36],[-29,20],[-40,101],[-25,37],[20,40],[-22,81],[-1,42],[-35,61],[-8,72],[-40,36],[-17,-7],[-54,76],[13,68],[-24,-19],[-20,65],[-28,5],[-28,26],[-10,23],[11,50],[-21,53],[-71,11],[-16,22],[2,27],[-45,34],[-6,40],[2,103],[-7,52],[28,52],[-2,48],[-78,169],[74,178],[10,39],[2,47],[0,37],[8,74],[39,163],[8,94],[-2,101],[-14,85],[-34,104],[21,63],[4,106],[-28,87],[-21,-7],[-27,92],[-16,-76],[-5,17],[15,180],[17,73],[15,27],[22,7],[64,234],[12,68],[66,105],[26,27],[17,36],[6,40],[2,76],[48,185],[51,43],[44,48],[47,183],[21,41],[103,40],[53,35],[92,117],[37,34],[34,57],[49,108],[21,96],[-26,51],[-1,100],[3,59],[16,49],[33,61],[37,140],[65,106],[128,88],[41,33],[34,55],[42,113],[46,181],[14,28],[54,22],[18,-72],[62,-67],[43,-7],[44,14],[38,-2],[74,18],[6,-34],[29,-11],[24,8],[26,-9],[50,7],[58,47],[21,52],[35,27],[55,16],[25,-11],[34,61],[89,69],[42,17],[123,12],[151,52],[30,6],[94,-4],[32,-27],[50,-12],[85,57],[37,8],[36,-21],[29,1],[39,26],[33,-31],[33,-2],[68,13],[68,54],[58,25],[52,-26],[11,-83],[29,-6],[43,53],[19,3],[4,-40],[-28,-54],[-36,-35],[-8,-65],[19,-45],[33,-31],[22,-81],[-25,-75],[-41,-66],[-50,-43],[-11,-28],[11,-54],[26,-36],[48,-46],[34,28],[16,-80],[43,-8],[90,-67],[45,-6],[76,18],[72,-31],[41,-29],[81,-33],[30,-64],[4,-37],[17,-57],[32,-47],[40,-22],[75,-10],[62,-23],[91,-56],[63,-76],[41,-27],[25,2],[42,28],[30,43],[32,80],[-1,37],[-16,35],[-10,77],[2,27],[24,55],[58,70],[46,34],[84,31],[44,-2],[110,-61],[-2,-55],[15,-19],[85,-30],[13,-10],[71,1],[38,-22],[13,-51],[2,-21],[39,-5],[67,16],[137,-45],[43,-37],[28,-13],[73,-12],[62,-45],[49,24],[67,70],[40,33],[14,-15],[47,11],[19,15],[84,-5],[-7,-42],[28,-40],[53,7],[27,-17],[27,11],[90,8],[54,39],[32,53],[32,98],[36,160],[2,35],[42,132],[20,86],[30,51],[9,32],[-22,171],[5,67],[10,16],[7,17],[-23,60],[48,56],[0,36],[-22,27],[-33,-33],[-19,-38],[-31,2],[-56,44],[-16,1],[-47,-49],[-34,-58],[-135,-46],[-30,14],[-26,27],[-33,60],[-72,47],[-80,20],[-32,-123],[-24,12],[-62,-32],[-34,16],[-29,29],[-4,58],[-24,3],[-69,31],[-92,-38],[0,19],[36,8],[62,49],[-114,-9],[26,24],[7,29],[-33,16],[-14,43],[-1,82],[-43,32],[-36,3],[20,34],[32,21],[-27,41],[34,54],[-22,21],[-8,63],[20,40],[-92,-23],[-9,4],[18,104],[55,71],[66,19],[31,-33],[26,2],[29,27],[119,-16],[-31,34],[31,21],[57,9],[-50,46],[-4,41],[44,12],[165,-24],[43,6],[36,52],[106,83],[69,29],[52,10],[126,-10],[53,-11],[41,-47],[35,5],[40,-33],[32,-49],[24,18],[48,-18],[48,-35],[107,-32],[118,36],[91,-35],[106,65],[51,53]],[[8233,8125],[14,27],[4,85],[-21,86],[-27,50],[-48,55],[-59,18],[-14,31],[-26,13]],[[8056,8490],[-89,116],[-53,59],[-122,72],[-102,91],[-13,47],[30,8],[42,-13],[21,10],[19,63],[24,42],[29,18],[16,50],[-44,29],[-20,53],[72,-5],[64,59],[45,21],[-8,37],[-32,2],[-16,-18],[-68,-10]],[[7851,9221],[-66,-6],[-102,-65],[-114,-30],[-51,-51],[-13,21],[-45,-47],[17,-88],[33,-62],[30,-32],[70,35],[52,-4],[-15,-66],[-25,-13],[-98,-1],[-50,-37],[-54,-23],[-18,-33],[-41,-31],[-28,0],[-29,23],[16,78],[-14,48],[-61,37],[-36,-6],[-11,28],[75,59],[64,32],[-14,30],[-51,19],[-75,-19],[-75,42],[-17,39],[65,13],[-46,28],[-88,-14],[-38,-14],[-8,-36],[-58,-96],[-54,-53],[-10,-80]],[[6868,8846],[-27,-76],[-42,-13],[-44,-74],[-8,-30],[-7,-94]],[[6740,8559],[2,-34],[-21,-34],[-29,4],[-24,-46],[-6,-62],[-41,-58],[57,-114]],[[6678,8215],[-7,-29],[14,-39],[28,-32],[80,-42],[0,-39],[-41,-18],[-62,21],[-72,-18],[-44,-72],[-51,-32],[-60,-77],[12,58],[37,29],[-4,22],[-51,-3],[-9,26]],[[6448,7970],[-14,25],[-47,4],[-42,27],[-98,-39],[-52,-5],[-15,-22],[24,-60],[-13,-33],[-45,16],[-31,1],[-30,69],[-30,-30],[-8,-66],[5,-25],[79,-140],[-40,11],[-9,-40],[24,-23],[-34,-32],[38,-48],[82,-59],[28,-36],[3,-77],[-16,-15],[-40,69],[-64,-21],[14,-60],[32,-22],[-28,-38],[-8,28],[-40,27],[-4,-27],[18,-54],[35,-141],[-43,46],[-54,1],[-27,65],[-51,-26],[-2,71],[-34,78],[-21,32],[6,29],[28,42],[31,20],[40,-4],[78,-52],[41,14],[-13,29],[-71,29],[-81,-3],[-67,16],[-27,61],[3,55],[-22,-3],[-41,55],[-23,68],[-18,10]],[[5754,7767],[0,36],[-18,34],[-44,33],[-13,41],[12,141],[15,99],[0,31],[-25,6]],[[5681,8188],[-15,13],[-63,117],[-19,-17]],[[5584,8301],[-101,92]],[[5483,8393],[-8,10]],[[5475,8403],[-88,91],[-39,19],[-41,-6],[-22,18],[-9,44],[-43,26],[-38,54],[20,20],[-49,78],[-10,83],[-56,45],[-18,-66],[-32,-40],[-32,63],[-3,68]],[[5015,8900],[16,22]],[[5031,8922],[-21,39],[-37,-5],[-21,-27],[-38,-21],[-49,-10],[-7,-49],[13,-25],[4,-57],[-15,-21],[18,-94],[28,-37],[111,-90],[40,-152],[29,-60],[60,-73],[54,-37],[93,5],[-5,-94],[158,-104],[64,-49],[61,-75],[12,-32],[-15,-62],[-26,8],[-19,26],[-15,56],[-26,5],[-60,42],[-25,-16],[-30,-62],[-18,-70],[5,-20],[34,-17],[33,-32],[7,-74],[-73,-64],[-10,-72],[-45,-81],[-34,-1],[-15,52],[53,104],[13,42],[-17,46],[-31,136],[-37,35],[-61,38],[6,24],[-31,61],[-29,5],[-55,53],[-30,55],[-43,8],[-28,-7],[-62,51],[-100,138],[-60,62],[-68,83],[-41,179],[-14,25],[-113,71],[-45,13],[-34,-27],[-32,-64],[-30,-24],[-44,-11]],[[4318,8568],[-10,-7],[-2,-5],[-30,-13],[-40,-47],[-24,-48],[-53,-21],[-45,15],[-88,51],[-39,-4],[-8,16],[-51,12],[-33,-6],[-59,-42],[-26,-30],[-9,-31],[3,-84],[13,-20]],[[3817,8304],[6,-94],[-7,-17],[-116,-106],[-135,-56],[-31,-45],[3,-37],[-31,-31],[-45,-79],[-39,-88],[-8,-38],[11,-54],[25,-52],[27,-28],[-78,-74],[-44,-120],[13,-21],[-67,-14],[-56,-66],[-15,-57],[-24,-38],[-53,7],[-163,-5],[-49,-10],[-85,-55],[-20,-50],[-29,-28],[-53,42],[-42,101],[11,19],[-70,72],[-54,0]],[[2599,7282],[-52,-40],[-75,19],[-55,-16],[23,82],[-2,122],[7,92],[-54,-23],[-4,47],[-27,20],[28,128],[20,36],[21,87],[1,38],[27,112],[-3,64],[-21,111],[6,41]],[[2439,8202],[-10,26],[11,29],[6,89],[-20,-6],[-39,54],[-2,25],[36,47],[55,17],[22,40],[45,41],[42,-5],[34,-33],[131,-1],[26,13],[145,-46],[48,1],[64,19],[72,-22],[31,11],[35,-21],[75,3]],[[3246,8483],[37,51],[21,130],[23,73],[-18,28],[10,135],[11,17],[1,87],[-18,53],[-68,40],[-29,56],[-15,91],[-41,12],[1,44],[-27,21],[-31,-13],[-36,27],[-95,34],[-20,-8],[-29,35],[34,64],[-54,-2],[4,45],[71,27],[20,-7],[57,31],[36,8],[30,-37],[38,-15],[34,9],[96,5],[-47,147],[-8,60],[46,-10],[43,-61],[25,3],[77,-19],[26,8],[23,75],[59,33],[58,20],[42,47],[5,129],[19,16],[88,26]],[[3745,9998],[61,42],[33,13]],[[3839,10053],[101,-4]],[[3940,10049],[0,5]],[[3940,10054],[-79,14],[3,29],[48,-4],[12,49],[-10,27],[37,37],[29,63],[15,84],[28,4],[38,-37],[-24,-47],[4,-32],[50,51],[13,46],[-30,20],[-2,35],[24,39],[50,19],[70,9],[66,-43]],[[4282,10417],[-21,20],[1,37],[24,28],[88,9],[35,-38],[44,70],[44,3],[-46,74],[22,56],[-46,63],[21,6]],[[4448,10745],[-3,102],[-60,36],[13,95],[-11,55],[10,49],[45,-27],[29,50],[60,-36],[-25,63],[99,37],[30,-33],[8,-56],[70,-37],[-25,-51],[-59,-9],[-17,-46],[-47,-71],[-3,-46],[-26,-90]],[[4536,10730],[56,-7],[-4,-39],[36,-36],[53,-14],[49,7],[-14,-79],[56,-14],[15,34],[60,15],[66,48],[28,1],[67,-58],[31,-14],[7,-38],[52,-28]],[[5094,10508],[31,0],[30,61],[54,26],[80,21],[51,42],[80,43],[92,27],[51,1],[26,-74],[20,-15],[77,-20],[45,34]],[[5731,10654],[27,24],[-10,24],[4,54],[53,-1],[60,62]],[[5745,11824],[38,-33],[-20,-41],[-36,9],[-11,33],[29,32]],[[720,3002],[36,-70],[-23,-13],[-17,35],[4,48]],[[829,3174],[14,-14],[-14,-34],[-18,8],[18,40]],[[569,3362],[7,-25],[-34,-28],[-5,37],[32,16]],[[7352,6843],[-22,2],[-13,-31],[-67,-34],[-35,-1],[-34,22],[-10,63],[77,58],[49,-8],[64,-1],[4,-67],[-13,-3]],[[4995,10695],[30,-26],[0,-37],[-35,-15],[-24,24],[29,54]],[[4772,10731],[40,-9],[2,-27],[-38,-3],[-47,20],[19,42],[24,-23]],[[5192,10766],[-50,15],[10,41],[44,-35],[-4,-21]],[[4657,10873],[32,-16],[10,-37],[-10,-44],[-30,-6],[-58,26],[-28,66],[64,23],[20,-12]],[[4902,10918],[-33,-76],[-19,-73],[-43,5],[-4,27],[-36,4],[-26,33],[-12,49],[14,20],[79,50],[53,23],[31,-15],[-4,-47]],[[4667,11209],[-25,-57],[-36,20],[-107,-12],[-43,-16],[-12,34],[89,7],[78,83],[42,2],[14,-61]],[[6094,11470],[26,-27],[-39,-35],[-90,-48],[-21,55],[17,31],[60,28],[47,-4]],[[6092,11539],[1,-24],[-55,-24],[-9,42],[28,29],[35,-23]],[[4542,8400],[10,-144],[-35,-148],[-18,-2],[-36,29],[-25,151],[19,46],[40,27],[22,-2],[23,43]],[[3095,11477],[-10,-62],[-94,-79],[8,-20],[-15,-54],[66,29],[106,-5],[56,6],[34,-44],[-63,-134],[-53,-61],[-1,-56],[-70,-35],[37,-13],[57,15],[40,-19],[58,-60],[52,-168],[17,-27],[66,-28],[47,-74],[54,-198],[-35,-39],[30,-17],[32,33],[88,-9],[44,-39],[7,-50],[-20,-76],[-44,-40],[-25,-9],[-68,-75],[61,-21],[60,8],[-4,-36],[-62,-55],[-66,-31],[-137,14],[-123,-23],[-11,-25],[-97,29],[-60,-24],[-7,-43],[-24,-36],[-59,31],[-52,-9],[-46,-28],[-23,-30],[-36,5],[11,31],[74,76],[71,115],[140,11],[44,72],[-67,-41],[-43,3],[-112,64],[-58,-24],[-18,49],[15,28],[33,8],[67,41],[20,50],[-11,77],[-43,-17],[-24,6],[71,74],[124,34],[2,101],[15,54],[-42,-10],[-44,66],[32,80],[-13,15],[-45,-27],[-85,-15],[-64,19],[5,32],[47,81],[-10,103],[-14,19],[-58,-35],[-13,-100],[-32,4],[23,74],[-3,30],[14,96],[-59,46],[32,41],[-1,36],[18,46],[-27,18],[7,72],[37,28],[8,39],[28,40],[15,68],[73,-18],[145,22]],[[2958,10403],[-34,23],[34,27],[28,-20],[-28,-30]],[[2617,10776],[91,35],[49,-15],[28,-63],[14,-118],[-25,-23],[-46,-3]],[[2728,10589],[-4,-46],[22,-57],[-10,-48],[18,-92],[-39,-113],[-134,-47],[-51,-43],[-84,-50],[-109,-14],[18,46],[-60,-28],[-27,61],[38,47],[15,56],[41,26],[47,8],[1,21],[-69,-5],[63,88],[7,25],[-65,-7],[0,27],[-57,16],[22,40],[34,25],[-9,23],[-49,49],[13,30],[75,3],[25,-29],[25,24],[34,-11],[38,47],[-37,28],[-5,29],[40,69],[60,20],[28,-41],[18,71],[45,-22],[-29,-39]],[[2751,10890],[-24,-13],[-26,22],[11,32],[35,12],[4,-53]],[[2781,11020],[-49,36],[15,32],[53,-39],[-19,-29]],[[2736,11395],[-22,-43],[-78,0],[26,35],[70,63],[4,-55]],[[4478,708],[-26,-77],[-28,10],[-1,31],[22,49],[28,16],[5,-29]],[[6218,6951],[53,-29],[63,2],[63,-10],[28,-39],[48,28],[-1,-43],[-112,-16],[-59,9],[-4,14],[-58,20],[-70,8],[-10,15],[6,49],[53,-8]],[[6658,7032],[-18,45],[25,36],[33,-6],[-18,-48],[-22,-27]],[[5821,7524],[26,-64],[-31,-4],[-23,15],[7,34],[21,19]],[[6457,7482],[-33,61],[37,-7],[-4,-54]],[[6278,7432],[-28,8],[-20,41],[-98,106],[-35,20],[38,33],[19,-41],[57,-30],[27,-65],[41,-38],[-1,-34]],[[6514,7635],[-50,1],[-38,33],[7,20],[52,17],[29,-71]],[[0,16356],[16,0],[292,-23],[187,-33],[158,-81],[204,-17],[141,-38],[-108,-44],[-324,-43],[-293,8],[-273,-20],[0,0]],[[0,16028],[261,26],[367,-10],[-15,-44],[-214,-42],[22,-24],[353,60],[17,54],[212,13],[32,-28],[-36,-93],[-220,-115],[138,24],[291,109],[246,-37],[129,76],[238,12],[235,-35],[94,-34],[-233,-87],[-114,0],[-6,-49],[-125,-28],[-136,-84],[-143,-5],[-174,18],[-89,-35],[116,-11],[170,13],[62,-17],[-60,-46],[-145,-6],[-65,-69],[66,-26],[-86,-33],[-26,-50],[-134,-12],[14,-49],[-45,-79],[37,-35],[203,-40],[-159,-6],[23,-52],[117,-34],[100,6],[35,-31],[-23,-73],[-182,32],[-62,-5],[-108,-43],[-101,28],[-8,-50],[85,-61],[81,10],[143,-34],[-40,-14],[66,-58],[21,-60],[-29,-61],[-103,31],[-34,-122],[139,-6],[70,-32],[-46,-41],[-90,1],[-13,-23],[-169,-19],[146,-35],[11,-68],[-19,-17],[-97,4],[-91,-41],[-89,14],[-124,53],[-168,-40],[-40,-46],[89,-21],[-48,-43],[83,-28],[23,-54],[196,-85],[51,-39],[13,-72],[65,-1],[-18,-66],[22,-13],[-5,-115],[-187,6],[-67,33],[-78,138],[-79,13],[-39,-47],[-99,-36],[-92,-6],[-50,15],[-69,-102],[49,-19],[147,16],[78,-37],[81,25],[164,-55],[121,-10],[-41,-59],[-64,-8],[-43,-46],[-117,-55],[-15,-30],[-60,-38],[-100,-42],[-149,-31],[-50,-3],[-80,-26],[-41,-27],[-55,39],[-15,-21]],[[245,13782],[-23,27],[74,40],[200,55],[38,-43],[-9,-38],[-280,-41]],[[929,14184],[-52,-71],[-224,92],[-18,51],[133,-1],[161,-71]],[[911,14272],[13,-48],[-85,12],[-52,25],[-6,37],[130,-26]],[[713,14355],[67,-23],[23,-28],[-179,-12],[-134,32],[51,40],[58,6],[114,-15]],[[1144,14621],[-69,19],[7,33],[59,6],[39,-31],[-36,-27]],[[1402,14737],[-8,-41],[-78,-25],[-41,12],[4,55],[123,-1]],[[1653,12959],[86,-40],[8,-43],[127,-48],[-12,-48],[18,-31],[-5,-47],[-40,-39],[-53,-23],[-5,-36],[-158,-52],[-67,-50],[-132,-33],[-56,-49],[-73,-14],[-138,27],[-146,68],[-164,-14],[28,32],[54,19],[25,26],[-32,37],[-46,81],[-85,1],[-73,-16],[-6,38],[144,21],[10,30],[67,43],[-89,39],[-114,-33],[-86,11],[39,61],[59,21],[4,43],[32,9],[56,-33],[39,86],[129,-99],[-2,-40],[-29,-19],[36,-31],[44,23],[67,5],[-12,89],[37,7],[59,-73],[27,65],[49,22],[43,-19],[33,17],[60,-20],[108,11],[42,19],[5,54],[56,-3],[32,-52]],[[9893,5228],[-42,-15],[19,41],[47,28],[11,-10],[-35,-44]],[[5248,7486],[-46,-103],[-14,-45],[1,-34],[19,-64],[-24,-63],[-61,21],[-32,55],[-63,23],[-86,76],[-22,1],[-32,55],[9,39],[26,13],[68,5],[49,-33],[65,7],[80,22],[58,33],[5,-8]],[[4560,8022],[13,-120],[-13,-185],[-13,-63],[-33,22],[-24,-16],[0,-28],[-20,-24],[-27,7],[-23,50],[-3,42],[12,68],[-2,103],[-18,60],[-18,29],[18,26],[29,-2],[23,16],[45,62],[38,-17],[16,-30]],[[9014,5804],[-19,-9],[-10,41],[17,22],[16,-28],[-4,-26]],[[4511,12440],[-77,-26],[7,35],[70,-9]],[[5196,13399],[-49,-41],[-35,26],[84,15]],[[5267,13427],[91,41],[-6,-50],[-32,-1],[-62,-43],[-70,8],[47,52],[32,-7]],[[5216,13478],[9,-37],[-43,-20],[-35,35],[69,22]],[[5502,13615],[30,-27],[-8,-47],[-50,-7],[-43,-20],[-35,15],[38,65],[68,21]],[[5679,13664],[-75,20],[60,30],[15,-50]],[[6166,13814],[5,-29],[-62,-31],[-28,23],[30,27],[55,10]],[[6090,13803],[-94,-4],[2,26],[90,10],[2,-32]],[[5327,15668],[119,-27],[161,-76],[21,-73],[299,-68],[-202,-38],[-89,-34],[1,-49],[-70,-35],[-19,-102],[-58,-1],[-105,-181],[-142,59],[-58,51],[-84,22],[-45,55],[318,69],[-332,-29],[2,71],[138,6],[64,36],[-47,83],[-80,-12],[10,-40],[-81,-49],[-90,-1],[-80,66],[-92,40],[-96,159],[70,42],[105,-9],[181,26],[-47,-74],[170,49],[76,-88],[49,-1],[-44,108],[77,45]],[[6123,15290],[40,-48],[89,-13],[-15,-35],[-175,-79],[7,50],[-218,8],[81,73],[-86,33],[105,27],[141,4],[31,-20]],[[5922,15380],[55,-3],[12,-62],[-142,-5],[-58,46],[133,24]],[[7267,15714],[22,-30],[-186,-19],[-11,28],[175,21]],[[6099,15743],[13,-59],[167,34],[301,-47],[-28,-44],[-94,-34],[-43,-48],[-122,-13],[-74,-27],[-376,30],[-129,36],[10,31],[-117,0],[-70,36],[-13,42],[153,9],[9,54],[100,-7],[72,-42],[176,-27],[-9,67],[74,9]],[[4220,81],[9,-33],[-26,-43],[-1,60],[18,16]],[[5349,11004],[-12,51],[16,49],[58,74],[-62,-174]],[[5567,11155],[-20,-2],[-8,86],[8,33],[61,64],[11,-37],[-1,-59],[-51,-85]],[[9636,2473],[45,9],[41,-26],[-45,-38],[-50,-10],[-39,46],[26,34],[22,-15]],[[3637,7638],[-24,-36],[-12,36],[36,0]],[[3823,7702],[-15,-13],[-71,34],[-12,29],[48,47],[48,19],[26,-61],[-24,-55]],[[3947,7807],[-4,-16],[-50,22],[-1,26],[30,6],[25,-38]],[[1547,5484],[-16,-3],[-24,63],[38,13],[38,33],[12,-10],[-48,-96]],[[1673,5439],[-16,-12],[-21,19],[-4,33],[13,28],[31,2],[7,-31],[-10,-39]],[[1861,5616],[0,-30],[-13,-63],[-37,-24],[26,94],[24,23]],[[1404,5578],[-23,46],[31,1],[-8,-47]],[[1513,6386],[-41,19],[2,27],[53,-24],[-14,-22]],[[9171,13479],[-119,-34],[-46,32],[-7,30],[24,64],[96,31],[85,-39],[28,-27],[-61,-57]],[[10249,13787],[107,-73]],[[10356,13643],[-45,-2],[-63,29],[-50,40],[10,56],[41,21]],[[9565,13884],[-93,77],[57,9],[46,-49],[-10,-37]],[[9806,14354],[130,-24],[-40,-89],[-68,-67],[-10,-100],[101,-144],[83,-58],[76,-36],[-37,-31],[-193,31],[-48,-31],[-98,40],[-94,10],[31,25],[-3,43],[-127,76],[-63,-16],[-50,14],[-25,49],[15,55],[96,-2],[62,97],[-60,38],[17,21],[83,11],[-14,45],[29,19],[207,24]],[[10356,14619],[-164,-50],[13,-44],[-92,-63],[1,-26],[-133,-105],[-208,40],[-142,66],[111,34],[-7,14],[102,48],[30,32],[-14,41],[118,3],[-100,81],[99,2],[47,58],[76,0],[51,56],[61,23],[151,32]],[[10017,15668],[-141,5],[14,41],[121,10],[23,-11],[-17,-45]],[[9640,15691],[-159,1],[61,37],[98,-38]],[[10236,15736],[-185,-51],[-7,35],[-32,22],[224,-6]],[[8937,15819],[23,-16],[-160,-50],[-37,32],[174,34]],[[10356,15743],[-73,9],[27,55],[46,3]],[[9317,15828],[96,-33],[-77,-26],[-149,-19],[-101,-43],[-232,-15],[-18,25],[167,16],[149,47],[-41,31],[72,22],[134,-5]],[[10078,15792],[-356,57],[23,22],[228,-30],[105,-49]],[[9042,8188],[50,-80],[27,-87],[32,-64],[21,-16],[37,-1],[23,-16],[3,-32],[-34,4],[-45,-27],[-17,-31],[-3,-60],[-22,-136],[-32,12],[-7,-72],[0,-59],[9,-106],[18,-51],[39,-30],[57,-7],[28,-11],[18,-51],[72,-68],[30,-16],[76,-24],[25,3],[159,56],[47,-18],[16,30],[-14,77],[-12,108],[4,103],[10,69],[-15,53],[-25,54],[-32,5],[0,36],[30,-13],[20,11],[-28,72],[-16,17],[-42,0],[-29,15],[-1,78],[22,112],[14,-26],[80,-53],[73,21],[39,30],[3,45],[-76,72],[-20,116],[-28,15],[-58,-9],[-21,-20],[-17,-58],[6,-37],[-6,-57],[-40,112],[-1,78],[32,90],[-22,31],[-53,15],[-77,55],[-12,26],[-54,169],[-65,33],[3,63],[70,-11],[26,-23],[29,25],[-50,48],[-2,20],[58,78],[135,4],[14,53],[39,70],[14,133],[-17,41],[-22,12],[-51,0],[-21,-29],[-53,20],[-29,29],[-38,12],[-26,-11],[-162,-104],[-39,-36]],[[9116,9069],[-69,-85],[-56,-33],[-33,-5],[-32,-30],[-52,-136],[-40,-34],[-7,-52],[40,-21],[24,-35],[34,-89],[-9,-45],[-2,-87],[38,-78],[60,-109],[30,-42]],[[5762,8328],[52,-68],[8,-65]],[[5822,8195],[-14,-62],[5,-65],[21,-47],[32,-26]],[[5866,7995],[5,-29],[-12,-46],[-43,-79],[-29,-69],[-33,-5]],[[5681,8188],[4,92],[37,68],[12,-38],[28,18]],[[3651,8318],[-32,-13],[-1,32]],[[3618,8337],[33,-19]],[[5401,9514],[-10,-53],[36,-67]],[[5427,9394],[-10,-25],[-53,-49],[-18,-92],[-40,-56]],[[5306,9172],[-24,-31],[-52,-15],[-60,-3],[-43,-44],[-97,25]],[[5030,9104],[-131,26],[-43,46],[-3,26],[-98,-7],[-28,-23],[-70,-3]],[[4657,9169],[-100,40],[-8,41],[3,46]],[[4552,9296],[47,5],[25,-46],[30,37],[109,-3],[43,24],[66,21],[31,-5],[45,-40],[10,36],[-37,81],[103,93],[20,45]],[[5044,9544],[33,-35],[26,-5],[42,16],[31,58],[36,8],[75,-35],[78,-5],[36,-32]],[[4145,9932],[23,-24],[14,-61],[-24,-37]],[[4158,9810],[-19,9],[-23,-44],[13,-48],[-7,-31]],[[4122,9696],[-49,13],[-45,35],[-19,31],[-80,15],[1,49],[-55,23],[-49,54],[-52,10],[-16,18],[-13,54]],[[3839,10053],[2,-17],[58,-17],[41,30]],[[3940,10054],[58,23],[22,-18],[102,-46],[-21,-64],[44,-17]],[[5044,9544],[-31,39],[-103,90],[-22,51],[-11,63],[-21,19],[-10,40],[37,4],[67,25],[86,53],[63,30],[1,33],[58,-36]],[[5158,9955],[53,14],[33,-32],[76,-22],[7,-58],[49,-52],[50,54],[51,-22],[1,-19],[44,-31],[69,-32],[30,-65]],[[5621,9690],[-22,-3],[-50,-41],[-42,-72],[-40,-21],[-37,11],[-29,-50]],[[6678,8215],[-39,-1],[-47,24],[-21,-2],[-85,-52],[-1,-22]],[[6485,8162],[-28,-16],[8,-37],[-26,-23],[-85,-8],[-87,50],[-41,3],[-37,-26],[-65,-16],[-34,0]],[[6090,8089],[7,85],[-13,40],[-59,66]],[[6025,8280],[23,33],[-14,67],[39,22],[26,49],[-54,56],[-20,69],[7,36],[29,40]],[[6061,8652],[58,-77],[26,6],[63,-21],[122,-5],[43,-19],[46,17],[45,55],[100,30],[66,-24],[70,-50],[40,-5]],[[5641,8778],[39,5],[-11,-46],[-5,-74],[41,-40],[-41,-105]],[[5664,8518],[-60,-52],[-25,-64],[8,-42],[-13,-32]],[[5574,8328],[-19,11],[-54,59],[-18,-5]],[[5475,8403],[6,30],[-145,193],[-71,157],[1,56],[25,11],[43,-42],[31,41],[41,3],[31,-16],[154,-12],[32,-47],[18,1]],[[7109,10198],[-98,-13],[-45,-74],[9,-48],[-32,-10],[-20,26],[-102,-9],[-43,25],[-85,9],[-37,-16],[-54,11],[-48,27],[-115,35],[-74,4],[-85,-10],[-110,-75]],[[6170,10080],[-9,42],[16,51],[-8,24],[-50,34],[34,53],[54,31],[-5,91],[-28,71],[-16,82]],[[6158,10559],[29,-7],[82,2],[93,65],[44,11],[-6,26],[14,63],[57,64],[53,14],[-8,99]],[[6516,10896],[116,37],[59,59]],[[6691,10992],[20,-22],[94,-6],[36,-14],[13,-44],[47,27],[62,-16],[38,-32],[18,-95],[-1,-88],[37,-79],[43,-35],[13,-49],[71,-25],[38,-51],[0,-24],[-69,-51],[-85,23],[-8,-42],[18,-25],[13,-77],[20,-69]],[[4657,9169],[-4,-16],[-51,-89],[-35,-5],[-27,28],[-41,-61],[-30,-28],[-61,87],[-22,-60],[-28,-36],[-88,-15],[-7,13]],[[4263,8987],[-26,98],[-35,6],[-30,-19],[-9,-39],[-25,7],[24,81],[116,163],[26,-1],[21,30]],[[4325,9313],[84,-3],[46,37],[79,-29],[18,-22]],[[6698,8897],[-9,22],[-2,124],[14,75],[-16,75],[-33,37],[-63,111],[-11,43],[-41,58],[-21,2]],[[6516,9444],[31,25],[98,14],[44,-42],[43,-23],[77,-26],[7,-48],[-10,-46],[39,-32],[18,-81],[39,-23],[-2,-27],[23,-52],[-40,-5],[-75,29],[-19,-11],[-11,-96],[-61,-91],[-19,-12]],[[4325,9313],[-7,23],[5,65],[34,119],[38,60],[-80,34],[-88,7],[-21,51],[-21,9]],[[4185,9681],[8,37],[-32,61],[-3,31]],[[4145,9932],[20,152],[-24,41],[16,29],[32,-8],[34,12],[32,59],[-9,86],[19,10],[16,66],[1,38]],[[4448,10745],[74,-21],[14,6]],[[5094,10508],[17,-91],[-23,-48],[62,-180],[-18,-51],[41,-67],[10,-37],[-25,-79]],[[6686,11604],[-78,-93],[8,-100],[20,-69],[-37,-86]],[[6599,11256],[-116,12],[-45,52],[-87,46],[-97,-40]],[[6231,12880],[-25,59],[-33,35],[37,96],[-41,95],[-14,77],[8,46],[-57,75],[-122,44],[-167,107]],[[5817,13514],[84,49],[46,-14],[90,-99],[75,-18],[115,28],[91,-40],[94,104],[-2,28],[37,92],[53,43],[64,-6],[97,34],[59,-52],[84,-24],[24,-43],[-58,-50],[11,-33]],[[6781,13513],[-44,-33],[-13,-68],[25,-67],[97,-50],[59,-55],[-9,-27],[-99,-103],[6,-41],[92,-129],[13,-85],[-32,-16],[-17,-117],[85,-138],[21,-50],[-64,-57],[56,-54],[89,-52],[41,-61],[-42,-79],[-224,-235],[-132,-111]],[[3618,8337],[-14,24],[-58,22],[-22,-28],[-41,1],[-107,33],[-89,48],[-41,46]],[[4122,9696],[18,-17],[45,2]],[[4263,8987],[-20,-17],[4,-34],[32,-50],[-43,-51],[-7,-44],[20,-14],[-3,-97],[11,-21],[43,-25],[20,5],[-2,-71]],[[3817,8304],[-17,7],[-68,-17],[-54,1],[-27,23]],[[2728,10589],[-39,-14],[-28,60],[-34,-2],[-16,-42],[-36,6],[-64,61],[49,26],[40,80],[17,12]],[[8056,8490],[12,36],[69,-7],[106,-60],[93,0],[45,-10],[65,-55],[47,-58],[20,-6],[30,19],[51,16],[54,-8],[41,-33],[11,-64],[42,-34],[52,-24]],[[8794,8202],[-21,-30],[10,-49],[38,-29],[-2,-50],[-21,-5],[-54,19],[-52,47],[-27,10],[-33,-34],[-31,-15],[-83,-6],[-64,-13],[-76,80],[-26,8],[-81,-22],[-38,12]],[[5866,7995],[93,14],[14,29],[51,12],[66,39]],[[6485,8162],[24,-19],[7,-52],[-35,-50],[-7,-37],[-26,-34]],[[5015,8900],[35,-10],[63,16],[91,-15],[10,49],[36,29],[12,76],[61,45],[39,5]],[[5362,9095],[21,-18],[75,-88],[50,-31],[52,-4],[62,30]],[[5622,8984],[9,-53],[28,-72],[-18,-81]],[[5574,8328],[10,-27]],[[5427,9394],[21,-4],[51,-48],[94,4],[28,14],[21,46],[57,26],[49,-10],[38,23],[30,53],[31,8],[93,-22],[22,-25],[39,13]],[[6001,9472],[11,1],[75,-89]],[[6087,9384],[-25,-32],[-42,-6],[-41,-74],[-78,-177],[-29,-43],[-88,-26]],[[5784,9026],[-79,10],[-43,-36],[-40,-16]],[[5362,9095],[-29,49],[-27,28]],[[5030,9104],[-31,-58],[32,-124]],[[6158,10559],[-3,36],[-57,47],[-23,-4]],[[6075,10638],[-8,63],[18,25],[-40,49],[-47,-5],[-33,15],[-48,28]],[[5876,10972],[63,50],[46,19],[68,-7],[90,-1],[125,-22],[54,22],[27,-40],[58,-9],[72,-75],[37,-13]],[[6599,11256],[24,4],[21,-36],[12,-94],[34,-64],[11,-54],[-10,-20]],[[5822,8195],[15,-3],[13,45],[25,16],[101,32],[49,-5]],[[5664,8518],[40,-56],[90,-68],[-32,-66]],[[5817,13514],[-57,-2],[32,-48],[-48,-88],[-173,45],[-34,-8],[4,-68],[-32,-44],[-69,28],[-48,-32],[-69,-83],[-9,-106],[-80,-87],[-5,-33],[-48,-42],[-55,-25],[-9,-144],[-34,-58],[-60,-81],[53,-23],[5,-53],[-21,-35],[-88,16],[-60,-24],[-61,-77],[-10,-81],[20,-212],[-13,-71],[52,-30],[33,-41],[-32,-61],[-42,-7],[41,-90],[-16,-100],[-65,-42],[-11,-35],[4,-80],[-15,-55],[-55,25]],[[6999,13657],[13,-45],[-91,15],[-24,-45],[-59,-17],[-21,-40],[-36,-12]],[[6061,8652],[-23,44],[26,32],[-32,20],[-22,-28],[-24,4],[-69,38],[5,58],[-19,33],[-57,47],[-17,68],[-45,58]],[[6087,9384],[24,23],[114,-27],[64,-4],[26,-37],[37,24],[77,23],[45,22],[42,36]],[[6698,8897],[16,-28],[42,-19],[61,41],[47,-18],[4,-27]],[[5731,10654],[188,-24],[156,8]],[[6170,10080],[45,-115],[9,-57],[-12,-43],[-34,-10],[-35,-39],[-86,-124],[19,-77],[-27,-9]],[[6049,9606],[-62,29],[-19,27],[-58,13],[-35,-7],[-79,0],[-30,-28],[-39,-5],[-3,33],[-31,39],[-23,-14],[-49,-3]],[[6049,9606],[-46,-98],[-2,-36]],[[7109,10198],[19,-11],[46,19],[32,28],[85,13],[55,-1],[55,-94],[-8,-63],[6,-43],[42,-27],[56,4],[25,-41],[5,-86],[24,-43],[51,20],[71,-40],[78,37],[33,-52],[47,-48],[28,32],[55,-40],[52,-12],[82,-47],[25,-42],[-6,-31],[-36,-31],[-3,-90],[24,-72],[-18,-54],[-37,-21],[-76,3],[-63,-72],[-7,-72]],[[2599,7282],[-10,61],[10,47],[44,82],[-34,58],[31,125],[-28,41],[-16,65],[49,2],[13,42],[13,95],[-7,108],[31,62],[45,66],[-64,71],[-39,6],[-59,-21],[-41,2],[-27,51],[-34,-10],[-37,-33]],[[10356,13714],[0,-71]],[[10356,14861],[0,-242]],[[9042,8188],[-81,-122],[-55,10],[-28,52],[-36,41],[-48,33]],[[10356,13415],[0,-3503],[-26,-22],[-36,8],[-74,34],[-54,82],[-47,-16],[-50,-42],[-41,41],[-71,-6],[-63,-77],[-32,-21],[-51,34],[-60,57],[-2,-77],[-30,26],[-35,59],[-87,84],[-96,-6],[-29,59],[-37,-15],[-41,-37],[-30,29],[-57,13],[-60,-71],[-91,-46],[-23,-25],[-1,-28],[-41,-31],[-45,-14],[13,-68],[20,-49],[-57,-38],[-20,12],[-36,73],[-35,41],[-37,-36],[2,-24],[-43,-55],[-17,-97],[27,-57],[-28,-27],[-33,-101],[72,-34],[-4,-61],[13,-37],[91,0],[36,-36],[31,-51],[44,-93],[-29,-20],[3,-43],[57,-34]],[[10356,15810],[0,-67]],[[6885,11981],[117,108],[193,-129],[48,-93],[-15,-31],[-25,10],[-2,-64],[-101,5],[-22,-61],[-47,1],[1,43],[-67,95],[-3,41],[-77,75]],[[5061,11586],[0,-23],[-7,-36],[-74,-58],[-52,-19],[-42,-1],[9,53],[-2,20],[20,15],[38,7],[19,27],[46,40],[45,-25]],[[7562,12188],[39,-111],[38,-86],[-32,-51],[-87,-13],[-56,33],[39,-1],[43,-5],[-48,60],[-35,31],[-43,62],[-25,69],[3,15],[43,-13],[-5,43],[24,-30],[29,-31],[15,11],[29,12],[-38,45],[-60,54],[44,-3],[27,-14],[56,-77]],[[10356,15743],[0,-882]],[[10356,14619],[0,-905]],[[10356,13643],[0,-228]],[[4529,0],[-4529,0],[0,13367]],[[0,16028],[0,37]],[[0,16356],[0,1256],[10356,0],[0,-1802]],[[10356,4966],[0,-4966],[-1969,0]],[[4398,9402],[38,-13],[99,31],[151,100],[110,28],[41,46],[14,-5],[26,-10],[14,-4],[18,-11],[38,-23],[39,-23],[18,-11],[19,-9],[121,-59],[33,-4],[74,31],[35,-4],[108,-35],[28,-24],[12,-10],[30,-26],[18,-9],[25,-12],[96,24],[18,-10],[7,-5],[13,-27],[-10,-96],[2,-78],[-8,-98],[-14,-48],[2,-13],[4,-13],[0,0],[8,-18],[0,0],[14,-36],[8,-20],[9,-14],[18,-27],[9,-13],[14,-2],[31,-9],[30,-8],[14,-4],[44,-64],[26,-11],[68,16],[8,-4],[15,-7],[25,-22],[42,-35],[35,42],[1,2],[11,-9],[15,-13],[3,-3],[-25,-31],[-2,-2],[21,-34],[2,-4],[31,-76],[21,7],[24,7],[88,-30],[1,0],[109,-7],[59,-4],[57,50],[8,3],[106,36],[22,7],[5,-5],[1,-4],[10,7],[25,13],[26,14],[11,6],[15,14],[-1,17],[-19,49],[13,93],[6,12],[13,22],[7,14],[1,1],[14,-7],[25,-16],[13,-10],[54,32],[10,-7],[42,-27]]],"transform":{"scale":[0.00869061413673233,0.005110152168975698],"translate":[-30,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[40]],"type":"Polygon","properties":{"ct":[19.96,60.22]},"id":"ALA"},{"arcs":[[121,122,123,19,124]],"type":"Polygon","properties":{"ct":[20.07,41.13]},"id":"ALB"},{"arcs":[[125,126]],"type":"Polygon","properties":{"ct":[1.54,42.52]},"id":"AND"},{"arcs":[[127,128,129,130,131,132,133]],"type":"Polygon","properties":{"ct":[14.14,47.59]},"id":"AUT"},{"arcs":[[134,135,136,31,137,33,138]],"type":"Polygon","properties":{"ct":[4.66,50.64]},"id":"BEL"},{"arcs":[[-134,139,140,141]],"type":"Polygon","properties":{"ct":[15.32,49.74]},"id":"CZE"},{"arcs":[[16,142,143,144,145,146]],"type":"Polygon","properties":{"ct":[25.22,42.76]},"id":"BGR"},{"arcs":[[147,148,149,22,150]],"type":"Polygon","properties":{"ct":[17.78,44.18]},"id":"BIH"},{"arcs":[[151,152,153,154,155]],"type":"Polygon","properties":{"ct":[28.06,53.55]},"id":"BLR"},{"arcs":[[-132,156,157,158]],"type":"Polygon","properties":{"ct":[8.23,46.8]},"id":"CHE"},{"arcs":[[159,160]],"type":"Polygon","properties":{"ct":[28.47,47.2]},"id":"MDA"},{"arcs":[[[-133,-159,161,162,-135,163,35,164,37,165,-140]],[[45]]],"type":"MultiPolygon","properties":{"ct":[10.37,51.08]},"id":"DEU"},{"arcs":[[[-165,36]],[[46]],[[47]],[[48]],[[49]],[[50]]],"type":"MultiPolygon","properties":{"ct":[9.32,56.03]},"id":"DNK"},{"arcs":[[[166,167,4]],[[51]],[[52]]],"type":"MultiPolygon","properties":{"ct":[25.83,58.67]},"id":"EST"},{"arcs":[[6,168,169,170]],"type":"Polygon","properties":{"ct":[26.3,64.53]},"id":"FIN"},{"arcs":[[[-127,171,30,-137,172,-162,-158,173,26,174]],[[53]]],"type":"MultiPolygon","properties":{"ct":[2.45,46.63]},"id":"FRA"},{"arcs":[[[54]],[[55]],[[175,56]],[[58]],[[59]],[[60]]],"type":"MultiPolygon","properties":{"ct":[-2.53,53.95]},"id":"GBR"},{"arcs":[[12,176,177]],"type":"Polygon","properties":{"ct":[43.5,42.18]},"id":"GEO"},{"arcs":[[[-124,178,-144,179,18]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]]],"type":"MultiPolygon","properties":{"ct":[22.57,39.48]},"id":"GRC"},{"arcs":[[[-151,23,180,181,182]],[[-150,183,21]]],"type":"MultiPolygon","properties":{"ct":[16.43,45.13]},"id":"HRV"},{"arcs":[[-129,184,185,186,187,-182,188]],"type":"Polygon","properties":{"ct":[19.4,47.16]},"id":"HUN"},{"arcs":[[76]],"type":"Polygon","properties":{"ct":[-18.63,64.99]},"id":"ISL"},{"arcs":[[-176,57]],"type":"Polygon","properties":{"ct":[-8.13,53.18]},"id":"IRL"},{"arcs":[[[-131,189,25,-174,-157]],[[78]],[[79]]],"type":"MultiPolygon","properties":{"ct":[12.15,43.53]},"id":"ITA"},{"arcs":[[-154,190,191,1,2,192]],"type":"Polygon","properties":{"ct":[23.88,55.34]},"id":"LTU"},{"arcs":[[-136,-163,-173]],"type":"Polygon","properties":{"ct":[6.08,49.77]},"id":"LUX"},{"arcs":[[-155,-193,3,-168,193]],"type":"Polygon","properties":{"ct":[24.94,56.85]},"id":"LVA"},{"arcs":[[-123,194,-145,-179]],"type":"Polygon","properties":{"ct":[21.69,41.61]},"id":"MKD"},{"arcs":[[-125,20,-184,-149,195]],"type":"Polygon","properties":{"ct":[19.27,42.79]},"id":"MNE"},{"arcs":[[[-139,34,-164]],[[-138,32]]],"type":"MultiPolygon","properties":{"ct":[5.67,52.25]},"id":"NLD"},{"arcs":[[[-170,196,8,197]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]]],"type":"MultiPolygon","properties":{"ct":[14.01,64.27]},"id":"NOR"},{"arcs":[[-147,198,-187,199,-160,200,15]],"type":"Polygon","properties":{"ct":[24.98,45.84]},"id":"ROU"},{"arcs":[[-141,-166,38,201,-191,-153,202,203]],"type":"Polygon","properties":{"ct":[19.41,52.12]},"id":"POL"},{"arcs":[[[89]],[[90]],[[91]],[[92]],[[93]]],"type":"MultiPolygon","properties":{"ct":[15.78,78.62]},"id":"SJM"},{"arcs":[[-122,-196,-148,-183,-188,-199,-146,-195]],"type":"Polygon","properties":{"ct":[20.8,44.04]},"id":"SRB"},{"arcs":[[-128,-142,-204,204,-185]],"type":"Polygon","properties":{"ct":[19.49,48.71]},"id":"SVK"},{"arcs":[[-130,-189,-181,24,-190]],"type":"Polygon","properties":{"ct":[14.81,46.1]},"id":"SVN"},{"arcs":[[[-169,7,-197]],[[95]],[[96]]],"type":"MultiPolygon","properties":{"ct":[16.73,62.85]},"id":"SWE"},{"arcs":[[-152,205,14,-201,-161,-200,-186,-205,-203]],"type":"Polygon","properties":{"ct":[31.4,49.01]},"id":"UKR"},{"arcs":[[[-126,-175,27,206,29,-172]],[[98]],[[99]],[[100]]],"type":"MultiPolygon","properties":{"ct":[-3.55,40.4]},"id":"ESP"},{"arcs":[[[101]],[[102]],[[103]],[[104]]],"type":"MultiPolygon","properties":{"ct":[-16.54,28.28]},"id":"ESP"},{"arcs":[[-207,28]],"type":"Polygon","properties":{"ct":[-7.96,39.7]},"id":"PRT"},{"arcs":[[105]],"type":"Polygon","properties":{"ct":[-16.99,32.75]},"id":"PRT"},{"arcs":[[[-192,-202,39,0]],[[106]],[[107,207,108]],[[109]],[[110]],[[111,208]],[[209,-177,13,-206,-156,-194,-167,5,-171,-198,9,210,120]],[[112]],[[113]],[[114]],[[115]],[[116,211]],[[117]],[[118]]],"type":"MultiPolygon","properties":{"ct":[44.76,58.05]},"id":"RUS"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[212]],"type":"Polygon"},{"arcs":[[213]],"type":"Polygon"},{"arcs":[[214]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[40]],[[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,0,1,2,3,4,5,6,7,8,9,210,120,209,177,12,13,14,15,16,142,179,18]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56,57]],[[58]],[[59]],[[60]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[76]],[[78]],[[79]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[95]],[[96]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107,207,108]],[[109]],[[110]],[[111,208]],[[112]],[[113]],[[114]],[[115]],[[116,211]],[[117]],[[118]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-117,215,-112,216,-108,-109,217,-10,-9,-8,-7,-6,-5,-4,-3,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,218,-70,219,-69,220],[-118],[-119],[-115],[-114],[-113],[-83],[-90],[-84],[-85],[-86],[-87],[-94],[-91],[-93],[-92],[-88],[-89],[-111],[-110],[-107],[-116],[-80],[-101],[-54],[-41],[-52],[-53],[-46],[-47],[-48],[-50],[-96],[-97],[-49],[-51],[-82],[-95],[-62],[-68],[-67],[-66],[-64],[-63],[-45],[-79],[-65],[-99],[-100],[-43],[-44],[-42],[-102],[-106],[-105],[-104],[-103],[-71],[-72],[-73],[-74],[-75],[-76],[-77],[-55],[-61],[-60],[-56],[-58,-57],[-59]],[[221,-11],[-98],[-78],[-81]],[[-121,-120]],[[-2,-1]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[222]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/europe_50m.json b/topojson/dist/europe_50m.json new file mode 100644 index 00000000000..2ad45c4cc8f --- /dev/null +++ b/topojson/dist/europe_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[18664,0],[17,197],[54,-55],[121,-39],[67,45],[12,17],[-3,12],[-8,-7],[-171,85],[-111,199],[9,88],[74,37],[51,308],[35,44],[-40,-8],[-79,43],[-10,124],[95,290],[92,390],[1,227],[15,63],[1,187],[49,380],[-93,424],[-35,323],[-79,111],[-133,9],[-108,98],[-70,443],[-52,-32],[-10,-23],[10,-31],[-15,-17],[-84,13],[-9,102],[14,105],[-21,-39],[-174,-128],[-496,-96],[-173,-84],[-291,-59],[-106,96],[-81,117],[-53,120],[-107,444],[-3,203],[-228,548],[-185,273],[-63,39],[-236,57],[-542,-52],[-267,-40],[-242,-82],[-208,-110],[-57,-59],[-39,-125],[-193,-108],[-256,-88],[-388,-375],[-317,-164],[-294,-280],[-25,9],[-75,126],[-36,28],[-361,141],[-443,133],[-987,-214],[8,-28],[-582,-474],[-93,-56],[-94,12],[-306,235],[-407,417],[-100,148],[-296,540],[-617,773],[-63,121],[-28,63],[-402,382],[-33,163],[-3,117],[-49,-57],[-65,28],[-101,148],[-10,25],[26,25],[-82,254],[-42,-26],[-58,191],[-3,60],[42,-1],[34,-30],[96,97],[-89,55],[-26,182],[19,12],[-81,167],[10,100],[-14,89],[-146,273],[-32,321],[-164,162],[-8,32],[-17,-1],[-2,-41],[-47,-18],[-221,337],[-2,68],[55,237],[-96,-84],[-31,90],[-3,93],[74,88],[-18,7],[-43,-57],[-28,-3],[-37,74],[-1,-4],[-15,-54],[-4,-9],[-64,-14],[-30,103],[-115,115],[-43,103],[34,139],[94,119],[50,10],[-74,40],[-59,-83],[-63,80],[-5,36],[46,110],[141,38],[73,60],[-4,36],[-156,-29],[-115,-93],[-153,40],[-19,33],[-64,-34],[-58,11],[-67,98],[7,120],[-183,153],[-24,178],[7,461],[-29,235],[62,133],[49,-22],[-15,-21],[19,-111],[52,-35],[49,5],[59,44],[53,84],[25,19],[-52,-12],[-59,-72],[-55,-17],[-29,29],[-41,211],[-10,213],[-323,758],[306,796],[41,174],[11,213],[-3,165],[35,330],[162,733],[33,419],[-12,454],[-58,382],[-138,467],[30,150],[57,128],[24,351],[-8,128],[-114,386],[-17,7],[-2,-153],[-67,118],[-114,409],[-42,-134],[-23,-204],[-19,74],[61,807],[71,329],[61,120],[33,-20],[57,51],[262,1050],[52,302],[273,471],[106,121],[70,165],[26,177],[-6,245],[10,94],[202,829],[208,193],[182,217],[192,820],[87,183],[426,180],[218,156],[381,525],[149,151],[141,258],[201,481],[52,173],[34,257],[-51,161],[-53,70],[-7,447],[14,263],[65,222],[138,270],[58,158],[4,84],[88,386],[269,477],[526,396],[169,148],[57,78],[87,167],[170,505],[189,810],[59,125],[222,99],[4,-27],[14,-9],[4,-138],[54,-148],[132,-183],[123,-115],[177,-32],[183,64],[155,-10],[306,79],[-7,-34],[18,-8],[13,-109],[42,-39],[77,-11],[98,38],[110,-43],[112,-9],[91,39],[201,175],[39,39],[36,156],[50,77],[143,119],[230,75],[28,-35],[73,-16],[59,61],[83,212],[65,70],[299,237],[174,77],[507,56],[624,232],[121,24],[389,-13],[121,-89],[11,-33],[205,-53],[353,253],[151,34],[146,-93],[120,3],[57,78],[1,26],[-37,45],[12,5],[129,-34],[136,-139],[135,-11],[283,58],[52,18],[228,225],[238,111],[63,-12],[8,-48],[-51,-59],[21,-59],[48,23],[8,36],[-13,43],[128,-40],[19,-37],[-4,-171],[34,-165],[49,-61],[71,36],[176,240],[61,45],[15,-34],[18,-181],[-116,-242],[-147,-157],[-29,-95],[-11,-117],[8,-78],[75,-202],[137,-138],[59,-157],[31,-204],[-103,-338],[-79,-159],[-89,-138],[-204,-190],[-48,-129],[2,-42],[13,-107],[31,-89],[108,-165],[197,-202],[74,45],[3,84],[39,14],[26,-18],[27,-64],[15,-198],[-23,-25],[47,-73],[174,-36],[374,-300],[183,-26],[175,68],[140,10],[294,-135],[171,-133],[333,-146],[125,-287],[16,-169],[69,-252],[58,-130],[75,-81],[166,-101],[309,-44],[254,-103],[377,-250],[259,-342],[167,-119],[105,9],[173,124],[124,194],[83,190],[46,168],[7,100],[-11,66],[-63,158],[-42,346],[8,120],[99,243],[109,172],[131,143],[190,153],[242,108],[101,30],[182,-9],[399,-223],[55,-48],[5,-103],[-14,-147],[64,-82],[350,-138],[51,-45],[188,-17],[107,26],[113,-46],[42,-54],[53,-227],[10,-98],[51,-29],[109,10],[83,45],[193,23],[564,-199],[178,-165],[118,-58],[298,-54],[75,-42],[103,-109],[78,-53],[72,17],[130,92],[274,313],[168,148],[162,50],[-11,-30],[-91,-60],[-4,-28],[194,50],[70,36],[7,30],[346,-23],[-27,-185],[116,-179],[24,-8],[93,52],[100,-14],[112,-76],[113,49],[208,2],[159,34],[152,87],[75,86],[2,3],[0,0],[127,236],[71,193],[61,245],[147,718],[11,158],[172,592],[83,384],[123,228],[36,146],[-35,172],[-7,211],[-46,382],[18,301],[42,70],[29,79],[-93,265],[71,121],[125,129],[10,48],[-8,116],[-39,78],[-53,42],[-135,-147],[-42,-132],[-39,-37],[-127,7],[-230,196],[-67,4],[-193,-217],[-61,-103],[-19,-78],[-61,-78],[-556,-208],[-124,62],[-49,52],[-57,71],[-135,269],[-297,211],[-155,58],[-173,30],[-35,-33],[-20,-44],[-9,-126],[-70,-347],[-51,45],[-48,6],[-179,-122],[-79,-21],[-136,75],[-123,129],[-16,259],[-64,57],[-34,-43],[-284,137],[-13,-18],[-2,-19],[7,-28],[-128,-147],[49,102],[-1,60],[-224,-101],[-68,-19],[-46,23],[-5,21],[53,41],[148,39],[163,118],[93,80],[1,19],[-471,-42],[105,112],[29,128],[-136,71],[-56,194],[9,128],[-12,237],[-181,144],[-92,27],[-53,-15],[-127,87],[17,65],[44,-29],[59,86],[2,22],[-35,39],[92,-7],[30,-110],[206,65],[20,29],[-94,1],[-112,183],[4,65],[86,39],[48,68],[2,70],[-92,94],[-34,283],[79,103],[4,79],[-160,-26],[-218,-81],[-37,22],[74,462],[229,319],[269,86],[21,-18],[6,-27],[-10,-12],[11,-29],[99,-59],[107,5],[55,58],[-28,24],[94,42],[491,-75],[46,64],[-33,36],[-77,-8],[-65,60],[128,97],[237,40],[-208,208],[-40,93],[25,89],[180,51],[682,-106],[175,29],[55,67],[10,68],[85,97],[435,372],[284,129],[216,46],[517,-48],[82,19],[138,-66],[44,-97],[125,-112],[56,-15],[88,34],[167,-145],[57,-133],[72,-89],[52,3],[49,77],[199,-80],[79,-95],[116,-59],[443,-144],[76,4],[130,76],[279,79],[374,-157],[438,292],[129,114],[80,125]],[[33930,36409],[60,121],[15,378],[-85,389],[-113,223],[-126,184],[-71,62],[-124,21],[-119,60],[-60,138],[-107,59],[0,0]],[[33200,38044],[-184,260],[-183,259],[-92,114],[-123,153],[-503,320],[-421,410],[-53,208],[123,38],[74,-45],[5,-3],[0,0],[4,-1],[91,-11],[16,8],[71,36],[26,40],[0,0],[1,6],[6,75],[45,164],[54,106],[42,81],[69,66],[25,25],[0,0],[12,-4],[14,-5],[0,0],[39,132],[27,93],[-89,114],[-56,9],[0,0],[5,-24],[0,0],[-12,-4],[-13,14],[-18,20],[-71,214],[-7,24],[293,-22],[264,261],[163,82],[23,12],[-32,168],[-17,26],[-44,5],[-31,-10],[-42,-13],[0,0],[-8,-57],[-29,-11],[-27,-11],[-280,-48]],[[32357,41318],[0,0],[-46,-60],[-17,8],[-60,29],[-148,0],[-422,-295],[-138,-40],[-134,-38],[-130,-9],[-44,-31],[-21,-15],[-70,-75],[-143,-154],[-51,94],[-32,-36],[-154,-176],[-5,-15],[-7,-23],[7,-51],[11,-78],[52,-190],[9,-33],[137,-280],[67,-92],[23,-31],[0,0],[3,-1],[33,-18],[135,73],[150,82],[27,4],[43,7],[145,-31],[0,0],[3,-6],[27,-47],[-8,-12],[-11,-16],[-40,1],[0,0],[-17,-113],[-16,-101],[-26,-27],[-13,-11],[-63,-21],[-126,12],[-87,8],[-193,-22],[-90,-73],[-115,-94],[-56,-11],[-48,-10],[-119,-82],[-48,-97],[-26,-53],[0,0],[-100,-104],[-66,-34],[-116,2],[-118,102],[-26,36],[-21,29],[0,0],[51,30],[0,0],[61,254],[-9,73],[-7,52],[-43,91],[-97,62],[-156,102],[-147,-24],[-67,29],[-6,3],[0,0],[-2,7],[-4,23],[1,2],[33,62],[102,93],[51,46],[155,124],[211,101],[54,43],[0,0],[-5,28],[-54,106],[0,0],[-129,52],[-82,33],[-308,-88],[-90,56],[-218,133],[-70,175],[89,1],[208,1],[0,0],[-29,57],[-156,105],[-34,23],[-242,-44],[-122,-21],[-74,-30],[-83,-32],[0,0],[-24,-61],[-7,-99],[-41,-82],[-72,-146],[-94,-152],[-31,-50],[-224,-238],[0,0],[-19,10],[-26,71],[0,0],[40,-241],[-9,-171],[-11,-13],[-15,-17]],[[28307,39638],[-6,-40],[-4,-26],[-99,-266],[-3,-6],[0,0],[-175,-60],[-116,-215],[-63,-117],[-17,-65],[-17,-67],[-10,-154],[-17,-268]],[[27780,38354],[8,-152],[-88,-151],[-118,15],[-4,-4],[-26,-27],[-69,-174],[-25,-277],[-79,-120],[-91,-140],[-1,-65],[0,-32],[103,-106],[112,-234],[8,-18],[5,-25],[6,-31]],[[27521,36813],[-25,-130],[57,-177],[115,-143],[258,-170],[72,-17],[17,-70],[-18,-106],[-75,-72],[-96,-7],[-254,92],[-296,-82],[-183,-318],[-207,-144],[-148,-210],[-6,-63],[-86,-84],[-10,10],[50,258],[154,133],[-17,99],[-212,-13],[-21,25],[-16,92]],[[26574,35716],[0,0],[-2,4],[-54,106],[-105,11],[-89,9],[-67,29],[-47,20],[-57,41],[0,0],[9,16],[-10,9],[-2,2],[-406,-175],[-24,-2],[-188,-16],[-35,-25],[-12,-8],[-16,-69],[62,-132],[146,-203],[32,-44],[0,0],[-139,111],[-87,-15],[-7,-25],[-8,-25],[16,-42],[18,-32],[0,0],[14,-11],[0,0],[-4,-104],[0,0],[-64,133],[0,0],[-49,19],[-71,28],[-33,-63],[65,-134],[-66,16],[-91,183],[-125,310],[0,0],[-106,-118],[-16,-17],[0,0],[-18,-169],[-14,-126],[16,-94],[4,-18],[8,-15],[315,-614],[8,-24],[27,-78],[0,0],[-23,-37],[-87,-50],[-17,3],[-12,2],[0,0],[2,13],[6,34],[16,13],[1,-32],[45,20],[6,36],[-7,14],[-40,88],[-87,47],[0,0],[-55,-77],[0,-15],[0,-30],[14,-49],[2,-7],[0,0],[61,-48],[40,-53],[0,0],[-1,-4],[-4,-16],[-36,-61],[-100,-65],[-36,3],[56,-83],[32,-31],[105,-102],[130,-91],[51,-36],[154,-140],[4,-6],[114,-156],[8,-273],[2,-68],[-19,-81],[0,0],[-47,11],[-38,73],[-124,236],[0,0],[-2,0],[-67,-4],[-172,-80],[-24,-11],[59,-266],[53,-51],[22,-22],[14,9],[7,5],[0,0],[-2,12],[-2,10],[0,0],[38,-62],[-47,-70],[-68,-99],[0,0],[-34,123],[-164,121],[-27,-24],[0,0],[12,-95],[0,0],[6,-19],[66,-225],[146,-632],[-89,103],[-88,102],[-204,4],[-19,0],[0,0],[-111,293],[-45,1],[-48,-39],[6,-152],[0,0],[-124,76],[-5,240],[-2,76],[-69,171],[-72,180],[-85,143],[0,0],[24,131],[43,97],[69,91],[131,86],[165,-16],[320,-232],[57,-9],[36,-5],[77,74],[0,0],[-48,116],[-6,15],[-294,129],[-152,12],[-180,-25],[-276,72],[-47,156],[-14,44],[-11,17],[-39,59],[14,101],[10,68],[-7,35],[-7,41],[0,0],[-91,-14],[-73,105],[-95,140],[-96,308],[-28,18],[-43,27]],[[23716,34806],[-2,156],[0,2],[-76,154],[-119,99],[-59,48],[-85,183],[22,0],[7,0],[50,634],[63,442],[0,142],[-33,23],[-40,28],[-31,-25],[0,0]],[[23413,36692],[-41,40],[-19,18],[-169,314],[-14,32],[-45,104],[-4,58],[0,0],[-28,14],[-26,-24],[-55,-50]],[[23012,37198],[-307,309],[-130,65],[-219,110],[0,0],[68,-11],[79,-13],[94,-49]],[[22597,37609],[0,0],[-24,32],[-8,11]],[[22565,37652],[-70,78],[-293,330],[-66,35],[-96,52],[-170,-26],[-68,36],[-22,43],[3,44],[3,58],[-40,93],[-1,2],[0,0],[-28,8],[-68,18],[-83,89],[-76,121],[-78,124],[-4,17],[-7,26],[13,17],[0,0],[79,30],[-133,206],[-12,19],[0,0],[-23,49],[-34,73],[-8,91],[12,91],[-45,192],[0,0],[-121,137],[-76,44],[-33,18],[-11,-22],[-10,-22],[-52,-246],[0,-2],[-87,-170],[0,0],[-48,-11],[0,0],[-12,15],[-23,31],[-5,62],[0,0],[-7,14],[-83,162],[-55,303],[-1,5],[0,0],[4,10],[4,8],[0,0],[36,-24]],[[20670,39880],[65,101]],[[20735,39981],[26,20],[-2,12],[-4,26],[0,0],[-2,3],[-60,89],[-45,23],[-58,-7],[-93,-13],[-33,-44],[-56,-77],[-157,-96],[-108,-35],[0,0],[21,54],[-8,22],[-105,-84],[-33,-155],[2,-29],[2,-38],[44,-88],[11,-21],[13,-256],[0,0],[-22,35],[0,0],[-17,-12],[-7,-4],[-13,-117],[27,-213],[46,-205],[106,-155],[10,-14],[239,-222],[124,-87],[59,-42],[17,-25],[17,-26],[46,-157],[34,-117],[87,-407],[45,-125],[8,-23],[7,-13],[58,-105],[22,-30],[224,-300],[139,-102],[85,-62],[83,-15],[291,37],[9,1],[0,0],[-24,-265],[-23,-46],[-2,-6],[0,0],[23,-87],[5,-19],[0,0],[192,-137],[460,-328],[242,-201],[23,-19],[0,0],[7,-9],[243,-329],[40,-120],[8,-24],[0,0],[-59,-276],[-11,-10],[-13,-11],[-45,29],[-38,26],[-62,76],[0,0],[-18,42],[3,53],[3,50],[-36,78],[-32,72],[-108,20],[-246,189],[-49,-13],[0,0],[-55,-60],[0,0],[-122,-277],[-17,-71],[-57,-242],[9,-41],[10,-48],[62,-34],[79,-44],[137,-144],[12,-143],[16,-185],[0,0],[-302,-290],[-39,-323],[0,0],[-187,-360],[0,0],[-42,-2],[-98,-5],[-41,34],[-21,55],[0,0],[0,63],[0,85],[220,462],[53,191],[-69,203],[-129,612],[-121,120],[-34,34],[-98,43],[0,0],[-58,49],[-94,80],[-3,11],[-5,15],[8,33],[3,13],[23,34],[-43,91],[-87,184],[0,0],[-42,8],[-74,14],[0,0],[-228,236],[-74,176],[-2,5],[-3,4],[-46,63],[-76,16],[-100,21],[-116,-33],[-170,152],[-85,76],[-281,423],[-131,197],[-218,243],[-30,33],[-10,13],[-269,359],[-115,545],[-55,261],[0,0],[-58,108],[-155,107],[-309,212],[-186,59],[0,0],[-65,-57],[-74,-65],[-52,-87],[-17,-28],[-14,-37],[-52,-132],[-33,-44],[-9,-12],[-79,-55],[-181,-47]],[[17798,38394],[-43,-31]],[[17755,38363],[-5,-15],[-5,-6]],[[17745,38342],[-120,-60],[-169,-212],[-96,-215],[0,0],[-127,-54],[-92,-38],[-94,32],[-94,33],[-48,34],[-202,140],[-59,29],[-52,25],[-159,-18],[0,0],[-23,52],[-9,19],[-161,44],[-53,14],[-7,-2],[-129,-26],[-159,-124],[-84,-65],[-79,-101],[-26,-34],[-36,-136],[0,0],[0,-17],[12,-362],[54,-89]],[[15733,37211],[24,-421],[-29,-77],[-465,-460],[-16,-15],[-555,-251],[-93,-147],[-36,-57],[21,-32],[0,0],[-2,-21],[-6,-112],[-67,-70],[-61,-65],[-183,-356],[-49,-118],[-114,-275],[-27,-95],[-5,-79],[24,-122],[22,-118],[46,-143],[57,-88],[0,0],[7,-4],[90,-54],[13,-70],[-17,-20],[-109,-125],[-137,-94],[-15,-11],[0,0],[-16,-28],[-27,-51],[-183,-539],[0,0],[54,-95],[0,0],[-164,-37],[-110,-25],[0,0],[-47,-51],[-120,-128],[-34,-63],[-31,-56],[-42,-177],[-17,-75],[-36,-73],[-36,-72],[-30,-29],[-218,33],[-670,-23],[-109,-24],[-92,-20],[-169,-118],[-182,-129],[-77,-223]],[[11695,31708],[-2,-41],[0,0],[-2,17],[-3,24],[0,0]],[[11688,31708],[-54,-91],[-65,-36],[-196,170],[-24,21],[0,0],[-8,16],[-55,118],[-86,254],[-23,65],[45,82],[0,0],[-48,69],[-16,22],[-222,235],[0,0],[-225,-1]],[[10711,32632],[1,-9],[1,-15],[-218,-154],[-29,0],[-34,0],[-97,67],[-146,16],[-187,-60],[-40,-13],[0,0],[3,9],[39,111],[50,248],[-4,272],[-4,274],[11,266],[18,20],[22,26],[-5,36],[-4,39],[-4,10],[-6,19],[-81,-31],[-39,-36],[-29,-26],[-65,-12],[-8,-1],[0,0],[-20,212],[117,15],[77,311],[0,0],[-4,-1],[-36,-13],[-59,-141],[-34,-132],[-32,-2],[-123,-7],[-11,45],[-3,11],[37,230],[19,117],[11,42],[48,188],[71,137],[12,23],[83,392],[3,106],[2,62],[65,329],[5,27],[0,0],[7,4],[10,5],[18,59],[9,76],[0,0],[-1,21],[-12,270],[-84,477],[-3,19],[6,47],[19,136],[0,0]],[[10053,36753],[-38,-27],[0,0],[-3,145],[45,129],[0,0],[25,400],[-13,3],[-21,4],[-27,-18],[-24,-17],[-158,243],[-16,37],[6,75],[8,14],[71,134],[66,59],[2,2],[79,28],[149,51],[29,36],[43,56],[16,77],[2,9],[0,0],[185,182],[56,3],[58,2],[61,-27],[140,-149],[54,-7],[486,3],[78,45],[28,16],[600,-206],[197,4],[261,84],[78,-44],[3,-1],[0,0],[3,-1],[215,-54],[62,47],[57,4],[9,1],[145,-96],[192,-8],[15,0],[103,23]],[[13380,38014],[87,76],[43,102],[20,49],[36,244],[50,341],[98,323],[0,0],[29,9],[0,0],[-13,20],[-53,83],[0,0],[-9,-18],[-17,-36],[0,0],[-11,69],[0,0],[15,243],[24,361],[11,32],[34,46],[0,0],[94,-154],[44,-139],[44,-137],[29,-48],[8,-7],[10,14],[-41,152],[-52,200],[-35,66],[-99,102],[0,0],[-10,270],[3,18],[9,51],[-55,190],[-13,33],[-6,17],[-279,178],[-62,127],[-60,122],[0,0],[-8,92],[-20,207],[-22,76],[-10,34],[-11,10],[-10,9],[0,0],[-35,-19],[-5,2],[-107,53],[2,121],[2,75],[-67,79],[-46,15],[-112,-50],[-14,-6],[-148,119],[-186,81],[-77,34],[-132,37],[-79,-35],[0,0],[-122,155],[69,78],[71,211],[-223,-8],[-1,102],[-1,54],[22,43],[78,45],[66,38],[73,19],[75,19],[81,-32],[233,139],[23,6],[128,34],[0,0],[124,-167],[0,0],[11,-5],[146,-62],[71,21],[66,19],[399,21],[0,0],[-77,298],[-117,359],[-36,269],[0,0],[94,-21],[98,-21],[92,-77],[0,0],[-4,-42],[0,0],[87,-154],[0,0],[5,0],[101,14],[233,-66],[81,-23],[111,39],[79,64],[57,46],[0,0],[-78,12],[0,0],[-23,39],[0,0],[9,25],[50,151],[243,147],[152,39],[44,25],[42,24],[48,59],[123,153],[1,317],[0,85],[4,34],[17,141],[0,0],[10,9],[68,64],[299,94],[64,20]],[[15434,44800],[105,79],[147,109],[136,59]],[[15822,45047],[10,4],[66,31],[30,-15],[33,-16],[276,-23]],[[16237,45028],[1,13],[1,9]],[[16239,45050],[-21,29],[-127,28],[-4,-11],[-10,-26],[-20,-4],[-21,-3],[-43,18],[-81,35],[-40,55],[-15,21],[0,0],[69,53],[122,-11],[77,-7],[120,72],[-1,1],[-84,41],[-35,81],[0,0],[122,-58],[38,-15],[68,-26],[75,22],[0,0],[-40,3],[-50,3],[-93,54],[-74,43],[0,0],[-40,119],[0,0],[56,31],[98,135],[81,170],[4,11],[33,102],[12,74],[50,301],[38,33],[41,-7],[38,-7],[155,-164]],[[16737,46246],[1,-44],[-102,-169]],[[16636,46033],[-93,-73],[0,0],[-17,11],[-1,0],[-36,5],[0,0],[4,-22],[162,-64]],[[16655,45890],[207,228]],[[16862,46118],[0,0],[21,46],[5,10],[0,0]],[[16888,46174],[20,110],[7,42],[0,0],[-123,89]],[[16792,46415],[0,0],[-6,86]],[[16786,46501],[-6,70],[15,51],[14,46],[35,37],[38,39],[207,89],[125,18],[164,23],[269,-193]],[[17647,46681],[23,82],[-110,7],[0,0],[-7,16],[-7,15],[0,0],[11,85],[7,48],[0,0],[99,128],[141,14],[223,23],[67,-113],[0,0],[2,-17],[3,-36],[0,0],[-29,-15],[-5,-3],[2,1],[102,15],[119,203],[66,112],[142,8],[37,2],[-172,305],[-16,29],[89,251],[-76,145],[-114,136],[86,28]],[[18330,48150],[0,0],[14,243],[-2,44],[-4,89],[-14,54],[-6,24],[-74,54],[-71,52],[0,0],[-13,-14],[-23,-25],[-47,34],[0,0],[-8,30],[-9,33],[0,0],[7,43],[29,194],[42,-35],[51,52],[0,0],[-2,39],[-41,93],[-22,27],[-11,14],[-41,170],[-2,7],[0,0],[-4,67],[3,16],[35,228],[0,0],[4,-23],[0,-2],[0,0],[53,-52],[93,-49],[39,-20],[0,0],[75,140],[46,85],[45,46],[33,-2],[41,-14],[0,0],[7,-18],[11,-31],[-6,-76],[-2,-23],[59,-58],[24,-24],[0,0],[4,1],[27,6],[0,0],[3,21],[1,10],[0,0],[-12,33],[-29,85],[-41,60],[-11,57],[-10,49],[11,33],[73,71],[55,6],[21,2],[20,-12],[19,-12],[0,0],[27,10],[181,69],[96,-86],[28,-65],[33,-251],[133,-89],[0,0],[3,0],[94,7],[37,-49],[24,-32],[-7,-29],[-14,-57],[-82,-146],[0,0],[-2,-1],[-103,-26],[-32,12],[-12,4],[4,43],[0,0],[-33,-23],[-67,-46],[-54,-157],[-17,-53],[-4,-6],[-190,-309],[-7,-119],[-4,-88],[-57,-123],[-13,-28],[0,0],[-13,-62],[0,0],[44,-23],[85,-44],[0,0],[5,-14],[11,-35],[-3,-24],[-3,-32],[-79,18],[-20,5],[0,0],[-64,-41],[0,0]],[[18695,48082],[130,-18],[100,-13],[14,-118],[-32,-57],[16,-18],[135,-144],[217,-63],[8,0],[85,-3],[53,41],[30,-4],[27,-3],[0,0],[4,-77],[3,-54],[-30,-38],[-63,-79],[27,-107],[231,-62],[0,0],[17,43],[45,111],[250,68],[213,268],[21,-2],[128,-15],[0,0],[-78,-7],[-22,-7],[-10,-4],[-99,-50],[0,0],[-22,-81],[37,-17],[6,-3],[-13,43],[76,63],[32,27],[116,4],[275,-263],[128,-61],[52,-118],[0,0],[-28,-35],[7,-15],[77,-46],[135,-81]],[[20993,47087],[35,18],[94,-17],[97,209],[27,62],[-4,10],[-3,10],[167,70],[61,26],[172,50],[158,46],[40,36],[172,153],[327,192],[200,64],[179,59],[159,0],[54,0],[178,-123],[6,-6],[22,-20],[20,-27],[0,0],[-4,-26],[0,0],[-61,88],[-105,69],[-20,14],[0,0],[-4,-11],[-9,-27],[16,-50],[66,-210],[63,-50],[20,-16],[0,0],[4,-1],[112,-24],[61,5],[66,5],[66,22],[39,13],[77,54],[3,-4],[0,0],[0,0],[1,-1],[0,0],[-16,-15],[-9,-9],[-133,-64],[-43,-17],[0,0],[27,-48],[0,0],[61,-6],[187,150],[0,0]],[[23619,47740],[102,99]],[[23721,47839],[11,10],[43,95]],[[23775,47944],[-54,7]],[[23721,47951],[-32,4],[-10,156],[13,45],[12,42],[221,-6],[36,32],[84,74],[120,177],[6,-1]],[[24171,48474],[-6,1],[0,0],[48,126],[19,101],[2,8],[0,0],[-4,93],[-13,364]],[[24217,49167],[-31,101],[-8,27],[-1,33],[-2,65],[22,250],[15,168],[16,22],[42,55],[111,219],[3,106],[1,25],[0,0],[41,74],[84,152],[432,171],[304,-551],[30,-24],[125,-98],[86,-7],[25,10],[62,23],[115,87],[100,113],[9,10],[-9,222],[-13,331]],[[25776,50751],[62,221],[-65,147],[-26,61],[-109,-92],[-78,47],[-59,36],[0,0],[-38,67],[-67,117],[0,0],[8,148],[-4,16],[-68,240],[0,0],[23,58],[25,64],[25,29],[20,22],[89,45],[19,10],[112,-12],[0,0],[-3,59],[201,100],[130,19],[106,16],[23,-1],[169,-2],[89,71],[49,40],[194,-16],[499,-139],[158,-19],[151,-18],[71,14],[0,0],[21,24],[22,27],[80,-87],[-50,-65]],[[27555,51998],[50,65],[-80,87],[0,0],[9,44],[16,75],[0,0],[61,88],[382,165],[11,4],[0,0],[4,35],[2,11],[1,1],[38,27],[90,-4],[231,-61],[160,-43],[10,5],[11,6],[19,71],[4,14],[0,0],[-12,10],[-133,113],[-128,40],[-70,23],[-93,-20],[-91,12],[-55,7],[-115,108],[-16,14],[-86,137],[0,0],[23,-17],[31,-22],[8,3],[9,3],[0,0],[10,103],[13,144],[-3,4],[-23,41],[-125,-109],[-102,-89],[-151,-33],[-53,35],[155,163]],[[27567,53258],[-155,-163],[-28,-14],[-68,-33],[-237,35],[-515,-129],[-47,-30],[-113,23],[-492,-225],[-297,-82],[-298,-81],[-67,-26],[-37,-14],[8,37],[16,74],[0,0],[-63,-25],[-47,-18],[21,123],[5,189],[0,0],[-27,5],[-24,-12],[-162,-82],[-43,26],[3,43],[36,66],[0,0],[-11,10],[-24,21],[-210,80],[-93,35],[-45,-49],[0,0],[19,34],[11,61],[9,47],[-133,-80],[-85,89],[40,44],[-61,132],[-13,72],[-10,53],[58,107],[57,107],[-14,38],[19,183],[22,63],[14,40],[0,0],[-22,65],[-67,198],[-29,315],[-116,225],[-7,133],[20,77],[6,24],[0,0],[37,56],[77,15],[127,289],[161,-11],[123,67],[39,21],[21,152],[43,85],[65,32],[85,40],[56,91],[-29,41],[-29,-1],[-15,-1],[-26,36],[0,0],[62,15],[252,59],[101,156],[19,29],[292,378],[181,235],[0,0],[4,2],[88,47],[104,23],[23,5],[68,-43],[0,0],[83,67],[-30,139],[-22,77],[19,207],[-49,85],[-62,53],[-33,28],[-267,109],[-157,64]],[[25682,57716],[-455,-11],[-169,35],[-19,4],[0,0],[-69,38],[-131,-26],[-4,0],[0,0],[-57,-109],[5,-83],[0,0],[-18,-18],[-36,-37],[-127,-59],[-46,-30],[-88,-55],[-63,-39],[1,-8],[4,-22],[14,-10],[7,-5],[0,0],[22,-125],[-38,-63],[-61,-102],[-54,-53],[0,0],[-38,-95],[7,-56],[7,-52],[60,-98],[92,-70],[31,-47],[11,-17],[-63,-55],[-83,-71],[-342,-434],[-377,-223],[-82,-34],[-77,17],[-83,-119],[-67,-96],[-191,-11],[-26,-80],[-40,-35],[-84,-71],[-14,-28],[-9,-20],[37,-17],[36,-17],[-5,-17],[-10,-35],[-103,2],[-22,-24],[0,0],[1,-22],[1,-20],[29,14],[6,3],[-29,-44],[-69,0],[-24,0],[0,0],[-104,193],[-23,84],[0,0],[-18,15],[-43,37],[0,0],[-14,0],[0,0],[75,-110],[13,-19],[0,0],[47,-140],[23,-105],[17,-81],[0,0],[-8,-12],[-8,-13],[0,0],[-3,-6],[-56,-116],[-47,-32],[-8,-6],[-81,29],[-16,24],[-29,41],[0,0],[-24,-32],[-23,-33],[22,-113],[6,-10],[38,-56],[-28,-479],[-11,-61],[0,0],[-78,31],[-23,10],[0,0],[-45,-118],[15,-26],[6,-10],[8,-51],[26,-165],[-18,-303],[0,-2],[2,-15],[27,-197],[243,-141],[129,14],[117,-128],[34,-37],[0,0],[-6,-33],[-1,-9],[2,-4],[8,-18],[108,-148],[0,0],[22,17],[8,7],[0,0],[26,-11],[68,-28],[0,0],[57,-179],[0,0],[-32,-90],[-71,-116],[-190,-173],[-171,-22],[0,0],[45,-64],[0,0],[143,-113],[0,0],[38,-60],[-75,-35],[-30,-14],[-24,-16],[-62,-42],[-54,-102],[-21,-42],[-25,13],[-30,102],[7,67],[0,0],[-32,22],[-22,-10],[-87,-244],[-116,-76],[-84,-54],[-205,-32],[-54,6],[-132,15],[-12,-30],[0,0],[15,-11],[12,-8],[119,16],[30,4],[0,0],[0,0],[71,-20],[105,-111],[-91,-48],[-59,17],[-40,12],[0,0],[84,-108],[43,-91],[7,-90],[-24,-10],[-37,-60],[-81,-127],[4,-19],[14,-65],[0,-117],[1,-44],[-20,-37],[12,-210],[-44,-137],[-5,-204],[-37,-153],[-27,-107],[-94,-226],[-27,-67],[-133,-150],[-71,21],[-30,10],[-267,-32],[-129,-54],[-122,-50],[-102,-126],[-24,-64],[-2,-40],[-2,-61],[73,-129],[-4,-36],[-31,-45],[-48,-72],[-21,1],[-39,0],[-51,37],[-14,10],[0,0],[-100,-6],[-194,-76],[-117,30],[-80,20],[-8,24],[0,0],[27,77],[-35,305],[-144,283],[-49,96],[0,0],[91,-36],[0,0],[20,27],[93,128],[-32,197],[0,0],[-84,73],[-176,292],[0,0],[-34,133],[-28,108],[0,0],[-28,61],[-134,297],[-1,17],[-10,128],[44,198],[2,165],[-55,56],[-26,26],[0,0],[-48,3],[-63,-58],[-11,-10],[-34,10],[-53,70],[0,0],[8,85],[6,58],[-21,176],[-31,110],[17,134]],[[19542,51811],[-6,44],[-6,52],[0,0],[-67,-53],[-100,25],[-40,84],[0,1],[19,48],[-20,22],[-26,91],[-8,31],[-35,208],[0,0],[35,36],[23,24],[7,-38],[0,0],[22,104],[3,13],[0,0],[-2,4],[-11,26],[0,0],[-106,-16],[-11,-28],[-11,-32],[26,-122],[0,0],[-10,-12],[-49,-57],[0,0],[-24,-9],[-62,-22],[0,0],[47,-72],[28,-42],[-17,-223],[-3,-5],[-55,-103],[-48,-32],[-136,-7],[0,0],[0,3],[-7,21],[0,0],[-49,31],[-50,32],[-14,-34],[-61,-146],[-64,-39],[0,0],[6,-10],[5,-10],[-21,-47],[-18,-43],[-74,-75],[-186,-190],[-137,-144],[-31,-33],[0,0],[-346,-192],[-85,-1],[-224,53],[-38,1],[-40,1],[-4,30],[-12,111],[-175,23],[0,0],[-102,54],[-76,40],[-32,82],[-49,-1],[-104,83],[-47,104],[-19,42],[29,272],[39,-32],[45,-38],[99,-47],[100,-48],[-14,95],[-23,-14],[0,0],[-42,48],[-59,67],[0,0],[138,156],[-9,27],[-31,99],[0,0],[31,77],[0,0],[-144,3],[-58,-41],[-53,-38],[0,0],[-3,-59],[-25,-44],[-23,-6],[-10,6],[-79,49],[-14,34],[-8,19],[-13,27],[-6,41],[-4,29],[37,102],[0,0],[107,78],[0,0],[7,-59],[6,-41],[0,0],[92,56],[279,171],[13,16],[-124,-79],[-71,-4],[-130,70],[49,63],[71,21],[93,142],[-21,64],[12,24],[203,186],[49,-36],[0,0],[4,-39],[0,0],[61,85],[29,41],[0,0],[-42,-5],[-57,-6],[-188,-89],[-104,-101],[-48,-81],[0,-52],[0,-20],[-71,-1],[-25,0],[-26,98],[-14,52],[-97,-78],[-19,3],[-4,1],[-24,89],[-29,109],[6,46],[132,-19],[37,14],[28,10],[16,28],[13,190],[-19,15],[-17,14],[-60,-28],[0,0],[-13,-66],[-66,-41],[-52,-33],[-20,18],[-36,111],[-12,37],[28,-8],[72,-21],[14,16],[8,10],[0,0],[-26,39],[-115,176],[0,0],[37,30],[64,50],[235,55],[167,-6],[45,-18],[34,-13],[66,33],[77,39],[34,-7],[28,-6],[96,-62],[24,-14],[192,59],[30,38],[14,16],[0,0],[-56,54],[-26,26],[0,0],[-1,-41],[0,0],[3,-5],[23,-43],[0,0],[-12,-9],[-17,-12],[-113,-18],[-92,21],[-87,19],[-198,-6],[-226,-7],[-201,-82],[-50,29],[-70,43],[-66,83],[0,28],[0,0],[81,28],[88,31],[131,17],[0,0],[-203,-16],[0,0],[-32,60],[13,51],[7,27],[0,0],[87,55],[3,10],[17,46],[0,0],[-139,-4],[0,0],[-27,110],[70,41],[61,36],[198,10],[150,-33],[221,-4],[111,51],[0,0],[-262,-14],[-129,23],[-202,36],[-102,30],[0,0],[15,20],[30,38],[0,0],[-25,22],[-50,44],[0,0],[33,60],[62,14],[38,9],[164,-49],[43,-13],[7,95],[97,65],[86,58],[74,31],[99,41],[40,-14],[54,-18],[31,-117],[27,-103],[0,0],[2,5],[50,111],[-56,60],[-72,77],[-121,54],[0,0],[-1,10],[-11,54],[0,0],[35,38],[49,10],[21,4],[190,-35],[99,-18],[147,111],[0,0],[-71,17],[-69,16],[-216,-28],[0,0],[3,46],[1,30],[0,0],[25,13],[12,7],[8,-2],[11,-4],[30,-6],[28,-5],[0,0],[-51,34],[-62,-4],[-15,30],[-8,18],[4,19],[3,10],[63,45],[12,9],[90,8],[65,-62],[42,3],[23,1],[180,28],[99,-133],[18,-25],[112,-75],[47,-32],[0,0],[-7,55],[-274,243],[-28,-8],[-6,-2],[0,0],[0,10],[1,15],[23,31],[29,40],[51,13],[63,-98],[6,-14],[41,-109],[50,-3],[50,-2],[0,0],[-5,80],[-147,75],[-20,64],[-4,14],[17,0],[168,2],[84,57],[0,0],[-7,55],[-8,65],[0,0],[17,16],[45,22],[60,30],[109,22],[111,65],[0,0],[53,86],[69,28],[75,-99],[42,-57],[77,-50],[79,-52],[16,38],[24,56],[238,-9],[28,29],[0,0],[4,102],[0,0],[-134,-38],[0,0],[34,50],[0,0],[91,67],[123,43],[152,54],[0,0],[-21,17],[-65,52],[34,69],[33,66],[0,0],[-97,39],[-115,-110],[-36,-34],[48,-12],[24,-38],[0,0],[-43,-70],[-16,-24],[-394,-214],[-33,3],[-50,4],[-56,104],[2,58],[-57,-12],[-61,-13],[-6,45],[0,4],[0,52],[0,1],[36,47],[130,53],[19,8],[49,139],[0,0],[185,218],[32,61],[0,0],[61,60],[94,37],[49,19],[0,0],[0,1],[11,27],[-28,32],[0,0],[23,28],[0,0],[2,0],[53,-40],[61,-141],[24,-56],[0,0],[221,216],[0,0],[-114,1],[-59,-84],[-4,-6],[0,0],[-42,13],[-26,8],[-83,80],[0,1],[6,33],[0,0],[21,10],[9,4],[120,-82],[0,0],[16,61],[189,128],[-45,81],[0,0],[-171,-96],[0,0],[-16,67],[-3,15],[0,0],[81,72],[144,100],[209,145],[45,-44],[0,0],[2,-9],[7,-31],[-91,-58],[0,0],[144,29],[153,104],[68,70],[25,27],[0,0],[-8,14],[0,0],[-268,-133],[2,7],[19,70],[0,0],[-67,19],[-43,-16],[-74,-28],[0,0],[61,95],[82,125],[38,15],[28,11],[94,353],[0,0],[86,49],[0,0],[1,-1],[97,-54],[0,0],[9,18],[-45,98],[-7,17],[0,0],[-132,-19],[-3,17],[-1,3],[34,24],[43,30],[121,41],[128,44],[208,-13],[123,93],[0,0],[-161,-53],[-124,-15],[-96,-12],[0,0],[-54,162],[12,73],[11,71],[15,28],[39,78],[175,106],[9,53],[0,0],[5,11],[34,70],[89,42],[128,-12],[58,182],[53,18],[10,4],[0,0],[55,-11],[246,6],[28,-8],[109,-31],[0,0],[-2,-39],[-2,-21],[0,0],[25,-12],[0,0],[6,36],[5,36],[-59,46],[-87,66],[-163,-18],[-181,-20],[0,0],[97,163],[203,82],[38,15],[143,-128],[68,-60],[43,39],[0,0],[-98,112],[-78,39],[-50,25],[0,0],[98,140],[2,3],[15,0],[77,2],[99,-66],[9,17],[0,1],[-71,49],[-11,7],[-123,48],[-184,-125],[-44,-12],[-46,-12],[-27,11],[-18,8],[0,0],[86,59],[2,2],[0,0],[124,135],[199,46],[134,-24],[39,63],[0,0],[-17,23],[-6,8],[-163,35],[-23,-1],[-7,0],[-22,-9],[-38,-17],[0,0],[19,-16],[-13,-20],[-33,13],[-26,10],[0,0],[0,0],[-4,27],[0,0],[26,28],[47,50],[111,37],[25,-57],[-7,-9],[-5,-7],[93,28],[0,0],[14,9],[49,36],[106,-260],[129,-66],[0,0],[-53,43],[-21,16],[9,97],[3,31],[68,49],[-33,54],[-15,27],[-39,41],[-33,129],[214,41],[189,-24],[4,-1],[284,37],[73,-11],[0,0],[-31,8],[-223,55],[-47,2],[-150,6],[-18,-16],[-16,-14],[-75,-8],[-88,-11],[0,0],[-3,40],[13,53],[10,46],[15,18],[12,16],[415,161],[106,41],[0,0],[16,-2],[47,-5],[0,0],[-16,14],[-51,44],[-116,-36],[0,0],[-10,14],[6,26],[11,40],[0,0],[81,100],[66,22],[72,23],[59,62],[8,9],[0,0],[7,37],[27,152],[41,34],[0,0],[35,-13],[27,-9],[0,0],[11,-19],[71,-115],[161,23],[0,0],[-111,28],[-49,49],[-40,41],[-2,28],[0,0],[19,17],[52,10],[67,13],[95,-93],[79,-77],[1,10],[3,13],[0,0],[-26,14],[-42,74],[0,0],[-19,114],[0,0],[30,38],[66,85],[223,54],[51,-230],[0,0],[51,69],[0,0],[-26,52],[0,0],[26,45],[20,35],[178,165],[9,8],[24,-10],[14,-6],[10,-20],[18,-37],[-25,-107],[-64,-275],[0,0],[202,74],[0,0],[-29,207],[0,0],[142,67],[42,-65],[0,0],[20,3],[50,48],[34,34],[0,0],[-3,53],[0,0],[44,4],[129,13],[207,-196],[74,11],[0,0],[-41,106],[-44,115],[-242,93],[-92,71],[-39,31],[0,0],[112,51],[86,-20],[44,-11],[106,22],[117,24],[141,-31],[103,-57],[98,-54],[128,-150],[117,11],[0,0],[-31,145],[-22,108],[236,182],[124,39],[66,64],[13,14],[119,124],[-22,91],[63,69],[0,0],[57,8],[67,10],[114,-34],[93,-74],[55,89],[125,-11],[98,-9],[12,-25],[10,-19],[-395,-302],[0,0],[10,-14],[10,-15],[16,1],[16,1],[13,-59],[1,-4],[0,0],[-31,-53],[-43,-75],[-25,-15],[-15,-9],[-14,-127],[13,-13],[21,-21],[76,17],[0,0],[43,27],[116,152],[-1,23],[-1,14],[76,132],[196,226],[146,124],[68,57],[66,26],[19,7],[26,-50],[0,-19],[1,-57],[-38,-81],[-75,-303],[3,-8],[6,-14],[0,0],[132,73],[60,34],[32,44],[0,0],[48,135],[0,0],[42,29],[126,86],[0,0],[-31,41],[-19,25],[0,0],[-27,3],[-52,5],[-32,27],[0,0],[21,34],[32,52],[238,40],[127,-10],[134,-11],[63,-30],[71,-35],[0,0],[-28,-69],[-41,-37],[-51,-46],[-160,-83],[-153,-79],[0,0],[177,33],[0,0],[21,-139],[197,-36],[0,0],[-5,36],[-3,23],[-16,18],[-2,2],[0,0],[35,86],[38,94],[87,86],[95,27],[23,-6],[90,-20],[27,-30],[23,-26],[10,-46],[3,-10],[0,0],[307,-16],[86,-54],[77,-48],[289,-125],[16,-7],[42,-67],[9,-64],[-336,-118],[-296,-69],[-267,42],[-287,45],[11,-16],[35,-51],[248,-54],[235,-52],[11,-25],[15,-36],[-78,-158],[-11,-22],[249,20],[58,44],[78,59],[220,-48],[0,0]],[[28844,61198],[128,-25],[71,-14],[40,-16],[48,-19],[0,0],[0,-38],[9,2],[29,4],[206,111],[0,0],[-9,47],[-10,48],[97,-15],[146,-22],[317,-104],[7,-8],[9,-11],[-12,-68],[-95,-60],[-18,-11],[-284,51],[-36,46],[-2,2],[0,0],[-15,-49],[-8,-28],[0,0],[116,-68],[50,-29],[76,-30],[172,-67],[101,28],[52,15],[24,2],[29,1],[16,-12],[17,-12],[-7,-39],[-3,-18],[0,0],[-38,-26],[0,0],[13,-45],[9,-31],[0,0],[-102,-91],[-53,-47],[0,0],[46,7],[108,17],[71,92],[0,0],[-9,34],[-5,22],[0,0],[51,17],[86,28],[243,-10],[161,-43],[216,-58],[21,3],[15,3],[0,0],[-6,20],[-2,8],[0,0],[39,23],[446,-136],[30,-9],[636,-336],[206,-169],[177,-145],[244,-84],[319,-191],[85,15],[54,9],[16,-14],[288,-236],[55,8],[133,-65],[9,-16],[24,-47],[-13,-149],[19,-67],[19,-68],[92,-90],[18,-19],[0,0],[13,-71],[-48,-158],[-25,-85],[-121,-118],[-272,-268],[-109,-66],[-74,-46],[-656,-173],[-153,-7],[-114,19],[-81,13],[-471,170],[-243,18],[-420,82],[-195,119],[-288,97],[-302,102],[-61,3],[-46,2],[0,-32],[-20,-4],[-7,-1],[-15,7],[-34,14],[-195,142],[-83,60],[-30,50],[0,0],[19,41],[0,0],[-102,22],[-150,32],[-77,-2],[-133,-3],[0,0],[63,-21],[63,-21],[28,13],[7,3],[0,0],[46,-34],[127,-92],[27,-55],[33,-66],[1,-10],[5,-49],[0,0],[115,-49],[1,-43],[3,-63],[-33,-42],[0,0],[207,-52],[79,-2],[58,-2],[8,-30],[-7,-34],[-10,-53],[-73,-15],[-162,-34],[-16,-7],[-22,-10],[0,0],[289,39],[115,-52],[13,-16],[12,-16],[118,-7],[165,-110],[30,-19],[89,-136],[-7,-30],[-11,-42],[0,0],[-6,-4],[-31,-20],[0,0],[63,-166],[0,0],[-32,-77],[-80,-52],[-86,-57],[0,0],[34,-50],[60,-89],[110,-211],[7,-411],[0,-5],[68,-51],[180,-132],[128,60],[15,7],[21,-10],[69,-36],[190,-189],[0,0],[17,-85],[25,-28],[188,-59],[351,-111],[205,93],[39,38],[52,49],[0,0],[-16,293],[-94,92],[-19,-2],[-69,-5],[-153,-69],[-84,42],[-274,290],[-32,68],[-31,61],[0,19],[-2,29],[0,0],[69,70],[124,126],[95,13],[254,-97],[228,-178],[56,-118],[91,24],[101,27],[95,-19],[61,-12],[84,-46],[222,-123],[104,27],[304,-44],[22,0],[28,1],[66,125],[-97,88],[-66,195],[-80,46],[-193,247],[-10,13],[-1,56],[-1,80],[19,44],[17,41],[496,309],[100,62],[212,85],[221,206],[15,29],[50,92],[54,24],[34,-11],[115,-39],[37,-42],[5,-5],[84,3],[178,6],[143,-75],[63,-32],[35,-41],[9,-55],[0,0],[4,-3],[163,-118],[0,0],[5,31],[11,72],[105,281],[87,163],[4,104],[2,48],[-11,80],[-83,98],[-66,77],[-62,30],[-43,-8],[-30,-5],[-34,25],[-18,14],[0,0],[8,65],[9,71],[124,263],[40,83],[23,188],[7,54],[0,0],[3,227],[0,0],[-44,42],[-56,54],[-292,171],[-34,28],[-31,26],[0,0],[0,25],[0,0],[41,0],[48,0],[144,-59],[289,-54],[38,-7],[370,-10],[249,-51],[79,-27],[50,-17],[0,0],[-26,8],[-29,9],[-6,-7],[-9,-9],[270,-236],[120,-228],[-7,-65],[0,0],[-603,-80],[-16,-10],[-32,-17],[-157,-187],[-30,-89],[1,-28],[1,-18],[168,-87],[97,-83],[68,-59],[13,-20],[87,-129],[64,-37],[39,-24],[239,-2],[488,77],[80,91],[3,57],[3,57],[62,306],[14,23],[59,97],[393,45],[0,0],[-19,93],[-11,52],[57,2],[110,4],[174,78],[235,137],[382,223],[586,164],[21,-3],[31,-3],[16,-22],[13,-19],[16,-70],[-6,-5],[-42,-31],[0,0],[33,-23],[38,-27],[124,64],[62,32],[16,28],[12,22],[0,0],[-147,100],[-16,-7],[-17,-8],[-48,18],[119,59],[391,196],[75,21],[169,47],[270,28],[33,-7],[31,-7],[0,0],[-448,-72],[-10,-24],[-1,-2],[12,-9],[13,-9],[92,-31],[36,-13],[0,0],[-46,-374],[0,0],[-180,-20],[-64,-7],[-4,-5],[-71,-89],[-3,-14],[-18,-70],[9,3],[46,15],[0,0],[-3,17],[-2,13],[0,0],[26,31],[101,8],[115,10],[66,-42],[118,-75],[384,144],[-5,28],[-6,30],[0,0],[5,7],[29,46],[87,60],[96,65],[112,26],[125,29],[128,2],[192,3],[171,-59],[68,-24],[15,1],[111,10],[74,50],[73,112],[96,60],[62,21],[449,151],[197,-17],[-29,-250],[-40,-14],[-9,-24],[-30,-78],[10,-113],[1,-7],[0,0],[195,-63],[29,2],[40,4],[45,25],[71,38],[12,26],[4,10],[-13,39],[0,0],[24,51],[13,29]],[[42681,22254],[-156,14],[-252,54],[-102,44],[-306,61],[-446,183],[-18,26],[-79,378],[-28,208],[0,138],[-26,147],[-52,163],[-55,110],[-41,26],[-212,20],[-292,-165],[-128,-199],[-283,-223],[-85,23],[-109,96],[-220,74],[-200,129],[-211,213],[-203,254],[-81,210],[-180,164],[-171,-3],[-174,146],[-197,857],[2,83],[-33,52],[-102,306],[-228,467],[-133,155],[-170,-123],[-125,136],[-31,133],[18,-2],[22,68],[-37,55],[-126,-63],[-29,-54],[-4,-35],[43,-120],[-7,-104],[-21,-43],[-99,-69],[-94,42],[43,-34],[-4,-19],[-59,-1],[-79,70],[-153,57],[3,-49],[33,-162],[-6,-215],[-74,-56],[-74,-120],[58,-42],[51,21],[84,-119],[119,-416],[34,-180],[30,-50],[55,-279],[91,-355],[181,-273],[-24,-30],[104,-212],[74,-39],[53,-59],[181,-267],[-6,-51],[18,-148],[21,-56],[56,-46],[20,-64],[-2,-101],[-46,-147],[-10,-121],[16,-153],[186,-412],[17,-193],[82,-226],[31,-41],[27,45],[-45,298],[-8,320],[50,77],[23,-36],[14,55],[28,311],[50,98],[70,72],[163,-214],[-16,-163],[-39,-177],[70,-247],[-3,-167],[-31,-134],[-56,-205],[-65,-143],[28,32],[56,10],[-45,-226],[98,-40],[5,60],[58,-79],[28,-97],[7,-87],[19,-28],[119,-33],[110,41],[95,92],[73,28],[320,-24],[117,-53],[136,13],[107,67],[152,132],[91,241],[19,117],[39,80],[583,908],[54,202],[60,171],[93,96],[44,2],[-31,-116],[-34,-349],[-45,-177],[35,-26],[8,-65],[7,-475],[51,-246],[55,-166],[161,-345],[101,-146],[331,-203],[179,-59],[161,-22],[78,-99],[308,-731],[70,-107],[127,-28],[20,-90],[-15,-176],[-186,-575],[-174,-268],[-101,-196],[-98,-319],[-52,-229],[-40,-57],[-105,38],[-8,31],[39,126],[-41,37],[-54,-50],[-116,-382],[-47,-283],[-12,-189],[31,-362],[-100,-201],[-126,-14],[-125,-56],[-111,-98],[-81,-184],[1,-87],[-39,-251],[-91,-191],[-296,-29],[-143,-71],[-59,-163],[-20,-163],[14,-75],[-15,-106],[-85,-172],[-66,-58],[-72,-31],[-49,28],[-15,39],[-67,10],[-227,-41],[-440,-294],[-281,-175],[-68,-80],[-80,-199],[-26,-148],[7,-102],[-37,-245],[-234,-210],[-175,-123],[-617,-306],[-257,-169],[-142,-125],[-116,-302],[-71,-106],[-183,-40],[-64,11],[-47,36],[-47,-3],[-361,-394],[-233,-141],[-318,-15],[-178,-61],[-314,-451],[-358,-182],[-159,0],[-167,90],[-147,418],[-13,68],[11,116],[-35,458],[-66,323],[-45,529],[-43,204],[-34,40],[-5,220],[28,582],[-27,266],[-24,243],[-115,321],[-76,296],[-225,379],[-171,415],[-82,255],[-95,455],[-146,514],[-136,258],[-191,250],[-77,-4],[-157,245],[-60,192],[-85,145],[-46,144],[-49,179],[19,203],[-57,465],[23,199],[0,236],[-79,363],[-62,162],[-170,579],[-80,120],[-235,253],[-159,224],[-76,332],[-1,196],[-89,301],[-210,546],[-151,380],[-308,758],[-125,373],[-102,238],[-77,52],[-177,-18],[-12,65],[76,419],[38,364],[44,261],[9,163],[-35,-44],[-21,-18],[-55,-143],[-120,-729],[-26,-248],[-1,-183],[-105,-193],[-49,27],[-140,167],[-208,384],[-85,338],[-125,347],[-169,670],[-47,-30],[-65,-305],[148,-451],[40,-227],[219,-528],[177,-374],[-29,-18],[41,-217],[41,-128],[58,-89],[39,-194],[30,-178],[-7,-157],[353,-1050],[250,-899],[135,-276],[21,-159],[-19,-147],[0,-224],[37,-257],[23,-76],[27,-173],[20,-56],[57,-108],[239,-265],[136,-193],[122,-154],[-5,-45],[-1,-7],[-1,-184],[18,-154],[93,-349],[27,-345],[15,-693],[34,-455],[66,-553],[45,-142],[81,3],[33,-36],[104,-133],[129,-272],[156,-196],[116,-334],[58,-221],[99,-665],[63,-563],[205,-663],[45,30],[-11,34],[5,98],[9,38],[34,32],[60,-86],[30,-79],[-19,-42],[5,-30],[55,-183],[29,-50],[33,-35],[60,67],[68,-11],[66,-66],[19,-46],[-2,-52],[28,-65],[59,-3],[130,-80],[157,-375],[119,-235],[220,-327],[122,-320],[125,-264],[70,-79],[39,44],[51,-52],[16,-58],[109,-288],[29,-229],[-22,-121],[-284,-217],[-122,-144],[16,-57],[29,-36],[34,10],[-9,47],[61,43],[172,8],[25,-70],[25,-42],[85,-85],[23,-53],[16,-106],[81,-212],[113,-206],[170,-241],[126,-44],[214,57],[332,319],[219,-30],[84,-75],[50,-8],[103,56],[211,236],[211,136],[78,-65],[183,25],[86,79],[260,43],[56,-21],[205,78],[328,157],[167,144],[46,104],[15,90],[34,41],[64,28],[236,-113],[4,-47],[-88,-527],[36,-675],[-129,-259],[-35,-555],[-322,-1099],[-57,-105],[-95,-279],[-119,-453],[-146,-411],[-69,-285],[-14,-180],[-56,-240],[-142,-432],[-243,-637],[-88,-275],[-537,-1085],[-382,-689],[-72,-99],[-573,-614],[-539,-837],[-307,-601]],[[23677,52982],[1,-2],[3,-4],[9,-26],[3,-15],[0,0],[27,-2],[6,-5],[109,-91],[0,0],[3,-34],[-32,-31],[-3,-2],[0,0],[-11,-26],[-42,-93],[-87,25],[-60,17],[-4,3],[-1,0],[-1,1],[0,0],[-2,5],[-5,11],[0,2],[-1,1],[0,1],[0,1],[0,0],[-19,66],[-5,23],[-8,33],[0,0],[27,16],[21,13],[8,-7],[-2,-35],[6,-26],[4,-11],[1,-2],[0,0],[1,0],[1,0],[2,-1],[2,0],[2,1],[3,2],[17,33],[3,7],[8,16],[15,46],[-1,2],[-3,12],[-11,7],[-30,16],[-5,2],[-8,9],[0,0],[1,8],[0,4],[8,15],[6,5],[15,9],[5,4],[2,0],[2,0],[3,1],[1,0],[8,-2],[7,-2],[1,0]],[[24155,52533],[0,0],[0,0],[0,0],[-1,-1],[0,0],[0,0],[-1,0],[-2,0],[-5,0],[-1,0],[-13,8],[0,0],[0,0],[-1,1],[0,0],[-1,0],[-3,3],[-2,2],[0,0],[-6,7],[0,1],[0,0],[-1,1],[3,2],[5,3],[16,10],[0,0],[1,-1],[1,0],[0,0],[3,-12],[8,-24]],[[23918,52623],[3,0],[2,-1],[0,-1],[1,0],[1,-1],[0,0],[7,-5],[0,0],[-2,-5],[-1,-4],[-1,-1],[0,0],[-1,0],[0,0],[-49,-1],[-6,0],[0,0],[-4,3],[-10,8],[0,0],[12,8],[9,6],[1,1],[38,-7]],[[23986,52661],[2,-2],[12,-10],[0,0],[1,-2],[1,-1],[2,-3],[0,0],[1,0],[0,0],[-3,-6],[-4,-7],[-6,-6],[-28,-8],[0,0],[-3,1],[-3,2],[-5,7],[-1,2],[1,3],[1,1],[0,0],[1,1],[0,0],[11,22],[2,2],[1,1],[3,2],[1,1],[3,2],[3,2],[0,0],[0,0],[7,-4],[0,0]],[[23970,52666],[0,0],[-4,-6],[-11,-18],[-6,-6],[-4,-5],[-5,-5],[-2,-2],[-1,0],[-1,0],[-2,0],[-3,1],[0,0],[-1,1],[0,1],[-1,1],[2,9],[5,21],[0,1],[2,1],[2,3],[1,1],[5,1],[5,1],[1,0],[9,2],[3,0],[1,0],[1,0],[4,0],[0,-1],[0,-1]],[[23930,52641],[-1,-1],[0,0],[0,-1],[-5,-4],[0,-1],[-2,-2],[-25,-3],[1,7],[0,0],[0,0],[2,3],[13,19],[13,12],[2,2],[4,-1],[0,0],[1,0],[2,-1],[2,-1],[-2,-10],[-5,-18]],[[23836,52729],[0,0],[1,24],[0,1],[0,1],[0,0],[0,0],[1,0],[0,0],[1,0],[0,0],[2,0],[0,-1],[2,0],[9,-8],[2,-9],[1,-5],[1,-12],[0,-8],[-10,-29],[-9,-12],[-2,-1],[0,0],[-2,2],[-18,22],[0,0],[0,2],[0,1],[-1,2],[0,2],[5,22],[3,20],[2,6],[0,3],[0,1],[1,3],[0,0],[1,0],[1,0],[0,0],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[1,-1],[0,0],[1,0],[0,0],[0,-1],[1,-20]],[[24038,52817],[5,-6],[0,0],[1,-2],[7,-8],[0,0],[0,-2],[4,-10],[0,0],[-2,-4],[0,0],[-1,-2],[0,-1],[0,0],[0,0],[-1,-1],[-1,-1],[-4,-1],[-7,-2],[-12,13],[0,2],[0,2],[0,2],[3,10],[1,2],[2,3],[1,2],[2,2],[0,1],[0,0],[1,0],[1,1]],[[23907,52842],[3,-3],[10,-9],[-1,-5],[-2,-6],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-13,-25],[-1,0],[0,0],[-3,-2],[-2,-2],[-1,0],[-1,-1],[0,0],[-1,0],[0,0],[-20,33],[-3,11],[0,6],[1,25],[0,1],[0,1],[0,0],[1,1],[1,-1],[7,0],[1,0],[0,0],[1,0],[5,-3],[1,0],[0,-1],[2,0],[18,-14]],[[23538,52859],[-4,-85],[-5,-22],[0,0],[0,-2],[1,-1],[-1,-1],[0,0],[0,-2],[-1,0],[-6,-3],[-1,0],[0,-1],[-5,-1],[-17,1],[0,0],[0,1],[-3,4],[-7,16],[-1,11],[0,7],[0,13],[23,55],[7,14],[7,13],[5,5],[0,0],[8,-22]],[[24069,52886],[-2,1],[-1,0],[-1,10],[-1,6],[0,1],[1,2],[2,11],[1,1],[1,2],[0,1],[1,0],[0,2],[2,1],[2,1],[0,1],[2,2],[8,5],[0,0],[2,0],[1,0],[1,-1],[3,-6],[1,-1],[0,-1],[0,-4],[0,-1],[0,0],[0,-1],[0,-1],[-1,-3],[-2,-5],[-1,-4],[0,-1],[-1,-1],[0,-1],[-6,-6],[-1,-1],[-11,-9]],[[38228,22673],[-17,-46],[-41,108],[-16,243],[21,24],[39,-23],[-6,-16],[31,-62],[1,-75],[-12,-153]],[[2968,13452],[11,-7],[16,-26],[75,-140],[6,-14],[33,-75],[3,-19],[3,-14],[0,-7],[1,-8],[-1,-1],[0,-1],[-25,-67],[-14,-6],[-11,2],[-43,9],[-24,27],[-10,14],[-9,18],[-17,53],[-10,45],[4,174],[1,12],[2,11],[2,8],[2,5],[4,6],[0,0],[1,1]],[[2522,13064],[6,-32],[0,-1],[1,-3],[0,-13],[-1,-5],[-2,-10],[-3,-6],[-6,-8],[-3,-3],[-3,0],[-6,4],[-4,3],[-11,21],[1,14],[2,12],[4,11],[8,6],[17,12],[0,-1],[0,-1]],[[2676,13196],[3,0],[6,-3],[1,-1],[2,-1],[10,-13],[4,-9],[0,-1],[1,-3],[5,-33],[1,-5],[4,-72],[0,-5],[-2,-11],[-1,-6],[-3,-7],[-1,-2],[-3,-5],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-2,-3],[-9,-9],[-1,-1],[-1,-1],[-6,-6],[-9,-4],[-3,-1],[0,0],[-1,0],[0,0],[-13,2],[-4,3],[-3,1],[-3,4],[-2,2],[-1,0],[-1,2],[-32,47],[-1,2],[0,5],[-1,3],[0,26],[1,15],[0,3],[1,4],[7,27],[5,9],[10,17],[9,10],[7,4],[14,13],[6,7],[3,4],[6,-3]],[[3263,13430],[1,-1],[1,0],[0,-1],[3,-6],[0,-1],[0,-1],[1,-2],[1,-4],[1,-15],[4,-45],[2,-41],[0,-4],[0,-4],[-1,-5],[-5,-14],[-4,-7],[-1,-2],[-17,-19],[-1,-1],[-1,-1],[-2,0],[-4,0],[-8,1],[-2,1],[-6,4],[-2,2],[-10,16],[-2,4],[-2,9],[0,1],[0,3],[1,24],[2,22],[6,58],[14,39],[4,0],[27,-10]],[[3418,14225],[5,2],[26,-15],[9,-18],[15,-34],[1,-7],[1,-5],[1,-29],[0,-19],[-5,-22],[-6,-12],[-47,-56],[-9,-2],[-26,0],[-35,29],[-2,3],[-1,0],[0,1],[-1,0],[-1,1],[-1,2],[-3,6],[0,2],[-1,1],[-2,12],[1,4],[3,33],[19,81],[59,42]],[[2690,14620],[2,0],[1,0],[119,-54],[3,-1],[2,-2],[6,-4],[11,-15],[6,-9],[1,-1],[1,-5],[-1,-1],[-3,-12],[-1,-2],[-1,-2],[-1,0],[-1,0],[-27,2],[-96,-1],[-58,39],[-5,7],[-3,8],[-2,5],[0,5],[0,2],[0,12],[0,1],[1,5],[0,2],[1,2],[2,3],[13,11],[2,1],[1,1],[3,1],[13,4],[11,-2]],[[2485,14730],[35,-37],[1,0],[0,-1],[0,-1],[0,0],[0,-3],[0,-2],[-3,-6],[-4,-2],[-9,-2],[-2,-1],[-2,0],[-7,1],[-2,3],[-19,25],[0,1],[-2,9],[-1,3],[1,1],[3,12],[3,7],[0,0],[1,0],[7,-7]],[[3363,14768],[8,-46],[7,-98],[1,-9],[-8,-56],[-3,-6],[-9,-6],[-5,2],[-27,102],[-4,74],[0,14],[3,14],[1,3],[3,3],[27,21],[1,1],[3,-5],[0,-1],[1,-1],[1,-6]],[[2411,14838],[1,-1],[1,-2],[1,-1],[1,-1],[2,-6],[14,-40],[-1,-47],[-47,-26],[-10,5],[-21,17],[-19,20],[0,12],[4,14],[9,18],[1,3],[1,0],[55,34],[3,1],[3,1],[0,0],[1,0],[1,-1]],[[2344,15067],[18,-19],[25,-41],[0,-1],[1,-3],[0,-1],[0,-1],[0,-4],[1,-12],[-1,-1],[0,-1],[-2,-5],[-9,-20],[-2,-4],[-89,-117],[-1,-1],[-9,-5],[-6,-2],[-36,-1],[-13,31],[-20,83],[-1,2],[0,2],[0,1],[0,6],[1,6],[3,7],[7,20],[1,2],[3,4],[101,84],[28,-9]],[[30300,30662],[-26,-8],[-42,21],[-2,-2],[-2,2],[-19,-3],[-30,-80],[-24,-59],[-49,-37],[-57,-40],[-15,-7],[-30,-14],[-5,-2],[-6,0],[-113,-53],[10,-72],[-130,77],[-3,-2],[-16,-6],[-4,0],[-2,1],[-18,10],[-20,11],[-58,34],[-11,8],[-32,35],[-31,97],[-14,71],[-12,68],[16,44],[106,80],[183,161],[27,20],[75,-12],[73,-13],[16,-3],[14,-4],[24,-3],[1,0],[1,0],[5,0],[19,1],[18,4],[62,18],[128,62],[16,9],[29,16],[53,38],[60,53],[51,50],[23,16],[75,48],[1,0],[0,1],[1,0],[10,2],[3,-2],[-5,-26],[-10,-18],[-153,-157],[-123,-121],[10,-222],[5,-78],[-53,-14]],[[20587,47926],[25,-73],[51,-24],[46,-21],[0,-81],[1,-86],[-47,7],[-32,4],[-64,-77],[0,0],[-38,41],[-62,65],[45,85],[24,-9],[107,-39],[9,49],[-22,56],[-7,16],[-49,28],[-105,-24],[0,0],[50,94],[55,13],[5,1],[5,-16],[3,-9]],[[19668,48088],[26,-8],[17,-5],[0,0],[1,0],[14,1],[11,34],[9,30],[0,0],[23,-24],[61,-69],[17,-56],[-4,-49],[-2,-17],[0,0],[-42,-3],[-116,-11],[-194,91],[-17,22],[-24,31],[0,0],[18,12],[28,17],[0,0],[-40,40],[7,32],[49,27],[19,10],[18,-2],[22,-2],[99,-101],[0,0]],[[21398,48242],[-17,-23],[-1,-1],[-187,92],[8,69],[6,56],[8,18],[17,39],[0,0],[69,-61],[35,-32],[30,-23],[49,-39],[-17,-95]],[[19193,48723],[-17,-107],[0,0],[87,61],[0,0],[-4,87],[67,-114],[0,0],[8,-30],[32,-135],[-43,-195],[0,0],[-121,-31],[-125,47],[-43,61],[-16,23],[-56,-14],[-114,298],[0,0],[110,43],[155,61],[59,-33],[21,-22]],[[20202,48924],[-74,-152],[0,0],[-52,-159],[-11,-31],[-75,-327],[-93,12],[-86,11],[-11,98],[-3,26],[-20,7],[-6,2],[-122,9],[-108,146],[0,0],[-42,180],[-9,39],[59,91],[0,0],[45,30],[185,124],[0,0],[10,-67],[22,-153],[15,4],[4,0],[9,24],[14,34],[41,-28],[54,-38],[12,29],[11,29],[-22,132],[-2,9],[-12,22],[-27,49],[-9,5],[-27,17],[0,0],[70,51],[52,37],[63,9],[33,5],[46,-17],[0,0],[83,-49],[0,0],[-4,-48],[-13,-162]],[[19234,50227],[-88,-218],[-14,-35],[0,0],[-48,2],[-7,1],[-96,86],[-441,-54],[-175,-72],[-46,-46],[-52,-103],[-36,-70],[28,-14],[12,-7],[0,0],[-5,-33],[-3,-28],[-133,109],[0,0],[3,32],[2,33],[0,0],[49,108],[132,170],[0,0],[302,25],[65,6],[95,89],[76,136],[0,0],[150,150],[174,103],[42,25],[2,-16],[4,-20],[0,0],[-4,-6],[-46,-77],[4,-22],[4,-30],[28,-39],[17,-24],[0,0],[5,-161]],[[33272,13702],[42,-10],[20,31],[-37,24],[47,5],[45,-51],[6,-59],[-203,33],[-31,81],[40,30],[11,80],[-42,58],[31,-1],[40,-45],[31,-176]],[[25116,51396],[11,-8],[165,-125],[-12,-23],[-42,28],[-14,9],[-85,-82],[-77,-73],[0,0],[-371,-218],[-86,245],[0,0],[31,81],[14,23],[25,39],[96,48],[149,76],[7,-5],[15,-11],[174,-4]],[[25105,51708],[65,-113],[0,0],[-18,2],[-39,4],[-113,-73],[-29,-9],[-88,-26],[-107,186],[46,1],[27,1],[0,0],[67,77],[23,58],[15,-4],[10,-3],[141,-101]],[[10848,54632],[27,-37],[8,-15],[21,-37],[4,-7],[2,-3],[61,-62],[51,-61],[2,-7],[3,-8],[9,-46],[2,-25],[0,0],[0,-1],[-1,0],[-5,-5],[-2,-2],[-7,2],[-2,0],[-1,1],[-2,1],[-3,2],[-7,5],[-11,9],[-32,30],[-42,47],[-12,13],[-50,47],[-15,2],[-41,35],[-9,11],[-6,7],[0,0],[1,8],[1,5],[5,61],[2,11],[2,15],[1,2],[0,1],[0,0],[1,1],[4,5],[17,2],[24,-7],[0,0]],[[10976,54024],[27,-14],[13,-7],[48,-148],[0,-2],[-2,-13],[-1,-3],[-5,2],[-5,2],[-9,5],[-13,6],[-53,53],[0,0],[0,1],[-7,9],[0,0],[-28,55],[-25,49],[-2,8],[-5,14],[0,2],[0,0],[9,17],[0,0],[1,1],[0,1],[1,0],[0,0],[7,1],[1,0],[2,1],[0,0],[0,0],[7,1],[7,1],[2,1],[1,0],[1,-1],[3,-2],[6,-4],[1,0],[0,-1],[0,0],[16,-31],[2,-4],[0,0]],[[10979,54185],[0,0],[8,-2],[4,-1],[2,-1],[2,0],[0,-1],[1,0],[2,-2],[0,-1],[1,0],[0,-1],[0,0],[1,-1],[0,0],[2,-6],[2,-4],[2,-5],[0,0],[0,-1],[1,-1],[0,-4],[1,-2],[0,0],[0,0],[-12,-2],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[-14,14],[-2,1],[0,3],[0,8],[0,1],[0,1],[0,1],[1,3],[1,2],[0,0],[0,1]],[[10955,54291],[20,-5],[20,-4],[0,0],[0,0],[1,-1],[1,0],[1,0],[1,-1],[22,-13],[29,-17],[17,-22],[4,-4],[0,0],[1,-26],[1,-34],[-10,-10],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-38,31],[-43,36],[-15,26],[-13,20],[-10,20],[0,0],[17,2]],[[11072,54372],[1,-2],[5,-5],[0,0],[1,0],[13,-27],[0,-2],[0,-1],[0,-2],[0,-1],[0,0],[-1,-3],[0,0],[0,-1],[0,0],[-1,0],[0,0],[0,-1],[0,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-5,4],[0,1],[0,0],[-1,0],[-1,2],[-13,18],[-1,19],[1,11],[0,0],[5,-7],[1,-1]],[[10633,54473],[9,-7],[6,-4],[1,-10],[-21,3],[-10,1],[-9,1],[-7,0],[-9,-1],[-4,3],[0,0],[26,11],[6,2],[3,2],[3,0],[4,-1],[1,0],[0,0],[1,0]],[[10869,54456],[2,-1],[1,0],[1,-1],[2,-3],[2,-4],[0,-1],[2,-4],[1,-2],[0,0],[0,-1],[0,-1],[1,-1],[0,0],[-9,-18],[-2,-5],[0,0],[-21,-9],[-17,-8],[-20,-7],[-8,0],[-5,0],[-26,12],[-33,16],[-7,8],[-27,34],[-7,10],[-6,8],[-2,6],[-1,12],[1,1],[0,1],[1,1],[4,0],[3,0],[95,7],[37,-25],[38,-25]],[[11237,54629],[-1,-13],[-4,-28],[-1,-2],[-5,-6],[-6,-1],[-14,-5],[-6,9],[-11,20],[0,0],[-1,4],[0,0],[0,1],[0,1],[2,3],[0,1],[0,0],[2,2],[1,0],[0,1],[2,0],[0,0],[25,18],[1,1],[1,0],[0,0],[2,1],[2,0],[1,1],[1,0],[0,0],[1,0],[6,-6],[2,-2],[0,0]],[[10928,54668],[31,-26],[46,-37],[9,-10],[30,-34],[41,-66],[2,-4],[-11,-30],[-17,-38],[0,0],[-1,0],[-1,-1],[-1,-1],[0,0],[0,0],[-4,0],[-1,0],[0,0],[-17,30],[-93,62],[-24,25],[-5,6],[-2,2],[-22,35],[-17,47],[0,10],[1,7],[26,14],[8,4],[7,3],[4,2],[0,0],[1,0],[5,0],[2,0],[1,0],[2,0]],[[11256,54672],[0,-1],[1,-1],[0,-1],[0,0],[1,-3],[1,-2],[0,-1],[0,0],[0,-1],[-1,-4],[0,-1],[-1,-1],[0,0],[-4,-3],[-4,-3],[-1,0],[-1,0],[0,-1],[-1,0],[-10,-1],[-3,0],[-1,-1],[0,0],[-4,6],[-3,5],[0,1],[-1,0],[0,1],[0,0],[1,9],[0,2],[0,0],[0,3],[1,0],[1,3],[1,1],[1,1],[0,0],[9,0],[1,-1],[0,0],[1,0],[0,0],[16,-6]],[[11103,54592],[0,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-2,0],[-10,2],[-2,1],[-14,23],[-15,28],[-4,19],[0,10],[1,9],[0,1],[1,2],[1,2],[2,4],[1,0],[0,0],[0,0],[1,0],[0,0],[2,0],[1,-1],[2,0],[1,0],[6,-4],[1,-2],[0,-3],[1,-2],[0,-1],[0,0],[5,-14],[3,-10],[17,-34],[7,-17],[0,-1],[0,-3],[0,-1],[1,-5],[0,-1]],[[11069,54567],[-2,-1],[-2,0],[-3,-2],[0,0],[-1,1],[-3,1],[0,0],[-2,1],[0,0],[0,0],[-2,2],[-5,3],[-4,3],[0,0],[0,0],[-1,0],[0,1],[0,1],[-2,3],[-18,39],[-22,49],[0,0],[13,-9],[13,-9],[37,-60],[3,-3],[0,-1],[0,-2],[1,-2],[1,-7],[0,-1],[1,0],[-1,-1],[0,0],[-1,-4],[0,-2],[0,0]],[[11170,54649],[-1,-99],[0,0],[-8,-6],[-34,-28],[0,0],[-1,0],[-3,1],[-12,14],[-5,7],[-15,19],[-3,8],[-1,5],[-1,7],[0,1],[0,1],[0,0],[0,2],[7,0],[5,0],[0,0],[1,-1],[0,-2],[0,-1],[0,-2],[1,0],[5,0],[2,15],[-1,109],[0,0],[34,-6],[0,0],[23,-34],[7,-10]],[[18719,37639],[42,-644],[-92,-418],[-53,-244],[0,0],[-34,-5],[-40,-5],[-92,81],[-55,47],[0,0],[0,21],[1,38],[-53,267],[-34,172],[-7,75],[-10,107],[44,153],[28,42],[6,9],[0,0],[2,2],[164,122],[36,-4],[51,-6],[18,42],[17,40],[0,3],[-1,173],[27,13],[10,5],[0,0],[25,-86]],[[12756,51427],[18,-178],[-58,-100],[-21,-18],[-369,-334],[0,0],[19,-48],[16,-44],[-63,-239],[0,0],[143,68],[131,63],[62,6],[46,5],[328,-33],[228,24],[41,-14],[38,-14],[43,-60],[0,0],[1,-2],[20,-107],[-160,-366],[-102,-232],[-53,-93],[-4,-7],[-158,-175],[0,0],[-3,-125],[-3,-127],[-188,-101],[-100,-53],[-143,35],[-34,37],[-6,7],[0,0],[-29,1],[0,0],[74,-71],[103,-25],[186,-44],[89,53],[18,11],[67,1],[61,0],[165,-85],[111,-124],[130,-145],[70,-196],[44,-229],[3,-16],[95,-310],[59,-101],[10,-18],[103,-48],[170,-81],[0,0],[197,-332],[95,-331],[27,-121],[98,-432],[0,0],[-144,-176],[0,0],[122,-75],[52,-1],[35,34],[0,0],[8,35],[13,53],[25,27],[88,-3],[150,-6],[91,-22],[34,-9],[90,-86],[92,-90],[25,-87],[4,-138],[0,0],[-83,-339],[-114,-99],[-14,-12],[-51,-68],[-106,-40],[-45,-31],[-90,-64],[0,0],[21,-20],[8,-8],[0,0],[0,-11],[-4,-135],[0,0],[-91,16],[-79,-84],[0,0],[103,-59],[132,-31],[16,-4],[0,0],[250,34],[-19,-158],[-66,-89],[-89,-74],[-101,-83],[-160,-85],[-112,-58],[-564,63],[-480,-95],[-27,-5],[0,0],[-7,-6],[-20,-17],[0,0],[30,-13],[9,-4],[0,0],[-4,-65],[-32,-6],[-21,-3],[-190,46],[-75,18],[-18,9],[-116,56],[-248,-106],[-18,-45],[-42,-102],[0,-34],[30,-12],[0,0],[-100,-160],[-58,4],[-154,115],[-28,21],[-116,-17],[-82,-20],[-19,-5],[-65,-44],[-121,-83],[0,0],[-15,-79],[-81,-54],[-148,23],[31,90],[15,46],[95,91],[95,92],[74,103],[40,54],[291,517],[0,0],[580,52],[180,320],[0,0],[-141,-92],[-137,-91],[-89,-16],[-85,29],[-156,113],[-47,35],[-260,139],[-150,-108],[-27,-19],[-10,4],[-54,17],[-28,66],[-7,17],[-17,58],[-22,79],[8,34],[9,35],[44,54],[0,0],[75,21],[63,17],[278,181],[38,68],[43,159],[-6,79],[-9,103],[-32,162],[-25,-2],[-65,-6],[-67,-32],[-19,-36],[0,0],[-124,-28],[0,0],[25,53],[0,0],[122,138],[173,195],[120,51],[252,47],[52,-31],[52,-31],[0,0],[34,117],[-2,72],[-4,135],[13,242],[43,28],[19,13],[0,0],[29,144],[-18,39],[-10,22],[0,0],[-175,-47],[-19,32],[-160,266],[-5,26],[11,43],[14,55],[45,94],[65,140],[111,68],[0,0],[-163,-3],[-127,-84],[-58,-38],[-43,-4],[-132,-11],[-87,-26],[-91,-26],[-80,19],[-95,22],[-7,-102],[0,0],[-81,149],[-19,83],[0,0],[1,3],[8,38],[16,8],[16,8],[114,216],[79,151],[-29,169],[-12,291],[-3,4],[-57,82],[0,0],[-73,-53],[-61,-46],[-25,-43],[0,0],[16,220],[-89,-85],[-19,-18],[-3,-22],[-4,-32],[13,-48],[9,-33],[-55,-447],[-40,-50],[-96,-6],[3,77],[86,293],[12,38],[0,0],[-3,26],[-11,107],[19,83],[36,154],[1,42],[1,151],[128,301],[0,0],[-211,-218],[-66,27],[-44,17],[-49,81],[0,0],[22,2],[32,2],[118,24],[47,10],[0,0],[-110,16],[-47,34],[0,0],[70,94],[0,0],[-4,109],[-2,50],[73,207],[0,0],[-12,50],[-8,34],[0,0],[-34,-8],[-37,-9],[-20,16],[-10,61],[-11,61],[50,199],[29,37],[17,21],[107,68],[152,2],[-26,44],[-16,25],[-75,105],[14,52],[23,87],[69,36],[10,5],[0,0],[-4,113],[14,82],[5,29],[46,77],[299,-77],[289,35],[100,22],[28,6],[0,0],[53,54],[1,-1],[10,-14],[0,0],[23,-2],[95,-5]],[[12193,46615],[-60,-12],[0,0],[-47,67],[-34,50],[14,114],[63,18],[63,-14],[90,-68],[26,-20],[0,0],[-115,-135]],[[10786,48288],[5,-1],[93,-14],[0,0],[29,56],[71,48],[96,38],[81,31],[57,-7],[97,-11],[48,-50],[114,-282],[173,-316],[0,0],[-21,-88],[-9,-8],[-15,-15],[-16,20],[-9,10],[19,34],[1,2],[-9,76],[-41,37],[-20,17],[-11,-34],[3,-36],[8,-115],[14,-4],[-9,-111],[-47,-48],[-54,-55],[-144,-35],[-23,11],[-23,12]],[[11244,47450],[0,0],[86,-97],[0,0],[-20,-14],[-8,-6],[0,0],[-53,17],[0,0],[-23,-106],[10,-40],[22,-88],[50,-103],[11,-24],[-3,-64],[-6,-111],[-32,-42],[71,-411],[-99,-317],[-59,-189],[0,0],[-115,-79],[0,0],[-84,11],[-169,-68],[-185,-75],[-141,-128],[-71,-66],[-110,-32],[-52,-68],[-67,-45],[-116,-78],[-122,-14],[-158,-18],[-171,-33],[-29,18],[-31,19],[0,0],[172,130],[0,14],[0,5],[-36,22],[-163,-74],[-23,-10],[-59,-42],[-23,9],[-26,12],[0,0],[13,12],[158,146],[0,0],[-30,10],[-17,5],[-26,-8],[-111,-35],[-74,33],[-15,18],[-14,18],[0,0],[3,29],[43,22],[7,3],[156,210],[-234,-44],[-10,75],[140,96],[63,-30],[32,-15],[93,31],[0,0],[-30,30],[4,64],[4,47],[8,7],[60,52],[100,54],[69,14],[123,23],[110,58],[0,0],[0,1],[-52,97],[-16,-19],[-37,-42],[-150,-46],[-130,-40],[0,0],[-4,65],[115,173],[146,219],[45,18],[29,11],[11,26],[4,7],[0,0],[-29,23],[-33,26],[-197,-21],[-72,-8],[0,0],[3,122],[0,0],[-33,15],[-91,43],[-13,-11],[-10,-7],[-64,23],[-24,8],[-20,80],[0,0],[81,7],[0,0],[29,89],[142,113],[0,0],[25,62],[-11,39],[-54,2],[-134,147],[-66,71],[12,94],[9,9],[31,34],[127,24],[182,-13],[45,-54],[60,-73],[18,40],[17,37],[39,18],[26,12],[142,-48],[0,0],[70,33],[0,0],[-2,7],[-10,36],[46,63],[52,72],[-10,31],[-29,88],[-57,3],[-57,3],[-59,28],[-19,9],[-3,14],[-5,19],[39,37],[26,24],[73,30],[83,33],[-5,28],[-1,8],[-3,4],[-38,51],[15,70],[18,35],[26,47],[247,89],[0,0],[14,-23],[98,-161],[0,0],[41,32],[6,1],[5,1],[-5,63],[0,0],[-20,37],[48,188],[13,6],[0,0],[8,-3],[79,-31],[85,-73],[0,0],[-13,-56],[-2,-12],[0,0],[-103,-106]],[[11340,48798],[-34,-19],[-68,-37],[-105,95],[0,0],[45,145],[12,5],[133,51],[0,0],[47,-207],[0,0],[-11,-11],[-19,-22]],[[11460,49382],[-237,-35],[0,0],[-6,11],[-8,17],[0,0],[111,54],[50,25],[0,0],[9,59],[5,26],[-123,1],[0,0],[0,1],[-15,28],[9,77],[0,0],[67,37],[39,-35],[4,-4],[0,0],[2,-3],[5,-8],[28,-22],[63,-48],[35,-24],[43,-30],[-1,-53],[0,0],[-22,-20],[-58,-54]],[[11300,50352],[22,-63],[9,-28],[0,0],[54,-33],[53,-33],[0,0],[8,-11],[38,-54],[0,0],[-58,-92],[-8,-13],[0,0],[-45,-23],[-10,25],[13,76],[6,32],[0,0],[-101,6],[0,0],[-135,197],[-33,-36],[0,0],[-12,126],[0,0],[39,24],[53,31],[0,0],[3,40],[3,41],[33,41],[0,0],[45,-60],[33,-46],[4,-83],[0,-14],[-5,-18],[-9,-32]],[[11275,51063],[-29,-63],[-60,-132],[-124,34],[0,0],[-12,-11],[-29,-27],[15,-106],[0,0],[-17,-53],[-111,-66],[0,0],[-52,56],[0,0],[126,81],[3,2],[-60,46],[-60,46],[-15,113],[34,80],[30,-2],[15,-1],[42,-35],[0,0],[289,282],[28,-29],[0,0],[9,-53],[-18,-132],[-4,-30]],[[18456,3173],[-106,-344],[-117,44],[-11,73],[8,63],[90,223],[115,69],[21,-128]],[[25625,31148],[77,-46],[142,-85],[260,8],[260,-42],[0,0],[67,-59],[3,-2],[0,0],[45,-116],[0,0],[71,57],[36,30],[42,19],[48,22],[0,0],[15,-44],[10,-33],[-27,-118],[-54,-46],[-24,4],[-92,17],[-293,-47],[-133,22],[-108,18],[-16,64],[-242,90],[-256,32],[-30,4],[-42,66],[12,98],[14,120],[77,-12],[138,-21]],[[27442,31509],[-44,-34],[-6,-5],[0,0],[-26,244],[54,83],[50,75],[141,97],[0,0],[8,-19],[-14,-97],[-2,-8],[0,0],[-6,-20],[-65,-194],[-53,-72],[-37,-50]],[[27064,33074],[-45,-24],[-42,-24],[-141,12],[-9,49],[0,0],[82,72],[0,0],[104,-23],[40,-6],[5,-26],[6,-30]],[[23990,33717],[109,-290],[0,0],[-2,-10],[-9,-39],[-41,12],[-78,22],[-94,67],[30,153],[3,0],[15,-3],[47,63],[20,25],[0,0]],[[26613,33529],[-50,-73],[-68,83],[15,38],[0,0],[28,12],[4,2],[12,73],[-21,38],[-57,98],[17,28],[8,13],[63,10],[0,0],[54,-41],[5,-19],[5,-22],[-15,-240]],[[25873,33305],[-21,-17],[-9,-7],[0,0],[-44,31],[-41,29],[0,0],[-81,181],[-403,475],[-86,53],[-60,38],[-10,27],[0,0],[31,37],[49,58],[87,26],[28,-43],[0,0],[52,-140],[49,-54],[58,-37],[57,-37],[71,-9],[111,-289],[143,-145],[26,-26],[8,-92],[-15,-59]],[[26846,34212],[-41,-35],[-90,3],[-73,36],[-157,149],[0,0],[7,62],[0,0],[22,26],[127,78],[82,1],[3,0],[29,-68],[85,-200],[3,-25],[3,-27],[0,0]],[[0,73295],[68,-3],[409,-69],[143,-68],[77,-5],[67,-4],[154,17],[0,0],[-183,22],[0,0],[412,1],[124,1],[28,-4],[463,-59],[277,-85],[0,0],[-135,-42],[-114,-35],[-306,-43],[-56,-8],[-201,5],[-914,25],[-278,-6],[-35,-1]],[[0,72892],[62,2],[196,7],[1280,-70],[66,14],[186,37],[458,45],[65,-8],[54,-7],[32,-37],[83,-95],[0,0],[-195,-134],[-65,-22],[-49,-17],[-248,-26],[0,0],[62,-2],[100,-4],[187,43],[264,59],[107,1],[45,0],[554,-60],[289,-18],[0,0],[579,-168],[0,0],[-3,-5],[-20,-28],[-421,-165],[-324,-72],[-329,1],[-683,-122],[-882,27],[-323,10],[-1036,-49],[-91,-39],[0,0]],[[0,71832],[559,69],[517,39],[1380,-43],[130,-4],[0,0],[-5,-74],[-6,-90],[-47,-31],[-534,-115],[-350,-75],[-80,-28],[-14,-39],[-1,-4],[0,0],[17,-11],[1,-1],[0,0],[54,-8],[113,-16],[0,0],[181,39],[803,176],[362,24],[108,29],[0,0],[-10,92],[0,0],[6,36],[12,70],[17,29],[16,5],[30,8],[876,60],[54,-32],[27,-31],[50,-60],[2,-35],[3,-46],[-4,-28],[-13,-94],[-80,-148],[-55,-67],[-165,-121],[-42,-12],[-64,-18],[-240,-131],[-251,-138],[-147,-94],[-12,-18],[-77,-116],[-89,-22],[-88,-22],[-40,-31],[-51,-40],[0,0],[5,-14],[312,87],[281,187],[19,13],[64,16],[246,64],[79,59],[31,14],[178,77],[242,65],[228,146],[191,75],[248,56],[136,18],[74,9],[0,0],[-3,-2],[-95,-66],[-76,-80],[-45,-47],[0,0],[166,15],[146,65],[197,36],[216,-49],[299,-68],[100,22],[65,50],[25,19],[17,49],[7,19],[319,185],[348,61],[631,-9],[338,-38],[632,-119],[208,-81],[180,-71],[0,0],[-119,-70],[-340,-87],[-504,-232],[-467,0],[-88,-37],[0,0],[133,-63],[55,-27],[7,-25],[-100,-52],[-32,-16],[-205,-26],[-313,-102],[-211,9],[-687,30],[-351,-86],[-40,-10],[-614,88],[-69,-22],[-200,-64],[-230,-5],[0,0],[86,-43],[20,-10],[18,0],[49,2],[199,56],[183,52],[313,-55],[366,-65],[516,43],[63,5],[4,0],[313,-60],[-27,-120],[-123,-88],[0,0],[-137,-33],[-590,-19],[-259,29],[-457,50],[-366,-158],[0,0],[-14,-60],[-22,-95],[28,-68],[0,0],[9,-11],[54,-67],[19,-6],[18,-5],[207,70],[0,0],[-54,-5],[-131,-13],[4,48],[96,91],[205,58],[58,16],[701,55],[76,-11],[76,-10],[10,-5],[93,-48],[0,0],[-121,-101],[-127,-108],[-81,-32],[-39,-16],[-38,-8],[-95,-19],[-202,29],[-141,21],[-119,-34],[0,0],[-13,-12],[-65,-60],[-56,-126],[-17,-78],[-1,-123],[6,-9],[4,-6],[0,0],[54,53],[172,-10],[19,-9],[18,-9],[-7,-74],[-2,-22],[0,0],[-83,-13],[0,0],[13,29],[11,25],[15,12],[23,18],[0,0],[-150,-37],[-173,-86],[-13,-19],[-54,-76],[0,0],[44,-63],[0,0],[-7,-26],[-77,-41],[-1,-1],[-34,1],[-283,10],[-102,-29],[-134,-38],[0,0],[86,-75],[-15,-82],[-12,-63],[-83,-158],[-101,-191],[-144,-164],[-34,-39],[-23,-61],[0,0],[-11,-150],[0,0],[6,0],[188,-8],[0,0],[-9,24],[-2,3],[0,0],[17,69],[4,19],[0,0],[160,148],[98,42],[51,-21],[70,-28],[0,0],[-27,-24],[-4,-4],[0,0],[206,-67],[440,-78],[149,-115],[0,0],[-14,-4],[-177,-48],[-154,60],[-158,61],[-162,10],[-137,8],[-71,-39],[-52,-29],[0,0],[126,-28],[34,-8],[3,-45],[-10,-27],[-6,-16],[71,-40],[5,-14],[11,-28],[0,0],[-89,10],[-88,-27],[132,-5],[236,-9],[153,-43],[122,-35],[21,-2],[137,-14],[0,0],[7,6],[76,57],[172,-21],[111,-62],[19,-45],[15,-32],[3,-168],[-12,-49],[-65,-80],[-25,-31],[-746,144],[-858,30],[0,0],[-65,27],[0,0],[26,21],[0,0],[-13,7],[-35,-6],[-47,-8],[0,0],[53,-44],[599,-25],[82,-22],[0,0],[-112,-55],[-156,34],[-192,-4],[-72,-2],[0,0],[113,-13],[95,-11],[36,-14],[89,-37],[0,0],[-206,-77],[-37,-14],[0,0],[-203,51],[0,0],[-14,14],[-75,72],[-29,6],[-28,6],[-24,-9],[-47,-18],[-95,-141],[63,-81],[262,3],[30,0],[0,0],[16,-39],[13,-33],[-179,-42],[0,0],[88,-23],[77,-88],[46,-52],[59,-27],[89,3],[59,3],[78,42],[0,0],[-7,18],[17,2],[35,6],[259,-81],[96,16],[121,21],[47,-15],[68,-94],[-8,-60],[-39,-1],[-117,-4],[-297,-51],[-304,0],[-218,0],[0,0],[42,-9],[89,-20],[127,4],[146,6],[159,-16],[119,-11],[195,-4],[51,-19],[37,-15],[63,-62],[64,-63],[61,-190],[25,-77],[-20,-165],[0,0],[-32,-51],[-39,-32],[-29,-24],[-141,4],[-49,20],[-9,26],[-5,16],[-223,70],[-79,4],[-37,1],[-209,94],[-27,48],[0,0],[-27,18],[-87,57],[-328,106],[-14,-14],[-8,-9],[0,0],[142,-48],[70,-23],[180,-96],[-346,22],[0,0],[190,-33],[169,-29],[149,-78],[220,-114],[43,-47],[0,0],[-97,-24],[-74,12],[-64,10],[-60,-22],[-130,-48],[-152,0],[-75,1],[-112,63],[-97,17],[-67,11],[0,0],[332,-180],[160,31],[131,78],[160,-17],[54,-28],[23,-13],[-26,-64],[-26,-65],[-19,-167],[292,-14],[278,-13],[292,-143],[-98,-119],[-91,-63],[-62,-16],[-66,-16],[-243,37],[-45,83],[-9,15],[-76,52],[0,0],[-34,1],[-427,7],[-219,33],[0,0],[59,-43],[45,-33],[67,13],[140,26],[187,-28],[115,-17],[31,-34],[105,-122],[3,-36],[2,-21],[0,0],[-476,-58],[-196,64],[-135,44],[0,0],[-11,29],[0,0],[-29,13],[-70,32],[0,0],[12,-21],[36,-60],[0,0],[-86,-71],[-49,-40],[0,0],[263,-204],[0,0],[-47,142],[0,0],[91,41],[470,-146],[55,-2],[77,-4],[47,-309],[-18,-42],[-60,-30],[-402,14],[-173,-84],[-199,-98],[-125,-1],[-6,0],[-29,8],[-210,56],[-311,128],[-198,109],[-24,42],[-10,17],[0,0],[17,38],[7,14],[0,0],[160,-12],[440,-134],[0,0],[-358,151],[-312,58],[-93,-11],[-51,-69],[0,0],[3,-21],[9,-69],[-10,-45],[-1,-6],[0,0],[-101,31],[-146,45],[-122,115],[-131,125],[-34,18],[-50,26],[-34,-25],[201,-158],[189,-114],[125,-76],[0,0],[-368,-119],[-29,-55],[-4,-6],[0,0],[-21,-14],[-71,-47],[-114,-18],[-41,2],[-46,3],[-62,23],[-128,48],[-165,75],[-184,83],[-54,-38],[0,0],[291,-146],[77,-3],[104,-5],[24,-27],[14,-14],[0,0],[-103,-46],[-91,-41],[-144,41],[0,0],[-8,-1],[-299,-47],[0,0],[379,-17],[101,26],[91,24],[158,-3],[160,-2],[366,-95],[29,-49],[1,-1],[-55,-40],[-13,-10],[-368,-113],[-257,7],[-81,30],[-40,16],[-181,-55],[0,0],[156,27],[35,-11],[21,-7],[55,-28],[-16,-29],[8,-23],[109,-84],[0,0],[126,74],[277,101],[92,-33],[248,-88],[32,-97],[16,-48],[0,0],[-27,-26],[-212,-54],[-298,-3],[-127,-28],[-54,-12],[0,0],[80,6],[215,15],[102,-103],[87,67],[95,34],[24,9],[163,-3],[583,-276],[223,-106],[0,0],[17,-46],[34,-89],[0,0],[-70,-137],[0,0],[232,96],[0,0],[0,-20],[0,-12],[-83,-152],[0,0],[27,24],[99,90],[129,18],[65,10],[0,0],[-12,-14],[-78,-93],[-130,-21],[-22,-4],[0,0],[-49,-30],[-18,-77],[34,-171],[91,132],[95,68],[51,1],[55,2],[42,-52],[22,-25],[0,0],[-73,-297],[70,-43],[20,-13],[-3,-19],[-28,-171],[21,-110],[15,-84],[54,-14],[49,-14],[0,0],[-85,-89],[-44,-16],[-311,31],[-10,75],[-11,75],[4,188],[-35,16],[-35,-33],[-40,-110],[52,-111],[-32,-112],[-220,-11],[-133,20],[-224,119],[-51,28],[-62,68],[0,0],[-24,64],[-37,97],[-6,69],[-77,154],[-3,5],[0,0],[-113,160],[-326,61],[-173,124],[-174,27],[-158,24],[-103,-40],[-44,4],[-79,8],[-159,103],[-196,188],[-58,26],[-112,51],[-143,37],[-120,31],[-18,-28],[10,-23],[23,-52],[321,-60],[70,-87],[98,-120],[0,0],[-158,-27],[-68,-11],[0,0],[470,-47],[554,-55],[28,-22],[136,-109],[-6,-50],[0,0],[-100,-103],[-407,-163],[-148,-9],[-234,-16],[-80,7],[-53,25],[-74,35],[-121,-13],[-35,-4],[-56,-39],[0,0],[124,-54],[8,-23],[1,-3],[-28,-57],[-33,-67],[-98,-108],[-108,-44],[-47,-20],[-321,-56],[0,0],[14,-31],[12,-26],[24,-5],[287,69],[94,23],[202,-84],[608,73],[30,-4],[26,-3],[88,-90],[0,0],[-134,-48],[-37,-13],[-15,0],[-56,3],[-109,-40],[-176,-64],[-273,-53],[-78,24],[-100,-20],[-92,-20],[0,0],[7,-16],[16,-35],[0,0],[30,0],[345,-3],[72,-36],[29,-14],[217,190],[0,0],[81,43],[64,-6],[85,-8],[300,45],[323,109],[13,4],[407,-166],[267,-80],[498,-48],[314,67],[11,-9],[11,-8],[0,0],[-112,-130],[-168,-33],[-189,-38],[-19,-14],[-17,-12],[0,0],[0,-6],[-1,-79],[-261,-35],[-58,-200],[-67,-5],[-54,-3],[-168,-86],[-314,-161],[0,0],[-63,-133],[-89,-50],[-75,-42],[-70,-69],[-12,-12],[-9,-4],[-247,-123],[-157,-60],[-614,-138],[-84,-6],[-119,-8],[-107,-69],[-223,-45],[-90,-66],[-79,-58],[0,0],[-227,177],[-63,-52]],[[1008,61758],[-88,-1],[-14,9],[-28,19],[0,0],[28,69],[10,27],[0,0],[80,46],[226,131],[823,244],[47,-67],[39,-44],[69,-80],[17,-58],[0,0],[-50,-106],[-2,-4],[0,0],[-162,-46],[-59,-17],[-50,-1],[-192,-3],[-433,-73],[-261,-45]],[[3829,63558],[-2,-50],[0,0],[-17,-8],[-35,-15],[-136,36],[-125,21],[-30,5],[-43,-18],[0,0],[0,-11],[2,-27],[0,0],[29,-32],[288,-85],[0,0],[-12,-44],[-13,-45],[0,0],[-51,-39],[-38,-2],[-32,-2],[-151,45],[-223,149],[-258,78],[-186,89],[-106,50],[-34,35],[-11,12],[0,0],[-18,61],[-19,68],[10,52],[135,31],[413,-35],[108,-65],[74,-45],[449,-185],[10,-7],[22,-17]],[[3756,63954],[15,-28],[83,-160],[0,0],[-44,-28],[-352,54],[-71,63],[-24,22],[-119,26],[-260,16],[-251,17],[-140,-16],[-7,16],[-20,43],[0,0],[17,23],[637,69],[180,-31],[197,-33],[159,-53],[0,0]],[[2938,64327],[185,-70],[93,-35],[0,0],[-179,-14],[-776,92],[0,0],[552,-74],[454,-61],[88,-30],[0,0],[-45,-40],[-739,-50],[-86,14],[-315,52],[-102,36],[-12,4],[-17,16],[-20,20],[0,0],[119,66],[51,28],[0,0],[35,69],[7,16],[88,10],[149,18],[146,-21],[324,-46]],[[4716,65515],[-69,-7],[-128,27],[-90,67],[0,0],[29,150],[55,37],[190,-14],[160,-139],[0,0],[-109,-89],[-38,-32],[0,0]],[[5778,66039],[0,0],[-161,-86],[0,0],[129,-101],[72,-25],[8,-3],[8,4],[57,25],[11,24],[6,11],[0,0],[60,13],[7,1],[38,-26],[0,0],[-26,-56],[-26,-58],[-89,-57],[-4,-2],[0,0],[-19,1],[0,0],[3,3],[32,29],[-1,7],[-3,14],[-45,12],[-59,17],[-61,1],[-57,0],[-142,-27],[-92,-17],[-52,8],[-102,16],[-14,27],[0,0],[4,64],[12,184],[0,0],[160,48],[94,-57],[56,3],[31,17],[20,12],[0,0],[-10,29],[0,0],[3,10],[6,16],[26,16],[3,2],[86,-55],[12,-17],[19,-27]],[[5342,67171],[-18,-81],[9,-35],[16,-61],[125,-281],[-2,-119],[-7,-2],[-16,-2],[-316,488],[43,62],[67,-9],[35,-5],[29,15],[0,0],[-13,8],[-18,10],[0,0],[-1,0],[-52,-11],[-24,5],[-13,3],[0,0],[-54,113],[37,2],[50,3],[56,-37],[51,-34],[8,-16],[8,-16]],[[6811,58068],[21,-10],[76,-39],[244,181],[128,-18],[0,0],[-41,-22],[-117,-62],[-63,-107],[-1,-37],[0,0],[24,-36],[5,-7],[0,0],[78,-20],[34,-192],[0,0],[142,-58],[381,-158],[-19,-87],[-28,-127],[8,-93],[39,-29],[26,-20],[51,-2],[-51,-47],[-73,-68],[0,0],[53,-91],[0,0],[-26,-35],[-45,-61],[-68,-58],[-27,-23],[-119,-4],[-99,-97],[0,0],[-3,-25],[-19,-135],[-166,-100],[-102,-6],[-40,-2],[-342,-127],[-142,-116],[-135,-110],[-284,-92],[-49,-3],[-62,-3],[-94,-30],[-54,-16],[-60,-47],[-40,-72],[-19,-35],[-111,-67],[-85,-17],[-215,-45],[-215,24],[-314,87],[-40,11],[-6,2],[-248,116],[-78,49],[-128,80],[-143,55],[-155,-15],[-519,-49],[-19,22],[-1,2],[0,0],[-8,56],[-9,65],[9,33],[17,60],[64,-44],[15,-47],[32,-2],[13,-1],[149,56],[75,28],[0,0],[101,120],[0,0],[-25,120],[-104,44],[-3,1],[-132,217],[-26,43],[0,0],[-16,55],[-13,48],[-352,4],[-300,-73],[-59,23],[-23,47],[-32,65],[0,0],[53,23],[38,15],[248,39],[345,53],[374,-6],[44,119],[-6,33],[-31,4],[-13,2],[0,0],[-9,-31],[0,0],[-48,-33],[-32,-9],[-36,-10],[-203,66],[0,0],[20,48],[254,146],[0,0],[-42,32],[-49,39],[-272,100],[-471,-147],[-356,50],[-12,38],[81,91],[179,-93],[2,2],[11,13],[-97,158],[-9,34],[-3,13],[0,0],[11,20],[236,-99],[6,-10],[19,-35],[80,-8],[7,15],[5,10],[0,0],[-4,11],[-27,74],[-132,18],[-4,3],[-51,40],[-14,26],[-12,24],[0,0],[4,5],[23,29],[105,-10],[0,0],[43,91],[4,9],[0,0],[-14,44],[-16,50],[-18,15],[-4,3],[60,38],[41,-7],[52,-9],[233,-149],[136,-39],[36,-31],[0,0],[-2,-42],[0,0],[-75,-84],[0,0],[49,24],[61,82],[0,0],[-62,149],[-73,33],[0,0],[11,28],[29,75],[48,32],[0,0],[-121,64],[-83,-18],[-84,20],[-61,15],[17,14],[94,75],[241,-12],[51,-43],[479,-402],[23,-38],[0,0],[-29,-140],[-14,-11],[-37,-32],[-71,14],[0,-26],[-1,-29],[150,-139],[79,-244],[11,-35],[0,0],[47,263],[8,41],[0,0],[12,27],[24,50],[62,44],[43,31],[21,-12],[1,-27],[2,-37],[0,0],[145,25],[0,0],[10,33],[17,54],[0,4],[-5,42],[-64,199],[0,0],[0,9],[-4,57],[0,0],[69,15],[80,18],[149,-198],[98,-130],[53,-6],[22,10],[14,6],[7,28],[10,35],[-36,83],[42,135],[201,98],[94,-26],[41,-29],[42,-30],[188,-288],[0,0],[3,120],[0,14],[-46,60],[-36,117],[25,51],[0,0],[175,-36],[73,-52],[208,22],[237,26],[154,78],[20,10],[18,240],[194,11],[39,-25],[106,-191],[24,-43]],[[40773,23425],[-175,-65],[-66,41],[131,86],[10,12],[4,46],[112,89],[85,36],[45,-48],[-146,-197]],[[21630,33547],[-103,-249],[-89,-212],[-25,-95],[-30,-108],[4,-152],[0,-3],[45,-76],[36,-113],[-2,-97],[0,0],[-23,-64],[-78,-217],[-107,28],[-67,18],[-76,49],[0,0],[-15,33],[-62,137],[-50,68],[-6,8],[-78,39],[-33,-3],[-24,-2],[-125,67],[-231,223],[-122,118],[-33,3],[-60,4],[-132,245],[-7,40],[10,43],[13,58],[18,28],[3,4],[111,58],[279,26],[0,0],[201,-152],[266,33],[331,101],[236,142],[2,2],[23,-32]],[[18791,35948],[0,0],[28,-198],[12,-147],[16,-193],[-52,-830],[-28,-230],[-17,-33],[-9,-17],[-54,39],[-83,60],[-63,-12],[-38,-60],[6,-38],[5,-35],[-8,-55],[-10,-14],[-44,-63],[-20,-21],[-10,-11],[-68,14],[-21,5],[-6,5],[-14,10],[-58,132],[-39,91],[-14,190],[50,301],[0,14],[-5,448],[-70,253],[-5,20],[-48,26],[-2,5],[-15,30],[-4,34],[-5,32],[19,164],[1,8],[53,-56],[70,-22],[23,6],[28,7],[16,13],[77,59],[184,280],[40,8],[117,-87],[31,-58],[23,-49],[11,-25]],[[37149,26010],[-52,-74],[-26,32],[-42,183],[19,33],[11,65],[43,2],[66,-128],[4,-34],[-23,-79]],[[21078,31528],[14,-10],[22,-26],[17,-19],[1,-1],[0,-1],[5,-8],[3,-5],[0,-1],[0,-21],[0,-4],[-3,-8],[0,0],[-1,-2],[-12,-18],[-3,-2],[-1,0],[-3,0],[-1,0],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[-1,1],[0,0],[-2,1],[-9,3],[-28,10],[-5,5],[-14,13],[-3,3],[-18,21],[-3,6],[-1,8],[-1,5],[-3,28],[-4,37],[3,8],[1,4],[5,2],[6,4],[5,2],[31,-29],[7,-6]],[[20977,31639],[0,0],[3,0],[4,0],[0,0],[0,0],[1,0],[2,-2],[2,0],[0,0],[3,-2],[21,-14],[1,0],[2,-2],[6,-8],[1,-1],[1,-1],[3,-6],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,0],[0,-1],[0,0],[-31,-11],[-2,1],[-2,0],[-10,4],[-5,2],[-6,4],[-6,4],[-2,2],[0,0],[-3,12],[-2,15],[0,2],[0,1],[0,1],[0,0],[0,2],[0,0],[1,0],[0,0],[3,2],[6,4],[1,0],[0,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[2,0],[2,0],[0,0]],[[13038,43413],[0,0],[0,-16],[-12,-52],[-3,-5],[-26,-5],[-4,0],[-9,2],[-21,3],[0,1],[-2,1],[-3,3],[1,2],[0,1],[0,1],[0,1],[0,0],[0,1],[0,0],[36,37],[15,16],[11,7],[2,0],[2,1],[3,1],[3,0],[7,0]],[[12180,47612],[-12,-27],[-24,-56],[-21,-30],[-1,-1],[-47,-47],[-41,-38],[0,0],[-64,-8],[0,0],[1,26],[1,17],[9,44],[8,36],[1,6],[8,17],[40,64],[34,54],[0,1],[1,0],[10,11],[1,0],[1,1],[26,21],[34,12],[2,0],[2,1],[1,1],[1,0],[5,2],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,0],[15,-78],[6,-28],[0,0]],[[13214,43189],[0,0],[6,0],[12,1],[26,-13],[9,-6],[1,-1],[0,-2],[0,0],[0,-1],[1,-3],[-1,-8],[-3,-37],[-2,-1],[-6,-3],[-11,-2],[-46,3],[-8,0],[-13,6],[-11,10],[-4,22],[-5,25],[-2,4],[0,1],[1,1],[0,3],[1,2],[1,1],[1,2],[1,0],[0,0],[0,0],[1,0],[5,1],[8,-4],[2,-2],[4,-4],[1,0],[1,0],[0,0],[4,1],[5,1],[1,0],[1,0],[0,0],[1,1],[1,3],[0,0],[5,1],[7,2],[4,-4],[1,0],[0,0]],[[18591,55744],[0,0],[-19,-12],[-55,-36],[-242,-70],[-50,-2],[-15,-1],[-46,47],[0,0],[83,67],[120,0],[0,0],[-59,24],[-18,4],[-12,3],[0,0],[19,14],[5,4],[0,0],[126,25],[60,-13],[10,-21],[4,-9],[80,-21],[9,-3]],[[21414,60040],[-56,-83],[-28,-19],[-119,-80],[-114,-32],[-137,-39],[0,0],[3,50],[105,139],[22,6],[128,36],[7,-2],[38,-7],[1,-22],[150,53],[0,0]],[[21709,60167],[-20,-53],[-6,-16],[210,177],[7,9],[14,19],[-8,69],[-2,18],[48,31],[65,-36],[63,-35],[10,-79],[5,-43],[0,0],[-4,-12],[-31,-89],[-93,-3],[-40,-1],[-28,-13],[-25,-12],[-111,-73],[-92,-95],[-124,56],[-124,-70],[-40,51],[0,0],[142,192],[52,38],[23,188],[25,51],[4,7],[0,0],[54,39],[67,-2],[11,-2],[12,-3],[0,0],[13,-32],[11,-26],[0,0],[-1,-23],[-2,-64],[-38,-98],[-11,-30],[0,0],[-4,-4],[-32,-31]],[[21498,60395],[29,-90],[11,-36],[0,0],[-4,-39],[-108,-56],[-71,-36],[-53,5],[-49,33],[-14,10],[0,0],[87,62],[0,0],[-141,-32],[-70,-57],[-19,3],[-22,3],[-17,36],[-6,13],[14,46],[29,37],[41,50],[66,-13],[10,-32],[1,-4],[87,34],[95,38],[0,0],[-45,81],[-3,4],[-1,49],[0,0],[70,25],[13,-8],[20,-84],[50,-42]],[[22674,61009],[63,-61],[64,-62],[0,0],[-35,-208],[0,0],[-77,-31],[-48,0],[-79,-1],[-25,8],[-14,4],[0,0],[18,21],[0,0],[-20,12],[-138,-134],[-145,-1],[1,69],[74,138],[81,152],[-4,11],[-8,20],[0,0],[125,61],[41,-1],[83,-3],[23,3],[20,3]],[[23209,61123],[-84,-21],[0,0],[-13,-38],[0,0],[13,-3],[0,0],[-38,-67],[-89,-13],[-133,-20],[-99,41],[0,0],[4,10],[10,23],[133,100],[205,-24],[0,0],[-8,96],[0,0],[-39,47],[21,24],[55,-3],[79,-46],[35,-51],[0,0],[-31,-32],[-21,-23]],[[23406,61231],[-116,-35],[-98,62],[-94,61],[0,0],[46,40],[58,50],[79,25],[63,20],[11,-10],[68,-61],[25,-94],[-31,-43],[-11,-15]],[[25413,61903],[24,-85],[1,-3],[0,0],[-1,-20],[-2,-23],[0,0],[-61,-51],[-76,-64],[-49,-19],[-34,-14],[-36,8],[-116,101],[18,38],[8,18],[99,69],[60,-19],[44,12],[70,18],[0,0],[2,19],[0,0],[-38,27],[8,4],[30,15],[7,-5],[42,-26]],[[25098,61850],[-386,-18],[0,0],[4,46],[5,71],[0,0],[181,24],[188,24],[108,79],[82,59],[34,-17],[10,-5],[15,-17],[28,-30],[-56,-45],[-213,-171]],[[21957,70207],[75,-10],[29,-5],[51,-75],[63,-10],[69,-10],[6,2],[7,3],[18,7],[16,4],[7,1],[35,-3],[1,0],[113,-23],[67,-23],[67,-22],[33,-18],[34,-17],[0,0],[2,-1],[33,-20],[1,0],[1,0],[71,-50],[1,-1],[0,0],[2,-2],[10,-8],[13,-10],[1,-1],[0,0],[2,-3],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[3,-6],[0,0],[0,0],[0,-1],[-19,-15],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,0],[-1,0],[-10,-5],[-3,-2],[-110,-65],[-37,-29],[-24,-18],[0,0],[1,-6],[21,-130],[16,-25],[75,29],[27,15],[3,1],[12,12],[27,28],[17,47],[7,38],[4,19],[0,2],[56,28],[3,1],[2,1],[10,3],[1,0],[1,0],[1,0],[1,0],[21,1],[0,0],[1,0],[12,-3],[5,-1],[1,0],[1,0],[140,-44],[1,0],[2,-1],[26,-9],[1,-1],[0,0],[0,0],[1,0],[1,-1],[6,-4],[10,-6],[13,-8],[60,-92],[12,-32],[2,-6],[-25,-64],[-10,-23],[0,0],[-1,0],[-6,-3],[-5,-3],[-2,-1],[-1,0],[-6,-2],[-6,-2],[-17,-6],[-1,0],[16,-25],[0,0],[67,-61],[0,0],[1,0],[5,-5],[2,-2],[1,-1],[0,0],[2,0],[17,-7],[89,-8],[1,0],[0,0],[1,0],[0,0],[44,9],[1,0],[0,0],[5,1],[0,0],[1,1],[1,1],[7,6],[0,0],[1,1],[0,1],[87,2],[127,-17],[30,-11],[36,-73],[18,-37],[108,-26],[181,-44],[354,-68],[1,0],[6,0],[1,0],[2,0],[1,0],[1,0],[2,0],[16,-2],[1,-1],[1,0],[0,0],[21,-2],[14,-2],[27,-9],[10,-3],[20,-18],[0,0],[-7,-33],[-7,-28],[-42,-43],[-5,-5],[-132,-29],[-1,0],[-8,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-5,2],[-1,0],[-9,2],[-10,4],[-10,3],[-26,9],[-15,6],[-65,18],[0,0],[-137,-17],[-34,-5],[-30,-4],[-288,-50],[-42,-11],[-50,-15],[-128,-90],[-92,-12],[-55,-22],[0,0],[2,-160],[4,-60],[0,0],[-156,-128],[0,0],[-22,4],[0,0],[-1,0],[-2,0],[-8,0],[-13,0],[0,0],[-1,0],[-67,-11],[-20,-21],[0,0],[0,-19],[-1,-54],[-1,-58],[10,-137],[-41,-156],[-44,-34],[0,0],[-98,2],[-46,2],[-77,-3],[-4,0],[0,0],[-1,0],[-12,-3],[-19,-28],[-4,-5],[-30,-47],[-29,-44],[-11,-20],[-25,-42],[-85,-161],[-22,-41],[-41,-86],[-43,-90],[-19,-70],[0,0],[26,-9],[1,0],[0,0],[1,-1],[13,-10],[33,-26],[1,-1],[0,0],[1,-1],[0,0],[1,-1],[0,-3],[0,-1],[0,-2],[0,-2],[-1,-2],[-5,-6],[-1,-1],[-39,-38],[-48,-45],[-59,-22],[-2,0],[-7,-3],[-20,-5],[-1,0],[-1,0],[-2,-1],[-26,-3],[-7,-1],[-1,0],[-1,0],[-1,0],[0,0],[-2,0],[-1,0],[0,0],[-2,0],[-8,1],[-25,1],[-9,1],[-8,1],[-2,0],[-1,0],[-88,21],[-29,48],[-62,63],[-157,67],[-151,64],[-12,2],[-6,1],[-1,0],[0,0],[-5,4],[0,0],[-1,0],[0,0],[1,2],[3,8],[3,9],[2,2],[8,6],[1,1],[17,6],[1,0],[105,28],[10,2],[6,2],[53,11],[48,10],[1,0],[3,1],[15,2],[0,1],[1,0],[5,0],[1,0],[17,-1],[1,0],[0,0],[6,-2],[9,-2],[1,0],[0,0],[1,0],[0,0],[0,0],[1,0],[13,-8],[7,-4],[0,-1],[1,-2],[2,-2],[2,-5],[109,30],[0,0],[-45,25],[-5,2],[-2,1],[-141,35],[-53,-21],[-30,-12],[-107,-12],[-28,-1],[-60,-1],[-27,0],[-16,1],[-13,3],[-40,8],[-18,6],[0,0],[-1,0],[-1,0],[-3,2],[0,0],[0,0],[-1,0],[-9,3],[-6,2],[-16,5],[-3,11],[-3,8],[-31,50],[-9,15],[-124,38],[-1,1],[-38,9],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-8,1],[-12,1],[-1,0],[-1,0],[-17,0],[-1,0],[-1,0],[-33,-7],[-4,0],[-98,57],[-97,97],[-30,30],[0,0],[-8,12],[-52,80],[3,27],[1,0],[0,0],[15,7],[22,9],[0,0],[1,0],[2,1],[2,0],[1,1],[98,24],[2,1],[3,0],[1,0],[2,0],[0,0],[10,1],[18,2],[1,0],[0,0],[0,0],[24,-1],[1,0],[0,0],[60,-8],[257,-12],[289,-19],[94,-33],[118,-42],[18,-5],[2,-1],[39,-9],[0,0],[1,0],[3,0],[0,0],[0,1],[1,2],[0,1],[1,1],[9,32],[0,1],[-11,6],[-134,59],[-82,22],[-198,22],[-32,2],[-37,4],[-29,-1],[-53,0],[-46,7],[-25,5],[-40,20],[-11,10],[-6,5],[11,3],[42,11],[127,26],[59,12],[53,8],[20,4],[61,7],[351,41],[125,7],[137,8],[18,18],[41,59],[22,33],[0,0],[0,0],[0,0],[-37,0],[-1,0],[-1,0],[-4,-1],[-7,-1],[-2,0],[-2,0],[-51,-14],[0,0],[-1,0],[-10,-4],[-2,-1],[0,0],[-1,0],[-1,-1],[0,0],[-20,-11],[0,0],[-3,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-3],[0,0],[-185,-22],[-5,-1],[-185,-22],[-1,0],[-17,0],[-1,0],[-56,5],[0,0],[0,0],[-5,1],[-25,6],[-1,0],[0,0],[-3,1],[-168,-23],[-192,-26],[-97,-13],[-135,-18],[-233,-25],[-1,0],[-60,5],[-29,64],[-52,117],[-1,5],[0,1],[-2,7],[-1,4],[0,3],[1,32],[1,34],[5,21],[1,7],[0,0],[28,7],[33,9],[26,7],[0,0],[1,0],[14,1],[16,1],[1,0],[1,0],[1,1],[2,0],[3,0],[1,-1],[11,0],[20,-1],[1,0],[0,0],[0,0],[2,0],[3,-1],[2,0],[7,-1],[86,2],[196,7],[138,5],[61,12],[109,69],[64,41],[94,54],[3,1],[0,0],[1,1],[86,29],[4,1],[1,1],[1,0],[0,0],[23,3],[1,0],[105,11],[2,0],[1,0],[2,0],[3,1],[1,0],[7,0],[3,0],[1,1],[1,-1],[1,0],[0,0],[1,0],[1,0],[0,0],[0,0],[1,0],[9,-1],[8,-1],[7,-1],[3,-1],[19,-3],[31,-5],[49,-5],[38,-4],[35,-2],[47,-2],[3,0],[0,0],[1,0],[66,4],[0,0],[0,0],[1,0],[4,1],[19,2],[143,45],[75,23],[0,0],[-32,22],[0,0],[0,0],[-10,0],[-9,0],[-20,-4],[-83,-18],[-81,-15],[-31,-6],[-104,23],[-55,12],[-42,15],[0,0],[116,111],[54,32],[51,21],[19,7],[0,0],[7,26],[0,0],[-129,40],[-1,0],[-1,1],[-5,0],[-4,0],[-3,-1],[-10,-3],[-3,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-14,-13],[-4,-3],[0,0],[-15,-22],[-21,-32],[0,0],[-3,-16],[-4,-16],[-25,-23],[-6,-5],[-11,-9],[-13,-6],[-98,-39],[-51,-20],[-157,-22],[-63,-1],[0,0],[-1,0],[-6,1],[-16,3],[-1,0],[-1,0],[-26,14],[-32,17],[0,1],[0,0],[-7,6],[-1,1],[-34,68],[0,0],[21,23],[7,0],[1,0],[4,0],[1,1],[0,0],[42,4],[3,0],[1,0],[32,13],[10,25],[4,11],[9,54],[-12,54],[-7,27],[-1,1],[0,0],[-3,4],[-1,2],[-1,1],[-1,0],[-13,4],[-21,7],[-12,0],[-1,0],[0,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,0],[-7,-4],[-13,-6],[-12,-15],[-31,-42],[-5,-27],[-1,-8],[0,0],[-167,-57],[1,2],[1,5],[1,16],[1,6],[-8,26],[0,0],[0,0],[-7,4],[-3,1],[-11,6],[-1,0],[0,0],[0,0],[-18,-4],[-11,-2],[-90,-40],[-21,-16],[0,0],[8,-36],[18,-73],[13,-54],[4,-16],[0,0],[-98,-65],[-238,-156],[-1,0],[-1,-1],[-2,0],[-3,-2],[-1,0],[-3,-1],[-46,-7],[-1,0],[-2,-1],[-39,-1],[-271,10],[-244,164],[-39,31],[-18,14],[-32,32],[0,4],[0,1],[-1,0],[0,0],[9,4],[4,1],[1,0],[1,0],[1,1],[1,0],[0,0],[0,0],[1,0],[1,0],[1,0],[24,2],[12,2],[1,0],[0,0],[1,0],[61,2],[6,0],[1,0],[27,-2],[4,0],[1,0],[1,0],[1,0],[2,0],[51,25],[0,0],[-152,10],[-55,3],[-48,18],[-75,28],[-138,60],[-114,69],[-3,4],[-1,109],[-107,62],[-5,7],[-1,2],[-8,11],[0,0],[1,1],[0,1],[0,1],[1,2],[31,2],[34,2],[0,0],[1,0],[15,0],[0,0],[1,0],[0,0],[1,0],[1,0],[1,0],[7,-1],[0,0],[1,0],[13,-2],[7,-1],[18,-2],[14,-1],[65,-13],[25,-6],[12,-4],[56,-16],[75,-14],[61,-12],[13,0],[1,0],[1,0],[24,2],[1,0],[53,10],[0,0],[1,3],[3,10],[-4,16],[-6,29],[0,0],[-8,6],[-5,3],[-1,1],[-1,1],[-6,4],[-1,1],[-2,1],[-1,1],[0,0],[-1,0],[0,0],[0,0],[-15,3],[-1,0],[-2,1],[0,0],[-1,0],[-32,1],[-1,0],[-1,0],[-1,-1],[-13,-3],[-4,-2],[-3,-1],[0,0],[-1,-2],[-1,0],[0,0],[-1,-2],[-115,4],[-79,37],[-72,34],[0,0],[83,67],[92,47],[6,14],[10,45],[0,0],[-31,21],[-38,-3],[-101,-7],[-42,-11],[-16,-5],[0,0],[7,-6],[16,-14],[21,-23],[0,-1],[0,0],[1,-1],[0,-1],[2,-7],[1,-3],[0,-1],[0,0],[-3,-7],[-5,-12],[-2,-3],[-2,-3],[-1,-1],[0,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-30,-14],[-14,-7],[-65,-25],[-1,0],[-2,0],[-3,-1],[-8,-1],[-1,0],[0,0],[0,0],[-1,0],[-36,-1],[-3,0],[-2,0],[-28,1],[0,0],[0,0],[-17,2],[-13,3],[-2,1],[-2,2],[0,0],[-1,1],[0,0],[-84,147],[-106,189],[-11,51],[166,70],[0,0],[121,120],[94,29],[53,15],[21,3],[35,7],[2,0],[21,-2],[1,-2],[2,-1],[5,-6],[3,-4],[3,-4],[0,-1],[13,-18],[70,-91],[86,-28],[4,-1],[29,-1],[1,0],[0,0],[1,0],[2,1],[0,0],[6,1],[2,1],[2,0],[0,1],[1,0],[1,0],[1,2],[2,1],[0,0],[1,2],[4,10],[3,7],[1,2],[1,0],[0,1],[0,0],[-2,1],[-34,36],[-1,1],[36,7],[82,16],[84,16],[282,53],[211,30],[0,0],[1,0],[0,0],[3,0],[0,0],[0,0],[1,0],[0,0],[0,0],[1,0],[12,1],[2,0],[2,0],[30,-8],[6,-4],[22,-16],[6,-8],[12,-16],[5,-15],[0,-18],[0,-4],[-36,-34],[-32,-15],[-50,-23],[-22,-1],[-129,9],[-52,3],[0,0],[-1,0],[-2,0],[-3,0],[0,0],[-1,0],[-8,0],[0,0],[-82,-8],[-246,-96],[0,0],[97,-22],[52,9],[81,13],[26,3],[39,5],[1,0],[0,0],[1,0],[1,0],[37,0],[3,0],[1,0],[0,0],[30,-5],[61,-11],[1,0],[4,-1],[5,-2],[2,0],[0,0],[0,-5],[0,-2],[0,-1],[0,-1],[-22,-68],[9,-4],[170,-73],[16,19],[42,49],[50,112],[20,18],[67,56],[65,53],[21,15],[0,0],[1,1],[1,1],[2,1],[1,1],[26,20],[1,1],[15,5],[1,0],[2,1],[1,0],[0,0],[12,1],[3,1],[1,0],[53,-8],[0,0],[0,-1],[2,0],[1,0],[0,0],[5,-1],[22,-5],[1,0],[1,0],[0,-1],[2,0],[0,0],[0,0],[1,-1],[33,-12],[5,-2],[1,-1],[0,0],[1,0],[1,-1],[1,0],[19,-10],[0,-1],[1,0],[3,-2],[11,-6],[1,-1],[1,0],[5,-3],[0,0],[1,-1],[4,-3],[3,-3],[2,-1],[12,-10],[14,-13],[39,-35],[41,-37],[200,-292],[202,-202],[77,-77],[49,-32],[12,-8],[5,-2],[1,0],[4,-2],[20,-8],[0,0],[1,0],[2,-1],[4,-1],[2,-1],[2,-1],[0,0],[1,0],[0,0],[0,0],[19,1],[8,1],[1,0],[34,3],[0,0],[1,0],[-1,3],[-1,0],[-1,3],[-4,10],[-1,0],[0,1],[-104,115],[-134,192],[-36,87],[-109,261],[-15,39],[-6,18],[-3,14],[-3,14],[-3,11],[-4,42],[2,7],[8,16],[20,8],[1,0],[3,0],[22,2],[8,5],[76,47],[22,54],[1,4],[2,1],[0,1],[1,0],[8,8],[1,0],[0,1],[20,10],[39,18],[30,13],[22,5],[17,3],[0,-1],[0,0],[1,0],[0,0],[7,-1],[2,0],[6,-2]],[[10426,62403],[10,-1],[12,0],[0,0],[0,-1],[9,-25],[-5,-40],[-6,-44],[0,-3],[-4,-11],[0,0],[0,-1],[-13,-7],[-11,-6],[-2,-1],[-1,-1],[-169,-26],[-95,-42],[-114,-50],[0,0],[96,95],[193,137],[71,23],[8,2],[0,0],[1,0],[1,0],[1,0],[6,1],[11,1],[1,0],[0,0]],[[23309,65346],[9,-3],[4,-3],[2,-1],[17,-11],[29,-19],[0,0],[-9,-43],[-8,-10],[-30,-36],[-5,-7],[-6,-4],[-15,-10],[-5,-2],[-13,-4],[-1,0],[-7,2],[-3,1],[0,0],[-1,0],[-61,45],[-20,15],[-25,23],[-32,36],[0,0],[7,7],[11,9],[0,1],[3,1],[5,2],[2,1],[0,0],[15,3],[53,3],[7,1],[27,2],[10,1],[13,2],[1,1],[0,0],[0,0],[1,0],[20,1],[5,-4]],[[26194,67142],[-53,-46],[-24,-30],[-20,-26],[3,-5],[0,-1],[-18,-8],[-10,1],[-1,0],[-3,0],[-10,3],[0,1],[-1,0],[0,2],[0,1],[8,15],[1,1],[4,7],[14,23],[45,42],[171,129],[1,0],[20,11],[2,1],[16,6],[1,0],[2,1],[1,0],[1,1],[9,0],[6,1],[2,0],[0,0],[0,-1],[0,0],[0,0],[1,-1],[0,-2],[0,-1],[-168,-125]],[[25236,68516],[-14,-6],[0,-1],[-1,0],[-1,0],[-6,-4],[-5,-3],[-1,-1],[-1,-1],[0,0],[-1,0],[-11,-14],[0,0],[0,-2],[0,0],[0,-1],[0,-2],[0,-3],[0,-3],[1,-12],[2,-14],[0,0],[7,-7],[73,-63],[21,-14],[32,-20],[28,-19],[41,-25],[64,-27],[24,-10],[0,0],[7,1],[54,13],[2,1],[2,0],[1,1],[0,0],[1,0],[2,0],[0,0],[1,1],[27,3],[4,1],[1,0],[1,0],[34,4],[3,0],[0,0],[0,0],[1,0],[22,-4],[1,0],[50,-13],[43,-10],[8,-8],[12,-13],[-62,-154],[-420,-213],[-63,-32],[-126,-63],[-111,-48],[0,1],[-1,0],[-1,0],[-1,0],[-9,3],[-28,8],[0,0],[-4,3],[-3,3],[-11,10],[-1,1],[0,1],[-1,1],[0,0],[-1,1],[0,0],[0,1],[0,0],[0,3],[2,9],[3,3],[2,3],[8,6],[6,3],[4,2],[6,4],[31,67],[30,91],[-10,16],[-29,49],[-13,10],[-54,28],[-37,2],[-87,-34],[-114,-44],[-427,-70],[-10,0],[-34,-2],[-56,-1],[-5,0],[-19,39],[-7,45],[6,7],[17,22],[4,6],[6,8],[17,4],[1,0],[1,0],[2,0],[1,0],[33,16],[76,38],[172,224],[0,0],[0,1],[0,1],[0,1],[-1,5],[0,0],[0,0],[-1,2],[-2,5],[-1,2],[-1,1],[-2,1],[-1,0],[0,0],[-1,1],[0,0],[-3,1],[-9,4],[-14,6],[0,0],[-1,1],[0,0],[0,0],[-2,0],[-1,1],[-2,0],[0,0],[-18,5],[0,0],[-1,0],[-118,30],[-28,13],[-147,69],[0,1],[3,11],[1,7],[2,4],[1,3],[2,4],[0,0],[1,1],[4,3],[0,0],[1,0],[2,2],[34,9],[11,2],[26,7],[50,12],[129,26],[92,15],[72,11],[408,13],[40,8],[62,12],[31,-5],[35,-6],[4,-1],[2,-1],[129,-90],[0,0]],[[24408,68920],[7,6],[5,5],[56,9],[13,2],[1,0],[24,1],[2,0],[74,-23],[23,-6],[1,-1],[0,0],[1,0],[6,-3],[10,-3],[1,-1],[0,0],[0,0],[0,0],[1,-1],[25,-20],[1,0],[0,0],[35,-48],[32,-43],[23,-43],[0,-1],[1,-2],[1,-1],[1,-3],[3,-7],[0,-1],[1,0],[0,0],[0,-3],[2,-18],[0,0],[0,-1],[-4,-13],[0,-1],[0,0],[-31,-55],[-27,-13],[-10,-3],[-1,-1],[0,0],[-2,0],[-2,-1],[0,0],[-500,-43],[-20,5],[-62,14],[-41,43],[-25,25],[-50,40],[-126,99],[0,0],[248,70],[72,22],[58,18],[131,5],[22,-2],[20,-3]],[[27010,69011],[8,-4],[7,-3],[0,0],[-18,-21],[-1,0],[-1,-1],[-5,-3],[-5,-4],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-5,-2],[-8,-4],[-10,-2],[-53,-4],[-13,-1],[-66,31],[-44,21],[-12,12],[0,0],[-9,11],[-10,12],[0,0],[-1,2],[-3,5],[-7,13],[0,1],[0,0],[0,0],[-1,7],[-1,7],[-1,1],[0,0],[1,1],[0,1],[4,8],[3,5],[41,17],[1,0],[0,0],[2,0],[9,-1],[6,0],[3,0],[28,-9],[34,-39],[132,-54]],[[19425,69077],[10,-3],[42,-62],[14,-22],[79,-81],[2,-2],[42,-26],[128,-79],[1,-1],[10,-3],[10,-4],[1,0],[54,-5],[2,0],[3,0],[53,-54],[19,-19],[14,-15],[28,-31],[52,-73],[-3,-8],[0,-1],[-3,-3],[-4,-4],[0,0],[-21,2],[-76,12],[-22,5],[-1,0],[0,0],[-1,1],[-7,4],[-3,2],[-2,1],[-28,32],[0,0],[-276,148],[-117,99],[0,0],[-3,2],[-197,188],[-16,22],[0,0],[-3,75],[0,0],[7,2],[28,9],[75,-9],[20,-5],[37,-9],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[22,-9],[23,-11],[26,-11],[1,0],[1,-1],[2,-1],[4,-2],[0,0],[-3,-2],[0,0],[-2,-3],[-1,0],[-2,0],[-1,0],[-1,0],[0,0],[-18,-6],[-2,-1],[-9,-3],[-13,-10],[-3,-2],[3,-3],[13,-12],[8,-6],[2,-1]],[[27757,69235],[0,0],[1,1],[29,2],[28,2],[125,-7],[2,-1],[0,0],[301,-36],[0,0],[-1,-20],[-108,-36],[-62,8],[-6,1],[-21,3],[-3,1],[-1,0],[-2,0],[-2,0],[-1,1],[-10,3],[-12,3],[-18,9],[-4,2],[-22,12],[-3,2],[-8,4],[-11,3],[-1,0],[-3,1],[0,0],[0,0],[-1,0],[-4,0],[-42,1],[-10,1],[-2,-1],[-1,0],[-16,-1],[-2,0],[-68,-8],[-48,-5],[-160,-43],[5,14],[20,47],[138,36],[4,1]],[[28565,69278],[10,0],[3,0],[8,0],[1,0],[3,0],[7,-2],[1,0],[17,-8],[0,0],[-2,-2],[0,0],[0,0],[-61,-21],[0,0],[0,0],[-5,0],[-16,1],[-11,2],[-7,4],[-23,21],[0,1],[1,3],[1,3],[2,0],[51,-2],[20,0]],[[23910,69375],[11,-1],[13,-1],[70,-15],[24,-4],[4,-2],[52,-14],[1,0],[1,0],[0,0],[1,-1],[2,-3],[3,-2],[0,-1],[0,0],[0,0],[0,-1],[-1,0],[-5,-5],[-3,-3],[-2,-1],[-18,-8],[-26,-11],[-20,-4],[-4,-1],[-111,-17],[-4,0],[0,0],[0,0],[-2,0],[-47,-2],[0,0],[-65,20],[-28,14],[-8,33],[6,21],[3,13],[0,0],[2,1],[3,2],[0,0],[0,0],[1,0],[0,0],[19,1],[128,-8]],[[23731,69541],[5,-3],[17,-8],[5,-3],[8,-9],[3,-2],[0,-1],[3,-5],[1,-1],[0,0],[0,-1],[0,-2],[0,0],[-1,-1],[-1,-3],[-12,-12],[-50,-15],[-4,1],[-4,1],[-8,1],[-4,0],[-2,1],[-3,0],[-1,0],[0,0],[-1,2],[-5,4],[0,0],[-1,1],[-1,0],[0,0],[10,17],[17,30],[5,4],[1,1],[0,0],[2,1],[1,0],[1,0],[0,0],[0,0],[2,0],[4,1],[1,1],[0,0],[0,0],[2,0],[1,0],[8,0],[1,0]],[[23623,69625],[59,-14],[0,0],[0,0],[1,0],[2,-1],[23,-7],[3,-1],[1,0],[1,-1],[3,-1],[9,-3],[0,0],[26,-11],[32,-13],[1,-1],[0,0],[2,-3],[1,0],[-2,-2],[-5,-7],[0,-1],[-1,0],[0,0],[-1,0],[-3,-1],[-4,0],[0,0],[-1,0],[-13,3],[-1,0],[-1,0],[-1,1],[-151,12],[-2,-1],[-2,0],[-4,-1],[-1,0],[0,0],[-1,0],[-1,-1],[-1,0],[0,0],[-1,0],[-6,0],[-4,0],[-3,-1],[-1,1],[-1,0],[-12,1],[-2,0],[0,0],[-2,1],[-1,1],[-1,0],[0,0],[-5,2],[-9,11],[0,0],[-2,5],[-5,29],[-1,6],[3,2],[6,6],[2,0],[1,0],[12,1],[1,0],[0,0],[1,0],[2,0],[1,0],[0,0],[7,-1],[6,0],[17,-4],[29,-6]],[[19381,69909],[17,-2],[19,-1],[21,-10],[38,-19],[-6,-19],[-74,-15],[-21,0],[-14,0],[-8,1],[-10,1],[-11,7],[-2,2],[0,0],[-1,5],[1,6],[2,9],[6,14],[7,15],[36,6]],[[19345,69961],[34,-8],[10,-2],[58,-26],[2,-8],[0,0],[-87,5],[-7,1],[-2,0],[-24,2],[0,0],[0,0],[-2,0],[0,0],[-1,0],[0,0],[0,0],[-29,7],[0,0],[-3,0],[-4,2],[-5,1],[-2,1],[0,0],[0,0],[0,0],[0,0],[2,2],[17,11],[2,1],[23,8],[1,0],[1,0],[13,3],[3,0]],[[27526,70190],[-37,9],[-26,6],[-48,23],[-34,47],[-16,24],[-1,1],[0,3],[0,3],[0,0],[0,2],[1,1],[0,1],[9,9],[1,1],[1,0],[1,1],[5,3],[0,0],[2,1],[34,10],[5,2],[72,-10],[44,-14],[72,-26],[32,-10],[3,-2],[11,-5],[1,-1],[1,-1],[9,-4],[3,-1],[0,-1],[0,0],[1,0],[1,-2],[1,-3],[2,-5],[8,-17],[1,-2],[0,0],[-1,-2],[-2,-3],[-1,-1],[0,0],[-2,0],[-4,-2],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-28,-5],[-37,-8],[-45,-16],[-10,-2],[-23,-3]],[[29948,70416],[1,0],[0,0],[0,0],[2,0],[1,-1],[45,-14],[0,0],[1,0],[2,-1],[3,-1],[99,-39],[0,0],[1,-1],[0,0],[0,0],[2,-2],[2,-2],[3,-2],[0,0],[-8,-24],[-6,-14],[-3,-6],[-26,-19],[-8,-6],[-19,-4],[0,0],[-241,-21],[-73,-8],[-293,-36],[-4,-1],[-3,0],[-31,-5],[-16,-3],[0,0],[-1,0],[0,0],[0,0],[-104,-12],[-3,0],[-32,0],[-1,-1],[-1,0],[-7,2],[-33,8],[-1,0],[0,1],[-1,0],[-2,1],[0,0],[0,0],[-33,23],[-12,9],[0,0],[-2,5],[-1,4],[9,26],[0,0],[0,0],[0,1],[5,6],[4,5],[3,4],[1,0],[1,1],[2,2],[6,4],[1,1],[1,0],[1,1],[0,0],[2,1],[2,1],[1,1],[2,1],[18,10],[14,7],[1,0],[1,0],[1,1],[4,1],[4,1],[157,34],[33,10],[12,3],[21,10],[33,14],[106,20],[3,0],[15,2],[0,0],[1,0],[78,10],[112,11],[3,0],[4,0],[0,0],[0,0],[1,0],[3,1],[5,0],[1,0],[22,-1],[5,0],[0,0],[1,-1],[13,-1],[2,0],[1,0],[2,-1],[55,-10],[30,-5],[0,-1]],[[22925,70478],[8,0],[22,-2],[34,-9],[7,-2],[20,-6],[9,-10],[2,-3],[-5,-5],[-21,-21],[0,0],[53,0],[39,-1],[-6,-13],[-39,-23],[-2,-1],[0,0],[-2,0],[-11,-3],[-2,-1],[-14,-1],[-1,-1],[-2,0],[-3,0],[-1,0],[-4,-1],[-39,-4],[-18,-1],[-3,-1],[0,0],[-134,33],[0,0],[-5,11],[-5,10],[0,0],[1,26],[1,3],[0,1],[0,0],[0,0],[0,0],[12,6],[27,13],[67,10],[1,0],[0,0],[4,1],[10,-5]],[[25770,70486],[-21,-9],[-2,0],[0,0],[-1,0],[-2,0],[-2,0],[-1,1],[-52,9],[-1,0],[-2,1],[-22,2],[-1,0],[0,0],[-8,2],[-3,1],[-1,0],[-1,1],[-1,0],[-1,1],[-3,2],[0,1],[0,0],[35,33],[0,0],[1,0],[10,5],[1,0],[2,1],[1,0],[8,1],[0,1],[1,0],[0,0],[0,0],[14,-2],[1,0],[0,0],[7,-2],[11,-3],[0,0],[1,0],[0,-1],[40,-31],[0,0],[0,0],[0,-1],[-1,-1],[-5,-8],[-2,-4]],[[25134,70546],[16,3],[9,2],[28,-1],[10,0],[1,0],[1,-1],[1,0],[59,-8],[1,0],[0,0],[0,0],[1,0],[1,-1],[15,-8],[6,-4],[1,0],[2,-1],[0,-1],[0,0],[2,-4],[0,0],[1,-2],[0,-1],[1,0],[0,0],[-1,-1],[0,0],[0,-1],[-33,-69],[-34,-73],[-18,-53],[-14,-41],[92,-11],[92,-10],[208,130],[221,34],[18,2],[57,6],[131,-26],[1,0],[335,-71],[145,-24],[71,-12],[19,8],[2,1],[5,0],[8,1],[2,0],[12,1],[6,0],[2,0],[78,-2],[49,-2],[131,-10],[38,-3],[1,0],[1,0],[9,-1],[14,-2],[0,0],[0,0],[1,0],[5,-1],[0,0],[1,0],[18,-4],[0,0],[1,0],[1,-1],[9,-2],[7,-3],[0,0],[1,0],[41,-17],[96,-42],[0,0],[-23,-41],[-45,-81],[-23,-35],[-24,-37],[-291,-122],[-39,-12],[-60,-19],[-58,-69],[-87,-103],[-28,-36],[-4,-5],[-3,-1],[-68,-26],[-53,-16],[-5,-1],[-8,-3],[-156,-46],[-11,-1],[-2,0],[-7,1],[-74,6],[0,1],[-17,3],[-2,1],[-1,0],[-2,1],[0,1],[-1,1],[-1,0],[-2,3],[0,0],[-86,16],[-232,-71],[-77,-52],[-125,-5],[-69,-3],[-149,21],[-122,21],[-52,10],[-39,8],[-1,0],[-48,17],[-1,0],[0,0],[-24,12],[-28,14],[-1,3],[0,1],[0,0],[0,1],[-1,7],[2,2],[17,13],[1,0],[0,0],[1,1],[1,0],[1,1],[12,5],[26,11],[1,0],[1,1],[-5,2],[-13,8],[-156,-8],[-75,-4],[-2,-1],[-31,-4],[0,0],[0,0],[-1,0],[-115,-23],[0,0],[-11,1],[-88,0],[-126,3],[-122,3],[-208,17],[-319,69],[-35,13],[-155,69],[-1,1],[-3,1],[-5,3],[-9,5],[-1,0],[0,0],[0,1],[-14,20],[0,1],[-1,1],[-2,5],[-1,1],[-1,3],[-1,0],[10,6],[1,0],[1,1],[1,1],[1,0],[0,0],[16,7],[0,0],[2,0],[1,1],[148,9],[46,-2],[17,-1],[0,0],[1,0],[15,-2],[6,-1],[2,0],[0,0],[1,0],[1,0],[0,-1],[1,0],[33,-6],[2,0],[2,-1],[0,0],[0,-1],[1,0],[0,0],[1,-2],[1,-2],[0,0],[45,-12],[90,-24],[234,-24],[12,0],[13,0],[30,4],[12,2],[6,1],[8,2],[15,2],[0,0],[-2,1],[-1,1],[-8,4],[-5,3],[-1,0],[-1,1],[-77,16],[-29,6],[-12,2],[-62,10],[-49,6],[-34,1],[-14,-3],[-36,19],[-18,14],[-11,9],[-2,4],[-6,8],[0,0],[29,3],[20,2],[20,2],[30,3],[20,2],[84,8],[141,7],[19,1],[14,1],[35,-5],[0,0],[3,-1],[3,-1],[1,0],[0,0],[21,-3],[27,-4],[1,0],[1,0],[1,0],[0,0],[18,0],[6,1],[11,2],[1,1],[1,0],[0,0],[0,0],[1,0],[1,1],[1,0],[0,0],[4,2],[0,0],[34,74],[3,9],[4,12],[-1,0],[-1,4],[-17,5],[-1,1],[-16,1],[-53,5],[-352,-32],[-464,-50],[-305,-5],[-117,-2],[-57,4],[-127,58],[-49,27],[-24,16],[-25,16],[-63,44],[0,0],[25,10],[13,5],[35,11],[0,0],[232,25],[17,-1],[5,0],[0,0],[-6,59],[0,0],[-111,6],[-254,71],[-11,3],[-117,5],[-4,-1],[-1,0],[-4,-2],[-1,0],[0,0],[-2,0],[-2,0],[-15,1],[0,0],[0,1],[0,0],[0,4],[26,11],[20,7],[89,19],[7,1],[15,1],[29,2],[29,2],[135,7],[134,4],[158,-50],[133,27],[22,106],[89,-25],[106,-30],[0,0],[-4,24],[-10,50],[0,0],[-23,22],[-44,42],[-26,-1],[-27,-1],[-1,0],[-7,0],[-3,1],[0,0],[0,0],[-8,3],[-2,0],[-17,17],[-4,5],[0,0],[-1,1],[-2,4],[0,0],[-1,1],[-5,11],[-1,1],[0,0],[0,0],[1,1],[2,2],[5,7],[1,2],[2,0],[22,10],[3,1],[1,0],[1,1],[0,0],[15,5],[80,31],[0,0],[60,-17],[226,-62],[37,-23],[208,-135],[10,-12],[3,-4],[3,-3],[2,-2],[1,-1],[0,0],[1,0],[0,-1],[12,-3],[10,-3],[1,0],[1,-1],[1,0],[0,0],[0,0],[5,0],[1,0],[0,0],[86,8],[19,4],[31,5],[72,25],[44,7],[122,13],[21,-40],[19,-38],[46,-44],[154,-98],[85,27],[28,8],[0,0],[13,222],[-8,2],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[-11,8],[-28,17],[-1,1],[-4,4],[-4,4],[-1,1],[0,0],[-1,1],[-1,4],[-4,9],[0,2],[0,1],[1,2],[0,2],[2,4],[1,3],[0,1],[2,2],[2,3],[9,11],[0,1],[2,0],[5,1],[3,1],[7,2],[20,4],[5,1],[5,1],[1,0],[0,0],[21,3],[3,0],[9,1],[16,0],[12,0],[2,0],[2,-1],[1,0],[1,0],[4,0],[1,0],[1,-1],[1,0],[0,0],[0,0],[2,0],[0,0],[8,-4],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[1,-17],[0,-2],[-1,-3],[0,-1],[67,30],[70,32],[12,-2],[20,-2]],[[23687,70569],[-7,-1],[-1,0],[-1,0],[0,0],[-2,1],[-4,0],[-1,0],[-16,5],[-15,5],[0,0],[-1,0],[0,1],[-3,1],[-3,3],[-1,0],[0,1],[0,0],[0,0],[0,1],[1,9],[0,1],[1,1],[0,2],[0,0],[0,0],[1,0],[0,0],[1,1],[1,0],[0,0],[3,1],[63,23],[1,0],[0,0],[2,0],[4,0],[1,0],[7,-1],[3,-1],[21,-11],[19,-10],[1,-2],[1,-1],[0,0],[1,-1],[0,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-10,-4],[-6,-2],[-13,-5],[-3,-1],[-4,-2],[-3,-1],[0,0],[0,0],[-2,-1],[-30,-7],[-4,0]],[[24025,70736],[24,-1],[20,-2],[11,-4],[20,-7],[0,0],[-54,-31],[-62,18],[-6,2],[0,0],[-1,0],[-21,10],[-1,0],[-2,1],[0,0],[0,0],[-3,3],[-5,4],[-1,1],[0,0],[1,2],[2,1],[4,4],[2,0],[0,1],[1,0],[1,0],[2,1],[1,0],[0,0],[11,0],[30,0],[2,0],[0,0],[17,0],[1,0],[1,-1],[1,0],[4,-2]],[[24346,70760],[0,0],[-3,-9],[0,0],[-4,-2],[-13,-7],[-38,-10],[-32,-8],[-1,0],[0,0],[-6,-1],[-1,0],[0,0],[-4,0],[-2,0],[0,1],[0,0],[-1,0],[-1,1],[-2,1],[-1,1],[-3,2],[-17,11],[-2,6],[-3,6],[0,1],[-1,0],[1,1],[0,0],[1,1],[1,0],[2,1],[5,1],[36,7],[3,1],[1,0],[1,0],[0,0],[1,0],[20,2],[30,4],[1,0],[4,0],[4,0],[0,1],[1,0],[2,-1],[21,-11]],[[24141,70783],[12,0],[19,0],[41,-10],[0,-1],[0,-2],[-6,-2],[-1,0],[-2,-1],[-17,-5],[0,0],[-11,-2],[-51,-11],[-39,7],[-64,17],[-29,17],[-24,14],[-3,2],[0,0],[0,0],[-1,1],[0,1],[2,1],[0,1],[1,1],[1,0],[21,5],[1,1],[1,0],[15,2],[2,0],[1,0],[0,0],[1,0],[2,0],[0,0],[0,0],[7,-1],[3,-1],[1,0],[0,0],[4,-1],[113,-33]],[[8300,6623],[-18,-111],[-189,124],[33,44],[133,17],[41,-74]],[[17393,364],[8,-6],[5,-9],[6,-9],[4,-10],[9,-23],[6,-30],[1,-23],[-2,-37],[0,-3],[0,-2],[-2,-5],[-1,-1],[-5,-13],[-1,-2],[0,-1],[-5,-10],[-52,-107],[-28,-42],[-14,-8],[-26,151],[0,40],[2,19],[1,4],[0,1],[0,1],[9,33],[9,18],[11,15],[8,11],[26,36],[9,9],[19,4],[1,-1],[2,0]],[[17736,1491],[20,-6],[8,-15],[-5,-50],[-9,-53],[-1,0],[0,-1],[-9,-14],[-2,-2],[-5,2],[-4,3],[-16,16],[-4,14],[-3,17],[21,76],[7,12],[2,1]],[[22046,49308],[-37,-33],[0,0],[-12,264],[11,61],[29,82],[25,74],[217,486],[49,61],[0,0],[5,-10],[10,-20],[-28,-118],[-15,-65],[-78,-224],[-64,-185],[-88,-305],[-24,-68]],[[22943,49984],[-81,-7],[-34,386],[34,145],[141,197],[5,7],[63,54],[15,12],[26,19],[76,-5],[55,-9],[34,-70],[0,0],[-57,-67],[-60,-16],[-7,-27],[-14,-48],[-5,-62],[-6,-66],[26,-60],[0,0],[-211,-383]],[[19472,29628],[-72,-98],[-58,31],[-27,48],[7,105],[95,5],[55,-59],[0,-32]],[[39712,11082],[59,-12],[129,50],[170,-116],[-43,-72],[-146,-98],[-203,-44],[-52,30],[-109,175],[49,117],[57,36],[28,-12],[61,-54]],[[14990,34224],[-98,-157],[0,0],[-6,1],[-77,20],[0,0],[-3,70],[11,21],[25,49],[90,64],[14,10],[14,-10],[2,-1],[0,0],[14,-34],[14,-33]],[[15757,34514],[-62,-60],[-293,154],[-51,70],[-9,13],[11,46],[198,212],[103,62],[37,9],[55,14],[46,-114],[65,-159],[-18,-44],[-82,-203]],[[16266,34983],[-14,-70],[-208,98],[0,0],[-17,78],[1,4],[12,32],[125,29],[42,-47],[38,-44],[10,-37],[11,-43]],[[6378,24573],[0,0],[-45,-20],[-11,4],[-14,4],[-40,102],[-1,3],[0,0],[-2,6],[-56,172],[1,7],[1,13],[12,8],[13,8],[11,1],[5,0],[49,0],[66,18],[37,24],[5,5],[4,5],[4,6],[2,2],[8,15],[5,10],[91,81],[30,14],[12,5],[1,0],[1,0],[0,-1],[0,0],[1,0],[2,-2],[4,-4],[4,-5],[0,0],[1,-4],[1,-3],[-7,-43],[-138,-334],[-5,-10],[-14,-28],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-3,-5],[0,0],[0,-1],[-1,-2],[0,0],[0,0],[-2,-3],[0,0],[-7,-11],[-5,-10],[-2,-3],[-6,-8],[-6,-7],[-3,-4]],[[5707,24270],[-5,-4],[-18,-16],[-51,38],[0,0],[-1,19],[-3,44],[0,0],[63,43],[50,-23],[0,0],[-11,-30],[-24,-71]],[[6897,24371],[0,0],[-70,-51],[0,0],[-7,4],[-23,11],[-15,19],[-13,16],[-5,6],[-12,15],[-1,1],[-1,2],[0,0],[-5,6],[-2,4],[-1,1],[-2,4],[-1,3],[-1,2],[0,1],[-2,5],[0,1],[-1,1],[-12,45],[-2,10],[-1,4],[2,40],[2,30],[0,3],[0,0],[58,124],[64,4],[60,3],[0,0],[3,-6],[3,-6],[3,-26],[9,-70],[0,0],[3,-4],[1,0],[0,0],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,0],[1,0],[0,-2],[2,-3],[0,-1],[0,0],[0,0],[1,-3],[0,-4],[0,-1],[0,0],[1,-2],[0,-2],[-2,-32],[-1,-11],[-8,-80],[-14,-33],[-10,-14],[-5,-7]],[[6071,24569],[-19,-4],[0,0],[-9,4],[-1,1],[-3,2],[0,0],[-21,30],[-1,4],[-1,2],[-7,17],[0,1],[0,0],[-1,2],[0,2],[-1,3],[-1,1],[0,6],[-1,1],[0,1],[0,2],[0,9],[2,12],[2,22],[0,1],[0,0],[0,1],[1,4],[1,5],[1,3],[3,9],[2,8],[2,3],[1,0],[19,11],[31,-7],[2,-2],[2,-2],[4,-3],[0,-1],[0,0],[13,-14],[20,-21],[1,-1],[0,0],[1,-2],[1,-1],[1,-5],[2,-5],[1,-5],[2,-6],[1,-12],[0,-2],[0,-1],[0,-5],[-1,-9],[-5,-12],[0,-2],[0,0],[0,0],[-1,-2],[-1,-1],[0,0],[-1,-1],[-16,-21],[-8,-8],[-8,-8],[-9,-4]],[[7669,25167],[1,-15],[0,-1],[3,-54],[0,-7],[0,-14],[-1,-11],[0,-4],[0,-15],[-2,-17],[-8,-79],[-2,-24],[-12,-67],[-10,-59],[0,0],[0,-1],[-1,-2],[0,-2],[-1,-3],[-5,-13],[-6,-14],[-9,-13],[-1,-1],[-2,-2],[0,0],[-4,-3],[-146,-105],[-81,-2],[-5,-1],[111,122],[30,109],[51,192],[14,70],[1,1],[0,0],[1,6],[0,1],[0,2],[0,1],[-2,15],[0,1],[0,1],[0,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,2],[0,2],[0,5],[0,1],[0,6],[1,1],[1,1],[5,4],[4,4],[20,16],[9,6],[1,0],[6,3],[16,5],[0,0],[10,-12],[9,-14],[3,-9],[0,-3],[2,-8],[1,-2]],[[5788,24993],[-18,-48],[0,0],[-1,0],[-2,0],[-1,1],[0,0],[-3,5],[-3,3],[-3,4],[-1,4],[-1,3],[-2,4],[-2,6],[0,1],[-58,226],[-3,12],[0,2],[0,2],[0,0],[0,2],[1,4],[0,1],[0,0],[0,1],[1,3],[0,0],[2,8],[1,2],[2,7],[3,9],[2,6],[6,9],[0,1],[0,0],[1,1],[0,1],[6,6],[17,18],[56,-7],[3,-1],[2,-2],[1,0],[1,-2],[7,-16],[1,-5],[17,-58],[-11,-132],[0,-2],[-3,-24],[0,-2],[0,-1],[-1,-2],[-7,-20],[-10,-30]],[[7797,25388],[-107,-99],[0,0],[-27,15],[0,0],[-10,31],[18,101],[0,1],[1,1],[4,14],[1,1],[1,2],[12,20],[5,6],[0,0],[10,12],[0,0],[47,32],[48,38],[17,14],[22,-10],[19,-8],[-12,-71],[-3,-23],[-2,-25],[-9,-18],[-3,-5],[-32,-29]],[[7825,25622],[0,0],[-7,-4],[-7,-3],[-3,1],[-4,2],[0,0],[0,1],[-1,3],[0,0],[0,3],[1,1],[15,49],[1,2],[1,1],[0,0],[0,0],[2,0],[8,-7],[3,-10],[2,-6],[0,0],[-11,-32],[0,-1]],[[7815,25758],[0,0],[0,0],[-1,0],[0,0],[0,0],[-2,1],[-1,4],[0,1],[0,1],[0,5],[0,3],[0,1],[0,0],[1,2],[0,1],[1,3],[0,0],[0,1],[2,2],[2,3],[4,4],[0,0],[1,1],[1,-1],[0,-1],[2,-1],[6,-4],[0,-1],[1,0],[0,0],[0,-1],[1,-2],[-1,-4],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-3,-5],[-1,-1],[0,0],[0,-1],[-3,-2],[-4,-2],[-2,-1],[0,0],[-2,0]],[[6234,28617],[-43,-2],[-14,7],[-26,14],[-31,20],[-17,15],[-36,31],[-12,24],[-6,16],[-6,24],[0,5],[0,3],[0,1],[13,22],[4,6],[6,8],[9,10],[4,1],[2,1],[0,0],[1,0],[2,0],[1,0],[0,0],[0,0],[1,-1],[1,-1],[1,-1],[89,-33],[55,-25],[63,-47],[0,0],[-6,-13],[-18,-40],[-16,-32],[-6,-8],[-1,-1],[-4,-2],[-1,-1],[-7,-1],[-1,0],[-1,0]],[[6408,28485],[-2,-13],[0,0],[-21,65],[-1,8],[0,10],[0,2],[1,2],[0,0],[1,-1],[0,0],[0,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[2,-5],[2,-4],[14,-40],[2,-19]],[[6503,28987],[-41,-34],[-1,0],[-1,0],[-5,11],[0,2],[0,2],[0,4],[6,15],[2,9],[2,2],[4,9],[3,4],[0,1],[0,0],[1,0],[0,1],[2,2],[4,4],[2,2],[2,2],[0,0],[1,0],[1,1],[0,0],[3,2],[6,-2],[3,-1],[4,-2],[2,-5],[1,0],[-1,-15],[0,-14]],[[2096,33158],[7,-1],[3,1],[1,0],[45,6],[48,17],[34,13],[14,0],[32,1],[5,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[0,0],[1,0],[0,0],[5,-3],[2,-1],[1,-2],[0,0],[1,-1],[1,0],[0,-2],[4,-21],[0,0],[0,-2],[0,-1],[0,-1],[0,-13],[-1,-25],[0,-3],[-1,-5],[0,0],[0,-1],[0,-1],[0,0],[0,0],[0,-1],[-1,-2],[-1,-1],[-2,-6],[-1,0],[-1,-2],[-4,-3],[0,0],[-1,-2],[-15,-6],[-17,-4],[-70,-17],[-23,-2],[-37,-2],[-59,14],[-27,7],[-6,5],[-3,3],[-1,0],[0,0],[0,1],[-2,1],[-1,1],[0,0],[-2,1],[-4,5],[-24,29],[-12,16],[-8,10],[-8,11],[-2,2],[0,1],[0,0],[0,1],[-1,1],[-2,6],[-1,1],[0,2],[0,0],[0,0],[-1,5],[0,1],[0,2],[0,0],[0,1],[-1,3],[0,3],[0,0],[14,28],[6,5],[14,-8],[40,-21],[13,-26],[20,-8],[17,-6],[3,-1],[4,-1]],[[2363,32382],[0,0],[-1,-1],[0,0],[-9,0],[-9,0],[-16,4],[-34,6],[0,0],[0,1],[-3,3],[-2,2],[-4,14],[-5,20],[0,1],[0,0],[0,2],[0,1],[1,3],[1,1],[0,1],[0,0],[1,1],[2,1],[8,4],[9,3],[1,0],[22,7],[3,0],[2,1],[7,-2],[1,0],[0,0],[6,-12],[16,-35],[1,-2],[0,-1],[3,-15],[-1,-7],[0,-1]],[[907,33673],[-33,-2],[-50,-3],[-52,16],[-26,9],[-15,6],[-10,4],[-1,0],[-13,11],[-2,1],[0,0],[0,0],[-1,1],[0,0],[-4,4],[-6,19],[-1,3],[0,1],[0,1],[-1,2],[-1,5],[0,0],[0,1],[-1,2],[0,3],[-1,13],[0,5],[0,3],[1,6],[1,2],[0,1],[0,0],[0,1],[2,3],[1,2],[6,8],[1,0],[0,1],[2,2],[2,2],[4,3],[0,0],[0,0],[1,1],[5,2],[7,2],[10,1],[21,1],[1,0],[4,-2],[0,0],[6,-2],[9,-3],[25,-17],[116,-79],[5,-4],[3,-2],[10,-9],[1,-1],[0,-1],[0,0],[0,-1],[1,-5],[0,-1],[0,-1],[1,-1],[0,0],[0,0],[-1,-1],[0,-3],[0,0],[-1,-1],[-4,-2],[0,0],[0,0],[-2,-1],[0,0],[-1,-1],[-11,-4],[-4,0],[-2,0],[-1,0],[0,-1],[-1,0]],[[648,33783],[-17,-3],[-24,-4],[-4,1],[-10,3],[-19,40],[-3,39],[0,0],[12,9],[19,13],[31,-7],[0,0],[5,-4],[13,-11],[5,-12],[5,-12],[-1,-17],[-1,-10],[-1,-10],[-4,-8],[-2,-4],[-4,-3]],[[1055,33793],[-23,-6],[-1,0],[0,0],[-1,0],[0,0],[-93,64],[-64,44],[-24,19],[-5,4],[0,0],[-24,32],[-1,1],[-5,8],[-6,8],[-10,16],[0,1],[0,1],[0,1],[0,1],[0,0],[1,0],[1,1],[18,-7],[15,-10],[57,-36],[29,-19],[51,-34],[22,-17],[49,-37],[1,-1],[11,-10],[5,-4],[1,-1],[1,-1],[4,-7],[1,-1],[0,-1],[0,0],[-1,-2],[-1,-1],[-1,-2],[-2,-2],[0,-1],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-2,-1],[-1,0],[0,0],[0,0]],[[1388,33892],[0,0],[-7,-8],[-60,7],[-9,1],[-6,1],[-26,7],[-5,4],[-16,15],[-2,3],[0,0],[-1,1],[-3,4],[-1,1],[0,1],[-3,3],[0,2],[-2,3],[-3,13],[0,1],[0,1],[0,1],[-2,12],[0,3],[0,3],[0,1],[0,1],[0,2],[0,5],[1,8],[1,4],[4,12],[1,6],[0,0],[0,0],[1,0],[0,0],[14,9],[4,2],[0,1],[1,0],[3,0],[1,0],[1,1],[6,1],[9,2],[1,0],[3,0],[5,0],[1,0],[3,0],[2,0],[6,-3],[63,-12],[0,-1],[1,0],[3,-2],[2,-2],[0,-1],[11,-12],[2,-3],[0,0],[1,-4],[1,-1],[0,-1],[3,-13],[3,-16],[4,-19],[-1,-2],[0,-4],[-1,-1],[0,0],[0,0],[0,-2],[-9,-23],[-5,-12]],[[964,34205],[-1,0],[0,0],[-1,0],[-3,0],[-7,3],[-1,1],[0,0],[-1,0],[-1,0],[0,0],[-1,1],[-2,1],[0,1],[-4,1],[-9,5],[-1,0],[0,0],[0,1],[-2,1],[-3,6],[-3,4],[-1,1],[-5,16],[-1,2],[-3,13],[0,0],[6,14],[2,4],[1,0],[3,1],[2,1],[1,0],[0,0],[1,0],[1,1],[1,-1],[3,0],[1,0],[0,0],[0,0],[6,-3],[3,-3],[3,-2],[8,-7],[5,-13],[7,-17],[1,-3],[2,-3],[0,-4],[2,-9],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-3],[0,0],[0,-1],[-1,0],[0,-1],[-3,-1],[-1,0],[-2,-1]],[[37798,60398],[-89,-43],[-34,-16],[-54,-13],[-313,-78],[-39,12],[-38,13],[-83,86],[-32,33],[0,0],[-3,-1],[-17,-6],[4,-19],[9,-37],[73,-63],[0,0],[-74,43],[-14,44],[-2,78],[-3,93],[33,174],[64,112],[122,88],[114,42],[163,9],[140,-70],[95,-48],[115,-57],[115,-118],[0,0],[-145,-148],[-107,-110]],[[42240,61782],[441,-328]],[[42681,61110],[-187,17],[0,0],[-11,38],[8,31],[0,0],[55,-7],[-80,57],[-56,41],[-32,4],[-100,15],[-4,-25],[9,-15],[8,-12],[0,0],[-54,1],[-131,114],[-74,65],[-16,52],[-12,41],[0,0],[69,158],[0,0],[46,39],[36,31],[85,27]],[[39423,62213],[0,0],[-40,-7],[-103,125],[-145,109],[-9,7],[0,0],[-62,17],[-31,8],[0,0],[-32,41],[0,0],[36,47],[68,20],[53,17],[96,1],[20,1],[0,0],[123,-98],[42,-81],[22,-40],[0,0],[-19,-86],[-19,-81]],[[40415,64321],[108,-22],[425,-86],[62,-31],[11,-5],[31,-47],[-11,-25],[0,-1],[0,0],[-73,-27],[-54,-21],[0,0],[-127,-240],[-80,-21],[-30,-8],[-38,-92],[-28,-67],[-69,-72],[-39,-41],[0,0],[17,-261],[-58,-188],[0,0],[416,-644],[345,-261],[240,-88],[70,-72],[0,0],[-59,-50],[-51,-43],[-160,34],[-129,27],[0,0],[87,-47],[104,-6],[57,-53],[0,0],[-145,33],[-148,34],[-46,76],[-152,16],[-10,-88],[0,0],[43,2],[59,3],[0,0],[3,-58],[0,0],[-29,12],[-121,50],[-141,31],[-42,-18],[-23,-9],[-28,36],[-13,16],[-92,-13],[-42,-6],[0,0],[6,-71],[0,0],[-22,-15],[-49,-33],[-122,54],[-282,126],[-388,44],[-11,7],[-43,28],[0,0],[120,24],[62,54],[0,0],[-65,69],[8,52],[160,1],[77,0],[1,4],[6,21],[-29,71],[0,0],[-17,-2],[-153,-24],[-43,19],[-45,18],[-109,125],[-19,82],[7,70],[2,20],[-142,-33],[0,0],[8,-78],[-28,-23],[-6,-5],[0,0],[-71,43],[-76,102],[-88,-1],[-73,-29],[-102,-40],[-106,14],[-100,48],[-36,52],[-54,136],[-12,31],[0,8],[1,46],[27,100],[11,41],[25,53],[37,22],[76,34],[282,-69],[121,251],[54,76],[79,111],[0,0],[-36,9],[-55,14],[-15,28],[-7,14],[0,0],[101,27],[269,-23],[100,17],[0,0],[-533,14],[-39,38],[-31,31],[0,0],[38,53],[32,43],[67,19],[81,23],[171,-25],[123,-1],[0,0],[-12,4],[-90,27],[-19,22],[-59,66],[0,0],[20,99],[3,17],[0,0],[49,34],[69,49],[219,55],[15,-6],[25,-11],[97,13],[107,14],[50,47],[6,5],[178,55],[70,-28],[87,-36]],[[42681,65510],[-249,-81],[-165,57],[0,0],[5,-115],[-154,-78],[-111,-10],[0,0],[20,-44],[23,-51],[4,-65],[3,-38],[-88,-73],[-83,-31],[-54,-20],[2,-29],[5,-49],[0,0],[-57,-12],[-127,38],[-50,16],[-20,25],[-70,86],[-28,18],[-8,-3],[-26,-12],[0,0],[16,-88],[211,-147],[0,0],[3,-117],[-41,-29],[-71,-19],[0,0],[-51,81],[-70,23],[-131,11],[-138,12],[0,0],[95,-20],[123,-27],[95,-50],[57,-114],[0,0],[-136,-72],[-114,28],[-49,12],[-147,97],[0,0],[59,-70],[0,0],[200,-112],[0,0],[6,-26],[-146,-122],[-87,-73],[-216,19],[-7,1],[-97,45],[-161,35],[-377,81],[-70,-16],[-130,-29],[-158,-66],[-64,23],[-8,18],[-3,7],[0,0],[81,84],[87,88],[425,124],[67,-18],[86,-24],[0,0],[-100,36],[-67,24],[-339,-32],[-90,-45],[-72,-37],[-29,5],[-30,4],[-108,67],[-36,22],[-27,60],[0,0],[257,85],[201,67],[0,0],[-6,28],[0,2],[-11,4],[-20,8],[0,0],[5,20],[0,0],[192,109],[81,14],[191,-48],[129,-32],[0,0],[2,23],[1,13],[-52,18],[-226,78],[0,0],[105,42],[-7,12],[-30,55],[0,0],[159,77],[235,48],[0,0],[-265,37],[-32,17],[-25,13],[0,0],[17,40],[11,28],[95,41],[393,-28],[148,22],[0,0],[-206,90],[-234,-18],[-74,22],[0,0],[2,5],[8,20],[129,51],[263,56],[0,0],[-162,63],[-17,7],[0,0],[-14,-4],[-128,-35],[-21,13],[-104,72],[0,0],[19,46],[5,11],[0,0],[36,25],[30,21],[0,0],[38,-7],[105,-18],[31,-28],[69,-62],[74,18],[117,108],[0,0],[-73,76],[0,0],[29,22],[34,26],[88,28],[83,-16],[85,-16],[143,31],[35,60],[52,88],[50,42],[75,64],[150,63],[98,41],[263,60],[317,73],[44,43]],[[41285,70207],[-114,-1],[-323,-3],[-147,27],[22,71],[36,114],[0,0],[501,43],[64,-32],[28,-13],[0,0],[-37,-174],[-15,-17],[-15,-15]],[[39731,70313],[-55,-5],[-331,-27],[-252,33],[-18,2],[-8,4],[-76,45],[0,0],[60,11],[40,7],[158,67],[77,32],[220,1],[0,0],[-2,-20],[-1,-14],[0,0],[127,-46],[141,-50],[0,0],[-64,-32],[-16,-8]],[[42186,70514],[7,-4],[164,-77],[0,0],[-317,3],[-224,-54],[-4,-3],[-31,-25],[0,0],[133,-21],[51,-8],[0,0],[-4,-10],[-15,-38],[-190,-51],[-50,4],[-41,3],[-115,25],[-126,27],[-35,79],[0,0],[5,78],[0,0],[-133,101],[0,0],[80,4],[429,21],[352,-46],[64,-8]],[[36831,70884],[133,-34],[127,14],[32,4],[103,-17],[14,-6],[33,-14],[53,-63],[37,-44],[0,0],[-45,-20],[-25,-12],[-42,6],[-140,17],[-75,21],[-39,10],[0,0],[-13,34],[-2,5],[-53,30],[-94,10],[-90,-27],[-40,-51],[-196,-83],[-34,-15],[-207,-60],[-76,-2],[-130,-3],[-549,88],[0,0],[166,17],[437,46],[277,53],[91,18],[105,35],[-1,13],[0,12],[0,0],[42,16],[201,2]],[[42681,70513],[-118,-18],[-181,92],[0,0],[6,33],[17,92],[25,45],[31,38],[30,39],[79,23],[6,2],[11,2],[94,10]],[[38401,70926],[1,-3],[12,-20],[0,0],[-235,-42],[-52,-20],[-87,-33],[0,0],[5,-1],[106,-23],[87,24],[92,26],[86,7],[104,9],[273,-74],[0,0],[-190,-67],[-128,-45],[-299,-44],[-313,-45],[-7,-12],[-16,-26],[-229,-75],[0,0],[-190,23],[-33,-12],[-105,-35],[4,-13],[10,-30],[149,-11],[47,-51],[25,-26],[-88,-31],[-450,-47],[-47,68],[0,0],[51,65],[0,0],[-268,-15],[-105,-40],[-40,-15],[-58,16],[-24,7],[-75,114],[0,0],[169,44],[36,9],[8,-2],[34,-7],[21,-22],[23,-25],[167,-3],[144,-4],[29,24],[0,0],[-170,19],[-63,30],[-9,5],[302,3],[0,0],[9,11],[6,8],[0,0],[-34,28],[-235,2],[-137,1],[0,0],[311,74],[200,5],[0,0],[6,-2],[113,-52],[220,32],[0,0],[38,26],[115,79],[-41,61],[-59,5],[-93,8],[0,0],[-8,22],[33,42],[131,43],[166,54],[195,34],[0,0],[105,-17],[0,0],[-246,-39],[0,0],[135,-21],[309,80],[57,-58],[0,0]],[[41534,70765],[-110,-13],[-115,-14],[-54,24],[-173,75],[-1013,185],[-6,6],[-16,16],[0,0],[44,28],[71,47],[115,-15],[78,-10],[531,-77],[218,-31],[116,-35],[432,-129],[0,0],[-83,-41],[-35,-16]],[[41613,71276],[-663,-104],[-356,30],[0,0],[-28,39],[-23,32],[14,18],[16,19],[46,6],[296,-50],[20,-3],[20,15],[24,18],[0,0],[5,52],[0,0],[25,31],[85,7],[470,-80],[49,-30],[0,0]],[[37265,36692],[45,-52],[162,-310],[112,-389],[131,-284],[87,-74],[152,-3],[96,-73],[60,-113],[6,-89],[-54,60],[-62,24],[-80,-8],[-186,-120],[-35,-49],[-32,-91],[-14,-267],[-49,-355],[-25,-48],[-18,-209],[-47,-29],[20,68],[-49,75],[-38,-3],[-15,-55],[-31,-322],[1,-266],[0,-120],[35,-354],[28,-127],[48,-100],[82,-85],[78,-51],[235,-31],[114,-51],[21,-24],[9,-76],[45,-128],[71,-91],[226,-211],[122,-72],[315,-109],[106,13],[651,251],[251,50],[-35,-32],[-152,-32],[25,-41],[105,-25],[69,43],[0,93],[-58,343],[-2,10],[-48,475],[17,461],[41,309],[-62,238],[-103,242],[-133,21],[-59,-46],[53,312],[7,-106],[125,-55],[80,47],[-116,322],[-67,79],[-169,-1],[-6,-112],[-31,18],[-82,162],[-24,195],[15,153],[93,502],[57,-114],[217,-134],[115,-105],[298,93],[162,134],[25,79],[-13,122],[-313,326],[-83,520],[-41,46],[-72,19],[-241,-42],[-88,-89],[-60,-189],[-9,-71],[26,-165],[-3,-251],[-23,-3],[-160,443],[-6,57],[-18,181],[16,167],[81,203],[52,203],[-6,55],[-87,83],[-218,66],[-317,246],[-51,119],[-219,759],[-270,144],[-26,61],[5,157],[32,67],[291,-50],[34,-56],[74,-47],[133,29],[-14,83],[-207,215],[-7,90],[239,350],[556,19],[228,-67],[59,34],[-228,159],[-7,27],[6,83],[63,117],[25,19],[72,179],[35,237],[24,359],[-71,180],[-91,56],[-212,-2],[-85,-129],[-16,0],[-202,88],[-120,133],[-158,53],[-104,-50],[-670,-463],[-161,-161],[-1,-2],[-6,7],[-226,147]],[[37337,40793],[226,-147],[6,-7],[-282,-380],[-232,-150],[-134,-20],[-139,-103],[3,-32],[-93,-289],[-121,-323],[-163,-152],[-27,-79],[-17,-76],[16,-79],[163,-94],[99,-153],[143,-402],[-38,-201],[-10,-388],[158,-350],[247,-488],[88,-149],[35,-39],[0,0]],[[24582,48327],[-146,68],[-49,59],[-76,-9],[-79,9],[-9,3],[-46,15],[0,0]],[[24177,48472],[-74,-121],[-140,-157],[19,-23],[98,-17],[111,-18],[34,9],[63,17],[7,17],[11,24],[-31,174],[36,68],[0,0],[76,9],[49,-59],[146,-68]],[[23749,37317],[211,-302],[36,-169],[-3,-124]],[[23993,36722],[-16,-12],[-41,-267],[21,-289],[89,-211],[131,-118]],[[24177,35825],[21,-128],[-52,-209],[-176,-354],[-84,-244],[-35,-64],[-95,-34],[-40,14],[0,0]],[[23413,36692],[0,0],[-8,270],[25,143],[98,231],[55,72],[49,-170],[117,79]],[[15045,37272],[-12,-6],[-17,-20],[-54,-37],[-15,-2],[-6,0],[-23,5],[-1,3],[-3,-1],[0,5],[-2,5],[-6,29],[-3,66],[3,26],[5,9],[0,0],[0,5]],[[14911,37359],[3,0],[11,18],[13,19],[24,8],[81,-34],[8,1],[-1,-9],[10,-23],[-1,-14],[-13,-43],[-1,-10]],[[22261,42631],[-44,-234],[0,0],[114,-261],[9,-19],[25,-20],[0,0]],[[22365,42097],[-38,-116],[-57,-57],[-162,-162],[-77,-410],[-53,-136],[-59,-63],[-50,-54],[0,0]],[[21869,41099],[-98,-138],[-214,-67],[-161,19],[-89,-34],[-71,-103],[-107,-95],[-238,87],[-160,27]],[[20731,40795],[-541,116],[-73,39],[-104,166],[-14,118],[-401,-29],[-102,-56],[-13,-49],[-291,-13]],[[19192,41087],[7,50],[-40,72],[-25,-6],[-38,-52],[-313,116]],[[18783,41267],[13,59],[-49,125]],[[18747,41451],[15,205]],[[18762,41656],[124,52],[67,-29],[62,-98],[42,-109],[125,167],[450,-16],[176,108],[270,94],[129,-20],[185,-183],[23,29],[19,135],[-152,364],[423,415],[75,104],[10,98],[0,0]],[[20790,42767],[105,-121],[30,-35],[0,0],[39,-9],[69,-16],[172,74],[85,108],[41,152],[12,8],[60,39],[13,-2],[63,-11],[150,-74],[162,-80],[257,-20],[64,-5],[0,0],[2,-1],[113,-58],[34,-85]],[[17082,44506],[95,-109],[45,-117],[12,-156],[-58,-56],[-38,-110]],[[17138,43958],[-54,46],[-24,-7],[-96,-196],[-15,-98],[7,-42],[61,-75],[5,-34],[-13,-84],[-23,-22]],[[16986,43446],[-65,1],[-134,60],[-187,155],[-78,139],[-330,70],[3,217],[-55,62],[-84,-1],[-87,41],[-116,97],[-84,148],[-149,50],[-13,-31],[-54,26],[-66,78],[-53,242]],[[15822,45047],[0,0],[8,-77],[0,-1],[240,-73],[83,40],[84,92],[0,0]],[[16239,45050],[240,107],[89,-83],[422,-207],[14,-19],[-102,-264],[48,-69],[132,-9]],[[20790,42767],[-129,174],[-424,403],[0,0],[-90,231],[-45,281],[-38,36],[-51,49],[-48,134],[7,47],[95,10],[59,6],[275,113],[342,229],[13,9],[0,0],[8,4],[249,128],[-1,68],[0,0],[-23,26],[0,0],[14,27],[14,27],[99,-37],[23,-8],[11,-61],[11,-60],[0,0],[60,3],[36,2]],[[21257,44608],[0,0],[57,-4],[162,69],[136,-146],[171,-80],[141,-16],[54,-152],[-24,-107],[204,-235],[113,112],[-13,85],[105,44],[210,-96],[3,-88],[182,-137],[85,-19],[198,-126],[108,-183],[18,-108]],[[23167,43421],[-91,-12],[-205,-183],[-54,-155],[-122,-168],[-165,-93],[-149,48],[-68,-94],[-52,-133],[0,0]],[[27521,36813],[-34,-1],[-126,-4],[-89,49],[-104,57],[-80,-8],[-6,0],[-90,-61],[-260,-173],[-19,-60],[14,-36]],[[26727,36576],[0,0],[-68,19],[0,0],[-48,-94],[17,-26],[19,-138],[-1,-3],[-26,-70],[0,0],[-81,-31],[-228,-24],[-122,-13],[0,0],[-211,132],[-150,94],[0,0],[-52,8],[-30,5],[-88,-1],[-151,-116],[-115,-31],[-151,-39],[-141,1]],[[25100,36249],[8,12],[9,14],[0,0],[13,352],[-54,182],[-245,294]],[[24831,37103],[0,0],[34,20],[15,9],[0,0],[44,117],[1,2],[0,0],[-51,108],[-2,63],[-3,130],[0,0],[40,25],[119,72],[99,156],[10,65],[-224,251],[-40,153],[-40,155],[26,160],[0,0],[49,57],[44,51],[15,40],[14,35]],[[24981,38772],[0,0],[47,-34],[189,-312],[108,27],[259,-94],[506,-24],[176,-86],[190,80],[139,205],[46,38],[414,134],[97,-16],[173,-89],[287,-226],[168,-21]],[[23248,39333],[67,53],[95,-30],[-47,-206],[-20,-330],[60,-35],[110,-144],[-157,-467],[-13,-6]],[[23343,38168],[-33,7],[-215,-240],[-102,-285],[-6,-151],[38,-37],[4,-69],[-15,-52],[-43,-24]],[[22971,37317],[-77,50],[-223,263],[-55,8],[-19,-29],[0,0],[0,0]],[[22565,37652],[50,24],[-25,112],[-596,866],[-293,701],[4,255],[38,46],[65,3],[177,-190],[126,183],[171,16],[127,-75],[634,-54],[43,-17],[34,-64],[5,-79],[13,-17],[36,-31],[74,2]],[[29299,45696],[-129,9],[-275,-64],[-184,-332],[-7,-74],[44,-142],[-132,-47],[-84,117],[-207,-11],[-98,-51],[-115,23],[-177,113],[-171,-5],[-178,43],[-154,-71],[-64,6],[-157,46],[-198,120],[-268,97],[-209,58],[-302,18],[-353,-44],[-133,-84],[-293,-256],[-28,2]],[[25427,45167],[-36,84],[1,105],[67,230],[-16,68],[-17,40],[-82,62],[-114,42],[-11,49],[139,235],[134,54],[88,87],[0,212],[-18,195],[-39,59],[-78,257],[-52,235],[-14,133]],[[25379,47314],[119,-30],[104,3],[235,5],[81,43],[21,12],[136,136],[145,100],[37,15],[61,25],[41,-63],[-8,-22],[0,0],[49,97],[-10,55],[-11,59],[13,66],[43,215],[86,133],[15,23],[74,74],[58,58],[219,66],[23,31],[40,56],[1,7],[1,20],[-65,21],[-21,140],[-11,72],[1,95]],[[26856,48826],[83,29],[392,137],[19,60],[160,164],[23,13],[44,27]],[[27577,49256],[0,0],[0,0],[54,-67],[26,-31],[390,-28],[0,0],[2,-1],[144,-61],[55,-199],[0,0],[0,0],[78,49],[116,74],[76,-8],[71,-7],[109,-57],[157,-143],[72,-429],[3,-62],[-21,-60],[-3,-7],[9,-148],[8,-113],[74,-173],[80,-184],[76,-82],[43,-47],[18,-8],[41,-18],[48,-198],[6,-24],[3,-1],[79,-50],[0,0],[102,0],[106,-58],[159,-231],[0,-16],[-1,-92],[-231,-185],[-53,-43],[-110,18],[-36,6],[-1,1],[-23,50],[-51,35],[-15,10],[-115,-18],[-18,-61],[-20,-65],[3,-58],[25,-39],[49,-77],[22,-90],[10,-42],[23,-211],[27,-101],[56,-210]],[[19192,41087],[-13,-73],[-214,-399],[-143,-20],[-110,122],[-76,-68],[-96,-202],[-22,-177],[-99,52],[-178,309],[0,93],[-12,20],[-61,-35],[-85,-173],[-8,-93],[-115,-165],[-239,-26],[-123,-39],[-30,56]],[[17568,40269],[-43,104],[-63,338],[-143,26],[-127,-84],[-15,-43],[28,-53],[-49,-81],[-92,-19],[-9,53],[96,362],[481,729],[106,-3],[88,133]],[[17826,41731],[28,-26],[318,14],[93,62],[95,104],[326,-132],[68,-62],[8,-35]],[[18747,41451],[-28,-184],[64,0]],[[27606,39870],[-23,31],[-14,63],[-13,451],[5,105],[51,158],[7,181],[-59,221],[-16,99],[7,16],[-137,164],[-166,297],[-90,200],[-48,195],[-62,125],[-105,134],[-87,9]],[[26856,42319],[-7,12],[29,42],[104,57],[286,61],[118,1],[184,-186],[174,-101],[319,-120],[25,-119],[4,-97],[-42,-206],[10,-41],[102,-106],[48,4],[75,-361],[159,-104],[-6,-119],[94,-236],[-36,-25],[-130,4],[-309,131],[-78,-53],[-18,-80],[-25,-347],[-253,-408],[-77,-52]],[[17826,41731],[-29,106],[20,287],[138,537],[117,160],[41,106],[-112,79],[-217,76],[-199,-2],[-162,31],[-89,229],[-42,35],[-46,4]],[[17246,43379],[35,166],[-47,165],[-83,109],[-24,74],[11,65]],[[17082,44506],[-1,65],[50,309],[49,192],[-2,62],[-13,52],[-99,183],[-7,55],[7,26],[68,51],[131,-35],[141,50],[131,269],[-8,203],[-31,181],[78,42],[69,297],[2,173]],[[18330,48150],[305,-95],[60,27]],[[20993,47087],[0,0],[48,-226],[18,-84],[7,-97],[0,0],[-8,-37],[-24,-116],[-63,-61],[0,0],[212,-640],[29,-114],[14,-54],[-24,-101],[-12,-50],[-37,-79],[68,-185],[99,-117],[22,-93],[17,-71],[-14,-83],[-16,-92],[-55,-135],[-17,-44]],[[27555,51998],[-321,-418],[31,-446],[83,-311],[-115,-227],[-21,-42],[0,0],[-2,-10],[-12,-107]],[[27198,50437],[0,0],[-67,30],[-207,19],[-131,-41],[-76,47],[-183,235],[-361,203],[-397,-179],[0,0]],[[25682,57716],[0,0],[-104,265],[-99,73],[-36,82],[2,102],[14,51],[92,141],[44,135],[-84,172],[-87,255],[-58,345],[34,206],[-63,119],[-172,220],[-109,76],[-392,119],[-223,144],[-405,322],[-63,15]],[[23973,60558],[346,220],[131,-24],[61,-39],[233,-248],[136,-197],[310,-80],[233,57],[56,60],[185,10],[374,-182],[98,77],[168,207],[120,184],[-6,125],[84,264],[69,147],[218,194],[133,9],[133,-35],[275,142],[122,8],[245,-233],[346,-109],[97,-190],[-64,-78],[-176,-145],[-13,-99],[60,-52]],[[27947,60551],[-83,-43],[-57,-59],[-43,-44],[3,-230],[0,0],[-25,-33],[-31,-41],[94,-280],[10,-21],[18,-6],[128,-43],[216,-150],[36,-25],[246,-245],[-38,-121],[-406,-462],[-19,-62],[0,0],[43,-121],[0,0],[195,-271],[51,-86],[133,-222],[50,-148],[18,-55],[12,-61],[12,-63],[4,-31],[6,-44],[-50,19],[-132,-71],[0,0],[-24,-332],[-45,-194],[0,-24],[0,-48],[37,-95],[25,-26],[48,0],[5,0],[233,-423],[36,-37],[40,-40],[22,-95],[2,-8],[-13,-46],[-112,-159],[-52,-53],[-99,-44],[233,-241],[93,-49],[86,-45],[188,-137],[166,-272],[-87,-180],[-86,-179],[-48,-59],[-256,-266],[-547,-640],[-71,-84],[-75,-65],[-348,-304],[-122,-129]],[[14911,37359],[-56,105],[-241,99],[-77,-75],[-14,-49],[-79,-2],[-90,8],[-441,147],[-366,215],[-93,150],[-74,57],[0,0]],[[16986,43446],[75,-72],[144,33],[41,-28]],[[17568,40269],[-82,-73],[18,-155],[130,-224],[-175,-228],[-23,9],[-66,-48],[57,-158],[83,-62],[16,-190],[-34,-73],[-3,-64],[10,-106],[47,-95],[178,-115],[82,24],[10,-195],[-18,-122],[0,0]],[[17755,38363],[0,0],[-13,-13],[3,-8],[0,0]],[[15733,37211],[-73,32],[-279,-79],[-224,8],[-112,100]],[[11244,47450],[-65,-45],[-95,-18],[-18,25],[5,36],[-106,206],[-71,67],[-67,-73],[-12,-103],[-53,-85],[-151,26],[-113,94],[-149,180],[165,73],[38,44],[165,358],[69,53],[0,0]],[[33200,38044],[0,0],[51,162],[70,12],[214,-45],[439,-270],[187,-19],[194,23],[85,-21],[103,-25],[266,-245],[52,-71],[143,-191],[48,-26],[35,-1],[40,28],[80,58],[213,73],[54,-1],[84,-2],[63,-25],[20,-8],[76,-67],[93,-82],[20,-64],[49,-151],[-22,-72],[0,0],[172,-154],[136,-45],[0,0],[13,-11],[66,-52]],[[36244,36752],[-87,-133],[-3,-142],[44,-77],[157,-129],[31,-72],[-40,-153],[-84,-24],[-224,87],[-214,208],[-112,48],[-137,-152],[-127,-68],[-340,-27],[-264,-58],[-317,357],[-106,34],[-164,-64],[-170,-32],[-157,54]],[[11688,31708],[7,0],[0,0]],[[24177,35825],[381,65],[58,128],[211,53],[273,178]],[[26727,36576],[100,-88],[23,-189],[5,-41],[0,0],[-146,-226],[-27,-164],[-64,-123],[-44,-29]],[[20670,39880],[0,0],[143,-44],[210,39],[51,35],[375,-69],[45,17],[-6,202],[150,130],[4,220],[44,120],[254,200],[158,24]],[[22098,40754],[89,-81],[170,-218],[139,-177],[32,-21],[174,-118],[147,-11],[67,-6],[253,135]],[[23169,40257],[0,0],[38,-237],[114,-323],[-73,-364]],[[22971,37317],[41,-119],[0,0]],[[22365,42097],[38,12],[49,-30],[94,-123],[118,-93],[388,16],[114,63],[87,207],[235,115],[200,-43],[158,100],[122,241],[132,36],[213,-47],[169,-54],[47,-99],[45,-14],[160,61]],[[24734,42445],[45,6],[289,-351],[17,-50]],[[25085,42050],[-103,-144],[-170,-28],[-46,-68],[-123,-262],[-322,-794],[-120,-191],[-364,-115]],[[23837,40448],[-38,14],[-79,30],[-100,0],[-109,0],[-178,-161],[-164,-74]],[[22098,40754],[-23,16],[-8,6],[-16,37],[-71,162],[-4,69],[0,0],[-12,10],[-54,45],[-41,0]],[[20731,40795],[-65,-93],[-63,-168],[97,-373],[70,-49],[49,-88],[-25,-52],[-59,9],[0,0]],[[25379,47314],[0,0],[4,66],[2,30],[-8,31],[-11,38],[-4,6],[-50,69],[-179,135],[-64,22],[-33,-40],[0,0],[0,0]],[[25036,47671],[-43,84],[-1,31],[-3,73],[16,92],[73,113],[0,0],[-15,46],[-13,41],[-136,133],[-193,-22],[-139,65]],[[24177,48472],[0,0],[-6,2]],[[24217,49167],[260,224],[190,86],[281,-35],[371,-4],[229,-35],[150,-69],[136,7],[220,100],[61,-138],[50,-44],[240,-40],[134,-128],[163,-207],[101,-59],[53,1]],[[27198,50437],[0,0],[97,17],[60,-105],[29,-52],[12,-102],[37,-320],[44,-43],[93,-245],[30,-147],[16,-76],[2,-12],[1,-9],[-15,-31],[-27,-56]],[[23993,36722],[64,-12],[21,46],[-10,57],[42,99],[101,69],[417,145],[170,13],[33,-36]],[[23343,38168],[33,-72],[132,-178],[369,-304],[-2,-54],[-112,-163],[-14,-80]],[[23973,60558],[-232,-12],[129,-214],[-98,-261],[37,-16],[-135,-116],[-715,199],[-138,-33],[-16,-114],[30,-192],[-131,-195],[-283,125],[-200,-145],[-123,-211],[-159,-161],[-38,-474],[-66,-52],[-265,-338],[-21,-149],[-198,-188],[-224,-110],[5,-266],[-44,-382],[-139,-260],[-247,-364],[218,-102],[21,-235],[-87,-158],[-362,71],[-134,-33],[-114,-74],[-251,-346],[-45,-205],[3,-157],[83,-951],[-52,-318],[134,-132],[78,-4],[136,-179],[-36,-142],[-50,-103],[-43,-30],[-176,-31],[89,-255],[80,-149],[11,-127],[-30,-187],[-44,-135],[-126,-125],[-143,-61],[-48,-161],[20,-356],[-64,-246],[-46,-57],[-62,-1],[0,86],[-44,97],[-13,14],[-63,-26]],[[28844,61198],[0,0],[54,-101],[0,0],[2,-99],[-57,-29],[-114,12],[-207,82],[-58,-119],[-40,-82],[-243,-76],[-55,-84],[-29,-90],[-3,-8],[-38,-40],[-14,-12],[-28,-24],[-11,3],[-56,20],[0,0]],[[24981,38772],[-44,66],[-23,35],[-31,95],[6,12],[39,71],[62,-15],[19,12],[12,8],[0,0],[-28,56],[-135,88],[0,0],[-52,-39],[-18,-44],[-18,-43],[-98,18],[-284,170],[5,71],[12,191],[-40,77],[-37,71],[0,0],[-142,88],[-21,28],[-70,93],[-3,36],[-4,58],[-63,212],[-15,16],[-133,150],[-23,55],[-17,40]],[[25085,42050],[102,102],[82,-5],[386,-117],[136,9],[128,-24],[108,-166],[66,6],[45,28],[40,72],[319,106],[184,95],[175,163]],[[27606,39870],[65,-129],[172,-85],[254,186],[95,-3],[69,-38],[27,-42],[19,-121]],[[23619,47740],[0,0],[776,-106],[641,37],[0,0]],[[25427,45167],[186,-515],[40,-255],[-12,-113],[-40,-78],[-138,-47],[-145,-171],[-272,-412],[-82,-144],[78,-347],[-82,-54],[-32,14]],[[24928,43045],[-64,9],[-136,83],[-52,40],[-78,117],[-80,40],[-160,21],[-145,-34],[-326,2],[-103,-76],[-19,-50],[-163,-22],[-13,147],[-126,176],[-94,-63],[-144,-31],[-58,17]],[[24928,43045],[-187,-441],[-15,-133],[8,-26]],[[29299,45696],[77,-46],[0,0],[0,0],[190,86],[94,85],[39,36],[74,6],[135,11],[97,28],[45,13],[224,-1],[91,-139],[88,-180],[51,-105],[16,-143],[-4,-14],[-45,-124],[23,-194],[0,0],[86,-79],[88,-40],[0,0],[25,2],[203,17],[107,-186],[18,-385],[0,0],[0,0],[101,-191],[0,0],[55,4],[2,4],[28,44],[21,11],[24,13],[79,11],[234,-175],[0,0],[59,-1],[320,163],[57,-5],[0,0],[78,-225],[82,-91],[115,-128],[0,0],[5,0],[31,2],[35,43],[-14,90],[0,0],[17,2],[41,6],[226,-177],[130,-59],[41,2],[42,2],[340,-208],[24,-27],[25,-27],[13,-32],[41,-105],[-27,-139],[-77,-119],[-37,-9],[-34,-9],[-10,-405],[43,-59],[0,0],[15,-70],[40,-191],[-76,-242],[-150,-97],[-58,3],[-257,14],[-260,-324],[0,0],[-28,-325],[0,0]],[[10711,32632],[-42,271],[6,71],[38,141],[179,368],[-47,41],[-91,218],[40,225],[88,335],[-116,186],[-70,192],[4,96],[200,11],[53,187],[55,427],[-29,485],[127,276],[59,52],[68,104],[59,139],[-263,321],[-162,24],[-43,-44],[-201,-48],[-168,7],[-76,116],[-5,69],[-30,46],[-139,-47],[-152,-148]],[[42681,61454],[0,-344]],[[42681,66627],[0,-1117]],[[42681,60145],[0,-15708],[-15,-11],[-26,-31],[-64,-77],[-1,0],[-126,-33],[-15,24],[-10,16],[1,20],[1,8],[-307,151],[-72,80],[-17,92],[-5,27],[-4,6],[-45,86],[-45,45],[-34,35],[-100,-38],[-93,-37],[-88,-106],[-32,-39],[-70,-35],[-15,-7],[-18,12],[-61,40],[-49,71],[-43,63],[-115,-11],[-176,-17],[-58,-63],[-63,-69],[-140,-213],[-130,-97],[0,0],[-213,154],[-56,61],[-5,13],[-15,37],[-3,3],[-165,140],[-71,11],[-1,0],[-6,-10],[-7,-11],[2,-35],[1,-23],[33,-55],[20,-33],[21,-189],[-51,-49],[-36,-36],[-42,55],[-20,26],[0,0],[25,120],[-144,269],[-80,68],[-57,48],[-102,127],[-19,23],[-21,50],[-81,56],[-253,9],[-18,-4],[-126,-30],[0,0],[-38,85],[-79,178],[-153,-67],[-169,-165],[-124,-16],[-44,19],[-22,57],[44,0],[16,1],[2,25],[4,42],[-235,60],[-78,-67],[-3,-3],[-44,-66],[-121,-182],[0,0],[-90,-60],[-148,-97],[-100,-37],[-37,-13],[-36,-41],[-62,-71],[-3,-125],[-15,-12],[-152,-126],[-188,-61],[56,-307],[79,-217],[-71,-81],[-160,-91],[0,0],[-54,35],[-31,20],[-98,215],[-50,109],[-146,186],[-2,0],[-31,-3],[-118,-157],[-2,-22],[-2,-42],[14,-47],[-177,-247],[-35,-123],[-36,-309],[6,-44],[37,-35],[53,-49],[26,-60],[-3,-22],[-6,-45],[-23,-36],[-31,-48],[-65,-40],[-135,-452],[62,-31],[234,-119],[8,-100],[7,-95],[-30,-81],[17,-97],[0,-4],[36,-64],[3,-2],[86,-66],[12,73],[61,-1],[212,-4],[0,0],[148,-162],[130,-226],[92,-210],[91,-207],[-9,-6],[-111,-85],[-16,22],[-7,9],[-66,-33],[-15,-54],[14,-35],[19,-46],[83,-53]],[[37265,36692],[-335,-549],[-30,-14],[-9,-4],[0,0],[-184,63],[-65,68],[-54,168],[-91,111],[-57,71],[-196,146]],[[42681,70871],[0,-358]],[[22754,52025],[-50,-51],[-144,-3],[-46,21],[-49,3],[-32,-20],[-61,73],[-52,16],[-72,63],[-81,-13],[-63,20],[-221,-5],[-47,27],[98,13],[105,23],[48,81],[35,-46],[50,-14],[42,39],[64,-33],[41,17],[146,-65],[9,78],[68,-40],[73,2],[-8,47],[42,23],[13,-20],[10,-39],[-17,-122],[27,-31],[64,-17],[8,-27]],[[28377,53688],[11,12],[2,10],[-5,18],[17,21],[28,-5],[38,-31],[24,-10],[7,14],[-3,10],[1,26],[19,11],[20,2],[10,11],[1,18],[-6,12],[-2,10],[10,14],[5,26],[3,11],[10,14],[7,10],[-1,13],[-8,17],[2,20],[22,1],[86,-26],[7,3],[3,22],[12,9],[18,9],[26,5],[5,17],[-11,16],[1,23],[77,112],[45,37],[17,-9],[4,-9],[4,-11],[58,-24],[14,-22],[7,-39],[13,-22],[29,-1],[6,9],[31,12],[9,-2],[14,-22],[10,-9],[10,10],[3,9],[14,0],[58,-67],[22,-47],[20,-52],[13,-13],[8,4],[-1,13],[1,17],[8,1],[29,-41],[31,-28],[51,-32],[13,-21],[219,-125],[79,-56],[18,-33],[8,-30],[0,-28],[5,-14],[20,-9],[3,-16],[59,-73],[21,-52],[2,-61],[15,-39],[28,-17],[16,-20],[3,-24],[-17,-50],[-32,-78],[-12,-13],[-16,5],[-28,29],[-38,14],[-20,-3],[-2,-20],[10,-31],[22,-42],[6,-31],[-10,-18],[-28,-15],[-3,-21],[12,-39],[-1,-36],[-14,-31],[-39,-29],[-66,-25],[-48,6],[-31,36],[-65,27],[-102,19],[-68,-11],[-48,-58],[-4,-12],[3,-11],[5,-1],[0,-7],[-28,-55],[-3,-32],[11,-32],[1,-28],[-9,-23],[-18,-18],[-26,-11],[-25,4],[-25,18],[-36,5],[-46,-11],[-33,2],[-20,14],[-10,6],[9,11],[39,37],[-1,23],[-18,22],[-5,24],[10,45],[-3,10],[-43,41],[-29,62],[-51,156],[-8,14],[-8,1],[-6,-11],[-13,1],[-1,39],[-7,28],[-17,33],[-28,27],[-62,33],[-5,21],[-9,43],[0,25],[10,6],[4,24],[-3,40],[-12,28],[-22,14],[-7,12],[-2,26],[-13,22],[-55,68],[-80,72],[-127,88],[-15,24],[6,9]],[[20884,51809],[13,13],[9,2],[3,-7],[0,-11],[-3,-13],[-6,-32],[-7,-10],[-3,-4],[-5,-7],[-13,0],[-9,-15],[1,-37],[-4,-41],[-5,-29],[-10,-19],[-15,-17],[-16,-21],[-14,-24],[-14,-25],[-15,-19],[-29,-16],[-51,-18],[-54,-18],[-38,-18],[-37,-22],[-28,-49],[-28,-41],[-22,-3],[-10,0],[-12,9],[-5,17],[6,15],[0,13],[-1,21],[-15,10],[-36,-4],[-42,-28],[-18,-23],[-21,-37],[-34,-16],[-33,-29],[-23,-28],[-14,-20],[-12,-13],[-11,-6],[-10,-3],[-9,1],[-5,5],[2,13],[8,22],[0,12],[-8,-3],[-23,-28],[-62,-13],[-19,-8],[-11,19],[8,34],[75,70],[57,91],[2,21],[-23,8],[-18,9],[-10,30],[-2,29],[0,32],[-14,16],[-11,0],[-10,16],[3,10],[12,4],[8,20],[-1,33],[-4,38],[2,12],[6,-3],[8,-10],[6,-16],[4,-30],[3,-19],[5,-12],[10,-11],[9,6],[11,17],[9,36],[14,39],[13,49],[16,43],[18,25],[18,10],[16,5],[24,-8],[36,-22],[45,-29],[10,-32],[13,-27],[16,-23],[18,-14],[17,-5],[19,5],[4,22],[-11,55],[-21,91],[-26,89],[-9,50],[0,17],[2,8],[5,11],[6,20],[6,21],[5,9],[9,-5],[9,-20],[12,-12],[14,0],[2,4],[0,8],[-1,10],[1,8],[5,6],[8,5],[18,3],[29,3],[40,5],[41,10],[38,7],[24,0],[19,-10],[9,-16],[3,-16],[4,-9],[6,0],[17,5],[14,3],[17,-5],[18,-6],[14,2],[13,3],[17,-4],[15,-8],[8,-6],[3,-7],[2,-13],[-1,-20],[-3,-23],[-10,-32],[-16,-42],[-22,-39],[-8,-20],[7,-19],[14,-2],[15,2],[15,13]],[[30583,55159],[20,11],[35,-38],[46,-25],[41,-11],[31,-5],[27,-9],[22,-16],[23,-21],[37,-28],[56,-31],[59,-35],[42,-34],[23,-20],[11,1],[4,12],[4,5],[7,-7],[12,-15],[19,-21],[27,-18],[27,-15],[20,-16],[15,-21],[15,-31],[9,-43],[0,-52],[-10,-62],[-17,-67],[-17,-58],[-26,-52],[7,-35],[29,-36],[32,-42],[12,-43],[13,-41],[26,-43],[28,-44],[20,-46],[16,-43],[23,-38],[24,-35],[19,-35],[23,-33],[30,-30],[29,-24],[16,-19],[6,-16],[4,-17],[-1,-21],[-8,-26],[-6,-15],[-6,-15],[-1,-3],[-3,-9],[-2,-13],[4,-13],[5,-14],[3,-17],[-4,-19],[-11,-22],[-18,-21],[-22,-19],[-26,-15],[-29,-12],[-31,-18],[-29,-29],[-29,-31],[-29,-24],[-16,-17],[1,-14],[10,-13],[3,-12],[-5,-11],[-9,-10],[-12,-7],[-13,-4],[-13,5],[-14,13],[-25,16],[-40,12],[-40,17],[-24,28],[-12,28],[-12,18],[-11,9],[-12,6],[-18,-1],[-22,-9],[-29,-12],[-33,-8],[-25,1],[-7,14],[-12,19],[-33,18],[-38,5],[-22,-21],[-13,-17],[-11,0],[-8,10],[-7,14],[-6,17],[-3,20],[1,23],[3,23],[7,21],[9,18],[24,11],[41,5],[48,-4],[38,-12],[24,-14],[12,-11],[-11,-6],[-31,-2],[-31,-4],[-12,-9],[5,-14],[8,-15],[13,-14],[17,-13],[23,-7],[32,-2],[41,5],[45,-9],[41,-35],[27,10],[15,37],[8,28],[-1,37],[-9,41],[-16,43],[-19,40],[-20,33],[-18,23],[-28,27],[-45,38],[-71,49],[-91,51],[-90,50],[-67,47],[-47,44],[-39,43],[-29,37],[-21,31],[-10,21],[-4,12],[10,-4],[23,-19],[29,-21],[23,-10],[18,4],[15,11],[9,19],[6,25],[0,28],[-4,28],[-10,27],[-13,26],[-29,35],[-45,47],[-42,43],[-18,24],[0,15],[3,22],[2,24],[-4,21],[-17,28],[-27,40],[-31,34],[-27,16],[-18,4],[-13,6],[-7,15],[-7,24],[-3,25],[1,17],[7,8],[10,5],[11,1],[12,-4],[12,-15],[15,-27],[25,-44],[38,-54],[35,-48],[17,-29],[1,-16],[-4,-17],[11,-24],[35,-36],[46,-34],[36,-20],[21,-2],[9,12],[-5,24],[-5,41],[7,27],[5,28],[-20,52],[-3,30],[11,9],[23,-9],[7,23],[-17,36],[-32,46],[-22,35],[-9,22],[-3,16],[5,4],[12,-5],[18,-19],[22,-26],[26,-41],[30,-52],[24,-44],[15,-20],[5,-14],[3,-30],[6,-36],[10,-28],[17,-24],[23,-37],[25,-35],[22,-21],[18,0],[17,15],[7,9],[2,14],[-12,27],[-23,39],[-20,35],[-3,15],[24,-10],[44,-24],[45,-25],[27,-11],[22,7],[32,21],[30,26],[17,22],[5,21],[1,24],[-4,28],[-9,31],[-20,43],[-30,57],[-39,47],[-38,20],[-33,4],[-26,8],[-26,19],[-33,29],[-26,22],[-12,4],[-35,-29],[-14,-17],[-30,28],[-17,-1],[-17,19],[-22,32],[-18,29],[-18,38],[-22,55],[-27,48],[5,26]],[[30980,54310],[10,55],[-4,31],[-15,38],[-26,3],[-27,-80],[-12,-73],[-5,-41],[20,-17],[34,27],[25,57]],[[16655,45890],[27,30],[3,-8],[28,-21],[86,-32],[36,4],[23,20],[34,45],[58,46],[28,33],[16,32],[-2,29],[-16,25],[-29,16],[-37,4],[-56,-26],[-65,-50],[73,81]],[[16888,46174],[2,14],[2,-12],[16,-26],[86,-18],[15,-40],[2,-68],[-36,-51],[-142,-154],[-85,35],[-131,46],[-5,7],[43,-17]],[[16636,46033],[-5,-4],[0,26],[-4,39],[2,51],[35,3],[49,38],[3,53],[-40,48],[-22,44],[-1,3],[84,-88]],[[16786,46501],[-2,16],[3,-5],[6,-97],[-1,0]],[[16892,46343],[18,2],[2,-16],[-20,14]],[[16914,46318],[0,-3],[-1,-2],[1,5]],[[32571,50954],[-33,5],[-108,7],[-13,-19],[38,-56],[0,-16],[-10,-2],[-22,14],[-28,8],[-14,12],[-10,15],[-5,28],[1,84],[-15,34],[-34,10],[-97,45],[-22,-8],[-185,214],[-43,68],[-47,39],[-77,33],[0,10],[7,17],[-9,108],[75,-78],[30,-25],[24,-4],[-6,-33],[0,-17],[23,-32],[38,-18],[12,-53],[21,-6],[25,10],[3,14],[-22,47],[6,8],[39,-16],[25,0],[107,-59],[38,-7],[0,43],[14,25],[-4,13],[-51,33],[-2,18],[-18,24],[-2,14],[10,7],[29,2],[-13,101],[-37,-3],[-23,34],[-20,15],[-24,11],[-30,1],[-34,-8],[-29,-17],[-38,-48],[-14,11],[-2,15],[8,47],[7,15],[52,39],[31,32],[11,34],[-10,33],[-17,31],[2,17],[94,-1],[46,16],[23,2],[7,-14],[2,-15],[10,-13],[42,-23],[20,0],[10,10],[0,16],[-1,14],[-25,48],[9,6],[19,-5],[52,-37],[58,11],[-4,-19],[-36,-52],[-44,-27],[-32,2],[-124,34],[-20,-8],[-5,-17],[30,-29],[60,-42],[35,-34],[146,-182],[86,-97],[68,-79],[112,-45],[7,-17],[-16,-31],[14,-47],[3,-25],[-64,-24],[-19,-31],[-9,-40],[3,-101],[-6,-11],[-12,11],[-42,63],[-25,12],[-9,-17],[37,-60],[3,-17],[-11,-5]],[[23721,47951],[-26,4],[11,20],[22,-7],[18,-20],[-25,3]],[[23775,47944],[-6,1],[41,7],[94,-2],[-144,-87],[-52,-37],[13,13]],[[23590,47717],[-2,-4],[-38,-33],[-28,-18],[68,55]],[[23490,47636],[-25,-21],[-2,-1],[27,22]],[[23412,47592],[-10,-5],[-8,6],[18,-1]],[[27267,51021],[23,19],[11,8]],[[27301,51048],[11,-35],[58,-9],[72,8],[51,-36],[59,-77],[24,-62],[10,-52],[-32,-48],[-52,7],[-39,24],[-17,22],[3,14],[-37,47],[-59,25],[-18,-3],[-8,-1],[-60,149]],[[27718,60791],[39,9],[48,25],[22,27],[39,21],[-5,-22],[-25,-27],[-68,-57],[-10,-36],[16,-31],[-12,-26],[-44,-35],[-3,-32],[-20,-29],[-71,-17],[-75,-49],[0,-24],[82,-51],[31,-25],[12,-19],[-9,-13],[-20,-4],[-102,21],[-42,3],[-47,-17],[13,-28],[28,-11],[7,-25],[-58,-40],[-14,7],[-2,28],[-27,9],[-38,-29],[-21,-24],[-42,15],[-49,11],[-14,-2],[-32,-7],[-40,-32],[-11,19],[48,31],[32,27],[-5,34],[-42,37],[-27,7],[-47,13],[-5,15],[38,20],[115,51],[20,24],[16,27],[88,59],[92,43],[21,-15],[49,0],[-2,25],[-16,11],[-18,22],[-10,23],[19,30],[33,10],[7,-25],[11,-30],[45,10],[36,32],[7,18],[10,16],[49,2]],[[26927,56464],[16,21],[8,22],[-8,26],[6,31],[19,22],[116,-6],[49,-24],[1,-72],[21,-39],[50,-34],[49,7],[52,37],[70,14],[94,-14],[-6,-42],[8,-23],[-22,1],[-39,-3],[-30,-20],[13,-33],[45,-10],[38,-24],[56,-24],[47,-16],[14,-15],[1,-10],[-11,-9],[-44,0],[-30,6],[-38,15],[-131,70],[-43,44],[-27,-5],[-12,-16],[-28,-19],[-47,-18],[-19,-31],[3,-37],[-14,-10],[-28,33],[-60,38],[-62,33],[-10,34],[-61,74],[-6,26]],[[27267,51021],[-12,29],[-22,75],[-48,87],[-41,44],[-38,172],[-91,138],[4,69],[63,61],[91,36],[107,11],[63,-21],[12,-3],[31,-60],[31,-298],[3,-76],[-10,-34],[-24,-14],[-78,-109],[-10,-43],[3,-37]],[[29956,42984],[-2,-22],[-41,9],[-5,15],[-11,37],[-29,17],[-56,4],[-45,25],[-24,21],[-46,52],[-101,90],[-54,39],[-59,51],[-128,95],[-6,37],[32,13],[76,-25],[33,-18],[78,-45],[53,-38],[81,-39],[24,17],[-11,56],[3,63],[22,20],[20,-65],[51,-68],[73,-111],[42,-71],[43,-71],[0,-22],[-13,-66]],[[27285,53436],[-50,27],[-41,28],[-2,18],[13,10],[39,-34],[62,-9],[53,24],[6,39],[10,20],[25,-9],[15,-21],[19,-53],[-50,-30],[-99,-10]],[[28204,55129],[23,-31],[19,0],[10,48],[-22,77],[-20,47],[13,19],[35,-61],[72,-93],[36,-71],[-5,-55],[-34,-31],[-35,-13],[-21,51],[-39,30],[-39,51],[-17,45],[8,9],[16,-22]],[[28089,54986],[-5,58],[35,29],[24,-52],[22,-21],[35,11],[27,-25],[-32,-57],[-55,15],[-57,-7],[-14,30],[20,19]],[[30760,55173],[-1,19],[3,31],[-1,30],[4,26],[12,13],[-4,45],[-15,58],[-3,47],[-8,44],[-15,44],[-48,64],[-71,52],[-17,22],[4,17],[-34,106],[-45,64],[-24,-4],[-20,-32],[-24,-37],[0,55],[33,88],[30,65],[38,-2],[64,-28],[38,-24],[-13,-20],[114,-40],[2,-29],[61,-90],[-2,-18],[-15,-21],[28,-31],[63,-20],[49,8],[59,1],[19,-39],[-15,-12],[-89,-27],[-10,-20],[-35,2],[-23,14],[-35,26],[-50,31],[-20,-27],[27,-122],[32,-99],[2,-55],[-5,-75],[-17,-72],[-23,-28]],[[30086,55633],[69,38],[24,-9],[9,-38],[19,-21],[71,25],[41,-17],[28,-107],[35,-59],[-23,-25],[-57,-11],[-92,2],[-62,11],[-35,12],[-91,59],[-15,28],[0,22],[4,36],[-12,36],[46,1],[41,17]],[[28740,55136],[-8,53],[13,25],[30,7],[13,34],[24,33],[36,-21],[8,-63],[-50,-79],[-25,-15],[-14,-34],[4,-22],[-4,-14],[-12,6],[-63,4],[-10,8],[28,28],[30,50]],[[28451,55501],[5,-20],[-18,-5],[-4,-33],[17,-77],[69,-145],[90,-127],[-6,-17],[-42,-5],[-40,-72],[-25,6],[31,54],[28,69],[-37,53],[-34,13],[-15,13],[-85,113],[-19,50],[-105,11],[-31,19],[-64,3],[-45,64],[-29,60],[-54,73],[-38,59],[14,30],[2,48],[7,9],[45,-52],[58,-47],[30,-18],[74,-56],[92,-53],[30,-19],[22,-3],[40,21],[37,-19]],[[29009,57968],[19,-41],[14,-48],[17,-44],[28,-32],[-19,-12],[-66,8],[-97,44],[-142,77],[25,73],[9,45],[31,38],[52,29],[64,6],[33,-21],[34,-94],[-2,-28]],[[29648,57465],[69,-49],[12,-22],[11,-31],[-3,-25],[-18,1],[-16,25],[-72,45],[-99,32],[-78,36],[-53,19],[-24,27],[-2,20],[-22,13],[-24,6],[-53,23],[-76,57],[-31,53],[88,54],[138,29],[32,-12],[32,-37],[10,-44],[30,-18],[59,-55],[15,-29],[2,-34],[6,-45],[23,-31],[44,-8]],[[28866,54344],[0,31],[-8,35],[-1,30],[36,0],[22,-16],[38,-83],[-15,-36],[-39,-7],[-25,17],[-8,29]],[[29180,51061],[-40,-21],[-25,-56],[-113,26],[-132,37],[-10,22],[47,40],[30,31],[29,10],[43,25],[39,58],[22,44],[36,-41],[26,-11],[38,-24],[4,-15],[56,14],[8,-17],[-4,-15],[1,-38],[20,-93],[-28,4],[-47,20]],[[17487,40716],[-4,-26],[-10,-16],[-4,1],[-81,15],[-93,-12],[-63,-25],[-42,-67],[-43,-69],[-11,-1],[12,86],[88,136],[115,63],[110,-56],[26,-29]],[[11150,47986],[14,-7],[67,-5],[22,-43],[-5,-50],[-32,-69],[-2,-20],[-35,-2],[-64,13],[-11,40],[21,56],[14,65],[11,22]],[[21309,51547],[3,-24],[-5,-50],[-14,-57],[-4,-38],[34,-46],[-8,-24],[-56,-44],[-67,-58],[-31,-84],[-19,-86],[-18,-55],[-21,-46],[-76,-134],[-45,-109],[-40,-11],[-18,112],[43,198],[84,225],[56,135],[59,105],[44,45],[44,52],[54,56],[17,-5],[-2,-12],[-14,-45]],[[20906,55471],[-14,32],[-13,21],[17,5],[75,-18],[82,-38],[25,2],[30,2],[48,-53],[29,-58],[-49,20],[-31,3],[-23,-11],[-13,-23],[-3,-32],[11,-55],[12,-66],[2,-57],[-6,-45],[-8,-7],[-8,-1],[-18,42],[-21,44],[-2,25],[13,3],[10,-3],[11,1],[8,22],[-15,42],[-19,52],[-71,57],[-45,23],[-27,14],[-36,46],[-4,14],[15,-3],[27,-20],[10,5],[1,15]],[[27049,54071],[-19,1],[-28,6],[-36,22],[-32,7],[-24,-8],[12,-24],[32,-17],[20,-19],[2,-28],[1,-12],[2,-10],[-10,-5],[-17,9],[-11,-2],[-6,-11],[-9,15],[-9,32],[-45,60],[-52,68],[-41,29],[-29,16],[-27,22],[-28,17],[-7,11],[14,29],[22,31],[28,36],[14,-12],[-6,-15],[-18,-35],[-7,-31],[21,-6],[21,10],[13,14],[16,8],[7,14],[-6,11],[2,10],[21,-2],[13,-18],[14,-27],[17,-16],[7,3],[1,9],[3,6],[10,-2],[15,-13],[14,-9],[11,9],[6,14],[0,14],[-22,9],[-31,15],[-25,33],[-26,47],[-1,14],[25,-23],[30,-16],[24,-16],[31,-23],[25,-41],[4,-27],[-2,-14],[8,-51],[3,-38],[13,-21],[26,-15],[21,-7],[8,-14],[0,-15],[-3,-8]],[[22006,52007],[1,-3],[-23,-15],[-22,-12],[-85,-30],[-100,-40],[-13,-16],[-6,-12],[-31,-12],[-54,2],[-37,14],[-1,22],[-15,29],[-21,18],[-12,8],[-19,6],[-64,7],[4,12],[69,16],[54,13],[55,-16],[44,-3],[17,8],[63,-15],[94,1],[39,10],[30,3],[33,5]],[[26856,55344],[-18,-22],[5,-47],[22,-47],[0,-18],[-10,-8],[-43,26],[-36,29],[3,8],[1,13],[-4,23],[-4,26],[-13,25],[-35,40],[-38,42],[-18,27],[-1,15],[12,-4],[22,-30],[27,-34],[32,-20],[30,5],[35,23],[10,33],[-36,37],[-29,23],[-14,24],[2,22],[17,9],[31,-21],[46,-18],[36,1],[9,-6],[-15,-10],[-17,-9],[20,-13],[20,-19],[4,-26],[-13,-31],[-25,-24],[-9,-23],[-6,-21]],[[31884,52758],[-1,18],[26,42],[54,49],[68,26],[92,9],[77,-25],[39,-54],[11,-69],[-3,-50],[-14,-15],[-69,-7],[-51,-1],[-117,9],[-34,9],[-56,29],[-22,30]],[[22850,59171],[-163,94],[-98,23],[-27,7],[-48,22],[-64,8],[-45,17],[-12,12],[-31,43],[-11,49],[81,-34],[63,-34],[323,-135],[42,-24],[91,-62],[15,-38],[-116,52]],[[22567,41008],[-52,-37],[-95,-2],[-3,19],[0,15],[18,3],[36,14],[45,18],[89,46],[75,52],[27,28],[35,39],[40,43],[18,16],[25,-14],[16,-25],[-10,-42],[-124,-84],[-99,-67],[-41,-22]],[[28818,55975],[13,40],[1,38],[17,-4],[19,-13],[4,-15],[7,-16],[60,-28],[68,-19],[16,-25],[-4,-9],[-10,-4],[-14,10],[-19,7],[-10,-9],[4,-22],[16,-19],[8,-21],[-2,-10],[-10,-15],[4,-23],[10,-22],[-7,-14],[-29,23],[-32,24],[-24,14],[-17,22],[3,26],[-1,26],[-16,19],[-64,14],[-10,18],[19,7]],[[32556,53792],[12,40],[16,27],[42,28],[46,13],[11,-20],[-16,-56],[-12,-50],[8,-30],[9,-30],[-4,-23],[-23,-20],[-36,-9],[-31,2],[-16,16],[-7,50],[1,62]],[[27917,58148],[39,-5],[38,4],[28,-10],[-17,-14],[-11,-11],[-11,-25],[-31,-19],[-71,-52],[-43,-48],[-36,-38],[-48,-12],[-76,-14],[-139,1],[-13,12],[3,15],[-1,21],[-6,16],[-5,10],[-34,22],[-32,21],[26,4],[43,-9],[26,-15],[16,-18],[4,-24],[5,-20],[18,-2],[68,24],[54,22],[34,10],[17,27],[10,17],[67,23],[62,18],[1,8],[0,18],[-27,33],[-25,27],[13,6],[25,-2],[29,-21]],[[30443,59515],[10,10],[31,4],[26,-25],[13,-47],[41,-62],[48,-78],[15,-46],[-23,-35],[-59,-8],[-43,1],[-1,24],[-2,25],[1,48],[2,40],[-8,21],[-22,22],[-9,19],[6,19],[-15,38],[-11,30]],[[29552,58315],[-7,-14],[2,-5],[9,-13],[20,-7],[7,-4],[8,-7],[-4,-7],[-16,-10],[-62,24],[-50,15],[-61,1],[-6,17],[2,7],[59,18],[13,17],[-7,22],[-43,62],[-31,58],[-29,35],[-79,9],[-75,6],[-8,10],[-3,12],[10,14],[16,13],[6,8],[41,0],[26,13],[1,18],[-30,13],[-10,11],[31,23],[54,-23],[42,-39],[66,4],[62,-9],[10,-17],[-17,-32],[-11,-16],[8,-14],[25,-12],[29,-22],[8,-14],[5,-14],[-13,-20],[-27,-24],[-16,-20],[10,-31],[31,-36],[4,-20]],[[29834,57853],[10,-16],[21,-15],[38,-9],[15,-18],[-3,-26],[-2,-24],[-2,-17],[-60,-34],[-69,-28],[-27,6],[-4,16],[0,16],[-15,22],[35,24],[31,16],[3,15],[-5,17],[-21,15],[-23,16],[2,23],[22,29],[7,23],[12,9],[29,-1],[-3,-17],[-13,-22],[3,-13],[19,-7]],[[26625,51147],[-1,-52],[-15,-51],[-12,-59],[-16,2],[-22,65],[-36,75],[6,35],[12,32],[25,13],[28,-4],[21,-16],[10,-40]],[[20344,55816],[15,29],[39,23],[49,12],[44,-1],[31,-12],[12,-13],[-11,-8],[-55,3],[-24,-17],[-11,-18],[5,-37],[11,-47],[44,-60],[69,-31],[-11,-20],[-44,21],[-30,17],[-31,23],[-49,41],[-35,49],[-18,46]],[[32849,52423],[18,-8],[20,-7],[50,-48],[27,-3],[34,-37],[59,-28],[35,4],[-17,-25],[-11,-27],[20,-29],[17,-18],[-31,-40],[-86,58],[-71,69],[-99,107],[-67,81],[0,26],[19,1],[22,-25],[25,-28],[18,-13],[18,-10]],[[18842,41676],[-6,-11],[-16,-7],[-47,3],[-13,1],[-2,0],[-48,2],[-96,74],[-28,55],[-4,9],[-33,89],[9,9],[47,-43],[67,-50],[67,-45],[62,-52],[30,-25],[11,-9]],[[25248,53856],[-26,-9],[-40,-13],[-26,-6],[-28,-14],[-66,-40],[-69,-54],[-21,-38],[-21,-15],[-16,8],[25,20],[15,30],[26,29],[58,35],[63,48],[38,29],[39,15],[59,13],[15,-7],[-21,-17],[-2,-8],[-2,-6]],[[31014,39684],[-58,41],[-88,49],[-13,18],[-10,21],[-1,23],[19,62],[-13,58],[-13,34],[-12,23],[-56,50],[-23,32],[-34,17],[-9,38],[-28,15],[-3,13],[-15,16],[-71,-45],[0,15],[58,98],[1,18],[-6,8],[-19,7],[-20,-40],[-14,-6],[-17,15],[-23,-24],[-10,-1],[-5,11],[4,43],[-3,26],[-9,18],[-43,23],[-21,-4],[-18,7],[-4,-12],[3,-35],[-1,-17],[-10,-11],[-12,16],[-3,41],[-5,15],[-24,29],[-35,11],[-10,-18],[-8,-10],[-17,-1],[-19,18],[-25,74],[-8,-1],[-21,-8],[-30,42],[-5,17],[4,12],[11,12],[24,5],[33,-3],[35,-15],[51,-49],[23,-14],[14,2],[-2,34],[4,9],[8,-2],[9,1],[8,10],[-3,40],[0,16],[8,-1],[29,-46],[16,-19],[13,-9],[7,-1],[8,8],[102,-25],[5,-20],[-3,-20],[-27,-2],[-11,-10],[-19,-70],[7,-20],[17,-14],[21,4],[31,29],[25,116],[12,18],[24,-8],[17,-29],[1,-16],[-18,-20],[-2,-33],[13,-15],[23,-10],[13,-57],[11,-102],[33,-44],[58,-135],[71,-146],[56,-95],[60,-60],[6,-17],[-19,-18]],[[28225,54475],[-12,-30],[-10,-8],[10,-30],[29,-37],[29,-18],[11,19],[23,-1],[34,-47],[8,-38],[1,-15],[-21,-13],[-2,-23],[-16,-12],[-16,-7],[-24,-21],[-37,-21],[-26,-32],[-24,-7],[-65,-75],[-11,-30],[-72,-12],[-8,-20],[-74,42],[-100,40],[-48,-26],[-10,-21],[72,-7],[14,-17],[-32,-9],[-20,-19],[0,-30],[6,-35],[-22,-7],[-30,-3],[-7,-28],[-50,-37],[-27,-25],[-29,-18],[7,-16],[56,0],[77,18],[11,14],[24,-14],[51,-48],[22,-44],[-38,-38],[-84,-37],[-119,-60],[-32,-12],[-144,0],[-20,-10],[-13,11],[-13,29],[-5,38],[40,27],[56,-8],[42,-23],[12,10],[-11,21],[-48,40],[-100,16],[-87,-17],[-25,-16],[-50,14],[-54,26],[12,9],[2,22],[-32,27],[-31,3],[-16,-4],[-2,47],[17,48],[-13,31],[12,13],[-1,65],[-10,84],[25,35],[0,-54],[5,-31],[10,-58],[47,-6],[8,14],[-2,9],[0,44],[8,16],[5,-16],[8,-20],[37,4],[33,22],[7,26],[38,18],[7,25],[-32,40],[-39,29],[-9,15],[10,18],[90,-65],[24,-27],[25,-35],[1,-26],[12,-22],[25,-46],[26,-34],[24,10],[12,24],[8,1],[18,-6],[24,68],[6,83],[7,25],[20,10],[16,-6],[14,2],[35,15],[46,64],[63,-14],[64,2],[16,16],[-1,15],[-48,25],[-19,26],[-56,63],[-72,52],[-11,15],[-51,24],[-61,-1],[-39,4],[-25,7],[-51,22],[-12,21],[1,76],[-8,55],[-4,20],[-12,21],[-3,20],[-21,47],[-21,-1],[-37,-15],[-39,5],[-23,-5],[-28,28],[-14,32],[-19,14],[-25,-12],[-33,-5],[-29,27],[-27,40],[-9,21],[15,-5],[49,-47],[21,1],[6,22],[10,16],[12,12],[96,-72],[22,4],[11,13],[0,14],[-29,63],[5,96],[14,22],[8,21],[-8,50],[9,50],[8,33],[-16,12],[-14,-8],[-16,-14],[-11,-20],[-2,-23],[-31,11],[-38,34],[-11,34],[-29,53],[-73,72],[9,14],[5,20],[-6,42],[2,52],[-2,53],[10,17],[15,-1],[-3,21],[-23,49],[-8,44],[-19,51],[-31,24],[-15,-6],[-8,-14],[-29,21],[-28,36],[-1,16],[102,-33],[33,-25],[24,-54],[0,-25],[-11,-10],[19,-35],[22,-18],[20,-9],[11,-26],[-7,-32],[-5,-58],[-35,-59],[45,-68],[39,-39],[56,-20],[22,12],[34,-31],[22,-22],[22,-8],[2,44],[-18,55],[15,37],[20,-7],[19,-19],[1,-34],[18,-11],[55,18],[48,-27],[82,20],[34,7],[-1,-12],[-19,-20],[-22,-17],[-33,-18],[-18,-27],[15,-66],[-20,-28],[2,-19],[15,-28],[15,-37],[13,-21],[14,-15],[-2,-23],[184,-119],[69,-62],[47,-58],[-41,-7],[-72,33],[-62,48],[-15,24],[33,-3],[-5,21],[-35,29],[-27,18],[-27,10],[-13,-9],[-31,-10],[-30,-51],[-10,-52],[-10,-13],[-32,8],[2,29],[15,55],[-39,133],[-36,37],[-62,-11],[-40,-35],[-5,-24],[22,-22],[-20,-39],[41,-52],[33,-82],[59,-18],[1,-27],[-24,-36],[-13,-35],[3,-34],[46,-13],[37,8],[63,3],[0,17],[22,10],[16,-15],[23,-29],[47,-15],[29,1],[20,51],[10,13],[19,10],[14,20],[-15,35],[-1,16],[13,-3],[34,-30],[34,-71],[16,-29],[-8,-20],[-7,-23],[-25,-7],[19,-38],[71,7],[78,23],[28,7],[62,-9],[8,17],[3,29],[-16,21],[-10,28],[0,33],[-9,32],[-7,39],[15,29],[2,43],[-18,66],[8,42],[26,2],[9,-27],[5,-35],[28,-7],[41,-48],[56,-43],[11,8],[-18,30],[-11,34],[2,23],[11,29],[8,33],[30,10],[38,-28],[23,-52],[29,-48],[19,-26],[-43,-39],[-16,-24],[-4,-23],[-12,-19],[-38,2],[-22,-5],[-10,-14],[-10,-21],[23,-41],[38,-21],[30,0],[39,-13],[41,-18],[10,-27],[-33,-16],[-96,32],[-10,-12],[-39,6],[-42,-19]],[[27434,55201],[-3,-35],[21,-67],[59,-52],[28,-26],[18,8],[0,29],[-4,56],[-12,73],[-6,36],[-34,1],[-2,0],[-39,-4],[-26,-19]],[[27333,53730],[19,32],[-8,39],[-15,25],[-34,12],[-22,10],[-44,26],[-27,-14],[-15,-19],[19,-27],[51,-47],[53,-43],[23,6]],[[27486,53911],[5,20],[-11,22],[-11,-2],[-31,-6],[-30,17],[-30,8],[-9,-12],[-6,-40],[-16,-4],[-36,3],[-20,4],[-13,-5],[21,-26],[46,-18],[24,-29],[18,-1],[23,3],[55,33],[21,33]],[[27741,53910],[-24,32],[6,38],[17,38],[20,17],[-10,68],[-19,21],[-42,-10],[-28,16],[-24,-17],[2,-40],[2,-37],[11,-36],[-31,-37],[-2,-14],[8,-23],[-5,-21],[-9,-26],[6,-43],[32,12],[52,7],[37,25],[1,30]],[[28206,54338],[-17,62],[-37,59],[-19,22],[-43,-3],[-22,-4],[-40,-4],[-39,7],[-38,-18],[-62,-20],[-50,0],[-6,-40],[11,-36],[54,-29],[55,-78],[22,-62],[70,-24],[56,28],[25,55],[9,65],[7,24],[29,3],[20,-23],[14,2],[1,14]],[[27008,55114],[17,5],[50,-13],[-4,-8],[-31,-1],[0,-28],[-29,-5],[-37,1],[17,-45],[32,-51],[-14,-30],[22,-34],[-7,-9],[-42,18],[-21,-16],[-16,-36],[3,-33],[13,-26],[16,-2],[21,-11],[-10,-23],[-62,20],[-20,14],[-5,51],[-17,37],[-13,-11],[2,-28],[-17,-63],[-24,-59],[-38,-18],[-35,-22],[3,-32],[-6,-10],[-19,24],[2,31],[11,33],[28,8],[20,-3],[1,25],[23,33],[-15,43],[-68,24],[-52,-14],[-17,-25],[0,-36],[8,-38],[16,-27],[11,-35],[-17,-24],[-49,16],[-21,-25],[0,-44],[-19,14],[-18,46],[-28,22],[-17,-15],[11,-39],[11,-30],[-13,-21],[-14,-38],[3,-57],[-14,4],[-11,44],[-11,5],[-23,-50],[-3,-67],[27,-44],[-9,-18],[-33,-8],[-7,-22],[-34,-2],[-29,-13],[-4,-29],[9,-12],[23,-16],[-9,-14],[-31,-24],[-13,-42],[16,-17],[29,24],[18,10],[1,-30],[-21,-59],[1,-64],[11,-33],[-35,1],[-21,-9],[-2,-45],[-4,-40],[32,-24],[-16,-22],[-31,-17],[7,-27],[-5,-50],[16,-24],[85,-26],[103,-20],[17,-18],[7,-20],[26,-14],[17,13],[-6,31],[27,56],[54,56],[1,-12],[-19,-38],[8,-28],[1,-33],[-11,-5],[-10,19],[-19,7],[-12,-13],[13,-34],[10,-37],[-6,-24],[27,-41],[-11,-18],[-18,-19],[-2,-16],[-12,-33],[-26,-35],[-33,-2],[22,38],[14,85],[-36,60],[-31,18],[-22,-6],[-20,-13],[-40,41],[-55,50],[-23,-8],[11,-25],[5,-25],[-35,-35],[-24,-45],[15,-31],[19,-22],[-6,-27],[-20,3],[-14,30],[-18,23],[-13,-13],[-23,-13],[-24,16],[20,35],[29,35],[20,64],[-16,45],[-12,-7],[-5,-20],[-12,1],[-6,29],[-18,27],[-25,17],[-15,16],[-7,12],[4,20],[-33,75],[-3,51],[21,12],[18,20],[32,10],[29,3],[9,37],[-7,39],[-22,24],[-61,54],[-9,30],[13,2],[33,-16],[39,14],[26,44],[-24,25],[-37,5],[1,21],[51,17],[41,8],[-2,17],[17,35],[39,14],[22,47],[-40,37],[-42,9],[-12,27],[36,0],[57,-6],[21,23],[2,28],[9,22],[12,14],[30,15],[27,35],[12,33],[7,49],[-12,49],[-15,1],[-12,-8],[-7,13],[-5,38],[-24,38],[-35,7],[-22,41],[-5,33],[70,21],[7,47],[15,18],[32,-5],[-3,32],[-27,24],[-6,9],[18,28],[4,43],[33,33],[-30,65],[-18,24],[-45,28],[-57,22],[-37,-36],[-9,-56],[-12,-7],[-28,15],[-33,28],[8,18],[29,22],[2,40],[-4,26],[30,15],[40,58],[16,4],[0,-29],[28,-39],[52,-41],[15,11],[7,23],[31,-17],[14,-25],[28,-35],[44,-43],[-2,-10],[-31,8],[0,-17],[30,-37],[67,-66],[69,-76],[3,-37],[-33,3],[-47,46],[-47,40],[-17,-7],[-14,-20],[-12,-39],[-3,-37],[-13,-3],[20,-35],[4,-30],[-55,14],[-44,-30],[6,-69],[50,-64],[41,13],[15,39],[19,-2],[3,-27],[-16,-30],[7,-29],[36,-28],[12,63],[-3,79],[18,19],[59,31],[8,22],[44,0],[9,62],[-39,75],[-14,33],[1,24],[41,-50],[26,-41],[29,-39],[60,-61],[46,-24],[13,13],[6,31],[-2,34],[-34,39],[-29,39],[-9,26],[-36,49],[-12,24],[10,1],[43,-48],[23,-9],[7,26],[-15,56],[8,24],[15,2],[2,18],[72,24],[38,21],[17,-10],[-26,-18],[-22,-51],[7,-22],[-8,-3],[-17,4],[-2,-19],[18,-32],[11,-6]],[[28626,57128],[16,9],[33,-30],[85,-44],[75,27],[47,15],[13,31],[21,22],[176,-1],[110,-39],[18,-22],[6,-41],[16,-29],[79,-63],[54,-56],[6,-29],[-23,14],[-73,48],[-42,9],[-56,51],[-17,33],[0,23],[-13,26],[-52,17],[-60,1],[-26,-13],[-5,-21],[-24,0],[-53,13],[-16,-9],[-37,-7],[-32,-27],[-12,-54],[-34,-34],[-38,-3],[-58,-7],[8,16],[23,24],[55,15],[-6,23],[-83,37],[-62,43],[-19,32]],[[30968,41645],[-15,-36],[-27,-1],[-78,-19],[-42,-19],[-72,50],[-102,50],[-82,-29],[-109,-59],[-6,-27],[3,-38],[-5,-19],[-36,-7],[-92,-138],[-88,-191],[-8,-37],[-6,-33],[-61,-34],[-9,8],[17,45],[25,133],[12,14],[6,-7],[18,16],[27,51],[7,38],[28,44],[46,61],[14,43],[1,25],[-8,81],[-5,79],[22,12],[40,2],[38,-14],[30,-5],[14,34],[12,13],[24,-20],[30,-8],[27,10],[24,21],[115,-14],[127,9],[43,77],[-1,131],[9,15],[12,-2],[53,-169],[28,-136]],[[37174,47499],[-5,56],[10,92],[3,102],[5,127],[65,48],[92,20],[29,51],[12,62],[15,59],[-2,123],[55,55],[87,78],[6,114],[-32,52],[-27,79],[5,35],[29,-6],[33,-83],[21,-38],[33,-13],[26,14],[-14,35],[2,64],[-2,58],[19,23],[0,-17],[2,-53],[39,-53],[61,-12],[97,-6],[101,28],[42,42],[64,-22],[73,-7],[49,26],[92,-8],[75,25],[139,19],[61,22],[36,-24],[11,-3],[28,-1],[26,15],[-1,69],[-32,83],[7,79],[16,33],[16,18],[-4,-33],[-6,-82],[29,-61],[54,12],[61,66],[53,-15],[29,-4],[-24,-25],[-41,12],[-24,-8],[-10,-28],[-6,-44],[-47,-24],[-31,-6],[-13,-49],[-53,-54],[-97,41],[-15,-22],[11,-19],[10,-36],[-17,-38],[-26,32],[-27,19],[-92,32],[-54,-20],[-14,-19],[-400,-100],[-38,-43],[-56,-47],[-80,-50],[-30,-17],[-4,-36],[-3,-19],[-24,-31],[-36,-2],[-45,8],[-42,-22],[-61,-24],[-32,-60],[14,-65],[29,-17],[32,-7],[-8,-22],[-45,-42],[-5,-53],[-1,-23],[-15,-21],[-22,-31],[6,-28],[-6,-19],[-16,-24],[1,-34],[-37,-13],[-73,-11],[-49,-35],[-14,-53],[24,-82],[52,-61],[46,-18],[20,-17],[5,-28],[18,-47],[82,-27],[121,49],[57,43],[80,52],[77,40],[7,-30],[-36,-27],[-61,-29],[-45,-78],[-63,-57],[-43,-34],[0,-49],[24,-53],[24,-23],[15,-19],[10,-34],[-2,-32],[-11,3],[-16,22],[-15,5],[-43,69],[-29,15],[-17,-27],[-9,-70],[-5,-94],[12,-64],[75,-28],[149,-3],[153,-11],[11,-25],[-26,-27],[-169,8],[-85,-29],[-27,-44],[-14,-60],[-64,-12],[-139,9],[-20,38],[79,-13],[100,0],[33,25],[0,26],[-47,33],[-54,31],[8,17],[-25,67],[-43,98],[5,94],[12,64],[-9,33],[-33,64],[-72,87],[-45,53],[-47,23],[-38,38]],[[26827,54037],[-1,-6],[-11,-7],[-34,3],[-60,38],[-50,55],[-27,10],[-29,-12],[-22,-10],[-2,-22],[6,-19],[9,-9],[9,8],[10,11],[11,-14],[8,-21],[-5,-25],[-7,-31],[-5,-17],[-16,-4],[-26,12],[-25,30],[-23,26],[-27,25],[-4,24],[18,15],[12,22],[5,23],[-6,21],[-8,16],[3,9],[42,-21],[45,-4],[24,27],[20,38],[9,0],[4,-17],[9,-33],[6,-30],[0,-15],[8,-15],[16,-2],[12,1],[25,2],[15,16],[13,0],[20,-15],[17,-27],[9,-34],[3,-22]],[[25897,54064],[-24,-13],[-30,-22],[-18,-21],[24,-33],[-18,-22],[-60,-7],[-37,-20],[-33,-35],[-11,-30],[-1,-17],[-8,-24],[-11,-28],[14,-15],[39,-11],[18,-19],[-16,-4],[-40,-7],[-38,-18],[-27,-11],[-5,-15],[13,-20],[24,-19],[40,-3],[31,11],[26,-7],[28,-22],[8,-14],[-8,-3],[-12,-3],[3,-17],[28,-43],[21,-34],[-12,4],[-29,32],[-36,17],[-117,54],[-74,26],[-44,27],[-4,60],[14,-20],[20,-28],[35,-15],[16,12],[13,27],[20,24],[6,26],[-8,50],[12,47],[61,53],[39,41],[25,20],[24,30],[-11,17],[-12,13],[6,10],[22,-3],[26,-7],[15,4],[13,19],[7,18],[-3,10],[16,7],[38,13],[41,17],[6,-17],[-14,-30],[-7,-10],[-11,-1],[-13,-1]],[[25377,53858],[-2,-25],[10,-19],[19,-18],[37,-15],[29,-13],[2,-11],[3,-15],[3,-15],[-3,-7],[-21,12],[-48,18],[-42,31],[-21,35],[-28,9],[-15,7],[7,12],[24,12],[45,29],[61,36],[33,17],[-15,17],[-18,23],[-5,29],[-13,30],[-14,16],[15,4],[14,5],[-2,12],[-12,19],[9,21],[22,15],[0,14],[6,28],[6,29],[5,13],[10,10],[-8,26],[20,10],[42,-6],[11,8],[-1,13],[3,15],[41,29],[38,27],[-4,10],[-4,12],[0,34],[-6,33],[-14,12],[-48,4],[-64,7],[-27,12],[2,8],[-5,10],[-12,25],[-5,28],[3,16],[15,10],[11,1],[-4,-13],[-4,-19],[9,-24],[23,-5],[29,-3],[21,-13],[14,2],[10,10],[4,30],[7,29],[18,11],[15,-2],[-9,-20],[-13,-27],[1,-16],[12,0],[26,-5],[41,-3],[28,6],[-16,-13],[-11,-17],[-3,-27],[4,-31],[27,-11],[18,1],[18,31],[13,32],[7,3],[10,-5],[7,-11],[-8,-26],[-7,-27],[9,-11],[25,0],[58,-2],[32,16],[-20,31],[-31,16],[-35,17],[-20,24],[10,9],[35,-13],[45,-31],[30,-14],[8,16],[-6,33],[-8,30],[1,15],[8,3],[6,4],[-1,19],[-1,21],[9,11],[15,2],[6,-32],[4,-31],[19,4],[3,-15],[-9,-42],[-11,-33],[-26,-46],[1,-50],[24,-32],[10,-25],[-13,7],[-37,31],[-24,25],[-32,7],[-31,-5],[1,-7],[-20,2],[-39,6],[-54,12],[-41,9],[12,-28],[-7,-33],[-24,-20],[-23,-18],[-20,-12],[-4,-12],[-49,-40],[-44,-43],[8,-26],[5,-24],[-9,-22],[-11,-27],[-2,-19],[38,-4],[7,-9],[-30,-16],[6,-5],[7,-11],[-4,-34],[-6,-35],[-22,-22],[-57,-31],[-47,-36]],[[22748,57745],[-6,10],[-14,15],[-21,8],[-32,-21],[-35,-7],[-22,15],[-1,26],[6,23],[15,16],[-8,26],[-39,29],[-22,2],[-6,-8],[-15,6],[-14,33],[-27,15],[-28,-13],[-19,-4],[-7,29],[23,18],[36,10],[37,-3],[22,-21],[37,-15],[29,14],[-5,28],[-51,46],[2,22],[27,7],[47,-12],[28,-28],[63,-43],[20,-49],[-22,-2],[-9,-45],[2,-34],[0,-21],[7,-19],[18,-27]],[[22764,57771],[-16,-26]],[[22764,57771],[14,-22],[51,-69],[70,-2],[40,-21],[5,-19],[20,-26],[40,-36],[-61,-10],[-59,25],[-39,-11],[-10,-17],[5,-21],[-14,-4],[-19,11],[-5,18],[-5,58],[-17,51],[-32,69]],[[21699,55908],[-54,45],[-31,-22],[-17,-21],[-2,34],[-8,45],[-103,72],[-19,26],[61,-31],[12,11],[1,18],[-20,34],[-28,29],[1,69],[-38,42],[-54,77],[-42,34],[-336,91],[-65,51],[-46,64],[-63,38],[-114,61],[-5,3],[10,5],[34,16],[139,-89],[47,-67],[76,-54],[65,-2],[81,-30],[89,-32],[42,-2],[24,-8],[11,-1],[16,3],[30,3],[47,-17],[24,-52],[29,-87],[46,-77],[-12,-22],[1,-28],[36,-45],[51,-87],[79,-33],[37,-67],[-32,3]],[[20529,56768],[52,42],[61,-52],[51,-35],[-17,-10],[-109,15],[-64,-19],[-17,12],[43,47]],[[23377,37061],[33,22],[10,-39],[3,-15],[28,-62],[14,-43],[-6,-26],[-35,9],[-18,13],[-66,48],[-56,105],[37,-1],[56,-11]],[[18556,41802],[-117,-13],[32,26],[15,15],[0,4],[-2,20],[10,19],[46,-31],[14,-36],[2,-4]],[[31711,54541],[-19,22],[-25,14],[-3,18],[7,28],[9,63],[5,58],[16,26],[29,6],[51,-34],[9,-52],[-11,-64],[7,-29],[-20,-45],[-41,-28],[-14,17]],[[32679,53127],[-8,-1],[-1,70],[-22,61],[10,38],[35,-9],[69,-43],[42,-34],[6,-55],[1,-106],[-18,-47],[-26,-42],[-30,1],[-2,14],[7,23],[13,33],[-7,42],[-22,44],[-24,19],[-23,-8]],[[29187,56502],[-95,27],[12,31],[48,-17],[58,-4],[25,-2],[45,2],[23,16],[-3,26],[-9,29],[27,-4],[36,-34],[55,-17],[14,-31],[-20,-48],[-61,10],[-155,16]],[[29595,59153],[-30,-13],[-46,-25],[-57,18],[-108,68],[22,28],[60,-1],[69,-4],[60,-45],[30,-26]],[[30901,59462],[-12,-25],[-4,-27],[-22,-38],[-40,82],[28,23],[35,42],[14,27],[-10,18],[-21,12],[3,34],[58,70],[12,36],[21,-19],[3,-64],[-25,-43],[5,-29],[3,-38],[-19,-31],[-29,-30]],[[19821,54314],[-20,-9],[-5,70],[16,38],[9,-99]],[[19845,54553],[22,77],[0,87],[14,20],[21,-13],[-8,-85],[-10,-92],[-14,-54],[-7,-48],[8,-55],[12,-83],[-21,0],[-19,101],[-57,49],[7,31],[14,14],[38,51]],[[42681,70513],[0,-3886]],[[42681,65510],[0,-4056]],[[42681,61110],[0,-965]],[[18664,0],[-18664,0],[0,59941]],[[0,71832],[0,158]],[[0,72892],[0,42]],[[0,73295],[0,5625],[42681,0],[0,-8049]],[[42681,22254],[0,-22254],[-8116,0]],[[38857,48844],[-26,-13],[-29,9],[-35,-3],[-40,-75],[-40,-7],[-31,-15],[-2,-47],[-11,-29],[-55,-25],[-74,31],[-37,-18],[-26,-13],[-47,-1],[-70,-9],[-69,-32],[-131,-16],[-158,-18],[-122,-41],[-137,-65],[-71,-77],[-64,-52]],[[39690,51040],[-8,59],[-24,74],[-35,32],[-41,22],[-17,14],[4,43],[16,24],[10,66],[-53,75],[-39,95],[-24,39],[-22,92],[18,71],[-10,78],[-33,25],[-41,44],[-28,27],[-19,64],[-24,50],[-22,55],[-25,80],[-59,77],[-35,23],[-3,64],[14,26],[23,21],[38,-9],[17,30],[30,36],[25,85],[27,53],[28,15],[43,14],[45,22],[48,33],[37,3],[24,16],[20,44],[16,13],[32,-1],[66,40],[44,23],[34,43],[23,30],[19,26],[25,13],[31,-1],[24,19],[53,3],[22,-21],[37,-53],[61,-33],[156,5],[88,-17],[53,-20],[49,16],[52,27],[101,52],[44,93],[24,60],[75,13],[50,-36],[62,-31],[13,-28],[-1,-6],[14,-45],[-4,-41],[-3,-47],[1,-25],[8,-44],[32,3],[19,-15],[2,-30],[9,-48],[-2,-45],[8,-49],[14,-13],[11,-6],[9,-6],[24,-30],[17,-28],[38,-34],[19,-40],[16,-65],[17,-59],[11,-55],[1,-96],[-3,-56],[-32,-34],[-17,-15],[-70,-25],[-41,-22],[-48,-26],[-15,-45],[-14,-87],[21,-90],[14,-98],[7,-66],[-58,-99],[-27,-36],[3,-73],[39,-15],[35,-29],[67,-69],[-24,-159],[-3,-101],[-1,-9],[-1,-23],[-1,-12],[-3,-16],[-7,-17],[-51,-27],[-64,2],[-83,-71],[-28,-3],[-17,67],[-33,47],[-31,-6],[-13,-47],[-75,-105],[-83,-17],[-25,-2],[-16,-36],[25,-32],[38,-29],[25,-73],[24,-79],[36,-11],[9,-40],[-42,-177],[-48,-15],[-50,-6],[-53,31],[-27,0],[-18,-31],[-13,-61],[-17,-107],[-27,-21],[-34,-4],[-33,-27],[-53,-12],[-62,12],[-40,-12],[-36,-38],[-31,-12],[-43,-5],[-26,-32],[-8,-63],[-7,-44],[-22,-43],[-21,-16],[-23,-15],[-22,4],[-16,32],[-3,31],[-12,14],[-26,10],[-15,-5],[-25,-25],[-1,-10],[3,-15],[1,-16],[-2,-38],[4,-36],[8,-12],[4,-6],[5,-36],[4,-74],[6,-33],[14,-29],[5,-33],[6,-17],[16,-6],[36,-29],[28,-15],[32,-58],[26,-33],[13,-45],[-32,-26],[-9,-13],[-7,-18],[-17,-57],[-20,-26],[-27,-6],[-29,9],[-25,17],[-29,0],[-16,-16],[-36,-36],[-10,-9],[-37,-11],[-10,-9],[-2,-7],[0,-10],[0,-19],[0,-3],[-2,-3],[-4,-6],[-13,-10],[-101,-36],[-106,16],[-33,26],[-36,23],[-36,3],[-38,22],[-25,9],[-47,-32],[-38,-58],[-29,-9],[-43,16],[-22,1],[-12,-26],[5,-34],[13,-44],[4,-21],[-8,-21],[-28,-8],[-86,-1],[-34,24],[-41,-18]],[[22021,52750],[-1,0]],[[22020,52750],[-52,-30]],[[22486,53060],[-13,-42],[-67,-52],[-128,-76],[-69,-56],[-11,-35],[-41,-24],[-106,-19]],[[21128,53488],[38,-66],[46,-36],[66,-29],[37,-37],[13,-68]],[[20732,53853],[-21,48],[-39,29],[-62,28],[-53,38],[-65,76]],[[28681,40426],[-79,116],[-25,48],[4,28]],[[30133,41066],[31,33],[26,77],[37,81],[57,88],[55,138],[11,91],[74,69],[139,46],[125,9],[111,-28],[68,6],[24,40],[5,74],[-21,162]],[[29969,43050],[-147,115],[-134,68],[-339,221]],[[29137,43845],[19,-59],[3,-54],[-9,-103]],[[28695,44912],[-14,-275],[0,-136],[17,-133]],[[34197,41741],[92,52],[85,60],[85,57],[81,38],[23,42],[21,67],[55,197],[43,94],[49,84],[106,132],[32,65],[0,0]],[[34869,42629],[-3,34],[-19,40],[-8,34],[5,28],[22,45],[41,63],[39,32],[40,2],[33,16],[25,16],[13,37],[7,55],[22,56],[-14,44],[-24,16],[-57,-1],[-17,3],[-19,38],[-4,68],[-19,65],[-27,73],[-26,19]],[[27214,58545],[63,-85],[-2,-41],[-47,-25],[-24,-37],[-2,-73]],[[28949,52570],[65,28],[44,63],[67,158]],[[18556,41802],[-117,-13]],[[18582,41802],[17,-14],[159,-126]],[[17136,40516],[45,105],[3,8],[29,38],[12,15],[51,32],[10,1],[61,5],[118,-26],[18,-4]],[[32747,52498],[212,-222],[89,-75],[53,-4]],[[29125,52819],[85,152],[97,98],[136,96],[128,22],[121,-50],[47,-47],[53,-53]],[[11384,34946],[68,-40],[93,-8],[209,13]],[[12931,35539],[74,172]],[[42129,45771],[-26,-110],[-7,-83],[3,-94],[-16,-73],[-51,-80]],[[23148,43779],[59,6]],[[35882,44039],[80,119],[2,87],[-49,96],[-25,70],[-2,44],[32,40],[67,36],[46,36],[23,37],[6,52],[-10,65],[-26,58],[-41,51],[-21,56],[0,63],[16,55],[31,46],[17,42],[4,37],[25,36],[47,36],[41,59],[36,82],[34,33],[53,24],[42,-18],[54,-7],[45,3]],[[37492,48652],[108,-218],[-18,-106]],[[37582,48328],[-106,-68],[-59,-110],[-10,-153],[-46,-104],[-81,-55],[-49,-57],[-18,-59],[-8,-68],[3,-77],[60,-107],[117,-137],[63,-133],[6,-128],[13,-89],[20,-50],[27,-35],[50,-19],[169,6],[161,-9]],[[34824,49698],[-42,51],[-27,71],[-27,107],[-26,77],[-26,44],[-15,39],[-3,32],[10,50],[35,102],[-144,71],[-71,19],[-70,-14]],[[31845,49766],[0,1]],[[31845,49767],[-127,25],[-70,-29],[-53,-75],[-49,-19],[-69,56]],[[32134,50238],[87,18],[64,62],[106,166]],[[33833,50415],[-65,21],[-50,62],[-59,110],[-41,62],[-24,14],[-63,-9],[-100,-31],[-96,-52],[-135,-112]],[[32455,50875],[-53,57],[-3,59],[42,121],[0,0]],[[32441,51112],[141,-153]],[[19524,52077],[15,55],[1,41]],[[19538,52324],[-2,44],[-17,98],[-1,69]],[[28681,53117],[-86,70],[-86,19],[-115,-6],[-76,8],[-55,34]],[[28707,53166],[59,16],[64,-12],[88,-36],[85,-92],[121,-222]],[[27158,38704],[238,197],[76,108],[3,93],[-7,69],[-21,65]],[[28315,39688],[-23,41],[-3,6],[-40,50],[-78,43],[-85,-15],[-93,-72],[-63,-27],[-5,3],[-29,16],[-20,-1],[-7,-21],[2,-17],[8,-11],[2,-2],[-2,-10],[-13,-6]],[[27866,39665],[10,-14],[48,-33]],[[27924,39618],[1,0]],[[27925,39618],[91,-70],[33,-14],[14,4],[14,-8],[34,-64],[34,-32],[34,0],[35,-18],[20,-12]],[[27924,39618],[1,0]],[[27925,39618],[375,-25]],[[22020,52750],[31,6]],[[22487,53060],[16,98]],[[21328,53252],[35,-16],[5,-26],[-14,-42],[8,-36],[29,-31],[47,-14],[65,1],[64,-32],[63,-64],[68,-27],[71,9],[49,-19],[24,-47],[7,-49],[-10,-53],[29,-41],[100,-45]],[[20733,53853],[2,-70],[8,-30],[13,-13],[86,-15],[40,-27],[29,-47],[65,-59],[152,-104]],[[19963,54499],[55,6],[11,-9],[27,-24],[56,-106],[380,-294]],[[22387,42144],[46,-54],[84,-98],[7,-6],[66,-62],[60,-35],[182,-6],[265,20],[24,2],[19,19],[98,8],[33,-11],[15,-24],[10,-42],[0,-19],[-24,-138],[-6,-62]],[[23266,41636],[-14,-60],[-34,-42],[-25,-92],[-11,-96],[21,-59],[4,-44]],[[23207,41243],[2,-29],[-2,-101],[4,-71],[18,-56],[-8,-48],[-34,-41],[-10,-46],[15,-51],[7,-92],[-1,-133],[-27,-106],[-53,-77],[-10,-42],[15,-70],[17,-38],[21,-49]],[[23161,40193],[26,-60],[4,-16],[21,-82],[-5,-17],[-9,-31],[17,-38]],[[23215,39949],[21,-11],[28,-16],[4,-10],[-15,-12],[-2,-5],[-10,-27],[-1,-58],[42,-55],[23,-14],[62,-37],[96,-31],[106,-9],[61,8],[17,24],[21,-9],[24,-40],[41,-24],[56,-6],[43,-26],[14,-21]],[[23846,39570],[15,-23],[11,-53],[-6,-61],[13,-51],[32,-41],[38,-19],[43,4],[21,-16],[-1,-37],[15,-40],[31,-43],[87,14],[212,104],[33,-14],[44,-18],[35,-30],[19,-40],[49,-26],[80,-13],[56,-40],[17,-38],[14,-31],[51,17],[2,1],[35,50],[34,50],[43,16],[27,10],[69,-48],[37,-40],[6,-31],[0,0],[-16,-13],[-38,6],[-31,-19],[-25,-45],[-1,-18],[-2,-29],[17,-50],[24,-35],[31,-19],[17,-27],[2,-33],[42,-47],[80,-59],[40,-44],[-2,-26],[-19,-27],[-10,-7],[-25,-19],[-20,-35],[-6,-42],[6,-31],[24,-26],[99,24],[46,11],[147,-18],[197,-59],[131,-20],[97,27],[241,-66],[73,-20],[32,-9],[160,-14],[89,36],[63,49],[54,91],[67,59],[36,33],[31,28],[130,67],[170,54],[114,19],[63,-21],[22,-5]],[[27158,38704],[34,-4],[35,4],[86,36],[126,73],[77,71],[27,67],[2,50],[-24,32],[-9,40],[5,46],[-15,46],[-40,48],[-15,23]],[[27447,39236],[-13,21],[-9,24],[0,30],[15,30],[16,91],[14,150],[19,114],[22,78],[32,49],[63,32],[50,-91],[6,-4],[54,-41],[4,-3],[5,-2],[134,-46],[7,-3]],[[29439,49902],[-7,-27],[16,-14],[38,-10],[31,-26],[36,-61],[-21,-124],[-19,-50],[-23,-19],[-24,-46],[-22,-73],[-7,-70],[9,-66],[-11,-40],[-32,-15],[-13,-29],[6,-43],[-53,-23],[-111,-3],[-76,-23],[-43,-44],[-5,-88],[33,-132],[-16,-73],[-65,-14],[-51,-33],[-54,-80],[-79,-26],[-117,-39],[-111,-58],[-92,-74],[-23,-44],[-9,-35],[-29,-11],[-76,19],[-53,1],[-27,-16],[-15,-23],[-2,-28],[-17,-11],[-31,5],[-31,-13],[-30,-33],[-19,1],[-6,36],[-16,18],[-24,0],[-19,20],[-13,39],[-40,51],[-69,63],[-27,44],[-4,25],[-35,41],[-92,60],[-104,37],[-116,14],[-82,34],[-48,53],[-28,52],[-6,49],[-16,18],[-12,2],[-43,-9],[-76,-10],[-69,5],[-37,18],[-15,7],[-159,59],[-97,7],[-90,-24],[-62,17],[-36,58],[-23,65],[-12,72],[-21,50],[-32,28],[-21,48],[-8,67],[-48,67],[-88,66],[-48,53],[-8,39],[-25,10],[-41,-19],[-42,2],[-43,24],[-41,2],[-38,-20],[-48,-2],[-58,15],[-77,50],[-96,84],[-87,55],[-78,27],[-57,32],[-36,36],[-25,44],[-16,65]],[[30225,48995],[39,-41],[4,-22],[-18,-16],[8,-17],[32,-19],[9,-26],[-21,-49],[-37,-76],[-31,-21],[-38,8],[-18,-50],[3,-111],[-10,-74],[-22,-39],[-24,-86],[-39,-200]],[[28681,40426],[3,-5]],[[25062,43202],[111,169],[146,82],[103,10],[111,-36],[84,-38],[58,-39],[41,-56],[26,-72],[38,-39],[50,-8],[60,-48],[72,-89],[50,-46],[29,-2],[36,-24],[64,-71],[15,-34],[15,3],[12,2],[9,-17],[10,-20],[24,0],[18,-8],[27,11],[59,-32],[70,-105],[30,-27],[23,1],[22,-9],[32,-37],[30,-4],[23,10],[14,3],[17,-40],[10,-8],[18,8],[18,-21],[40,-16],[69,5],[47,-16],[27,-38],[17,-6],[8,23],[15,10],[14,11],[12,19],[13,10],[18,10],[12,3],[9,12],[15,4],[23,-22],[54,2],[130,35],[77,-15],[22,-64],[44,-40],[33,-6],[34,-7],[50,-29],[34,-45],[34,-28],[8,-2],[28,-9],[20,-22],[2,-20],[2,-14],[29,-15],[4,-2],[63,1],[26,-23],[-6,-26],[-3,-19],[6,-15],[22,16],[17,-14],[9,-33],[10,-16],[16,5],[20,7],[17,-31],[-1,-36],[15,-16],[23,7],[54,-27],[79,-78],[37,-89],[-8,-102],[11,-85],[29,-70],[12,-47],[-7,-25],[7,-26],[8,-20],[-2,-25],[-6,-26],[24,-66],[-5,-48],[-6,-24],[3,-15],[16,0],[21,6],[23,3],[23,-27],[22,-43],[1,-32],[-21,-22],[-8,-18],[5,-15],[54,-11],[23,-38],[12,-72],[19,-25],[24,23],[22,-13],[20,-49],[6,-36],[-8,-23],[10,-21],[26,-21],[7,-18],[3,-17],[17,-18],[44,-24],[110,-114],[12,1],[30,2],[17,-23],[6,-70]],[[29677,40877],[32,30],[136,59],[63,36],[81,17],[57,7],[45,20],[42,20]],[[30875,41950],[12,116],[-6,58],[-20,38],[6,24],[29,10],[17,26],[4,43],[-11,71],[-27,100],[-73,73],[-67,13],[-52,33],[-142,97],[-87,84],[-76,63],[-165,118],[-100,58],[-68,50],[-80,25]],[[29349,43454],[-93,71],[-108,106]],[[29137,43845],[-93,-19],[-82,39],[-102,90],[-71,84],[-39,79],[-27,92],[-25,158]],[[30062,48156],[-133,60],[-63,14],[-35,-13],[-38,-25],[-41,-37],[-24,-39],[-8,-43],[-28,-52],[-47,-60],[-62,0],[-76,62],[-102,10],[-193,-61],[-277,-43],[-19,-3],[-122,-36],[-45,-43],[-33,-18],[-21,8],[-22,-14],[-23,-37],[-25,-62],[-27,-86],[7,-124],[41,-161],[1,-90],[-40,-17],[-23,-68],[-6,-119],[11,-125],[41,-199],[-44,-40],[-9,-39],[12,-51],[-16,-25],[-42,3],[-34,-20],[-25,-43],[-2,-85],[22,-128],[30,-86],[37,-46],[17,-45],[-3,-45],[14,-42],[29,-39],[11,-29],[-6,-18],[21,-26],[51,-33],[20,-32],[-10,-29],[28,-66],[66,-103],[35,-74],[4,-45],[-13,-38],[-2,-6],[-4,-5],[-32,-38],[-35,-69],[-13,-37],[-22,-58],[-1,-95],[0,-4],[30,-103],[0,-4],[0,-81],[-49,-99]],[[34197,41741],[-45,-36],[-77,3],[-47,23],[-76,8],[-89,0],[-52,-31],[-53,-14],[-53,1],[-30,16],[-8,30],[-11,8],[-21,-21],[-160,-83],[-83,-79],[-61,-103],[-81,-54],[-101,-6],[-100,-25],[-148,-67],[-40,-4]],[[34879,43412],[-80,-18],[-30,-27],[-7,-42],[-24,-37],[-41,-32],[-33,-4],[-25,23],[-12,26],[0,28],[-29,26],[-57,26],[-18,39],[-13,50],[-19,7],[-39,-13],[-95,11],[-71,18],[-138,10],[-83,-12],[-56,17],[-117,-3],[-41,-22],[-32,-1],[-21,20],[-4,18],[13,16],[-4,31],[-21,44],[-45,32],[-68,18],[-36,32],[-3,45],[-12,38],[-19,30],[-34,7],[-48,-17],[-15,8],[-11,20],[-12,44],[-45,82],[-33,16],[-22,-49],[-30,-15],[-59,27],[-75,6],[-18,26],[14,47],[-2,45],[-18,45],[6,50],[30,54],[-13,59],[-55,63],[-7,62],[-13,28],[-40,37],[-18,37],[5,36],[13,19],[9,32],[-12,36],[-7,39],[2,29],[-16,9],[-32,-7],[-78,5],[-117,24],[-58,33],[0,41],[18,34],[36,28],[2,27],[-30,26],[-10,31],[-8,49],[-14,62],[-37,57],[0,42],[3,26],[-10,29],[-10,24],[-2,26],[12,25],[4,27],[-5,29],[12,59],[29,89],[8,66],[-3,69]],[[32785,45614],[9,29],[6,29],[-5,36],[-27,47],[-51,60],[-15,37],[0,33],[-25,97],[12,122],[1,77],[-10,34],[25,80],[61,126],[30,157],[-2,189],[-19,101],[-26,62],[-17,37],[-11,13],[-60,37],[-109,60],[-52,59],[5,57],[-6,37],[-24,25],[-82,153]],[[18125,42132],[128,-102],[98,5],[66,35],[68,67],[73,29],[77,-7],[60,34],[41,75],[38,37],[34,-3],[59,42],[83,87],[80,57],[76,26],[46,29],[14,32],[52,48],[89,63],[148,49],[313,52],[39,67],[40,31],[54,17],[28,28],[4,62],[100,-9],[56,-22],[69,-60]],[[22387,42144],[-20,50],[-25,25],[-39,18],[-17,1],[-55,3],[-104,-9],[-82,45],[-59,101],[-72,46],[-83,-10],[-82,9],[-80,28],[-57,11],[-33,-6],[-34,-40],[-34,-74],[-45,-51],[-56,-26],[-53,-1],[-49,26],[-49,0],[-48,-26],[-68,18],[-87,64],[-74,33],[-62,0],[-36,21],[-12,40],[-67,56],[-107,62],[-75,43],[-81,18],[-55,30],[-57,48],[-36,49],[-15,52],[-30,25],[-44,0],[-53,21],[-94,63]],[[20782,41293],[258,50],[67,54],[53,14],[63,-10],[51,28],[41,64],[55,46],[39,26],[30,1],[45,-7],[20,-41],[4,-27],[-14,-14],[-4,-42],[6,-69],[16,-46],[24,-23],[30,-86],[40,-145],[10,-56],[23,-27],[34,-12],[64,-21],[98,-32],[80,-81],[52,-31],[51,-9],[67,-35],[12,-8],[6,-4],[66,-48],[59,-68],[14,-31],[19,-44],[43,-58],[41,-30],[15,-11],[44,-56],[9,-19],[23,-51],[46,-40],[2,0],[56,-9],[37,-24],[15,-40],[18,-20],[14,-16],[48,-32],[14,-3],[58,-14],[2,-1],[6,0],[145,-4],[8,-8],[119,-113],[77,-47],[114,-14]],[[12881,36766],[141,-68],[46,-47],[-1,-47],[11,-48],[31,-73],[-67,-73],[-56,-15],[-68,20],[-50,1],[-33,-18],[-49,14],[-65,48],[-112,47],[-157,48],[-94,5],[-29,-39],[-68,-15],[-107,7],[-147,-41],[-187,-91],[-110,-22],[-34,46],[-66,10],[-99,-26],[-52,-5],[-24,-16],[-40,14],[-57,46],[-41,6],[-25,-23],[-6,-6],[-22,-54],[-54,-69],[-77,-63],[-59,-78],[-40,-94],[-51,-40],[-61,14],[-35,31],[-9,46],[-67,21],[-192,-8],[-277,-78],[-91,-7],[-61,38],[-57,24]],[[12241,37716],[41,-8],[22,-43],[18,-81],[26,-31],[34,17],[33,-2],[30,-22],[23,13],[15,49],[24,9],[50,-46],[33,-34],[55,-13],[86,-4],[68,-28],[50,-53],[30,-45],[9,-37],[32,-37],[55,-37],[36,-9],[20,18],[60,-12],[101,-42],[89,-66],[117,-136],[163,-226],[140,-154],[171,-159],[105,-125],[39,-91],[68,-57],[97,-22],[65,19],[34,60],[26,32],[20,2],[26,-13],[32,-27],[15,-35],[-3,-42],[4,-21],[14,-2],[62,-4],[31,-26],[20,-48],[9,-40],[0,-32],[-18,-40],[-36,-48],[-10,-69],[16,-89],[48,-50],[46,-8]],[[21617,44452],[15,-69],[18,-33],[25,-21],[14,-27],[1,-33],[21,-39],[39,-40],[10,-19],[2,-39],[-21,-49],[-12,-66],[-1,-79],[-66,-48],[-132,-18],[-78,3],[-36,35],[-34,68],[-56,23],[-90,2],[-71,36],[-74,106],[-41,84],[-26,19],[-26,-16],[-18,11],[-8,38],[-21,19],[-33,0],[-22,14],[-11,28],[0,19],[11,12],[2,14],[1,20],[7,17],[36,22],[20,56],[5,89],[-3,5],[-33,53],[-76,29],[-49,36],[-21,43],[-40,33],[-58,23],[-47,32],[-38,43],[-21,39],[-6,38],[-19,30],[-34,23],[-23,39],[-20,80]],[[20483,45137],[-122,130],[-44,78],[-6,69],[-42,46],[-76,25],[-94,9],[-111,-6],[-73,30],[-33,68],[-38,40],[-45,12],[-28,23],[-11,33],[0,40],[12,49],[31,54],[75,93],[29,52],[12,109],[5,183],[-44,130],[-93,77],[-80,42],[-67,7],[-56,27],[-44,47],[-30,17],[-16,-13],[-53,43],[-90,98],[-58,50],[-39,2],[-89,40],[-51,7],[-43,-11],[-63,24]],[[19008,46861],[-125,88],[-16,12],[55,-2],[41,-12],[29,-19],[16,-67]],[[23199,40571],[-5,-278],[-1,-16],[-1,-10],[-5,-48],[-10,-10],[-16,-16]],[[15085,37379],[7,58],[-15,34],[-56,45],[-28,64],[-10,100],[-3,157],[-22,130],[-41,103]],[[19673,54970],[-140,-168],[-49,-46],[-48,-46],[-100,-72],[-56,-56],[-11,-39],[-4,-39],[5,-39],[31,-44],[58,-48],[32,-50],[5,-50],[-8,-51],[-23,-52],[14,-66],[49,-82],[31,-71],[19,-90],[83,-92],[33,-75],[13,-86],[27,-92],[43,-97],[41,-61],[39,-27],[36,-48],[33,-69],[35,-45],[39,-22],[22,-26],[9,-47]],[[20077,51187],[-78,-117],[-28,-87],[-3,-96],[-37,-91],[-103,-128],[-12,-5]],[[29199,56006],[68,-44],[57,-47],[52,1],[138,76],[28,44],[30,71],[10,46],[-10,22],[1,41],[13,60],[-23,64],[-59,66],[-14,46],[31,24],[25,35],[17,48],[-17,61],[-52,76],[-23,59],[2,22]],[[29423,56524],[75,-66]],[[29473,56777],[3,20],[49,43],[95,45],[62,51],[29,57],[44,19],[58,-19],[41,19],[23,57],[31,26],[57,-6],[388,-113],[181,-27],[153,32],[38,4]],[[29381,56878],[92,-101]],[[27202,58284],[-17,-54],[-25,-28],[-38,-22],[-138,7],[-236,34],[-160,40],[-84,46],[-85,1],[-87,-44],[-59,-71],[-47,-149],[-169,-66],[-70,-62],[-41,-118],[-40,-47]],[[27876,59721],[71,-82],[11,-44],[-36,-53],[-13,-77],[-23,-55],[-37,-57],[-81,-85],[-125,-111],[-49,-82],[28,-53],[-9,-19],[-45,15],[-22,-9],[0,-34],[-11,-21],[-33,-14],[-182,-50],[-52,-46],[19,-58],[-11,-82],[-62,-159]],[[24935,53675],[-85,72],[-28,8],[2,-33],[-21,-8],[-43,18],[-75,60],[-159,154],[-30,22],[-23,26]],[[16755,45566],[-80,27],[-77,-15],[-101,-46],[-90,-24],[-81,-1],[-69,20],[-87,62]],[[17091,45486],[-55,78],[-83,18],[-198,-16]],[[28949,52570],[-14,-16],[-16,-44],[-35,-34],[-53,-28],[-68,21],[-83,71],[-61,27],[-58,-26]],[[22582,43616],[109,-75],[47,-15],[33,31],[59,51],[40,56],[39,80],[3,50],[1,26],[-30,73],[-10,72],[10,72],[-32,89],[-73,105],[-35,80],[3,54],[-12,55],[-28,57],[-56,52],[-148,89],[-42,40],[-29,41],[-15,42],[-35,40],[-85,55],[-69,86],[-62,21],[-78,-15],[-47,8],[-15,30],[-2,32],[13,34],[4,59],[-6,85],[-26,67],[-46,50],[-41,22],[-37,-7],[-60,19],[-82,46],[-37,60],[9,73],[-14,58],[-36,43],[-123,31],[-314,28],[-5,5],[-22,24],[-5,35],[4,35],[2,15],[-12,37],[-4,3],[-27,22],[-20,32],[-9,40],[7,56],[0,6],[24,86],[-50,102],[-58,57],[-65,63],[-60,84],[5,48],[26,44],[41,33],[6,6],[1,2],[35,67],[8,32],[29,117],[64,148],[17,71],[-3,52],[-13,48]],[[42343,54418],[-53,-32],[-47,0],[-88,31],[-54,-53],[-65,10],[-96,57],[-97,-6],[-97,-68],[-57,-66],[-14,-64],[-24,-30],[-34,5],[-66,-25],[-97,-55],[-87,-19],[-104,25],[-23,31],[-38,30],[-11,5],[-8,11],[4,27],[-6,50],[-19,71],[-32,57],[-30,29],[-12,16],[-5,26],[0,26],[6,16],[27,49],[12,97],[-9,127],[-38,93],[-68,58],[-58,35],[-49,12],[-21,34],[7,56],[-13,58],[-46,93],[-79,149],[2,27],[7,16],[18,10],[30,-21],[55,23],[56,59],[38,14],[23,6],[10,33],[2,29],[12,29],[23,10],[11,13],[-6,19],[-24,33],[-6,32],[18,25],[25,20],[39,63],[35,89],[110,67],[186,44],[63,20],[18,26],[2,39],[6,27],[28,30],[9,34],[-12,29],[2,33],[-11,32],[3,30],[7,23],[21,28],[7,31],[16,13],[21,29],[6,21],[21,12],[5,28],[1,28],[3,19],[6,34],[1,39],[10,63],[24,78],[-16,57],[-58,37],[-54,53],[-50,70],[-49,37],[-47,3],[-21,23],[4,43],[-30,25],[-63,9],[-25,82],[15,158],[-38,129],[-90,101],[-16,93],[15,50],[28,57],[1,52],[-15,28],[-33,26],[-54,78],[-62,119],[-99,60],[-135,0],[-112,-21],[-166,-89],[-70,-51],[-44,-68],[-18,-84],[-19,-52],[-30,-27],[-92,-111],[-59,-44],[-59,-13],[-62,-55],[-67,-94],[-100,-52],[-134,-7],[-111,-29],[-87,-49],[-100,-24],[-111,-1],[-137,22],[-163,45],[-82,51],[-2,57],[14,86],[29,113],[52,97],[75,79],[28,53],[-19,26],[-9,54],[-1,83],[-9,71],[-17,59],[2,44],[20,29],[3,33],[-12,35],[-4,36],[7,38],[-16,45],[-37,53],[-9,106],[18,159],[-5,89],[-45,27],[-56,100],[-17,51],[2,36],[16,33],[30,30],[-1,22],[-34,15],[-16,30],[1,44],[56,50],[112,56],[69,19]],[[39185,59365],[55,48],[172,96]],[[39185,59365],[25,-19],[63,-4],[100,9],[76,44],[51,79],[105,76],[160,74],[102,75],[19,32]],[[39412,59509],[51,60],[-62,29],[-27,40],[8,51],[24,43],[16,14]],[[39761,59810],[-44,-28],[-37,-44],[-24,-60],[-60,-61],[-144,-94],[-40,-14]],[[17599,39202],[102,-36],[46,19],[38,95],[55,48],[22,66],[6,102],[25,77],[45,53],[71,27],[100,-1],[83,-17],[66,-34],[45,-42],[23,-52],[78,0],[198,76],[112,-36],[21,-5],[21,19],[27,12],[21,-13],[22,-24],[17,-3],[10,18],[13,-1],[16,-20],[14,4],[12,29],[18,13],[25,-2],[22,-21],[20,-40],[49,-30],[78,-21],[53,-26],[29,-33],[31,-6],[34,22],[18,29],[3,37],[32,25],[62,13],[71,3],[80,-9],[59,-32],[37,-53],[42,-36],[45,-19],[52,11],[88,59],[102,30],[54,-6],[40,-32],[31,-9]],[[18377,40930],[140,71],[175,68]],[[18689,41069],[51,63],[8,49],[-18,57],[-3,29],[-4,27],[-1,5],[3,66],[20,86],[2,6],[37,100],[8,66],[-29,34],[-2,2],[-3,3]],[[18556,41802],[9,0],[17,0]],[[18439,41789],[-86,27],[-38,-21],[-19,-60],[-46,-16],[-50,18],[-24,9],[-61,0],[-50,-27],[-54,-7],[-25,-4],[-25,1],[-83,5],[-55,27],[-8,5],[-17,59],[1,25],[3,62],[26,116],[7,85],[-11,54],[3,18],[12,63],[13,33],[29,75],[28,114],[8,62],[7,58],[20,78],[40,55],[111,178],[35,56]],[[18130,42937],[89,218],[32,102],[6,59],[-4,34],[-15,9],[-17,51],[-20,94],[5,69],[19,33],[3,34],[-17,42],[-21,85],[-25,60],[-29,38],[-54,3],[-79,-32],[-75,45],[-71,122],[-23,36],[2,39],[9,50],[-10,38],[-24,29],[-54,29],[-47,46],[-42,65],[-25,55],[-9,45],[-28,53],[-47,62],[-15,42],[0,45],[-10,30],[-2,53],[-15,36],[-27,22],[-14,29],[-2,36],[-14,26],[-28,17],[1,35],[-9,36],[-25,30],[5,54],[4,50],[-5,32],[-2,25],[-3,33],[-30,31],[-14,28],[1,40],[-113,121],[-69,54],[-62,28],[-1,1],[-19,2]],[[17091,45486],[-30,4],[-37,-15],[-56,3],[-75,22],[-62,-9],[-48,-40],[-66,-16],[-126,9]],[[16417,38329],[-49,-7],[-23,-17],[-12,-29],[-2,-20],[3,-12],[-4,-20],[-26,-26],[-4,-29],[9,-35]],[[17136,40516],[-74,-48],[-36,-24],[-42,-95],[-10,-144],[-22,-99],[-33,-53],[-49,25],[-65,102],[-41,22],[-31,-30],[-44,-11],[-63,16],[-51,-8],[-38,-33],[-23,-51],[-6,-70],[4,-45],[17,-18],[-6,-42],[-27,-65],[2,-132],[33,-198],[3,-133],[-28,-68],[-12,-63],[3,-60],[-7,-49],[-24,-56],[-23,-196],[1,-107],[17,-83],[23,-55],[29,-26],[11,-25],[-11,-34],[-62,-59],[-25,-69],[-8,-99],[5,-67],[30,-52],[14,-22],[6,-41],[3,-51],[21,-42]],[[18140,40760],[-87,-95],[-53,-35],[-75,-8],[-69,1],[-86,-43],[-126,-87],[-55,-23],[-33,39],[-73,181]],[[16460,41721],[-59,141],[-15,64],[10,33],[-4,36],[-28,59],[-46,108],[-41,56],[-52,39],[-55,82],[-61,126],[-52,79],[-45,30],[-96,-22],[-147,-76],[-101,-41],[-56,-6],[-48,21],[-63,72],[-54,36],[-35,43],[-34,60],[-11,43],[13,25],[-1,33],[-12,40],[-25,20],[-26,16],[-13,20],[-9,29],[-16,3],[-20,-6],[-14,21],[-3,17],[-13,9],[-23,-4],[-26,6],[-15,31],[-32,9],[-50,-14],[-40,1],[-21,23],[-3,26],[-16,12],[-23,-8],[-42,28],[-48,67],[-20,45],[-19,7],[-17,-6],[-16,7],[-3,21],[-5,33],[-18,21],[-46,5],[-17,14],[-6,24],[-10,23],[-24,-3],[-20,10],[-15,31],[-21,-9],[-12,10],[-21,39],[-31,9],[-32,-18],[-32,-6],[-43,35],[-26,-17]],[[23266,41636],[15,-37],[3,-19],[-2,-21],[-20,-35],[-37,-69],[-12,-66],[11,-48],[2,-39],[-19,-59]],[[33101,52197],[142,-43],[55,-26],[16,-22],[7,-37],[-1,-50],[42,-17],[86,14],[73,29],[59,46],[51,12],[45,-19],[68,-5],[92,10],[99,25],[107,38],[55,33],[3,30],[23,34],[43,38],[59,25],[75,12],[64,26],[51,41],[39,61],[28,82],[67,63],[161,67],[256,116],[143,89],[115,102],[102,58],[89,17],[74,29],[60,41],[93,23],[124,5],[89,24],[54,42],[52,15],[52,-12],[53,13],[54,38],[41,15],[42,-9]],[[32747,52498],[-59,62],[-129,-8]],[[36203,53270],[55,83],[27,59],[16,62],[9,55],[-1,45],[8,30],[14,13],[3,37],[-12,88]],[[36322,53742],[-160,162],[-146,108],[-187,107],[-123,107],[-59,110],[-36,84],[-14,61],[-42,67],[-70,73],[-125,50],[-180,26],[-131,57],[-83,89],[-156,112],[-227,135],[-126,97],[-25,59],[-56,37],[-131,25],[-64,59],[-17,48],[8,55],[-20,62],[-47,70],[-21,66],[6,61],[-37,46],[-82,29],[-56,37],[-32,45],[10,46],[53,49],[25,35],[-3,21],[15,35],[31,48],[13,47],[-5,43],[17,31],[38,17],[13,32],[-13,45],[-96,45],[-179,43],[-156,63],[-189,117]],[[29789,53036],[23,-4],[63,29],[68,58],[71,90],[71,52],[68,12],[62,51],[54,91],[43,44],[47,-6],[33,-28],[98,15],[262,74]],[[11384,34946],[-157,-78],[-98,-15],[-92,21],[-81,-12],[-42,-26],[-62,-40]],[[12931,35539],[-108,-222],[-66,-104],[-60,-61],[-73,-34],[-88,-9],[-82,-37],[-77,-67],[-75,-34],[-73,-1],[-50,-35],[-52,24],[-95,71],[-61,29],[-28,-12],[-35,-41],[-42,-71],[-44,-32],[-69,8]],[[13323,35603],[-73,126],[-40,46],[-46,12],[-159,-76]],[[10852,34796],[-160,0],[-94,-41],[-83,-82],[-73,-43],[-96,-6],[-91,-15],[-69,-85],[-66,-107],[-39,-117],[-23,-33]],[[13268,45323],[39,-33],[55,3],[124,42],[61,4],[31,18],[21,34],[20,-4],[19,-41],[2,-27],[8,-28],[24,-19],[22,-36],[7,-54],[19,-36],[33,-17],[26,12],[20,42],[29,24],[39,6],[21,-10],[4,-25],[14,-15],[35,-8],[47,-69],[34,-21],[34,5],[19,19],[3,31],[33,22],[93,19],[205,-42],[1,0]],[[23796,40566],[-43,-84],[-1,-2],[-9,-22],[-1,-19],[7,-35],[-2,-24],[-6,-18],[9,-24],[11,-28],[9,-41],[-1,-28],[-11,-15],[3,-35],[17,-48],[-2,-32],[-12,-16],[-12,-31],[-7,-50],[16,-60],[40,-70],[16,-46],[-6,-21],[10,-51],[28,-82],[9,-55],[-12,-59]],[[24350,42114],[-78,-18],[-37,-54],[-22,-96],[-88,-127],[-155,-158],[-69,-112],[16,-67],[-3,-32],[-24,2],[-33,-26],[-44,-56],[-18,-52],[6,-47],[14,-24],[-12,-25],[-18,-26],[-5,-36],[-9,-24],[-28,-33],[6,-55],[41,-76],[13,-63],[-17,-48],[3,-86],[21,-122],[5,-68],[-19,-19]],[[25730,42373],[39,-25],[-3,-52],[-46,-133],[-31,-112],[-60,-13],[-20,-4],[-138,41],[-48,26],[-62,33],[-81,76],[-76,16],[-72,-43],[-52,-12],[-33,17],[-49,-3],[-5,0],[-74,-26],[-60,15],[-45,56],[-23,75],[-1,93],[-10,50],[-5,2],[-11,4],[-7,-6],[-34,-30],[-64,-78],[-61,-55],[-57,-32],[-53,-13],[-51,4],[-30,-26],[-11,-55],[-16,-33],[-33,-16]],[[42032,45331],[-1,-67],[14,-51],[30,-56],[14,-63],[-4,-69],[-15,-52],[-26,-35],[-61,-40],[-74,-35]],[[41698,44793],[-60,12],[-126,61],[-136,97],[-162,68],[-188,40],[-136,64],[-83,89],[-81,65],[-80,42],[-120,35],[-160,27],[-222,-35],[-286,-99],[-180,-47],[-74,6],[-50,-14],[-27,-32],[-46,-20]],[[39279,45153],[-3,2],[-44,3],[-48,-18],[-14,-13]],[[42409,47808],[-57,-103],[-53,-68],[-16,-41],[5,-37],[-10,-54],[-26,-71],[3,-71],[34,-70],[8,-61],[-16,-51],[6,-52],[28,-52],[12,-40],[-5,-27],[-29,-32],[-52,-37],[-24,-59],[3,-79],[19,-58],[32,-38],[-3,-41],[-38,-47],[-36,-82],[-32,-118],[-1,-110],[32,-100],[12,-67],[-5,-18],[2,-26],[10,-21],[22,-17],[12,-12],[-1,-38],[-9,-44],[-108,-196]],[[23180,43532],[-43,152],[-8,62],[18,33]],[[23207,43785],[63,18],[34,30],[28,48],[71,4],[112,-41],[126,6],[209,79],[109,36],[59,44],[43,64],[70,41],[94,17],[98,52],[103,87],[78,88],[54,90],[18,138],[-15,186],[-3,114],[10,45],[24,43],[37,41],[13,45],[-14,49],[-17,27],[-20,4],[-12,21],[-2,36],[-44,42],[-85,50],[-48,50],[-10,51],[-28,51],[-45,50],[-17,36],[12,22],[-3,43],[-18,65],[-45,90],[-73,116],[-62,72],[-53,28],[-98,3],[-143,-24],[-123,25],[-153,113],[-208,83],[-115,102],[-92,147],[-108,97],[-125,44],[-35,75],[54,104],[71,79],[86,54],[45,66],[3,78],[15,57],[27,37],[17,54],[6,71],[-5,77],[-16,84],[7,76],[30,66],[15,59],[13,66]],[[36915,40981],[129,-45],[50,-68],[15,-107],[30,-73],[46,-39],[43,-73],[86,-164]],[[35882,44039],[-82,-88],[-36,-57],[-17,-57],[-8,-66],[-1,-74],[-26,-83],[-51,-92],[-43,-104],[-28,-93],[-17,-50],[-7,-33],[-3,-17],[-2,-30],[-5,-57],[-64,-159],[-120,-250],[-21,-55],[-8,-59],[33,-46],[127,-70],[85,-27],[41,15],[46,-5],[52,-23],[35,4],[18,32],[52,-9],[83,-46],[31,-13],[16,-13],[16,-14],[20,-27],[81,-91],[36,-95],[-4,-102],[22,-67],[49,-31],[26,-34],[4,-36],[23,-25],[43,-16],[56,-72],[70,-130],[53,-71],[34,-11],[29,-25],[23,-38],[12,-38],[1,-57],[1,-33],[60,-61],[119,-101],[57,-76],[-4,-51],[17,-26],[37,0],[53,-71],[67,-144],[28,-90],[-10,-38],[0,-39],[8,-43],[-38,-105],[-87,-169],[-44,-112],[-3,-56],[-12,-28],[-15,-18],[-8,-21],[1,-25],[11,-20],[21,-39],[9,-32]],[[37894,46876],[65,-2],[31,-44],[19,-86],[-9,-62],[-38,-38],[-44,-6],[-48,24],[-65,-9],[-83,-41],[-55,-3],[-26,36],[-49,22],[-71,10],[-95,-19],[-120,-47],[-67,-44],[-16,-42],[6,-54],[27,-67],[-26,-90],[-81,-113],[-75,-159],[-67,-206],[-64,-128],[-59,-52],[-63,-20],[-65,10],[-111,-64],[-75,-55],[-68,-78],[-61,-50],[-32,-22]],[[34824,49698],[107,-157],[85,-81],[100,-59],[57,-55],[14,-53],[29,-30],[42,-7],[49,-27],[55,-48],[99,-3],[145,42],[95,6],[44,-31],[33,2],[22,34],[33,15],[45,-6],[39,12],[33,30],[31,-2],[31,-33],[42,9],[53,53],[74,48],[94,44],[89,-24],[84,-92],[147,-47],[314,-5],[27,-20],[20,-43],[21,-71],[45,-59],[69,-46],[117,-41],[166,-37],[92,-79],[26,-185]],[[31844,49766],[1,1]],[[31845,49767],[115,94],[40,64],[4,65],[34,86],[96,162]],[[29686,50202],[39,-150],[-2,-61],[8,-32],[17,-25],[58,-11],[98,1],[107,-30],[116,-61],[70,-56],[22,-51],[44,-58],[67,-67],[11,-49],[-44,-31],[-20,-25],[6,-19],[92,-59],[177,-97],[116,-32],[55,33],[37,38],[19,41],[3,28],[-14,15],[5,26],[24,39],[7,38],[-9,37],[31,29],[105,30],[53,79],[41,35],[48,15],[40,27],[31,39],[48,22],[64,6],[75,-18],[85,-42],[47,-35],[14,-46]],[[33834,50415],[176,-40],[82,3],[48,33],[87,-3],[191,-61]],[[33200,50480],[-73,89],[-26,50],[-4,39],[-45,54],[-85,68],[-128,71],[-257,108]],[[32391,50484],[68,166],[16,98],[-20,127]],[[19524,52077],[-13,-78],[-28,-45],[-65,-68]],[[19538,52324],[-10,-33],[-24,-25],[0,-37],[27,-42],[9,-14]],[[19931,53074],[13,-29],[-3,-71],[-15,-124],[-44,-51],[-71,21],[-63,-7],[-55,-37],[-67,-73],[-92,-129],[-16,-39]],[[28681,53117],[12,11],[3,26],[11,12]],[[27879,53669],[16,-66],[18,-21],[112,-134],[92,-90],[146,-116]],[[39689,54060],[-18,31],[-1,25],[10,27],[-17,27],[-46,28],[-48,2],[-50,-24],[-39,7],[-29,38],[-73,28],[-179,28],[-36,29],[-61,7],[-101,-4],[-78,-17],[-57,-27],[-29,-26],[-3,-23],[-52,-4],[-102,15],[-122,-22],[-142,-59],[-61,-25],[-36,28],[-10,74],[-7,35],[-2,79],[-29,35],[-73,10],[-111,-14],[-33,35],[2,32],[24,46],[22,32],[-6,36],[-35,12],[-84,-2],[-102,-39],[-121,-76],[-110,-12],[-100,50],[-126,-29],[-152,-106],[-86,-86],[-20,-66],[-58,-83],[-99,-101],[-107,-87],[-116,-73],[-159,-57],[-299,-52]],[[40498,54685],[-101,66],[-80,0],[-51,21],[-49,42],[-36,-3],[-25,-50],[-51,-24],[-79,1],[-49,-22],[-22,-45],[-14,-42],[-5,-41],[12,-77],[29,-113],[45,-80],[62,-48],[66,-28],[69,-8],[39,-45],[8,-82],[-1,-48],[-11,-15],[-359,-87],[-140,6],[-69,97]],[[16591,45444],[-123,-59],[-68,-33],[-78,18],[-152,83]],[[14917,38070],[-1,2],[-21,85],[0,65],[-22,88],[-67,169],[-66,131],[-105,83],[-167,79],[-88,70],[-9,62],[-23,49],[-56,55],[-63,67],[-50,23],[-58,0],[-57,42],[-90,141],[-13,30],[-3,26],[12,34],[3,47],[-6,43]],[[15689,41201],[-29,144],[-50,121],[-11,66],[12,53],[-17,66],[-45,80],[-82,89],[-121,98],[-102,60],[-82,20],[-60,-2],[-36,-23],[-76,-89],[-116,-156],[-98,-99],[-80,-43],[-82,-25],[-86,-9],[-98,-40],[-105,-84],[-62,-23],[-54,27],[-85,101],[-95,34],[-149,-28],[-154,3],[-91,-33],[-80,-69],[-67,-37],[-35,-12],[-52,12]],[[15689,41201],[40,-7],[39,-23],[38,-92],[76,-15],[64,-78],[47,-89],[12,-71],[53,-45],[58,-41],[3,-71],[24,-123],[29,-64],[0,-90],[-32,-75],[9,-46],[49,-64],[27,-94],[3,-102],[17,-133],[-26,-95],[-32,-53],[-24,-62],[-61,-34],[-21,-72],[6,-69],[-9,-58],[12,-88],[67,-54],[47,-31],[15,43]],[[32078,51866],[46,-60]],[[32124,51806],[144,-141],[102,-250],[71,-303]],[[32124,51806],[35,26],[57,19],[102,-48],[52,36],[48,9],[25,31]],[[32443,51879],[35,58],[-7,29],[17,33],[-24,104],[15,87],[-18,49],[56,85],[-83,17],[-23,52],[-54,45],[18,32],[-5,15],[-82,61],[-5,15],[4,21],[32,24],[-22,57],[-57,33]],[[31891,52789],[23,10],[19,5]],[[31933,52804],[42,-10],[120,-44],[145,-54]],[[31924,52831],[9,-27]],[[31924,52831],[-48,28],[-34,70],[-17,16],[8,14],[-2,21],[-15,21],[4,56],[11,51],[11,13],[-8,35],[8,37],[-17,113],[-19,40],[-154,80],[-38,23],[-77,8],[-69,87],[-6,20],[-39,21]],[[31255,53728],[168,-143]],[[30506,54250],[22,-42],[122,-65],[135,89],[102,-59]],[[30887,54173],[325,-293],[43,-152]],[[31255,53728],[-35,-207],[-102,-73],[-89,88],[-119,-11],[-103,92],[-43,-8],[-11,-32],[8,-19],[-9,-44]],[[30739,55094],[-6,19],[9,34],[18,26]],[[30760,55173],[38,149],[-27,127],[-37,154],[-31,91],[-155,261],[-26,35]],[[30522,55990],[-76,126],[9,12]],[[30455,56128],[23,34],[23,61],[6,83],[11,27]],[[30518,56333],[28,42],[29,68],[-1,40],[129,125]],[[35359,42593],[-4,-42],[5,-21],[-30,-72],[-65,30],[-6,13],[-69,22],[-19,28],[-9,60],[-41,30],[-21,40],[-28,7],[-28,-19],[-63,7]],[[34869,42629],[112,47]],[[30583,55159],[85,-95],[66,-41]],[[30734,55023],[292,-173],[46,-94],[31,-68],[27,-93],[-82,-144],[-69,-221],[-92,-57]],[[30887,54173],[-1,0]],[[30734,55023],[5,71]]],"transform":{"scale":[0.0021086666198074084,0.0011403953370501773],"translate":[-30,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]]],"type":"MultiPolygon","properties":{"ct":[19.97,60.21]},"id":"ALA"},{"arcs":[[214,215,216,8,217]],"type":"Polygon","properties":{"ct":[20.07,41.13]},"id":"ALB"},{"arcs":[[218,219]],"type":"Polygon","properties":{"ct":[1.57,42.54]},"id":"AND"},{"arcs":[[220,221,222,223,224,225,226,227,228]],"type":"Polygon","properties":{"ct":[14.15,47.59]},"id":"AUT"},{"arcs":[[229,230,231,24,232,26,233]],"type":"Polygon","properties":{"ct":[4.65,50.65]},"id":"BEL"},{"arcs":[[-229,234,235,236]],"type":"Polygon","properties":{"ct":[15.32,49.74]},"id":"CZE"},{"arcs":[[5,237,238,239,240,241]],"type":"Polygon","properties":{"ct":[25.22,42.76]},"id":"BGR"},{"arcs":[[242,243,244,11,245]],"type":"Polygon","properties":{"ct":[17.78,44.18]},"id":"BIH"},{"arcs":[[246,247,248,249,250]],"type":"Polygon","properties":{"ct":[28.05,53.55]},"id":"BLR"},{"arcs":[[-225,251,252,253,-227,254]],"type":"Polygon","properties":{"ct":[8.24,46.8]},"id":"CHE"},{"arcs":[[255,256]],"type":"Polygon","properties":{"ct":[28.47,47.21]},"id":"MDA"},{"arcs":[[[-228,-254,257,258,-230,259,35,260,37,261,-235]],[[75]]],"type":"MultiPolygon","properties":{"ct":[10.38,51.08]},"id":"DEU"},{"arcs":[[[-261,36]],[[76]],[[77]],[[78]],[[79]],[[80]]],"type":"MultiPolygon","properties":{"ct":[9.33,56.04]},"id":"DNK"},{"arcs":[[[262,263,45]],[[82]],[[83]]],"type":"MultiPolygon","properties":{"ct":[25.83,58.68]},"id":"EST"},{"arcs":[[47,264,265,266]],"type":"Polygon","properties":{"ct":[26.3,64.54]},"id":"FIN"},{"arcs":[[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]]],"type":"MultiPolygon","properties":{"ct":[-7,62.13]},"id":"FRO"},{"arcs":[[[-220,267,23,-232,268,-258,-253,269,15,270,17,271]],[[97]]],"type":"MultiPolygon","properties":{"ct":[2.46,46.63]},"id":"FRA"},{"arcs":[[[98]],[[99]],[[272,100]],[[102]],[[103]],[[104]],[[105]]],"type":"MultiPolygon","properties":{"ct":[-2.52,53.95]},"id":"GBR"},{"arcs":[[1,273,274]],"type":"Polygon","properties":{"ct":[43.5,42.18]},"id":"GEO"},{"arcs":[[19,275]],"type":"Polygon","properties":{"ct":[-5.35,36.14]},"id":"GIB"},{"arcs":[[[-217,276,-239,277,7]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]]],"type":"MultiPolygon","properties":{"ct":[22.58,39.49]},"id":"GRC"},{"arcs":[[[-246,12,278,279,280]],[[-245,281,10]]],"type":"MultiPolygon","properties":{"ct":[16.43,45.13]},"id":"HRV"},{"arcs":[[-222,282,283,284,285,-280,286]],"type":"Polygon","properties":{"ct":[19.41,47.16]},"id":"HUN"},{"arcs":[[124]],"type":"Polygon","properties":{"ct":[-18.59,64.98]},"id":"ISL"},{"arcs":[[-273,101]],"type":"Polygon","properties":{"ct":[-8.14,53.18]},"id":"IRL"},{"arcs":[[[-224,287,14,-270,-252]],[[126]],[[127]]],"type":"MultiPolygon","properties":{"ct":[12.15,43.53]},"id":"ITA"},{"arcs":[[-271,16]],"type":"Polygon","properties":{"ct":[7.42,43.74]},"id":"MCO"},{"arcs":[[-226,-255]],"type":"Polygon","properties":{"ct":[9.55,47.14]},"id":"LIE"},{"arcs":[[-249,288,289,212,290,43,291]],"type":"Polygon","properties":{"ct":[23.88,55.34]},"id":"LTU"},{"arcs":[[-231,-259,-269]],"type":"Polygon","properties":{"ct":[6.08,49.78]},"id":"LUX"},{"arcs":[[-250,-292,44,-264,292]],"type":"Polygon","properties":{"ct":[24.94,56.85]},"id":"LVA"},{"arcs":[[-216,293,-240,-277]],"type":"Polygon","properties":{"ct":[21.7,41.61]},"id":"MKD"},{"arcs":[[[129]],[[130]]],"type":"MultiPolygon","properties":{"ct":[14.44,35.89]},"id":"MLT"},{"arcs":[[-218,9,-282,-244,294]],"type":"Polygon","properties":{"ct":[19.27,42.8]},"id":"MNE"},{"arcs":[[131]],"type":"Polygon","properties":{"ct":[-2.58,49.46]},"id":"GGY"},{"arcs":[[132]],"type":"Polygon","properties":{"ct":[-4.53,54.23]},"id":"IMN"},{"arcs":[[133]],"type":"Polygon","properties":{"ct":[-2.13,49.21]},"id":"JEY"},{"arcs":[[[-234,27,28,29,30,31,32,33,34,-260]],[[25,-233]]],"type":"MultiPolygon","properties":{"ct":[5.68,52.25]},"id":"NLD"},{"arcs":[[[-266,295,49,296]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]]],"type":"MultiPolygon","properties":{"ct":[14.03,64.25]},"id":"NOR"},{"arcs":[[-242,297,-285,298,-256,299,4]],"type":"Polygon","properties":{"ct":[24.98,45.84]},"id":"ROU"},{"arcs":[[-236,-262,38,300,-289,-248,301,302]],"type":"Polygon","properties":{"ct":[19.41,52.13]},"id":"POL"},{"arcs":[[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]]],"type":"MultiPolygon","properties":{"ct":[15.84,78.61]},"id":"SJM"},{"arcs":[[-215,-295,-243,-281,-286,-298,-241,-294]],"type":"Polygon","properties":{"ct":[20.8,44.04]},"id":"SRB"},{"arcs":[[-221,-237,-303,303,-283]],"type":"Polygon","properties":{"ct":[19.48,48.71]},"id":"SVK"},{"arcs":[[-223,-287,-279,13,-288]],"type":"Polygon","properties":{"ct":[14.82,46.11]},"id":"SVN"},{"arcs":[[[-265,48,-296]],[[170]],[[171]]],"type":"MultiPolygon","properties":{"ct":[16.73,62.85]},"id":"SWE"},{"arcs":[[-247,304,3,-300,-257,-299,-284,-304,-302]],"type":"Polygon","properties":{"ct":[31.4,49.01]},"id":"UKR"},{"arcs":[[[-219,-272,18,-276,20,305,22,-268]],[[174]],[[175]],[[176]]],"type":"MultiPolygon","properties":{"ct":[-3.55,40.39]},"id":"ESP"},{"arcs":[[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]]],"type":"MultiPolygon","properties":{"ct":[-16.53,28.28]},"id":"ESP"},{"arcs":[[-306,21]],"type":"Polygon","properties":{"ct":[-7.96,39.7]},"id":"PRT"},{"arcs":[[[186]],[[187]],[[188]]],"type":"MultiPolygon","properties":{"ct":[-17,32.75]},"id":"PRT"},{"arcs":[[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]]],"type":"MultiPolygon","properties":{"ct":[-25.48,37.79]},"id":"PRT"},{"arcs":[[[-301,39,40,41,42,-291,213,-290]],[[196]],[[197,306,198]],[[199]],[[200]],[[201,307]],[[-305,-251,-293,-263,46,-267,-297,50,308,211,309,-274,2]],[[202]],[[203]],[[204]],[[205]],[[206,310]],[[207]],[[208]],[[209]]],"type":"MultiPolygon","properties":{"ct":[44.76,58.05]},"id":"RUS"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[311]],"type":"Polygon"},{"arcs":[[312]],"type":"Polygon"},{"arcs":[[313]],"type":"Polygon"},{"arcs":[[314],[315]],"type":"Polygon"},{"arcs":[[[316,31,317]],[[28,318]],[[33,319]],[[320]],[[321]]],"type":"MultiPolygon"},{"arcs":[[322]],"type":"Polygon"},{"arcs":[[[323]],[[40,324]]],"type":"MultiPolygon"},{"arcs":[[[325]],[[326]],[[327]]],"type":"MultiPolygon"},{"arcs":[[328,329]],"type":"Polygon"},{"arcs":[[330]],"type":"Polygon"},{"arcs":[[331]],"type":"Polygon"},{"arcs":[[-329,332]],"type":"Polygon"},{"arcs":[[333]],"type":"Polygon"},{"arcs":[[334]],"type":"Polygon"},{"arcs":[[335]],"type":"Polygon"},{"arcs":[[336]],"type":"Polygon"},{"arcs":[[337]],"type":"Polygon"},{"arcs":[[338]],"type":"Polygon"},{"arcs":[[339]],"type":"Polygon"},{"arcs":[[340]],"type":"Polygon"},{"arcs":[[341]],"type":"Polygon"},{"arcs":[[342]],"type":"Polygon"},{"arcs":[[343]],"type":"Polygon"},{"arcs":[[344]],"type":"Polygon"},{"arcs":[[345]],"type":"Polygon"},{"arcs":[[346]],"type":"Polygon"},{"arcs":[[347]],"type":"Polygon"},{"arcs":[[348]],"type":"Polygon"},{"arcs":[[349]],"type":"Polygon"},{"arcs":[[350]],"type":"Polygon"},{"arcs":[[351]],"type":"Polygon"},{"arcs":[[352]],"type":"Polygon"},{"arcs":[[353]],"type":"Polygon"},{"arcs":[[354]],"type":"Polygon"},{"arcs":[[355]],"type":"Polygon"},{"arcs":[[356]],"type":"Polygon"},{"arcs":[[357]],"type":"Polygon"},{"arcs":[[358]],"type":"Polygon"},{"arcs":[[359]],"type":"Polygon"},{"arcs":[[360]],"type":"Polygon"},{"arcs":[[361]],"type":"Polygon"},{"arcs":[[362]],"type":"Polygon"},{"arcs":[[363]],"type":"Polygon"},{"arcs":[[364]],"type":"Polygon"},{"arcs":[[365]],"type":"Polygon"},{"arcs":[[366]],"type":"Polygon"},{"arcs":[[367],[368],[369],[370],[371],[372]],"type":"Polygon"},{"arcs":[[373]],"type":"Polygon"},{"arcs":[[374]],"type":"Polygon"},{"arcs":[[375]],"type":"Polygon"},{"arcs":[[376]],"type":"Polygon"},{"arcs":[[377]],"type":"Polygon"},{"arcs":[[378]],"type":"Polygon"},{"arcs":[[379]],"type":"Polygon"},{"arcs":[[380,381]],"type":"Polygon"},{"arcs":[[382,-382]],"type":"Polygon"},{"arcs":[[383]],"type":"Polygon"},{"arcs":[[384]],"type":"Polygon"},{"arcs":[[385]],"type":"Polygon"},{"arcs":[[386]],"type":"Polygon"},{"arcs":[[387]],"type":"Polygon"},{"arcs":[[388]],"type":"Polygon"},{"arcs":[[389]],"type":"Polygon"},{"arcs":[[390]],"type":"Polygon"},{"arcs":[[391]],"type":"Polygon"},{"arcs":[[392]],"type":"Polygon"},{"arcs":[[393]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[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,308,211,309,274,1,2,3,4,5,237,277,7],[212,213]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100,101]],[[102]],[[103]],[[104]],[[105]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[124]],[[126]],[[127]],[[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]],[[170]],[[171]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197,306,198]],[[199]],[[200]],[[201,307]],[[202]],[[203]],[[204]],[[205]],[[206,310]],[[207]],[[208]],[[209]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-207,394,-202,395,-198,-199,396,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,397,-117,398,-116,399,-115,400],[-206],[-205],[-204],[-203],[-208],[-209],[-210],[-149],[-161],[-146],[-147],[-150],[-159],[-160],[-148],[-162],[-153],[-143],[-152],[-142],[-201],[-200],[-197],[-137],[-139],[-140],[-141],[-144],[-151],[-157],[-158],[-163],[-164],[-165],[-166],[-167],[-154],[-155],[-156],[-58],[-59],[-172],[-171],[-55],[-62],[-78],[-77],[-76],[-80],[-79],[-81],[-135],[-136],[-138],[-111],[-127],[-176],[-175],[-84],[-98],[-83],[-177],[-128],[-53],[-60],[-61],[-63],[-54],[-56],[-57],[-113],[-108],[-109],[-110],[-114],[-112],[-75],[-173],[-131],[-130],[-72],[-73],[-74],[-65],[-66],[-71],[-68],[-69],[-70],[-67],[-170],[-169],[-168],[-107],[-184],[-182],[-180],[-178],[-190],[-191],[-183],[-181],[-179],[-193],[-194],[-195],[-196],[-192],[-106],[-105],[-103],[-102,-101],[-100],[-99],[-132],[-104],[-133],[-189],[-134],[-188],[-186],[-187],[-185],[-145],[-124],[-90],[-125],[-86],[-91],[-87],[-89],[-88],[-85],[-93],[-96],[-95],[-97],[-92],[-94],[-118],[-119],[-121],[-120],[-122],[-123]],[[401,-52],[-174],[-64],[-126],[-129],[-82]],[[-212,-211]],[[-214,-213]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[402]},{"type":"LineString","arcs":[403]},{"type":"MultiLineString","arcs":[[404,405],[406],[407],[408]]},{"type":"LineString","arcs":[409]},{"type":"MultiLineString","arcs":[[410],[411],[412],[413]]},{"type":"LineString","arcs":[414,415]},{"type":"LineString","arcs":[416]},{"type":"LineString","arcs":[417]},{"type":"MultiLineString","arcs":[[418],[419]]},{"type":"LineString","arcs":[420]},{"type":"LineString","arcs":[421]},{"type":"LineString","arcs":[422]},{"type":"MultiLineString","arcs":[[423],[424]]},{"type":"LineString","arcs":[425]},{"type":"LineString","arcs":[426]},{"type":"MultiLineString","arcs":[[427],[428,429],[430],[431,432],[433],[434],[435,436]]},{"type":"MultiLineString","arcs":[[437],[438]]},{"type":"MultiLineString","arcs":[[439],[440]]},{"type":"LineString","arcs":[441]},{"type":"LineString","arcs":[442,443]},{"type":"LineString","arcs":[444,445]},{"type":"LineString","arcs":[446,447]},{"type":"MultiLineString","arcs":[[448],[449],[450],[451],[452]]},{"type":"LineString","arcs":[453,454,455,456,457,458,459,460]},{"type":"LineString","arcs":[461]},{"type":"LineString","arcs":[462]},{"type":"MultiLineString","arcs":[[463],[464]]},{"type":"MultiLineString","arcs":[[465],[466],[467],[468],[469]]},{"type":"MultiLineString","arcs":[[470],[471],[472]]},{"type":"MultiLineString","arcs":[[473],[474]]},{"type":"LineString","arcs":[475]},{"type":"LineString","arcs":[476]},{"type":"LineString","arcs":[477]},{"type":"MultiLineString","arcs":[[478],[479],[480]]},{"type":"LineString","arcs":[481]},{"type":"LineString","arcs":[482]},{"type":"LineString","arcs":[483]},{"type":"LineString","arcs":[484]},{"type":"MultiLineString","arcs":[[485],[486],[487],[488]]},{"type":"MultiLineString","arcs":[[489],[490]]},{"type":"LineString","arcs":[491]},{"type":"LineString","arcs":[492]},{"type":"LineString","arcs":[493]},{"type":"LineString","arcs":[494]},{"type":"LineString","arcs":[495]},{"type":"MultiLineString","arcs":[[496],[497],[498],[499],[500]]},{"type":"LineString","arcs":[501]},{"type":"MultiLineString","arcs":[[502],[503],[504]]},{"type":"LineString","arcs":[505]},{"type":"LineString","arcs":[506,507]},{"type":"MultiLineString","arcs":[[508],[509],[510]]},{"type":"LineString","arcs":[511]},{"type":"LineString","arcs":[512]},{"type":"MultiLineString","arcs":[[513],[514]]},{"type":"LineString","arcs":[515,516]},{"type":"LineString","arcs":[517]},{"type":"MultiLineString","arcs":[[518],[519],[520]]},{"type":"LineString","arcs":[521]},{"type":"LineString","arcs":[522]},{"type":"LineString","arcs":[523]},{"type":"MultiLineString","arcs":[[524],[525]]},{"type":"MultiLineString","arcs":[[526],[527],[528],[529]]},{"type":"MultiLineString","arcs":[[530],[531]]},{"type":"MultiLineString","arcs":[[532],[533],[534],[535],[536,537],[538],[539],[540],[541]]},{"type":"MultiLineString","arcs":[[542],[543],[544]]},{"type":"MultiLineString","arcs":[[545],[546]]},{"type":"MultiLineString","arcs":[[547],[548]]},{"type":"LineString","arcs":[549]},{"type":"LineString","arcs":[550]},{"type":"MultiLineString","arcs":[[551],[552]]},{"type":"LineString","arcs":[553,554]},{"type":"LineString","arcs":[555]},{"type":"LineString","arcs":[556]},{"type":"LineString","arcs":[557,558]},{"type":"LineString","arcs":[559]},{"type":"LineString","arcs":[560]},{"type":"LineString","arcs":[561]},{"type":"LineString","arcs":[562,563,564]},{"type":"LineString","arcs":[565]},{"type":"LineString","arcs":[566]},{"type":"LineString","arcs":[567]},{"type":"LineString","arcs":[568]},{"type":"LineString","arcs":[569]},{"type":"LineString","arcs":[570]},{"type":"LineString","arcs":[571]},{"type":"MultiLineString","arcs":[[572,573,574],[575]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/north-america_110m.json b/topojson/dist/north-america_110m.json new file mode 100644 index 00000000000..44040f71219 --- /dev/null +++ b/topojson/dist/north-america_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[11097,0],[6,14],[5,101],[-8,27],[6,36],[41,38],[55,22],[24,51],[19,17],[-13,34],[16,54],[21,-10],[3,34],[-15,18],[-5,36],[22,79],[80,33],[29,122],[46,100],[2,41],[-10,41],[-26,-13],[-10,58],[20,50],[3,38],[-8,168],[5,246],[-35,90],[-26,50]],[[11344,1575],[-33,70],[-29,114],[30,62],[-21,11],[-23,57],[-38,57],[-27,20],[-37,-2],[-34,40],[-1,34],[30,65],[92,-43],[18,-2],[70,-70],[40,-86],[21,-9]],[[11402,1893],[57,-128],[10,67],[-7,22],[63,112],[20,70],[26,21],[27,54],[3,119],[7,76],[73,111],[59,-22],[12,20],[9,57],[36,-15],[59,4],[57,86],[34,23],[36,72],[53,76],[43,-26],[17,-70],[-22,-37],[-13,-26],[-55,-26],[1,-62],[22,-67],[14,-81],[-6,-46],[-33,-72],[-17,-56],[31,-136],[13,-36],[24,-3],[29,25],[19,46],[4,74],[-6,27],[-42,120],[-10,83],[20,44],[146,103],[18,3],[-6,48],[-32,-11],[-6,65],[11,41],[19,20],[14,-16],[35,-146],[35,15],[50,-24],[45,-53],[14,-50],[0,-65],[17,-36],[23,-6],[106,32],[84,6],[33,-77],[11,-13],[82,-34],[26,4],[31,35],[63,44],[34,44],[105,22],[34,-5],[64,7],[-9,-22],[-70,-21],[-13,-36],[38,-126],[17,45],[20,-16],[22,-42],[18,7],[29,-19],[20,-27],[21,-1],[27,-54],[-20,-27],[-6,-81],[11,-20],[-8,-36],[49,-5],[22,21],[39,-22],[97,-111],[54,-104],[19,-58],[-2,-108],[21,20],[28,-15],[66,-109],[24,-30],[10,-81],[22,41],[70,-21],[43,-2],[37,19],[26,-5],[61,6],[87,-35],[2,-45],[20,33],[38,-46],[52,-21],[122,-182],[34,-98],[8,47],[38,-68],[9,-36],[13,-177],[37,-201],[22,-80],[21,-1],[37,-30],[8,-56],[-12,-76],[-49,-83],[-12,-43],[-35,-68],[-30,-40]],[[11314,5497],[21,-34],[22,-67],[0,-64],[-28,-30],[-32,43],[-6,39],[16,36],[7,77]],[[11882,4610],[-14,-36],[-54,-11],[1,40],[27,23],[40,-16]],[[11629,5168],[53,-151],[-32,47],[-21,104]],[[11395,5849],[42,-57],[-14,-131],[-24,17],[19,62],[9,56],[-32,53]],[[10186,4033],[21,-26],[-2,-78],[-9,-46],[-8,-108],[8,-70],[-12,-75],[-18,-64],[-28,-31],[-22,-68]],[[10116,3467],[46,-4],[33,-32]],[[10195,3431],[14,-4],[20,34],[21,10],[37,-21],[63,-10],[43,4],[49,25],[124,8],[53,-26],[119,-147],[21,-33]],[[10759,3271],[-18,-49],[8,-60],[-27,-147],[-9,-122],[7,-167],[-14,-29],[-9,-83],[-3,-91],[-15,-42],[8,-66],[15,-30]],[[10702,2385],[19,-89],[14,-42],[63,-139],[27,-27]],[[10825,2088],[21,-34],[2,-45],[12,-40],[19,-21],[51,-7],[12,-22],[22,-4],[37,13],[62,66],[42,33],[21,-35],[18,-6],[12,-28],[-20,-39],[1,-40],[-47,-61],[-20,-7],[-4,-67],[37,-77],[4,-42],[-46,-46],[-31,-7],[-24,13],[-14,135],[-16,-3],[0,-41],[-32,15],[-29,97],[-50,11],[-9,20],[-41,-3],[-28,-62]],[[10787,1754],[-30,128],[-14,-19],[-1,-35],[-26,14],[-20,31],[13,54],[-3,47],[-36,58],[-52,44],[-24,48],[-9,44],[-58,67],[12,-55],[27,-39],[-28,-50],[-45,64],[-27,50],[-8,52],[13,41],[6,119]],[[10477,2417],[-91,155],[-27,80],[-85,139],[5,34],[19,8]],[[10298,2833],[-9,27],[1,62],[-41,-8],[-8,11]],[[10241,2925],[4,-26],[-23,-27],[-60,5],[-31,13],[-53,51],[-23,4],[-42,26],[-29,28]],[[9984,2999],[-51,37],[-53,0],[-27,8],[-51,50],[-51,77]],[[9751,3171],[-82,159],[-55,94],[-42,55],[-43,35],[-54,23],[-49,-8],[-49,-51],[-74,-56],[-26,-6],[-44,22],[-35,36],[-77,30],[-53,44],[-40,54],[-52,25],[-44,13],[-30,31],[-128,95],[-75,109],[-44,48],[-26,-2],[-43,20],[-85,57],[-24,71],[-46,63],[-101,100],[-52,129],[-22,86],[10,20],[30,8],[15,202],[-28,43],[-19,64],[-7,91],[-16,67],[-64,116],[-55,143],[-36,60],[-82,109],[-26,75],[-28,64],[-71,55],[-35,38],[-6,59],[21,81],[-3,48],[-31,33],[-108,130],[-7,19],[-2,89],[-22,34],[-19,5],[-42,57],[-49,90],[-75,210],[-62,220],[-3,91],[-62,94],[-38,27],[-22,-17],[-43,50],[-28,20],[-10,-147],[15,-42],[14,-106],[-3,-62],[30,-81],[37,-42],[44,-70],[11,-66],[71,-116],[7,-24],[10,-103],[7,-26],[51,-95],[27,-64],[45,-70],[24,-95],[8,-106],[54,-162],[17,-153],[13,-31],[20,-7],[27,13],[34,-53],[38,-94],[7,-39],[-14,-61],[-39,-49],[-13,5],[-46,157],[-66,104],[-56,57],[-18,-1],[-41,41],[-21,54],[15,132],[1,77],[-10,53],[-16,37],[-79,94],[-138,120],[-42,80],[-40,57],[58,1],[23,22],[26,73],[2,57],[-12,33],[-80,145],[-91,105],[-37,187],[-31,108],[-27,73],[-29,115],[-25,68],[-10,53]],[[6985,7098],[-17,104]],[[6968,7202],[-25,70]],[[6943,7272],[-61,80],[-40,40]],[[6842,7392],[-94,72]],[[6748,7464],[-40,45]],[[6708,7509],[-95,11],[-15,19],[-3,104]],[[6595,7643],[-43,97]],[[6552,7740],[-86,165],[-22,158]],[[6444,8063],[-18,5]],[[6426,8068],[-28,51],[-12,82]],[[6386,8201],[39,17],[-22,52]],[[6403,8270],[-36,-1],[-30,46],[-29,84]],[[6308,8399],[-54,88],[-8,71],[1,73]],[[6247,8631],[-8,51],[-27,59]],[[6212,8741],[-31,43],[-5,39],[32,119]],[[6208,8942],[2,133]],[[6210,9075],[-49,267],[35,162],[9,76],[19,269],[3,92],[-6,176]],[[6221,10117],[3,74],[14,55]],[[6238,10246],[-33,12],[-31,159],[-27,48],[-7,89],[99,-48]],[[6239,10506],[96,-13],[25,4],[11,-55],[20,-26],[-7,-63],[-33,-70]],[[6351,10283],[18,-6]],[[6369,10277],[38,53]],[[6407,10330],[-10,49],[19,100]],[[6416,10479],[-25,95],[3,34]],[[6394,10608],[-41,69],[6,14]],[[6359,10691],[-36,0],[-16,52],[13,15],[-10,69],[-39,-52],[-38,20],[-26,66],[-34,-2],[-34,55],[24,81],[-48,-14],[-47,33],[-83,0],[-18,8],[23,58],[-12,14],[-67,26],[-29,-33],[-24,21],[-9,61],[-24,32],[-35,73],[1,49],[13,10],[42,60],[26,20],[-9,49],[-70,-72],[-27,75],[-9,64],[-35,18],[-7,44],[-37,43],[38,18],[-32,52],[11,60],[-58,-65],[-2,-54],[-36,-35],[-76,132],[27,10],[-1,60],[-42,89],[27,34],[22,59],[-12,49]],[[5544,12043],[-21,-51],[-50,-48],[-23,15],[-13,97]],[[5437,12056],[-19,30]],[[5418,12086],[-49,-14],[-57,55],[-5,34],[65,100]],[[5372,12261],[-60,-9],[7,-45],[-65,35],[18,46],[35,20]],[[5307,12308],[-15,39],[-44,52],[-10,39],[-60,27],[-31,107],[4,38],[-50,84],[-60,30],[-63,81],[14,-85],[-27,-14],[-19,41],[-139,-34],[-96,71],[-83,102],[-108,61],[-60,41],[40,35],[-31,32],[-61,-32],[-61,10],[-101,51]],[[4246,13084],[-102,26]],[[4144,13110],[-123,-19],[-35,2],[-28,33]],[[3958,13126],[-50,11],[-32,26],[-70,27],[9,44],[-86,5],[-33,51],[-76,18],[-76,-57]],[[3544,13251],[12,-72],[-18,-81]],[[3538,13098],[-58,-24],[-85,22]],[[3395,13096],[-100,-129],[-44,-4]],[[3251,12963],[-40,-39],[-72,-18],[-15,44],[64,48]],[[3188,12998],[-63,42],[67,167]],[[3192,13207],[10,53]],[[3202,13260],[83,53],[56,-22]],[[3341,13291],[23,20],[-36,51]],[[3328,13362],[-71,4]],[[3257,13366],[-89,-55]],[[3168,13311],[-90,-131]],[[3078,13180],[-50,-40]],[[3028,13140],[-14,-77],[-20,-39],[-120,-71]],[[2874,12953],[-3,-76],[52,8]],[[2923,12885],[44,-44],[-18,-33],[-62,-47]],[[2887,12761],[-43,-80],[-48,-23]],[[2796,12658],[-117,-104],[-67,-46]],[[2612,12508],[17,-32],[-25,-37]],[[2604,12439],[-89,-36]],[[2515,12403],[-67,-78],[-36,-3]],[[2412,12322],[-10,-37],[-27,-24],[-13,-49],[-96,-36],[-24,10]],[[2242,12186],[-69,-62],[-89,-47],[-29,1]],[[2055,12078],[16,54],[-25,2],[-33,-83]],[[2013,12051],[-38,-45],[-93,-22]],[[1882,11984],[-35,-16],[8,54],[75,57]],[[1930,12079],[36,62],[57,54]],[[2023,12195],[57,19],[68,-63]],[[2148,12151],[22,29],[-12,34]],[[2158,12214],[25,65],[54,51],[103,68]],[[2340,12398],[27,24],[51,83],[62,53],[16,155]],[[2496,12713],[13,54],[39,45]],[[2548,12812],[-21,24],[-102,-49],[-38,52]],[[2387,12839],[-38,-27]],[[2349,12812],[17,-52],[-40,-14],[-62,111]],[[2264,12857],[-36,-28]],[[2228,12829],[-64,45]],[[2164,12874],[-137,-94],[-9,101]],[[2018,12881],[-25,50],[35,59]],[[2028,12990],[-70,137],[-28,-43]],[[1930,13084],[-59,-28],[-61,-11],[-48,11],[-3,26],[-61,72]],[[1698,13154],[-70,62],[53,56],[-15,48],[-40,12]],[[1626,13332],[-53,44],[-25,48]],[[1548,13424],[42,130],[56,77],[44,24]],[[1690,13655],[-3,70],[45,66],[41,10],[79,-49]],[[1852,13752],[74,42]],[[1926,13794],[37,51]],[[1963,13845],[131,9]],[[2094,13854],[42,58]],[[2136,13912],[-20,97],[-31,35]],[[2085,14044],[49,54]],[[2134,14098],[-40,66]],[[2094,14164],[-118,-60]],[[1976,14104],[-44,-41]],[[1932,14063],[-110,22]],[[1822,14085],[-79,0]],[[1743,14085],[-87,-24],[-121,27],[-59,116]],[[1476,14204],[36,43],[-99,20]],[[1413,14267],[-85,38],[15,38],[224,123],[166,60],[72,-7]],[[1805,14519],[-24,-83]],[[1781,14436],[39,-25]],[[1820,14411],[100,4],[92,-10]],[[2012,14405],[44,51]],[[2056,14456],[42,14],[-86,86],[20,47],[-13,25],[-91,-9],[-122,31],[-13,56],[-33,47],[-131,87]],[[1629,14840],[-144,69]],[[1485,14909],[29,19],[20,76]],[[1534,15004],[217,34]],[[1751,15038],[76,43],[41,50]],[[1868,15131],[27,108],[53,61],[66,43]],[[2014,15343],[65,-7],[107,49]],[[2186,15385],[75,60],[73,-7]],[[2334,15438],[128,21]],[[2462,15459],[46,26],[95,82],[117,-61]],[[2720,15506],[49,17],[55,-34],[10,-37],[161,18],[81,-29]],[[3076,15441],[-5,-39],[70,-36],[71,-7]],[[3212,15359],[176,24],[92,-23],[91,-37]],[[3571,15323],[71,-15]],[[3642,15308],[103,2],[99,-32]],[[3844,15278],[79,-14],[111,37]],[[4034,15301],[62,-4],[191,-92]],[[4287,15205],[46,-11]],[[4333,15194],[179,-23],[87,-64],[193,-79],[96,-6],[40,11],[-40,64],[90,16],[17,43],[46,-3],[42,24],[66,-41],[55,4],[84,73],[30,-10],[130,82],[45,11],[109,-27],[-106,-49],[-48,-47],[2,-95],[72,125],[93,30],[60,-38],[68,64],[12,90],[20,47],[87,-64],[61,-118],[83,-74],[43,-16],[61,118],[69,31],[-13,-62],[43,-15],[-46,-54],[18,-15],[94,7],[37,25],[9,57],[40,13],[116,-2],[77,-28],[82,-58],[189,-45],[81,-44],[185,-36],[41,38],[96,-33],[86,-66],[18,-67],[-90,3],[-39,-15],[1,-79],[166,-29],[121,-3],[199,33],[70,39],[49,-62],[71,1],[16,-40],[107,-58],[9,-41],[-33,-13],[4,-42],[46,-20],[4,55],[66,-34],[-19,63],[-44,60],[-18,54],[35,88],[88,19],[32,42],[82,23],[4,43],[-68,-16],[-51,-38],[-72,-14],[-35,-33],[-70,-10],[-55,28],[51,75],[112,20],[123,50],[48,-9],[42,-32],[-11,-72],[71,-37],[49,-46],[103,19],[49,-47],[106,-48],[77,5],[146,31],[104,-28],[78,14],[-6,24],[37,93],[99,42],[27,-50],[73,-24],[46,9],[-18,-110],[-30,-41],[34,-63],[29,16],[45,-34],[35,25],[-48,118],[22,59],[73,-4],[81,89],[60,23],[-23,91],[-47,-48],[-57,4],[49,66],[-12,53],[65,-21],[37,33],[-14,28],[-89,-14],[-35,41],[-36,-11],[-101,42],[-76,79],[-5,33],[40,74],[-41,34],[12,105],[31,30],[71,-22],[20,47],[-60,20],[70,29],[12,47],[75,9],[170,-141],[8,-101],[66,-54],[30,-60],[55,-47],[-146,-95],[114,-48],[52,12],[78,-25],[-63,-29],[63,-53],[17,-62],[4,-80],[39,-33],[33,62],[7,94],[41,56],[41,6],[105,-91],[30,-93],[-58,-22],[-6,-68],[26,-67],[117,-105],[39,43],[73,125],[21,20],[20,125],[71,38],[17,35],[-64,72],[1,82],[27,29],[77,10],[123,-42],[112,-8],[-17,-37],[36,-39],[98,-18],[-3,-70],[17,-55],[-78,-47],[-66,21],[43,-110],[105,-117],[-29,-101],[-57,-19],[-15,-28],[-121,-84],[-34,-4],[-56,86],[-26,-18],[65,-106],[-16,-16],[-75,57],[-19,-41],[-63,10],[-38,66],[-125,-8],[5,-44],[83,-28],[-33,-55],[-101,-122],[-29,-15],[-72,5],[-87,75],[-117,67],[-21,-39],[47,-31],[68,-76],[216,-19],[14,-24],[-40,-71],[-51,-61],[-40,-83],[-49,-23],[-101,-1],[-82,-16],[14,-44],[-18,-31],[-72,-10],[-95,40],[36,-56],[43,-4],[29,-31],[11,-67],[-72,-41],[-118,1],[38,-69],[-66,17],[-13,-67],[-46,-38],[-17,-75],[-47,-42],[-67,-41],[27,-24],[-3,-34],[-49,-123],[-29,-146],[11,-118],[-25,-60],[52,-72],[129,1],[21,-38],[36,-165],[38,-84],[2,-42],[-17,-43],[46,-4],[131,49],[47,-10],[69,-47],[116,-34],[105,-85],[40,-102],[113,-38],[66,-33],[98,-80],[45,-15],[81,12],[186,-39],[10,-76],[-11,-46],[0,-96],[21,-64],[-18,-188],[63,-85],[21,-56],[96,-110],[26,-85],[61,-52],[64,109],[30,-36],[28,-7],[-21,72],[43,63],[9,83],[-30,60],[5,20],[-23,71],[-9,82],[-7,137],[-44,54],[-11,65],[132,67],[64,52],[78,90],[42,74],[24,91],[-7,166],[-35,117],[-33,64],[-35,42],[-50,28],[-63,74],[43,110],[33,56],[16,52],[42,32],[-34,110],[1,92],[-51,9],[9,42],[49,108],[-52,54],[-17,93],[10,46],[75,45],[46,-8],[124,-45],[99,-13],[38,-27],[90,70],[19,3],[68,-63],[29,-13],[70,-74],[69,-43],[-27,-14],[1,-39],[29,-36],[152,-41],[27,-44],[24,33],[27,-37],[-28,-21],[4,-89],[-15,-46],[21,-61],[-14,-66],[53,-69],[-3,-25],[-64,-20],[13,-70],[42,50],[84,8],[28,-47],[37,-32],[39,-96],[28,43],[85,48],[36,70],[28,-18],[59,86],[22,73],[-21,49],[43,48],[35,87],[41,-25],[1,-63],[32,-52],[50,-38],[-12,-23],[49,-33],[-3,-30],[55,-64],[-11,-58],[50,-15],[-5,-35],[19,-74],[47,-18],[12,-64],[-59,-29],[61,-30],[34,-40],[11,-39],[-30,-72],[-46,-44],[92,-62],[-5,-45],[31,-26],[49,-6],[21,-40],[10,-62],[65,-6],[33,-55],[59,-17],[0,-36],[108,-15],[63,-25],[-4,-40],[-87,-33],[-53,-40],[19,-24],[87,13],[42,17],[30,-71],[-32,-50],[86,18],[40,-21],[40,-40],[21,-58],[-30,-25],[19,-40],[-46,-64],[57,-11],[12,-24],[-30,-89],[-102,-104],[-97,-14],[-59,-39],[-25,10],[-59,-65],[-12,-43],[-79,-83],[-24,-40],[-174,-15],[-163,26],[-81,-2],[-193,-1],[-98,-12],[-48,-44],[-36,-55],[-7,-54],[-22,-44],[-77,-12],[-101,-108],[-61,-117],[-41,-104],[-30,-52],[-33,-25],[-86,-145],[89,64],[80,134],[39,82],[48,58],[66,57],[180,114],[54,24],[81,14],[65,-10],[48,-30],[34,-43],[-3,-82],[-59,-60],[-52,-44],[-25,-3],[-49,40],[-69,-23],[64,-36],[37,-61],[52,41],[48,-28],[-32,-90],[16,-119],[36,-111],[62,-10],[-3,-40],[71,-43],[71,-10],[26,-31],[43,38],[24,-27],[32,-2],[39,-29],[14,-55],[-62,-23],[-38,-33],[-76,-46],[-16,-20],[-44,6],[-34,-23],[-2,-38],[-34,7],[-5,31],[-39,-18],[-6,-46],[-71,-128],[-39,-13],[-6,-31],[-28,-9],[-25,65],[-31,-4],[-8,135],[28,44],[110,106],[63,42],[25,-23],[45,29],[-2,19],[-49,-1],[-80,-15],[4,23],[64,69],[-22,20],[-48,-60],[-98,-76],[-70,-21],[-69,-10]],[[12543,9834],[14,-59],[-96,-53]],[[12461,9722],[-18,-36],[-22,26],[-40,-31],[-27,15],[-54,-106],[-16,3]],[[12284,9593],[-32,-39],[-30,15]],[[12222,9569],[-21,-22]],[[12201,9547],[-70,-185]],[[12131,9362],[3,-46],[-29,-87]],[[12105,9229],[18,-5],[38,-104],[34,-16],[32,17]],[[12227,9121],[-5,-48],[-72,13]],[[12150,9086],[-59,-40],[-7,40]],[[12084,9086],[-17,20]],[[12067,9106],[-11,-80],[-164,-26]],[[11892,9000],[-76,-55]],[[11816,8945],[7,-20]],[[11823,8925],[146,30]],[[11969,8955],[41,-1],[-124,-79],[-103,-27],[-27,20]],[[11756,8868],[-9,-40],[22,-8]],[[11769,8820],[7,-46],[-11,-102],[-25,-68],[-47,-82],[-20,-3]],[[11673,8519],[-74,94]],[[11599,8613],[32,-124]],[[11631,8489],[24,-23],[4,-85],[-21,-85],[-46,-115],[-19,-70],[-21,30],[13,68],[25,50]],[[11590,8259],[-16,20],[-16,86]],[[11558,8365],[-20,-24],[-20,51],[8,34]],[[11526,8426],[-2,122],[-26,7],[-4,-96]],[[11494,8459],[3,-51]],[[11497,8408],[21,-86],[1,-111]],[[11519,8211],[-13,-9],[10,-93],[-23,-19],[7,-41],[26,13],[31,-21]],[[11557,8041],[14,-97],[-12,-47]],[[11559,7897],[-46,-24],[-38,28],[-2,-59],[99,5]],[[11572,7847],[11,-29],[-1,-49]],[[11582,7769],[-45,-60],[-37,-6],[-9,-46],[28,-37]],[[11519,7620],[-20,-43],[-69,-11]],[[11430,7566],[-52,-61]],[[11378,7505],[-64,-106],[-26,-3]],[[11288,7396],[-42,-29]],[[11246,7367],[-35,-62],[-9,-41],[-39,-57]],[[11163,7207],[-41,-76],[-40,-33],[-48,-65]],[[11034,7033],[-50,-112]],[[10984,6921],[-34,-155]],[[10950,6766],[-1,-90],[21,-180]],[[10970,6496],[32,-137]],[[11002,6359],[25,-76],[20,-79]],[[11047,6204],[6,-102]],[[11053,6102],[16,-62],[30,-145],[7,-49],[-14,-234],[-10,-2]],[[11082,5610],[-14,-89],[-16,-19]],[[11052,5502],[-62,-22],[-11,23]],[[10979,5503],[2,46],[-25,70],[-23,28],[-65,193]],[[10868,5840],[-10,-3],[-47,164]],[[10811,6001],[-18,78],[22,155]],[[10815,6234],[-19,128]],[[10796,6362],[-29,12],[-57,135]],[[10710,6509],[-47,58]],[[10663,6567],[-25,-2],[-25,-37]],[[10613,6528],[-32,-29],[-62,-22],[-10,55]],[[10509,6532],[-57,65]],[[10452,6597],[-44,28]],[[10408,6625],[-47,6]],[[10361,6631],[-131,-31],[9,24]],[[10239,6624],[-10,63],[-9,7],[-26,-67]],[[10194,6627],[-67,10]],[[10127,6637],[-49,-19]],[[10078,6618],[-62,-68]],[[10016,6550],[20,-35]],[[10036,6515],[32,10],[4,-28],[-38,-40]],[[10034,6457],[17,-39]],[[10051,6418],[37,-16],[14,-55],[-34,-30],[-9,52]],[[10059,6369],[-24,43],[-34,10],[-14,-37],[-39,14]],[[9948,6399],[-48,-44],[-30,25],[-20,49],[-55,79]],[[9795,6508],[-37,-29]],[[9758,6479],[-17,-36],[-39,15],[-64,38],[-43,-5]],[[9595,6491],[-47,-18]],[[9548,6473],[-56,-41],[-18,62]],[[9474,6494],[-31,-13]],[[9443,6481],[9,-92],[-52,-91],[-106,-98]],[[9294,6200],[-16,-19],[-24,5]],[[9254,6186],[-34,-33],[-29,-70],[-4,-38],[-21,-92],[2,-105],[7,-64]],[[9175,5784],[21,-94],[-13,-33]],[[9183,5657],[22,6],[-4,-61],[-36,-132],[-19,-124],[-7,-114],[-3,-192],[-10,-140],[12,-90],[25,-69],[22,-157],[14,-68],[82,-183],[23,-126],[39,-93],[28,-26],[63,-21],[33,-32],[21,-66],[13,-9],[36,12],[41,26],[75,26],[50,36],[75,19],[32,0],[65,75],[42,64],[31,135],[-3,56],[8,132],[12,47],[53,49],[125,43],[40,23],[52,4],[70,-32],[34,9],[20,-76],[-13,-58],[-42,-83],[-25,-87],[-2,-58],[-28,-32],[17,-57],[-10,-43],[15,-20],[-35,-202],[-20,147],[-30,-82]],[[14482,0],[4,17],[24,-7],[-1,-10]],[[14461,14],[-13,-14]],[[14433,0],[-14,10],[-3,40],[64,28],[6,-20],[-25,-44]],[[14409,62],[-26,-13],[13,57],[13,-44]],[[14415,75],[-3,56],[26,-16],[-23,-40]],[[14412,423],[-17,-20],[-10,39],[20,28],[7,-47]],[[10355,15489],[107,29],[70,6],[47,33],[28,75],[-84,7],[-54,61],[32,107],[-23,68],[9,43],[53,76],[268,90],[124,1],[49,-77],[48,-42],[43,-104],[-19,-67],[-47,-67],[64,-9],[46,77],[66,1],[52,-38],[68,86],[88,29],[80,-7],[49,-25],[127,-28],[28,-52],[-34,-29],[109,-8],[2,-54],[-96,-28],[39,-38],[53,45],[73,-3],[-57,-56],[114,-36],[54,71],[123,-34],[39,-44],[-35,-42],[-70,1],[-26,-41],[29,-22],[80,21],[59,50],[33,-41],[-5,-42],[151,9],[81,-37],[-2,-50],[-125,-36],[144,-1],[29,27],[50,-33],[54,-97],[-86,10],[-64,-47],[70,-21],[68,0],[62,-44],[-11,-28],[-79,7],[-93,29],[-13,-27],[71,-29],[-29,-54],[-144,15],[73,-46],[154,-55],[71,-64],[52,-24],[165,-5],[69,-80],[9,-34],[-53,-32],[76,-17],[58,-27],[26,-38],[58,-5],[55,16],[66,-47],[-9,-95],[-48,-10],[-56,21],[-17,-38],[32,-91],[-40,-2],[2,-46],[-71,29],[-46,-51],[40,-51],[-19,-77],[-70,73],[-68,4],[-25,67],[-52,30],[14,66],[-58,-10],[-55,72],[-91,42],[-44,-58],[45,-34],[-13,-26],[-83,22],[34,-85],[49,-13],[11,-84],[104,-90],[76,-3],[-15,-55],[72,-7],[-40,-46],[68,-75],[-10,-33],[44,-21],[-12,-77],[-57,16],[58,-109],[-86,-14],[-123,55],[-31,3],[-122,143],[0,-60],[-72,56],[-28,-39],[72,-88],[27,-6],[68,-52],[31,-50],[29,-2],[73,-93],[10,-76],[-56,5],[-25,22],[-92,38],[-112,17],[-76,43],[-34,54],[-37,32],[-34,-23],[-93,62],[-70,25],[-12,64],[52,22],[-61,55],[-70,4],[-45,79],[-57,38],[2,35],[-27,30],[-45,-12],[-16,34],[-56,-67],[-77,15],[-115,-31],[-40,-22],[-114,18],[-45,53],[2,83],[53,35],[28,75],[169,-42],[42,1],[181,56],[18,52],[-77,67],[6,30],[48,28],[96,83],[18,39],[77,76],[-63,134],[-22,66],[-40,28],[-47,4],[-3,41],[-76,19],[-35,74],[-81,5],[-88,-56],[-40,7],[5,59],[113,17],[2,33],[-66,43],[-112,48],[46,22],[-53,30],[-48,-12],[5,76],[-24,19],[-128,18],[39,-79],[-17,-18],[-89,-7],[-43,33],[-129,-5],[-25,-20],[-105,-15],[-79,40],[-76,-12],[-215,33],[-25,-19],[-69,44],[-8,31],[-150,-26],[-112,75],[-36,40],[-9,52],[67,8],[84,-25],[89,19],[-95,47],[-179,16],[-37,31],[13,159],[-10,29],[66,97],[2,52],[39,61],[80,62],[73,36],[109,26],[157,-7],[28,-34],[-104,-63],[-78,-105],[0,-62],[30,-58],[-5,-72],[78,-86],[87,-58],[-211,-78]],[[7269,15841],[99,11],[68,76],[112,-26],[97,-37],[-24,-53],[88,20],[55,-19],[30,52],[-74,28],[67,27],[127,-80],[21,-28],[37,-163],[45,-27],[56,70],[-48,57],[-6,52],[-47,149],[25,51],[155,-27],[120,-68],[95,-237],[36,-44],[2,-54],[-23,-68],[124,-101],[92,-23],[119,-76],[63,3],[3,-105],[-85,11],[-37,41],[-43,-25],[2,-65],[49,-8],[27,-64],[-9,-37],[-99,-21],[-33,-22],[-237,20],[27,39],[-114,20],[-44,20],[-31,52],[-90,-109],[-125,-23],[-45,-31],[-106,-27],[-304,-30],[-59,3],[-54,66],[4,84],[-66,19],[-110,-6],[-74,9],[-66,24],[-83,75],[-23,52],[46,30],[271,43],[203,-22],[139,27],[-130,46],[-150,35],[-56,-14],[-162,-14],[-36,11],[-138,-8],[-76,54],[-14,43],[59,27],[190,44],[-3,13],[-140,6],[-87,-16],[-17,19],[68,43],[-132,-8],[-25,50],[89,75],[-25,59],[144,99],[290,97],[73,-39],[5,-81],[-72,-46]],[[12622,18084],[174,3],[208,-88],[180,-16],[13,-44],[-320,-102],[-129,-2],[-29,-55],[94,-25],[-466,-167],[-282,-193],[-139,-14],[-80,-37],[-410,-50],[288,-9],[-13,-47],[-127,-9],[113,-39],[-1,-44],[-64,-16],[33,-41],[-81,-25],[8,-40],[-156,-25],[-158,12],[68,-88],[-56,-44],[-104,-16],[34,-41],[-47,-40],[75,-22],[75,43],[32,-80],[-92,-26],[-130,-57],[-132,-28],[25,60],[-148,21],[-21,-27],[-155,7],[-79,-24],[-94,-6],[-94,17],[-172,-6],[-208,45],[-4,67],[114,48],[164,23],[-131,110],[11,31],[91,17],[142,-40],[38,-60],[116,-13],[-74,65],[-15,43],[-61,41],[-173,16],[17,76],[95,69],[174,21],[92,62],[-112,101],[-146,29],[-5,113],[295,-9],[272,-119],[-14,53],[-80,20],[-106,62],[301,30],[160,33],[-49,50],[-162,-42],[-241,-25],[-326,-2],[-234,33],[-140,50],[-96,57],[4,45],[84,54],[-236,23],[122,32],[150,-4],[25,33],[231,43],[170,15],[-43,40],[345,-39],[51,84],[67,30],[250,32],[225,-17],[45,47],[273,-14],[195,14],[340,3],[-8,-23],[364,-23]],[[13815,11260],[22,-7],[-38,-80],[-5,-55],[-89,-185],[-31,-80],[11,-28],[35,57],[45,48],[51,-28],[-38,-103],[32,-22],[58,3],[37,-31],[30,56],[15,-46],[47,34],[60,-48],[-53,-80],[4,-68],[27,-41],[20,35],[43,32],[12,-20],[-12,-42],[-36,-29],[-43,-17],[15,-37],[-17,-51],[6,-36],[23,-23],[29,104],[45,20],[-27,-67],[-12,-47],[68,-18],[-21,-53],[-10,-71],[-33,-61],[-38,-6],[-10,22],[12,88],[-50,-60],[-20,25],[38,100],[-19,84],[-26,20],[-23,-87],[-19,-25],[-25,6],[-25,-42],[-20,-61],[-63,-15],[-9,41],[65,54],[50,54],[-52,26],[-30,-32],[-37,11],[8,53],[-45,-40],[-71,-16],[-49,15],[-114,18],[-43,-23],[-42,-6],[-20,13],[-10,62],[108,117],[-34,19],[43,112],[26,-10],[12,120],[77,231],[38,69],[38,95],[68,44],[41,9]],[[6564,16238],[97,-34],[132,-23],[87,24],[77,-12],[201,-124],[32,-38],[-59,-32],[-97,-29],[-270,-122],[-22,-56],[-95,-42],[-23,-109],[-19,-38],[-86,-30],[-73,-9],[-98,-56],[-59,25],[-30,66],[-43,43],[-162,60],[-22,41],[43,70],[39,18],[-8,60],[67,23],[-39,42],[102,124],[-36,38],[-42,87],[79,29],[285,29],[42,-25]],[[9299,16808],[69,5],[139,-32],[88,-5],[65,-60],[76,-5],[101,20],[95,-27],[-8,-25],[154,-33],[-51,-29],[-123,2],[249,-111],[46,-34],[117,16],[75,-42],[34,24],[198,44],[48,24],[121,-8],[59,13],[137,-16],[14,-30],[78,1],[74,-40],[15,-35],[-85,-49],[78,-12],[-82,-93],[-198,-20],[-173,12],[-144,-10],[-150,4],[-182,-10],[-68,6],[9,56],[-76,-9],[-15,-29],[-82,-11],[-102,33],[-66,-9],[-55,27],[-48,143],[46,40],[-12,40],[-108,126],[-72,-20],[-112,6],[-118,21],[-62,80],[-57,34],[64,27]],[[10541,14284],[44,-39],[28,40],[31,-41],[96,-44],[60,-60],[48,-10],[70,-66],[-16,-85],[102,9],[84,-74],[-83,-69],[-151,42],[-5,43],[-79,43],[-64,-5],[-5,-58],[-54,-31],[-46,-67],[-83,-44],[-33,17],[3,91],[-14,32],[-134,-44],[-31,36],[30,39],[85,43],[-20,49],[-5,61],[30,70],[5,127],[10,49],[44,42],[45,-21],[8,-75]],[[7952,16596],[71,-2],[11,-38],[69,-3],[48,40],[124,-31],[18,-52],[-70,-133],[-135,-34],[-51,16],[-82,-15],[-60,27],[-74,-39],[-87,-9],[-22,-25],[-135,-48],[-99,-18],[-111,10],[-81,53],[175,63],[130,3],[11,33],[-122,5],[-41,-16],[-151,-2],[-71,-27],[-73,2],[-219,61],[94,121],[23,69],[89,28],[36,46],[150,1],[17,-59],[86,17],[74,-16],[107,-79],[43,-69],[78,10],[160,-16],[27,26],[-39,32],[-99,29],[87,46],[-121,45],[96,84],[106,15],[3,-69],[48,-47],[-38,-35]],[[9595,17743],[204,-36],[122,-124],[190,-31],[154,-10],[7,-72],[67,-34],[35,-56],[122,-21],[71,-65],[-223,-55],[-71,-78],[-117,-66],[-26,-45],[-104,49],[-66,-51],[-134,8],[-104,29],[-201,147],[181,58],[-185,37],[-72,-34],[-84,32],[4,28],[-115,120],[102,107],[179,4],[-87,37],[-26,49],[230,21],[-53,52]],[[8911,16120],[72,-35],[165,35],[52,-8],[27,-47],[-166,-139],[68,9],[61,-16],[21,-41],[57,-7],[34,-72],[-31,-31],[7,-70],[-27,-32],[-147,-59],[-48,-47],[-35,-2],[-59,42],[-55,77],[-94,73],[-135,37],[-87,72],[22,74],[80,-6],[58,-64],[97,9],[36,29],[-41,83],[-56,0],[-78,50],[48,25],[25,45],[129,16]],[[5924,10879],[-14,11],[-39,-13],[3,54],[-64,6],[-56,87],[-20,45],[37,29],[71,-30],[7,-12],[80,-40],[110,-29],[29,-36],[65,-156],[66,-37],[49,-65],[31,-84],[18,-29],[-37,-40],[-122,66],[-46,37],[32,50],[-54,-2],[-15,-18],[-35,32],[-23,85],[-57,-18],[9,57],[-25,50]],[[9934,16068],[-78,-87],[-57,-83],[-57,-36],[-88,16],[-81,-16],[43,-57],[-43,-34],[-23,-53],[-126,-15],[4,104],[-58,76],[9,178],[33,34],[-3,45],[72,24],[132,19],[131,-31],[136,-5],[84,-19],[-30,-60]],[[9060,16709],[88,-23],[19,-217],[-60,-45],[53,-31],[-60,-24],[-161,-13],[-92,13],[-23,74],[96,48],[-30,19],[-282,-36],[-37,24],[134,77],[-53,60],[28,43],[61,-6],[101,-76],[39,19],[-37,47],[-65,26],[91,32],[137,-38],[53,27]],[[7177,16867],[-110,-38],[50,-52],[6,-46],[-126,-33],[12,-34],[-67,-24],[-55,29],[20,64],[-102,-38],[25,-41],[-85,-43],[-48,-56],[-60,-15],[-82,34],[-117,14],[-54,28],[-9,39],[132,31],[262,184],[147,9],[58,-17],[101,54],[102,-49]],[[9170,15198],[79,-35],[93,-77],[16,-89],[-55,-56],[-32,-5],[-106,23],[-79,51],[-69,21],[-44,-7],[-26,57],[74,13],[33,24],[-8,59],[71,74],[53,-53]],[[8561,17287],[74,-46],[69,11],[59,-61],[89,3],[76,-45],[-8,-66],[85,-51],[-23,-47],[-122,-10],[-84,79],[-198,44],[-185,-21],[-61,51],[166,-1],[7,61],[-137,52],[-78,-3],[-9,64],[176,15],[104,-29]],[[11018,16088],[36,6],[117,-29],[146,7],[102,-33],[129,-132],[-35,-21],[-147,19],[-61,-2],[-100,-31],[-96,25],[-29,82],[-66,20],[4,89]],[[13242,10053],[-40,-81],[36,-9],[30,49],[-22,15],[50,54],[4,26],[51,-46],[-4,-37],[-42,-50],[-47,-27],[-26,10],[-52,-9],[-21,97],[17,6],[51,140],[35,69],[34,-36],[-12,-113],[-42,-58]],[[11566,14671],[-124,1],[-23,42],[-8,62],[34,74],[41,44],[79,16],[98,-39],[-3,-121],[-16,-37],[-78,-42]],[[13127,10704],[-41,0],[-99,35],[-42,30],[-63,74],[-47,44],[35,9],[85,-26],[87,-46],[54,-50],[24,-8],[26,-48],[-19,-14]],[[9622,16341],[-35,-56],[-110,-2],[-214,78],[22,46],[77,70],[94,25],[65,-12],[91,-73],[10,-76]],[[5264,11712],[19,-20],[33,25],[14,70],[39,27],[-28,-148],[-32,-60],[-31,-12],[-30,40],[-1,32],[-39,71],[8,81],[83,-13],[23,-49],[-14,-22],[-44,-22]],[[10889,13733],[2,-52],[-100,-97],[-32,-20],[-64,7],[-20,40],[36,94],[33,25],[35,-15],[38,18],[72,0]],[[12876,10204],[27,-59],[15,-6],[193,-3],[-43,-32],[-20,-38],[6,-35],[-36,-4],[-9,41],[-77,13],[-40,42],[-17,47],[1,34]],[[9299,17131],[82,-2],[80,-34],[-45,-31],[15,-58],[-221,-32],[-38,39],[64,33],[-117,34],[-46,33],[-6,69],[83,11],[156,-39],[-7,-23]],[[7682,16979],[92,-19],[-3,-40],[-82,-30],[-136,-20],[-128,56],[3,74],[242,37],[111,5],[17,-40],[-116,-23]],[[8385,15998],[-69,-86],[-33,2],[-113,100],[-58,13],[54,54],[150,9],[69,-33],[0,-59]],[[11144,13442],[-18,-8],[-41,48],[0,74],[27,46],[41,15],[37,-40],[-46,-135]],[[11032,11493],[-138,60],[12,46],[78,5],[34,-42],[14,-69]],[[7861,17117],[-19,-32],[-219,-5],[-177,34],[289,68],[126,-65]],[[9392,16976],[201,-7],[63,-27],[-54,-47],[-251,4],[-53,37],[94,40]],[[5358,11603],[-27,-31],[35,-93],[41,-69],[-11,-15],[-74,117],[-29,36],[-3,37],[57,29],[11,-11]],[[5718,11564],[-10,-86],[-43,20],[-14,31],[7,77],[36,-1],[24,-41]],[[11846,14789],[-105,-5],[-48,38],[3,30],[143,-20],[7,-43]],[[6863,16493],[-37,-22],[-73,43],[159,91],[26,-28],[-75,-84]],[[11211,12279],[-43,-40],[-42,-16],[70,114],[31,-35],[-16,-23]],[[10005,16847],[-50,-5],[-91,42],[10,48],[77,5],[69,-29],[-15,-61]],[[11348,13765],[-73,63],[39,20],[57,-14],[13,-48],[-36,-21]],[[8391,16829],[-88,10],[-92,118],[99,-22],[81,-106]],[[8592,16606],[-76,-17],[-85,3],[-10,37],[165,21],[6,-44]],[[10396,14791],[-50,9],[-5,61],[59,19],[-4,-89]],[[8439,16372],[-93,16],[20,41],[97,13],[29,-45],[-53,-25]],[[11234,15034],[-56,5],[99,101],[28,-24],[-71,-82]],[[8515,16653],[-113,2],[-30,56],[60,16],[125,-50],[-42,-24]],[[12812,13405],[-14,-21],[-71,48],[6,18],[73,0],[6,-45]],[[8911,17486],[80,-4],[48,-75],[-169,24],[41,55]],[[11147,15232],[37,-23],[-70,-34],[-84,25],[117,32]],[[12447,13158],[-53,-11],[21,68],[45,-18],[-13,-39]],[[5806,11337],[-14,39],[65,64],[-2,-36],[-36,-28],[-13,-39]],[[11415,13893],[51,-16],[26,-35],[-45,-10],[-32,61]],[[12180,13684],[22,-32],[-62,-5],[-5,47],[45,-10]],[[7348,16958],[-47,-6],[-89,56],[87,17],[84,-48],[-35,-19]],[[10604,14317],[-60,27],[28,43],[32,-70]],[[11451,15086],[-37,0],[-10,57],[73,2],[-26,-59]],[[8759,16979],[-101,-32],[-50,25],[86,24],[65,-17]],[[9377,15187],[30,-23],[-19,-36],[-51,8],[7,48],[33,3]],[[5924,10879],[7,-58],[-41,31],[34,27]],[[10917,5050],[20,-20],[30,14],[19,-21],[29,23],[65,-50],[30,1],[35,-32],[20,-50],[29,-34],[62,-1],[58,-55],[39,-55],[43,-47],[2,20],[96,-102],[46,-31],[45,-1],[16,-26],[-11,-60],[72,-8],[27,-16],[28,-46],[37,-24],[7,-24],[-18,-27],[-61,-9],[-50,-32],[-48,17],[-48,6],[-64,-9],[-104,-26],[5,42],[25,39],[24,19],[12,39],[-29,55],[-77,-3],[-49,74],[-13,91],[-18,40],[-60,-17],[-158,107],[-109,33],[-48,35],[48,20],[3,26],[-22,23],[-85,0],[-36,-33],[-40,-60],[-74,-41],[-8,-32],[-33,-18],[-42,8],[19,31],[19,73],[20,43],[37,42],[80,53],[74,24],[24,18],[60,-6]],[[10826,4703],[-37,-26],[-23,75],[16,34],[27,-12],[17,-71]],[[13173,3412],[20,-37],[-1,-47],[-13,-9],[-11,73],[5,20]],[[12025,4298],[21,45],[65,5],[70,-51],[51,-27],[31,-61],[44,11],[0,-34],[-42,7],[-3,-30],[42,-13],[37,1],[24,-21],[42,-70],[-14,-53],[-35,-28],[-20,37],[-87,11],[-36,-19],[-19,-31],[-30,-7],[-24,47],[-31,-28],[-22,-73],[-31,-64],[-17,24],[-16,58]],[[12025,3934],[-31,44],[-54,-3],[-42,-14],[-51,19],[-32,0],[-32,-28],[-43,37],[-17,29],[6,44],[24,12],[62,-38],[108,-10],[33,18],[6,32],[-53,75],[12,93],[-39,38],[-39,2],[-6,27],[29,34],[41,8],[54,-40],[64,-15]],[[13170,3600],[7,-61],[-21,-48],[-14,-10],[-11,70],[25,0],[14,49]],[[14998,13148],[-3,43],[-29,19],[-45,0],[-4,61],[-74,54],[-36,-49],[-29,21],[-77,-9],[-25,42],[-76,28],[-61,66],[21,81],[-53,61],[-86,46],[-13,23],[22,46],[-11,44],[-37,10],[9,41],[-56,2],[-16,30],[-4,72],[-67,124],[61,-3],[50,52],[9,59],[-41,20],[-30,-12],[-47,-94],[-33,1],[4,94],[70,52],[-30,11],[-28,-42],[-29,3],[3,87],[-83,95],[-7,45],[-34,1],[-12,49],[-37,62],[48,68],[64,-3],[2,38],[-102,9],[-35,37],[14,110],[54,80],[-3,47],[84,5],[60,-28],[100,-5],[-9,55],[-140,-10],[-67,19],[70,52],[91,-8],[60,15],[9,31],[-24,41],[10,39],[93,-10],[-23,48],[-53,-1],[51,82],[22,74],[-113,13],[-82,-4],[-129,69],[-93,15],[-63,55],[53,36],[181,-27],[79,-50],[78,-8],[-37,56],[19,95],[-94,-8],[-49,26],[34,34],[-84,11],[56,46],[-101,50],[-39,-31],[-17,-60],[-96,-19],[-72,13],[-52,59],[72,53],[-38,25],[73,50],[35,121],[-74,78],[9,52],[-83,44],[20,61],[-56,31],[-31,88],[35,10],[-81,60],[-14,32],[-114,37],[-44,57],[37,40],[-26,36],[-73,2],[-79,58],[-132,41],[-167,20],[-106,28],[-175,-46],[-217,22],[-39,-21],[50,-46],[-152,24],[-158,67],[93,38],[-39,27],[-165,25],[-83,48],[23,26],[294,48],[143,7],[93,-18],[41,42],[-107,42],[-67,-36],[-184,-13],[-82,18],[-3,30],[-250,67],[-68,36],[32,77],[376,68],[16,29],[196,37],[131,-3],[141,85],[-20,105],[-220,19],[-37,62],[202,70],[195,93],[86,23],[204,-22],[24,95],[-31,61],[287,61],[461,58],[100,-55],[116,-25],[295,-28],[46,12],[-143,59],[-44,67],[200,-3],[200,-61],[129,-23],[136,-70],[20,20]],[[14998,18024],[-91,33],[91,13]],[[14998,18097],[-54,33],[54,7]],[[14331,15254],[25,-10],[-22,-69],[-46,31],[43,48]],[[14237,15193],[-43,-39],[-148,-46],[-62,17],[-6,49],[-58,6],[-13,140],[40,19],[130,-24],[62,-60],[68,-23],[30,-39]],[[14310,17888],[-216,24],[41,44],[175,-68]],[[14998,17903],[-5,-1],[-93,39],[-118,29],[-89,57],[187,3],[118,-42]],[[14998,17942],[-14,-5],[14,-7]],[[11909,4097],[-48,15],[4,27],[44,-42]],[[11514,3963],[20,-56],[-36,-11],[-28,18],[-35,-8],[-10,-32],[-75,41],[-47,57],[24,54],[26,16],[86,-23],[75,-56]],[[7525,6279],[-33,22],[12,68],[17,6],[11,-40],[-7,-56]],[[7432,6337],[-14,3],[-40,76],[9,28],[32,-54],[13,-53]],[[13223,3223],[14,-43],[-18,-22],[-23,72],[27,-7]],[[10931,1605],[-15,-3],[-16,36],[17,26],[14,-59]],[[12683,3930],[-40,-19],[-57,13],[-53,-9],[-4,95],[18,29],[130,-14],[26,-18],[5,-32],[-25,-45]],[[13227,2364],[-7,-152],[-17,-14],[-80,-7],[36,40],[10,24],[0,46],[-10,28],[18,21],[50,14]],[[12896,2378],[-15,-6],[-33,38],[44,13],[4,-45]],[[9850,36],[11,-36]],[[9836,0],[14,36]],[[2706,4156],[-30,17]],[[2676,4173],[-11,113]],[[2665,4286],[19,89]],[[2684,4375],[-7,35],[3,9],[37,-28]],[[2717,4391],[38,-34],[33,-75],[10,-28]],[[2798,4254],[-1,-4],[-16,-28],[-67,-71],[-8,5]],[[2623,4490],[-15,26],[-17,53]],[[2591,4569],[4,14],[45,-16],[27,-41],[0,-9],[-20,-19],[-24,-8]],[[2535,4599],[-14,3],[7,27],[60,-13],[-18,-24],[-35,7]],[[2468,4671],[14,-26],[-5,-2]],[[2477,4643],[-46,9]],[[2431,4652],[-18,55]],[[2413,4707],[4,4]],[[2417,4711],[29,26],[22,-66]],[[2268,4847],[12,1]],[[2280,4848],[10,1],[1,-2],[8,-10],[-2,-43],[-10,-17],[-6,-5],[-25,18],[-10,14],[22,43]],[[10923,5359],[-8,20],[34,34],[4,-37],[-30,-17]],[[6404,10469],[-46,52],[14,39],[32,-91]],[[232,11263],[-20,64],[42,-19],[-22,-45]],[[400,11286],[-58,-27],[15,63],[23,23],[20,-59]],[[583,11348],[56,57],[4,-37],[-60,-20]],[[1274,11570],[-30,19],[52,78],[22,15],[33,-33],[-77,-79]],[[1485,11755],[43,-1],[-7,-44],[-40,-34],[-89,-50],[-24,21],[66,31],[30,46],[-28,10],[9,38],[40,-17]],[[1741,11893],[-14,-20],[-42,-1],[-11,39],[42,59],[71,35],[43,4]],[[1830,12009],[13,-41],[23,-36],[-67,-12],[-58,-27]],[[5211,12229],[31,-9],[34,-43],[29,-62],[33,-160],[-44,-11],[-43,86],[-38,5],[-25,32],[24,24],[-39,52],[12,36],[-32,57],[-1,59],[34,-5],[25,-61]],[[5227,12408],[45,-62]],[[5272,12346],[-28,-21],[-70,-8],[-51,31],[2,-53],[-10,-58],[-33,10],[-1,92],[-15,38],[7,36],[33,5],[14,39],[66,-19],[41,-30]],[[5040,12271],[-29,18],[-18,53],[-37,45],[11,57],[-6,45],[-31,27],[9,17],[1,13],[64,-18],[14,-28],[23,-137],[-1,-92]],[[3018,12629],[55,1],[-18,-36]],[[3055,12594],[6,-63],[-73,-32]],[[2988,12499],[16,-37],[-31,-26],[-37,9]],[[2936,12445],[-45,-65],[-36,23],[-52,95],[19,50],[41,32],[28,-4]],[[2891,12576],[38,52],[42,25],[47,-24]],[[5013,12693],[17,11]],[[5030,12704],[58,-26],[-9,-49],[38,-62],[8,-49],[-69,-77],[-17,35],[8,62],[-34,155]],[[4926,12703],[79,-41],[-5,-34],[16,-66],[-26,-25],[-54,45],[2,-47],[-17,-19],[-29,22],[-27,64],[-38,32],[2,41],[84,41]],[[4913,12716],[13,-13]],[[3026,12656],[-66,6],[59,57],[9,34],[33,6],[43,-38],[-78,-65]],[[3606,13056],[8,51],[42,61],[20,-13],[-70,-99]],[[1589,13146],[6,-60],[-63,-45]],[[1532,13041],[-101,47],[-35,46],[139,41],[54,-29]],[[939,13889],[67,-20]],[[1006,13869],[72,25],[27,-33]],[[1105,13861],[63,-38],[46,-5],[8,-41]],[[1222,13777],[-86,-28],[-73,65]],[[1063,13814],[-75,22]],[[988,13836],[-33,-22],[-49,37],[33,38]],[[0,15049],[110,-42]],[[110,15007],[139,-93],[176,-101],[98,-64],[59,-66],[-15,-58],[18,-95],[30,-44],[68,-24],[-19,147],[41,29],[224,-40],[30,-50],[139,-104],[29,-9],[-78,-69],[-3,-53],[-65,24],[-8,-43],[-112,-22],[17,-72],[-32,-37],[-55,-12],[0,-37],[52,-37],[-20,-33],[-55,-28],[-97,38],[-34,50],[-125,38],[-43,53],[-13,74],[-114,43],[-66,-32],[-81,-2],[-29,19],[-17,55],[2,55],[-47,45],[-68,-18],[-11,-40],[13,-46],[42,-56],[-33,-67]],[[47,14225],[-47,-38]],[[276,15548],[-51,-54],[-168,-29]],[[57,15465],[-57,19]],[[0,15605],[101,13]],[[101,15618],[92,-16],[83,-54]],[[10116,3467],[-30,0],[7,243],[0,177]],[[10093,3887],[2,33],[23,-8],[32,62],[20,59],[16,0]],[[12543,9834],[-43,47],[-1,67],[-35,37],[3,83],[-1,201],[-56,63],[-68,-39],[-15,54],[-20,7],[-86,-167],[-25,-88],[-11,-95],[-40,-87],[-43,-32],[-57,-65],[-272,-4],[-89,5],[-50,-36],[-129,-165],[-21,-55],[-54,-46],[-175,0],[-57,-40],[18,-68],[9,-69],[-103,-77],[-45,-23],[-106,-34],[-125,-114],[-31,-2],[-44,39],[-11,41],[8,58],[20,11],[47,87],[19,103],[20,79],[-44,381],[-81,72],[-21,72],[-42,26],[-36,56],[-73,74],[-7,39],[-194,158],[-196,151],[-35,-14],[-63,-51],[-66,-3],[-38,25],[-52,-2],[-21,30],[-47,-35],[-29,-5],[-35,33],[-51,18],[-44,55],[-62,22],[-62,-21],[-18,20],[-68,17],[-29,133],[-31,10],[-3,-81],[-777,0],[-2290,1]],[[5544,12043],[-2,109],[12,46],[-11,46],[-70,47],[-116,58],[-30,55],[-50,130],[-70,139],[-30,72],[-143,174],[-38,76],[-50,51],[-94,-46],[-28,-90],[-69,-33],[-34,-5],[-11,53],[-136,150],[-41,34],[14,58],[-69,-4],[-15,-15],[-79,-10],[-51,19],[0,2037]],[[10825,2088],[-41,-21],[0,-60],[6,-110],[-3,-143]],[[10477,2417],[16,26],[76,-50],[21,25],[37,-29],[14,-28],[31,-24],[31,24],[-1,24]],[[12025,3934],[-1,73],[-26,56],[30,21],[9,111],[-12,103]],[[14998,17862],[0,-4714]],[[14998,18070],[0,-46]],[[14998,18137],[0,-40]],[[14998,17988],[0,-46]],[[14998,17930],[0,-27]],[[10195,3431],[-48,-80],[-54,-64],[-8,-39],[-3,-70],[-12,-32]],[[10070,3146],[-25,-5],[-28,-73],[-27,-41],[-6,-28]],[[9751,3171],[9,26],[6,78],[-13,54],[53,178],[144,0],[1,76],[-48,85],[-62,86],[48,10],[0,123],[204,0]],[[10759,3271],[-43,-10],[-43,-40],[-67,-26],[-31,40],[-23,-26],[-19,-82],[-62,-99],[-22,14],[-69,-32],[-19,-62],[-6,-48],[-30,-63],[-27,-4]],[[10241,2925],[11,8],[0,72],[-39,43],[-49,-11],[-55,76],[-39,33]],[[6985,7098],[267,40],[5,-58],[175,-107],[223,-136],[320,-1],[1,91],[14,7],[172,0],[17,-11],[37,-74],[56,-89],[70,-88],[24,-103],[4,-48],[16,-54],[52,-69],[76,-67],[21,-8],[31,50],[10,65],[15,50],[52,22],[67,-15],[33,-32],[69,-112],[37,-154],[51,-121],[29,-47],[16,-48],[4,-85],[44,-136],[22,-8],[70,-56],[98,-39]],[[11402,1893],[2,-76],[21,-79],[-23,-31],[-27,-59],[-20,-16],[-11,-57]],[[9004,11766],[111,88],[17,-60],[17,-139],[139,-442],[18,-154],[-55,-53],[-21,67],[-35,162],[-107,150],[-116,225],[32,156]],[[7221,13520],[-89,124],[-28,52],[24,-6],[154,-70],[122,-84],[175,87],[82,104],[94,35],[88,-44],[35,-14],[-3,-27],[-109,-38],[-131,-37],[-150,-172],[-113,-105],[-189,-44],[-122,-3],[-180,98],[-32,11],[-4,35],[23,7],[153,-50],[125,80],[75,61]],[[11527,9595],[7,-85],[-83,-72],[-91,18],[-88,8]],[[11272,9464],[-58,-27],[-4,-2],[-29,-10],[-45,21],[33,75],[34,25],[79,32],[94,30],[49,-41],[31,47],[35,31],[22,-15],[2,-1],[12,-34]],[[10763,9180],[61,-13],[82,69],[49,61],[33,10],[61,-22],[30,34],[54,28],[88,24],[9,2],[2,-21]],[[11232,9352],[-7,-9],[-2,-3]],[[11223,9340],[-87,-118]],[[11136,9222],[-84,-63]],[[11052,9159],[-57,-30]],[[10995,9129],[-66,-60],[-80,-29],[-56,11],[-68,45]],[[10725,9096],[35,78]],[[10760,9174],[3,6]],[[10043,10474],[45,86],[63,35],[25,53],[25,28],[103,-44],[77,-5],[26,-29],[38,-124],[124,-33],[-19,-62],[44,-64],[-19,-83],[46,-27],[-14,-45],[-9,-29]],[[10598,10131],[-34,9],[-23,61],[-109,-19],[-99,-48],[-78,83],[-63,28],[36,115],[-99,-72],[-89,-71],[-85,-56]],[[9955,10161],[-69,75]],[[9886,10236],[-111,-45]],[[9775,10191],[0,32]],[[9775,10223],[76,92],[79,87],[111,70],[2,2]],[[11031,5844],[-25,8],[1,53],[26,-7],[-2,-54]],[[10570,2432],[-48,6],[-56,73],[-10,85],[35,9],[59,-91],[20,-82]],[[8954,11590],[-16,-1],[-29,5],[-69,31],[-20,54],[31,46],[-11,36],[3,8],[8,32],[10,30],[27,-3],[-6,-25],[-15,-37],[35,-1],[-4,-23],[-17,-83],[44,-32],[30,-6],[-1,-31]],[[7534,9019],[5,-43],[-4,-64],[-56,61],[-3,8],[-19,101],[32,-41],[21,-23],[20,20],[4,-19]],[[6915,14448],[-24,-81],[-15,-19],[-179,-7],[-3,-18],[9,-27],[-4,-35],[-184,-106],[2,25],[44,83],[-13,15],[-167,-91],[-74,33],[6,30],[94,104],[-3,23],[-289,33],[7,22],[601,178],[14,-20],[-91,-90],[286,21],[-1,-31],[-16,-42]],[[7815,12880],[-159,-104],[-13,27],[5,16],[229,173],[284,-51],[-1,-5],[-345,-56]],[[8677,12657],[39,-32],[-47,-114],[4,-25],[-141,-193],[-9,14],[15,64],[8,1],[7,-31],[48,81],[-26,76],[0,39],[76,121],[26,-1]],[[10562,9990],[20,29]],[[10582,10019],[3,-1],[98,20],[-55,87]],[[10628,10125],[5,8],[16,24],[22,-48],[83,-28],[84,-2],[90,-22],[100,-42],[36,-69],[72,-167],[-36,-72],[-90,30],[-56,135],[14,-137],[-53,-122],[6,-103],[-9,-61],[-67,-67],[-5,-5]],[[10840,9377],[-6,89],[-20,127],[-41,22],[-69,-96],[-22,1],[-6,55],[61,88],[11,99],[-9,99],[-83,85],[-94,44]],[[10562,9990],[-16,-83],[-24,-22],[-20,-108],[-10,73],[-44,-52],[-28,-73],[-29,-107],[-6,-93],[37,-135],[-3,-144],[-45,-106],[-23,-30]],[[10351,9110],[-30,-24]],[[10321,9086],[-37,-1]],[[10284,9085],[-11,14]],[[10273,9099],[-29,115],[-1,57]],[[10243,9271],[3,54]],[[10246,9325],[-14,106],[21,124],[25,152],[58,168],[-17,-1],[-82,-141],[-15,26],[44,79]],[[10266,9838],[66,141]],[[10332,9979],[76,19],[86,44],[88,-23]],[[110,15007],[-110,42],[0,435],[57,-19]],[[101,15618],[-101,-13],[0,2939],[14998,0],[0,-407]],[[14998,18097],[0,-27]],[[14998,18024],[0,-36]],[[14998,17903],[0,-41]],[[14998,13148],[0,-13148],[-489,0]],[[14482,0],[-34,0]],[[14433,0],[-115,0]],[[11097,0],[-1236,0]],[[9836,0],[-9836,0],[0,14187],[47,38]],[[14998,17942],[0,-12]],[[6129,12382],[70,-112],[35,-33],[38,-10],[90,12],[57,-17],[28,0],[68,37],[124,-9],[81,22],[36,-1],[57,-50],[37,-8],[63,16],[30,22],[34,56],[2,29],[-9,68],[14,93],[3,81],[8,60],[20,31],[20,12],[15,36],[24,17],[37,11],[113,-2],[40,14],[14,8],[31,17],[32,17],[17,5],[21,7],[31,19],[17,10],[56,53],[36,6],[28,-9],[16,-24],[57,7],[-4,116],[-14,68],[-90,81],[-12,21],[1,29],[-10,20],[-65,68],[-14,70],[-20,15],[-13,0],[-14,1],[-15,2],[-33,5],[-33,5],[-15,2],[-196,-48],[-40,7],[-108,40],[-54,25],[-102,-26],[-77,7],[-62,28],[-28,23],[-27,46],[-86,42],[-159,59],[-26,23],[-4,35],[7,78],[-10,42],[-71,149],[-42,57],[-17,48],[-30,44],[-29,59],[-31,24],[-98,53],[-83,53],[-122,69],[-72,25],[-26,30],[-8,37],[15,64],[-20,29],[-83,60],[-30,33],[-34,73],[-20,20],[-26,10],[-49,22],[-161,-35],[-40,0],[-40,14],[-51,36],[-40,48],[-23,68],[-1,28],[28,58],[-10,56],[-65,56],[-40,67]],[[7694,9758],[-21,-11],[-18,17],[-12,12],[-12,13],[-13,8],[-13,8],[-10,29],[-2,51],[23,156],[-1,43],[-3,15],[-4,15],[-5,18],[-10,31],[-5,17],[-9,17],[-10,16],[-6,28],[8,36],[23,41],[53,64],[73,71],[32,11],[45,-34],[98,-10],[13,-5],[28,-12],[29,-12],[12,-6],[10,-3],[18,-6],[10,-3],[108,45],[14,15],[25,28],[14,15],[19,3],[46,6],[54,7],[46,5],[19,3],[109,-22],[59,14],[38,-7],[84,-89],[38,-22],[12,-2],[21,-5],[11,-3],[5,-17],[5,-17],[34,-39],[7,-26],[12,-48],[6,-26],[10,-23],[9,-24],[4,-78],[24,-172],[-1,-58],[-10,-38],[-20,-36],[1,-23],[8,-23],[9,-11],[9,-11],[14,-13],[25,-26],[14,-13],[32,-6],[8,-10],[14,-19],[7,-10],[-1,-16],[-3,-31],[-1,-17],[4,-22],[14,-19],[31,-40],[30,-42],[11,-22],[-1,-6],[2,-1],[29,-27],[40,-18],[10,10],[26,-1],[40,3],[29,-29],[30,-18],[5,-18],[10,-10],[18,-3],[5,-22],[8,-36],[-1,-18],[21,-41],[6,-36],[1,-51],[8,-7],[8,-26],[11,-63],[3,-37],[-4,-40],[8,-39],[2,-18],[19,-35],[17,-27],[14,-47],[27,-29],[14,0],[3,-31],[-15,-41],[8,-21],[14,-45],[29,-21],[158,39],[21,-9],[17,-53],[34,-34],[27,-48],[27,-10],[66,13],[63,-8],[51,35],[8,1],[16,1],[8,-2],[-5,-25],[-3,-21],[-10,-32],[-7,-38],[15,-33],[22,-31],[13,-1],[29,-48],[11,-6],[9,-53],[-5,-33],[15,-53],[12,5],[19,-33],[-3,-22],[2,-35],[-18,-18],[-25,-23],[-2,-21],[-7,-31],[-9,-53],[-2,0],[-1,0],[2,-9],[0,-9],[-11,-31],[-20,-21],[-4,-36],[-18,-29],[2,-63],[-13,-21],[-2,-17],[-20,-16],[0,-32],[-15,-58],[-13,-13],[-20,-29],[-11,-45],[-25,-77],[-2,-51],[13,-57],[-6,-43],[8,-13],[-10,-31],[16,-45],[-4,-27],[14,-38],[-15,-22],[-6,-41],[-21,-34],[-10,-46],[-10,-53],[-14,-24],[5,-55],[6,-52],[21,-35],[24,-82],[15,-30],[23,-18],[82,-34],[10,-20],[7,-34],[54,-107]],[[9775,10191],[-29,-12],[1,-123],[-3,1],[-28,-25],[-24,-20],[-15,-41],[23,-40],[-9,-55],[0,-59],[-3,-48],[32,-42],[14,-2],[36,-31],[12,-15],[8,-24],[28,-37],[37,-32],[4,-18],[0,-53],[3,-25]],[[9862,9490],[-146,4],[-162,-1],[-151,-3],[-121,1]],[[9282,9491],[1,203],[-13,209],[-20,17],[-11,34],[6,29],[25,25],[2,31]],[[9272,10039],[0,40],[-7,33],[-9,36],[-5,44],[-2,50],[-4,12],[-4,63],[-1,30],[-2,26],[-5,44],[-14,45],[-13,40],[-2,39],[-1,43],[4,28],[1,25],[-11,32],[-1,21],[0,0]],[[9196,10690],[230,0],[0,84],[37,1],[20,-118],[0,-2],[0,0],[31,-33],[4,-4],[35,-6],[42,-7],[11,-4],[103,-31],[13,-8],[69,-44],[5,-3],[20,-13],[90,29],[137,-57],[0,0],[0,0]],[[9775,10223],[0,-32]],[[7105,10690],[225,0],[107,0],[332,1],[332,0],[332,0]],[[8433,10691],[0,-1],[2,-399],[5,-265]],[[8440,10026],[-5,-200]],[[8435,9826],[-186,3],[-200,-2],[-173,3],[-218,-2],[0,-111],[-2,-7]],[[7656,9710],[-12,12],[-11,30],[-12,6],[-16,-43],[-25,-7],[-63,14],[-3,-22],[-36,8],[-21,-30],[-19,56],[-14,32],[-23,6],[-6,15],[-7,58],[-20,27],[-13,69],[-13,30],[-14,6],[-11,-31],[-22,-26],[-20,22],[-1,55],[13,15],[-9,56],[11,57],[12,48],[-34,2],[-28,32],[-31,68],[-19,33],[-25,21],[-21,35],[0,39],[-29,58],[-9,229]],[[9272,10039],[-211,-11],[-181,0],[-227,-1],[-213,-1]],[[8433,10691],[385,0],[378,-1]],[[2665,4286],[14,64],[4,8],[-1,7],[2,10]],[[2684,4375],[-6,33],[3,10],[36,-27]],[[2798,4254],[-1,-4],[0,0],[-7,-13],[-37,-40],[-36,-34],[-5,-11],[-6,4]],[[2676,4173],[-1,10],[2,36],[-10,40],[-2,27]],[[2623,4490],[-13,24],[-3,6],[-16,49]],[[2591,4569],[2,5],[4,9],[13,-5],[28,-15],[19,-21],[9,-14],[-6,-18],[-11,-10],[-15,-6],[-11,-4]],[[2582,4617],[-2,-11],[-6,-9],[-52,6],[6,26],[3,0],[51,-12]],[[2417,4711],[27,23],[6,-10],[18,-53]],[[2468,4671],[13,-23],[-2,-4],[-2,-1]],[[2431,4652],[-11,32],[-4,15],[-2,3],[-1,5]],[[2280,4848],[3,0],[8,-1],[1,-2],[3,-49],[-13,-22],[-34,35],[20,38]],[[7656,9710],[4,-4],[0,-543]],[[7660,9163],[-331,-2]],[[7329,9161],[-333,2]],[[6996,9163],[2,392],[9,62],[-9,28],[-21,15],[1,35],[15,50],[24,43],[16,70],[15,56],[11,29],[-6,33],[-18,18],[-26,42]],[[7009,10036],[0,38],[-10,34],[-3,303],[0,279]],[[6996,10690],[109,0]],[[7009,10036],[-230,-2],[-40,-23],[-28,10],[-22,-18],[-41,-24],[-50,3],[-25,-18],[-24,-8],[-17,12],[-40,9],[-25,-7],[-43,-23],[-27,0],[-26,8],[-8,30],[-3,37],[-21,42],[-32,12],[-27,20],[-34,1],[-24,0]],[[6222,10097],[-1,7],[0,13]],[[6238,10246],[-32,12],[-29,153],[-32,101],[11,34],[83,-40]],[[6239,10506],[36,-5],[44,-20],[48,-166],[-16,-32]],[[6369,10277],[6,9],[3,-11],[21,44],[8,11]],[[6407,10330],[-2,12],[-5,52],[16,85]],[[6394,10608],[-41,68],[0,1],[6,13],[306,0],[331,0]],[[6404,10469],[-13,15],[-3,27],[-2,9],[18,-51]],[[7883,8072],[0,-1234]],[[7883,6838],[-128,-1],[-92,-1],[-2,1],[-251,153],[-153,97],[-15,9],[10,42],[0,1]],[[7252,7139],[15,-1],[12,43],[-20,30],[-3,33],[-6,38],[21,50],[9,100],[34,45],[-21,42],[-14,41],[-10,38],[-6,30],[-2,19]],[[7261,7647],[7,43],[-6,43],[-2,42],[0,47],[-10,30],[8,27],[23,0],[21,-16],[16,-8],[7,33],[5,7],[-1,176]],[[7329,8071],[179,3],[214,0],[161,-2]],[[7252,7139],[-29,-5],[-112,-19],[-110,-15],[-16,-2],[-17,104]],[[6968,7202],[-1,2],[-1,6],[-2,4],[-21,58]],[[6842,7392],[-7,6],[-5,26],[-38,6],[-44,34]],[[6748,7464],[-1,2],[-19,28],[-7,1],[-13,14]],[[6708,7509],[-86,10],[-24,30],[-3,94]],[[6552,7740],[-64,124],[-13,25],[-12,41],[-19,133]],[[6426,8068],[-12,22],[-22,73],[-6,38]],[[6403,8270],[-34,-1],[-31,46],[-4,7],[-26,77]],[[6308,8399],[-43,71],[-11,24],[-6,50],[-2,18],[1,69]],[[6212,8741],[-25,35],[-7,12],[-2,16],[8,56],[22,82]],[[6210,9075],[-12,65],[0,23]],[[6198,9163],[468,-2]],[[6666,9161],[0,-654],[209,-294],[200,-289],[186,-277]],[[8660,8727],[1,-336],[0,-321]],[[8661,8070],[-107,1]],[[8554,8071],[-133,0],[-189,1],[-175,0],[-174,0]],[[7883,8072],[-1,873]],[[7882,8945],[111,0],[112,0],[222,1],[111,0]],[[8438,8946],[222,0],[0,-212],[0,-7]],[[7329,9161],[0,-1090]],[[6666,9161],[330,1],[0,1]],[[8554,8071],[0,-108]],[[8554,7963],[0,-572],[0,-410],[-103,0],[-200,0],[-100,0],[1,-18],[10,-29],[3,-6]],[[8165,6928],[-188,0],[-5,0],[0,-90],[-89,0]],[[6198,9163],[-28,131],[-7,39],[43,203],[27,396],[-11,165]],[[7660,9163],[0,-212],[222,-6]],[[8435,9826],[2,-445]],[[8437,9381],[1,-435]],[[10036,7859],[-1,-18],[-11,-31],[-20,-21],[-4,-36],[-18,-29],[2,-63],[-13,-21]],[[9971,7640],[-2,-17],[-20,-16],[0,-32],[-15,-58],[-13,-13],[-20,-29],[-11,-45],[-25,-76],[-2,-52],[13,-57],[-6,-43]],[[9870,7202],[-94,7],[-121,-7],[-107,0]],[[9548,7202],[6,124],[-26,1],[-21,-3],[-6,14]],[[9501,7338],[3,191],[2,212],[-22,231]],[[9484,7972],[136,-3],[122,-1],[118,0],[126,-13],[9,-27],[-12,-24],[-13,-23],[-6,-22],[72,0]],[[9862,9490],[2,-11],[14,-35],[-10,-17],[1,-45],[4,-20],[7,-35],[37,-20],[10,-34]],[[9927,9273],[7,-16],[13,-12],[5,-23],[18,-18],[11,-18],[-6,-59],[-20,-50],[-8,-15],[-25,-13],[-38,-11],[-10,-37],[14,-17],[4,-34],[-14,-38],[-8,-33],[-28,-32],[-2,-40]],[[9840,8807],[-15,18],[-22,36],[-121,-5],[-128,-2],[-100,0],[-99,0]],[[9355,8854],[-8,39],[4,39],[-3,38],[-11,63],[-8,26],[-8,7],[-1,51],[-7,36],[-20,41],[1,18],[-7,36],[-5,22]],[[9282,9270],[0,20],[-18,24],[9,36],[5,35],[3,23],[-14,29],[0,53],[15,1]],[[8660,8727],[0,0],[194,0],[145,0],[255,0],[153,0]],[[9407,8727],[27,-29],[14,0],[3,-31],[-15,-41],[8,-21],[14,-45],[29,-21],[-1,-234],[-1,-233]],[[9485,8072],[-97,0],[-200,0],[-200,-1],[-111,0],[-111,0],[-105,-1]],[[9484,7972],[2,100],[-1,0]],[[9407,8727],[-14,47],[-17,27],[-19,35],[-2,18]],[[9840,8807],[-10,-54],[10,-65],[18,-45],[22,-37],[25,-30],[10,-10],[10,-41],[1,-37],[13,-9],[21,14],[21,-35],[-6,-40],[-10,-32],[-7,-38],[15,-33],[22,-31],[13,-1],[29,-48],[11,-6],[9,-53],[-5,-33],[15,-53],[12,6],[19,-34]],[[10098,8062],[-3,-22],[2,-35],[-18,-18],[-25,-23]],[[10054,7964],[-2,-21],[-7,-31],[-9,-53]],[[8437,9381],[217,0],[167,0],[223,0],[29,-27],[40,-18],[10,10],[26,-1],[40,3],[29,-29],[30,-18],[5,-18],[10,-10],[19,-3]],[[9501,7338],[-48,43],[-31,23],[-25,-15],[-39,3],[-23,-1],[-19,-17],[-19,-10],[-16,11],[-37,-12],[-17,37],[-18,-32],[-30,14],[-31,34],[-33,-22],[-15,53],[-52,-5],[-33,12],[-37,15],[-17,45],[-29,-14],[-18,17],[-26,24],[0,208],[0,214],[-111,0],[-112,0],[-111,0]],[[9870,7202],[8,-13],[-10,-31],[16,-45],[-4,-27],[14,-38],[-15,-22],[-6,-41],[-21,-34],[-10,-46],[-10,-53],[-14,-24],[5,-55],[98,-6],[104,-1],[-3,-36],[-7,-36],[7,-28],[15,-25],[4,-36],[2,-22],[1,-3]],[[10044,6580],[-28,-30]],[[10036,6515],[27,8],[1,-1],[-1,-34],[-29,-31]],[[10051,6418],[26,-11],[9,-17],[-22,-28],[-4,3],[-1,4]],[[9948,6399],[-44,-40],[-3,0],[-77,108],[-29,41]],[[9758,6479],[-12,-25],[-20,-5],[-17,6],[-69,43],[-10,-2],[-35,-5]],[[9595,6491],[-21,-8],[-3,-1]],[[9571,6482],[-8,24],[12,32],[16,29],[1,43],[-9,15],[10,52],[7,24],[11,79],[-10,30],[-13,50],[-9,50],[-6,34],[-19,25],[-6,233]],[[9571,6482],[-3,-1],[-20,-8]],[[9548,6473],[-18,-13],[-40,-22],[-16,56]],[[9443,6481],[9,-90],[-66,-105],[-92,-86]],[[9294,6200],[-1,-2],[-20,-16],[-19,4]],[[9175,5784],[8,-35],[1,-31],[10,-34],[-11,-27]],[[9183,5657],[17,5],[4,-12],[-1,-6],[-41,-7],[-79,48],[-86,68],[-2,6],[-30,97],[-24,152],[-60,113],[-6,12],[-2,9],[-36,119],[-9,24],[-38,101],[-9,24],[-18,21],[-60,66],[-91,-4],[-45,-112],[-8,-18],[-17,-43],[-6,5],[-76,53],[-10,8],[-7,7],[-13,16],[-37,43],[-3,10],[-23,101],[-2,9],[-37,113],[-21,31],[-45,65],[-16,19],[-41,50],[-40,78]],[[11832,9175],[85,-4],[104,-5]],[[12021,9166],[0,-119],[-5,-27]],[[12016,9020],[-124,-20]],[[11816,8945],[3,-8],[-4,-2],[0,0]],[[11815,8935],[0,0],[-1,6],[-4,27],[25,21],[-9,19],[6,167]],[[11832,9175],[24,150]],[[11856,9325],[92,-3]],[[11948,9322],[134,-2],[11,21],[24,15],[13,-4]],[[12130,9352],[0,-50],[-25,-73]],[[12227,9121],[-4,-38],[-15,-7],[-58,10]],[[12150,9086],[-50,-34],[-4,1]],[[12096,9053],[-3,33],[-17,25],[-9,57],[-46,-2]],[[11948,9322],[-9,22],[8,28],[3,58],[4,13],[3,52],[12,43],[10,20],[13,51],[2,35],[4,22],[22,10],[24,25],[5,27],[-8,32],[13,59],[-1,0]],[[12053,9819],[3,14],[8,40],[36,11]],[[12100,9884],[0,-1],[16,-400],[-4,-22],[20,-32],[5,-30],[8,1]],[[12145,9400],[-14,-38]],[[12131,9362],[0,-7],[-1,-3]],[[12096,9053],[-6,-3],[-6,36]],[[12067,9106],[-10,-72],[-27,-12],[-14,-2]],[[11856,9325],[5,180],[-16,2],[-2,8],[7,32],[-10,57],[11,45],[-6,33],[-3,65],[4,28],[3,42],[0,2]],[[11849,9819],[120,0],[84,0]],[[10202,7636],[140,0],[143,-3]],[[10485,7633],[29,-271],[26,-217],[16,-68],[9,-39],[-18,-39],[-6,-69],[6,-41],[-3,-39],[-3,-35],[7,-28],[6,-26]],[[10554,6761],[-227,-1],[-64,-13],[-1,-16],[25,-53],[-6,-43],[-6,-24]],[[10275,6611],[-13,-3],[-27,6],[4,10]],[[10194,6627],[-20,3]],[[10174,6630],[-3,332],[19,349],[20,282],[-8,43]],[[10554,6761],[16,-59],[112,-10],[180,-32],[9,-38],[14,19],[0,76],[14,7],[22,-16],[23,-4]],[[10944,6704],[20,-151],[0,-1],[6,-56]],[[11002,6359],[18,-54],[8,-25],[19,-76]],[[11047,6204],[4,-60],[0,-27],[2,-9],[0,-6]],[[11053,6102],[4,-16],[46,-222],[-2,-111],[-8,-130],[-2,-12],[-9,-1]],[[11052,5502],[-47,-16],[-23,11],[-3,6]],[[10868,5840],[-9,-2],[-12,40],[-36,123]],[[10811,6001],[-16,70],[-2,9],[12,83],[10,66],[0,2],[0,3]],[[10796,6362],[-23,9],[-53,112],[-10,26]],[[10710,6509],[-4,4],[-8,18],[-16,12],[-19,24]],[[10613,6528],[-5,-4],[-29,-26],[-57,-20],[-5,7],[-8,47]],[[10509,6532],[-40,45],[-1,1],[-1,1],[-15,18]],[[10408,6625],[0,0],[-9,7],[-18,-4],[-20,3]],[[10361,6631],[-86,-20]],[[10485,7633],[85,-2],[60,2]],[[10630,7633],[138,-2]],[[10768,7631],[-12,-18],[-18,-41],[30,-37],[19,-13],[21,-69],[13,-39],[39,-51],[7,-27],[27,-36],[13,-52],[35,-44],[8,-50],[7,-24],[-4,-16],[21,-24],[10,-41],[0,-41],[10,-8],[20,-11]],[[11014,6989],[-8,-19],[-22,-49]],[[10984,6921],[-2,-11],[-21,-51],[-9,-87],[-2,-6]],[[10950,6766],[0,-6],[-6,-56]],[[9971,7640],[109,0],[122,-4]],[[10174,6630],[-47,7]],[[10078,6618],[-34,-38]],[[10768,7631],[11,7],[60,37],[102,-2],[52,-10],[1,-19],[11,14],[18,-37],[0,-25],[123,-2],[124,-207]],[[11270,7387],[-5,-7],[-19,-13]],[[11163,7207],[-20,-37],[-67,-78],[-8,-13],[-34,-46]],[[11034,7033],[-17,-39],[-3,-5]],[[9927,9273],[114,0],[116,0],[85,-2],[0,0],[1,0]],[[10273,9099],[1,0]],[[10274,9099],[0,0],[-1,-252],[0,-253],[-12,-61],[9,-16],[6,-37],[-1,-29],[-10,-14],[-8,-36],[-23,-47],[-15,-59],[-4,-44]],[[10215,8251],[1,-16],[-13,-31],[10,-20],[-20,-16],[-25,-18],[5,-48],[-15,-18],[-27,20],[-29,12],[-8,-21],[4,-33]],[[10274,9099],[10,-14]],[[10321,9086],[30,24]],[[10351,9110],[0,0],[120,-1],[105,1],[0,-17]],[[10576,9093],[-1,-198],[-1,-212],[0,-151]],[[10574,8532],[-7,-11],[9,-44],[-4,-16],[-19,-1],[-17,-19],[-27,8],[-2,-42],[-16,-16],[-14,-37],[-16,-7],[-25,-65],[-22,18],[-7,27],[-19,-43],[-13,-25],[-24,26],[-25,-21],[-9,-21],[-34,33],[-24,-24],[-28,17],[-1,-24],[-15,6]],[[10574,8532],[38,-5],[19,-21],[30,-50],[23,-15],[18,-18],[26,6],[20,-12],[23,12],[21,3],[9,-30],[21,-21]],[[10822,8381],[2,-21],[-1,-45],[13,-34],[6,-33],[16,-29],[11,-26],[21,-4]],[[10890,8189],[-11,-17],[-33,-48],[-35,-25],[0,0],[0,0],[-2,-18],[-12,-23],[-29,-25],[-2,-1],[-1,-3],[-8,-18],[-17,-10]],[[10740,8001],[-6,-4],[-32,-12],[-76,-7],[-98,9],[-32,-3],[-63,6],[-65,2],[-60,1],[-70,-6],[-3,10],[-22,0],[0,-35],[-159,2]],[[10630,7633],[2,46],[24,14],[7,23],[16,27],[23,5],[26,11],[25,18],[11,20],[21,17],[0,16],[28,29],[9,-19],[41,41],[19,-4],[17,37],[22,9],[-1,31],[3,28],[-43,-4]],[[10880,7978],[43,4],[187,-10],[222,-1],[117,2],[106,1],[12,0]],[[11567,7974],[4,-27],[0,-4],[-12,-46]],[[11572,7847],[7,-17],[3,-46],[0,-15]],[[11519,7620],[-15,-31],[-26,-15],[-48,-8]],[[11430,7566],[-31,-37],[0,0],[-1,0],[-20,-24]],[[11288,7396],[-8,-6],[-10,-3]],[[10576,9093],[56,1],[51,0],[42,2],[0,0]],[[10995,9129],[57,30]],[[11052,9159],[0,-293]],[[11052,8866],[-15,-11],[4,-27],[-5,-50],[-11,-57],[-11,-47],[-2,-23],[-30,-50],[-13,-10],[-15,-6],[-13,4],[-25,-37],[-5,-39],[-3,-22],[-10,-8],[-2,24],[-15,5],[-15,-47],[-2,-48],[-14,-31],[-28,-5]],[[10740,8001],[-6,-4],[-32,-12],[165,-8],[13,1]],[[10890,8189],[5,-37],[10,-16],[3,-4],[17,-17],[25,19],[10,7],[0,0],[0,0],[13,-15],[35,15],[7,3],[1,12],[1,7],[13,-7],[13,15],[0,1],[0,0],[0,0],[16,-4],[17,17],[2,12],[1,8],[-2,26],[0,0],[0,0],[15,38],[22,28],[5,32],[11,22],[8,17],[11,48],[0,0],[0,0],[15,-17],[16,-16],[16,9],[5,19],[11,28],[8,19],[5,12],[0,0],[0,0],[8,-10],[16,29],[13,16],[9,12],[4,6],[10,16],[7,46],[1,12],[0,0],[0,0],[52,-54],[5,-5],[13,41]],[[11363,8579],[3,-2],[13,-6],[15,-16],[0,0],[0,0],[-7,-18],[-2,-5],[24,-14],[21,-24],[0,0]],[[11430,8494],[9,-19],[-1,-12],[0,0]],[[11438,8463],[-2,-18],[-4,-5],[-15,-16],[-12,-48],[15,-12],[18,9],[5,-24]],[[11443,8349],[1,-6],[75,-69],[0,-63]],[[11557,8041],[10,-67]],[[11623,8294],[-60,-168],[-10,14],[20,85],[17,34]],[[11590,8259],[-7,8],[2,10]],[[11585,8277],[0,0],[12,13],[26,4],[0,0]],[[9886,10236],[68,-74]],[[9954,10162],[1,-1],[6,5],[1,-1],[17,-7],[9,-39],[97,-39],[64,-40],[32,0],[21,-3],[6,-36],[27,-13],[10,-31],[-7,-18],[-5,-35],[24,-2],[-8,-35],[15,-26],[0,1],[3,-2]],[[10267,9840],[-1,-2]],[[10246,9325],[-3,-54]],[[11052,8866],[0,-200],[116,0]],[[11168,8666],[-1,-111],[17,19],[19,26],[22,8],[15,23],[32,-9],[13,17],[21,16],[34,-17],[14,-31],[9,-28]],[[11659,8388],[-73,0],[-8,278]],[[11578,8666],[8,17],[10,10],[24,-11]],[[11620,8682],[-16,-23],[2,-42]],[[11606,8617],[4,-18],[-11,14]],[[11631,8489],[20,-19],[4,-6],[4,-76]],[[11430,8494],[9,11],[14,-23],[-15,-19]],[[11585,8277],[-15,21],[-12,67]],[[11558,8365],[-18,-22],[-6,9],[-6,15],[-4,51],[2,8]],[[11494,8459],[0,-10],[0,-2],[1,-5],[2,-34]],[[11497,8408],[12,-50],[8,-50],[-73,35],[-1,6]],[[11168,8666],[103,-1],[35,1],[79,1],[95,-1],[98,0]],[[11659,8388],[0,-7],[0,0],[-1,-5],[-35,-82],[0,0]],[[11620,8682],[23,20],[8,14],[26,28],[14,24],[-35,57],[-1,23],[-13,7],[1,35],[13,26],[-6,29],[18,19],[19,49],[14,9]],[[11701,9022],[85,-86],[-4,-46]],[[11782,8890],[-17,-29],[-9,7]],[[11769,8820],[6,-37],[-19,-120],[-68,-142],[-15,-2]],[[11673,8519],[-1,2],[-5,30],[-24,12],[-37,54]],[[11815,8935],[-7,-5],[13,3],[2,-8]],[[11969,8955],[16,-1],[8,-10],[-86,-55],[-51,-22],[-11,-3],[-67,0],[4,26]],[[11701,9022],[-18,16],[-19,15],[-7,32],[3,24],[-14,19],[-24,35],[-151,0],[-161,0],[-174,0],[0,59]],[[11136,9222],[87,118]],[[11232,9352],[-2,21],[0,0],[-10,66],[52,25]],[[11527,9595],[-11,30],[114,152],[50,40],[61,1],[108,1]],[[12100,9884],[12,8],[35,26],[12,29],[28,70],[0,0],[33,168],[1,2],[84,164],[0,0],[37,-56],[0,-1],[7,4],[64,31],[4,2],[48,-61],[1,-1],[0,-1],[0,-60],[0,-174],[0,-50],[0,-13],[34,-58],[39,-66],[3,-12],[9,-34],[6,-26],[-1,-1],[-95,-52]],[[12284,9593],[-31,-38],[-2,-1],[-29,15]],[[12201,9547],[-56,-147]],[[9954,10162],[1,-1]],[[10598,10131],[7,22],[0,0],[-7,-22],[30,-6],[0,0]],[[10332,9979],[-65,-139]],[[10840,9377],[0,0],[0,0],[-53,-120],[-6,-19],[-18,-58],[0,0]],[[10760,9174],[-35,-78]],[[3018,12629],[32,0],[13,-19],[-8,-16]],[[2988,12499],[15,-34],[-4,-4],[-31,-24],[-32,8]],[[2936,12445],[-44,-64],[-1,-1],[-15,10],[-30,29],[-18,33],[-13,78],[3,9],[52,40],[21,-3]],[[2891,12576],[30,41],[53,30],[15,-3],[29,-15]],[[1532,13041],[-37,17],[-34,19],[-64,57],[122,36],[42,-9],[28,-15]],[[1006,13869],[60,21],[32,-21],[7,-8]],[[1222,13777],[-80,-26],[-23,13],[-56,50]],[[1063,13814],[-19,6],[-8,6],[-10,-1],[-38,11]],[[988,13836],[-30,-20],[-5,0],[-40,30],[1,14],[25,29]],[[939,13889],[44,-13],[4,-2],[2,0],[17,-5]],[[5544,12043],[-3,-10],[-34,-56],[-16,-15],[-51,68],[-3,26]],[[5418,12086],[-36,-11],[-46,33],[-13,79],[49,74]],[[5372,12261],[-60,-9],[-7,46],[-5,6],[7,4]],[[4246,13084],[-77,20],[-11,4],[-4,0],[-10,2]],[[4144,13110],[-93,-15],[-36,-4],[-16,1],[-20,9],[-21,25]],[[3544,13251],[1,-9],[-15,-5],[16,-104],[-8,-35]],[[3395,13096],[-86,-111],[-26,-19],[-32,-3]],[[3251,12963],[-28,-27],[-69,-26],[-12,-3],[-6,52],[52,39]],[[3188,12998],[-61,40],[4,18],[61,151]],[[3202,13260],[38,24],[48,28],[53,-21]],[[3328,13362],[-61,3],[-3,5],[-5,-4],[-2,0]],[[3168,13311],[-38,-56],[-8,-6],[-10,-20],[-34,-49]],[[3028,13140],[-11,-66],[-98,-94],[-45,-27]],[[2923,12885],[44,-44],[-26,-39],[-54,-41]],[[2796,12658],[-114,-100],[-50,-30],[-2,-8],[-18,-12]],[[2612,12508],[9,-18],[-12,-44],[-5,-7]],[[2515,12403],[-59,-68],[-16,-11],[-28,-2]],[[2242,12186],[-52,-47],[0,0],[-104,-60],[-3,-2],[-28,1]],[[2013,12051],[-37,-45],[-1,-1],[-93,-21]],[[1930,12079],[31,55],[44,43],[18,18]],[[2023,12195],[1,0],[64,11],[60,-55]],[[2158,12214],[3,8],[53,86],[36,31],[90,59]],[[2496,12713],[9,37],[11,24],[32,38]],[[2548,12812],[-10,12],[13,30],[-127,-65],[-37,50]],[[2349,12812],[8,-25],[-30,-41],[-1,0],[-4,6],[-58,105]],[[2264,12857],[-7,-5],[-3,5],[-4,-11],[-22,-17]],[[2228,12829],[-32,22],[-14,36],[-17,-13],[-1,0]],[[2164,12874],[-108,-74],[-31,0],[-7,81]],[[2018,12881],[-24,49],[0,2],[34,58]],[[1930,13084],[-1,0],[-127,-37],[-7,1],[-91,100],[-2,2],[-4,4]],[[1626,13332],[-23,19],[-39,42],[-16,31]],[[1548,13424],[39,121],[67,90],[36,20]],[[1690,13655],[-2,45],[19,55],[16,23],[68,12],[61,-38]],[[1852,13752],[18,10],[11,-5],[18,22],[27,15]],[[1963,13845],[65,4],[23,-5],[10,7],[33,3]],[[2094,13854],[42,57],[0,1],[0,0],[0,0]],[[2136,13912],[-18,89],[-3,10],[-3,2],[-27,31]],[[2134,14098],[-13,21],[15,16],[-24,-1],[-18,30]],[[1976,14104],[-17,-15],[-10,-4],[-11,-17],[-6,-5]],[[1932,14063],[-103,21],[-1,1],[-1,-1],[-5,1]],[[1743,14085],[-80,-22],[-137,44],[-50,97]],[[1413,14267],[-52,23],[-28,26],[8,23],[82,48],[71,38],[202,87],[34,13],[13,0],[62,-6]],[[1781,14436],[21,-13],[-1,-7],[12,0],[7,-5]],[[2012,14405],[17,19],[7,0],[-3,4],[23,28]],[[1629,14840],[-3,2],[-3,3],[-51,23],[-87,41]],[[1534,15004],[195,31],[1,0],[0,0],[21,3]],[[1868,15131],[0,2],[2,1],[26,106],[1,1],[98,90],[19,12]],[[2186,15385],[45,36],[48,22],[55,-5]],[[2334,15438],[88,15],[9,-2],[5,4],[26,4]],[[2720,15506],[48,17],[2,-1],[80,-99],[41,35],[45,5],[97,-7],[43,-15]],[[3212,15359],[170,23],[163,-48],[26,-11]],[[3642,15308],[52,1],[78,-7],[72,-24]],[[4034,15301],[25,-2],[155,-60],[4,-1],[69,-33]],[[4333,15194],[1,0],[0,-795],[-1,-1242],[109,-7],[8,-4],[101,-56],[77,-96],[99,-143],[22,25],[86,97],[11,7],[100,64],[59,-113],[75,-90],[84,-81],[18,-17],[69,-156],[7,-15],[28,-62],[75,-163],[4,-9],[189,-139],[0,0],[3,-138],[-12,-20],[-1,2]],[[5272,12346],[-4,-3],[-70,87],[29,-22]],[[5030,12704],[45,-20],[-61,8],[-1,1]],[[4926,12703],[14,-7],[-63,2],[36,18]],[[1741,11893],[-7,-10],[-34,-11],[-11,0],[-9,18],[-5,18],[116,97],[39,4]]],"transform":{"scale":[0.009001200160021336,0.004583692838654012],"translate":[-180,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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],[270],[271],[272],[273],[274],[275],[276],[277,278],[279],[280],[281],[282],[283],[284],[285],[286],[287],[288],[289],[290],[291],[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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[3]],[[4]],[[5]],[[6]]],"type":"MultiPolygon","properties":{"ct":[-78.05,24.69]},"id":"BHS"},{"arcs":[[354,355,7]],"type":"Polygon","properties":{"ct":[-88.7,17.21]},"id":"BLZ"},{"arcs":[[[133,356,44,357]],[[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]],[[270]],[[271]],[[272]],[[273]]],"type":"MultiPolygon","properties":{"ct":[-101.67,57.72]},"id":"CAN"},{"arcs":[[11,358,13,359]],"type":"Polygon","properties":{"ct":[-84.2,9.97]},"id":"CRI"},{"arcs":[[[274]],[[275]]],"type":"MultiPolygon","properties":{"ct":[-78.96,21.61]},"id":"CUB"},{"arcs":[[276]],"type":"Polygon","properties":{"ct":[-61.35,15.42]},"id":"DMA"},{"arcs":[[360,277]],"type":"Polygon","properties":{"ct":[-70.5,18.9]},"id":"DOM"},{"arcs":[[279]],"type":"Polygon","properties":{"ct":[-61.59,16.19]},"id":"GLP"},{"arcs":[[[280,361]],[[281,362]],[[282,363]],[[283]],[[284]],[[285]],[[286,364,287,365]]],"type":"MultiPolygon","properties":{"ct":[-53.04,74.52]},"id":"GRL"},{"arcs":[[-355,8,366,367,17,368]],"type":"Polygon","properties":{"ct":[-90.36,15.7]},"id":"GTM"},{"arcs":[[-367,9,369,15,370]],"type":"Polygon","properties":{"ct":[-86.61,14.82]},"id":"HND"},{"arcs":[[[-361,278]],[[288]]],"type":"MultiPolygon","properties":{"ct":[-72.66,18.94]},"id":"HTI"},{"arcs":[[289]],"type":"Polygon","properties":{"ct":[-77.28,18.15]},"id":"JAM"},{"arcs":[[[-356,-369,18,371,210]],[[290]],[[291]]],"type":"MultiPolygon","properties":{"ct":[-102.53,23.94]},"id":"MEX"},{"arcs":[[292]],"type":"Polygon","properties":{"ct":[-61.02,14.65]},"id":"MTQ"},{"arcs":[[-360,14,-370,10]],"type":"Polygon","properties":{"ct":[-85.03,12.84]},"id":"NIC"},{"arcs":[[[-359,12]],[[293]],[[372,1]]],"type":"MultiPolygon","properties":{"ct":[-81.25,8.45]},"id":"PAN"},{"arcs":[[294]],"type":"Polygon","properties":{"ct":[-66.47,18.22]},"id":"PRI"},{"arcs":[[-368,-371,16]],"type":"Polygon","properties":{"ct":[-88.87,13.74]},"id":"SLV"},{"arcs":[[295]],"type":"Polygon","properties":{"ct":[-61.27,10.41]},"id":"TTO"},{"arcs":[[[299,300,301,302,303,304]],[[305,306]],[[307]],[[308,309,310,311,312]],[[313,314]],[[315]],[[316]],[[-357,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,-372,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]],[[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]],[[-358,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]]],"type":"MultiPolygon","properties":{"ct":[-99.11,39.52]},"id":"USA"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[373]],"type":"Polygon"},{"arcs":[[374]],"type":"Polygon"},{"arcs":[[375,376]],"type":"Polygon"},{"arcs":[[377,378,379,380,381,382,383,384]],"type":"Polygon"},{"arcs":[[385,386,387,388,389,390]],"type":"Polygon"},{"arcs":[[391]],"type":"Polygon"},{"arcs":[[392]],"type":"Polygon"},{"arcs":[[393]],"type":"Polygon"},{"arcs":[[394]],"type":"Polygon"},{"arcs":[[395]],"type":"Polygon"},{"arcs":[[396]],"type":"Polygon"},{"arcs":[[397]],"type":"Polygon"},{"arcs":[[398,399,400,401]],"type":"Polygon"},{"arcs":[[-399,402,403,404,405,406,407,408,409,410]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[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]],[[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]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277,278]],[[279]],[[280,361]],[[281,362]],[[282,363]],[[283]],[[284]],[[285]],[[286,364,287,365]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[372,1]],[[294]],[[295]],[[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]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-349,411,-351,-354,412,-283,413,-282,414,-287,415,-281,416,-212,417,-213,-214,418,-3,-2,-1,419,-298,-299,420],[-290],[-294],[-215],[-216],[-217],[-276],[-4],[-275],[-316],[-7],[-6],[-5],[-289],[-295],[-279,-278],[-296],[-297],[-280],[-277],[-293],[-218],[-271],[-251],[-264],[-260],[-258],[-234],[-223],[-220],[-286],[-285],[-262],[-284],[-221],[-241],[-235],[-274,-228],[-237],[-265],[-246],[-270],[-240],[-253],[-224],[-255],[-245],[-268],[-236],[-267],[-248],[-232],[-230],[-229],[-273],[-227],[-219],[-325],[-334,-335],[-327,-326],[-239],[-266],[-250],[-249],[-317],[-259],[-244],[-222],[-247],[-225],[-272],[-243],[-254],[-242],[-233],[-226],[-238],[-256],[-263],[-261],[-257],[-321],[-328],[-323,-324],[-322],[-341,-340],[-337,-336],[-332,-331,-330,-329,-333],[-338],[-339],[-231],[-319],[-320],[-347,-346,-345,-344,-343,-342],[-269],[-318],[-252],[-306,-307],[-304,-303,-302,-301,-300,-305],[-312,-311,-310,-309,-313],[-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8],[-291],[-308],[-292],[-314,-315]],[[421,-288]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[422]},{"type":"LineString","arcs":[423]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[424,425,426,427,428,-391,429]],"type":"Polygon","properties":{"ct":[-94.3,46.32],"gu":"USA"},"id":"MN"},{"arcs":[[430,431,432,433,434]],"type":"Polygon","properties":{"ct":[-109.66,47.05],"gu":"USA"},"id":"MT"},{"arcs":[[-428,435,-432,436]],"type":"Polygon","properties":{"ct":[-100.48,47.46],"gu":"USA"},"id":"ND"},{"arcs":[[[437,438,303,439,299,440]],[[441,442]],[[443]],[[311,444,445,309,446]],[[313,447]]],"type":"MultiPolygon","properties":{"ct":[-155.5,19.61],"gu":"USA"},"id":"HI"},{"arcs":[[-435,448,449,450,451,452,453]],"type":"Polygon","properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"arcs":[[[-453,454,455,36,456,457,39,458,459,42,460]],[[461]]],"type":"MultiPolygon","properties":{"ct":[-120.36,47.37],"gu":"USA"},"id":"WA"},{"arcs":[[462,463,464,465,466]],"type":"Polygon","properties":{"ct":[-111.66,34.3],"gu":"USA"},"id":"AZ"},{"arcs":[[-465,467,468,21,469,470,471,25,472,27,473,29,474,475,32,476,34,477,478,479]],"type":"Polygon","properties":{"ct":[-119.62,37.26],"gu":"USA"},"id":"CA"},{"arcs":[[480,481,482,483,484,485]],"type":"Polygon","properties":{"ct":[-105.55,39],"gu":"USA"},"id":"CO"},{"arcs":[[-451,486,-466,-480,487]],"type":"Polygon","properties":{"ct":[-116.65,39.35],"gu":"USA"},"id":"NV"},{"arcs":[[-463,-483,488,489,490]],"type":"Polygon","properties":{"ct":[-106.09,34.42],"gu":"USA"},"id":"NM"},{"arcs":[[-452,-488,-479,491,-455]],"type":"Polygon","properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"arcs":[[-450,492,-484,-467,-487]],"type":"Polygon","properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"arcs":[[-434,493,494,-485,-493,-449]],"type":"Polygon","properties":{"ct":[-107.55,43.03],"gu":"USA"},"id":"WY"},{"arcs":[[495,496,497,498,499,500]],"type":"Polygon","properties":{"ct":[-92.44,34.92],"gu":"USA"},"id":"AR"},{"arcs":[[-426,501,502,503,504,505]],"type":"Polygon","properties":{"ct":[-93.51,42.08],"gu":"USA"},"id":"IA"},{"arcs":[[-481,506,507,508]],"type":"Polygon","properties":{"ct":[-98.38,38.48],"gu":"USA"},"id":"KS"},{"arcs":[[-501,509,-508,510,-504,511,512,513]],"type":"Polygon","properties":{"ct":[-92.48,38.38],"gu":"USA"},"id":"MO"},{"arcs":[[-486,-495,514,-505,-511,-507]],"type":"Polygon","properties":{"ct":[-99.82,41.53],"gu":"USA"},"id":"NE"},{"arcs":[[-482,-509,-510,-500,515,-489]],"type":"Polygon","properties":{"ct":[-97.5,35.58],"gu":"USA"},"id":"OK"},{"arcs":[[-427,-506,-515,-494,-433,-436]],"type":"Polygon","properties":{"ct":[-100.23,44.45],"gu":"USA"},"id":"SD"},{"arcs":[[-498,516,517,195,518,197,519,199,520,201,521,522,523]],"type":"Polygon","properties":{"ct":[-92.01,31.1],"gu":"USA"},"id":"LA"},{"arcs":[[-490,-516,-499,-524,524,525,205,526,527,208,528,529]],"type":"Polygon","properties":{"ct":[-99.35,31.48],"gu":"USA"},"id":"TX"},{"arcs":[[530,531,532,145,533,534]],"type":"Polygon","properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"arcs":[[-531,535,536,537,538,140,539,540,541]],"type":"Polygon","properties":{"ct":[-71.86,42.27],"gu":"USA"},"id":"MA"},{"arcs":[[-538,542,543,544,545,546]],"type":"Polygon","properties":{"ct":[-71.56,43.69],"gu":"USA"},"id":"NH"},{"arcs":[[-532,-542,547,143,548]],"type":"Polygon","properties":{"ct":[-71.57,41.71],"gu":"USA"},"id":"RI"},{"arcs":[[-537,549,550,-543]],"type":"Polygon","properties":{"ct":[-72.66,44.07],"gu":"USA"},"id":"VT"},{"arcs":[[551,552,553,554,191,555,556]],"type":"Polygon","properties":{"ct":[-86.82,32.79],"gu":"USA"},"id":"AL"},{"arcs":[[-554,557,558,173,559,560,561,177,562,179,563,564,182,565,566,185,567,568,188,569,570]],"type":"Polygon","properties":{"ct":[-82.5,28.65],"gu":"USA"},"id":"FL"},{"arcs":[[-553,571,572,573,574,575,576,-558]],"type":"Polygon","properties":{"ct":[-83.45,32.65],"gu":"USA"},"id":"GA"},{"arcs":[[-497,577,-557,578,193,579,-517]],"type":"Polygon","properties":{"ct":[-89.67,32.78],"gu":"USA"},"id":"MS"},{"arcs":[[-574,580,581,168,582,583]],"type":"Polygon","properties":{"ct":[-80.9,33.91],"gu":"USA"},"id":"SC"},{"arcs":[[-503,584,-407,585,586,587,-512]],"type":"Polygon","properties":{"ct":[-89.2,40.06],"gu":"USA"},"id":"IL"},{"arcs":[[-587,588,-405,589,590,591,592]],"type":"Polygon","properties":{"ct":[-86.28,39.9],"gu":"USA"},"id":"IN"},{"arcs":[[-513,-588,-593,593,594,595,596]],"type":"Polygon","properties":{"ct":[-85.28,37.51],"gu":"USA"},"id":"KY"},{"arcs":[[-573,597,598,599,161,600,163,601,602,166,603,-581]],"type":"Polygon","properties":{"ct":[-79.36,35.54],"gu":"USA"},"id":"NC"},{"arcs":[[-592,604,-383,605,606,607,-594]],"type":"Polygon","properties":{"ct":[-82.79,40.28],"gu":"USA"},"id":"OH"},{"arcs":[[-496,-514,-597,608,-598,-572,-552,-578]],"type":"Polygon","properties":{"ct":[-86.32,35.84],"gu":"USA"},"id":"TN"},{"arcs":[[[-596,609,610,611,612,613,159,614,-599,-609]],[[615,616,617]]],"type":"MultiPolygon","properties":{"ct":[-78.89,37.51],"gu":"USA"},"id":"VA"},{"arcs":[[-425,-389,618,619,620,-409,621,-585,-502]],"type":"Polygon","properties":{"ct":[-90,44.65],"gu":"USA"},"id":"WI"},{"arcs":[[-595,-608,622,623,-610]],"type":"Polygon","properties":{"ct":[-80.61,38.64],"gu":"USA"},"id":"WV"},{"arcs":[[624,625,626,627,152,628]],"type":"Polygon","properties":{"ct":[-75.51,38.99],"gu":"USA"},"id":"DE"},{"arcs":[[-612,629]],"type":"Polygon","properties":{"ct":[-77.02,38.9],"gu":"USA"},"id":"DC"},{"arcs":[[-618,630,631,156,632,633,-613,-630,-611,-624,634,-625,635]],"type":"Polygon","properties":{"ct":[-76.79,39.04],"gu":"USA"},"id":"MD"},{"arcs":[[-627,636,637,638,149,639,640]],"type":"Polygon","properties":{"ct":[-74.68,40.21],"gu":"USA"},"id":"NJ"},{"arcs":[[-535,641,147,642,-638,643,644,-379,645,-376,646,-550,-536]],"type":"Polygon","properties":{"ct":[-75.53,42.94],"gu":"USA"},"id":"NY"},{"arcs":[[-607,-381,-644,-637,-626,-635,-623]],"type":"Polygon","properties":{"ct":[-77.81,40.87],"gu":"USA"},"id":"PA"},{"arcs":[[-545,647,135,648,137,649]],"type":"Polygon","properties":{"ct":[-69.24,45.4],"gu":"USA"},"id":"ME"},{"arcs":[[[-620,650,-387,651,-400,-411,652]],[[-605,-591,-403,-402,653,-385,654]]],"type":"MultiPolygon","properties":{"ct":[-84.61,43.48],"gu":"USA"},"id":"MI"},{"arcs":[[[655,329,656,657,658]],[[339,659]],[[660,343,661,662,663,664]],[[665,46,666,667,49,668,669,52,670,54,671,672,673,58,674,60,675,62,676,64,677,66,678,68,679,680,71,681,73,682,75,683,77,684,685,80,686,82,687,688,85,689,690,691,692,693,91,694,93,695,696,697,698,98,699,700,701,102,702,104,703,704,107,705,109,706,111,707,113,708,115,709,117,710,119,711,121,712,713,124,714,126,715,128,716,130,717,132,718]],[[325,719]],[[333,720]],[[336,721]],[[323,722]]],"type":"MultiPolygon","properties":{"ct":[-152.67,64.54],"gu":"USA"},"id":"AK"}]}}} \ No newline at end of file diff --git a/topojson/dist/north-america_50m.json b/topojson/dist/north-america_50m.json new file mode 100644 index 00000000000..ce7751128e9 --- /dev/null +++ b/topojson/dist/north-america_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[52306,12599],[0,0],[1,-1],[1,-1],[8,-13],[35,-60],[4,-8],[2,-3],[1,-1],[1,-2],[2,-4],[2,-4],[12,-28],[2,-4],[5,-11],[3,-7],[3,-18],[3,-16],[0,-3],[1,-8],[0,0],[0,-4],[0,-1],[0,-1],[1,-2],[0,-1],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[-1,-3],[0,-1],[0,0],[-3,-2],[-1,0],[0,0],[-2,1],[-1,1],[-17,18],[-10,10],[-2,2],[-3,4],[0,0],[0,0],[0,0],[-21,32],[-12,20],[-11,20],[0,1],[-2,3],[-4,8],[-4,9],[2,60],[0,15],[1,1],[0,4],[0,1],[0,2],[2,0],[0,0],[1,0],[0,-1],[0,0],[1,0]],[[55669,18215],[0,-1],[0,-1],[1,-4],[-5,-14],[-1,-2],[-1,-1],[-41,-47],[-12,-7],[-8,-3],[-13,-5],[-5,-1],[-4,-1],[3,11],[45,67],[2,2],[1,1],[4,4],[11,12],[0,1],[0,0],[23,10],[0,0],[0,-21]],[[47517,0],[27,66],[7,137],[15,323],[-35,123],[15,91],[12,76],[0,0],[175,172],[234,103],[105,230],[32,123],[0,0],[22,-21],[26,-25],[0,0],[-57,156],[4,16],[64,232],[92,-44],[0,0],[8,89],[5,63],[0,0],[-18,24],[-46,62],[-11,82],[-10,82],[34,171],[46,148],[14,44],[342,149],[48,161],[6,22],[9,89],[9,100],[41,143],[12,41],[0,0],[195,459],[12,99],[-1,55],[0,35],[-16,67],[-27,118],[-8,11],[-17,23],[0,0],[-30,-71],[-57,-19],[0,0],[-47,103],[-4,68],[3,37],[5,58],[37,46],[0,0],[48,183],[14,171],[-37,771],[8,378],[15,743],[-151,412],[-47,99],[-64,134]],[[48575,7208],[-127,292],[-11,26],[-114,435],[-11,87],[25,72],[41,120],[60,94],[18,-22],[174,-209],[0,0],[-33,84],[-180,335],[0,0],[-48,-99],[-21,-43],[-15,32],[-59,129],[-11,46],[-13,56],[-80,130],[-80,131],[-118,91],[-37,6],[-56,8],[-64,-25],[-146,187],[0,0],[-3,74]],[[47666,9245],[-3,78],[0,0],[-63,-54],[-7,9],[-23,31],[221,311],[393,-196],[79,-7],[122,-116],[48,-45],[130,-160],[173,-392],[37,-19],[51,-25]],[[48824,8660],[63,-151],[181,-432],[0,-16],[0,-13],[0,0],[-18,-19],[-14,-14],[0,0],[-1,-107],[3,-2],[30,-19],[24,14],[16,9],[0,0],[13,115],[0,2],[-9,354],[0,0],[-2,5],[-27,95],[0,0],[97,186],[170,330],[83,313],[2,8],[25,29],[57,67],[31,-4],[22,46],[95,202],[7,376],[4,169],[9,42],[23,110],[0,143],[0,55],[267,432],[46,75],[0,0],[128,-75],[24,-14],[9,-1],[91,-10],[0,0],[17,28],[34,60],[-7,158],[11,27],[33,80],[42,3],[31,3],[54,-51],[28,-26],[144,-4],[32,-1],[75,23],[84,136],[161,259],[148,102],[0,0],[152,332],[227,347],[131,-85],[54,-35],[74,-239],[0,0],[-3,-79],[-1,-1],[-94,-170],[-4,-29],[-4,-23],[0,0],[-5,-8],[-39,-59],[-239,-120],[-7,-43],[-9,-49],[9,-87],[11,-104],[97,-305],[32,-196],[29,-173],[-21,-160],[-6,-53],[-140,-330],[-60,-207],[-14,-47],[134,-623],[31,-92],[24,-74],[0,0],[22,-14],[78,1],[72,45],[55,69],[80,210],[15,312],[1,27],[0,0],[-6,33],[-17,89],[-181,550],[0,0],[-6,45],[-38,335],[19,63],[26,89],[44,52],[622,470],[24,4],[53,10],[-24,218],[-113,-62],[-25,10],[-28,247],[2,55],[0,0],[50,183],[81,94],[0,0],[28,-37],[29,-38],[151,-665],[80,36],[72,32],[12,-6],[200,-107],[191,-242],[42,-155],[19,-72],[-21,-131],[20,-164],[1,-4],[10,-30],[26,-78],[37,-54],[62,-19],[37,-10],[416,136],[38,13],[0,0],[50,3],[310,21],[50,-43],[0,0],[-1,-43],[0,0],[40,-114],[52,-151],[48,-58],[241,-109],[110,-50],[111,20],[111,132],[23,28],[269,200],[140,23],[0,0],[-57,83],[-92,29],[-37,2],[-18,0],[-27,-29],[-12,-12],[0,0],[-3,104],[249,2],[449,100],[150,-21],[272,30],[0,0],[-11,-46],[-7,-26],[0,0],[-22,-27],[-219,-70],[-78,-25],[-59,-164],[0,0],[166,-580],[0,0],[5,2],[8,4],[0,0],[57,202],[56,-47],[29,-25],[98,-192],[75,31],[0,0],[122,-87],[0,0],[27,-54],[60,-72],[90,-4],[64,-97],[10,-16],[27,-84],[15,-47],[-84,-127],[0,0],[-27,-368],[0,0],[41,-83],[5,-11],[0,0],[-42,-85],[-10,-19],[8,-24],[12,-36],[202,-20],[5,0],[0,0],[96,96],[82,-37],[61,-27],[23,-37],[94,-162],[0,0],[15,13],[5,5],[34,-27],[0,-1],[0,0],[267,-339],[234,-474],[35,-106],[14,-42],[30,-120],[1,-166],[-5,-80],[-2,-32],[-29,-55],[-11,-74],[-11,-73],[-13,-390],[0,0],[18,39],[1,9],[45,331],[7,17],[25,56],[54,17],[3,1],[121,-71],[283,-495],[99,-138],[41,-178],[5,-195],[0,0],[26,101],[10,38],[40,35],[17,15],[0,0],[301,-97],[131,-4],[53,-2],[46,57],[109,27],[103,-21],[9,-2],[0,0],[123,-81],[6,19],[0,0],[-32,78],[0,0],[68,25],[41,-5],[55,-5],[237,-86],[139,-79],[0,0],[11,-58],[-4,-145],[0,0],[34,129],[51,21],[164,-209],[218,-95],[5,-3],[90,-144],[429,-687],[147,-448],[0,0],[32,196],[3,19],[0,0],[163,-313],[18,-74],[21,-91],[53,-809],[160,-918],[95,-367],[21,-18],[8,-7],[59,21],[158,-140],[0,0],[5,-30],[30,-227],[-9,-98],[-9,-89],[-33,-159],[-122,-191],[-88,-190],[-41,-153],[-11,-41],[-21,-45],[-126,-266],[-29,-31],[-37,-39],[-44,-73],[-25,-41]],[[56233,17131],[29,-45],[13,-21],[16,-32],[0,-1],[0,0],[0,-1],[-1,-12],[-1,-5],[0,-2],[0,0],[-2,-4],[-3,-4],[0,0],[-2,-4],[0,0],[-5,-5],[-14,-12],[-18,-11],[-22,5],[-6,2],[-3,2],[-12,5],[-13,7],[-1,1],[0,0],[0,1],[-1,1],[0,1],[-1,3],[-1,4],[0,3],[0,0],[0,1],[0,1],[0,0],[0,1],[0,2],[-1,5],[0,21],[-1,29],[6,20],[4,12],[14,33],[1,1],[3,6],[1,0],[2,3],[1,1],[18,-12]],[[56232,17672],[1,-1],[0,-1],[2,-4],[2,-4],[9,-20],[3,-9],[5,-11],[3,-9],[0,-1],[0,0],[2,-9],[0,-1],[1,-2],[0,-1],[0,-2],[2,-23],[0,-1],[0,-14],[-1,-39],[0,0],[-5,-2],[-7,2],[-1,1],[-4,2],[-23,33],[-18,24],[-6,65],[9,13],[26,14],[0,0]],[[48448,25151],[0,0],[90,-155],[31,-181],[1,-6],[2,-9],[2,-5],[1,-5],[1,-1],[1,1],[0,0],[1,0],[54,-103],[1,-2],[3,-7],[0,-1],[1,-1],[0,-3],[1,-3],[2,-8],[1,-3],[1,-3],[0,-1],[3,-27],[1,-13],[2,-66],[3,-72],[-3,-14],[-18,-66],[-39,-19],[0,0],[0,-14],[-1,-16],[-13,-25],[0,0],[-3,-5],[-11,-16],[0,-1],[-11,-11],[-1,-1],[-32,-25],[-6,-6],[-18,19],[0,0],[0,0],[-15,23],[-104,155],[-28,177],[0,0],[20,47],[11,25],[40,94],[20,80],[2,29],[6,56],[1,20],[0,8],[-1,27],[-4,21],[-4,18],[4,46],[5,48]],[[50881,21093],[-38,-107],[-10,-28],[-2,-7],[-10,-22],[-93,-24],[-41,-8],[-97,-19],[0,0],[-1,0],[-5,1],[-2,2],[0,1],[-2,4],[-1,1],[0,1],[-1,1],[-3,16],[0,0],[-1,14],[-6,46],[25,94],[10,11],[62,73],[44,21],[9,-8],[15,-15],[1,-3],[0,0],[3,-10],[1,-1],[0,-1],[0,-1],[3,-6],[1,-2],[3,-3],[0,-1],[27,-18],[0,0],[1,-1],[1,0],[0,0],[5,2],[34,23],[1,1],[2,3],[3,2],[2,1],[2,2],[4,4],[1,1],[1,1],[0,0],[1,1],[3,4],[1,1],[2,5],[2,3],[0,1],[10,41],[22,85],[0,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,2],[5,4],[5,4],[2,2],[0,0],[1,1],[1,0],[5,2],[0,0],[1,1],[1,-1],[0,0],[1,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[1,-8],[0,-1],[1,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-2],[0,-24],[-1,-22],[-2,-29],[-2,-26],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-13],[-1,-4],[-1,-3],[-11,-50]],[[50911,21509],[24,-38],[0,-39],[-44,-30],[-12,1],[0,0],[-4,21],[-6,33],[2,5],[8,18],[17,22],[4,5],[7,5],[0,1],[1,0],[0,0],[1,0],[0,0],[0,0],[0,0],[1,-2],[1,-1],[0,-1]],[[50864,22394],[0,0],[93,-36],[24,-13],[13,-12],[28,-27],[4,-6],[3,-4],[2,-7],[-2,-19],[-4,-8],[-11,-16],[-3,-3],[-3,-1],[0,0],[0,0],[-1,1],[-10,13],[-1,2],[-1,0],[0,1],[-8,16],[-7,13],[-2,3],[0,1],[-1,1],[0,1],[-1,2],[-8,14],[-1,2],[0,0],[-1,1],[0,0],[-3,3],[-1,1],[-1,1],[-8,2],[0,0],[-1,0],[0,0],[0,0],[-43,4],[-18,-4],[-21,-15],[-27,23],[-9,13],[-5,7],[0,0],[3,12],[11,56],[0,0],[21,-22]],[[50251,22499],[-2,-3],[0,0],[0,0],[-2,0],[0,3],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,4],[0,3],[0,1],[0,2],[0,1],[0,2],[1,10],[1,6],[0,2],[4,10],[0,1],[38,76],[1,2],[0,1],[0,0],[0,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-2,-6],[0,-2],[-1,-2],[-2,-8],[0,-1],[0,-2],[-16,-46],[-8,-22],[-12,-31]],[[50492,22664],[9,-152],[-1,-8],[-1,-3],[-1,-7],[-6,-26],[-9,-35],[-45,-121],[-4,-9],[-4,-7],[0,-1],[-5,-8],[-81,-94],[-17,-1],[-33,-3],[0,0],[70,104],[92,133],[-2,66],[-3,61],[-15,82],[0,0],[28,37],[16,9],[6,3],[0,0],[0,-2],[6,-18]],[[50303,22779],[88,-75],[20,-17],[9,-10],[0,0],[-29,-48],[-42,7],[-14,5],[-36,12],[-10,11],[-22,90],[-2,13],[-5,27],[1,2],[0,0],[2,2],[1,1],[1,0],[3,1],[1,0],[0,0],[2,0],[15,-3],[8,-8],[9,-10]],[[50577,23064],[9,-7],[0,0],[3,-5],[-1,-2],[-23,-12],[-9,-4],[-5,-2],[-3,0],[-11,0],[0,0],[0,0],[-2,0],[0,0],[-22,23],[0,1],[0,1],[5,3],[4,2],[14,1],[35,1],[6,0],[0,0]],[[49661,23412],[20,-12],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[11,-12],[2,-2],[1,-1],[0,0],[1,-1],[1,-2],[0,0],[0,-2],[4,-8],[1,-5],[0,0],[0,-1],[0,0],[0,-1],[-1,0],[0,0],[-20,11],[-26,13],[-11,12],[0,0],[-6,15],[0,6],[0,0],[0,2],[1,2],[0,0],[0,1],[1,1],[0,0],[0,0],[0,0],[14,-10],[2,-2]],[[49797,23646],[0,0],[1,-1],[4,-8],[1,-2],[3,-4],[2,-5],[12,-29],[27,-89],[143,-467],[11,-25],[3,-7],[12,-30],[7,-25],[6,-62],[2,-22],[1,-1],[0,-1],[0,-9],[3,-25],[-1,-1],[-1,-4],[0,-1],[0,-1],[-1,-2],[-1,-3],[0,0],[-10,-11],[0,0],[-58,156],[-75,204],[-19,179],[-37,123],[-25,94],[-12,44],[-1,11],[-2,19],[0,1],[0,0],[2,3],[1,2],[1,0],[1,-1]],[[49487,23636],[72,-125],[7,-13],[0,0],[-10,-19],[-91,79],[5,26],[2,12],[15,40],[0,0]],[[50039,23677],[7,-3],[1,-1],[0,0],[3,-3],[0,0],[1,0],[0,-1],[0,-1],[1,-4],[1,-6],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[-2,-18],[-2,-16],[-10,-10],[-1,-1],[0,0],[-8,-3],[-52,10],[-1,1],[0,1],[0,0],[-1,6],[-2,10],[0,1],[1,4],[0,1],[0,0],[0,1],[0,0],[1,2],[6,5],[4,4],[3,3],[3,3],[3,1],[2,2],[12,7],[6,3],[17,8],[6,2],[0,0]],[[49459,23639],[0,0],[-1,0],[-3,-3],[-1,0],[-1,-1],[-5,-3],[-1,-1],[0,0],[-1,1],[-1,1],[-1,6],[0,1],[0,12],[1,16],[2,8],[2,4],[0,0],[9,-20],[1,-10],[1,-8],[-1,-1],[0,-2]],[[48668,23641],[-1,-1],[-1,0],[-7,8],[4,40],[0,0],[0,0],[1,-1],[1,-1],[0,0],[1,-1],[5,-10],[4,-6],[0,0],[-2,-16],[-2,-3],[-3,-9]],[[48734,23776],[-32,-72],[0,0],[-7,-2],[0,0],[-11,12],[-10,11],[3,1],[7,3],[5,8],[0,0],[0,1],[1,4],[-2,8],[0,0],[14,16],[14,11],[6,5],[4,1],[2,1],[6,-8]],[[49322,23935],[-10,25],[0,0],[-29,78],[0,0],[10,-1],[5,0],[0,0],[16,-59],[8,-30],[0,-1],[1,-3],[0,-4],[2,-5],[0,0],[-3,0]],[[50215,24080],[3,-15],[0,-2],[1,-6],[6,-39],[-3,-13],[-4,-19],[-17,-67],[-2,-8],[0,0],[0,0],[-1,0],[-1,-1],[0,-1],[-1,1],[0,0],[-12,0],[-1,0],[0,0],[-16,1],[-3,8],[8,100],[2,25],[1,1],[0,2],[0,0],[1,2],[0,4],[1,1],[0,1],[1,2],[1,2],[2,7],[0,2],[1,1],[5,8],[1,0],[0,1],[1,0],[13,6],[8,3],[1,0],[1,0],[1,-2],[2,-5]],[[48713,24170],[1,0],[0,-1],[3,-3],[1,-2],[1,-2],[0,-1],[14,-72],[7,-36],[16,-164],[2,-18],[1,-11],[-2,-43],[-2,-13],[-2,-13],[-1,-6],[-2,-8],[-3,-6],[-3,3],[-2,2],[-7,10],[-1,3],[-2,3],[0,3],[0,5],[0,1],[0,2],[0,2],[0,1],[0,0],[-1,2],[0,0],[-1,1],[-8,1],[-31,-30],[0,0],[-24,38],[-8,162],[26,109],[16,66],[3,6],[2,4],[6,5],[0,0],[1,0],[0,0],[0,0]],[[48610,24219],[0,0],[0,-1],[0,0],[2,-3],[1,-1],[1,-1],[0,0],[0,-1],[2,-2],[1,-1],[1,-3],[0,-1],[0,-1],[-1,-3],[-1,-2],[-32,-66],[0,0],[-16,-10],[-21,-13],[-1,0],[0,0],[-4,0],[0,0],[-1,1],[-4,9],[-2,5],[0,0],[0,0],[-1,1],[-4,13],[0,1],[0,4],[-1,1],[0,3],[0,3],[1,0],[0,3],[0,0],[1,0],[1,1],[0,0],[2,-1],[1,-1],[1,0],[27,5],[11,5],[1,1],[0,0],[1,1],[0,1],[1,4],[1,25],[0,0],[18,21],[2,1],[3,1],[9,1]],[[49234,24202],[8,-12],[1,-2],[2,-3],[6,-13],[1,-3],[1,-3],[0,-5],[0,0],[0,0],[0,-2],[0,0],[-1,0],[-1,-1],[-5,3],[0,1],[-6,4],[-4,10],[-14,33],[1,3],[0,1],[0,1],[1,6],[0,3],[0,0],[1,0],[0,0],[0,0],[1,1],[1,-1],[0,0],[0,-1],[7,-20]],[[48551,24236],[4,-3],[5,-4],[0,-1],[0,0],[5,-5],[-6,-38],[-2,-3],[-1,-2],[0,0],[-1,-2],[-4,-6],[-9,-3],[-7,-2],[-5,1],[-16,24],[-2,3],[0,0],[6,6],[1,0],[0,0],[2,1],[0,0],[3,3],[21,23],[1,2],[5,5],[0,1],[0,0],[0,0]],[[48543,24244],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,-3],[-1,0],[-6,-13],[0,-1],[-1,0],[0,0],[-1,-1],[-19,-20],[-3,-1],[-1,0],[0,0],[-1,-1],[0,0],[0,0],[-1,1],[-4,9],[-1,2],[0,2],[-1,5],[-1,3],[1,5],[0,0],[0,1],[40,15]],[[48677,24081],[-16,-63],[0,0],[-34,-37],[-49,113],[53,108],[0,0],[30,39],[0,0],[1,0],[1,1],[0,1],[0,0],[5,5],[1,0],[12,9],[0,0],[1,-1],[0,-1],[1,-4],[1,-1],[0,0],[0,0],[1,-11],[-5,-92],[-3,-66]],[[48608,24305],[2,-2],[-1,-7],[-3,-10],[0,-1],[0,0],[-1,-2],[0,0],[0,0],[-14,-12],[-3,1],[0,0],[0,0],[0,1],[-1,2],[-1,5],[-2,8],[-1,9],[0,3],[1,2],[0,1],[0,0],[0,1],[0,0],[0,0],[1,1],[1,0],[11,1],[5,0],[4,0],[2,-1]],[[48597,24335],[-1,0],[0,0],[-2,-1],[-1,-1],[-7,-7],[0,0],[0,0],[-4,-4],[-1,-2],[0,0],[0,-2],[0,-2],[0,-5],[1,-3],[-2,-6],[-1,-1],[-1,-1],[-12,-13],[-10,-7],[0,0],[-1,0],[-1,-1],[-2,2],[-1,0],[0,0],[0,1],[0,1],[0,2],[0,2],[4,4],[13,12],[16,26],[1,1],[11,9],[0,0],[0,-2],[1,-2]],[[48656,24301],[-6,-3],[-10,-5],[-6,21],[7,23],[5,14],[0,0],[9,3],[1,-53],[0,0]],[[48320,24626],[4,0],[0,0],[1,-17],[-1,-2],[0,0],[0,-1],[0,-1],[-1,-1],[-12,-9],[0,0],[-1,0],[-2,0],[-2,0],[-1,1],[-1,1],[-1,0],[0,0],[-1,0],[0,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,3],[0,1],[0,0],[1,11],[0,0],[0,1],[1,0],[10,5],[2,1],[0,0],[1,1],[6,1]],[[49633,24635],[2,-4],[10,-19],[102,-294],[31,-88],[8,-27],[13,-42],[1,-3],[0,-1],[0,-1],[0,-1],[8,-35],[2,-9],[0,-3],[1,-2],[1,-8],[0,-2],[0,-3],[0,-1],[0,0],[0,0],[0,0],[-1,-1],[-1,0],[-35,-9],[-43,-11],[-14,5],[-1,1],[-1,0],[0,1],[-1,0],[0,0],[-5,5],[-1,1],[0,1],[-10,17],[0,0],[0,2],[-1,2],[1,1],[0,2],[0,0],[0,1],[1,0],[0,1],[0,0],[6,5],[23,22],[11,9],[0,0],[-13,128],[-79,265],[-2,5],[-1,2],[0,2],[-1,1],[0,1],[-8,16],[-2,4],[0,0],[0,0],[-2,3],[-17,23],[-8,2],[-2,0],[-2,1],[-3,7],[-3,9],[-1,14],[17,18],[4,1],[4,-3],[7,-6],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,0]],[[48828,25034],[6,-2],[8,-2],[2,0],[10,-4],[20,-26],[0,-1],[3,-7],[2,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-8,-16],[-14,-8],[-33,-20],[-11,-5],[-5,-2],[-1,0],[-14,-2],[-11,1],[-10,0],[-33,18],[-2,4],[0,0],[-1,2],[-2,8],[4,13],[1,1],[0,0],[1,4],[12,12],[8,9],[15,13],[8,5],[8,5],[1,1],[3,1],[13,1],[15,2],[0,0],[1,0],[4,1],[0,0]],[[49075,25275],[-2,-2],[-1,-2],[0,0],[0,-1],[0,0],[-1,1],[-1,0],[2,9],[0,1],[0,0],[0,0],[0,1],[0,2],[1,1],[0,3],[1,1],[1,4],[1,3],[0,0],[0,1],[1,2],[6,18],[6,15],[7,20],[1,2],[0,1],[0,0],[0,0],[1,1],[1,-2],[1,0],[0,0],[0,-1],[0,0],[0,-1],[0,0],[1,-2],[0,-1],[0,-1],[-8,-26],[-8,-21],[-10,-26]],[[49151,25502],[0,0],[-7,-3],[0,0],[-6,-18],[2,-21],[0,-4],[1,-8],[4,-6],[75,-94],[73,-57],[117,-183],[1,-2],[1,-3],[1,-1],[0,-1],[8,-25],[0,-25],[1,-30],[0,-32],[-17,-210],[-16,-117],[0,0],[-17,5],[0,0],[-15,48],[-1,27],[0,0],[33,100],[19,119],[1,11],[0,6],[1,37],[0,1],[0,0],[0,0],[0,4],[0,5],[0,4],[0,2],[0,11],[0,2],[0,1],[0,0],[-3,10],[-4,21],[-6,15],[-60,99],[-7,11],[-43,54],[-92,112],[-72,1],[-16,0],[23,130],[0,0],[7,1],[14,3]],[[47909,25671],[11,-7],[2,-2],[2,-1],[5,-6],[3,-4],[0,-1],[-1,0],[0,0],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,0],[-1,0],[-22,4],[0,1],[0,1],[0,1],[0,0],[1,6],[0,0],[5,13]],[[47929,25733],[3,-30],[1,-14],[0,0],[-2,-1],[-4,-2],[-21,-9],[0,0],[-1,3],[0,1],[1,2],[1,5],[1,3],[6,20],[0,0],[1,3],[4,12],[3,6],[0,1],[1,1],[1,1],[1,2],[1,0],[0,0],[1,1],[0,0],[1,0],[0,-1],[1,0],[0,-3],[0,-1]],[[48583,25749],[0,-1],[1,0],[0,-2],[0,-1],[1,-6],[1,-2],[0,-1],[0,0],[1,-1],[0,-1],[1,-3],[5,-13],[3,-8],[4,-11],[1,-2],[7,-12],[2,5],[0,0],[1,0],[1,0],[0,-1],[0,-1],[2,-25],[1,-12],[0,-1],[0,0],[0,-1],[0,0],[-1,-1],[0,0],[0,0],[-2,1],[-3,2],[-3,4],[-8,17],[0,0],[-9,28],[-2,9],[-3,15],[0,0],[0,-1],[0,-1],[0,0],[-6,2],[-3,23],[0,0],[2,0],[0,-1],[0,0],[1,-1],[1,-1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[1,3],[0,0],[-1,1],[0,4],[0,1],[-1,3],[0,0],[0,2],[0,1],[0,0],[1,0],[1,-2],[0,0],[1,-1],[1,-10],[1,-5],[0,-2]],[[48745,26253],[0,-1],[0,-1],[0,-2],[-3,-12],[0,-1],[0,-2],[-9,-23],[0,0],[-3,12],[-4,33],[-1,9],[6,5],[4,3],[10,-15],[0,-3],[0,-1],[0,-1]],[[48866,26293],[0,-2],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-16],[-1,-5],[0,1],[-1,1],[-2,4],[-14,31],[0,0],[0,3],[0,0],[11,9],[1,0],[1,0],[1,0],[0,0],[1,1],[0,0],[3,-11],[1,-7]],[[48884,26347],[3,-2],[1,-3],[6,-13],[0,-2],[0,-1],[0,-3],[1,-3],[0,0],[-1,-2],[-4,-16],[-1,-6],[0,-1],[-1,0],[0,0],[-1,-1],[-4,-1],[0,0],[-2,4],[-1,1],[0,8],[-1,10],[-1,23],[0,8],[0,0],[1,3],[0,0],[4,-2],[1,-1]],[[48886,26426],[-3,-12],[-4,-16],[-5,-10],[-1,-2],[0,0],[1,-6],[-6,-6],[-3,-3],[5,35],[1,5],[0,1],[0,6],[0,0],[2,4],[4,7],[3,5],[1,1],[3,-5],[2,-4]],[[48889,26489],[-5,-22],[-5,-19],[-3,-12],[-3,-6],[-1,0],[-1,-1],[0,0],[0,0],[0,0],[-2,1],[0,0],[-12,19],[0,4],[1,5],[0,1],[0,2],[0,1],[0,2],[5,9],[1,0],[0,0],[1,1],[2,0],[1,0],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[3,1],[5,3],[2,6],[3,12],[7,-2]],[[49008,26388],[-2,5],[0,2],[0,1],[0,0],[-1,1],[0,6],[0,1],[0,1],[0,1],[-2,22],[3,15],[0,2],[0,1],[0,1],[1,3],[1,5],[1,8],[2,7],[1,6],[1,4],[6,30],[0,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,-2],[0,-1],[0,0],[-1,-6],[-7,-55],[-6,-53],[0,0]],[[48910,26518],[9,-37],[-2,-9],[-3,-12],[-9,-17],[-3,-7],[-1,0],[0,0],[0,0],[0,0],[-4,13],[-1,7],[8,56],[0,0],[1,2],[1,1],[0,1],[1,0],[1,2],[1,0],[1,0]],[[48606,26542],[0,-1],[0,-1],[1,-2],[0,-3],[-2,-16],[0,-2],[0,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-4],[-2,-7],[-3,-12],[0,-2],[-1,0],[0,0],[0,-1],[0,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,3],[-1,1],[-2,4],[0,1],[-1,2],[-1,4],[11,38],[1,1],[0,0],[1,1],[3,2]],[[48601,26567],[3,0],[1,0],[0,-1],[1,-1],[0,-1],[0,0],[0,-2],[0,0],[0,-1],[0,-1],[-2,-5],[0,-1],[-1,-1],[-12,-42],[0,0],[-2,0],[-1,-1],[-8,22],[-1,3],[0,0],[0,1],[-1,3],[0,1],[0,0],[-2,13],[0,2],[3,0],[0,0],[3,2],[19,10],[0,0],[0,0]],[[48594,26605],[0,0],[0,-1],[0,0],[0,-1],[-9,-16],[-4,-6],[-5,-4],[-3,-4],[-5,-1],[0,0],[-1,0],[-2,0],[-1,3],[-5,10],[-1,0],[0,2],[0,2],[30,26],[1,0],[1,0],[3,-8],[1,-2],[0,0]],[[48958,26614],[1,-4],[2,-4],[0,0],[-2,0],[0,-1],[0,0],[-3,2],[-2,1],[0,1],[0,0],[-3,3],[-3,2],[-16,20],[-12,15],[-1,2],[0,2],[0,1],[0,0],[1,0],[2,2],[3,3],[1,1],[0,0],[32,-46],[0,0]],[[48268,26682],[0,0],[82,-40],[10,-3],[17,3],[5,2],[97,23],[58,-62],[0,0],[-104,-45],[-199,-84],[0,0],[-12,89],[5,17],[22,75],[0,0],[4,5],[15,20]],[[48795,26759],[143,-206],[36,-52],[0,0],[1,-2],[1,-5],[2,-41],[-2,-14],[-5,-47],[-30,-261],[-27,-230],[0,0],[-28,-21],[-14,-10],[0,0],[-59,106],[0,0],[81,286],[18,95],[21,111],[-1,22],[0,31],[-104,138],[-38,72],[-9,17],[-12,35],[0,0],[6,-5],[20,-19]],[[48692,26845],[0,0],[-3,-5],[-8,-14],[-79,38],[0,0],[7,-1],[83,-18]],[[48440,26969],[-2,-6],[-5,-10],[-9,-18],[-1,-1],[-2,-1],[0,0],[-10,-4],[-1,2],[0,0],[0,1],[1,0],[1,5],[0,1],[1,2],[1,1],[2,5],[2,3],[0,0],[5,7],[15,18],[3,1],[0,0],[-1,-6]],[[43616,18454],[-5,-17],[-28,-81],[0,0],[125,-23],[0,0],[-9,-356],[-26,-153],[-11,-60],[-19,-275],[-16,-218],[32,-319],[0,0],[-18,-126],[-32,-220],[-76,-291],[-22,-47],[-20,-42],[0,0],[-20,6],[-17,5],[-43,-63],[-87,-251],[-3,-29],[-2,-33]],[[43319,15861],[48,-21],[22,-9],[55,6],[72,8],[37,-23],[15,-9],[27,-36],[62,-81]],[[43657,15696],[61,-18],[0,0],[83,158],[90,46],[99,-61],[58,-36],[273,-47],[184,21],[209,112],[532,37],[167,-88],[59,-31],[510,-671],[89,-150]],[[46071,14968],[-38,-32],[-8,-45],[-29,-149],[33,-276],[-115,-673],[-34,-369],[-6,-170],[0,-17],[3,-100],[26,-663],[-18,-78],[-8,-32],[-31,-22],[-19,-111],[-23,-270],[-7,-298],[-3,-119],[-64,-191],[3,-89],[1,-41],[27,-176],[34,-109],[0,0],[12,-10],[21,-17],[0,0]],[[45828,10911],[2,-11],[80,-393],[50,-164],[9,-30],[270,-634],[114,-124]],[[46353,9555],[49,-86],[41,-71],[8,-208],[51,-181],[84,-98],[70,6],[54,5],[92,-43],[54,-99],[6,-1],[89,-17],[84,33],[72,28],[264,299],[83,69],[97,82],[50,-87]],[[47601,9186],[42,-72],[75,-26],[0,0]],[[47718,9088],[18,-41],[37,-88],[8,-73],[-40,-6],[-30,-4],[0,0],[-10,-35],[-17,-61],[2,-73],[4,-108],[-202,-282],[-5,-5],[-26,-26],[-44,-2],[-10,0],[0,0],[-19,-303],[161,-356],[21,-94],[9,-39],[0,0],[-12,-55],[-199,-212],[-84,-20],[-47,-12],[-30,5],[-54,8],[-19,40],[-3,5],[-43,453],[-16,164],[0,0],[-26,36],[-9,-11],[-32,-36],[0,-110],[0,-77],[0,0],[-137,69],[-58,205],[-66,235],[-72,-10],[-76,28],[-25,10],[-42,26],[-2,34],[-10,16],[-26,41],[-139,-11],[-35,-3],[-30,-70],[-90,-215]],[[46193,8025],[0,0],[-129,585],[0,0],[-83,109],[0,0],[-4,-1],[-45,-10],[-13,-29],[38,-104],[48,-53],[8,-150],[-13,-8],[-8,5],[-105,58],[-64,105],[-23,38],[0,0],[4,75],[1,12],[0,0],[35,62],[9,57],[7,39],[-11,176],[-2,43],[0,0],[-151,264],[-139,156],[-29,14],[-57,29],[0,0],[-101,222],[-21,101],[-20,97],[-229,285],[-20,25],[8,-132],[1,-19],[43,-100],[0,0],[27,-27],[55,-28],[35,-124],[0,0],[-90,-204],[-29,-26],[-9,14],[-185,277],[-53,36],[0,0],[-47,148],[-15,46],[-35,240],[57,186],[25,545]],[[44864,11059],[-392,708],[-36,117],[-78,248],[-135,236],[-228,402],[21,158],[0,0],[80,36]],[[44096,12964],[0,0],[-32,107],[-4,14],[0,64],[2,219],[0,0],[-42,17],[-50,-46],[-82,-8],[-33,52]],[[43855,13383],[-12,40],[0,0],[-14,-53],[0,-30],[23,-45],[16,-31],[-61,-103],[-36,-22],[-125,12],[-130,13],[-133,59],[-229,233],[-30,6],[-66,12],[-180,118],[-20,20],[-107,108]],[[42751,13720],[-106,82],[-113,89],[-225,-2],[-112,36],[-3,1],[-1,1],[-108,92],[-59,75],[-49,62],[-221,354]],[[41754,14510],[-350,728],[-235,428],[-74,104],[-107,150],[-183,157],[-66,41],[-55,34],[-38,10],[-74,19],[-209,-37],[-117,-128],[-92,-101],[-100,-72],[-140,-100],[-58,-64],[-21,-23],[-109,-26],[-188,100],[-153,164],[-156,45],[-77,40],[-96,51],[-226,205],[-83,97],[-41,48],[-47,101],[-221,115],[-99,31],[-90,27],[-53,59],[-75,84],[-447,352],[-101,80],[-323,501],[-86,102],[-101,119],[-80,-7],[-32,-3],[-108,52],[-78,38],[-363,261],[-104,326],[-6,10],[-58,108],[-89,115],[-42,53],[-433,459],[0,4],[1,8],[-13,54],[-18,78],[-37,62],[-47,79],[-110,305],[-85,351],[-10,43],[0,0],[-2,25],[12,17],[33,48],[132,40],[34,55],[4,29],[4,37],[-35,83],[17,304],[11,35],[9,28],[17,349],[0,0],[-26,82],[-65,80],[-29,36],[-79,294],[-30,416],[-39,174],[-30,134],[-241,465],[-32,63],[-236,654],[-22,44],[-23,47],[-108,184],[-351,501],[-114,342],[-3,11],[-77,199],[-37,75],[-1,2],[-3,6],[-304,253],[-111,129],[-36,42],[-7,73],[-19,199],[50,205],[40,165],[1,113],[0,17],[-16,91],[-58,118],[-21,8],[-54,23],[-459,595],[-32,88],[-8,287],[0,38],[1,80],[32,56],[-127,100],[-11,3],[-70,19],[-161,234],[-18,26],[0,0],[-4,7],[-118,204],[-54,120],[-37,82],[-175,530],[-144,433],[-127,479],[-139,528],[-14,417],[-127,236],[-140,191],[-134,105],[-27,21],[-26,-81],[0,0],[-18,1],[-52,0],[-134,171],[-47,60],[-38,34],[-64,56],[-2,1],[-6,2],[-10,-3],[-1,0],[0,0],[-7,-121],[-34,-553],[28,-123],[20,-37],[16,-30],[28,-194],[30,-290],[-7,-166],[-5,-121],[22,-81],[23,-86],[84,-203],[0,0],[156,-190],[192,-320],[0,0],[22,-145],[25,-158],[22,-42],[19,-38],[203,-351],[56,-98],[0,0],[32,-112],[20,-217],[24,-253],[12,-50],[17,-70],[218,-437],[0,0],[50,-127],[66,-165],[0,0],[-2,-72],[47,-104],[8,5],[27,20],[61,-89],[54,-77],[99,-435],[25,-175],[0,0],[-5,-59],[-7,-86],[23,-168],[187,-600],[43,-141],[47,-382],[-1,-82],[-1,-58],[14,-90],[15,-89],[27,-83],[6,-11],[23,-43],[84,-37],[20,5],[15,4],[0,0],[2,31],[78,23],[60,-98],[88,-143],[96,-258],[65,-173],[27,-145],[6,-34],[0,0],[-22,-191],[-22,-48],[-18,-40],[-165,-227],[-56,25],[0,0],[-197,717],[-286,478],[-97,120],[-42,41],[-100,99],[-49,-5],[-29,-2],[0,0],[-172,187],[-90,249],[-1,120],[65,482],[2,162],[2,194],[-41,229],[-2,10],[0,0],[-67,172],[-101,126],[-240,302],[-592,552],[-10,17],[-81,143],[-44,104],[-42,99],[-174,264],[-22,73],[274,-70],[94,99],[53,154],[62,181],[2,51],[6,209],[-52,151],[-297,577],[-45,88],[-392,479],[0,0],[-94,515],[-63,341],[-134,495],[-61,177],[-53,156],[-41,171],[-86,355],[-50,146],[-57,166],[-33,206],[-6,36]],[[29912,32475],[1143,184]],[[31055,32659],[21,-265],[0,0]],[[31076,32394],[-21,265]],[[31055,32659],[-1143,-184]],[[29912,32475],[-75,477]],[[29837,32952],[-39,156]],[[29798,33108],[-68,164]],[[29730,33272],[-259,364],[-2,4],[0,0],[-139,149]],[[29330,33789],[-31,33],[0,0],[-9,8],[-393,321],[-59,72],[-112,135]],[[28726,34358],[-327,37],[-81,10],[-23,32],[-41,57],[0,0],[-12,475]],[[28242,34969],[-177,426],[-7,19],[-67,137],[-301,616],[-95,725],[-14,-4],[-22,-7],[-41,32],[-120,233],[-52,376],[1,190],[0,0],[8,10],[13,18],[35,-3],[5,-26]],[[27408,37711],[11,-48],[-13,-23]],[[27406,37640],[0,0],[15,-116],[0,0]],[[27421,37524],[97,-91],[35,0]],[[27553,37433],[-38,166]],[[27515,37599],[-96,237],[-157,-4],[0,0],[-28,29],[-97,98],[0,0],[-1,29]],[[27136,37988],[-1,55]],[[27135,38043],[-123,385],[0,0],[-230,403],[-35,323],[-2,88]],[[26745,39242],[-4,187],[10,59]],[[26751,39488],[-34,235]],[[26717,39723],[-60,141],[-55,129]],[[26602,39993],[-134,195],[0,0],[-22,181],[0,0],[138,546]],[[26584,40915],[8,606]],[[26592,41521],[-48,343]],[[26544,41864],[-35,105],[-18,131]],[[26491,42100],[-46,336],[-41,227],[-3,8],[-19,74],[95,528],[53,210],[0,0],[39,348],[83,1229]],[[26652,45060],[13,422],[-12,603],[0,0],[141,27],[15,12],[30,22],[11,22],[6,13],[0,0],[-109,13],[-17,2],[0,0],[-15,15]],[[26715,46211],[-78,76]],[[26637,46287],[15,342],[50,229]],[[26702,46858],[0,0],[15,10],[0,0]],[[26717,46868],[-6,11],[-142,56]],[[26569,46935],[-97,526],[-36,198]],[[26436,47659],[-63,97],[-27,42],[0,0],[-25,82],[-13,193]],[[26308,48073],[-15,215],[0,0],[98,-27],[326,-193]],[[26717,48068],[409,-60],[110,21],[47,-252],[-51,-110],[-6,-14],[0,0],[-20,-20],[-7,6],[-21,17]],[[27178,47656],[-39,-99],[-76,-193],[-1,-5],[-21,-89]],[[27041,47270],[45,0],[22,0]],[[27108,47270],[11,9],[57,48],[0,0]],[[27176,47327],[-84,-49],[0,0],[-10,6],[-21,12],[0,0],[46,127]],[[27107,47423],[21,58],[47,76],[125,207],[40,-66]],[[27340,47698],[25,-39],[-22,-242],[-4,-50],[-53,-129]],[[27286,47238],[-18,-43],[-27,13]],[[27241,47208],[-26,12],[-17,99],[0,0]],[[27198,47319],[-20,-132],[19,-140]],[[27197,47047],[0,0],[26,-9]],[[27223,47038],[48,-16]],[[27271,47022],[167,240],[0,0]],[[27438,47262],[-24,116],[-22,111],[12,196],[11,42]],[[27415,47727],[24,99],[23,35],[7,10],[3,39]],[[27472,47910],[3,37]],[[27475,47947],[-51,154],[-21,64]],[[27403,48165],[-17,95]],[[27386,48260],[-21,120],[13,148],[1,6],[-28,105]],[[27351,48639],[-68,42]],[[27283,48681],[-80,169],[16,35],[13,28]],[[27232,48913],[-62,0],[-70,0],[-7,0]],[[27093,48913],[-6,0],[-13,0]],[[27074,48913],[-42,82],[-26,158],[11,13]],[[27017,49166],[45,54],[-19,135]],[[27043,49355],[-25,181],[-25,10]],[[26993,49546],[-46,-54],[-27,-31],[0,0]],[[26920,49461],[-68,-160],[-164,90],[-82,161],[18,96],[18,16],[14,12],[16,-16],[22,-20],[6,-18],[18,-52],[0,0],[-20,485],[0,0],[-28,-246],[0,-2],[0,0],[-85,-107],[-6,-7],[-147,-8],[-133,174],[-13,75]],[[26286,49934],[106,372],[-206,-64],[0,0],[-18,118]],[[26168,50360],[-6,42],[75,203]],[[26237,50605],[9,64],[19,124],[-10,28],[-5,18],[-5,0],[-10,1],[-47,-100],[-1,-44],[0,-14]],[[26187,50682],[20,-60],[1,-3],[0,0],[-13,-122],[-12,-21],[-78,-141],[-26,-18],[-1,-1],[-54,45],[-40,33],[-194,-1],[-161,-1],[-77,38],[0,0],[144,86]],[[25696,50516],[118,70],[60,87],[4,12],[46,152],[-17,127],[-23,31],[-17,0],[-7,0],[0,0],[5,-17],[34,-118],[-75,-214],[-28,-32]],[[25796,50614],[-192,-38],[0,0],[-6,44]],[[25598,50620],[19,25],[35,48],[0,0],[-16,19],[-37,46]],[[25599,50758],[-289,117]],[[25310,50875],[-77,-73]],[[25233,50802],[14,-3],[14,-3],[-13,-29],[-60,-39],[-103,93],[0,0],[-11,53]],[[25074,50874],[-15,66],[118,16],[144,19],[0,0],[-7,3],[-31,13],[-112,-18],[-116,-18],[-101,73],[0,0],[155,4],[-65,70],[0,0],[-8,-5],[-95,-55],[-8,94],[-4,38],[45,2],[34,1],[88,42],[79,37],[0,0],[-13,11],[-10,9],[-31,-45],[-64,-24],[-92,32],[-22,8],[0,0],[-7,23]],[[24936,51270],[-23,69],[0,0],[17,40],[67,160],[86,39],[10,4],[251,-5]],[[25344,51577],[-364,16]],[[24980,51593],[-99,-150],[0,0],[-21,35]],[[24860,51478],[-64,105],[0,181],[1,43],[58,47]],[[24855,51854],[180,275],[29,24]],[[25064,52153],[82,67],[73,-26],[58,-124],[95,-202]],[[25372,51868],[0,0],[-1,35],[-2,41]],[[25369,51944],[-264,496],[0,0],[-298,-327],[0,0],[-90,274],[0,0],[9,16],[12,23],[-14,9],[-34,23]],[[24690,52458],[-62,-234],[-28,-59],[-18,4],[-13,2],[-3,14],[-3,13],[0,0],[45,110],[74,368]],[[24682,52676],[-9,102],[-8,-10],[-13,-17],[-63,33]],[[24589,52784],[-88,46],[-27,201],[0,0],[-28,35],[-132,166],[-15,115]],[[24299,53347],[0,0],[177,-35]],[[24476,53312],[72,38],[34,18],[75,-10],[143,-217]],[[24800,53141],[-41,77],[-59,110]],[[24700,53328],[-55,50],[-69,18]],[[24576,53396],[-53,-36],[-42,-29],[-21,24],[-90,108],[-31,86],[16,97],[49,90],[0,0],[5,3],[23,11],[0,0],[-16,25],[-31,47]],[[24385,53822],[-231,-276]],[[24154,53546],[-18,-21],[0,0],[-3,-121]],[[24133,53404],[-4,-126],[-20,-2],[0,0],[-52,65]],[[24057,53341],[-102,128],[0,0],[0,0],[20,-31],[35,-52],[27,-118]],[[24037,53268],[-8,-142],[0,0],[-14,-1],[-41,-3],[-122,229],[-10,100]],[[23842,53451],[-4,34],[0,0],[-29,-3],[-45,51],[-94,156]],[[23670,53689],[-21,36],[1,45],[44,42],[151,-171]],[[23845,53641],[39,-62],[34,-55],[36,-55],[0,0],[0,0],[-123,197],[-64,101]],[[23767,53767],[-7,276],[-33,74]],[[23727,54117],[-63,146]],[[23664,54263],[-56,-41],[-12,5],[-30,15],[-2,19],[-10,69],[26,119],[118,157]],[[23698,54606],[0,0],[5,14],[87,255],[135,5],[23,0],[101,80],[91,125],[0,0],[-29,-2],[-6,-5],[-13,-9],[-89,-121],[-9,-12],[-63,-48],[-55,-2],[-56,-3],[-4,4],[-31,22],[0,0],[0,2]],[[23785,54911],[13,64],[65,150],[79,181],[55,30]],[[23997,55336],[-18,13],[-93,65],[0,0],[0,-74],[0,-50],[-26,-129],[-92,-237],[-34,-37],[0,0],[-27,100],[32,87],[6,18],[-9,316]],[[23736,55408],[-5,191],[51,211]],[[23782,55810],[-42,-89]],[[23740,55721],[-26,-56],[0,0],[1,-29]],[[23715,55636],[27,-537]],[[23742,55099],[-56,-144]],[[23686,54955],[-34,-88]],[[23652,54867],[-136,-175]],[[23516,54692],[-81,-43],[-56,12],[-42,55],[-33,183],[0,6],[-2,84],[52,211],[15,122],[17,128]],[[23386,55450],[-36,160],[-18,79]],[[23332,55689],[-123,198],[-16,-25],[82,-133],[42,-114],[0,0],[26,-134],[-44,-226],[-19,-96],[-21,-22],[-46,-48],[-8,8],[-46,44],[0,0],[37,45]],[[23196,55186],[20,62],[3,11],[0,0],[-20,41]],[[23199,55300],[-198,-58]],[[23001,55242],[-7,-7],[-4,-3],[0,0]],[[22990,55232],[-22,-185],[0,-1],[-1,-4],[-13,-10],[-6,-5],[-33,69],[0,0],[-11,222],[25,16]],[[22929,55334],[67,147],[16,62]],[[23012,55543],[49,203]],[[23061,55746],[-13,26],[-31,66]],[[23017,55838],[-58,-31],[-85,-45],[0,0]],[[22874,55762],[66,-88],[0,0],[-15,-67],[-8,-40],[-67,-171],[0,0],[-94,82],[-9,8],[0,0],[-24,156],[131,252]],[[22854,55894],[1,2]],[[22855,55896],[137,187],[10,14],[0,0],[-15,4],[-108,27],[-60,-33],[-71,-39]],[[22748,56056],[27,-205],[0,0],[-18,-29],[-3,-6],[-71,-29],[-23,33],[-20,28],[-33,121]],[[22607,55969],[-16,0],[-30,0]],[[22561,55969],[-15,-60],[-19,42],[-27,61],[0,0],[-2,55],[-2,44],[0,0],[78,109],[28,17]],[[22602,56237],[19,12],[19,-27],[24,-34],[0,0],[27,56]],[[22691,56244],[33,68],[0,0],[-5,33],[-6,36],[-51,107],[-2,4],[-188,236],[-44,181],[0,0],[-256,120],[0,0],[-5,5],[-57,57],[0,0],[26,51],[20,40]],[[22156,57182],[74,2],[39,37],[0,0]],[[22269,57221],[-133,64],[-96,235],[0,0],[1,14],[7,62],[23,12],[13,6],[154,-108],[0,0],[-72,98],[-93,79],[-14,12],[-132,176],[-86,210],[-256,135],[-5,6],[-58,78],[-87,231],[-105,278],[-65,317]],[[21265,59126],[-27,132],[-5,-13],[-53,-175]],[[21180,59070],[0,0],[52,-246]],[[21232,58824],[83,-238],[60,-389]],[[21375,58197],[-9,-37],[-5,-19],[-2,-3]],[[21359,58138],[-22,-35],[0,0],[-42,18],[-33,14],[-81,185]],[[21181,58320],[-89,-21],[-92,-21],[-63,101],[-1,2],[9,34],[27,105],[-96,286],[0,0],[2,-20],[3,-27],[0,0],[-16,-72],[-5,-28],[-34,-13],[-6,-2],[0,0],[-106,73],[-16,39],[-13,34],[-13,14],[-47,52]],[[20625,58856],[-157,61],[0,0],[-19,-121],[0,0],[195,-59],[70,-64],[52,-93],[0,0],[-59,-58]],[[20707,58522],[-21,-21],[0,0],[25,-4],[0,0],[13,9]],[[20724,58506],[45,33],[10,26],[20,-15],[64,-101],[49,-168],[0,0],[-31,-44],[-219,-74]],[[20662,58163],[-78,1],[-410,325],[-354,470],[-465,278],[-239,175],[-19,14],[7,24],[0,0],[18,-7],[34,9]],[[19156,59452],[42,11],[71,122]],[[19269,59585],[1,295],[-31,52]],[[19239,59932],[-50,-98]],[[19189,59834],[-51,-101],[-264,-148],[-124,21],[-137,24],[-272,146],[-19,40],[95,14]],[[18417,59830],[7,46],[18,115],[-33,15],[-100,47],[0,0],[-2,-39]],[[18307,60014],[-124,-152],[0,0],[-438,122]],[[17745,59984],[-529,-90],[-99,8]],[[17117,59902],[-51,4],[0,0],[-46,60],[-71,92],[-215,48],[-41,64],[0,0],[49,182]],[[16742,60352],[-117,-62],[0,0],[-5,-11],[-23,-55],[-115,11],[-183,115],[0,0],[-5,17]],[[16294,60367],[-14,59],[0,0],[62,104],[-2,5],[-5,14],[-125,41],[-29,-2]],[[16181,60588],[-211,-14],[-19,38]],[[15951,60612],[-51,100],[-49,39],[0,0],[-25,56],[4,41],[2,19],[0,0],[39,69],[21,37],[0,0],[-327,-113]],[[15565,60860],[-63,30]],[[15502,60890],[-179,-140],[-73,-56],[-43,-23],[-52,15],[21,104]],[[15176,60790],[3,14],[0,0]],[[15179,60804],[22,44],[66,132],[74,96]],[[15341,61076],[63,41],[-36,31],[-17,14]],[[15351,61162],[-189,-217],[-20,-23],[0,0],[-73,-196],[-167,-60]],[[14902,60666],[0,0],[26,-30],[19,-21],[22,0],[77,3]],[[15046,60618],[68,35],[31,-14],[29,-13],[0,0],[2,-28],[5,-47],[0,0],[-23,-38],[-79,-75],[-3,-2],[-73,-6],[0,0],[39,-30]],[[15042,60400],[35,-28],[32,7]],[[15109,60379],[30,65],[13,26],[0,0],[30,17],[55,-113]],[[15237,60374],[-3,-24],[-8,-52],[0,0],[-176,-155]],[[15050,60143],[-32,-64],[0,0],[87,4]],[[15105,60083],[98,4],[0,0],[-51,-161],[0,0],[-250,-109],[-169,26],[-194,77]],[[14539,59920],[-61,-134],[-20,-11],[-15,-9],[-9,33],[-10,37],[-11,3],[-15,4],[0,0],[-1,-6]],[[14397,59837],[-16,-115],[-272,-395],[-17,0],[-13,0],[-11,25],[-12,31],[0,0],[-29,-16],[-108,-59]],[[13919,59308],[-170,-174],[-80,3]],[[13669,59137],[-57,2]],[[13612,59139],[-114,-83],[-56,-5],[-31,27],[-81,73],[-3,41],[29,59],[0,0],[9,1]],[[13365,59252],[5,0],[6,-1]],[[13376,59251],[276,220],[179,213]],[[13831,59684],[-86,-12],[-173,-157],[-39,14],[-60,22],[-46,39],[-23,19],[-9,23],[-14,29],[0,0],[84,267],[23,33],[10,15],[25,66],[145,386]],[[13668,60428],[36,195],[8,47],[0,0]],[[13712,60670],[354,243],[242,-103]],[[14308,60810],[130,-11],[163,-15],[0,0]],[[14601,60784],[3,6],[18,36],[0,0],[-219,78],[-77,69],[-66,58],[0,0],[14,51]],[[14274,61082],[2,6]],[[14276,61088],[36,46],[65,81]],[[14377,61215],[170,127],[0,0]],[[14547,61342],[-46,22],[-39,19]],[[14462,61383],[-127,-105]],[[14335,61278],[-24,-97],[-22,-16],[-38,-28],[-305,16],[-118,-58]],[[13828,61095],[-260,-194]],[[13568,60901],[-49,-67],[-172,-238]],[[13347,60596],[-155,-275],[-11,-19]],[[13181,60302],[-213,-184],[0,0],[2,-49],[-62,-304],[0,0],[-14,-6],[-83,-36],[0,0],[32,-18],[6,-4],[-28,-111],[0,0],[-74,-41],[-63,-35],[0,0],[-22,66],[-110,-132],[-3,-4],[0,0],[-243,-179]],[[12306,59265],[-52,-252],[26,-78],[13,-19],[1,-2],[0,0],[12,6],[87,40],[63,-3]],[[12456,58957],[62,-4],[58,-41],[66,-47],[63,-113],[0,0],[-69,-131],[-10,-19],[0,0],[-93,-89],[-46,-10],[-23,-4],[-100,-114],[-187,-364],[-25,20]],[[12152,58041],[-180,-128],[-502,-472],[-56,-29],[-97,-49]],[[11317,57363],[-46,-48]],[[11271,57315],[-86,-89]],[[11185,57226],[74,-73],[0,0],[-2,-69],[-65,-105],[-41,-67],[-98,-7]],[[11053,56905],[-22,-19]],[[11031,56886],[-34,-29],[-102,-49],[-126,-59],[-30,5],[-5,1],[0,0],[-35,-94]],[[10699,56661],[-218,-271],[-91,-8],[-59,-5]],[[10331,56377],[-24,-87],[-23,-84],[31,-81]],[[10315,56125],[23,-59],[0,0],[-69,-135],[0,0],[-11,57],[-19,94]],[[10239,56082],[-69,17]],[[10170,56099],[-9,-81],[-9,-85],[-36,-60],[-287,-96]],[[9829,55777],[-55,14],[-20,-19],[-16,-16],[-59,-193]],[[9679,55563],[-14,-47],[0,0],[37,192]],[[9702,55708],[-102,46]],[[9600,55754],[-176,-168],[-118,-114],[-382,-217],[-125,5],[-5,27],[5,26],[15,63],[0,0],[7,17],[47,116],[-41,21]],[[8827,55530],[-5,2],[-13,-3],[-50,-11]],[[8759,55518],[-48,-95]],[[8711,55423],[-6,-90],[-34,-80],[-50,-116],[-162,-208],[-223,166]],[[8236,55095],[0,0],[23,-38]],[[8259,55057],[19,-33],[1,-13],[17,-145],[0,0],[-61,-17],[-69,-21],[-105,4],[-144,-121],[-10,47],[0,0],[38,247],[0,0],[47,31]],[[7992,55036],[163,109]],[[8155,55145],[109,119]],[[8264,55264],[54,131],[4,5],[95,150],[139,137],[107,107],[197,71]],[[8860,55865],[48,18]],[[8908,55883],[176,-31]],[[9084,55852],[-31,-32],[-26,-25]],[[9027,55795],[0,0],[86,-136],[41,-31],[42,-32],[0,0]],[[9196,55596],[95,131],[2,54],[1,34],[-33,44],[-20,25],[107,297],[120,122]],[[9468,56303],[109,111]],[[9577,56414],[377,263]],[[9954,56677],[68,47]],[[10022,56724],[20,20],[92,90],[221,378]],[[10355,57212],[1,2]],[[10356,57214],[263,243],[1,118]],[[10620,57575],[0,80]],[[10620,57655],[16,134],[14,126]],[[10650,57915],[37,250],[26,111]],[[10713,58276],[32,138],[67,82]],[[10812,58496],[101,123],[62,247],[-41,-6]],[[10934,58860],[-115,-129],[0,0],[-5,-2],[-430,-222],[-70,40],[-29,55],[-36,69],[-26,64],[-2,7],[0,0],[-9,146],[0,0],[-43,-55],[-53,-68],[-57,-147],[0,0],[10,-89]],[[10069,58529],[55,-130],[8,-19],[0,0],[-33,-55],[-14,-23],[-32,-10],[-15,-5],[-30,12],[-48,19],[-81,170],[-83,177]],[[9796,58665],[-102,162],[-55,-14]],[[9639,58813],[-22,-93],[-2,-9],[0,0],[-53,-11],[-22,-4],[-28,31],[-129,141],[-64,19],[-51,16]],[[9268,58903],[-196,-134]],[[9072,58769],[-135,-93],[-21,-28],[-56,-78]],[[8860,58570],[-109,-71],[-8,-5],[0,0],[-2,-1],[-63,-20],[-121,44],[76,49]],[[8633,58566],[30,87],[18,50],[-39,231],[0,0],[-48,73]],[[8594,59007],[-22,33],[0,0]],[[8572,59040],[-36,123],[64,116],[48,47]],[[8648,59326],[34,33],[0,0],[0,75]],[[8682,59434],[-188,425],[-9,18],[-99,182],[-6,1],[-32,5],[-23,-46],[6,-70],[-68,-84],[-251,-129],[-67,-13],[-193,-37],[-205,47],[0,0],[-3,6],[-37,90],[24,28],[0,0],[-64,88],[-97,118],[-98,120],[-198,141],[-58,81],[-44,63],[0,0],[146,107]],[[7118,60575],[52,95],[28,52],[0,0]],[[7198,60722],[-63,223],[-142,125]],[[6993,61070],[-30,-71],[-1,-2],[-61,49]],[[6901,61046],[-67,53]],[[6834,61099],[-77,78],[-20,20],[-14,30],[-95,193]],[[6628,61420],[20,97]],[[6648,61517],[19,90],[88,255],[52,150],[100,148]],[[6907,62160],[142,207],[97,80],[5,1],[85,26]],[[7236,62474],[-27,207],[8,58],[9,57],[61,109],[37,6]],[[7324,62911],[33,5]],[[7357,62916],[3,10],[3,10],[0,0],[-24,27],[2,24],[4,42],[70,71],[1,0],[0,0],[8,2],[167,44],[159,-74],[114,-98]],[[7864,62974],[65,-56],[112,18],[61,52],[146,124],[109,162],[47,70],[91,-6],[115,-7],[187,19],[114,11],[57,25],[105,139],[76,128],[0,0],[0,53],[0,13],[-89,377]],[[9060,64096],[-133,161],[-10,127]],[[8917,64384],[0,0],[113,-2],[34,37],[74,82],[4,99],[-41,65],[-23,38]],[[9078,64703],[-48,44],[-63,56],[-507,-272],[0,0],[-185,-188],[-355,45]],[[7920,64388],[-117,58],[-110,11],[-109,-6],[-119,-7],[-211,-97],[0,0],[-24,-2],[-140,-12],[-324,79],[-192,47],[-45,84]],[[6529,64543],[-78,144]],[[6451,64687],[-133,303]],[[6318,64990],[0,0],[81,11],[37,60]],[[6436,65061],[59,96],[0,0],[-11,15],[-9,13],[-274,60],[-149,33],[-113,53]],[[5939,65331],[-252,119],[-36,70],[98,102],[337,197],[624,366]],[[6710,66185],[354,163],[357,112]],[[7421,66460],[257,12]],[[7678,66472],[87,-25],[35,-10],[0,0],[-71,-10],[-101,-376]],[[7628,66051],[0,0],[165,-114]],[[7793,65937],[429,18],[395,-49]],[[8617,65906],[48,35],[4,2],[136,197],[190,-63],[33,-11],[0,0],[10,31],[5,15],[0,0],[-6,9]],[[9037,66121],[-52,85],[-359,146]],[[8626,66352],[-158,149],[-144,136],[-52,87],[0,0],[18,58],[34,10]],[[8324,66792],[75,21]],[[8399,66813],[101,-124],[30,-103]],[[8530,66586],[0,-53],[0,-9],[0,0],[69,-90],[8,-12],[156,-104],[122,42]],[[8885,66360],[15,18],[5,7],[0,0],[-6,16],[0,0],[-60,23],[-57,22],[-76,70],[-88,80],[5,21],[20,78]],[[8643,66695],[57,120],[107,4]],[[8807,66819],[0,0],[-14,43],[-59,26],[-87,39]],[[8647,66927],[-177,-41],[-216,-1],[-414,80],[-106,63],[-9,103]],[[7725,67131],[-49,152]],[[7676,67283],[-80,151]],[[7596,67434],[-58,64]],[[7538,67498],[-81,47],[-94,53],[-328,256],[-59,46],[-338,172]],[[6638,68072],[-278,141]],[[6360,68213],[27,20]],[[6387,68233],[96,68]],[[6483,68301],[50,199],[36,148]],[[6569,68648],[147,90],[120,-4],[120,-3],[542,75],[49,21],[77,33],[152,109],[46,34],[175,227]],[[7997,69230],[14,48],[4,13],[1,93],[1,59],[43,122],[55,158],[226,278],[56,52],[37,33],[120,72],[70,42],[186,-21],[92,-10],[168,59],[55,19],[235,144]],[[9360,70391],[322,275],[95,34]],[[9777,70700],[114,41],[179,36],[0,0],[-88,-22],[-13,-3],[-79,-42]],[[9890,70710],[-64,-34],[0,-24],[0,0],[5,-6]],[[9831,70646],[17,-17],[82,4]],[[9930,70633],[64,3]],[[9994,70636],[471,82],[77,14]],[[10542,70732],[199,115],[124,132],[167,178],[115,65]],[[11147,71222],[42,-34],[72,-59]],[[11261,71129],[143,-57]],[[11404,71072],[216,-37],[17,-60],[8,-31],[0,0],[-71,-56],[-73,-56],[-41,-6],[-45,-5],[0,0],[31,-106],[18,-6],[29,-10]],[[11493,70699],[162,28]],[[11655,70727],[191,278],[13,18],[142,-93],[93,-61],[35,-149],[5,-24]],[[12134,70696],[148,-57],[85,49],[13,21],[13,20],[148,25]],[[12541,70754],[283,26],[23,-5],[101,-24],[226,-104],[0,0],[-25,-177]],[[13149,70470],[170,-94]],[[13319,70376],[130,-72]],[[13449,70304],[206,-20],[100,-10]],[[13755,70274],[755,107],[221,-59]],[[14731,70322],[172,-45]],[[14903,70277],[389,-167]],[[15292,70110],[303,-71]],[[15595,70039],[232,5],[211,4],[251,-50],[172,-95],[201,-63],[137,-2],[138,59]],[[16937,69897],[123,52],[216,57],[262,-16],[217,-93],[365,-200],[238,-131],[33,-8],[162,-39]],[[18553,69519],[-1,-9323]],[[18552,60196],[1,9323],[0,0],[221,-49],[182,-19],[364,-38],[116,-50],[51,-40],[110,-86],[26,-31],[72,-84],[343,-164],[93,-44],[388,-154]],[[20519,68760],[176,17],[100,-20]],[[20795,68757],[135,-26]],[[20930,68731],[375,-194]],[[21305,68537],[0,4],[-3,24],[0,0]],[[21302,68565],[-128,137],[-72,78]],[[21102,68780],[-120,176],[0,0],[-26,60],[-24,58],[0,0],[32,44],[39,12],[70,22]],[[21073,69152],[64,-45],[137,29],[43,9],[0,0]],[[21317,69145],[-36,84],[-17,40],[18,33],[108,43]],[[21390,69345],[72,-5],[126,-9]],[[21588,69331],[30,36],[27,31],[0,0],[19,170],[0,0],[43,13],[58,-141]],[[21765,69440],[0,0],[70,-21]],[[21835,69419],[106,-32],[0,0],[-43,-129],[-114,-129]],[[21784,69129],[4,-1]],[[21788,69128],[78,0]],[[21866,69128],[182,125],[237,15]],[[22285,69268],[0,0],[6,5],[66,47],[16,72],[105,70],[69,46]],[[22547,69508],[96,95]],[[22643,69603],[131,-43],[315,210],[8,6],[34,-13],[83,-30],[34,28],[75,130],[0,0]],[[23323,69891],[3,19],[5,24],[66,26],[125,26]],[[23522,69986],[99,-16],[5,-7],[20,-25],[88,-4],[89,-5],[63,97]],[[23886,70026],[62,96],[137,-149],[-26,-60],[0,0],[-29,-23],[-41,-31],[-339,-167],[-115,-56]],[[23535,69636],[-92,-95],[-115,-119],[0,0],[-37,-422]],[[23291,69000],[0,0],[46,-15],[156,313],[0,0],[-8,15],[0,0],[14,47],[106,145]],[[23605,69505],[40,56],[401,136]],[[24046,69697],[87,11],[81,11],[0,0],[-32,-20],[0,0],[4,-122],[72,-33],[43,-20],[9,8],[30,84],[36,39]],[[24376,69655],[61,67],[157,91]],[[24594,69813],[0,0],[-8,49],[-4,21],[0,0]],[[24582,69883],[83,143],[199,37]],[[24864,70063],[-14,56],[0,0],[-206,107],[0,0],[-4,37],[24,98]],[[24664,70361],[65,79],[0,0],[247,-163],[95,-95],[32,-32],[142,-243],[33,-57],[0,0],[20,-79],[13,-49],[51,-113],[165,-185],[89,-72],[101,-82],[116,-44],[71,-27],[22,2],[53,4],[89,43],[28,13],[0,0],[5,30],[6,31]],[[26107,69322],[-71,1],[-57,2],[0,0],[22,38],[47,82]],[[26048,69445],[36,112],[14,42],[67,136],[147,102],[0,0],[-16,30],[-38,9],[-32,7]],[[26226,69883],[-97,-27],[0,0],[77,58]],[[26206,69914],[68,-3]],[[26274,69911],[169,-7],[0,0],[-14,14],[-57,59]],[[26372,69977],[-41,-9]],[[26331,69968],[-43,-9],[-3,39],[-4,58],[0,0],[11,0],[48,1],[98,-42],[0,0],[22,-135],[0,0],[-25,-124],[-32,-160]],[[26403,69596],[117,-23]],[[26520,69573],[67,-45],[0,0],[-31,-40],[-164,-206]],[[26392,69282],[0,0],[75,-70],[55,-3],[47,-3],[218,27],[84,11],[0,0],[11,7],[145,107],[19,116],[23,142],[0,0],[75,29],[94,35]],[[27238,69680],[499,-10],[86,-20],[35,-9],[207,-102]],[[28065,69539],[113,-84]],[[28178,69455],[236,-178]],[[28414,69277],[811,-207],[28,-22],[91,-70],[151,-73],[77,-37]],[[29572,68868],[791,-165]],[[30363,68703],[-14,42],[-24,71],[0,0],[213,60],[83,-18],[4,-1],[76,-30],[250,-99],[88,-66],[145,-109],[133,-127],[112,-181],[0,0],[-31,-129],[0,0],[-185,8],[-204,8]],[[31009,68132],[-73,-30],[-92,-37]],[[30844,68065],[13,-192],[0,0],[-231,-84]],[[30626,67789],[0,0],[100,-39],[123,-49]],[[30849,67701],[711,-131]],[[31560,67570],[517,-16]],[[32077,67554],[32,7],[253,60],[147,-7]],[[32509,67614],[46,8],[197,34]],[[32752,67656],[161,46]],[[32913,67702],[18,5]],[[32931,67707],[298,179],[50,-1],[37,-49],[8,-10],[0,0],[-17,-73]],[[33307,67753],[14,-34],[88,-90],[28,-28],[69,-26],[12,-4],[23,19]],[[33541,67590],[44,37],[109,-14],[49,-6],[42,-59],[3,-18],[24,-109],[242,-140]],[[34054,67281],[120,-39],[43,-39],[51,-46],[27,-75],[10,-26],[5,-86],[0,0],[-79,-33],[-65,-28],[12,-131],[4,-49]],[[34182,66729],[2,-7],[1,-5],[65,-42]],[[34250,66675],[43,-26],[109,-139],[191,-243]],[[34593,66267],[-6,72]],[[34587,66339],[-1,6],[-77,105]],[[34509,66450],[-129,175],[17,252],[14,36],[17,43],[41,-33],[19,-16],[0,0],[5,-21],[17,-88]],[[34510,66798],[0,0],[-79,23],[-23,7],[0,0],[19,-24],[78,-96],[8,-2],[10,-2],[3,16],[10,39],[62,-16],[81,-20],[0,0],[-37,134],[-41,151],[-83,121]],[[34518,67129],[-107,157],[-72,231]],[[34339,67517],[-5,17],[0,0],[63,238]],[[34397,67772],[86,165],[378,82]],[[34861,68019],[50,44]],[[34911,68063],[60,54],[0,0],[28,99],[140,43]],[[35139,68259],[89,28],[50,2],[50,1],[22,27],[6,72],[11,126],[0,0],[-53,0],[-47,-1]],[[35267,68514],[-82,-31],[-111,-42],[-212,-169]],[[34862,68272],[-6,-4],[-16,14],[-11,10],[-37,-1],[-45,-1],[-201,-87],[-60,15],[-46,11],[-66,-9],[-42,-6],[-7,-12],[-11,-57],[-3,-13],[47,-16]],[[34358,68116],[39,-61],[0,0],[-137,-21],[-163,-25],[-60,63],[-63,65]],[[33974,68137],[-73,-29],[-37,27],[0,0],[218,345],[52,28],[426,64]],[[34560,68572],[114,49]],[[34674,68621],[415,178],[205,-40],[160,-133],[18,-15],[-22,-35],[-2,-4],[-17,-213]],[[35431,68359],[-6,-75],[0,0],[287,-159],[20,-11],[9,-7]],[[35741,68107],[116,-88],[31,-44],[53,-73]],[[35941,67902],[108,7],[84,6],[0,0],[1,-47]],[[36134,67868],[0,-41],[-19,-59],[0,0],[118,115],[24,23],[32,22]],[[36289,67928],[90,61],[114,-115]],[[36493,67874],[98,-99],[214,-104],[240,-116],[133,57],[19,-15],[15,-12],[57,-7]],[[37269,67578],[64,-8]],[[37333,67570],[39,5],[2,0],[262,71],[121,-8],[5,-24],[1,-6],[0,0],[56,76],[147,28]],[[37966,67712],[35,7],[0,0],[18,-2],[245,-29],[182,-97]],[[38446,67591],[331,64]],[[38777,67655],[-25,109]],[[38752,67764],[18,165],[0,0],[13,-11],[9,-8],[21,21]],[[38813,67931],[47,49],[0,0],[-4,34],[-8,63],[-50,46]],[[38798,68123],[-102,94],[-15,67],[0,0],[37,1],[77,2],[60,-52],[55,-46]],[[38910,68189],[15,2],[19,2],[203,58],[-1,2],[-35,47],[-57,53]],[[39054,68353],[-27,25],[-17,25],[0,0],[3,8],[5,11],[103,-6],[40,-2],[32,-28],[0,0],[1,-9],[1,-20],[9,-5]],[[39204,68352],[8,-5],[0,0]],[[39212,68347],[24,49],[99,-11],[147,-158],[-1,-13],[-3,-20],[-10,1],[-3,0],[-13,-39]],[[39452,68156],[237,-93]],[[39689,68063],[0,0],[-95,-78],[4,-68],[21,-20],[42,14],[48,16],[0,0]],[[39709,67927],[10,65],[0,0],[44,52],[227,97],[18,8],[-47,-64]],[[39961,68085],[-62,-236]],[[39899,67849],[-30,-116]],[[39869,67733],[14,-150],[-113,-136]],[[39770,67447],[-9,-11],[0,0],[-2,-22],[-2,-20],[55,-110],[45,-90],[-2,-10],[-6,-31],[0,0],[53,-48],[85,49],[40,24]],[[40027,67178],[91,-51],[43,-44]],[[40161,67083],[55,-58]],[[40216,67025],[75,25]],[[40291,67050],[75,90],[-22,80],[-63,225],[-75,90],[-26,86],[-17,55],[35,115]],[[40198,67791],[41,134],[19,25],[311,-19]],[[40569,67931],[150,150]],[[40719,68081],[106,139],[0,0],[2,12],[3,31],[0,0],[84,76],[66,27]],[[40980,68366],[84,34],[65,21],[33,11],[11,9],[0,0],[-11,22]],[[41162,68463],[-15,30],[-16,120]],[[41131,68613],[-17,131],[-42,116],[0,0],[-109,26],[-76,-108],[0,-7],[1,-37],[0,0],[8,-5],[16,-11]],[[40912,68718],[95,52],[0,0],[-119,-115],[-16,-15],[-145,-26],[-7,-2],[0,0],[-29,14]],[[40691,68626],[-61,30],[0,0],[57,145]],[[40687,68801],[11,28],[24,1],[0,0],[118,128]],[[40840,68958],[-2,10],[-9,41],[-57,33],[0,0],[12,128],[4,32],[276,90],[0,0],[-25,-63]],[[41039,69229],[-14,-33],[-2,-3],[-44,-53],[7,-96],[0,0],[81,63],[158,152],[0,0],[-61,124],[-33,25],[-5,4],[0,0],[-4,-1],[-60,-12]],[[41062,69399],[-73,-64],[-175,-12],[-33,-2],[0,0],[-108,134]],[[40673,69455],[-41,53]],[[40632,69508],[-46,-15],[-105,-33],[-434,190],[-52,50]],[[39995,69700],[-171,167],[-103,143],[-21,153]],[[39700,70163],[30,88],[0,0],[5,8],[131,185],[131,2]],[[39997,70446],[-55,77],[-69,-20],[-69,59]],[[39804,70562],[-108,94],[0,0],[-4,92],[34,143],[36,158]],[[39762,71049],[-13,88],[0,0],[29,31],[103,107],[47,17],[27,10],[58,-15],[32,-49],[18,-27]],[[40063,71211],[16,-11],[49,-34],[56,8],[60,153],[24,62],[-11,-2]],[[40257,71387],[-76,-18],[-112,16]],[[40069,71385],[-37,36]],[[40032,71421],[-28,27],[7,32],[0,0],[168,98]],[[40179,71578],[132,33],[0,0],[16,34],[30,68],[0,0],[-26,32],[0,0]],[[40331,71745],[13,71],[0,0],[19,14],[321,39],[34,-78],[3,-5],[-22,-59],[0,0],[-18,2]],[[40681,71729],[-32,4],[-30,-30],[-4,-4],[0,0],[20,-70]],[[40635,71629],[208,45],[95,-34],[45,-16]],[[40983,71624],[429,-399],[0,0],[51,-210],[-12,-167],[-5,-84],[0,0],[-40,-20]],[[41406,70744],[183,-155],[38,-32],[102,-43],[128,-272],[0,0],[12,-62],[17,-28]],[[41886,70152],[3,-6]],[[41889,70146],[29,50],[0,0],[-3,46],[35,7],[24,-20],[39,-33],[85,-131],[0,0],[-4,-23],[-2,-15],[-218,-24],[-92,66]],[[41782,70069],[-46,33]],[[41736,70102],[-114,-130]],[[41622,69972],[0,0],[14,-33]],[[41636,69939],[159,38],[62,-25],[33,-52],[-423,-308]],[[41467,69592],[0,0],[0,-7]],[[41467,69585],[3,-25],[173,-49]],[[41643,69511],[122,-34],[141,-77]],[[41906,69400],[51,-27],[0,0],[25,24]],[[41982,69397],[149,144],[115,-15],[0,0],[-8,-22]],[[42238,69504],[-8,-25]],[[42230,69479],[-43,-44],[-10,-9],[-129,-30]],[[42048,69396],[0,0],[8,-3],[16,-7],[212,6],[36,-12],[95,-32]],[[42415,69348],[94,70],[69,-39],[71,-40],[0,0],[-21,-23],[-100,-4],[-14,0],[-84,-101]],[[42430,69211],[-162,-27]],[[42268,69184],[-26,-4],[0,0]],[[42242,69180],[165,-147],[106,-94],[52,-140],[5,-34]],[[42570,68765],[17,-113],[12,-329],[2,-36],[42,-75]],[[42643,68212],[51,-91],[76,15],[142,282],[29,126]],[[42941,68544],[-1,242],[0,66],[0,0],[75,108],[100,146],[38,29],[9,7],[79,15],[51,-23],[450,-415],[0,0],[22,-46],[44,-90],[60,-292],[5,-81],[-24,-84],[-36,-19],[-19,-10],[-102,72]],[[43692,68169],[0,0],[-6,89],[-31,-34],[-31,-34]],[[43624,68190],[-23,-270]],[[43601,67920],[-3,-39],[5,-23],[7,-34],[29,-74]],[[43639,67750],[67,-175]],[[43706,67575],[307,-324],[17,-42],[25,-59],[-11,-55],[-2,-14]],[[44042,67081],[0,0],[2,-33],[67,-37],[99,83],[0,0]],[[44210,67094],[34,141],[79,34]],[[44323,67269],[53,22],[97,-75]],[[44473,67216],[23,147],[-4,141],[0,3],[196,354],[46,47],[43,45],[44,176],[33,130],[11,267],[0,0]],[[44865,68526],[41,92],[35,20],[18,10],[364,-30]],[[45323,68618],[3,39],[-43,39]],[[45283,68696],[-117,4],[10,76]],[[45176,68776],[1,14],[0,0]],[[45177,68790],[64,68],[127,52]],[[45368,68910],[-138,68],[-113,56],[-62,6],[-28,46],[-60,100],[6,378]],[[44973,69564],[0,0],[24,35],[6,9],[0,0],[2,1]],[[45005,69609],[83,87],[140,20],[189,26],[111,-13],[142,-91]],[[45670,69638],[161,-54],[110,-36]],[[45941,69548],[220,9],[102,4],[100,-29],[60,-17],[0,0],[-60,-73]],[[46363,69442],[-14,-100],[0,0],[153,-61],[0,0],[10,-14],[0,0],[-7,-100]],[[46505,69167],[68,-22],[52,-16]],[[46625,69129],[159,9],[55,-22],[83,-32],[16,-52],[18,-61],[0,0],[-269,-195],[0,0],[222,-14],[47,-27],[49,-87],[-20,-137],[0,0],[-114,-73],[-220,-140],[-170,57],[-114,38]],[[46367,68393],[-10,-29]],[[46357,68364],[4,-85]],[[46361,68279],[59,-27],[0,0],[62,-226]],[[46482,68026],[47,-93],[22,-44]],[[46551,67889],[108,-129],[343,-406],[0,0],[-29,-124],[-44,-189],[-53,-149],[-135,-25]],[[46741,66867],[-42,-25],[-68,-40],[-51,-103],[-11,-23],[-519,-386],[-146,-17]],[[45904,66273],[0,0],[-24,49],[-37,77],[-38,25],[-102,174],[0,0],[21,165],[-21,-34],[-39,-62],[-66,20]],[[45598,66687],[-94,29],[-56,136]],[[45448,66852],[-5,13],[0,0],[-188,63]],[[45255,66928],[-138,-174]],[[45117,66754],[0,0],[49,-26],[11,-6],[97,48],[0,0],[-6,8],[-13,16],[0,0],[54,-7]],[[45309,66787],[63,-7],[74,-80],[108,-116],[147,-257],[131,-228],[-1,-20],[-1,-12],[-46,-28],[-21,-13],[0,0],[-51,42],[-270,220]],[[45442,66288],[-65,-66],[-5,-34],[-14,-87]],[[45358,66101],[-269,46],[0,0],[-23,59],[0,0],[-5,35],[-11,79]],[[45050,66320],[-122,130]],[[44928,66450],[-291,-51],[-20,9]],[[44617,66408],[-45,21],[-8,1],[-4,0],[-169,-20],[0,0]],[[44391,66410],[-28,-54]],[[44363,66356],[-16,-29],[0,0]],[[44347,66327],[68,-119]],[[44415,66208],[353,-128],[21,-38],[0,0],[-50,-114],[-7,-15],[-38,-31],[-65,-53]],[[44629,65829],[-207,-281],[-52,-70],[-52,-60],[-124,-145],[-49,-29],[-74,-42],[-307,23],[-47,29],[-29,18],[-30,37],[-73,90]],[[43585,65399],[-76,66]],[[43509,65465],[-118,103]],[[43391,65568],[-110,54],[-68,34]],[[43213,65656],[-325,219]],[[42888,65875],[0,0],[3,-48]],[[42891,65827],[-76,-56]],[[42815,65771],[-14,-73],[199,-141],[291,-350]],[[43291,65207],[446,-51]],[[43737,65156],[172,12],[74,5],[17,-4],[215,-47],[24,-40],[39,-69],[0,0],[-35,-93],[-92,-156],[-44,-76],[-170,-218]],[[43937,64470],[-51,-65]],[[43886,64405],[-57,-113],[-80,-158]],[[43749,64134],[0,0],[4,-10]],[[43753,64124],[10,-21],[0,0],[-47,-78],[-196,-96],[-14,-7],[-42,-4]],[[43464,63918],[-168,-19],[-117,10]],[[43179,63909],[-107,9]],[[43072,63918],[-151,97],[-3,1],[0,0],[-9,26],[-10,28]],[[42899,64070],[-105,-48],[0,0],[99,-152],[2,-59],[0,0],[-33,-2],[-31,-1],[-35,51]],[[42796,63859],[-49,-9],[-26,-5]],[[42721,63845],[47,-160],[13,-42],[0,0]],[[42781,63643],[-77,-144],[0,0],[-45,14],[-131,38]],[[42528,63551],[26,-67],[0,0],[-155,-27],[-20,4],[-119,40],[-51,17],[-43,30],[-80,57],[-96,32]],[[41990,63637],[-158,-12],[-133,30],[-86,46],[-153,81],[-248,93],[-65,-2],[-80,-2]],[[41067,63871],[-41,-18],[-89,-39],[0,0],[156,-47]],[[41093,63767],[144,-43],[41,20]],[[41278,63744],[47,23]],[[41325,63767],[206,-82],[59,8],[207,-131],[0,0],[-153,-123]],[[41644,63439],[-6,-5],[-19,9],[-33,-2],[-12,-18],[0,0],[65,-9]],[[41639,63414],[90,39],[31,14]],[[41760,63467],[63,59],[51,47],[47,10],[68,14],[21,-21],[36,-34],[2,-36]],[[42048,63506],[-13,1],[-12,0],[4,-24],[117,-100]],[[42144,63383],[187,-20],[68,-61],[53,-82]],[[42452,63220],[54,-259],[-6,-30],[-2,-14],[-191,-119],[-114,-70]],[[42193,62728],[-198,-15]],[[41995,62713],[-179,37]],[[41816,62750],[-131,-15],[-23,-44],[-4,-6],[0,0]],[[41658,62685],[53,-81]],[[41711,62604],[11,-7],[5,-3],[206,-89],[0,0],[-86,-87],[-60,14],[-17,35],[-6,4],[-19,11]],[[41745,62482],[-68,5],[-110,8],[4,-16]],[[41571,62479],[39,-141],[61,-34],[140,2],[0,0],[-22,-31],[-12,-18],[0,0],[-9,1],[-63,8],[-31,11],[-80,28],[0,0],[10,30],[0,0],[-29,35]],[[41575,62370],[-3,3],[0,0],[-1,0],[-57,-4],[-10,-16],[-10,-18],[0,0]],[[41494,62335],[23,-49],[21,-42],[0,0],[-12,-25],[-13,-30]],[[41513,62189],[-139,-110]],[[41374,62079],[-121,-13],[0,0],[13,-10],[47,-41],[-12,-72]],[[41301,61943],[-17,-100],[0,0],[-12,0],[-245,-2]],[[41027,61841],[0,0],[16,-27],[43,-73],[100,-56],[16,-9]],[[41202,61676],[39,-4],[0,0],[-200,-193],[-1,-1]],[[41040,61478],[-286,-187],[0,0],[27,-53],[16,-30],[0,0],[32,51],[18,28],[56,-6]],[[40903,61281],[73,-8],[16,-38],[3,-6],[-50,-49],[-42,12],[-44,12]],[[40859,61204],[0,0],[4,-11],[5,-12],[-11,-135],[-2,-18],[0,0],[-210,-565]],[[40645,60463],[-37,-57],[0,0],[-49,18]],[[40559,60424],[-23,9],[-48,-39],[0,0],[1,-15],[80,-19],[9,-2]],[[40578,60358],[26,-81],[-65,-319]],[[40539,59958],[-11,-109]],[[40528,59849],[-5,-54],[0,0],[2,-343]],[[40525,59452],[37,-114],[7,-83],[-108,-276]],[[40461,58979],[-34,-25],[-4,-3],[10,-16],[79,-25]],[[40512,58910],[72,-110],[99,-150]],[[40683,58650],[52,-23],[20,-8]],[[40755,58619],[247,56],[66,-6],[167,-14],[91,-175]],[[41326,58480],[73,-358]],[[41399,58122],[82,-395],[20,-24],[20,-24]],[[41521,57679],[122,-336],[14,-97],[1,-11],[0,0],[-6,-82],[-39,-107]],[[41613,57046],[-33,-92],[0,0]],[[41580,56954],[197,-17],[559,221],[96,-21]],[[42432,57137],[104,-23],[300,-215]],[[42836,56899],[494,-156],[366,-334],[85,-53],[79,-176],[57,-127]],[[43917,56053],[5,-16],[26,-92],[1,-58],[445,-159],[42,-15],[282,-151],[203,-175]],[[44921,55387],[218,-189],[158,-56]],[[45297,55142],[33,-12],[89,14],[257,41]],[[45676,55185],[796,-181],[10,-18],[18,-30],[7,-132],[9,-165],[-45,-213],[-3,-440]],[[46468,54006],[0,0],[40,-76]],[[46508,53930],[51,-216],[-27,-368]],[[46532,53346],[-18,-242],[0,0],[-27,-98]],[[46487,53006],[-1,-35],[-3,-117]],[[46483,52854],[151,-184],[117,-206],[90,-255],[412,-505],[28,-62],[44,-176]],[[47325,51466],[38,-149],[66,-94]],[[47429,51223],[123,-90],[72,-52]],[[47624,51081],[44,-7],[51,91]],[[47719,51165],[15,151],[67,151],[24,27],[73,82],[65,-83],[65,-82],[7,-53],[36,-245]],[[48071,51113],[0,0],[40,-40],[0,0]],[[48111,51073],[38,309],[-14,111],[0,0],[-32,56],[-44,160],[16,26],[167,265]],[[48242,52000],[27,101]],[[48269,52101],[13,277]],[[48282,52378],[-2,3],[-30,38],[-50,120]],[[48200,52539],[-48,114],[0,0],[8,9]],[[48160,52662],[20,19],[-4,62]],[[48176,52743],[-65,170]],[[48111,52913],[-22,96]],[[48089,53009],[-14,63],[4,158]],[[48079,53230],[0,29],[0,0],[-43,186],[-10,111],[-9,105]],[[48017,53661],[0,333]],[[48017,53994],[-11,76],[-109,79],[-1,0],[-76,169],[0,0],[-5,71],[-7,101],[-31,37]],[[47777,54527],[-72,17],[0,0],[67,70]],[[47772,54614],[215,98],[350,209],[133,117],[139,122],[122,137],[24,27],[19,25],[171,224],[177,337]],[[49122,55910],[48,155],[46,150]],[[49216,56215],[10,113]],[[49226,56328],[-15,389],[-14,371],[-52,240],[-22,64],[-75,228],[-48,100],[-93,192],[-82,106],[-70,90]],[[48755,58108],[-212,129],[0,0],[-97,137]],[[48446,58374],[-93,132],[-20,5],[-31,8]],[[48302,58519],[4,-45],[-8,22],[-27,78],[0,0],[22,216],[49,5]],[[48342,58795],[24,39],[93,156],[5,11],[4,10],[-1,5]],[[48467,59016],[-9,61],[0,0],[36,33],[181,162]],[[48675,59272],[0,0],[-10,14],[-15,22],[-28,5]],[[48622,59313],[-25,21],[71,236],[23,8],[45,16],[108,122]],[[48844,59716],[-71,249]],[[48773,59965],[-73,258],[-30,217],[21,123]],[[48691,60563],[13,77],[0,0]],[[48704,60640],[-47,31],[-107,8],[-62,4],[37,194],[93,242],[61,158]],[[48679,61277],[32,54],[22,37],[0,0]],[[48733,61368],[-49,108],[-51,66],[-21,28],[0,0],[-32,1],[-39,1],[-1,2],[-27,41],[-60,290],[-12,137],[5,63],[4,43],[1,2],[31,100],[0,0],[75,28]],[[48557,62278],[158,136]],[[48715,62414],[87,43],[199,-36],[470,-182],[61,-23],[0,0],[98,-124]],[[49630,62092],[102,97],[84,0],[141,-35],[129,-96],[32,-24],[384,318],[40,7],[41,8],[294,-287]],[[50877,62080],[83,-63],[26,2],[13,1],[137,-156],[164,-186],[0,0],[-19,-21]],[[51281,61657],[-10,-11],[0,0],[41,-52]],[[51312,61594],[59,-77],[57,77],[78,-34],[31,-13],[60,-66],[-15,-19],[-13,-16],[-90,-25]],[[51479,61421],[-20,-86],[0,0],[26,-94]],[[51485,61241],[0,0],[29,-40],[94,-125]],[[51608,61076],[580,-166]],[[52188,60910],[73,-21],[23,-119],[63,-56]],[[52347,60714],[28,-25],[0,0],[48,69]],[[52423,60758],[56,79],[17,61]],[[52496,60898],[18,68],[0,0],[50,-7],[32,-116]],[[52596,60843],[-2,-152],[0,-23],[-120,-95]],[[52474,60573],[-28,-139],[0,0],[1,-6]],[[52447,60428],[2,-101],[28,-110],[14,-51],[-60,-201]],[[52431,59965],[-3,-10],[0,0],[1,-17]],[[52429,59938],[11,-120]],[[52440,59818],[78,-141],[-64,-302]],[[52454,59375],[21,-55],[31,-78],[179,-186],[0,0],[-11,-89]],[[52674,58967],[-3,-22],[0,0]],[[52671,58945],[-96,-11]],[[52575,58934],[-54,-71],[-40,-52],[-1,4],[-13,62],[-56,68],[-6,7],[-9,-8],[-2,-2],[0,0],[0,-48],[0,-42]],[[52394,58852],[12,-120],[-33,-10],[-132,-41]],[[52241,58681],[114,-80]],[[52355,58601],[96,-68],[0,0],[18,32],[35,61]],[[52504,58626],[114,121],[14,15],[20,7],[84,28],[254,-1],[80,-71],[14,-13],[0,0],[29,-129],[155,-149],[47,-122],[-2,-122]],[[53313,58190],[-1,-54],[0,0],[1,4],[53,114],[64,57],[0,0],[0,-26],[5,-289],[0,0],[121,197],[290,175]],[[53846,58368],[76,47]],[[53922,58415],[40,92]],[[53962,58507],[55,132],[1,85],[25,10],[31,-1],[188,-212]],[[54262,58521],[-3,-62],[0,-2],[-35,-96],[-38,-103]],[[54186,58258],[0,0],[13,-44],[9,-5],[14,-9],[0,0],[84,287],[-15,23]],[[54291,58510],[-95,143],[127,231],[0,0],[16,19],[41,46],[61,-37],[133,22]],[[54574,58934],[0,0],[-54,26]],[[54520,58960],[-41,19],[-46,71]],[[54433,59050],[0,0],[8,-3],[6,-1],[0,0],[3,104],[1,42],[0,0],[112,-59],[0,0],[-54,167]],[[54509,59300],[31,77],[-70,178],[-19,48],[6,33],[0,2],[0,0],[113,93],[107,-71],[0,0],[-29,121]],[[54648,59781],[-11,43],[88,218],[20,49],[4,51]],[[54749,60142],[2,26],[0,0],[31,49],[2,3],[0,0],[21,5],[60,12],[92,-63],[49,-34],[0,0],[-18,0],[-17,0],[-6,-23]],[[54965,60117],[-2,-11]],[[54963,60106],[2,-289]],[[54965,59817],[0,0],[42,50],[30,35],[22,-39],[16,-25],[0,0],[-19,-161],[12,-40],[28,-46],[5,-10],[125,-75]],[[55226,59506],[31,-34],[57,-65],[0,0],[-20,-75],[-1,0],[-29,-33],[0,0],[110,-77]],[[55374,59222],[102,-71],[14,-61],[-8,-22],[-21,-56],[-65,-43],[0,0],[93,-50]],[[55489,58919],[77,-42],[133,-159],[20,-111],[0,0],[-67,-154],[-163,-67]],[[55489,58386],[-15,-6],[-1,-7]],[[55473,58373],[-21,-94],[0,0],[284,97],[127,8],[6,-9],[2,-3],[-29,-146],[12,-98],[0,0],[-108,-43],[-90,-37]],[[55656,58048],[-45,-53],[-10,-12],[0,0],[24,-16],[87,60],[73,7],[81,7]],[[55866,58041],[60,-156],[43,-27],[60,-38],[68,-10],[30,-5],[0,0],[5,-30]],[[56132,57775],[21,-149],[28,-53],[-6,-60],[0,0],[-28,-15],[-221,-117]],[[55926,57381],[167,-88]],[[56093,57293],[93,-50],[0,0],[-70,-88],[0,0]],[[56116,57155],[147,-96]],[[56263,57059],[66,-1],[51,-176],[0,0],[-19,-15],[-21,-18],[-95,-197],[0,0],[10,-11],[26,-25],[0,0]],[[56281,56616],[-31,-64],[-96,-2],[0,0],[-255,100]],[[55899,56650],[280,-167]],[[56179,56483],[0,0],[-20,-48],[-11,-25],[0,0],[-45,-20],[-58,-25],[2,-4],[4,-10],[114,-55],[56,-27],[27,-21]],[[56248,56248],[89,-68],[0,0],[-108,-24]],[[56229,56156],[-31,28],[-2,2],[0,0],[-84,6],[-16,1],[7,-19],[15,-39],[213,-42],[33,11]],[[56364,56104],[53,16],[12,-22]],[[56429,56098],[16,-31],[-3,-28]],[[56442,56039],[-18,-177]],[[56424,55862],[133,-122],[57,-2],[127,-3],[23,-18],[3,-3],[0,0],[4,-103],[3,-66],[83,-16],[39,-163],[4,-100],[0,-20],[0,0],[-63,-120],[-12,-22],[-69,-220],[0,0],[6,2],[2,1],[138,172]],[[56902,55059],[45,73],[16,25],[0,0],[85,2],[-23,-66]],[[57025,55093],[-30,-85],[-30,-40],[-21,-27],[0,0],[-4,-40],[0,0],[3,5],[106,172]],[[57049,55078],[129,143],[30,-31]],[[57208,55190],[11,-12],[-7,-55],[-105,-108],[0,0],[71,-5],[47,28],[79,48],[19,-13]],[[57323,55073],[32,-22],[0,0],[-8,-20],[-27,-62],[-102,-105]],[[57218,54864],[-93,-205],[0,0],[9,6],[43,28],[173,233],[27,36],[10,7],[59,41],[0,0],[0,-41],[-1,-14],[129,-65],[-1,-165],[0,0],[260,-61],[14,5],[64,21]],[[57911,54690],[50,71]],[[57961,54761],[67,44],[67,-74],[0,0],[-11,-47],[-49,-26]],[[58035,54658],[268,-114],[37,-73],[3,-6],[0,0],[-9,-54],[-45,-51],[-138,-78],[-68,-22],[-167,-53]],[[57916,54207],[-3,-31],[0,0],[-173,-109]],[[57740,54067],[0,0],[-54,-17],[-403,-130],[0,0],[95,-22],[312,129],[30,-27]],[[57720,54000],[42,-38],[7,-48],[66,11]],[[57835,53925],[306,50],[0,0],[-35,35],[-114,26]],[[57992,54036],[-151,-4],[0,0],[22,70],[0,1],[0,0],[16,5],[93,25],[298,-37],[47,-36]],[[58317,54060],[7,-5],[0,0],[49,-126]],[[58373,53929],[78,-200],[1,-72],[-15,-33],[-103,-107],[-18,-19],[0,0],[15,-25],[56,-91]],[[58387,53382],[61,60]],[[58448,53442],[34,116],[89,33]],[[58571,53591],[99,36],[0,0],[8,-33],[3,-12],[172,-95],[7,-15],[13,-32],[153,-139]],[[59026,53301],[43,-115],[43,-115],[0,0],[1,-17],[0,-16],[0,0],[-92,-84]],[[59021,52954],[-33,-31],[0,0],[38,-36],[17,-16]],[[59043,52871],[30,-71],[0,-1],[0,0],[-5,-57],[0,0],[-63,-45]],[[59005,52697],[-101,43],[0,0],[81,-121],[0,0],[-17,-51],[-2,-6],[0,0],[-42,-12]],[[58924,52550],[-54,-104],[0,0],[243,-49],[28,-25],[30,-27],[-3,-58],[0,0],[-70,-3]],[[59098,52284],[-88,-4],[0,0],[120,-128]],[[59130,52152],[0,0],[-2,-7]],[[59128,52145],[-90,-263],[-224,-245],[-212,-232],[-261,-41],[-157,-25],[-14,81]],[[58170,51420],[0,0],[-8,-18]],[[58162,51402],[-38,-89],[-117,-117],[-73,-33],[-88,38],[-18,8],[-39,-35],[-64,-55]],[[57725,51119],[-152,-210]],[[57573,50909],[-50,-194],[-32,-48],[-29,-25],[-94,-79]],[[57368,50563],[-6,-47],[-20,-32],[-58,-90],[-98,-60],[-2,-1],[-33,-74]],[[57151,50259],[18,-11],[-90,-98],[0,0],[-48,-13],[-39,47]],[[56992,50184],[-123,-39],[-532,-61]],[[56337,50084],[0,0],[-6,13],[-131,27]],[[56200,50124],[-297,42],[-265,37]],[[55638,50203],[-62,-35],[-245,22],[-40,3],[-148,-1],[-680,-5],[-155,-20],[-263,-35]],[[54045,50132],[-104,-102],[-103,-101],[-119,-175]],[[53719,49754],[-7,-10],[-29,-67]],[[53683,49677],[-29,-246],[-24,-52]],[[53630,49379],[-71,-150],[-137,-23],[-192,-32]],[[53230,49174],[-432,-493]],[[52798,48681],[-171,-349]],[[52627,48332],[-90,-184],[-40,-112],[-134,-367],[-129,-236],[-141,-113]],[[52093,47320],[-136,-250]],[[51957,47070],[-75,-139],[-129,-186],[-31,-89]],[[51722,46656],[0,0],[284,217],[99,76],[179,321]],[[52284,47270],[163,293]],[[52447,47563],[167,371],[208,267],[0,0],[142,132],[136,127]],[[53100,48460],[774,524],[229,109],[347,64],[0,0],[281,-45],[48,-33],[155,-104],[0,0],[146,-197],[3,-50]],[[55083,48728],[3,-35],[-24,-65],[-7,-17]],[[55055,48611],[0,0],[9,-25]],[[55064,48586],[21,-59],[-8,-52],[-10,-74],[-252,-273],[-224,-203],[-106,-13],[-103,90],[-107,93]],[[54275,48095],[-216,-78],[-78,-28],[-92,-59]],[[53889,47930],[0,0],[-6,-26],[0,0],[219,-2],[153,-74],[44,-55],[68,-86],[15,-61],[15,-62],[17,-17]],[[54414,47547],[100,84]],[[54514,47631],[121,102]],[[54635,47733],[79,11],[96,-69],[1,-1],[29,-68],[-18,-65],[-69,-234]],[[54753,47307],[-47,-113],[-109,-127]],[[54597,47067],[-41,-48]],[[54556,47019],[42,-47]],[[54598,46972],[8,-9],[0,0]],[[54606,46963],[125,26]],[[54731,46989],[42,-337]],[[54773,46652],[87,-289]],[[54860,46363],[67,-219]],[[54927,46144],[137,-24]],[[55064,46120],[129,-22],[69,-36],[27,-44],[0,0],[-20,-15],[-50,-36],[-29,2]],[[55190,45969],[-7,0]],[[55183,45969],[-4,-45],[0,-8]],[[55179,45916],[81,-67]],[[55260,45849],[81,-67],[121,-57]],[[55462,45725],[20,-10]],[[55482,45715],[127,3],[8,-2],[170,-45],[0,0],[25,-33],[87,-109]],[[55899,45529],[0,0],[32,30]],[[55931,45559],[150,142],[103,-81]],[[56184,45620],[2,-43],[73,-20],[27,-8],[25,0],[0,0],[13,19]],[[56324,45568],[167,-131],[58,-250]],[[56549,45187],[-263,-108],[-85,-77],[-78,-72],[-186,-120],[-140,-92]],[[55797,44718],[-35,-46],[-35,-44],[-187,25]],[[55540,44653],[-147,-102],[0,0],[7,-45],[13,-86],[0,0],[-15,-22],[-13,-22],[-15,4],[-130,27],[-24,144]],[[55216,44551],[-118,-60],[-45,-23],[0,0],[-18,-47]],[[55035,44421],[-20,-53],[8,-112]],[[55023,44256],[-244,-474],[-56,-109],[-2,-3],[-43,-59],[-65,0],[-58,0]],[[54555,43611],[-29,-141],[-118,-39],[-27,75]],[[54381,43506],[-81,219]],[[54300,43725],[-131,-17],[0,0],[-21,209],[-10,95],[35,241],[-7,8],[-31,35],[-1,25],[0,5],[47,92],[39,57]],[[54220,44475],[35,51],[469,486],[74,53]],[[54798,45065],[197,142]],[[54995,45207],[6,-135],[0,0]],[[55001,45072],[38,10],[65,18],[166,112],[27,18],[0,0],[130,2]],[[55427,45232],[40,48],[0,0],[-144,31]],[[55323,45311],[-35,7]],[[55288,45318],[-213,-5],[-340,-66],[7,44],[9,58],[272,317]],[[55023,45666],[-10,18]],[[55013,45684],[-25,47],[-58,28],[-107,-142]],[[54823,45617],[-99,-132],[-409,-340],[-11,-8],[-66,-23],[-231,-76]],[[54007,45038],[-191,3]],[[53816,45041],[-44,43]],[[53772,45084],[-20,-7],[-14,-5]],[[53738,45072],[-26,-80],[0,0]],[[53712,44992],[46,-206],[13,-62],[0,0],[-115,-166],[-36,-15],[0,0],[-5,15],[-8,21],[3,47]],[[53610,44626],[-115,-86],[-137,-58],[-42,-128],[-32,-39],[-60,50],[-37,71]],[[53187,44436],[-172,-143]],[[53015,44293],[-58,36]],[[52957,44329],[-56,35],[-8,28],[-5,17],[0,0],[-72,-104]],[[52816,44305],[-18,-90],[-12,-62],[0,0]],[[52786,44153],[-116,-275],[0,0],[0,1],[-31,24],[-37,-10]],[[52602,43893],[-138,-180],[-128,70]],[[52336,43783],[-46,-50],[-46,-51],[-26,-65],[0,0],[-273,-782]],[[51945,42835],[-1,-23]],[[51944,42812],[-3,-40],[20,-149]],[[51961,42623],[-127,-397]],[[51834,42226],[42,-47],[31,19]],[[51907,42198],[5,3],[133,-330]],[[52045,41871],[31,-142],[58,-61]],[[52134,41668],[84,-12]],[[52218,41656],[62,35],[39,21],[0,0]],[[52319,41712],[4,48],[4,46]],[[52327,41806],[-43,150],[0,0],[-8,9],[-20,21]],[[52256,41986],[-11,-14],[-13,-16],[0,0],[7,1],[11,1],[0,0],[-11,-15],[0,0],[-26,44],[0,0],[27,19]],[[52240,42006],[62,-42],[12,-31]],[[52314,41933],[22,-60]],[[52336,41873],[23,-140],[4,-117],[0,0],[-29,-103],[-198,18],[-90,35]],[[52046,41566],[-20,7],[0,0],[-1,8],[-4,61],[-23,11]],[[51998,41653],[-30,-52],[-80,-137],[-93,-61],[-22,-15],[-70,24]],[[51703,41412],[44,159],[-4,22],[-2,13],[-68,57]],[[51673,41663],[-22,-280],[-27,-87],[-699,-116],[-216,-166],[-111,-86]],[[50598,40928],[-7,-12]],[[50591,40916],[-77,-137],[0,0],[19,-59]],[[50533,40720],[9,-25],[0,0],[3,23]],[[50545,40718],[7,55],[77,64]],[[50629,40837],[408,87],[215,47],[85,10],[60,8],[0,0],[20,-14],[9,-7],[-529,-363],[-48,-19],[-92,-39],[-302,-66],[-43,50],[9,54]],[[50421,40585],[6,41],[-11,7],[-5,3],[0,0],[-18,-16],[-55,-48],[-20,-63],[-10,-29],[-3,-47],[-3,-42]],[[50302,40391],[49,-20],[44,-17]],[[50395,40354],[10,18],[13,25],[0,0],[5,-136]],[[50423,40261],[4,-117]],[[50427,40144],[-49,-467],[-54,-157]],[[50324,39520],[-53,-152],[-199,-377],[0,0],[-87,-12],[0,0],[-98,141],[-111,159],[-49,430]],[[49727,39709],[0,0],[-13,-39]],[[49714,39670],[-50,-153]],[[49664,39517],[5,-111],[78,-318],[60,-246],[24,-43],[45,-80],[7,4]],[[49883,38723],[24,10],[18,-388]],[[49925,38345],[-89,-387]],[[49836,37958],[-197,-528],[-83,-319],[-16,-31],[-16,-30],[-23,-5],[-12,-3],[-22,208],[55,307],[14,30],[91,200]],[[49627,37787],[10,79]],[[49637,37866],[4,31]],[[49641,37897],[-8,3],[-22,9]],[[49611,37909],[-51,-29],[0,0],[-15,127],[-15,123]],[[49530,38130],[3,78],[2,55],[-31,9]],[[49504,38272],[-10,2],[0,0]],[[49494,38274],[-88,-110],[0,0],[-22,59],[-63,174],[24,111],[9,44],[5,66],[3,47],[0,222]],[[49362,38887],[-15,186],[1,16],[1,20],[24,76],[27,79],[2,4],[20,31],[37,-5]],[[49459,39294],[3,-1],[0,0]],[[49462,39293],[30,221]],[[49492,39514],[-40,-31],[-20,-17]],[[49432,39466],[-84,-139]],[[49348,39327],[-111,-184],[-9,-191],[-11,-248]],[[49217,38704],[3,-65],[9,-170]],[[49229,38469],[92,-391],[-17,-88],[-149,175],[-148,133],[-77,18],[-6,-31]],[[48924,38285],[-2,-9]],[[48922,38276],[154,-138],[65,-58],[171,-202]],[[49312,37878],[29,-133]],[[49341,37745],[-12,-153],[-2,-26],[-46,-1],[-42,13],[-153,295],[-15,28],[-29,3]],[[49042,37904],[0,0],[35,-68],[73,-139]],[[49150,37697],[71,-103],[48,-69]],[[49269,37525],[9,-82]],[[49278,37443],[36,-342],[0,0],[-100,-87],[-6,5],[-48,43]],[[49160,37062],[65,-184]],[[49225,36878],[18,-51],[0,0]],[[49243,36827],[48,5],[0,0],[66,55],[97,-28],[0,0],[32,-67]],[[49486,36792],[140,-799]],[[49626,35993],[0,0],[-17,38]],[[49609,36031],[-14,32],[-46,282]],[[49549,36345],[-88,127]],[[49461,36472],[35,-340],[0,0],[-196,-112],[0,0],[-164,129]],[[49136,36149],[-17,-83]],[[49119,36066],[0,-2],[11,-186]],[[49130,35878],[161,10],[262,17],[30,-83]],[[49583,35822],[19,-50],[-4,-96],[-4,-128],[-193,-275],[0,0],[-32,9],[-167,42],[0,0],[6,-25],[8,-37],[30,-17],[0,-8],[-5,-76],[-36,-127],[-113,-131],[0,0],[208,68],[26,-108],[-88,-194],[-206,-16]],[[49032,34653],[-86,-35],[-99,-124],[-124,-156],[-18,-32],[-258,-454],[0,0],[-38,-5],[-71,-10],[-88,-63],[-94,-67]],[[48156,33707],[-148,-284]],[[48008,33423],[0,0],[-4,-20]],[[48004,33403],[-37,-168],[-167,-260]],[[47800,32975],[-18,-37],[-155,-313],[-172,-148],[-205,-299],[-215,-513],[-59,-288],[-86,-419],[-3,-412],[35,-324],[54,-499]],[[46976,29723],[137,-628],[29,-94],[79,-252],[83,-365]],[[47304,28384],[27,-465]],[[47331,27919],[68,-285]],[[47399,27634],[129,-665],[30,-222],[-59,-1071],[0,0],[-18,19],[-5,6],[-12,-18]],[[47464,25683],[-10,-17]],[[47454,25666],[-43,-289]],[[47411,25377],[-17,-115],[3,-7],[18,-38]],[[47415,25217],[-31,-98],[-18,-57],[0,0]],[[47366,25062],[-4,84],[-34,28],[-231,-96],[-38,-5],[0,0],[-23,37],[-11,36],[-10,30],[11,84],[4,35],[-2,30],[-6,63],[-41,158],[-41,117],[0,1],[-7,12],[-17,34],[-101,126],[-92,297]],[[46723,26133],[-183,589],[-5,-1],[-40,-13],[-124,464]],[[46371,27172],[-77,286]],[[46294,27458],[123,266],[16,58]],[[46433,27782],[-3,50],[-6,12],[-22,43],[-44,29]],[[46358,27916],[-30,-46],[-10,-16],[0,0],[24,-85],[-18,-87],[-55,-56],[0,0],[-6,21],[-46,165],[2,34],[8,108],[79,537],[5,34]],[[46311,28525],[-28,298],[-52,286]],[[46231,29109],[-6,0]],[[46225,29109],[-79,1],[-26,33],[-16,20],[-150,348],[-67,189]],[[45887,29700],[-28,79]],[[45859,29779],[-27,49],[-38,67]],[[45794,29895],[-136,153]],[[45658,30048],[-71,-6]],[[45587,30042],[-34,-4]],[[45553,30038],[-107,-168]],[[45446,29870],[-84,-83],[-53,-53],[-94,-50],[-44,-23],[-30,-7],[-97,-21]],[[45044,29633],[0,11],[6,111]],[[45050,29755],[-31,81]],[[45019,29836],[-18,48]],[[45001,29884],[-246,299],[-186,128]],[[44569,30311],[-166,22],[-36,5],[-168,-42],[-393,-98]],[[43806,30198],[39,108],[-43,287]],[[43802,30593],[-41,36],[0,0],[-18,-53],[-90,-256]],[[43653,30320],[0,0],[-25,11],[-32,14]],[[43596,30345],[-232,20]],[[43364,30365],[-170,-71]],[[43194,30294],[-40,-16],[-265,-312]],[[42889,29966],[3,-75],[82,-83],[90,29],[48,15],[0,0]],[[43112,29852],[14,17],[23,29],[19,-22],[2,-2],[0,0],[-2,-20],[-1,-24],[-40,-102],[0,0],[-161,-185],[2,-38],[1,-21]],[[42969,29484],[72,-120]],[[43041,29364],[155,-73],[68,-146]],[[43264,29145],[8,-63]],[[43272,29082],[-3,-10],[-10,-34],[-94,-86],[-54,-48],[0,0],[-37,234],[-63,122]],[[43011,29260],[-39,77],[-78,62]],[[42894,29399],[-70,-15],[-60,-172]],[[42764,29212],[0,0],[-95,5],[-70,59],[0,0],[-14,-10],[-23,-16]],[[42562,29250],[-25,-47],[-23,-42]],[[42514,29161],[-122,-84],[-127,113],[-21,56]],[[42244,29246],[-64,168],[-238,360]],[[41942,29774],[-4,1],[-18,6]],[[41920,29781],[-37,-10]],[[41883,29771],[-55,-71],[-43,-55]],[[41785,29645],[0,0],[19,-35],[25,-43],[0,0]],[[41829,29567],[-119,-89],[0,0],[-147,60],[-19,8]],[[41544,29546],[-27,23]],[[41517,29569],[-120,98],[-115,51],[-13,6],[-183,-25],[-200,-82],[-242,-189],[-73,283]],[[40571,29711],[-9,8],[-9,8],[0,0],[-116,-72]],[[40437,29655],[-2,-71],[-2,-65]],[[40433,29519],[23,-66],[19,-220],[-129,-261],[-28,-46],[-68,-111],[-452,-448],[-113,-161]],[[39685,28206],[-82,-116],[-33,-61],[-67,-124],[0,0],[78,174],[26,59]],[[39607,28138],[0,0],[124,140],[0,0]],[[39731,28278],[-32,40],[-73,-13],[-145,-154]],[[39481,28151],[-126,-320]],[[39355,27831],[-15,-162],[-1,-9],[-89,-423],[8,-479],[1,-18],[29,-276],[90,-433]],[[39378,26031],[18,-60]],[[39396,25971],[20,-62],[0,0],[-92,-27]],[[39324,25882],[-331,125],[-88,55]],[[38905,26062],[88,-55],[331,-125]],[[39324,25882],[92,27],[-7,-100],[-11,-178],[-86,-341],[-67,-264],[-82,-565],[-18,-336],[-10,-187],[-2,-161],[-11,-716],[-30,-334],[-13,-148],[-1,-159],[53,-414],[0,0],[13,-39],[93,-277],[92,-717],[64,-309],[348,-839],[0,0],[25,-167],[43,-286],[12,-46],[21,-80],[166,-421],[121,-123],[0,0],[135,-25],[134,-69],[84,-86],[8,-8],[6,-7],[43,-45],[51,-172],[38,-129],[22,-16],[35,-27],[98,36],[56,21],[176,116],[142,52],[177,66],[216,167],[43,19],[36,14],[113,26],[128,30],[0,0],[8,-12],[25,-40],[73,36],[29,14],[140,170],[142,172],[21,35],[157,260],[121,551],[14,64],[0,0],[-4,66],[-8,187],[-1,4],[-1,1],[0,0],[32,601],[2,17],[21,132],[16,39],[13,31],[52,65],[48,59],[129,98],[246,90],[289,106],[171,105],[223,21],[192,-94],[105,-52],[58,37],[5,3],[0,38],[-1,58],[15,23],[23,-39],[48,-82],[87,-345],[-53,-254],[-3,-13],[0,0],[-22,-52],[-87,-210],[-74,-117],[-48,-148],[-32,-101],[-26,-149],[0,0],[19,-163],[-17,-65],[-10,-38],[-64,-102],[-54,-44],[1,-40],[1,-37],[40,-105],[30,-78],[-22,-32],[-21,-166],[0,0],[63,-90],[-42,-239],[-45,-257],[-19,-150],[-36,-280],[-4,-5],[-2,8],[-88,671],[-1,1],[0,0],[-2,-5],[-49,-113],[-30,-121],[-31,-129],[-16,-7]],[[54848,32288],[1,-2],[8,-9],[0,0],[-2,-2],[-9,-14],[-34,-50],[-2,-2],[-14,-16],[-2,-1],[-1,0],[0,-1],[-4,-2],[-2,-1],[0,0],[-2,0],[-9,0],[0,0],[-2,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[0,2],[-1,1],[0,0],[-2,8],[-3,11],[6,21],[14,21],[3,4],[-2,-5],[-3,-10],[-2,-3],[-1,-1],[-1,-3],[0,-1],[-1,-2],[-3,-5],[0,-2],[-1,-1],[0,0],[0,0],[0,-1],[-1,-10],[0,-1],[0,0],[0,-1],[0,-1],[3,-11],[0,-3],[1,-2],[1,-2],[1,-1],[0,0],[0,-1],[2,-2],[0,0],[1,1],[3,0],[0,0],[2,0],[0,0],[0,1],[1,0],[1,1],[3,3],[10,13],[5,6],[0,0],[-4,7],[24,26],[8,5],[8,5],[3,3],[0,1],[2,1],[1,3],[1,2],[1,2],[0,0],[-1,2],[0,1],[-1,1],[-1,4],[0,0],[-1,1],[-2,-2],[0,0],[-1,-1],[0,0],[-1,0],[-1,-2],[-1,-1],[0,0],[-1,-2],[0,0],[-3,5],[0,0],[0,0],[9,16],[0,0],[0,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[1,-3],[1,-2]],[[55594,18020],[51,70],[1,1],[8,-70]],[[55654,18021],[-14,-48],[0,0],[-46,47]],[[61963,0],[68,80],[28,2],[48,-23],[28,-14],[8,-16],[16,-29]],[[61926,63],[-60,-63]],[[61835,0],[-6,9],[-6,8],[-20,17],[-40,8],[-18,3],[0,0],[-15,185],[0,0],[276,127],[0,0],[25,-46],[0,-23],[1,-21],[-106,-204]],[[61700,282],[-29,-45],[-41,-62],[0,0],[-40,49],[54,263],[45,9],[0,0],[5,-93],[6,-121]],[[61728,343],[-22,-2],[0,0],[-2,50],[-4,101],[8,54],[8,52],[108,-16],[0,0],[-1,-38],[0,-19],[-43,-103],[-48,-74],[-4,-5]],[[61713,1935],[-38,-49],[-32,-40],[-47,176],[12,106],[58,59],[0,0],[17,-38],[30,-214]],[[57277,13302],[1,-1],[0,0],[2,-2],[1,-1],[0,0],[1,-2],[1,-2],[78,-164],[1,-5],[1,-3],[0,0],[0,-1],[-1,-6],[0,-1],[0,-1],[0,0],[0,-2],[-1,-2],[0,-3],[-1,-3],[0,-3],[-1,-1],[0,0],[-2,-7],[-1,-4],[-1,-4],[-1,-1],[-5,-19],[0,0],[-8,-14],[-16,-29],[-1,-1],[-1,0],[-3,-2],[-1,0],[-1,-1],[0,0],[-1,0],[0,0],[-2,0],[-3,-1],[-15,13],[-20,18],[-1,3],[-3,5],[-7,13],[0,1],[0,0],[-1,3],[-6,48],[-4,111],[-1,20],[1,21],[1,7],[1,4],[0,2],[0,0],[0,1],[3,6],[2,5],[1,2],[0,0],[0,1],[1,0],[2,3],[2,0],[3,0],[3,-1],[1,0],[0,0],[1,0],[0,0],[1,0]],[[44429,70862],[60,-3]],[[44489,70859],[65,21],[105,34]],[[44659,70914],[76,47],[63,38],[301,27],[58,-22]],[[45157,71004],[49,-18],[0,0],[-46,-16]],[[45160,70970],[-24,-8],[0,0],[90,-129],[89,76]],[[45315,70909],[-15,269],[0,0],[74,156]],[[45374,71334],[42,89],[3,96],[-78,40],[-57,-20]],[[45284,71539],[-50,-17],[-172,31]],[[45062,71553],[-103,98],[-129,184]],[[44830,71835],[0,0],[3,40],[2,29]],[[44835,71904],[119,210],[0,0],[89,-10],[226,-26],[186,-129]],[[45455,71949],[11,-7]],[[45466,71942],[10,0],[22,2],[0,0],[-2,32]],[[45496,71976],[-4,15],[-3,11]],[[45489,72002],[-209,126],[-22,14],[-13,73],[-277,105],[-66,86],[-18,66],[-15,159],[5,96],[1,37],[32,68],[140,11],[655,-220]],[[45702,72623],[-492,223]],[[45210,72846],[-276,56],[0,0],[25,39],[44,68],[0,0],[855,-155]],[[45858,72854],[0,0],[-61,31],[-86,43],[-54,11],[-238,46],[-159,55],[-147,49]],[[45113,73089],[18,87],[126,65],[334,107],[89,-23],[101,-26]],[[45781,73299],[-50,34],[-66,44],[0,0],[618,214],[333,4]],[[46616,73595],[196,1],[78,-47],[28,-40],[81,-113],[25,-155],[135,-127],[69,-63],[0,0],[183,-475],[0,0],[-35,-31],[-259,-228]],[[47117,72317],[-93,-103],[-83,-93]],[[46941,72121],[0,0],[41,-4]],[[46982,72117],[202,197],[153,65],[0,0],[4,-16],[10,-37],[-18,-47],[-4,-11],[0,0],[-30,-45],[-172,-262]],[[47127,71961],[-69,-44]],[[47058,71917],[128,-102],[9,4],[208,102]],[[47403,71921],[13,15],[5,7],[-10,28]],[[47411,71971],[42,129],[0,0],[7,9],[142,165]],[[47602,72274],[142,-92],[6,-4],[0,0]],[[47750,72178],[82,27],[53,72],[183,-148],[0,0],[4,-70],[-18,-47],[-30,-82]],[[48024,71930],[-5,-28],[-10,-62]],[[48009,71840],[193,-55],[0,0],[-119,107],[3,9],[52,138]],[[48138,72039],[0,0],[156,-69],[47,-110],[123,-97],[186,-146],[1,7],[3,68],[0,0],[-61,54],[-106,95],[-102,71]],[[48385,71912],[-279,192],[0,0],[55,99],[41,17],[37,14],[133,-47],[288,-103],[334,-79]],[[48994,72005],[22,-5],[0,0],[-149,71]],[[48867,72071],[-162,26],[-337,137],[-78,52],[-28,19],[0,0],[7,75],[49,63],[39,25],[41,26],[376,133],[344,-32],[11,-10],[42,-38],[154,-66],[86,-21],[61,-15],[51,6],[48,6],[208,-70],[91,-31],[77,-153],[43,-85],[-86,-78],[-59,-55],[-68,12]],[[49777,71997],[-110,19],[-220,-79],[-163,-216],[33,33],[168,172],[88,32],[99,36]],[[49672,71994],[179,-51],[0,0],[-115,-71],[-81,-50]],[[49655,71822],[0,0],[-177,-237],[0,0]],[[49478,71585],[280,287],[246,110],[307,-36],[43,-75],[13,-23],[-3,-16],[-15,-84],[-17,-30],[-11,-18],[-318,-99]],[[50003,71601],[-94,-30],[0,0],[-18,-28]],[[49891,71543],[-99,-152],[0,0],[234,126]],[[50026,71517],[27,-85],[13,-199],[-99,-101],[-57,-58]],[[49910,71074],[22,-24],[0,0],[10,9],[172,165],[-9,74],[-3,25]],[[50102,71323],[-16,10],[-11,7],[0,36],[0,24],[226,203],[176,30]],[[50477,71633],[76,13],[69,-17],[0,0],[-6,-25],[-3,-12],[-243,-259]],[[50370,71333],[-4,-18],[-2,-9],[0,0],[37,-138]],[[50401,71168],[214,224],[0,0],[-5,-119]],[[50610,71273],[-2,-45],[0,0],[40,-88],[0,0],[79,79]],[[50727,71219],[70,-27],[60,-23]],[[50857,71169],[0,0],[-25,-89],[-10,-36],[0,0]],[[50822,71044],[267,449],[55,23],[0,0],[273,-78],[201,-98]],[[51618,71340],[166,-201],[0,0],[-152,-194],[0,0],[-85,17]],[[51547,70962],[-113,23],[-100,-33],[-1,0]],[[51333,70952],[-110,-189],[-7,-82]],[[51216,70681],[-8,-103],[0,0],[137,82],[217,60],[128,36],[0,0],[23,34]],[[51713,70790],[78,114],[149,83],[102,-61],[0,0],[7,-22],[34,-106],[0,0],[-111,-158],[-188,-157],[-96,-8],[-119,-10]],[[51569,70465],[-25,-39],[-47,-74]],[[51497,70352],[-39,-135]],[[51458,70217],[-13,-46]],[[51445,70171],[172,269],[71,-11],[75,-11],[0,0],[-22,-152],[-15,-106],[-132,-237]],[[51594,69923],[3,-26],[106,136],[0,0]],[[51703,70033],[135,420],[226,155]],[[52064,70608],[124,56]],[[52188,70664],[193,88],[32,-14],[28,-13],[0,0],[-66,-80]],[[52375,70645],[-42,-52],[-114,-64],[-30,-17],[-19,-104],[397,244],[78,-4]],[[52645,70648],[63,-2],[347,-166],[-10,-232],[0,0],[-532,-162]],[[52513,70086],[-188,-132],[0,0],[-64,-108]],[[52261,69846],[-149,-122],[0,0],[86,14],[167,137]],[[52365,69875],[59,48],[0,0],[1,5],[14,41],[0,0],[92,55],[238,41]],[[52769,70065],[118,21],[70,-4],[0,0],[13,-37],[-15,-24],[-68,-111],[-89,-59]],[[52798,69851],[-153,-100],[-106,-39],[-149,-134],[0,0],[152,92]],[[52542,69670],[367,156],[248,146]],[[53157,69972],[32,35]],[[53189,70007],[0,0],[-30,12]],[[53159,70019],[-33,13],[2,47],[91,113],[33,10],[216,-149],[86,-94],[96,-167],[18,-68],[30,-115],[0,0],[-134,-16],[-5,-1],[-49,14],[-182,50]],[[53328,69656],[-542,-202],[-57,-10]],[[52729,69444],[-132,-23],[-147,19],[-97,-15],[-46,-7],[0,0],[18,-11],[38,-22],[287,34]],[[52650,69419],[210,24],[197,-4]],[[53057,69439],[300,-95]],[[53357,69344],[134,-1]],[[53491,69343],[156,-1],[178,-100],[86,-100],[-1,-51]],[[53910,69091],[-1,-28],[-44,-47],[-168,14],[-172,15]],[[53525,69045],[-234,78]],[[53291,69123],[-163,55],[-137,21],[-209,32],[-107,-85],[0,0],[169,51],[15,5],[242,-61]],[[53101,69141],[7,-42],[0,0],[-141,-17]],[[52967,69082],[-52,-6],[0,0]],[[52915,69076],[-54,-73],[61,-9],[150,61],[142,-46]],[[53214,69009],[24,-8],[137,-79]],[[53375,68922],[0,0],[-6,-18],[-8,-20],[-43,-11],[-31,-8],[-149,-5],[0,0],[76,-65],[71,-61],[0,0],[-27,-46]],[[53258,68688],[-8,-13],[0,0],[-232,27],[-382,44]],[[52636,68746],[0,0],[11,-53]],[[52647,68693],[524,-102],[19,-10],[22,-11],[25,-47],[4,-7],[0,0],[-164,10]],[[53077,68526],[-130,8],[-99,-48],[0,0],[14,-9],[13,-8],[58,1],[189,3],[117,-50],[34,-14]],[[53273,68409],[98,-24]],[[53371,68385],[287,-71]],[[53658,68314],[191,41],[15,-9],[36,-22],[0,0],[-111,-42]],[[53789,68282],[-107,-1],[-73,-1],[-215,-57],[-57,-42],[1,-29],[0,-8],[81,30],[59,22],[218,3],[41,1],[68,-104]],[[53805,68096],[33,-51],[27,-20],[47,-34],[94,-8]],[[54006,67983],[71,-6]],[[54077,67977],[58,-98],[-25,-32],[-66,-85],[-30,-21],[-23,-15],[0,0],[205,122]],[[54196,67848],[57,33],[0,0]],[[54253,67881],[-12,-108]],[[54241,67773],[-11,-105],[29,-68],[0,0],[84,221]],[[54343,67821],[45,53],[28,-6],[78,-15],[0,0],[-2,-12],[-9,-60],[-43,-91]],[[54440,67690],[8,-32]],[[54448,67658],[220,261],[0,0],[68,-1],[104,-60],[0,0],[-112,-70],[-31,-41],[-50,-65]],[[54647,67682],[-11,-100],[156,57]],[[54792,67639],[22,37],[12,20],[0,0],[73,-5]],[[54899,67691],[38,-3],[9,-9],[192,-188]],[[55138,67491],[36,-157],[0,0],[-161,-105]],[[55013,67229],[-65,-42],[2,-52]],[[54950,67135],[0,-4],[0,0]],[[54950,67131],[77,7],[77,7],[4,-12]],[[55108,67133],[12,-45],[0,0],[-231,-72],[-33,-40],[0,0],[-1,-10],[-10,-80],[76,53],[156,108],[96,31],[99,32],[166,-11],[36,-3],[18,32],[31,53]],[[55523,67181],[100,26],[14,-14],[28,-28],[16,-70],[-54,-68],[-41,-1],[-34,-15]],[[55552,67011],[0,0],[-28,-23],[-105,-180],[-27,-46]],[[55392,66762],[16,-42]],[[55408,66720],[6,-15],[130,65],[88,43],[251,-20]],[[55883,66793],[235,69]],[[56118,66862],[31,-29]],[[56149,66833],[249,-186],[82,-148],[0,0],[-66,-74],[-6,-7],[-47,-12],[-4,-1],[-23,16],[-103,72],[0,0],[130,-204],[7,-12],[0,0],[3,-8],[12,-35],[0,0],[-5,-5],[-16,-15],[-206,-46],[-242,99],[-34,-82]],[[55880,66185],[-39,-93],[0,0],[37,-15],[39,-15],[171,-142],[0,0]],[[56088,65920],[-141,-43],[-6,-30],[0,-3],[25,-109],[15,-62],[0,0],[-101,-3]],[[55880,65670],[-72,-3],[0,0],[14,-54]],[[55822,65613],[23,-88],[-27,-69],[-155,68]],[[55663,65524],[-149,66],[-86,138]],[[55428,65728],[-31,-175],[43,-156]],[[55440,65397],[0,0],[-5,-12],[-14,-30],[-103,-2],[0,0],[61,-63],[61,-62]],[[55440,65228],[49,-108],[-30,-52]],[[55459,65068],[-30,-7],[14,-41]],[[55443,65020],[-33,-217],[-5,-36],[-60,23],[-34,66],[-22,41],[-44,35],[-68,53],[-70,117]],[[55107,65102],[-59,16]],[[55048,65118],[-58,15],[-111,-99],[-22,28],[-43,57],[-17,76]],[[54797,65195],[-4,16],[0,0],[7,16],[10,27],[45,29],[37,24],[0,0],[-79,-4],[-30,-2],[-113,83],[0,0],[17,19],[23,26],[0,0]],[[54710,65429],[-118,71],[-104,64],[-17,65],[7,15],[63,145],[0,0],[160,78]],[[54701,65867],[128,204],[0,0],[-49,-66],[-234,-137],[-53,-10],[-198,-36],[-38,23],[0,0],[-8,77],[44,54],[4,25],[2,15],[0,0],[-63,-25],[-33,13],[-39,16],[-101,130]],[[54063,66150],[-190,117],[-36,136],[-11,43],[-220,16]],[[53606,66462],[-58,25],[-26,12],[-43,-30],[-30,-22]],[[53449,66447],[170,-39],[45,-58],[7,-10],[4,-9],[34,-78],[0,0],[-31,-10],[-13,19]],[[53665,66262],[-20,27],[-77,17],[0,0]],[[53568,66306],[86,-126],[0,0],[-11,-16],[-2,-4],[-55,9],[-160,179]],[[53426,66348],[-69,28]],[[53357,66376],[-16,-13]],[[53341,66363],[-14,-12],[0,0]],[[53327,66351],[93,-187],[34,-44],[31,-43]],[[53485,66077],[191,-155],[0,0],[-55,-119],[0,0],[-212,41]],[[53409,65844],[-1,-16],[-1,-29],[0,0],[-144,103],[-100,-16]],[[53163,65886],[-27,-4],[-7,-77],[53,-81],[27,-42],[63,-24],[36,14]],[[53308,65672],[33,13],[0,0],[2,-109],[0,0],[-35,-115],[5,-37]],[[53313,65424],[2,-20],[0,0]],[[53315,65404],[68,81],[26,31],[95,23],[63,15],[67,-31],[2,-12],[3,-27],[0,0],[-18,-31],[-46,-22]],[[53575,65431],[-39,-19],[0,0],[31,-31],[46,-45]],[[53613,65336],[122,5],[-4,-53],[-1,-6],[0,0],[-24,-50],[-82,-7],[43,-154]],[[53667,65071],[0,0],[15,-18],[63,-77]],[[53745,64976],[34,7],[35,7],[38,-56],[29,-179]],[[53881,64755],[36,38]],[[53917,64793],[20,22],[35,-2],[42,-2],[48,-19]],[[54062,64792],[46,-17],[0,0],[4,-90],[1,-26],[-31,-12]],[[54082,64647],[120,-23]],[[54202,64624],[63,-11],[0,0],[-4,115],[-1,29],[0,0]],[[54260,64757],[48,7],[37,-34]],[[54345,64730],[94,-87],[15,-44],[-7,-43]],[[54447,64556],[-5,-33],[-70,-56],[2,-56],[0,-16],[174,-19]],[[54548,64376],[134,-14],[-4,-71],[0,0],[-167,-140],[0,0],[107,-159]],[[54618,63992],[53,-78],[74,-37]],[[54745,63877],[15,-8],[40,-61],[0,0],[-63,-74],[-5,-26],[-1,-9],[15,-23],[13,-21],[79,-19]],[[54838,63636],[108,-75],[0,0],[-6,-124],[-35,-150]],[[54905,63287],[-4,-17],[0,0],[-1,-23],[-2,-37],[8,-22],[6,-14],[0,0],[-14,12],[-76,71]],[[54822,63257],[-78,224]],[[54744,63481],[-93,173],[-2,4],[-42,25],[-31,18],[0,0],[-8,-21],[0,0]],[[54568,63680],[128,-229],[0,0],[-27,-108]],[[54669,63343],[-16,-61]],[[54653,63282],[68,-159],[65,-151],[70,-117],[44,-71],[0,0],[-19,-5],[-97,-26],[-85,65]],[[54699,62818],[0,0],[-12,18],[-36,54],[-29,-30],[-14,-14],[37,-115],[2,-8],[0,0],[6,-7]],[[54653,62716],[83,-110],[2,-13],[5,-50],[0,0],[-21,-43],[-2,-5],[-54,-26],[-43,-20],[-60,123],[-4,8],[-10,53],[-17,87]],[[54532,62720],[-67,32]],[[54465,62752],[-461,217],[-129,15],[-522,655]],[[53353,63639],[0,0],[-7,2],[-8,1]],[[53338,63642],[48,-184],[37,-80],[22,-47],[-95,33]],[[53350,63364],[-306,257]],[[53044,63621],[-94,28],[-134,-15],[0,0],[105,-188],[2,-4]],[[52923,63442],[110,-115],[72,-106]],[[53105,63221],[125,-184]],[[53230,63037],[116,-25],[109,-128],[38,-43]],[[53493,62841],[43,-21]],[[53536,62820],[100,-47],[77,-81],[0,0],[36,-112]],[[53749,62580],[2,-5],[22,-30]],[[53773,62545],[122,-10],[19,-24],[39,-49],[120,-202],[136,-150]],[[54209,62110],[-22,-134],[0,0],[38,-125],[26,-87],[-39,-3],[-97,-9],[-105,34],[-106,100]],[[53904,61886],[-397,173]],[[53507,62059],[-476,77],[-277,170]],[[52754,62306],[-50,30],[-84,119],[-59,124],[-1,3],[0,1],[0,64]],[[52560,62647],[0,0],[-63,32],[-97,49],[-18,-26],[-18,-26]],[[52364,62676],[-92,-44],[-18,-8],[0,0],[-107,87]],[[52147,62711],[-13,6]],[[52134,62717],[-127,57],[-179,130]],[[51828,62904],[0,0],[7,1],[22,3],[60,75],[0,31],[1,34],[-9,-3],[-35,-14]],[[51874,63031],[-100,-126],[-35,-10],[-53,29],[-17,70]],[[51669,62994],[-70,17],[-43,10],[-53,141]],[[51503,63162],[0,0],[1,58],[2,92],[0,0]],[[51506,63312],[223,102]],[[51729,63414],[29,61],[0,0],[-154,42],[-17,79],[-119,72],[-24,-15],[-35,-21]],[[51409,63632],[-9,-96],[0,0],[-18,16],[-19,16],[-68,71]],[[51295,63639],[-22,199]],[[51273,63838],[-42,104],[-6,-8],[-17,-23],[0,-174]],[[51208,63737],[0,-29],[0,0],[-3,-2],[-40,-23],[-36,77]],[[51129,63760],[-59,127]],[[51070,63887],[-29,1],[-43,1],[-23,17],[-17,13],[0,0],[-18,56],[11,22]],[[50951,63997],[22,48],[-101,85]],[[50872,64130],[-38,12],[-47,15],[-56,63],[2,43]],[[50733,64263],[7,117],[17,0],[31,37],[22,27],[0,0],[1,46],[0,0],[-33,30],[0,0]],[[50778,64520],[-105,-159],[-4,-12],[-31,-81],[-55,120],[0,0],[51,27],[77,40],[0,0],[-88,60]],[[50623,64515],[-42,-25]],[[50581,64490],[-74,-44],[-44,-81],[-26,-59],[-60,-40],[54,194]],[[50431,64460],[0,0],[-25,113],[-33,33],[-11,10]],[[50362,64616],[-129,-155],[-126,132],[0,0],[-7,19],[0,0],[60,102]],[[50160,64714],[5,8],[-26,10],[-41,16],[-48,-31],[-62,-40],[2,-14]],[[49990,64663],[4,-25]],[[49994,64638],[45,-55]],[[50039,64583],[27,-14],[27,-13],[21,-69],[16,-50],[-5,-106],[-1,-19],[-318,65]],[[49806,64377],[-15,3]],[[49791,64380],[-226,119]],[[49565,64499],[0,-26],[1,-43],[0,0],[10,-26],[15,-38],[-15,-76],[0,0],[-91,-17]],[[49485,64273],[-186,-35]],[[49299,64238],[0,0],[13,-14]],[[49312,64224],[18,-18],[0,0],[-142,-16]],[[49188,64190],[-45,-5],[0,0],[-16,-15],[0,0],[3,-34],[0,0],[-304,52]],[[48826,64188],[-185,32],[-192,240],[-27,122],[35,260],[227,161],[104,151],[0,0],[-8,15],[-25,42],[0,0],[48,135],[286,-53]],[[49089,65293],[439,-141],[6,0],[174,4]],[[49708,65156],[195,64],[176,57],[43,-74]],[[50122,65203],[32,2],[21,2],[29,32]],[[50204,65239],[107,115]],[[50311,65354],[91,57],[41,2],[38,2],[31,-14],[37,-18],[33,-42]],[[50582,65341],[10,-13],[0,0],[20,-3],[52,-9],[0,0],[-1,23],[-1,17],[-105,295]],[[50557,65651],[-96,44],[-86,89],[-47,57],[-99,117],[-10,39],[-10,38],[0,0],[47,61],[133,83]],[[50389,66179],[69,43],[141,129]],[[50599,66351],[271,250],[34,76],[46,103]],[[50950,66780],[173,179],[0,0],[99,28],[8,20],[47,121],[0,0]],[[51277,67128],[-150,382]],[[51127,67510],[-117,233],[-79,209],[-17,93]],[[50914,68045],[-173,128],[-78,-24],[-70,-22],[-50,63],[0,0],[-9,128]],[[50534,68318],[-5,62],[0,0],[30,20],[9,131],[0,0]],[[50568,68531],[-94,55]],[[50474,68586],[-131,24],[-10,-6],[0,0],[3,-7],[10,-19]],[[50346,68578],[73,-78],[63,-66],[0,0],[-15,-41],[-25,-14],[-9,-6],[0,0],[-181,49],[-28,23],[-22,19],[-55,111]],[[50147,68575],[-39,79],[0,0],[11,6],[97,55],[0,0],[-87,12]],[[50129,68727],[-77,79]],[[50052,68806],[-343,22],[-102,-100],[-276,-156],[-58,-14],[-40,-9],[-27,8],[-30,9],[0,0],[-17,36],[12,212],[7,60],[0,0],[13,17],[15,19],[57,14],[41,10],[79,-21],[48,-13]],[[49431,68900],[93,20]],[[49524,68920],[142,31],[14,88],[1,9],[-10,54],[-65,72]],[[49606,69174],[-119,72]],[[49487,69246],[-27,17],[-7,4],[-65,31]],[[49388,69298],[-98,-1],[-95,90],[-29,27],[5,42],[1,14],[52,48],[16,14],[0,0],[-75,-67],[-33,-29],[-29,11],[-194,70],[0,0],[24,29],[11,15],[36,12],[43,15],[10,-11]],[[49033,69577],[3,-4],[-9,-20],[0,0],[29,8],[20,6],[33,53],[0,0],[-5,18],[-18,66],[0,0],[-208,51],[-73,-32]],[[48805,69723],[-44,-19],[0,0],[1,-2],[12,-27],[-8,-14],[-6,-13],[-61,-23],[-13,42],[-10,34],[-3,193],[21,154]],[[48694,70048],[0,0],[-12,29],[-51,34],[-38,26],[-71,0],[-78,-1],[-4,-12]],[[48440,70124],[14,-37],[0,0],[-45,-11],[-82,42],[-36,38],[-22,23],[40,71]],[[48309,70250],[-289,110],[-5,49],[0,0],[119,52]],[[48134,70461],[54,-42],[0,0],[-48,83],[-22,38],[-27,21],[-22,17],[-25,0]],[[48044,70578],[-70,-283],[0,0],[-78,31],[0,0],[11,64]],[[47907,70390],[0,0],[-45,4],[-36,4],[-40,-48],[-11,-60],[-3,-12],[0,0],[67,-30],[89,-38]],[[47928,70210],[115,8],[36,-24],[76,-117],[14,-58],[42,-163],[0,0],[-72,-83],[-382,-31],[-89,42],[-8,9],[-87,99]],[[47573,69892],[-491,71],[-294,42],[0,0],[6,-24]],[[46794,69981],[7,-33]],[[46801,69948],[41,-20],[55,-26],[42,8],[18,4],[64,-43],[90,-100],[111,-122],[0,0],[-21,-14],[-54,-35],[-183,142]],[[46964,69742],[-50,38],[-66,41],[-284,176],[-196,79],[-146,59],[0,0],[52,-45],[9,-8],[110,-50],[194,-89],[169,-130]],[[46756,69813],[-62,-70],[-4,-6],[0,0],[-42,-8],[-9,10],[-24,25]],[[46615,69764],[-45,-52],[-50,-1],[-55,-1],[-195,83],[-142,99]],[[46128,69892],[-327,-56],[-119,14],[-269,33],[-83,39],[-61,28],[-75,11],[-59,9]],[[45135,69970],[-252,18]],[[44883,69988],[-98,-23],[0,-3],[10,-37],[0,0],[33,10],[82,24]],[[44910,69959],[180,-91],[0,0],[-125,10],[-82,6],[-44,8],[-64,10],[-176,91],[-119,109],[-25,98],[-12,46],[0,0],[-47,3],[-91,7],[-33,87]],[[44272,70343],[-38,-14],[-47,-17]],[[44187,70312],[-15,-35],[-39,-93]],[[44133,70184],[-126,-17],[-59,-7],[-14,-7],[-50,-28],[-81,2],[-126,68],[-30,16],[0,0],[5,1],[65,6]],[[43717,70218],[-139,88],[-255,161]],[[43323,70467],[-66,78]],[[43257,70545],[-90,106],[-40,154],[1,85]],[[43128,70890],[63,60],[102,-12],[121,-13],[193,-65]],[[43607,70860],[3,-7],[10,-21],[104,-13],[54,-8]],[[43778,70811],[311,34]],[[44089,70845],[84,34],[0,0],[-17,22]],[[44156,70901],[-130,74],[-183,103],[-55,20],[-39,15],[-360,35]],[[43389,71148],[-405,40],[-114,48],[-45,93],[0,0],[0,123],[30,89],[23,489],[2,29],[-17,32],[-18,34],[-6,42],[-3,24],[0,0],[18,41],[73,166],[71,103],[48,2]],[[43046,72503],[52,89],[25,43],[0,0]],[[43123,72635],[6,160],[2,78],[165,279],[260,216],[82,68],[313,162]],[[43951,73598],[468,118],[141,2]],[[44560,73718],[116,1],[413,-33],[82,-21],[29,-8],[69,-51],[0,0],[-18,-22],[-42,-55],[-443,-288]],[[44766,73241],[-50,-54],[-60,-64],[-224,-360]],[[44432,72763],[-2,-286]],[[44430,72477],[130,-262],[0,0],[-29,-46]],[[44531,72169],[-12,-19],[-6,-41],[-6,-44],[31,-183],[115,-179],[0,0]],[[44653,71703],[25,-25],[195,-190],[114,-80],[257,-182],[0,0],[-23,-30],[-27,-35],[-170,-31]],[[45024,71130],[-488,-187]],[[44536,70943],[-197,-75],[0,0],[90,-6]],[[31551,72530],[54,126],[97,120]],[[31702,72776],[98,70]],[[31800,72846],[40,29],[482,-116],[149,-61],[267,-110],[0,0],[1,-40],[2,-56],[-67,-94],[-39,-54],[-127,-71],[-102,-56]],[[32406,72217],[0,0],[24,-17],[67,-47]],[[32497,72153],[202,99],[191,94]],[[32890,72346],[40,30],[80,59],[102,-37],[134,-48]],[[33246,72350],[172,-1]],[[33418,72349],[-124,153]],[[33294,72502],[58,13]],[[33352,72515],[46,10],[0,0],[-1,4],[-23,59]],[[33374,72588],[-315,128],[-28,31]],[[33031,72747],[-71,80],[0,0],[25,35]],[[32985,72862],[43,10],[315,-34],[127,-81],[4,-10]],[[33474,72747],[12,-33]],[[33486,72714],[402,-241],[70,-97],[22,-30],[47,-305],[12,-35],[35,-98],[37,-184]],[[34111,71724],[25,-125],[194,-123],[8,3],[41,15],[112,128]],[[34491,71622],[43,49],[0,0],[33,124]],[[34567,71795],[-128,140],[-73,120],[-30,241],[-17,59]],[[34319,72355],[-180,622],[77,149],[0,0],[-3,12],[-7,23],[13,17]],[[34219,73178],[25,33],[109,-15]],[[34353,73196],[94,-12],[243,-84],[90,-6]],[[34780,73094],[127,-9],[34,-21]],[[34941,73064],[479,-291],[49,-69],[0,0],[7,-74]],[[35476,72630],[4,-43]],[[35480,72587],[348,-894],[0,0],[80,-83],[32,-53],[41,-70],[7,-145],[5,-101],[-44,-110],[-98,-124]],[[35851,71007],[0,0],[42,-78],[41,-35]],[[35934,70894],[489,-426]],[[36423,70468],[214,-47]],[[36637,70421],[-45,33],[-12,36],[-4,13],[0,0],[4,33],[4,28],[8,-1],[32,-4],[193,-196],[331,-206],[147,-116],[33,-27],[0,0],[24,2],[123,8],[54,54],[26,-19],[42,-31],[3,-15],[47,-226],[3,-60],[3,-40],[-23,-113],[-10,-14],[-9,-11],[-79,-3]],[[37532,69546],[-72,-2],[-14,8],[-9,5],[-34,79]],[[37403,69636],[0,0],[-17,99],[0,0],[-32,7],[-107,-141],[-161,186],[0,0],[-33,2],[-61,2],[0,0],[-3,-4],[-86,-112]],[[36903,69675],[-15,-42],[-17,-46],[0,0],[9,-13],[-2,-39],[-4,-88],[-46,-25],[-64,10]],[[36764,69432],[-117,19],[-140,111],[-40,9],[-83,18],[0,0],[18,-46]],[[36402,69543],[19,-45]],[[36421,69498],[75,-74]],[[36496,69424],[76,-74],[0,0]],[[36572,69350],[6,15],[23,54],[31,-42],[13,-88],[-17,-144],[0,-3],[0,0],[-94,-67]],[[36534,69075],[2,-56],[17,-11]],[[36553,69008],[224,270],[4,2],[131,97],[51,8],[92,-26],[65,-18],[10,-22],[17,-35],[0,0],[-100,-125]],[[37047,69159],[0,0],[12,-9]],[[37059,69150],[40,-27],[62,28],[74,-106],[-22,-156],[-9,-7],[-5,-5],[-116,-25]],[[37083,68852],[-309,-69],[-70,-50]],[[36704,68733],[-71,-51],[-498,51],[-132,47],[-19,46]],[[35984,68826],[-36,-1],[0,0]],[[35948,68825],[-14,-47],[-39,-41],[-168,20],[-107,14],[-59,66],[0,0],[63,29]],[[35624,68866],[79,36],[31,50],[-227,42],[-262,48],[-188,89],[0,0],[6,6],[21,23],[0,0],[-20,57],[-16,43],[-66,58],[-58,51],[-128,-124],[-3,-3],[-42,-67],[-35,-110]],[[34716,69065],[-106,-115],[-69,-76],[-281,-56],[-256,-51],[-192,-142],[-43,-17],[-79,-29],[-334,-77],[-554,-38],[-341,-45]],[[32461,68419],[-406,-53]],[[32055,68366],[-244,11]],[[31811,68377],[-9,0],[0,0],[-232,305],[0,0],[17,380]],[[31587,69062],[-60,30],[-72,35],[-147,25]],[[31308,69152],[-474,-26],[-317,40],[-62,24],[-221,85],[-29,19],[-53,37],[-33,75],[-20,44],[-218,167],[-45,78],[-55,159],[0,0],[42,74],[157,66],[389,86],[770,111],[86,1],[81,0],[704,-101]],[[32010,70091],[83,9],[538,58],[0,0],[-13,26],[-15,30],[-555,208]],[[32048,70422],[-644,162]],[[31404,70584],[-239,-66],[-348,-45],[-346,-16],[-41,13]],[[30430,70470],[-112,36],[-294,-18]],[[30024,70488],[-296,-18],[-41,51]],[[29687,70521],[-47,57],[-143,84]],[[29497,70662],[-95,56],[-102,125],[1,12],[1,14],[24,28],[15,16],[254,125],[167,32],[210,40]],[[29972,71110],[434,129],[0,0],[185,16]],[[30591,71255],[-198,44],[0,0],[155,68],[27,3],[51,4],[41,-22],[17,-5],[36,-13]],[[30720,71334],[22,1],[23,1],[71,34],[67,32],[0,0],[-220,15]],[[30683,71417],[-346,-57],[-335,-56],[-186,17]],[[29816,71321],[-22,2],[-84,42],[-41,-22],[0,0],[6,-14],[4,-10],[-15,-43]],[[29664,71276],[-8,-21],[0,0],[-71,-1],[-163,-2],[-41,16],[-4,2],[0,0],[-27,70],[0,0],[108,76],[75,13],[119,22]],[[29652,71451],[-13,84]],[[29639,71535],[-156,-11],[-406,-27],[-11,-40],[0,0],[-21,19],[-50,45],[0,0],[-5,20],[-21,84],[0,101],[0,0],[63,93],[35,50]],[[29067,71869],[122,122],[64,33],[95,48]],[[29348,72072],[3,66],[2,77]],[[29353,72215],[-97,30],[-13,25],[-5,10],[0,0],[2,18],[4,42],[0,0],[163,147],[4,4],[0,0],[446,303],[688,246]],[[30545,73040],[554,198]],[[31099,73238],[29,1],[33,1],[157,-60],[75,-95],[21,-27],[0,0],[20,-88],[-1,-280],[-101,-22],[-112,-104]],[[31220,72564],[-93,-86],[0,0],[1,-41],[0,-6],[188,44],[235,55]],[[52971,82488],[0,0],[29,-16]],[[53000,82472],[631,60]],[[53631,82532],[726,165],[154,-13],[69,-54]],[[54580,82630],[2,77],[0,3],[0,0],[17,23],[196,23],[39,-6],[43,-6],[0,0],[-51,-32]],[[54826,82712],[0,0],[39,-51],[91,-43]],[[54956,82618],[214,65],[115,0],[105,0],[58,-33],[0,0],[3,-25],[1,-15],[-17,-10],[-85,-51]],[[55350,82549],[0,0],[193,-114]],[[55543,82435],[143,-86],[356,25],[227,-36]],[[56269,82338],[186,-62],[30,-22],[62,-48],[0,-28],[0,-13],[0,0],[-19,-45],[-18,-42],[-220,-91],[-200,-83],[-748,-233],[-200,-62],[-141,-2]],[[55001,81607],[-414,-7],[-273,-41],[-133,-19],[0,0]],[[54181,81540],[364,-2],[0,0],[-140,-34]],[[54405,81504],[-101,-24],[-1244,-41]],[[53060,81439],[-224,-39],[0,0],[47,-11],[122,-28],[331,27],[351,28]],[[53687,81416],[260,-48],[0,0],[-1596,-344]],[[52351,81024],[-2,-87],[0,0],[347,121],[149,25]],[[52845,81083],[1620,267]],[[54465,81350],[462,49],[0,0],[56,-55],[0,0],[-38,-55],[0,0],[-79,-54],[0,0],[-31,-10],[-412,-136],[-146,-8]],[[54277,81081],[-20,-1],[-99,-52]],[[54158,81028],[-154,-81],[-1131,-476]],[[52873,80471],[-71,-48]],[[52802,80423],[-42,-28]],[[52760,80395],[-101,-129],[-46,-20],[-51,-23],[-339,-29],[0,0],[-12,19],[0,0],[38,63]],[[52249,80276],[0,0],[-128,70],[-80,44],[-99,11],[0,0],[83,-78],[97,-91]],[[52122,80232],[119,-56],[136,-65],[0,0],[-38,-25],[-67,-45],[-203,9],[-20,0],[-386,-67],[-378,47]],[[51285,80030],[-58,-112],[152,1],[267,1],[152,28]],[[51798,79948],[203,36],[111,-39],[0,0],[-97,-103],[-157,-27],[-195,-33]],[[51663,79782],[-19,-23],[-8,-11],[0,0]],[[51636,79748],[168,22],[36,-10],[84,-24],[0,0],[-67,-55],[-37,-30],[-96,-39],[-62,-24],[-327,-58],[-21,-1],[-247,-4],[-65,18],[-38,11],[-26,27],[-46,48]],[[50892,79629],[-109,40],[-18,6],[-326,61],[-156,3],[-121,-18],[-158,-23],[0,0],[125,-54]],[[50129,79644],[307,2],[72,-11],[168,-25]],[[50676,79610],[54,-19],[4,-3],[94,-86],[30,-96],[0,0],[-78,-31],[-53,-20],[-603,-65],[-68,-18],[-37,-10],[-15,-32],[-92,-5],[-762,145]],[[49150,79370],[-43,-33]],[[49107,79337],[195,-15],[17,-2],[224,-118],[0,0],[-532,22]],[[49011,79224],[-382,-14],[-129,-4],[0,0],[468,-79],[483,-17]],[[49451,79110],[754,-26],[17,-6],[1,-133],[0,-26],[0,0],[-3,-7],[-9,-27],[-63,-16],[-429,44],[-163,41],[0,0],[-15,9],[15,31]],[[49556,78994],[2,4],[-1,2],[-6,13],[-138,44],[-296,2],[-522,5],[-186,-39],[0,0],[720,-15]],[[49129,79010],[326,-55],[0,0],[-12,-4],[-55,-22],[-350,-6],[-379,-7]],[[48659,78916],[-305,24]],[[48354,78940],[-245,-21],[0,0]],[[48109,78919],[497,-9],[80,-37],[0,0],[-154,-94]],[[48532,78779],[-89,-75],[-26,-23],[-17,-39],[-4,-11],[42,-9],[0,0],[29,34],[82,96]],[[48549,78752],[137,75],[444,52],[241,-25]],[[49371,78854],[234,-24],[16,-16],[0,0],[-71,-31],[0,0],[0,-5],[1,-41]],[[49551,78737],[279,8],[0,0],[223,-56],[35,-40],[-2,-125]],[[50086,78524],[-1,-76]],[[50085,78448],[-274,-71],[-212,-18],[-104,15],[-38,5],[0,0],[-3,-7],[-18,-33]],[[49436,78339],[368,-75],[146,-76],[0,0],[-6,-5],[-4,-4],[-200,-89],[-134,-18]],[[49606,78072],[-354,30],[-107,-13],[-124,-15],[5,-10],[4,-12],[0,0],[80,-17],[108,-25]],[[49218,78010],[459,-25],[3,-24],[0,0],[-2,-3],[-39,-66],[-49,-30],[-42,-27],[-65,6],[-38,3],[-475,-69],[-113,9],[-562,47]],[[48295,77831],[0,0],[-1,-1],[-19,-35],[0,0],[72,-70],[124,-40]],[[48471,77685],[17,-20],[51,-57],[16,-61],[31,-120],[-239,-201],[-59,-18],[-78,-24],[-311,-32],[-73,0],[-450,2],[-307,100],[-81,26],[-163,95]],[[46825,77375],[-96,112],[-41,47],[0,0],[-23,5],[-23,5],[2,-57],[0,0],[109,-206],[55,-25],[55,-23]],[[46863,77233],[129,-4],[21,-26],[12,-16],[0,0],[-239,-29],[-56,-7],[-145,22]],[[46585,77173],[20,-52]],[[46605,77121],[1,-1],[110,-105]],[[46716,77015],[352,129],[158,-30],[273,-51],[92,18],[132,25],[97,-13],[95,-12],[28,-13],[47,-21],[54,-81],[0,0],[-105,-82],[-67,-52]],[[47872,76832],[-11,-20],[-16,-28],[129,-40],[191,-61],[75,33],[18,46]],[[48258,76762],[18,49],[71,53],[114,14],[23,2],[0,0],[14,-13],[74,-73],[61,-130],[-11,-152],[-168,-115],[-117,-80],[-73,5],[-14,30],[-19,42]],[[48231,76394],[-215,-124],[-75,-30]],[[47941,76240],[-269,-107],[-326,-74],[-238,-54],[-14,20],[-27,42],[0,0],[8,10],[135,167]],[[47210,76244],[4,36]],[[47214,76280],[-157,71],[-90,40]],[[46967,76391],[-107,-62],[-50,0],[-71,0],[-159,46],[-2,17],[-12,95],[-293,199]],[[46273,76686],[0,0],[-20,-22],[0,0],[11,-13],[94,-110]],[[46358,76541],[150,-82],[25,-48],[22,-112],[0,0],[-25,-16],[-41,-29],[-228,-10],[-21,-1],[-21,10],[-72,34],[-72,82]],[[46075,76369],[-69,79],[0,0],[31,-87]],[[46037,76361],[28,-76],[0,0],[-76,-1],[-163,-1],[-182,110],[0,0],[-15,36],[3,18]],[[45632,76447],[4,35],[-9,3]],[[45627,76485],[-95,33]],[[45532,76518],[-33,-9],[0,0]],[[45499,76509],[97,-165],[0,0],[-41,-32],[-2,-2],[-46,-5]],[[45507,76305],[-120,-13],[-71,32],[-55,72],[-64,84],[-87,38],[-23,-12],[0,0],[105,-197],[204,-91]],[[45396,76218],[91,-41],[0,0],[-77,-6],[-324,-23],[-402,76],[-188,133],[-98,-146],[-87,10],[-101,21],[-1,0],[0,0],[-116,70]],[[44093,76312],[-44,76],[-48,85],[-15,-2],[-16,-2],[-1,-42],[-1,-37]],[[43968,76390],[60,-124],[0,0],[-54,-45],[-26,-22],[-244,56],[-129,30]],[[43575,76285],[-36,354],[0,0]],[[43539,76639],[-44,-74]],[[43495,76565],[-61,-103]],[[43434,76462],[-47,-153],[-32,-30],[-11,-11],[0,0],[-62,3],[-35,21],[-189,111]],[[43058,76403],[0,0],[-8,34],[-13,58]],[[43037,76495],[3,214],[453,205]],[[43493,76914],[33,15]],[[43526,76929],[-6,22],[0,0],[321,39]],[[43841,76990],[5,1],[0,0],[186,-12]],[[44032,76979],[199,55],[0,0],[-99,103],[-48,50],[-184,105],[-20,11],[-211,237],[21,108],[16,22],[8,10],[393,77],[136,-22]],[[44243,77735],[240,-38],[141,-49],[51,-40],[39,-31],[92,-173]],[[44806,77404],[24,-45],[0,0],[47,-57],[544,-127],[-28,40]],[[45393,77215],[-18,25],[0,0],[170,3],[143,3]],[[45688,77246],[292,146]],[[45980,77392],[205,187],[296,355],[0,0],[-132,-6],[-56,-28],[-32,-16],[-7,-9],[-7,-8],[8,-39],[0,0],[-24,-31],[-38,-52]],[[46193,77745],[-248,-280],[-221,-110],[-461,45]],[[45263,77400],[-17,17],[-44,46],[-146,74]],[[45056,77537],[-5,59],[39,36]],[[45090,77632],[52,48],[0,0],[-35,-7],[-67,-14],[0,0],[-3,2]],[[45037,77661],[-37,25],[10,7]],[[45010,77693],[83,53],[395,8],[0,0],[-75,17],[-67,15],[-353,-51]],[[44993,77735],[-36,16],[-91,41],[0,0],[168,74],[101,44],[162,-24]],[[45297,77886],[122,52],[0,0],[-130,-27]],[[45289,77911],[-119,59],[0,0],[22,43],[0,0],[5,2],[49,20],[177,21],[0,0],[-85,13],[-34,5],[-8,24],[-23,65]],[[45273,78163],[-2,40],[-1,26],[0,0]],[[45270,78229],[-57,-32],[-203,-209],[-280,-64],[-76,-10],[0,0],[-70,27],[15,27],[31,55],[99,60]],[[44729,78083],[71,132],[16,28],[0,0],[-11,-2],[-24,-5]],[[44781,78236],[-99,-107],[-102,-52],[-187,-96],[-199,-20],[-99,17],[-103,18],[72,346],[408,315],[742,100]],[[45214,78757],[530,-57],[197,-76]],[[45941,78624],[514,-198],[62,18],[-55,84],[-39,60],[-205,12]],[[46218,78600],[-200,86],[0,0],[93,31],[515,0]],[[46626,78717],[89,0],[29,43],[82,121],[0,0],[-20,29],[-176,-83]],[[46630,78827],[-273,-72],[-526,40],[-495,80],[-28,39],[-8,11],[130,81],[0,0],[208,-49],[26,-41]],[[45664,78916],[24,-9],[30,-12],[198,-17],[0,0],[66,29],[0,0],[-241,86]],[[45741,78993],[-134,47],[0,0],[-476,460]],[[45131,79500],[-98,31],[-88,28]],[[44945,79559],[-441,74],[0,0],[-15,31],[0,0],[19,126]],[[44508,79790],[18,31],[0,0],[50,-4],[276,-21],[145,-39],[47,14],[22,5],[0,0],[-155,45],[-21,3],[-400,47],[0,0],[-22,34]],[[44468,79905],[-48,73],[0,0],[62,167],[2,5],[0,0],[197,23],[85,10],[174,-25],[257,-36]],[[45197,80122],[548,-12],[53,-17],[59,-18],[629,-321],[280,-273]],[[46766,79481],[156,-12],[343,-26],[361,62],[22,14],[56,35],[-24,-3]],[[47680,79551],[-445,-46],[-324,60],[-70,52],[0,0],[-36,86],[-17,41],[73,30]],[[46861,79774],[12,5],[0,0],[-15,20],[-7,9],[-204,31],[-139,60]],[[46508,79899],[-454,282],[0,0],[1289,137]],[[47343,80318],[200,58],[34,10],[935,25],[20,10],[19,10],[0,0],[-523,42],[-318,-4]],[[47710,80469],[-133,-2],[0,0],[323,90],[542,98],[398,22]],[[48840,80677],[424,24],[0,0],[-13,29],[-6,13],[-37,12],[0,0],[-597,7]],[[48611,80762],[-224,-26],[-272,-32],[-41,21],[7,24],[34,104],[485,272],[320,99],[215,67]],[[49135,81291],[0,0],[-30,6],[-37,8],[-267,-67]],[[48801,81238],[-412,-103]],[[48389,81135],[-429,-218],[-12,-41],[-27,-98],[-23,-17],[-79,-62],[-523,-144],[-171,-47],[-315,-54],[-188,-15],[-531,-44],[-19,20],[-2,2],[0,0],[36,70],[226,45],[196,38]],[[46528,80570],[82,37],[111,48],[0,0],[-73,32],[-1,1]],[[46647,80688],[-322,-99],[-188,-32],[-132,-24],[-130,57]],[[45875,80590],[0,0],[99,19],[22,4],[109,60],[0,0],[-55,10],[-16,2],[-196,-82],[-12,-57]],[[45826,80546],[-10,-44],[0,0],[13,-21],[-52,-83],[0,0],[-617,-34],[-465,20],[-151,32],[-164,36],[32,47],[24,34],[144,90]],[[44580,80623],[312,194],[324,59],[294,29]],[[45510,80905],[886,87],[24,26],[9,9],[0,0]],[[46429,81027],[-1521,-127]],[[44908,80900],[-316,-117],[-268,-167],[-157,-129],[-29,-2],[-121,-9],[-322,58],[-540,173],[-33,31],[-28,26],[0,0],[342,53]],[[43436,80817],[251,38],[343,-27]],[[44030,80828],[211,14],[120,7]],[[44361,80849],[890,257]],[[45251,81106],[103,30],[0,0],[-95,23]],[[45259,81159],[-141,-20],[-125,-18],[-236,-45],[-151,-76],[-350,-54],[-186,-28],[-185,0],[-225,1],[-707,-58],[-11,2],[-190,46],[-19,15],[-11,9],[-26,60],[-13,33],[0,0],[164,67],[42,-6],[202,-24]],[[43091,81063],[16,2],[240,28],[0,0],[-201,28]],[[43146,81121],[-212,29],[0,0],[-3,48],[0,0],[157,33]],[[43088,81231],[308,120],[161,14],[235,19],[347,-43]],[[44139,81341],[-527,77]],[[43612,81418],[-331,-45],[-578,-143],[-277,61],[0,0],[323,94]],[[42749,81385],[311,91],[0,0],[-156,24],[-158,25],[-235,-8]],[[42511,81517],[-127,-56],[-71,-84],[-135,16],[-15,1],[0,0],[-10,4],[-73,25],[2,1],[23,10],[0,0],[-115,20],[-4,1],[0,0],[-23,8],[0,0],[1,31],[1,15],[76,67],[11,9],[520,142],[46,2]],[[42618,81729],[359,16],[62,-35],[82,-47],[83,43],[13,7],[25,36],[39,56]],[[43281,81805],[-2,31],[0,0],[26,14],[18,11],[429,86],[154,-14]],[[43906,81933],[175,-15],[158,-118]],[[44239,81800],[6,37]],[[44245,81837],[5,37],[56,26],[286,-3],[46,-13],[88,-25],[215,-5],[141,-4],[105,-45]],[[45187,81805],[164,-70],[59,-3],[20,0],[-58,91],[-68,37]],[[45304,81860],[-373,47],[-510,63],[-23,10],[-33,13],[-22,28],[-32,39],[0,0],[308,13]],[[44619,82073],[302,12],[61,22],[56,20],[0,0]],[[45038,82127],[-118,137],[-59,9],[-54,8],[0,0],[34,20],[14,8],[219,17],[137,-6],[126,-6],[0,0],[-15,-8],[-28,-15],[1,-6]],[[45295,82285],[4,-23],[0,0]],[[45299,82262],[396,-47],[136,-17],[65,-31],[108,-51],[269,-191]],[[46273,81925],[223,-9]],[[46496,81916],[101,-4],[0,0]],[[46597,81912],[-287,64],[-24,14],[-138,83],[1,9],[3,34],[25,22],[56,-3],[99,-4],[267,-89],[216,-72]],[[46815,81970],[394,-103],[36,-5]],[[47245,81862],[180,-22],[183,-69]],[[47608,81771],[109,-42]],[[47717,81729],[30,2],[96,5]],[[47843,81736],[0,0],[-133,69],[-141,74]],[[47569,81879],[-418,65],[-804,254],[0,0],[-47,46],[0,0],[51,62],[33,40],[140,0],[366,1]],[[46890,82347],[0,0],[-120,18]],[[46770,82365],[-97,15],[-115,39],[-109,37],[0,0],[41,51],[7,1],[55,10],[374,-45],[79,-36]],[[47005,82437],[308,-136],[102,8],[21,2],[-15,11],[-159,118]],[[47262,82440],[-426,212],[0,0],[25,7],[181,-6],[330,-12],[206,-103]],[[47578,82538],[534,-5],[0,0],[-328,46],[-149,21],[-94,81],[-70,20],[-63,18],[0,0],[1,20],[0,5],[95,23],[117,29],[119,2],[168,4],[582,-117]],[[48490,82685],[0,0],[0,44],[0,7],[0,0]],[[48490,82736],[79,28],[42,15],[261,-57],[240,-129],[167,-90]],[[49279,82503],[128,-99],[35,-27]],[[49442,82377],[119,15],[140,58],[0,0]],[[49701,82450],[-188,63],[0,0],[-162,119]],[[49351,82632],[-531,194],[-59,57],[0,0],[301,53],[1173,-64],[104,-23],[504,-246]],[[50843,82603],[206,-147],[38,-10],[14,-3],[101,96],[0,0],[-102,58]],[[51100,82597],[-182,43],[-104,24],[-202,113],[0,0],[77,28],[377,134],[508,12],[13,-7],[13,-7],[0,0],[-98,-69]],[[51502,82868],[-11,-7],[152,-73],[319,-54],[0,0],[-303,131],[0,0]],[[51659,82865],[313,85],[449,10],[105,-8],[0,0],[-11,-12],[-46,-55]],[[52469,82885],[0,0],[11,-18],[11,-19]],[[52491,82848],[1582,-76],[0,0],[-16,-23],[-7,-10],[-245,-79],[-834,-172]],[[58976,51284],[-11,-6],[-14,-8],[0,-1],[-9,-43],[12,-69],[6,-30],[22,-38],[26,-28],[0,0]],[[59008,51061],[-8,43],[0,0],[26,5],[65,13],[27,-33],[5,-7],[-3,-47],[-1,-4],[0,0],[-9,-29],[-41,-133],[-253,-558],[-131,-288]],[[58685,50023],[-99,-274]],[[58586,49749],[-33,-93],[0,0]],[[58553,49656],[47,-130],[151,265],[0,0],[191,217],[0,0],[114,-103]],[[59056,49905],[28,-7],[76,-17]],[[59160,49881],[-139,-366]],[[59021,49515],[-16,-77],[-7,-29],[0,0],[140,-102]],[[59138,49307],[0,0],[27,21]],[[59165,49328],[56,42],[28,-44]],[[59249,49326],[18,-29]],[[59267,49297],[60,13],[56,12],[0,0],[-52,-205],[0,0],[125,95],[79,-8]],[[59535,49204],[4,-13],[4,-11],[0,0]],[[59543,49180],[128,256],[24,24],[8,8],[0,0],[6,-4],[13,-9],[0,0],[13,-228]],[[59735,49227],[0,0],[83,90]],[[59818,49317],[46,50],[27,6],[46,11],[136,-118]],[[60073,49266],[119,-103],[0,0],[-113,-220],[0,0],[-62,-7]],[[60017,48936],[-1,0],[0,0],[-48,-142],[0,0]],[[59968,48794],[0,-144],[0,0],[16,-22],[12,-16],[-7,-76]],[[59989,48536],[-4,-52],[-8,-25]],[[59977,48459],[-38,-118],[2,-9],[4,-14]],[[59945,48318],[99,72],[41,-29]],[[60085,48361],[15,-63],[0,0]],[[60100,48298],[82,156],[2,4],[69,54],[118,92],[0,0],[19,-37]],[[60390,48567],[29,-56],[-4,-52],[-47,-137],[0,0],[-153,-134],[0,0],[-184,-78]],[[60031,48110],[-31,15],[-42,20],[0,0],[17,-156],[0,0]],[[59975,47989],[122,-47],[-7,-110],[-19,-65],[-1,-4],[-48,-54],[-11,5],[-6,3]],[[60005,47717],[11,-86]],[[60016,47631],[0,0],[33,-88],[43,-47],[54,-59],[47,242]],[[60193,47679],[14,77],[0,0],[64,159],[131,126],[31,30],[18,-40]],[[60451,48031],[13,-28],[0,0]],[[60464,48003],[-118,-303]],[[60346,47700],[-46,-207],[-3,-12],[0,0],[64,-148],[0,0],[89,121]],[[60450,47454],[66,267],[0,0],[15,-38],[42,-107],[15,-174],[0,0],[-91,-246]],[[60497,47156],[-41,-323]],[[60456,46833],[-86,-169]],[[60370,46664],[-57,-112],[-49,-7],[-114,-18],[-14,15],[-14,14],[-13,71],[3,25],[47,376]],[[60159,47028],[-4,104],[0,0],[-131,-233]],[[60024,46899],[-81,-145],[-29,-37],[-50,24],[-14,7],[0,0],[1,20],[7,100],[39,141],[32,119],[64,138]],[[59993,47266],[28,61],[0,0],[-56,269],[-23,114],[0,0],[-17,14],[-96,78],[0,0],[-96,-395],[-26,-37]],[[59707,47370],[-56,-79],[0,0],[-11,16],[-17,25]],[[59623,47332],[-81,-14],[-99,-180],[-7,-14]],[[59436,47124],[-35,-158]],[[59401,46966],[-53,-118],[-36,-30],[-32,-27],[-96,-7],[-104,-7],[-75,46],[-9,42],[-1,6],[47,95],[0,0],[278,245]],[[59320,47211],[17,20],[195,230],[49,80],[28,47],[0,0]],[[59609,47588],[-59,-29],[-99,-48],[-39,18],[-100,48]],[[59312,47577],[-5,-8],[-39,-63]],[[59268,47506],[-85,-73],[-13,13],[-10,10],[-18,-1],[-64,-6],[-42,27],[-10,6],[0,0]],[[59026,47482],[51,207]],[[59077,47689],[18,166],[0,0]],[[59095,47855],[-38,-131],[-114,-108],[-76,-72],[-68,-16],[-236,-58],[-98,30],[-113,36]],[[58352,47536],[-43,10],[-53,11],[-231,43]],[[58025,47600],[-163,22],[-181,-105],[-180,-31],[-53,38],[-33,23],[-43,284],[460,537]],[[57832,48368],[17,55],[0,0],[-77,15]],[[57772,48438],[-83,17]],[[57689,48455],[-188,-58],[-66,-21],[26,83],[133,139]],[[57594,48598],[14,15]],[[57608,48613],[31,-12],[77,-29],[0,0],[150,429]],[[57866,49001],[0,0],[6,-26],[2,-12],[0,0],[89,-37],[19,-8],[0,0]],[[57982,48918],[23,67]],[[58005,48985],[13,38],[2,30]],[[58020,49053],[-33,78],[18,133]],[[58005,49264],[28,202],[160,544],[164,486]],[[58357,50496],[10,29],[162,316]],[[58529,50841],[30,95]],[[58559,50936],[58,197],[3,34],[0,0],[27,41],[43,67],[44,31],[246,171],[68,15],[0,0],[-5,-38],[-6,-47]],[[59037,51407],[85,-12],[31,-4]],[[59153,51391],[-30,51],[-12,20],[0,0],[36,43],[12,15],[90,-33],[0,0],[-25,-184],[-5,-39],[-59,-54],[-184,74]],[[28642,73964],[86,27]],[[28728,73991],[7,8]],[[28735,73999],[76,92],[167,-16],[31,-94],[-6,-18],[-7,-21],[-20,-9],[-9,-4],[0,0],[-3,-16],[-10,-43]],[[28954,73870],[16,-6],[84,10],[62,68],[-2,41],[-1,17],[0,0]],[[29113,74000],[-26,34],[0,0],[115,57]],[[29202,74091],[261,54],[186,-32]],[[29649,74113],[140,-25],[148,-92]],[[29937,73996],[242,-152],[172,-133],[114,-88],[186,-102],[121,-118],[8,-31],[7,-25],[0,0],[-253,-145],[-412,-135],[-1156,-558]],[[28966,72509],[-7,-7],[-13,-12],[0,0]],[[28946,72490],[-53,-164],[-24,-73],[0,0],[-49,-36],[-144,-103],[-116,-29],[-96,-24],[-74,-185]],[[28390,71876],[-16,-198],[-10,-116],[-55,-144],[-27,-28],[-366,-140],[-111,27],[-203,-66],[-421,-258],[-133,1],[-120,117],[-73,178]],[[26855,71249],[-51,124]],[[26804,71373],[-187,193]],[[26617,71566],[-236,94]],[[26381,71660],[-456,182]],[[25925,71842],[-94,73],[0,0],[-13,70]],[[25818,71985],[13,45],[184,318],[164,82]],[[26179,72430],[-33,267],[-1,10],[288,104]],[[26433,72811],[0,0],[-19,19],[-28,28]],[[26386,72858],[-76,20],[-42,127],[154,237]],[[26422,73242],[199,212]],[[26621,73454],[78,111],[5,7]],[[26704,73572],[-37,108],[-11,32]],[[26656,73712],[-108,33],[-116,214],[-8,15],[0,0],[-8,81]],[[26416,74055],[-33,59],[-15,28]],[[26368,74142],[-52,34],[-44,30],[0,0],[436,70],[744,64]],[[27452,74340],[252,71],[223,-5],[182,-110],[248,-94],[166,-63],[119,-175]],[[39963,76914],[152,11],[595,-146]],[[40710,76779],[153,-9],[225,-12],[201,-144],[-110,-294]],[[41179,76320],[185,161],[301,-22]],[[41665,76459],[26,-2],[0,0],[28,9]],[[41719,76466],[184,62],[222,22],[211,-36],[169,-75],[25,-11],[0,0],[2,-4],[60,-91],[0,0],[-95,-20],[-367,67]],[[42130,76380],[-82,-24],[0,0]],[[42048,76356],[1041,-185]],[[43089,76171],[65,-11],[0,0],[15,-21]],[[43169,76139],[29,-37],[0,0],[-77,-51],[-13,-2],[-173,-23],[-443,9],[-82,2],[-370,88]],[[42040,76125],[0,0],[129,-68]],[[42169,76057],[53,-28],[99,-26]],[[42321,76003],[197,-50],[-4,-21]],[[42514,75932],[-10,-42],[-129,-5],[-58,-2],[-15,-29],[0,-1],[0,0],[75,-40],[129,14],[263,29]],[[42769,75856],[194,-94],[249,-119],[8,-17],[0,0],[-48,-139],[0,0],[-37,-3],[-74,-7],[0,0],[264,-187]],[[43325,75290],[71,5],[11,23],[6,14]],[[43413,75332],[-67,115],[0,0],[43,78],[11,20],[0,0],[77,-17],[198,-154]],[[43675,75374],[245,60],[256,14],[138,-66],[84,-40],[83,-74]],[[44481,75268],[14,-12],[31,3]],[[44526,75259],[229,20]],[[44755,75279],[17,26],[0,0]],[[44772,75305],[-129,62],[0,0],[844,199]],[[45487,75566],[140,74],[69,36],[220,-43]],[[45916,75633],[77,1],[221,3]],[[46214,75637],[252,62],[211,-19],[91,-8],[151,-25],[132,-22],[0,0],[-112,-70]],[[46939,75555],[0,0],[13,-28],[8,-16],[70,-11],[81,-13]],[[47111,75487],[216,29],[118,-21],[128,-105],[-35,-12],[-87,-30],[0,0],[93,-11],[219,-25],[0,0],[9,-22],[54,-142],[-65,-67]],[[47761,75081],[-41,-43],[-259,-113],[0,0],[52,-70],[22,-30]],[[47535,74825],[14,14]],[[47549,74839],[29,27],[74,15],[17,3],[129,-14],[41,-57],[45,-62],[0,0],[-254,-76],[-113,36],[-55,18],[-17,-57]],[[47445,74672],[0,0],[18,-51],[8,-21]],[[47471,74600],[2,-109],[-28,-44],[-280,-31],[-568,-62]],[[46597,74354],[-60,7],[-292,31],[-19,9],[-49,23],[-58,71]],[[46119,74495],[-26,32],[-5,13],[-6,16],[0,0],[7,40],[5,32],[0,0],[-135,100],[-55,40]],[[45904,74768],[-29,-31]],[[45875,74737],[78,-81],[0,0]],[[45953,74656],[21,-71],[-16,-40]],[[45958,74545],[-40,-104],[-61,-32],[-459,-38],[-79,-4],[-80,-4],[-25,57],[0,0],[-44,0],[-211,3],[-24,-33],[-20,-28],[-198,-17],[-18,-1],[0,0],[-100,35],[-607,-34]],[[43992,74345],[-174,-10],[-289,27],[-20,8],[0,0],[-15,63],[0,0],[74,185],[-20,76]],[[43548,74694],[-3,1],[-18,5]],[[43527,74700],[-288,-121],[-6,-88],[-27,-23],[-29,-24],[-354,-49],[0,0],[-57,20],[-378,130],[0,0],[21,101]],[[42409,74646],[0,0],[40,46],[0,0],[-2,57],[0,0],[-12,-2],[-25,-2],[-131,-142],[0,0]],[[42279,74603],[2,-38],[2,-63],[-31,1],[-146,3],[-115,59],[-121,62],[-39,55],[-7,34],[-27,128],[-70,154],[-98,81],[21,114],[16,90],[93,121]],[[41759,75404],[102,63],[-1,27],[-2,33],[-26,65],[-22,57]],[[41810,75649],[-75,111]],[[41735,75760],[-125,151],[-262,313]],[[41348,76224],[-54,2],[-67,1]],[[41227,76227],[-186,-92]],[[41041,76135],[-481,25]],[[40560,76160],[-139,-75],[-140,12],[-4,31],[-6,41]],[[40271,76169],[0,0],[231,22],[0,0]],[[40502,76191],[-449,66],[-89,43],[-59,70],[0,0],[15,9],[22,13],[68,-9]],[[40010,76383],[37,-4]],[[40047,76379],[105,91]],[[40152,76470],[0,0],[-57,-30]],[[40095,76440],[-55,-30],[-133,29],[-286,120],[8,64]],[[39629,76623],[0,1]],[[39629,76624],[160,-2]],[[39789,76622],[-245,157],[3,14],[6,33],[9,6],[17,11],[151,-15]],[[39730,76828],[83,23],[1,22]],[[39814,76873],[0,3],[0,0],[-27,15],[0,0],[32,13],[144,10]],[[45220,65167],[53,5],[52,5]],[[45325,65177],[30,70]],[[45355,65247],[41,98],[51,12],[0,0],[14,-15],[90,-94],[27,-75]],[[45578,65173],[83,-59],[103,-72]],[[45764,65042],[155,-49]],[[45919,64993],[69,-21],[116,-167]],[[46104,64805],[144,-108]],[[46248,64697],[168,-59],[5,1],[32,9],[236,-201],[9,-8],[54,-90],[-9,-138]],[[46743,64211],[-60,-253],[-66,-75],[0,0],[10,-25],[319,93]],[[46946,63951],[174,50],[87,-92]],[[47207,63909],[117,-125],[158,-121],[-1,-4],[-17,-57],[-130,-29]],[[47334,63573],[-136,-128]],[[47198,63445],[-72,-99],[-102,23]],[[47024,63369],[-104,23],[-226,104],[-101,19],[-115,21],[-2,23],[-18,174]],[[46458,63733],[-13,36],[-4,10],[-21,21]],[[46420,63800],[-32,17],[-42,23],[-78,9],[-52,5],[-54,43]],[[46162,63897],[-42,33],[-19,80],[-10,44]],[[46091,64054],[-99,-40],[-104,-42]],[[45888,63972],[-42,-64]],[[45846,63908],[-23,-265],[0,0],[-99,-60],[-133,-80]],[[45591,63503],[-197,-310],[-200,-146],[-153,-53],[-68,4],[-24,2],[-51,71],[-19,203],[31,212]],[[44910,63486],[0,0],[-23,86],[-15,25],[-22,37],[0,0],[-94,-32]],[[44756,63602],[-479,-168],[-115,29],[-20,41],[3,95],[88,123]],[[44233,63722],[38,54],[364,195],[0,0],[-3,58],[-2,21]],[[44630,64050],[-41,47],[-37,101],[-5,66],[-16,209],[125,324]],[[44656,64797],[0,0],[-2,170],[12,198],[12,211],[17,84]],[[44695,65460],[28,141],[18,30],[133,127]],[[44874,65758],[37,35],[56,6],[0,0],[32,-64],[14,-29]],[[45013,65706],[69,-7],[22,-3],[0,0],[20,-42],[11,-33],[21,-63],[0,0],[-17,-204],[81,-187]],[[34059,75918],[193,3]],[[34252,75921],[103,1],[98,-66],[0,0],[-22,-49],[-27,-58],[0,0],[295,-11],[0,0],[43,-114]],[[34742,75624],[11,-5],[23,-9]],[[34776,75610],[18,1],[14,0],[1,2],[23,41]],[[34832,75654],[-9,15],[-26,39],[-7,90],[4,9],[8,24],[80,68],[22,18],[241,-13],[6,0],[0,0],[283,-128],[25,-36],[22,-32],[31,-170],[-202,-378],[-97,-229],[0,0],[-449,-142],[-132,-16],[-215,73]],[[34417,74846],[-353,-67],[-207,102],[-48,24]],[[33809,74905],[-138,-92],[-79,-53],[-101,-38],[-279,-29],[-94,-10]],[[33118,74683],[-100,-68],[0,0],[5,-38],[2,-10],[0,0],[-244,-102],[-269,-94],[-68,-24],[-423,-80],[-97,2],[-194,5],[-82,18]],[[31648,74292],[-103,23],[-158,85]],[[31387,74400],[-105,57],[-30,23],[-40,30],[-4,13],[-10,34],[0,0],[160,89],[351,118],[241,81],[220,18]],[[32170,74863],[144,12],[94,-10]],[[32408,74865],[98,-10],[188,103],[163,131],[0,0],[-33,31],[-85,9]],[[32739,75129],[-56,-69],[-67,-28],[-62,-26],[-525,24],[-174,-74],[-185,-17],[-226,-21],[-17,27],[7,50],[9,64],[0,0],[49,123],[57,46],[50,39],[0,0],[-190,63]],[[31409,75330],[-151,-223],[6,-78],[-56,-82],[-304,-120],[-13,6],[-53,28],[-50,137]],[[30788,74998],[0,0],[-49,1],[-83,1],[-8,-11],[-9,-14]],[[30639,74975],[34,-68],[4,-9],[0,0],[-3,-21],[-81,-43],[-268,97],[0,0],[17,13]],[[30342,74944],[0,0],[-11,44],[-5,19],[0,0],[-39,64],[-96,-16]],[[30191,75055],[-51,-56],[-121,7],[-254,48],[-43,23]],[[29722,75077],[-69,38],[0,0],[10,43],[57,75],[125,103],[0,0],[488,11],[449,139]],[[30782,75486],[0,0],[14,11]],[[30796,75497],[85,62]],[[30881,75559],[-612,-131],[-403,17],[9,26],[21,61],[32,33],[75,80],[53,20],[866,59]],[[30922,75724],[0,0],[19,45],[0,0]],[[30941,75769],[-559,-33],[-284,30],[0,0],[14,81],[12,66],[16,35],[15,34],[0,0],[64,26],[127,51],[277,-11],[471,-20]],[[31094,76028],[10,7],[0,0]],[[31104,76035],[-207,28],[-359,47],[-48,43],[0,0],[11,58],[188,108],[187,24]],[[30876,76343],[188,25],[194,-30],[74,-12],[0,0],[11,-12],[26,-29],[-16,-62],[-14,-55]],[[31339,76168],[0,0],[53,-87],[15,-24],[0,0],[56,4],[83,5]],[[31546,76066],[228,66],[59,-1],[31,0],[227,-71],[129,-96],[142,-106],[0,0],[9,-105]],[[32371,75753],[-98,-34],[-33,-40],[-1,-1],[0,0]],[[32239,75678],[308,22],[43,-15],[15,-5],[66,-118],[0,0],[-11,-34],[-12,-38]],[[32648,75490],[27,-74],[48,-28],[10,-6],[193,28]],[[32926,75410],[139,20],[688,-75]],[[33753,75355],[50,51]],[[33803,75406],[66,68],[0,0],[-51,84],[-120,65]],[[33698,75623],[-349,90],[-55,32],[-16,10],[0,0],[68,25],[224,83]],[[33570,75863],[48,60],[33,41],[-62,34],[-108,60]],[[33481,76058],[-135,43]],[[33346,76101],[-215,70],[0,67],[0,55],[0,0],[64,6],[66,7]],[[33261,76306],[151,56]],[[33412,76362],[131,195],[114,57]],[[33657,76614],[130,64],[88,14],[85,-28],[37,-42],[-4,-93]],[[33993,76529],[-4,-98],[19,-123],[148,-96],[42,-53],[15,-66],[-61,-30]],[[34152,76063],[-64,-32],[-37,-98],[0,0],[5,-10],[3,-5]],[[41112,81191],[102,31],[497,-108]],[[41711,81114],[249,-100],[153,-215],[93,-97]],[[42206,80702],[73,-76]],[[42279,80626],[162,-54],[40,-125]],[[42481,80447],[234,-37],[186,-30],[213,14],[145,-55],[12,-11],[25,-23],[0,0],[-100,-155],[0,0],[9,-27],[36,-42]],[[43241,80081],[18,-22],[184,-83],[95,-22],[48,-11]],[[43586,79943],[93,25]],[[43679,79968],[-37,27],[-173,125],[13,70]],[[43482,80190],[10,55]],[[43492,80245],[116,49],[347,-35],[13,-58],[12,-56],[1,-34],[1,-76],[0,0],[-222,-47]],[[43760,79988],[226,-56],[168,-92]],[[44154,79840],[118,-65],[-94,-269],[-30,-17],[-45,-27]],[[44103,79462],[21,-74]],[[44124,79388],[26,11]],[[44150,79399],[274,120],[133,-14],[13,-2],[0,0],[26,-14],[108,-60],[0,0],[-3,-60],[-29,-42]],[[44672,79327],[-16,-1],[-20,-2],[0,0],[28,-31],[6,1],[41,3],[72,84]],[[44783,79381],[163,42],[158,-134],[90,-76],[27,-40],[30,-46],[-7,-2],[-267,-96],[-224,-48]],[[44753,78981],[-133,-28],[-61,-38]],[[44559,78915],[-115,-72],[-113,22]],[[44331,78865],[-39,7],[-124,-173],[0,0]],[[44168,78699],[-49,-50],[-129,-130],[-46,-19],[-105,56],[-25,13],[-45,74],[3,35],[9,125],[0,0],[9,17],[47,87]],[[43837,78907],[0,0],[-131,-52],[-23,-9],[0,0],[-31,-137]],[[43652,78709],[12,-183],[104,-17],[64,-66],[-6,-24],[-1,-3],[-19,-22],[-48,-52],[-83,-32],[-65,49],[-74,55],[-97,-66]],[[43439,78348],[51,-132],[-80,-173],[-22,-23],[-9,-9],[-154,52],[-205,209]],[[43020,78272],[-195,201],[0,0]],[[42825,78473],[-43,-24]],[[42782,78449],[-23,-12],[0,0],[12,-31],[23,-66],[75,-59]],[[42869,78281],[62,-49],[143,-220],[0,0],[-39,-5],[-19,-3],[-173,127]],[[42843,78131],[-37,28],[-114,34],[-188,-9],[-51,-2],[93,-43]],[[42546,78139],[60,-3],[64,-3],[9,-52],[6,-36],[0,0],[-11,-15],[-23,-30],[-232,-1],[-60,0],[-129,17],[-155,20],[-227,67],[-218,65],[-63,34],[-145,77],[-20,41],[-5,11],[394,46]],[[41791,78377],[96,52]],[[41887,78429],[-639,11],[-252,191],[0,0],[61,7],[51,6],[112,-26]],[[41220,78618],[101,-24],[36,2],[25,2],[-1,12],[0,9],[0,0],[-86,25]],[[41295,78644],[-128,38]],[[41167,78682],[-156,6],[-243,153],[0,0],[193,76],[202,79],[804,29]],[[41967,79025],[689,73],[0,0],[-66,1],[-284,4],[-175,-13],[-352,-28],[-103,16],[-53,12]],[[41623,79090],[-80,19],[0,0],[39,26],[44,29],[118,-4],[96,-3]],[[41840,79157],[258,28],[139,15],[48,41],[0,0]],[[42285,79241],[-183,-17],[-280,-27],[-193,26],[5,20],[3,11],[-63,21],[-48,16],[-376,-84],[-101,-61],[-73,-18],[-59,-15],[0,0],[-13,4],[-75,25],[7,35],[5,20],[50,42],[0,0],[-138,39]],[[40753,79278],[-87,-3],[0,0],[9,-22],[6,-14],[0,0]],[[40681,79239],[-120,-59],[-116,-57],[-53,10],[-48,9],[0,0],[-21,37],[-6,10],[0,0],[-116,53]],[[40201,79242],[-111,23],[-7,1],[0,0],[0,37],[1,34],[3,11],[16,47],[35,13],[0,0],[420,53]],[[40558,79461],[191,61],[24,29],[-11,65],[0,0],[-95,-22]],[[40667,79594],[-144,-79],[-249,-19],[-97,-7],[-170,19],[0,0],[-124,88],[-52,66]],[[39831,79662],[-222,281],[0,0],[34,50],[5,7],[78,-2],[70,-3],[161,-51],[126,-39]],[[40083,79905],[101,-7],[193,-14],[166,13]],[[40543,79897],[8,36],[2,0],[252,90]],[[40805,80023],[71,0],[0,0]],[[40876,80023],[-182,48]],[[40694,80071],[-3,-2]],[[40691,80069],[-126,-53],[-173,-26],[-113,-17],[-495,148],[-96,67],[-22,16],[58,8],[163,22],[55,-4]],[[39942,80230],[222,-18]],[[40164,80212],[1,37]],[[40165,80249],[-152,70],[0,0],[-2,7]],[[40011,80326],[-10,31],[6,48],[1,0],[37,29],[153,7],[219,10]],[[40417,80451],[338,-45]],[[40755,80406],[197,-26],[0,0]],[[40952,80380],[-86,45],[-55,29],[-56,98]],[[40755,80552],[-49,27]],[[40706,80579],[-267,42],[-110,115]],[[40329,80736],[-105,1]],[[40224,80737],[-1,19],[13,11],[92,81]],[[40328,80848],[167,62],[161,-21],[17,-10]],[[40673,80879],[10,-6],[0,0],[5,-25],[33,-15],[33,-15],[95,33],[66,23],[0,0]],[[40915,80874],[-82,86],[0,0],[364,-42]],[[41197,80918],[57,11],[61,11],[23,30],[27,33],[0,0],[-1,8],[-7,30],[0,0],[-75,25]],[[41282,81066],[-217,-8],[-112,-4],[-27,2],[-98,10],[-92,55],[57,74],[49,16],[5,2],[0,0],[120,-16]],[[40967,81197],[119,-15],[26,9]],[[38160,73754],[41,-39],[0,0],[17,-8],[247,-114]],[[38465,73593],[381,86],[326,74]],[[39172,73753],[134,-21],[89,-13],[119,-110],[4,-18],[8,-32],[-15,-58],[-47,-29],[-50,-32],[-261,-32]],[[39153,73408],[0,0],[5,-14],[14,-41]],[[39172,73353],[143,-3],[47,-2],[56,-97],[-1,-30],[0,0],[-142,-23],[-110,-18]],[[39165,73180],[-365,-315]],[[38800,72865],[5,-29],[9,-48]],[[38814,72788],[147,92],[113,24],[18,3],[261,-72],[33,-35],[45,-121],[13,-34],[3,-79],[-23,-21],[-23,-20]],[[39401,72525],[8,-61],[188,101]],[[39597,72565],[90,48],[146,-327],[0,0],[-136,-143],[0,0],[-18,-247],[52,-73],[-116,-144],[0,0],[-15,19]],[[39600,71698],[-61,-15]],[[39539,71683],[-61,-70],[-29,-34],[-80,-36]],[[39369,71543],[-107,-49],[-284,28],[-23,2],[-2,6]],[[38953,71530],[-71,184],[0,0],[10,20],[19,37],[0,0],[-26,12],[-66,-89],[-28,-36],[-13,-56]],[[38778,71602],[128,-121],[80,-76],[-28,-54],[-89,-79]],[[38869,71272],[-90,-80],[-113,-21],[-21,7],[-18,6],[-48,62]],[[38579,71246],[-21,28],[-7,-2],[-28,-5],[-148,107]],[[38375,71374],[-123,185]],[[38252,71559],[-112,169],[-307,232],[0,0],[-19,21],[-74,80]],[[37740,72061],[-412,121]],[[37328,72182],[-167,48],[-26,27],[-190,191]],[[36945,72448],[-156,111],[-32,76],[11,57],[15,27],[100,181],[84,40],[32,16],[0,0],[84,-8],[143,-75],[249,-295]],[[37475,72578],[0,0],[6,0],[170,-22],[64,18],[173,47],[23,37],[5,9],[0,0],[-12,73],[-1,5],[0,0],[138,8],[0,0],[-49,165],[-44,56],[-14,18]],[[37934,72992],[-45,1],[-33,-50],[-35,3],[-3,6],[-20,41],[0,0],[7,54]],[[37805,73047],[60,86],[32,6],[39,7],[0,0],[-80,41],[-49,-21],[-54,-24],[-124,-9],[0,0],[-338,226],[0,0],[207,115],[153,-19],[88,-112]],[[37739,73343],[64,-26],[16,-6],[10,6],[0,0],[-32,141]],[[37797,73458],[-167,40],[0,0],[-89,89],[0,0],[38,77],[27,16],[155,33],[68,-5]],[[37829,73708],[163,-14],[0,0],[-56,10],[-16,32],[0,0],[22,47],[72,22],[114,-10],[38,-4],[-5,-6],[-7,-8],[3,-14],[3,-9]],[[25046,50584],[180,-110],[79,-34],[84,-36],[319,-100]],[[25708,50304],[89,-20],[63,-14],[15,-20]],[[25875,50250],[110,-146]],[[25985,50104],[140,-363]],[[26125,49741],[135,-351],[108,-100],[86,-34]],[[26454,49256],[92,-36],[115,-116],[92,-182],[133,-376],[3,-8],[37,13]],[[26926,48551],[40,-145],[0,0],[-33,-71]],[[26933,48335],[-67,-58]],[[26866,48277],[-59,-52],[-171,98]],[[26636,48323],[-352,201],[-198,171],[-2,31],[45,62],[96,134],[0,0],[-120,-4]],[[26105,48918],[-114,-4]],[[25991,48914],[-65,-82],[-147,147],[-11,48],[0,0],[4,-1],[42,-5]],[[25814,49021],[63,109]],[[25877,49130],[-107,32],[-42,13]],[[25728,49175],[-4,6]],[[25724,49181],[-32,54],[-10,93]],[[25682,49328],[-4,38]],[[25678,49366],[-242,-80],[0,0],[-10,20],[-10,20],[2,38],[9,132],[49,52],[69,2],[41,9],[45,10]],[[25631,49569],[-113,38]],[[25518,49607],[-65,22],[-86,146],[-61,49]],[[25306,49824],[-63,-15],[-14,-24],[-14,-26],[-75,8],[-25,62],[-18,45],[21,28]],[[25118,49902],[23,30],[6,39],[7,41],[0,0]],[[25154,50012],[-276,29],[-132,218],[16,66],[4,19],[120,36]],[[24886,50380],[50,15],[23,68],[-16,16],[-21,21],[-144,33]],[[24778,50533],[0,0],[69,-30]],[[24847,50503],[100,-43],[0,0],[-198,-86],[-58,12],[-52,52],[-43,100],[-44,105],[0,0],[35,68],[90,50],[34,18],[86,-5],[135,-74],[18,-10],[7,-5],[60,-44],[29,-57]],[[41338,72649],[-563,-12]],[[40775,72637],[-4,-15],[-7,-29],[11,-13],[127,-4]],[[40902,72576],[90,-3],[157,-160],[18,-63],[10,-35],[0,0],[-62,-79],[-6,-7],[-115,-73]],[[40994,72156],[-42,-63],[-42,-63],[-11,-79],[-5,-36],[-47,-6]],[[40847,71909],[-494,-63],[0,0],[-6,36],[-1,2],[0,0],[7,26]],[[40353,71910],[14,48],[3,364],[-45,89],[-28,54]],[[40297,72465],[-104,137],[-38,36],[-32,30],[39,815]],[[40162,73483],[-22,14],[-9,6]],[[40131,73503],[-3,37],[-4,49],[62,31],[39,21],[76,0],[1,0],[0,0],[13,-10],[106,-85]],[[40421,73546],[99,-32],[0,0],[104,5],[5,16]],[[40629,73535],[-163,56],[-103,94],[-62,58],[-22,45],[4,24],[6,33],[0,0],[63,22],[248,87]],[[40600,73954],[135,21]],[[40735,73975],[429,66],[208,-32],[199,-30],[154,-77],[582,-26],[362,-87],[0,0],[4,-26],[8,-59],[0,0],[-21,-27],[-119,-159],[-18,-16],[-103,-96],[-162,-214],[-56,-73],[-131,-206],[-112,-174],[-42,-42],[-79,-78],[-121,-46],[-379,76]],[[38796,76448],[375,-102],[23,-263]],[[39194,76083],[14,-152],[-6,-36],[-14,-84],[9,-39],[52,-207],[3,-120]],[[39252,75445],[2,-94],[-123,67],[-49,-25],[-23,-12],[-28,-105],[-35,-132],[0,0],[40,-4]],[[39036,75140],[43,-5],[143,-129],[0,0],[-254,-113],[0,0],[-4,-1],[-183,-29],[-173,7],[-38,1],[-294,-35],[-263,15],[-129,42],[0,0],[-55,124],[-15,32],[71,23]],[[37885,75072],[54,18],[0,0]],[[37939,75090],[-6,36],[-2,9]],[[37931,75135],[-103,19],[-28,51]],[[37800,75205],[-16,28],[77,72]],[[37861,75305],[182,58]],[[38043,75363],[154,90],[-9,38]],[[38188,75491],[-9,37],[-109,9],[-759,-102],[-453,-61],[-58,8],[-9,10],[-87,91],[0,0],[95,50],[58,30],[95,78],[-15,35],[0,0],[9,9],[13,15],[81,40],[127,20],[38,-16],[124,-55],[55,-67]],[[37384,75622],[0,0],[8,-1],[79,-10],[0,0]],[[37471,75611],[-53,101]],[[37418,75712],[-47,41]],[[37371,75753],[-95,84],[-204,245],[-25,30],[51,152],[73,44],[81,-9]],[[37252,76299],[178,-19],[112,-76],[42,-66],[26,-42],[251,-162],[149,-147]],[[38010,75787],[112,-24],[0,0],[133,44],[0,0]],[[38255,75807],[-102,5],[-46,2],[-67,73],[-94,104],[0,0],[85,27],[0,0],[-159,214],[-88,2],[-64,2],[-85,78],[-43,40],[264,123],[82,15],[44,8],[253,-47]],[[38235,76453],[65,-12],[107,-74],[21,-70]],[[38428,76297],[42,-36],[98,63]],[[38568,76324],[97,148]],[[38665,76472],[64,35],[0,0]],[[38729,76507],[-129,23],[0,0],[180,13],[47,-21],[41,-55],[0,0],[-16,-4]],[[38852,76463],[-56,-15],[0,0]],[[30360,77056],[-97,-58],[0,0],[74,-90],[16,-6],[46,-17]],[[30399,76885],[78,-126],[0,0],[12,-103],[12,-105],[-46,-40],[-40,-34],[-51,-15],[-50,-14],[-232,-31]],[[30082,76417],[-122,-17],[0,-15],[-1,-27]],[[29959,76358],[45,-91],[11,-23],[-2,-10],[-7,-27],[-70,-48],[-41,-14],[-71,-25],[-98,11],[-75,44]],[[29651,76175],[-159,92],[0,0],[15,94]],[[29507,76361],[43,126],[25,74],[0,0]],[[29575,76561],[-4,24],[-15,91]],[[29556,76676],[-12,-3],[-151,-37]],[[29393,76636],[-29,-70],[-23,-56],[-165,-103]],[[29176,76407],[-38,-24],[-65,8],[-30,-32]],[[29043,76359],[143,-47],[0,0],[59,-116],[-211,-209],[-114,-16],[-39,30],[-86,190]],[[28795,76191],[-58,-12]],[[28737,76179],[-32,-64]],[[28705,76115],[59,-285],[0,0],[-45,-44],[-41,-39],[-101,-36],[-158,-34],[-134,170],[-54,178]],[[28231,76025],[-80,19]],[[28151,76044],[-13,-2]],[[28138,76042],[-46,-4],[-18,-27],[-17,-58],[-3,-12],[7,-46]],[[28061,75895],[9,-61],[0,0],[-154,-8],[-51,-3],[0,0],[-35,31]],[[27830,75854],[-44,15],[-93,33],[-3,1],[-5,1],[-119,-10]],[[27566,75894],[-119,-119],[3,-41],[0,0],[-18,-10],[0,0],[-14,4],[-146,47],[9,38],[5,28],[0,0],[34,53]],[[27320,75894],[16,129]],[[27336,76023],[0,0],[-48,15]],[[27288,76038],[-159,-62],[0,0],[170,225],[0,0],[36,18],[96,48],[432,77]],[[27863,76344],[170,194],[212,100],[126,59]],[[28371,76697],[8,24],[10,27]],[[28389,76748],[597,438],[141,32],[348,16]],[[29475,77234],[37,-2]],[[29512,77232],[101,-7],[156,-48],[93,-28]],[[29862,77149],[37,6],[80,12],[24,26]],[[30003,77193],[47,52],[0,0],[0,32]],[[30050,77277],[1,66]],[[30051,77343],[32,49],[214,5],[406,-179],[29,-48],[-89,-46],[-283,-68]],[[39302,69462],[0,0],[31,52],[0,0],[82,-46]],[[39415,69468],[154,-88],[10,-1],[25,-3],[108,-77],[168,-120],[7,-27],[3,-14],[0,0],[-20,-212]],[[39870,68926],[0,0],[19,-5],[26,-7],[4,8],[6,13],[-13,4],[-7,3],[-3,41],[0,2]],[[39902,68985],[11,94],[13,17],[11,16],[10,-6],[16,-10],[38,-71],[1,-3],[0,0],[3,-20],[3,-25],[-15,-49],[39,-90],[36,-87]],[[40068,68751],[63,-38],[0,0]],[[40131,68713],[74,16]],[[40205,68729],[-6,-60]],[[40199,68669],[-5,-67],[0,0],[-6,36]],[[40188,68638],[0,0],[-5,3],[-21,10],[-89,-36]],[[40073,68615],[-136,-144],[-102,-109],[-137,-27],[0,0],[-451,106]],[[39247,68441],[-340,234],[0,0],[-6,31],[-4,17],[-41,11],[-32,9],[-10,-36],[0,0],[-93,30],[-109,36],[10,47],[0,0],[-68,25],[-12,4]],[[38542,68849],[-39,-66],[0,0],[8,-41],[-39,-2]],[[38472,68740],[-47,-2],[-44,25],[-54,31],[-55,104],[0,0]],[[38272,68898],[39,105],[92,37],[0,0],[60,-15],[166,36]],[[38629,69061],[31,24],[110,85]],[[38770,69170],[17,98]],[[38787,69268],[-23,56]],[[38764,69324],[-18,46],[-5,36],[-5,33],[17,35],[22,-1],[96,-50],[0,0],[-17,54],[-6,18],[0,0],[16,91],[36,72],[8,15],[46,18]],[[38954,69691],[16,27],[34,57],[0,0],[36,5],[259,-158],[11,-33],[-44,-53],[0,0],[36,-74]],[[36766,78979],[8,-43]],[[36774,78936],[23,-128]],[[36797,78808],[7,-23],[16,-48],[22,-14],[49,43],[35,31]],[[36926,78797],[49,88],[44,12],[169,49],[84,-13],[194,-98],[39,-20]],[[37505,78815],[17,-161]],[[37522,78654],[60,-21],[291,33]],[[37873,78666],[30,4],[117,-55],[51,-24],[0,0],[8,-7],[151,-122],[0,0],[-62,-154],[-14,-34],[0,0],[22,-59],[21,-55],[362,-233],[-36,-179],[0,0],[-48,-29],[-13,-7],[-404,-54]],[[38058,77658],[-119,10],[-156,77],[-89,81],[-32,89],[14,34]],[[37676,77949],[3,6],[0,0],[-58,42],[-43,31]],[[37578,78028],[-410,100]],[[37168,78128],[-62,15]],[[37106,78143],[-231,-36],[0,0],[-48,40]],[[36827,78147],[-97,82]],[[36730,78229],[-377,-50],[-109,-28]],[[36244,78151],[-48,-49],[-106,12],[-151,17],[-163,98]],[[35776,78229],[-63,62],[-19,43]],[[35694,78334],[-15,33],[125,71],[300,-38],[285,-37]],[[36389,78363],[26,10],[29,49],[13,23],[-69,28],[0,0],[10,55],[75,50],[16,10],[0,0],[-67,54],[-2,1],[0,0],[-223,-21],[0,0],[36,141],[0,0]],[[36233,78763],[-133,76],[-113,-26],[-59,-36],[-19,-27],[-29,-43],[-95,-48],[-37,-4],[-52,-6],[-14,11],[-9,8],[0,0],[120,123]],[[35793,78791],[43,57],[-1,14],[-1,16]],[[35834,78878],[-66,15],[-28,7],[-138,-21],[-105,-16],[-7,2],[-64,12],[-32,20],[-10,102],[15,31],[60,129],[755,67],[344,-74],[20,-4],[82,-56],[106,-113]],[[47251,73620],[85,14],[500,-130]],[[47836,73504],[624,31],[241,-84],[197,-69],[430,-497]],[[49328,72885],[123,-107],[0,0],[-32,-60],[-80,-22],[-38,-11],[-250,34]],[[49051,72719],[-382,51],[-156,-5],[-104,-3]],[[48409,72762],[-170,-56],[-257,-85],[-97,-13],[-61,13],[-61,13],[-114,60],[-77,41],[-70,170],[0,0],[3,47],[5,85]],[[47510,73037],[-34,37],[-31,35]],[[47445,73109],[-107,16],[-128,20],[-46,54],[-3,107],[34,208]],[[47195,73514],[-9,60],[-5,34],[70,12]],[[56548,45883],[0,-38],[15,6]],[[56563,45851],[14,6],[63,69],[19,-85],[-9,-7],[-65,-53]],[[56585,45781],[-28,-64],[-18,-43],[-5,-47],[24,-7],[127,-38],[25,21],[21,19],[25,57]],[[56756,45679],[57,130],[-68,7],[-25,62],[0,0],[182,209]],[[56902,46087],[32,38],[0,0],[13,43],[0,0],[-34,-16],[-21,-10]],[[56892,46142],[-91,-137],[-14,-7],[-17,-8],[0,0],[111,190],[34,59],[24,1],[12,1],[91,-60],[24,-16],[27,-33],[78,-98],[-17,-169]],[[57154,45865],[-37,-47],[-143,-181],[-202,-128],[-36,-7],[-39,28]],[[56697,45530],[-38,27],[-121,-35],[-11,-3],[0,0]],[[56527,45519],[-50,-35],[-32,24],[-7,6],[-28,65],[-17,40],[-45,339],[0,0],[35,37],[21,-16]],[[56404,45979],[6,-5],[5,6],[6,6]],[[56421,45986],[219,643]],[[56640,46629],[91,188],[60,124],[13,0],[25,-1],[41,-18],[67,-144],[0,0],[-3,-17],[-49,-334],[-1,-165],[-181,-268],[0,0],[-45,-33],[-110,-78]],[[48861,67606],[41,131]],[[48902,67737],[108,205],[98,116]],[[49108,68058],[74,88]],[[49182,68146],[340,72],[361,-106],[33,-38],[27,-32],[0,0],[-3,-144],[-9,-411],[-70,-170],[-83,-58]],[[49778,67259],[-81,-57],[-170,-77],[-194,-15],[-195,-15],[-143,33],[-99,192],[-35,286]],[[55395,49334],[-26,44]],[[55369,49378],[-205,232],[-96,43],[-133,112],[24,42],[3,6],[150,38],[138,-71]],[[55250,49780],[148,-32],[78,-16],[211,-98],[87,-61]],[[55774,49573],[73,-51],[145,-141]],[[55992,49381],[86,-85],[48,-18]],[[56126,49278],[57,-21],[0,0],[109,-217],[-27,-45],[-56,-19],[-98,-1],[-76,0],[-422,161],[-181,136],[-37,62]],[[40377,74613],[-59,48]],[[40318,74661],[-60,-9],[-75,-11],[-309,129],[-208,86],[10,78],[84,133],[74,34],[138,128]],[[39972,75229],[82,110]],[[40054,75339],[37,51],[100,28],[301,83],[103,-14],[13,-1],[163,-37],[278,-212],[29,-32],[82,-90],[0,0],[18,-152],[23,-196],[-27,-193],[-20,-35],[-102,-31],[-469,-7],[-20,5],[-87,26],[-99,81]],[[22539,53588],[60,-68],[23,-25]],[[22622,53495],[143,115]],[[22765,53610],[18,101],[38,219]],[[22821,53930],[56,40],[114,82],[0,0],[-15,-85]],[[22976,53967],[-106,-589],[-127,-261],[-9,-17],[0,0],[31,-15],[8,-4],[-39,-32]],[[22734,53049],[-78,-8],[-27,3],[-29,4],[-126,182],[0,0],[16,21],[16,23],[79,-11],[10,-13]],[[22595,53250],[34,-44],[7,35]],[[22636,53241],[-34,45]],[[22602,53286],[-23,30]],[[22579,53316],[-109,62],[-167,324],[-6,135],[22,140],[16,95],[0,0],[11,3],[6,1],[99,-48]],[[22451,54028],[238,-15],[63,-92],[36,-134]],[[22788,53787],[-7,-37]],[[22781,53750],[-53,-64],[0,0],[-24,-13],[-165,-85]],[[46150,62754],[8,-4]],[[46158,62750],[162,81],[159,28],[60,10],[35,-15]],[[46574,62854],[53,-23],[35,-60],[0,0],[-24,-175],[0,0],[-429,-443],[-101,-75],[-35,-17],[-181,19],[-96,10],[0,0],[-83,185],[155,428],[87,94],[29,13],[22,11],[144,-67]],[[55137,46685],[0,0],[100,-231]],[[55237,46454],[16,-37],[63,-28]],[[55316,46389],[827,-15],[0,0],[-72,-83]],[[56071,46291],[-26,-30],[-23,-8]],[[56022,46253],[-62,-23]],[[55960,46230],[-59,-100],[0,0],[-2,-7],[-25,-65]],[[55874,46058],[2,-15],[1,-10],[0,0]],[[55877,46033],[16,-3],[3,-1],[12,-53],[9,-39],[-19,-42],[-155,-16],[-44,65],[-2,36],[-2,29]],[[55695,46009],[22,42],[0,0],[-10,13]],[[55707,46064],[-93,49],[-54,-41],[0,0],[-183,53],[-173,190],[-71,215]],[[55133,46530],[-136,-2],[-5,18],[-6,23],[3,63],[0,1],[86,180],[96,130]],[[55171,46943],[8,-17],[7,-14]],[[55186,46912],[0,-44]],[[55186,46868],[-1,-84],[-33,-68],[-15,-31]],[[39820,78382],[179,-46]],[[39999,78336],[104,38],[69,-4]],[[40172,78370],[136,-53]],[[40308,78317],[172,-67],[26,-28],[8,-8],[0,0],[-132,-97],[-60,-44],[67,-44]],[[40389,78029],[99,-65],[-66,-99],[-39,-59],[0,0],[-747,-98]],[[39636,77708],[-35,-29],[-39,-33],[-124,15],[-162,181],[0,0],[51,75]],[[39327,77917],[12,18],[0,0],[195,2],[0,0],[14,54]],[[39548,77991],[-499,154]],[[39049,78145],[-199,151],[0,0],[-26,317],[101,57],[1,1],[14,-1],[243,-6],[273,-78]],[[39456,78586],[165,-46]],[[39621,78540],[228,-54],[-29,-104]],[[33001,77621],[225,22],[54,-15],[0,0],[11,-30],[-14,-153],[-2,-30],[-65,-45],[-32,-22],[-254,-69],[-582,-93],[0,0],[-205,43],[0,0],[-239,113]],[[31898,77342],[-22,21],[-83,81]],[[31793,77444],[-49,170],[-11,38],[0,0],[10,64],[49,51]],[[31792,77767],[14,13],[0,0],[1039,171],[100,4],[375,16],[45,-5],[113,-12],[33,-21],[0,0],[0,-8],[2,-24],[-30,-49],[-21,-34],[-71,-28],[-276,-38]],[[33115,77752],[-236,-33],[0,0]],[[32879,77719],[16,-35],[39,-23],[67,-40]],[[35529,72809],[-62,3],[-194,192]],[[35273,73004],[-181,178],[-106,86]],[[34986,73268],[-252,62],[15,29],[21,43]],[[34770,73402],[68,60]],[[34838,73462],[130,116],[394,21]],[[35362,73599],[48,16]],[[35410,73615],[62,20],[72,-9]],[[35544,73626],[66,-8],[106,-55],[187,-96],[41,-66],[-40,-206],[-120,-161],[-173,-230],[-82,5]],[[47559,61626],[-41,50],[-24,4],[-25,5],[-18,65],[-9,32],[-1,56],[0,37],[7,41],[21,109],[39,90],[75,118],[62,45]],[[47645,62278],[47,9],[68,14],[69,-39]],[[47829,62262],[44,-72]],[[47873,62190],[44,-72],[0,0],[-41,-183]],[[47876,61935],[-154,-435],[0,0],[-81,-36],[-35,70],[-47,92]],[[46659,53030],[42,39],[227,48],[107,-27]],[[47035,53090],[145,-192],[71,-196],[2,-5],[0,0],[-12,-111],[-7,-15],[-109,53],[-478,235],[-52,52],[0,0],[64,119]],[[33076,78163],[-190,38]],[[32886,78201],[-177,-40],[-66,-15],[-370,85]],[[32273,78231],[-431,-94],[-52,-11],[-64,67],[61,63],[99,47],[282,84],[44,13],[0,0],[10,0],[183,15]],[[32405,78415],[469,158]],[[32874,78573],[107,36],[20,0]],[[33001,78609],[121,2],[490,-203],[49,-90],[0,0],[-20,-97],[0,0],[-60,-53],[-400,-26],[-105,21]],[[40252,77595],[86,16],[75,14]],[[40413,77625],[666,14],[201,-49],[45,-48],[24,-26],[0,0],[-176,-166],[-56,-52],[-609,44]],[[40508,77342],[-10,-1]],[[40498,77341],[-456,-21],[-123,42],[-58,46],[-12,10],[-13,27],[-19,42],[22,53],[73,34]],[[39912,77574],[83,40],[147,39],[75,20],[22,-26],[2,-3],[11,-49]],[[22997,53010],[14,-47],[9,-32],[-17,7]],[[23003,52938],[-75,31],[0,0],[-88,-13],[-9,-9],[-2,-2],[0,0],[18,-68]],[[22847,52877],[20,-79],[109,-278]],[[22976,52520],[49,-87],[126,-229]],[[23151,52204],[103,-48],[16,-7],[-1,-5],[-15,-76],[-53,-7],[-97,76],[0,0],[-76,129],[-239,406]],[[22789,52672],[-119,154],[-7,10],[0,0],[26,6],[112,27]],[[22801,52869],[0,0],[-11,17],[-7,10]],[[22783,52896],[-55,13],[-89,20],[0,0],[12,75]],[[22651,53004],[132,45]],[[22783,53049],[111,88],[30,-28]],[[22924,53109],[20,-19],[18,-27],[35,-53]],[[24448,52560],[-8,-46],[-43,-4],[-2,0],[0,0],[-12,90]],[[24383,52600],[-6,45],[0,0],[24,117]],[[24401,52762],[8,13],[16,28],[2,38],[1,21],[-4,12],[0,1],[0,0],[-12,-11],[-1,-1],[0,0]],[[24411,52863],[-55,-251],[-16,-33],[-9,-17],[-37,22],[-35,21],[-40,95],[-21,49],[0,0],[2,27],[29,325]],[[24229,53101],[0,0],[49,-2]],[[24278,53099],[104,-4],[65,-55],[0,0],[11,-37],[27,-92],[5,-106],[-42,-245]],[[50314,67936],[288,-55]],[[50602,67881],[93,-18],[0,0],[7,-11],[13,-20],[0,0],[25,-118],[-10,-37],[-3,-12],[-33,-30],[-418,7],[-67,31],[-64,31],[-76,113],[-13,72],[0,0],[28,63],[88,52],[91,53],[69,-42],[-18,-79]],[[29067,75400],[-154,36],[6,123]],[[28919,75559],[178,134],[134,101],[176,86],[190,95],[60,12],[82,-24],[23,-6],[-18,-40],[-33,-73],[-178,-211],[-144,-170],[-158,-100],[-164,37]],[[48006,56180],[-104,-237],[-74,-170],[-109,-40],[0,0],[105,265]],[[47824,55998],[-25,32]],[[47799,56030],[-21,-21],[-114,-194],[-48,-81],[-22,54]],[[47594,55788],[24,67],[24,68],[110,194],[49,88],[0,0]],[[47801,56205],[-23,-176]],[[47778,56029],[0,0],[75,83],[0,0]],[[47853,56112],[48,250],[40,85]],[[47941,56447],[0,0],[31,-45],[27,-40]],[[47999,56362],[74,-33],[2,-33],[1,-10],[-16,-24]],[[48060,56262],[-54,-82]],[[42776,77073],[-147,-14],[-392,191],[0,0],[3,77],[3,49],[22,54]],[[42265,77430],[16,40],[160,35]],[[42441,77505],[172,-11],[202,-93],[92,-42],[0,0],[44,-52],[19,-53],[15,-44],[-1,-21],[-2,-21],[-106,-67],[-36,-22],[-64,-6]],[[48417,63122],[-134,147],[-16,44],[97,25]],[[48364,63338],[85,22],[172,-47]],[[48621,63313],[71,-20],[26,-50],[42,-81],[0,0],[-8,-52],[-5,-33],[-132,-83],[-21,-14],[-14,0],[-32,-1],[-131,143]],[[35423,77203],[-51,95]],[[35372,77298],[-210,288],[37,16],[44,19],[117,-14],[114,-61]],[[35474,77546],[111,-61],[74,-79],[66,-139]],[[35725,77267],[87,-27],[30,-9],[7,-6]],[[35849,77225],[123,-89],[15,-54],[4,-18],[-27,-31],[-31,-34],[-133,-26],[-18,-4],[0,0],[-185,61],[-41,13],[-107,112],[-26,48]],[[36004,75942],[-35,10],[-43,62],[0,0],[135,69],[280,48],[253,44],[172,3],[24,-13],[19,-10],[59,-81],[0,0],[-41,-74]],[[36827,76000],[-27,-18],[-8,-5],[-324,-78],[-364,14],[-100,29]],[[44399,67629],[-50,23],[-48,63]],[[44301,67715],[-9,55]],[[44292,67770],[-7,41],[11,45],[16,62]],[[44312,67918],[-32,77],[0,0],[71,102]],[[44351,68097],[55,80],[0,0],[89,-45],[31,-41],[7,-11],[2,-18],[22,-223],[-8,-57],[-6,-46],[-12,-30],[-13,-34],[-77,-64],[-42,21]],[[36072,74904],[-98,-8],[-137,48]],[[35837,74944],[-99,35],[0,0],[34,74]],[[35772,75053],[53,116],[62,61],[41,40]],[[35928,75270],[118,27],[193,-69],[123,-206],[0,0],[-113,-84],[-22,-16],[-28,-4],[-62,-8],[-65,-6]],[[47894,68740],[-29,16],[0,2],[-1,49]],[[47864,68807],[80,157],[114,19]],[[48058,68983],[147,184]],[[48205,69167],[-1,10]],[[48204,69177],[-6,45],[91,47],[23,-6],[27,-7]],[[48339,69256],[33,-6]],[[48372,69250],[23,-5],[13,-32],[8,-19],[-5,-32],[0,0],[-308,-379],[-65,-26],[-101,-41],[-43,24]],[[35977,76315],[0,0],[-12,5]],[[35965,76320],[-60,25],[-9,11],[-52,64],[4,37],[0,0],[60,28]],[[35908,76485],[79,37],[119,11],[535,-232],[0,0],[-37,-49],[-141,-58],[-145,-26],[-236,10],[-104,23],[-1,114]],[[45959,65515],[-35,14],[-32,13],[-48,5],[-83,48],[-60,35],[-70,82]],[[45631,65712],[-11,48],[-24,93]],[[45596,65853],[-55,14],[-48,12],[-18,59]],[[45475,65938],[-20,62],[0,0],[36,24],[29,-17],[34,-20],[56,-20],[50,-19],[161,-131],[9,-15],[9,-14],[0,0],[-21,-67],[0,0],[245,-130],[-54,-65],[0,0],[-50,-11]],[[38986,73970],[170,13],[24,-22],[5,-5],[0,0],[0,-37],[0,0],[-7,-8],[-47,-55],[-126,-81],[-20,-13],[-36,-11],[-122,-38],[-176,-16],[-158,-15],[-61,26],[-77,33],[-22,34],[356,127],[297,68]],[[54777,61258],[-27,23]],[[54750,61281],[-182,124],[-70,49],[-13,44],[22,25]],[[54507,61523],[15,17]],[[54522,61540],[186,34],[59,-17]],[[54767,61557],[68,-19],[25,-48],[19,-36],[-11,-77],[-7,-45],[0,0],[-57,-96],[-27,22]],[[38311,79969],[8,-6],[53,7]],[[38372,79970],[129,18],[86,-44],[2,-1],[0,0],[34,-42],[36,-44],[13,-61],[35,-152],[-29,-57],[-2,-4],[0,0],[-82,-38],[-128,50],[-79,80]],[[38387,79675],[-178,74]],[[38209,79749],[-171,-17],[-56,20],[3,58],[2,55],[5,6],[44,69]],[[38036,79940],[124,63],[15,0],[92,0],[44,-34]],[[47403,69491],[-173,55]],[[47230,69546],[0,0],[45,42]],[[47275,69588],[95,90],[57,1],[70,1],[28,-62],[87,-1]],[[47612,69617],[0,0],[58,14]],[[47670,69631],[39,39],[24,24],[99,-10],[0,0],[61,-99],[0,0],[-115,-83],[0,0],[-6,-3],[-181,-68],[-188,60]],[[53362,60338],[-28,-63]],[[53334,60275],[-33,-74],[-103,-65],[-71,-45],[-42,10],[-4,20],[-7,32],[36,125],[53,185],[78,20],[110,-97],[6,-5],[0,0],[5,-43]],[[23812,53095],[-20,9],[-144,238]],[[23648,53342],[-42,69],[0,0],[-26,6]],[[23580,53417],[-26,5],[-28,55],[10,52],[0,0],[15,3],[19,3],[122,-102]],[[23692,53433],[102,-86],[86,-160],[17,-61]],[[23897,53126],[5,-20],[0,0],[-20,-40],[-2,-2],[-68,31]],[[24864,51870],[-53,-20],[-23,-9],[0,0],[-4,78],[20,129],[35,71],[17,33],[50,19],[77,74],[99,97],[21,-16],[1,0],[0,0],[14,-65],[0,0],[-45,-86]],[[25073,52175],[-68,-29],[-46,-52],[-42,-46],[-53,-178]],[[49163,63368],[-23,-27],[0,0],[1,0]],[[49141,63341],[69,-8],[0,0],[-45,-49],[-33,-36],[-57,18],[-59,18],[-226,234],[0,0],[39,46],[0,0],[2,0],[49,1],[0,-1],[0,0],[0,1],[45,0],[57,-3],[117,-71],[34,-42],[48,-58],[0,0],[-18,-23]],[[51944,62562],[21,95],[-42,17],[-100,43],[-14,40]],[[51809,62757],[-5,15],[0,0],[290,-113],[36,-30],[27,-22],[92,-146],[0,0],[-94,-53],[-168,31],[-10,30],[-33,93]],[[31042,77688],[-159,131],[0,0],[297,93]],[[31180,77912],[76,-17],[170,-104],[190,-117],[-153,-87],[-197,-24],[-224,125]],[[45282,65471],[-11,37],[-10,39]],[[45261,65547],[-111,80],[0,0],[-25,254]],[[45125,65881],[55,31],[90,-84],[15,-31],[61,-122],[39,-111],[22,-60],[-82,-78],[-22,23],[-21,22]],[[48846,69092],[-19,42],[2,41]],[[48829,69175],[6,110],[0,0],[52,20],[58,22],[75,-12],[126,-21],[-11,-37]],[[49135,69257],[-27,-101],[-75,-131],[-86,-23],[-72,23],[-29,67]],[[49960,68538],[3,-7],[68,-139],[3,-85],[4,-89],[-86,6],[-27,25],[-168,149],[11,114],[0,0],[24,41],[28,46],[38,-13],[68,-23],[17,-13],[17,-12],[0,0]],[[36977,77591],[-116,62],[0,0],[4,28],[4,25],[52,37],[307,18],[0,0],[172,-35],[46,-17],[61,-23],[123,-95],[0,0],[-556,-52],[-97,52]],[[42563,76636],[27,24],[192,41],[71,-14]],[[42853,76687],[59,-43],[27,-20],[16,-45]],[[42955,76579],[7,-20],[-40,-171]],[[42922,76388],[-28,-41],[-33,-6],[-46,-8],[-45,23],[-51,26],[-141,165],[-50,58],[35,31]],[[40110,69211],[0,24],[-1,29]],[[40109,69264],[-40,57],[-5,-16],[-24,-67],[0,0],[-58,15]],[[39982,69253],[16,120]],[[39998,69373],[13,97],[0,0],[20,17],[32,26],[53,-15],[38,-11],[90,-74],[39,-32],[0,0],[-41,-114],[-2,-2],[-39,-50],[-91,-4]],[[31590,76570],[-24,-2],[-24,-3],[-546,66],[0,0],[2,3],[22,42],[94,45],[272,34],[30,-1],[109,-5],[71,-34],[63,-29],[3,-51],[-26,-23],[-46,-42]],[[36661,75777],[386,83],[79,-52],[0,0],[-38,-20],[-26,-13],[-232,-142],[-297,-25],[-78,23],[0,0],[206,146]],[[25267,49689],[19,16],[0,0],[-7,18],[-12,31],[0,0]],[[25267,49754],[37,31],[0,0],[45,-12],[9,-4],[11,-5],[11,-100],[18,-156],[0,0],[-12,-7],[-18,-11],[-17,10],[-26,14],[-69,95],[-32,45],[0,0],[43,35]],[[46748,23104],[66,-72],[18,-19],[171,121],[0,0],[-40,-57],[34,-61],[18,-34],[0,0],[27,-2],[0,0],[125,108],[270,-221],[10,-8],[0,0],[38,26],[59,-15],[30,-7],[149,-147],[35,-92],[53,-138],[67,-109],[58,-43],[0,0],[4,1],[120,18],[138,-26],[251,-251],[166,-250],[183,-217],[0,0],[42,-18],[-1,5],[-32,104],[-117,140],[0,0],[-5,18],[-1,6],[0,0],[4,8],[14,26],[0,0],[298,-415],[97,-108],[124,-139],[194,-144],[195,-5],[47,-54],[2,-8],[19,-57],[-23,-133],[-26,-143],[0,0],[67,2],[76,2],[166,-39],[116,-72],[74,-131],[45,-81],[117,-101],[43,-7],[25,-48],[1,-17],[3,-44],[-12,-25],[-35,-75],[-16,-12],[-15,-12],[-105,-17],[-156,-26],[-213,-144],[-95,1],[-53,36],[-56,38],[-185,25],[-21,3],[0,0],[-275,-41],[-446,-117],[-26,14],[-4,2],[0,0],[-1,37],[53,137],[108,178],[43,38],[57,50],[33,69],[3,5],[0,0],[9,63],[7,42],[-74,189],[-51,62],[-97,-4],[-233,-10],[-31,37],[-17,21],[-158,279],[-57,416],[-76,183],[-180,-81],[-79,7],[-677,490],[-441,141],[-25,8],[0,0],[-206,159],[0,0],[204,91],[0,0],[25,38],[-8,84],[-98,102],[-185,1],[-176,0],[-74,-49],[-82,-99],[-74,-120],[-97,-157],[-284,-167],[-32,-19],[-36,-148],[0,0],[-140,-83],[0,0],[-181,36],[-25,21],[-15,13],[12,11],[112,99],[63,188],[18,146],[4,10],[82,186],[155,193],[346,240],[176,63],[141,49],[60,49],[43,35],[90,6],[18,2],[0,0],[13,-4],[134,-35]],[[46357,21520],[-12,-17],[-20,-27],[-124,-77],[-9,4],[-92,47],[-25,46],[-20,93],[0,0],[45,-79],[38,-5],[18,24],[8,12],[-22,71],[-40,128],[17,68],[0,0],[52,89],[0,0],[23,-11],[93,-42],[0,0],[26,-84],[28,-87],[2,-49],[2,-22],[17,-55],[-5,-27]],[[48331,22513],[33,-34],[123,-198],[30,-48],[88,-154],[66,-51],[10,-7],[0,0],[-17,-51],[-18,-57],[-35,32],[-49,112],[-24,90],[-22,83],[-29,26],[-144,131],[-32,13],[-76,32],[-6,27],[-5,26],[107,28]],[[52873,12155],[0,0],[1,-1],[1,-1],[0,0],[0,0],[1,-2],[2,-1],[0,-1],[12,-18],[1,-1],[0,0],[0,-1],[1,0],[1,-3],[1,-2],[1,-3],[17,-45],[18,-48],[-1,-1],[0,0],[-2,-4],[-1,0],[-3,0],[-25,-1],[0,0],[-5,0],[-65,66],[-7,9],[-14,20],[-43,77],[-13,32],[-10,25],[-10,26],[-1,56],[-1,26],[0,0],[3,3],[5,4],[24,-27],[2,-2],[2,-3],[1,0],[0,0],[0,-1],[1,-1],[0,0],[1,-2],[1,-2],[9,-24],[0,-2],[0,0],[0,-2],[1,-9],[0,-3],[0,0],[0,-1],[0,-2],[0,-4],[94,-126]],[[46923,19349],[43,-56],[24,20],[13,1],[28,2],[17,1],[4,0],[0,0],[0,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[0,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-8],[1,-4],[0,-4],[-1,-7],[0,-3],[-1,-3],[0,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[-4,-8],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,0],[-1,0],[-2,-1],[-89,-27],[-9,3],[-19,6],[-15,17],[-16,85],[0,0],[1,2],[1,3],[0,2],[0,1],[1,1],[1,1],[2,4],[0,1],[1,0],[0,1],[6,5],[3,3],[2,-1],[2,-1],[7,-7],[0,-1],[0,-1],[1,-3],[0,0],[0,-1]],[[47587,19670],[0,-1],[0,0],[-2,-3],[0,0],[0,-1],[0,0],[0,0],[-1,0],[-53,-39],[-1,0],[0,1],[0,0],[-8,0],[0,0],[0,3],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,2],[12,16],[7,9],[10,4],[5,2],[12,7],[11,6],[0,0],[0,0],[1,1],[3,-1],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,-3],[0,0],[0,-1],[0,-3],[0,0],[0,-1],[0,-1]],[[47646,19662],[-10,7],[-1,1],[0,0],[38,40],[14,15],[0,0],[1,0],[2,1],[1,0],[1,0],[0,0],[9,-7],[0,-2],[1,0],[0,-3],[0,-1],[0,-2],[0,-1],[0,0],[-20,-25],[-18,-12],[-18,-11]],[[56410,15611],[43,-43],[14,-14],[22,-68],[6,-43],[0,-148],[-1,-13],[-1,-12],[-4,-41],[-1,-3],[-1,-2],[0,0],[-1,-2],[0,-1],[-3,-4],[-13,-14],[-16,-17],[-3,-2],[-1,-1],[-6,-3],[0,0],[0,0],[-4,0],[0,1],[-1,0],[-2,2],[0,0],[0,0],[-1,2],[-48,335],[2,66],[0,2],[0,3],[0,3],[0,0],[0,1],[1,4],[0,1],[0,1],[0,1],[0,0],[1,4],[1,3],[0,0],[0,1],[4,0],[5,1],[7,0],[0,0],[0,0],[1,0]],[[51493,19667],[-3,69],[47,95],[6,12],[24,18],[15,11],[278,21],[88,-57],[212,-177],[220,-121],[130,-279],[190,47],[4,-14],[20,-68],[-23,-70],[-179,32],[-14,-19],[0,-55],[-1,-64],[99,-34],[81,-28],[159,5],[36,-33],[65,-61],[169,-302],[11,-21],[0,0],[-60,-239],[-147,-129],[-10,33],[-30,101],[-31,24],[-17,13],[-96,12],[-278,37],[-152,-87],[-39,-68],[-42,-73],[-129,-35],[-40,113],[-26,43],[-36,61],[-81,-79],[-50,-49],[-99,-336],[-77,-203],[-29,-46],[-26,-42],[0,0],[-70,108],[0,1],[-5,40],[-14,120],[-21,42],[-29,63]],[[51493,17999],[-67,135],[-9,16],[0,0],[-58,49],[0,0],[-27,-1],[-202,-13],[-118,-60],[-59,-4],[-3,0],[0,0],[-31,12],[-188,75],[-139,2],[-9,-8],[-129,-122],[-181,173],[0,0],[-44,76],[-31,53],[8,53],[20,148],[101,58],[233,-131],[0,0],[5,-8],[27,-36],[243,-33],[10,-1],[33,-2],[177,-12],[142,83],[0,0],[7,19],[13,32],[3,68],[1,29],[-125,166],[-38,66],[-62,113],[5,175],[1,16],[50,195],[-3,23],[-2,13],[-168,176],[-164,9],[-26,46],[-2,4],[0,2],[0,71],[20,37],[24,46],[81,72],[83,17],[93,19],[52,-25],[57,-28],[120,-127],[276,-68],[0,0]],[[56397,16473],[0,0],[27,-72],[1,-210],[-45,-112],[-43,-107],[-19,-29],[-3,-3],[-2,-2],[-1,-1],[-21,-12],[-14,3],[-13,32],[-5,14],[-11,54],[-16,170],[-4,50],[0,0],[5,38],[2,10],[4,17],[2,4],[3,6],[0,1],[1,0],[4,6],[0,0],[1,1],[9,6],[0,1],[1,0],[1,0],[0,0],[36,-44],[2,-2],[17,-39],[9,-6],[2,-2],[1,0],[1,-1],[1,0],[1,0],[0,0],[3,2],[5,9],[17,24],[8,23],[6,16],[-1,41],[-1,1],[-1,2],[0,1],[-1,1],[-3,4],[0,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,0],[-1,3],[-1,7],[-3,18],[-1,11],[0,1],[0,2],[3,13],[0,1],[1,1],[1,3],[3,5],[8,12],[21,28],[0,0],[5,-7]],[[56483,15981],[15,-21],[21,-41],[0,-1],[0,-1],[0,0],[1,-6],[0,-1],[0,-2],[0,-3],[1,-6],[0,-1],[0,0],[-1,-3],[0,-7],[-1,-3],[0,-3],[-13,-27],[0,-1],[-1,0],[-1,-2],[-6,-8],[-1,-2],[0,0],[-12,-2],[0,0],[0,0],[-1,0],[-5,1],[-8,4],[-1,0],[0,1],[-2,2],[0,1],[-7,8],[-1,2],[-1,3],[-1,3],[-1,1],[0,1],[-1,2],[0,1],[0,5],[-1,27],[4,18],[4,17],[4,17],[7,22],[1,1],[0,0],[1,1],[0,1],[0,0],[1,1],[2,1],[3,1],[0,-1],[0,0],[0,0],[1,0]],[[56608,16304],[-8,-11],[-17,-17],[-14,-11],[-2,0],[-1,0],[0,0],[0,0],[0,1],[0,1],[-1,1],[2,11],[3,7],[1,1],[33,36],[4,-3],[1,0],[2,-3],[0,-1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,-2],[0,0],[0,-1],[-3,-5]],[[56317,12204],[1,0],[2,-1],[1,-2],[0,-1],[0,0],[5,-47],[-3,-44],[-6,-45],[-2,-12],[-5,-26],[-5,-11],[-8,-14],[-10,-10],[-13,-13],[-13,1],[-5,0],[-21,8],[20,116],[2,10],[2,7],[5,24],[1,3],[4,19],[1,1],[0,0],[15,28],[12,16],[1,-1],[1,0],[2,-1],[16,-5]],[[56407,12452],[-1,-4],[-6,-17],[-24,-18],[0,0],[0,14],[2,16],[1,9],[21,52],[0,0],[0,0],[1,1],[0,0],[0,0],[1,1],[2,0],[0,0],[1,-1],[0,0],[3,-11],[3,-11],[0,-1],[0,-2],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-12],[0,-1],[0,-1],[-4,-10]],[[64223,60068],[-99,-53],[-2,64],[0,0],[8,9],[93,110]],[[64223,60376],[-15,-22],[-21,-6],[-91,-25],[0,0],[-8,105],[-1,12],[0,0],[-75,0],[-118,0],[0,0],[-19,95],[0,0],[15,15],[14,14],[101,210],[32,66],[0,0],[-70,-52],[-92,-70],[-99,11],[-32,-84],[0,0],[-23,11],[-72,34],[0,0],[144,117],[39,3],[38,3],[119,57],[43,50],[54,61],[-4,27],[-3,22],[0,0],[-30,-5],[-32,-6],[-107,-142],[-172,-89],[-13,6],[-8,4],[-30,54],[0,0],[168,92],[47,92],[-66,133],[-133,-35],[39,-25],[67,-42],[0,0],[20,-58],[0,0],[-58,-42],[-85,-64],[-127,63],[-88,-75],[-64,-148],[0,0],[-15,-11],[-69,-52],[-65,27],[0,0],[20,49],[15,37],[20,12],[-31,33],[0,0],[-331,-42],[-81,-39],[-15,-7],[0,0],[58,5],[89,7],[0,0],[2,-21],[4,-28],[0,0],[-69,-19],[0,0],[-5,1],[-97,26],[-26,0],[-20,0],[0,0],[13,39],[14,42],[76,50],[46,31],[0,0],[-12,13],[-74,-3],[-17,-1],[-29,-9],[-82,-27],[-127,7],[2,6],[6,24],[259,14],[0,0],[1,5],[4,21],[-12,26],[-13,32],[0,0],[-181,83],[-110,-21],[-24,40],[-14,22],[47,75],[28,46],[-25,14],[-78,46],[-121,-27],[-7,-2],[-17,4],[-59,12],[0,0],[217,97],[4,2],[10,34],[0,0],[-155,-60],[-52,-21],[-50,82],[0,0],[87,375],[0,0],[-113,-89],[-22,-4],[-51,-8],[0,0],[67,164],[0,0],[-1,34],[0,0],[-21,-3],[-147,-20],[-35,81],[0,0],[63,32],[0,0],[36,91],[0,0],[-78,49],[-176,110],[-35,-10],[-81,59],[-3,5],[-39,70],[-6,16],[-6,16],[13,54],[22,94],[0,0],[56,62],[0,0],[16,26],[94,150],[0,0],[-117,-116],[0,0],[-40,143],[0,0],[-71,20],[-86,23],[-10,51],[15,75],[4,8],[30,55],[136,65],[0,0],[-62,15],[-163,-21],[-32,-4],[0,0],[-7,-2],[-111,-44],[-67,132],[-2,3],[2,15],[7,32],[143,36],[0,0],[-56,-6],[-119,93],[-10,7],[0,0],[8,79],[8,74],[0,0],[-115,-11],[-82,80],[1,47],[18,17],[51,17],[58,19],[124,89],[59,42],[0,0],[-155,-62],[-43,18],[-36,16],[-44,63],[-22,84],[0,0],[81,14],[240,41],[130,63],[7,11],[16,27],[0,0],[-73,2],[-10,0],[0,0],[-15,-7],[-145,-74],[-84,-17],[-110,-23],[-86,33],[-46,68],[-8,12],[140,28],[65,-45],[56,4],[118,70],[99,166],[149,-25],[43,-7],[0,0],[73,51],[-8,46],[-42,-29],[-72,27],[-66,26],[-108,76],[67,107],[73,16],[8,-3],[86,-31],[22,-17],[0,0],[2,-7],[36,-117],[33,-53],[107,-74],[100,-68],[47,7],[0,0],[-346,391],[-117,27],[-82,196],[-32,76],[0,0],[-15,79],[30,44],[0,0],[-79,19],[-4,0],[-15,-3],[0,0],[27,-86],[101,-324],[0,0],[-51,-44],[-89,-76],[0,0],[-7,59],[-9,82],[-69,-10],[-12,-2],[-29,-29],[-17,-17],[-103,-217],[-102,-214],[-107,5],[-34,2],[-13,193],[32,235],[150,120],[33,27],[10,6],[58,39],[29,29],[20,20],[-130,47],[-86,-120],[-4,-9],[-27,-59],[-111,-40],[-13,37],[-4,12],[40,122],[-37,46],[0,0],[4,72],[9,160],[0,0],[-1,2],[-33,77],[-10,0],[-15,1],[-133,-92],[0,0],[-11,32],[-21,62],[0,0],[77,74],[0,0],[68,38],[266,149],[0,0],[-42,10],[-41,9],[-2,13],[-5,22],[0,0],[46,28],[70,44],[68,25],[56,21],[131,9],[51,4],[65,-41],[70,-45],[83,4],[2,0],[0,0],[3,31],[-64,35],[-16,9],[-35,7],[-205,44],[-144,-64],[-205,-90],[13,-64],[1,-7],[-70,-82],[-169,-77],[-82,37],[4,73],[-56,88],[-70,49],[-85,23],[-70,19],[11,50],[4,17],[72,65],[38,34],[98,21],[46,10],[18,-4],[148,-29],[226,83],[-9,80],[0,0],[-289,-69],[-385,-92],[-43,147],[0,0],[89,113],[206,170],[123,102],[229,190],[114,80],[131,91],[88,34],[124,48],[83,87],[60,62],[0,0],[-108,-20],[-5,-1],[-32,-20],[-241,-149],[-674,-593],[-197,-116],[-70,-10],[-83,14],[52,115],[0,0],[-34,104],[-21,64],[0,0],[26,117],[218,3],[306,4],[38,27],[0,0],[-194,27],[-200,-25],[-77,45],[-32,19],[0,0],[21,35],[48,28],[51,29],[118,-31],[156,18],[20,25],[15,18],[-18,37],[-30,60],[-156,-56],[-19,-7],[0,0],[-20,12],[0,0],[1,11],[2,31],[0,0],[26,19],[14,9],[135,13],[38,3],[114,-38],[68,10],[0,0],[-15,68],[0,0],[-8,19],[0,0],[-261,-28],[-335,11],[-150,165],[-35,11],[0,0],[69,96],[803,184],[291,-38],[104,-174],[27,-19],[16,-11],[14,0],[21,-1],[136,54],[0,0],[-41,-14],[-31,-10],[-265,212],[-244,9],[-280,-31],[-218,-38],[-60,-10],[-94,-33],[-170,-60],[-23,20],[-19,17],[9,104],[0,0],[14,38],[13,35],[73,62],[43,20],[169,81],[79,75],[79,74],[68,22],[66,9],[93,12],[275,-147],[193,56],[381,-175],[0,0],[-62,54],[-53,47],[0,0],[27,15],[27,15],[190,28],[194,28],[0,0],[-86,30],[-65,24],[-87,-46],[-95,-48],[-189,-29],[-112,90],[0,0],[228,66],[147,42],[0,0],[-14,44],[-132,-3],[1,-7],[7,-43],[-92,-28],[-102,-31],[-10,9],[-22,18],[-30,80],[0,0],[49,40],[2,2],[62,-13],[22,-5],[15,38],[0,0],[-29,43],[-6,9],[0,0],[-89,-22],[-95,-23],[10,-18],[57,-98],[0,0],[-70,-78],[-9,-10],[0,0],[-163,-12],[-32,9],[-175,51],[-27,27],[-23,21],[0,0],[49,38],[32,24],[86,1],[55,0],[158,83],[0,0],[-10,2],[-15,3],[-639,-206],[-135,-139],[-84,-59],[-95,-66],[-23,-2],[-18,-2],[-23,83],[7,10],[87,117],[134,239],[91,34],[81,31],[51,-26],[90,-46],[184,-16],[52,29],[0,0],[-43,1],[-174,7],[-141,48],[-39,33],[-57,49],[-56,37],[-52,34],[0,0],[360,22],[21,-10],[236,-119],[249,2],[69,1],[29,-6],[82,-17],[252,-127],[112,20],[0,0],[-396,197],[0,0],[-20,79],[11,63],[3,19],[65,169],[0,0],[-202,-58],[0,0],[-23,-120],[-104,-20],[-93,-18],[-113,0],[-130,-1],[-146,44],[-141,42],[0,0],[122,70],[136,77],[3,47],[0,0],[-78,6],[0,0],[29,9],[89,30],[210,-18],[181,-16],[59,12],[150,30],[32,17],[13,7],[0,0],[41,144],[-89,123],[-2,7],[-14,55],[43,178],[0,0],[34,34],[105,-8],[24,-52],[132,-109],[0,0],[105,92],[0,0],[-79,74],[0,0],[39,32],[53,45],[0,0],[-112,67],[-78,-36],[-127,-60],[-106,23],[-11,2],[0,0],[4,6],[43,53],[37,5],[11,2],[125,213],[0,0],[-78,13],[-6,130],[0,0],[33,18],[123,-29],[21,30],[93,340],[0,0],[-484,59],[-69,-32],[-63,-30],[-220,46],[-238,129],[-66,55],[-44,37],[-202,91],[-399,71],[-167,155],[-101,94],[0,0],[13,53],[213,114],[550,-60],[153,-43],[70,-19],[340,-231],[109,-48],[115,-30],[293,-78],[43,6],[27,3],[0,0],[23,179],[0,0],[-13,8],[-17,10],[-96,-111],[-149,23],[-23,26],[-40,45],[0,0],[6,67],[1,12],[102,-17],[90,-15],[78,61],[0,0],[-61,36],[-48,29],[-265,14],[-8,20],[-12,27],[0,0],[57,19],[27,9],[283,-27],[0,0],[-107,75],[-50,36],[-196,45],[-237,119],[14,40],[16,6],[16,6],[110,-44],[138,-56],[100,50],[0,0],[-68,112],[-186,-19],[-217,-22],[-35,13],[-43,15],[0,0],[101,77],[41,32],[167,17],[39,50],[0,0],[-67,59],[-62,-16],[-286,-193],[0,0],[-75,21],[11,47],[0,0],[36,38],[109,115],[266,80],[46,-4],[75,-8],[27,30],[0,0],[-9,19],[-181,9],[-330,-119],[-99,-3],[-157,49],[0,0],[56,42],[72,55],[211,40],[207,39],[33,34],[44,45],[12,36],[0,0],[-14,12],[-15,12],[-44,-6],[-39,-68],[-129,-49],[-58,6],[-93,11],[-175,87],[-126,63],[0,0],[55,98],[-189,-17],[-100,-88],[-65,-57],[-175,10],[0,0],[24,-110],[44,-23],[52,-27],[0,0],[-17,-123],[-119,-39],[-111,-36],[-184,-11],[-93,18],[-212,41],[-155,186],[-71,85],[0,0],[60,69],[40,10],[62,16],[304,156],[0,0],[-159,-11],[-84,36],[-92,38],[0,0],[3,8],[14,34],[311,227],[3,62],[0,0],[-22,75],[-147,-28],[-111,11],[-69,57],[0,0],[61,53],[30,27],[173,-24],[137,-19],[15,26],[-15,145],[45,146],[0,0],[28,13],[22,9],[-23,38],[-59,99],[-34,33],[-20,19],[-107,15],[-232,33],[0,0],[9,43],[1,6],[88,44],[62,30],[0,0],[-8,52],[75,119],[0,0],[-29,66],[0,0],[-97,55],[-258,145],[-2,41],[-3,66],[0,0],[29,58],[71,40],[0,0],[-10,75],[0,0],[-240,139],[0,0],[1,106],[0,0],[-1,2],[-42,70],[0,0],[-120,-67],[-204,-32],[-135,-21],[0,0],[85,63],[59,1],[88,22],[86,21],[129,68],[0,0],[-39,86],[-39,86],[0,0],[148,46],[-10,40],[-148,111],[-108,39],[-78,82],[-4,3],[0,0],[-43,110],[-15,37],[-183,42],[-307,128],[-120,188],[-57,60],[-8,9],[0,0],[34,64],[124,122],[0,0],[-37,55],[-76,110],[-156,27],[-111,-14],[-46,-6],[0,0],[-16,23],[-28,39],[6,68],[0,0],[-166,6],[-34,2],[-99,127],[-155,57],[-349,57],[-61,74],[-423,55],[-293,37],[-291,82],[-164,46],[-27,-17],[-6,-61],[0,0],[-134,-146],[-86,-3],[-83,-3],[0,0],[-22,68],[-13,38],[-95,-10],[-61,-6],[-88,-28],[-133,-41],[-220,-147],[-84,4],[-122,72],[0,0],[125,124],[43,12],[0,0],[-17,7],[-71,31],[-230,-27],[-36,-40],[-22,-25],[-14,-44],[-113,54],[-171,81],[-39,-10],[-41,-11],[-87,-77],[0,0],[264,-147],[0,0],[-21,-29],[-27,-37],[-242,41],[-409,70],[-194,77],[-30,12],[-67,32],[-386,187],[0,0],[39,57],[361,116],[254,26],[36,106],[0,0],[-120,-18],[-37,-6],[-109,6],[-194,10],[-413,89],[-18,26],[-8,12],[7,15],[7,14],[-37,-6],[-242,-35],[-357,220],[19,52],[79,64],[209,77],[129,17],[136,19],[682,-60],[179,-15],[152,16],[0,0],[-4,6],[-13,19],[-87,0],[-95,1],[-302,63],[0,0],[146,42],[130,37],[233,12],[378,20],[397,-84],[92,126],[2,1],[71,13],[0,0],[14,55],[0,0],[-81,94],[-85,39],[-80,36],[-215,22],[-67,-22],[0,0],[-19,-57],[-9,-27],[-191,-59],[-312,-6],[-167,-3],[-85,-14],[-225,-36],[-350,83],[-14,138],[0,0],[-85,31],[-198,72],[-271,-25],[-8,-1],[0,0],[-15,4],[-84,22],[0,0],[73,56],[0,0],[-45,33],[-210,25],[-225,85],[-209,120],[-83,47],[40,65],[6,10],[0,0],[90,279],[23,8],[847,147],[366,112],[51,6],[321,37],[88,33],[3,30],[2,19],[0,0],[-62,19],[0,0],[39,32],[189,61],[93,30],[421,59],[137,19],[562,-14],[28,13],[169,81],[375,274],[30,22],[0,0],[20,32],[2,4],[0,0],[0,78],[-35,27],[-65,141],[-21,45],[15,153],[0,0],[290,41],[286,98],[-65,46],[-33,23],[-142,-120],[-617,-68],[-661,66],[0,0],[-34,28],[-132,109],[-12,110],[0,0],[20,36],[138,43],[179,57],[100,83],[28,23],[0,0],[417,115],[83,38],[100,46],[67,35],[61,31],[71,71],[288,130],[167,76],[189,-36],[85,-143],[179,-152],[9,-2],[57,-15],[0,0],[-9,29],[-106,86],[-92,75],[-101,191],[0,0],[61,28],[95,42],[173,-9],[145,-8],[228,-79],[111,-38],[215,35],[17,32],[30,58],[13,164],[5,56],[0,0],[40,122],[0,0],[-82,58],[-107,76],[-48,66],[0,0],[36,48],[31,15],[37,19],[162,34],[319,69],[301,-31],[287,-30],[43,-16],[41,-16],[5,-11],[25,-52],[-21,-65],[21,-18],[257,-64],[155,-38],[156,-70],[249,-112],[236,-71],[32,6],[5,1],[0,0],[-530,268],[-7,3],[-125,42],[-74,10],[-62,17],[-114,72],[-3,5],[-91,122],[-301,74],[-154,38],[0,0],[239,64],[177,48],[1134,145],[176,23],[54,-10],[193,-35],[0,0],[-1,3],[-31,64],[0,0],[450,74],[187,-63],[240,-186],[0,0],[15,-122],[16,-125],[-10,-20],[-18,-34],[-44,-25],[-44,-26],[-29,-84],[22,-131],[0,0],[86,-34],[6,-2],[0,0],[50,-4],[0,0],[54,215],[123,132],[87,94],[82,21],[103,26],[491,-89],[10,-2],[27,-8],[268,-76],[0,0],[371,-201],[135,3],[36,1],[0,0],[-273,127],[-392,183],[0,0],[23,6],[45,11],[523,-81],[197,55],[0,0],[-613,269],[-167,234],[-14,42],[-10,32],[0,0],[236,10],[235,10],[388,-35],[789,-257],[64,-21],[555,-108],[65,-27],[70,-30],[121,-102],[328,-160],[84,-1]],[[64223,82454],[-327,120],[0,0],[-63,44],[0,0],[390,4]],[[64223,82755],[-52,18],[0,0],[52,26]],[[64223,82850],[-218,94],[-14,5],[19,25],[17,23],[196,6]],[[61366,69791],[109,-46],[-59,-194],[-35,-118],[0,0],[-76,-51],[-55,21],[-18,45],[-50,125],[0,0],[179,190],[0,0],[-94,-50],[-83,13],[13,8],[60,38],[109,19]],[[60965,69514],[-56,-68],[-49,-59],[-78,-55],[-462,-150],[-175,-57],[-105,9],[-65,28],[-96,41],[-54,53],[-22,21],[14,23],[19,29],[0,0],[208,-31],[75,10],[42,6],[22,13],[-11,105],[-62,-32],[-111,-57],[-144,84],[0,0],[-248,27],[-59,31],[-53,59],[-26,29],[4,9],[20,38],[67,38],[1,1],[0,0],[2,260],[-19,37],[-7,109],[10,17],[6,12],[97,49],[71,36],[74,-8],[128,-14],[205,-49],[151,-36],[113,-83],[102,-128],[50,-63],[293,-104],[77,-68],[14,-13],[0,0],[37,-99]],[[60585,71050],[-55,-10],[-100,-19],[-69,49],[-38,110],[0,0],[10,16],[17,27],[67,26],[94,-10],[87,-11],[74,-11],[0,0],[10,-80],[0,0],[-97,-87]],[[61276,81842],[-220,-17],[-57,-4],[-646,133],[-57,22],[-78,106],[0,0],[53,43],[62,51],[196,-21],[294,-143],[164,-56],[111,-38],[59,-26],[119,-50],[0,0]],[[64223,81912],[-22,-6],[-397,178],[-296,80],[-209,57],[-94,73],[-116,90],[-174,94],[0,0],[229,22],[204,20],[224,-16],[145,-11],[357,-96],[149,-40]],[[64223,82110],[-59,-41],[59,-35]],[[50995,18743],[0,-72],[-136,95],[-69,48],[-32,77],[20,38],[0,0],[14,3],[14,3],[0,0],[167,-135],[22,-57]],[[49302,18134],[87,-259],[0,0],[-63,-41],[-51,-5],[-38,-3],[-68,46],[-52,34],[-127,-28],[-24,-5],[-36,-36],[-19,-84],[7,-15],[6,-13],[0,0],[-184,108],[-138,81],[-98,128],[-102,132],[0,0],[103,247],[109,70],[0,0],[367,-105],[89,-66],[232,-186]],[[10620,1998],[93,-225],[0,0],[2,-9],[0,0],[1,-1],[0,-1],[0,0],[1,-3],[0,-1],[0,-2],[1,-1],[0,-1],[0,0],[0,-4],[0,-1],[1,-2],[0,-3],[0,-3],[0,-1],[0,0],[1,-5],[0,-8],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-9],[0,-1],[-1,-1],[0,-1],[0,0],[-1,-1],[0,0],[-1,0],[-10,-4],[-8,-2],[-5,3],[-3,2],[-1,0],[0,1],[-1,0],[-1,1],[0,0],[-2,1],[-141,145],[0,0],[13,68],[0,0],[3,-11],[5,-22],[21,-39],[12,-1],[0,0],[1,0],[0,1],[1,0],[1,0],[0,0],[0,1],[0,0],[6,45],[1,8],[0,58],[-1,11],[-1,3],[0,1],[-4,11],[-1,2],[-2,5],[-16,29],[-10,13],[0,1],[20,-5],[26,-34]],[[9686,3790],[-4,0],[-3,-1],[0,1],[-7,1],[0,0],[-1,0],[-1,1],[0,0],[-2,1],[0,1],[-1,0],[0,2],[-2,2],[0,1],[0,0],[-1,1],[-4,10],[-3,5],[0,0],[0,1],[0,2],[-1,1],[-1,3],[0,3],[-1,4],[0,1],[-1,2],[0,1],[-1,3],[0,4],[0,1],[0,1],[0,1],[0,0],[1,1],[0,1],[0,0],[47,-3],[5,0],[1,-2],[4,-4],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-4],[0,-2],[0,0],[0,-1],[-1,-4],[0,0],[0,-3],[0,0],[-1,0],[-1,-2],[0,-1],[-15,-20],[0,0],[0,0],[-1,0],[-3,-1],[-1,0]],[[9706,3861],[1,-5],[0,0],[-6,0],[-1,0],[-1,0],[-8,2],[-3,1],[-1,2],[0,0],[-2,1],[-4,5],[-1,1],[0,1],[-1,0],[-4,7],[0,0],[0,0],[-1,1],[-1,1],[0,1],[-2,6],[-1,0],[0,0],[-1,8],[-2,18],[-2,16],[0,1],[0,0],[0,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[22,-37],[17,-29]],[[9645,3869],[-1,-4],[0,-2],[0,0],[0,1],[-1,1],[-1,2],[0,0],[0,2],[-1,2],[0,1],[0,1],[-1,2],[0,2],[0,0],[-1,1],[0,4],[0,2],[-1,0],[0,1],[0,5],[0,0],[0,1],[0,1],[0,1],[0,3],[0,1],[2,10],[3,10],[0,0],[9,13],[1,1],[0,1],[1,1],[1,0],[1,0],[2,-1],[0,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,0],[0,-1],[0,0],[1,-1],[0,0],[-1,-1],[0,-1],[-17,-57]],[[55751,17387],[14,-15],[14,-20],[8,-14],[11,-26],[13,-35],[20,-56],[0,0],[-2,-2],[-8,-7],[-64,63],[-5,8],[-10,17],[-7,12],[-3,5],[-8,20],[-1,7],[0,2],[1,10],[0,4],[3,8],[4,8],[0,0],[1,1],[4,6],[12,5],[1,0],[0,0],[1,-1],[1,0]],[[55861,17175],[3,-4],[5,-7],[1,-1],[1,-2],[1,-2],[1,-4],[1,-1],[0,-1],[0,-1],[1,-5],[0,-5],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-6],[0,-1],[0,-3],[0,-13],[0,-1],[0,0],[0,-1],[0,-5],[0,-2],[-1,-3],[-2,-15],[-1,-4],[-1,-2],[-2,-1],[0,0],[-19,-10],[-1,0],[-1,0],[0,0],[0,0],[-1,1],[-5,4],[-1,2],[-1,2],[-1,1],[0,2],[-4,15],[-1,3],[0,1],[-1,7],[0,4],[0,1],[0,2],[0,0],[0,3],[1,10],[0,3],[0,1],[0,2],[0,10],[0,2],[1,3],[8,28],[1,2],[2,2],[4,3],[1,-1],[1,0],[0,0],[2,0],[6,-2]],[[56667,13993],[4,-41],[0,-28],[-1,-86],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-9],[-1,-8],[-2,-20],[-2,-23],[-2,-14],[0,-1],[0,0],[0,0],[-1,-3],[0,-1],[0,-1],[-5,-18],[-15,-40],[-7,2],[-5,1],[-17,14],[-11,9],[-1,1],[-2,2],[0,1],[-1,1],[0,0],[-5,10],[-2,3],[0,1],[-3,6],[-5,10],[-1,2],[0,0],[-1,1],[-1,6],[-1,8],[0,5],[0,1],[-1,2],[0,59],[0,5],[0,1],[0,0],[3,21],[3,21],[0,1],[1,2],[2,7],[20,69],[10,31],[8,29],[11,40],[0,1],[0,2],[1,3],[1,2],[0,0],[0,1],[1,0],[1,1],[0,0],[1,1],[0,-1],[1,0],[1,0],[4,0],[1,0],[1,0],[0,0],[0,-1],[2,-1],[1,-2],[0,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-2],[0,0],[0,-1],[-1,-1],[9,-29],[7,-21],[0,0],[0,-3],[2,-19]],[[32223,28727],[-18,-26],[-64,44],[-8,5],[0,0],[-54,80],[0,0],[52,309],[57,23],[19,8],[0,0],[26,-109],[18,-78],[-28,-256]],[[31823,28994],[-4,-38],[-55,50],[-170,349],[13,131],[0,0],[25,-3],[0,0],[29,-53],[108,-195],[41,-182],[13,-59]],[[55723,17887],[0,0],[1,1],[1,0],[22,-2],[1,0],[0,0],[2,0],[0,0],[0,-1],[6,-6],[3,-3],[1,-2],[0,-2],[0,-1],[-1,-5],[-1,-2],[0,-1],[-2,-2],[-5,-6],[-10,-7],[-3,-1],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-1,2],[-1,2],[-1,2],[-1,4],[-8,20],[-1,10]],[[56050,16780],[4,-24],[6,-26],[6,-66],[0,0],[0,-2],[0,0],[-1,-2],[0,-1],[0,-1],[0,0],[-1,-1],[-2,-5],[0,-3],[-1,0],[0,-1],[0,0],[0,0],[-1,-1],[-1,-1],[-1,-2],[0,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-4,0],[-4,1],[-2,1],[0,1],[-2,1],[0,0],[-4,5],[-1,2],[-1,0],[0,1],[-1,1],[-3,7],[-9,25],[0,14],[-1,8],[0,6],[8,33],[8,35],[1,4],[0,0],[0,1],[0,0],[1,-1],[0,0],[3,-2],[5,-3],[1,-1],[1,0]],[[56621,14748],[9,-22],[12,-31],[29,-112],[4,-11],[9,-21],[7,-35],[7,-51],[2,-15],[0,-1],[0,-19],[0,0],[-4,-13],[-10,-34],[-7,-10],[-2,-1],[0,-1],[-1,0],[0,0],[-1,0],[-4,2],[-1,0],[0,0],[0,0],[0,0],[-9,10],[-58,64],[-71,201],[-1,1],[0,2],[-1,3],[-4,14],[0,0],[0,1],[0,1],[-1,3],[-1,5],[-19,98],[0,2],[0,3],[-1,3],[0,1],[0,2],[0,5],[0,0],[0,1],[0,1],[0,1],[0,1],[0,0],[1,15],[0,0],[1,1],[1,5],[0,2],[1,2],[1,3],[1,2],[0,1],[1,4],[1,2],[1,1],[2,4],[1,2],[1,0],[0,0],[0,1],[2,1],[2,2],[0,0],[1,1],[17,11],[1,0],[0,0],[1,0],[0,0],[2,0],[1,0],[1,0],[0,0],[0,-1],[2,-1],[2,-1],[29,-32],[21,-36],[22,-37]],[[46808,7343],[-3,-36],[0,0],[-24,9],[-38,14],[-57,105],[0,0],[-11,61],[32,69],[27,58],[0,0],[5,-4],[7,-6],[62,-270]],[[54309,17982],[-98,-51],[-74,-38],[-243,61],[-227,-43],[-11,50],[-6,334],[-1,51],[30,110],[0,0],[15,8],[33,16],[255,-30],[301,-36],[75,-55],[38,-28],[9,-63],[12,-82],[-52,-99],[-56,-105]],[[58804,46989],[4,16],[1,3],[4,5],[4,2],[3,0],[1,-1],[0,0],[3,-2],[2,-1],[0,0],[0,-1],[31,-27],[1,-1],[1,-1],[2,-4],[0,0],[3,-19],[3,-101],[2,-73],[1,-2],[0,-6],[0,0],[0,-4],[-1,-1],[0,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-4,-7],[-14,-19],[-23,-28],[-5,-5],[-1,-2],[-14,9],[-2,3],[-13,25],[0,1],[0,2],[-1,3],[0,3],[0,2],[0,2],[0,1],[0,0],[1,2],[1,3],[1,0],[0,1],[0,0],[4,7],[1,2],[1,1],[0,1],[3,4],[0,1],[1,0],[5,4],[-4,209]],[[58910,46688],[1,-1],[0,-1],[0,0],[0,-1],[0,0],[-1,-2],[0,-1],[0,0],[0,0],[-3,-2],[0,0],[-1,0],[0,-1],[-26,-5],[-3,1],[-2,2],[-4,8],[-1,1],[15,33],[3,4],[1,2],[0,1],[1,1],[0,1],[0,0],[1,1],[2,1],[0,0],[1,1],[1,1],[1,0],[1,0],[4,1],[0,0],[0,0],[1,0],[0,0],[3,0],[0,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-4],[1,-3],[1,-20],[0,0],[0,0],[-1,-1],[-1,-1],[0,0],[1,-1],[1,-1],[0,0],[0,0],[0,-5],[0,-6]],[[51308,21786],[4,-9],[3,-5],[-1,-8],[0,0],[-6,-14],[-4,-12],[-48,-33],[-5,1],[-5,2],[-11,12],[-11,12],[-8,44],[1,3],[3,30],[0,0],[44,-11],[44,-12]],[[51518,21794],[15,-17],[0,-34],[0,0],[-64,-16],[-5,-1],[0,0],[-6,87],[0,0],[60,-19]],[[51788,21384],[0,0],[0,0],[-2,0],[0,0],[-1,3],[-1,1],[0,1],[-2,21],[0,1],[0,2],[1,21],[1,22],[1,7],[0,0],[4,5],[0,0],[1,2],[0,0],[1,0],[1,1],[0,0],[0,0],[1,1],[0,-1],[0,0],[1,-1],[0,-4],[1,-2],[0,-1],[0,-66],[0,0],[0,-1],[0,-1],[-1,-3],[0,0],[-1,-1],[-1,-1],[0,0],[-4,-6],[0,0]],[[51620,21476],[0,-5],[0,-6],[0,-8],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-3,-3],[0,0],[-9,-1],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,1],[-1,1],[0,0],[0,4],[-4,15],[0,1],[0,1],[-1,1],[0,0],[0,1],[1,3],[0,1],[0,0],[4,10],[13,15],[6,6],[0,-15],[1,-12],[0,-3]],[[51607,21558],[0,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,2],[-2,8],[-1,7],[2,28],[1,13],[0,3],[0,3],[1,3],[0,0],[0,1],[0,0],[0,1],[1,0],[1,1],[3,4],[0,0],[1,0],[1,0],[3,2],[0,0],[0,0],[1,0],[0,0],[0,-2],[0,-3],[-5,-50],[-1,-9],[-3,-12],[0,0]],[[51172,21671],[2,-1],[3,-1],[0,0],[-4,-27],[-5,-30],[-1,-3],[0,-1],[-1,-5],[-1,-2],[-2,-6],[-3,-5],[0,-1],[-2,-3],[-1,-1],[-2,-3],[-1,-1],[0,0],[-1,-1],[-2,-1],[0,0],[-1,-1],[0,0],[0,0],[-1,1],[0,0],[-1,2],[0,0],[1,1],[0,1],[0,2],[4,24],[3,17],[0,6],[0,1],[0,0],[0,2],[0,1],[1,3],[0,2],[0,1],[0,0],[0,2],[2,10],[0,1],[0,2],[1,1],[0,1],[0,0],[1,1],[0,0],[7,9],[3,1],[1,1],[0,0]],[[51612,21682],[10,-46],[4,-16],[0,0],[-33,47],[-11,45],[0,0],[10,-10],[20,-20]],[[51416,21878],[17,-74],[0,0],[-23,21],[-34,30],[-11,15],[-1,2],[0,0],[-2,6],[-4,14],[0,1],[0,0],[-1,1],[-1,5],[0,0],[0,0],[1,3],[0,1],[2,4],[4,8],[1,1],[0,0],[0,1],[1,0],[4,3],[1,0],[0,0],[6,1],[3,0],[2,0],[2,1],[0,0],[0,0],[2,0],[1,0],[1,0],[0,0],[20,-9],[4,-3],[2,-2],[0,-4],[3,-26]],[[56638,10816],[7,0],[9,-1],[0,-1],[0,-2],[0,-2],[0,0],[-1,-7],[0,-2],[-1,-1],[0,-1],[0,0],[-14,-51],[-26,-588],[-2,-38],[-24,-24],[-3,-3],[-9,-9],[-16,-15],[-6,-6],[-3,-2],[-11,-8],[-22,-4],[-324,-27],[0,0],[-8,36],[19,20],[17,19],[60,53],[19,18],[48,39],[0,0],[45,106],[-1,108],[-1,107],[-8,49],[-5,24],[-4,20],[-14,17],[-11,14],[0,0],[77,100],[77,26],[54,19],[82,17]],[[56841,11295],[-1,-6],[-3,-23],[-2,-13],[-4,-26],[-20,-22],[-9,-10],[-16,-15],[-13,-13],[-64,-54],[-20,5],[3,15],[1,13],[61,112],[0,0],[75,58],[1,0],[2,1],[0,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[0,0],[0,0],[0,-1],[1,-1],[0,0],[1,-5],[0,-3],[1,-6],[0,-3],[0,-2]],[[11979,19443],[0,0],[-71,-124],[-285,-328],[-37,23]],[[11586,19014],[-129,79],[-46,516],[32,208]],[[11443,19817],[54,128]],[[11497,19945],[5,46]],[[11502,19991],[-10,25]],[[11492,20016],[-19,54],[-10,90],[2,15]],[[11465,20175],[6,40],[4,4]],[[11475,20219],[13,13],[146,-141]],[[11634,20091],[162,-158]],[[11796,19933],[143,-339]],[[11939,19594],[44,-103]],[[11983,19491],[-3,-28]],[[11980,19463],[-1,-20],[0,0]],[[11112,20971],[23,22]],[[11135,20993],[110,-99]],[[11245,20894],[58,4],[114,-144],[4,-46]],[[11421,20708],[2,-38],[0,0]],[[11423,20670],[0,0],[-4,-5]],[[11419,20665],[-58,-72],[-28,-13]],[[11333,20580],[-93,-43],[-10,7]],[[11230,20544],[-15,12],[-46,108]],[[11169,20664],[-79,182],[5,59]],[[11095,20905],[4,53],[13,13]],[[10855,21044],[-58,13],[0,0]],[[10797,21057],[0,0],[29,124]],[[10826,21181],[254,-61],[-39,-86],[-35,-23],[-151,33]],[[10475,21672],[0,0],[49,-136]],[[10524,21536],[16,-105],[29,-58]],[[10569,21373],[10,26]],[[10579,21399],[50,-145],[0,0]],[[10629,21254],[0,0],[-23,-9]],[[10606,21245],[-33,-13],[-164,52]],[[10409,21284],[-1,1],[0,0]],[[10408,21285],[-76,251],[0,0]],[[10332,21536],[0,0],[18,17]],[[10350,21553],[125,119],[0,0]],[[9835,21933],[-2,-13],[-38,-65]],[[9795,21855],[-15,-24],[-13,4]],[[9767,21835],[-61,20],[-45,61]],[[9661,21916],[-45,63],[0,0]],[[9616,21979],[0,0],[26,115],[69,84]],[[9711,22178],[50,4]],[[9761,22182],[43,3],[0,0]],[[9804,22185],[0,0],[7,-7]],[[9811,22178],[31,-35],[1,-12]],[[9843,22131],[7,-60],[-15,-138]],[[56529,13353],[12,-4],[5,-11],[1,-3],[0,0],[1,-1],[6,-31],[0,-2],[0,-3],[1,-4],[1,-14],[0,0],[0,-1],[1,-1],[0,-1],[0,-14],[0,-3],[-3,-51],[-6,-43],[-6,-38],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[-12,-22],[-1,0],[-1,0],[0,-1],[0,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[-2,1],[0,1],[-4,6],[-5,5],[-6,10],[-10,14],[-6,16],[-2,4],[-2,7],[-3,11],[-1,38],[1,2],[0,1],[0,3],[2,9],[0,0],[0,1],[4,24],[0,3],[1,5],[1,1],[20,62],[4,13],[0,0],[0,0],[1,2],[0,1],[1,1],[1,4],[6,8],[0,0],[1,0],[1,1],[0,1],[1,1],[2,1],[0,1],[2,0],[1,0],[0,0]],[[56400,12558],[-1,0],[-1,0],[0,0],[0,1],[-1,1],[-2,3],[0,1],[0,0],[-1,1],[0,1],[-1,2],[0,1],[2,18],[0,0],[0,1],[1,1],[0,0],[1,0],[3,1],[2,0],[2,1],[2,0],[9,-10],[0,-1],[1,-1],[0,-2],[1,0],[0,0],[-1,-2],[-1,0],[-2,-5],[0,0],[0,-1],[-12,-10],[-1,-1]],[[56464,12714],[0,-2],[0,-1],[0,-3],[1,-3],[0,-3],[0,0],[0,-1],[-1,-3],[0,0],[0,-1],[-2,-8],[-5,-18],[-7,-3],[0,0],[-1,0],[-5,8],[-1,3],[1,2],[0,1],[5,13],[7,19],[0,0],[6,3],[0,0],[1,0],[0,0],[1,-2],[0,-1],[0,0]],[[56509,12985],[0,-2],[-1,-2],[-4,-10],[-2,-6],[0,-1],[0,-1],[-2,-1],[-6,-4],[-2,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-4,2],[-6,2],[-3,6],[2,3],[23,37],[12,13],[0,0],[0,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[-1,-6],[-1,-6],[-3,-16]],[[55224,10879],[-18,-7],[-46,-20],[-94,54],[-75,43],[12,34],[15,44],[0,0],[185,57],[36,50],[4,5],[0,0],[0,-2],[16,-38],[25,-152],[0,0],[-60,-68]],[[54919,18415],[1,-1],[0,0],[1,-6],[0,-2],[0,-1],[0,-3],[-4,-11],[-1,0],[0,-1],[-1,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-1],[0,0],[-1,0],[-20,-15],[-12,-8],[-7,-4],[0,0],[-3,0],[-3,-1],[-14,2],[-2,0],[-2,1],[0,0],[0,0],[-1,1],[0,1],[0,0],[1,2],[0,1],[0,0],[33,54],[2,4],[35,5],[0,0],[0,-1],[0,0],[3,-7]],[[54842,18410],[0,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-6,-2],[-1,0],[-2,0],[0,0],[-3,1],[-12,6],[0,2],[1,5],[3,6],[4,6],[0,0],[2,0],[0,0],[0,-1],[3,-1],[5,-3],[4,-7],[2,-4],[1,0]],[[55032,18470],[-5,-7],[0,0],[-1,-1],[-45,-66],[0,0],[-8,-4],[0,0],[0,1],[0,1],[-1,1],[2,27],[2,5],[0,1],[0,0],[1,1],[10,26],[16,7],[22,9],[3,1],[1,0],[0,0],[2,1],[0,0],[1,-3],[0,0]],[[55026,18715],[6,-6],[0,-1],[0,0],[1,-1],[1,-1],[2,-2],[0,-1],[1,-1],[4,-7],[5,-9],[0,-1],[1,0],[0,-1],[7,-16],[0,-1],[0,-2],[0,-4],[0,0],[0,-1],[0,0],[0,-2],[0,0],[-1,-1],[0,-1],[0,0],[-1,0],[-2,-1],[0,0],[-3,2],[-16,12],[-27,20],[1,10],[2,11],[0,0],[8,3],[8,2],[1,0],[1,0],[1,0],[0,0]],[[54822,17749],[1,-2],[3,-4],[17,-22],[2,-3],[2,-3],[0,0],[0,0],[0,-1],[2,0],[2,0],[5,8],[6,6],[3,1],[2,0],[4,0],[35,-2],[1,-8],[0,-5],[0,0],[-29,-23],[-13,-10],[-11,-8],[-8,-4],[-27,-7],[-25,-6],[-12,-1],[-17,-2],[-2,3],[-3,4],[0,0],[0,7],[0,40],[7,18],[5,11],[42,15],[8,-2]],[[54835,18333],[10,-1],[2,0],[2,-1],[4,-3],[13,-13],[1,-2],[3,-2],[0,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,-7],[0,0],[0,0],[-3,-6],[0,0],[-1,0],[-5,-2],[-47,-16],[-2,0],[-1,1],[-2,1],[-2,8],[0,1],[0,0],[-1,1],[0,0],[0,1],[0,0],[0,0],[-1,3],[0,1],[0,2],[0,0],[0,0],[0,1],[0,0],[0,1],[0,1],[0,1],[1,1],[0,1],[8,12],[1,1],[0,0],[21,16]],[[54759,18329],[2,-1],[6,-7],[4,-4],[2,-2],[4,-8],[2,-2],[8,-16],[-2,-7],[0,0],[-4,-3],[-4,-1],[-7,-3],[-2,0],[-3,0],[-8,3],[0,0],[-6,4],[-5,4],[0,0],[0,1],[-1,1],[0,4],[-1,4],[-4,7],[-2,2],[-31,7],[-3,-2],[-8,-3],[0,1],[-1,0],[0,1],[-4,6],[0,0],[0,0],[-1,4],[0,2],[0,0],[1,2],[2,2],[4,3],[0,0],[15,8],[4,1],[5,1],[10,3],[2,0],[10,-5],[8,-4],[4,-1],[4,-2]],[[53166,12005],[-2,-1],[-1,1],[0,0],[-1,2],[-1,1],[0,0],[0,1],[-1,1],[0,1],[-3,4],[0,1],[-1,1],[0,1],[-2,6],[-4,19],[-1,4],[0,0],[-3,32],[0,29],[1,3],[1,2],[1,1],[0,1],[0,0],[0,1],[0,1],[1,4],[-1,5],[0,4],[-3,13],[-2,8],[-1,2],[0,0],[0,1],[-5,16],[0,1],[0,0],[-1,3],[-1,2],[-1,2],[0,0],[-1,1],[-5,6],[-5,6],[0,1],[0,0],[-7,4],[-2,1],[0,0],[6,16],[10,27],[40,-35],[14,-23],[1,-1],[2,-63],[-5,-38],[-8,-50],[0,-2],[0,-1],[-3,-10],[0,-1],[-1,-1],[0,0],[0,-1],[-1,-4],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-2]],[[55674,17440],[-1,-1],[-4,6],[-1,1],[-4,13],[-2,6],[0,0],[0,1],[-3,10],[0,1],[-1,1],[2,15],[0,3],[0,0],[7,0],[0,-1],[15,-24],[2,-4],[1,-2],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,-1],[1,-3],[-2,-8],[0,-1],[0,0],[-1,-1],[0,-1],[0,-1],[-4,-3],[-3,-2],[0,0],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-1,0]],[[55557,17595],[0,0],[-8,-4],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[0,0],[0,0],[0,1],[-1,2],[0,0],[0,1],[0,1],[0,1],[0,3],[1,3],[0,4],[1,6],[0,2],[2,4],[1,0],[1,1],[2,1],[2,1],[3,-1],[5,-2],[0,-2],[0,0],[0,-1],[1,-5],[0,-2],[1,-2],[0,-1],[-1,-2],[0,0],[0,-1],[-1,-10],[-1,0]],[[42178,163],[25,-72],[31,-91]],[[42065,0],[113,163]],[[46775,24518],[-65,-17],[0,0],[23,90],[5,18],[79,85],[69,74],[37,-44],[-19,-126],[0,0],[-41,-1],[-8,0],[-4,-3],[-76,-76]],[[27329,47938],[-103,198],[0,0],[59,181],[0,0],[23,0],[0,0],[6,-107]],[[27314,48210],[89,-255],[21,-58],[-11,-74],[-14,2],[-12,2],[-58,111]],[[993,51534],[-19,-9],[-2,-1],[-24,19],[-33,26],[-1,4],[-6,37],[60,14]],[[968,51624],[0,0],[2,37],[1,17]],[[971,51678],[-81,63],[-48,36],[0,0],[20,37],[46,10],[0,0],[25,-12]],[[933,51812],[156,-72],[-1,-19]],[[1088,51721],[-95,-187]],[[1471,51577],[10,94],[49,130],[98,105],[0,0],[60,-92],[27,-41],[0,0],[0,-37]],[[1715,51736],[-1,-97],[-249,-125],[0,0],[6,63]],[[3337,51991],[0,0],[-110,-24],[-130,-29],[-100,5],[-67,4],[-83,59],[0,0],[1,3],[7,21],[231,27],[65,-45],[0,0],[186,-21]],[[2335,51911],[-15,52],[275,90]],[[2595,52053],[55,38]],[[2650,52091],[34,24],[54,65]],[[2738,52180],[-25,16],[-45,30],[0,0]],[[2668,52226],[69,78],[33,10]],[[2770,52314],[16,5],[58,-52],[0,0],[15,-63],[-81,-149]],[[2778,52055],[-24,-44],[-258,-90],[-161,-10]],[[5390,52883],[-108,-89],[-22,15]],[[5260,52809],[-8,5],[0,0]],[[5252,52814],[52,148],[22,61],[225,360],[94,67],[45,-1]],[[5690,53449],[35,-1]],[[5725,53448],[78,-24],[0,0],[-14,-98],[-4,-28],[0,0],[-330,-361],[-65,-54]],[[6382,53738],[109,156],[0,0],[29,-25],[38,-34],[0,0],[-5,-20],[-9,-36],[-13,-16],[-106,-135],[0,0],[86,-49],[0,0],[-22,-21],[-147,-137],[-175,-104],[-207,-123],[-93,-36],[-20,13],[-68,41],[0,0],[77,78],[235,116],[51,25]],[[6142,53431],[0,0],[16,22]],[[6158,53453],[94,123],[0,0],[25,-11]],[[6277,53565],[-7,76],[-120,47]],[[6150,53688],[-20,27],[-10,14],[0,0],[-1,38],[68,92],[139,45]],[[6326,53904],[25,9],[24,-55],[0,0],[-9,-13],[-14,-21]],[[6352,53824],[0,0],[2,-12],[3,-27],[23,-42],[2,-5],[0,0]],[[7893,54757],[0,0],[1,-4]],[[7894,54753],[36,-100]],[[7930,54653],[54,11],[10,2],[-3,-40]],[[7991,54626],[-3,-32],[0,0],[-284,-57]],[[7704,54537],[-165,-81],[-86,-43]],[[7453,54413],[-2,-15]],[[7451,54398],[-3,-23],[0,0],[-16,-16],[-37,-38],[-98,-27],[-80,24],[-49,110],[1,51],[1,17],[0,0],[75,115],[101,154],[308,161]],[[7654,54926],[146,17]],[[7800,54943],[17,1],[19,1],[40,-74],[13,-89],[4,-25]],[[22313,55952],[8,-8],[6,-6],[40,13]],[[22367,55951],[6,2],[17,-9],[57,-32],[84,-112]],[[22531,55800],[63,-84],[121,-285]],[[22715,55431],[0,0],[-16,-5]],[[22699,55426],[-26,-8],[-60,37],[-43,26]],[[22570,55481],[1,-6]],[[22571,55475],[3,-68],[0,0],[127,-64],[29,-55],[10,-20],[9,-36]],[[22749,55232],[23,-92],[26,-227]],[[22798,54913],[16,5]],[[22814,54918],[29,9],[14,-228],[-12,-42],[-17,-57],[-64,-9],[-93,55],[-123,263],[-61,131]],[[22487,55040],[-42,22]],[[22445,55062],[-56,30],[-23,32],[-27,37],[-14,0],[-14,-1],[0,0],[7,-58],[5,-39]],[[22323,55063],[74,-231],[95,-172]],[[22492,54660],[14,-56],[9,-33],[0,0],[-13,3],[-61,17],[-114,203],[-43,77],[0,0],[-19,92],[-50,247]],[[22215,55210],[102,112],[0,0],[-13,44],[-21,68],[-66,62],[-66,61],[0,0],[0,3],[-9,127]],[[22142,55687],[0,0],[39,4],[16,26],[5,8]],[[22202,55725],[-8,53],[0,0],[-64,113],[-19,-9],[-16,-8],[-31,108],[-14,244],[12,30],[11,-3],[11,-2],[100,-17],[24,-4],[105,-278]],[[22525,56561],[51,-75],[-79,-60],[-44,-33],[-261,-34],[-38,-5],[-126,102],[-90,40]],[[21938,56496],[10,-243],[-10,-64],[-21,-149],[-8,-28],[-7,-23],[-84,-90],[0,0],[-28,68],[-26,66],[0,0],[-14,151],[7,87],[6,68],[-1,22],[-6,96],[-64,173],[-9,106],[8,12],[31,48],[76,32],[30,13],[29,-21],[5,-4],[22,-70]],[[21884,56746],[33,-105]],[[21917,56641],[57,38],[-3,51],[0,0],[-35,110],[-29,32],[-41,45],[2,40],[10,6],[48,32],[94,-27],[0,0],[189,-59],[117,-94]],[[22326,56815],[56,-45],[143,-209]],[[21243,57141],[0,0],[-51,5],[-12,19]],[[21180,57165],[-67,102],[0,0],[38,76]],[[21151,57343],[1,39],[0,1],[0,0],[0,2],[0,18],[33,38],[10,12],[20,1],[8,0],[45,-57]],[[21268,57397],[158,-76],[22,-47],[39,-82],[100,-629]],[[21587,56563],[-3,-224],[-3,-193],[-17,-85],[0,0],[-107,164],[-42,114],[-31,82],[-1,27],[-2,23],[-61,96],[-54,84],[-43,24],[48,262],[-28,204]],[[12820,57838],[102,-57],[141,3],[95,2],[-53,-116]],[[13105,57670],[-21,-46],[0,0]],[[13084,57624],[21,-35],[40,-67]],[[13145,57522],[-14,-71]],[[13131,57451],[-23,-119],[-314,-145]],[[12794,57187],[42,-101],[28,-69],[0,0],[-135,-117],[-15,-5],[-18,-6],[-17,37],[-16,36],[0,8],[-1,32],[0,0],[52,101],[0,0],[-43,-27],[-100,-138],[-80,-171],[-73,-83],[-37,-43],[-82,2],[0,0],[60,128],[122,260]],[[12481,57031],[-4,10],[-5,12]],[[12472,57053],[-118,-147],[-128,-158],[0,0],[-85,164],[-139,271],[2,38],[2,34],[76,158],[179,144],[117,-16],[165,236],[248,-35]],[[12791,57742],[0,0],[5,20],[1,3],[-8,8]],[[12789,57773],[-90,108],[19,9],[4,2],[98,-54]],[[21886,57792],[23,-50],[0,0],[12,-42]],[[21921,57700],[48,-168],[-13,-38],[-1,-3],[0,0],[-54,91],[-65,177],[-48,131],[-50,37],[-5,4]],[[21733,57931],[0,0],[7,-72],[8,-77]],[[21748,57782],[165,-285],[5,-22],[25,-118],[2,-52],[1,-30],[0,0],[-40,-65],[0,0],[-27,-12],[-41,-19],[-188,-256],[-57,-4],[0,0],[-14,161],[34,286],[-145,710],[72,50],[0,0],[248,-120],[98,-214]],[[21245,58000],[186,-67],[0,0],[9,-29],[6,-20],[0,0],[-2,-67],[-34,-39]],[[21410,57778],[-100,51],[0,0]],[[21310,57829],[131,-177],[37,-175],[6,-70],[0,0],[-8,-27],[-6,-20],[0,0],[-104,0],[-185,167],[-43,38]],[[21138,57565],[-39,-38]],[[21099,57527],[-3,-4]],[[21096,57523],[23,-18],[26,-153],[-74,-88],[-68,28],[-55,75],[-48,118],[-69,172]],[[20831,57657],[-22,-11],[-64,73],[-75,84],[-8,119],[14,70],[354,183],[7,3],[58,-56],[22,-166],[0,0],[128,44]],[[12719,58020],[6,12],[62,67]],[[12787,58099],[138,92],[1,1],[0,0],[41,158],[180,171],[11,11],[0,0],[3,-2],[6,-4],[0,0],[-24,-91],[-35,-61],[0,0],[86,-79],[99,-92],[-7,-10]],[[13286,58193],[-65,-92]],[[13221,58101],[-220,-164],[-42,-31],[-55,-9],[-87,-13],[-35,12],[-109,38],[0,0],[46,86]],[[15389,59876],[85,94]],[[15474,59970],[180,280],[0,0],[6,-20]],[[15660,60230],[80,-44],[0,0],[-299,-452],[-39,-20],[-102,-54],[-43,15],[20,78],[112,123]],[[6806,60145],[23,-272]],[[6829,59873],[-39,-43]],[[6790,59830],[-44,-47],[-62,-39],[-123,-78],[-260,130],[-172,86],[-70,61],[-32,28],[-50,117],[-1,3],[20,10]],[[5996,60101],[40,22],[88,-6]],[[6124,60117],[131,59],[90,40]],[[6345,60216],[208,57]],[[6553,60273],[19,5],[3,7]],[[6575,60285],[15,28],[0,0],[22,-71]],[[6612,60242],[6,-19],[0,0]],[[6618,60223],[79,-2]],[[6697,60221],[36,-25],[73,-51],[0,0]],[[5233,63120],[25,-75],[-25,-9],[0,84]],[[4021,63549],[157,-51],[128,-42]],[[4306,63456],[1,0],[201,114]],[[4508,63570],[100,1],[9,0],[0,0],[94,-77],[20,-76],[114,-96]],[[4845,63322],[93,-46]],[[4938,63276],[63,-30],[198,-22]],[[5199,63224],[34,-104]],[[5233,63120],[0,-84],[-367,-128],[-2,0],[-313,295],[-199,94],[-120,9],[-66,-47],[-75,-54],[-31,1],[-31,1],[-93,44],[-23,32],[-10,14],[0,0],[-8,30],[-14,46],[1,4],[5,83],[33,108],[5,19],[3,8],[10,24],[39,8],[0,0],[3,-51]],[[3980,63576],[0,0],[27,-18],[14,-9]],[[0,68854],[163,-84]],[[163,68770],[72,17],[133,-71],[103,-55],[594,-427],[310,-187],[446,-271],[135,-58],[283,-237],[253,-302],[0,0],[-51,-32],[-15,-232],[0,0],[77,-437],[120,-186],[9,-13],[0,0],[17,0],[123,-1],[60,-78],[18,-23],[33,-4],[41,-6],[68,67],[0,0],[14,73],[-19,17],[-83,71],[-15,263],[-18,75],[-26,107],[-83,86],[-111,-8],[-65,-5],[-28,23],[0,0],[459,38],[961,-185],[75,-132],[53,-94],[262,-210],[336,-269],[29,-9],[94,-30],[0,0],[-4,-22],[-18,-99],[0,0],[-52,-12],[-67,-16],[-195,-168],[0,0],[35,-47],[-10,-145],[-36,-51],[-76,15],[-50,9],[-86,50],[-65,37],[0,0],[-17,-97],[-18,-99],[-249,-30],[-59,31],[-317,165],[-141,18],[-6,-9],[-4,-6],[0,0],[73,-32],[101,-45],[69,-94],[6,-7],[48,-91],[0,0],[72,-330],[0,0],[-16,-43],[-3,-6],[0,0],[-59,-61],[-62,-62],[-121,-27],[-111,-24],[-12,-11],[-19,-17],[31,-140],[77,-98],[72,-37],[73,-36],[63,-98],[-3,-24],[-71,-14],[-76,-14],[-59,25],[-23,-22],[-23,-21],[-5,-25],[-7,-31],[-118,-55],[-61,22],[-71,26],[-30,79],[-95,-45],[-159,89],[-36,94],[-107,139],[-333,138],[-205,32],[0,0],[-9,8],[-114,101],[-29,65],[-31,71],[-53,314],[-5,26],[-24,14],[-55,31],[-262,95],[-146,52],[-83,-8],[-100,-107],[-101,-28],[-346,-9],[-33,23],[-90,64],[-75,250],[8,190],[2,63],[0,0],[79,108],[0,0],[17,200],[-5,16],[-8,27],[-12,-3],[-12,-2],[-14,-29],[-86,-174],[-44,-26],[-6,-3],[0,0],[-60,6],[-49,85],[0,0],[-61,-17],[-229,-67],[-51,-182],[3,-51],[1,-30],[0,0],[11,-29],[41,-102],[7,-6],[122,-108],[51,-140],[0,0],[-140,-308],[-183,-158]],[[18,64925],[-18,-16]],[[1183,71135],[27,-42],[0,0],[-17,-49],[0,0],[-15,-16],[-50,-56],[-127,-62],[-37,-18],[-720,-136],[-36,13]],[[208,70769],[-208,76]],[[0,71398],[418,58]],[[418,71456],[0,0],[13,2],[0,0],[18,-2],[192,-18],[80,-24],[106,-32],[238,-198],[118,-49]],[[43319,15861],[0,0],[-130,1],[29,1114],[1,807]],[[43219,17783],[9,153],[39,30],[58,-68],[139,283],[87,270],[65,3]],[[55654,18021],[0,0],[-20,10],[-40,-11]],[[23782,55810],[0,0],[1,48],[2,48],[-48,114],[-183,131],[-118,85],[-308,183],[-117,50],[-70,30],[0,0],[-7,14],[-125,238],[-26,88],[-36,122],[-134,348],[-15,39],[-34,71],[-266,564],[-84,212],[-46,117],[-612,797],[-85,135],[-76,122],[0,0],[-1,89],[-6,8],[-36,51],[-172,175],[-169,-87],[-234,-121],[-20,-140],[-48,-165],[-13,-28],[-38,-82],[-298,-150],[-67,-9],[-78,-12],[-48,241],[-581,688],[-100,57],[-76,98],[59,263],[-7,0],[-287,-17],[-63,-70],[-338,-42],[-222,83],[0,0]],[[53712,44992],[-2,7],[-28,81],[-20,8],[-24,11],[-14,-16],[-9,-10],[-89,136],[-1,93],[-1,216],[-150,168],[11,377],[-6,921],[-189,264],[-48,25],[-292,-177],[-68,78],[2,119],[1,47],[-69,27],[-17,6],[-368,-763],[-108,-402],[-44,-435],[-7,-26],[-26,-94],[-140,-280],[0,0],[-18,-14],[-165,-131],[-113,-123],[-61,-67],[-30,-88],[-42,-20],[-1164,-16],[-379,20],[-83,-50],[-100,-87],[-31,-27],[-340,-464],[-213,-292],[-93,-251],[-230,-209],[-748,-2],[-243,-181],[46,-194],[12,-47],[17,-70],[6,-47],[23,-184],[12,-87],[-443,-351],[-193,-108],[-453,-152],[-265,-257],[-273,-264],[-80,-6],[-53,-3],[-187,177],[0,0],[-15,60],[-33,126],[11,198],[15,46],[8,24],[0,0],[0,0],[5,3],[7,3],[77,44],[27,54],[173,341],[45,271],[5,28],[29,175],[87,361],[-99,914],[-90,830],[-157,149],[-191,180],[-87,329],[-66,108],[-5,0],[-110,10],[-42,69],[-112,187],[-63,68],[-53,57],[-20,22],[-39,42],[-136,149],[-27,148],[-6,29],[-156,138],[-672,587],[-841,689],[-17,-7],[-130,-54],[-125,-107],[-145,-125],[-161,-8],[-27,-1],[-96,-5],[-162,112],[-223,-7],[-45,69],[-44,68],[-11,-9],[-192,-152],[-126,-22],[-150,152],[-217,79],[-83,84],[-64,106],[-39,64],[-73,37],[-91,46],[-63,10],[-40,7],[-83,-43],[-11,-26],[-3,-6],[-86,-12],[-81,-11],[-80,94],[-290,79],[-49,60],[3,106],[-77,439],[-45,40],[-90,6],[-4,-151],[-7,-219],[0,0],[-3330,0],[-9802,3],[0,0]],[[46353,9555],[0,0],[-17,-42],[-126,-12],[-33,-43],[0,-275],[27,-502],[-11,-656],[0,0]],[[44864,11059],[0,0],[69,118],[324,-227],[89,114],[158,-134],[57,-75],[3,-51],[136,-112],[30,5],[101,107],[-3,107],[0,0]],[[51493,17999],[0,0],[11,64],[-15,272],[-114,255],[96,20],[32,78],[40,507],[-50,472]],[[64223,60198],[0,-130]],[[64223,81631],[0,-21255]],[[64223,82622],[0,-168]],[[64223,82799],[0,-44]],[[64223,83003],[0,-153]],[[64223,82357],[0,-247]],[[64223,82034],[0,-122]],[[43657,15696],[0,0],[-204,-364],[-125,-180],[-109,-114],[-35,-178],[-13,-320],[-49,-146]],[[43122,14394],[-106,-22],[-121,-336],[-118,-187],[-26,-129],[0,0]],[[41754,14510],[0,0],[37,118],[26,356],[-53,249],[228,812],[613,0],[5,22],[2,328],[-207,388],[-264,395],[204,42],[0,563],[874,0]],[[46071,14968],[-75,7],[-107,-53],[-187,-185],[-285,-117],[-57,26],[-78,156],[-39,-14],[-59,-107],[-58,-171],[-34,-154],[10,-47],[-265,-456],[-39,-4],[-53,69],[-143,-46],[-154,-101],[-83,-283],[-23,-218],[-63,-150],[-67,-141],[-116,-15]],[[43855,13383],[44,38],[3,327],[-169,198],[-208,-52],[-238,349],[-165,151]],[[31076,32394],[0,0],[750,-489],[953,-623],[1369,-6],[5,417],[0,0],[41,22],[21,11],[98,0],[640,0],[20,-11],[17,-10],[13,-12],[20,-19],[30,-93],[127,-242],[241,-411],[75,-89],[84,-98],[143,-215],[91,-419],[12,-53],[17,-219],[69,-246],[0,0],[219,-315],[105,-99],[223,-209],[87,-37],[35,34],[98,193],[0,0],[0,0],[44,300],[66,230],[222,99],[10,-2],[278,-65],[138,-147],[110,-176],[87,-139],[70,-142],[29,-57],[160,-701],[220,-555],[43,-75],[81,-139],[30,-105],[35,-118],[20,-389],[186,-621],[66,-26],[30,-11],[59,-55],[162,-151],[80,-49]],[[48824,8660],[0,0],[8,-349],[90,-357],[-96,-144],[-117,-272],[-86,-71],[-48,-259],[0,0]],[[11586,19014],[37,-23],[285,328],[71,124]],[[11980,19463],[3,28],[-44,103]],[[11634,20091],[-146,141],[-13,-13]],[[11465,20175],[-2,-15],[10,-90],[19,-54]],[[11421,20708],[-4,46],[-114,144],[-58,-4],[-110,99],[-23,-22]],[[11095,20905],[-5,-59],[79,-182]],[[11230,20544],[10,-7],[93,43]],[[11419,20665],[4,5]],[[10797,21057],[58,-13]],[[10569,21373],[0,0],[-29,58],[-16,105],[-49,136]],[[10350,21553],[-18,-17]],[[10408,21285],[1,-1]],[[10606,21245],[23,9]],[[9795,21855],[38,65],[2,13]],[[9843,22131],[-1,12],[-31,35]],[[9804,22185],[-43,-3]],[[9711,22178],[-69,-84],[-26,-115]],[[9661,21916],[45,-61],[61,-20]],[[46096,42209],[3,-3],[10,-8]],[[46109,42198],[-13,-60],[-6,-95],[4,-49],[22,-20],[60,-44],[48,-9],[69,38],[21,2],[20,-12],[17,-26],[27,-67],[7,12],[3,60],[13,53],[24,45],[48,55],[72,65],[55,34],[51,12],[4,10],[26,36],[4,-7],[-10,-34],[0,-17],[10,1],[12,37],[15,73],[38,78],[111,144],[43,39],[73,24],[101,9],[101,-20],[100,-47],[69,-22],[36,4],[144,-31],[15,8],[-20,17],[-95,18],[-30,18],[-38,-3],[-2,9],[26,62],[15,7],[19,24],[19,32],[31,35],[57,28],[84,20],[84,36],[23,3],[18,-11],[32,4],[99,26],[58,0],[42,-8],[25,-15],[31,5],[38,30],[20,15],[6,17],[-12,27],[-26,34],[-4,5],[-14,31],[3,22],[-4,20],[-15,29],[4,13]],[[48017,43027],[16,-7]],[[48033,43020],[59,-28],[6,-13],[-2,-24],[-12,-36],[3,-49],[15,-63],[7,-49],[-3,-37],[-19,-35],[-36,-33],[-32,-51],[-30,-68],[-40,-56],[-51,-44],[-48,-55],[-45,-65],[-92,-91]],[[47713,42223],[-177,-154]],[[47536,42069],[-23,-18],[-20,-19],[-40,-33],[-40,-35]],[[47413,41964],[-254,-147]],[[47159,41817],[-171,-123],[-104,-99],[-90,-122],[-41,-38],[-45,-10],[-71,7],[-74,-15],[-76,-36],[-50,-29],[-23,-23],[-21,-6],[-21,8],[-57,60],[-4,-4],[-10,-9],[-33,10],[-38,2],[-33,-22],[-32,-4],[-33,15],[27,21],[129,46],[-1,8],[-47,26],[-14,24],[-12,-2],[-9,-28],[-17,-12],[-25,4],[-25,21],[-25,38],[-83,61],[-23,31],[-29,21],[-43,11],[-7,17]],[[45928,41666],[8,24]],[[45936,41690],[37,114],[22,43],[9,12],[12,-1],[5,12],[-2,24],[5,15],[24,41],[13,22],[-5,35],[6,62],[16,82],[18,58]],[[48053,42913],[14,-3],[15,34],[7,20],[-1,11],[-34,10],[-12,-12],[-2,-13],[-1,-14],[4,-22],[3,-3],[7,-8]],[[46318,41671],[5,24],[-8,44],[-5,12],[-10,-21],[-5,-49],[0,-21],[23,11]],[[39784,50637],[6,-38],[31,-67],[-46,4],[-29,27],[-43,72],[-11,-32],[-11,-32],[-3,-64],[-6,-47],[15,-84],[-9,-26],[-42,-44],[-37,0],[-50,21],[-31,42],[-15,109],[-7,73],[-3,40],[13,114],[1,46],[-6,84],[14,132],[5,22],[41,46],[4,29],[28,63],[38,35],[32,69],[-2,18],[-37,21],[-8,2],[-87,-160],[-14,-13],[-20,12],[-1,46],[32,81],[82,222],[3,39],[-7,19],[-16,-1],[-6,14],[-10,51],[-4,34],[-8,12],[-18,2],[-88,-59],[-19,-23],[-10,-35],[1,-71],[-8,-34],[-37,-52],[-16,-6],[-11,47],[-6,102],[5,92],[18,81],[-5,99],[-27,116],[-23,58],[-43,-13],[-24,-26],[-25,-76],[-11,-1],[-13,64],[35,73],[15,47],[-1,25],[-16,3],[-71,1],[-30,-2],[-15,-26],[22,-21],[-4,-43],[-27,-130],[-14,-25],[-67,37],[-35,55],[-4,70],[-12,48],[-33,62],[-1,48],[-22,70],[-114,101],[-12,34],[-8,70],[-40,71],[-121,168],[-9,41],[3,17],[-36,73],[-3,44],[4,15],[58,49],[129,53],[20,26],[-31,21],[-82,18],[-47,-6],[-51,-16],[-42,-13],[-28,25],[-65,102],[-20,10],[-5,25],[18,142],[55,128],[21,76],[23,120],[5,41],[-9,36],[34,113],[57,30],[38,-20],[56,-35],[75,10],[74,-18],[138,-124],[22,-15],[26,5],[4,38],[-83,85],[-61,51],[-28,38],[-18,53],[1,52],[21,52],[38,148],[73,192],[8,2],[34,-37],[0,-23],[-28,-30],[4,-6],[66,1],[11,-17],[-21,-34],[-104,-64],[-42,-122],[-20,-54],[10,-32],[62,-62],[8,8],[6,38],[15,24],[29,27],[61,13],[37,39],[3,-20],[-16,-47],[-100,-34],[-3,-10],[19,-79],[50,-154],[6,-41],[-4,-54],[18,-59],[40,-67],[26,-114],[34,-109],[50,-90],[18,-82],[41,-92],[2,-21],[-14,-25],[-22,-16],[12,-86],[31,-94],[64,-111],[41,-195],[20,-65],[32,-143],[-2,-12],[-6,-53],[16,-71],[13,-56],[47,-84],[12,-51],[-9,-49],[4,-26],[36,-12],[30,-40],[8,-24],[-8,-17],[-24,-11],[16,-58],[58,-108],[24,-66],[2,-54],[24,-63],[72,-104],[26,-57],[1,-43],[-24,-29],[-5,-27],[-22,-65],[-4,-67],[17,-162],[5,-97],[-7,-31]],[[39039,52223],[24,39],[-27,173],[-24,11],[-24,-82],[1,-62],[31,-82],[19,3]],[[39660,51055],[16,40],[-52,11],[-14,-62],[-21,-45],[-28,-26],[-2,-39],[39,-17],[39,31],[23,107]],[[33766,62692],[49,-19],[-4,-19],[-12,-16],[-19,-13],[3,-27],[-10,-22],[-116,-93],[-20,5],[14,55],[-18,60],[-45,22],[-140,38],[-27,20],[-94,17],[-161,12],[-88,2],[-14,-9],[-50,12],[-28,-3],[-19,-19],[-26,-46],[-100,-37],[-144,-65],[-12,-27],[11,-18],[207,49],[143,-6],[10,10],[50,16],[260,-12],[45,-6],[16,-18],[-48,-42],[-58,-31],[-68,-19],[-41,-3],[-36,17],[-32,-2],[-60,-27],[-47,-4],[-99,8],[-8,-8],[46,-22],[17,-34],[-17,-62],[-10,-24],[-22,-9],[-95,16],[-53,-22],[-19,-23],[-64,-56],[-28,-21],[-4,-23],[-2,-24],[-39,-41],[-94,-63],[-2,-31],[-21,-27],[-1,-12],[61,6],[3,-16],[-56,-99],[-106,-92],[-117,-121],[-55,-91],[-2,-21],[-57,-48],[-165,-113],[-103,-53],[-37,-20],[-15,15],[5,21],[-8,23],[-40,35],[-27,-18],[-100,-21],[-19,-29],[-55,-38],[-42,-43],[-35,-34],[-11,-25],[-2,-30],[10,-32],[-4,-25],[-18,-17],[2,-8],[36,-6],[7,-12],[2,-40],[-16,-33],[-31,-45],[-49,-31],[-67,-17],[-54,3],[-41,24],[-79,-18],[-116,-59],[-69,-22],[-22,16],[-66,-13],[-200,-65],[-67,-7],[-129,19],[-63,-9],[-86,20],[-175,85],[-36,41],[-13,35],[-39,-12],[-25,4],[-27,17],[-176,13],[-65,23],[-25,23],[-76,97],[-32,46],[-24,18],[-35,26],[-18,23],[20,-1],[73,-39],[127,-77],[66,-41],[41,20],[89,37],[26,18],[6,17],[-34,56],[6,24],[10,8],[81,-6],[40,-15],[28,-24],[40,-12],[80,-6],[37,-38],[81,-45],[5,9],[-7,25],[-16,17],[4,10],[52,39],[6,18],[-22,25],[-51,32],[-13,22],[39,25],[18,17],[18,-14],[26,2],[52,29],[3,10],[-16,18],[-3,13],[3,30],[17,57],[14,39],[10,34],[42,46],[2,35],[4,18],[23,16],[82,22],[58,-6],[8,-16],[4,-14],[13,-6],[126,30],[25,1],[59,44],[35,45],[6,12],[-8,54],[-8,12],[-27,2],[-17,19],[-9,38],[-33,38],[-44,23],[-43,44],[-10,20],[7,26],[0,8],[-3,21],[-58,69],[-20,4],[-39,-10],[-8,17],[23,44],[2,30],[-17,16],[-9,26],[1,37],[6,32],[11,27],[-8,15],[-39,-2],[-157,5],[-27,54],[-17,26],[-8,34],[-27,34],[-60,48],[-21,44],[15,40],[44,-2],[71,-43],[12,-24],[-8,-29],[15,-8],[25,4],[182,-56],[20,-16],[14,-22],[7,-27],[18,-23],[27,-21],[98,-32],[63,-54],[26,-36],[42,-17],[90,14],[31,16],[10,19],[14,8],[18,-3],[27,-27],[1,-13],[-11,-46],[11,-14],[33,-34],[9,-2],[24,7],[30,-15],[62,-63],[15,-30],[50,-72],[86,-84],[39,-5],[88,-9],[92,24],[37,-11],[15,26],[39,29],[8,-3],[7,-33],[173,37],[108,60],[104,95],[57,60],[87,78],[38,52],[27,76],[24,45],[20,14],[18,40],[17,65],[40,61],[64,58],[85,56],[194,91],[70,18],[223,7],[35,-8],[44,-20],[88,-13],[32,-15],[138,-29],[78,-20],[66,-18],[11,-22]],[[32471,61968],[37,42],[-19,8],[-58,-18],[-75,-83],[-41,-56],[-111,-58],[-104,-41],[-82,-7],[-85,-28],[-46,-8],[-18,-23],[43,-46],[78,1],[7,-43],[5,-71],[19,-44],[45,-22],[67,22],[59,44],[39,106],[53,81],[100,79],[67,86],[20,79]],[[49577,44403],[5,-25],[-7,-29],[-20,-33],[-193,-213],[-54,-77],[20,-44],[2,-19],[12,3],[39,37],[12,-4],[6,-10],[3,-24],[-18,-42],[8,-9],[35,9],[15,-5],[-13,-31],[-18,-21],[-3,-19],[-27,-53],[-11,-10],[-7,7],[2,23],[-25,-25],[-2,-20],[15,-20],[11,-30],[8,-41],[4,-87],[5,-18],[2,-8],[-3,-10],[-2,-20],[5,-19],[-4,-21],[-14,-24],[-27,-13],[-41,-2],[-46,-28],[-51,-53],[-35,-49],[-19,-44],[-14,-18],[-9,7],[-69,-36],[-24,-24],[-6,-22],[-7,-4],[-6,13],[-49,11],[-91,7],[-71,-7],[-52,-21],[-45,12],[-40,44],[-62,34],[-160,38],[-135,-8],[-110,-26],[-173,-76]],[[48023,43206],[-27,-15],[-49,-28]],[[47947,43163],[-37,-34],[-22,-10],[-31,11],[-60,1],[-52,25],[-43,18],[-21,48],[-1,19],[56,133],[22,60],[7,38],[13,27],[33,33],[9,24],[16,12],[24,-2],[44,44],[66,90],[49,55],[35,20],[93,21],[59,26],[42,10],[25,-7],[39,11],[53,28],[70,21],[89,14],[57,15],[24,16],[49,-1],[9,24],[12,12],[47,-7],[17,-14],[2,-10],[-11,-7],[6,-17],[25,-28],[39,-8],[45,17],[32,-7],[-8,-12],[-17,0],[-2,-6],[12,-23],[11,-1],[36,25],[3,-10],[-17,-37],[6,-24],[27,-10],[46,17],[57,47],[26,13],[4,22],[-18,0],[-49,-9],[-14,-13],[-1,9],[9,35],[45,51],[20,30],[12,31],[-13,0],[-38,-33],[-33,-18],[-30,-2],[-7,33],[16,69],[-15,24],[-74,-34],[-9,-12],[0,-9],[8,-7],[-1,-6],[-10,-6],[-17,6],[0,15],[8,23],[-9,10],[-22,-7],[-31,-15],[-67,-46],[1,10],[17,29],[71,37],[35,18],[22,-3],[13,13],[13,0],[10,-13],[26,5],[43,24],[18,-8],[-6,-40],[11,-4],[28,34],[18,11],[8,-10],[-59,-54],[-17,-27],[-3,-15],[10,-20],[24,3],[97,108],[47,35],[47,21],[47,5],[39,19],[32,32],[135,72],[42,33],[13,11],[53,79],[12,5]],[[49568,44414],[9,-11]],[[49148,44057],[23,44],[-1,18],[-56,-27],[-19,-17],[-5,-16],[11,-9],[27,-4],[20,11]],[[49345,43928],[-1,-21],[7,3],[14,28],[1,10],[-14,-6],[-7,-14]],[[49363,44152],[4,21],[-24,-7],[-24,-7],[-48,-13],[-10,-24],[-15,-24],[-4,-17],[7,-9],[1,-11],[-5,-14],[7,-3],[22,-3],[28,35],[6,19],[11,32],[44,25]],[[49437,44214],[3,11],[-19,0],[-2,0],[-13,-14],[-2,-9],[0,-2],[4,-11],[15,8],[14,17]],[[29570,66303],[79,32],[64,27],[13,-23],[-17,-36],[-30,-39],[-9,-19],[-20,-30],[0,-36],[-3,-47],[-23,-27],[-25,-19],[-15,-20],[-28,-37],[-24,-11],[-31,-33],[8,-22],[30,-17],[-8,-23],[-71,-7],[-20,-26],[-9,-48],[-31,-57],[-5,-49],[25,-25],[45,0],[90,16],[13,-7],[-26,-40],[-1,-36],[-19,-41],[-43,-30],[-54,-11],[-56,-12],[-54,-6],[-4,16],[-32,4],[-55,-40],[-69,50],[-57,61],[-52,29],[-158,12],[-109,-3],[-54,-11],[-41,-30],[3,-38],[-92,-72],[-39,-24],[-7,-31],[108,-94],[105,-84],[15,-41],[-22,-23],[-77,-2],[-80,-17],[-50,-58],[-50,-64],[-30,-27],[-146,-103],[-188,-117],[-43,-20],[-58,-36],[-28,-38],[-47,-35],[-65,7],[-49,46],[-5,54],[40,35],[37,5],[50,19],[60,11],[40,35],[6,43],[210,207],[69,122],[18,97],[-8,49],[-39,27],[-94,21],[-150,-53],[-97,-57],[-88,-61],[-86,-70],[1,-22],[-11,-45],[-17,-68],[-3,-53],[-2,-48],[0,-34],[-23,-20],[-30,-13],[-20,-23],[-76,-42],[-53,-34],[-246,62],[-159,45],[-228,45],[-36,2],[-12,36],[13,33],[48,15],[74,16],[160,62],[40,64],[-1,66],[-56,79],[48,44],[94,57],[102,68],[80,96],[20,64],[-174,126],[-9,43],[77,21],[152,-31],[141,-28],[141,9],[86,44],[21,53],[-14,38],[-121,30],[-77,56],[-197,55],[-155,17],[-147,0],[-129,4],[-2,-34],[13,-48],[-23,-47],[-24,-25],[-3,-28],[-9,-19],[-18,11],[-21,39],[-94,32],[-82,4],[-96,-14],[-133,5],[-100,27],[-114,-5],[-43,-43],[8,-54],[-8,-40],[-25,-9],[-16,19],[-27,14],[-25,-44],[-15,-54],[-39,25],[-30,44],[-28,47],[-33,100],[13,90],[122,32],[103,-6],[31,2],[57,33],[402,118],[182,90],[15,-6],[1,-28],[26,-10],[49,21],[67,39],[151,27],[2,39],[53,-1],[32,-15],[173,53],[178,72],[37,10],[35,21],[106,93],[257,74],[48,23],[175,48],[58,23],[107,28],[44,-25],[14,-14],[40,2],[108,-26],[111,-33],[54,-24],[-74,-80],[-150,-83],[-92,-49],[-110,-35],[-44,-7],[-5,-21],[-16,-33],[-38,-32],[-58,-31],[-4,-10],[12,-34],[-5,-23],[-41,-14],[-32,-34],[16,-27],[102,-4],[102,-11],[26,-24],[92,-29],[22,-16],[61,-4],[34,9],[15,22],[183,-12],[166,5],[72,17],[128,51],[43,61],[26,55],[89,86],[79,37],[53,21],[14,-1],[7,-17],[-8,-20],[4,-26],[-20,-44],[-51,-64],[-12,-26],[2,-23],[9,-14]],[[46096,42209],[11,22],[1,1],[7,13],[23,25],[43,28],[11,19],[9,47],[6,77],[14,49],[21,21],[6,24],[-10,26],[9,26],[26,25],[21,7],[18,-10],[8,-26],[1,-55],[0,-11],[-4,-20]],[[46317,42497],[-3,-17]],[[46314,42480],[6,-15],[10,-18],[62,-25],[14,-4],[10,2],[6,-25],[2,-61],[-6,-45],[-17,-27],[-25,-17],[-35,-8],[-132,21],[-50,-8],[-20,-15],[-16,-15],[-14,-22]],[[47273,26838],[-18,-61],[-21,-84],[-15,-44],[-19,-7],[-21,16],[-15,16],[-17,29],[-18,58],[-22,46],[-23,20],[-21,41],[-5,39],[13,35],[27,42],[27,43],[34,71],[31,35],[22,0],[22,-50],[11,-22],[9,-24],[7,-33],[8,-45],[8,-59],[-4,-62]],[[45282,11240],[11,-54],[5,-49],[6,-40],[-16,-52],[-19,-16],[-26,-14],[-21,16],[-31,6],[-49,23],[-72,43],[-72,51],[-50,41],[-32,35],[-27,33],[-20,33],[-17,36],[-17,53],[-20,77],[-18,80],[-9,63],[-5,38],[-6,19],[-6,8],[-5,11],[-1,18],[0,25],[0,49],[-3,79],[-3,79],[1,50],[8,32],[11,63],[18,11],[17,-2],[23,-13],[35,-30],[42,-48],[36,-57],[34,-57],[38,-46],[49,-73],[60,-119],[59,-137],[44,-112],[28,-84],[20,-69]],[[38368,53102],[9,-40],[-19,-9],[-9,-19],[-3,-31],[0,-15],[-4,-11],[-6,-9],[-10,-7],[-10,-5],[-14,0],[-15,4],[-10,11],[0,15],[1,14],[-7,8],[-8,7],[-4,12],[-5,17],[-8,22],[-9,17],[-7,8],[-3,-5],[0,-13],[-1,-15],[-5,-10],[-13,-4],[-22,-1],[-32,-3],[-37,-34],[-45,-5],[-37,19],[-37,14],[-35,21],[-35,33],[-35,46],[-31,39],[-27,18],[-35,19],[-49,40],[-30,27],[-30,27],[-6,7],[-28,18],[-16,22],[-7,22],[5,18],[13,13],[36,2],[34,-4],[31,-4],[18,2],[5,10],[0,11],[-6,16],[-12,20],[-1,14],[20,3],[39,5],[57,6],[32,10],[4,48],[-5,28],[-14,43],[-14,46],[-23,32],[8,32],[40,42],[-8,34],[-22,-7],[-38,4],[-12,10],[-4,12],[11,32],[46,5],[27,4],[13,15],[1,16],[-1,18],[-1,23],[1,30],[-2,38],[-10,42],[-11,36],[-3,25],[4,13],[7,7],[12,0],[15,-8],[16,-3],[13,11],[12,18],[13,12],[20,-6],[28,-27],[33,-26],[32,-5],[21,4],[6,-6],[-28,-32],[-61,-56],[-58,-55],[-23,-28],[9,-6],[14,-5],[19,-10],[16,-22],[5,-30],[-9,-31],[-13,-27],[-5,-22],[5,-15],[11,-9],[27,9],[47,29],[56,51],[51,63],[37,45],[20,9],[6,-16],[1,-17],[-7,-22],[-15,-30],[-19,-41],[-19,-48],[-22,-34],[-28,-8],[-23,4],[-12,-4],[-3,-17],[-1,-26],[-5,-24],[-13,-13],[-19,-12],[-19,-21],[-20,-20],[-24,-8],[-21,-6],[-14,-16],[-7,-18],[-2,-14],[16,-21],[39,-34],[40,-44],[20,-41],[8,-35],[10,-26],[5,-23],[-4,-26],[-5,-27],[3,-22],[8,-22],[5,-22],[4,-20],[6,-13],[10,-7],[16,-3],[19,8],[19,20],[31,25],[50,22],[46,12],[26,5],[8,-9],[4,-17],[2,-26],[1,-28],[14,-34],[13,-24]],[[32362,40927],[11,-34],[-5,-26],[-44,-40],[-21,-21],[-44,-111],[-37,-29],[-31,-41],[-18,2],[-11,56],[-20,58],[-5,60],[-15,68],[-7,-6],[-7,-19],[-7,-40],[-11,-39],[-17,9],[-24,79],[-28,53],[-18,38],[-11,40],[-8,55],[-9,59],[-13,51],[-15,37],[-17,28],[-17,39],[-21,49],[-11,50],[-6,62],[-1,44],[2,26],[-1,16],[-5,6],[-3,15],[7,15],[16,2],[27,23],[31,20],[21,10],[14,-1],[13,-7],[11,-22],[6,-34],[-13,-40],[-2,-26],[15,-41],[20,-30],[29,-34],[24,-1],[13,-10],[7,-39],[11,-73],[15,-62],[9,-27],[7,-2],[8,0],[8,5],[6,10],[5,16],[-7,76],[-3,61],[-7,47],[6,15],[8,10],[21,-15],[18,-33],[23,-17],[34,4],[38,12],[13,-9],[0,-11],[-6,-41],[-18,-12],[-31,6],[-29,4],[-14,-13],[-8,-16],[-8,-34],[9,-14],[20,-46],[15,-30],[14,-29],[14,-29],[33,-69],[52,-63]],[[32268,40801],[7,80],[-20,100],[-18,14],[-13,-12],[6,-37],[1,-56],[16,-40],[21,-49]],[[45307,45709],[-5,2],[-16,-19],[-28,-7],[-41,7],[-14,-8],[12,-24],[-10,-37],[-34,-50],[-19,-51],[-5,-52],[5,-46],[16,-40],[23,-26],[30,-12],[6,-16],[-17,-20],[-32,-12],[-45,-2],[-45,-23],[-46,-41],[-27,-38],[-7,-33],[-1,-48],[5,-117],[-3,-45],[-20,-84],[-26,-108],[-30,-69],[-6,10],[5,33],[25,109],[4,46],[-2,24],[-9,3],[-10,-21],[-11,-45],[-3,-24],[7,-4],[-5,-30],[-16,-57],[-14,-12],[-12,34],[1,44],[19,88],[-7,17],[12,55],[5,40],[-6,41],[4,38],[15,35],[-4,10],[-24,-13],[-35,-65],[-45,-116],[-35,-50],[-25,14],[-20,-9],[-16,-34],[-16,-17],[-18,0],[-11,-40],[-4,-81],[-18,-47],[-53,-27],[-10,-21],[-1,-31],[9,-39],[0,-78],[-8,-117],[-18,-103],[-27,-88],[-29,-73],[-50,-96],[-1,-19],[25,-74],[10,-56],[5,-111],[-1,-19],[-48,-137],[-1,-19],[51,-230],[45,-165],[6,-18],[13,-66],[25,-129],[13,-128],[1,-127],[-6,-123],[-13,-118],[-19,-114],[-25,-108],[-27,-85],[-53,-141],[-26,-95],[-28,-76],[-28,-58],[-50,-65]],[[44339,41712],[-131,-119]],[[44208,41593],[-41,-23],[-45,-8],[-49,5],[-27,14],[-6,22],[-10,2],[-14,14],[-18,26]],[[43998,41645],[-20,45]],[[43978,41690],[-22,93],[-23,141],[-21,84],[-18,27],[-16,42],[-15,57],[-7,130]],[[43856,42264],[0,201]],[[43856,42465],[5,138],[10,72],[-3,56],[-15,39],[-9,47],[-4,58],[-8,39],[-12,20],[-3,29],[7,36],[0,26],[-6,13],[-2,21],[4,27],[-6,80],[1,49],[9,53],[27,96],[8,47],[3,48],[12,60],[36,125],[0,29],[-12,56],[-2,42],[2,56],[11,69],[20,83],[26,65],[33,50],[11,56],[-12,62],[5,93],[19,122],[22,92],[24,62],[16,58],[9,55],[-4,25],[-18,26],[-17,39],[-29,8],[-36,-25],[-5,2],[-18,-4],[-34,-56],[-31,-98],[-22,-41],[-30,-27],[-23,-31],[-14,-34],[-20,-7],[-23,19],[-5,47],[15,74],[22,71],[45,117],[1,27],[12,35],[69,50],[27,39],[9,50]],[[43953,45000],[3,75]],[[43956,45075],[4,20],[11,9],[31,62],[51,116],[46,119],[41,123],[29,69],[19,16],[14,37],[22,115],[16,52],[11,21],[5,-13],[-10,-63],[0,-52],[9,-66],[17,-23],[26,21],[22,43],[18,67],[22,28],[24,-12],[20,5],[16,20],[30,10],[6,-26],[-4,-50],[-9,-25],[-16,2],[-18,-27],[-20,-55],[1,-44],[22,-33],[10,-1],[0,29],[10,29],[32,54],[3,18],[61,47],[23,30],[6,35],[32,71],[30,23],[41,9],[39,-6],[39,-22],[21,0],[5,23],[33,16],[60,8],[44,33],[29,57],[36,29],[44,2],[60,-21],[76,-42],[61,-57],[81,-114],[22,-12]],[[45310,45779],[-3,-70]],[[44960,45677],[-22,15],[-17,-38],[-16,-81],[-2,-47],[12,-12],[17,5],[20,22],[8,39],[-5,87],[5,10]],[[44693,45074],[-3,-10],[10,-43],[11,-14],[13,-1],[6,14],[-2,29],[-9,19],[-26,6]],[[44278,45332],[-6,11],[-14,-57],[10,-23],[26,-3],[14,10],[3,42],[-3,14],[-8,5],[-22,1]],[[44219,45220],[-18,-23],[-17,-55],[-21,-35],[-26,-15],[-18,-36],[-9,-57],[-18,-50],[-38,-77],[-3,-21],[2,-30],[8,-39],[13,-25],[18,-12],[17,8],[44,87],[4,19],[-5,9],[6,33],[17,58],[13,27],[9,-1],[8,11],[9,24],[-1,23],[-11,20],[0,9],[13,-4],[5,22],[-3,45],[6,19],[15,-8],[8,13],[3,34],[-9,20],[-21,7]],[[45506,46446],[-7,-26]],[[45499,46420],[-13,-3],[-1,0],[-17,-11],[-21,-27],[-29,-28],[-30,7],[-20,40],[-30,8],[-39,-22],[-34,1],[-30,24],[-57,12],[-7,18],[1,19],[9,20],[5,48],[1,75],[8,53],[14,31],[-22,13],[-59,-5],[-68,-26],[-76,-46],[-83,-16],[-90,14],[-67,-2],[-76,-23],[-13,8],[-47,-31],[-81,-68],[-61,-63],[-51,-72],[-8,0],[-12,15],[-25,22],[-28,1],[-29,-21],[-29,14],[-30,46],[-28,13],[-24,-20],[-41,-9],[-89,11],[-9,15],[-8,50],[-10,22],[-17,15],[-28,56],[-61,143],[-17,17],[-49,44],[-48,20],[-120,28],[-26,20],[-15,-4],[-79,-77],[-4,-17],[-5,-16],[-12,-27],[-11,-13],[-6,13],[-7,22],[1,50],[9,76],[-5,50],[-18,23],[-8,27],[3,33],[-14,26],[-29,19],[-13,26],[2,32],[-3,21],[-8,12],[-31,-25],[-54,-61],[-37,-55],[-19,-48],[-29,-27],[-39,-6],[-31,-21],[-54,-70],[-41,-37],[-67,-26],[-95,-17],[-78,-46],[-63,-74],[-77,-64],[-89,-51]],[[42653,46518],[-61,-19]],[[42592,46499],[-32,15],[-38,32],[-57,58],[-9,-6],[5,-11],[-1,-10],[-11,-17],[-73,-42],[-10,16],[28,58],[10,44],[0,39],[12,50],[25,58],[9,39],[-7,21],[-27,34],[-22,2],[-29,-11],[-86,-86],[-9,7],[-27,14],[-7,-3],[-66,-75],[-68,-44],[-160,-64],[-40,-8],[-32,5],[-41,37],[-16,26]],[[41813,46677],[1,27]],[[41814,46704],[19,29],[200,231],[123,165],[204,308],[53,61],[118,103],[190,98],[94,55],[82,60],[52,45],[22,32],[19,15],[13,-2]],[[43003,47904],[16,12]],[[43019,47916],[12,9],[46,80],[5,6],[45,22],[14,38],[9,45],[21,76],[15,31],[3,34],[-7,37],[2,35],[12,33],[54,47],[148,85],[5,-10],[-25,-66],[-28,-125],[-10,-3],[-9,-15],[-8,-28],[21,2],[50,31],[23,16],[6,30],[8,62],[11,34],[14,6],[9,30],[4,52],[11,31],[18,10],[7,18],[-1,26],[5,69],[3,33],[16,47],[21,15],[30,-3],[20,-24],[11,-45],[3,-37],[-5,-30],[-29,-53],[-82,-127],[-8,-36],[7,-18],[5,-28],[9,-3],[18,24],[8,21],[-2,18],[6,24],[16,30],[12,9],[9,-12],[14,5],[21,22],[37,11],[7,1],[45,86],[14,50],[0,43],[-18,45],[-37,46],[-11,50],[0,25],[-8,31],[8,12],[22,-8],[19,4],[16,17],[28,3],[22,-3],[27,-40],[98,-38],[36,-21],[44,-21],[11,-7],[8,-23],[16,-9],[26,3],[27,-7],[45,-36],[42,-23],[66,3],[36,10],[58,-17],[32,1],[33,28],[28,7],[23,-13],[11,-17],[19,-25],[58,12],[13,-7],[17,-27],[3,-17],[9,-26],[22,-51],[5,-18],[15,-21],[12,-49],[9,-78],[11,-47],[11,-18],[5,-20],[11,-81],[26,-94],[39,-91],[51,-89],[65,-59],[78,-30],[69,-6],[60,16],[80,9],[100,1],[52,-10],[4,-22],[-10,-32],[-23,-41],[-2,-27],[-1,-36],[-18,-46],[-10,-28],[3,-20],[-5,-26],[-14,-33],[8,-44],[29,-55],[36,-44],[43,-34],[26,-35],[11,-36],[12,-20],[13,-3],[11,-17],[11,-30],[-11,-53],[-34,-76],[-15,-49],[4,-22],[-28,-83],[-2,-33],[12,-22],[45,-33],[14,-26],[12,-4],[9,19],[18,8],[27,-2],[25,-13],[24,-25],[8,-26],[-7,-26],[-12,-10],[-37,4],[-20,-13],[-13,-29],[-3,-75],[10,-33],[6,0],[8,16],[10,30],[12,4],[12,-24],[-13,-49],[-39,-74],[-4,-11],[-6,-12],[0,-34],[33,-60],[12,6],[7,15],[13,18],[2,1],[40,8]],[[42456,46879],[-5,-14],[2,-14],[19,-16],[7,7],[-3,14],[-12,20],[-8,3]],[[42505,46742],[30,28],[-3,13],[-11,2],[-64,-57],[-14,-22],[-4,-19],[11,-3],[27,14],[15,14],[1,16],[12,14]],[[42555,46834],[6,35],[-4,8],[-16,-6],[-35,-20],[-1,-14],[34,-9],[16,6]],[[42620,46958],[0,20],[-5,7],[-12,-5],[-8,-18],[-4,-30],[6,-8],[15,16],[8,18]],[[43740,48748],[-14,-29],[5,-67],[9,-24],[12,1],[16,25],[27,14],[39,1],[20,10],[2,17],[14,10],[6,16],[3,30],[-23,18],[-49,6],[-38,-8],[-29,-20]],[[43333,47849],[137,105],[15,30],[-2,16],[7,23],[46,57],[-7,8],[-42,-17],[-80,-55],[-186,-151],[-22,-23],[-3,-12],[15,0],[0,-15],[-15,-30],[2,-20],[18,-11],[36,9],[53,31],[19,15],[3,8],[-17,5],[2,17],[21,10]],[[43866,47325],[24,22],[-25,34],[-40,17],[-55,0],[-56,-12],[-100,-51],[-35,-33],[-80,-116],[-22,-55],[-3,-43],[20,-31],[66,-21],[4,15],[-3,6],[-10,9],[18,39],[5,-16],[-2,-44],[-14,-31],[-14,-23],[0,-29],[14,-37],[17,9],[21,54],[58,85],[-2,19],[9,33],[98,110],[20,34],[-4,13],[-21,18],[3,6],[109,19]],[[43914,48661],[33,7],[-2,23],[-20,41],[-16,20],[-14,-1],[-8,-5],[-3,-11],[11,-30],[0,-16],[-6,-14],[6,-9],[19,-5]],[[44906,47655],[4,15],[-21,25],[-59,25],[-30,-3],[-26,-13],[-23,-25],[-9,-19],[4,-13],[40,-15],[91,14],[29,9]],[[45506,46446],[52,26],[33,6],[22,-23],[15,-33],[2,-34],[-11,-42],[-1,-37],[8,-33],[28,-17],[47,-1],[25,-10],[9,-26],[10,-4],[86,-13],[32,-12],[10,-17],[54,-23],[206,-56],[62,7],[84,19],[26,-31],[13,-4],[19,5],[118,16],[15,-30],[58,-29],[38,-2],[50,-3],[92,-14],[23,-11],[2,-33],[0,-13],[7,-1],[11,16],[18,6],[13,14],[7,22],[15,4],[34,-29],[1,-15],[-47,-35],[5,-15],[3,-8],[13,-5],[1,-15],[-15,-19],[14,-11],[45,26],[25,2],[69,-21],[32,0],[19,17],[3,15],[8,10],[6,-4],[2,-20],[-1,-37],[30,-13],[61,10],[37,-1],[35,0],[6,-8],[8,-24],[27,-41],[8,-19],[8,-43],[19,-25],[7,-23],[1,-20],[5,-20],[18,-45],[22,-32],[12,-28],[5,-32],[12,-13],[19,7],[8,14],[-1,27],[8,-5],[12,-47],[-2,-72],[4,-42],[16,-60],[23,-16],[15,-23],[44,-16],[5,5],[-9,38],[5,10],[15,2],[25,-5],[16,-19],[8,-32],[-4,-41],[-29,-42],[-5,-36],[6,-22],[8,-5],[8,15],[12,-7],[16,-29],[5,-22],[-8,-17],[-29,-10],[-1,-17],[30,-37],[24,-50],[12,-5],[7,-16],[1,-27],[13,-17],[35,-21],[14,-51],[7,-31],[6,-34],[11,-4],[8,16],[0,31],[17,12],[2,-16],[-10,-38],[2,-30],[15,-22],[-19,-7],[-52,6],[-24,31],[-7,11],[-16,3],[-5,11],[7,31],[-4,8],[-32,-7],[-32,-22],[-21,-27],[0,-31],[14,-32],[28,-34],[11,-57],[-5,-81],[-14,-54],[-23,-28],[-67,20],[-111,68],[-63,61],[-27,83],[-10,5],[-57,-26],[-31,-34],[-26,-49],[-8,15],[12,79],[5,50],[-2,19],[-12,16],[-21,12],[-28,-7],[-42,-36],[-9,4],[1,13],[44,60],[14,33],[0,31],[6,27],[13,25],[-3,11],[-19,-3],[-9,-10],[-20,-43],[-29,4],[-3,10],[7,25],[-6,15],[-20,6],[-6,29],[-7,6],[-25,19],[-2,53],[-8,43],[-15,32],[-1,32],[14,53],[-5,7],[-49,7],[-93,6],[-49,-10],[-4,-28],[11,-21],[26,-13],[18,-23],[6,-21],[17,-20],[20,-44],[23,-66],[17,-28],[19,-3],[10,-6],[-2,-67],[9,-41],[19,-38],[11,-42],[-2,-73],[2,-73],[-10,-47],[-26,-54],[-16,-45],[-7,-36],[-14,-25],[-21,-11],[-21,-26],[-22,-39],[-14,-49],[-7,-58],[-18,-60],[-29,-62],[-11,-70],[6,-79],[1,-338],[5,-85],[-3,-83],[-13,-83],[-21,-64],[-31,-47],[-30,-34],[-30,-22],[-28,-38],[-26,-53],[-44,-47],[-62,-42],[-31,-16]],[[46442,42949],[-19,-10]],[[46423,42939],[-7,21],[-14,42],[-26,199],[-39,354],[-31,219],[-26,85],[-34,64],[-43,44],[-32,20],[-23,-6],[-36,-36],[-66,-32],[-27,-20],[-16,-28],[-18,-16],[-22,-5],[-2,-7],[16,-11],[0,-27],[-44,-120],[-11,-28],[-27,-10],[-22,-24],[-23,-60],[-22,-16],[-32,6],[-54,37],[-32,37],[-11,37],[-1,44],[10,52],[-1,41],[20,87],[28,31],[39,7],[22,14],[5,21],[12,14],[20,9],[18,55],[14,101],[17,56],[12,10],[11,-3],[0,-13],[46,65],[17,45],[1,46],[5,135],[5,87],[6,40],[-2,102],[-14,83],[-51,92],[-7,31],[1,32],[11,35],[23,8],[40,-27],[7,7],[-11,15],[-7,31],[-2,46],[-5,25],[-9,5],[-22,52],[-3,27],[2,25],[-8,25],[-30,40],[-55,41],[-131,77],[-23,29],[-33,18],[-41,5],[-26,23],[-11,42],[-18,37],[-26,33],[-40,22],[-54,10],[-58,36],[-61,61],[-34,19]],[[45310,45779],[14,-1],[6,9],[1,11],[-6,13],[4,49],[-4,14],[24,75],[20,20],[24,-7],[15,-17],[6,-25],[8,-9],[14,-1],[9,-4],[4,2],[8,14],[51,-6],[172,-38],[23,6],[14,13],[3,20],[-11,20],[-45,40],[-14,27],[-3,25],[6,24],[-9,22],[-26,19],[-56,5],[-10,20],[4,19],[17,25],[0,36],[-5,20],[-7,62],[-13,42],[-17,44],[-7,17],[-10,23],[-15,13]],[[45981,45909],[-22,-5],[-13,-15],[-9,-10],[-14,-27],[-6,-29],[13,-22],[32,-16],[10,5],[15,7],[30,66],[-1,15],[-12,15],[-23,16]],[[45894,45940],[-25,56],[-13,17],[-36,9],[-7,-10],[9,-26],[-2,-13],[-15,-19],[-28,-27],[-22,-6],[-14,14],[-10,-2],[-2,-26],[5,-12],[20,-23],[44,-13],[68,-2],[33,17],[12,33],[-5,22],[-12,11]],[[45751,46064],[10,18],[6,48],[-13,39],[-32,31],[-38,19],[-43,6],[0,0],[-17,-22],[8,-51],[19,-59],[29,-68],[23,-17],[11,5],[9,22],[6,29],[6,6],[3,3],[13,-9]],[[45589,46240],[-9,-1],[-3,-20],[5,-24],[24,-39],[6,6],[3,14],[-2,25],[-9,21],[-15,18]],[[45607,46256],[0,22],[-4,10],[-11,37],[-1,47],[13,46],[-2,28],[-18,11],[-17,-6],[-28,-48],[19,-43],[6,-29],[6,-31],[10,-24],[12,-15],[15,-5]],[[45466,45723],[-61,14],[-3,-17],[36,-50],[22,-19],[14,2],[10,10],[7,19],[-2,22],[-18,27],[-5,-8]],[[46163,45750],[13,-23],[95,-14],[52,-24],[55,-45],[48,-29],[41,-15],[32,-23],[23,-33],[56,-36],[7,-21],[10,-9],[12,5],[99,125],[29,6],[1,-12],[-50,-75],[-18,-7],[-10,1],[-26,-34],[0,-9],[15,5],[15,-9],[16,-22],[25,12],[35,44],[33,65],[44,135],[-4,10],[-40,0],[-6,13],[12,30],[4,27],[-5,25],[-11,-3],[-18,-30],[-13,-42],[-16,-81],[-4,3],[-16,45],[-2,34],[7,40],[-6,23],[-18,7],[-9,18],[1,28],[-7,23],[-14,17],[-23,-2],[-32,-22],[-24,-36],[-18,-49],[-15,1],[-14,53],[-15,22],[-16,-10],[-9,9],[-3,29],[-18,8],[-32,-11],[-21,-16],[-9,-21],[-8,-3],[-9,13],[-14,-5],[-19,-24],[-6,-19],[12,-26],[-2,-10],[19,-11],[2,-15],[-8,-28],[-11,2],[-13,29],[-12,11],[-9,-9],[-9,4],[-7,17],[-15,3],[-21,-10],[-14,6],[-4,22],[-9,17],[-14,12],[-5,26],[6,41],[-12,14],[-28,-13],[-19,-15],[-10,-18],[-15,-1],[-18,14],[-17,-3],[-13,-20],[-13,3],[-12,25],[-12,6],[-12,-14],[-7,-22],[-3,-31],[29,-26],[94,-42]],[[46758,45443],[-11,5],[-44,-33],[-5,-14],[3,-11],[8,-10],[13,3],[29,35],[7,25]],[[47490,44715],[0,12],[8,39],[-7,17],[-21,7],[-10,-7],[2,-21],[8,-21],[20,-26]],[[39282,25307],[-14,-80],[-38,-191],[-36,-299],[-36,-305],[-15,-222],[-18,-339],[-4,2],[-5,165],[8,77],[4,104],[5,127],[-13,46],[-18,7],[-11,33],[-2,40],[4,28],[12,1],[27,-44],[8,0],[18,162],[-6,45],[-1,135],[28,63],[-5,30],[-25,28],[-10,28],[14,165],[-1,42],[-3,24],[-23,32],[16,30],[20,59],[12,19],[5,-2],[16,-37],[16,-14],[16,-1],[6,16],[6,108],[5,12],[16,-7],[17,-34],[5,-53]],[[36708,58224],[-11,-13],[-24,5],[-18,-17],[-16,-31],[-9,-31],[9,-23],[21,-22],[-1,-25],[-55,-49],[-21,10],[-62,-53],[-13,-28],[-11,-69],[0,-87],[6,-27],[11,-19],[13,-7],[3,-15],[-27,-90],[-29,-41],[-15,-3],[7,35],[19,49],[-3,49],[-22,34],[-19,6],[-33,9],[-43,-8],[-80,-72],[-32,-20],[-17,3],[-1,14],[17,30],[67,96],[-7,19],[-51,-6],[-12,14],[5,17],[45,56],[12,18],[0,16],[-5,24],[-12,24],[1,25],[25,46],[16,61],[3,33],[-3,15],[-20,1],[17,64],[8,61],[13,23],[15,24],[27,7],[52,-31],[69,40],[8,13],[1,40],[7,20],[10,7],[21,-19],[89,0],[4,-29],[11,-26],[56,-66],[6,-30],[-22,-51]],[[33666,59019],[-22,0],[-83,-43],[-206,-77],[-89,-58],[-96,-88],[-29,-34],[-32,-58],[-18,-52],[3,-17],[31,-23],[-3,-31],[-17,-14],[-124,-1],[-36,-16],[-14,-31],[-5,-37],[-11,-33],[-13,-2],[-18,118],[-13,2],[-19,-10],[-22,-27],[-22,-71],[-19,-18],[-8,22],[-7,20],[-1,25],[6,44],[-79,87],[-15,26],[-3,26],[10,33],[41,0],[21,-13],[-5,-36],[17,-4],[50,29],[70,73],[124,204],[61,68],[62,46],[151,141],[76,59],[20,33],[27,24],[-11,20],[0,12],[45,58],[39,39],[36,27],[71,28],[66,2],[41,-13],[65,-89],[99,13],[16,-7],[-32,-97],[3,-19],[51,-1],[100,49],[152,38],[127,-39],[188,-39],[151,-47],[201,-21],[99,-8],[280,-29],[1,-19],[-11,-19],[-318,11],[-235,21],[-118,20],[-65,-12],[-8,8],[-10,31],[-39,9],[-12,-4],[-11,-17],[-14,-31],[-16,-59],[-8,-13],[-58,-12],[-120,-43],[-257,-41],[-91,-5],[-77,-17],[-28,4],[-33,25]],[[50950,51053],[-42,-43],[-59,-106],[-10,-8],[-57,-76],[-56,-68],[-42,-51],[1,20],[30,79],[63,84],[35,92],[6,2],[12,-2],[9,21],[1,15],[-7,39],[-3,12],[-11,2],[-57,-81],[-49,-83],[-84,-158],[-12,-11],[-15,-1],[-67,-183],[-14,-45],[-8,-96],[3,-47],[6,-40],[5,-22],[-9,-2],[-12,25],[-5,-7],[2,-65],[9,-40],[9,-64],[-8,-25],[-41,-50],[-50,-41],[-12,-30],[-20,-48],[-36,-5],[-32,20],[9,18],[48,17],[41,86],[64,39],[24,32],[-4,26],[-21,21],[-8,31],[-1,25],[10,28],[19,258],[-23,-49],[-14,-46],[-5,-30],[4,-25],[0,-15],[-7,-16],[-33,20],[-49,-79],[-13,4],[14,45],[71,273],[52,166],[-6,10],[-26,0],[-2,13],[12,43],[-7,9],[6,18],[120,96],[125,163],[83,79],[65,71],[38,6],[1,-19],[-39,-60],[12,-8],[72,44],[37,7],[10,-8],[-4,-18],[-24,-30],[-103,-98],[-12,-28],[10,-18],[14,-6],[109,90],[42,10],[16,-14],[-13,-23],[-87,-71]],[[40888,49283],[5,-15],[-3,-90],[-9,-29],[-12,-20],[-13,-12],[-5,4],[7,20],[2,33],[-34,66],[-19,64],[-27,13],[13,50],[-1,14],[-53,12],[-52,-11],[-82,-27],[-47,-36],[-12,-16],[-9,-40],[5,-13],[66,14],[15,-9],[15,-47],[26,-31],[28,-35],[52,34],[24,-13],[15,-26],[2,-32],[13,-14],[67,-14],[12,-11],[-20,-30],[-38,-30],[-33,19],[-21,-11],[-7,-33],[-101,-125],[-70,-68],[-14,-14],[-50,5],[-46,57],[-42,39],[-16,-5],[-68,-62],[-44,-11],[-19,42],[-1,42],[11,29],[12,30],[0,30],[-5,46],[8,31],[29,30],[27,5],[27,5],[49,19],[22,44],[-2,81],[-33,21],[-2,25],[0,1],[35,32],[15,37],[41,74],[63,50],[21,42],[-2,17],[-18,5],[-27,-9],[-24,-17],[-55,-73],[-35,-30],[-58,-33],[-15,9],[10,70],[-17,80],[26,17],[43,-4],[22,-15],[-6,-36],[8,-9],[15,1],[18,9],[23,27],[-15,50],[23,28],[112,33],[13,40],[-8,43],[-48,146],[9,21],[21,19],[13,-5],[23,-57],[4,-78],[16,-49],[22,-66],[50,-13],[16,-39],[-10,-46],[9,-40],[-23,-23],[-3,-13],[32,-48],[61,-19],[19,-48],[-5,-21],[44,-54]],[[40579,49101],[-41,2],[2,-23],[24,-78],[36,-2],[12,-33],[18,-21],[31,6],[11,76],[28,62],[-1,22],[-32,13],[-50,-24],[-38,0]],[[43752,49870],[-36,-27],[-18,-22],[1,-17],[16,-27],[-10,-83],[8,-73],[-10,-76],[-15,-55],[3,-73],[-10,-41],[-59,-7],[-30,-25],[-18,-45],[-16,5],[-13,49],[-13,19],[-9,52],[-14,34],[-5,-5],[3,-55],[-8,-26],[-28,-34],[-22,5],[-18,8],[-32,17],[-6,30],[13,39],[23,60],[47,19],[10,1],[1,20],[-9,19],[-39,-13],[-26,-3],[-20,-63],[-18,-28],[-22,-19],[-19,-10],[-24,-9],[-19,27],[-9,39],[1,15],[27,-22],[19,-1],[6,20],[1,38],[-11,77],[-1,60],[-12,1],[-25,-41],[-18,11],[-22,50],[3,28],[8,20],[31,-37],[26,23],[4,10],[-4,35],[2,25],[27,52],[-8,91],[6,34],[59,156],[31,40],[31,23],[42,-38],[41,-1],[51,-75],[20,-14],[13,2],[5,9],[-5,18],[-25,48],[-36,40],[-2,23],[17,2],[19,-16],[53,-62],[16,-25],[14,-53],[-1,-21],[-15,-2],[-6,-16],[-3,-36],[2,-32],[-8,-37],[10,3],[21,35],[18,7],[23,-34],[24,-22],[1,-18]],[[43503,49931],[0,14],[-17,10],[-12,0],[-7,-3],[-1,-26],[-3,-32],[-8,-35],[-16,-23],[-14,-27],[-13,-21],[-1,-11],[15,-18],[19,0],[27,-29],[15,-16],[3,11],[-4,20],[-10,26],[-12,35],[0,19],[5,35],[18,32],[10,14],[6,25]],[[43584,49557],[5,42],[-9,10],[-14,-14],[-32,-25],[0,-49],[43,6],[7,30]],[[37238,57804],[22,8],[63,3],[6,-41],[-5,-63],[-41,-59],[-50,-110],[-45,-68],[-63,-62],[-41,-33],[-28,-57],[6,-59],[98,-62],[25,-35],[-14,-20],[-44,-12],[-36,-47],[-7,-77],[23,-60],[18,-29],[-38,-60],[-41,-50],[-23,-51],[-65,-25],[-13,-29],[-8,-38],[-20,-75],[-18,-38],[-1,-32],[-13,-18],[-37,-20],[-27,-24],[-136,-90],[-19,-33],[-6,-39],[-18,-33],[-32,11],[-20,40],[-24,-6],[-31,-56],[-15,-49],[-4,-31],[-14,-1],[-8,27],[8,83],[5,50],[2,38],[-20,21],[2,47],[25,31],[24,-19],[18,65],[11,144],[12,88],[17,-4],[-5,-172],[14,-108],[34,-7],[56,122],[32,25],[29,8],[19,25],[8,32],[24,13],[27,44],[12,99],[-5,68],[-14,48],[-44,37],[-31,18],[9,52],[14,57],[-13,34],[-33,38],[-30,16],[-32,-3],[-6,69],[20,86],[48,53],[45,60],[10,33],[-9,40],[1,51],[24,14],[56,28],[40,68],[111,132],[27,62],[-1,45],[47,69],[29,-19],[-11,-85],[20,-39],[28,27],[22,63],[23,11],[7,-44],[-20,-123],[0,-31],[14,-23],[40,29],[4,37]],[[49594,43147],[8,-20],[-31,-25],[-76,-4],[-65,61],[0,16],[17,9],[95,-15],[52,-22]],[[12383,59660],[-66,-51],[-58,-31],[-67,-21],[-77,-38],[-14,-35],[4,-44],[-11,-46],[-2,-29],[-15,-22],[-34,-9],[-106,-10],[-397,-98],[-66,43],[-16,79],[33,81],[279,124],[127,44],[316,85],[66,-10],[55,-1],[49,-11]],[[11436,57765],[-29,-33],[0,-25],[12,-19],[2,-30],[-23,-58],[-43,-66],[-13,-6],[15,56],[6,60],[-22,48],[-94,38],[-117,44],[-35,9],[-73,43],[-25,67],[32,68],[85,19],[171,-79],[144,-97],[7,-39]],[[28571,38954],[-11,-68],[-32,-12],[-23,26],[-15,89],[-13,30],[4,53],[34,78],[35,21],[12,11],[12,0],[8,-47],[-11,-181]],[[43612,43987],[-4,-129],[-24,-72],[-22,-58],[-16,6],[-13,125],[-13,90],[16,81],[32,84],[28,1],[18,-15],[-2,-113]],[[51646,66475],[8,31],[23,35],[20,63],[58,136],[7,83],[-16,56],[25,27],[82,-8],[84,-26],[18,-27],[24,-44],[51,-55],[9,-35],[20,-38],[51,-41],[52,-17],[31,11],[37,-16],[126,-43],[99,-61],[55,-25],[63,-22],[11,-33],[-29,-44],[-57,-28],[0,-33],[45,-10],[61,-3],[11,2],[25,17],[45,3],[16,-45],[-57,-71],[-63,-45],[-19,-22],[-9,-29],[-12,-27],[-14,-9],[-24,16],[-6,27],[-17,-3],[-22,-22],[-5,-16],[-14,-2],[-57,51],[-40,5],[-100,-39],[-91,-25],[-68,70],[-30,24],[-18,-6],[-17,-31],[-10,-26],[-16,-22],[-67,-48],[-120,-165],[-58,-37],[-41,16],[-5,18],[48,37],[20,58],[-7,68],[23,64],[-2,42],[1,33],[10,41],[-18,41],[-32,45],[-35,98],[-63,81]],[[37138,63106],[60,46],[28,70],[29,32],[25,6],[12,7],[13,15],[0,30],[17,28],[43,-13],[29,-24],[15,-22],[21,-3],[13,21],[-19,52],[27,24],[66,-60],[27,8],[9,21],[26,3],[50,67],[22,-10],[27,20],[44,7],[30,-78],[-14,-96],[-46,-53],[-25,-22],[-20,-4],[-25,7],[-32,3],[-27,-12],[-9,-24],[-2,-25],[-24,-71],[5,-69],[21,-42],[25,-8],[58,-45],[1,-51],[-47,-45],[-22,-15],[-15,-38],[18,-55],[-3,-41],[-52,-48],[-73,-47],[-43,16],[-5,39],[18,45],[15,62],[-4,63],[-24,36],[-16,-17],[-9,-66],[-18,-54],[-13,-51],[-6,-64],[-8,-11],[-12,20],[0,38],[-17,54],[-40,20],[-39,4],[-32,80],[-44,-4],[-35,10],[-22,38],[-6,79],[-21,62],[-3,10],[-14,13],[-22,33],[6,43],[39,29],[69,27]],[[40615,64042],[33,-10],[47,-9],[53,-4],[47,-12],[11,-48],[-42,-63],[-68,-16],[-80,34],[-113,35],[-209,13],[-96,-21],[-81,-1],[-53,-1],[-26,28],[-51,43],[-134,66],[-22,108],[34,23],[218,-22],[234,-28],[102,-35],[57,-14],[59,-8],[68,-20],[12,-38]],[[50725,44067],[-15,-93],[17,-178],[6,-95],[-5,-24],[-9,54],[-8,55],[-13,139],[-8,26],[-2,52],[3,109],[43,88],[-11,112],[-11,38],[-20,206],[20,137],[9,161],[13,64],[4,18],[11,11],[3,-29],[4,-44],[6,-42],[5,-1],[14,30],[18,58],[7,21],[27,51],[20,5],[8,-32],[-11,-37],[-8,-7],[-17,-17],[-14,-28],[10,-38],[-2,-45],[-9,-166],[-9,-121],[-6,-23],[-17,-21],[3,-35],[13,-14],[0,-48],[-4,-12],[-5,4],[-11,-40],[-8,-77],[-18,-86],[-23,-86]],[[30631,33214],[-2,-52],[-39,-84],[-43,8],[-58,156],[-72,130],[4,69],[20,20],[30,-3],[31,-67],[106,-131],[23,-46]],[[29819,63093],[6,-23],[-25,-39],[-93,-33],[-88,0],[-22,20],[-153,90],[-14,26],[-13,12],[-18,21],[-54,8],[-72,19],[-76,27],[-1,39],[31,52],[104,85],[116,57],[48,-26],[40,-77],[72,-62],[64,-21],[26,-12],[3,-13],[47,-54],[17,-7],[46,-73],[9,-16]],[[51352,48365],[-37,16],[-15,12],[-37,93],[-30,45],[-12,49],[19,64],[63,22],[76,-31],[44,-42],[29,-22],[33,-50],[1,-49],[-3,-42],[-20,-43],[-49,-32],[-62,10]],[[48972,42567],[-23,-124],[-40,-95],[-6,12],[16,74],[10,57],[17,0],[17,80],[9,-4]],[[49057,42339],[-14,43],[-4,132],[-17,138],[-8,147],[8,-8],[34,-186],[0,-146],[3,-92],[-2,-28]],[[49228,42424],[-4,-12],[-27,58],[-39,55],[-50,175],[10,147],[8,18],[16,-185],[17,-89],[30,-75],[39,-92]],[[35081,57591],[36,-15],[34,-26],[-2,-60],[4,-35],[9,-25],[-4,-28],[0,-42],[-21,-51],[-25,-15],[-29,-24],[-57,-6],[-80,-42],[-31,10],[-43,-9],[-16,14],[-16,14],[-19,0],[-38,-35],[-23,-34],[-18,-33],[-31,-24],[-21,-5],[-5,11],[8,90],[-5,35],[11,25],[16,41],[-17,31],[-3,18],[24,1],[45,-15],[44,28],[84,107],[111,52],[50,56],[17,8],[11,-17]],[[38245,62844],[23,45],[100,168],[24,15],[-2,-32],[-14,-56],[13,-51],[34,-23],[35,-34],[8,-62],[-47,-56],[-69,-56],[-89,-9],[-74,12],[-16,28],[-1,25],[75,86]],[[36845,60212],[31,-8],[50,54],[31,56],[-25,18],[-33,58],[1,84],[39,49],[43,15],[22,-33],[18,-54],[10,-49],[23,-55],[53,-82],[53,-137],[18,-126],[-14,-74],[-4,-55],[-46,27],[-3,-44],[-16,-36],[-30,89],[-90,192],[-51,39],[-45,-14],[-53,10],[-6,63],[24,13]],[[42613,30219],[-20,-76],[-33,-19],[-18,18],[-3,38],[11,49],[31,64],[28,-22],[4,-52]],[[50432,55923],[-39,-50],[-54,-18],[-20,-11],[3,-11],[-14,3],[-13,13],[22,34],[-50,39],[-108,43],[-80,24],[-33,46],[-11,76],[2,60],[23,34],[51,28],[89,-18],[78,-55],[31,-101],[41,-18],[51,-6],[33,-41],[-2,-71]],[[47360,46198],[18,7],[30,-4],[15,-22],[29,-14],[51,8],[13,20],[-11,24],[8,22],[34,22],[94,-6],[37,8],[59,11],[76,-48],[28,-75],[-24,-51],[-41,-18],[-95,47],[-50,-20],[-52,-32],[-9,5],[7,33],[-12,33],[-22,12],[-110,-19],[-73,57]],[[49215,56061],[11,20],[10,29],[41,93],[10,40],[-11,19],[-3,24],[16,110],[12,51],[12,-19],[6,-28],[11,-35],[29,-45],[5,-26],[-20,-18],[34,-57],[42,-45],[44,-40],[40,-46],[2,-17],[-8,-28],[-92,-19],[-143,13],[-48,24]],[[49433,53568],[-5,71]],[[49428,53639],[30,0],[51,29],[13,25],[-5,22],[30,42],[142,37],[123,4],[12,-18],[13,-36],[27,-22],[183,73],[31,2],[4,-38],[-45,-19],[-33,-44],[-76,-41],[-69,-32],[-36,-12],[2,-25],[49,-7],[104,-5],[82,-18],[85,14],[65,33],[11,-16],[-13,-22],[-104,-54],[-61,-4],[-61,-27],[-44,-1],[14,45],[-17,17],[-41,-16],[-56,-4],[-114,13],[-74,6],[-12,-18],[21,-18],[6,-20],[-15,-43],[-39,-41],[-104,-32],[-80,10],[-11,47],[29,46],[19,22],[38,33],[18,29],[-18,33],[-35,-14],[-34,-6]],[[49433,53568],[-129,-36],[-12,-34],[-61,-38],[-154,-58],[-35,2],[-131,-9],[-17,22],[-32,8],[-51,-2],[-43,40],[-3,46],[14,31],[-22,13],[-53,8],[-30,20],[35,43],[91,76],[38,13],[25,-20],[129,30],[54,26],[65,62],[17,67],[-55,55],[-20,25],[10,16],[13,15],[86,-61],[19,6],[8,22],[20,1],[24,-8],[18,11],[0,24],[-29,32],[-19,26],[7,16],[50,21],[40,10],[19,-26],[31,-26],[29,3],[6,14],[19,-10],[21,-27],[-16,-8],[-21,-4],[-34,-30],[-23,-111],[-22,-16],[-12,-19],[-28,-30],[-25,-46],[-52,-63],[-51,-38],[-22,-27],[25,-24],[68,13],[196,25],[20,0]],[[11157,57661],[-27,-70],[-82,-130],[-3,-33],[7,-26],[-13,-43],[-18,-20],[-44,29],[-45,40],[-11,35],[18,18],[25,3],[29,11],[24,30],[2,43],[58,72],[15,30],[45,30],[20,-19]],[[51612,18436],[-13,-36],[-34,-13],[-88,74],[8,36],[44,20],[47,-37],[36,-44]],[[9674,66352],[1,-40],[-66,-3],[-69,12],[-22,27],[-67,50],[9,24],[91,-8],[93,-23],[30,-39]],[[30893,60219],[-41,-115],[-5,-19],[-29,-12],[-32,-23],[-4,-29],[0,-22],[-87,29],[-61,35],[-66,-10],[-64,0],[-8,39],[44,52],[73,0],[56,8],[87,33],[61,42],[53,13],[23,-21]],[[49172,53163],[-5,-18],[-8,-21],[-13,-10],[4,-21],[-2,-20],[-46,-23],[-28,-52],[3,-61],[19,-53],[-27,-13],[-21,27],[-19,124],[16,46],[12,51],[-5,28],[-1,47],[9,33],[-9,21],[23,49],[59,74],[8,-24],[0,-25],[20,-3],[23,31],[23,37],[24,-17],[8,-53],[-12,-35],[-55,-18],[-16,-21],[-2,-26],[9,-16],[23,8],[9,-17],[-23,-29]],[[35223,59888],[-28,-4],[-26,-34],[-4,-67],[12,-47],[-23,-36],[-30,-1],[-13,28],[-5,23],[-15,3],[-11,-36],[-9,-13],[-28,-8],[-18,26],[24,103],[-3,88],[-32,21],[-4,20],[16,24],[31,13],[16,-14],[5,-26],[17,-25],[16,-14],[7,13],[13,62],[15,47],[49,48],[69,36],[23,-14],[11,-11],[46,-19],[-31,-53],[-68,-14],[-55,-5],[-19,-29],[11,-33],[51,10],[28,-21],[2,-32],[-40,-9]],[[50978,81531],[106,25],[130,23],[1315,190],[141,15],[151,7],[-242,-54],[-257,-46],[-1048,-142],[-235,-28],[-11,7],[-50,3]],[[43043,52786],[24,15],[18,20],[5,31],[66,57],[40,-17],[37,-23],[56,20],[25,2],[-15,-47],[-29,-70],[-51,-17],[-100,13],[-55,2],[-21,14]],[[33206,44255],[-17,-14],[-18,-3],[-9,18],[-17,19],[-7,27],[-25,8],[2,34],[-17,22],[-30,-10],[-20,-23],[-11,33],[12,24],[19,2],[19,7],[15,23],[18,53],[25,11],[27,-23],[3,-97],[30,-56],[1,-55]],[[12873,70440],[-159,-50],[-181,-39],[-30,15],[-36,-7],[-63,25],[-44,30],[-39,56],[-35,35],[-30,5],[-9,22],[45,17],[60,7],[29,-5],[17,18],[61,27],[95,12],[284,-133],[35,-35]],[[31324,47845],[-12,90],[-9,17],[3,30],[28,22],[42,-76],[10,-81],[10,-149],[-8,-29],[-17,-45],[-29,7],[-15,-4],[-7,26],[18,44],[-10,28],[-22,13],[-27,11],[-2,22],[29,32],[18,42]],[[31571,35766],[-16,11],[-27,79],[-32,88],[-48,70],[-27,50],[-18,35],[-24,-1],[-34,-132],[-46,-26],[-41,24],[-13,47],[-24,23],[-16,-9],[-22,-11],[-25,26],[-65,0],[-35,-82],[-13,-10],[-13,6],[-20,55],[-2,47],[77,32],[67,40],[39,43],[8,111],[13,134],[11,32],[13,5],[1,-76],[-12,-109],[-5,-125],[36,-98],[32,-61],[32,27],[30,75],[32,93],[16,-1],[34,-68],[32,-60],[38,-68],[37,-90],[32,-98],[-2,-28]],[[32437,58453],[3,-43],[-10,-33],[-4,-24],[-2,-34],[6,-32],[20,-62],[-10,-29],[-42,4],[-87,41],[-51,65],[-23,47],[13,39],[-1,51],[-21,27],[-28,-14],[-38,15],[-25,40],[7,65],[45,94],[87,47],[54,-5],[2,-33],[-36,-9],[-3,-41],[64,-23],[39,13],[28,-5],[20,-24],[17,-12],[16,1],[7,-26],[-47,-100]],[[55576,54031],[-3,-20],[-10,-36],[48,-70],[-16,-30],[-30,-18],[-23,11],[-27,24],[-53,16],[-35,6],[-31,-7],[-6,-24],[18,-26],[0,-26],[-58,-5],[-25,-7],[-31,-16],[2,-23],[-29,-20],[-87,3],[-55,35],[-7,64],[-18,52],[-151,67],[-15,31],[-18,14],[-42,-11],[-17,-33],[22,-49],[-8,-36],[-17,-35],[-27,-26],[-41,-4],[-40,-14],[-44,-28],[-52,-49],[-26,-21],[-41,-22],[-16,-36],[1,-36],[50,-50],[0,-35],[20,-74],[-7,-25],[17,-39],[73,-45],[-22,-34],[-102,34],[-140,34],[-26,53],[49,6],[44,11],[25,27],[9,18],[-5,31],[-18,39],[-8,40],[9,41],[17,65],[-5,58],[-33,25],[-22,10],[-26,35],[-4,48],[-32,63],[-69,26],[-46,49],[-137,211],[-67,78],[-11,53],[-41,63],[-37,21],[6,-54],[38,-85],[-14,-48],[-13,-37],[9,-75],[26,-84],[4,-25],[-28,10],[-52,109],[-26,90],[-15,60],[-14,64],[-5,33],[1,61],[-3,41],[41,6],[13,25],[-10,116],[10,32],[-22,81],[-22,39],[3,27],[13,9],[-3,32],[-12,38],[7,21],[15,5],[5,19],[-7,28],[11,-1],[40,-48],[50,-73],[-2,-28],[-2,-14],[1,-23],[-14,-10],[-19,-3],[-6,-8],[2,-13],[14,-27],[-6,-15],[-6,-5],[-2,-19],[33,-99],[2,-28],[74,-110],[4,-51],[0,-49],[80,-130],[14,-6],[26,-69],[14,14],[18,-4],[38,-79],[37,-39],[15,13],[85,-120],[49,-49],[26,37],[73,-50],[42,18],[-35,63],[22,9],[127,-31],[23,24],[-60,76],[-33,71],[-29,116],[-44,95],[-67,24],[2,16],[11,48],[3,84],[23,43],[32,5],[10,-18],[-39,-81],[14,-28],[23,-17],[17,-38],[21,-77],[47,-93],[-9,-14],[5,-53],[24,-65],[17,-22],[2,11],[11,8],[44,-24],[40,-1],[30,32],[16,11],[35,3],[37,-2],[47,-21],[54,12],[-7,33],[-19,20],[-5,25],[-19,17],[-39,-16],[-27,-4],[-8,20],[26,59],[12,178],[16,105],[-5,63],[-19,59],[9,6],[37,-48],[11,-37],[-16,-92],[5,-49],[56,-111],[31,-56],[51,-65],[40,-42],[36,-74],[58,-72],[78,-19],[57,20],[43,43],[26,2],[43,-5],[25,-8]],[[43349,15683],[-22,-34],[-22,-41],[-13,-64],[-12,-83],[-26,-46],[-50,-26],[-26,-7],[-19,-15],[-11,-13],[-12,30],[-19,48],[-11,28],[8,17],[26,17],[34,26],[30,27],[37,27],[64,85],[52,77],[9,1],[-5,-24],[-12,-30]],[[42175,50876],[21,66],[13,34],[29,-3],[58,-28],[55,-27],[31,26],[32,35],[23,22],[24,26],[39,56],[28,38],[40,-23],[23,-21],[19,-31],[2,-20],[-48,-51],[-104,-54],[-90,-59],[-87,-9],[-57,-12],[-38,-15],[-23,12],[10,38]],[[50174,48372],[-6,-22],[-14,-13],[-11,-7],[-12,2],[-8,-6],[-6,-15],[-12,-36],[-4,-6],[-3,24],[-7,38],[-8,15],[-15,14],[-29,64],[-24,47],[-22,15],[-16,1],[-9,-19],[-2,-38],[4,-20],[9,-11],[-2,-33],[-4,-74],[-3,-16],[-12,1],[-18,-6],[-17,-13],[-11,-5],[-23,-54],[-4,2],[4,41],[8,84],[7,64],[12,17],[15,18],[16,51],[-4,48],[-25,-16],[-12,-20],[-16,-21],[-17,-29],[-8,-47],[0,-41],[4,-24],[-19,-8],[-27,2],[-15,16],[-17,13],[-12,-8],[-12,14],[-13,-5],[12,45],[19,48],[23,48],[9,18],[15,1],[15,-7],[18,10],[17,35],[17,38],[23,31],[9,6],[35,-18],[23,16],[52,47],[23,16],[19,12],[44,16],[35,1],[7,-24],[9,-22],[-10,-52],[-17,-64],[12,-31],[23,-15],[10,-14],[14,2],[21,7],[7,-9],[-4,-32],[17,-62],[26,-36],[25,-11],[19,-12],[23,-28],[27,-10],[8,-16],[-24,-12],[-41,-13],[-36,30],[-39,63],[-32,30],[-23,9],[-10,-19]],[[50816,54998],[14,14],[-1,13],[42,22],[68,32],[43,11],[48,10],[41,13],[27,2],[34,5],[47,20],[54,31],[38,10],[-12,-20],[-14,-35],[-3,-34],[-1,-26],[-33,-41],[-55,-42],[-74,-34],[-36,-39],[-40,-12],[-61,-24],[-61,-28],[-31,1],[-18,17],[-31,4],[-47,-21],[-48,-26],[-68,-18],[-23,24],[44,15],[40,27],[9,17],[-11,20],[-25,16],[-14,12],[1,14],[10,7],[27,-4],[33,-4],[44,23],[32,19],[11,9]],[[48875,42737],[-22,-47],[-22,-79],[-4,15],[1,30],[13,51],[20,51],[10,59],[12,-19],[-8,-61]],[[49248,42692],[-23,66],[-11,61],[6,25],[32,-141],[1,-12],[-5,1]],[[49346,42709],[-43,63],[-31,60],[1,50],[25,-73],[38,-54],[10,-46]],[[7865,60303],[-29,-20],[-13,-31],[-10,-20],[10,-72],[-35,-56],[-67,-47],[-2,11],[-10,33],[5,48],[5,27],[-9,12],[-20,-1],[-48,-11],[-50,-11],[-6,20],[17,7],[56,31],[24,18],[-15,18],[-27,20],[21,19],[13,22],[7,3],[26,-17],[30,15],[6,8],[29,-7],[77,-7],[15,-12]],[[32688,41956],[-9,-83],[-9,-60],[-11,-18],[-11,12],[-10,54],[-7,50],[2,74],[5,69],[23,22],[15,-5],[13,-39],[2,-50],[-3,-26]],[[32472,40117],[-40,-32],[-10,-63],[-9,-25],[-12,-6],[-1,17],[1,36],[-4,37],[-7,22],[30,76],[-4,70],[-10,54],[42,-8],[14,-31],[15,-53],[15,-47],[10,-12],[-5,-19],[-25,-16]],[[25492,66816],[7,45],[21,28],[31,9],[35,-11],[28,-31],[14,-37],[-10,-32],[-16,-26],[-3,-28],[6,-38],[-6,-21],[-22,-20],[-18,-21],[-19,6],[-26,23],[-19,73],[-3,81]],[[40796,47105],[-7,-41],[-20,-53],[-21,-22],[-23,-8],[-19,10],[-13,32],[-28,34],[-22,-23],[-2,-45],[-4,-13],[-3,18],[-9,43],[-8,43],[5,40],[10,-4],[41,19],[32,11],[27,9],[39,43],[8,-14],[-8,-49],[-5,-38],[14,3],[16,5]],[[42677,48846],[1,-20],[-12,-37],[-12,-57],[-17,-35],[-31,-1],[-9,13],[-31,8],[-37,5],[-15,22],[1,34],[-9,49],[-16,4],[-2,24],[11,23],[18,7],[17,-14],[14,-34],[7,-31],[32,-11],[38,2],[19,6],[17,24],[16,19]],[[49621,46811],[3,-24],[-5,-48],[-16,-56],[-9,-51],[-21,-2],[-33,40],[-38,3],[-35,-12],[-7,13],[11,18],[18,42],[6,40],[2,15],[31,14],[28,13],[25,62],[20,33],[4,-23],[16,-77]],[[27946,60337],[-47,-39],[-25,-8],[-10,14],[-13,29],[-19,15],[-43,-20],[9,25],[39,54],[46,42],[35,29],[7,35],[-7,77],[-10,70],[29,-9],[47,-39],[32,-58],[8,-73],[-27,-78],[-51,-66]],[[54725,44172],[0,-14],[-17,-57],[-11,-18],[-36,-15],[-36,7],[-11,26],[0,26],[5,27],[10,22],[16,13],[14,2],[4,-25],[8,-19],[12,-4],[21,7],[21,22]],[[54182,45788],[-21,-16],[-18,25],[27,29],[26,43],[14,57],[10,40],[12,16],[15,16],[6,9],[7,8],[11,-6],[0,-29],[-5,-30],[-9,-27],[-14,-37],[-5,-28],[-25,-38],[-31,-32]],[[28389,41910],[-12,-64],[-13,-90],[-9,-40],[-22,-7],[-11,18],[-9,66],[-2,119],[7,76],[12,23],[18,20],[17,-18],[15,-23],[10,-26],[-1,-54]],[[28814,39830],[-1,-17],[-6,-18],[-19,10],[-29,49],[-42,101],[-29,95],[6,27],[20,41],[31,18],[20,-29],[9,-98],[16,-108],[13,-40],[11,-31]],[[28732,36990],[3,-7],[-3,-20],[-18,-23],[-24,-8],[10,28],[23,18],[9,12]],[[28603,68433],[13,25],[20,36],[-2,22],[-7,20],[18,23],[20,35],[12,27],[14,8],[12,0],[1,-10],[18,-29],[6,-18],[19,-25],[22,-14],[19,-26],[8,-24],[-8,-13],[-31,-1],[-21,-20],[-12,-42],[-14,-61],[4,-31],[25,-43],[37,-35],[-7,-30],[-57,-43],[-42,-33],[-39,-10],[-15,8],[2,68],[5,99],[-1,63],[-12,45],[-7,29]],[[52292,49350],[-28,51],[-1,38],[2,36],[-10,26],[-18,26],[-22,17],[-20,6],[-19,-17],[-13,-33],[7,-51],[3,-16],[-12,-19],[-24,15],[-12,13],[-9,4],[-9,-5],[-9,-32],[-8,-38],[-2,-34],[-3,-16],[-11,28],[-16,33],[-32,-6],[-18,-18],[-12,-21],[-16,15],[-10,45],[-15,49],[-13,7],[-9,-2],[-10,-16],[-18,-69],[-23,-48],[-10,-2],[20,91],[29,102],[12,26],[4,-9],[16,-20],[23,-37],[13,-35],[23,7],[39,41],[34,57],[21,42],[13,12],[15,-2],[34,-11],[17,30],[-1,47],[-25,84],[-8,55],[17,-3],[11,-20],[13,-51],[15,-63],[11,-51],[14,-17],[16,2],[17,25],[17,-19],[13,-47],[27,-46],[31,-41],[25,-10],[26,-73],[27,-102],[2,-31],[-20,-6],[-15,10],[-4,23],[-11,41],[-7,44],[0,30],[-7,23],[-14,13],[-17,0],[-22,-20],[-16,-22],[-3,-16],[-5,-19]],[[58498,49175],[11,32],[10,35],[13,5],[9,-33],[7,-40],[-19,-37],[-27,-14],[-13,2],[-37,-49],[-52,-109],[-93,-149],[-37,-49],[-31,-72],[-86,-113],[-47,-29],[-42,15],[-32,4],[23,22],[88,89],[55,85],[49,35],[91,117],[48,87],[4,49],[0,33],[19,9],[51,47],[38,28]],[[25519,67149],[-29,-16],[-36,8],[-9,56],[-11,78],[-5,44],[-17,29],[-8,24],[-6,27],[-38,12],[-34,26],[16,13],[55,5],[57,-26],[46,-64],[47,-44],[32,-10],[13,-14],[3,-17],[-5,-21],[0,-24],[8,-28],[-7,-26],[-72,-32]],[[25808,67190],[10,-16],[-13,-59],[-17,-61],[-17,-53],[-43,-44],[-68,-20],[-50,6],[-26,20],[-1,19],[13,11],[5,22],[-3,32],[-11,12],[-13,18],[3,16],[97,39],[114,51],[20,7]],[[29178,64881],[-8,30],[1,31],[2,20],[-10,28],[-33,50],[-31,33],[3,26],[44,27],[35,17],[51,17],[52,12],[10,-10],[13,-20],[15,-16],[29,-18],[18,-28],[9,-63],[-16,-45],[-1,-22],[3,-26],[13,-28],[5,-29],[-5,-30],[-13,-26],[-24,-26],[3,-30],[38,-28],[40,7],[3,-9],[2,-49],[-15,-8],[-74,-6],[-74,61],[-43,43],[-28,44],[-13,41],[-1,30]],[[42645,53668],[7,23],[11,46],[14,33],[19,2],[11,-14],[13,-16],[14,-2],[12,16],[21,17],[26,10],[21,5],[36,-23],[31,-30],[7,-18],[56,-24],[58,-20],[-33,-38],[-65,-43],[-59,-11],[-46,6],[-33,32],[-30,30],[-51,10],[-40,9]],[[41310,50978],[-8,-16],[-9,-16],[-17,-6],[-40,41],[-52,79],[-25,55],[1,28],[12,28],[23,28],[17,9],[13,-15],[28,-7],[33,19],[19,-4],[16,-22],[9,-32],[10,-33],[14,-34],[-1,-14],[-30,-36],[-13,-52]],[[40800,53636],[-54,-4],[-46,-10],[-34,-10],[-16,3],[-62,20],[-82,53],[-38,41],[-7,32],[5,43],[2,31],[21,12],[18,11],[14,19],[33,14],[57,-3],[15,-15],[-9,-26],[-31,-30],[-1,-18],[16,-21],[31,-18],[54,6],[62,10],[55,8],[47,10],[40,-10],[21,-36],[-5,-48],[-42,-39],[-37,-17],[-27,-8]],[[52088,52899],[11,-13],[23,-6],[19,-3],[-22,-33],[-16,-40],[-3,-29],[9,-9],[-1,-21],[-4,-28],[3,-67],[12,-69],[10,-38],[-5,-29],[-26,20],[-16,52],[1,42],[-1,37],[0,24],[-8,14],[-19,4],[-7,-14],[-5,-30],[-18,-23],[-7,15],[-23,23],[-28,13],[-8,22],[1,53],[-3,37],[-16,9],[-14,-30],[-25,-30],[-19,-31],[-12,2],[-8,22],[-1,31],[15,35],[13,30],[12,3],[29,2],[33,13],[9,7],[4,19],[-3,14],[-11,13],[-27,6],[-2,13],[-1,15],[7,17],[33,-22],[28,-40],[19,-8],[25,-2],[24,19],[10,0],[9,-11]],[[35967,55059],[-28,-21],[-25,-6],[-40,21],[-22,-6],[-25,-22],[-22,-35],[-26,-57],[-15,-39],[-37,-17],[-60,-30],[-48,-22],[-32,11],[-20,20],[-4,46],[-1,46],[-5,26],[11,43],[8,38],[-3,24],[-3,21],[-3,18],[15,30],[32,34],[27,19],[10,-4],[50,-18],[58,26],[12,-5],[5,-9],[20,10],[19,-6],[19,-5],[26,16],[14,-5],[8,-20],[26,-25],[48,-3],[9,-6],[15,-65],[-13,-23]],[[41134,46164],[6,-38],[4,-34],[-13,-26],[-28,-15],[-33,2],[-27,21],[-24,42],[-9,55],[17,53],[38,36],[34,16],[18,-4],[9,-15],[5,-41],[1,-32],[2,-20]],[[51715,43555],[14,-25],[22,-23],[1,-18],[-8,-29],[-22,-7],[-44,65],[-35,30],[4,28],[3,23],[10,16],[6,17],[-2,13],[12,-2],[21,-23],[12,-33],[6,-32]],[[47835,44229],[-15,-40],[0,-34],[-9,-9],[-10,48],[-8,78],[-18,40],[-5,12],[8,26],[31,32],[27,47],[16,52],[10,40],[2,38],[7,58],[9,-9],[6,-53],[36,-73],[26,-28],[16,-44],[7,-42],[-4,-30],[-15,-35],[-67,-41],[-50,-33]],[[40949,54735],[69,-27],[42,-16],[21,-4],[-1,-9],[-26,-21],[-63,0],[-37,-14],[-10,-35],[-26,-38],[-80,-35],[-64,-18],[-23,-11],[-36,-21],[-17,-43],[-7,-21],[-14,-20],[-27,-22],[-59,-39],[-42,-29],[-2,15],[0,27],[5,23],[11,23],[40,41],[44,83],[24,45],[9,55],[6,62],[0,15],[18,4],[33,14],[46,23],[77,8],[47,-3],[42,-12]],[[29172,43211],[-20,1],[-21,-33],[-27,-18],[-20,23],[-19,40],[-15,51],[-6,40],[9,20],[66,11],[60,-20],[15,-61],[10,-46],[-5,-16],[-10,-1],[-5,3],[-12,6]],[[58760,48212],[-49,-68],[-60,-50],[11,37],[24,47],[17,34],[8,21],[12,31],[18,11],[14,-17],[13,-17],[-8,-29]],[[40152,55513],[-17,-38],[-23,-56],[-15,-43],[-26,-35],[-44,-21],[-27,-3],[2,18],[4,25],[5,25],[37,40],[10,42],[46,28],[48,18]],[[6954,65086],[3,-12],[-13,-22],[-37,-37],[-55,-37],[-53,-16],[-40,11],[-45,46],[-6,27],[23,17],[15,9],[78,-3],[96,8],[34,9]],[[7708,61033],[7,-15],[1,-23],[-10,-30],[-7,-21],[-12,0],[-8,22],[-18,37],[-19,31],[2,24],[21,26],[29,22],[32,2],[60,7],[41,5],[-21,-21],[-18,-13],[-38,-24],[-42,-29]],[[8321,60684],[3,-22],[-12,-10],[-21,-3],[-45,17],[-40,25],[-8,16],[6,15],[19,9],[28,1],[40,-17],[30,-31]],[[10056,59093],[-6,-35],[-18,-2],[-14,16],[-5,28],[-3,38],[-19,46],[-29,45],[54,-23],[32,-62],[6,-31],[2,-20]],[[10360,59833],[-16,-8],[-59,15],[-74,12],[-81,-27],[-57,-23],[-69,-15],[-25,0],[-32,4],[-8,13],[-6,21],[-5,17],[15,1],[47,-5],[115,33],[103,35],[27,-3],[30,-29],[55,-3],[31,-18],[9,-20]],[[9915,60086],[12,24],[36,22],[66,31],[31,10],[-10,-19],[20,-18],[26,-16],[2,-13],[0,-16],[-3,-11],[-63,11],[-81,11],[-31,-16],[-5,0]],[[10129,59455],[-55,-21],[-5,-25],[15,-26],[67,-26],[27,-22],[11,-19],[-24,3],[-59,11],[-23,6],[-30,37],[-59,34],[-26,32],[-17,47],[-24,56],[19,2],[71,-67],[25,5],[46,12],[70,-7],[-29,-32]],[[41427,48345],[-37,17],[-26,29],[-10,25],[8,8],[35,-22],[55,-28],[37,-7],[20,21],[20,28],[3,13],[-55,23],[-59,24],[-6,12],[1,10],[-25,7],[-38,-3],[-14,-10],[5,-16],[-9,-11],[-21,4],[-16,21],[-40,28],[-28,-7],[-17,14],[-3,3],[5,22],[0,18],[-15,25],[-1,23],[12,5],[13,7],[-6,31],[-25,37],[-38,28],[-39,13],[-16,8],[14,9],[43,-4],[28,7],[-3,23],[-5,18],[-6,16],[26,12],[30,14],[11,5],[13,-49],[16,-60],[16,-20],[12,-14],[0,-24],[1,-21],[-14,-28],[-17,-31],[2,-13],[7,-7],[11,4],[25,30],[22,27],[-5,-22],[-7,-31],[15,-7],[49,15],[17,5],[14,-6],[25,1],[49,13],[7,-18],[-35,-32],[-8,-11],[1,-10],[1,-9],[28,-11],[36,-16],[22,3],[14,8],[7,-12],[18,-23],[8,-31],[2,-24],[6,-9],[-15,-16],[16,-16],[36,-12],[10,-17],[10,-15],[7,-34],[-3,-33],[-1,-1],[-6,-5],[-11,15],[-19,32],[-39,26],[-78,6],[-73,3]],[[27354,55981],[-49,6],[-46,-13],[-56,-15],[-51,-4],[-41,-17],[-61,-66],[-138,11],[-136,30],[-31,-20],[-4,-53],[7,-55],[7,-24],[8,-9],[13,-6],[13,-45],[15,-51],[20,-24],[37,-50],[42,-54],[29,-51],[40,-83],[34,-64],[26,-23],[4,-9],[0,-35],[-2,-28],[2,-39],[5,-56],[5,-44],[2,-14],[-13,22],[-31,101],[-42,134],[-43,100],[-43,79],[-63,70],[-82,110],[-35,19],[-18,16],[-35,64],[-16,13],[-5,7],[-5,9],[3,21],[8,29],[-3,28],[-32,14],[-52,0],[-83,49],[-59,51],[13,1],[60,-34],[67,-28],[23,14],[4,20],[-39,59],[-51,63],[-64,152],[-168,350],[-1,44],[37,-15],[46,-84],[47,-91],[49,-95],[30,-70],[10,-32],[8,-23],[22,-36],[30,-46],[27,-24],[24,-3],[33,18],[10,-32],[-10,-69],[16,-53],[33,-40],[86,12],[87,-12],[71,-11],[104,-20],[57,18],[13,28],[57,40],[66,15],[36,8],[57,21],[34,-1],[68,-31],[76,-43],[19,-27],[1,-36],[-34,2],[-25,6],[-43,26],[-31,28]],[[39937,56033],[-14,-17],[-4,-18],[7,-15],[-6,-6],[-41,6],[-34,7],[-54,2],[-45,-8],[-48,-23],[-9,23],[32,64],[63,15],[44,12],[35,42],[72,53],[71,30],[30,-12],[-11,-26],[-32,-19],[-49,-24],[-33,-18],[14,-22],[15,-25],[-3,-21]],[[35100,47499],[-16,-36],[-8,-2],[8,52],[0,44],[-16,53],[-16,58],[-8,30],[-12,28],[-11,35],[-17,28],[-16,3],[-13,-21],[-19,-30],[-14,-43],[-3,-36],[-20,3],[-40,-14],[-40,-14],[-22,-8],[-12,-22],[-5,-44],[-7,-19],[-7,18],[-13,23],[-18,-5],[-24,-23],[-10,1],[-7,21],[-73,19],[-59,0],[-12,0],[-26,-31],[-20,-19],[-37,-11],[-50,0],[-51,-61],[-61,-95],[-31,-77],[-5,17],[6,64],[-3,37],[-6,34],[-9,15],[-16,11],[-30,12],[-60,3],[-12,18],[11,11],[61,1],[41,-12],[13,-14],[20,-50],[23,-12],[29,44],[32,43],[13,33],[-1,25],[-13,17],[52,-12],[72,-14],[15,18],[20,36],[21,12],[20,-6],[30,2],[53,1],[62,-9],[29,9],[-5,21],[3,18],[25,14],[28,5],[25,5],[15,17],[14,17],[25,19],[28,18],[7,20],[8,28],[-5,29],[-7,22],[25,24],[50,45],[13,-7],[18,-6],[20,-29],[-3,-36],[-13,-24],[7,-46],[28,-42],[15,-22],[-6,-22],[6,-24],[6,-30],[4,-48],[8,-62],[-1,-43]],[[37037,47481],[-43,21],[-46,-3],[-36,-21],[-10,-2],[5,27],[28,35],[29,32],[-4,48],[-13,52],[-42,7],[-65,21],[-26,34],[-18,97],[15,39],[4,36],[-21,44],[-50,48],[-66,36],[-75,6],[-61,-29],[-24,-33],[-48,-34],[-58,-14],[-29,12],[-14,45],[-15,24],[-39,-33],[-41,-46],[-11,10],[7,46],[18,29],[26,39],[43,11],[24,-45],[20,-27],[16,-14],[46,9],[67,69],[45,26],[42,9],[54,-9],[60,-26],[55,-39],[36,-53],[19,-85],[-10,-56],[1,-45],[1,-23],[23,-21],[31,-9],[25,-8],[12,14],[-8,58],[-7,61],[19,14],[30,12],[19,14],[7,-1],[-4,-16],[-6,-23],[-4,-13],[-3,-14],[8,-56],[11,-62],[7,-27],[25,-19],[8,-18],[-20,-52],[24,-53],[32,-19],[35,-20],[65,-23],[79,6],[44,12],[12,6],[5,13],[65,9],[84,20],[35,17],[19,-11],[11,-27],[-21,-22],[-30,-18],[-39,-34],[-34,-26],[-90,8],[-43,-17],[-44,-10],[-53,-20],[-16,-4],[-16,25],[-39,41],[-30,23],[-24,15]],[[22789,59498],[-14,-3],[-16,22],[-26,62],[-49,147],[-39,87],[-100,127],[-107,85],[-59,66],[-26,50],[-83,131],[-27,66],[51,-21],[75,-130],[86,-104],[46,-39],[53,-31],[33,-24],[29,-44],[46,-68],[19,-35],[22,-50],[22,-52],[3,-11],[5,-22],[6,-46],[37,-76],[17,-50],[-4,-37]],[[29539,49252],[-23,-6],[-51,76],[-16,38],[-20,71],[-8,80],[9,101],[4,49],[17,50],[4,-28],[-12,-190],[10,-68],[19,-58],[35,-51],[30,-31],[2,-33]],[[30344,48072],[-43,-21],[-49,-32],[-15,-32],[-3,-49],[-4,-41],[-16,-15],[-19,-5],[-12,6],[6,24],[9,49],[12,71],[19,53],[23,23],[16,17],[-3,21],[-9,18],[-15,7],[-18,9],[-26,-21],[-21,8],[18,34],[15,17],[31,1],[34,-18],[29,-48],[32,-53],[9,-23]],[[28538,47764],[-18,6],[-33,23],[-25,34],[-16,47],[-61,79],[-94,122],[-45,94],[-1,22],[44,-75],[102,-139],[75,-106],[45,-74],[27,-33]],[[35492,59020],[-76,-29],[-51,-44],[-34,-74],[-25,-58],[-24,-4],[-15,21],[6,38],[23,53],[122,119],[159,146],[46,-10],[50,-24],[31,-25],[-13,-37],[-17,-27],[-97,-27],[-42,-8],[-43,-10]],[[15950,62218],[-3,-19],[-17,-31],[-24,11],[-42,69],[-24,49],[0,34],[7,32],[2,28],[11,3],[6,-24],[7,-24],[12,-46],[33,-51],[32,-31]],[[40451,47944],[47,-28],[42,-34],[3,-33],[-7,-27],[-50,-17],[-102,-3],[-65,18],[-11,35],[9,46],[31,45],[48,31],[36,-5],[19,-28]],[[40427,48037],[22,27],[64,32],[71,19],[37,-4],[25,-21],[1,-37],[-20,-34],[-30,-24],[-41,-16],[-69,-2],[-54,8],[-11,22],[5,30]],[[39024,62434],[-12,18],[-27,41],[-38,57],[-35,25],[-10,-19],[-42,-52],[-17,-3],[1,50],[-4,42],[-15,23],[-15,32],[-13,42],[-5,24],[12,0],[11,-13],[25,-4],[45,0],[26,-2],[2,19],[4,22],[23,4],[23,-12],[20,7],[35,15],[51,2],[53,-3],[24,27],[16,56],[23,32],[7,-12],[-1,-43],[-9,-33],[-12,-27],[7,-36],[6,-46],[2,-65],[9,-54],[24,-24],[21,-35],[4,-35],[16,-34],[23,-32],[20,-17],[12,-1],[1,12],[-1,11],[5,1],[11,-7],[8,-16],[-4,-24],[-28,-29],[-32,-10],[-40,32],[-46,38],[-37,15],[-37,2],[-30,-9],[-15,-12],[-7,-18],[-11,-11],[-25,15],[-27,30],[-12,23],[15,10],[22,11]],[[52022,64568],[5,25],[-28,28],[-52,35],[-53,18],[-40,-6],[-25,-18],[-21,-61],[-61,-64],[-70,-7],[-35,-10],[-25,-17],[-31,4],[-44,19],[-67,49],[-49,47],[-9,23],[10,27],[-14,28],[-26,29],[-9,31],[-9,23],[-8,11],[-8,10],[7,14],[21,17],[18,6],[-1,-16],[-2,-19],[12,-5],[41,11],[16,-9],[-26,-36],[0,-29],[26,-20],[33,-5],[19,10],[-8,16],[-12,15],[79,24],[35,21],[3,16],[-14,25],[-50,38],[7,32],[20,23],[13,12],[4,30],[-11,47],[-35,60],[-22,53],[6,36],[6,30],[-25,45],[-23,44],[13,10],[44,-40],[49,-57],[28,-21],[26,-3],[34,-6],[28,-14],[7,-15],[7,-17],[18,-23],[66,-48],[74,-38],[13,-14],[17,-10],[49,-30],[36,-47],[14,-39],[9,-25],[6,-26],[1,-26],[48,-75],[56,-88],[14,-27],[3,-10],[-24,-21],[-25,-22],[2,-9],[2,-15],[3,-18],[23,-17],[16,-15],[-15,-8],[-44,18],[-57,19],[-44,3],[-4,17],[23,22],[6,10],[10,15]],[[37621,29448],[-1,-7],[-7,-9],[-20,-6],[-29,-19],[-23,-2],[-6,0],[-24,8],[-19,25],[-20,11],[-19,-5],[-7,8],[5,20],[7,37],[-3,15],[-6,7],[-10,-1],[-5,19],[1,19],[1,5],[1,7],[14,13],[30,-44],[15,-23],[19,-21],[16,-30],[17,-19],[18,16],[14,22],[6,-13],[8,22],[12,53],[3,-4],[-6,-41],[3,-36],[8,-22],[7,-5]],[[49248,47052],[20,-16],[20,0],[17,-3],[15,-17],[-2,-19],[-15,-15],[-14,-12],[-24,8],[-30,28],[-14,17],[-8,12],[-14,57],[-10,63],[-11,28],[-12,9],[-8,-12],[6,-44],[8,-37],[-15,15],[-18,42],[-3,69],[-13,43],[-19,3],[-4,28],[6,31],[4,33],[-5,27],[-21,21],[2,20],[34,41],[42,52],[46,57],[19,23],[3,-18],[-37,-49],[-50,-53],[-11,-31],[3,-15],[29,27],[24,20],[-7,-29],[-7,-32],[37,-13],[46,-22],[25,-29],[-7,-46],[-25,-69],[-7,-48],[-3,-33],[-3,-28],[-7,-21],[2,-31],[16,-32]],[[36769,20157],[4,-12],[-5,-20],[-16,-23],[-19,-15],[-32,15],[-39,30],[-35,15],[-39,-3],[-38,-2],[-41,21],[-40,31],[-15,29],[48,21],[79,26],[49,21],[51,-9],[59,-120],[13,-1],[16,-4]],[[44669,12290],[1,-41],[-2,-64],[-33,-22],[-41,-13],[-25,5],[3,29],[5,36],[-3,23],[-9,14],[-31,-5],[-39,-1],[-28,30],[-21,40],[-8,36],[0,26],[21,5],[36,17],[33,36],[29,16],[21,-6],[28,-91],[36,-67],[20,13],[7,-16]],[[47729,9127],[-8,-20],[0,-3],[-7,9],[8,5],[7,9]],[[47718,9088],[1,-2],[-51,-29],[-14,-28],[-9,0],[-4,9],[11,25],[11,26],[-12,12],[-19,22],[-12,14],[-6,-33],[-6,-42],[-10,-11],[-3,-25],[-3,-20],[-7,2],[-9,15],[-9,21],[-4,-4],[0,-19],[-5,-12],[-13,-4],[-9,-5],[4,24],[26,57],[29,94],[3,17],[3,-6]],[[47666,9245],[-2,46],[1,-23],[3,-31],[-2,-3],[0,11]],[[39029,50265],[-27,-53],[-27,-30],[-37,-33],[-44,-27],[-42,-12],[-34,2],[-25,7],[-31,31],[-15,45],[2,134],[-10,67],[-19,79],[-51,170],[-47,126],[-18,82],[-42,62],[-24,68],[-7,38],[-1,25],[9,13],[23,-37],[28,-78],[7,-9],[9,11],[9,33],[-3,28],[-10,9],[-19,79],[-27,14],[-12,20],[-23,45],[-24,72],[-29,163],[-12,40],[-45,20],[-29,54],[-24,18],[-27,-8],[-48,-81],[-7,32],[2,82],[-5,39],[1,14],[26,44],[23,20],[25,4],[25,-23],[22,-43],[25,-69],[10,-10],[18,17],[7,22],[-6,87],[6,14],[29,-40],[19,-50],[31,-175],[21,-78],[18,-37],[5,8],[3,24],[-5,85],[-29,162],[20,27],[17,7],[14,-2],[15,-23],[21,-45],[15,-51],[3,-36],[-13,-86],[1,-56],[11,-47],[23,-37],[54,-56],[9,-26],[-5,-25],[-24,-53],[-17,-61],[-23,-16],[-3,-29],[-14,-43],[-3,-21],[9,-60],[10,-23],[105,-52],[42,-36],[80,-104],[33,-59],[49,-109],[47,-81],[10,-50],[-4,-63]],[[38213,51519],[-48,-24],[-39,54],[-37,74],[-7,46],[24,77],[-26,158],[-14,41],[-8,4],[-3,-28],[11,-203],[-7,-68],[-6,-14],[-7,-3],[-11,28],[-31,135],[-22,225],[-2,138],[4,51],[9,46],[52,112],[17,103],[-25,82],[-9,114],[-15,32],[-70,69],[-13,7],[-11,-12],[-16,-26],[-8,-26],[8,-14],[23,-11],[17,-142],[-9,-19],[-7,2],[-12,28],[-18,21],[-9,41],[-29,60],[-10,151],[-7,28],[-33,15],[-19,29],[-17,1],[-31,-17],[-1,-21],[22,-73],[-27,-108],[-33,-27],[-37,2],[-7,14],[6,31],[-3,14],[-39,2],[-13,30],[-24,36],[4,50],[-5,56],[-6,22],[-45,72],[5,19],[19,24],[42,23],[32,-48],[36,-8],[45,7],[39,17],[26,23],[22,33],[13,0],[86,-64],[109,-52],[125,-80],[25,-29],[16,-32],[27,2],[7,-5],[3,-11],[-13,-87],[21,-202],[0,-71],[-7,-66],[-18,-65],[-59,-164],[5,-92],[9,-56],[28,-67],[3,-23],[0,-32],[-6,-34],[-20,-63],[-2,-45],[10,-69],[17,-9],[38,101],[9,-11],[2,-122],[11,-69],[-2,-23],[-10,-12],[-14,-3]],[[53160,51305],[18,-54],[6,-39],[-9,-40],[-43,-73],[-18,-43],[-45,-29],[-39,-46],[-54,-83],[-47,-275],[-2,61],[5,65],[-4,80],[-19,82],[-41,90],[-60,86],[-73,94],[-13,49],[7,67],[13,127],[-10,62],[-45,102],[8,17],[15,-15],[30,-28],[10,4],[8,49],[4,104],[14,25],[9,-163],[16,-42],[15,-2],[21,17],[37,72],[23,-37],[19,0],[32,8],[31,19],[19,46],[29,-1],[16,55],[21,72],[10,-9],[3,-15],[-6,-41],[-20,-115],[11,-30],[68,-30],[32,44],[21,21],[5,-15],[-35,-77],[1,-43],[-11,-35],[2,-30],[17,-41],[-2,-67]],[[53025,51299],[-20,64],[9,24],[11,-8],[31,-71],[18,-25],[21,-9],[-7,74],[5,61],[-4,29],[-39,59],[-57,39],[-55,2],[-29,-12],[-29,-20],[-55,-64],[-45,-64],[-23,-61],[5,-42],[14,-36],[8,-30],[15,-23],[43,-38],[28,-43],[51,-33],[35,-9],[42,12],[28,31],[33,14],[19,19],[13,24],[-2,28],[-42,64],[-22,44]],[[33985,56407],[-34,-22],[-28,2],[-11,31],[-3,89],[-7,57],[-24,23],[-34,18],[-6,39],[16,36],[35,29],[29,-21],[32,-77],[31,-18],[19,7],[17,-11],[33,-63],[6,-165],[42,-23],[50,-6],[41,-9],[28,-44],[-17,-74],[-38,-37],[0,-17],[7,-20],[-2,-90],[27,-80],[-6,-25],[-21,-23],[-19,-50],[-13,-50],[-25,-57],[-89,-93],[-41,-67],[-15,-49],[3,-63],[-14,-33],[-18,16],[-10,60],[4,66],[-5,55],[-13,92],[-21,61],[-75,30],[-55,-3],[-32,51],[-28,87],[10,40],[24,14],[101,-43],[97,-100],[25,-92],[9,-39],[38,31],[25,57],[0,97],[16,71],[39,52],[37,34],[3,54],[-22,46],[-15,-7],[-15,1],[-53,44],[-24,37],[2,62],[2,51],[-15,31]],[[35660,21761],[-1,-5],[-10,13],[11,-8]],[[33126,37829],[1,-27],[-19,-61],[-13,-99],[-61,-128],[-54,-132],[-11,-57],[-37,-83],[-29,-85],[21,-32],[68,15],[-13,-33],[-55,-5],[-97,-55],[-55,-38],[-37,-54],[-56,-7],[-36,-38],[-35,-59],[-8,14],[-27,97],[43,29],[26,-4],[22,8],[16,37],[23,47],[22,-28],[13,17],[9,29],[44,-26],[52,12],[36,113],[13,71],[29,17],[30,78],[-10,95],[11,10],[25,-5],[40,62],[20,38],[19,42],[32,96],[6,102],[15,35],[17,-8]],[[38869,57388],[45,-87],[49,-14],[35,7],[14,-11],[-16,-25],[-38,-45],[-39,-102],[-17,-79],[-11,-24],[-68,-18],[-80,-33],[-59,-82],[-45,-92],[-36,-46],[-40,0],[-30,22],[-32,-17],[-71,-110],[-59,-2],[-61,0],[-39,-23],[4,-27],[-2,-29],[-11,-13],[-34,40],[-21,49],[11,23],[56,22],[66,127],[14,57],[24,28],[48,-36],[34,4],[15,49],[26,44],[26,36],[2,-35],[-13,-75],[15,-48],[48,-2],[15,21],[-3,58],[11,56],[39,12],[38,45],[16,63],[5,39],[-8,42],[17,14],[43,-1],[16,25],[-5,51],[-9,106],[-27,72],[-1,56],[19,26],[8,-15],[-2,-30],[7,-23],[27,6],[35,40],[50,49],[42,15],[-1,-28],[-8,-45],[-22,-50],[-12,-37]],[[47487,48723],[13,23],[14,42],[8,36],[24,6],[49,15],[30,-10],[12,-34],[13,-15],[1,-22],[-11,-46],[2,-42],[10,-35],[30,-13],[33,6],[22,16],[18,31],[19,27],[37,-36],[41,-46],[42,-10],[31,-15],[5,-24],[-4,-67],[7,-54],[5,-41],[3,-31],[-10,-16],[-17,-7],[-15,3],[1,22],[0,23],[0,34],[8,46],[-1,31],[-11,22],[-25,14],[-31,4],[-19,-7],[-3,-12],[-1,-11],[-12,-6],[-43,8],[-47,20],[-25,3],[-24,-12],[-30,2],[-24,25],[-26,40],[-4,18],[-9,17],[-9,14],[-20,35],[-15,-8],[-27,15],[-15,22]],[[37921,44935],[-25,-11],[-14,-18],[-6,-37],[-4,-55],[-17,-49],[-23,-53],[-27,-31],[-20,-10],[-24,14],[-5,-16],[10,-82],[9,-67],[17,-17],[21,8],[13,-19],[-8,-51],[13,-23],[28,-7],[10,-22],[5,-19],[-3,-17],[-9,-15],[-31,24],[-43,3],[-20,24],[-13,33],[8,28],[-6,44],[-18,52],[-3,49],[-2,38],[-20,17],[-24,15],[-14,15],[-21,2],[-47,-16],[-60,-15],[-43,-7],[-12,1],[14,20],[41,17],[37,13],[9,22],[8,19],[24,2],[22,11],[27,4],[18,16],[-5,31],[19,2],[32,-17],[32,-39],[21,-17],[9,28],[19,31],[21,2],[7,25],[-1,42],[-1,60],[21,53],[26,49],[6,56],[6,58],[2,44],[-13,45],[-30,44],[-64,4],[-33,2],[40,22],[61,6],[27,7],[-6,33],[-11,24],[-26,57],[-52,79],[-40,64],[-5,15],[15,2],[35,-28],[40,8],[23,43],[4,23],[-3,36],[-8,61],[-30,82],[-49,118],[-38,111],[-4,42],[13,61],[14,28],[9,63],[-1,78],[-5,97],[-7,48],[-7,43],[-37,61],[-26,31],[-9,24],[4,18],[30,-9],[23,-36],[39,-52],[10,-57],[10,-75],[7,-98],[-11,-107],[-11,-92],[8,-47],[-1,-44],[12,-37],[20,-71],[29,-65],[26,-27],[12,-42],[5,-86],[-2,-82],[-4,-40],[-21,-27],[-5,-54],[15,-40],[33,-55],[12,-42],[1,-58],[4,-72],[8,-55],[-9,-81],[-6,-72],[10,-17],[1,-27],[-12,-27]],[[34285,63920],[-73,8],[-36,-7],[-44,-16],[-57,-39],[-41,-37],[-96,43],[-42,47],[-52,29],[-122,11],[-133,-55],[-84,-3],[-32,33],[131,15],[99,38],[60,-1],[188,67],[17,25],[-1,32],[-11,49],[10,55],[29,56],[35,26],[17,-16],[-3,-84],[9,-47],[28,11],[35,40],[19,-2],[-7,-39],[-35,-67],[-11,-28],[10,-25],[35,-14],[3,18],[34,17],[40,-40],[74,-43]],[[34278,63977],[7,-57]],[[34278,63977],[52,-5],[40,-18],[37,10],[41,31],[59,16],[68,3],[40,-31],[2,-33],[-3,-30],[0,-14],[-14,-40],[22,-57],[57,-1],[7,-12],[-8,-19],[-45,-69],[-35,-49],[-109,14],[-13,9],[-13,35],[-36,43],[9,60],[-4,33],[-22,16],[-57,-5],[-8,-24],[-15,26],[-45,54]],[[38464,43354],[51,-75],[64,-73],[35,-79],[59,-71],[65,-32],[5,-43],[-50,0],[-39,43],[-73,56],[-14,68],[-66,83],[-52,63],[-65,95],[-14,71],[-18,67],[-42,62],[14,84],[36,90],[6,45],[-10,59],[4,43],[20,-33],[10,-54],[-6,-62],[-26,-84],[-20,-54],[29,-60],[51,-166],[46,-43]],[[38446,26711],[16,-9],[15,-1],[3,-23],[-17,-74],[0,-61],[-7,-16],[-4,-11],[-13,-3],[-21,22],[-5,86],[-14,90],[-23,43],[-30,-8],[4,12],[11,14],[-2,65],[-14,62],[-2,6],[-1,4],[-29,67],[4,31],[3,-2],[17,-10],[21,-42],[44,-81],[28,-11],[0,-105],[16,-45]],[[34353,55110],[-26,93],[-57,116],[-17,51],[-22,37],[4,46],[24,20],[65,-46],[21,24],[-22,66],[-3,42],[25,4],[17,33],[1,104],[0,92],[14,27],[34,-176],[-19,-162],[-16,-103],[0,-71],[-25,-41],[11,-99],[-9,-57]],[[36233,60443],[-34,-49],[-13,-27],[-7,-56],[-79,-66],[-34,-14],[17,84],[8,108],[-45,53],[-49,46],[-30,52],[-34,18],[-13,23],[49,83],[23,62],[-17,30],[-22,-16],[-7,-33],[-31,-34],[-39,-4],[-24,21],[-3,21],[54,4],[10,23],[28,90],[1,28],[14,21],[40,4],[18,-21],[7,-24],[33,-43],[0,-35],[-8,-57],[5,-32],[37,12],[1,-21],[-38,-48],[1,-18],[44,13],[25,30],[25,11],[17,-8],[63,39],[39,42],[8,42],[5,37],[12,7],[33,-50],[-9,-67],[-70,-50],[-74,-78],[-54,-14],[-26,-25],[7,-43],[38,-23],[50,12],[28,28],[9,36],[23,33],[31,-10],[5,-59],[-48,-88]],[[40318,64885],[-67,-31],[-35,-51],[-1,-63],[5,-44],[-2,-25],[-13,-23],[-30,-4],[-20,20],[-13,24],[-2,20],[-6,20],[-36,27],[-41,49],[-28,-8],[-6,-43],[-5,-20],[-54,40],[-18,32],[13,51],[35,29],[36,8],[61,10],[45,18],[61,3],[121,-8],[0,-31]],[[52639,53984],[39,-35],[-25,-23],[-44,12],[-42,-18],[-45,-20],[-60,-37],[-28,-14],[-25,-1],[-17,9],[7,21],[13,23],[41,24],[18,14],[-2,32],[-24,8],[-42,23],[-65,38],[-35,-5],[-35,-24],[-5,19],[27,50],[35,44],[14,14],[26,15],[22,9],[5,28],[-5,22],[-22,9],[-25,-2],[-11,7],[-13,12],[-20,0],[-5,6],[19,29],[34,-7],[33,14],[20,-11],[26,-56],[5,-29],[53,-15],[-2,-28],[7,-15],[4,-15],[-19,-38],[3,-19],[52,-46],[53,-14],[20,19],[13,10],[27,-39]],[[52958,53700],[-12,-24],[-10,-85],[9,-79],[-4,-27],[-29,-5],[-37,16],[-7,-18],[0,-52],[-15,-40],[-16,-15],[-20,-13],[-38,-28],[-14,17],[19,48],[29,66],[18,50],[38,36],[19,31],[-5,41],[-14,20],[8,18],[21,10],[12,10],[7,21],[-23,50],[-44,30],[-29,31],[-19,32],[-25,18],[-78,-8],[-9,12],[6,18],[14,10],[14,0],[8,10],[-2,24],[6,16],[15,-17],[25,-15],[19,21],[8,13],[13,-30],[14,-12],[22,-14],[18,-33],[9,-42],[54,-74],[23,-24],[2,-14]],[[52219,54345],[-20,-8],[-18,-28],[-51,-49],[-37,48],[-9,33],[27,-8],[17,-22],[32,19],[68,50],[57,-7],[59,18],[18,25],[10,37],[0,64],[-4,38],[-19,30],[-33,-8],[10,45],[12,20],[23,-9],[16,-28],[19,-83],[10,-65],[0,-32],[31,-32],[4,-26],[-55,-10],[-32,-31],[-19,0],[-12,13],[-67,-2],[-37,8]],[[43740,36602],[16,-140],[8,-101],[24,-124],[21,-116],[-11,-113],[-20,-128],[-31,3],[28,150],[-4,135],[-23,73],[-13,7],[-12,-54],[-11,33],[-2,61],[16,92],[1,108],[-20,100],[-70,295],[-5,71],[36,-51],[72,-301]],[[46426,33892],[14,-27],[26,-80],[37,-73],[29,-80],[-10,-30],[-59,9],[-64,-32],[-51,2],[16,20],[48,9],[78,54],[-15,50],[-53,70],[-34,52],[-15,-5],[-16,-13],[-11,-14],[12,71],[-11,19],[-6,61],[20,-8],[30,-43],[20,-28],[15,16]],[[29304,52077],[55,-14],[50,20],[-18,-49],[-49,-26],[-21,-13],[-13,-21],[-26,-9],[-24,9],[-14,33],[-11,139],[-43,90],[-52,73],[-67,144],[-112,189],[33,-11],[60,-109],[121,-206],[53,-109],[78,-130]],[[46772,29314],[0,137],[20,-90],[48,-127],[5,-63],[-31,-26],[-21,59],[-12,57],[-9,53]],[[31227,34375],[-22,50],[14,52],[23,-62],[51,-57],[66,-103],[-25,-76],[-14,12],[-12,64],[-34,51],[-47,69]],[[27482,40796],[-5,-65],[6,-12],[54,6],[10,-16],[-3,-17],[-24,-21],[-42,9],[-59,-30],[-22,-3],[-8,22],[5,25],[10,61],[16,-10],[5,-35],[24,19],[20,57],[13,10]],[[31351,65259],[-41,68],[-122,31],[17,84],[12,54],[-8,41],[80,20],[26,-38],[-4,-27],[-55,-12],[5,-44],[31,-33],[26,-27],[43,-20],[37,-27],[30,-4],[3,-19],[10,-23],[33,-34],[104,48],[50,-31],[55,-4],[62,19],[75,-15],[-6,-24],[-47,-6],[-44,-23],[2,-14],[19,-12],[70,-14],[121,-50],[92,-38],[61,3],[42,13],[16,1],[64,-1],[36,6],[-2,-34],[-40,-9],[-19,-54],[26,-91],[23,-72],[-22,-14],[-14,9],[-15,52],[-32,91],[-19,49],[-34,7],[-58,0],[-82,30],[-29,13],[-27,10],[-27,-17],[-31,20],[-124,44],[-88,12],[-52,-19],[-81,-9],[-77,91],[-50,26],[-21,17]],[[27620,42527],[-3,-105],[13,-24],[44,-66],[10,-120],[-1,-38],[-15,5],[-39,76],[1,28],[-17,36],[-41,32],[-8,46],[20,48],[25,67],[11,15]],[[28926,43151],[-4,26],[10,26],[24,26],[54,-49],[7,-20],[-9,-41],[-27,-37],[-39,23],[-16,46]],[[53538,45558],[5,-34]],[[53543,45524],[-19,-12],[-11,-6],[-54,13],[-73,68],[-40,69]],[[53346,45656],[37,20]],[[53383,45676],[37,-67],[51,-55],[18,3],[15,2],[25,41],[9,-42]],[[20386,61391],[25,-46],[9,-71],[16,-75],[24,-38],[2,-37],[-6,-9],[-5,8],[-10,27],[-24,31],[-41,157],[-78,92],[-90,93],[38,17],[53,-41],[32,-34],[55,-74]],[[11677,58530],[-58,-20],[-37,-15],[4,-25],[71,-29],[11,-17],[-22,-16],[-64,5],[-45,35],[-44,43],[-89,3],[-64,4],[-76,24],[-27,36],[-14,26],[31,18],[69,3],[1,12],[21,5],[30,-16],[25,-13],[14,-12],[81,-5],[132,-20],[59,-2],[-9,-24]],[[8164,60929],[-91,43],[13,26],[96,-28],[42,-4],[-60,-37]],[[12144,60113],[77,56],[106,61],[190,90],[30,6],[-16,-33],[-189,-102],[-97,-71],[-137,-116],[-82,-73],[-15,29],[53,74],[32,39],[15,6],[33,34]],[[13717,60117],[8,26],[40,52],[81,-33],[84,-113],[31,-37],[-13,-74],[-17,4],[-24,31],[-31,45],[-50,40],[-40,38],[-18,12],[-51,9]],[[9513,61239],[-41,-11],[-20,19],[14,47],[30,16],[33,-20],[17,-35],[-33,-16]],[[8417,60840],[5,-33],[15,-28],[29,-37],[-18,-26],[-16,-6],[-45,9],[-12,69],[-1,51],[17,40],[26,-39]],[[7751,61450],[33,-44],[-29,-46],[-15,50],[-69,56],[-40,40],[-7,27],[20,3],[71,-46],[36,-40]],[[7869,62557],[-20,-19],[-11,-78],[-28,26],[-17,75],[26,10],[52,25],[21,-31],[-23,-8]],[[43928,34750],[57,37],[75,1],[55,-44],[125,-125],[33,-72],[18,-35],[-29,-10],[-173,201],[-90,26],[-59,-27],[-31,8],[19,40]],[[49153,51280],[59,-10],[-4,-19],[-90,-56],[-131,40],[21,15],[38,11],[20,25],[10,25],[10,11],[27,-25],[40,-17]],[[42141,51026],[13,-48],[-72,14],[-24,33],[-26,35],[18,13],[50,-4],[30,1],[11,-20],[0,-24]],[[41878,51863],[10,24],[26,-30],[-8,-41],[-10,-16],[-17,30],[-11,12],[10,21]],[[48231,50984],[31,-43],[-125,63],[-7,55],[16,-6],[35,-37],[50,-32]],[[48225,47510],[-32,-20],[-32,-6],[-11,24],[-6,31],[-7,30],[10,35],[33,-7],[53,-3],[19,-25],[-6,-31],[-9,-17],[-12,-11]],[[48870,47504],[18,-41],[28,-3],[22,14],[13,-16],[18,-36],[48,-6],[14,-15],[-15,-45],[-73,35],[-31,-21],[3,-45],[6,-22],[-8,-20],[-37,-23],[-13,40],[8,76],[-16,51],[-8,60],[8,33],[8,7],[7,-23]],[[34210,64597],[2,22],[19,12],[14,-4],[17,-25],[-4,-10],[-36,-13],[-12,18]],[[34163,64528],[-10,-11],[-15,-10],[-114,-66],[-25,3],[18,36],[79,56],[42,30],[29,2],[-4,-40]],[[33810,64482],[-28,14],[-32,-20],[-16,-7],[-5,16],[1,53],[17,30],[-4,25],[4,16],[63,-21],[18,-42],[19,-57],[15,-55],[-16,9],[-36,39]],[[33657,64476],[-15,14],[-27,47],[-11,47],[1,32],[6,23],[27,1],[24,-18],[-7,-13],[-14,-25],[6,-40],[58,-81],[-5,-33],[-30,-11],[-23,0],[18,28],[-8,29]],[[48112,71031],[35,-15],[58,-20],[0,-14],[-13,-11],[-94,-12],[-150,8],[-61,25],[-13,28],[19,20],[23,5],[90,3],[100,-5],[6,-12]],[[35912,69591],[-64,15],[-103,122],[48,3],[133,-19],[29,-9],[30,-15],[-14,-59],[-59,-38]],[[38828,67261],[38,-34],[35,-18],[-21,-43],[-71,-96],[-33,14],[-26,36],[-3,29],[14,79],[17,70],[25,-7],[25,-30]],[[39826,55137],[37,34],[72,15],[96,74],[30,39],[42,1],[12,-37],[-27,-56],[-46,-28],[-132,-62],[-58,-5],[-26,25]],[[36934,54478],[13,77],[23,61],[43,22],[38,-30],[5,-109],[-10,-105],[-20,-38],[-41,-7],[-40,27],[-18,41],[7,61]],[[35293,54135],[40,180],[7,78],[14,17],[20,-21],[35,-29],[7,-69],[-8,-63],[-31,-59],[-18,-46],[-16,-72],[-3,-64],[-20,-30],[-23,22],[-3,83],[-1,73]],[[51886,53421],[-1,-36],[15,-24],[20,-7],[9,-24],[-11,-21],[-55,24],[-32,70],[-37,65],[5,25],[46,5],[33,-31],[8,-46]],[[56657,52454],[86,-106],[7,-34],[24,-52],[26,-29],[1,-8],[-22,-5],[-43,63],[-24,46],[-61,52],[-24,39],[-87,73],[-70,14],[75,16],[112,-69]],[[32351,64542],[4,30],[-77,90],[-84,80],[-8,38],[109,-50],[108,-147],[-19,-42],[-19,-21],[-14,22]],[[45855,48290],[-37,-39],[-44,-35],[-24,11],[-45,-8],[34,30],[63,83],[39,7],[11,-1],[21,-2],[68,82],[-18,-73],[-68,-55]],[[34698,55718],[2,35],[23,35],[30,31],[24,6],[8,-19],[-49,-76],[5,-17],[-17,-9],[-26,14]],[[34979,55529],[-20,9],[-4,18],[-13,10],[5,21],[47,40],[46,31],[7,-20],[-14,-49],[8,-29],[-21,-13],[-41,-18]],[[36823,62543],[8,-52],[9,-53],[4,-53],[-12,-49],[-44,-32],[-32,-8],[29,150],[-8,42],[-36,67],[-2,35],[37,58],[16,-3],[31,-102]],[[36418,61254],[-10,19],[-5,46],[11,82],[54,49],[52,80],[11,34],[32,-23],[-23,-65],[-50,-68],[-46,-125],[-26,-29]],[[36233,58502],[18,60],[6,22],[59,11],[19,-24],[11,-17],[-11,-54],[-22,-62],[-49,29],[-23,9],[-8,26]],[[52733,56404],[14,-175],[22,-60],[128,-183],[6,-33],[-155,192],[-32,78],[-3,102],[-38,76],[27,59],[43,87],[-4,-44],[-8,-99]],[[43325,66455],[-76,-93],[7,72],[54,52],[80,25],[-13,-37],[-52,-19]],[[43670,66511],[53,-28],[-57,-23],[-34,53],[-54,22],[-72,-17],[-64,-60],[-13,17],[0,36],[25,32],[20,46],[23,4],[50,-14],[58,5],[65,-73]],[[163,68770],[-163,84],[0,1991],[208,-76]],[[418,71456],[-418,-58],[0,13447],[64223,0],[0,-1842]],[[64223,82850],[0,-51]],[[64223,82755],[0,-133]],[[64223,82454],[0,-97]],[[64223,81912],[0,-281]],[[64223,60376],[0,-178]],[[64223,60068],[0,-60068],[-2064,0]],[[61963,0],[-97,0]],[[61835,0],[-529,0]],[[47517,0],[-5283,0]],[[42065,0],[-42065,0],[0,64909],[18,16]],[[64223,82110],[0,-76]],[[44470,32972],[0,-18],[29,-178],[7,-25]],[[44623,33527],[-6,-28],[-56,-116]],[[42191,50970],[113,-65],[95,16],[115,73],[68,28],[35,-22]],[[42055,51069],[86,-94]],[[41968,51241],[-50,123]],[[41904,51667],[17,-39],[-2,-53],[-15,-79],[-3,-56],[14,-47]],[[41898,51798],[-20,95]],[[32818,58584],[-29,-186]],[[32692,58681],[34,-68],[32,-24],[60,-5]],[[33999,64444],[168,124]],[[34210,64597],[52,5]],[[38697,65807],[-9,75],[-19,21],[-31,-10],[-44,18],[-56,45],[-65,-14],[-72,-73],[-90,-57],[-106,-40],[-76,-7],[-46,27],[-80,-3],[-113,-33],[-109,-5],[-104,24],[-82,3],[-60,-19],[-102,10],[-217,58]],[[39358,65854],[130,177]],[[45210,30866],[38,-163],[1,-38]],[[45162,31578],[-27,141],[0,103],[28,170]],[[45758,34301],[-124,-196]],[[54860,53028],[-15,150],[1,64],[16,43]],[[31219,34477],[2,-51],[30,-56],[71,-77],[16,-38],[0,-3],[0,-28],[-18,-33]],[[31117,35288],[-28,123],[-6,70],[8,85]],[[31045,35948],[12,71],[23,37],[36,26],[42,8],[47,-8],[35,-32],[24,-55],[23,-29],[24,-1],[30,46],[27,98],[28,20],[26,-35],[90,-153],[59,-175]],[[33126,37829],[-15,-15],[-11,-51],[-4,-60],[-19,-70],[-33,-75],[-54,-105],[-19,-38],[-2,-31],[-12,-47],[-28,-69],[-64,-179],[-49,-30],[-134,-72],[-62,-51],[-20,-71]],[[35289,40111],[-19,-20]],[[29461,48575],[-49,-151],[-11,-108],[14,-172]],[[29451,49711],[-18,-138],[1,-90],[15,-89],[39,-81],[51,-61]],[[29540,50590],[-5,-217],[11,-126],[26,-107],[5,-72],[-25,-56]],[[29725,51565],[-169,211]],[[29244,52007],[77,-12]],[[32186,64780],[139,-122],[45,-65],[-5,-73]],[[31316,65519],[-1,0]],[[31315,65519],[-62,2],[-24,-32],[-5,-64],[36,-48],[77,-32],[45,-39],[11,-47],[106,-42],[203,-38],[160,-46],[116,-53],[86,-22],[56,9],[45,-48],[34,-106],[12,-58],[-13,-13]],[[27630,42398],[2,-56],[51,-168]],[[51929,53330],[-50,12],[-21,29],[-7,50],[-16,36],[-36,36]],[[51362,53500],[52,-26],[26,12],[26,62]],[[50221,53587],[-126,-53],[-73,-4],[-54,20],[-130,8],[-180,18],[-88,-10],[-44,47],[-115,-12],[-251,-31],[-179,9],[-75,22],[-54,33],[-52,66]],[[29653,61196],[212,-157],[188,-68],[234,-31],[161,-3],[89,25],[146,83],[205,142],[239,40],[412,-93]],[[32778,44675],[-9,5],[-34,10],[-25,28],[-28,63],[-4,6]],[[40757,47319],[59,52],[28,7],[24,-32]],[[40671,47370],[-62,-17]],[[38360,43911],[18,-97],[-12,-76],[-37,-88],[-5,-55],[24,-22],[21,-53],[16,-84],[56,-100],[94,-116],[50,-74],[5,-33],[40,-45],[113,-87]],[[32580,46278],[-12,106],[-21,75],[-54,118]],[[37688,46628],[73,-105],[27,-94],[6,-120],[-8,-106],[-20,-91],[27,-155],[75,-218],[15,-117],[0,-32],[-16,-31],[-15,-30],[-2,-51],[2,-26],[13,-30],[30,-56],[22,-133],[-2,-182],[-10,-80],[-12,-16],[-13,-4],[-13,-40],[-4,-75],[-16,-64],[-29,-53],[-37,-18],[-46,19],[-6,-7],[-2,-18],[17,-42],[12,-55],[1,-59],[12,-42],[22,-23],[3,-25],[-3,-26],[12,-28],[56,-27],[12,-15]],[[37392,47419],[-13,46],[-58,4],[-106,-22],[-97,14],[-88,50],[-51,71],[-14,91],[-23,39],[-30,-13],[-39,8],[-47,30],[-14,57],[19,84],[-17,72],[-52,62],[-71,38],[-89,13],[-56,-15],[-25,-43],[-37,-33],[-50,-24],[-39,18],[-28,60],[-36,1],[-68,-87]],[[35011,47933],[-54,-134],[-39,-64],[-133,-115],[-76,-13],[-105,12],[-59,-12],[-12,-35],[-30,-14],[-49,8],[-54,-45],[-59,-96],[-35,-10],[-25,79],[-38,17],[-84,4]],[[39677,50886],[1,329],[-17,174],[-35,128],[-118,248],[-202,370],[-127,301],[-50,234],[-39,275],[-39,476]],[[39051,53421],[21,195],[-18,62],[-35,60],[-17,50],[3,38],[2,42],[9,22],[34,15],[55,22],[32,56]],[[39056,54605],[53,-134]],[[39035,54848],[329,287]],[[39698,55961],[23,44],[40,21],[64,13],[43,30],[20,47],[45,36],[104,37]],[[40232,56236],[310,55]],[[47970,46742],[-95,194],[-34,112],[-3,94],[-18,91],[-32,88],[-6,75],[30,94]],[[47719,9087],[-30,8],[-3,4]],[[27487,55919],[-124,91],[-100,11],[-115,-38],[-73,-39],[-31,-41],[-81,-5],[-132,29],[-94,4],[-55,-22],[-81,74],[-108,170],[-68,133],[-30,94],[-50,104],[-102,169]],[[31482,58603],[52,-41]],[[27547,40709],[-131,-20]],[[48782,47469],[-6,10],[-6,29],[-22,1],[-30,-20],[-10,6],[-1,16],[34,73]],[[48847,47487],[10,-12],[17,-35],[23,-20],[28,25],[20,-5],[14,-34],[23,-14],[49,9]],[[48180,47597],[-10,-12],[-33,-16]],[[48749,47657],[-1,22],[-7,54],[-11,10]],[[41207,48528],[1,0]],[[41208,48528],[14,3],[81,17],[190,41]],[[42188,48739],[-58,75],[-37,9],[-53,-47]],[[38317,27007],[4,-13],[2,-7],[67,-151],[34,-123],[21,-148],[7,-49]],[[37564,29407],[-126,173]],[[34588,32850],[6,204]],[[34642,33113],[5,182]],[[49086,51322],[18,-61],[24,-17],[84,26]],[[49854,51353],[56,-4],[41,-24],[25,-44],[25,-8],[37,45]],[[36735,20273],[5,-111]],[[36294,20899],[54,34]],[[35630,21782],[21,-14],[12,-29]],[[27416,40689],[-19,-42]],[[28687,36933],[46,62]],[[45303,11097],[-98,90],[-131,245],[-295,644]],[[38425,53088],[387,169],[158,82],[81,82]],[[37905,53495],[75,-89],[47,-98],[42,-137],[59,-56],[76,25],[72,-10],[101,-68]],[[36431,53554],[-76,-23],[-56,-43],[-92,-105]],[[36899,53883],[27,-15]],[[46341,33956],[113,-180],[45,-88],[23,-86]],[[31723,42576],[-74,21]],[[31938,42735],[107,210]],[[32802,43128],[-21,27],[-44,104]],[[34798,51169],[77,-132],[0,-58],[-53,-27],[-47,-82],[-40,-139],[-83,-101],[-124,-62],[-116,-24],[-162,22]],[[44291,34512],[-164,179],[-75,64],[-41,10],[-41,-10],[-61,-45]],[[43778,35880],[-13,16],[6,50],[20,88],[-5,116],[-30,142],[-16,125],[0,107],[-27,147],[-81,283]],[[22789,59498],[-122,313],[-92,148],[-101,88],[-96,105],[-135,186]],[[35759,62956],[49,57],[15,49],[-4,92]],[[39831,64184],[393,-143],[0,0]],[[40224,64041],[189,0],[113,-32],[100,-64],[82,-20],[97,34]],[[37196,64294],[131,82]],[[39436,64643],[-28,-46],[-62,1],[-104,34],[-125,-10],[-145,-53],[-88,-21],[-30,13],[-26,-27],[-24,-67],[-29,-30],[-33,8],[-59,-23],[-85,-53],[-66,4],[-48,61],[-90,31],[-132,2],[-104,18],[-76,36],[-66,-5],[-57,-47],[-91,-14],[-188,31]],[[46066,34535],[54,-87],[37,-34],[37,-11],[24,-29],[14,-71]],[[40620,49901],[51,-284],[-20,-134],[-73,-77],[-47,-71],[-21,-64],[-3,-34],[-4,-68],[9,-139],[18,-116],[43,-140]],[[39949,50191],[17,121]],[[39966,50312],[0,1]],[[39677,50886],[62,-204],[36,-89],[46,-61]],[[36257,58584],[57,-146]],[[32818,58584],[101,53],[79,76],[90,116],[91,94],[91,72],[138,80],[183,89],[136,33],[87,-23],[192,15],[295,54],[184,10],[73,-32],[186,-26],[451,-32]],[[35418,59042],[143,44],[64,6],[49,-27]],[[36526,61569],[13,-38],[-15,-34],[-39,-43],[-31,-66],[-36,-134]],[[36669,62205],[5,-37],[22,-22],[41,-18],[24,-26],[6,-34],[-33,-51],[-73,-69],[-53,-82],[-52,-143]],[[37795,62241],[228,-128],[111,-13],[106,87]],[[37505,62253],[203,-11]],[[37187,62406],[-7,-69],[9,-61],[24,-76],[58,-19],[137,55]],[[38843,62501],[52,101],[75,38],[115,10],[68,57],[32,157]],[[37330,62550],[-3,126],[-21,71],[-38,57],[-58,23],[-120,-17]],[[36792,62645],[-9,-66],[7,-51],[21,-60],[-6,-65],[-48,-106]],[[39267,63042],[82,356]],[[40019,63540],[-201,-43],[-128,-5],[-182,29]],[[40200,63934],[24,107]],[[44506,32752],[85,-189],[12,-95],[-32,-65],[-9,-42],[-5,-11],[-17,9],[-23,-10],[-28,-40],[-29,-5],[-29,31],[-23,3],[-15,-24],[-17,-5],[-19,16],[-13,-10],[-4,-20],[-7,-1],[-7,9],[-8,48],[-7,10],[-7,0],[-19,-39],[-19,-8],[-18,24],[-17,7],[-15,-13],[-1,-20],[13,-29],[-9,-25],[-33,-20],[-9,-37],[13,-52],[-11,-31],[-35,-9],[-19,-29],[-1,-49],[-17,-4],[-33,41],[-26,-16],[-21,-75],[0,-56],[22,-37],[-5,-26],[-32,-15],[-5,-33],[23,-52],[-4,-51],[-31,-50],[-11,-54],[10,-59],[-6,-42],[-23,-25],[-9,-36],[6,-47],[-19,-39],[-42,-30],[-35,-66],[-27,-102],[-21,-55],[-14,-7],[-9,-12],[-2,-22],[-3,-198],[-9,-90],[-17,-30],[-5,-39],[2,-66]],[[44561,33383],[-17,-26],[-5,-36],[2,-55],[-14,-51],[-29,-47],[-10,-39],[7,-32],[-3,-43],[-20,-54],[-2,-28]],[[45107,34197],[-152,-50],[-74,-5],[-21,-2],[-12,-10],[-3,-19],[13,-19],[0,-21],[-13,-21],[-18,-5],[-20,5],[-12,-12],[-3,-24],[-9,-18],[-8,0],[-8,-8],[-2,-18],[-9,-22],[-14,0],[-7,-18],[-1,-25],[-8,-23],[-23,-16],[-11,-43],[4,-74],[-17,-58],[-37,-40],[-15,-46],[-1,-51],[-3,-27]],[[42141,50976],[50,-6]],[[42617,50999],[264,105],[128,80],[81,90],[61,51],[43,11],[30,31],[18,49],[23,5],[27,-41],[41,9],[54,58],[52,29],[51,0],[34,-20],[20,-39],[66,-18],[115,1],[112,-60],[109,-119],[84,-55],[58,10],[60,40],[62,68],[60,35],[58,0],[56,29],[82,86],[44,54],[18,52],[8,71],[15,44],[22,20],[28,6],[33,-9],[39,-36],[45,-62],[76,-22],[107,17],[103,-58],[98,-134],[55,-93],[12,-53],[69,-73],[128,-94],[87,-17],[46,58],[134,97],[220,137],[143,139],[66,141],[67,108],[67,74],[64,41],[61,6],[60,43],[59,77],[61,48],[94,27],[82,55],[26,31]],[[41968,51243],[27,-59],[19,-19],[12,-15],[6,-29],[3,-25],[20,-28]],[[41915,51393],[3,-29]],[[41898,51797],[6,-130]],[[41722,51879],[29,-26],[39,4],[88,36]],[[48591,41756],[-66,-51],[-40,-10],[-54,19],[-64,87],[-17,65],[7,70],[-33,47],[-72,22],[-48,28],[-24,34],[-35,-16],[-47,-67],[-28,-76],[-11,-85],[-39,-51],[-67,-14],[-51,-45],[-35,-75],[-17,-64],[1,-79],[-18,-65],[-29,-26],[-46,-8],[-42,-24],[-39,-42],[-14,-32],[10,-21],[-4,-25],[-17,-27],[8,-36],[34,-43],[30,-66],[27,-89],[10,-54],[-8,-20],[16,-26],[31,-27],[3,-33],[-13,-82],[-74,-186],[-62,-117],[-56,-64],[-21,-8]],[[42303,33735],[-22,28],[-13,39],[-8,58],[-23,33],[-39,7],[-12,12],[-4,17],[-5,13],[-21,1],[-16,21],[-9,40],[-23,25],[-37,9],[-56,53],[-77,96],[-36,22],[-9,-5],[-16,8],[-21,41],[-44,132],[-22,118],[0,106],[-33,84],[-67,61],[-39,59],[-10,57],[-18,39],[-25,21],[-8,41],[6,61],[-15,23],[-56,-24],[-57,66],[-47,23],[-57,1],[-68,59],[-78,119],[-78,51],[-77,-15],[-54,21],[-32,58],[-44,15],[-58,-27],[-29,-33],[-1,-38],[-10,-22],[-19,-7],[-31,19],[-43,44],[-34,-14],[-26,-74],[-21,-28],[-18,17],[-17,-5],[-16,-28],[-14,2],[-14,34],[-46,42],[-80,50],[-55,63],[-30,76],[-25,39],[-18,1],[-8,32],[4,62],[-7,47],[-18,34],[-47,15],[-74,-6],[-41,27],[-6,58],[-38,50],[-67,43],[-45,61],[-22,81],[-38,42],[-55,2],[-29,20],[-3,39],[-23,43],[-44,47],[-33,19],[-21,-10],[-10,20],[1,50],[-18,33],[-37,16],[-26,41],[-15,66],[-12,4],[-19,-11],[-28,-38],[-26,-25],[-19,3],[-12,15],[-6,26],[9,29],[17,25],[2,12],[-9,12],[-20,4],[-19,24],[-6,46],[28,41],[63,39],[12,21],[-1,16],[-18,15],[-18,69],[-8,115],[-26,77],[-42,39],[-29,92],[-15,142],[-33,167],[-51,191],[-167,234],[-283,279],[-164,141],[-45,3],[-60,-41],[-75,-85],[-98,-168],[-121,-249],[-107,-108],[-138,51],[-375,187],[-167,36],[-84,-53],[-154,32],[-223,115],[-220,53],[-218,-12],[-144,-25],[-70,-40],[-61,6],[-50,51],[-63,38],[-116,37],[-77,64],[-82,22],[-114,1],[-84,37],[-54,74],[-73,53],[-90,34],[-89,-8],[-88,-51],[-84,25],[-82,101],[-41,84],[2,66],[-24,125],[-71,275],[-45,145]],[[29697,52075],[15,39],[-4,62],[-44,184],[-14,81],[-25,41],[-41,28],[-24,41],[-7,54],[-23,56],[-39,58],[-17,57],[3,56],[-7,49],[-15,40],[23,95],[61,150],[109,152],[154,154],[81,106],[7,59],[-1,40],[-10,21],[10,43],[30,67],[88,104],[146,140],[96,77],[48,15],[86,-18],[126,-53],[121,-23],[115,6],[94,45],[73,85],[77,46],[81,9],[73,50],[65,91],[32,84],[-2,76],[34,162],[102,370]],[[31378,55067],[134,61],[77,-57],[63,-154],[25,-116],[-13,-79],[14,-51],[42,-23],[31,25],[20,73],[66,63],[110,52],[53,39],[-2,27],[-16,22],[-29,17],[-8,49],[14,82],[22,59],[30,34],[2,94],[-26,152],[10,110],[46,68],[14,73],[-16,79],[-5,79],[7,78],[16,73],[26,67],[-11,90],[-49,115],[15,93],[80,72],[107,37],[135,1],[117,41],[100,79],[45,103],[-9,128],[-22,98],[-34,66],[-25,79],[-17,91],[-5,76],[7,61],[35,115],[64,170],[26,124],[-13,77],[4,66],[20,54],[5,43],[-12,33],[-2,40],[5,46],[-12,40],[-30,34],[-20,52],[-10,72],[1,47],[14,22],[54,14],[96,5],[48,15],[-3,36]],[[32692,58681],[38,104],[-16,54],[-84,58]],[[33858,64444],[141,0]],[[34167,64568],[43,29]],[[34262,64602],[62,35],[35,48],[30,73],[51,76],[72,79],[38,76],[4,73],[-5,63],[-15,54],[22,68],[58,81],[65,30],[71,-19],[72,-59],[73,-98],[89,-52],[104,-5],[55,-15],[8,-24],[102,-41],[295,-87],[129,-6],[170,41],[255,85],[192,86],[129,86],[76,76],[22,64],[34,46],[47,29],[118,16],[190,4],[112,25],[33,46],[6,48],[-23,48],[36,62],[142,113]],[[38697,65807],[27,-43],[28,3],[38,33],[50,9],[62,-16],[38,13],[15,40],[26,33],[38,25],[58,-12],[76,-48],[80,-16],[125,26]],[[39487,66031],[163,-60],[85,2],[62,43],[73,70],[83,95],[57,87],[34,77],[13,60],[0,90]],[[37820,32845],[28,52],[58,37],[98,40],[55,57],[14,73],[2,83],[-11,92],[46,95],[101,97],[88,49],[74,2],[43,-28],[11,-58],[19,-30],[28,-1],[21,-28],[15,-55],[13,-21],[13,11],[11,-18],[9,-48],[34,-60],[87,-110],[-6,-54],[9,-43],[22,-49],[18,-3],[15,45],[28,1],[40,-41],[13,-40],[-14,-37],[1,-36],[17,-33],[28,-9],[39,16],[27,-17],[15,-51],[-3,-33],[-9,-13],[4,-19],[14,-16],[87,-55],[59,-75],[30,-94],[34,-63],[37,-32],[7,-26],[-25,-21],[-10,-33],[7,-46],[23,-45],[41,-45],[23,-11],[12,11],[5,-5],[1,-10],[-3,-63],[24,-86],[48,-111],[25,-83],[1,-57],[32,-89],[64,-122],[42,-120],[32,-176],[119,-452],[67,-181],[57,-58],[35,-66],[15,-74],[22,-35],[29,3],[24,-17],[18,-38],[-3,-66],[-24,-94],[-2,-72],[21,-49],[15,-111],[10,-173],[13,-92],[24,-19],[35,-15],[70,-31],[49,-42],[27,-54],[13,-86],[-1,-121],[-8,-92],[-14,-64],[24,-67],[61,-70],[30,-57],[-5,-48]],[[45248,30665],[-3,-53],[-32,-94],[-57,-302],[-18,-101],[2,-90],[33,-85],[13,-85],[-8,-87],[5,-50],[26,-27]],[[45162,31577],[6,-62],[-18,-276],[12,-178],[48,-195]],[[45634,34105],[-14,-76],[-23,-49],[-37,-47],[-29,-15],[-23,18],[-43,-72],[-64,-160],[-78,-143],[-92,-126],[-55,-100],[-19,-72],[-5,-71],[8,-69],[-12,-76],[-31,-84],[-11,-86],[13,-133],[68,-277],[19,-117],[-5,-48],[8,-41],[22,-34],[-4,-39],[-30,-45],[-20,-54],[-14,-96]],[[45790,34652],[27,-15],[14,-41],[12,-72],[-17,-83],[-69,-140]],[[46088,35012],[0,-75],[-24,-68],[-69,-127],[-19,-97]],[[42207,14990],[7,140],[-18,79],[3,33],[19,15],[99,23],[79,-20],[97,-52],[58,-11],[30,61],[5,30],[-25,31],[-53,31],[-14,49],[25,66],[5,65],[-13,64],[-22,38],[-30,12],[-20,24],[-8,36],[9,84],[27,134],[45,68],[63,4],[28,47],[0,4],[-6,88],[4,99],[10,58],[6,31],[0,40]],[[54889,52794],[-29,234]],[[54862,53285],[48,107],[61,43],[89,14],[92,-9],[95,-30],[110,-82],[123,-134],[164,-81],[203,-29],[121,-36],[38,-42],[28,-60],[16,-80],[69,-52],[119,-24],[64,19],[9,62],[26,28],[61,-9],[223,211],[122,70],[79,-18],[105,27]],[[44317,13396],[43,41],[54,51],[70,98],[39,25],[30,-14],[31,-50],[31,-85],[33,-26],[34,32],[34,12],[33,-9],[38,85],[41,178],[20,117],[-1,20],[-1,35],[24,51],[48,46],[49,80],[49,115],[43,68],[26,14],[10,6],[14,31],[-9,43],[2,42],[1,18],[14,79],[18,38],[3,7],[28,12],[11,25],[-6,37],[5,40],[0,1],[2,5],[8,20],[15,42],[16,15],[43,42],[34,-20],[28,-76],[40,-53],[52,-27],[40,10],[14,24],[14,24],[26,15],[18,-15],[5,-4],[12,10],[0,1],[1,40],[12,9],[22,-22],[19,-5],[1,0],[3,2],[14,8],[7,20],[3,20],[13,15],[45,-15],[50,23],[0,1],[1,0],[54,61],[28,21],[9,6],[18,-7],[22,31],[10,28],[15,42],[58,31],[57,-7],[64,-8]],[[31055,32665],[-1,-6]],[[31054,32659],[-31,-154],[-24,-60],[-28,-14],[-29,-70],[-32,-126],[-32,-81],[-34,-37],[-16,-51],[1,-66],[4,-15],[7,2],[9,-9],[13,-48],[16,-24],[27,2],[13,-20],[13,-29],[23,-16]],[[31320,34191],[-79,-111],[-42,-91],[-43,-147],[6,-119],[-2,-99],[-10,-78],[-17,-72],[-22,-65],[-23,-39],[-24,-13],[-8,-87],[7,-161],[27,-98],[46,-34],[28,-54],[11,-71],[-4,-70],[-19,-69],[-31,-38]],[[31121,32675],[-66,-10]],[[31117,35288],[-10,-354],[0,-90],[26,-113],[76,-204],[9,-49]],[[31045,35948],[5,-30],[21,-66],[2,-104],[3,-83],[13,-47],[2,-52]],[[31932,36214],[-156,-156],[-43,-76],[-14,-53],[1,-159],[-16,-71],[-31,-2],[-75,39],[-27,29]],[[32600,36865],[-56,-83],[-44,-101],[-50,-149],[-30,-111],[-10,-73],[4,-94],[18,-114],[-4,-80],[-27,-45],[-49,-8],[-73,29],[-52,50],[-31,69],[-26,25],[-20,-20],[-19,3],[-17,24],[-2,35],[13,44],[2,34],[-10,22],[-21,12],[-31,1],[-45,-30],[-90,-91]],[[35270,40091],[-59,-37],[-67,-34],[-76,-2],[-55,-29],[-39,-43],[-53,-96],[-21,-29],[-18,-4],[-24,30],[-32,5],[-39,-22],[-44,-75],[-49,-126],[-29,-58],[-49,-41],[-145,-23],[-92,0],[-54,-22],[-46,-45],[-77,-102],[-65,-95],[-34,-136],[-57,-79],[-59,-9],[-116,94],[-31,16],[-41,-2],[-47,-57],[-69,-108],[-32,-98],[-20,-123],[-27,-77],[-34,-32],[-31,-51],[-27,-70],[-19,-28],[-9,8],[-9,-15],[-7,-61],[-10,-32],[-15,-4],[-10,-35],[-8,-64],[-22,-70],[-53,-114],[-111,-203],[-56,-67],[-57,3]],[[35277,40330],[14,-188],[-2,-30]],[[27521,45511],[-25,-3],[-171,34],[-42,2],[-36,46]],[[27247,45590],[-10,76],[-46,228],[-47,137],[-48,45],[-37,19],[-48,-26]],[[29415,48144],[-30,-146],[-25,-51],[-30,-3],[-10,-36],[9,-68],[-1,-49],[-12,-29],[-27,8],[-44,45],[-67,25],[-89,3],[-61,51],[-34,100],[-83,19],[-135,-61],[-81,-9],[-28,42],[-29,12],[-30,-19],[-10,-37],[8,-54],[-1,-46],[-11,-37],[-36,-78],[-34,-30],[-47,-20],[-35,-69],[-23,-119],[-6,-88],[12,-58],[26,-47],[60,-52],[0,-54],[9,-31],[19,-26],[6,-42],[-7,-59],[10,-131],[24,-205],[49,-106],[71,-7],[53,13],[34,36],[42,-37],[50,-110],[26,-113],[2,-114],[25,-73],[44,-31],[11,-5],[13,-12],[10,-14]],[[29002,46122],[33,-74],[9,-22],[7,-15],[4,-15],[-3,-17],[-13,-25],[-15,-19],[-28,-37],[-61,-37],[-120,-11],[-240,-96],[-106,-75],[-93,-37],[-173,-35],[-157,-51],[-66,5],[-28,43],[-75,24],[-124,7],[-105,-29],[-96,-87],[-31,-8]],[[29539,49252],[89,-11],[21,-55],[-16,-104],[4,-74],[25,-43],[-16,-39]],[[29646,48926],[-5,-14],[-11,-27],[-91,-116],[-54,-92],[-25,-102]],[[29552,50012],[-18,-11],[-3,-28],[4,-48],[-16,-45],[-38,-42],[-21,-48],[-9,-79]],[[30510,50196],[-102,303],[-68,167],[-67,131],[-86,120],[-103,109],[-81,125],[-57,139],[-62,87],[-67,36],[-48,51],[-44,101]],[[29556,51776],[-235,219]],[[29244,52007],[-26,-50],[-6,-53],[3,-74],[-11,-67],[-23,-61],[-10,-54],[4,-47],[35,-105],[65,-164],[49,-103],[34,-41],[24,-68],[16,-94],[4,-71],[-6,-48],[33,-97],[111,-220]],[[17289,62360],[-8,83],[-18,48],[-30,41],[-63,28],[-141,25],[-121,-36],[-131,-95],[-181,-165],[-105,-116],[-30,-67],[-10,-62],[17,-84],[103,-157],[110,-106],[150,-108],[79,-84],[13,-91],[-28,-73],[-45,-46],[-71,-41],[-47,-57],[-23,-71],[2,-86],[27,-103],[48,-97],[67,-92],[19,-26],[5,-17],[-4,-28],[-40,-74],[-10,-23],[-26,-22]],[[32724,64465],[-66,-31],[-50,11],[-55,41],[-68,24],[-120,10]],[[32198,64842],[-12,-62]],[[31315,65519],[3,45],[-30,45],[-62,58],[-33,76],[-4,94],[17,78],[39,61],[-25,136],[-88,211],[-91,142],[-94,71],[-151,70],[-312,103],[-112,-21],[-52,22],[-29,58],[16,82],[60,107],[16,76],[-30,45],[58,24],[146,2],[80,9],[13,18],[-11,22],[-36,27],[-20,38],[-5,48],[14,51],[33,55],[15,41],[-2,27],[21,51],[46,76],[58,57],[96,71]],[[37265,33479],[115,-140],[49,-134],[33,-65],[35,-40],[35,-21],[53,0],[77,-36],[59,-59],[99,-139]],[[25102,56711],[147,101],[5,166],[44,108],[84,106],[45,118],[4,131],[12,81],[19,32],[35,15],[52,0],[61,-52],[69,-105],[84,-77],[100,-49],[115,-130],[130,-211],[82,-152],[53,-140]],[[29343,52426],[-120,240],[-14,62],[-57,67],[-104,92],[-112,39],[-119,-13],[-116,46],[-113,105],[-160,184],[-208,264],[-164,168],[-177,111],[-89,41],[-31,33],[-2,38],[-40,60],[-79,80],[-88,59],[-98,40],[-67,4],[-35,-30],[-20,-41],[-4,-52],[-24,-76],[-45,-99],[-19,-130],[5,-164],[12,-117],[19,-73],[-19,-62],[-56,-52],[11,-81],[78,-112],[52,-112],[26,-110],[9,-133],[-9,-156],[19,-134],[45,-112],[27,-137],[7,-161],[-1,-107],[-9,-53],[-15,-35],[-21,-17],[-12,-38],[-8,-88],[67,-239],[20,-111],[-3,-63],[42,-123],[89,-183],[47,-136],[4,-89],[-8,-47],[-19,-3],[-9,-22],[2,-42],[29,-83],[55,-124],[55,-189],[56,-254],[29,-256],[2,-258],[-21,-145],[-44,-33],[-33,-47],[-22,-61],[-84,-56],[-145,-51],[-127,3],[-108,56],[-84,9],[-91,-56],[-18,-20]],[[32706,33044],[-97,-64],[-92,14],[-119,71],[-107,96],[-94,120],[-91,30],[-88,-61],[-33,-73],[22,-84],[8,-67],[-7,-50],[-44,-6],[-81,37],[-49,0],[-17,-37],[-37,-29],[-57,-22],[-99,-73],[-142,-124],[-86,-57],[-31,10],[-29,-10],[-29,-29],[-33,13],[-40,54],[-40,13],[-73,-41]],[[34155,33516],[43,-164],[-63,-236],[-48,-85],[-56,-12],[-43,-87],[-31,-164],[-43,-110],[-54,-58],[-57,-2],[-58,53],[-43,75],[-25,95],[-26,59],[-27,22],[-36,-19],[-45,-59],[-48,-31],[-49,-3],[-72,82],[-93,167],[-88,86],[-81,7],[-75,-43],[-66,-93],[-58,-18],[-48,57],[-59,26],[-102,-10]],[[47352,36166],[4,-26],[-12,-113],[10,-82],[32,-67],[13,-50],[-6,-33],[-13,-18],[-20,-2],[-9,-23],[3,-44],[17,-31],[33,-18],[40,-72],[70,-186],[25,-64],[7,-90],[-1,-135],[15,-67],[30,4],[23,-17],[15,-36],[0,-83],[-15,-131],[12,-108],[37,-85],[15,-72],[-9,-57],[4,-18],[18,-2],[15,-38],[22,-105],[20,-59],[18,-12],[21,-93],[38,-261],[66,-148],[41,-70],[40,-43],[22,-44],[5,-45],[-8,-54],[-32,-92],[-17,-32]],[[46897,36942],[-131,-77],[-86,-80],[-123,-90],[-216,-152],[-36,-87],[-129,-121],[-43,-31],[-80,-47],[-91,-67],[-32,-56],[-140,-124],[-73,-97],[-35,-64],[2,-44]],[[50392,44020],[5,-85],[-8,-33],[-19,-10],[-15,-30],[-12,-48],[-1,-34],[15,-28],[84,-96],[39,-75],[23,-84],[5,-70],[-15,-55],[-3,-68],[10,-81],[31,-28],[53,23],[25,-65],[-2,-231],[-51,-286],[-18,-170],[-3,-150],[-21,-128],[-40,-106],[-20,-138],[-2,-255],[-17,-191],[0,-114],[11,-128],[-4,-50],[-1,-31]],[[26745,41202],[-27,25],[-22,60],[-26,103],[-25,57],[-37,16],[-12,1]],[[27683,42174],[11,-36],[-7,-34],[-21,-44],[-27,-11],[-31,23],[-40,-30],[-50,-83],[-48,-45],[-46,-5],[-45,-35],[-44,-63],[-46,-21],[-48,23],[-35,3],[-34,-27],[-55,-40],[-48,5],[-59,36],[-56,-55],[-55,-146],[-26,-133],[4,-121],[-15,-95],[-35,-71],[-34,-19],[-48,52]],[[13881,67919],[-34,-189],[-45,-106],[-19,-69],[-6,-67],[23,-63],[54,-58],[42,-64],[31,-69],[-1,-78],[-30,-86],[-115,-101],[-199,-116],[-81,-57],[-27,-60],[-15,-119],[-34,-80],[-50,-44],[-70,-34],[-89,-25],[-84,-3],[-79,18],[-82,-20],[-85,-58],[-77,-32],[-66,-4],[-39,-18],[-16,-48],[-42,21],[-87,-30],[-147,-73],[-107,-113],[-67,-151],[-85,-120],[-102,-89],[-85,-40],[-69,9],[-30,30],[-16,19],[-64,31],[-23,27],[-19,20],[-25,-9],[-13,14],[-1,27],[-19,31],[-42,5],[-63,-23],[-55,5],[-47,33],[-67,9],[-87,-14],[-13,-21],[-3,-25],[-11,-15],[-37,-17],[-10,-19],[7,-25],[-7,-53],[-63,-77],[-11,-30],[7,-30],[7,-22],[-8,-20],[10,-24],[21,-9],[16,-4],[11,-40],[11,-17],[5,-25],[-6,-19],[-16,-11],[-3,-17],[-2,-21],[-16,-11],[-35,1],[-34,1],[-32,12],[4,22],[-21,26],[-46,31],[-42,15],[-36,0],[-45,-25],[-51,-48],[-74,-16],[-95,18],[-56,-2],[-16,-20],[-20,-56],[4,-18],[16,-7],[9,-25],[1,-41],[-10,-25],[7,-38],[-11,-44],[-5,-52],[7,-80],[25,-28],[42,23],[35,-4],[27,-31],[-10,-16],[-49,-2],[-21,-22],[4,-43],[-22,-39],[-75,-54],[-14,-17]],[[12026,62964],[-58,-59],[-40,-14],[-40,12],[-54,-13],[-70,-40],[-46,-3],[-23,34],[-36,4],[-49,-27],[-11,-23],[26,-19],[-19,-45],[-66,-70],[-35,-49],[-7,-27],[4,-19],[13,-10],[9,-32],[4,-54],[-4,-38],[-18,-32],[-100,-88],[-56,-85],[-45,-113],[-9,-105],[25,-97],[0,-58],[-25,-19],[-20,-37],[-14,-55],[-91,-79],[-169,-102],[-177,11],[-184,122],[-120,44],[-57,-36],[-37,-6],[-17,24],[-30,-53],[-44,-128],[-57,-82],[-72,-38],[-79,-7],[-86,24],[-141,5],[-292,-22],[-197,-29],[-95,-39],[-58,-59],[-32,-57],[-5,-54],[-18,-28],[-30,-4],[-19,-22],[-7,-41],[-36,-52],[-65,-63],[-41,-65],[-15,-66],[-35,-54],[-56,-42],[-45,-11],[-34,18],[-14,-10],[6,-39],[-4,-27],[-12,-16],[-22,6],[-33,27],[-17,-6],[-3,-39],[-14,-19],[-24,1],[-8,-13],[8,-28],[-13,-19],[-52,-17],[-31,-19]],[[52102,53309],[28,2],[16,26],[12,52],[-53,5],[-177,-64]],[[51799,53493],[-77,73],[-83,14],[-173,-32]],[[51361,53500],[-28,5],[-3,13],[11,25],[-2,14],[-14,4],[-80,-38],[-33,9],[-18,45],[-55,16],[-90,-12],[-16,25],[-60,61],[-138,101],[-88,50],[-38,-2],[-61,-37],[-85,-72],[-118,-57],[-227,-64]],[[48800,53700],[-98,22],[-95,-14],[-125,-42],[-143,-2],[-244,55],[-10,6],[-11,8]],[[23133,61093],[25,-133],[36,-28],[54,32],[42,6],[44,-28],[158,-191],[117,-97],[127,-67],[124,-116],[120,-165],[104,-107],[90,-48],[75,-75],[59,-99],[53,-52],[48,-5],[39,-26],[30,-47],[71,-47],[112,-46],[81,20],[49,87],[55,35],[61,-19],[49,-35],[38,-49],[7,-59],[-23,-70],[15,-35],[52,0],[45,-25],[58,-77],[72,24],[72,-10],[97,-35],[108,-65],[118,-93],[84,-31],[51,30],[30,1],[65,-72],[107,-62],[103,-12],[97,39],[70,64],[44,90],[32,49],[18,64],[17,48],[44,64],[67,-5],[89,-72],[31,-32],[7,-59],[31,-3],[16,36],[55,116],[34,143],[12,171],[58,140],[104,109],[36,92],[-34,77],[-21,79],[-9,83],[1,60],[10,38],[30,32],[14,65],[20,92],[24,54],[9,27],[24,48],[45,56],[22,18],[63,5],[56,34],[63,82],[165,89],[268,96],[153,79],[37,62],[14,52],[-10,43],[24,45],[58,46],[20,46],[-28,87]],[[29653,61196],[-18,59],[-73,48],[-135,55],[-86,-15],[-37,-86],[-142,-69],[-247,-51],[-263,55],[-280,164],[-149,99],[-19,35],[-2,46],[15,56],[1,48],[-14,39],[-73,29],[-133,18],[-63,25]],[[27935,61751],[-40,16],[-107,94],[-308,143],[-175,50],[-144,3],[-111,34],[-118,106],[-7,15],[22,79],[51,143],[21,161],[-6,180],[-17,134],[-27,89],[-52,86],[-75,81],[-51,98],[-25,115],[-44,136],[-65,159],[-56,107],[-47,55],[-40,27],[-32,-2],[-27,23],[-23,46],[-6,58],[10,70],[-8,58],[-28,45],[-37,34],[-47,22],[-51,71],[-55,121],[-20,89],[17,56],[-15,36],[-46,17],[-33,40],[-21,62],[-106,48],[-116,21]],[[25870,64777],[-74,13],[-120,48],[-73,92],[-132,129],[-89,60],[-135,53],[-63,4],[-131,79],[-330,234],[-176,11],[-89,23],[-60,38],[-17,58],[-32,52],[-73,76],[-45,83],[-18,90],[5,68],[26,46],[55,47],[83,49],[39,41],[-6,35],[-32,31],[-58,26],[-105,96],[-153,164],[-138,105],[-121,47],[-78,63],[-33,81],[-23,104],[-11,129],[-22,83],[-33,39],[-58,28],[-99,15],[-26,14],[-23,20],[-35,46],[-35,41],[-97,27],[-132,-15],[-224,-70],[-315,-125],[-214,-32],[-115,59],[-82,66],[-50,73],[-48,35],[-46,-2],[-72,49],[-97,99],[-51,92],[-7,85],[-31,86],[-55,88],[-26,95],[4,105],[15,54],[20,60],[17,22],[28,5],[35,26],[35,47],[12,37],[12,88],[-13,59],[-68,130]],[[21767,68581],[-70,0],[-70,64],[-141,193]],[[21767,68581],[-143,213],[-38,97],[19,54],[39,40],[90,43],[33,37],[33,62]],[[21486,68838],[-94,-56],[-47,-5],[-30,27],[-60,6],[-136,-24],[-10,-14]],[[21486,68838],[-96,98],[-19,48],[27,29],[-9,42],[-68,82],[-5,8]],[[32947,44645],[-55,-58],[-35,-15],[-34,8],[-24,28],[-17,57],[-4,10]],[[32678,44787],[-10,-2],[-36,-24],[-34,10],[-36,39],[-35,96],[-32,153],[-12,122],[9,91],[26,103],[44,115],[29,148],[13,182],[17,121],[19,60],[-8,91],[-52,184]],[[43112,28928],[57,174],[96,40]],[[43167,29102],[-13,22]],[[43154,29124],[49,152]],[[43154,29124],[-69,117],[-41,53],[-46,39],[-24,29],[-2,28],[-20,42],[-22,20],[-52,102],[-50,81],[-16,65],[-2,57],[12,48],[13,16],[13,2],[4,11],[0,14],[-5,11],[-51,18],[-99,11],[-67,33],[-35,56],[-56,16],[-78,-24],[-50,17],[-13,34],[-9,23],[-23,29],[-22,-1],[-14,21],[-8,34],[-18,23],[-17,5],[-11,18],[2,21],[-9,20],[-15,17],[-5,22],[2,21],[-4,23],[-15,17],[-4,34],[8,77],[-4,25],[-15,29],[0,31],[-9,50],[-29,91],[-24,38],[-16,9],[-51,3],[-13,24],[5,35],[11,39],[-2,17],[-9,37],[-35,30],[-13,14],[-6,20],[1,23],[2,34],[20,35],[7,45],[-16,108],[5,59],[29,11],[14,57],[0,103],[11,70],[22,36],[21,85],[20,134],[41,110],[62,86],[31,75],[1,59],[7,27],[13,14],[20,40],[27,54],[5,37],[-1,26],[-2,28],[-22,50],[-33,43],[-21,66],[2,51],[-8,45],[-16,39],[4,35],[23,34],[1,31],[-21,30],[0,53],[20,76],[-1,53],[-23,29],[-4,73],[22,177],[-5,23],[-22,54],[-3,65],[14,79],[-7,61],[-18,22],[-5,25],[-5,36],[19,33],[2,31],[-18,28],[11,40],[40,52],[11,29]],[[42303,33735],[12,31],[6,74],[-5,43],[-10,29],[5,15],[8,14],[48,27],[13,19],[3,22],[-15,57],[15,60],[44,64],[23,56],[3,48],[21,35],[39,22],[25,90],[9,157],[12,67],[20,10],[10,22],[4,45],[24,46],[46,48],[18,46],[-5,24],[0,35],[18,41],[54,68],[23,89],[-7,111],[20,100],[47,89],[19,88],[-8,87],[23,71],[55,55],[8,23],[-2,17],[-1,19],[0,8],[3,16],[12,10],[16,8],[7,14],[0,23],[-9,39],[5,48],[27,74],[3,63],[-19,53],[10,27],[12,7],[16,4],[5,13],[0,15],[-13,35],[4,30],[23,21],[7,53],[-9,87],[2,27],[3,12],[6,3],[8,-1],[11,-26],[5,-30],[7,-10],[9,9],[26,90],[22,23],[10,5],[24,-16],[11,-5],[25,31],[23,90],[12,95],[4,100],[-15,81]],[[43218,36925],[-34,60],[-23,27],[-4,-2],[-5,-7],[-2,-19],[2,-13],[3,-16],[-2,-10],[-5,0],[-24,23],[-30,67],[-35,110],[-7,87],[19,66],[0,68],[-19,71],[-10,70],[0,69],[-47,102],[-95,137],[-70,84],[-45,32],[-52,69],[-60,104],[-32,80],[-4,56],[28,148],[79,322],[8,38],[3,14],[-4,14],[-7,13],[-33,38],[-64,32],[-59,18],[-47,-38],[-41,77],[-35,194],[-87,205],[-138,216],[-81,146],[-22,77],[-19,116],[-17,154],[1,129],[27,153],[25,17],[5,51],[-7,89],[26,67],[59,45],[54,100],[49,155],[21,111],[-4,67],[-18,63],[-31,60],[-7,74],[16,89],[52,56],[88,24],[79,45],[72,66],[42,71],[13,78],[21,60],[28,43],[19,70],[12,98],[1,72],[-8,47],[-32,53],[-54,61],[-30,57],[-7,53],[-28,58],[-50,61],[-32,76],[-15,90],[-48,66],[-81,43],[-52,69],[-23,92],[-15,105],[-6,116],[6,97],[20,78],[-5,53],[-29,28],[-19,36],[-10,45],[-19,357],[-20,138],[-29,55],[-63,63],[-96,72],[-59,68],[-34,94],[-68,111],[-45,45],[-43,17],[-35,36],[-26,54],[-35,34],[-46,14],[-50,45],[-84,112],[-68,33],[-32,47],[-19,75],[-23,25],[-27,-25],[-27,50],[-28,124],[-28,79],[-28,36],[-251,186],[-61,50],[-33,57],[-27,81],[-10,55],[4,29],[-17,52],[-39,75],[-24,64],[-9,53],[2,66],[11,79],[-2,74],[-13,69],[29,90],[71,111],[44,86],[16,61],[47,26],[76,-10],[51,27],[24,65],[33,46],[41,28],[39,82],[38,137],[7,78],[-22,21],[-22,46],[-21,70],[-30,51],[-40,32],[-39,6],[-40,-21],[-19,14],[2,48],[-16,21],[-34,-5],[-36,30],[-56,96]],[[40424,47070],[28,161],[43,134],[40,30],[74,-42]],[[40671,47370],[86,-51]],[[38743,42981],[198,-207],[85,-46],[40,43],[87,25],[134,7],[85,-21],[35,-47],[69,-53],[102,-58],[62,-64],[20,-69],[36,-44],[50,-19],[32,-88],[14,-157],[28,-127],[45,-97],[23,-70],[0,-45],[11,-48],[21,-51],[8,-87],[-4,-123],[9,-65],[23,-8],[9,-17],[-3,-27],[8,-20],[18,-13],[5,-35],[-8,-58],[6,-36],[21,-15],[4,-29],[-13,-42],[2,-33],[17,-24],[12,-108],[6,-190],[-2,-112],[-10,-32],[16,-69],[41,-105],[26,-104],[11,-104],[26,-67],[41,-31],[27,-66],[14,-102],[34,-86],[117,-138],[29,-1],[34,20],[26,-29],[17,-80],[-2,-40],[-23,-2],[-28,-48],[-33,-94],[8,-88],[50,-83],[34,-83],[16,-83],[33,-65],[74,-70],[57,0],[39,27],[41,53],[46,3],[49,-48],[51,-6],[54,36],[67,21],[81,7],[43,20],[6,32],[15,1],[24,-30],[36,29],[47,91],[65,-2],[80,-94],[30,-72],[-22,-51],[-5,-54],[11,-57],[45,-37],[77,-17],[72,-86],[100,-231],[80,-72],[69,11],[85,72],[86,37],[89,0],[93,-40],[97,-81],[77,-7],[57,69],[43,34],[30,-1],[40,51],[52,103],[42,25],[28,-15],[59,-26]],[[37871,44355],[10,-21],[13,-41],[57,-45],[98,-43],[46,-41],[-6,-39],[6,-34],[19,-30],[37,-19],[57,-9],[18,19],[-21,47],[3,25],[28,3],[18,-29],[10,-63],[27,-55],[69,-69]],[[38360,43911],[0,-1]],[[32493,46578],[-29,8],[-26,40],[-34,75],[-13,51],[7,25],[-10,53],[-27,81],[-7,60],[15,39],[163,245],[77,74],[51,-4],[26,28],[1,59],[25,42],[48,27],[48,64],[47,104],[38,48],[31,-7],[83,66],[136,141],[79,59],[20,-23],[16,-52],[13,-84],[32,-68],[52,-54],[132,-7],[212,39],[109,1],[5,-37],[24,-40],[40,-41],[87,-34],[198,-41]],[[37392,47420],[-11,-22],[8,-53],[21,-92],[55,-57],[86,-22],[41,-29],[-4,-35],[10,-48],[24,-61],[7,-52],[-9,-45],[14,-86],[54,-189]],[[35011,47933],[18,37],[70,0],[126,-25],[108,10],[89,43],[96,14],[102,-17],[70,13],[37,40],[72,14],[105,-13],[119,-43],[134,-74],[77,-25],[29,33]],[[13475,64184],[-253,25],[-92,-91],[-47,-74],[-33,-89],[-14,-63],[6,-39],[-98,-85],[-202,-133],[-114,-102],[-27,-72],[-44,-61],[-61,-52],[-56,-61],[-52,-70],[-24,-46],[4,-21],[-84,-54],[-258,-132]],[[39137,53983],[65,160],[12,76],[-21,54],[-4,56],[15,59],[-18,42],[-77,41]],[[39056,54605],[-10,69],[-16,33],[-24,19],[-2,37],[31,85]],[[39364,55135],[86,13],[57,53],[58,98],[30,83],[5,68],[26,120],[48,171],[24,119],[0,101]],[[40036,56188],[196,48]],[[40542,56291],[207,27],[165,128],[193,239],[157,121],[180,5],[38,13]],[[48020,43199],[-2,-100],[-1,-72]],[[29908,51919],[58,63],[35,-5],[47,-78],[144,28],[46,57],[-5,97],[28,100],[61,102],[99,59],[138,15],[89,-13],[42,-40],[43,-13],[43,17],[46,-11],[49,-38],[37,-10],[26,19],[-4,99],[-35,181],[-26,96],[-16,12],[-9,33],[-1,53],[-8,36],[-17,21],[-4,45],[8,69],[24,40],[42,11],[28,22],[18,48],[64,145],[53,44],[63,-6],[54,24],[45,54],[60,3],[75,-47],[75,-15],[75,17],[47,39],[19,61],[39,49],[59,36],[66,93],[73,148],[61,99],[50,50],[30,49],[11,47],[48,9],[87,-28],[66,3],[47,35],[57,-20],[68,-73],[62,-40],[56,-7],[30,-32],[6,-57],[70,-38],[136,-19],[94,17],[52,53],[61,26],[69,-2],[71,-48],[72,-94],[52,-39],[32,18],[53,-25],[75,-67],[66,-30],[60,9],[42,-24],[26,-57],[11,-40],[-4,-23],[29,-20],[62,-15],[55,-34],[48,-51],[54,-92],[59,-134],[90,-111],[119,-89],[55,-63],[-9,-37],[1,-26],[15,-21]],[[34093,52638],[110,-123],[56,-44],[39,-7],[75,-58],[111,-107],[74,-56],[37,-5],[47,10],[59,23],[45,75],[32,127],[97,195],[161,264],[96,142],[31,20],[25,-6],[18,-31],[55,9],[93,48],[109,25],[185,4]],[[45105,38623],[-11,11],[-17,22],[-29,11],[-47,-8],[-19,-46],[10,-87],[-16,-66],[-42,-46],[-30,-61],[-18,-76],[-28,-45],[-39,-17],[-32,-70],[-24,-124],[-26,-76],[-29,-30],[-39,8],[-49,44],[-29,46],[-8,47],[-14,34],[-14,15],[-9,0],[0,-6],[3,-14],[-4,-14],[-31,-5],[-13,-19],[4,-34],[-7,-25],[-18,-14],[-9,-32],[-1,-51],[-13,-47],[-24,-42],[-35,14],[-46,71],[-47,16],[-48,-38],[-36,-52],[-23,-65],[-23,-16],[-32,50],[-78,68],[-40,15],[-29,-17],[-21,8],[-7,19],[-5,7],[-6,-9],[0,-59],[-7,-38],[-13,-16],[-11,13],[-7,40],[-16,13],[-27,-14],[-26,6],[-23,25],[-9,-3],[-6,-11],[1,-47],[-5,-37],[-12,-24],[-17,-6],[-23,13],[-9,-12]],[[43747,37720],[-15,-18],[-27,-71],[-5,-79],[16,-86],[-40,-70],[-94,-53],[-51,-47],[-5,-40],[6,-62],[19,-84],[3,-57],[-12,-32]],[[43542,37021],[-67,21],[-123,76],[-83,-3],[-42,-80],[-14,-61],[5,-49]],[[47577,40374],[-75,74],[-35,62],[-20,77],[-38,25],[-83,-39],[-57,-44],[-10,-40],[17,-51],[9,-67],[1,-81],[-31,-178],[-65,-276],[-32,-173],[-1,-71],[-43,-93],[-83,-115],[-59,-69],[-34,-24],[-28,2],[-22,28],[-26,-19],[-28,-66],[-26,-33],[-24,-3],[-20,-42],[-18,-83],[-16,-47],[-15,-13],[-1,-42],[13,-71],[-1,-26],[-7,-1],[-7,4],[-17,-16],[-18,-40],[-7,0],[-5,6],[-5,52],[-15,37],[-24,22],[-34,-48],[-44,-118],[-19,-76],[8,-53],[3,-78],[-10,-32],[-24,-11],[-18,-42],[-13,-73],[-33,-45],[-53,-19],[-58,36],[-66,90],[-41,86],[-17,83],[-57,3],[-96,-75],[-73,-11],[-50,52],[-37,20],[-37,-17],[-35,-33],[-29,20],[-37,62],[-57,43],[-78,24],[-54,66],[-30,110],[-33,75],[-34,41],[-37,12],[-41,-17],[-32,8],[-22,35],[-28,-4],[-34,-43],[-11,-42],[12,-44],[0,-35],[-13,-28],[4,-20],[23,-13],[8,-32],[-5,-48],[-48,-50],[-92,-56],[-20,-16],[-16,-7],[-8,3]],[[49046,45809],[38,-13],[33,-82],[41,-155],[54,-100],[67,-46],[68,-12],[70,21],[58,-21],[46,-64],[132,31],[219,124],[144,67],[70,9],[66,-19],[95,-71],[30,-30]],[[48823,45979],[47,-109],[56,-42],[120,-19]],[[48675,46102],[147,-122]],[[48674,46103],[1,-1]],[[47970,46742],[71,-220],[53,-120],[59,-93],[152,-87],[370,-120]],[[47608,9276],[0,11],[5,57]],[[27487,55919],[24,-49],[25,-10],[33,12],[46,43],[60,74],[93,74],[126,75],[155,-2],[183,-79],[127,-38],[69,0],[242,59],[115,50],[92,64],[73,21],[54,-20],[26,-29],[-3,-37],[10,-42],[22,-47],[4,-41],[-4,-29],[23,-53],[72,-61],[128,-22],[181,15],[156,73],[132,131],[90,135],[48,138],[21,109],[-7,79],[-17,53],[-24,36],[-1,29],[-11,22],[-18,31],[-13,57],[12,81],[36,108],[4,50],[-1,34],[8,20],[12,11],[23,31],[11,50],[-3,39],[-14,40],[3,49],[21,59],[-4,60],[-6,30],[5,24],[17,27],[2,42],[-10,22],[-9,42],[3,28],[-3,27],[-6,32],[4,23],[-4,21],[3,27],[11,22],[-3,42],[-24,34],[-7,50],[15,54],[31,42],[45,32],[60,13],[72,-5],[42,8],[11,22],[-2,25],[-15,27],[-4,27],[7,25],[-9,20],[-12,16],[-1,14],[21,21],[27,-2],[23,-4],[0,-28],[6,-15],[13,-4],[34,34],[54,70],[60,52],[67,35],[112,-11],[158,-57],[127,-23],[95,11],[131,73],[165,136],[124,84],[125,46]],[[31534,58562],[211,110],[68,53],[-3,33],[16,23],[35,15],[40,55],[43,95],[39,64],[37,34],[78,-9],[119,-51],[84,-14],[48,24],[27,-3],[6,-29],[-15,-35],[-35,-40],[-11,-31],[14,-23],[31,0],[46,20],[52,-7],[56,-35],[48,8],[62,78]],[[29646,48926],[128,12],[37,-20],[0,-6],[6,-41],[-8,-55],[-21,-65],[-3,-87],[13,-108],[18,-76],[22,-42],[14,-79],[5,-117],[55,-89],[106,-59],[66,-4],[27,52],[26,24],[39,-4]],[[28339,41633],[-13,-151],[-27,-60],[-79,-47],[-139,-54],[-68,-107],[2,-161],[-9,-104],[-20,-49],[-24,2],[-29,55],[-30,10],[-31,-35],[-40,-7],[-50,20],[-42,-5],[-35,-31],[-32,2],[-28,34],[-21,0],[-14,-33],[-3,-40],[8,-46],[-14,-46],[-54,-71]],[[19119,65530],[39,98],[15,63],[5,91],[-5,31],[13,25],[29,30],[58,14],[86,-4],[67,18],[47,39],[68,121],[90,203],[86,131],[83,59],[62,71],[41,85],[45,41],[50,-1],[37,20],[22,43],[9,32],[-3,24],[12,16],[57,26],[38,58],[21,15],[17,-9],[11,11],[4,29],[-17,22],[-37,16],[-4,32],[29,50],[-5,25],[-37,2],[-11,21],[-18,36],[-42,61],[-13,41],[16,22],[5,34],[-7,47],[-34,27],[-62,6],[-54,30],[-48,52],[-63,24],[-125,-1],[-15,14],[-3,18],[7,22],[-6,14],[-17,5],[-294,-105],[-181,27],[-75,-1],[-29,-21],[-12,-19],[5,-17],[-44,22],[-55,-1],[-76,-24],[-40,-22],[-1,-21],[-74,-17],[-146,-11],[-87,-22]],[[18553,67298],[-49,-11],[-189,-82],[-55,-38],[-23,-38],[-9,-51],[-12,-30],[-16,-9],[-148,3],[-27,3],[-10,10],[-3,19],[-5,15],[-16,9],[-66,-53],[-116,-114],[-141,-56],[-165,3],[-119,-12],[-70,-27],[-30,-25],[11,-24],[1,-18],[-10,-10],[-56,18],[-33,-17],[-33,-50],[-57,-37],[-82,-24],[-51,-1],[-20,23],[-14,0],[-6,-24],[-29,-13],[-53,0],[-52,-30],[-53,-57],[-54,-23],[-56,12],[-81,-15],[-121,-59]],[[48369,39567],[69,46],[40,-7],[33,-47],[34,-22],[35,1],[13,-11],[-8,-23],[9,-28],[26,-31],[9,-29],[-9,-26],[3,-20],[14,-13],[8,-29],[3,-45],[34,-45],[64,-44],[26,-45],[-11,-45],[-2,-33],[12,-29],[86,-60],[52,-84],[42,-33],[24,-21],[10,-26]],[[38729,21941],[57,-16],[21,14],[6,39],[18,22],[31,5],[25,21],[19,36],[19,-4],[18,-42],[20,-9],[22,23],[2,36],[-2,17],[17,55],[24,31],[45,10],[32,45]],[[49086,47431],[-35,22],[-13,-8],[-7,-44]],[[48847,47487],[-19,5],[-33,-22],[-13,-1]],[[48137,47569],[-83,-102],[-38,-17],[-21,35],[-54,14],[-129,-9]],[[48741,47584],[8,73]],[[48730,47743],[-26,-12],[-51,-85],[-50,-5],[-47,62],[-34,-6],[-20,-75],[-39,-21],[-56,34],[-46,42],[-34,51],[-16,46],[1,42],[-19,25],[-40,10],[-34,-13],[-27,-37],[-13,-65],[5,-114],[-4,-25]],[[41209,48529],[-1,-1]],[[41208,48528],[-4,-7],[-36,-48],[-48,-25],[-69,-11],[-39,20],[-6,3],[-23,59],[-97,51],[-171,45],[-98,39],[-26,31],[-7,17],[-7,18],[-4,54]],[[42040,48776],[-14,-73],[-47,-30],[-84,-11],[-59,9],[-35,27],[-90,-17],[-218,-92]],[[42576,49239],[-52,-109],[11,-51],[-5,-39],[-18,-43],[-56,-33],[-96,-21],[-79,-59],[-93,-145]],[[38452,26516],[31,-117],[18,-21],[26,-27],[67,-18],[51,-41],[16,-29],[20,-34],[44,-39],[21,-5],[32,-8],[52,-42],[31,-46],[18,-25],[91,-47],[10,-2]],[[38980,26015],[124,-20],[102,-58],[10,-14]],[[39216,25923],[60,-79],[31,-19],[8,-2],[4,15],[5,26],[22,25]],[[39346,25889],[5,5],[63,20]],[[37564,29407],[10,-55],[1,-5],[43,-86],[69,-113],[12,-19],[9,-21],[32,-80],[5,-12],[2,-19],[8,-77],[42,-151],[7,-20],[64,-187],[32,-111],[-8,-17],[6,-58],[12,-63],[7,-37],[36,-85],[12,-16],[40,-53],[52,-125],[54,-181],[30,-65],[34,-72],[28,-35],[48,-59],[42,-87],[10,-81],[0,-69],[0,-1],[-12,-57],[5,-54],[14,-34],[7,-18],[7,-63],[-6,-70],[-2,-19],[1,-25]],[[34934,31762],[62,-55],[7,-14],[36,-72],[43,-134],[51,-93],[34,-31],[25,-22],[101,-157],[142,-260],[36,-55],[77,-118],[79,-80],[6,-6],[57,-75],[20,-44],[9,-18],[18,-64],[21,-72],[73,-313],[0,-91],[0,-52],[6,-31],[22,-105],[56,-176],[50,-104],[42,-31],[46,-63],[50,-93],[57,-63],[65,-32],[90,-84],[115,-136],[78,-70],[43,-3],[37,44],[32,90],[31,58],[28,24],[3,2],[13,42],[-4,36],[-2,21],[21,128],[8,35],[21,88],[18,77],[9,17],[47,90],[1,1],[5,1],[61,16],[28,24],[15,13],[20,59],[36,6],[35,-33],[15,-13],[82,-30],[113,-13],[25,2],[42,3],[21,22],[10,-1],[1,-25],[17,-10],[33,4],[28,-35],[37,-108]],[[34588,32850],[26,-167],[32,-68],[49,-25],[45,-66],[41,-105],[20,-79],[0,-53],[33,-151],[100,-374]],[[34642,33113],[-47,-58]],[[34525,37707],[171,-32],[68,65],[53,-17],[59,-76],[70,-38],[80,1],[84,-31],[90,-63],[61,-59],[33,-56],[22,-63],[14,-71],[1,-95],[-10,-121],[5,-139],[19,-157],[4,-171],[-12,-186],[-19,-125],[-43,-96],[-74,-110],[-32,-85],[-13,-96],[-31,-96],[-49,-95],[-36,-112],[-23,-129],[-45,-143],[-67,-157],[-31,-129],[5,-100],[-16,-208],[-38,-315],[-26,-170],[-13,-25],[-4,-122],[6,-219],[-26,-179],[-57,-138],[-36,-116],[-22,-138]],[[50038,51318],[108,68],[48,10],[21,-23],[27,-5],[25,-2],[18,-25],[20,-30],[42,-28],[45,-6],[51,17],[36,-38],[21,-93],[5,-82],[-12,-71],[22,-33],[83,7]],[[49854,51353],[-12,38],[2,23],[-8,19],[-40,13],[-74,6],[-162,-46],[-348,-136]],[[48176,51404],[20,-11],[111,-90],[142,-34],[212,-8],[194,24],[178,56],[52,-19]],[[36735,20273],[-4,58],[-36,30],[-97,45],[-25,35],[-15,47],[3,61],[-20,76],[-50,72],[-22,60],[4,46],[-9,69],[-22,92],[-20,49],[-18,7],[-21,-18],[-34,-68]],[[36294,20899],[-64,52],[-20,37],[1,42],[-23,50],[-70,86]],[[36118,21167],[-49,-6],[-34,20],[-37,43],[-16,36],[-37,134],[-40,69],[-52,205],[-14,57],[-28,53],[-27,4],[-53,-55],[-52,-37],[-10,9],[-5,39]],[[35630,21782],[-34,-18],[-15,-9],[-19,-38],[-44,-51],[-34,-14],[-22,-19]],[[47777,38345],[88,218],[63,267],[43,98],[43,18],[55,107],[66,196],[53,126],[63,86],[37,0],[17,23],[8,45],[18,27],[38,11]],[[27792,38588],[31,-41],[5,-37],[-11,-48],[-2,-57],[8,-65],[-2,-44],[-13,-24],[1,-30],[15,-38],[-15,-46],[-14,-33],[-55,-47],[-9,-19],[-8,-28],[-11,-20]],[[27397,40647],[-10,-73],[27,-74],[62,-100],[30,-73],[-3,-46],[5,-28],[13,-8],[-2,-37],[-16,-65],[2,-41],[19,-16],[19,-92],[19,-167],[22,-106],[25,-43],[4,-118],[-18,-192],[-5,-123],[6,-55],[24,-75],[42,-95],[23,-89],[4,-83],[16,-68],[29,-55],[25,-26],[20,2],[11,-27],[2,-86]],[[52204,46099],[16,77],[11,54],[22,59],[41,46],[29,75],[26,19],[32,-10],[14,14],[-2,40],[66,141],[133,243],[89,137],[45,33],[34,9],[22,-14],[42,28],[63,67],[24,16],[52,34],[11,4],[79,29],[49,30],[7,23],[2,5],[22,10],[1,0],[33,-8],[2,0],[1,-2],[56,-59],[9,-10],[144,-201],[40,-90],[6,-116],[-13,-171],[11,-111],[35,-53],[14,-40],[-8,-30],[9,-54],[24,-81],[9,-99],[-8,-118],[22,-78],[53,-38],[45,-16],[37,8],[43,-21],[50,-50],[40,-1],[32,46],[34,24],[53,2],[77,-86],[62,-41],[72,-24],[52,-76],[32,-130],[6,-58],[-14,-49],[-46,-85],[-19,-56],[0,-23],[17,-20]],[[28687,36933],[-39,-104],[-76,-53],[-126,-38],[-89,60],[-53,159],[-48,94],[-43,29],[-77,137],[-165,366]],[[29145,37028],[-34,107],[-143,209],[-22,29],[-16,15],[-17,-19],[-11,-32],[-37,-152],[-38,-86],[-40,-18],[-28,-28],[-26,-58]],[[27971,37583],[-24,51],[-13,77],[-10,120],[-21,71],[-47,33],[-11,12],[-13,26],[-14,14]],[[45304,11097],[133,-73],[67,-64],[44,-79],[8,-19],[5,-14],[11,-26],[3,-26],[1,-14],[14,-21],[33,-5],[1,0],[84,-40],[47,7],[5,1],[46,42],[13,26],[11,22],[2,3],[5,49]],[[44668,12185],[111,-109]],[[38377,53062],[47,26]],[[35648,53143],[79,-76],[39,-7],[25,36],[93,40],[158,43],[100,68],[64,137]],[[36431,53555],[139,99],[40,56],[-13,47],[10,66],[34,88],[38,49],[41,13],[60,-18],[120,-72]],[[36926,53868],[91,-62],[70,-21],[80,1],[67,20],[53,38],[35,39],[15,39],[26,-26],[38,-92],[55,-40],[73,12],[33,-16],[-6,-41],[14,-56],[35,-71],[81,-30],[127,10],[71,-16],[20,-63]],[[46522,33602],[96,-140],[33,-76],[2,-57],[12,-41],[21,-23],[20,-52],[20,-78],[38,-69],[58,-58],[42,-132],[26,-208],[28,-120],[41,-50],[56,-177],[19,-105],[-1,-93],[28,-72],[97,-80]],[[46232,34303],[109,-348]],[[24466,56975],[137,-171],[206,-191],[109,-142],[82,-157],[31,-95],[-21,-33],[-55,-10],[-88,12],[-62,-16],[-35,-46],[-16,-60],[1,-73],[12,-65],[23,-59],[1,-66],[-23,-76],[22,-50],[65,-23],[24,-35],[-17,-46],[9,-81],[36,-115],[8,-73],[-18,-31],[-9,-43],[0,-57],[-15,-56],[-31,-55],[-58,-37],[-87,-16],[-66,-36],[-47,-56],[-24,-50],[-2,-45],[13,-52],[27,-61],[-11,-83],[-73,-158],[-482,-325],[-28,-14],[-17,0],[-23,2]],[[32630,58897],[12,148],[-11,60],[-31,21],[0,28],[33,34],[5,50],[-23,65],[-5,79],[13,92],[-12,100],[-57,165],[-29,73],[-33,45],[-47,39],[-59,21],[-70,2],[-65,69],[-58,134],[-65,85],[-27,15],[-18,14],[4,15],[20,8],[25,12],[4,29],[-6,28],[-16,28],[-1,24],[-7,29],[-17,24],[-89,47],[-49,53],[-9,57],[-20,38],[-17,4],[-11,12],[-5,31],[-5,15],[-11,1],[-28,-25],[-33,-8],[-27,15],[-19,48],[-10,79],[13,63],[37,45],[4,35],[-8,15],[-15,17],[-5,34],[15,38],[-1,13],[-7,10],[-16,6],[-5,20],[4,19],[-1,13],[-17,9],[-32,4],[-183,-7]],[[31648,42597],[-71,-97],[-77,-40],[-106,-16],[-131,32],[-157,81],[-95,72],[-33,64],[-15,54],[3,46],[-25,29],[-53,13],[-34,28],[-15,44],[-39,4],[-62,-36],[-87,3],[-112,42],[-53,-4],[-27,-16],[-50,41],[-85,109],[-49,83],[-12,57],[-25,35],[-37,12],[-43,48],[-48,84],[-28,65],[-9,49],[-38,55],[-67,61],[-28,55],[19,72],[32,158],[6,73],[-8,42],[6,40],[18,38],[-1,42],[-19,46],[-36,30],[-53,15],[-27,53],[-2,92],[39,142],[81,191],[44,136],[8,79],[49,183],[89,288],[35,184],[-21,81],[-46,77],[-70,73],[-50,86],[-29,97],[-8,68],[12,39],[-10,69],[-32,97],[-14,67],[5,36],[-20,16],[-44,-3],[-24,22],[-5,49],[-28,66],[-52,81],[-53,44],[-53,7],[-41,-18],[-30,-42],[-52,-37],[-77,-31],[-81,-10],[-85,13],[-77,-63],[-67,-140],[-66,-95],[-100,-85]],[[31938,42734],[-75,-126],[-54,-39],[-86,7]],[[32736,43260],[-77,109],[-29,62],[-7,51],[-77,73],[-146,96],[-71,-23],[4,-140],[-18,-121],[-41,-103],[-73,-118],[-156,-201]],[[33001,43757],[-46,-217],[-25,-84],[-20,-24],[-7,-33],[5,-43],[16,-33],[26,-24],[6,-42],[-14,-62],[-39,-48],[-70,-36],[-31,17]],[[34798,51169],[-77,125],[-25,76],[2,69],[33,75],[64,79],[40,61],[15,43],[3,61],[-10,79],[2,45],[13,9],[6,26],[0,43],[67,142],[133,244],[69,174],[7,106],[15,86],[23,65],[72,58],[120,51],[73,64],[26,75],[33,31],[40,-14],[42,20],[64,81]],[[30246,51573],[31,-16],[18,-39],[22,-102],[196,-236],[96,-79],[61,-1],[55,-35],[49,-69],[100,14],[153,95],[143,-3],[134,-101],[75,-95],[14,-90],[33,-58],[52,-26],[119,-26],[64,14],[65,35],[57,-10],[49,-54],[40,-17],[34,21],[58,2],[85,-19],[51,-42],[19,-63],[19,-34],[21,-5],[20,-52],[20,-99],[25,-53],[31,-7],[15,-22],[-3,-38],[11,-51],[23,-65],[34,-34],[42,-1],[55,-28],[68,-55],[35,-55],[4,-55],[-11,-42],[-9,-32],[17,-32],[40,5],[48,25],[38,67],[37,40],[37,14],[196,-9],[55,13],[-10,36],[8,25],[26,14],[14,21],[1,29],[-8,27],[-18,23],[0,64],[18,105],[31,44],[44,-15],[22,30],[-1,74],[23,52],[47,30],[42,42],[35,52],[14,40],[-7,28],[7,28],[20,29],[7,24],[-6,21],[16,25],[38,29],[125,32],[212,34],[125,-2],[38,-37],[55,-26],[73,-14],[64,-67],[55,-120],[59,-65],[94,-14]],[[28124,42323],[-79,40],[-185,41],[-79,43],[-36,59],[-46,-5],[-54,-66],[-15,-37]],[[46423,42939],[-34,-277],[0,-1],[-27,-114],[-48,-67]],[[50090,44922],[-26,-5],[-45,5],[-34,-18],[-32,-16],[-87,-70],[-23,-28],[-71,-85],[-12,-14],[-17,-26],[-169,-249]],[[24676,57187],[91,78],[50,24],[61,-5],[50,43],[2,58],[-29,86],[-4,63],[21,39],[-49,28],[-119,16],[-73,39],[-28,64],[-47,65],[-68,65],[-89,20],[-110,-24],[-92,-3],[-74,18],[-65,-6],[-56,-29],[-135,44],[-215,117],[-138,55],[-62,-8],[-73,-35],[-85,-64],[-56,-53],[-25,-43],[-39,-35],[-53,-28],[-55,-61],[-86,-141],[-62,-126],[-18,-86],[4,-87],[-8,-47],[-22,-4],[-9,-23],[3,-42],[19,-49],[33,-55],[7,-43],[-20,-30],[-11,-108],[-3,-186],[-9,-38],[-16,-39],[-23,-11],[-3,0],[-89,8],[-62,-15],[-50,-57],[-22,-13]],[[15849,62391],[-69,70],[-24,40],[-2,31],[-36,30],[-68,28],[-60,-2],[-50,-34],[-76,21],[-101,75],[-87,47],[-112,26],[-184,11],[-80,-10],[-40,-28],[-49,2],[-60,32],[-93,14],[-126,-4],[-115,-52],[-103,-100],[-63,-83],[-33,-100],[-22,-85],[-1,-78],[12,-101],[-1,-62],[-14,-23],[3,-29],[22,-34],[10,-58],[-2,-80],[-35,-124],[-67,-168],[-53,-98],[-40,-30],[-24,-59],[-5,-124],[1,-57]],[[18067,61913],[-23,39],[-8,44],[1,61],[16,46],[48,48],[64,41],[35,49],[28,69],[39,56],[51,43],[33,41],[14,40],[-8,69],[-31,98],[-35,58],[-39,17],[-11,26],[16,32],[-55,78],[-126,122],[-90,60],[-52,0],[-56,20],[-59,42],[-42,51],[-26,62],[-27,27],[-30,-6],[-35,16],[-38,40],[-37,13],[-53,-19],[-223,-8],[-82,16],[-15,37],[-3,42],[12,46],[-12,48],[-34,52],[-96,43],[-158,34],[-116,69],[-75,103],[-28,63],[3,42],[-13,34],[-56,34],[-60,16],[-65,-1],[-69,25],[-73,52],[-63,20],[-51,-12],[-93,24],[-133,62],[-93,23],[-80,-21],[-125,127],[-41,72],[0,60],[-28,66],[-56,72],[-59,57],[-64,43],[-81,28],[-98,13],[-76,-12],[-81,-57],[-192,-105],[-112,-38],[-149,-1],[-11,12],[-1,53],[8,94],[-4,42],[-12,21],[0,19],[13,29],[-5,26],[-22,23],[-57,10],[-92,-2],[-84,-32],[-78,-63],[-115,18],[-153,98],[-129,47],[-103,-4],[-95,-26],[-87,-48],[-67,5],[-49,57],[-17,33],[4,30],[-10,9],[-27,-18],[-25,13],[-11,57],[-45,41],[-121,39]],[[43909,34710],[-54,-10],[-71,80],[-57,89],[-51,79],[-55,114],[-2,59],[14,53],[30,48],[14,42],[-1,37],[25,25],[50,14],[19,14],[-12,15],[2,31],[14,46],[-1,69],[-16,90],[5,96],[25,101],[7,58],[-16,20]],[[45684,35805],[-123,-103],[-55,-31],[-27,7],[-27,32],[-40,88],[-27,-61],[-15,-13],[-12,13],[-22,-53],[-31,-119],[-25,-64],[-20,-6],[-14,-32],[-5,-55],[-11,-23],[-16,11],[-26,-69],[-38,-149],[-43,-110],[-49,-70],[-29,-12],[-9,45],[-13,1],[-15,-41],[-17,-5],[-19,31],[-28,-1],[-36,-31],[-22,-39],[-6,-47],[-69,-160],[-131,-274],[-86,-125],[-39,24],[-40,51],[-41,79],[-57,34],[-110,-16]],[[43632,36954],[-90,67]],[[23212,58979],[-88,-15],[-58,12],[-83,51],[-49,6],[-33,37],[-33,70],[-32,115],[-47,243]],[[22243,60338],[-497,640],[-170,262],[-10,98],[-33,67],[-84,52]],[[35231,62242],[133,54],[171,29],[253,22],[88,26],[20,13],[-2,17],[-23,34],[-38,26],[-27,12],[-11,16],[11,17],[-4,36],[-10,24],[-4,26],[13,21],[-8,32],[-27,47],[8,55],[15,42],[1,31],[-23,11],[-14,35],[6,88]],[[35819,63154],[12,82],[33,89],[58,121],[18,68],[-23,14],[16,47],[54,80],[66,65],[78,47],[71,91],[65,133],[33,85],[2,34],[76,42],[150,47],[119,11],[89,-25],[49,-39],[9,-52],[15,-33],[19,-13],[84,19],[148,51],[89,63],[47,113]],[[40806,63959],[218,-82],[29,-12]],[[37327,64376],[353,110]],[[39436,64643],[179,-64],[70,-42],[21,-41],[15,-60],[10,-80],[29,-73],[71,-99]],[[45976,34645],[90,-108]],[[42617,16361],[-5,10],[-21,39],[-50,28],[-27,43],[0,54],[-13,66],[-1,4],[-23,73],[-50,78],[-18,20],[-58,61],[-65,108],[-14,36],[-39,100],[-45,87],[-15,16],[-20,21],[-12,28],[0,22],[9,28],[-7,36],[-25,34],[-14,36],[-4,37],[7,23],[19,7],[0,27],[-20,48],[8,26],[36,5],[16,33],[-6,59],[-11,25],[-15,-10],[-7,13],[3,37],[-7,28],[-18,18],[-15,-4],[-10,-27],[-10,7],[-10,40],[-12,5],[-15,-31],[-3,-23],[5,-14],[-1,-14],[-23,-5],[-20,30],[-27,83],[-29,33],[-29,-16],[-39,26],[-47,67],[-22,58],[5,50],[-8,59],[-21,68],[-11,14]],[[41763,18171],[-40,51],[-80,61],[-51,19],[-24,-23],[-14,21],[-9,97],[-2,50],[-2,62],[-5,35],[-5,18]],[[41763,18171],[-24,156],[-22,65],[-30,42],[-24,63],[-26,114]],[[37894,22077],[83,-90],[85,-82],[43,-81],[29,-108],[28,-53],[25,2],[18,-13],[13,-28],[20,9],[30,47],[47,0],[65,-47],[63,27],[62,99],[52,52],[40,4],[29,35],[18,67],[19,31],[32,-5],[34,-2]],[[45311,40285],[51,-3],[4,16],[-41,50],[-16,18],[-4,43],[3,42],[-16,42],[-44,21],[-57,61],[-71,102],[-77,74],[-82,46],[-89,-8],[-95,-62],[-112,-38],[-129,-13],[-112,-90],[-95,-166],[-65,-82],[-35,3],[-42,-25],[-48,-53],[-89,-122],[-19,-87],[3,-109],[9,-77],[15,-46],[5,-86],[-5,-127],[-12,-113],[-18,-101],[-27,-75],[-34,-48],[-15,-52],[4,-57],[-6,-41],[-15,-25],[7,-62],[30,-99],[18,-98],[6,-97],[-5,-69],[-26,-63],[-25,-137],[-21,-54],[-26,-18],[-23,-51],[-21,-83],[-22,-41],[-23,3],[-17,-16],[-11,-33],[1,-34],[14,-37],[-4,-33],[-23,-31],[0,-15],[7,-9],[-2,-15],[-15,-15],[-8,-46],[1,-77],[-8,-38],[-16,-1],[-2,-21],[26,-87]],[[27547,43343],[-59,63],[-73,30],[-25,59],[-1,97],[-15,74],[-28,49],[-79,92],[-131,137],[-76,125],[-31,173],[-17,190],[14,86],[41,44],[13,36],[-17,27],[-2,41],[12,54],[-3,34],[-20,14],[7,37],[36,60],[12,52],[-10,43],[4,39],[21,35],[2,41],[-14,44],[1,37],[16,29],[38,20],[88,19],[46,62],[8,58],[-15,75],[-20,58],[-26,42],[-6,47],[9,24]],[[40620,49901],[-17,32],[1,38],[4,39],[-13,33],[-37,9],[-30,6],[-59,-18],[-32,10],[-6,38],[-29,40],[-50,41],[-14,79],[-32,26],[-58,3],[-52,-46],[-45,-94],[-60,-59],[-74,-21],[-50,-1],[-23,21],[-8,36],[13,78]],[[39966,50312],[-7,47],[-37,55],[-102,118]],[[46823,36008],[25,-27],[27,8],[56,51],[214,119],[107,34],[87,-17],[13,-10]],[[21448,61456],[21,60],[-7,57],[-29,73],[-8,57],[11,41],[0,32],[-10,23],[-76,45],[-142,67],[-99,25],[-58,-17],[-85,13],[-180,76],[-26,24],[-8,51],[12,79],[-110,152],[-367,353],[-46,27],[-133,11],[-317,-19],[-399,169],[-86,41],[-54,60],[-16,90],[10,72],[34,55],[-16,64],[-66,74],[-41,86],[-14,96],[0,65],[15,32],[3,44],[-10,54],[0,61],[11,67],[32,50],[54,35],[28,39],[2,45],[-16,56],[-37,69],[-124,69],[-213,71],[-74,37],[-12,21],[3,27],[3,46],[-7,27],[-31,-8],[-21,10],[-10,30],[-19,14],[-26,-1],[-12,14],[3,31],[-11,11],[-23,-7],[-42,21],[-24,34],[-32,13]],[[18553,64570],[-2,1],[-29,37],[3,23],[-16,26],[-34,27],[-5,31],[22,34],[0,20],[-24,8],[-9,18],[5,30],[-20,10],[-46,-8],[-22,20],[2,75],[-17,45],[-61,43],[-112,55],[-74,57],[-37,59],[-70,35],[-100,9],[-68,19],[-36,29],[-37,1],[-40,-27],[-90,-11],[-142,4],[-105,24],[-67,44],[-40,44],[-12,47],[-40,36],[-67,25],[-48,34],[-29,42],[-1,66],[27,90],[6,64],[-15,38],[-96,112],[-178,188],[-99,120],[-20,51],[-61,67],[-103,84],[-111,49]],[[16435,66465],[-179,24]],[[7964,61903],[9,-76],[-1,-54],[-22,-39],[-47,-18],[-72,3],[-50,-16],[-29,-33],[-33,-6],[-29,20],[-5,38],[-7,16],[-18,2],[-29,-14],[-20,13],[-12,39],[-29,-12],[-45,-63],[-39,-27],[-32,9],[-47,-16],[-62,-40],[-41,3],[-47,17],[-41,-23],[-23,-41],[5,-32],[49,-37],[11,-38],[-17,-39],[-52,-44],[-57,-27],[-40,-39],[-46,-49],[-8,-61],[2,-44],[-20,-18]],[[7964,61903],[-83,44],[-141,32],[-83,41],[-23,51],[2,64],[29,76],[13,67],[0,56],[-33,84],[-65,111],[-74,67],[-124,35],[-19,-8],[-32,-28]],[[16256,66489],[-397,-102],[-167,-64],[-68,-58],[-79,-34],[-88,-8],[-42,-23],[6,-37],[-77,-20],[-158,-3],[-136,-36],[-113,-69],[-60,-52],[-17,-36],[-13,-6],[-10,24],[-29,5],[-47,-14],[-20,-20],[6,-27],[-25,-22],[-58,-17],[-36,-34],[-16,-51],[-73,-16],[-131,21],[-98,-20],[-66,-60],[5,-32],[75,-3],[30,-39],[-15,-77],[-34,-29],[-53,19],[-40,-28],[-27,-75],[-68,-45],[-106,-15],[-116,-59],[-125,-103],[-165,-83],[-307,-94]],[[13298,65047],[-144,-42],[-88,10],[-78,48],[-75,19],[-72,-9],[-57,-26],[-41,-42],[-56,-12],[-69,17],[-125,-45],[-182,-107],[-134,-49],[-84,8],[-127,-33],[-137,-35],[-117,-78],[-93,-33],[-85,8],[-116,-43],[-97,-8],[-106,-33],[-146,-16],[-13,32],[-24,22],[-51,12],[-36,25],[-20,40],[-112,30],[-60,-6],[-54,24],[-123,7]],[[10576,64732],[-35,19],[-34,-12],[-42,-56],[-79,-120],[-56,-38],[-102,-179],[-85,-121],[-6,-31],[15,-88],[-7,-85],[-28,-80],[-44,-64],[-87,-69],[-67,-41],[-25,-36],[-7,-45],[-19,-35],[-29,-24],[-32,-64],[-35,-104],[-10,-81],[15,-57],[-26,-64],[-66,-72],[-40,-87],[-13,-103],[-35,-75],[-56,-48],[-35,-71],[-15,-93],[-19,-66],[-26,-39],[-12,-57],[-1,-74],[18,-63],[36,-51],[24,-57],[15,-44],[6,-50],[4,-41],[20,-26],[51,-17],[29,-22],[7,-26],[-6,-34],[-19,-41],[-33,-27],[-48,-16],[-38,-37],[-29,-60],[-115,-32],[-203,-5],[-145,-29],[-88,-54],[-41,-48],[6,-41],[-10,-44],[-26,-47],[-60,-35],[-108,-21],[-34,-15],[-45,-26],[-17,22],[-3,59],[-29,88],[-53,119],[-55,59],[-55,1],[-35,24],[-14,46],[-28,12],[-41,-22],[-26,-27],[-11,-34],[-23,-5],[-35,24],[-36,-2],[-34,-27],[-39,-5],[-42,15],[-35,36],[-26,57]],[[16256,66489],[-2,1]],[[16258,66490],[-2,-1]],[[36369,58349],[-55,89]],[[36257,58584],[-82,81],[-19,37],[17,19],[6,40],[-6,59],[-86,51],[-167,44],[-142,14],[-61,43],[-14,62],[-29,31]],[[35418,59042],[-11,71],[-55,30],[-157,20]],[[20456,61115],[-29,-235],[-4,-39],[-10,-42],[-41,-36],[-81,-50],[-78,-27],[-73,-3],[-49,-37],[-26,-70],[-11,-80],[5,-90],[-21,-104],[-44,-119],[-12,-62],[14,-52],[50,-111],[5,-40],[-5,-44],[-49,-56],[-12,-46],[26,-35],[3,-35],[-19,-35],[-1,-38],[25,-59],[43,-92],[6,-42],[-4,-34],[-68,-50],[-6,-6],[-3,-3],[-17,-12],[-19,-2],[-58,-36],[-23,-29],[-13,-52],[4,-29],[10,-16],[10,-9],[6,-14],[6,-28],[1,-22],[-3,-12],[-6,-10],[-10,-6],[-8,2],[-95,7],[-21,-6],[-15,-11]],[[26892,65033],[-126,-89],[-223,-36],[-362,-12],[-211,-32],[-100,-87]],[[50907,46093],[-42,-17],[-32,-37],[-15,-52],[7,-27]],[[36418,61254],[-10,-83],[-39,-70],[-71,-86],[-28,-76],[20,-98]],[[36556,61723],[-37,-63],[-8,-39],[15,-52]],[[38240,62187],[496,-49],[174,1],[16,32],[-14,95],[-69,235]],[[37408,62236],[23,-5]],[[37708,62242],[87,-1]],[[36756,62296],[-87,-91]],[[37187,62406],[143,144]],[[37090,62810],[-40,-10],[-29,-31],[-33,-55],[-61,-38],[-135,-31]],[[39185,62864],[10,68],[21,45],[51,65]],[[39348,63398],[25,59],[25,20],[34,0],[13,11],[7,31],[27,5],[29,-3]],[[40019,63540],[32,13],[6,25],[-5,25],[5,27],[36,19],[21,33],[0,47],[23,53],[44,57],[22,45],[-3,49]],[[37505,62253],[-74,-22]],[[33301,48904],[-153,0],[-203,0],[-203,0],[-203,0],[-202,0],[-203,0],[-203,0],[-203,0],[-203,0],[-157,0]],[[31368,48904],[2,8],[4,13],[-3,24],[-36,56],[-15,52],[-12,21],[-79,43],[-11,21],[-4,20],[-19,23],[-25,58],[-41,61],[-11,26],[-1,32],[7,66],[-1,25],[-11,7],[-38,5],[-17,13],[-8,19],[-2,16],[25,40],[20,87],[3,66],[-23,137],[3,21],[13,30],[0,34],[-8,42],[-23,68],[-35,229],[-96,186],[-27,32],[-20,8],[-18,0],[-29,-28],[-8,-4],[-7,9],[-22,32],[-18,40],[-3,8],[2,13],[4,18],[-6,23],[-11,23],[-6,9],[-6,0],[-7,-1],[-6,-1],[-5,5],[-17,25],[-95,99],[-3,13],[24,40],[-3,27],[-11,26],[-83,108],[-70,32],[-27,27],[-8,21],[-10,67],[-3,13],[-6,6],[-39,30],[-19,30],[-36,26],[-13,25],[-15,100],[-32,49],[-16,47],[-22,30],[-21,41],[-31,36],[-32,107],[-19,32],[-21,9],[-19,-11],[-16,-17],[-8,-19],[-3,-30],[-7,-7],[-40,-1],[-12,21],[-47,150],[-19,41],[-80,120],[-36,109],[-13,3],[-17,-15],[-97,-2],[-77,66],[-18,24],[-16,40],[41,80],[2,31],[-13,11],[-59,36],[-57,55],[-13,-20],[-7,-38],[-8,-15],[-62,-28],[-14,2],[-11,22],[-1,32],[10,42],[-20,36],[-10,43],[-30,61],[15,51],[-5,35],[-13,33],[-26,42],[-8,51],[-23,43],[-12,10],[-49,7],[-12,14],[-18,62],[-5,54],[-25,32],[-17,8],[-3,56],[-14,31],[-53,59],[-37,24],[-11,-32],[-3,-64],[-11,4],[-103,65],[-23,33],[-43,110],[-17,9],[-75,11],[-26,-9],[-15,7],[-21,29],[-46,91],[-17,18],[-18,7],[-1,51],[-12,36],[1,9],[15,3],[69,0],[4,19],[-37,65],[-35,9],[-9,15],[-6,47],[-26,27],[-14,47],[0,384],[0,384],[0,384],[0,384],[0,384],[0,384],[0,385],[0,384],[0,384],[0,384],[0,384],[0,384],[0,384],[0,384],[1,385],[0,384]],[[28544,59892],[297,0],[297,0],[298,0],[297,0],[297,0],[298,0],[297,0],[297,0],[298,0],[297,0],[297,0],[297,0],[298,0],[297,0],[297,0],[298,0]],[[33301,59892],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-343],[0,-344],[0,-343],[0,-337],[0,-7]],[[31368,48904],[-46,0],[-202,0],[-203,0],[-203,0],[-203,0],[-88,0]],[[30423,48904],[-115,0],[-203,0],[-153,0]],[[29952,48904],[-49,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0],[-39,0]],[[27227,48904],[5,9]],[[27232,48913],[-20,0],[-13,26],[-47,46],[-18,0],[-19,-14],[-12,-22],[-8,-36],[-2,0]],[[27074,48913],[-1,2],[-13,52],[4,28],[16,34],[-1,12],[-34,-10],[-15,9],[-7,18],[2,72],[-13,30],[5,6]],[[27017,49166],[20,24],[47,12],[57,1],[17,30],[16,76],[-41,-70],[-24,-7],[-51,18],[-15,105]],[[27043,49355],[-24,176],[7,23],[5,29],[-4,7],[-29,-46],[-5,2]],[[26920,49461],[-64,-150],[-148,82],[-16,11],[-27,40],[-38,68],[-12,59],[14,50],[15,24],[16,0],[17,-18],[36,-81],[15,-50],[37,7],[60,64],[14,24],[-60,-25],[-25,2],[-27,27],[-11,22],[-13,316],[21,19],[19,45],[-1,18],[-18,38],[-26,29],[-26,15],[-6,-5],[29,-59],[-9,-86],[-25,-45],[-7,-24],[0,-77],[-6,-16],[-35,-22],[-40,-61],[-37,-12],[-78,-4],[-14,1],[-33,30],[-104,150],[-12,19],[-9,48]],[[26168,50360],[-3,23],[30,62],[35,100],[4,31],[0,20],[3,9]],[[26187,50682],[3,-7],[-1,-3],[9,-46],[-6,-53],[-20,-73],[-35,-78],[-72,-38],[-127,21],[-14,10],[-9,27],[-7,115],[-7,-14],[-15,-62],[-11,-87],[-1,-1],[-65,0],[-12,23],[-31,3],[-60,-24],[-28,10],[-34,1],[-67,25],[-21,2],[140,83]],[[25796,50614],[-60,-12],[-1,10],[-37,7],[-96,-23],[-4,24]],[[25599,50758],[-150,61],[10,49],[-16,96],[-22,-91],[-22,-34],[-89,36]],[[25233,50802],[2,-1],[-3,0],[-25,-27],[-21,1],[-100,48],[-1,1],[-11,50]],[[24936,51270],[-22,66],[100,178],[35,34],[31,12],[149,16],[17,3],[98,-2]],[[25344,51577],[-90,4],[85,17],[21,11],[-163,13],[-145,-9],[-38,-22],[-34,2]],[[24860,51478],[-45,73],[-6,28],[-9,102],[3,45],[16,58],[26,62],[10,8]],[[25064,52153],[77,63],[69,-21],[23,-36],[28,-66],[35,-63],[0,0],[76,-162]],[[25369,51944],[-34,63],[-4,10],[-15,25],[-54,101],[-2,27],[-17,43],[-28,20],[-97,182],[6,27],[92,120],[21,63],[0,30],[-8,33],[-19,58],[-6,0],[6,-88],[-3,-34],[-10,-38],[-15,-29],[-19,-20],[-113,-157],[-128,-141],[-48,-16],[-37,-29],[-20,-38],[-12,-36],[-84,257],[7,18],[38,54],[-1,6],[-43,-18],[-32,21]],[[24690,52458],[-38,-142],[-2,-4],[-27,-39],[-14,-5],[-1,40],[74,368]],[[24682,52676],[-5,46],[9,40],[26,52],[-25,-4],[-66,-43],[-32,17]],[[24589,52784],[-72,38],[-29,222],[-61,103],[-102,84],[-11,4],[-15,112]],[[24476,53312],[14,8],[20,-7],[53,45],[7,4],[29,-2],[76,-40],[25,-48],[72,-94],[-2,9],[30,-46]],[[24800,53141],[-33,62],[-5,30],[-50,73],[-12,22]],[[24700,53328],[-8,7],[-9,13],[-44,38],[-36,3],[-27,7]],[[24576,53396],[-6,-4],[-8,1],[-48,-20],[-20,6],[-42,30],[-36,48],[-35,106],[-9,49],[2,37],[9,33],[15,30],[29,21],[44,14],[14,13],[-57,61],[-26,-1],[-10,-10],[-7,12]],[[24385,53822],[-78,-93],[-11,-4],[-7,17],[-8,1],[-26,-44],[-20,-19],[-53,-101],[-28,-33]],[[24133,53404],[-4,-103],[-2,-5],[-24,-13],[-46,58]],[[24037,53268],[-2,-32],[-41,-82],[-59,82],[-64,79],[-23,75],[-6,61]],[[23670,53689],[-14,23],[20,57],[23,37],[146,-165]],[[23767,53767],[-7,252],[6,16],[120,32],[78,64],[-80,6],[-49,-10],[-89,-44],[-6,5],[-13,29]],[[23664,54263],[-50,-37],[-16,27],[-16,69],[17,58],[2,60],[5,44],[92,122]],[[23785,54911],[2,9],[24,61],[28,83],[52,116],[82,143],[24,13]],[[23997,55336],[-12,8],[10,17],[-24,-7],[-76,54],[-11,50],[-8,-27],[-2,-114],[-11,-99],[-18,-68],[-52,-139],[-30,-54],[-20,50],[16,87],[29,69],[5,95],[-28,113],[-17,91],[-6,68],[-1,63],[5,57],[9,50],[7,28],[15,51],[-1,4],[6,27]],[[23782,55810],[-7,-15]],[[23775,55795],[5,54],[-5,63],[-15,51],[-20,44],[-56,-26],[-94,39],[-31,108],[-81,33],[-44,76],[-1,1],[-5,2],[-84,36],[-73,26],[-55,44],[-65,52],[-26,23],[-39,33],[-49,42],[-36,-3],[-39,-3],[-44,-3],[-2,61],[-2,33],[-25,58],[10,50],[-46,26],[-35,20],[-33,18],[10,47],[10,50],[15,73],[-60,21],[-9,3],[-77,28],[28,66],[7,18],[15,35],[-33,78],[-67,130],[-34,62],[-17,31],[-67,145],[-57,122],[-2,5],[-48,104],[-7,12],[-34,60],[-56,129],[-74,145],[-70,114],[10,73],[-69,93],[-20,30],[-40,63],[-70,108],[-50,38],[-19,15],[-50,37],[-71,55],[-37,48],[-15,41],[-17,29],[-14,41],[-5,31],[-3,16],[-14,29],[-46,36],[-40,33],[-27,44],[-59,51],[-50,21],[-18,17],[-60,153],[9,55],[7,54],[-7,28],[0,0],[-1,1],[-80,94],[-18,21],[-39,37],[-12,11],[-52,50],[-108,-64],[-110,-66],[-77,-24],[-37,-12],[-70,-22],[5,-11],[30,-61],[-14,-52],[-34,-24],[-8,0],[-48,3],[0,-171],[0,-8],[-53,-128],[-44,0],[-68,-2],[-60,-44],[-83,-60],[-6,-5],[-72,-52],[-76,-85],[-40,12],[18,76],[-3,12],[-25,116],[-24,106],[-4,5],[-45,50],[-83,92],[-62,70],[-89,98],[-62,69],[-64,73],[-85,94],[-19,66],[-16,57],[-78,44],[-82,48],[-1,0],[-6,8]],[[19478,59892],[0,0],[457,0],[453,0],[453,0],[452,0],[453,0],[453,0],[453,0],[452,0],[453,0],[453,0],[453,0],[453,0],[452,0],[453,0],[453,0],[453,0]],[[26727,59892],[227,0],[227,0],[227,0],[227,0],[227,0],[227,0],[227,0],[228,0]],[[26699,50025],[7,-14],[-1,-30],[-4,-7],[-2,51]],[[24864,51870],[-11,-4],[14,32],[-62,-3],[7,97],[23,104],[58,62],[59,44],[53,59],[93,39],[18,-44],[-43,-81]],[[23683,54947],[-1,13],[23,76],[36,91]],[[23741,55127],[1,-28]],[[23686,54955],[-3,-8]],[[23744,55135],[25,62],[-1,46],[-10,68],[-21,83]],[[23737,55394],[-1,14]],[[23736,55408],[-2,71],[20,-97],[14,-67],[8,-44],[3,-40],[-1,-47],[-22,-59],[-11,-29],[-1,39]],[[23724,55453],[-5,31],[-2,69],[1,23]],[[23718,55576],[6,-123]],[[23644,54856],[12,21]],[[23656,54877],[-4,-10]],[[23652,54867],[-8,-11]],[[22622,53495],[110,89],[14,3],[3,11],[16,12]],[[22821,53930],[17,11],[25,2],[58,36],[56,63],[3,2],[10,-1],[-14,-76]],[[22976,53967],[-27,-148],[-29,-76],[-32,-127],[-16,-126],[-2,-113],[-121,-247],[-79,-38],[-83,5],[-60,57],[-45,65],[23,52],[11,1],[33,-4],[26,-6],[18,-10],[2,-2]],[[22636,53241],[-5,7],[-1,5],[-11,10],[-17,23]],[[22579,53316],[-38,21],[-25,24],[-54,32],[-55,107],[0,8],[-7,23],[-66,149],[-13,59],[-8,83],[0,85],[11,101],[7,42],[5,10],[27,-1],[47,-17],[15,-2],[26,-12]],[[22451,54028],[76,-5],[40,-53],[104,37],[20,-7],[19,-22],[22,-48],[24,-73],[5,-80],[-9,-29],[-19,-31],[-118,-90],[-76,-39]],[[22781,53750],[-8,-9],[8,21],[1,40],[-1,11],[7,-26]],[[23580,53417],[-14,3],[-23,23],[-2,5],[30,85],[2,0],[119,-100]],[[23897,53126],[0,-2],[-1,-4],[-36,-47],[-48,22]],[[23812,53095],[-5,2],[-93,151],[-19,17],[-47,77]],[[24383,52600],[-3,20],[3,47],[-2,-2],[20,97]],[[24411,52863],[-52,-240],[-13,-31],[-5,-9],[-31,-5],[-59,82],[-29,66],[-5,69],[-13,25],[25,281]],[[24278,53099],[93,-4],[15,-13],[51,-66],[38,-173],[6,-90],[-33,-193]],[[22847,52877],[19,-74],[-18,-20],[30,-12],[98,-251]],[[23151,52204],[98,-45],[6,-35],[-47,-62],[-6,-1],[-92,82],[-43,84],[-24,77],[-29,44],[-89,98],[-45,70],[-91,156]],[[22789,52672],[-58,75],[-10,23],[-10,40],[1,27],[13,13],[76,19]],[[22783,52896],[-17,4],[0,3],[-122,57],[7,44]],[[22783,53049],[107,85],[8,-1],[26,-24]],[[22997,53010],[6,-21],[10,-55],[-10,4]],[[22734,53049],[-44,-5],[58,16],[-14,-11]],[[25985,50104],[2,-4],[29,-85],[38,-94],[7,-15],[64,-165]],[[26454,49256],[52,-20],[46,-25],[18,-15],[86,-86],[15,-29],[6,-9],[58,-114],[23,-96],[60,-127],[62,-241],[11,20],[3,26],[32,11]],[[26933,48335],[-6,-5],[-23,9],[-18,-27],[-13,-29],[-7,-6]],[[26866,48277],[-35,-31],[-151,52],[-10,6],[-34,19]],[[26636,48323],[-111,64],[-63,40],[-149,82],[-44,28],[-163,140],[-8,37],[2,19],[96,134],[40,72],[16,55],[8,58],[-6,71],[-4,-6],[-8,-68],[-14,-60],[-18,-47],[-11,-17],[-19,-4],[-75,-3]],[[25991,48914],[-52,-66],[-7,-3],[-25,19],[-56,76],[-77,60],[-1,6],[6,12],[10,6],[25,-3]],[[25814,49021],[16,28],[1,1],[27,46],[0,1],[19,33]],[[25877,49130],[-83,25],[-8,15],[-19,17],[-24,-17],[-15,5]],[[25724,49181],[-22,37],[17,72],[1,21],[-34,-27],[-4,44]],[[25678,49366],[-86,-28],[-19,15],[-12,-11],[-2,-15],[-34,-11],[-35,43],[-12,2],[-27,-51],[-9,-3],[-14,22],[-5,97],[4,67],[4,7],[48,29],[135,31],[3,6],[14,3]],[[25631,49569],[-10,4],[4,9],[-23,-3],[-84,28]],[[25518,49607],[-44,15],[-5,8],[-16,-1],[-81,137],[-8,19],[-29,29],[-28,10],[-1,0]],[[25306,49824],[0,0],[-21,8],[-26,21],[-10,-9],[-11,-32],[-14,-20],[-34,-11],[-31,8],[-24,30],[-15,39],[-5,40],[3,4]],[[25154,50012],[-36,4],[-7,14],[-16,17],[-9,-9],[-1,-18],[-72,7],[-4,12],[-18,33],[-99,0],[-21,-20],[-53,88],[-4,61],[-5,21],[-46,12],[-8,20],[26,94],[105,32]],[[24886,50380],[23,7],[29,-14],[44,-60],[-1,22],[-17,69],[-2,41],[30,46],[-29,13],[-104,11],[-81,18]],[[24847,50503],[9,-4],[1,-13],[9,-42],[-64,-37],[-47,-6],[-45,5],[-37,22],[-62,89],[-40,87],[2,48],[22,50],[20,25],[51,28],[24,10],[87,3],[97,-40],[157,-115],[15,-29]],[[25708,50304],[47,-11],[11,-4],[94,-20],[15,-19]],[[25267,49754],[31,26],[40,-27],[19,-35],[23,-63],[6,-38],[5,-44],[1,-37],[-8,-21],[-18,-4],[-30,12],[-34,29],[-59,76],[-6,17],[5,15],[17,12],[2,13],[6,4]],[[43315,56747],[-122,-156],[-123,-159],[-122,-159],[-123,-159],[-167,-225],[-166,-224],[-166,-225],[-166,-224],[-146,-209],[-145,-208],[-145,-209],[-146,-209],[-121,-183],[-121,-182],[-122,-183],[-121,-183],[-182,-231],[-183,-231],[-182,-231],[-182,-231],[-1,-431],[0,-430],[-1,-431],[0,-431],[-1,-430],[0,-431],[-1,-430],[3,-432]],[[40363,49280],[-2,-167],[-1,-203],[0,-8],[-113,2],[-202,0],[-203,0],[-203,0],[-203,0],[-58,0]],[[39378,48904],[-145,0],[-203,0],[-202,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0]],[[37408,48904],[-1,6],[-17,420],[-19,426],[-19,426],[-19,425],[-19,426],[-19,426],[-19,426],[-18,425],[-19,426],[-19,426],[-19,425],[-19,426],[-19,426],[-19,425],[-19,426],[-19,426],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261],[0,261]],[[37106,59892],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[214,0],[217,0]],[[40533,59892],[-5,-43]],[[40525,59452],[18,-55],[0,-27],[-5,-193],[-77,-198]],[[40512,58910],[55,-83],[6,-31],[19,-33],[14,3],[77,-116]],[[40755,58619],[0,0],[21,-10],[3,-57],[-25,-319],[0,-42],[29,81],[30,247],[41,111],[23,16],[43,10],[97,9],[140,-28],[53,-3],[30,10],[86,-164]],[[41326,58480],[0,-2],[2,-20],[12,-75],[15,-46],[44,-215]],[[41521,57679],[67,-184],[43,-131],[19,-84],[7,-58],[-4,-59],[-8,-29],[-32,-88]],[[41580,56954],[0,0],[-8,-19],[-29,-49],[-30,-37],[-31,-25],[2,-6],[35,12],[35,24],[67,64],[26,15],[73,9],[2,-23],[-35,-48],[8,-4],[50,38],[110,55],[432,177],[85,13],[60,-13]],[[42836,56899],[319,-101],[35,-18],[120,-31],[5,-2]],[[55169,45929],[-9,-35],[-52,-13],[-27,-64],[-27,-51],[-19,-14]],[[55035,45752],[-43,-9],[-13,-7],[-37,17],[-13,30],[-46,80],[-4,-33],[23,-100],[-13,-26],[-66,-87]],[[54823,45617],[-54,-72],[-12,-2],[-76,-82],[-107,-71],[-115,-125],[-29,-24],[-142,-101],[-34,0],[-73,94],[20,43],[19,58],[-18,-17],[-12,-25],[-44,-40],[36,-79],[-18,-29],[-51,-38],[-40,-47],[-66,-22]],[[54007,45038],[-1,0],[-16,23],[-35,-22],[-139,2]],[[53816,45041],[-20,20],[0,2],[-5,2],[-19,19]],[[53738,45072],[-2,-5],[-19,-5],[-19,25]],[[53698,45087],[-22,13],[-20,10],[-18,8],[-10,-14],[-9,-18],[-7,-8],[-5,-7],[-25,20],[-15,37],[-25,37],[-10,28],[1,5],[4,28],[11,32],[5,37],[-12,43],[-11,25],[-5,19],[-3,9],[2,22],[1,5],[16,13],[14,16],[5,35],[-9,38],[-8,5]],[[53543,45525],[-5,33]],[[53383,45676],[-7,-4]],[[53376,45672],[0,11],[0,3],[4,26],[8,22],[1,25],[-4,18],[0,14],[2,17],[5,35],[-8,26],[-1,89],[0,18],[-2,149],[-1,128],[-2,161],[0,117],[-2,164],[-1,155],[-2,142],[0,5],[-61,85],[-77,107],[-9,10],[-56,59],[-1,2],[-2,0],[-33,8],[-1,0],[-22,-10],[-2,-5],[-7,-23],[-49,-30],[-79,-29],[-11,-4],[-52,-34],[-24,-16],[-2,0],[-26,0],[-24,8],[-31,25],[-22,37],[0,5],[-2,16]],[[52780,47208],[2,2],[200,124],[63,60],[32,48],[17,34],[7,26],[0,103],[0,73],[0,73],[1,91],[59,0],[66,0],[0,69],[43,0],[52,0],[83,0],[60,0],[2,-30],[15,-29],[101,-84],[28,32],[57,7],[62,24],[50,-19],[13,64],[39,34],[63,24]],[[53895,47934],[-6,-4]],[[54414,47547],[63,53],[1,0],[3,3],[33,28]],[[54635,47733],[66,9],[-15,-36],[76,4],[35,-25],[15,-13],[24,-57],[-16,-28],[-41,-104],[-25,-173],[-1,-3]],[[54753,47307],[-26,-63],[-55,-89],[-75,-88]],[[54556,47019],[2,-2],[-1,-2],[28,-32],[7,-4],[6,-7]],[[54606,46963],[9,2],[2,-1],[4,2],[110,23]],[[54731,46989],[23,-184],[-1,-3],[4,-21],[16,-129]],[[54860,46363],[18,-57],[-2,-35],[18,-18],[33,-109]],[[55064,46120],[48,-8],[3,-3],[109,-27],[0,-1],[21,-19],[19,-39],[-68,-55],[-6,1]],[[55183,45969],[-1,-12],[-25,-20],[12,-8]],[[58467,51384],[-1,232],[0,290],[-193,0],[-194,0],[-193,0],[-193,0],[-194,0],[-193,0],[-194,0],[-193,0],[-194,0],[-193,0],[-193,0],[-194,0],[-193,0],[-194,0],[-193,0],[-194,0],[-71,10],[-13,10],[-4,23],[3,7],[39,-3],[19,12],[-2,34],[-7,44],[-39,159],[-57,47],[-24,36],[-4,38],[-4,10],[-52,29],[-2,8],[3,19],[20,41],[29,40],[27,23],[42,22],[137,38],[48,21],[6,19],[-67,85],[-6,23],[-2,29],[9,113],[-3,25],[-24,70],[-32,66],[-24,8],[-36,-5],[-51,-27],[-6,-11],[-26,-170],[-17,-17],[-62,-24],[-19,-39],[-4,-189],[2,-72],[38,-175],[-13,-191],[-14,-39],[-47,-48],[-6,-17],[-24,-153],[-6,-88],[4,-30],[18,-42],[-1,-41],[-103,-119],[-43,-9],[-48,120],[-2,25],[5,17],[25,28],[6,35],[-15,23],[-51,57],[-79,149],[-50,58],[-48,42],[-62,30],[-62,18],[-26,0],[-10,-7],[-37,-102],[-18,-21],[-20,0],[-28,21],[-43,10],[-12,-40],[-10,-12],[-27,2],[-45,27],[-27,28],[-29,100],[-25,21],[-62,70],[-8,-6],[-15,-106],[-9,-33],[-15,9],[-14,20],[-15,45],[-11,65],[-1,47],[30,56],[3,20],[-15,243],[5,27],[23,53],[5,65],[7,34],[15,21],[5,35],[-13,37],[-30,58],[-18,19],[-19,8],[-10,-14],[-15,-46],[-45,-27],[-8,-21],[-19,-161],[-8,-22],[-60,-41],[-19,12],[-20,-4],[-26,4],[-37,22],[-18,35],[-1,77],[8,88],[12,60],[27,92],[3,110],[13,146],[-4,26],[-17,29],[-21,9],[-24,24],[-25,85],[-17,40],[-139,58],[-8,13],[-2,21],[10,95],[-7,66],[-28,43],[-108,194],[-2,27],[14,39],[24,42],[81,94],[1,17],[-3,29],[-32,110],[-13,59],[-5,55],[9,46],[11,13],[20,7],[105,-55],[14,1],[24,67],[41,31],[1,36],[-25,29],[-2,18],[-41,126],[-39,91],[-21,67],[-10,52],[5,22],[9,13],[33,3],[17,-11],[65,-126],[142,-156],[68,-33],[35,51],[-3,48],[-25,101],[8,50],[-26,131],[14,63],[-3,21],[-35,80],[-1,17],[13,17],[19,-9],[55,-63],[180,-247],[39,-40],[35,-26],[95,-35],[7,-9],[34,-93],[27,-36],[31,-24],[264,-26],[145,15],[226,-7],[205,-93],[76,-21],[24,3],[20,29],[42,131],[37,142],[7,44],[-1,25],[-34,99],[8,54],[11,27],[39,42],[127,98],[24,32],[-19,64],[-4,36],[4,44],[-1,29],[-72,29],[-28,22],[-25,32],[-52,109],[-83,155],[-4,22],[5,40],[17,25],[36,28],[13,16],[-9,33],[-123,38],[-24,25],[-39,6],[-17,3],[6,47],[44,68],[-6,16],[-82,47],[-15,13],[-3,11],[2,35],[-9,60],[40,35],[47,9],[14,36],[-14,52],[-75,164],[-2,16],[7,30],[34,50],[13,33],[25,43],[22,26],[13,133],[19,60],[21,47],[16,97],[-1,13],[-15,39],[-4,39],[28,77],[-9,117],[1,40],[7,28],[62,88],[7,23],[-1,31],[-8,3],[-46,-30],[-38,10],[-23,7],[-14,18],[-23,52],[-19,18],[-12,2],[-28,-18],[-16,27],[-26,63],[-45,142],[-76,81],[-6,22],[2,23],[12,25],[130,190],[35,39],[84,61],[5,23],[-2,22],[-20,50],[-74,-10],[-12,10],[-11,45],[1,21],[7,21],[18,24],[34,18],[194,48],[22,11],[5,10],[-4,17],[-15,29],[-27,31],[-35,23],[-29,8],[-125,-50],[-79,-41],[-17,-1],[-21,17],[-28,80],[-154,45],[-90,18],[-19,20],[-2,34],[9,36],[15,21],[15,8],[179,-50],[17,3],[16,18],[-4,24],[-52,47],[-17,25],[-13,50],[-7,60],[0,130],[8,42],[37,58],[22,19],[-3,39],[-28,13],[-129,-61],[-29,22],[-20,52],[13,274],[14,49],[46,41],[2,16],[-2,11],[-8,11],[-73,42],[-16,23],[-9,27],[3,14],[47,14],[34,27],[29,19],[13,32],[-10,20],[-69,34],[-28,42],[0,13],[15,17],[96,38]],[[54892,60196],[55,-38],[21,-28],[-3,-13]],[[54963,60106],[0,-76],[-30,-45],[-88,-57],[-26,-25],[17,-15],[82,46],[46,13],[1,-130]],[[55226,59506],[29,-31],[5,-9],[43,-62],[-48,-65],[-57,-38],[12,-29],[78,-31],[11,-31],[-8,-41],[11,0],[55,64],[2,0],[15,-11]],[[55374,59222],[43,-30],[45,-106],[-43,-79],[-66,-36],[-53,-15],[-73,2],[-29,-12],[14,-26],[70,-1],[108,20],[35,14],[64,-34]],[[55489,58919],[35,-19],[3,-4],[30,-75],[-3,-17],[-28,-44],[46,-10],[64,21],[20,-23],[39,-90],[18,-65],[-32,-72],[-70,-82],[-44,-21],[-78,-32]],[[55473,58373],[-15,-65],[-6,-16],[-48,-68],[31,0],[50,66],[117,40],[-5,-26],[27,4],[113,65],[15,4],[96,6],[5,-16],[-38,-154],[-66,-119],[-39,-24],[-54,-22]],[[55656,58048],[-20,-23],[-6,-4],[-42,-43],[-52,-69],[19,-13],[114,91],[78,36],[41,11],[78,7]],[[56132,57775],[13,-93],[-7,-18],[30,-101],[-17,-56],[-17,-15],[-208,-111]],[[55926,57381],[6,-3],[-32,6],[19,-27],[28,-14],[44,-7],[14,4],[88,-47]],[[56116,57155],[44,-29],[2,-2],[40,-31],[21,-8],[40,-26]],[[56281,56616],[-23,-47],[-152,27],[-145,67],[-7,21],[41,45],[-36,4],[-42,-18],[-18,-17],[44,-65],[-44,17]],[[55899,56650],[213,-127],[28,-35],[38,-4],[1,-1]],[[56248,56248],[63,-48],[-36,-14],[-1,-20],[-45,-10]],[[56364,56104],[48,15],[6,-1],[11,-20]],[[56429,56098],[15,-28],[1,-7],[-3,-24]],[[56442,56039],[-11,-107],[-33,-12],[0,-26],[28,-14],[-2,-18]],[[56902,55059],[16,26],[7,8],[61,43],[57,10],[-18,-53]],[[57049,55078],[104,116],[39,12],[16,-16]],[[57323,55073],[23,-16],[-14,-27],[-96,-147],[-18,-19]],[[57911,54690],[13,19],[9,4],[3,12],[25,36]],[[57961,54761],[21,14],[29,7],[44,-6],[2,-2],[15,-96],[-37,-20]],[[58035,54658],[82,-34],[4,-5],[48,-45],[47,-23],[69,-10],[37,-50],[0,-20],[-39,-53],[-37,-77],[-20,-17],[-66,-37],[-69,-2],[-124,-34],[-5,-29],[-46,-15]],[[57916,54207],[-2,-30],[-46,-23],[-36,-25],[-4,-6],[-88,-56]],[[57720,54000],[31,-28],[-14,-21],[-41,-10],[-57,5],[-38,-11],[-28,-23],[-16,-34],[-13,-13],[-77,-34],[-140,-95],[-75,-3],[-46,11],[-35,-8],[-24,-26],[-67,-46],[-20,-29],[-12,-32],[-9,-67],[-8,-24],[-13,-14],[-56,14],[-63,43],[12,-45],[100,-78],[28,-43],[-27,-37],[-63,-58],[-7,-31],[26,-17],[-11,-26],[-34,-28],[4,-12],[3,-11],[87,40],[76,86],[50,88],[25,24],[99,32],[59,38],[84,69],[91,100],[100,131],[127,102],[90,43],[17,3]],[[57992,54036],[-113,-3],[-12,23],[2,17],[22,30],[40,19],[24,6],[267,-36],[87,-26],[8,-6]],[[58317,54060],[2,-2],[35,-80],[19,-49]],[[58373,53929],[70,-179],[0,0],[7,-56],[-10,-35],[-42,-41],[-117,-83],[-16,-21],[-2,-12],[51,-16],[17,-23],[25,-91],[22,24],[9,-14]],[[58448,53442],[23,78],[31,46],[69,25]],[[59026,53301],[29,-79],[0,-7],[4,-26],[18,-40],[9,-34],[-5,-77],[-12,-40],[-48,-44]],[[59043,52871],[15,-34],[13,-55],[-11,-46],[-55,-39]],[[58924,52550],[-37,-71],[-36,-1],[-16,-29],[46,-9],[18,0],[177,-36],[35,-25],[19,-46],[-5,-37],[-12,-11],[-15,-1]],[[59098,52284],[-74,-3],[-40,18],[4,-24],[81,-60],[24,-30],[33,-29],[4,-4]],[[59128,52145],[-72,-210],[-74,-100],[-126,-132],[-127,-116],[-172,-189],[-90,-14]],[[59008,51061],[-8,41],[9,-4],[38,15],[5,1],[14,-2],[12,-14],[9,-25],[5,-35],[0,-44],[-7,-54],[-24,-88],[-35,-79],[-18,-28],[-55,-57],[-14,-21],[-7,-26],[-7,-82],[-28,-66],[-89,-168],[-34,-37],[0,-29],[-12,-67],[-77,-169]],[[58685,50023],[-5,-14],[-20,-41],[-18,-51],[-7,-33],[-49,-135]],[[58553,49656],[46,-129],[0,-4],[31,38],[70,136],[52,82],[35,27],[24,37],[9,26],[106,121],[6,-18],[-3,-48],[-17,-58],[1,-17],[41,42],[71,36],[8,-2],[23,-20]],[[59056,49905],[15,-4],[31,-32],[43,6],[13,6],[2,0]],[[59160,49881],[-62,-164],[-127,-103],[-48,-85],[9,2],[33,37],[35,20],[37,2],[10,-7],[-26,-68]],[[59021,49515],[-16,-75],[-57,-78],[22,5],[50,26],[118,-86]],[[59165,49328],[54,40],[3,1],[27,-43]],[[59267,49297],[30,7],[0,-13],[5,-8],[26,19],[2,9],[40,8],[0,-1],[-11,-73],[-17,-68],[-39,-99],[5,-42],[-10,-46],[8,-2],[40,43],[2,18],[-3,41],[4,20],[33,45],[5,5],[69,52],[5,-9],[-3,-32],[16,7],[21,30],[40,-4]],[[59543,49180],[76,152],[13,22],[34,47],[37,36],[15,2],[-5,-60],[7,-69],[1,-58],[7,-13],[5,12],[2,-24]],[[59818,49317],[14,15],[130,20],[20,-7],[91,-79]],[[60073,49266],[55,-48],[18,-44],[5,-72],[-3,-25],[-36,-70],[-14,-19],[-41,-42],[-4,-6],[-36,-4]],[[59968,48794],[0,-10],[-103,-85],[29,-3],[71,22],[3,0],[0,-61],[-8,-7],[-4,-14],[2,-18],[37,-22],[-6,-60]],[[59977,48459],[-33,-102],[-35,-26],[-22,-26],[5,-5],[50,30],[3,-12]],[[59945,48318],[53,38],[14,5],[25,0],[15,24],[33,-24]],[[60100,48298],[51,98],[4,-3],[67,81],[23,10],[41,-9],[26,14],[45,55],[32,25],[1,-2]],[[60390,48567],[14,-27],[3,-57],[-8,-56],[-10,-35],[-36,-78],[-16,-19],[-13,-12],[-14,-7],[-36,4],[-16,-12],[-34,-62],[-24,-25],[-169,-71]],[[59975,47989],[84,-32],[-3,-2],[-52,-23],[36,-10],[56,14],[-5,-91],[-4,-11],[-78,-119],[-4,2]],[[60005,47717],[2,-13],[-1,-4],[3,-11],[7,-58]],[[60193,47679],[5,27],[85,204],[94,71],[66,67],[8,-17]],[[60464,48003],[-21,-54],[-4,-7],[-21,-54],[-6,-19],[-66,-169]],[[60450,47454],[13,50],[15,29],[26,108],[17,41],[11,0],[26,-66],[0,-10],[15,-71],[9,-72],[-7,-80],[-5,-29],[-73,-198]],[[60497,47156],[-5,-39],[-33,-100],[11,-57],[1,-9],[-15,-118]],[[60370,46664],[-48,-93],[-6,4],[-20,38],[-17,19],[-15,1],[-28,-7],[-74,-79],[-15,-4],[-10,11],[-13,41],[10,208],[7,69],[-1,3],[19,153]],[[60024,46899],[-57,-102],[-30,-43],[-32,-19],[-12,5],[-15,13],[-19,42],[0,37],[9,50],[29,118],[59,176],[21,54],[16,36]],[[59707,47370],[-24,-33],[0,2],[38,111],[-5,10],[-48,-89],[-36,-49],[-2,-1],[-7,11]],[[59436,47124],[-5,-20],[-8,-16],[-2,-31],[-20,-91]],[[59401,46966],[-8,-18],[-49,-92],[-27,-34],[-2,-2],[-40,-6],[-37,18],[-25,-4],[-58,-32],[-64,-14],[-27,6],[-17,14],[-33,40],[-4,29],[2,17],[16,43],[39,55],[32,20],[77,28],[56,41],[43,60],[19,37],[11,26],[15,13]],[[59609,47588],[-43,-21],[2,11],[-48,-34],[-5,-2],[-24,-8],[-42,13],[-19,24],[-58,-8],[-43,6],[-17,8]],[[59312,47577],[-3,-5],[-18,2],[-11,-18],[-4,-37],[-8,-13]],[[59026,47482],[1,6],[26,18],[6,111],[18,72]],[[59095,47855],[-37,-127],[0,4],[-29,-27],[-49,-28],[-33,8],[-15,17],[-14,-15],[-33,-103],[-20,-12],[-30,-4],[-64,-38],[-125,-24],[-17,-20],[-24,-6],[-68,8],[-113,26],[-72,22]],[[58025,47600],[-143,19],[1,14],[-5,11],[-24,-27],[-162,-94],[-37,-11],[-152,-25],[-41,26],[-4,3],[-19,31],[-29,103],[-20,128],[1,24],[10,44],[25,48],[91,106],[64,72],[19,25],[232,271]],[[57832,48368],[6,21],[41,36],[2,9],[-53,-7],[-56,11]],[[57772,48438],[-12,3],[-10,3],[-29,5],[-32,6]],[[57689,48455],[-29,-9],[-70,-13],[-107,0],[0,37],[35,49],[76,79]],[[57608,48613],[12,-5],[-3,-5],[-10,-42],[14,-27],[16,-17],[61,-8],[14,24],[8,52],[146,416]],[[57982,48918],[4,13],[29,-33],[21,-6],[7,7],[-24,21],[-19,35],[-2,8],[7,22]],[[58020,49053],[-9,21],[4,16],[28,30],[5,20],[-56,0],[-3,3],[16,121]],[[58005,49264],[26,188],[26,-11],[50,-57],[31,16],[-4,18],[-47,92],[-15,68],[1,25],[26,88],[76,243],[48,164],[134,398]],[[58357,50496],[6,17],[38,0],[28,10],[-40,34],[-3,5],[143,279]],[[58559,50936],[21,73],[17,23],[10,19],[26,130],[23,42],[13,20],[27,26],[48,37],[147,89],[87,79],[59,-4],[6,-20],[-6,-43]],[[59037,51407],[49,-7],[51,-23],[6,15],[10,-1]],[[59153,51391],[-7,11],[6,15],[-20,48],[17,20],[63,16],[19,-7],[16,-22],[-6,-49],[-29,-80],[-24,-48],[-22,-16],[-48,-14],[-68,-11],[-74,30]],[[55169,45929],[10,-7],[0,-6]],[[55260,45849],[17,-15],[49,-60],[18,6],[118,-55]],[[55482,45715],[15,1],[13,-20],[11,-27],[36,6],[52,24],[93,-6],[94,-33],[6,-8],[-8,-49],[-15,-38],[78,12],[10,-7],[32,-41]],[[55931,45559],[73,70],[28,18],[49,54],[103,-81]],[[56324,45568],[129,-101],[27,-74],[-3,-35],[-45,-30],[-40,-44],[138,-15],[19,-82]],[[55797,44718],[-2,-3],[-25,-12],[-117,-65],[-113,15]],[[55540,44653],[-123,-85],[-16,6],[-28,28],[21,-73],[7,-66],[-11,-30],[-20,-34],[-72,6],[-28,25],[-34,35],[-15,55],[-5,31]],[[55216,44551],[-14,-8],[-18,21],[-13,-36],[-63,-32],[-3,9],[-57,-36],[-8,-35],[-5,-13]],[[55023,44256],[-17,-34],[-2,1],[-4,-13],[-67,-128],[-24,-20],[-54,-121],[-64,-92],[-17,-61],[-107,-141],[-40,5],[-30,-5],[-28,-36],[-14,0]],[[54555,43611],[-26,-128],[-4,3],[-20,-4],[-6,-22],[-32,-10],[-27,24],[-41,-17],[-18,49]],[[54300,43725],[-28,-3],[-29,13],[-5,-18],[-51,-6],[-14,23],[-32,265],[0,31],[17,119],[27,138],[111,201],[-36,6],[-97,-139],[10,34],[17,35],[24,41],[6,10]],[[54220,44475],[8,12],[44,47],[67,31],[45,5],[32,29],[45,52],[9,28],[-41,-32],[-67,-31],[16,37],[226,235],[134,133],[60,44]],[[54798,45065],[92,66],[81,43],[8,21],[16,12]],[[55001,45072],[13,3],[2,-19],[56,-24],[48,-91],[-23,124],[32,52],[112,75],[63,36],[33,3],[90,1]],[[55427,45232],[4,6],[10,0],[44,44],[-117,29],[-31,-3],[-14,3]],[[55288,45318],[-112,-3],[-33,13],[-119,-21],[-125,20],[-39,-27],[-17,-32],[-42,-8],[-13,8],[-19,4],[-19,20],[41,101],[127,149],[1,2],[104,122]],[[55013,45684],[-3,7],[7,9],[18,52]],[[56756,45679],[19,44],[87,140],[6,22],[-116,-36],[-14,24],[76,104],[0,8],[88,102]],[[56892,46142],[-82,-123],[-2,14],[39,87],[35,51],[26,29],[37,27],[26,-41],[8,-75],[64,11],[62,-15],[16,-11],[38,-46],[0,-21],[-15,-51],[-26,-43],[39,-41],[-3,-29]],[[57154,45865],[-26,-32],[-48,-36],[-47,-62],[-43,-75],[-34,-35],[-179,-113],[-7,-3],[-7,-1],[-35,0],[-31,22]],[[56527,45519],[-41,-29],[-10,1],[-18,24],[-41,71],[-20,47],[-21,225],[7,118],[5,16],[16,-13]],[[56421,45986],[162,476],[37,103],[12,40],[8,24]],[[56640,46629],[50,104],[36,45],[68,112],[21,23],[39,11],[16,-3],[15,-31],[-3,-13],[3,-39],[40,-140],[-34,-226],[-33,-143],[-12,-110],[2,-11],[-143,-212],[-13,-6],[-39,-29],[-7,-8],[-98,-70]],[[56563,45851],[11,4],[3,-2],[65,49],[3,-1],[11,-48],[-37,-26],[-25,-28],[6,-6],[-15,-12]],[[26727,59892],[-11,19],[-18,19],[-54,1],[-8,6],[-2,14],[10,39],[-2,27],[-50,98],[-39,96],[-10,32],[-10,100],[-11,20],[-73,21],[-32,73],[-62,95],[-5,20],[0,19],[50,87],[0,33],[-37,131],[-15,7],[-91,1],[-15,-13],[-10,-24],[-10,-64],[-129,-16],[-37,-18],[-44,-33],[-27,-1],[-156,49],[-75,49],[-17,0],[-15,-7],[-12,-18],[-22,-56],[-29,7],[-17,13],[-7,34],[-23,3],[-29,-10],[-5,-12],[0,-35],[-10,-15],[-20,-9],[-26,-4],[-80,19],[-69,-37],[-49,12],[-31,-11],[-13,6],[-14,26],[1,37],[-11,27],[-4,24],[5,66],[-17,102],[-9,11],[-43,-12],[-19,19],[-1,11],[6,12],[27,33],[5,71],[-3,39],[-24,133],[-21,34],[-24,60],[-30,30],[-33,18],[-80,-2],[-67,23],[-23,19],[-27,36],[-45,30],[-88,93],[-12,68],[-13,34],[-23,27],[-53,24],[-13,19],[-12,44],[-51,63],[-17,43],[-76,83],[-26,5],[-30,-10],[-46,-43],[-18,-5],[-13,9],[-19,38],[-13,8],[-51,12],[-58,-6],[-34,10],[-22,17],[-7,14],[4,17],[10,19],[3,17],[-5,17],[-24,58],[2,28],[24,51],[-4,15],[-22,22],[-1,14],[4,16],[42,29],[5,20],[-10,23],[-114,67],[-19,19],[-2,20],[-15,54],[-9,15],[-36,24],[-8,16],[-3,28],[-7,20],[-29,55],[-5,33],[7,30],[0,36],[46,106],[3,22],[-9,9],[-49,2],[-45,22],[-20,65],[-17,30],[-35,28],[-38,46],[-35,15],[-3,17],[18,25],[73,57],[20,30],[29,80],[-5,36],[-15,33],[-28,31],[-14,30],[-42,20],[-9,14],[-7,29],[-6,16],[-15,2],[-49,-19],[-19,8],[-9,18],[2,17],[19,16],[54,25],[12,11],[1,20],[-10,14],[-68,15],[-39,28],[-71,70],[-70,30],[-46,42],[-16,38],[-26,18],[-13,32],[-27,45],[-5,15],[13,27],[0,24],[-9,27],[-24,40],[-14,14],[-7,25],[2,26],[-40,76],[-76,47],[-44,11],[-19,-7],[-24,-35],[-30,-23],[-35,-13],[-85,0],[-15,7],[-3,19],[6,19],[28,63],[7,26],[-6,19],[-11,11],[-67,32],[-76,107],[-26,18],[-102,61],[-38,14],[-73,3],[-16,14],[-5,14],[-1,18],[8,16],[38,41],[3,29],[0,45],[8,13],[48,51],[13,17],[0,19],[-14,17],[-64,19],[-10,15],[-1,61],[-19,15],[-14,-3],[-47,-15],[-21,6],[-8,12],[-2,19],[5,21],[79,55],[14,20],[12,41],[93,102],[37,94],[35,60],[0,30],[-48,88],[-39,51],[-53,53],[-21,14],[-10,23],[7,29],[95,69],[-1,24],[-14,14],[-53,-4],[-45,34],[-17,6],[-48,-32],[-25,-26],[-26,-43],[-39,-15],[-21,4],[-10,16],[14,43],[11,25],[-1,16],[-9,11],[-50,-1],[-89,-21],[-87,-50],[-42,-1],[-42,7],[-16,12],[-1,36],[-10,39],[-14,24],[-1,22],[8,16],[32,38],[12,27],[0,32],[-2,40],[-5,36],[-14,10],[-19,5],[-51,4],[-15,1],[-5,21],[5,22],[15,68],[9,24],[16,4],[15,2],[10,7],[1,19],[-3,37],[4,27],[7,29],[-8,21],[-35,45],[-18,19],[-3,19],[-1,15],[-13,26],[-3,23],[4,19],[7,33],[-6,33],[-25,43],[-36,41],[-52,41],[-10,29],[-1,31],[-30,0],[-136,0],[-137,0],[-136,0],[-137,0],[-136,0],[-137,0],[-136,1],[-21,10],[-12,21],[-13,52],[-1,46],[2,29],[1,18],[33,45],[20,61],[1,16],[-11,50],[-6,21],[-8,19],[-10,29],[0,27],[4,64],[-18,63],[-12,23],[-15,16],[-65,50],[-16,36],[-5,44],[0,291],[0,290],[0,291],[1,274]],[[20721,68769],[21,-1],[53,-11]],[[20930,68731],[272,-141],[33,-19],[6,-1],[64,-33]],[[21302,68565],[-5,5],[-83,133],[-13,13],[-78,41],[-21,23]],[[21102,68780],[-65,95],[40,0],[50,7],[7,19],[-36,4],[-44,19],[-51,31],[-28,30],[84,163],[14,4]],[[21317,69145],[-29,68],[10,86],[8,13],[84,33]],[[21588,69331],[13,15],[47,-5],[18,10],[-16,67],[-1,16],[5,48],[4,24],[11,32],[20,17],[31,-5],[45,-110]],[[21835,69419],[102,-31],[3,-5],[-8,-22],[-24,-58],[-33,-41],[-70,-108],[-1,-3],[-20,-22]],[[21788,69128],[13,0],[-1,-1],[4,1],[62,0]],[[21866,69128],[168,116],[29,10],[222,14]],[[22547,69508],[10,10],[27,-2],[36,4],[23,12],[-5,15],[-31,19],[-1,0],[37,37]],[[23323,69891],[1,10],[22,23],[65,39],[111,23]],[[23886,70026],[14,23],[15,15],[26,1],[25,-25],[40,-63],[0,-31],[-52,-76],[-386,-217],[-2,-2],[-31,-15]],[[23535,69636],[-38,-39],[-48,-38],[-59,-35],[-60,-19],[-118,-16],[-47,-19],[-79,-17],[-186,-30],[-36,-15],[-24,-17],[-66,-115],[-33,-38],[-64,-56],[-71,-35],[-98,-13],[-62,-54],[-72,-105],[-57,-72],[-66,-62],[-72,-80],[-19,-42],[21,-56],[12,-19],[72,-30],[28,7],[-25,30],[-61,43],[-8,16],[15,12],[285,-33],[61,33],[21,28],[-4,14],[-77,6],[-17,27],[-12,50],[-3,39],[7,30],[18,37],[82,62],[90,26],[68,34],[38,33],[102,56],[41,46],[22,35],[3,17],[-19,13],[16,30],[74,27],[33,3],[104,-26],[19,-20],[-10,-54],[15,2],[40,69],[23,22],[23,5],[23,-9],[24,-22],[9,-47],[-22,-255]],[[23605,69505],[20,28],[91,52],[330,112]],[[24376,69655],[23,25],[3,3],[47,46],[145,84]],[[24582,69883],[75,129],[29,18],[178,33]],[[24864,70063],[-9,36],[33,33],[-115,27],[-47,25],[-5,3],[-4,14],[26,34],[-63,34],[-23,21],[1,45],[6,26]],[[26107,69322],[-23,0],[2,31],[-44,83],[6,9]],[[26226,69883],[-19,-5],[-4,0],[-20,7],[-7,7],[30,22]],[[26274,69911],[152,-7],[-8,-49],[-2,-64],[13,-63],[-26,-132]],[[26520,69573],[56,-38],[-1,-9],[-124,-159],[-26,-39],[-5,-10],[-28,-36]],[[27238,69680],[476,-10],[1,0],[100,-21],[93,-35],[64,-29],[93,-46]],[[28178,69455],[41,-31]],[[28219,69424],[1,-313],[0,-205],[0,-206],[1,-205],[0,-205],[0,-206],[0,-205],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[121,-78],[122,-78],[218,-1],[218,-2],[218,-1],[218,-1],[137,-149],[138,-148],[137,-148],[137,-148],[143,-90],[115,-34],[208,-34],[207,-35],[207,-34],[208,-34],[207,-35],[208,-34],[207,-34],[207,-35],[208,-34],[207,-35],[207,-34],[208,-34],[207,-35],[207,-34],[208,-34],[207,-35],[6,-148],[-9,-230],[0,-240],[0,-240],[0,-240],[0,-240],[1,-241],[0,-240],[0,-240],[0,-240],[0,-240],[0,-240],[0,-240],[0,-240],[0,-240],[1,-240],[0,-240],[0,-240]],[[37106,59892],[-238,0],[-238,0],[-238,0],[-237,0],[-238,0],[-238,0],[-238,0],[-238,0],[-237,0],[-238,0],[-238,0],[-238,0],[-238,0],[-238,0],[-237,0],[-238,0]],[[26331,69968],[-41,-8],[15,29],[31,25],[41,9],[25,-10],[27,-30],[2,-49],[-3,-15],[-56,58]],[[33299,78538],[0,-359]],[[33299,78179],[-9,1],[-129,-25],[-39,-2],[-46,10]],[[32886,78201],[-19,-4],[-55,28],[-67,18],[-29,-10],[-34,-39],[-57,-44],[-352,81]],[[32273,78231],[-94,-21],[-95,-11],[-210,-49],[-82,-9],[-24,14],[-34,37],[5,15],[16,17],[43,37],[41,20],[68,28],[248,74],[79,18],[171,14]],[[32405,78415],[30,10],[53,6],[90,29],[36,26],[260,87]],[[33001,78609],[110,2],[123,-50],[29,-8],[36,-15]],[[33299,77947],[0,-160]],[[33299,77787],[-78,-20],[-106,-15]],[[32879,77719],[12,-26],[-2,-1],[4,-14],[22,-17],[44,-21],[11,0],[31,-19]],[[33001,77621],[188,18],[22,-4],[17,-14],[11,-20],[6,-27],[0,-91],[-11,-52],[-28,-48],[-82,-34],[-148,-44],[-100,-20],[-80,7],[-79,-5],[-345,-84],[-107,0],[-93,20],[-129,79],[-122,29],[-23,11]],[[31793,77444],[-5,17],[20,15],[8,15],[-22,44],[-11,42],[-38,60],[-6,34],[0,20],[1,6],[6,21],[0,1],[46,48]],[[31792,77767],[5,4],[66,6],[104,22],[66,19],[762,125],[90,-5],[70,16],[120,6],[9,1],[215,-14]],[[31042,77688],[-114,94],[-20,43],[66,10],[48,16],[28,20],[130,41]],[[31180,77912],[74,-16],[0,-6],[11,-28],[47,-6],[33,-15],[36,-23],[66,-45],[11,-2],[105,-64],[17,-17],[-1,-18],[-51,-38],[-50,-21],[-130,-34],[-87,1],[-58,18],[-161,90]],[[30399,76885],[71,-115],[-76,8],[-35,-3],[-33,-14],[9,-27],[104,-90],[34,-48],[-1,-25],[-18,-24],[-44,-33],[-68,-43],[-118,-34],[-34,-6],[-108,-14]],[[29959,76358],[4,-9],[1,-19],[-6,-66],[-8,-30],[-31,-51],[-21,-24],[-38,-17],[-54,-9],[-70,1],[-41,16],[-44,25]],[[29651,76175],[-140,81],[-13,11],[-4,13],[13,81]],[[29575,76561],[-1,9],[13,24],[12,50],[-17,20],[-24,1],[-2,11]],[[29393,76636],[-10,-23],[-31,-16],[-33,-36],[-19,-39],[-5,-41],[-119,-74]],[[29043,76359],[66,-21],[6,-14],[74,-46],[9,-51],[-9,-32],[-80,-57],[-19,-19],[-50,-90],[-18,-23],[-41,-21],[-42,3],[-38,33],[-57,62],[-1,1],[-48,107]],[[28795,76191],[-14,-3],[-11,13],[-27,-14],[-5,-8],[-1,0]],[[28737,76179],[-1,-2],[-25,-36],[-1,-16],[-5,-10]],[[28705,76115],[9,-42],[3,-22],[-2,-33],[-48,-39],[7,-18],[71,-41],[16,-76],[-31,2],[-28,-38],[-32,-31],[-85,-57],[-118,-6],[-63,-18],[-115,145],[-7,16],[-51,168]],[[28151,76044],[-7,-1],[-4,1],[-2,-2],[0,0]],[[28061,75895],[1,-6],[-3,-7],[-93,-37],[-50,-7],[-52,5],[-32,10],[-2,1]],[[27566,75894],[-28,-28],[-90,-45],[-46,-15],[-63,6],[-28,22],[-15,23],[24,37]],[[27320,75894],[4,37],[8,11],[-1,17],[-3,2],[8,62]],[[27288,76038],[-69,-27],[-56,-15],[11,30],[50,63],[121,125],[33,26],[44,22],[354,40],[25,12],[23,23],[39,7]],[[27863,76344],[150,172],[6,5],[50,31],[244,101],[22,23],[3,5],[33,16]],[[28389,76748],[55,41],[4,2],[11,9],[304,223],[21,13],[37,29],[58,43],[97,56],[129,28],[326,40],[44,2]],[[29512,77232],[23,-2],[236,-53],[91,-28]],[[30003,77193],[8,9],[34,-3],[23,7],[44,33],[-30,18],[-32,9],[0,11]],[[30051,77343],[32,49],[1,0],[202,5],[61,-22],[96,-56],[217,-97],[36,-39],[2,-15],[-17,-17],[-56,-26],[-73,-23],[-192,-46]],[[31607,76603],[-72,-32],[-214,21],[-295,35],[-13,7],[-8,13],[8,16],[68,42],[14,7],[66,15],[115,14],[152,12],[34,-2],[75,-18],[58,-26],[33,-22],[14,-42],[-35,-40]],[[33300,75401],[0,-108],[0,-542],[-1,-37]],[[33299,74714],[-82,-10],[-68,-18],[-31,-3]],[[33118,74683],[-19,-14],[-57,-25],[-38,-28],[-60,-65],[-91,-48],[-165,-54],[-210,-83],[-343,-77],[-42,-8],[-175,-11],[-102,2],[-167,20],[-1,0]],[[31648,74292],[-41,9],[-53,16],[-78,36],[-58,30],[-31,17]],[[31387,74400],[-83,45],[-34,23],[-51,67],[30,44],[86,51],[128,46],[256,63],[233,100],[40,9],[178,15]],[[32170,74863],[104,9],[96,-8],[33,2],[5,-1]],[[32739,75129],[-8,-10],[-131,-65],[-70,-23],[-76,-2],[-68,-15],[-200,9],[-64,40],[-57,12],[-26,-7],[-24,-18],[-40,-43],[-87,-37],[-176,-14],[-177,-24],[-39,15],[-24,28],[-5,17],[-3,59],[-12,23],[14,44],[3,6],[19,35],[25,25],[121,75],[17,20],[-58,-4],[-9,-3],[-175,58]],[[31409,75330],[-30,-44],[-6,-7],[-4,-8],[-106,-158],[-1,0],[-68,31],[-26,4],[-15,-10],[5,-17],[70,-87],[0,-30],[-45,-53],[-194,-88],[-76,-24],[-27,10],[-25,24],[-22,39],[-32,33],[-19,53]],[[30639,74975],[21,-41],[-11,-15],[-17,-46],[-35,-36],[-7,-2],[-226,82],[-28,23],[6,4]],[[30191,75055],[-24,-26],[-121,-14],[-78,4],[-222,45],[-24,13]],[[29722,75077],[-2,1],[-18,18],[-17,38],[2,21],[10,22],[30,42],[59,65],[25,21],[37,17],[49,13],[41,3],[291,6],[116,1],[65,10],[350,124],[22,7]],[[30796,75497],[3,2],[4,2],[22,17],[56,41]],[[30881,75559],[-16,-4],[1,2],[-2,11],[-434,-99],[-186,-21],[-285,16],[-54,15],[-12,28],[59,73],[32,28],[81,25],[196,37],[164,20],[184,13],[86,0],[51,9],[176,12]],[[30941,75769],[-204,-12],[-101,-1],[-327,-12],[-65,7],[-9,1],[-100,39],[-5,28],[40,34],[15,25],[-29,57],[9,22],[65,47],[117,51],[25,3],[125,-5],[60,-8],[394,-18],[53,5],[90,-4]],[[31104,76035],[-112,15],[-13,6],[-68,16],[-305,29],[-63,13],[-12,17],[-4,26],[2,34],[22,34],[76,58],[29,17],[170,37],[50,6]],[[30876,76343],[173,23],[37,-2],[140,-22],[30,-7],[50,-23],[25,-29],[12,-26],[1,-47],[3,-9],[-8,-33]],[[31546,76066],[144,41],[11,2],[91,10],[92,-13],[133,-43],[174,-130],[174,-103],[6,-77]],[[32239,75678],[152,11],[17,-2],[80,7],[76,-10],[17,-12],[28,-48],[39,-86],[11,-15],[-11,-33]],[[32926,75410],[73,10],[83,-2],[218,-17],[0,0]],[[33299,76320],[1,-204]],[[33300,76116],[-71,23],[-24,11],[-22,17],[-18,27],[-14,36],[3,28],[18,20],[50,24],[39,4]],[[33261,76306],[38,14]],[[29067,75400],[-13,4],[-76,28],[-65,9],[6,118]],[[28919,75559],[81,60],[18,12],[179,137],[118,51],[115,37],[118,81],[65,37],[56,2],[58,-15],[6,-23],[-60,-111],[-43,-44],[-83,-116],[-160,-194],[-48,-31],[-136,-64],[-54,3],[-82,19]],[[28735,73999],[47,57],[13,10],[74,5],[52,-8],[17,-12],[10,-18],[5,-41],[4,-99],[1,-3],[-4,-20]],[[29113,74000],[-11,14],[39,43],[18,13],[43,21]],[[29202,74091],[188,39],[10,1],[111,0],[97,-11],[41,-7]],[[29649,74113],[18,-3],[59,-14],[141,-57],[70,-43]],[[29937,73996],[168,-106],[362,-277],[153,-82],[59,-46],[26,-35],[23,-42],[7,-40],[-9,-37],[-16,-26],[-37,-22],[-223,-93],[-117,-29],[-116,-41],[-164,-86],[-154,-75],[-149,-54],[-247,-136],[-465,-217],[-28,-22],[-44,-21]],[[28946,72490],[-28,-86],[-93,-176],[-17,-20],[-92,-66],[-62,-30],[-153,-15],[-43,-16],[-3,-43],[-65,-162]],[[28390,71876],[-5,-62],[-16,-57],[-36,-257],[-9,-25],[-28,-48],[-44,-48],[-203,-78],[-57,-16],[-128,-22],[-56,13],[0,1],[-36,40],[-38,4],[-23,-6],[-119,-110],[-177,-109],[-84,-32],[-81,-66],[-57,-30],[-46,-10],[-76,6],[-55,30],[-49,45],[-38,50],[-68,144],[-6,16]],[[26804,71373],[-128,131],[-13,18],[-26,25],[-4,1],[-16,18]],[[26381,71660],[-11,4],[-91,40],[-174,88],[-42,32],[-39,18],[-86,-5],[-13,5]],[[25818,71985],[10,35],[59,31],[-14,10],[-10,18],[-1,5],[29,49],[0,1],[30,42],[28,59],[25,43],[9,14],[36,27],[54,58],[106,53]],[[26179,72430],[-21,172],[0,41],[7,38],[14,29],[13,14],[241,87]],[[26386,72858],[-21,5],[-4,9],[-26,14],[-29,2],[-37,115],[64,68],[25,39],[53,114],[11,18]],[[26422,73242],[94,99],[70,52],[13,37],[22,24]],[[26704,73572],[-6,18],[39,44],[0,17],[-36,42],[-43,12],[-2,7]],[[26656,73712],[-70,22],[-36,33],[-33,51],[-96,189],[-5,48]],[[26368,74142],[-33,22],[-1,5],[-31,22],[6,21],[81,13],[367,55],[695,60]],[[27452,74340],[171,48],[89,17],[107,4],[13,0],[86,-15],[89,-40],[117,-69],[156,-68],[247,-84],[115,-169]],[[28642,73964],[31,9],[0,0],[0,1],[55,17]],[[33300,72843],[0,-225]],[[33300,72618],[-230,93],[-13,7],[-26,29]],[[33031,72747],[-58,65],[10,48],[2,2]],[[32985,72862],[36,9],[38,-5],[40,-2],[201,-21]],[[33300,72503],[0,-9]],[[33300,72494],[-6,8]],[[33294,72502],[6,1]],[[33300,72350],[0,-309],[0,-542],[1,-542],[0,-542],[0,-541],[-149,0],[-149,0],[-148,0],[-149,0],[-149,0],[-148,0],[-149,0],[-149,0],[1,-90],[-72,-77],[-53,0],[-54,-1],[-1,78],[-2,90],[-259,0],[-252,0],[-251,0],[-251,0],[-251,0],[-252,0],[-251,0],[-219,1],[-9,-113],[60,-65],[61,-64],[60,-65],[21,-45],[-98,0]],[[30039,69523],[-65,69],[-53,85],[-8,22],[-13,62],[-17,102],[-5,63],[12,31],[78,32],[49,13],[321,71],[101,17],[487,71],[190,23],[202,-5],[120,-26],[119,-11],[123,-4],[330,-47]],[[32048,70422],[-200,51],[-44,15],[-119,36],[-172,38],[-28,1],[-81,21]],[[31404,70584],[-138,-38],[-26,0],[-124,-33],[-35,-6],[-186,-24],[-121,-11],[-306,-14],[-38,12]],[[30024,70488],[-116,-7],[-204,19],[-17,21]],[[29497,70662],[-26,16],[-102,81],[-53,79],[11,33],[40,34],[154,97],[16,7],[46,20],[212,47],[177,34]],[[29972,71110],[405,120],[49,2],[48,13],[117,10]],[[30591,71255],[-159,35],[-7,3],[0,20],[71,31],[77,11],[125,-20],[13,2],[9,-3]],[[30683,71417],[-28,-5],[-12,4],[-395,-71],[-192,-32],[-109,-4],[-131,12]],[[29664,71276],[-3,-7],[-34,-9],[-101,2],[-121,44],[-16,13],[-2,18],[34,52],[11,8],[121,33],[2,3],[97,18]],[[29639,71535],[-72,-5],[-19,0],[-74,-6],[-179,-13],[-77,7],[-136,38],[-40,45],[-17,32],[-3,39],[5,110],[8,40],[32,47]],[[29348,72072],[1,25],[44,34],[3,24],[-18,24],[-25,22],[0,14]],[[29353,72215],[-26,8],[-18,15],[-27,29],[-16,29],[12,44],[39,62],[115,98],[124,89],[216,147],[77,45],[135,45],[89,45],[472,169]],[[30545,73040],[100,35],[14,5],[57,21],[383,137]],[[31099,73238],[1,0],[154,-41],[46,-33],[20,-28],[17,-39],[15,-50],[21,-109],[3,-57],[-4,-56],[-10,-51],[-16,-46],[-33,-56],[-48,-66],[-8,-8],[-37,-34]],[[31551,72530],[2,4],[25,-20],[21,6],[37,42],[6,28],[-4,31],[2,68],[12,25],[50,62]],[[31800,72846],[15,11],[24,5],[71,-4],[218,-53],[5,-1],[193,-49],[282,-122],[89,-52],[9,-45],[-50,-96],[-122,-137],[-97,-49],[-38,-30],[13,-4],[-6,-3]],[[32497,72153],[193,95],[0,-2],[8,-14],[39,-7],[22,8],[86,67],[33,40],[12,6]],[[33246,72350],[54,0]],[[28219,69424],[195,-147]],[[28414,69277],[39,-10],[24,-13],[137,-38],[139,-26],[423,-107],[88,-64],[85,-52],[101,-50],[70,-24],[52,-25]],[[29572,68868],[130,-27],[121,-32],[40,-21],[45,-7],[43,8],[412,-86]],[[30363,68703],[-6,16],[61,-8],[-3,19],[-77,90],[79,22],[60,-10],[25,30],[37,-1],[83,-14],[90,-32],[96,-49],[117,-41],[138,-81],[91,-69],[47,-41],[93,-107],[51,-75],[9,-41],[20,-21],[27,0],[13,-20],[-26,-88],[-15,-23],[-21,-17],[-85,-19],[-233,23],[-8,-14],[-17,0]],[[30844,68065],[5,-72],[-10,-13],[-6,-20],[10,-65],[-17,-21],[-38,-26],[-162,-59]],[[30849,67701],[4,-1],[6,-5],[58,-12],[19,2],[212,-39],[46,-18],[77,-20],[43,3],[60,-8],[75,-20],[64,-4],[47,-9]],[[31560,67570],[323,-10],[48,-4],[45,1],[101,-3]],[[32077,67554],[19,4],[14,1],[32,2],[22,13],[151,36],[72,10],[122,-6]],[[32752,67656],[30,8],[1,0],[47,3],[59,28],[24,7]],[[32931,67707],[206,123],[61,0],[54,38],[14,1],[15,-16],[35,-62],[-9,-38]],[[33541,67590],[21,18],[108,-2],[68,-19],[20,-19],[21,-54],[13,-105],[8,-38],[28,-56],[19,-16],[17,16],[22,64],[168,-98]],[[34054,67281],[53,-17],[151,-130],[27,-54],[10,-40],[-9,-36],[-30,-31],[-46,-26],[-63,-19],[-59,7],[-54,33],[-18,2],[20,-29],[112,-122],[29,-48],[2,-2],[3,-40]],[[34250,66675],[21,-13],[1,-2],[65,-67],[43,-56],[13,-21],[106,-145],[51,-57],[19,-16],[24,-31]],[[34593,66267],[-1,13],[13,-3],[-9,27],[-7,9],[-2,26]],[[34509,66450],[-103,140],[-16,28],[-8,26],[14,223],[34,14],[61,-67],[18,-7],[1,-9]],[[34518,67129],[-97,142],[-3,34],[6,46],[-5,37],[-49,76],[-21,20],[-10,33]],[[34397,67772],[85,162],[4,1],[30,-9],[45,11],[52,28],[83,18],[35,-1],[34,8],[41,14],[5,4],[50,11]],[[34911,68063],[25,23],[13,-1],[36,-14],[17,5],[-3,88],[12,31],[36,36],[92,28]],[[35267,68514],[-19,-7],[-12,4],[-45,-13],[-100,-47],[-105,-60],[-35,-48],[-89,-71]],[[34358,68116],[33,-53],[-10,-11],[-35,-5],[-107,-8],[-36,6],[-75,-19],[-29,4],[-22,23],[-61,40],[-42,44]],[[33974,68137],[-15,-6],[-33,22],[-15,20],[36,81],[141,219],[15,13],[260,38],[158,40],[10,4],[29,4]],[[34674,68621],[155,67],[35,6],[185,80],[72,19],[86,-17],[93,-37],[53,-36],[38,-46],[32,-64],[21,-74],[-13,-160]],[[35741,68107],[101,-77],[-1,-6],[15,-27],[43,-36],[42,-59]],[[35941,67902],[106,7],[16,-2],[70,5],[1,-44]],[[36289,67928],[23,16],[6,1],[69,36],[106,-107]],[[37269,67578],[30,-4],[19,-4],[5,1],[10,-1]],[[37966,67712],[6,1],[194,-22],[143,-31],[37,-16],[100,-53]],[[38446,67591],[39,7],[33,-3],[54,7],[51,19],[9,6],[145,28]],[[38777,67655],[-3,16],[20,3],[19,10],[-2,19],[-24,29],[-34,29],[-1,3]],[[38752,67764],[16,144],[44,-44],[168,-218],[40,-31],[22,-28],[154,-79],[73,-14],[86,49],[38,30],[18,30],[-1,28],[9,42],[-9,25],[-23,33],[-62,47],[-100,59],[-91,17],[-83,-24],[-94,-51],[-39,20],[-107,130],[2,2]],[[38798,68123],[-87,80],[-3,4],[-8,32],[42,7],[19,13],[26,-2],[116,-63],[7,-5]],[[39054,68353],[-10,9],[-5,24],[6,13],[46,9],[90,-51],[20,-3],[3,-2]],[[39212,68347],[2,5],[11,-2],[31,20],[34,2],[36,-18],[33,-26],[62,-75],[30,-45],[11,-21],[-10,-31]],[[39452,68156],[32,-13],[1,-3],[11,-9],[21,-1],[172,-67]],[[39709,67927],[3,16],[14,18],[16,51],[10,15],[173,85],[50,13],[-13,-39],[-1,-1]],[[39961,68085],[-1,-6],[-16,-46],[-11,-56],[-34,-128]],[[39869,67733],[6,-66],[-9,-73],[-14,-38],[-15,-28],[-67,-81]],[[40027,67178],[65,-37],[-28,-70],[3,-9],[72,27],[14,2],[8,-8]],[[40216,67025],[23,7],[5,-39],[-1,-59],[-6,-43],[-18,-24],[-21,-9],[-27,-7],[-25,3],[-75,-9],[-44,11],[-44,33],[-31,8],[-36,-26],[-58,5],[-64,72],[-25,-7],[-9,-11],[1,-16],[29,-47],[226,-247],[34,-51],[7,-74],[5,0],[21,74],[-14,35],[-116,145],[-14,52],[4,14],[31,15],[165,-36],[64,8],[44,25],[21,32],[16,171],[5,19],[2,1]],[[40198,67791],[40,132],[16,8],[71,5],[20,9],[80,-5],[33,-14],[45,-8],[29,15],[37,-2]],[[40719,68081],[56,73],[16,18],[75,103],[81,74],[28,15],[5,2]],[[41162,68463],[-5,10],[1,1],[17,20],[-28,2],[-16,117]],[[40912,68718],[16,9],[-12,-32],[-34,-36],[-73,-24],[-105,-15],[-13,6]],[[40691,68626],[-59,28],[-1,5],[56,142]],[[40840,68958],[-1,5],[34,34],[1,13],[-48,0],[-36,22],[-12,74],[5,52],[8,29],[47,28],[144,35],[76,28],[-19,-49]],[[41062,69399],[-21,-18],[-31,-10],[-54,-38],[-141,-10],[-31,5],[-18,11],[-93,116]],[[40632,69508],[-6,-2],[-15,17],[-20,7],[-18,-8],[-23,-40],[-60,-19],[-191,77],[-2,1],[-94,49],[-46,38],[-57,23],[-60,6],[-45,43]],[[39995,69700],[-150,147],[-12,17],[-66,83],[-44,61],[-2,8],[-21,147]],[[39700,70163],[22,66],[79,113],[13,28],[14,21],[25,22],[50,20],[35,5],[81,-18],[-28,26],[6,0]],[[39997,70446],[-30,43],[48,76],[-9,4],[-134,-60],[-9,2],[-59,51]],[[39804,70562],[-57,50],[-47,68],[-1,80],[28,113],[10,67],[0,0],[25,109]],[[39762,71049],[-10,67],[16,28],[64,65],[63,57],[36,18],[33,-4],[33,-17],[35,-32],[28,-16],[3,-4]],[[40257,71387],[-50,-12],[-62,-1],[-76,11]],[[40032,71421],[-2,2],[-8,20],[16,25],[106,87],[2,3],[33,20]],[[40331,71745],[4,22],[6,6],[149,59],[73,20],[59,4],[25,-8],[32,-64],[5,-55],[-3,0]],[[40635,71629],[112,24],[19,-19],[65,-6],[41,12],[73,-2],[38,-14]],[[40983,71624],[46,-43],[-13,-37],[9,-37],[89,-69],[80,-48],[72,-59],[107,-125],[23,-36],[17,-38],[27,-139],[4,-53],[-10,-153],[-9,-29],[-6,-8],[-13,-6]],[[41406,70744],[5,-4],[-14,-17],[10,-14],[84,-40],[68,-79],[35,-26],[85,-42],[16,-17],[19,-26],[48,-115],[79,-103],[5,-22],[-17,-48],[12,-16],[31,-18],[9,3],[5,-8]],[[41889,70146],[27,46],[7,11],[26,10],[29,-15],[21,-27],[29,-66],[43,-55],[-3,-16],[-17,-11],[-136,-16],[-49,8],[-25,12],[-59,42]],[[41736,70102],[0,-1],[-10,11],[-15,-5],[-20,-34],[-43,-50],[-28,-47],[4,-2],[-2,-2]],[[41636,69939],[70,17],[97,1],[33,-13],[39,-33],[-42,-52],[-366,-267]],[[41467,69585],[3,-24],[-28,-20],[15,-13],[25,-4],[76,8],[5,2],[80,-23]],[[41643,69511],[120,-33],[1,-2],[43,-21],[99,-55]],[[41982,69397],[58,56],[46,35],[71,34],[86,-4],[-5,-14]],[[42230,69479],[-7,-7],[-29,-18],[-47,-35],[-99,-23]],[[42415,69348],[48,37],[35,4],[53,-11],[50,-29],[17,-19],[-47,-12],[-44,1],[-37,-18],[-31,-35],[-22,-46],[0,-1],[-7,-8]],[[42430,69211],[-116,-19],[-2,0],[-4,-1],[-40,-7]],[[42242,69180],[4,-4],[-10,0],[-9,-17],[234,-179],[75,-159],[31,-40],[3,-16]],[[42570,68765],[7,-47],[-18,-24],[-2,-33],[16,-97],[-8,-78],[-23,-136],[22,-43],[44,-32],[35,-63]],[[42941,68544],[0,197],[7,65],[26,83],[54,70],[96,142],[34,28],[39,14],[67,-3],[49,-46],[66,-84],[84,-77],[154,-104],[43,-40],[87,-103],[37,-102],[25,-144],[22,-87],[18,-30],[8,-44],[-2,-58],[-6,-46],[-12,-33],[-19,-18],[-47,-6],[-8,1],[-71,50]],[[43624,68190],[-1,-6],[-21,-20],[-7,-29],[17,-82],[-11,-133]],[[43639,67750],[10,-26],[25,-82],[15,-23],[17,-44]],[[43706,67575],[45,-47],[17,-26],[237,-269],[14,-31],[25,-110],[0,-1],[-2,-10]],[[44210,67094],[19,82],[50,57],[36,32],[8,4]],[[44323,67269],[32,13],[7,1],[15,8],[96,-75]],[[44865,68526],[19,43],[4,5],[38,29],[20,38],[13,7],[1,0],[37,-3],[36,-24],[30,-5],[96,16],[164,-14]],[[45283,68696],[-100,4],[-16,7],[9,69]],[[45177,68790],[39,41],[18,5],[8,23],[126,51]],[[45368,68910],[-138,68],[-90,62],[-55,-3],[-8,1],[-14,8],[-36,40],[-20,34],[-16,72],[-3,35],[8,57],[7,16],[-4,26],[-13,35],[-1,32],[11,28],[-7,33],[-18,27],[2,83]],[[45005,69609],[78,82],[27,-13],[75,-1],[88,31],[90,14],[155,-6],[37,-8],[66,-39],[49,-31]],[[45670,69638],[12,-4],[27,-16],[120,-45],[31,2],[81,-27]],[[46363,69442],[-6,-43],[-37,-8],[-58,-23],[54,-36],[158,-49],[34,-72],[-3,-44]],[[46505,69167],[13,-4],[-14,-24],[9,-16],[37,0],[50,14],[25,-8]],[[46625,69129],[106,6],[18,-3],[152,-60],[16,-13],[26,-45],[1,-2],[-3,-18],[-135,-117],[-70,-46],[-92,-48],[-3,-25],[129,-5],[100,-13],[46,-15],[23,-23],[33,-47],[5,-37],[-3,-51],[-11,-35],[-117,-101],[-53,-32],[-92,-37],[-39,-28],[-44,4],[-47,36],[-50,7],[-61,-19],[-93,31]],[[46357,68364],[2,-38],[-1,-4],[1,-1],[2,-42]],[[46361,68279],[36,-16],[3,-5],[25,-25],[2,-5],[5,-18],[-16,-28],[4,-10],[14,-11],[21,-35],[27,-100]],[[46551,67889],[24,-28],[16,-57],[41,-66],[51,-59],[77,-80],[102,-85],[39,-42],[56,-98],[11,-37],[-14,-103],[-41,-168],[-27,-95],[-12,-23],[-77,-68],[-16,-6],[-40,-7]],[[46741,66867],[-4,-3],[-56,2],[-24,-13],[-38,-55],[-52,-95],[-38,-56],[-59,-44],[-27,-15],[-19,-20],[-152,-113],[-102,-26],[-119,-119],[-28,-23],[-119,-14]],[[45598,66687],[-75,23],[17,7],[-18,24],[-44,38],[-30,73]],[[45255,66928],[-66,-83],[-14,-11],[-35,-49],[0,-2],[-23,-29]],[[45309,66787],[57,-6],[0,-1],[17,-27],[6,-18],[129,-145],[46,-29],[19,-35],[14,-57],[28,-64],[62,-106],[66,-130],[13,-51],[-34,-25],[-17,-2],[-51,19],[-9,4],[-213,174]],[[45358,66101],[-27,5],[-93,45],[-90,53],[-45,45],[-52,67],[-1,4]],[[45050,66320],[-8,8],[-58,88],[-38,15],[-18,19]],[[44928,66450],[-20,-4],[-1,1],[-4,-2],[-255,-44],[-17,0],[-14,7]],[[44391,66410],[-4,-7],[-6,-1],[-13,-12],[5,-13],[-10,-21]],[[44347,66327],[17,-28],[-1,-3],[29,-57],[9,-7],[14,-24]],[[44415,66208],[132,-48],[28,-11],[89,-44],[54,-39],[17,-32],[3,-36],[-26,-70],[-14,-26],[-55,-61],[-14,-12]],[[44629,65829],[-19,-25],[-226,-253],[-119,-142],[-61,-88],[-54,-57],[-46,-28],[-77,-16],[-107,-4],[-139,14],[-72,45],[-100,94],[-24,30]],[[43509,65465],[-87,76],[-9,18],[-22,9],[0,0]],[[43213,65656],[-96,65],[-26,20],[-28,16],[-175,118]],[[42891,65827],[-11,-7],[-13,1],[-25,-8],[11,-14],[-38,-28]],[[42815,65771],[-2,-9],[-53,0],[-95,44],[-94,-6],[-68,9],[-80,25],[-88,11],[-141,-1],[-50,-5],[-8,-11],[68,-54],[116,-64],[-15,55],[4,15],[38,19],[184,-34],[209,-72],[53,-7],[58,-26],[47,-31],[20,-14],[87,-87],[171,-201],[55,-51],[5,-3],[55,-66]],[[43291,65207],[347,-40],[35,-6],[21,0],[43,-5]],[[43737,65156],[69,5],[250,-19],[135,-36],[38,-27],[12,-89],[-12,-45],[-73,-137],[-47,-100],[-86,-127],[-86,-111]],[[43886,64405],[-53,-105],[-12,-17],[-8,-23],[-64,-126]],[[43753,64124],[4,-10],[-40,-48],[-130,-94],[-83,-50],[-40,-4]],[[43464,63918],[-165,-19],[-36,19],[-67,79],[-5,-8],[33,-84],[-45,4]],[[43179,63909],[-65,5],[-15,9],[-18,-6],[-9,1]],[[43072,63918],[-150,96],[-8,37],[-9,13],[-4,-2],[-2,8]],[[42899,64070],[-88,-41],[-15,-5],[-19,-13],[40,-24],[32,-49],[33,-76],[2,-22],[-32,-13],[-45,17],[-11,15]],[[42796,63859],[-21,-4],[-27,10],[-13,-3],[7,-13],[-21,-4]],[[42781,63643],[-17,-31],[-22,-38],[-43,-48],[-43,-13],[-76,23],[-18,13],[-18,-2],[-16,4]],[[42528,63551],[3,-7],[-18,-36],[-34,-27],[-50,-16],[-64,7],[-77,30],[-205,107],[-43,11],[-50,17]],[[41990,63637],[-37,-3],[-54,7],[-14,15],[1,14],[16,14],[-4,12],[-26,10],[-26,-9],[-27,-29],[-48,-8],[-68,11],[-101,42],[-200,108],[-218,91],[-127,118],[47,-106],[-4,-36],[-12,-16],[-21,-1]],[[41093,63767],[21,-6],[8,-12],[68,-27],[70,2],[1,12],[17,8]],[[41325,63767],[168,-67],[119,-55],[91,-26],[13,-6],[69,-43],[-19,-29],[-121,-87],[-2,-15],[2,0],[-1,0]],[[41639,63414],[72,32],[15,1],[16,12],[18,8]],[[41760,63467],[34,31],[33,26],[57,36],[55,21],[74,-37],[35,-37],[0,-1]],[[42144,63383],[108,-12],[39,-11],[63,-33],[65,-56],[33,-51]],[[42452,63220],[31,-148],[4,-77],[-4,-46],[-14,-46],[-3,-6],[-112,-70],[-18,-1],[-51,-19],[-74,-68],[-18,-11]],[[41995,62713],[-112,23],[-35,13],[-23,-1],[-9,2]],[[41658,62685],[39,-60],[3,-6],[7,-8],[4,-7]],[[41711,62604],[4,-2],[4,-5],[29,-28],[45,-18],[70,-16],[23,-9],[8,-48],[-4,-17],[-34,-34],[-31,3],[-60,41],[-3,0],[-17,11]],[[41571,62479],[25,-91],[-13,-28],[-8,10]],[[41494,62335],[22,-46],[-17,-23],[0,-30],[27,-18],[-13,-29]],[[41513,62189],[-28,-21],[-33,25],[-137,60],[-25,-2],[13,-15],[91,-64],[35,-41],[1,-7],[-56,-45]],[[41301,61943],[-4,-23],[-75,-3],[-8,-16],[33,-32],[11,-21],[-5,-5],[-226,-2]],[[41202,61676],[26,-3],[9,-5],[-174,-169],[-12,-9],[-10,-11],[-1,-1]],[[40903,61281],[55,-6],[7,-23],[0,-20],[-25,-36],[-56,10],[-6,-8],[-19,6]],[[40645,60463],[-21,-33],[-34,-3],[-11,-10],[-20,7]],[[40578,60358],[24,-75],[-2,-29],[-61,-296]],[[40539,59958],[-6,-66]],[[33299,78538],[111,-46],[62,-43],[28,1],[37,-11],[17,-15],[50,-74],[10,-37],[3,-48],[-8,-39],[-18,-32],[-45,-20],[-107,-13],[-140,18]],[[33299,77947],[165,-10],[17,-5],[1,-18],[-29,-57],[-44,-42],[-110,-28]],[[33300,75401],[85,-6],[368,-40]],[[33753,75355],[32,33],[17,16],[0,1],[1,1]],[[33698,75623],[-131,33],[-169,69],[-34,62],[206,76]],[[33481,76058],[-36,11],[-6,4],[-10,2],[-83,26]],[[33346,76101],[-46,15]],[[33299,76320],[113,42]],[[33657,76614],[125,62],[75,5],[132,-63],[8,-1],[-4,-88]],[[33993,76529],[0,-5],[-32,-34],[-11,-21],[4,-22],[32,-50],[10,-33],[7,-56],[5,-8],[80,-48],[72,-61],[34,-97],[-14,-17],[-28,-14]],[[34059,75918],[51,1],[3,-1],[60,-2],[30,4],[49,1]],[[34252,75921],[45,0],[26,-2],[35,-22],[26,-40],[1,-22],[-5,-18],[-11,-15],[-103,-101],[-24,-34],[34,-9],[15,6],[103,75],[29,9],[243,-9],[24,-14],[14,-18],[23,-43],[15,-40]],[[34742,75624],[3,-1],[24,-81],[5,9],[0,53],[1,7],[1,-1]],[[34832,75654],[-2,5],[44,13],[2,9],[-34,22],[-28,31],[-20,58],[7,21],[20,23],[61,49],[70,29],[126,-6],[125,-28],[184,-83],[5,-6],[19,-49],[40,-134],[-1,-44],[-18,-70],[-75,-130],[-12,-89],[-58,-169],[-26,-61],[-44,-51],[-57,-41],[-236,-74],[-178,-76],[-44,-11],[-47,-1],[-147,24],[-9,3],[-82,28]],[[34417,74846],[-10,-2],[-69,19],[-97,-13],[-97,-35],[-60,-9],[-58,5],[-47,10],[-76,37],[30,12],[18,16],[-16,17],[-78,25],[-40,-27],[-8,4]],[[33809,74905],[-103,-69],[-169,-90],[-238,-32]],[[33300,72350],[118,-1]],[[33418,72349],[-118,145]],[[33300,72503],[52,12]],[[33374,72588],[-74,30]],[[33300,72843],[14,-2],[158,-90],[2,-4]],[[33486,72714],[298,-179],[8,-13],[-9,-18],[-4,-40],[21,-13],[73,-16],[20,-16],[27,-52],[34,-87],[29,-95],[46,-178],[51,-133],[31,-150]],[[34491,71622],[40,46],[32,20],[8,16],[-19,24],[-1,5],[6,24],[25,7],[-18,20],[3,11]],[[34567,71795],[-109,119],[-61,104],[-44,145],[-14,114],[-3,34],[-8,13],[-9,31]],[[34319,72355],[-180,620],[0,3],[44,85],[13,6],[66,4],[21,11],[-25,16],[-43,48],[-4,19],[8,11]],[[34353,73196],[46,-6],[93,-35],[182,-96],[19,5],[14,35],[73,-5]],[[34941,73064],[437,-265],[5,-4],[61,-79],[28,-44],[4,-42]],[[35476,72630],[1,-16],[-2,-6],[4,-15],[1,-6]],[[35480,72587],[55,-143],[3,-16],[24,-97],[6,-48],[169,-434],[33,-77],[20,-35],[119,-169],[63,-122],[6,-81],[8,-24],[3,-37],[-3,-52],[-14,-45],[-25,-37],[-24,-52],[-9,-32],[-63,-79]],[[35934,70894],[179,-156],[64,-104],[48,-29],[128,-103],[61,-26],[9,-8]],[[36423,70468],[21,-4],[47,-20],[46,-25],[44,-37],[13,-2],[27,7],[7,10],[2,15],[-6,12],[13,-3]],[[36637,70421],[-18,13],[-27,56],[-3,31],[18,5],[143,-133],[76,-53],[105,-55],[180,-128],[25,-11],[22,3],[130,-103],[0,-2],[27,-37],[154,16],[43,-3],[27,-12],[23,-25],[33,-81],[31,-160],[1,-58],[-14,-96],[-22,-35],[-14,-5],[-45,-2]],[[37532,69546],[-4,0],[-49,7],[-52,28],[-24,55]],[[36903,69675],[-6,-18],[-39,-26],[-35,-40],[15,-26],[9,-32],[5,-39],[-3,-29],[-10,-18],[-28,-22],[-1,0],[-46,7]],[[36402,69543],[10,-22],[-2,-4],[8,-11],[3,-8]],[[36421,69498],[6,-6],[5,-8],[10,-7],[54,-53]],[[36572,69350],[5,11],[5,-4],[19,1],[7,-13],[8,-38],[-4,-66],[-35,-131],[0,-4],[-43,-31]],[[36553,69008],[216,260],[78,40],[47,42],[141,11],[50,-23],[32,-39],[1,-19],[-37,-46],[-6,-23],[-1,-19],[-27,-33]],[[37059,69150],[25,-17],[1,-2],[25,-21],[45,9],[12,-5],[24,-23],[16,-36],[1,-49],[-33,-108],[-59,-35],[-26,-10],[-7,-1]],[[36704,68733],[-47,-34],[-103,4],[-54,-7],[-259,26],[0,0],[-118,18],[-127,59],[-12,27]],[[35948,68825],[-11,-38],[-1,0],[-53,-40],[-254,48],[-30,35],[10,22],[8,10],[7,4]],[[34716,69065],[-18,-20],[-28,-19],[-110,-120],[-41,-30],[-172,-40],[-39,-8],[-229,-19],[-90,-37],[-84,-70],[-103,-68],[-250,-83],[-231,-46],[-243,-20],[-21,-4],[-205,-14],[-7,2],[-81,-6],[-11,-6],[-292,-38]],[[32461,68419],[-189,-25],[-68,-3],[-119,-21],[-30,-4]],[[31811,68377],[-7,0],[-5,3],[-150,198],[-39,64],[-30,71],[12,121],[-8,70],[-3,15],[6,143]],[[31308,69152],[-139,-8],[-104,2],[-218,-8],[-219,19],[-115,20],[-101,30],[-34,13],[-176,78],[-11,9],[-15,29],[-19,49],[-49,64],[-69,74]],[[44399,67629],[-46,21],[-6,6],[-46,59]],[[44292,67770],[-4,21],[5,23],[22,72],[-8,12],[5,20]],[[44351,68097],[54,78],[13,-3],[40,-21],[45,-50],[15,-42],[-4,-45],[4,-64],[15,-85],[3,-62],[-6,-38],[-24,-72],[-21,-33],[-27,-31],[-23,-17],[-3,0],[-33,17]],[[50314,67936],[134,-25],[36,-13],[39,-2],[79,-15]],[[50602,67881],[83,-16],[11,-19],[16,-91],[1,-49],[-4,-37],[-102,-9],[-232,-1],[-126,7],[-51,15],[-44,24],[-50,77],[-32,79],[-2,33],[9,31],[12,18],[155,26],[71,-18],[-3,-15]],[[45959,65515],[-33,13],[-16,8],[-20,13],[-22,30],[-11,3],[-14,-10],[-4,-13],[4,-11],[-76,44],[44,44],[-40,14],[-13,18],[-59,-29],[-5,-1],[-63,74]],[[45596,65853],[-50,12],[-5,5],[-47,21],[-8,11],[-11,36]],[[45475,65938],[-17,53],[18,19],[136,-53],[81,-50],[78,-61],[41,-46],[3,-30],[-10,-29],[-24,-30],[19,-34],[61,-39],[61,-23],[98,-12],[14,-8],[0,-18],[-14,-29],[-22,-24],[-39,-9]],[[45261,65547],[-104,75],[-8,13],[-24,246]],[[45125,65881],[37,21],[17,3],[14,-5],[55,-52],[8,-27],[53,-82],[32,-66],[42,-135],[0,-26],[-11,-28],[-23,-29],[-25,-11],[-22,5],[-20,22]],[[45355,65247],[38,90],[7,4],[31,-2],[112,-91],[15,-19],[20,-56]],[[45578,65173],[17,-12],[11,-34],[23,-28],[88,-37],[23,-3],[24,-17]],[[45919,64993],[34,-11],[87,-132],[10,-9],[48,-26],[6,-10]],[[46248,64697],[21,-7],[35,-28],[38,-18],[150,-41],[41,-23],[67,-57],[55,-81],[67,-133],[22,-86],[-1,-12]],[[46946,63951],[8,2],[93,-33],[39,-6],[8,3],[40,67],[3,-1],[70,-74]],[[47207,63909],[94,-100],[-4,-16],[-42,-8],[103,-39],[90,-60],[-19,-40],[-75,-69],[-20,-4]],[[47334,63573],[-90,-85],[-10,-8],[-21,-21],[-15,-14]],[[47198,63445],[-3,-4],[-76,-76],[-20,-13],[-75,17]],[[47024,63369],[-25,6],[-79,47],[-281,126],[-87,27],[-79,11],[-15,147]],[[46420,63800],[-30,16],[-41,28],[-170,40],[-1,0],[-16,13]],[[46162,63897],[-34,26],[-1,22],[11,65],[-24,32],[-20,-1],[-3,13]],[[46091,64054],[-33,-13],[-1,0],[-56,-14],[-91,-45],[-2,-2],[-20,-8]],[[45888,63972],[-20,-31],[0,0],[0,0],[-22,-33]],[[45846,63908],[-12,-138],[-3,-14],[-32,-59],[-139,-153],[-69,-41]],[[45591,63503],[-5,-9],[-40,-9],[-23,-15],[-38,-57],[-56,-139],[-23,-40],[-37,-40],[-78,-62],[-79,-50],[-131,-58],[-74,-19],[-49,19],[-33,132],[-35,192],[20,138]],[[44756,63602],[-162,-57],[-19,-4],[-131,5],[-129,-87],[-32,-6],[-66,3],[-47,14],[-12,9],[-8,38],[3,39],[16,43],[58,115],[4,5],[2,3]],[[44630,64050],[-37,42],[-5,29],[-38,138],[-10,126],[0,63],[12,80],[104,269]],[[44695,65460],[2,8],[13,53],[26,63],[49,89],[89,85]],[[44874,65758],[26,25],[22,11],[17,2],[6,-2],[13,-14],[25,-54],[28,-15],[2,-5]],[[45013,65706],[9,-1],[57,-29],[31,-49],[22,-54],[12,-70],[-12,-31],[-46,-46],[-8,-19],[2,-16],[67,-56],[73,-168]],[[45220,65167],[3,0],[9,-25],[17,-12],[20,7],[25,37],[31,3]],[[49141,63341],[19,-2],[-7,-61],[-50,-10],[-66,23],[-64,43],[-52,49],[-90,93],[104,89],[3,0],[174,-107],[53,-70],[-2,-19],[0,-1]],[[48417,63122],[-123,135],[-25,50],[0,1],[3,6],[92,24]],[[48621,63313],[56,-16],[11,-17],[56,-108],[5,-18],[-3,-36],[-29,-45],[-30,-24],[-64,-35],[-72,-15],[-39,25],[-33,31],[-62,67]],[[46158,62750],[155,78],[89,-7],[107,42],[45,0],[20,-9]],[[46574,62854],[52,-22],[4,-6],[10,-18],[6,-39],[-8,-56],[-12,-51],[-17,-46],[-42,-78],[-130,-133],[-38,-55],[-132,-137],[-107,-96],[-31,-24],[-18,-6],[-27,4],[-59,28],[-59,6],[-86,-44],[-77,8],[-4,55],[-16,46],[-66,97],[48,133],[29,35],[172,335],[42,17],[85,-38],[40,-12],[8,1],[9,-4]],[[51809,62757],[0,2],[39,-8],[44,-13],[120,-47],[107,-72],[36,-67],[36,-50],[11,-38],[-9,-17],[-24,-12],[-32,-4],[-65,7],[-69,21],[-30,19],[-29,84]],[[47876,61935],[-82,-231],[-3,-9],[-15,-42],[-25,-72],[-21,-49],[-21,-32],[-24,-16],[-25,-2],[-38,36],[-28,40],[-35,68]],[[47645,62278],[36,7],[28,-4],[30,4],[24,14],[66,-37]],[[47873,62190],[40,-66],[2,-17],[-39,-172]],[[54750,61281],[-15,10],[-5,7],[-18,9],[-43,29],[-4,5],[-144,110],[-16,48],[-1,20],[3,4]],[[54522,61540],[180,33],[11,0],[54,-16]],[[54767,61557],[45,-13],[12,-19],[40,-42],[1,-3],[-9,-53],[-3,-68],[-17,-33],[-26,-25],[-22,-47],[-3,-3],[-8,7]],[[53334,60275],[-23,-51],[-36,-29],[-105,-64],[-43,-8],[-19,21],[-2,61],[14,46],[50,94],[44,107],[26,25],[12,-4],[95,-83],[7,-11],[5,-16],[3,-25]],[[52671,58945],[-15,-2],[1,24],[-8,46],[12,24],[21,1],[-8,-71]],[[47824,55998],[-11,14],[0,1],[-1,0],[-13,17]],[[47799,56030],[-6,-6],[-4,2],[-9,-7],[-103,-180],[-59,-70],[-20,11],[-4,8]],[[47801,56205],[-14,-110],[-2,-5],[1,-2],[-8,-59]],[[47853,56112],[21,113],[13,48],[16,87],[1,9],[37,78]],[[47999,56362],[8,-4],[4,-7],[40,-17],[15,-15],[8,-36],[-14,-21]],[[48006,56180],[-36,-83],[-8,13],[-19,-36],[-86,-235],[-4,-9],[-21,-36],[-19,-21],[-15,-4],[-38,5],[-39,-36],[103,260]],[[47035,53090],[78,-103],[31,-47],[57,-101],[17,-47],[17,-57],[0,-44],[-10,-40],[-34,-13],[-99,26],[-41,20],[-122,72],[-231,105],[-79,53],[-10,23],[50,93]],[[53000,82472],[267,25],[140,5],[161,15],[57,15],[6,0]],[[53631,82532],[149,34],[41,2],[121,23],[233,65],[187,35],[85,-15],[71,-25],[38,-2],[24,-19]],[[54580,82630],[1,30],[10,7],[40,52],[24,19],[15,3],[74,9],[10,0],[61,-25],[14,-12],[-3,-1]],[[54956,82618],[182,56],[54,4],[163,-16],[68,-20],[12,-22],[-43,-22],[-27,-20],[-11,-16],[7,-6],[-11,-7]],[[55543,82435],[76,-46],[0,-7],[-78,-66],[2,-16],[332,63],[61,4],[317,-27],[16,-2]],[[56269,82338],[164,-54],[34,-34],[46,-59],[-32,-61],[-162,-95],[-168,-74],[-99,-67],[-153,-37],[-521,-161],[-255,-51],[-107,-38],[-15,0]],[[54181,81540],[310,-2],[-16,-17],[-70,-17]],[[54405,81504],[-31,-7],[-143,-16],[-296,-13],[0,0],[-875,-29]],[[53687,81416],[168,-31],[-3,-7],[-29,-28],[-25,-13],[-45,-11],[-1402,-302]],[[52845,81083],[140,23],[38,-6],[107,13],[696,132],[639,105]],[[54465,81350],[57,6],[72,5],[219,-17],[-25,-54],[-310,-153],[-150,-53],[-51,-3]],[[54158,81028],[-21,-11],[-53,-19],[-156,-83],[-121,-51],[-418,-152],[-408,-180],[-92,-55],[-16,-6]],[[52873,80471],[-29,-20],[-19,-11],[-16,-12],[-7,-5]],[[52760,80395],[-11,-14],[-134,-105],[-71,-39],[-87,-17],[-103,7],[-92,24],[-22,11],[9,14]],[[52122,80232],[20,-9],[87,-92],[-25,-44],[-398,-46],[-175,-41],[-54,-6],[-292,36]],[[51798,79948],[146,26],[25,-1],[90,-25],[5,-23],[-95,-73],[-135,-41],[-171,-29]],[[51636,79748],[89,11],[79,-29],[-2,-28],[-90,-65],[-42,-21],[-275,-60],[-119,-14],[-105,7],[-274,76],[-5,4]],[[50129,79644],[197,1],[77,-12],[161,-6],[112,-17]],[[50676,79610],[5,-1],[29,-22],[84,-88],[13,-48],[-19,-44],[-25,-30],[-32,-18],[-50,-9],[-190,6],[-71,-10],[-83,-26],[-103,-11],[-187,5],[-219,-38],[-116,-7],[-108,15],[-32,6],[-128,38],[-147,21],[-61,5],[-86,16]],[[49150,79370],[-12,-9],[-90,6],[21,-24],[40,-4],[-2,-2]],[[49107,79337],[50,-4],[178,-64],[59,-61],[-383,16]],[[49451,79110],[194,-6],[19,-9],[119,-11],[124,-25],[163,30],[128,-5],[-24,-175],[-52,-18],[-193,0],[-192,20],[-31,6],[-59,27],[-104,24],[13,26]],[[49129,79010],[298,-50],[-26,-4],[-106,4],[-72,-18],[-114,1],[-230,-23],[-220,-4]],[[48659,78916],[-48,4],[-74,12],[-136,6],[-13,-1],[-34,3]],[[48109,78919],[146,-2],[3,-7],[65,-6],[95,-33],[89,-51],[61,-18],[-36,-23]],[[48549,78752],[103,56],[16,3],[89,23],[326,40],[71,3],[217,-23]],[[49371,78854],[26,-2],[42,-11],[59,-26],[52,-48],[1,-30]],[[49551,78737],[139,4],[71,-4],[143,-23],[184,-80],[-2,-110]],[[50085,78448],[-232,-60],[-90,-8],[-271,7],[-194,-9],[-20,-10],[133,-19],[26,-8],[-1,-2]],[[49436,78339],[26,-5],[257,-73],[119,-48],[21,-28],[-161,-101],[-92,-12]],[[49218,78010],[407,-22],[-86,-120],[-49,-17],[-51,-6],[-133,4],[-147,-47],[-77,-11],[-70,-6],[-229,20],[-167,-1],[-321,27]],[[48471,77685],[14,-16],[0,-63],[17,-132],[-14,-96],[-44,-61],[-55,-45],[-100,-44],[-102,-27],[-77,-9],[-127,-2],[-366,-31],[-178,2],[-120,11],[-203,66],[-198,103],[-68,27],[-22,5],[-3,2]],[[46863,77233],[88,-3],[14,-6],[-12,-21],[-105,-33],[-116,-15],[-31,0],[-116,18]],[[46585,77173],[8,-21],[-3,-9],[9,-8],[6,-14]],[[46716,77015],[300,110],[25,4],[152,-10],[60,-16],[189,-93],[27,-4],[140,47],[203,2],[74,-37],[29,-73],[3,-60],[-13,-28],[-33,-25]],[[48258,76762],[16,45],[33,20],[41,14],[39,-3],[59,-43],[79,-83],[7,-97],[-64,-111],[-79,-72],[-149,-58],[-9,20]],[[48231,76394],[-125,-72],[-26,-10],[-94,-47],[-23,-16],[-22,-9]],[[47941,76240],[-258,-103],[-36,-10],[-75,-17],[-88,-9],[-240,-63],[-52,-3],[-78,10],[-16,31],[20,54],[92,114]],[[47214,76280],[-97,43],[-8,8],[-48,28],[-45,14],[-8,0],[-41,18]],[[46967,76391],[-47,-27],[-49,-16],[-56,-3],[-59,10],[-51,26],[-100,109],[-38,13],[-23,-1],[-271,184]],[[46358,76541],[101,-56],[38,-50],[25,-61],[-12,-48],[-382,-18],[-53,61]],[[46037,76361],[21,-56],[-98,-5],[-179,10],[-123,74],[-29,46],[3,17]],[[45627,76485],[-41,15],[-23,36],[-2,-28],[-29,10]],[[45499,76509],[55,-94],[-8,-105],[-39,-5]],[[45396,76218],[31,-15],[-300,-38],[-97,9],[-160,36],[-207,86],[-86,56],[-33,57],[-25,31],[-17,5],[-51,-68],[-56,-140],[-142,36],[-143,28],[-17,11]],[[43968,76390],[39,-81],[-1,-62],[0,0],[-289,26],[-74,-4],[-68,16]],[[43539,76639],[-8,-14],[0,8],[-17,-36],[-19,-32]],[[43434,76462],[-45,-146],[-5,1],[-203,14],[-123,72]],[[43037,76495],[1,74],[15,118],[347,166],[60,46],[33,15]],[[43526,76929],[-3,11],[35,15],[283,35]],[[44032,76979],[131,36],[49,10],[101,9],[19,10],[-29,16],[-108,107],[-39,24],[-40,11],[-66,4],[-94,54],[-38,35],[-47,57],[-75,106],[-74,119],[37,66],[123,51],[124,36],[124,20],[21,0],[92,-15]],[[44243,77735],[149,-24],[143,-44],[101,-63],[127,-132],[20,-26],[23,-42]],[[45393,77215],[-6,9],[51,3],[196,18],[54,1]],[[45688,77246],[15,8],[99,19],[54,28],[28,40],[6,6],[90,45]],[[46193,77745],[-158,-179],[-34,-34],[-59,-52],[-167,-89],[-71,-14],[-114,4],[-151,40],[-85,-30],[-91,9]],[[45056,77537],[-1,11],[0,52],[35,32]],[[45037,77661],[-22,15],[-10,13],[5,4]],[[44993,77735],[-33,15],[-27,36],[135,82],[85,39],[144,-21]],[[45289,77911],[-71,35],[154,104],[38,4],[10,0],[144,-21],[-79,31],[-77,45],[-113,-8],[-22,62]],[[45270,78229],[-6,-4],[33,159],[-115,-214],[-117,-113],[-70,-57],[-80,-33],[-300,-28],[73,105],[9,19],[32,20]],[[44781,78236],[-59,-63],[-38,-31],[-169,-88],[-127,-45],[-104,-25],[-203,6],[-83,36],[63,300],[10,10],[93,78],[18,19],[287,222],[30,6],[192,26],[174,13],[76,20],[273,37]],[[45214,78757],[37,-4],[44,-12],[419,-46],[87,-17],[140,-54]],[[46218,78600],[-146,62],[3,2],[75,36],[261,-3],[72,6],[54,14],[89,0]],[[46630,78827],[-251,-66],[-64,3],[-197,32],[-321,5],[-324,52],[-39,31],[-34,43],[17,30],[70,17],[61,4],[90,-22],[26,-40]],[[45741,78993],[-26,9],[-35,17],[-104,62],[-88,76],[-67,75],[-71,56],[-219,212]],[[44945,79559],[-315,53],[-112,88],[-13,66],[3,24]],[[44468,79905],[-16,25],[-26,47],[55,135],[69,46],[83,10],[485,-43],[45,2],[34,-5]],[[45197,80122],[466,-11],[138,-28],[181,-82],[161,-92],[156,-62],[143,-84],[156,-126],[22,-14],[146,-142]],[[47680,79551],[-210,-21],[-34,4],[-203,-4],[-141,18],[-80,40],[-86,54],[-136,103],[0,0],[71,29]],[[46508,79899],[-220,137],[-124,96],[-12,44],[69,23],[1122,119]],[[47710,80469],[0,0],[18,9],[21,23],[584,134],[13,3],[186,22],[308,17]],[[48611,80762],[-42,-5],[-47,0],[-260,17],[-79,30],[17,49],[25,43],[56,50],[208,117],[233,100],[92,28],[171,46],[21,14],[129,40]],[[48801,81238],[-84,-21],[-180,-35],[-73,-29],[-75,-18]],[[48389,81135],[-320,-162],[-55,7],[-60,-10],[-53,-29],[-44,-52],[-36,-76],[-32,-51],[-29,-28],[-74,-39],[-177,-78],[-415,-109],[-140,-28],[-120,-4],[-260,-41],[-255,-22],[-119,18],[56,53],[118,56],[154,30]],[[46647,80688],[-229,-70],[-34,-2],[-134,-27],[-296,-22],[-14,-5],[-65,28]],[[45826,80546],[-7,-31],[-95,-60],[-91,-46],[-68,-18],[-80,-9],[-38,-2],[-322,-6],[-77,5],[-200,55],[-176,-19],[-73,4],[-134,39],[-40,25],[6,34],[68,56],[81,50]],[[44580,80623],[66,41],[244,113],[187,63],[211,43],[222,22]],[[46429,81027],[-427,-36],[6,9],[-641,-50],[-378,-43],[-81,-7]],[[44908,80900],[-10,-4],[-76,-9],[-88,-23],[-127,-62],[-403,-223],[-118,-56],[-182,-14],[-139,19],[-109,29],[-187,66],[-141,35],[-66,24],[-40,24],[-32,28],[-24,33],[19,11],[251,39]],[[43436,80817],[218,33],[143,-3],[233,-19]],[[44361,80849],[222,64],[226,63],[40,14],[402,116]],[[45259,81159],[-112,-16],[-51,4],[-94,-10],[-224,-44],[-356,-118],[-310,-42],[-767,-22],[-243,-33],[-107,7],[-81,32],[-90,60],[16,48],[166,48],[85,-10]],[[43146,81121],[-63,9],[-94,24],[-18,26],[88,44],[29,7]],[[43088,81231],[165,64],[89,31],[129,27],[236,17],[242,-9],[2,3],[188,-23]],[[44139,81341],[-186,27],[5,9],[-239,33],[-64,2],[-43,6]],[[43612,81418],[-29,-4],[-44,2],[-238,-23],[-630,-140],[-54,4],[-91,24],[26,35],[81,35],[116,34]],[[42511,81517],[-40,-17],[-52,-8],[-128,-49],[-90,-20],[-53,6],[-134,58],[18,48],[106,60],[78,35],[313,86],[52,12],[37,1]],[[43281,81805],[-2,30],[63,30],[407,81],[31,-2],[126,-11]],[[43906,81933],[60,-5],[84,-23],[89,-54],[76,-34],[24,-17]],[[44245,81837],[1,7],[75,40],[84,15],[88,-1],[46,-2],[104,-20],[135,-50],[109,-22],[51,1],[64,28],[119,0],[66,-28]],[[45304,81860],[-246,31],[-12,3],[-604,143],[-15,28],[192,8]],[[45038,82127],[-76,88],[3,1],[98,39],[180,44],[52,-8],[0,-6]],[[45299,82262],[103,-12],[4,-2],[89,-24],[259,-23],[110,-25],[198,-139],[79,-45],[92,-39],[40,-28]],[[46273,81925],[142,-5],[37,-4],[1,2],[43,-2]],[[46597,81912],[-132,29],[0,2],[-156,65],[-43,39],[18,32],[33,17],[49,1],[124,-28],[275,-82],[50,-17]],[[47245,81862],[123,-15],[61,-9],[179,-67]],[[47717,81729],[23,2],[87,-29],[19,3],[-36,29],[33,2]],[[47569,81879],[-148,23],[-547,141],[-252,85],[-122,58],[-92,59],[-2,32],[87,37],[117,30],[31,2],[249,1]],[[46770,82365],[-1,0],[4,3],[-132,45],[-78,38],[3,27],[153,20],[152,-19],[96,-25],[38,-17]],[[47262,82440],[-209,104],[-26,21],[-15,29],[24,17],[56,17],[168,-10],[277,-63],[6,0],[35,-17]],[[47578,82538],[279,-3],[175,-11],[136,5],[-21,14],[-197,39],[-207,52],[-91,31],[-67,43],[-80,35],[-6,17],[128,27],[335,-5],[134,-18],[394,-79]],[[48490,82736],[53,19],[163,-10],[66,-13],[120,-46],[239,-103],[148,-80]],[[49279,82503],[112,-87],[15,-17],[10,-2],[26,-20]],[[49701,82450],[-21,7],[2,1],[-37,35],[-211,80],[-48,34],[-5,3],[-30,22]],[[49351,82632],[-31,11],[-40,22],[-237,103],[-63,48],[-40,41],[657,39],[633,-34],[103,-24],[67,-34],[67,-51],[101,-52],[205,-80],[53,-9],[17,-9]],[[51100,82597],[-170,40],[-139,56],[-99,61],[1,41],[8,14],[352,125],[96,7],[245,5],[133,-61],[-25,-17]],[[51659,82865],[307,84],[74,3],[346,7],[7,-1],[40,-17],[53,-35],[-17,-21]],[[52491,82848],[731,-35],[8,-3],[87,-5],[30,2],[685,-33],[-1,-19],[-84,-45],[-71,-27],[-61,-20],[-704,-137],[-39,-17],[-101,-21]],[[42279,80626],[127,-42],[37,-19],[38,-118]],[[42481,80447],[49,-7],[30,-11],[152,-28],[169,-49],[30,2],[59,30],[10,1],[81,5],[74,-5],[44,-21],[33,-31],[13,-22],[2,-17],[-33,-34],[4,-13],[19,-15],[4,-18],[-34,-71],[10,-26],[39,-30],[5,-6]],[[43586,79943],[85,23],[1,-1],[0,1],[7,2]],[[43679,79968],[-7,4],[1,7],[-28,41],[-59,59],[-97,26],[-18,13],[-2,4],[13,68]],[[43492,80245],[87,37],[128,1],[79,-14],[135,-43],[14,-24],[8,-47],[5,-94],[-3,-20],[-56,-26],[-129,-27]],[[43760,79988],[59,-15],[-15,-21],[29,-11],[100,-8],[84,-18],[137,-75]],[[44154,79840],[62,-34],[37,-57],[-34,-89],[-45,-143],[-36,-32],[-3,-4],[-32,-19]],[[44103,79462],[6,-18],[-7,-9],[10,-4],[12,-43]],[[44150,79399],[98,43],[30,4],[31,7],[101,48],[148,-11],[50,-13],[24,-17],[46,-54],[21,-41],[-27,-38]],[[44783,79381],[144,37],[28,-33],[155,-143],[54,-58],[10,-44],[-66,-51],[-52,-25],[-258,-73],[-45,-10]],[[44559,78915],[-1,-1],[-54,-19],[-85,-47],[-88,17]],[[44168,78699],[-1,-2],[-42,-27],[-110,-95],[-66,-42],[-116,30],[-29,45],[-16,100],[-3,41],[4,22],[15,36],[50,85],[-6,9],[-17,-5],[6,11]],[[43652,78709],[11,-167],[-17,-13],[12,-19],[91,-26],[16,-12],[10,-21],[4,-30],[-4,-27],[-27,-43],[-51,-17],[-66,19],[-140,106],[-62,-6],[-15,-12],[13,-38],[24,-47],[-12,-8]],[[43439,78348],[39,-100],[-20,-57],[-40,-92],[-28,-49],[-14,-7],[-70,-1],[-60,25],[-179,160],[-13,11],[-34,34]],[[42825,78473],[-21,-12],[-6,2],[-3,-6],[-13,-8]],[[42869,78281],[45,-35],[17,-19],[24,-32],[100,-153],[3,-13],[-17,-12],[-26,7],[-34,26],[-66,28],[-72,53]],[[42546,78139],[19,-1],[27,-12],[30,-22],[23,-28],[15,-34],[-29,-21],[-108,-14],[-144,9],[-234,29],[-233,49],[-215,76],[-156,76],[-61,41],[-20,30],[59,27],[30,5],[242,28]],[[41791,78377],[19,10],[117,12],[-32,19],[-23,3],[15,8]],[[41887,78429],[-97,2],[-267,31],[-122,8],[-65,-12],[-75,7],[-58,34],[-77,65],[-40,43],[6,17],[29,10],[39,-2],[60,-14]],[[41295,78644],[-60,18],[-7,2],[-12,3],[-49,15]],[[41167,78682],[-14,0],[-194,46],[-101,57],[-19,22],[-7,22],[3,21],[101,43],[312,102],[36,5],[683,25]],[[41623,79090],[-45,11],[26,37],[190,20],[46,-1]],[[42285,79241],[-180,-17],[-95,-4],[-264,9],[-113,65],[-76,12],[-84,-1],[-98,-21],[-168,-61],[-81,-14],[-182,-63],[-51,5],[-25,7],[-8,12],[33,42],[48,29],[-10,10],[-71,6],[-30,-1],[-77,22]],[[40681,79239],[-15,-7],[-156,-42],[-94,-41],[-28,-4],[-102,65],[-29,7],[-56,25]],[[40201,79242],[-99,20],[-14,11],[33,109],[48,23],[124,18],[30,8],[235,30]],[[40667,79594],[-24,-13],[-7,-1],[-186,-48],[-155,-24],[-121,0],[-89,7],[-56,14],[-68,30],[-100,65],[-30,38]],[[39831,79662],[-182,230],[-34,60],[21,31],[370,-54],[77,-24]],[[40543,79897],[2,7],[60,-1],[17,7],[5,18],[-6,29],[0,0],[184,66]],[[40876,80023],[-91,24],[3,2],[-12,0],[-82,22]],[[40691,80069],[-36,-15],[-23,1],[-287,-67],[-101,1],[-115,96],[-122,-17],[-58,7],[-90,25],[-45,21],[-28,26],[-13,22],[5,17],[24,20],[101,27],[39,-3]],[[39942,80230],[138,-11],[1,0],[1,0],[82,-7]],[[40164,80212],[0,8],[11,0],[-11,11],[1,18]],[[40165,80249],[-126,58],[-27,15],[-1,4]],[[40417,80451],[55,-8],[16,-19],[75,1],[119,-14],[30,0],[43,-5]],[[40952,80380],[-62,32],[57,0],[-48,27],[-83,24],[-11,2],[-50,87]],[[40706,80579],[-179,28],[-104,30],[-94,99]],[[40224,80737],[-1,13],[19,23],[86,75]],[[40328,80848],[140,52],[197,-17],[1,0],[7,-4]],[[40915,80874],[-48,50],[84,22],[246,-28]],[[41282,81066],[-123,-4],[-196,3],[-103,12],[-40,16],[-12,24],[-6,24],[0,26],[6,15],[19,9],[57,10],[53,0],[30,-4]],[[41112,81191],[65,19],[53,6],[28,-4],[453,-98]],[[41711,81114],[66,-26],[88,-51],[53,-52],[62,-83],[206,-178],[20,-22]],[[38387,79675],[-6,3],[-6,16],[-86,47],[-56,-2],[-24,10]],[[38209,79749],[-122,-13],[-29,2],[-27,15],[-17,20],[-16,82],[3,29],[1,3],[34,53]],[[38036,79940],[76,38],[40,16],[34,4],[104,-13],[21,-16]],[[38372,79970],[60,9],[29,-1],[65,-13],[58,-29],[34,-45],[15,-56],[11,-130],[-10,-65],[-24,-48],[-22,-12],[-28,-1],[-109,31],[-64,65]],[[36774,78936],[14,-76],[-6,-13],[-23,-22],[38,-15],[0,-2]],[[36926,78797],[48,85],[43,12],[22,9],[138,40],[71,-8],[192,-97],[26,-3],[39,-20]],[[37505,78815],[13,-121],[-6,-14],[9,-22],[1,0],[0,-4]],[[37873,78666],[0,0],[178,-81],[111,-109],[63,-28],[-47,-116],[-33,-20],[-15,-17],[31,-39],[5,-14],[2,-20],[-4,-40],[12,-22],[34,-9],[203,-130],[58,-46],[38,-45],[23,-56],[2,-19],[-29,-32],[-32,-88],[-18,-20],[-56,-12],[-99,-13],[-80,-8],[-29,-6],[-133,-18]],[[38058,77658],[-6,1],[-125,32],[-148,59],[-30,26],[-16,15],[-35,44],[-10,19],[-15,75],[-3,6],[6,14]],[[37578,78028],[-14,4],[-17,19],[-81,4],[-298,73]],[[37106,78143],[-44,-7],[-91,-4],[-105,-18],[-39,33]],[[36827,78147],[-78,66],[10,15],[-25,-3],[-4,4]],[[36730,78229],[-206,-28],[-215,-24],[-46,-22],[-19,-4]],[[36244,78151],[-6,-7],[-57,-27],[-180,10],[-90,25],[-33,16],[-102,61]],[[35694,78334],[-11,25],[-1,10],[115,65],[12,2],[244,-39],[214,-21],[7,2],[115,-15]],[[36233,78763],[-112,64],[-19,15],[-19,4],[-116,-34],[-162,-130],[-39,-19],[-37,1],[-35,21],[0,5],[99,101]],[[35834,78878],[-64,15],[-44,14],[-193,-18],[-108,-1],[-17,29],[-5,53],[5,50],[27,78],[37,60],[3,2],[141,13],[136,-7],[420,37],[123,4],[133,-36],[112,-20],[121,-59],[105,-113]],[[40308,78317],[160,-63],[9,-6],[13,-30],[0,-16],[-60,-32],[-121,-50],[-29,-38],[82,-35],[27,-18]],[[40389,78029],[54,-36],[24,-29],[1,-30],[-3,-4],[-70,-80],[-53,-24],[-82,3],[-38,-8],[-104,-39],[-113,-25],[-127,-17],[-144,-10],[-35,-13],[-63,-9]],[[39636,77708],[-28,-23],[-44,-15],[-74,-6],[-24,21],[-11,32],[6,22],[15,27],[-35,25],[-159,49],[-5,4],[50,73]],[[39548,77991],[-39,12],[3,6],[-40,6],[-140,46],[-16,1],[-267,83]],[[39049,78145],[-65,49],[-7,49],[-22,17],[-67,26],[-10,9],[-19,39],[-3,21],[3,19],[122,41],[-17,28],[-92,106],[-25,59],[4,20],[58,33],[80,1],[213,-10],[42,-5],[212,-61]],[[39621,78540],[133,-32],[81,-56],[3,-7],[-18,-63]],[[39999,78336],[88,33],[55,3],[30,-2]],[[36977,77591],[-90,48],[-6,56],[1,20],[36,26],[40,4],[202,12],[118,-7],[151,-38],[61,-24],[32,-17],[38,-35],[13,-15],[8,-28],[-188,-6],[-89,-10],[-50,-21],[-94,-9],[-91,4],[-31,7],[-61,33]],[[40413,77625],[258,5],[234,-12],[206,11],[18,-2],[112,-28],[4,-1],[43,-29],[39,-50],[-100,-31],[-86,-155],[-12,-8],[-93,-2],[-46,-12],[-272,22],[-109,1],[-101,8]],[[40498,77341],[-87,-4],[-436,6],[-18,6],[-23,13],[-99,91],[-6,36],[18,42],[15,20],[50,23]],[[39912,77574],[26,13],[173,53],[95,10],[37,-11],[9,-44]],[[35372,77298],[-31,43],[-17,43],[-35,28],[-16,22],[-14,51],[-87,99],[12,11],[9,4],[76,14],[109,-16],[96,-51]],[[35474,77546],[25,-14],[43,-31],[102,-94],[32,-42],[6,-57],[19,-30],[19,-2],[5,-9]],[[35849,77225],[56,-40],[12,-17],[22,-60],[-1,-28],[-18,-58],[-30,-21],[-73,-18],[-145,41],[-95,17],[-78,72],[-75,87],[-1,3]],[[42776,77073],[-27,-3],[-42,2],[-306,98],[-90,44],[-41,32],[-14,39],[-4,55],[0,60],[13,30]],[[42441,77505],[107,-7],[66,-11],[37,-11],[159,-72],[82,-54],[57,-49],[12,-64],[0,-39],[-9,-29],[-16,-17],[-41,-25],[-117,-54],[-2,0]],[[41179,76320],[56,49],[154,111],[24,-2],[110,-15],[43,3],[99,-7]],[[41719,76466],[108,36],[123,30],[107,11],[22,2],[97,-3],[77,-14],[27,-6],[184,-80],[64,-39],[23,-27],[6,-20],[-37,-31],[-116,19],[-150,13],[-72,13],[-2,1],[-1,0],[-49,9]],[[42048,76356],[87,-16],[7,-24],[39,-9],[183,-7],[725,-129]],[[43169,76139],[17,-22],[-7,-17],[-27,-21],[-54,-29],[-295,-21],[-273,5],[-108,13],[-206,44],[-20,-3],[-156,37]],[[42169,76057],[3,-2],[35,-34],[107,-16],[7,-2]],[[42321,76003],[29,-7],[84,-29],[43,-30],[37,-3],[0,-2]],[[42769,75856],[8,-4],[23,-20],[22,-1],[92,-45],[46,-71],[22,-9],[66,13],[111,-62],[35,-33],[0,-25],[-25,-39],[-50,-52],[-125,-62],[-10,-19],[137,7],[204,-144]],[[43413,75332],[-34,58],[-2,11],[-21,50],[3,20],[13,24],[22,15],[33,11],[33,-1],[36,-13],[175,-133],[2,1],[2,-1]],[[43675,75374],[230,57],[31,-22],[34,-53],[16,-9],[74,95],[113,6],[158,-94],[72,-16],[78,-70]],[[44526,75259],[98,8],[117,-9],[10,21],[4,0]],[[44772,75305],[-25,12],[-61,48],[36,21],[229,54],[66,-5],[128,50],[114,27],[54,5],[69,-1],[104,50],[1,0]],[[45487,75566],[2,1],[120,57],[54,18],[34,34],[219,-43]],[[45916,75633],[34,1],[83,-21],[68,5],[77,19],[36,0]],[[46214,75637],[230,57],[9,1],[81,-2],[29,-3],[226,-33],[180,-39],[44,-16],[-74,-47]],[[47111,75487],[130,18],[81,-1],[97,-13],[78,-48],[19,-19],[-3,-20],[-77,-51],[13,-11],[76,-12],[117,-4],[77,-9],[15,-5],[36,-65],[37,-89],[-1,-30],[-45,-47]],[[47761,75081],[-19,-21],[-159,-78],[-181,-67],[-11,-18],[58,-32],[59,-14],[7,1],[20,-27]],[[47549,74839],[19,18],[119,25],[65,-7],[47,-22],[30,-31],[28,-41],[-50,-37],[-208,-47],[-123,61],[-41,14],[-28,-6],[16,-26],[34,-28],[-12,-40]],[[47471,74600],[1,-41],[-4,-38],[-19,-68],[-3,-5],[-4,-2],[-8,-1],[-445,-14],[-54,-13],[-90,-37],[-248,-27]],[[46597,74354],[-50,6],[-123,39],[-110,-10],[-43,5],[-93,36],[-16,12],[-43,53]],[[46119,74495],[-3,4],[-26,58],[2,39],[12,56],[-7,28],[-27,0],[-29,12],[-89,56],[-36,11],[-12,9]],[[45904,74768],[-4,-4],[-3,1],[-10,-9],[1,-5],[-13,-14]],[[45953,74656],[20,-67],[-6,-21],[-9,-23]],[[45958,74545],[-11,-28],[-55,-67],[-42,-20],[-118,-2],[-156,-42],[-132,-11],[-92,9],[-72,22],[-46,26],[-46,36],[-23,3],[-8,-51],[-137,2],[-36,43],[-16,-1],[-7,-33],[-7,-14],[-7,-10],[-12,-8],[-125,-36],[-71,0],[-73,41],[-48,-4],[-62,-22],[-150,41],[-35,2],[24,-54],[-230,-13],[-96,12],[-73,-21],[-4,0]],[[43992,74345],[-87,-5],[-141,14],[-191,4],[-9,1],[-35,15],[-27,32],[-1,28],[10,39],[29,58],[49,77],[16,40],[-43,19],[-9,9],[-5,18]],[[43527,74700],[-12,-5],[-3,0],[-70,-29],[0,-2],[-105,-44],[-2,7],[-15,26],[-20,-1],[-18,-14],[-18,-27],[-28,-10],[-36,8],[-13,-13],[10,-34],[4,-31],[-3,-30],[-32,-28],[-89,-41],[-17,-5],[-78,-10],[-93,-4],[-81,12],[-165,49],[-54,2],[-65,22],[-82,62],[-49,11],[16,75]],[[42279,74603],[0,-2],[-1,-1],[-16,-26],[14,-60],[-16,-5],[-82,22],[-80,-16],[-17,4],[-5,2],[-53,42],[-98,44],[-43,50],[-67,155],[-34,102],[4,21],[50,29],[-7,23],[-63,57],[-66,49],[-20,33],[-9,34],[-9,49],[-1,36],[8,24],[28,53],[63,82]],[[41810,75649],[-25,37],[-9,22],[-28,33],[-13,19]],[[41348,76224],[-46,1],[-5,2],[-10,-1],[-60,1]],[[41041,76135],[-385,20],[-22,3],[-21,-1],[-53,3]],[[40560,76160],[-25,-14],[-97,-27],[-132,6],[-35,42],[0,2]],[[40502,76191],[-340,50],[-126,36],[-56,30],[-38,40],[13,27],[47,10],[8,-1]],[[40047,76379],[36,31],[23,14],[21,21],[-6,-1],[31,26]],[[40095,76440],[-1,-1],[-73,-12],[-46,3],[-318,133],[-35,8],[7,52]],[[39629,76624],[37,0],[14,-1],[4,1],[105,-2]],[[39789,76622],[-33,21],[14,14],[-15,14],[-108,44],[-53,34],[-20,24],[21,35],[5,23],[21,8],[109,-11]],[[39814,76873],[0,1],[118,36],[26,4],[5,0]],[[39963,76914],[142,10],[14,0],[591,-145]],[[40710,76779],[50,-3],[12,-4],[89,-8],[30,5],[142,-8],[66,-27],[89,-62],[46,-19],[53,-37],[0,-1],[1,-3],[-74,-199],[-29,-25],[-27,-35],[-24,-45],[50,25],[-5,-13]],[[42563,76636],[22,20],[16,6],[160,35],[45,-1],[47,-9]],[[42955,76579],[3,-8],[-4,-10],[-38,-41],[-16,-29],[0,-28],[8,-42],[15,-26],[-1,-7]],[[42922,76388],[-22,-31],[-49,4],[-23,-13],[-38,8],[-53,28],[-61,56],[-70,83],[-55,72],[-3,19],[8,16],[7,6]],[[39194,76083],[14,-148],[-15,-21],[-17,-73],[-1,-39],[23,-61],[1,-28],[-44,-49],[-93,-42],[13,-22],[175,-46],[2,-109]],[[39036,75140],[43,-5],[1,-12],[70,-69],[21,-40],[-7,-24],[-59,-10],[-21,5],[-61,31],[-35,48],[-11,-2],[-11,-23],[7,-23],[41,-42],[18,-51],[-7,-5],[-28,-13],[-45,-9],[-83,-1],[-130,-22],[-64,-4],[-63,12],[-83,3],[-69,-5],[-43,10],[-38,24],[-45,-6],[-98,-60],[-153,19],[-131,5],[-9,3],[-24,17],[-31,39],[-60,121],[1,3],[56,18]],[[37939,75090],[-1,3],[48,5],[3,11],[-57,24],[-1,2]],[[37931,75135],[-8,2],[-38,15],[-66,18],[-19,35]],[[37861,75305],[26,8],[38,10],[6,4],[112,36]],[[38188,75491],[-2,8],[67,18],[181,14],[7,29],[-343,-17],[-469,-61],[-68,-14],[-97,-13],[-101,15],[-514,-94],[-5,0],[-23,3],[-38,22],[-37,39],[-19,22],[33,39],[151,74],[76,65],[-9,35],[60,62],[96,8],[163,-51],[54,-32],[33,-40]],[[37471,75611],[-5,10],[60,4],[69,35],[-17,4],[-119,-19],[-8,4],[-33,63]],[[37371,75753],[-29,26],[0,1],[-1,25],[36,48],[-127,15],[-78,94],[1,0],[42,49],[116,67],[-14,19],[-167,-2],[-37,9],[-57,33],[27,81],[41,42],[50,40],[16,5],[62,-6]],[[37252,76299],[137,-15],[32,-13],[95,-65],[25,-37],[-3,-36],[18,-26],[74,-39],[260,-162],[120,-119]],[[38255,75807],[-53,3],[4,11],[-138,70],[-34,37],[-30,50],[13,17],[40,5],[101,-6],[118,13],[-131,22],[-86,28],[-57,1],[-61,81],[97,13],[28,9],[3,12],[-50,31],[-44,16],[-226,37],[-81,41],[-26,19],[-8,19],[29,48],[106,53],[20,9],[85,28],[141,20],[220,-41]],[[38235,76453],[42,-8],[100,-63],[35,-31],[16,-54]],[[38568,76324],[1,1],[17,1],[-7,14],[86,132]],[[38729,76507],[-115,20],[9,5],[98,7],[38,-11],[103,-63],[-10,-2]],[[38796,76448],[345,-94],[11,-27],[5,-45],[-6,-34],[-16,-24],[-1,-28],[15,-31],[43,-54],[2,-28]],[[35965,76320],[-52,21],[-32,60],[-13,42],[9,24],[29,17],[2,1]],[[35908,76485],[16,7],[134,34],[62,0],[6,-1],[42,-19],[7,-7],[-5,-25],[-26,-31],[24,-5],[72,20],[34,2],[35,-15],[30,-21],[14,-25],[187,-61],[66,-28],[9,-18],[-24,-26],[-55,-34],[-53,-24],[-77,-18],[-366,-3],[-58,13],[-4,4],[-1,111]],[[36661,75777],[370,79],[67,-41],[5,-14],[-19,-12],[-129,-32],[-50,-26],[-42,-61],[-32,-28],[-173,-17],[-177,1],[22,39],[158,112]],[[36004,75942],[-11,3],[-31,25],[26,73],[161,41],[210,35],[225,53],[176,-4],[54,-20],[21,-29],[17,-62],[2,-9],[-27,-48]],[[40318,74661],[-20,-3],[-76,3],[-145,24],[-77,32],[-84,79],[-41,18],[-40,-28],[-15,6],[-11,19],[-11,34],[-21,18],[-82,-9],[-15,11],[-4,30],[1,26],[13,36],[10,15],[79,102],[43,8],[53,21],[30,61],[-1,3],[68,62]],[[40054,75339],[12,16],[52,36],[163,51],[160,45],[54,5],[109,-7],[105,-29],[81,-50],[166,-121],[75,-73],[40,-76],[36,-43],[44,-93],[-16,-37],[-9,-49],[4,-23],[31,-76],[5,-30],[2,-65],[-13,-84],[-9,-16],[-13,-7],[-6,-22],[1,-36],[-12,-22],[-26,-8],[-170,-17],[-106,3],[-131,-9],[-40,0],[-62,4],[-51,18],[-74,40],[-74,45],[-5,4]],[[35837,74944],[-32,11],[-44,28],[-15,15],[26,55]],[[35928,75270],[91,21],[49,-2],[159,-57],[21,-24],[22,-56],[6,-37],[37,-41],[12,-25],[0,-23],[-10,-24],[-22,-24],[-49,-35],[-114,-34],[-58,-5]],[[36072,74904],[-80,-7],[-50,10],[-105,37]],[[41338,72649],[-2,0],[-110,20],[-113,-1],[-190,-28],[-148,-3]],[[40902,72576],[35,-1],[13,-4],[72,-35],[94,-110],[12,-27],[6,-32],[-4,-62],[-6,-16],[-104,-116],[-26,-17]],[[40847,71909],[-106,-13],[-65,16],[-54,-1],[-189,-30],[-84,14],[4,15]],[[40297,72465],[-83,109],[-38,75],[-15,49],[-11,54],[-5,57],[0,57],[10,116],[1,59],[-7,153],[-1,11],[14,278]],[[40131,73503],[-2,22],[1,11],[6,25],[30,33],[58,23],[29,4],[139,-52],[29,-23]],[[40629,73535],[-146,50],[-75,85],[-35,77],[-7,25],[-2,26],[4,27],[11,25],[39,39],[6,3],[176,62]],[[40735,73975],[83,13],[124,8],[73,-13],[112,49],[46,8],[199,-31],[122,-30],[91,-31],[44,-21],[86,-70],[43,-20],[166,41],[86,11],[219,-10],[69,-5],[219,-57],[80,-43],[50,-40],[-13,-44],[-40,-71],[-48,-67],[-94,-106],[-81,-52],[-20,-26],[-12,-35],[-32,-51],[-86,-112],[-23,-19],[-122,-48],[42,-22],[19,-20],[-16,-49],[-77,-119],[-79,-111],[-56,-66],[-101,-95],[-56,-27],[-75,-8],[-308,57],[-31,6]],[[38986,73970],[121,9],[46,-5],[15,-19],[4,-18],[-7,-19],[-39,-47],[-50,-37],[-136,-80],[-59,-20],[-137,-21],[-63,9],[-31,-25],[-126,-12],[-132,42],[-38,16],[-16,24],[4,9],[11,6],[34,12],[101,19],[44,17],[17,22],[107,38],[75,9],[229,65],[26,6]],[[38465,73593],[128,29],[43,4],[126,32],[175,26],[73,32],[162,37]],[[39172,73753],[129,-20],[29,-6],[48,-18],[26,-19],[28,-34],[48,-84],[7,-31],[-3,-9],[-44,-52],[-29,-22],[-61,-21],[-53,-7],[-6,-5],[-138,-17]],[[39172,73353],[20,0],[1,-6],[14,-10],[25,3],[23,11],[39,-1],[25,-3],[30,-22],[27,-38],[-20,-34],[-101,-48],[-52,-19],[-38,-6]],[[39165,73180],[-15,-13],[-43,-15],[-181,-170],[-95,-71],[-20,-22],[-9,-22],[0,0],[-2,-2]],[[38800,72865],[3,-19],[2,-21],[4,-17],[1,0],[4,-20]],[[38814,72788],[21,13],[0,0],[7,5],[106,66],[19,9],[103,22],[37,0],[143,-40],[9,-4],[70,-54],[16,-20],[-7,-20],[-29,-20],[-3,-13],[66,-27],[72,-73],[2,-53],[-27,-38],[-18,-16]],[[39597,72565],[12,6],[33,10],[37,-3],[24,-12],[25,-69],[21,-77],[3,-65],[-16,-53],[-22,-41],[-57,-51],[-51,-19],[-26,0],[2,-9],[61,-43],[25,-33],[11,-33],[-4,-32],[-8,-27],[-71,-99],[4,-15],[20,-6],[44,-58],[4,-92],[-43,-53],[-16,-4],[-9,11]],[[39539,71683],[-16,-19],[-12,-3],[-37,-31],[-44,-50],[-34,-25],[-27,-12]],[[39369,71543],[-35,-16],[-68,-23],[-56,-5],[-22,2],[-234,27],[-1,2]],[[38778,71602],[48,-46],[73,-128],[18,-67],[2,-29],[-3,-18],[-47,-42]],[[38869,71272],[-66,-59],[-48,-25],[-1,0],[-71,-14],[-46,10],[-21,14],[-37,48]],[[38375,71374],[-29,44],[-4,9],[-7,7],[-83,125]],[[37740,72061],[-181,53],[-21,33],[-55,38],[-20,5],[-32,-9],[-42,-17],[-61,18]],[[37328,72182],[-116,34],[-12,37],[-14,24],[-36,22],[-31,55],[-172,92],[-2,2]],[[36945,72448],[-50,35],[-101,104],[-25,45],[-2,18],[13,60],[4,11],[85,153],[77,56],[2,1],[62,13],[87,-7],[16,-5],[49,-25],[23,-22],[18,-45],[20,-30],[65,-33],[36,-27],[52,-62],[40,-74],[36,-25],[15,-1],[8,-10]],[[37934,72992],[-27,0],[-8,3],[-53,-8],[-41,18],[-4,13],[4,29]],[[37805,73047],[53,76],[38,9],[55,-11],[75,-43],[48,-10],[67,12],[-86,26],[-120,100],[-51,19],[-63,-43],[-42,-16],[-80,-21],[-64,-3],[-145,84],[-141,94],[-16,32],[3,19],[24,27],[75,41],[93,23],[47,2],[29,-3],[48,-24],[45,-42],[42,-52]],[[37797,73458],[-121,29],[-45,37],[-26,33],[-14,36],[-2,38],[11,26],[23,14],[201,37],[5,0]],[[37829,73708],[4,-1],[138,-40],[91,-6],[38,51],[-13,10],[-48,-13],[-54,0],[-34,29],[-1,16],[42,40],[37,10],[51,-5],[79,-42],[1,-3]],[[44659,70914],[75,46],[68,36],[16,5],[242,21],[49,0],[48,-18]],[[45157,71004],[30,-11],[-7,-16],[-20,-7]],[[45315,70909],[-8,143],[26,177],[6,32],[35,73]],[[45284,71539],[-36,-12],[-32,-2],[-154,28]],[[45062,71553],[-73,69],[-38,64],[-41,49],[-27,24],[-53,76]],[[44835,71904],[7,12],[36,15],[56,39],[67,113],[40,18],[144,-15],[195,-88],[51,-32],[24,-17]],[[45466,71942],[4,0],[32,-21],[33,-8],[0,14],[-31,36],[-8,6],[0,7]],[[45489,72002],[-167,101],[-22,24],[-31,49],[15,22],[79,21],[10,26],[-107,29],[-55,0],[-44,-22],[-20,0],[-127,48],[-12,12],[-51,66],[-26,58],[-30,36],[-11,29],[-5,89],[2,52],[12,44],[22,38],[57,68],[32,20],[59,9],[130,-34],[349,-123],[-3,12],[157,-53]],[[45702,72623],[-161,73],[-2,8],[-251,106],[-78,36]],[[45210,72846],[-9,2],[-52,22],[-138,42],[-33,59],[4,6],[28,31],[848,-154]],[[45113,73089],[9,43],[63,70],[192,54],[62,43],[75,24],[113,2],[146,-42],[3,12],[-5,6],[10,-2]],[[45781,73299],[-18,12],[-53,63],[5,20],[567,197],[1,0],[333,4]],[[46616,73595],[33,0],[160,-33],[95,-62],[29,-36],[50,-118],[42,-166],[60,-68],[97,-38],[49,-30],[56,-146],[-9,-34],[13,-69],[43,-71],[34,-41],[2,-1],[40,-104],[-39,-32],[-50,-50],[-204,-179]],[[47117,72317],[-39,-43],[-90,-94],[-2,-8],[-45,-51]],[[46982,72117],[149,146],[80,62],[71,-6],[3,-25],[-47,-88],[-56,-78],[-57,-50],[10,-18],[37,-30],[-45,-69]],[[47058,71917],[70,-56],[5,-22],[-1,-32],[-10,-22],[10,-8],[32,3],[27,18],[24,31],[188,92]],[[47411,71971],[24,75],[51,31],[31,5],[90,-39],[21,3],[-99,123],[-4,16],[77,89]],[[47750,72178],[18,6],[3,-1],[74,22],[50,54],[44,-26],[58,-47],[51,-46],[-8,-83],[0,-83],[-16,-44]],[[48009,71840],[147,-42],[76,-48],[14,0],[-2,16],[-16,38],[-42,37],[-38,58],[-34,70],[1,8],[23,62]],[[48385,71912],[-257,176],[6,46],[54,80],[9,3],[50,-20],[73,-49],[58,-5],[91,6],[185,-101],[100,-2],[-4,16],[244,-57]],[[48867,72071],[-153,24],[-15,4],[-76,31],[-64,32],[-172,66],[-78,75],[-15,35],[2,39],[10,33],[17,29],[34,29],[70,37],[270,95],[33,4],[148,-1],[172,-15],[93,-26],[107,-61],[136,-61],[48,-11],[56,1],[65,14],[61,-5],[195,-90],[52,-47],[31,-56],[23,-55],[15,-53],[-6,-43],[-93,-107],[-56,9]],[[49672,71994],[133,-38],[-41,-48],[-71,-31],[-34,-52],[-4,-3]],[[49478,71585],[114,117],[-15,-30],[-59,-72],[-6,-14],[13,-3],[35,32],[61,93],[32,56],[59,60],[35,29],[102,60],[68,30],[80,26],[99,-4],[84,-11],[67,-19],[41,-16],[12,-13],[27,-59],[-1,-40],[-17,-44],[-32,-51],[-146,-57],[-61,-34],[-67,-20]],[[50003,71601],[-28,-9],[-121,-14],[6,-17],[37,-8],[-6,-10]],[[50026,71517],[19,-60],[-12,-17],[-19,-66],[16,-54],[-3,-44],[-43,-92],[-50,-83],[1,-1],[-25,-26]],[[50102,71323],[-8,5],[2,11],[46,115],[18,22],[71,63],[4,3],[126,10],[70,67],[32,11],[14,3]],[[50477,71633],[40,7],[49,-24],[-3,-27],[-74,-120],[-46,-58],[-73,-78]],[[50370,71333],[-4,-18],[-33,-41],[36,13],[32,-119]],[[50401,71168],[213,222],[1,-1],[-5,-116]],[[50727,71219],[34,-14],[17,-13],[39,-39],[-3,32],[43,-16]],[[50822,71044],[263,442],[17,-10],[29,9],[74,-5],[118,-18],[101,-28],[194,-94]],[[51618,71340],[140,-170],[7,-21],[-15,-40],[-85,-92],[-46,-42],[-46,-18],[-26,5]],[[51333,70952],[-66,-113],[-30,-30],[-72,-54],[-71,-35],[-17,-18],[141,1],[-2,-22]],[[51713,70790],[40,58],[13,1],[67,71],[68,45],[9,5],[27,9],[16,-5],[57,-51],[17,-46],[-1,-104],[-8,-31],[-51,-79],[-123,-118],[-81,-44],[-90,-24],[-11,-4],[-93,-8]],[[51497,70352],[0,-2],[-24,-21],[-42,-26],[44,-29],[-17,-57]],[[51445,70171],[62,96],[1,0],[21,22],[56,88],[42,38],[24,8],[25,-3],[24,-17],[23,-31],[-2,-75],[-62,-258],[-65,-116]],[[51703,70033],[62,192],[68,165],[31,62],[56,58],[144,98]],[[52188,70664],[6,3],[96,33],[64,16],[71,-10],[-50,-61]],[[52645,70648],[47,-2],[33,-11],[49,-36],[84,-41],[187,-76],[10,-7],[-8,-190],[-33,-8],[-39,-22],[-54,-45],[-167,-51],[-91,-10],[-65,-24],[-65,-33],[-20,-6]],[[52513,70086],[-21,-15],[-19,-10],[-172,-118],[1,-27],[-41,-70]],[[52365,69875],[49,40],[13,4],[77,82],[70,30],[195,34]],[[52769,70065],[78,14],[64,-3],[12,-5],[9,-19],[5,-34],[-25,-45],[-30,-21],[-76,-95],[-8,-6]],[[52542,69670],[351,149],[34,-5],[42,27],[19,31],[147,87],[1,1],[2,1],[19,11]],[[53157,69972],[6,6],[9,6],[5,10],[12,13]],[[53159,70019],[-21,9],[-8,5],[-3,15],[0,7],[20,45],[12,17],[36,45],[29,24],[29,3],[38,-14],[133,-91],[160,-177],[4,-7],[20,-34],[56,-133],[11,-61],[-10,-42],[-13,-26],[-1,-1],[-62,-7],[-215,54],[-18,-1],[-28,7]],[[53328,69656],[-31,-11],[-25,-2],[-45,-16],[-30,-20],[-258,-96],[-56,-14],[-137,-49],[-2,-2],[-15,-2]],[[52650,69419],[56,6],[-9,-4],[-11,-36],[84,6],[138,46],[39,4],[110,-2]],[[53057,69439],[14,-4],[183,-86],[71,-16],[30,11],[2,0]],[[53491,69343],[111,-1],[42,-9],[86,-38],[5,-2],[101,-64],[73,-85],[2,-9],[-1,-44]],[[53910,69091],[-1,-27],[-1,-3],[-22,-22],[-35,-12],[-193,18],[-59,14],[-61,-15],[-13,1]],[[53525,69045],[-193,65],[-21,12],[-8,-3],[-12,4]],[[53101,69141],[7,-41],[-20,6],[-65,-17],[-56,-7]],[[52915,69076],[-43,-58],[-86,-46],[23,-19],[275,93],[25,-3],[105,-34]],[[53214,69009],[15,-5],[25,-12],[121,-70]],[[53258,68688],[-7,-11],[-124,42],[-60,6],[-44,-8],[-24,-13],[-239,28],[-59,15],[-52,3],[-5,-5],[-8,1]],[[52647,68693],[159,-31],[61,-27],[123,-9],[155,-30],[36,-18],[28,-22],[1,-38],[-133,8]],[[53273,68409],[36,-9],[2,-1],[2,0],[58,-14]],[[53658,68314],[143,31],[25,2],[53,-14],[14,-12],[-104,-39]],[[53805,68096],[29,-45],[-32,-77],[-8,-32],[11,-3],[81,66],[13,-9],[8,-91],[10,5],[28,76],[-1,2],[62,-5]],[[54077,67977],[26,-44],[-1,-16],[-66,-137],[-55,-43],[1,-10],[40,-17],[24,-2],[24,22],[33,62],[93,56]],[[54253,67881],[-2,-17],[-6,-30],[2,-2],[-6,-59]],[[54343,67821],[36,41],[59,-4],[28,-14],[9,-32],[-19,-87],[-16,-35]],[[54448,67658],[1,1],[2,-17],[67,-91],[6,6],[-12,44],[-14,108],[4,13],[108,128],[68,52],[39,16],[4,0],[24,-10],[42,-42],[-13,-25],[-45,-26],[-33,-47],[-12,-38],[-37,-48]],[[54792,67639],[22,37],[32,19],[53,-4]],[[54899,67691],[35,-3],[62,-72],[114,-116],[12,6],[16,-15]],[[55138,67491],[25,-109],[-16,-9],[11,-49],[-145,-95]],[[55013,67229],[-5,-3],[-47,-7],[-53,13],[-57,-4],[53,-35],[44,-7],[2,-51]],[[54950,67131],[64,6],[1,-3],[79,1],[13,1],[1,-3]],[[55523,67181],[21,6],[97,-75],[-58,-60],[-9,-31],[-22,-10]],[[55392,66762],[0,-1],[-66,-60],[31,-2],[49,26],[2,-5]],[[55883,66793],[12,3],[60,-13],[35,41],[128,38]],[[56149,66833],[171,-128],[47,-48],[72,-85],[29,-52],[-3,-33],[-69,-42],[-36,-8],[-93,79],[-86,41],[-52,-5],[-52,-30],[16,-18],[208,-122],[36,-91],[3,-39],[-139,-60],[-45,-4],[-96,29],[-56,53],[-47,20],[-64,6],[-20,-10],[32,-42],[-25,-59]],[[56088,65920],[-102,-31],[-73,8],[-58,17],[-16,-18],[60,-42],[23,-29],[18,-39],[11,-38],[3,-35],[-49,-28],[-11,-15],[-14,0]],[[55822,65613],[13,-47],[-13,-46],[-53,-8],[-22,16],[-52,-18],[-32,14]],[[55663,65524],[-118,52],[-103,157],[-3,-18],[4,-11],[-15,24]],[[55428,65728],[-28,-158],[-50,-15],[0,-14],[56,-20],[34,-124]],[[55440,65228],[47,-103],[0,-9],[-28,-48]],[[55443,65020],[-19,-125],[-53,-85],[-62,61],[-25,62],[-20,32],[-30,26],[-39,12],[-29,0],[-59,99]],[[55048,65118],[-20,5],[9,82],[19,76],[-8,0],[-26,-36],[-61,-111],[-11,-37],[-68,-61],[-14,14],[-48,65],[-8,15],[-15,65]],[[54710,65429],[-111,67],[-25,61],[-14,25],[-12,8],[-31,54],[12,58],[48,69],[44,49],[46,31],[34,16]],[[54701,65867],[3,5],[74,24],[39,62],[47,114],[52,79],[56,45],[-28,9],[-71,-39],[-51,-56],[-60,-93],[-46,-50],[-55,-32],[-98,-47],[-52,-14],[-61,-7],[-134,10],[-31,23],[16,66],[95,118],[-15,8],[-34,-41],[-46,-29],[-40,-15],[-59,5],[-68,74],[-33,22],[-8,3],[-30,39]],[[54063,66150],[-84,52],[-85,137],[-23,48],[-13,47],[-36,40],[-58,32],[-14,-5],[21,-41],[0,-10],[-165,12]],[[53449,66447],[158,-36],[-1,-12],[60,-87],[0,-52],[-1,2]],[[53568,66306],[80,-117],[-39,-6],[-27,14],[-91,82],[-8,6],[-57,63]],[[53357,66376],[-10,-9],[-3,2],[-2,-5],[-1,-1]],[[53327,66351],[36,-72],[13,-33],[46,-98],[55,-60],[8,-11]],[[53485,66077],[8,-6],[4,-4],[119,-97],[54,-56],[-43,-79],[-37,-25],[-1,-1],[-180,35]],[[53409,65844],[-1,-14],[-45,15],[-62,48],[-90,116],[-148,119],[-33,0],[-105,-49],[17,-7],[67,-4],[50,-15],[119,-95],[9,-39],[-21,-32],[-3,-1]],[[53308,65672],[8,3],[16,-2],[9,-14],[1,-17],[-39,-139],[-4,-41],[11,-14],[3,-24]],[[53315,65404],[64,76],[37,26],[37,15],[33,3],[38,-17],[43,-38],[21,-32],[-13,-6]],[[53613,65336],[52,2],[36,-17],[-8,-20],[-91,-64],[-5,-10],[18,-4],[11,-8],[41,-144]],[[53745,64976],[21,4],[5,-14],[28,-3],[12,12],[12,-2],[14,-17],[1,-1],[14,-54],[25,-121],[4,-25]],[[53881,64755],[0,1],[3,-14],[17,-45],[10,-1],[3,94],[3,3]],[[54062,64792],[9,-3],[38,-36],[3,-67],[-23,-26],[4,-9],[-11,-4]],[[54082,64647],[14,-3],[3,-7],[32,-33],[29,13],[6,14],[36,-7]],[[54260,64757],[21,3],[55,-22],[9,-8]],[[54345,64730],[10,-9],[55,-68],[11,-29],[33,-27],[-7,-41]],[[54548,64376],[116,-12],[9,-45],[-27,-55],[-83,-69],[-16,3],[-80,3],[-41,-7],[6,-17],[98,-55],[88,-130]],[[54618,63992],[19,-28],[0,-13],[-18,-30],[9,-10],[75,-19],[7,2],[35,-17]],[[54838,63636],[99,-69],[-20,-3],[5,-107],[11,-49],[-28,-121]],[[54822,63257],[-33,94],[-26,82],[-8,16],[-11,32]],[[54568,63680],[91,-163],[7,-27],[16,-95],[-13,-52]],[[54653,63282],[45,-106],[-17,-9],[-5,-19],[9,-29],[74,-108],[35,-66],[25,-68],[24,-46],[21,-24],[-5,-19],[-32,-16],[-56,-7],[-5,2],[-67,51]],[[54653,62716],[4,-5],[29,-124],[-1,-55],[-28,-20],[-34,23],[-41,66],[-35,41],[-15,78]],[[54465,62752],[-63,29],[-46,36],[-19,-1],[-2,-4],[-56,27],[-8,15],[-28,32],[-117,106],[-12,1],[11,-32],[9,-54],[-130,61],[-7,14],[-50,122],[-26,45],[-2,-29],[14,-116],[-2,-27],[-49,6],[-5,13],[-12,51],[-28,39],[-43,26],[-25,28],[-12,50],[-8,11],[-42,-6],[-354,444]],[[53338,63642],[10,-38],[-16,14],[34,-99],[38,-146],[4,-29],[-58,20]],[[53350,63364],[-169,142],[-16,15],[-20,15],[-101,85]],[[52923,63442],[32,-33],[7,-11],[55,-55],[31,-38],[57,-84]],[[53105,63221],[47,-68],[30,-54],[32,-42],[4,-2],[12,-18]],[[53230,63037],[34,-7],[58,-31],[47,-14],[50,-58],[-6,-8],[-7,-24],[69,-33],[18,-21]],[[53536,62820],[48,-23],[45,-54],[27,-14],[77,-99],[16,-50]],[[53773,62545],[74,-6],[46,-21],[33,-30],[54,-92],[35,-47],[48,-111],[36,-49],[89,-56],[1,-1],[20,-22]],[[54209,62110],[-17,-105],[-23,-16],[8,-48],[29,-87],[-1,-53],[-31,-21],[-63,-25],[-8,1],[-78,25],[-25,15],[-96,90]],[[53507,62059],[-433,70],[-48,13],[-46,26],[-43,37],[-109,55],[-74,46]],[[52754,62306],[-9,5],[-114,147],[-71,145],[0,44]],[[52364,62676],[-70,-33],[-71,5],[-76,63]],[[52134,62717],[-61,27],[-15,11],[-52,19],[-178,130]],[[51874,63031],[-26,-33],[-115,-70],[-44,23],[-12,10],[-8,33]],[[51669,62994],[-46,11],[-7,6],[-55,61],[-54,79],[-4,11]],[[51506,63312],[8,3],[9,0],[39,13],[20,18],[147,68]],[[51409,63632],[-3,-28],[-72,-6],[-39,41]],[[51295,63639],[-11,95],[12,21],[7,18],[-8,4],[-15,-1],[-7,62]],[[51208,63737],[0,-5],[-44,-30],[-9,2],[-26,56]],[[51070,63887],[-4,0],[-10,16],[-25,11],[-81,81],[1,2]],[[50872,64130],[-34,11],[-18,24],[-46,51],[-42,38],[1,9]],[[50778,64520],[-39,-60],[-31,-3],[-85,58]],[[50581,64490],[-63,-37],[-28,15],[-20,-8],[-19,-112],[-15,-28],[-21,-15],[-19,2],[-6,7],[41,146]],[[50362,64616],[-85,-103],[-48,3],[-21,11],[-25,25],[-21,47],[-17,69],[-6,11],[21,35]],[[49990,64663],[0,-2],[0,-14],[3,-3],[1,-6]],[[50039,64583],[10,-5],[31,-49],[42,-90],[-26,-60],[-94,-31],[-37,-4],[-159,33]],[[49791,64380],[-31,16],[-41,27],[-8,-1],[-146,77]],[[49485,64273],[-13,-3],[-12,1],[-24,-7],[-137,-26]],[[49312,64224],[14,-15],[-10,-5],[-128,-14]],[[48826,64188],[-33,6],[-44,32],[-48,20],[-63,-3],[-15,7],[-31,32],[-107,133],[-44,85],[-11,47],[-2,50],[6,37],[21,56],[24,131],[19,43],[9,14],[160,113],[120,52],[41,35],[-1,23],[-47,108],[1,28],[15,16],[33,63],[15,18],[10,2],[76,-14],[25,-10],[64,-13],[53,-3],[17,-3]],[[49089,65293],[232,-74],[123,-53],[113,-58],[86,-86],[61,-85],[9,-42],[-29,-66],[-14,-20],[1,-22],[16,-26],[49,-38],[12,15],[-4,44],[10,38],[25,31],[2,39],[-18,49],[-24,42],[-28,35],[-127,122],[-5,15],[129,3]],[[49708,65156],[37,12],[56,-12],[71,9],[27,47],[8,9],[136,44],[50,-13],[29,-49]],[[50204,65239],[37,39],[0,0],[1,2],[69,74]],[[50311,65354],[42,27],[8,3],[71,14],[53,1],[72,-25],[25,-33]],[[50557,65651],[-24,11],[-23,23],[-99,72],[-115,135],[-60,84],[-15,42],[8,28],[18,39],[3,4],[42,30],[97,60]],[[50599,66351],[269,249],[19,6],[23,38],[4,56],[36,80]],[[51277,67128],[-6,17],[-4,17],[-4,3],[-136,345]],[[50914,68045],[-168,125],[-1,14],[22,48],[-10,11],[-130,-70],[-31,-3],[-50,30],[-4,5],[-8,113]],[[50568,68531],[-64,38],[-6,7],[-10,2],[-14,8]],[[50346,68578],[64,-68],[33,-56],[-11,-30],[-92,-14],[-42,6],[-38,15],[-34,24],[-48,57],[-31,63]],[[50129,68727],[-56,58],[0,3],[-9,6],[-12,12]],[[50052,68806],[-7,0],[-6,4],[-52,5],[-14,20],[18,22],[70,38],[25,25],[-42,18],[-24,2],[-47,-41],[-71,-83],[-128,8],[-40,12],[-31,-9],[-13,-17],[-60,-59],[-79,-36],[-187,-112],[-80,-36],[-87,6],[-16,23],[1,38],[6,32],[11,25],[3,30],[-6,128],[14,35],[30,21],[54,22],[124,-24],[13,-3]],[[49431,68900],[3,0],[64,5],[21,14],[5,1]],[[49606,69174],[-27,16],[-2,2],[-13,7],[-77,47]],[[49388,69298],[-67,-1],[-40,18],[-27,28],[-26,47],[-2,32],[4,42],[25,29],[111,33],[-2,9],[-90,25],[-43,-3],[-36,-28],[-46,-65],[-27,-18],[-82,38],[-50,6],[-33,18],[-19,18],[12,18],[41,18],[33,26],[9,-11]],[[48805,69723],[-28,-12],[-12,-2],[-47,9],[-20,55],[-14,65],[-5,76],[-2,10],[17,124]],[[48440,70124],[12,-32],[-3,-1],[-35,0],[-24,10],[-99,86],[-12,9],[30,54]],[[48309,70250],[-143,54],[-10,13],[-27,18],[-33,45],[-28,53],[66,28]],[[48044,70578],[-25,-104],[-2,1],[-45,-28],[-44,-41],[-23,-27],[2,11]],[[47928,70210],[56,4],[56,-17],[40,-31],[34,-52],[25,-63],[16,-75],[-1,-56],[-19,-37],[-34,-33],[-97,-52],[-100,-31],[-101,-7],[-48,7],[-111,44],[-71,81]],[[46794,69981],[2,-11],[-9,-3],[12,-10],[2,-9]],[[46801,69948],[23,-11],[21,-17],[51,-23],[44,0],[63,-42],[83,-82],[47,-50],[39,-59],[1,-20],[-35,-36],[-174,134]],[[46756,69813],[-35,-40],[-80,-32],[-3,-1],[-23,24]],[[46615,69764],[-36,-43],[-24,-7],[-60,-4],[-15,0],[-56,18],[-100,43],[-69,33],[-127,88]],[[45135,69970],[-121,9],[-26,5],[-5,-3],[-100,7]],[[44910,69959],[12,-6],[-99,-44],[-182,62],[-35,18],[-12,8],[-41,38],[-7,10],[-58,115],[-8,62],[17,56],[16,38],[16,21],[-108,-64],[-38,-11],[-50,-2],[-31,5],[-30,78]],[[44187,70312],[-15,-34],[-11,-7],[4,-12],[-32,-75]],[[44133,70184],[-11,-2],[-119,15],[-54,-6],[-25,-9],[-57,-52],[-8,-4],[-49,1],[-102,90],[9,1]],[[43717,70218],[-34,21],[-1,1],[-107,74],[-15,4],[-237,149]],[[43257,70545],[-22,26],[-43,60],[-23,51],[-42,140],[1,68]],[[43128,70890],[42,40],[109,-15],[157,1],[9,-2],[162,-54]],[[43778,70811],[45,5],[18,-1],[147,12],[87,16],[14,2]],[[44089,70845],[5,2],[62,11],[20,24],[-8,3],[-12,16]],[[43389,71148],[-147,15],[-150,59],[-131,71],[-53,39],[-19,30],[-21,93],[-12,93],[18,392],[101,86],[3,17],[-25,5],[-53,28],[-17,41],[-7,64],[-1,54],[6,45],[21,56],[55,100],[43,65],[46,2]],[[43123,72635],[2,46],[10,28],[8,101],[11,74],[10,45],[63,106],[9,14],[66,70],[103,60],[9,22],[1,31],[6,22],[2,4],[71,58],[190,144],[267,138]],[[43951,73598],[404,102],[143,17],[62,1]],[[44560,73718],[50,0],[104,-2],[93,-7],[328,-35],[9,-2],[46,-28],[12,-15],[17,-42],[-13,-27],[-109,-91],[-138,-75],[-89,-66],[-58,-57],[-46,-30]],[[44432,72763],[0,-5],[-13,-20],[-18,-108],[5,-39],[25,-52],[-1,-62]],[[44430,72477],[130,-261],[-1,-3],[-28,-44]],[[44653,71703],[17,-17],[31,-46],[136,-129],[101,-86],[100,-63],[119,-94],[26,-45],[-55,-50],[-57,-34],[-47,-9]],[[45024,71130],[-154,-59],[-36,-7],[-90,-31],[-46,-28],[-162,-62]],[[44429,70862],[27,-1],[1,-2],[4,1],[28,-1]],[[49328,72885],[2,-2],[-2,-18],[26,-39],[57,-47],[22,-31],[-45,-38],[-103,-22],[-17,1],[-217,30]],[[48409,72762],[-50,-16],[-99,-21],[-276,-86],[-88,-14],[-83,-2],[-6,2],[-149,69],[-55,37],[-19,29],[-36,84],[-30,101],[-10,57],[2,35]],[[47510,73037],[-14,15],[-11,39],[-37,15],[-3,3]],[[47445,73109],[-6,1],[-6,2],[-154,25],[-52,35],[-24,28],[-22,47],[0,48],[12,43],[10,10],[20,1],[-44,52],[-2,6],[18,107]],[[47251,73620],[72,12],[23,-1],[76,-19],[93,-39],[71,-4],[250,-65]],[[47836,73504],[509,25],[43,3],[106,-19],[324,-110],[84,-37],[41,-49],[37,-78],[17,-17],[59,-23],[147,-169],[1,-4],[5,-4],[119,-137]],[[34986,73268],[-23,5],[-9,7],[-107,44],[-82,22],[-10,24],[15,32]],[[34838,73462],[121,108],[53,11],[350,18]],[[35410,73615],[51,17],[36,0],[47,-6]],[[35544,73626],[24,-3],[57,-13],[133,-97],[55,-11],[34,-22],[29,-36],[15,-37],[1,-75],[-14,-112],[-19,-43],[-80,-143],[-85,-79],[-16,-51],[-34,-40],[-60,-50],[-13,-8],[-42,3]],[[35273,73004],[-123,121],[-32,45],[-67,45],[-65,53]],[[39415,69468],[84,-48],[46,-37],[86,-39],[187,-126],[56,-86],[13,-30],[-17,-176]],[[39902,68985],[7,66],[23,-52],[52,-101],[46,-70],[11,-13],[27,-64]],[[40131,68713],[18,4],[9,-7],[22,14],[25,5]],[[40199,68669],[-4,-48],[-4,0],[-3,17]],[[40073,68615],[-132,-140],[-107,-92],[-55,-32],[-49,-9],[-40,-5],[-41,10],[-168,67],[-86,-8],[-148,35]],[[38542,68849],[-34,-56],[-1,-1],[-18,-19],[10,-22],[-6,-10],[-21,-1]],[[38272,68898],[35,96],[10,11],[176,19],[83,17],[21,13],[32,7]],[[38770,69170],[2,15],[21,23],[2,20],[-7,20],[-3,5],[2,15]],[[38764,69324],[-10,26],[0,1],[42,2],[-22,20],[-19,28],[-6,17],[1,28],[33,6],[41,-14],[80,-80],[31,-16],[55,-12],[-58,55],[-60,117],[-7,40],[1,23],[13,51],[21,40],[14,14],[24,15],[16,6]],[[38954,69691],[4,6],[13,9],[91,25],[47,3],[19,-8],[43,-26],[27,-25],[92,-64],[13,-26],[0,-5],[-10,-11],[-27,-13],[-4,-16],[14,-24],[1,-1],[25,-53]],[[47403,69491],[-12,3],[-8,12],[-24,17],[-124,21],[-5,2]],[[47275,69588],[30,29],[46,-7],[7,8],[6,37],[7,15],[61,-3],[39,8],[21,-20],[21,-45],[28,8],[7,0],[38,-6],[16,5],[10,0]],[[47670,69631],[37,37],[1,0],[58,15],[77,-22],[20,-58],[12,-18],[-17,-25],[-78,-57],[-151,-21],[-79,25],[35,-74],[-182,58]],[[40109,69264],[-1,1],[10,10],[2,37],[-8,62],[-10,37],[-29,22],[-20,1],[-5,-20],[9,-41],[-6,-53],[-23,-64],[-7,-13],[-39,10]],[[39998,69373],[13,93],[6,9],[8,7],[32,17],[44,-2],[49,-22],[42,-28],[63,-67],[0,-33],[-8,-54],[-18,-41],[-28,-28],[-27,-10],[-64,-3]],[[48829,69175],[5,83],[4,19],[10,12],[21,9],[42,15],[37,-2],[55,-26],[118,-8],[16,-13],[-2,-7]],[[49135,69257],[-26,-97],[-19,-20],[-28,-41],[-20,-51],[-40,-30],[-60,-12],[-11,2],[-46,14],[-13,11],[-26,59]],[[47894,68740],[-27,15],[-2,4],[-1,48]],[[47864,68807],[9,17],[7,6],[23,37],[30,56],[46,38],[46,16],[33,6]],[[48058,68983],[7,8],[16,6],[15,12],[22,49],[58,72],[33,6],[6,13],[-12,15],[2,3]],[[48204,69177],[-4,27],[15,21],[25,19],[1,0],[65,19],[8,0],[25,-7]],[[48372,69250],[13,-3],[9,-12],[19,-47],[1,-5],[-2,-9],[-24,-38],[-73,-63],[-44,-53],[-9,-17],[-5,-23],[-16,-27],[-31,-39],[-105,-129],[-82,-28],[-64,-32],[-16,-6],[-8,-2],[-41,23]],[[50008,68224],[-15,-2],[-28,2],[-48,55],[-88,55],[-48,43],[-20,24],[-2,22],[5,45],[11,43],[40,51],[41,9],[60,-12],[43,-37],[47,-102],[26,-42],[2,-60],[-2,-2],[1,-17],[2,-2],[1,-31],[-11,-25],[-17,-17]],[[49778,67259],[-31,-21],[-167,-77],[-128,-22],[-135,-4],[-172,-22],[-78,5],[-41,10],[-29,16],[-33,53],[-39,88],[-32,100],[-12,54],[-20,167]],[[48902,67737],[102,193],[10,16],[94,112]],[[49182,68146],[192,40],[19,-2],[41,5],[50,19],[55,4],[6,-1],[269,-78],[64,-23],[24,-32],[12,-29],[7,-32],[1,-66],[-5,-26],[-25,-64],[-1,-20],[19,-213],[-2,-117],[-17,-97],[-36,-78],[-53,-58],[-15,-12],[-9,-7]],[[43315,56747],[2,0],[29,-18],[49,-45],[48,-62],[111,-117],[84,-72],[93,-69],[94,-125],[58,-111],[34,-75]],[[44921,55387],[170,-148],[2,-42],[-71,-202],[-2,-16],[72,145],[41,41],[32,20],[11,-1],[121,-42]],[[45676,55185],[530,-121],[2,-4],[32,-5],[3,1],[126,-29],[65,-60],[40,-69],[36,-131],[4,-66],[-69,-317],[-23,-127],[-3,-111],[15,-64],[34,-59],[0,-17]],[[46508,53930],[39,-166],[7,-44],[-4,-78],[-20,-129],[5,-98],[1,-9],[-4,-60]],[[46532,53346],[-18,-239],[-17,-44],[-7,-45],[-3,-12]],[[46487,53006],[0,-10],[-5,-27],[0,-35],[3,-10],[-2,-70]],[[46483,52854],[150,-183],[55,-116],[56,-87],[17,-34],[61,-170],[-16,-35],[-24,-30],[-54,-41],[-25,-29],[6,-7],[80,22],[46,-2],[40,-33],[32,-62],[54,-53],[75,-44],[74,-71],[4,-5],[123,-170],[23,-40],[33,-91],[30,-96],[2,-11]],[[47325,51466],[35,-138],[2,-33],[-25,-44],[-84,-80],[-85,-139],[26,7],[56,59],[95,116],[53,22],[27,-7],[4,-6]],[[47624,51081],[28,-5],[86,-161],[63,-89]],[[47801,50826],[0,-176],[0,-242],[1,-241],[0,-242],[0,-241],[0,-242],[1,-241],[0,-241],[0,-242],[0,-241],[1,-242],[0,-241],[0,-241],[0,-283],[0,-6],[-22,-68],[6,-75],[32,-88],[18,-91],[3,-94],[34,-112],[95,-194],[71,-220],[53,-120],[59,-93],[152,-87],[370,-120],[147,-122],[1,-1],[38,-86],[4,-15],[8,-32],[16,-26],[63,-71],[33,-25],[26,-9],[17,2],[7,19],[6,56],[11,15],[9,-3],[23,-8],[33,-82],[41,-155],[54,-100],[67,-46],[68,-12],[70,21],[58,-21],[46,-64],[132,31],[219,124],[144,67],[70,9],[66,-19],[86,-64],[-8,-59],[-19,-115],[-11,-76],[30,-48],[35,-55]],[[50265,45132],[-9,-8],[-159,-194],[-7,-8]],[[50090,44922],[-26,-5],[-45,5],[-34,-18],[-32,-16],[-87,-70],[-23,-28],[-71,-85],[-12,-14],[-17,-26],[-169,-249],[-2,-6]],[[49572,44410],[-4,4]],[[47947,43163],[49,28],[23,13]],[[48019,43204],[1,-5],[-2,-100],[-1,-72],[0,0]],[[46314,42480],[48,67],[27,114],[0,1],[34,277],[0,0]],[[46423,42939],[19,10]],[[43019,47916],[-3,-2]],[[43016,47914],[-9,2],[-85,12],[-39,-13],[-21,-7],[-44,20],[-15,42],[-7,20],[-24,40],[-46,-8],[-63,-11],[-67,7],[-69,7],[-26,-3],[-40,-5],[-25,26],[-20,70],[-36,8],[-3,0],[-58,-15],[-84,-89],[-54,-31],[-26,-15],[-59,0],[-3,0],[-29,22],[-32,24],[-101,93],[-12,18],[-58,86],[-79,36],[-60,-9],[-13,-29],[-11,-23],[-31,0],[-22,87],[0,2],[-19,69],[-40,30],[-12,11],[-59,55],[-49,36],[-76,44],[-26,8],[-50,6],[-49,3],[-43,-9],[-14,-3],[-4,-7],[-36,-48],[-48,-25],[-69,-11],[-39,20],[-6,3],[-23,59],[-97,51],[-171,45],[-98,39],[-26,32],[-7,16],[-7,18],[-4,54],[0,0],[-43,140],[-18,116],[-9,139],[3,46],[-10,14],[-30,30],[-91,18],[-12,3]],[[47801,50873],[-55,83],[-38,68],[-8,33],[-3,36],[5,41],[17,31]],[[47719,51165],[12,120],[11,35],[28,39],[18,41],[9,44],[3,7]],[[47800,51451],[1,-319],[0,-259]],[[55316,46389],[200,-3],[8,-11],[74,-37],[79,5],[120,23],[14,9],[31,4],[264,-5],[10,-13],[5,-13],[-50,-57]],[[56071,46291],[-24,-28],[-2,-2],[-23,-8]],[[55960,46230],[-58,-98],[-17,-13],[-12,-37],[2,-23],[-1,-1]],[[55877,46033],[0,-1],[2,-18],[-2,-69],[20,-6],[11,-22],[-1,-2],[-24,-22],[-101,-10],[-29,6],[-35,28],[-12,67],[-9,-2],[-2,27]],[[55707,46064],[-8,5],[-17,42],[-29,-5],[-20,34],[2,45],[27,23],[8,24],[-37,-21],[-29,-43],[-37,-16],[-36,-36],[56,-12],[-29,-28],[-6,-2],[-133,39],[-30,12],[-28,17],[-17,20],[-32,43],[-33,78],[18,3],[6,14],[-4,13],[-48,11],[-49,-3],[-69,209]],[[55133,46530],[-36,0],[-25,16],[-72,10],[-8,50],[24,78],[35,66],[27,66],[3,5],[90,122]],[[55186,46912],[0,-9],[0,-7],[0,-1],[0,-27]],[[55186,46868],[-1,-62],[-34,-93],[-14,-28]],[[55237,46454],[3,-7],[-11,-23],[34,-15],[11,-25],[13,-14],[20,23],[9,-4]],[[52780,47208],[-5,44],[7,88],[-46,18],[-37,15],[-9,3],[-28,-60],[-27,-52],[-54,-111],[-75,-157],[-42,-87],[-73,-151],[-65,-134],[-5,-53],[-9,-85],[-14,-130],[-54,-99],[-22,-63],[-10,-27],[-15,-101],[-12,-93],[-1,-77],[5,-23],[4,-18],[-4,-33],[-6,-13],[-12,-25],[-35,-66],[-6,-63],[-22,-32],[-62,-62],[-50,-93],[-3,-52],[8,-44],[0,-3],[1,-24],[-10,-18],[-21,1],[-21,-6],[-19,-39],[1,-55],[-14,-40],[-15,-8],[-14,28],[-16,42],[-18,4],[-1,1],[-6,-7],[-23,-21],[-11,-16]],[[51814,45211],[-24,-31],[-12,-1],[-20,-1],[-60,30],[-43,-90],[-42,-171],[-5,-22]],[[51608,44925],[-198,0],[-198,0],[-54,-1],[-144,0],[-198,0],[-81,-1]],[[50735,44923],[-117,0],[-198,0],[-169,-1],[-29,0],[-111,0],[-21,0]],[[50090,44922],[14,8],[54,29],[141,147],[104,53],[136,154],[98,29],[19,34],[16,128],[9,45],[46,125],[55,106],[45,146],[80,94],[122,78],[113,170],[62,52],[60,37],[25,70],[37,39],[100,81],[109,22],[110,67],[82,34],[-5,-14]],[[52284,47270],[11,20],[2,1],[0,2],[150,270]],[[52447,47563],[56,125],[26,48],[17,47],[50,112],[64,64],[152,228],[23,26],[76,70],[15,5],[93,81],[27,41],[54,50]],[[55083,48728],[1,-10],[-76,32],[-68,2],[47,-37],[70,-99],[-2,-5]],[[55064,48586],[3,-7],[-4,-117],[-37,-105],[-29,-32],[-114,-53],[-35,-50],[-27,-82],[-28,-31],[-65,-37],[-37,-53],[-106,-85],[-48,-10],[-55,20],[-109,66],[-98,85]],[[54275,48095],[-1,0],[-6,6],[-13,-14],[-196,-70],[-40,15],[-117,-94],[-7,-4]],[[58467,51384],[-66,-10],[-29,10],[-77,-9],[-111,-32],[-14,77]],[[58162,51402],[-36,-84],[-18,-12],[-80,-78],[-32,-11],[-86,-15],[-82,10],[-32,-10],[-40,-38],[-10,-20],[-1,-8],[-20,-17]],[[57573,50909],[-29,-111],[-7,-12],[-53,-99],[-101,-104],[-9,-15],[-6,-5]],[[57368,50563],[-1,-6],[-95,-157],[-97,-74],[-17,-52],[-7,-15]],[[57151,50259],[1,0],[-11,-34],[-92,-62],[-37,-3],[-20,24]],[[56992,50184],[-122,-39],[-2,0],[-88,-10],[-77,23],[-63,-39],[-132,-16],[-34,7],[-31,-14],[-106,-12]],[[56200,50124],[-8,1],[-18,16],[-117,6],[-93,39],[-86,7],[-83,17],[-54,0],[-57,-10],[-30,0],[-16,3]],[[55638,50203],[-3,-2],[-40,1],[-31,-33],[-216,19],[-37,25],[-57,10],[-77,-11],[-44,-20],[-86,-1],[-105,26],[-140,-27],[-67,-1],[-113,17],[-41,22],[-201,-52],[-43,-5],[-83,31],[-42,-48],[-167,-22]],[[54045,50132],[-3,-3],[-5,4],[-40,-13],[-26,-50],[-34,-6],[-57,-90],[-95,-71],[-38,-108],[-28,-41]],[[53683,49677],[-10,-89],[-27,-77],[-11,-122],[-5,-10]],[[53630,49379],[-58,-123],[-38,-11],[-38,-3],[-167,-52],[-99,-16]],[[53230,49174],[-35,-40],[-48,-27],[10,-16],[-70,-80],[-3,-1],[-61,-43],[-40,-49],[-12,-39],[-86,-99],[-46,-40],[-17,-31],[-24,-28]],[[52798,48681],[-56,-115],[-46,-81],[-18,-49],[-51,-104]],[[52627,48332],[-81,-166],[-2,-3],[-59,-52],[-42,-8],[-43,16],[-71,64],[-52,7],[-130,88],[-302,89],[46,-33],[40,-55],[80,-14],[81,1],[169,-110],[83,-38],[50,-34],[43,-74],[-31,-145],[-31,-120],[-43,-92],[-145,-237],[-64,-72],[-30,-24]],[[51957,47070],[-68,-126],[-22,-23],[-68,-82],[-72,-128],[-170,-98],[-63,-25],[-58,14],[-71,-80],[-84,-48],[-25,-74],[-201,-197],[-77,-25],[-66,-53],[-20,-89],[-59,-54],[-16,-41],[-49,-125],[-92,-161],[-112,-27],[-41,-56],[-47,-91],[-67,-62],[-132,29],[32,-38],[118,-60],[12,-88],[-59,-21],[-115,-109]],[[47801,50826],[30,-43],[52,-113],[-16,72],[-34,82],[-32,49]],[[47800,51451],[12,25],[75,58],[20,-5],[16,-71],[18,-15],[35,-11],[29,-24],[24,-38],[7,-16],[35,-241]],[[48111,51073],[35,286],[30,45],[-2,29],[-19,39],[-59,103],[-31,112],[18,17],[17,47],[4,31],[138,218]],[[48269,52101],[1,19],[20,37],[21,9],[-31,30],[-6,18],[8,164]],[[48200,52539],[-36,85],[-4,38],[0,0]],[[48176,52743],[-1,1],[6,16],[-9,43],[-41,58],[-20,52]],[[48089,53009],[-4,21],[-9,62],[3,138]],[[48017,53661],[0,10],[12,49],[18,18],[27,-5],[1,9],[-42,41],[-16,40],[0,35],[33,46],[-6,21],[-27,28],[0,41]],[[47777,54527],[-35,8],[-13,12],[-15,6],[58,61]],[[49122,55910],[4,10],[40,85],[22,92],[11,63],[17,55]],[[49226,56328],[-3,64],[0,5],[5,207],[-3,184],[-22,289],[-14,91],[-25,108],[-63,218],[-11,59],[-38,100],[-127,260],[-142,158],[-28,37]],[[48755,58108],[-1,0],[-17,25],[-63,52],[-95,59],[-61,49],[-69,77],[-3,4]],[[48302,58519],[2,-23],[0,0],[-21,46],[-4,33],[6,87],[9,60],[12,44],[12,27],[24,2]],[[48467,59016],[-4,28],[29,48],[38,45],[69,60],[7,13],[69,62]],[[48622,59313],[-15,13],[-9,9],[0,2],[23,77],[22,36],[8,22],[-3,32],[19,64],[52,4],[92,-111],[23,9],[-30,31],[-35,75],[5,31],[68,81],[1,27],[1,1]],[[48844,59716],[0,3],[0,5],[-8,20],[-12,44],[-2,28],[40,97],[-11,20],[-72,12],[-6,20]],[[48773,59965],[-13,47],[20,12],[4,12],[-85,199],[-14,100],[30,61],[45,36],[-6,21],[-58,3],[-22,7],[17,100]],[[48704,60640],[-26,18],[7,21],[34,19],[-6,16],[-125,-38],[-5,0],[-58,31],[-33,-4],[25,135],[38,53],[50,82],[31,73],[16,49],[2,24],[-5,79],[30,79]],[[48733,61368],[-14,32],[36,44],[-88,70],[-54,68],[-37,34],[-27,33],[-35,70],[-27,91],[-28,184],[-5,101],[7,74],[11,35],[20,38],[22,20],[43,16]],[[48715,62414],[37,18],[61,23],[63,-12],[26,-7],[100,-16],[342,-132],[190,-74],[76,-96],[-44,-38],[9,-14],[48,35],[7,-9]],[[49630,62092],[71,68],[18,13],[30,16],[65,0],[83,-32],[43,-6],[55,-34],[131,-115],[9,10],[-15,24],[206,170],[3,2],[76,48],[80,65],[54,34],[28,4],[36,-19],[78,-69],[196,-191]],[[50877,62080],[61,-46],[21,-22],[43,4],[75,-86],[1,-16],[-16,-72],[-51,-114],[21,-2],[32,24],[41,44],[33,16],[69,-35],[34,-30],[57,-65],[1,-2],[-18,-21]],[[51312,61594],[39,-50],[-12,-15],[-78,-39],[15,-15],[91,25],[28,24],[20,40],[27,12],[108,-71],[16,-25],[-7,-19],[-17,-22],[0,0],[-63,-18]],[[51479,61421],[-10,-45],[-15,-22],[-6,-26],[16,-11],[21,-76]],[[51608,61076],[19,-5],[26,-24],[35,-10],[61,-1],[109,-31],[128,-61],[87,-13],[20,6],[95,-27]],[[52188,60910],[70,-20],[3,-20],[-1,-59],[25,-42],[1,0],[61,-55]],[[52423,60758],[30,43],[16,3],[14,34],[11,53],[2,7]],[[52496,60898],[4,15],[9,25],[32,10],[25,-19],[13,-25],[17,-61]],[[52596,60843],[-2,-146],[-22,-28],[-40,-37],[-14,-24],[-44,-35]],[[52447,60428],[1,-57],[-4,-41],[2,-52],[7,-56],[16,-46],[16,-30],[-54,-181]],[[52429,59938],[2,-15],[-4,-3],[-79,-12],[-260,-2],[-70,11],[17,-42],[73,-14],[66,1],[248,-26],[18,-14],[0,-4]],[[52440,59818],[70,-128],[5,-25],[-61,-290]],[[52454,59375],[18,-45],[-5,-46],[14,-50],[34,-1],[103,-107],[-27,-54],[-4,-27],[22,-66],[-3,-18],[-14,-20],[-1,-5],[-16,-2]],[[52394,58852],[9,-84],[-10,-19],[-48,-36],[-104,-32]],[[52241,58681],[14,-10],[1,-18],[39,-10],[60,-42]],[[52504,58626],[27,29],[93,88],[53,34],[46,12],[52,2],[58,-9],[110,14],[8,0],[27,-10],[36,-27],[41,-43],[29,-40],[16,-40],[26,-147],[35,-39],[8,-29],[3,-43],[-2,-85],[-38,-172],[-20,-64],[-53,-87],[-62,-39],[-109,-37],[-56,-31],[-43,-43],[-3,-23],[124,73],[136,36],[39,40],[29,39],[30,87],[54,224],[30,71],[43,12],[19,-24],[24,-72],[-1,-93]],[[53313,58190],[-1,-50],[-61,-107],[26,13],[73,120],[15,38],[9,55],[3,4],[26,24],[3,-8],[23,-141],[1,-104],[3,-33],[-8,-98],[9,-18],[22,85],[7,64],[3,13],[62,101],[47,46],[105,70],[13,12],[153,92]],[[53846,58368],[5,4],[38,12],[23,25],[10,6]],[[53922,58415],[4,8],[18,19],[17,64],[1,1]],[[53962,58507],[55,130],[43,47],[31,3],[29,-22],[33,-45],[37,-68],[22,-53],[7,-39],[4,-101],[-37,-101]],[[54291,58510],[-54,81],[-14,37],[-13,51],[25,46],[13,7],[54,7],[9,14],[-39,35],[-1,3],[45,80],[14,2],[44,-10],[-9,32],[0,21],[13,8],[72,-20],[3,10],[121,20]],[[54520,58960],[-39,18],[-2,2],[-46,70]],[[54509,59300],[28,70],[5,0],[36,-14],[95,-86],[17,10],[-14,23],[-49,51],[-44,33],[-39,16],[-22,21],[-44,111],[-1,5],[3,41],[22,87],[13,18],[23,14],[33,9],[37,-9],[75,-56],[12,18],[-23,17],[-24,102]],[[54749,60142],[1,16],[11,19],[21,21],[13,23],[53,5],[44,-30]],[[53326,58166],[-3,-5],[-2,-4],[5,9]],[[55369,49378],[-15,17],[-16,49],[-48,68],[-51,55],[-264,170],[-22,59],[31,22],[127,33],[2,0],[137,-71]],[[55774,49573],[72,-50],[2,-2],[144,-140]],[[56126,49278],[18,-7],[63,-62],[63,-126],[10,-34],[-23,-33],[-27,-12],[-199,-14],[-158,61],[-112,28],[-15,6],[-106,50],[-217,152],[-28,47]],[[50633,45386],[-36,-20],[-63,19],[-69,-26],[-19,0],[51,74],[79,45],[78,140],[22,3],[-30,-158],[-6,-56],[-7,-21]],[[50572,45502],[-57,-20],[-20,8],[63,99],[72,22],[-58,-109]],[[37408,48904],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0],[-52,0]],[[36139,48904],[-151,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-203,0],[-202,0],[-203,0],[-50,0]],[[19478,59892],[-1,1],[-60,81],[23,89],[27,107],[0,63],[0,1],[-74,-4],[-111,-6],[-99,-6],[-73,-75],[-68,-70],[-107,55],[-8,4],[-113,58],[-33,-76],[-2,-5],[-113,40],[-114,41],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,292],[0,291],[0,292],[0,287]],[[18552,69519],[1,0]],[[20519,68760],[64,6],[8,-2],[104,8],[26,-3]],[[23775,55795],[-35,-74]],[[23715,55636],[3,-60]],[[23724,55453],[17,-326]],[[23683,54947],[-27,-70]],[[23644,54856],[-128,-164]],[[23516,54692],[-16,-8],[-7,7],[-111,17],[-40,142],[-22,111],[-14,43],[37,151],[86,41],[1,21],[-41,14],[-10,23],[-8,78],[15,118]],[[23386,55450],[-27,119],[-10,65],[-12,34],[-5,21]],[[23332,55689],[-7,12],[-3,9],[-72,148],[-6,37],[31,47],[20,44],[-121,-76],[-156,-75],[-1,3]],[[22874,55762],[54,-73],[2,-8],[-2,-17],[-14,-31],[-17,-87],[-36,-93],[-18,-19],[-65,34],[-17,30],[-32,121],[7,33],[24,27],[32,59],[40,90],[22,65],[0,1]],[[22855,55896],[128,175],[65,33],[-139,23],[-21,12],[-19,31],[-16,51],[-29,56],[-53,20],[-23,21],[-35,68],[-7,10],[-29,61],[-2,43],[-10,23],[-35,8],[-22,27],[-5,105],[-72,30],[-30,26],[-42,64],[-21,86],[9,68],[-4,15],[-43,-9],[-262,125],[7,92],[11,22]],[[22269,57221],[-129,62],[-37,166],[-52,88],[10,34],[11,18],[23,1],[101,-64],[95,-76],[12,11],[-151,161],[-38,48],[-9,57],[-1,31],[12,17],[142,-15],[9,12],[-145,47],[-29,0],[-32,-68],[-15,-15],[-19,2],[-42,55],[-17,38],[-34,57],[-27,32],[-51,126],[-3,59],[9,78],[53,178],[21,31],[6,19],[-16,-2],[-16,-17],[-44,-83],[-45,-136],[-37,-46],[-23,11],[-35,55],[-74,68],[-84,17],[-54,69],[-79,192],[-11,96],[-10,23],[-37,27],[-44,116],[-29,168],[-18,55],[-21,102]],[[21265,59126],[-26,125],[3,51],[-7,9],[-19,-66],[-5,-35],[-34,-9],[26,-55],[-14,-46],[-20,-6],[11,-23],[0,-1]],[[21232,58824],[53,-152],[0,-1],[24,-107],[11,-81],[15,-78],[20,-76],[20,-132]],[[21359,58138],[-1,-2],[-18,-9],[-76,23],[-23,34],[-60,136]],[[21181,58320],[-80,-19],[-107,-13],[-13,21],[0,48],[17,113],[-14,46],[-45,101],[-28,84],[0,13],[104,77],[-51,5],[-40,-29],[-16,19],[-24,106],[-16,40],[-7,8],[-5,-101],[17,-53],[3,-31],[-2,-28],[-6,-30],[-6,-15],[-19,-19],[-18,-5],[-35,22],[-39,40],[-34,19],[-12,16],[-16,45],[-26,33],[-25,9],[-13,14]],[[20625,58856],[-140,55],[-24,16],[-6,-13],[9,-21],[-15,-95],[-21,-32],[10,-7],[36,17],[40,-2],[66,-31],[60,-41],[22,-23],[9,-34],[7,-12],[59,-39],[3,-21],[-29,-47],[-4,-4]],[[20724,58506],[10,8],[46,4],[45,-23],[47,-77],[32,-111],[1,-29],[-12,-20],[-23,-14],[-158,-22],[-37,-54],[-13,-5]],[[20662,58163],[-67,1],[-75,62],[-73,47],[-141,111],[-109,90],[-6,9],[-3,36],[-16,18],[-30,16],[-43,47],[-54,78],[-33,62],[-13,44],[-31,50],[-102,105],[-53,41],[-47,22],[-23,3],[-28,17],[18,22],[3,14],[-91,22],[-85,49],[-217,138],[-113,87],[-65,41],[-28,24],[-12,19],[6,7],[25,7]],[[19269,59585],[1,265],[5,4],[17,-6],[55,-80],[8,-29],[-2,-109],[15,-128],[5,10],[5,42],[4,80],[6,39],[12,38],[20,20],[62,-12],[28,7],[-121,58],[-76,108],[-13,11],[-42,5],[-3,-3],[-16,27]],[[19189,59834],[-1,-3],[-88,-109],[-31,-25],[-143,-79],[-97,-16],[-108,12],[-93,26],[-233,125],[-36,29],[22,31],[36,5]],[[18307,60014],[-115,-140],[-164,50],[-211,52],[-57,4],[-15,4]],[[17745,59984],[-14,-3],[-103,6],[-267,-41],[-142,-43],[-78,-3],[-24,2]],[[17117,59902],[-31,2],[-20,2],[-14,18],[-2,12],[36,18],[-2,21],[-46,66],[-70,40],[-94,14],[-54,20],[-13,24],[-34,24],[-52,22],[-17,28],[38,139]],[[16742,60352],[-28,-15],[2,12],[18,74],[18,51],[45,84],[-15,-6],[-66,-62],[-58,-63],[-53,-84],[-32,-38],[-41,-35],[-63,8],[-86,52],[-74,27],[-12,1],[-3,9]],[[16181,60588],[-85,-6],[-1,23],[-7,19],[-33,14],[-45,-11],[-53,-26],[-6,11]],[[15951,60612],[-16,32],[4,2],[49,54],[-66,28],[-34,32],[-17,26],[1,95],[18,61],[149,59],[-47,23],[-95,-8],[-63,-50],[-21,-20],[-160,-56],[-4,1],[-43,-5],[-28,-19],[-2,-3],[-11,-4]],[[15502,60890],[-44,-35],[-8,4],[-21,25],[-12,-16],[-15,-46],[-13,-20],[-6,-5],[-68,-23],[-40,5],[-47,58],[-7,20],[16,51],[55,104],[49,64]],[[15351,61162],[-167,-192],[-36,-2],[-24,9],[-29,-7],[-34,-21],[-23,-23],[-10,-26],[7,-4],[52,29],[29,8],[8,-14],[-40,-90],[-25,-86],[-23,-22],[-37,4],[-40,-9],[-1,-24],[5,-4],[-61,-22]],[[15046,60618],[1,1],[14,-5],[35,-25],[5,-24],[-13,-66],[-10,-26],[-16,-14],[-61,3],[-20,-7],[-42,-42],[-20,-34],[7,-3],[36,28],[52,16],[2,0],[26,-20]],[[15109,60379],[29,62],[29,24],[29,-8],[41,-83]],[[15237,60374],[-2,-12],[-7,-20],[-27,-24],[-39,-14],[-25,-21],[-11,-28],[-5,-42],[-1,-8],[-70,-62]],[[15105,60083],[22,1],[2,-26],[-7,-13],[-15,-8],[-22,-1],[-20,-24],[-47,-132],[-16,-15],[-20,15],[-17,-2],[-15,-17],[-33,-13],[-51,-10],[-44,4],[-77,29],[-31,20],[-24,33],[-69,-35],[-19,15],[-43,92],[-9,-5],[-6,-73],[-5,2]],[[14397,59837],[-8,-58],[-20,-32],[-4,-23],[3,-22],[-37,-53],[-43,24],[-19,2],[-5,-7],[27,-64],[-2,-16],[-17,-24],[-94,-106],[-29,4],[-18,13],[-20,-2],[-70,-46],[-19,2],[-27,27],[-12,-1],[-7,-28],[-1,-56],[-22,-44],[-34,-19]],[[13919,59308],[-142,-146],[-11,8],[-57,23],[-8,-11],[18,-33],[-3,-14],[-47,2]],[[13612,59139],[-9,-7],[-34,-9],[-68,-44],[-56,2],[-79,71],[-22,5],[-7,20],[16,58],[9,17],[3,0]],[[13376,59251],[145,116],[31,7],[54,34],[65,69],[35,52],[8,16],[117,139]],[[13831,59684],[-66,-9],[-11,5],[-150,-127],[-22,-11],[-30,1],[-119,48],[-26,21],[-17,61],[16,65],[49,155],[50,89],[76,111],[27,72],[39,191],[0,17],[21,55]],[[13712,60670],[6,4],[100,56],[62,55],[186,127],[1,0],[59,-25],[12,-13],[37,-30],[43,-22],[55,2],[1,1],[34,-15]],[[14601,60784],[3,5],[61,-20],[47,-4],[2,10],[-34,50],[-120,23],[-82,29],[-12,6],[-179,127],[-25,30],[12,42]],[[14276,61088],[0,0],[31,14],[15,18],[6,32],[4,7],[45,56]],[[14547,61342],[-14,7],[58,36],[-50,4],[-68,-11],[-11,5]],[[14462,61383],[-10,-9],[-2,0],[-33,-15],[-61,-58],[-8,-12],[-13,-11]],[[14335,61278],[-6,-23],[-31,-73],[-15,-14],[-63,-12],[-173,-8],[-29,40],[-16,7],[-21,-6],[-123,-79],[-30,-15]],[[13568,60901],[-5,-6],[-49,-27],[-67,-68],[-23,-53],[-1,-25],[3,-16],[-79,-110]],[[13347,60596],[-4,-7],[-21,-17],[-130,-154],[-18,-56],[1,-19],[13,-27],[-7,-14]],[[13181,60302],[-202,-175],[-5,0],[-33,10],[-60,46],[-48,3],[-3,-7],[66,-48],[66,-63],[6,-8],[-55,-271],[0,0],[-119,-23],[-38,-18],[-12,-14],[82,-33],[7,-16],[-11,-64],[-22,-21],[-68,-38],[-60,-11],[-7,20],[9,38],[-4,12],[-23,10],[-32,-19],[-81,-74],[-8,-12],[29,-20],[-6,-16],[-44,-53],[-18,-36],[-7,-8],[-174,-128]],[[12456,58957],[24,-2],[52,-24],[114,-79],[13,-18],[29,-51],[1,-6],[-3,-26],[-14,-36],[-36,-67],[-85,-100],[-39,-29],[-58,-22],[-19,-16],[-76,-95],[-17,-44],[-56,-109],[-55,-35],[4,-11],[26,-3],[-73,-143],[-14,0],[-15,-6],[-7,6]],[[12152,58041],[-25,-18],[-30,-11],[-5,-8],[0,-6],[-94,-66],[-108,-22],[-44,-102],[-23,-32],[-79,-74],[-48,-30],[-55,-18],[-29,-26],[-2,-32],[-16,-28],[-48,-46],[-5,-15],[-61,-57],[-63,-10],[-17,-18],[-2,-18],[-81,-41]],[[11271,57315],[-13,-13],[-48,-47],[-6,-9],[-19,-20]],[[11185,57226],[5,-4],[2,-16],[14,-17],[22,-53],[-1,-35],[-36,-100],[-12,-15],[-43,-25],[-17,-51],[-18,-1],[-23,3],[-19,-6],[-6,-1]],[[11053,56905],[-3,-2],[-4,-1],[-2,-4],[-13,-12]],[[10699,56661],[-99,-123],[-25,10],[-47,-6],[-75,-53],[-24,-40],[47,-9],[24,-11],[-1,-12],[-25,-10],[-42,0],[-25,-9],[-23,-17],[-53,-4]],[[10331,56377],[-5,-18],[-28,-8],[-29,-18],[-59,-100],[-7,-23],[8,-5],[33,11],[38,-17],[7,-8],[26,-66]],[[10315,56125],[15,-37],[-69,-79],[-6,-9],[-16,82]],[[10170,56099],[-7,-60],[-32,-98],[-41,-56],[-147,-70],[-114,-38]],[[9679,55563],[-7,-24],[-1,5],[0,4],[31,160]],[[9702,55708],[-38,17],[-27,17],[-7,-1],[-30,13]],[[9600,55754],[-64,-61],[-4,0],[-39,-32],[-76,-82],[-23,-22],[-57,-23],[-16,-22],[-21,-43],[-56,-31],[-27,13],[-27,-12],[-21,-41],[-20,-15],[-1,-1],[-60,30],[-26,-20],[-35,-53],[-36,-34],[-37,-17],[-97,-18],[-39,12],[-8,15],[2,67],[13,39],[5,12],[12,20],[19,20],[29,2],[53,-15],[-6,16],[-20,20],[-48,33],[-13,4],[-29,15]],[[8759,55518],[-25,-48],[-6,-8],[-14,-31],[-3,-8]],[[8711,55423],[-1,-20],[-14,-83],[-10,-30],[-114,-192],[-44,-59],[-44,4],[-22,-22],[-30,-48],[-15,-13],[-56,42],[6,4],[-7,39],[-33,63],[-22,34],[-42,4],[-6,-29],[4,-40],[-25,18]],[[8259,55057],[4,-9],[8,-77],[-2,-33],[-27,-42],[-69,-46],[-21,4],[-63,92],[-59,18],[-3,-30],[13,-61],[-15,-57],[-37,-46],[-39,-32],[-21,1],[-1,37],[19,73],[5,61],[-9,48],[1,31],[1,9],[4,9],[44,29]],[[7992,55036],[85,57],[6,-7],[22,-3],[27,12],[16,23],[6,26],[1,1]],[[8264,55264],[6,15],[49,70],[78,144],[91,125],[105,104],[114,83],[33,17],[120,43]],[[8908,55883],[26,-5],[-1,-3],[14,-23],[23,-3],[57,13],[57,-10]],[[9084,55852],[-31,-32],[-18,-10],[0,-7],[-8,-8]],[[9196,55596],[95,130],[16,-11],[42,-17],[27,5],[10,27],[-18,33],[-82,70],[-22,30],[-6,41],[12,53],[24,73],[4,12],[37,97],[29,58],[104,106]],[[9577,56414],[139,97],[140,74],[34,47],[64,45]],[[10022,56724],[10,11],[8,-22],[54,-21],[35,-7],[16,6],[4,33],[-7,60],[-2,56],[0,4],[215,368]],[[10356,57214],[244,225],[10,-5],[11,-25],[14,-16],[52,-14],[35,22],[-6,12],[-28,8],[-18,15],[-17,60],[-34,35],[1,44]],[[10620,57655],[0,3],[26,132],[4,124],[0,1]],[[10650,57915],[8,53],[20,66],[53,32],[119,22],[-70,40],[-26,1],[-45,18],[-11,66],[15,63]],[[10812,58496],[50,61],[92,72],[-17,8],[-13,26],[14,54],[40,139],[55,170],[-74,-145],[-15,-19],[-10,-2]],[[10934,58860],[-97,-109],[-212,-110],[-86,-54],[-136,-71],[-23,-7],[-62,36],[-37,94],[-24,36],[-30,68],[12,88],[24,61],[53,10],[60,-30],[52,-2],[-67,60],[-96,52],[-44,-17],[-33,-85],[-45,-58],[-39,21],[-23,23],[16,-71],[-30,-108],[-11,-75],[8,-36],[5,-47]],[[10069,58529],[10,-22],[20,-93],[-8,-80],[-77,-36],[-63,65],[-131,251],[-1,1],[-23,50]],[[9639,58813],[-9,-36],[-36,-48],[-42,-16],[-96,74],[-40,44],[-26,33],[-48,79],[-71,-41],[-3,1]],[[9072,58769],[-31,-21],[-105,-54],[-15,-2],[-19,-38],[-19,-17],[-11,-49],[-12,-18]],[[8860,58570],[-29,-18],[-152,-47],[-111,19],[65,42]],[[8633,58566],[28,80],[33,41],[-27,103],[-4,52],[1,67],[68,93],[-71,0],[-43,-32],[-24,37]],[[8572,59040],[-1,3],[-19,133],[49,81],[13,36],[34,33]],[[8682,59434],[-75,170],[0,1],[-110,266],[-49,198],[-85,105],[63,173],[71,157],[91,70],[-7,11],[-50,-1],[-34,-9],[-29,-51],[-31,-39],[-97,-200],[-62,-98],[-41,-28],[66,-38],[9,-32],[13,-72],[-17,-88],[-5,-15],[-27,-33],[-61,3],[-70,-71],[-162,-77],[-219,-44],[-52,3],[-74,17],[-94,76],[0,52],[5,45],[-152,146],[-14,17],[-86,146],[-44,2],[-138,99],[-8,7],[6,52],[10,36],[-41,26],[-53,-3],[-23,7],[-22,31],[51,63],[83,61]],[[7198,60722],[-11,41],[42,18],[58,-20],[81,-53],[68,-23],[24,-25],[25,-46],[-26,-78],[-25,-55],[30,15],[85,85],[63,74],[30,-7],[20,-14],[35,-76],[43,-79],[96,75],[51,93],[-43,40],[-53,24],[-135,32],[33,26],[87,-3],[32,26],[-34,35],[-43,32],[-117,-105],[-212,5],[-149,61],[-81,-6],[-34,120],[57,41],[3,25],[-34,3],[-65,-20],[-29,36],[5,62],[-10,-6],[-26,-34],[-29,14],[-17,15]],[[6993,61070],[-1,-2],[-20,18],[16,30],[32,41],[-14,6],[-29,-9],[-28,-53],[6,-44],[0,-54],[-54,43]],[[6834,61099],[-9,9],[-18,80],[-82,36],[-20,68],[52,87],[-23,45],[-55,15],[-45,-31],[-6,12]],[[6648,61517],[6,27],[85,23],[12,17],[-78,40],[34,99],[32,1],[105,32],[-44,59],[-9,31],[-9,53],[17,88],[81,132],[27,41]],[[6907,62160],[137,201],[13,13],[36,29],[43,17],[51,-16],[54,-37],[10,16],[-18,15],[-23,68],[26,8]],[[7236,62474],[-1,2],[49,18],[44,78],[3,23],[-47,-33],[-49,-53],[-8,34],[-13,101],[-4,41],[2,13],[19,105],[2,6],[49,87],[7,10],[6,1],[29,4]],[[7357,62916],[1,1],[50,8],[21,-9],[4,23],[-71,74],[29,57],[26,30],[10,3],[153,40],[28,-6],[123,-56],[6,-3],[57,-68],[-8,-35],[-14,-20],[-30,-22],[-11,-18],[5,-13],[42,40],[68,48],[18,-16]],[[9060,64096],[-11,14],[-4,24],[-111,145],[-9,5],[-8,100]],[[9078,64703],[-29,26],[-40,57],[-32,21],[-27,-1],[-27,-27],[-192,-102],[-53,21],[-52,-73],[-145,-65],[-77,-65],[-135,-152],[-113,15],[-10,41],[-156,135],[-47,-46],[26,-42],[36,-31],[58,-13],[-19,-30],[-124,16]],[[7920,64388],[-9,5],[-55,39],[-108,38],[-281,-4],[-185,-76],[-16,16],[-18,6],[-31,-18],[-13,-31],[-20,-20],[-22,-4],[-23,-2],[-69,11],[-146,47],[-332,70],[-29,14],[-34,64]],[[6451,64687],[-3,6],[18,16],[-3,99],[-65,27],[-22,24],[-58,131]],[[6436,65061],[49,80],[42,14],[75,-13],[-17,25],[-19,19],[-196,48],[-26,-15],[-337,80],[-68,32]],[[5939,65331],[-13,7],[-211,110],[-23,28],[-25,61],[75,78],[1,-20],[6,-34],[159,77],[84,101],[157,18],[37,28],[49,54],[69,92],[99,49],[67,44],[88,26],[75,-43],[23,-6],[136,-9],[44,19],[19,13],[14,22],[-133,78],[14,44],[17,30],[103,61],[82,37],[90,23],[63,-2],[140,88],[176,55]],[[7678,66472],[41,-12],[-20,2],[-37,-8],[27,-14],[29,-30],[-8,-39],[-52,-114],[4,-80],[-5,-15],[-29,-26],[-32,-41],[35,-29],[-3,-15]],[[7793,65937],[399,16],[28,-14],[64,-9],[70,8],[263,-32]],[[9037,66121],[-31,51],[0,2],[-24,39],[-116,42],[-240,97]],[[8626,66352],[-11,11],[2,9],[-145,200],[-60,40],[-63,2],[-16,15],[-29,54],[-23,70],[9,29],[2,1],[32,9]],[[8399,66813],[91,-112],[11,-21],[2,-1],[27,-93]],[[8885,66360],[12,15],[68,-1],[51,-21],[125,-90],[64,-11],[199,47],[2,88],[-16,64],[-47,40],[-135,-7],[-105,65],[-89,-18],[-165,-101],[-82,40],[-52,54],[-63,41],[-21,20],[-5,44],[17,66]],[[8643,66695],[53,111],[8,9],[103,4]],[[8647,66927],[-33,-8],[-34,8],[-203,-29],[-10,40],[1,44],[-82,-86],[-85,18],[-69,-5],[-161,31],[-137,40],[-89,93],[-18,35],[-2,23]],[[7676,67283],[-36,68],[-1,4],[-4,5],[-39,74]],[[7596,67434],[-42,47],[-2,2],[-2,2],[-12,13]],[[7538,67498],[-29,17],[-557,407],[-89,36],[-225,114]],[[6638,68072],[-4,2],[-86,79],[-82,30],[-69,11],[-37,19]],[[6387,68233],[13,9],[47,24],[27,28],[9,7]],[[6483,68301],[15,60],[28,87],[37,174],[6,26]],[[7997,69230],[8,28],[6,3],[14,67],[18,156],[67,147],[286,335],[133,133],[45,60],[28,28],[21,12],[29,-37],[16,-13],[9,-19],[-28,-10],[-44,-43],[-62,-28],[-15,-15],[36,3],[109,32],[62,37],[306,70],[165,116],[2,6],[152,93]],[[9360,70391],[50,43],[49,28],[34,-5],[39,-18],[-68,-95],[48,-25],[-43,-114],[90,-2],[19,-52],[5,45],[-1,65],[7,64],[14,44],[62,-20],[141,47],[-171,6],[-102,103],[-39,1],[187,159],[2,2],[94,33]],[[9777,70700],[111,40],[11,-10],[2,-14],[-11,-6]],[[9831,70646],[2,-2],[13,-20],[25,-5],[45,13],[14,1]],[[9994,70636],[456,80],[17,0],[14,5],[61,11]],[[11147,71222],[6,-5],[-5,-6],[46,-49],[46,-16],[21,-17]],[[11404,71072],[189,-33],[24,-48],[-26,-59],[-80,-66],[-163,-68],[49,-25],[33,-60],[43,-7],[20,-7]],[[11655,70727],[166,241],[99,-15],[60,-34],[68,-61],[-25,-60],[-28,-33],[89,-46],[46,-5],[4,-18]],[[12541,70754],[281,26],[125,-33],[6,1],[216,-99],[-57,-45],[-16,-79],[34,-33],[22,-2],[-3,-20]],[[13149,70470],[50,-28],[1,-2],[9,-3],[110,-61]],[[13319,70376],[52,-28],[-24,-24],[81,-8],[21,-12]],[[13755,70274],[319,45],[6,-4],[62,-9],[57,9],[63,31],[240,34],[50,-17],[17,2],[162,-43]],[[14731,70322],[75,-20],[15,-5],[12,-2],[70,-18]],[[14903,70277],[7,-3],[85,-84],[52,-3],[24,17],[221,-94]],[[15292,70110],[60,-14],[11,-7],[48,-7],[184,-43]],[[16937,69897],[45,19],[114,10],[151,48],[85,0],[100,-12],[38,5],[28,21],[210,-71],[44,-19],[125,-86],[59,-70],[276,-96],[23,-12],[68,-46],[56,-62],[33,-6],[24,18],[77,-4],[59,-15]],[[23744,55135],[-7,259]],[[6710,66185],[32,14],[-1,-3],[-53,-39],[-80,-50],[-19,-6],[1,13],[120,71]],[[4508,63570],[86,1],[21,-7],[51,-33],[19,-15],[14,-14],[19,-41],[12,-50],[19,-35],[58,-22],[38,-32]],[[4938,63276],[29,-14],[2,-4],[61,-25],[37,5],[132,-14]],[[5233,63120],[0,-56],[-52,6],[-122,-14],[-50,-50],[-42,-63],[-87,-30],[-17,66],[-19,28],[-22,18],[-59,33],[-61,21],[-21,1],[-40,38],[-13,51],[-25,27],[-48,38],[-48,30],[-153,65],[-51,8],[-51,-7],[-54,-29],[-53,-44],[-54,-33],[-56,-7],[-54,19],[-50,43],[-26,30],[-13,53],[0,52],[7,51],[27,122],[48,24],[4,-4],[2,-31]],[[4021,63549],[23,-8],[17,-17],[7,-24],[50,4],[70,-11],[56,-17],[62,-20]],[[5233,63120],[19,-58],[-19,2],[0,56]],[[15179,60804],[1,2],[25,7],[35,-24],[10,-25],[6,-49],[-60,-8],[-28,13],[-4,13],[12,51],[0,5],[0,1]],[[16594,60227],[-2,-3],[-72,7],[69,60],[13,-13],[-8,-51]],[[6618,60223],[36,-1],[9,-1],[3,1],[31,-1]],[[6806,60145],[1,-5],[1,-26],[-12,-51],[4,-72],[-3,-31],[27,-28],[5,-59]],[[6790,59830],[-43,-47],[-61,-2],[-73,-41],[-15,-29],[5,-19],[-36,-23],[-31,37],[-39,19],[-100,23],[-86,43],[-119,84],[-74,24],[-74,87],[-64,106],[16,9]],[[5996,60101],[26,14],[32,6],[70,-4]],[[6124,60117],[3,1],[135,-11],[25,79],[11,9],[47,21]],[[6345,60216],[142,39],[0,0],[1,0],[65,18]],[[6575,60285],[0,0],[21,-12],[9,-11],[7,-20]],[[15474,59970],[178,277],[4,-3],[4,-14]],[[15660,60230],[38,-21],[21,-30],[-14,-35],[-158,-178],[-13,-24],[-14,-60],[-13,-21],[-21,-10],[-15,-27],[-10,-43],[-19,-23],[-29,-2],[-21,-12],[-11,-22],[-32,-18],[-53,-14],[-12,29],[27,71],[78,86]],[[15154,59932],[-60,12],[19,60],[72,38],[3,-2],[-34,-108]],[[13089,58378],[-14,-6],[-35,31],[-7,10],[103,97],[9,-6],[6,-16],[-3,-24],[-15,-30],[-44,-56]],[[13221,58101],[-2,-1],[-5,8],[-13,37],[-8,0],[-32,-43],[1,-22],[7,-17],[-54,-41],[-10,1],[-40,-28],[-10,18],[-6,49],[-13,-5],[-20,-61],[-21,-39],[-38,-31],[-8,-16],[-29,-2],[-25,-12],[-35,-6],[-7,1],[-154,66],[-10,7],[30,56]],[[12787,58099],[122,81],[24,-11],[20,3],[2,67],[-12,17],[18,71],[38,17],[30,-5],[33,-17],[31,-29],[29,-39],[17,-8],[18,59],[13,2],[56,-50],[7,2],[46,-43],[4,-10],[10,-3],[-7,-10]],[[21921,57700],[16,-57],[9,-41],[21,-76],[-4,-11],[-44,51],[-33,107],[-18,42],[-17,19],[-17,40],[-35,102],[-1,29],[-16,27],[-18,11],[-20,-4],[-7,-10],[0,-1],[-4,3]],[[21748,57782],[55,-96],[41,-79],[58,-98],[11,-32],[8,-90],[-25,-40],[31,-83],[-1,-16],[-7,-16],[-83,-36],[-30,-61],[-136,-184],[-32,-12],[-19,15],[-17,34],[-10,46],[-3,57],[20,36],[42,188],[1,62],[-52,86],[-12,29],[-43,206],[-20,191],[-13,83],[-19,69],[-17,41],[57,40],[2,-3],[25,-63],[121,-23],[45,2],[60,-29],[7,-13],[93,-201]],[[21593,58212],[43,14],[58,-45],[25,-35],[-126,66]],[[21245,58000],[164,-59],[20,-31],[13,-63],[-6,-39],[-26,-30]],[[21310,57829],[92,-124],[-43,-17],[-30,3],[-31,19],[-51,-47],[42,-36],[129,-8],[39,-76],[11,-59],[-28,-108],[-73,30],[-64,63],[-132,88],[-28,4],[-5,4]],[[21138,57565],[-18,-18],[-2,-1],[0,-1],[-19,-18]],[[21096,57523],[18,-14],[-2,-17],[2,-116],[-36,-61],[-104,27],[-40,88],[-38,139],[-55,63],[-10,25]],[[20831,57657],[-8,-4],[-71,82],[-39,33],[-47,89],[-1,22],[17,66],[6,45],[28,12],[28,25],[66,34],[5,-10],[49,-58],[0,55],[23,44],[48,-2],[22,10],[31,41],[45,21],[27,-24],[41,-58],[16,-120],[-2,-8],[-37,-19],[10,-27],[28,-20],[20,17],[62,81],[47,16]],[[13084,57624],[6,-11],[1,-15],[34,-57],[11,-4],[9,-15]],[[13131,57451],[-19,-99],[-92,15],[-95,31],[-39,5],[-13,-10],[-27,-29],[19,-8],[84,-7],[29,-43],[12,-28],[-196,-91]],[[12794,57187],[22,-54],[-102,-11],[-80,-59],[-29,-29],[-10,-35],[-30,-25],[-69,-26],[41,-22],[6,-20],[1,-25],[-52,-112],[-1,-2],[-21,-24],[-88,-72],[-26,3],[-11,11],[-9,16],[-1,16],[132,169],[-5,8],[-36,6],[-4,3],[59,128]],[[12472,57053],[-93,-115],[-10,8],[-40,-30],[-9,1],[11,40],[26,47],[-5,14],[-14,11],[-33,8],[-52,2],[-38,-11],[-25,-25],[-2,-11],[53,3],[14,-12],[14,-24],[9,-27],[3,-31],[-11,-41],[-25,-52],[-37,9],[-76,116],[-34,169],[-65,129],[-3,31],[19,79],[48,84],[61,49],[27,11],[50,48],[49,14],[30,-1],[41,-20],[16,-44],[-10,-20],[4,-11],[29,-26],[31,-91],[36,-80],[25,-33],[31,-20],[-32,61],[-20,77],[-10,152],[-9,40],[18,11],[52,-6],[-1,22],[-55,51],[-18,23],[85,122],[2,-2],[45,-96],[21,-30],[17,0],[17,16],[14,32],[16,19],[16,6],[50,-14],[16,5],[8,25],[0,33],[42,-6]],[[12789,57773],[-25,31],[0,1],[-27,47],[31,14],[1,0],[51,-28]],[[12820,57838],[94,-53],[-21,-67],[4,-54],[19,6],[73,57],[38,16],[50,3],[39,-26],[6,-13],[-17,-37]],[[12730,57745],[-13,-28],[-13,7],[-26,32],[-3,2],[52,-7],[3,-6]],[[21587,56563],[-1,-88],[-13,-22],[-2,-33],[12,-87],[0,-61],[-1,-83],[-10,-64],[-13,-11],[-33,24],[-26,41],[-20,42],[-49,133],[-14,62],[-1,44],[8,33],[15,20],[28,54],[-4,9],[-21,-12],[-43,-7],[-38,42],[-29,23],[6,77],[-8,22],[-58,-24],[-22,21],[-4,29],[1,43],[11,38],[55,95],[-6,18],[-27,4],[-11,11],[-26,185]],[[21180,57165],[-63,95],[14,25],[4,27],[16,31]],[[21151,57343],[1,12],[24,57],[18,17],[49,-1],[2,-2],[23,-29]],[[21268,57397],[12,-6],[66,-64],[31,-15],[45,-65],[40,-110],[30,-85],[26,-102],[34,-166],[35,-221]],[[12841,57021],[-60,-33],[-11,2],[-37,-65],[-29,-29],[-30,41],[-7,16],[9,75],[33,53],[135,-15],[18,-43],[-21,-2]],[[22326,56815],[55,-44],[2,-24],[-6,-68],[4,-69],[-2,-36],[-8,-30],[-14,-24],[-14,-3],[-47,63],[-53,112],[-40,34],[-2,-11],[11,-32],[33,-61],[6,-36],[23,-44],[11,-34],[6,-44],[-1,-39],[-6,-33],[-11,-21],[-3,-2],[-35,-5],[-58,7],[-28,-13],[-100,81],[-3,54],[-14,114],[3,87],[-36,79],[-31,48],[-45,42],[-30,43],[8,33],[46,26],[75,-6],[163,-59],[32,-32],[12,25],[97,-78]],[[21938,56496],[3,-95],[-2,-19],[6,-96],[-7,-97],[-25,-98],[-6,-66],[-10,-19],[-11,-7],[-14,18],[-21,14],[-26,-56],[-32,0],[-26,126],[23,210],[53,42],[-31,57],[-61,61],[-5,12],[5,31],[-50,107],[-3,25],[8,89],[42,72],[34,14],[33,8],[44,-34],[16,-20],[9,-29]],[[21917,56641],[49,33],[23,-49],[19,-78],[-14,-50],[-20,11],[-16,-21],[-20,9]],[[22525,56561],[28,-41],[11,-44],[-37,-27],[-32,-10],[-15,-16],[-5,-14],[-2,-1],[-59,1],[-22,12],[-8,43],[5,40],[15,30],[17,59],[13,98],[13,-16],[78,-114]],[[22561,55969],[-2,-6],[-11,1],[-27,12],[-15,52],[-4,68],[12,25],[36,18],[28,82],[13,9],[11,7]],[[22691,56244],[33,67],[13,-26],[66,-143],[-10,-61],[-45,-25]],[[22748,56056],[25,-189],[-1,-22],[-2,-3],[-17,9],[-18,0],[-37,-24],[-38,11],[-19,18],[-6,21],[7,50],[-22,27],[-9,1],[-4,14]],[[22367,55951],[5,2],[80,-47],[79,-106]],[[22531,55800],[56,-75],[11,-29],[32,-111],[67,-128],[13,-14],[5,-12]],[[22699,55426],[-21,-6],[-86,73],[-9,-4],[-3,-15],[-10,7]],[[22571,55475],[1,-36],[-14,-38],[-23,-29],[18,-9],[75,17],[16,-8],[61,-74],[27,-15],[10,-22],[7,-29]],[[22749,55232],[9,-37],[-14,-41],[-11,-18],[4,-12],[19,-7],[18,3],[24,-207]],[[22814,54918],[22,7],[10,-56],[-1,-29],[-9,-39],[0,-32],[7,-34],[1,-30],[-19,-78],[-21,-14],[-33,0],[-26,22],[-37,67],[-36,105],[-13,15],[-47,16],[-9,12],[-28,2],[-22,48],[2,52],[-18,58],[2,25],[-21,11],[-17,-16],[5,-29],[-19,39]],[[22445,55062],[-43,23],[-1,3],[-71,112],[-27,27],[7,32],[35,18],[28,-2],[6,20],[-59,108],[2,31],[21,54],[-27,23],[-73,-17],[-26,11],[-21,44],[-12,38],[-35,4],[-7,96]],[[22202,55725],[-2,12],[6,6],[6,42],[32,34],[-5,36],[-17,62],[-39,17],[-80,-37],[-12,-9],[-27,91],[10,12],[33,52],[-7,31],[-24,40],[-2,100],[16,22],[90,-21],[33,1],[100,-264]],[[23199,55300],[-91,-27],[-10,35],[-13,-36],[-6,-7],[-78,-23]],[[22990,55232],[-10,-87],[-14,-27],[-18,-53],[-23,57],[-15,136],[-2,57],[4,8],[17,11]],[[22929,55334],[58,126],[16,24],[1,27],[8,32]],[[23061,55746],[-7,14],[128,93],[16,-6],[55,-92],[59,-129],[14,-55],[1,-4],[0,-100],[-7,-79],[-15,-102],[-2,-11],[-32,-109],[-50,-60],[-35,13],[-18,33],[28,34]],[[22215,55210],[8,9],[90,-106],[6,-21],[4,-29]],[[22492,54660],[14,-55],[-7,-21],[-48,25],[-39,54],[-57,92],[-32,66],[-2,28],[-20,21],[-39,114],[-4,16],[-43,210]],[[7894,54753],[11,-29],[2,-8],[2,-3],[21,-60]],[[7930,54653],[38,8],[25,-11],[-2,-24]],[[7991,54626],[-2,-27],[-72,37],[-57,-68],[-156,-31]],[[7704,54537],[-27,-14],[-100,-2],[-47,-18],[-30,-31],[-30,-51],[-17,-8]],[[7451,54398],[-1,-9],[-3,-6],[-27,-34],[-29,-21],[-60,-23],[-73,3],[-38,12],[-20,42],[-18,83],[0,23],[7,40],[65,55],[22,29],[79,178],[76,39],[50,-9],[62,55],[111,70],[0,1]],[[7800,54943],[12,0],[12,-6],[20,-23],[17,-34],[29,-102],[3,-21]],[[6158,53453],[91,120],[12,-23],[10,-6],[4,4],[1,18],[1,-1]],[[6277,53565],[0,3],[1,20],[30,27],[-18,20],[-53,26],[-40,12],[-7,-1],[-40,16]],[[6150,53688],[-5,7],[-11,20],[-7,30],[1,29],[4,10],[54,74],[2,1],[42,14],[26,6],[19,9],[51,16]],[[6326,53904],[7,3],[7,0],[17,-8],[5,-11],[3,-45],[-13,-19]],[[6382,53738],[21,30],[20,17],[27,41],[6,18],[33,47],[11,-18],[50,-39],[-42,-58],[-80,-89],[-27,-58],[-2,-26],[48,12],[53,-30],[-8,-9],[-43,-22],[-37,-42],[-86,-73],[-21,-40],[-79,-47],[-23,-2],[-92,-40],[-55,-37],[-14,-20],[-18,-9],[-21,1],[-23,-17],[-24,-33],[-6,-5],[-34,-13],[-13,-1],[-11,-8],[-13,-6],[-13,1],[-53,40],[-13,24],[47,47],[34,15],[51,7],[51,44],[104,57],[15,15],[40,19]],[[5390,52883],[-24,-19],[-10,-4],[-79,-63],[-17,12]],[[5252,52814],[6,16],[18,25],[35,68],[19,25],[6,35],[2,60],[74,118],[25,8],[64,-9],[27,26],[8,20],[-16,19],[-4,32],[4,54],[19,49],[24,31],[75,53],[13,6],[39,-1]],[[5725,53448],[18,-6],[47,-32],[9,-16],[-4,-25],[-12,-32],[-10,-47],[-47,-42],[-146,-107],[-47,-78],[-36,-75],[-15,-22],[-20,-22],[-14,-5],[-23,-20],[-30,-31],[-5,-5]],[[2335,51911],[-12,41],[73,36],[199,65]],[[2650,52091],[19,14],[40,16],[21,50],[8,9]],[[2668,52226],[61,70],[19,12],[22,6]],[[2770,52314],[12,4],[51,-46],[13,-36],[-6,-42],[-12,-43],[-51,-23],[-8,-23],[16,-37],[-7,-13]],[[2778,52055],[-20,-36],[-33,-18],[-117,-41],[-76,-20],[-168,-27],[-29,-2]],[[3067,52041],[93,-40],[67,2],[92,-10],[0,-6],[-81,-18],[-18,4],[-65,-22],[-44,-4],[-101,21],[-78,-15],[-18,5],[-25,18],[-1,1],[-29,32],[-1,19],[12,4],[19,2],[63,-25],[7,14],[59,26],[49,-8]],[[1471,51577],[9,88],[2,10],[9,23],[44,26],[18,21],[-5,55],[7,29],[56,59],[8,-1],[22,-38],[-1,-24],[-19,-53],[2,-33],[55,4],[17,-17],[0,-66],[-7,-19],[-9,-4],[-19,14],[-22,-33],[-57,-46],[-52,-26],[-24,36],[-38,-46],[4,41]],[[971,51678],[-61,47],[-32,29],[-19,34],[12,20],[25,13],[17,1],[20,-10]],[[933,51812],[73,-33],[9,-13],[32,-20],[42,-8],[-1,-17]],[[1088,51721],[-9,-17],[-18,-21],[-11,-37],[-57,-112]],[[993,51534],[-12,-6],[-58,50],[-9,19],[31,22],[23,5]],[[1715,51736],[-1,-69],[-8,79],[9,11],[0,-21]],[[44010,30322],[-12,-9],[-38,-76],[-154,-39]],[[43806,30198],[2,5],[4,1],[55,33],[-11,55],[-14,40],[-40,261]],[[43802,30593],[-34,30],[-7,15],[-10,-13],[-10,-53],[-88,-252]],[[43596,30345],[-20,2]],[[43576,30347],[-6,174],[-5,187],[-5,188],[-5,187],[-5,187],[-5,188],[-5,187],[-5,187],[12,185],[12,184],[11,185],[12,184],[12,184],[11,185],[12,184],[11,185],[12,184],[12,184],[11,185],[12,184],[11,184],[12,185],[12,184],[11,185],[3,46],[1,16],[1,24],[-42,66]],[[43684,34935],[-8,13],[-6,12],[6,1],[77,-1],[76,-2],[76,-1],[76,-2],[77,-1],[76,-2],[76,-1],[77,-2],[76,-1],[76,-2],[77,-1],[76,-2],[76,-1],[77,-2],[76,-1],[76,-2]],[[44897,34937],[13,-128],[12,-127],[13,-128],[13,-127],[12,-128],[13,-127],[12,-128],[13,-127],[12,-128],[13,-128],[13,-127],[12,-128],[13,-127],[12,-128],[13,-127],[12,-128],[12,-58],[9,-94],[68,-277],[19,-117],[-5,-48],[8,-41],[22,-34],[-4,-39],[-30,-45],[-20,-54],[-14,-96],[0,-1],[-28,-170],[0,-103],[27,-141],[0,-1],[6,-62],[-18,-276],[12,-178],[28,-116]],[[45190,30945],[-153,0],[-154,0],[-154,-1],[-154,0],[-153,0],[-154,0],[-154,0],[-154,0],[-6,-71],[3,-69],[16,-65],[69,-123],[6,-30],[-12,-96],[2,-68],[-7,-35],[-17,-31],[-4,-34]],[[42956,35936],[-2,-19],[9,-39],[0,-23],[-7,-14],[-16,-8],[-12,-10],[-3,-16],[0,-8],[1,-19],[2,-17],[-8,-23],[-55,-55],[-23,-71],[8,-87],[-19,-88],[-47,-89],[-20,-100],[7,-111],[-23,-89],[-54,-68],[-18,-41],[0,-4]],[[42676,34937],[0,-31],[5,-24],[-18,-46],[-46,-48],[-24,-46],[-4,-45],[-10,-22],[-20,-10],[-12,-67],[-9,-157],[-25,-90],[-39,-22],[-21,-35],[-3,-48],[-23,-56],[-44,-64],[-15,-60],[15,-57],[-3,-22],[-13,-19],[-48,-27],[-8,-14],[-5,-15],[10,-29],[5,-43],[-6,-74],[-12,-31],[-11,-29],[-40,-52],[-11,-40],[18,-28],[-2,-31],[-19,-33],[5,-36],[5,-25],[18,-22],[7,-61],[-14,-79],[3,-65],[22,-54],[5,-23],[-22,-177],[1,-24]],[[42268,32956],[-93,-1],[-86,0],[-85,0],[-86,-1],[-85,0],[-85,0],[-86,0],[-85,-1],[-86,0],[-85,0],[-86,0],[-85,0],[-86,-1],[-85,0],[-86,0],[-85,0]],[[40893,32952],[-1,135],[-1,136],[0,135],[-1,135],[-25,23],[-44,12],[-22,-8],[-27,6],[-18,-22],[-12,-4],[-9,5],[-6,19],[-20,14],[-25,49]],[[40682,33587],[1,109],[2,108],[1,109],[1,108],[2,108],[1,109],[1,108],[2,109],[1,108],[1,109],[2,108],[1,109],[2,108],[1,109],[1,108],[2,109],[-11,139],[-11,139],[-10,139],[-11,139],[-11,138],[-10,139],[-11,139],[-11,139]],[[40618,36434],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[133,0],[132,0],[21,-78],[21,-50],[3,-38],[-4,-37],[-35,-81],[-32,-38],[-17,-40],[-24,-38],[-37,-107],[78,2],[78,2],[79,3],[87,2]],[[33754,31271],[-108,-1],[-168,0],[-168,-1],[-169,-1],[-168,0],[-168,-1],[-23,15],[-202,133],[-226,148],[-226,147],[-225,148],[-226,148],[-226,148],[-225,147],[-150,99],[-21,259]],[[31055,32659],[-1,0]],[[31054,32659],[1,6],[0,0],[66,10],[31,38],[19,69],[4,70],[-11,71],[-28,54],[-46,34],[-27,98],[-7,161],[8,87],[24,13],[23,39],[22,65],[17,72],[10,78],[2,99],[-6,119],[43,147],[42,91],[79,111],[18,33],[0,28],[0,3],[-16,38],[-71,77],[-30,56],[-2,51],[-1,1],[-9,49],[-76,204],[-26,113],[0,83]],[[31107,34927],[0,7],[10,354],[-28,123],[-6,70],[8,85],[-2,52],[-13,47],[-3,83],[-2,104],[-21,66],[-5,30],[12,71],[23,37],[36,26],[42,8],[47,-8],[35,-32],[24,-55],[23,-29],[24,-1],[30,46],[27,98],[10,7],[0,430],[1,391]],[[31379,36937],[148,-1],[149,0],[148,0],[149,0],[148,0],[149,-1],[148,0],[149,0],[148,0],[148,0],[149,-1],[148,0],[149,0],[148,0],[149,0],[148,-1]],[[33754,36933],[0,-353],[0,-354],[0,-354],[0,-354],[0,-354],[0,-354],[0,-354],[0,-354],[0,-353],[0,-354],[0,-354],[0,-354],[0,-354],[0,-354],[0,-354],[0,-347],[0,-7]],[[31053,32656],[1,3]],[[31054,32659],[1,0]],[[31055,32659],[21,-259],[-76,49],[23,56],[30,151]],[[31054,32659],[-1142,-184]],[[29912,32475],[-4,25],[-3,90],[-15,27],[-53,335]],[[29837,32952],[-11,43],[-7,45],[-12,33],[-9,35]],[[29798,33108],[-31,75],[-19,52],[-7,12],[-11,25]],[[29730,33272],[-47,67],[-87,138],[-44,46],[-80,113],[-15,25],[-24,17],[-103,111]],[[29330,33789],[-30,32],[-46,134],[-44,18],[-86,-8],[-225,184],[-7,46],[-70,81],[-91,79],[-2,0],[-3,3]],[[28726,34358],[-157,18],[-51,30],[-55,8],[-95,-15],[-33,4],[-20,6],[-1,1],[-37,71],[-23,21],[-12,467]],[[28242,34969],[-4,9],[4,34],[-12,46],[-23,36],[-24,17],[-56,135],[7,55],[-18,60],[-59,55],[-55,126],[-14,14],[-134,275],[-7,31],[-95,226],[-67,117],[-42,326],[28,60],[21,74],[-2,69],[-6,50],[-35,88],[-135,52],[-110,216],[-6,165],[-43,169],[-1,110],[-7,119],[33,26],[26,-8],[2,-10]],[[27408,37711],[1,-2],[-3,-37],[3,-26],[-3,-6]],[[27421,37524],[89,-83],[3,-8],[22,-19],[24,-4],[-8,23],[2,0]],[[27515,37599],[-74,182],[-8,46],[-15,25],[-9,39],[34,47],[46,33],[62,9],[176,-15],[37,27],[31,-9],[23,4],[-48,27],[-27,-9],[-31,6],[-63,-5],[-26,11],[-28,34],[-18,3],[-58,-58],[-26,7],[-61,63],[-27,9],[-43,-36],[-5,-155],[5,-49],[-92,-3],[-2,1],[-38,43],[-53,81],[-28,29],[-12,-25],[-1,27]],[[27135,38043],[-5,14],[-3,101],[48,-104],[-15,73],[-37,80],[-29,28],[-35,144],[-50,54],[-80,140],[-15,32],[-131,231],[-9,204],[-28,150],[-1,52]],[[26745,39242],[-4,164],[5,37],[0,15],[5,30]],[[26751,39488],[-7,51],[0,7],[-24,157],[-1,2],[-2,18]],[[26717,39723],[-8,19],[-13,46],[-90,197],[-4,8]],[[26602,39993],[-1,1],[-12,27],[-102,158],[-16,118],[-7,120],[22,107],[2,10],[33,130],[4,-10],[-4,-24],[15,-8],[5,50],[9,25],[-15,4],[1,15],[10,32],[19,90],[19,77]],[[26584,40915],[4,258],[20,136],[-2,75],[-14,109],[0,28]],[[26544,41864],[-4,11],[0,33],[-8,16]],[[26532,41924],[130,0],[125,0],[126,0],[125,0],[125,0],[126,0],[125,0],[126,0],[125,0],[126,0],[125,0],[125,0],[126,0],[125,0],[126,0],[125,0]],[[28543,41924],[0,-187],[0,-187],[0,-188],[0,-187],[0,-187],[0,-187],[0,-187],[0,-187],[0,-188],[0,-187],[0,-187],[0,-187],[0,-187],[0,-188],[1,-187],[0,-187],[111,-163],[111,-163],[112,-163],[111,-164],[112,-163],[111,-163],[112,-163],[111,-163],[87,-138],[87,-137],[88,-138],[87,-138],[87,-137],[87,-138],[87,-137],[88,-138],[120,-198],[121,-197],[121,-198],[121,-198],[121,-198],[120,-198],[121,-197],[129,-212]],[[31053,32656],[-54,-11],[-136,-21],[-137,-22],[-136,-21],[-136,-21],[-136,-22],[-136,-21],[-136,-22],[-134,-21],[0,1]],[[29912,32475],[1142,184]],[[33754,36933],[0,250],[0,249],[0,250],[0,250],[0,249],[0,250],[0,249],[0,250],[0,249],[0,250],[0,249],[0,250],[0,249],[0,250],[0,250],[0,249]],[[33754,40926],[150,0],[149,0],[150,0],[149,0],[149,0],[150,0],[149,0],[150,0],[149,0],[149,0],[150,0],[149,0],[150,0],[149,0],[149,0],[150,0]],[[36145,40926],[119,0],[118,0],[119,0],[119,0],[119,0],[118,0],[119,0],[119,0],[0,-125],[0,-125],[0,-124],[0,-125],[0,-125],[0,-124],[0,-125],[0,-125]],[[37095,39928],[0,-187],[1,-187],[0,-187],[0,-188],[1,-187],[0,-187],[0,-187],[1,-187],[0,-187],[0,-188],[1,-187],[0,-187],[0,-187],[1,-187],[0,-187],[1,-188]],[[37101,36933],[-118,0],[-117,0],[-118,0],[-118,0]],[[36630,36933],[-179,0],[-180,0],[-180,0],[-180,0],[-179,0],[-180,0],[-180,0],[-180,0],[-179,0],[-180,0],[-180,0],[-180,0],[-179,0],[-180,0],[-180,0],[-180,0]],[[51473,41935],[0,-53],[1,-75],[0,-55],[0,-75],[1,-85],[0,-79],[1,-69],[-2,-40],[-3,-63],[-12,-24],[-5,-49]],[[51454,41268],[-27,-4],[-15,2],[-69,-15],[-5,-2],[-117,-20],[-19,8],[-20,-14],[-186,-31],[-21,-1],[-37,19],[-28,-41],[-74,-57],[-20,-11],[-131,-106],[-87,-67]],[[50598,40928],[-20,52],[-19,50],[38,38],[30,30],[27,28],[18,18],[-14,38],[-14,39],[3,94],[4,95],[4,95],[4,95],[4,95],[3,94],[4,95],[4,95]],[[50674,41979],[40,-3],[40,-2],[40,-3],[40,-3],[40,-3],[40,-2],[40,-3],[40,-3],[1,-26],[20,4],[3,22],[57,-1],[57,-1],[57,-2],[56,-1],[57,-2],[57,-1],[57,-2],[57,-1],[0,-11]],[[48985,38818],[-10,26],[-24,21],[-9,8]],[[48942,38873],[38,68],[25,-60],[27,-64],[-42,-81],[-5,82]],[[49923,38385],[-41,0],[-105,0],[-105,0],[-48,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,158],[-4,158],[-5,158],[-5,158],[-4,159],[-5,158],[-4,158],[-5,158]],[[49578,39650],[36,80],[15,25],[20,12],[59,4],[43,-28]],[[49751,39743],[-21,-35],[-2,-9],[-1,10]],[[49714,39670],[-18,-57],[-24,-45],[1,-24],[-9,-27]],[[49883,38723],[6,2],[20,-18],[2,-55],[-21,-90],[-28,-41],[36,8],[19,-21],[1,-6],[5,-117]],[[45190,30945],[20,-79],[38,-163],[1,-38],[45,-6],[76,-9],[75,-10],[76,-9],[76,-9],[76,-10],[76,-9],[76,-9],[75,-9],[76,-10],[76,-9],[76,-9],[76,-10],[76,-9],[75,-9],[76,-10],[76,-9],[0,-33],[13,-52],[3,-59],[6,-28],[15,-18],[24,-4],[24,33],[15,73],[4,82],[-9,93],[1,79],[12,46],[14,11],[13,25],[10,5],[26,-13],[99,-66],[80,-9]],[[46857,30675],[22,-90],[34,-370],[23,-129],[1,-6],[39,-357]],[[47304,28384],[1,-3],[-3,-6],[-6,-62],[-2,-93],[6,-91],[19,-110],[8,-38],[4,-62]],[[47331,27919],[11,-47],[-7,12],[-53,242],[-6,143],[8,202],[-12,-5],[-10,-66],[-6,-77],[-13,-30],[-19,118],[2,53],[19,62],[-6,23],[-31,32],[-6,50],[4,49],[-18,27],[-14,-2],[9,-122],[15,-74],[18,-180],[30,-108],[17,-91],[202,-973],[48,-123],[17,-89],[19,-186],[2,-132],[-26,-477],[-5,-66],[-1,-47],[-13,-227],[-1,17],[-8,4],[-29,-136],[-3,-12],[-1,0]],[[47454,25666],[-5,-31],[-20,-63],[-8,-128],[-10,-67]],[[47411,25377],[-14,-94],[-55,-99],[-35,2],[-44,-39],[-67,-28],[-34,11],[-71,-43],[-44,5],[-5,9],[-25,82],[4,40],[11,40],[18,10],[63,-95],[12,40],[-19,47],[-36,27],[-27,29],[-54,216],[-56,148],[-10,99],[-96,60],[-25,32],[-79,257]],[[46723,26133],[-21,68],[-17,186],[-31,32],[-13,23],[30,107],[32,89],[-26,-22],[-18,-33],[-24,-79],[-17,-13],[-9,7],[-10,33],[-15,125],[5,187],[26,69],[-39,2],[-41,-26],[6,-63],[-6,-34],[-29,9],[-23,22],[-30,65],[-27,78],[-55,207]],[[46371,27172],[-3,10],[-42,169],[-13,39],[-19,68]],[[46294,27458],[4,9],[21,7],[54,154],[43,92],[3,12],[14,50]],[[46358,27916],[-10,-15],[-3,6],[-26,23],[-19,-17],[20,-66],[0,0],[15,-54],[-5,-66],[-7,-32],[-16,-27],[-26,15],[-13,-24],[-15,24],[-33,118],[45,384],[42,249],[1,74],[3,17]],[[46311,28525],[-2,20],[3,172],[3,42],[-4,76],[-56,164],[-6,9],[-18,101]],[[46225,29109],[-39,1],[-179,288],[-104,258],[-16,44]],[[45859,29779],[-23,41],[-21,51],[-21,22],[0,2]],[[45658,30048],[-8,0],[-1,1],[-7,-2],[-55,-5]],[[45553,30038],[-15,-23],[-16,-5],[-21,-36],[-6,-27],[-49,-77]],[[45446,29870],[-23,-23],[-15,-4],[-111,-116],[-15,-7],[-35,3],[-38,-32],[-29,-24],[-75,-13],[-32,-15],[-29,-6]],[[45050,29755],[-21,56],[-3,10],[-2,3],[-5,12]],[[45001,29884],[-82,99],[-47,84],[25,-5],[7,31],[-26,41],[11,48],[18,50],[-35,-8],[-30,-35],[-1,-43],[-7,-34],[-16,5],[-31,42],[-152,118],[-62,31],[-4,3]],[[44569,30311],[-2,0],[-65,33],[102,30],[55,-24],[-6,36],[-14,23],[-43,28],[-56,-11],[-35,14],[-36,-28],[-39,-43],[-35,-22],[-137,-30],[-111,-33],[18,35],[19,22],[65,34],[10,71],[-15,69],[-18,-17],[-18,-53],[-22,38],[-25,0],[-6,-85],[-32,-57],[-14,-57],[-44,-21],[-56,-14],[-5,5],[27,54],[-2,31],[-19,-17]],[[47399,27634],[92,-474],[0,-5],[-43,171],[-54,267],[-22,153],[27,-112]],[[47366,25062],[-2,51],[17,20],[23,55],[1,49],[10,-20]],[[46910,24642],[-14,45],[1,18],[19,-27],[-6,-36]],[[46805,24548],[-9,-3],[25,39],[8,60],[15,-46],[0,-12],[-39,-38]],[[46712,24501],[-1,4],[3,11],[18,16],[13,-1],[0,-21],[-33,-9]],[[44897,34937],[155,-3],[154,-3],[155,-4],[154,-3]],[[45515,34924],[144,4],[144,3],[144,3],[144,4]],[[46091,34938],[-3,-1],[-24,-68],[-69,-127],[-19,-97],[90,-108],[0,-2],[54,-87],[37,-34],[38,-11],[23,-29],[14,-71],[0,0],[109,-348],[0,1],[113,-180],[45,-88],[23,-86],[96,-140],[33,-76],[2,-57],[12,-41],[21,-23],[20,-52],[20,-78],[38,-69],[58,-58],[42,-132],[26,-208],[28,-120],[41,-50],[56,-177],[19,-105],[-1,-93],[28,-72],[97,-80]],[[47158,31971],[-12,-41],[-22,-52],[-49,-44],[-18,2],[-14,-16],[8,-37],[15,-28],[0,-16],[-19,-44],[-27,-9],[-17,-40],[5,-37],[10,-21],[0,-6],[-7,-35],[-29,-30],[-9,-36],[18,-10],[5,4],[-19,-90],[-3,-6],[-17,-65],[-41,-18],[1,-21],[23,-18],[7,-19],[-25,-123],[-21,8],[-14,20],[-9,-73],[3,-38],[-8,-80],[-14,-95],[-10,-39],[2,-72],[6,-71]],[[46889,30815],[-13,-143],[-9,86],[-1,83],[16,50],[8,11],[-1,-87]],[[9711,22178],[45,3],[53,-1],[2,-2]],[[9811,22178],[20,-24],[0,0],[14,-40],[0,-3],[2,-46],[-14,-55],[-6,-76],[-14,-42],[-42,-56],[-24,24],[-46,10],[-18,42],[-42,33],[-9,12],[-13,34],[0,0],[20,90],[0,0],[4,15],[0,0],[68,82]],[[10606,21245],[-30,-12],[-4,-1],[-19,6],[-15,14],[-25,50],[-27,-14],[-5,40],[-5,12],[-18,-11],[17,-52],[-35,-3],[-27,9],[-13,55],[-29,68],[-19,63],[0,25],[-14,47],[0,0],[7,7],[0,0],[62,13],[49,91],[23,8],[0,0],[45,-124]],[[10579,21399],[49,-142],[-4,-4],[0,0],[-18,-8]],[[10826,21181],[13,-3],[1,-1],[101,-28],[5,3],[30,-7],[5,-6],[69,-12],[17,-4],[12,-6],[-28,-61],[-43,-38],[-76,41],[-128,15],[3,26],[5,21],[9,21],[1,22],[4,17]],[[11245,20894],[55,4],[0,0],[21,-23],[0,0],[32,-40],[0,0],[15,-33],[41,-48],[10,-27],[0,0],[1,-15],[0,0],[-9,-35],[-45,-70],[-60,-16],[-36,-30],[-47,7],[-14,12],[-5,88],[-15,95],[-30,-11],[-34,32],[-34,75],[0,0],[4,46]],[[11135,20993],[13,-12],[0,0],[16,-27],[22,-60],[12,-17],[42,22],[0,0],[5,-5]],[[11443,19817],[18,41],[0,0],[0,1],[36,86]],[[11497,19945],[2,23],[4,10],[-2,8],[1,5]],[[11502,19991],[-5,12],[-29,128],[9,90],[0,0],[8,8],[0,0],[3,3],[0,0],[146,-141]],[[11796,19933],[60,-142],[6,-79],[34,-15],[4,-11],[16,-77],[44,-65],[0,0],[23,-53]],[[11983,19491],[-2,-18],[0,0],[-17,-54],[-96,-135],[-122,-59],[-107,-151],[-19,-81],[0,0],[-34,21]],[[11586,19014],[-123,75],[-1,2],[7,256],[-35,208],[-20,78],[29,184]],[[42129,40306],[-41,53],[-8,37],[-34,37],[-5,24],[-26,21],[-23,73],[-120,-2],[-120,-1],[-120,-2],[-120,-1],[-120,-2],[-120,-1],[-120,-2],[-120,-1],[-120,-1],[-120,-2],[-120,-1],[-120,-2],[-120,-1],[-120,-2],[-120,-1],[-119,-1]],[[40073,40528],[-29,74],[-16,69],[10,32],[2,112],[-6,190],[-12,108],[-17,24],[-2,33],[13,42],[-4,29],[-21,15],[-6,36],[8,58],[-5,35],[-18,13],[-8,20],[3,27],[-9,17],[-23,8],[-9,65],[4,123],[-8,87],[-21,51],[-11,48],[0,45],[-23,70],[-45,97],[-28,127],[-14,157],[-32,88],[-14,6]],[[39732,42434],[-12,82],[-13,36],[-2,29],[-40,71],[-2,27],[5,34],[25,67],[24,111],[5,74],[19,56],[1,30],[-4,41],[-10,35],[-31,26],[-4,11],[-3,40],[13,26],[3,29],[-3,35],[-19,62],[-8,62],[69,4]],[[39745,43422],[155,0],[155,0],[154,0],[155,0],[155,0],[154,0],[155,0],[155,0],[155,0],[154,0],[155,0],[155,0],[154,1],[155,0],[155,0],[157,0]],[[42223,43423],[3,-62],[10,-45],[19,-36],[29,-28],[5,-53],[-20,-78],[-6,-97],[6,-116],[15,-105],[23,-92],[52,-69],[81,-43],[48,-66],[15,-90],[3,-8]],[[42506,42435],[29,-68],[50,-61],[28,-58],[7,-53],[30,-57],[54,-61],[32,-53],[8,-47],[-1,-72],[-12,-98],[-19,-70],[-28,-43],[-21,-60],[-13,-78],[-42,-71],[-72,-66],[-79,-45],[-88,-24],[-52,-56],[-16,-89],[7,-74],[31,-60],[18,-63],[4,-67],[-21,-111],[-49,-155],[-54,-100],[-59,-45],[-26,-67],[7,-89],[-5,-51],[-25,-17]],[[30423,48904],[0,-246],[0,-247],[0,-247],[0,-247],[51,-100],[38,-62],[24,-66],[37,-70],[7,-24],[14,-75],[-10,-54],[20,-55],[-4,-27],[-15,-14],[-3,-4],[1,-6],[5,-9],[52,-52],[51,-74],[65,-50],[20,-30],[86,-146],[44,-94],[47,-68],[23,-78],[48,-68],[12,-34],[3,-8],[7,-1],[29,17],[8,-5],[15,-27],[3,-41],[11,-17],[18,-10],[21,-2],[66,20],[14,0],[7,-9],[3,-21],[-1,-37],[-7,-50],[-19,-51],[3,-47],[-15,-109],[-15,-73],[-2,-71],[-18,-41],[10,-48],[-7,-74],[7,-19],[23,-35],[9,-91],[-4,-16],[-41,-36],[-15,-23],[-5,-33],[18,-96],[-17,-53],[-3,-46],[4,-11],[39,-25],[46,-54],[15,-11],[10,2],[20,18],[22,36],[44,37],[53,79],[3,22],[4,13],[6,-1],[17,-11],[33,-48],[29,-26],[5,-6],[3,-13],[-2,-48],[16,-37],[5,-62],[16,-61],[12,-75],[43,-95],[23,-69],[26,-31],[16,-36],[11,-44],[4,-35],[-15,-64],[4,-26],[14,-30],[44,-66],[9,-5],[41,7],[23,-11],[22,-33],[22,-50],[15,-50],[4,-60],[23,-66],[3,-59],[14,-26],[28,-35],[27,-21],[11,-1],[7,9],[3,32],[11,25],[34,35],[32,-1],[121,-29],[9,2],[5,9],[21,54],[17,21],[25,6],[75,-13],[87,8],[45,-15],[65,19],[76,-14],[10,8],[2,11],[-6,20],[-2,40],[16,47],[5,40],[15,22],[21,13],[17,-2],[15,-21],[19,-36],[32,-97],[18,-34],[20,-31],[32,-26]],[[32801,44418],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156]],[[32801,41924],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0],[-88,0],[-89,0],[-89,0],[-89,0],[-89,1],[-89,0]],[[31378,41925],[-177,-1],[-177,0],[-177,0],[-177,0],[-177,0],[-176,0],[-177,0],[-177,0]],[[29963,41924],[0,223],[-1,223],[0,222],[0,223],[0,223],[0,223],[-1,222],[0,246],[0,4],[30,151],[6,73],[-8,42],[6,40],[18,38],[-1,42],[-19,46],[-36,30],[-53,14],[-27,54],[-2,92],[39,142],[81,191],[44,136],[8,79],[49,183],[89,288],[35,184],[-21,81],[-46,77],[-70,73],[-50,86],[-13,43]],[[30020,45918],[-16,54],[-8,68],[12,39],[-10,69],[-32,97],[-14,67],[3,23],[4,9],[-1,161],[0,160],[0,160],[-1,160],[0,160],[-1,160],[0,160],[0,160],[-1,160],[0,160],[0,160],[-1,160],[0,160],[-1,160],[0,160],[-1,159]],[[42506,42435],[218,-2],[215,-3],[214,-2],[214,-3],[214,-2],[214,-3],[61,0]],[[43856,42420],[0,-156]],[[43978,41690],[17,-38]],[[43995,41652],[-1,-267],[-1,-299],[0,-299],[-1,-299],[-1,-299],[-1,-300],[0,-299],[-1,-283],[0,-4],[-22,-31],[-15,-52],[4,-57],[-6,-41],[-15,-25],[7,-62],[30,-99],[18,-98],[6,-97],[-5,-69],[-26,-63],[-25,-137],[-21,-54],[-26,-18],[-23,-51],[-21,-83],[-22,-41],[-23,3],[-17,-16],[-11,-33],[1,-34],[14,-37],[-4,-33],[-23,-31],[0,-15],[7,-9],[-2,-15],[-15,-15],[-8,-46],[1,-77],[-8,-38],[-16,-1],[-2,-22],[26,-86]],[[43747,37720],[-15,-18],[-27,-71],[-5,-79],[16,-86],[-40,-70],[-94,-53],[-51,-47],[-5,-40],[6,-62],[19,-84],[3,-57],[-12,-32],[-67,21],[-123,76],[-83,-3],[-42,-80],[-14,-61],[5,-49]],[[43218,36925],[-34,60],[-23,27],[-4,-2],[-5,-7],[-2,-19],[2,-13],[3,-16],[-2,-10],[-5,0],[-24,23],[-30,67],[-35,110],[-7,87],[19,66],[0,68],[-19,71],[-10,70],[0,69],[-47,102],[-95,137],[-70,84],[-45,32],[-52,69],[-60,104],[-32,80],[-4,56],[28,148],[79,322],[8,38],[3,14],[-4,14],[-7,13],[-33,38],[-64,32],[-59,18],[-47,-38],[-41,77],[-35,194],[-87,205],[-138,216],[-81,146],[-22,77],[-19,116],[-17,154],[1,129],[27,153]],[[43995,41652],[3,-7]],[[44208,41593],[100,91]],[[44308,41684],[118,0],[144,0],[144,0],[144,0],[144,0],[145,0],[144,0],[0,-59]],[[45291,41625],[-2,-324],[-1,-325],[-2,-325],[-2,-325],[-1,-325],[-2,-324],[-1,-325],[-1,-331]],[[45279,39021],[-8,-10],[-11,-42],[12,-44],[0,-35],[-13,-28],[4,-20],[23,-13],[8,-31],[-5,-49],[-48,-50],[-92,-56],[-20,-16],[-16,-7],[-8,3],[0,0],[-11,11],[-17,22],[-29,11],[-47,-8],[-19,-46],[10,-87],[-16,-66],[-42,-46],[-30,-61],[-18,-76],[-28,-45],[-39,-17],[-32,-70],[-24,-124],[-26,-76],[-29,-30],[-39,8],[-49,44],[-29,46],[-8,47],[-14,34],[-14,15],[-9,0],[0,-6],[3,-14],[-4,-14],[-31,-5],[-13,-19],[4,-34],[-7,-25],[-18,-14],[-9,-32],[-1,-51],[-13,-47],[-24,-42],[-35,14],[-46,71],[-47,16],[-48,-38],[-36,-52],[-23,-65],[-23,-16],[-32,50],[-78,68],[-40,15],[-29,-17],[-21,8],[-7,19],[-5,7],[-6,-9],[0,-59],[-7,-38],[-14,-16],[-10,13],[-7,40],[-16,13],[-27,-14],[-26,6],[-23,25],[-9,-3],[-6,-11],[1,-47],[-5,-37],[-12,-24],[-17,-6],[-23,13],[-9,-12]],[[37095,39928],[100,0],[99,0],[100,0],[100,0],[100,0],[99,0],[100,0],[100,0],[99,0],[100,0],[100,0],[100,0],[99,0],[100,0],[100,0],[99,0],[100,0],[100,0],[99,0],[100,0],[100,0],[100,0],[99,0],[100,0],[100,0],[99,0],[100,0],[100,0],[100,0],[99,0],[100,0],[86,1]],[[40272,39929],[109,-130],[29,-1],[34,20],[26,-29],[17,-80],[-2,-40],[-23,-2],[-28,-48],[-33,-94],[8,-88],[50,-83],[34,-83],[16,-83],[33,-65],[74,-70],[-1,-38],[1,-130],[0,-130],[0,-130],[0,-131],[0,-130],[0,-130],[1,-130],[0,-130],[0,-130],[0,-130],[0,-130],[1,-130],[0,-130],[0,-130],[0,-131],[0,-130]],[[40618,36933],[-110,0],[-109,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-109,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-110,0],[-109,0]],[[45279,39021],[26,33],[28,4],[22,-35],[32,-8],[41,17],[37,-12],[34,-41],[33,-75],[30,-110],[54,-66],[78,-24],[57,-43],[37,-62],[29,-20],[35,33],[37,17],[37,-20],[50,-52],[73,11],[96,75],[57,-3],[17,-83],[41,-86],[66,-90],[4,-3]],[[46330,38378],[11,-28],[5,-148],[-3,-29],[-17,-61],[1,-32],[14,-50],[51,-116],[5,-45],[20,-44],[17,-66],[54,-141],[84,-116],[66,-31]],[[46638,37471],[-180,-242],[-83,-88],[-78,-71],[-6,-12],[-18,-77],[-48,-69],[-29,-73],[-71,-61],[-51,-83],[-127,-81],[-71,-28],[-48,-48]],[[45828,36538],[-4,-2],[-4,-2],[-3,-3],[-4,-2],[-4,-2],[-4,-2],[-3,-3],[-4,-2],[-165,10],[-165,10],[-165,9],[-166,10],[-165,10],[-165,10],[-165,9],[-165,10],[-159,-5],[-158,-5],[-158,-6],[-159,-5],[-14,31],[-41,7],[-65,11],[-2,0],[19,-102],[0,-90],[-1,-1],[-75,0],[-82,0],[-82,0],[-82,0],[-82,0],[-83,0],[-82,0],[-94,0]],[[43077,36433],[25,88],[22,23],[10,5],[24,-16],[11,-5],[25,31],[23,90],[12,95],[4,100],[-15,81]],[[43059,36437],[-33,-2]],[[43026,36435],[-1,12],[2,27],[3,12],[6,3],[8,-1],[11,-26],[4,-25]],[[42268,32956],[3,-49],[23,-29],[1,-53],[-20,-76],[0,-53],[21,-30],[-1,-31],[-23,-34],[-4,-35],[16,-39],[8,-45],[-2,-51],[21,-66],[33,-43],[22,-50],[2,-28],[1,-26],[-5,-37],[-27,-54],[-20,-40],[-13,-14],[-7,-27],[-1,-59],[-31,-75],[-62,-86],[-41,-110],[-20,-134],[-21,-85],[-22,-36],[-11,-70],[0,-103],[-14,-57],[-29,-11],[-5,-59],[16,-108],[-7,-45],[-20,-35],[-2,-28],[114,0],[114,0],[115,0],[114,0],[114,0],[115,0],[114,0],[114,0],[-14,-115],[-33,-155],[-2,-41],[9,-50],[0,-29],[12,-42],[28,-42],[24,-64],[21,-113],[6,-53],[18,-73],[9,-14],[13,-8],[6,-5]],[[43038,30141],[-25,-28],[-2,-2],[-174,103],[-43,82],[-39,18],[-47,10],[-51,-102],[-38,-137],[61,-75],[52,-36],[86,30],[48,67],[39,-2],[18,13],[17,35],[33,-27],[1,-23],[-85,-101]],[[43112,29852],[9,10],[-3,-77],[4,-19],[-48,-36],[-35,-12],[-29,-47],[15,-27],[-29,-24],[-20,10],[-10,-9],[-3,-29],[-15,-27],[21,-75],[0,-6]],[[43041,29364],[31,-15],[102,-69],[26,2],[20,-43],[15,-44],[13,-15],[16,-35]],[[43272,29082],[0,-2],[-33,-34],[-7,-33],[-27,-25],[-7,13],[-19,27],[-45,-82],[-22,-18],[11,89],[-17,35],[-26,89],[-29,44],[-40,75]],[[42894,29399],[-14,-3],[-6,8],[-134,79],[-1,-32],[9,-25],[19,-16],[23,-32],[0,-91],[-26,-75]],[[42562,29250],[-11,-22],[-15,-10],[-17,-48],[-5,-9]],[[42514,29161],[-93,-64],[-83,43],[-74,52],[-20,54]],[[42244,29246],[-12,30],[36,-12],[-2,33],[-42,107],[-8,48],[5,58],[-14,-1],[-25,-49],[-48,23],[-86,130],[-28,79],[-25,1],[-53,81]],[[41920,29781],[-5,-1],[0,2],[-7,-4],[-25,-7]],[[41883,29771],[-12,-16],[-15,-9],[-30,-40],[-9,-19],[-32,-42]],[[41829,29567],[-80,-60],[-9,-4],[-182,37],[-14,6]],[[41517,29569],[-86,71],[-20,20],[-106,65],[-52,10],[-50,-13],[-145,-6],[-34,-18],[-29,-27],[-19,30],[-8,55],[17,8],[18,32],[17,63],[2,39],[-12,25]],[[41010,29923],[32,99],[8,36],[-5,170],[-14,61],[2,36],[15,93],[-2,85],[26,102],[19,53],[22,110],[5,70],[9,53],[-7,57],[16,42],[-10,57],[-3,77],[-19,29],[-33,112],[1,50],[-34,105],[-1,36],[-33,55],[-6,35],[-3,146],[-9,43],[-28,84],[-66,122],[0,126],[0,127],[0,126],[0,126],[0,127],[1,126],[0,126],[0,127]],[[50674,41979],[-13,24],[15,84],[16,84],[15,84],[15,84],[15,84],[15,84],[15,83],[15,84]],[[50782,42674],[47,-2],[47,-3],[46,-3],[47,-3],[47,-2],[47,-3],[47,-3],[46,-3]],[[51156,42652],[68,-3],[68,-4],[67,-3],[68,-3],[67,-4],[68,-3],[68,-4],[67,-3],[42,27],[49,78],[30,17],[48,46],[25,10],[52,-4]],[[51943,42799],[-2,-26],[-6,-26],[14,-51],[9,-50],[3,-23]],[[51961,42623],[-102,-320],[-27,-49],[8,-11],[-6,-17]],[[51907,42198],[4,2],[2,-1],[108,-267],[-3,-22],[19,-18],[8,-21]],[[52134,41668],[32,-4],[23,-11],[11,6],[18,-3]],[[52319,41712],[3,31],[7,7],[-2,46],[-1,1],[1,9]],[[52256,41986],[-4,-5],[-4,5],[-9,-21],[-4,-5],[-16,31],[21,15]],[[52240,42006],[56,-38],[15,-29],[3,-6]],[[52336,41873],[17,-103],[5,-38],[3,-98],[-7,-33],[-18,7],[-34,-7],[-165,-50],[-12,-15],[-79,30]],[[51998,41653],[-27,-46],[-105,-134],[-50,-11],[-42,-48],[-10,27],[-7,124],[26,105],[-14,-2],[-26,-37]],[[51743,41631],[-16,44],[-18,23],[-17,24],[1,37],[1,56],[-20,11],[-3,69],[-1,45],[-36,-1],[-29,0],[-47,-2],[-49,-1],[-36,-1]],[[48942,38873],[-33,25],[-52,84],[-86,60],[-12,29],[2,33],[11,45],[-26,45],[-64,44],[-28,37]],[[48654,39275],[-6,8],[-3,45],[-8,29],[-14,13],[-3,20],[9,26],[-9,29],[-26,31],[-9,28],[8,23],[-13,11],[-35,-1],[-34,22],[-33,47],[-40,7],[-69,-46],[-38,-11],[-18,-27],[-8,-45],[-17,-23],[-37,0],[-6,1],[-43,15],[-31,29],[-5,11],[3,24],[-6,12],[-9,1],[-9,-14],[-9,-42],[-74,-116],[-36,23],[-14,-1],[-103,-164],[-32,-26],[-61,-75],[1,128],[2,128],[1,128],[1,127]],[[47821,39650],[110,0],[110,0],[110,0],[109,0],[110,0],[110,0],[110,0],[110,0],[109,0],[110,0],[110,0],[110,0],[110,0],[109,0],[110,0],[110,0]],[[49923,38385],[2,-40]],[[49925,38345],[-9,-41],[0,36],[-7,15],[-13,-19],[-9,-22],[-3,-86],[-9,-43],[-31,-12],[-32,-113],[-29,-64],[-11,-40]],[[49772,37956],[-44,-10],[-72,-16],[-16,-40]],[[49640,37890],[1,7]],[[49611,37909],[-9,-5],[-1,0],[-44,-1],[-4,37],[4,23],[16,54],[-29,54],[-7,3],[-7,56]],[[49530,38130],[1,18],[9,43],[-6,57],[0,1],[9,43],[-15,-6],[-9,-19],[-15,5]],[[49494,38274],[-11,-14],[-1,2],[-10,-9],[-2,-9],[-23,-29],[-27,33],[-45,43],[-25,75],[-15,58],[15,106],[31,18],[41,-17],[53,0],[-8,24],[-19,-4],[-56,85],[-18,52],[-12,5],[0,62],[34,27],[-11,63],[-23,26],[0,16]],[[49362,38887],[-4,51],[1,0],[28,-18],[24,91],[1,41],[-40,-60],[-9,128],[40,123],[37,53],[19,-2]],[[49462,39293],[1,3],[24,-1],[47,9],[-29,23],[-31,12],[23,49],[20,8],[19,43],[-46,-6],[5,80],[-3,-3],[0,4]],[[49492,39514],[-23,-19],[-23,-6],[-5,-16],[-9,-7]],[[49432,39466],[-67,-111],[-7,12],[-2,-26],[-8,-14]],[[49348,39327],[-18,-31],[-12,36],[-8,-16],[1,-23],[-6,-37],[-3,-6],[-20,-18],[1,-13],[-31,-51],[-48,30],[-2,-15],[33,-78],[-5,-123],[-14,15],[-6,-3],[17,-60],[-10,-230]],[[49229,38469],[41,-176],[-3,-1],[-34,42],[-30,32],[-35,102],[-6,41],[-9,33],[4,-75],[13,-83],[111,-186],[21,-71],[15,-56],[-1,-18],[-6,-31],[-26,34],[-25,48],[-66,55],[-58,24],[-32,29],[-40,108],[0,-53],[-4,-16],[-39,36],[-15,37],[-6,51],[-36,-3],[-37,-45],[-37,11],[-4,87],[10,46],[41,109],[38,55],[17,72],[-6,111]],[[49839,37970],[-8,-2]],[[49831,37968],[13,35],[32,126],[-37,-159]],[[53376,45672],[-30,-16]],[[53543,45524],[0,1]],[[53698,45087],[-3,-30],[13,-51],[1,-4],[10,-95],[-16,-45],[3,-59],[44,-17],[11,-18],[2,-22],[-97,-152],[-57,15],[1,17]],[[53610,44626],[-17,-13],[-9,2],[-45,-40],[-46,-12],[-9,-28],[-91,-38],[-12,7],[-23,-9],[-17,-62],[-19,-59],[-23,9],[-11,-44],[-12,-17],[-38,31],[-1,5],[-11,52],[-17,11],[-21,12],[-1,3]],[[53187,44436],[-3,-2],[-20,0],[-15,-8],[-18,-33],[-16,-17],[-13,-10],[-19,22],[-16,38],[-14,-61],[-16,-54],[-22,-18]],[[52957,44329],[-25,15],[11,18],[-12,11],[-19,-8],[-9,8],[14,56],[1,60],[-17,-21],[-23,-64],[-54,-51],[1,-34],[-9,-14]],[[52786,44153],[-102,-243],[-42,11],[-23,-23],[-17,-5]],[[52602,43893],[-46,-61],[-8,50],[-7,21],[-16,-96],[-16,-6],[-6,68],[-8,45],[-22,-39],[-15,-103],[-15,9],[-5,38],[-11,12],[-4,-44],[5,-55],[-92,51]],[[52336,43783],[-19,-21],[-17,-7],[-55,-68],[-43,-95],[5,-6],[-88,-253],[-37,-63],[-51,-189],[-10,-29],[-20,-21],[-20,-40]],[[51981,42991],[-38,94],[-8,75],[-43,89],[-17,61],[-5,69],[2,74],[-4,110],[-3,111],[-4,111],[-4,110],[-3,111],[-4,111],[-4,110],[-3,111],[-4,111],[-3,110],[-4,111],[-4,111],[-3,110],[-4,111],[-4,110],[-3,99]],[[46314,42480],[3,17]],[[45936,41690],[-7,-21]],[[45929,41669],[-4,-6],[-159,-9],[-158,-10],[-159,-9],[-158,-10]],[[44308,41684],[31,28]],[[43954,45026],[-22,14],[-20,39],[-11,40],[-1,41],[27,103],[3,16],[-3,10],[-16,11],[-34,-18],[-35,-4],[-11,7],[-5,18],[1,27],[7,33],[21,60],[0,57],[10,33],[-10,61],[3,29],[-15,32],[-39,42],[-92,55],[9,63],[-4,26],[-22,41],[-97,46],[-66,22],[-65,0],[-46,17],[-53,6],[-33,28],[-34,28],[-33,28],[-34,28],[-59,24],[-60,24],[-59,24],[-59,24],[-60,24],[-59,24],[-60,24],[-59,24],[-13,42],[-14,42],[-13,42],[-13,42],[-28,18],[-14,9],[-11,22],[-24,-10],[-10,36],[2,8]],[[42621,46508],[32,10]],[[43956,45075],[-2,-49]],[[43016,47914],[-13,-10]],[[41814,46704],[-1,-27]],[[41813,46677],[-9,1],[-33,-56],[-14,-36],[-32,-10],[0,-144],[0,-144],[0,-144],[0,-144],[-16,-14],[-20,-34],[-27,-8],[-128,-119],[-21,-34],[-23,-79],[-42,-89],[-11,-48],[2,-63],[65,-52],[24,-49],[11,-61],[-1,-52],[-33,-103],[-6,-41],[4,-126],[-16,-39],[13,-102],[1,-35],[-10,-111],[-7,-33],[12,-58],[2,-6],[60,-80],[50,-45],[46,-14],[35,-34],[26,-54],[35,-36],[43,-17],[45,-45],[68,-111],[34,-94],[59,-68],[96,-72],[63,-63],[29,-55],[20,-138],[16,-295]],[[39745,43422],[0,224],[0,224],[0,224],[0,224],[0,224],[0,225],[0,224],[0,224],[-36,74],[-79,60],[-20,36],[-37,89],[-14,39],[-3,30],[18,33],[72,96],[23,44],[11,44],[16,99]],[[39696,45859],[-6,76],[4,119],[-15,89],[-3,44],[-9,56],[-54,145],[-13,117],[-13,58],[-5,149],[2,42],[11,80],[-23,54],[-4,45],[-10,354],[-8,50],[2,165],[-41,172],[-20,59],[-10,71],[1,34],[-34,118],[-23,130],[2,112],[-7,85],[3,66],[-6,99],[7,57],[0,87],[-46,312]],[[40618,36434],[0,125],[0,125],[0,125],[0,124]],[[40272,39929],[-8,8],[-34,86],[-14,102],[-27,66],[-41,31],[-26,67],[-11,104],[-26,104],[-12,31]],[[43077,36433],[-1,-2],[-9,-9],[-7,10],[-1,5]],[[43026,36435],[8,-75],[-7,-53],[-23,-21],[-4,-30],[13,-35],[0,-15],[-5,-13],[-16,-4],[-12,-7],[-10,-27],[19,-53],[-3,-63],[-27,-74],[-3,-29]],[[43576,30347],[-212,18]],[[43364,30365],[-11,-5],[-1,1],[-16,-1],[-26,-17],[-116,-49]],[[43194,30294],[-23,-9],[-5,3],[-27,2],[-34,-69],[-67,-80]],[[42676,34937],[121,0],[126,0],[127,-1],[126,0],[126,0],[127,0],[126,-1],[129,0]],[[36139,48904],[1,-190],[1,-190],[0,-190],[1,-191],[1,-190],[0,-190],[1,-191],[1,-190],[0,-190],[1,-191],[1,-190],[0,-190],[1,-191],[1,-190],[0,-190],[1,-191]],[[36150,45859],[1,-232],[0,-232],[1,-232],[1,-232],[0,-3],[0,-3],[0,-3],[0,-3],[-4,0],[-4,0],[-4,0],[-4,0]],[[36137,44919],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[0,-125],[0,-126],[0,-125],[0,-125]],[[45515,34924],[18,213],[12,48],[14,11],[50,1],[31,25],[28,127],[63,101],[28,25],[43,20],[100,24],[108,98],[78,92],[62,26],[19,34],[14,44],[9,61],[7,12],[35,-4],[28,52],[26,30],[26,17],[16,1],[7,-16],[4,-45],[6,-14],[11,-2],[15,11],[21,28],[52,90],[35,34],[53,20],[39,-47],[24,16],[68,183],[27,33],[20,13],[36,3],[0,51],[12,75],[2,52],[21,77]],[[46783,36544],[9,-16],[172,-2],[172,-3],[172,-3],[172,-3],[172,-3],[172,-3],[172,-2],[173,-3],[172,-3],[172,-3],[172,-3],[172,-2],[172,-3],[172,-3],[172,-3],[118,-1]],[[49491,36485],[-7,-46],[-23,33]],[[49461,36472],[34,-327],[-46,23],[-44,45],[3,-64],[-4,-69],[-34,21],[-23,23],[18,-67],[-5,-3],[-37,18],[-30,-4],[-10,-35],[-147,116]],[[49136,36149],[-6,-27],[-4,41],[-2,-71],[-5,-26]],[[49130,35878],[45,3],[10,-3],[17,4],[88,6],[15,-1],[6,2],[132,9],[4,-85],[-8,-91],[-3,-97],[18,1],[21,31],[11,173],[59,65],[13,-3],[25,-70]],[[49583,35822],[3,-7],[4,-37],[7,-78],[-14,-118],[-91,-138],[-66,-128],[-33,-26],[-48,15],[-55,32],[-27,6],[-20,-11],[-13,40],[-8,72],[-21,24],[-16,-3],[-11,-76],[-51,-22],[-70,31],[-72,65],[31,-69],[180,-129],[21,-24],[18,-35],[-25,-55],[-20,-62],[-2,-49],[-7,-31],[-72,-82],[-39,14],[-100,150],[46,-130],[36,-55],[73,-29],[137,49],[45,-53],[-37,-94],[-36,-65],[-49,-7],[-42,-18],[-8,-28],[-99,-8]],[[49032,34653],[-45,-18],[-11,-1],[-40,11],[-56,-92],[-21,-13],[-30,17],[-12,74],[-13,36],[-1,-138],[5,-37],[11,-28],[-65,-75],[-63,-94],[-23,-26],[-25,-47],[-32,-82],[-56,-98],[-9,65],[-4,-88],[-94,-167],[-117,4],[-75,-41]],[[48256,33815],[-69,121],[-64,114],[-64,114],[-65,114],[-64,114],[-64,113],[-64,114],[-65,114],[-67,4],[-67,4],[-67,4],[-68,4],[-67,4],[-67,4],[-67,4],[-67,4],[-3,79],[-2,55],[-42,95],[-25,56],[-53,-48],[-2,23],[2,42],[-5,14],[-15,11],[-75,5],[-76,6],[-75,6],[-75,6],[-76,5],[-75,6],[-76,6],[-75,5],[-18,10],[-34,-33],[-89,-50],[-44,-44],[-16,3],[-76,-43],[-76,-42],[-8,0]],[[49528,36484],[12,0]],[[49540,36484],[21,-117],[30,-204],[15,-56],[20,-114]],[[49609,36031],[-6,13],[-17,76],[-37,225]],[[49549,36345],[-2,3],[-19,136]],[[39696,45859],[-111,0],[-110,0],[-111,0],[-111,0],[-111,0],[-111,0],[-110,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-110,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-110,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-110,0],[-111,0],[-111,0],[-111,0],[-111,0],[-110,0],[-111,0],[-111,0]],[[36145,40926],[-1,250],[0,249],[0,250],[-1,250],[0,249],[-1,250],[0,249],[-1,250]],[[36141,42923],[165,0],[165,0],[164,0],[165,0],[165,0],[164,0],[165,0],[165,0],[164,0],[165,0],[165,0],[164,0],[165,0],[165,0],[164,0],[188,0],[142,-149],[85,-46],[40,43],[87,25],[134,7],[85,-21],[35,-47],[69,-53],[102,-58],[62,-64],[20,-69],[36,-44],[36,-13]],[[51981,42991],[-17,-101],[-19,-55]],[[51944,42812],[-1,-13]],[[51156,42652],[-8,36],[-26,64],[-7,26],[2,30],[14,80],[11,25],[11,47],[17,186],[15,107],[10,197],[11,57],[12,35],[19,93],[36,76],[23,93],[28,81],[4,48],[21,103],[15,184],[14,29],[63,25],[20,19],[68,76],[22,32],[13,32],[10,51],[8,14],[2,28],[-24,120],[-1,44],[52,136],[-11,80],[8,19]],[[49916,39911],[24,33],[54,62],[83,75],[-115,251],[-27,15],[-30,122],[-35,34],[-9,19],[-1,94],[3,54],[5,31],[30,27],[17,54],[1,28],[-23,87],[0,27],[43,53],[57,103],[34,113],[13,33],[17,24],[37,32]],[[50094,41282],[47,-46],[48,-45],[47,-46],[47,-46],[47,-45],[47,-46],[47,-45],[46,-45]],[[50470,40918],[-8,-78],[-47,-158],[-20,-37],[-23,-32],[-18,-14],[-16,-25],[-19,-40],[-18,-79],[4,-25],[-3,-39]],[[50302,40391],[9,-4],[1,-5],[43,-12],[40,-16]],[[50395,40354],[2,4],[6,-2],[16,14],[4,-109]],[[50427,40144],[-40,-379],[9,155],[-15,-17],[-10,-38],[-28,-211],[-38,-112],[-35,-78],[-37,13],[8,-62],[-10,-32],[-8,-68],[-22,-44],[-20,4],[-29,-31],[-12,-23],[-1,-45],[-19,-40],[-50,-145],[-80,-11],[10,94],[-37,43],[-36,22],[-41,-3],[-45,77],[-56,53],[-4,6],[-5,10],[-44,376],[19,59],[32,40],[95,41],[24,61],[14,52]],[[50324,39520],[-17,-47],[0,13],[69,188],[-1,-7],[-51,-147]],[[36630,36933],[1,-124],[0,-125],[0,-125],[0,-124]],[[36631,36435],[-20,-1],[-1,-281],[-1,-280],[0,-281],[-1,-280],[-1,-281],[0,-281],[-1,-280],[-1,-281],[0,-280],[-1,-281],[-1,-281],[-1,-280],[0,-281],[-1,-280],[-1,-281],[0,-281],[-107,0],[-107,0],[-107,0],[-107,0],[-107,0],[-107,0],[-107,0],[-107,0],[-107,0],[-107,-1],[-107,0],[-107,0],[-107,0],[-106,0],[-107,0],[-107,0],[-3,0],[48,-181],[0,0],[58,-52]],[[34992,31710],[-4,2],[-11,0],[-93,1],[-105,2],[-105,1],[-104,1],[-105,1],[-104,1],[-105,1],[-50,1],[-55,0],[0,-112],[0,-91],[0,-21],[0,-112],[-1,-113],[-168,0],[-168,-1],[-60,0]],[[28543,41924],[178,0],[177,0],[178,0],[177,0],[177,0],[178,0],[177,0],[178,0]],[[31378,41925],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156],[1,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-156],[0,-155],[0,-156]],[[48019,43204],[4,2]],[[49577,44403],[-5,7]],[[50735,44923],[0,-5],[4,-61],[-10,-78],[8,-85],[-11,-178],[29,-137],[-7,-92],[2,-99],[-5,-24],[-24,-57],[-13,-56],[-8,-57],[1,-36],[19,-162],[4,-72],[0,-42],[-18,-134],[-1,-38],[5,-11],[6,0],[21,42],[8,6],[12,-10],[28,-63],[-1,-114],[-2,-82],[-1,-92],[-2,-137],[-1,-100],[-1,-92],[-1,-70],[-7,-52],[13,-61]],[[50591,40916],[-76,-135],[-17,-24],[-29,-15],[-17,-39],[-19,-26],[18,87],[20,74],[17,142],[-5,116],[-21,47],[-21,32],[25,-114],[4,-140],[0,-3]],[[50094,41282],[-10,37],[-17,29],[-85,51],[-22,33],[-20,45],[-13,55],[-7,59],[-1,46],[7,52],[-20,34],[0,32],[-13,22],[-55,39],[-17,54],[-37,52],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-66,0],[-65,1],[-66,0],[-65,0],[-66,0],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-66,0],[-65,0],[-66,1],[-65,0],[-66,0],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-65,0],[-66,0],[-66,0],[0,135],[0,134],[0,6]],[[47685,42199],[28,24]],[[48033,43020],[-16,7]],[[50421,40585],[2,18],[2,6],[19,42],[40,66],[41,29],[8,-26]],[[50545,40718],[7,53],[6,7],[16,14],[18,-28],[5,43],[5,7],[27,23]],[[50629,40837],[40,8],[2,0],[3,1],[69,15],[27,-11],[44,5],[36,27],[37,9],[97,6],[97,20],[24,22],[61,13],[-30,-41],[-34,-64],[31,-7],[26,19],[25,38],[58,52],[49,23],[15,5],[24,-37],[47,29],[32,11],[5,-3],[-151,-121],[-68,-46],[-20,-9],[-38,-31],[-64,-44],[-16,-10],[-42,-13],[-205,-123],[-16,-3],[-18,12],[-169,-63],[-69,-7],[-63,-22],[46,51],[1,19],[-11,15],[-25,-5],[-25,-52],[-32,-14],[-12,14],[-3,21],[7,39]],[[47325,41913],[0,-83],[0,-105],[0,-105],[0,-104],[0,-105],[0,-105],[0,-104],[0,-105],[0,-105],[0,-104],[0,-105],[0,-105],[1,-105]],[[47326,40573],[-57,-44],[-10,-40],[17,-51],[9,-67],[1,-81],[-31,-178],[-65,-276],[-32,-173],[-1,-71],[-43,-93],[-83,-115],[-59,-69],[-34,-24],[-28,2],[-22,28],[-26,-19],[-28,-66],[-26,-33],[-24,-3],[-20,-42],[-18,-83],[-16,-47],[-15,-13],[-1,-42],[13,-71],[-1,-26],[-7,-1],[-7,4],[-17,-16],[-18,-40],[-7,0],[-5,6],[-5,52],[-15,37],[-24,22],[-34,-48],[-44,-118],[-19,-76],[8,-53],[3,-78],[-10,-32],[-24,-11],[-18,-42],[-13,-72],[-33,-46],[-53,-19],[-54,33]],[[45929,41669],[-1,-3]],[[47159,41817],[166,96]],[[40682,33587],[-107,51],[-27,32],[-49,37],[-44,75],[-88,93],[-33,22],[-11,-2],[-18,-46],[-46,-37],[-25,-1],[-46,14],[-9,11],[-7,28],[-18,19],[-14,-15],[-66,-38],[-10,-27],[-38,-1],[-37,19],[-94,-61],[-33,-48],[-34,-16],[-17,-46],[-10,6],[-36,58],[-36,17],[-49,57],[-2,50],[-5,6],[-9,6],[-12,-5],[-21,-43],[-13,-11],[-12,1],[-48,29],[-20,52],[-10,16],[-11,3],[-21,-16],[-12,-56],[-9,-15],[-20,-10],[1,-28],[-18,-78],[-9,-16],[-13,3],[-13,19],[-9,28],[-4,24],[7,61],[-4,21],[-10,6],[-24,-29],[-20,1],[-27,-29],[-16,-8],[-15,7],[-25,47],[-43,30],[-16,56],[-8,16],[-9,4],[-9,-2],[-15,-18],[-49,-73],[-23,-23],[-19,-5],[-18,8],[-12,18],[-2,74],[-11,23],[-45,46],[-10,44],[-4,61],[-55,-10],[-68,6],[-30,-53],[-16,-10],[-19,11],[-55,72],[-58,-15],[-33,8],[-80,54],[-64,5],[-26,10],[-14,12],[-6,83],[-25,69],[-9,19],[-43,49],[-7,2],[-4,-11],[-10,-55],[-13,-2],[-49,15],[-46,-16],[-25,27],[-87,127],[-35,33],[-28,11],[0,119],[0,119],[0,120],[0,119],[0,120],[0,119],[0,120],[0,119],[0,119],[-1,120],[0,119],[0,120],[0,119],[0,119],[0,120],[0,119],[-89,0],[-89,0],[-89,0],[-90,0],[-89,0],[-89,0],[-89,0],[-89,1],[-89,0],[-89,0],[-90,0],[-89,0],[-89,0],[-89,0],[-89,0],[-89,0]],[[26532,41924],[-24,48],[-17,128]],[[26491,42100],[-46,335],[2,71],[-17,86],[-43,133],[-3,11],[19,123],[21,75],[52,329],[12,26],[22,-1],[37,56],[-17,13],[-26,-26],[23,130],[26,111],[17,40],[8,354],[21,307],[19,71],[-8,91],[4,62],[5,70],[0,6],[33,487]],[[26652,45060],[5,160],[8,98],[-4,44],[2,61],[11,71],[-15,260],[0,10],[7,292],[-10,29],[66,13],[74,0],[72,40],[27,-13],[30,-54],[38,-11],[48,9]],[[27011,46069],[48,26],[37,-19],[48,-45],[47,-137],[46,-228],[10,-76],[36,-46],[42,-2],[171,-34],[25,3],[0,0],[31,8],[96,87],[105,29],[124,-7],[75,-24],[28,-43],[66,-5],[157,51],[173,35],[93,37],[106,75],[240,96],[120,11],[61,37],[14,18],[8,1],[126,0],[127,0],[126,0],[126,1],[127,0],[126,0],[126,0],[118,0]],[[49916,39911],[-47,-89],[-70,-30],[-38,-33],[-10,-16]],[[47821,39650],[-62,0],[-62,0],[-62,0],[-62,0],[-62,0],[-62,0],[-62,0],[-62,0],[0,116],[0,115],[0,115],[0,116],[0,115],[0,116],[0,115],[1,115]],[[47325,41913],[88,51]],[[47536,42069],[149,130]],[[51743,41631],[-12,-17],[-17,15],[-8,15],[-9,42],[-14,24],[-14,9],[8,-59],[-4,3]],[[51673,41663],[-5,-67],[-17,-39],[-8,-179],[-38,-74],[-42,-18],[-109,-18]],[[51703,41412],[40,146],[-4,-142],[-11,-12],[-25,8]],[[48256,33815],[-7,-4],[-81,-96],[-12,-8]],[[48156,33707],[-7,-15],[-25,-29],[-38,-66],[-48,-117],[-30,-57]],[[48004,33403],[-3,-14],[-18,-44],[-19,-116],[-15,-22],[-14,44],[5,51],[1,42],[-27,-89],[15,-79],[-129,-201]],[[47800,32975],[-11,-22],[-20,-12],[-6,-40],[-70,-143],[-28,-30],[-61,22],[19,-81],[-22,-61],[-14,-18],[-64,-55],[-9,-5],[-27,3],[-24,-16],[-18,-39],[-45,-37],[-47,21],[-53,12],[-29,-22],[49,-36],[27,-52],[-4,-50],[-56,-82],[-4,2],[-8,33],[-10,70],[-15,-15],[-2,-32],[-13,-12],[-44,111],[2,-85],[16,-65],[14,-33],[16,-19],[3,-27],[-33,-80],[-13,-13],[-27,-12],[-16,-45],[5,-39]],[[36141,42923],[0,249],[-1,250],[0,250],[-1,249],[0,250],[-1,249],[0,250],[-1,249]],[[45828,36538],[108,-1],[230,-2],[164,-1],[134,-1],[80,-1],[100,-1],[22,21],[50,-4],[67,-4]],[[41010,29923],[-22,2],[-50,-164],[28,-93],[-1,-18],[-65,-27],[-35,-7],[-223,-183],[-7,28],[27,33],[-38,20],[-2,-1],[-51,198]],[[40437,29655],[0,-1],[-11,-6],[8,-94],[-1,-35]],[[40433,29519],[5,-15],[2,-27],[18,-46],[13,-148],[-43,-77],[-57,-91],[-7,-89],[-57,-115],[-55,-65],[-127,-154],[-37,-33],[-19,-24],[-68,-67],[-50,-33],[-76,-85],[-26,-13],[49,72],[58,71],[-50,-10],[-76,33],[-47,2],[0,-26],[-35,-37],[-37,54],[-16,36],[-8,31],[-16,8],[-15,-15],[55,-219],[24,-10],[26,-22],[-33,-51],[-33,-37],[-65,-12],[-37,65],[-10,-101],[-1,-11],[-101,-107]],[[39481,28151],[-16,-41],[-25,-3],[-29,-14],[0,-42],[7,-41],[10,6],[-73,-185]],[[39355,27831],[-2,-24],[-46,12],[-14,-10],[-13,-23],[56,-138],[-80,-381],[-20,-3],[-75,81],[-41,62],[36,-170],[94,-47],[3,-142],[-13,-44],[-19,-86],[14,-60],[15,-147],[14,-68],[14,-205],[16,-90],[76,-277],[8,-40]],[[39396,25971],[18,-57],[-63,-20],[-5,-5],[-22,-7]],[[39324,25882],[-108,41],[-10,14],[-102,58],[-124,20],[-75,47]],[[38905,26062],[75,-47],[-10,2],[-91,47],[-18,25],[-31,46],[-52,42],[-32,8],[-21,5],[-44,39],[-20,34],[-16,29],[-51,41],[-67,18],[-26,27],[-18,21],[-31,117],[0,1],[-7,47],[-21,149],[-34,123],[-67,151],[-2,7],[-4,13],[0,0],[-1,25],[2,19],[6,70],[-7,63],[-7,18],[-14,34],[-5,54],[12,57],[0,1],[0,69],[-10,81],[-42,87],[-48,59],[-28,35],[-34,72],[-30,65],[-54,181],[-52,125],[-40,53],[-12,16],[-36,85],[-7,37],[-12,63],[-6,58],[8,17],[-32,111],[-64,187],[-7,20],[-42,151],[-8,77],[-2,19],[-5,12],[-32,80],[-9,21],[-12,19],[-69,113],[-43,86],[-1,5],[-10,55],[0,0],[-126,173],[-37,108],[-28,35],[-33,-4],[-17,10],[-1,25],[-10,1],[-21,-22],[-42,-3],[-25,-2],[-113,13],[-82,30],[-15,13],[-35,33],[-36,-6],[-20,-59],[-15,-13],[-28,-24],[-61,-16],[-5,-1],[-1,-1],[-47,-90],[-9,-17],[-18,-77],[-21,-88],[-8,-35],[-21,-128],[2,-21],[4,-36],[-13,-42],[-3,-2],[-28,-24],[-31,-58],[-32,-90],[-37,-44],[-43,3],[-78,70],[-115,136],[-90,84],[-65,32],[-57,63],[-50,93],[-46,63],[-42,31],[-50,104],[-56,176],[-22,105],[-6,31],[0,52],[0,91],[-73,313],[-21,72],[-18,64],[-9,18],[-20,44],[-57,75],[-6,6],[-79,80],[-77,118],[-36,55],[-142,260],[-101,157],[-25,22],[-34,31],[-51,93],[-43,134],[-36,72],[-7,14],[-4,3]],[[39324,25882],[22,7],[-22,-25],[-5,-26],[-4,-15],[-8,2],[-31,19],[-60,79],[108,-41]],[[40403,29087],[-9,-4],[26,39],[-17,-35]],[[39731,28278],[-5,7],[17,3],[-58,-82]],[[39685,28206],[-9,-13],[-79,-92],[-7,-2],[17,39]],[[39750,28298],[12,27],[7,5],[-1,-5],[-18,-27]],[[32801,41924],[0,-124],[0,-125],[0,-125],[0,-125],[0,-125],[0,-124],[0,-125],[0,-125],[119,0],[120,0],[119,0],[119,0],[119,0],[119,0],[119,0],[119,0]],[[48985,38818],[-7,-113],[-22,-56],[-35,-43],[-45,-76],[-11,-71],[-14,-132],[19,-45],[19,-12],[36,18],[-1,-3]],[[48922,38276],[96,-86],[26,-63],[98,-49],[102,-120],[7,-16],[25,-22],[36,-42]],[[49341,37745],[0,-2],[-5,-18],[-6,-72],[-18,-46],[-44,-5],[-27,12],[-143,255],[-17,23],[-53,134],[-62,72],[-19,-2],[88,-132],[24,-62],[-17,2]],[[49150,37697],[60,-87],[4,-10],[29,-37],[26,-38]],[[49278,37443],[14,-128],[-7,3],[-2,-54],[5,-32],[-28,-26],[-41,35],[-104,196],[1,-26],[8,-31],[61,-125],[54,-76],[46,-34],[26,-47],[-88,-76],[-34,53],[-14,79],[-34,-4],[-145,100],[-116,11],[12,-20],[14,-13],[93,-25],[36,-46],[76,-41],[45,-11],[6,-46],[-2,3]],[[49160,37062],[4,-12],[10,-70],[29,-41],[22,-61]],[[49243,36827],[10,1],[32,-5],[74,62],[48,-22],[52,-13],[27,-58]],[[49486,36792],[54,-308]],[[49528,36484],[-37,1]],[[46638,37471],[3,-32],[-6,-34],[15,-41],[13,-63],[17,-39],[22,-31],[37,-28],[44,-49],[34,-14],[11,2],[38,47],[31,25],[33,52],[59,-71],[23,0],[58,31],[54,8],[13,9],[20,30],[1,58],[4,15],[9,7],[11,2],[24,-22],[24,0],[101,68],[8,-5],[13,-32],[44,40],[26,37],[12,56],[22,55],[-5,25],[-14,31],[19,74],[27,73],[103,222],[33,134],[43,86],[14,69],[32,68],[22,140],[14,28],[20,5],[20,-18],[15,-26],[9,-42],[52,-37],[44,-4],[30,26],[18,50],[24,92],[23,54],[14,69],[16,48],[23,30],[59,-2],[30,42],[23,48],[14,16],[16,-2],[53,77],[70,161],[15,102],[18,73],[7,75],[14,41],[61,-81],[36,-47],[80,-107],[54,-71],[21,81],[31,120]],[[49772,37956],[-104,-393],[2,-49],[-16,-43],[-3,-4],[-32,-19],[-33,-43],[-21,-48],[-20,-128],[-38,-145],[-24,60],[-6,52],[10,134],[42,221],[25,75],[73,161]],[[49637,37866],[3,24]],[[49839,37970],[-3,-12]],[[49836,37958],[-55,-148],[-10,-7],[60,165]],[[27011,46069],[-14,14],[-23,4],[-50,50],[-29,50],[-65,-3],[-25,3],[-16,28],[-59,-19],[-15,15]],[[26637,46287],[6,123],[23,-62],[16,100],[11,127],[-32,49],[-8,5],[49,229]],[[26717,46868],[-4,8],[2,2],[-6,1],[-66,27],[-22,38],[-33,5],[-2,-21],[-17,7]],[[26569,46935],[-8,45],[-1,21],[-14,121],[-37,139],[-26,140],[-21,171],[-24,73],[-2,14]],[[26436,47659],[-4,6],[-10,32],[-77,120],[-20,70],[-13,132],[-4,54]],[[26308,48073],[0,2],[9,123],[-13,87],[60,-17],[73,-55],[120,-59],[37,-42],[58,-31],[58,-9],[7,-4]],[[26717,48068],[375,-55],[13,-19],[24,-8],[31,3],[23,13],[16,20],[28,6],[-1,-40],[14,-62],[29,-82],[10,-47],[1,-3],[-58,-143],[-11,-3],[-2,49],[-8,9],[-22,-50],[-1,0]],[[27178,47656],[-9,-20],[-77,-171],[-38,-114],[-3,-39],[-10,-42]],[[27041,47270],[10,0],[1,-1],[15,-7],[23,8],[18,0]],[[27176,47327],[-45,-26],[22,20],[3,11],[-48,-17],[-23,-2],[3,54],[1,7],[18,49]],[[27107,47423],[19,51],[32,47],[47,51],[27,42],[19,61],[52,73],[3,6],[34,-56]],[[27340,47698],[4,-6],[-1,-10],[-45,-56],[-6,-20],[8,-77],[-7,-8],[-17,9],[-5,-4],[42,-84],[14,-65],[1,-36],[-42,-103]],[[27286,47238],[-12,-30],[-19,22],[-6,-11],[-3,-14],[-5,3]],[[27198,47319],[-12,-82],[-31,-34],[-18,-45],[-15,-71],[-19,-34],[54,-7],[39,11],[1,-10]],[[27223,47038],[13,-4],[9,-8],[13,-1],[1,1],[12,-4]],[[27438,47262],[-15,74],[-9,106],[3,75],[-6,24],[-14,25],[2,24],[11,39],[0,36],[-6,20],[11,42]],[[27472,47910],[0,2],[5,11],[-3,11],[1,13]],[[27403,48165],[-3,18],[-2,23],[-3,6],[-9,48]],[[27351,48639],[-14,9],[-4,25],[-8,16],[-9,2],[-9,-13],[-17,-2],[-7,5]],[[27283,48681],[-26,55],[-9,28],[-28,124],[7,16]],[[27381,48020],[-24,23],[-11,29],[-6,39],[3,17],[38,-108]],[[27329,47938],[-24,47],[-1,56],[-8,23],[-17,5],[-15,17],[-25,51],[-3,14],[11,42],[27,70],[19,33],[12,-4],[5,-7],[4,-75]],[[27314,48210],[5,-15],[-56,-42],[-2,-12],[34,-15],[13,-13],[12,-44],[23,-131],[10,54],[65,-94],[0,-43],[-1,-5],[-7,-14],[-14,-6],[-12,14],[-11,33],[-15,17],[-7,2],[-22,42]],[[27350,47491],[-23,21],[-9,21],[1,47],[7,31],[5,6],[15,-13],[4,-8],[4,-60],[-4,-45]],[[27186,47119],[-4,-20],[-7,1],[-15,40],[-2,28],[13,21],[13,-45],[3,-21],[-1,-4]],[[42592,46499],[29,9]],[[43954,45026],[-1,-26]],[[43856,42465],[0,-45]]],"transform":{"scale":[0.0021020506672064527,0.0010018268607460664],"translate":[-180,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,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,709,710,711,712,713,714,715,716,717,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,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,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387],[1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570],[1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754],[1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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],[1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989],[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],[2030,2031,2032,2033,2034,2035,2036,2037],[2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049],[2050,2051,2052,2053,2054],[2055,2056,2057,2058,2059,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,2102,2103,2104,2105],[2106,2107,2108,2109,2110,2111],[2112,2113,2114,2115,2116,2117,2118,2119],[2120,2121,2122,2123,2124],[2125,2126],[2127,2128,2129,2130,2131,2132],[2133,2134,2135,2136,2137],[2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148],[2149,2150,2151,2152,2153,2154],[2155,2156],[2157,2158],[2159,2160,2161,2162,2163,2164,2165,2166,2167,2168],[2169,2170,2171],[2172,2173,2174],[2175,2176,2177,2178,2179],[2180,2181],[2182,2183,2184,2185,2186],[2187,2188,2189,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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[0]],"type":"Polygon","properties":{"ct":[-69.97,12.51]},"id":"ABW"},{"arcs":[[1]],"type":"Polygon","properties":{"ct":[-63.06,18.21]},"id":"AIA"},{"arcs":[[[6]],[[7]]],"type":"MultiPolygon","properties":{"ct":[-61.8,17.08]},"id":"ATG"},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"ct":[-78.04,24.68]},"id":"BHS"},{"arcs":[[2494,2495,57]],"type":"Polygon","properties":{"ct":[-88.71,17.2]},"id":"BLZ"},{"arcs":[[1009]],"type":"Polygon","properties":{"ct":[-64.79,32.29]},"id":"BMU"},{"arcs":[[2496,1010]],"type":"Polygon","properties":{"ct":[-63.06,18.08]},"id":"MAF"},{"arcs":[[1018]],"type":"Polygon","properties":{"ct":[-59.55,13.17]},"id":"BRB"},{"arcs":[[[2497,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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,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,709,710,711,712,713,714,715,716,717,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,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,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,2498,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]],[[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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387]],[[1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570]],[[1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754]],[[1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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]],[[1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989]],[[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]],[[2030,2031,2032,2033,2034,2035,2036,2037]],[[2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049]],[[2050,2051,2052,2053,2054]],[[2055,2056,2057,2058,2059,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,2102,2103,2104,2105]],[[2106,2107,2108,2109,2110,2111]],[[2112,2113,2114,2115,2116,2117,2118,2119]],[[2120,2121,2122,2123,2124]],[[2125,2126]],[[2127,2128,2129,2130,2131,2132]],[[2133,2134,2135,2136,2137]],[[2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148]],[[2149,2150,2151,2152,2153,2154]],[[2155,2156]],[[2157,2158]],[[2159,2160,2161,2162,2163,2164,2165,2166,2167,2168]],[[2169,2170,2171]],[[2172,2173,2174]],[[2175,2176,2177,2178,2179]],[[2180,2181]],[[2182,2183,2184,2185,2186]],[[2187,2188,2189,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]]],"type":"MultiPolygon","properties":{"ct":[-101.68,57.72]},"id":"CAN"},{"arcs":[[61,2499,65,2500]],"type":"Polygon","properties":{"ct":[-84.21,9.98]},"id":"CRI"},{"arcs":[[[2256]],[[2257]],[[2258]]],"type":"MultiPolygon","properties":{"ct":[-78.95,21.61]},"id":"CUB"},{"arcs":[[2259]],"type":"Polygon","properties":{"ct":[-68.97,12.2]},"id":"CUW"},{"arcs":[[[2260]],[[2261]],[[2262]]],"type":"MultiPolygon","properties":{"ct":[-81.27,19.32]},"id":"CYM"},{"arcs":[[2263]],"type":"Polygon","properties":{"ct":[-61.35,15.43]},"id":"DMA"},{"arcs":[[2501,2264]],"type":"Polygon","properties":{"ct":[-70.5,18.91]},"id":"DOM"},{"arcs":[[[2266]],[[2267]],[[2268]]],"type":"MultiPolygon","properties":{"ct":[-61.6,16.21]},"id":"GLP"},{"arcs":[[[2269]],[[2270]]],"type":"MultiPolygon","properties":{"ct":[-61.69,12.11]},"id":"GRD"},{"arcs":[[[2271,2502]],[[2272,2503]],[[2273,2504]],[[2274,2505]],[[2275,2506]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280,2507,2281,2508]]],"type":"MultiPolygon","properties":{"ct":[-53.04,74.53]},"id":"GRL"},{"arcs":[[-2495,58,2509,2510,69,2511]],"type":"Polygon","properties":{"ct":[-90.36,15.7]},"id":"GTM"},{"arcs":[[-2510,59,2512,67,2513]],"type":"Polygon","properties":{"ct":[-86.61,14.82]},"id":"HND"},{"arcs":[[[-2502,2265]],[[2282]]],"type":"MultiPolygon","properties":{"ct":[-72.66,18.94]},"id":"HTI"},{"arcs":[[2283]],"type":"Polygon","properties":{"ct":[-77.28,18.15]},"id":"JAM"},{"arcs":[[[2288]],[[2289]]],"type":"MultiPolygon","properties":{"ct":[-62.76,17.34]},"id":"KNA"},{"arcs":[[2290]],"type":"Polygon","properties":{"ct":[-60.97,13.89]},"id":"LCA"},{"arcs":[[[-2496,-2512,70,71,72,2514,1007,1008]],[[2291]],[[2292]]],"type":"MultiPolygon","properties":{"ct":[-102.53,23.94]},"id":"MEX"},{"arcs":[[2294]],"type":"Polygon","properties":{"ct":[-62.19,16.74]},"id":"MSR"},{"arcs":[[2295]],"type":"Polygon","properties":{"ct":[-61.02,14.65]},"id":"MTQ"},{"arcs":[[-2501,66,-2513,60]],"type":"Polygon","properties":{"ct":[-85.03,12.84]},"id":"NIC"},{"arcs":[[[-2500,62,63,64]],[[2296]],[[2515,3,4]]],"type":"MultiPolygon","properties":{"ct":[-81.25,8.45]},"id":"PAN"},{"arcs":[[2297]],"type":"Polygon","properties":{"ct":[-66.48,18.22]},"id":"PRI"},{"arcs":[[-2511,-2514,68]],"type":"Polygon","properties":{"ct":[-88.87,13.74]},"id":"SLV"},{"arcs":[[[2298]],[[2299]]],"type":"MultiPolygon","properties":{"ct":[-56.33,46.94]},"id":"SPM"},{"arcs":[[-2497,1011]],"type":"Polygon","properties":{"ct":[-63.07,18.04]},"id":"SXM"},{"arcs":[[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]]],"type":"MultiPolygon","properties":{"ct":[-72.25,21.8]},"id":"TCA"},{"arcs":[[[2308]],[[2309]]],"type":"MultiPolygon","properties":{"ct":[-61.28,10.41]},"id":"TTO"},{"arcs":[],"type":"MultiPolygon","properties":{"ct":[-156.41,20.95]},"id":"USA"},{"arcs":[[[2356]],[[2357]],[[2358]],[[2359]]],"type":"MultiPolygon","properties":{"ct":[-61.19,13.25]},"id":"VCT"},{"arcs":[[[2361]],[[2362]],[[2363]],[[2364]]],"type":"MultiPolygon","properties":{"ct":[-64.63,18.42]},"id":"VGB"},{"arcs":[[[2365]],[[2366]],[[2367]]],"type":"MultiPolygon","properties":{"ct":[-64.77,17.73]},"id":"VIR"},{"arcs":[[2368]],"type":"Polygon","properties":{"ct":[-68.26,12.16]},"id":"BES"},{"arcs":[[2369]],"type":"Polygon","properties":{"ct":[-62.97,17.5]},"id":"BES"},{"arcs":[[2370]],"type":"Polygon","properties":{"ct":[-63.23,17.64]},"id":"BES"},{"arcs":[[[-2520,2316,-2519,2318,2319,-2518,2322,-2517,2311,2312,2313,2314]],[[-2524,2328,-2523,2330,-2522,2332,-2521,2326]],[[2334,2335,-2525]],[[-2529,2341,-2528,2343,-2527,2345,-2526,2338,2339]],[[-2534,2349,-2533,2351,-2532,2353,-2531,2355,-2530,2347]],[[2373]],[[2374,2375]],[[858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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,-2515,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,-2499]],[[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]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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,-2498]]],"type":"MultiPolygon","properties":{"ct":[-99.11,39.52]},"id":"USA"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[2534,2535,2536,2537,2538,2539,2540,2541,2542,2543],[2544],[2545]],"type":"Polygon"},{"arcs":[[2546],[2547],[2548]],"type":"Polygon"},{"arcs":[[2549],[2550]],"type":"Polygon"},{"arcs":[[2551,2552,2553,2554],[2555],[2556],[2557],[2558]],"type":"Polygon"},{"arcs":[[2559]],"type":"Polygon"},{"arcs":[[-2535,2560,2561,2562]],"type":"Polygon"},{"arcs":[[2563]],"type":"Polygon"},{"arcs":[[2564]],"type":"Polygon"},{"arcs":[[2565]],"type":"Polygon"},{"arcs":[[2566],[2567]],"type":"Polygon"},{"arcs":[[2568,2569,2570,2571,2572,2573,2574,2575,2576,2577],[2578],[2579],[2580],[2581]],"type":"Polygon"},{"arcs":[[2582,2583,2584,2585,2586,2587,2588,2589],[2590],[2591],[2592],[2593],[2594],[2595],[2596],[2597],[2598]],"type":"Polygon"},{"arcs":[[2599,2600,2601,-2578,2602,-2583],[2603],[2604],[2605],[2606],[2607],[2608],[2609],[2610],[2611]],"type":"Polygon"},{"arcs":[[2612]],"type":"Polygon"},{"arcs":[[2613]],"type":"Polygon"},{"arcs":[[2614]],"type":"Polygon"},{"arcs":[[2615]],"type":"Polygon"},{"arcs":[[2616],[2617]],"type":"Polygon"},{"arcs":[[2618],[2619],[2620]],"type":"Polygon"},{"arcs":[[2621]],"type":"Polygon"},{"arcs":[[2622]],"type":"Polygon"},{"arcs":[[2623]],"type":"Polygon"},{"arcs":[[2624]],"type":"Polygon"},{"arcs":[[2625]],"type":"Polygon"},{"arcs":[[2626]],"type":"Polygon"},{"arcs":[[2627]],"type":"Polygon"},{"arcs":[[2628]],"type":"Polygon"},{"arcs":[[2629]],"type":"Polygon"},{"arcs":[[2630]],"type":"Polygon"},{"arcs":[[2631]],"type":"Polygon"},{"arcs":[[2632]],"type":"Polygon"},{"arcs":[[2633]],"type":"Polygon"},{"arcs":[[2634]],"type":"Polygon"},{"arcs":[[2635]],"type":"Polygon"},{"arcs":[[2636]],"type":"Polygon"},{"arcs":[[2637]],"type":"Polygon"},{"arcs":[[2638]],"type":"Polygon"},{"arcs":[[2639]],"type":"Polygon"},{"arcs":[[2640]],"type":"Polygon"},{"arcs":[[2641]],"type":"Polygon"},{"arcs":[[2642]],"type":"Polygon"},{"arcs":[[2643]],"type":"Polygon"},{"arcs":[[2644,2645]],"type":"Polygon"},{"arcs":[[-2645,2646]],"type":"Polygon"},{"arcs":[[2647]],"type":"Polygon"},{"arcs":[[2648]],"type":"Polygon"},{"arcs":[[2649]],"type":"Polygon"},{"arcs":[[2650]],"type":"Polygon"},{"arcs":[[2651]],"type":"Polygon"},{"arcs":[[2652]],"type":"Polygon"},{"arcs":[[2653]],"type":"Polygon"},{"arcs":[[2654]],"type":"Polygon"},{"arcs":[[2655]],"type":"Polygon"},{"arcs":[[2656]],"type":"Polygon"},{"arcs":[[2657]],"type":"Polygon"},{"arcs":[[2658]],"type":"Polygon"},{"arcs":[[2659]],"type":"Polygon"},{"arcs":[[2660]],"type":"Polygon"},{"arcs":[[2661]],"type":"Polygon"},{"arcs":[[2662]],"type":"Polygon"},{"arcs":[[2663]],"type":"Polygon"},{"arcs":[[2664]],"type":"Polygon"},{"arcs":[[2665]],"type":"Polygon"},{"arcs":[[2666]],"type":"Polygon"},{"arcs":[[2667]],"type":"Polygon"},{"arcs":[[2668]],"type":"Polygon"},{"arcs":[[2669]],"type":"Polygon"},{"arcs":[[2670]],"type":"Polygon"},{"arcs":[[2671]],"type":"Polygon"},{"arcs":[[2672]],"type":"Polygon"},{"arcs":[[2673]],"type":"Polygon"},{"arcs":[[2674]],"type":"Polygon"},{"arcs":[[2675]],"type":"Polygon"},{"arcs":[[2676]],"type":"Polygon"},{"arcs":[[2677]],"type":"Polygon"},{"arcs":[[2678]],"type":"Polygon"},{"arcs":[[2679]],"type":"Polygon"},{"arcs":[[2680]],"type":"Polygon"},{"arcs":[[2681]],"type":"Polygon"},{"arcs":[[2682]],"type":"Polygon"},{"arcs":[[2683]],"type":"Polygon"},{"arcs":[[2684]],"type":"Polygon"},{"arcs":[[2685]],"type":"Polygon"},{"arcs":[[2686]],"type":"Polygon"},{"arcs":[[2687]],"type":"Polygon"},{"arcs":[[2688]],"type":"Polygon"},{"arcs":[[2689]],"type":"Polygon"},{"arcs":[[2690]],"type":"Polygon"},{"arcs":[[2691]],"type":"Polygon"},{"arcs":[[2692]],"type":"Polygon"},{"arcs":[[2693]],"type":"Polygon"},{"arcs":[[2694]],"type":"Polygon"},{"arcs":[[2695]],"type":"Polygon"},{"arcs":[[2696]],"type":"Polygon"},{"arcs":[[2697]],"type":"Polygon"},{"arcs":[[2698]],"type":"Polygon"},{"arcs":[[2699]],"type":"Polygon"},{"arcs":[[2700]],"type":"Polygon"},{"arcs":[[2701]],"type":"Polygon"},{"arcs":[[2702]],"type":"Polygon"},{"arcs":[[2703]],"type":"Polygon"},{"arcs":[[2704]],"type":"Polygon"},{"arcs":[[2705]],"type":"Polygon"},{"arcs":[[2706]],"type":"Polygon"},{"arcs":[[2707]],"type":"Polygon"},{"arcs":[[2708]],"type":"Polygon"},{"arcs":[[2709]],"type":"Polygon"},{"arcs":[[2710]],"type":"Polygon"},{"arcs":[[2711]],"type":"Polygon"},{"arcs":[[2712]],"type":"Polygon"},{"arcs":[[2713]],"type":"Polygon"},{"arcs":[[2714]],"type":"Polygon"},{"arcs":[[2715]],"type":"Polygon"},{"arcs":[[2716]],"type":"Polygon"},{"arcs":[[2717]],"type":"Polygon"},{"arcs":[[2718]],"type":"Polygon"},{"arcs":[[2719]],"type":"Polygon"},{"arcs":[[2720]],"type":"Polygon"},{"arcs":[[2721]],"type":"Polygon"},{"arcs":[[2722]],"type":"Polygon"},{"arcs":[[2723]],"type":"Polygon"},{"arcs":[[2724]],"type":"Polygon"},{"arcs":[[[2725]],[[63,2726]],[[2727]]],"type":"MultiPolygon"},{"arcs":[[2728]],"type":"Polygon"},{"arcs":[[2729]],"type":"Polygon"},{"arcs":[[2730],[2731]],"type":"Polygon"},{"arcs":[[2732]],"type":"Polygon"},{"arcs":[[2733]],"type":"Polygon"},{"arcs":[[2658]],"type":"Polygon"},{"arcs":[[2734]],"type":"Polygon"},{"arcs":[[2735]],"type":"Polygon"},{"arcs":[[2736]],"type":"Polygon"},{"arcs":[[2709]],"type":"Polygon"},{"arcs":[[2737]],"type":"Polygon"},{"arcs":[[2711]],"type":"Polygon"},{"arcs":[[2712]],"type":"Polygon"},{"arcs":[[2738,2739]],"type":"Polygon"},{"arcs":[[2740,-2740]],"type":"Polygon"},{"arcs":[[2741]],"type":"Polygon"},{"arcs":[[2742]],"type":"Polygon"},{"arcs":[[2743]],"type":"Polygon"},{"arcs":[[2744]],"type":"Polygon"},{"arcs":[[2745]],"type":"Polygon"},{"arcs":[[2746]],"type":"Polygon"},{"arcs":[[2747]],"type":"Polygon"},{"arcs":[[2748]],"type":"Polygon"},{"arcs":[[2749]],"type":"Polygon"},{"arcs":[[2750]],"type":"Polygon"},{"arcs":[[2751]],"type":"Polygon"},{"arcs":[[2752]],"type":"Polygon"},{"arcs":[[2753]],"type":"Polygon"},{"arcs":[[2754]],"type":"Polygon"},{"arcs":[[2755]],"type":"Polygon"},{"arcs":[[2756]],"type":"Polygon"},{"arcs":[[2757]],"type":"Polygon"},{"arcs":[[2758,2759,2760,2761]],"type":"Polygon"},{"arcs":[[2762]],"type":"Polygon"},{"arcs":[[2763]],"type":"Polygon"},{"arcs":[[2764]],"type":"Polygon"},{"arcs":[[2765]],"type":"Polygon"},{"arcs":[[2766]],"type":"Polygon"},{"arcs":[[2767]],"type":"Polygon"},{"arcs":[[2768]],"type":"Polygon"},{"arcs":[[2769]],"type":"Polygon"},{"arcs":[[2770]],"type":"Polygon"},{"arcs":[[2771]],"type":"Polygon"},{"arcs":[[2772]],"type":"Polygon"},{"arcs":[[2773]],"type":"Polygon"},{"arcs":[[2774]],"type":"Polygon"},{"arcs":[[2775]],"type":"Polygon"},{"arcs":[[2776]],"type":"Polygon"},{"arcs":[[2777]],"type":"Polygon"},{"arcs":[[2778]],"type":"Polygon"},{"arcs":[[2779]],"type":"Polygon"},{"arcs":[[2780]],"type":"Polygon"},{"arcs":[[2781]],"type":"Polygon"},{"arcs":[[2782]],"type":"Polygon"},{"arcs":[[2783]],"type":"Polygon"},{"arcs":[[2784]],"type":"Polygon"},{"arcs":[[2785]],"type":"Polygon"},{"arcs":[[2786]],"type":"Polygon"},{"arcs":[[2787]],"type":"Polygon"},{"arcs":[[2788]],"type":"Polygon"},{"arcs":[[2789]],"type":"Polygon"},{"arcs":[[2790]],"type":"Polygon"},{"arcs":[[2791]],"type":"Polygon"},{"arcs":[[2792]],"type":"Polygon"},{"arcs":[[2793]],"type":"Polygon"},{"arcs":[[2794]],"type":"Polygon"},{"arcs":[[2795]],"type":"Polygon"},{"arcs":[[2796]],"type":"Polygon"},{"arcs":[[2797]],"type":"Polygon"},{"arcs":[[2798]],"type":"Polygon"},{"arcs":[[2799]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,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,709,710,711,712,713,714,715,716,717,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,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,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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]],[[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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387]],[[1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570]],[[1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754]],[[1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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]],[[1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989]],[[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]],[[2030,2031,2032,2033,2034,2035,2036,2037]],[[2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049]],[[2050,2051,2052,2053,2054]],[[2055,2056,2057,2058,2059,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,2102,2103,2104,2105]],[[2106,2107,2108,2109,2110,2111]],[[2112,2113,2114,2115,2116,2117,2118,2119]],[[2120,2121,2122,2123,2124]],[[2125,2126]],[[2127,2128,2129,2130,2131,2132]],[[2133,2134,2135,2136,2137]],[[2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148]],[[2149,2150,2151,2152,2153,2154]],[[2155,2156]],[[2157,2158]],[[2159,2160,2161,2162,2163,2164,2165,2166,2167,2168]],[[2169,2170,2171]],[[2172,2173,2174]],[[2175,2176,2177,2178,2179]],[[2180,2181]],[[2182,2183,2184,2185,2186]],[[2187,2188,2189,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,2502]],[[2272,2503]],[[2273,2504]],[[2274,2505]],[[2275,2506]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280,2507,2281,2508]],[[2282]],[[2283]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2294]],[[2295]],[[2296]],[[2515,3,4]],[[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]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[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]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-2489,2800,-2491,-2494,2801,-2276,2802,-2275,2803,-2274,2804,-2281,2805,-2273,2806,-2272,2807,-1013,2808,-1014,-1015,2809,-6,-5,-4,-3,2810,-2372,-2373,2811],[-2369],[-2260],[-2297],[-1],[-2284],[-1018],[-1017],[-1016],[-1019],[-2296],[-7],[-2290],[-2269],[-8],[-2268],[-2267],[-2264],[-2294],[-1012,-1011],[-2371],[-2370],[-2366],[-2295],[-2289],[-2368],[-2363],[-2364],[-2],[-2365],[-2362],[-2359],[-2271],[-2270],[-2309],[-2310],[-2357],[-2361],[-2360],[-2358],[-2291],[-14],[-10],[-11],[-2303],[-2304],[-2305],[-2302],[-2307],[-2308],[-2306],[-2301],[-12],[-2283],[-2266,-2265],[-2298],[-2367],[-2374],[-44],[-41],[-40],[-2257],[-2258],[-2259],[-2262],[-2263],[-2261],[-18],[-17],[-19],[-16],[-15],[-13],[-43],[-38],[-57],[-56],[-50],[-51],[-42],[-52],[-53],[-54],[-49],[-48],[-47],[-46],[-45],[-55],[-24],[-21],[-29],[-30],[-27],[-31],[-26],[-23],[-22],[-33],[-32],[-34],[-9],[-35],[-37],[-39],[-1010],[-25],[-20],[-36],[-28],[-2278],[-2277],[-2279],[-2210,-2209,-2208,-2207,-2211],[-2124,-2123,-2122,-2121,-2125],[-2054,-2053,-2052,-2051,-2055],[-2243],[-2231,-2232],[-2174,-2173,-2175],[-2241,-2240,-2242],[-2233,-2234],[-2156,-2157],[-1314,-1313,-1312,-1311,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-1303,-1302,-1301,-1300,-1299,-1298,-1297,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,-1263,-1262,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,-1246,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-1202,-1201,-1200,-1199,-1198,-1197,-1196,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,-1156,-1155,-1154,-1153,-1152,-1151,-1150,-1149,-1148,-1147,-1146,-1145,-1144,-1143,-1142,-1141,-1140,-1139,-1138,-1137,-1136,-1135,-1134,-1133,-1132,-1131,-1130,-1129,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,-1120,-1119,-1118,-1117,-1116,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,-1085,-1084,-1083,-1082,-1081,-1080,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,-1070,-1069,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052,-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,-1034,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1315],[-2197,-2196,-2195,-2194,-2193,-2192,-2198],[-1725,-1724,-1723,-1722,-1721,-1720,-1719,-1718,-1717,-1716,-1715,-1714,-1713,-1712,-1711,-1710,-1709,-1708,-1707,-1706,-1705,-1704,-1703,-1702,-1701,-1700,-1699,-1698,-1697,-1696,-1695,-1694,-1693,-1692,-1691,-1690,-1689,-1688,-1687,-1686,-1685,-1684,-1683,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-1675,-1674,-1673,-1672,-1671,-1670,-1669,-1668,-1667,-1726],[-2220,-2219,-2218,-2217,-2221],[-2186,-2185,-2184,-2183,-2187],[-1570,-1569,-1568,-1567,-1566,-1565,-1564,-1563,-1562,-1561,-1560,-1559,-1558,-1557,-1556,-1555,-1554,-1553,-1552,-1551,-1550,-1549,-1548,-1547,-1546,-1545,-1544,-1543,-1542,-1541,-1540,-1539,-1538,-1537,-1536,-1535,-1534,-1533,-1532,-1531,-1530,-1529,-1528,-1527,-1526,-1525,-1524,-1523,-1522,-1521,-1520,-1519,-1518,-1517,-1516,-1515,-1514,-1513,-1512,-1511,-1510,-1509,-1508,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1494,-1493,-1492,-1491,-1490,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,-1478,-1477,-1476,-1475,-1474,-1473,-1472,-1471,-1470,-1469,-1468,-1467,-1466,-1465,-1464,-1463,-1462,-1461,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,-1447,-1446,-1445,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-1432,-1431,-1430,-1429,-1428,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1416,-1415,-1414,-1413,-1412,-1411,-1410,-1409,-1408,-1407,-1406,-1405,-1404,-1403,-1402,-1401,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1393,-1392,-1391,-1390,-1389,-1571],[-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2038],[-2280],[-2375,-2376],[-1920,-1919,-1918,-1917,-1916,-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,-1907,-1906,-1905,-1904,-1903,-1902,-1901,-1900,-1899,-1898,-1897,-1896,-1921],[-2255,-2256],[-2300],[-2126,-2127],[-2169,-2168,-2167,-2166,-2165,-2164,-2163,-2162,-2161,-2160],[-2095,-2094,-2093,-2092,-2091,-2090,-2089,-2088,-2087,-2086,-2085,-2084,-2083,-2082],[-1754,-1753,-1752,-1751,-1750,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-1742,-1741,-1740,-1739,-1738,-1737,-1736,-1735,-1734,-1733,-1732,-1731,-1730,-1729,-1728,-1727,-1755],[-1638,-1637,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,-1623,-1622,-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-1611,-1610,-1609,-1608,-1607,-1606,-1605,-1604,-1603,-1602,-1601,-1600,-1599,-1598,-1597,-1596,-1595,-1594,-1593,-1592,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,-1580,-1579,-1578,-1577,-1576,-1575,-1574,-1573,-1572,-1639],[-2204,-2203,-2202,-2205],[-2060,-2059,-2058,-2057,-2056,-2061],[-2222,-2223],[-2049,-2048,-2047,-2046,-2045,-2044,-2043,-2042,-2041,-2040,-2039,-2050],[-2238,-2237,-2239],[-2299],[-2080,-2079,-2081],[-2137,-2136,-2135,-2134,-2138],[-1957,-1956,-1955,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-1947,-1946,-1945,-1944,-1943,-1942,-1941,-1940,-1939,-1938,-1937,-1936,-1935,-1958],[-2206],[-2452,-2451,-2450,-2453],[-1895,-1894,-1893,-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,-1883,-1882,-1881,-1880,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,-1870,-1869,-1868],[-1933,-1932,-1931,-1930,-1929,-1928,-1927,-1926,-1925,-1924,-1923,-1922,-1934],[-2008,-2007,-2006,-2005,-2004,-2003,-2002,-2001,-2000,-1999,-1998,-1997,-1996,-1995,-1994,-1993,-1992,-1991,-2009],[-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1373,-1372,-1371,-1370,-1369,-1368,-1367,-1366,-1365,-1364,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-1347,-1346,-1345,-1344,-1343,-1342,-1341,-1340,-1339,-1338,-1337,-1336,-1335,-1334,-1333,-1332,-1331,-1330,-1329,-1328,-1327,-1326,-1325,-1324,-1323,-1322,-1321,-1320,-1319,-1318,-1317,-1316,-1388],[-2251,-2250,-2249,-2252],[-2433,-2432,-2431,-2430,-2434],[-2227,-2226,-2225,-2224,-2228],[-2148,-2147,-2146,-2145,-2144,-2143,-2142,-2141,-2140,-2139,-2149],[-2078,-2077,-2076,-2075,-2074,-2073,-2072,-2071,-2070,-2069,-2068,-2067,-2066],[-2429,-2428,-2427,-2426,-2425,-2424,-2423,-2422,-2421,-2420,-2419,-2418,-2417,-2416,-2415,-2414,-2413],[-2154,-2153,-2152,-2151,-2150,-2155],[-2230,-2229],[-2181,-2182],[-2179,-2178,-2177,-2176,-2180],[-2254],[-2132,-2131,-2130,-2129,-2128,-2133],[-2190,-2189,-2188,-2191],[-2111,-2110,-2109,-2108,-2107,-2112],[-2106,-2105,-2104,-2103,-2102,-2101,-2100,-2099,-2098,-2097,-2096],[-2029,-2028,-2027,-2026,-2025,-2024,-2023,-2022,-2021,-2020,-2019,-2018,-2017,-2016,-2015,-2014,-2013,-2012,-2011,-2010,-2030],[-2244],[-1798,-1797,-1796,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-1787,-1786,-1785,-1784,-1783,-1782,-1781,-1780,-1779,-1778,-1777,-1776,-1775,-1774,-1773,-1772,-1771,-1770,-1769,-1768,-1767,-1766,-1765,-1764,-1763,-1762,-1761,-1760,-1759,-1758,-1757,-1756,-1799],[-2200,-2199,-2201],[-2215,-2214,-2213,-2212,-2216],[-1866,-1865,-1864,-1863,-1862,-1861,-1860,-1859,-1858,-1857,-1856,-1855,-1854,-1853,-1852,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,-1843,-1842,-1841,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,-1832,-1831,-1830,-1829,-1828,-1827,-1826,-1825,-1824,-1823,-1822,-1821,-1820,-1819,-1818,-1817,-1816,-1815,-1814,-1813,-1812,-1811,-1810,-1809,-1808,-1807,-1806,-1805,-1804,-1803,-1802,-1801,-1800,-1867],[-2171,-2170,-2172],[-2247,-2246,-2245,-2248],[-2064,-2063,-2062,-2065],[-2390,-2389,-2388,-2387,-2386,-2385,-2391],[-2478,-2477,-2476,-2475,-2474,-2473,-2472,-2471,-2470,-2469,-2468],[-2395,-2394,-2393,-2392,-2396],[-2402,-2401,-2400,-2399,-2398,-2397,-2403],[-2382,-2383],[-2412,-2411,-2410,-2409,-2408,-2407,-2406,-2405,-2404],[-2384],[-2381,-2380,-2379,-2378,-2377],[-2487,-2486,-2485,-2484,-2483,-2482,-2481,-2480],[-2479],[-2235,-2236],[-1989,-1988,-1987,-1986,-1985,-1984,-1983,-1982,-1981,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1990],[-2253],[-2158,-2159],[-1665,-1664,-1663,-1662,-1661,-1660,-1659,-1658,-1657,-1656,-1655,-1654,-1653,-1652,-1651,-1650,-1649,-1648,-1647,-1646,-1645,-1644,-1643,-1642,-1641,-1640,-1666],[-2119,-2118,-2117,-2116,-2115,-2114,-2113,-2120],[-2292],[-1009,-1008,-1007,-1006,-1005,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-958,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,-919,-918,-917,-916,-915,-914,-913,-912,-911,-910,-909,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,-886,-885,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,-860,-859,-858,-857,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-817,-816,-815,-814,-813,-812,-811,-810,-809,-808,-807,-806,-805,-804,-803,-802,-801,-800,-799,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736,-735,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-656,-655,-654,-653,-652,-651,-650,-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,-632,-631,-630,-629,-628,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593,-592,-591,-590,-589,-588,-587,-586,-585,-584,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-524,-523,-522,-521,-520,-519,-518,-517,-516,-515,-514,-513,-512,-511,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,-488,-487,-486,-485,-484,-483,-482,-481,-480,-479,-478,-477,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,-404,-403,-402,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-389,-388,-387,-386,-385,-384,-383,-382,-381,-380,-379,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58],[-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,-2314,-2313,-2312,-2311],[-2293],[-2356,-2355,-2354,-2353,-2352,-2351,-2350,-2349,-2348,-2347],[-2333,-2332,-2331,-2330,-2329,-2328,-2327,-2326,-2325,-2324],[-2336,-2335,-2334],[-2438,-2437,-2436,-2435,-2439],[-2346,-2345,-2344,-2343,-2342,-2341,-2340,-2339,-2338,-2337],[-2448,-2447,-2446,-2445,-2444,-2443,-2442,-2441,-2440,-2449],[-2459,-2458,-2457,-2456,-2455,-2454,-2460],[-2466,-2465,-2467],[-2463,-2462,-2461,-2464],[-2285],[-2287],[-2288],[-2286]],[[2812,-2282]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[2813],[2814]]},{"type":"MultiLineString","arcs":[[2815],[2816],[2817],[2818],[2819]]},{"type":"MultiLineString","arcs":[[2820],[2821]]},{"type":"MultiLineString","arcs":[[2822],[2823],[2824],[2825]]},{"type":"MultiLineString","arcs":[[2826],[2827],[2828]]},{"type":"LineString","arcs":[2829]},{"type":"MultiLineString","arcs":[[2830],[2831],[2832],[2833],[2834]]},{"type":"MultiLineString","arcs":[[2835],[2836],[2837],[2838],[2839]]},{"type":"MultiLineString","arcs":[[2840],[2841,2842]]},{"type":"LineString","arcs":[2843]},{"type":"MultiLineString","arcs":[[2844],[2845],[2846]]},{"type":"LineString","arcs":[2847]},{"type":"LineString","arcs":[2848]},{"type":"MultiLineString","arcs":[[2849],[2850]]},{"type":"MultiLineString","arcs":[[2851],[2852],[2853],[2854],[2855]]},{"type":"MultiLineString","arcs":[[2856,2857],[2858],[2859],[2860],[2861]]},{"type":"LineString","arcs":[2862]},{"type":"LineString","arcs":[2863]},{"type":"MultiLineString","arcs":[[2864],[2865]]},{"type":"LineString","arcs":[2866]},{"type":"MultiLineString","arcs":[[2867],[2868],[2869],[2870]]},{"type":"MultiLineString","arcs":[[2871,2872],[2873]]},{"type":"MultiLineString","arcs":[[2874],[2875],[2876],[2877]]},{"type":"MultiLineString","arcs":[[2878],[2879]]},{"type":"MultiLineString","arcs":[[2880],[2881],[2882]]},{"type":"LineString","arcs":[2883]},{"type":"LineString","arcs":[2884]},{"type":"LineString","arcs":[2885]},{"type":"MultiLineString","arcs":[[2886],[2887],[2888],[2889]]},{"type":"LineString","arcs":[2890]},{"type":"MultiLineString","arcs":[[2891],[2892],[2893]]},{"type":"LineString","arcs":[2894]},{"type":"MultiLineString","arcs":[[2895],[2896]]},{"type":"LineString","arcs":[2897]},{"type":"MultiLineString","arcs":[[2898],[2899,2900],[2901],[2902]]},{"type":"LineString","arcs":[2903]},{"type":"MultiLineString","arcs":[[2904],[2905,2906],[2907]]},{"type":"MultiLineString","arcs":[[2908],[2909],[2910]]},{"type":"MultiLineString","arcs":[[2911],[2912],[2913],[2914],[2915],[2916],[2917],[2918],[2919],[2920],[2921]]},{"type":"MultiLineString","arcs":[[2922],[2923],[2924]]},{"type":"MultiLineString","arcs":[[2925],[2926],[2927],[2928],[2929],[2930]]},{"type":"LineString","arcs":[2931]},{"type":"LineString","arcs":[2932]},{"type":"MultiLineString","arcs":[[2933],[2934],[2935]]},{"type":"MultiLineString","arcs":[[2936],[2937],[2938],[2939],[2940]]},{"type":"LineString","arcs":[2941]},{"type":"MultiLineString","arcs":[[2942],[2943],[2944],[2945]]},{"type":"LineString","arcs":[2946]},{"type":"LineString","arcs":[2947]},{"type":"MultiLineString","arcs":[[2948],[2949]]},{"type":"LineString","arcs":[2950]},{"type":"MultiLineString","arcs":[[2951],[2952],[2953,2954],[2955],[2956],[2957],[2958],[2959],[2960]]},{"type":"MultiLineString","arcs":[[2961,2962],[2963,2964],[2965,2966],[2967],[2968],[2969],[2970]]},{"type":"LineString","arcs":[2971]},{"type":"MultiLineString","arcs":[[2972],[2973],[2974]]},{"type":"LineString","arcs":[2975]},{"type":"LineString","arcs":[2976]},{"type":"LineString","arcs":[2977]},{"type":"MultiLineString","arcs":[[2978],[2979]]},{"type":"LineString","arcs":[2980]},{"type":"LineString","arcs":[2981]},{"type":"LineString","arcs":[2982]},{"type":"MultiLineString","arcs":[[2983],[2984]]},{"type":"LineString","arcs":[2985]},{"type":"LineString","arcs":[2986]},{"type":"MultiLineString","arcs":[[2987],[2988],[2989],[2990]]},{"type":"LineString","arcs":[2991]},{"type":"MultiLineString","arcs":[[2992,2993,2994],[2995],[2996],[2997],[2998]]},{"type":"MultiLineString","arcs":[[2999],[3000]]},{"type":"MultiLineString","arcs":[[3001],[3002],[3003],[3004,3005,3006],[3007],[3008]]},{"type":"MultiLineString","arcs":[[3009],[3010,3011],[3012],[3013],[3014]]},{"type":"LineString","arcs":[3015]},{"type":"MultiLineString","arcs":[[3016],[3017],[3018],[3019],[3020]]},{"type":"LineString","arcs":[3021]},{"type":"MultiLineString","arcs":[[3022],[3023]]},{"type":"MultiLineString","arcs":[[3024,3025,3026],[3027]]},{"type":"MultiLineString","arcs":[[3028],[3029],[3030],[3031],[3032]]},{"type":"LineString","arcs":[3033]},{"type":"MultiLineString","arcs":[[3034],[3035]]},{"type":"LineString","arcs":[3036]},{"type":"LineString","arcs":[3037]},{"type":"MultiLineString","arcs":[[3038],[3039]]},{"type":"LineString","arcs":[3040]},{"type":"LineString","arcs":[3041]},{"type":"MultiLineString","arcs":[[3042],[3043],[3044],[3045],[3046]]},{"type":"MultiLineString","arcs":[[3047,3048],[3049],[3050]]},{"type":"MultiLineString","arcs":[[3051],[3052],[3053],[3054],[3055],[3056],[3057],[3058],[3059]]},{"type":"MultiLineString","arcs":[[3060],[3061],[3062]]},{"type":"MultiLineString","arcs":[[3063],[3064],[3065],[3066]]},{"type":"LineString","arcs":[3067]},{"type":"MultiLineString","arcs":[[3068],[3069]]},{"type":"LineString","arcs":[3070]},{"type":"MultiLineString","arcs":[[3071],[3072],[3073]]},{"type":"MultiLineString","arcs":[[3074],[3075]]},{"type":"MultiLineString","arcs":[[3076],[3077],[3078],[3079]]},{"type":"MultiLineString","arcs":[[3080],[3081]]},{"type":"LineString","arcs":[3082]},{"type":"LineString","arcs":[3083]},{"type":"MultiLineString","arcs":[[3084],[3085],[3086],[3087]]},{"type":"MultiLineString","arcs":[[3088],[3089]]},{"type":"LineString","arcs":[3090]},{"type":"LineString","arcs":[3091]},{"type":"LineString","arcs":[3092]},{"type":"LineString","arcs":[3093]},{"type":"LineString","arcs":[3094]},{"type":"LineString","arcs":[3095]},{"type":"MultiLineString","arcs":[[3096],[3097],[3098]]},{"type":"MultiLineString","arcs":[[3099],[3100]]},{"type":"MultiLineString","arcs":[[3101],[3102],[3103],[3104],[3105]]},{"type":"LineString","arcs":[3106]},{"type":"MultiLineString","arcs":[[3107],[3108],[3109]]},{"type":"LineString","arcs":[3110]},{"type":"LineString","arcs":[3111]},{"type":"LineString","arcs":[3112]},{"type":"MultiLineString","arcs":[[3113],[3114]]},{"type":"LineString","arcs":[3115]},{"type":"MultiLineString","arcs":[[3116],[3117,3118],[3119],[3120],[3121,3122,3123],[3124],[3125]]},{"type":"MultiLineString","arcs":[[3126],[3127],[3128]]},{"type":"LineString","arcs":[3129]},{"type":"LineString","arcs":[3130]},{"type":"LineString","arcs":[3131]},{"type":"MultiLineString","arcs":[[3132],[3133],[3134],[3135],[3136],[3137],[3138],[3139],[3140],[3141],[3142]]},{"type":"LineString","arcs":[3143]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[3144,3145,3146,3147]],"type":"Polygon","properties":{"ct":[-114.51,55.17],"gu":"CAN"},"id":"AB"},{"arcs":[[[-3146,3148,3149,3150,3151,3152,127,3153,3154,3155,131,3156,133,3157,135,3158,137,3159,139,3160,141,3161,143,3162,3163,146,3164,148,3165,150,3166,3167,3168,3169,155,3170,3171,3172,3173,3174,161,3175,163,3176,165,3177,167,3178,169,3179,171,3180,3181,3182,3183,3184,3185]],[[3186]],[[2229,3187]],[[3188,3189,178,3190]],[[3191,3192,3193]],[[3194,3195]],[[3196,3197,3198]],[[2065,3199,2067,3200,3201,2071,3202,2073,3203,3204]],[[2076,3205]],[[2224,3206,2226,3207,3208]],[[2149,3209,2151,3210,2153,3211]],[[2139,3212,2141,3213,3214,2144,3215,2146,3216,2148,3217]],[[3218]],[[1897,3219,1899,3220,1901,3221,3222,3223,1905,3224,3225,3226,1909,3227,1911,3228,3229,3230,3231,1916,3232,3233,1919,3234,1895,3235]],[[2254,3236]]],"type":"MultiPolygon","properties":{"ct":[-124.59,54.99],"gu":"CAN"},"id":"BC"},{"arcs":[[3237,3238,3239,3240,3241,3242,636,3243,638,3244,640,3245,3246,643,3247,645,3248,647,3249]],"type":"Polygon","properties":{"ct":[-97.44,54.92],"gu":"CAN"},"id":"MB"},{"arcs":[[3250,3251,3252,3253,3254,856,3255,3256,3257,-2762,3258,3259,3260,3261,811,3262,813,3263,3264,816,3265,818,3266,3267,821,3268,823,3269,825,3270]],"type":"Polygon","properties":{"ct":[-66.4,46.63],"gu":"CAN"},"id":"NB"},{"arcs":[[[3271,3272,733,3273,735,3274,3275,3276,739,3277,3278,742,3279,3280,745,3281,747,3282,3283,750,3284,752,3285,3286,3287,756,3288,758,3289,760,3290,762,3291,3292,3293,3294,767,3295,769,3296,3297,3298,773,3299,775,3300,777,3301,779,3302,3303,782,3304]],[[1571,3305,3306,1574,3307,3308,3309,3310,1579,3311,1581,3312,1583,3313,1585,3314,3315,1588,3316,1590,3317,3318,1593,3319,3320,1596,3321,3322,1599,3323,1601,3324,1603,3325,3326,1606,3327,1608,3328,1610,3329,1612,3330,3331,1615,3332,3333,1618,3334,1620,3335,1622,3336,3337,3338,3339,1627,3340,1629,3341,1631,3342,3343,3344,1635,3345,3346,3347]]],"type":"MultiPolygon","properties":{"ct":[-62,54.24],"gu":"CAN"},"id":"NL"},{"arcs":[[[-3251,3348,827,3349,829,3350,831,3351,833,3352,835,3353,3354,3355,839,3356,3357,842,3358,3359,3360,846,3361,3362,849,3363,851,3364]],[[2040,3365,2042,3366,3367,2045,3368,2047,3369,3370,2038,3371]]],"type":"MultiPolygon","properties":{"ct":[-63.98,44.91],"gu":"CAN"},"id":"NS"},{"arcs":[[[-3147,-3186,3372,3373,384,3374,386,3375,3376,389,3377,391,3378,393,3379,395,3380,3381,398,3382,400,3383,402,3384,3385,405,3386,407,3387,409,3388,3389,412,3390,414,3391,416,3392,420,3393,422,3394,424,3395,3396,3397]],[[418,3398]],[[3399,3400,2127,3401,3402,3403,2131,3404]],[[3405,3406,2110,3407,3408,2107,3409,3410]],[[3411,3412]],[[1958,3413,1960,3414,3415,1963,3416,1965,3417,1967,3418,3419,3420,3421,1972,3422,1974,3423,1976,3424,3425,1979,3426,3427,1982,3428,1984,3429,1986,3430,1988,3431]],[[3432]],[[3433,3434,3435,3436,3437,3438,1766,3439,3440,1769,3441,1771,3442,3443,1774,3444,3445,1777,3446,1779,3447,3448,1782,3449,1784,3450,1786,3451]],[[3452,3453,3454]],[[3455,3456]],[[1640,3457,1642,3458,3459,3460,3461,1647,3462,3463,1650,3464,1652,3465,1654,3466,3467,1657,3468,3469,1660,3470,3471,1663,3472,3473,3474]],[[3475,3476,3477,3478]],[[3479,3480,3481]],[[3482,3483,1367,3484,3485,1370,3486,1372,3487,3488,3489,1376,3490,1378,3491,1380,3492,1382,3493,3494,3495,3496,1387,3497,1316,3498,1318,3499,1320,3500]]],"type":"MultiPolygon","properties":{"ct":[-119.6,64.36],"gu":"CAN"},"id":"NT"},{"arcs":[[[-3242,-3397,3501,3502,3503,3504,429,3505,431,3506,3507,3508,435,3509,437,3510,439,3511,3512,442,3513,3514,445,3515,447,3516,449,3517,451,3518,453,3519,455,3520,3521,458,3522,460,3523,3524,463,3525,465,3526,467,3527,3528,3529,3530,472,3531,474,3532,476,3533,3534,479,3535,3536,482,3537,484,3538,486,3539,488,3540,490,3541,492,3542,494,3543,3544,497,3545,499,3546,501,3547,3548,3549,3550,3551,3552,508,3553,510,3554,512,3555,514,3556,3557,3558,518,3559,520,3560,522,3561,524,3562,3563,527,3564,529,3565,531,3566,3567,534,3568,3569,537,3570,539,3571,541,3572,3573,544,3574,3575,547,3576,549,3577,551,3578,3579,554,3580,3581,557,3582,3583,3584,561,3585,3586,564,3587,3588,567,3589,569,3590,571,3591,573,3592,3593,3594,577,3595,579,3596,3597,3598,583,3599,585,3600,587,3601,3602,3603,3604,592,3605,594,3606,3607,3608,3609,3610,3611,601,3612,3613,3614,605,3615,607,3616,609,3617,3618,612,3619,3620,615,3621,617,3622,3623,620,3624,622,3625,3626,625,3627,627,3628,629,3629,631,3630,633,3631,3632]],[[-3400,3633]],[[-3406,3634]],[[-3434,3635,3636,1789,3637,1791,3638,3639,-3453,3640,1795,3641,3642,1798,3643,3644,3645,1758,3646,3647,3648]],[[-3483,3649,3650,-3480,3651,1324,3652,-3476,3653,1328,3654,1330,3655,3656,3657,1334,3658,1336,3659,3660,3661,1340,3662,3663,3664,3665,1345,3666,1347,3667,3668,1350,3669,1352,3670,1354,3671,1356,3672,1358,3673,1360,3674,3675,1363,3676,1365,3677]],[[3678,2183,3679,2185,3680]],[[3681,3682]],[[3683,2202,3684,3685]],[[2236,3686,3687]],[[1727,3688,3689,1730,3690,1732,3691,1734,3692,3693,3694,3695,3696,1740,3697,3698,3699,3700,3701,3702,1747,3703,1749,3704,1751,3705,3706,3707,3708]],[[2230,3709]],[[3710,2173,3711]],[[2078,3712,3713]],[[2232,3714]],[[3715,2120,3716,2122,3717]],[[2206,3718,2208,3719,3720]],[[2221,3721]],[[713,3722]],[[3723,3724,2162,3725,2164,3726,2166,3727,2168,3728]],[[2125,3729]],[[1388,3730,3731,3732,1392,3733,1394,3734,3735,1397,3736,3737,1400,3738,1402,3739,3740,1405,3741,3742,1408,3743,1410,3744,1412,3745,1414,3746,1416,3747,3748,3749,3750,1421,3751,1423,3752,3753,1426,3754,1428,3755,3756,3757,1432,3758,3759,1435,3760,1437,3761,1439,3762,3763,1442,3764,1444,3765,3766,3767,1448,3768,3769,1451,3770,1453,3771,1455,3772,1457,3773,1459,3774,1461,3775,1463,3776,1465,3777,1467,3778,1469,3779,1471,3780,3781,1474,3782,3783,1477,3784,1479,3785,1481,3786,1483,3787,1485,3788,1487,3789,1489,3790,3791,1492,3792,1494,3793,1496,3794,1498,3795,1500,3796,3797,1503,3798,1505,3799,1507,3800,1509,3801,1511,3802,3803,1514,3804,1516,3805,3806,1519,3807,3808,3809,1523,3810,1525,3811,1527,3812,3813,3814,3815,1532,3816,1534,3817,3818,1537,3819,1539,3820,1541,3821,1543,3822,3823,1546,3824,1548,3825,1550,3826,1552,3827,1554,3828,1556,3829,3830,1559,3831,3832,1562,3833,3834,1565,3835,1567,3836,1569,3837]],[[1801,3838,3839,1804,3840,3841,1807,3842,3843,3844,3845,1812,3846,1814,3847,1816,3848,1818,3849,1820,3850,3851,1823,3852,1825,3853,1827,3854,3855,3856,1831,3857,3858,1834,3859,1836,3860,1838,3861,3862,1841,3863,3864,1844,3865,1846,3866,1848,3867,3868,3869,3870,1853,3871,1855,3872,1857,3873,1859,3874,3875,1862,3876,1864,3877,1866,3878,3879]],[[3880,3881,3882,2211,3883]],[[2009,3884,2011,3885,3886,2014,3887,3888,2017,3889,2019,3890,3891,3892,3893,2024,3894,2026,3895,2028,3896]],[[2097,3897,3898,3899,2101,3900,3901,2104,3902,2095,3903]],[[3904]],[[2133,3905,2135,3906,3907]],[[2175,3908,3909,2178,3910]],[[3911,2170,3912]],[[3913,1669,3914,1671,3915,1673,3916,1675,3917,3918,1678,3919,1680,3920,3921,1683,3922,1685,3923,3924,3925,3926,1690,3927,3928,1693,3929,1695,3930,3931,3932,3933,1700,3934,3935,3936,1704,3937,1706,3938,1708,3939,1710,3940,1712,3941,3942,1715,3943,1717,3944,1719,3945,1721,3946,3947,1724,3948,3949,3950]],[[3951,2245,3952,3953]],[[3954,1936,3955,1938,3956,3957,1941,3958,1943,3959,1945,3960,1947,3961,3962,1950,3963,3964,1953,3965,1955,3966,1957,3967]],[[2198,3968,3969]],[[3970]],[[2181,3971]],[[2061,3972,2063,3973]],[[3974,2189,3975,3976]],[[3977,1922,3978,1924,3979,1926,3980,1928,3981,1930,3982,1932,3983]],[[3984]],[[1867,3985,3986,1870,3987,3988,3989,3990,1875,3991,1877,3992,3993,1880,3994,3995,1883,3996,1885,3997,3998,3999,1889,4000,4001,1892,4002,4003]],[[1020,4004,4005,1023,4006,1025,4007,4008,1028,4009,1030,4010,1032,4011,4012,4013,1036,4014,4015,4016,4017,1041,4018,1043,4019,1045,4020,1047,4021,1049,4022,1051,4023,1053,4024,1055,4025,1057,4026,4027,1060,4028,1062,4029,4030,4031,4032,1067,4033,1069,4034,4035,1072,4036,1074,4037,1076,4038,1078,4039,1080,4040,1082,4041,1084,4042,4043,1087,4044,4045,1090,4046,4047,1093,4048,4049,1096,4050,4051,1099,4052,4053,4054,1103,4055,1105,4056,4057,1108,4058,1110,4059,1112,4060,1114,4061,1116,4062,1118,4063,1120,4064,1122,4065,1124,4066,1126,4067,4068,4069,4070,1131,4071,1133,4072,1135,4073,1137,4074,1139,4075,1141,4076,1143,4077,4078,4079,1147,4080,1149,4081,1151,4082,1153,4083,4084,4085,1157,4086,1159,4087,1161,4088,1163,4089,4090,4091,1167,4092,1169,4093,1171,4094,1173,4095,4096,1176,4097,4098,1179,4099,4100,1182,4101,4102,1185,4103,1187,4104,1189,4105,1191,4106,1193,4107,1195,4108,1197,4109,4110,1200,4111,4112,4113,1204,4114,1206,4115,4116,1209,4117,4118,1212,4119,1214,4120,1216,4121,4122,1219,4123,1221,4124,4125,1224,4126,1226,4127,1228,4128,1230,4129,1232,4130,1234,4131,1236,4132,1238,4133,1240,4134,1242,4135,1244,4136,1246,4137,4138,4139,1250,4140,4141,1253,4142,1255,4143,1257,4144,1259,4145,1261,4146,1263,4147,1265,4148,4149,4150,1269,4151,1271,4152,1273,4153,1275,4154,4155,1278,4156,1280,4157,1282,4158,4159,1285,4160,4161,1288,4162,1290,4163,1292,4164,4165,4166,1296,4167,4168,1299,4169,4170,1302,4171,1304,4172,4173,4174,1308,4175,4176,1311,4177,4178,1314,4179]],[[4180,2033,4181,4182,4183,2037,4184,4185]],[[4186,2115,4187,2117,4188,4189,2112,4190]],[[1990,4191,1992,4192,1994,4193,1996,4194,1998,4195,2000,4196,2002,4197,2004,4198,2006,4199,4200]],[[4201,2217,4202,2219,4203]],[[2248,4204,2250,4205]],[[2239,4206,4207]],[[4208,4209,4210,2194,4211,2196,4212]],[[4213]],[[4214,2050,4215,2052,4216]]],"type":"MultiPolygon","properties":{"ct":[-98.62,65.9],"gu":"CAN"},"id":"NU"},{"arcs":[[[-3238,4217,649,4218,651,4219,653,4220,4221,4222,4223,4224,659,4225,4226,4227,4228,4229,-2554,4230,4231,-2536,-2563,4232,4233,-2600,-2590,4234,4235]],[[4236,4237,4238]],[[-2599]],[[-2595]],[[-2598]],[[-2612]],[[-2558]],[[-2556]],[[-2546]],[[-2611]],[[-2610]],[[-2606]],[[-2604]]],"type":"MultiPolygon","properties":{"ct":[-86.09,50.46],"gu":"CAN"},"id":"ON"},{"arcs":[[4239,4240,2085,4241,2087,4242,2089,4243,4244,2092,4245,4246,2081,4247]],"type":"Polygon","properties":{"ct":[-63.22,46.39],"gu":"CAN"},"id":"PE"},{"arcs":[[[-3261,4248,4249,4250,4251,4252,803,4253,4254,806,4255,808,4256,4257]],[[-3272,4258,784,4259,786,4260,4261,4262,4263,791,4264,4265,4266,795,4267,4268,4269,4270,4271,801,4272,-4227,4273,-4239,4274,662,4275,664,4276,666,4277,668,4278,670,4279,672,4280,674,4281,676,4282,678,4283,4284,681,4285,683,4286,685,4287,4288,4289,689,4290,691,4291,693,4292,4293,4294,697,4295,4296,700,4297,4298,703,4299,4300,4301,707,4302,709,4303,4304,4305,715,4306,4307,718,4308,4309,4310,4311,4312,725,4313,727,4314,729,4315,731,4316],[4317]],[[2055,4318,2057,4319,2059,4320]],[[4321]],[[4322]]],"type":"MultiPolygon","properties":{"ct":[-71.94,53.73],"gu":"CAN"},"id":"QC"},{"arcs":[[-3148,-3398,-3241,4323,4324]],"type":"Polygon","properties":{"ct":[-105.9,54.42],"gu":"CAN"},"id":"SK"},{"arcs":[[-3185,4325,4326,381,382,4327,-3373]],"type":"Polygon","properties":{"ct":[-135.51,63.63],"gu":"CAN"},"id":"YT"},{"arcs":[[[-3184,4328,176,4329,-3195,4330,-3189,4331,-3197,4332,4333,4334,4335,191,4336,193,4337,200,4338,4339,203,4340,205,4341,4342,4343,209,4344,4345,212,4346,214,4347,216,4348,4349,4350,4351,221,4352,4353,224,4354,228,4355,230,4356,232,4357,4358,235,4359,237,4360,4361,240,4362,242,4363,4364,245,4365,247,4366,249,4367,251,4368,4369,4370,255,4371,4372,4373,259,4374,4375,262,4376,4377,4378,266,4379,4380,4381,270,4382,272,4383,4384,4385,276,4386,4387,279,4388,4389,282,4390,284,4391,4392,287,4393,289,4394,291,4395,293,4396,295,4397,4398,298,4399,4400,4401,302,4402,304,4403,4404,4405,308,4406,310,4407,312,4408,4409,315,4410,317,4411,4412,4413,321,4414,323,4415,325,4416,4417,328,4418,330,4419,4420,334,4421,336,4422,338,4423,4424,341,4425,343,4426,4427,346,4428,348,4429,4430,4431,4432,353,4433,4434,356,4435,4436,4437,360,4438,362,4439,364,4440,366,4441,368,4442,370,4443,4444,4445,374,4446,4447,4448,4449,379,4450,-4326]],[[-3192,4451]],[[4452]],[[2480,4453,2482,4454,2484,4455,2486,4456]],[[4457]],[[226,4458]],[[4459]],[[2475,4460,2477,4461,2468,4462,4463,4464,4465,2473,4466]],[[2464,4467,4468]],[[4469]],[[4470]],[[2462,4471,2460,4472]],[[2449,4473,2451,4474]],[[4475]],[[4476,2454,4477,4478,2457,4479,4480]],[[2440,4481,2442,4482,4483,2445,4484,2447,4485,4486]],[[4487]],[[4488,2434,4489,4490,4491]],[[4492]],[[4493]],[[4494,2431,4495]],[[4496]],[[196,4497,198,4498,4499]],[[2412,4500,4501,2415,4502,2417,4503,4504,2420,4505,2422,4506,2427,4507]],[[184,4508,186,4509,4510,189,4511]],[[4512,2424,4513]],[[2403,4514,4515,4516,4517,2408,4518,2410,4519]],[[2397,4520,4521,4522,4523,2402,4524]],[[4525,2392,4526,2394,4527]],[[4528,2385,4529,2387,4530,4531,4532]],[[4533]],[[4534]],[[2377,4535,4536,4537,4538]],[[4539]]],"type":"MultiPolygon","properties":{"ct":[-152.72,64.59],"gu":"USA"},"id":"AK"},{"arcs":[[4540,4541,4542,973,4543,4544,4545,4546,4547]],"type":"Polygon","properties":{"ct":[-86.83,32.8],"gu":"USA"},"id":"AL"},{"arcs":[[4548,4549,4550,4551,4552,4553]],"type":"Polygon","properties":{"ct":[-92.44,34.9],"gu":"USA"},"id":"AR"},{"arcs":[[[4554,4555,4556,4557,4558,4559]],[[4560,4561,4562]]],"type":"MultiPolygon","properties":{"ct":[-111.66,34.29],"gu":"USA"},"id":"AZ"},{"arcs":[[[-4557,4563,4564,4565,4566,4567,4568,4569,4570,4571,83,4572,85,4573,87,4574,4575,4576,4577,4578,4579,94,4580,4581,4582]],[[-4561,4583,4584]]],"type":"MultiPolygon","properties":{"ct":[-119.6,37.25],"gu":"USA"},"id":"CA"},{"arcs":[[4585,4586,4587,4588,4589,4590]],"type":"Polygon","properties":{"ct":[-105.53,39],"gu":"USA"},"id":"CO"},{"arcs":[[4591,4592,4593,4594]],"type":"Polygon","properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"arcs":[[4595,4596]],"type":"Polygon","properties":{"ct":[-77.02,38.92],"gu":"USA"},"id":"DC"},{"arcs":[[4597,4598,4599,896,4600,898,4601]],"type":"Polygon","properties":{"ct":[-75.51,38.98],"gu":"USA"},"id":"DE"},{"arcs":[[[-4548,4602,4603,942,4604,4605,946,4606,4607,4608,4609,4610,954,4611,4612,957,4613,959,4614,961,4615,963,4616,4617,966,4618,968,4619,4620]],[[4621]],[[949,4622]],[[4623]],[[4624]],[[4625]]],"type":"MultiPolygon","properties":{"ct":[-82.5,28.67],"gu":"USA"},"id":"FL"},{"arcs":[[[-4547,4626,4627,4628,4629,-4603]],[[4630]]],"type":"MultiPolygon","properties":{"ct":[-83.46,32.66],"gu":"USA"},"id":"GA"},{"arcs":[[[4631,4632]],[[4633,2337,2338,4634]],[[4635]],[[4636,2332,2323,4637]],[[4638,4639,4640,2318,4641,4642,4643]]],"type":"MultiPolygon","properties":{"ct":[-155.5,19.62],"gu":"USA"},"id":"HI"},{"arcs":[[4644,4645,4646,4647,4648,4649]],"type":"Polygon","properties":{"ct":[-93.5,42.09],"gu":"USA"},"id":"IA"},{"arcs":[[-3150,4650,4651,4652,4653,4654,4655]],"type":"Polygon","properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"arcs":[[-4650,4656,4657,-2573,4658,4659,4660,4661]],"type":"Polygon","properties":{"ct":[-89.2,40.07],"gu":"USA"},"id":"IL"},{"arcs":[[-4660,4662,-2571,4663,4664,4665,4666]],"type":"Polygon","properties":{"ct":[-86.28,39.91],"gu":"USA"},"id":"IN"},{"arcs":[[-4589,4667,4668,4669]],"type":"Polygon","properties":{"ct":[-98.37,38.49],"gu":"USA"},"id":"KS"},{"arcs":[[[-4661,-4667,4670,4671,4672,4673,4674]],[[4675,4676]]],"type":"MultiPolygon","properties":{"ct":[-85.28,37.53],"gu":"USA"},"id":"KY"},{"arcs":[[-4551,4677,4678,977,4679,979,4680,981,4681,983,4682,985,4683,4684,4685,989,4686,4687,992,4688,994,4689,4690]],"type":"Polygon","properties":{"ct":[-92.04,31.1],"gu":"USA"},"id":"LA"},{"arcs":[[-4595,4691,4692,4693,4694,4695,870,4696,872,4697,874,4698,876,4699,4700,879,4701,881,4702,4703]],"type":"Polygon","properties":{"ct":[-71.87,42.28],"gu":"USA"},"id":"MA"},{"arcs":[[[-4597,4704,4705,4706,-4598,4707,4708,4709,4710,904,4711,4712,907,4713,4714,910,4715,4716,4717,4718,915,4719]],[[4720,4721]]],"type":"MultiPolygon","properties":{"ct":[-76.82,39.07],"gu":"USA"},"id":"MD"},{"arcs":[[-3260,4722,-2760,4723,-3257,4724,4725,4726,861,4727,863,4728,4729,4730,4731,-4249]],"type":"Polygon","properties":{"ct":[-69.25,45.41],"gu":"USA"},"id":"ME"},{"arcs":[[[-4233,4732,-2561,-2544,4733,4734,-4665,4735,-2569,-2602]],[[4736,4737,-2584,-2603,-2577,4738]],[[-2596]],[[-2597]],[[-2607]],[[-2580]],[[-2579]],[[-2605]],[[-2609]],[[-2608]]],"type":"MultiPolygon","properties":{"ct":[-84.63,43.49],"gu":"USA"},"id":"MI"},{"arcs":[[-3239,-4236,4739,-2588,4740,4741,-4648,4742,4743]],"type":"Polygon","properties":{"ct":[-94.31,46.31],"gu":"USA"},"id":"MN"},{"arcs":[[-4554,4744,-4669,4745,-4645,-4662,-4675,4746,-4677,4747]],"type":"Polygon","properties":{"ct":[-92.49,38.38],"gu":"USA"},"id":"MO"},{"arcs":[[-4545,4748,4749,4750,-4678,-4550,4751]],"type":"Polygon","properties":{"ct":[-89.67,32.77],"gu":"USA"},"id":"MS"},{"arcs":[[-3145,-4325,4752,4753,4754,-4651,-3149]],"type":"Polygon","properties":{"ct":[-109.63,47.03],"gu":"USA"},"id":"MT"},{"arcs":[[[-4628,4755,4756,4757,4758,4759,934,4760,4761,4762,4763]],[[4764,4765,929,4766,4767]]],"type":"MultiPolygon","properties":{"ct":[-79.43,35.56],"gu":"USA"},"id":"NC"},{"arcs":[[-3240,-4744,4768,-4753,-4324]],"type":"Polygon","properties":{"ct":[-100.46,47.44],"gu":"USA"},"id":"ND"},{"arcs":[[-4588,4769,4770,-4646,-4746,-4668]],"type":"Polygon","properties":{"ct":[-99.79,41.53],"gu":"USA"},"id":"NE"},{"arcs":[[-4250,-4732,4771,867,4772,-4694,4773]],"type":"Polygon","properties":{"ct":[-71.58,43.69],"gu":"USA"},"id":"NH"},{"arcs":[[[4774,4775,4776,4777,4778,893,4779]],[[4780]]],"type":"MultiPolygon","properties":{"ct":[-74.66,40.21],"gu":"USA"},"id":"NJ"},{"arcs":[[-4560,-4591,4781,4782,4783]],"type":"Polygon","properties":{"ct":[-106.11,34.42],"gu":"USA"},"id":"NM"},{"arcs":[[-4558,-4583,4784,-4654,4785]],"type":"Polygon","properties":{"ct":[-116.65,39.36],"gu":"USA"},"id":"NV"},{"arcs":[[[-4232,4786,-2552,4787,-4229,-4252,4788,-4692,-4594,885,4789,-4776,4790,4791,-2538,4792]],[[4793,887,4794,4795]],[[-2545]]],"type":"MultiPolygon","properties":{"ct":[-75.59,43.02],"gu":"USA"},"id":"NY"},{"arcs":[[4796,4797,-4671,-4666,-4735,4798,-2542,4799]],"type":"Polygon","properties":{"ct":[-82.79,40.3],"gu":"USA"},"id":"OH"},{"arcs":[[-4553,4800,-4782,-4590,-4670,-4745]],"type":"Polygon","properties":{"ct":[-97.51,35.59],"gu":"USA"},"id":"OK"},{"arcs":[[-4582,4801,4802,4803,4804,-4655,-4785]],"type":"Polygon","properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"arcs":[[-4791,-4775,4805,-4599,-4707,4806,-4797,4807,-2540,4808]],"type":"Polygon","properties":{"ct":[-77.8,40.88],"gu":"USA"},"id":"PA"},{"arcs":[[[-4592,-4704,4809,4810]],[[4811]]],"type":"MultiPolygon","properties":{"ct":[-71.6,41.7],"gu":"USA"},"id":"RI"},{"arcs":[[-4629,-4764,4812,4813,939,4814,4815]],"type":"Polygon","properties":{"ct":[-80.9,33.92],"gu":"USA"},"id":"SC"},{"arcs":[[-4647,-4771,4816,-4754,-4769,-4743]],"type":"Polygon","properties":{"ct":[-100.22,44.44],"gu":"USA"},"id":"SD"},{"arcs":[[-4546,-4752,-4549,-4748,-4676,-4747,-4674,4817,-4756,-4627]],"type":"Polygon","properties":{"ct":[-86.34,35.85],"gu":"USA"},"id":"TN"},{"arcs":[[[-4552,-4691,4818,996,4819,4820,4821,4822,1004,4823,4824,4825,-4783,-4801]],[[4826]],[[4827]],[[1000,4828,4829]],[[4830]]],"type":"MultiPolygon","properties":{"ct":[-99.36,31.51],"gu":"USA"},"id":"TX"},{"arcs":[[-4559,-4786,-4653,4831,-4586]],"type":"Polygon","properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"arcs":[[[-4596,4832,917,4833,919,4834,921,4835,923,4836,4837,926,4838,4839,-4765,4840,-4757,-4818,-4673,4841,-4705]],[[-4710,4842,902,4843]],[[-4721,4844,4845]]],"type":"MultiPolygon","properties":{"ct":[-78.9,37.53],"gu":"USA"},"id":"VA"},{"arcs":[[-4251,-4774,-4693,-4789]],"type":"Polygon","properties":{"ct":[-72.67,44.08],"gu":"USA"},"id":"VT"},{"arcs":[[[-3151,-4656,-4805,4846,98,4847,100,4848,4849,4850,4851,4852,4853,4854,108,4855,4856,4857,4858,113,4859,115,4860,117,4861,119,4862,121,4863,123,4864,4865]],[[4866]],[[4867,4868]],[[4869]],[[4870]]],"type":"MultiPolygon","properties":{"ct":[-120.39,47.37],"gu":"USA"},"id":"WA"},{"arcs":[[[-4649,-4742,-2586,4871,-4737,4872,-2575,4873,-4657]],[[-2594]],[[-2593]],[[-2592]],[[-2582]],[[-2581]]],"type":"MultiPolygon","properties":{"ct":[-90.03,44.64],"gu":"USA"},"id":"WI"},{"arcs":[[-4672,-4798,-4807,-4706,-4842]],"type":"Polygon","properties":{"ct":[-80.61,38.65],"gu":"USA"},"id":"WV"},{"arcs":[[-4587,-4832,-4652,-4755,-4817,-4770]],"type":"Polygon","properties":{"ct":[-107.54,43],"gu":"USA"},"id":"WY"}]}}} \ No newline at end of file diff --git a/topojson/dist/oceania_110m.json b/topojson/dist/oceania_110m.json new file mode 100644 index 00000000000..7545cd90505 --- /dev/null +++ b/topojson/dist/oceania_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[38952,13436],[-6,-18],[-26,-3],[-1,-37],[-20,-23],[-33,7],[-19,17],[-38,-44],[34,-28],[-44,-49],[-56,-40],[-58,-26],[-31,-56],[-1,-18],[-39,-53],[-106,-36],[-40,24],[-34,-29],[-56,6],[-19,-24],[-25,-10],[-25,-7],[-27,16],[-41,81],[-13,-56],[16,-27],[8,-41],[-9,-24],[-29,26],[-7,-47],[-24,16],[-8,-46],[-15,-13],[-67,18],[-24,-37],[-35,7],[-41,-47],[-110,-11],[-20,-28],[-27,-14],[-26,-30],[-3,-37],[45,-68],[-26,-39],[-51,3],[-23,89],[-13,24],[15,72],[-2,33],[-20,18],[-16,-23],[-35,-10],[-20,39],[-44,-1],[-11,20],[-80,-34],[-85,-51],[-22,-54],[-58,3],[-25,-125],[-42,-41],[-39,-28],[-9,-23],[-27,-120],[-3,-38],[36,-78],[47,-49],[26,-46],[-3,-28],[26,-58],[146,-191],[33,-11],[27,-38],[42,-94],[44,-67],[50,-236],[-3,-82],[19,-100],[-6,-33],[-21,-22],[7,-105],[-5,-46],[-42,-70],[-179,-146],[-55,-29],[-22,21],[-18,-5],[-2,-36],[-27,-91],[-49,-58],[-99,-69],[-22,-46],[-20,-24],[-50,-6],[8,45],[7,129],[6,46],[25,20],[-36,46],[-20,-8],[-27,49],[-32,24],[-45,8],[-13,-13],[-16,37],[11,20],[-6,38],[-29,7],[-3,-33],[-38,-8],[-3,77],[-26,62],[-2,19],[-32,76],[-14,-13],[-27,16],[-61,80],[-25,8],[-45,-8],[-47,0],[-14,22],[15,125],[-52,10],[-40,-5],[-41,-33],[14,-56],[-19,-168],[-35,-93],[-27,-124],[-27,-67],[-12,-118],[11,-100],[22,-10],[40,22],[19,-8],[8,-35],[7,-85],[25,-39],[22,-70],[15,-86],[12,-43],[31,-53],[28,-21],[45,10],[35,-25],[28,-57],[37,-39],[41,-35],[17,-37],[73,-78],[34,-85],[11,-41],[5,-64],[-18,-96],[11,-42],[2,-119],[36,-49],[26,-52],[43,-123],[4,-54],[-22,5],[-20,37],[-30,-26],[-7,-5],[-33,-6],[-55,64],[-194,167],[-22,56],[-7,51],[-30,57],[-28,34],[-26,69],[-6,111],[-14,21],[-9,67],[-11,134],[-28,71],[-42,69],[-30,94],[-32,29],[-34,75],[-41,52],[-16,32],[-45,-26],[-8,61],[6,66],[13,22],[0,38],[51,199],[-17,-48],[-14,26],[-8,63],[33,54],[2,75],[17,65],[-12,33],[-8,85],[1,78],[-60,181],[-15,-46],[-21,150],[-1,59],[-22,38],[-21,228],[17,58],[-21,8],[-28,-10],[-20,30],[-14,68],[-33,20],[-4,-62],[-32,-54],[-26,-8],[-22,23],[-30,-36],[-18,6],[-6,-49],[-48,-78],[-23,12],[12,37],[-7,31],[-22,-2],[-21,-58],[-10,44],[-26,22],[-3,40],[-48,-82],[-15,13],[7,60],[14,54],[31,159],[-19,75],[-10,67],[-34,92],[-6,86],[-38,40],[1,51],[-35,22],[-13,29],[-31,7],[-12,61],[-23,-67],[-31,38],[-36,61],[-18,61],[-27,32],[-8,65],[-12,10],[4,96],[7,41],[-38,18],[-33,46],[-42,-54],[-52,83],[-9,70],[-23,5],[-8,-63],[4,-43],[24,-67],[-52,-72],[-21,35],[-42,18],[-23,-5],[-16,32],[-32,-39],[-16,-3],[-13,3],[-98,-78],[-18,43],[-37,-58],[-81,-28],[-23,-21],[-22,-51],[22,-76],[-75,-129],[-29,-18],[-67,-26],[-34,-22],[-79,-82],[-39,-73],[-49,-75],[-95,-91],[-26,-43],[-81,-56],[-34,-38],[-10,-26],[13,-37],[-6,-23],[-69,-45],[-34,4],[-37,-24],[-28,-79],[-30,-2],[-19,19],[-47,-35],[-26,-76],[-4,-32],[7,-58],[7,-134],[20,-97],[0,-54],[-8,-67],[-12,-56],[-36,-76],[-16,-77],[13,-106],[3,-124],[-46,-5],[-39,-33],[-32,-79],[8,-67],[-69,-32],[-47,-65],[-13,-70],[-67,-54],[-28,8],[-40,41],[-63,104],[-24,79],[-15,105],[-65,249],[-26,62],[-41,56],[-34,95],[-21,70],[-31,182],[-28,103],[-53,114],[-7,34],[-56,139],[-15,61],[-16,150],[-42,210],[-14,149],[-16,98],[17,89],[13,40],[-24,101],[-12,0],[1,73],[14,16],[-24,30],[-6,29],[10,42],[-32,11],[-15,-58],[10,-57],[-26,-71],[-20,-18],[-124,-72],[-24,-3],[-69,46],[-28,32],[-114,152],[-28,42],[0,33],[42,-22],[100,48],[51,53],[7,47],[-37,-2],[-26,-35],[-41,-29],[-70,20],[-65,52],[-27,47],[-4,27],[28,43],[-19,32],[-56,7],[-30,15],[-49,4],[3,49],[-8,66],[-22,8],[-70,6],[1,29]],[[30046,13436],[26,-46],[7,9],[-7,37]],[[30174,13436],[-21,-59],[-18,-30],[11,-37],[27,-8],[17,-4],[15,-44],[33,-6],[76,32],[88,-5],[32,-10],[38,2],[71,41],[41,90],[33,38]],[[30796,13436],[0,-4],[30,-84],[44,-70],[28,-30],[90,-41],[94,-17],[21,-20],[85,-150],[19,-22],[35,-5],[1,-54],[-51,-118],[-48,-55],[-27,-40],[-42,-112],[-39,-4],[-18,30],[-32,-78],[-16,-97],[8,-74],[-27,-41],[-69,-14],[-30,-20],[-23,-38],[-10,-69],[-25,-39],[-81,-6],[-40,-14],[-16,-33],[-6,-71],[-23,-35],[-38,-18],[-36,16],[-62,-9],[-121,-60],[-77,-36],[-19,-16],[-22,-41],[-16,-101],[-64,-42],[-48,-26],[-169,-62],[-71,-35],[-39,-25],[-32,-62],[-19,-22],[-50,-8],[-44,9],[-99,-80],[-64,-29],[-87,-3],[-49,-13],[-87,-92],[-98,-37],[-44,0],[-46,18],[-40,86],[-10,131],[-18,66],[-13,108],[-21,50],[-1,45],[7,119],[-7,54],[-6,50],[-32,65],[-21,61],[-62,77],[-47,85],[-22,52],[-26,93],[-41,105],[-37,53],[-52,51],[-22,-1],[-43,50],[-16,39],[-23,30],[-27,66],[6,41],[-16,95],[6,89],[-21,74],[-17,34],[-47,118],[-22,24],[-65,52],[-43,46],[-21,68],[0,23]],[[28002,13436],[37,-99],[37,-57],[6,-32],[-6,-76],[17,-68],[7,-35],[21,-34],[66,-54],[71,-71],[-1,-9],[4,-71],[25,-71],[8,-70],[4,-142],[9,-93],[19,-113],[12,-29],[22,1],[38,-35],[35,-55],[43,-40],[48,-114],[27,-136],[17,-115],[57,-135],[13,41],[26,-11],[19,-68],[17,-18],[17,14],[36,-16],[13,-33],[52,-17],[43,-77],[33,-48],[60,-67],[34,-65],[34,-54],[30,-7],[18,-23],[30,-58],[8,-47],[-6,-25],[-78,-44],[-33,-30],[12,-19],[24,21],[47,1],[14,-23],[23,-17],[33,-76],[31,-42],[47,-49],[34,-9],[59,12],[91,65],[61,-6],[36,-17],[29,11],[58,48],[58,28],[21,-13],[50,5],[24,16],[71,9],[16,-4],[56,16],[90,32],[46,29],[17,40],[27,14],[64,-23],[-23,-118],[10,-137],[-35,-53],[-10,-114],[-88,-224],[-42,-79],[-33,-92],[-40,-84],[-19,-58],[-4,-37],[-15,-49],[-39,-89],[-67,-130],[-24,-56],[-147,-221],[-105,-141],[-20,-21],[-158,-125],[-148,-171],[-105,-153],[-97,-150],[-54,-118],[-31,-48],[-38,-20],[-72,-87],[-22,-14],[-18,-32],[-9,-92],[-58,-127],[-1,-23],[-24,-69],[-34,-28],[-14,-70],[-42,-177],[12,-60],[55,-79],[20,-6],[-1,-59],[-12,-23],[-15,-93],[21,-13],[-17,-70],[16,-109],[15,-45],[12,7],[20,-103],[2,-49],[63,-54],[21,-9],[-2,-33],[15,-14],[8,-79],[-21,-48],[8,-87],[-1,-85],[14,-66],[-10,-45],[15,-185],[-6,-43],[20,-52],[15,-10],[1,-50],[-13,-18],[-21,-105],[-57,-96],[-31,-43],[-22,-50],[-87,-74],[-91,-46],[-38,-2],[-30,-37],[-52,-34],[-69,-58],[-1,-16],[-37,-73],[-45,-65],[0,-18],[-37,-4],[-36,-33],[-47,-75],[-61,-61],[-25,16],[-6,-115],[2,-32],[35,-20],[15,-44],[10,-81],[25,-101],[19,-26],[9,-65],[2,-84],[-21,-173],[15,-34],[-46,-89],[-45,-31],[-178,-87],[-54,-37],[-25,-25],[-36,-70],[48,-76],[-4,-82],[-49,-245],[-14,-48],[-50,-67],[-24,-13],[-66,-80],[-104,-223],[-68,-119],[-89,-92],[-102,-137],[-85,-84],[-105,-87],[-69,-39],[-93,4],[-31,-37],[-95,-33],[-55,-6],[-40,15],[-66,15],[-36,-19],[-104,16],[-60,-26],[-24,-30],[-29,-15],[-107,2],[-59,-26],[-49,-49],[-49,4],[-74,72],[-32,40],[-55,-7],[-17,28],[23,26],[-6,32],[-52,116],[-19,6],[4,55],[30,-7],[21,38],[1,62],[-13,81],[-56,99],[-65,149],[-24,83],[-22,95],[-51,119],[-13,14],[-101,123],[-36,86],[-34,112],[1,30],[-18,57],[-22,122],[0,91],[-21,93],[-23,76],[1,102],[-10,126],[14,12],[-4,55],[-15,52],[-38,66],[-88,184],[-23,89],[-75,198],[-45,97],[-43,58],[-20,52],[-14,97],[2,61],[9,99],[-3,117],[33,144],[30,91],[9,86],[25,135],[24,48],[28,72],[33,40],[37,23],[18,35],[23,84],[9,142],[-12,56],[-30,61],[-42,116],[-6,57],[-20,56],[42,57],[9,25],[-11,65],[-33,86],[-26,88],[-4,31],[-65,157],[-4,23],[63,13],[39,28],[-10,6],[-80,-23],[-28,40],[-6,22],[10,31],[-11,46],[-19,38],[-18,32],[-4,33],[-19,33],[-68,88],[-38,67],[-75,107],[-51,53],[-32,46],[-52,114],[-54,157],[-6,34],[40,7],[25,53],[13,111],[20,12],[-30,41],[22,26],[14,63],[10,8],[-33,8],[-3,25],[27,59],[25,80],[4,59],[0,38],[14,78],[-26,87],[-9,66],[-22,22],[-36,2],[-30,20],[-19,91],[-19,-21],[-23,2],[1,43],[-53,-34],[-136,-20],[-48,-17],[-80,-12],[-29,19],[-37,49],[-29,90],[-1,42],[-63,112],[-50,56],[-82,19],[-150,-11],[-73,-8],[-66,-16],[-57,-23],[-27,-37],[-53,-23],[-70,-18],[-107,-76],[-87,-34],[-81,-57],[-37,34],[-99,28],[-122,27],[-271,-43],[2,-6],[-160,-97],[-25,-11],[-26,2],[-84,48],[-112,85],[-28,31],[-81,110],[-169,158],[-18,25],[-7,13],[-111,77],[-9,34],[-32,18],[-46,92],[-27,34],[22,37],[-24,74],[-2,38],[-40,56],[-8,66],[-46,33],[-20,-6],[-61,69],[15,62],[-26,-17],[-24,60],[-31,4],[-32,24],[-12,21],[13,46],[-23,48],[-81,10],[-18,20],[2,25],[-51,31],[-6,37],[2,94],[-8,48],[32,48],[-3,43],[-89,155],[84,163],[12,35],[3,44],[-1,34],[9,67],[45,150],[9,85],[-3,93],[-16,78],[-38,95],[24,57],[4,98],[-31,79],[-24,-6],[-31,84],[-18,-69],[-5,15],[17,165],[19,67],[17,25],[25,6],[72,214],[14,62],[75,96],[29,25],[19,34],[7,36],[0,12]],[[13757,0],[14,20],[-2,45],[39,21],[10,38],[-55,-23],[-7,94],[6,45],[49,18],[-1,25],[-69,58],[26,14],[41,-4],[56,-28],[29,1],[-31,56],[-18,52],[-38,-38],[-89,13],[72,23],[-41,24],[23,47],[33,12],[-26,65],[-50,-3],[-49,10],[-15,24],[-33,-23],[10,-23],[-33,-15],[-18,28],[23,40],[67,61],[0,62],[119,10],[12,-59],[44,-12],[23,138],[36,28],[43,-33],[9,18],[-67,31],[27,46],[49,35],[10,56],[-78,43],[17,28],[28,78],[-7,61],[22,70],[-8,17],[20,59],[24,36],[-12,37],[-31,20],[26,33],[-23,44],[-26,-4],[-48,-51],[-41,9],[-18,59],[-11,83],[25,80],[-1,41],[14,60],[35,12],[22,92],[-25,97],[-33,226],[-2,37],[13,32],[36,-10],[17,21],[7,71],[15,-1],[23,100],[33,119],[40,67],[21,68],[14,98],[38,84],[-3,94],[24,52],[11,103],[-7,79],[-14,87],[-14,140],[9,67],[30,13],[16,66],[-2,74],[-25,50],[2,51],[26,39],[10,36],[9,86],[45,175],[12,68],[7,96],[-6,31],[15,68],[17,26],[1,30],[-18,87],[15,171],[-6,52],[-10,9],[1,55],[38,43],[5,89],[24,169],[-17,109],[9,131],[-3,63],[-17,86],[-13,162],[-122,114],[-5,20],[-40,68],[-152,115],[-109,64],[-77,63],[-78,56],[-44,45],[-67,88],[-25,25],[-47,91],[-8,45],[17,53],[-2,40],[-20,38],[-56,131],[-20,35],[-157,374],[-37,143],[-10,21],[-52,157],[-78,148],[-30,90],[-32,55],[-31,31],[-67,45],[-47,44],[2,50],[30,0],[0,30],[-24,50],[-37,122],[14,78],[67,97],[48,46],[13,1],[39,46],[17,78],[-5,61],[-25,7],[-30,-69],[-64,63],[-25,31],[27,59],[-1,93],[-6,15],[8,62],[39,67],[25,77],[23,36],[6,83],[-10,22],[8,30],[48,31],[64,18],[28,41],[22,14],[-15,28],[18,45],[25,-8],[4,27],[-18,16],[-5,29],[25,65],[94,27],[35,100],[53,82],[3,34],[-12,33],[-30,-10],[-12,48],[23,41],[4,31],[-10,138],[6,201],[-41,74],[-31,42],[-38,57],[-34,94],[35,51],[-25,8],[-27,48],[-44,46],[-32,17],[-43,-2],[-40,33],[-2,28],[35,53],[108,-35],[22,-2],[82,-57],[47,-71],[24,-7],[67,-105],[12,54],[-8,18],[73,93],[24,58],[31,16],[32,45],[3,98],[8,62],[86,91],[69,-18],[14,16],[10,48],[43,-13],[68,3],[67,71],[41,18],[42,60],[62,62],[51,-21],[19,-57],[-26,-31],[-14,-21],[-66,-22],[1,-51],[27,-54],[17,-67],[-8,-38],[-38,-59],[-20,-46],[36,-112],[16,-29],[27,-3],[35,21],[21,38],[5,60],[-6,22],[-50,99],[-12,68],[24,37],[171,84],[21,3],[-7,39],[-38,-10],[-7,55],[14,32],[22,17],[16,-13],[41,-120],[42,13],[58,-21],[52,-43],[17,-41],[0,-53],[20,-30],[27,-5],[124,27],[99,4],[38,-63],[14,-10],[96,-29],[30,4],[37,29],[73,36],[40,36],[123,18],[41,-4],[74,5],[-11,-17],[-81,-17],[-16,-30],[45,-104],[19,37],[24,-12],[26,-35],[21,6],[34,-16],[23,-23],[25,0],[32,-44],[-23,-23],[-8,-66],[13,-17],[-9,-29],[57,-4],[26,17],[46,-18],[113,-91],[64,-85],[22,-49],[-2,-88],[25,17],[33,-13],[77,-89],[27,-25],[13,-67],[26,34],[82,-17],[50,-1],[43,15],[31,-4],[71,5],[103,-29],[2,-37],[23,27],[45,-37],[61,-18],[142,-149],[41,-81],[9,39],[45,-56],[10,-30],[15,-145],[44,-165],[26,-66],[24,0],[43,-25],[10,-46],[-14,-63],[-58,-68],[-14,-35],[-40,-56],[-46,-43],[-29,-63],[21,-16],[23,29],[25,50],[30,10],[18,-30],[26,15],[38,-12],[181,-13],[36,-28],[-14,-57],[-44,-122],[-29,-28],[-73,-32],[-60,0],[-47,-22],[2,-17],[84,7],[22,20],[40,14],[-13,-52],[12,-13],[24,57],[27,1],[56,102],[18,14],[3,27],[33,50],[20,15],[30,2],[34,-35],[22,12],[51,-18],[22,-29],[50,-12],[19,-37],[24,18],[37,-49],[33,-11],[10,-50],[35,50],[21,-14],[42,-63],[-1,-44],[27,-12],[5,-22],[-26,-34],[-30,-127],[7,-13],[32,50],[23,92],[27,18],[7,-26],[-36,-40],[16,-13],[41,42],[43,17],[17,34],[31,-8],[123,-75],[28,10],[60,-30],[35,-1],[108,21],[65,-9],[102,-77],[101,-92],[39,-62],[53,-66],[60,-57],[56,-35],[34,-11],[58,-1],[23,7],[46,-14],[22,-16],[26,-68],[20,-113],[32,-140],[3,-56],[-7,-129],[-12,-57],[-29,-109],[-29,-58],[-97,-153],[-50,-70],[-44,-37],[-21,-35],[-53,-110],[-32,-92],[-41,-86],[-44,-70],[-21,-16],[-2,50],[-28,20],[-7,-65],[-18,-88],[-22,-71],[15,-19],[-14,-121],[13,-157],[6,-34],[-38,-255],[3,-73],[-22,-61],[-34,-53],[-14,-53],[-3,-56],[7,-89],[-8,-42],[-55,-96],[-32,-100],[-50,-63],[-34,-94],[10,-90],[-31,-25],[-47,-19],[-51,-55],[7,-37],[-21,-33],[-131,-1],[8,41],[-24,0],[9,-39],[-54,-18],[-35,25],[-32,-11],[-34,8],[-44,-25],[-8,-55],[-19,4],[-105,-76],[-32,1],[-72,-48],[-139,-128],[-46,-65],[-36,-36],[-72,-10],[6,-23],[33,-27],[-23,-73],[-21,-27],[14,-28],[-3,-57],[21,-89],[-10,-45],[1,-86],[-22,-103],[-12,-23],[-65,-58],[-62,-96],[-32,-73],[-31,-106],[-76,-140],[-53,-64],[-96,-91],[-4,44],[48,17],[43,46],[28,42],[77,146],[5,35],[-17,14],[-50,-29],[-32,11],[-1,-50],[-22,-85],[-70,-70],[-17,-45],[-16,-65],[13,-25],[-62,-166],[-18,-30],[-78,-81],[-53,-109],[-48,-55],[-103,-53],[-60,29],[-40,4],[-35,-15],[-110,28],[-33,35],[-108,19],[-66,85],[-3,60],[10,70],[29,31],[-39,-25],[-16,-90],[5,-41],[17,-26],[-20,-72],[30,-41],[54,-29],[49,-35],[42,-50],[10,-26],[-32,-53],[-2,-40],[39,-58],[44,-6],[9,-103],[-137,-237],[-62,-39],[-125,-47],[-96,-24],[-122,-24],[-127,-3],[-44,29],[-33,-1],[24,-83],[20,-37],[-21,-63],[-13,-4],[-17,-68],[37,-62],[-19,-47],[-98,-51],[-91,-2],[-127,67],[-33,12],[-24,-52],[11,-72],[1,-99],[7,-20],[54,-62],[64,-1],[-9,40],[56,24],[17,-34],[0,-90],[-67,-20],[-21,58],[-48,7],[-40,-26],[-5,-22],[78,-32],[-76,-58],[-42,-65],[-3,-20],[16,-104],[-20,-40],[-34,-20],[-12,-66],[-62,8],[-96,-49],[-43,-53],[-38,-74],[-5,-49],[29,-60],[77,-74],[66,-15],[41,2],[34,-48],[-17,-108],[-66,-66],[-81,-53],[-76,-74],[-29,-156],[-23,-19]],[[32448,159],[68,-34],[35,6],[62,38],[27,-9],[1,-36],[-27,-8],[-66,1],[2,-37],[37,7],[17,-31],[-50,-3],[-26,29],[-77,1],[1,-28],[-42,6],[18,39],[-19,62],[26,72],[20,-14],[-7,-61]],[[42023,7003],[23,-10],[9,-24],[8,-90],[23,-60],[13,-73],[19,-12],[18,-48],[-7,-35],[19,-15],[6,-123],[7,-48],[22,-85],[33,-17],[61,54],[17,-46],[73,-73],[29,-197],[1,-77],[14,-39],[52,-90],[27,-92],[-13,-117],[20,-33],[13,-79],[25,-37],[84,-58],[39,-2],[10,-43],[21,-28],[76,-36],[65,-42],[-6,-67],[20,-39],[37,-27],[33,-91],[27,-139],[6,-46],[55,-20],[-19,59],[16,35],[18,-39],[57,-50],[-10,43],[14,6],[19,-37],[4,-34],[-6,-101],[-9,-52],[53,-11],[9,-37],[35,-38],[39,11],[58,-120],[80,-103],[12,-77],[31,-67],[-10,-217],[16,-30],[51,-172],[2,-84],[-40,-87],[10,-29],[-23,-118],[-18,-54],[-6,-63],[7,-38],[-33,-119],[-32,-55],[-9,-79],[-57,-58],[-53,-38],[-11,-54],[-32,-45],[-2,-45],[-48,-94],[-23,-98],[3,-35],[-17,-18],[-56,-98],[-9,-35],[-6,-78],[-17,-80],[2,-127],[-40,-33],[-37,-16],[-146,-8],[-74,-11],[1,-22],[-113,-108],[-81,-17],[10,-37],[23,-2],[-10,-39],[-49,56],[-54,26],[-21,25],[14,35],[-38,22],[-12,-32],[-37,-16],[31,66],[-29,52],[-53,-47],[2,-32],[-72,-55],[-42,-38],[-21,-5],[-157,82],[-42,14],[-76,1],[-47,37],[-47,3],[-37,32],[-73,110],[-14,49],[22,47],[-20,75],[-46,77],[-58,55],[-26,10],[-28,-22],[-40,-5],[-3,26],[37,36],[15,88],[-60,123],[-12,-18],[-33,-144],[-20,-17],[-88,-26],[-11,13],[22,55],[40,-5],[21,81],[3,61],[15,44],[25,39],[24,96],[-2,21],[-29,69],[-21,-66],[-34,-82],[-45,-43],[-48,-33],[-93,-126],[10,-26],[-4,-48],[-104,78],[34,10],[-21,95],[-29,41],[-42,103],[-58,5],[-20,50],[23,32],[-12,36],[-67,62],[-29,-5],[-181,47],[-51,42],[-68,38],[-78,-23],[-52,3],[-144,-17],[-126,-69],[-106,-38],[-75,-8],[-71,12],[-22,-8],[-132,-86],[-80,-34],[-30,-31],[-16,-56],[-33,-59],[-31,-27],[-46,-3],[-18,15],[-117,-23],[-29,23],[-71,8],[-85,-14],[-93,-8],[-46,-29],[-17,-44],[-42,-25],[-57,-17],[-55,-58],[-62,-34],[-68,15],[-90,-7],[-87,54],[-38,48],[-30,23],[-53,15],[-6,56],[2,76],[26,-22],[38,20],[24,44],[-3,71],[12,89],[-1,103],[-8,33],[-63,147],[-17,55],[-13,80],[-1,74],[-13,98],[-34,79],[-45,83],[-16,108],[-18,56],[-49,100],[-43,60],[-8,30],[22,21],[11,-52],[24,-48],[27,27],[0,34],[-41,52],[-20,56],[10,30],[51,-92],[25,-66],[22,23],[-5,89],[-46,102],[-28,87],[-29,49],[4,83],[24,70],[22,31],[6,75],[-20,77],[42,132],[19,-4],[-8,-46],[5,-56],[35,9],[33,102],[106,61],[55,68],[100,75],[109,-3],[38,11],[47,53],[86,16],[39,52],[44,-4],[99,17],[66,31],[50,33],[41,55],[61,140],[54,52],[9,36],[-18,17],[-10,68],[5,43],[18,37],[58,62],[21,55],[15,-47],[31,-66],[16,-52],[23,-35],[4,69],[31,-2],[3,26],[-48,90],[27,14],[-15,29],[17,21],[23,-48],[11,12],[51,-18],[21,19],[-8,41],[34,52],[-36,0],[-8,23],[9,34],[21,1],[11,26],[18,-2],[42,-26],[-14,58],[58,5],[-30,35],[-15,42],[26,25],[29,5],[9,31],[37,-46],[21,73],[49,24],[13,-25],[22,42],[1,38],[25,10],[27,-45],[23,13],[38,-40],[42,-73],[23,-57],[-4,-49],[-16,-68],[42,29],[11,49],[17,22],[-2,32],[61,-12],[29,-22],[39,6],[11,-21],[27,39],[4,55],[-36,-2],[-21,23],[18,60],[32,28],[21,74],[14,-3],[32,35],[-13,27],[4,48],[21,30],[21,7],[9,54],[36,-10],[19,47],[41,4],[15,-18],[30,-1],[98,10],[22,21],[19,89],[-26,32],[-50,-14],[-41,42],[69,21],[26,-38],[34,-7],[32,-24],[24,-34],[22,-9],[60,-4],[39,-59],[37,11],[45,2],[35,-34],[34,1],[35,31],[37,-19],[14,-49],[39,9],[8,32],[-23,11],[34,38],[26,-57],[31,7],[7,-25],[-27,-33],[-16,-35],[3,-48],[-33,-33],[-30,2],[-30,-15],[-8,-33],[3,-45],[19,4],[-18,-88],[-21,-22],[-26,-57],[-42,-26],[54,-52],[6,-27],[31,-2],[27,-25],[79,-93],[26,-5],[81,-47],[32,-25],[15,-27],[55,-52],[91,-26],[43,-86],[86,-61],[65,13],[44,35],[61,180],[12,78],[5,63],[19,74],[7,51],[-22,196],[10,65],[25,22],[-20,68],[45,73],[-44,6],[28,91],[24,51],[21,110],[38,78],[13,-35]],[[42733,1268],[-2,-42],[-24,-11],[-23,27],[49,26]],[[42323,1658],[54,-11],[118,-61],[25,-7],[59,11],[23,24],[52,-1],[80,45],[43,-46],[-6,-43],[0,-145],[-15,8],[-20,-47],[-10,-63],[-33,-50],[-45,-10],[-12,-42],[-24,-26],[-30,-53],[-44,18],[-62,12],[-3,24],[-66,65],[-25,62],[-12,56],[7,31],[-60,117],[-24,84],[30,48]],[[42769,1752],[-31,4],[-33,62],[23,21],[43,-57],[-2,-30]],[[42225,1784],[-24,-19],[-9,47],[17,52],[18,-14],[-2,-66]],[[41316,2503],[-54,-1],[-20,23],[5,27],[103,29],[26,-25],[56,-30],[-116,-23]],[[43428,4485],[-32,-134],[-17,21],[18,80],[31,33]],[[41652,6007],[-16,-6],[-37,-42],[-13,26],[17,23],[29,11],[20,-12]],[[41294,6398],[-42,1],[-31,17],[4,41],[38,43],[7,-46],[24,-56]],[[40452,6866],[2,-29],[-50,1],[8,74],[22,15],[18,-61]],[[40477,6910],[68,23],[12,17],[28,-47],[-21,-35],[-47,-48],[-40,26],[-27,30],[-14,67],[41,-33]],[[35287,12949],[-21,0],[-1,44],[-19,38],[17,8],[24,-90]],[[13296,13436],[23,-48],[-1,-52],[-32,-25],[-37,35],[-8,32],[19,30],[4,28]],[[13935,12743],[-17,-29],[-63,-10],[1,33],[31,19],[48,-13]],[[13638,13201],[62,-124],[-37,39],[-25,85]],[[11945,12269],[25,-21],[-2,-64],[-10,-39],[-10,-88],[9,-57],[-14,-62],[-21,-53],[-33,-25],[-25,-56],[54,-3],[38,-27],[17,-3],[23,29],[24,8],[43,-18],[75,-8],[50,4],[58,20],[145,6],[62,-21],[140,-120],[24,-27],[-20,-41],[9,-49],[-32,-121],[-11,-100],[8,-137],[-15,-24],[-12,-68],[-3,-75],[-17,-34],[9,-55],[18,-24],[22,-73],[16,-35],[74,-114],[32,-22],[24,-28],[2,-37],[14,-33],[23,-17],[60,-6],[14,-18],[26,-3],[43,11],[72,53],[50,28],[25,-29],[21,-5],[15,-23],[-25,-32],[2,-32],[-56,-51],[-23,-6],[-5,-54],[44,-64],[5,-34],[-55,-38],[-35,-6],[-29,11],[-17,110],[-18,-2],[0,-33],[-38,12],[-33,79],[-59,10],[-11,16],[-47,-2],[-33,-51],[-35,105],[-17,-16],[-1,-29],[-31,12],[-24,25],[16,44],[-4,40],[-42,47],[-61,36],[-28,40],[-11,35],[-68,56],[14,-45],[32,-32],[-32,-42],[-54,53],[-31,41],[-10,43],[16,33],[7,98],[-107,127],[-32,66],[-99,114],[6,28],[21,7],[-10,22],[1,51],[-47,-7],[-10,9],[4,-21],[-26,-23],[-70,5],[-37,11],[-62,41],[-27,4],[-49,21],[-35,23],[-60,30],[-61,0],[-32,7],[-59,41],[-61,64],[-96,130],[-64,77],[-50,45],[-50,29],[-64,18],[-57,-6],[-57,-41],[-87,-47],[-30,-4],[-52,18],[-42,29],[-90,24],[-62,37],[-46,44],[-61,21],[-52,10],[-35,26],[-150,77],[-88,90],[-52,40],[-30,-2],[-51,16],[-100,47],[-28,59],[-53,51],[-119,82],[-61,106],[-26,71],[11,16],[36,7],[17,166],[-33,35],[-21,53],[-9,75],[-19,55],[-74,95],[-65,117],[-42,49],[-96,90],[-31,62],[-5,7]],[[9014,13436],[18,-117],[16,-25],[23,-6],[31,11],[41,-43],[44,-78],[9,-32],[-17,-50],[-45,-41],[-16,5],[-53,129],[-79,85],[-65,47],[-22,-1],[-47,33],[-24,45],[6,38]],[[10745,13436],[-19,-89],[-8,-93],[-4,-158],[-12,-115],[15,-74],[29,-57],[25,-128],[17,-56],[96,-151],[27,-103],[46,-76],[33,-22],[74,-17],[38,-26],[25,-54],[15,-8],[43,10],[48,21],[87,21],[59,30],[88,16],[37,0],[77,61],[49,53],[37,111],[-4,46],[9,108],[14,39],[63,40],[146,35],[47,19],[61,4],[82,-27],[40,7],[24,-62],[-16,-48],[-50,-68],[-29,-71],[-2,-48],[-32,-26],[19,-47],[-11,-35],[17,-16],[-40,-166],[-25,120],[-35,-67]],[[17012,8937],[-36,-4],[12,39],[29,-7],[-5,-28]],[[16959,8969],[-23,-17],[-26,13],[-4,34],[75,22],[8,-16],[-30,-36]],[[16898,9008],[-31,-10],[15,47],[16,-37]],[[16905,9019],[-3,46],[29,-13],[-26,-33]],[[16901,9305],[-19,-16],[-13,31],[24,23],[8,-38]],[[37751,8777],[-43,21],[-6,53],[-26,3],[-14,53],[13,58],[-22,46],[-16,78],[9,85],[27,71],[63,85],[11,-43],[21,-21],[54,-12],[24,6],[75,-52],[-4,50],[23,84],[31,40],[-2,60],[27,23],[154,46],[26,15],[69,119],[28,35],[23,45],[17,54],[49,14],[53,55],[21,-14],[3,-17],[16,20],[26,-2],[25,35],[-24,52],[31,34],[35,1],[29,73],[72,151],[25,21],[1,-66],[21,37],[28,8],[9,-39],[31,-4],[27,-29],[-3,-33],[-16,-12],[0,-49],[23,1],[35,19],[10,-32],[16,1],[51,-36],[82,-50],[-12,-45],[-57,-30],[-26,-2],[-27,16],[-25,-25],[12,-30],[28,-34],[-12,-33],[-22,-8],[-56,8],[-21,-29],[-13,-18],[31,-39],[-15,-42],[-32,-32],[15,-59],[18,-23],[50,-112],[-24,-63],[10,-31],[70,-81],[64,-58],[7,-23],[-20,-22],[-63,3],[-36,14],[-45,-36],[-25,-74],[-7,-35],[4,-113],[-9,-57],[-18,17],[-37,-80],[-14,-13],[-23,37],[-24,-86],[-22,-41],[-4,-64],[34,-12],[-10,-60],[-42,-72],[-16,-12],[2,-47],[-19,-63],[-89,-51],[-75,-50],[-12,49],[-13,96],[-55,8],[-27,-19],[-32,9],[-23,35],[-32,14],[-29,-8],[-63,-47],[-59,-7],[-27,19],[-1,54],[-17,40],[-28,-25],[-72,-23],[-82,19],[-10,21],[-28,209],[9,61],[-20,44],[-22,20]],[[13716,237],[21,-7],[14,-68],[-3,-73],[12,-42],[-7,-33],[-13,-14]],[[13707,0],[-44,25],[-28,65],[3,41],[58,-17],[12,47],[-24,60],[32,16]],[[13639,247],[-39,-12],[0,42],[25,3],[14,-33]],[[13728,300],[3,-42],[-36,-14],[11,67],[22,-11]],[[13695,289],[-35,10],[15,41],[30,-27],[-10,-24]],[[13673,249],[-56,46],[18,32],[38,-78]],[[13856,700],[-35,8],[5,32],[27,-3],[3,-37]],[[13849,850],[-67,16],[6,23],[51,7],[10,-46]],[[13828,953],[-50,-23],[-20,33],[57,4],[13,-14]],[[13954,996],[26,-17],[-24,-40],[-43,-32],[-32,53],[73,36]],[[13825,1465],[36,1],[19,-55],[-11,-38],[-26,-19],[-5,-30],[30,-27],[-4,-24],[-41,-92],[-48,14],[-18,17],[32,65],[-1,108],[17,36],[-1,40],[21,4]],[[37901,12540],[-3,-80],[-52,-68],[4,-70],[-75,-66],[-26,-10],[-17,-29],[-116,54],[-8,57],[-3,82],[8,18],[76,64],[7,33],[51,15],[38,-13],[52,25],[37,7],[27,-19]],[[29099,6921],[9,-10],[12,-82],[-28,6],[-8,20],[5,57],[10,9]],[[20358,11705],[41,-63],[-26,-13],[-19,32],[4,44]],[[20482,11863],[15,-13],[-15,-31],[-20,7],[20,37]],[[20187,12035],[8,-23],[-38,-25],[-6,33],[36,15]],[[12803,13104],[23,-16],[36,11],[21,-17],[34,19],[77,-41],[35,1],[41,-27],[24,-41],[34,-27],[72,-2],[69,-45],[45,-45],[50,-38],[3,16],[113,-83],[53,-26],[54,-1],[18,-21],[-13,-50],[85,-6],[31,-13],[33,-38],[44,-20],[8,-19],[-22,-23],[-71,-7],[-59,-26],[-56,14],[-56,4],[-75,-7],[-122,-21],[6,34],[29,32],[28,16],[14,32],[-35,45],[-90,-2],[-56,60],[-16,75],[-21,33],[-71,-14],[-185,88],[-127,27],[-57,28],[56,17],[4,22],[-26,18],[-99,0],[-43,-26],[-47,-50],[-86,-33],[-10,-27],[-38,-15],[-50,7],[23,25],[22,60],[24,36],[42,34],[95,43],[87,20],[28,15],[70,-5]],[[12696,12820],[-43,-22],[-27,61],[19,28],[32,-9],[19,-58]],[[15449,11759],[23,-30],[-2,-39],[-14,-7],[-13,60],[6,16]],[[14102,12487],[25,37],[76,4],[82,-42],[60,-22],[36,-50],[52,8],[0,-27],[-49,6],[-4,-25],[49,-11],[44,1],[27,-17],[50,-58],[-17,-43],[-40,-23],[-24,30],[-102,9],[-42,-15],[-22,-26],[-36,-6],[-27,39],[-36,-23],[-27,-60],[-37,-52],[-19,19],[-19,48],[-37,36],[-62,-3],[-49,-11],[-61,15],[-37,1],[-38,-24],[-50,31],[-20,23],[7,37],[28,10],[72,-32],[127,-8],[39,15],[7,26],[-62,62],[14,76],[-46,32],[-45,1],[-7,22],[34,28],[48,7],[63,-33],[75,-12]],[[42337,11394],[-25,-57],[-16,12],[26,45],[15,0]],[[15445,11914],[8,-51],[-24,-39],[-17,-8],[-13,57],[29,0],[17,41]],[[24613,9606],[-29,-71],[-32,9],[-1,28],[25,46],[31,14],[6,-26]],[[13966,12321],[-56,13],[4,22],[52,-35]],[[39468,7002],[-15,24],[76,55],[-5,-38],[-56,-41]],[[39167,7123],[-26,-10],[-28,8],[-44,54],[-34,31],[-55,5],[-33,34],[35,32],[37,2],[57,13],[17,-24],[69,-60],[31,-57],[-26,-28]],[[39749,7262],[-42,-68],[-46,-57],[-78,-34],[-43,-1],[25,123],[7,18],[41,42],[34,24],[22,5],[62,39],[32,62],[54,13],[214,28],[-33,-54],[-40,-14],[-22,-21],[-82,-46],[-65,-23],[-40,-36]],[[39590,7485],[-47,-63],[-37,3],[17,44],[67,16]],[[38660,7452],[-24,-81],[-21,-15],[-28,6],[-12,29],[0,61],[39,34],[37,-15],[9,-19]],[[39646,7470],[-22,-42],[-29,16],[51,26]],[[39675,7501],[17,-7],[54,3],[4,-35],[-66,-15],[-30,13],[21,41]],[[38878,7469],[47,-1],[34,-40],[0,-39],[-67,-20],[-16,18],[-165,-59],[-49,17],[10,33],[2,48],[45,32],[34,-8],[47,-57],[59,13],[-3,18],[-40,21],[-30,38],[5,15],[34,8],[53,-37]],[[39466,7504],[12,-30],[-30,-27],[-1,-32],[-48,-23],[-57,-16],[-44,-3],[-72,-17],[-61,23],[-55,5],[-34,-12],[-15,15],[9,51],[51,36],[19,3],[73,-22],[47,-32],[77,13],[32,-17],[43,7],[50,51],[4,27]],[[38482,7501],[44,-41],[-11,-25],[-62,-32],[-64,48],[-29,41],[3,15],[50,-18],[44,24],[25,-12]],[[40360,7515],[-26,27],[12,21],[24,-20],[-10,-28]],[[39961,7586],[2,-17],[-38,-35],[-38,9],[-47,-17],[5,28],[22,29],[24,-9],[60,28],[10,-16]],[[41467,7452],[-83,-4],[16,58],[42,91],[41,32],[40,6],[24,-16],[22,-32],[-4,-26],[-37,-62],[-28,-34],[-33,-13]],[[40601,7589],[-44,-63],[-27,20],[14,50],[43,75],[18,10],[2,-53],[-6,-39]],[[38320,7707],[-80,-45],[-69,4],[-36,11],[21,46],[146,2],[18,-18]],[[40968,7805],[9,-31],[-42,-56],[-19,29],[17,98],[35,-40]],[[41004,7830],[-14,-11],[-23,17],[-11,40],[39,16],[16,-26],[-7,-36]],[[37426,7890],[48,-50],[74,-10],[13,9],[24,-38],[15,-55],[14,-9],[97,-4],[83,-11],[37,-14],[29,36],[16,58],[42,2],[42,-48],[153,-30],[10,-9],[21,-88],[-3,-21],[68,-44],[92,23],[64,-33],[-17,-107],[21,-37],[-17,-16],[-49,21],[-85,50],[-49,-1],[-45,-16],[-101,26],[-101,5],[-79,26],[-73,47],[-71,24],[-63,12],[-31,-7],[-25,-24],[-79,18],[-48,35],[-51,12],[-65,6],[-26,25],[5,57],[-67,27],[-48,-10],[-6,13],[26,49],[30,86],[25,16],[78,-19],[43,3],[29,15]],[[40990,7933],[6,-39],[-28,-8],[-19,15],[2,25],[21,36],[18,-29]],[[39352,7994],[-13,-16],[-18,33],[23,33],[12,-23],[-4,-27]],[[39427,8018],[-13,-29],[-31,3],[10,83],[12,34],[38,16],[1,-56],[-17,-51]],[[39501,8123],[-20,-14],[-11,-74],[36,-24],[-53,-72],[-21,-3],[-12,37],[25,45],[12,76],[3,54],[27,28],[14,-53]],[[39510,8220],[-15,-24],[-24,20],[7,28],[32,-24]],[[40155,8285],[-36,-5],[10,31],[36,20],[8,-25],[-18,-21]],[[38598,8254],[-27,-20],[-1,93],[14,40],[16,13],[3,-68],[-5,-58]],[[40026,8300],[-72,-29],[-61,38],[-25,48],[11,44],[78,9],[43,-18],[32,-38],[-6,-54]],[[36541,8397],[-10,-14],[-26,46],[9,22],[24,-32],[3,-22]],[[40336,8453],[54,-33],[29,3],[47,-29],[35,-74],[-3,-53],[-30,11],[-94,82],[-39,5],[-33,-19],[-48,25],[-44,-29],[-30,2],[-27,54],[-18,-26],[-18,-51],[-10,69],[17,12],[26,42],[186,9]],[[37560,8441],[-42,-56],[-47,3],[-6,50],[10,54],[22,11],[41,-19],[22,-43]],[[36494,8449],[-15,-1],[-4,49],[26,-14],[-7,-34]],[[39871,8539],[-23,46],[18,11],[5,-57]],[[39900,8621],[-90,-10],[-17,22],[107,-12]],[[40424,8594],[-21,-4],[-52,30],[38,24],[43,14],[12,-51],[-20,-13]],[[39688,8602],[-28,-7],[-10,24],[10,41],[33,4],[82,-19],[4,-24],[-59,-4],[-32,-15]],[[41253,8622],[-54,-1],[-95,49],[160,-23],[-11,-25]],[[37257,8679],[23,-57],[3,-41],[22,-64],[45,-40],[-12,-44],[-23,-8],[-60,30],[-21,112],[-43,11],[-21,-5],[-21,33],[29,55],[26,20],[21,-9],[32,7]],[[40126,8687],[1,-37],[-65,-3],[-15,18],[7,37],[27,16],[45,-31]],[[39502,8729],[23,10],[23,-10],[-12,-43],[-37,7],[-32,-22],[-18,26],[15,48],[38,-16]],[[37751,8777],[3,-26],[-35,-27],[-12,9],[8,49],[36,-5]],[[36379,8636],[-16,-4],[-29,22],[-37,81],[15,50],[30,-23],[44,-104],[-7,-22]],[[40524,8742],[-9,-29],[-25,17],[-13,56],[45,6],[2,-50]],[[41159,8822],[62,-62],[-31,-21],[-42,18],[-14,55],[-22,-13],[-23,44],[70,-21]],[[41824,7322],[-21,18],[-81,115],[-28,55],[-25,-6],[-104,-11],[-16,19],[29,85],[-43,53],[23,13],[78,-5],[8,20],[-72,-11],[-42,15],[-28,30],[51,28],[-38,38],[-32,46],[-20,115],[-61,74],[-27,22],[-7,30],[-43,-2],[-18,28],[-36,4],[-123,60],[-62,9],[-72,34],[-20,28],[2,19],[-43,6],[-58,50],[-12,-5],[-19,36],[-23,10],[-8,-85],[-20,-27],[-47,-5],[-22,80],[20,28],[-8,28],[-63,67],[-44,12],[17,36],[45,-1],[23,-16],[40,33],[48,25],[46,-40],[46,40],[4,19],[-12,52],[-61,-30],[-146,-8],[-53,54],[-12,57],[-19,39],[-72,-13],[-33,14],[32,38],[13,53],[115,89],[29,11],[43,-1],[73,-44],[69,-20],[35,-27],[27,-85],[-21,-80],[3,-64],[10,-43],[26,-61],[33,20],[13,-66],[15,-46],[39,-20],[42,2],[107,172],[27,29],[48,9],[47,21],[-4,55],[73,50],[14,1],[244,-160],[33,1],[66,-13],[28,-14],[-2,-24],[35,7]],[[41822,8491],[58,-25],[144,-88],[130,-43],[50,-48],[70,-39],[99,-77],[14,-2],[60,-87],[-4,-107],[37,-4],[61,-27],[65,-50],[41,3],[33,-27],[34,-69],[-7,-43],[-63,-9],[-43,2],[-4,-43],[42,-91],[31,-29],[24,-42],[45,-32],[22,-45],[41,-125],[31,-19],[50,21],[23,-28],[-19,-38],[7,-23],[32,-19],[70,-7],[-2,-19],[-37,-19],[27,-37],[64,-45],[-9,-16],[36,-33],[-50,-21],[-27,16],[11,32],[-145,30],[-29,23],[-54,-9],[-81,19],[-21,24],[-38,78],[-26,16],[-17,52],[-48,25],[-10,50],[-55,104],[-44,32],[-114,38],[-16,58],[-54,-8],[-30,-57],[-37,22],[11,-62],[-22,-8],[-35,14],[8,-48],[-86,-16],[30,-23],[36,-49],[5,-43],[-116,-58],[-38,24],[-127,-7],[-32,12]],[[37067,8848],[-22,-9],[-12,29],[30,26],[13,-20],[-9,-26]],[[40102,8833],[-19,-25],[-22,1],[-9,35],[0,46],[19,10],[31,-67]],[[40522,8950],[31,-20],[-1,-41],[-84,12],[-36,39],[25,8],[65,2]],[[37108,8922],[2,-22],[-38,10],[-9,18],[17,26],[28,-32]],[[36808,9159],[69,-53],[-16,-10],[-55,28],[2,35]],[[36868,9152],[25,-36],[-12,-11],[-42,37],[29,10]],[[37088,9144],[-6,-27],[-26,15],[-1,40],[22,5],[11,-33]],[[36795,9121],[-17,14],[-9,53],[10,22],[26,-33],[-10,-56]],[[36205,9071],[-27,-6],[-65,129],[21,32],[22,-14],[54,-87],[-5,-54]],[[36806,9219],[-52,1],[-14,25],[62,-16],[4,-10]],[[39744,9184],[-51,-80],[-22,-62],[-36,-15],[-79,-19],[-45,6],[-46,29],[-101,1],[-77,9],[-53,-19],[-38,5],[-27,14],[-38,-15],[-26,-44],[-18,-71],[7,-78],[6,-21],[78,-117],[51,-5],[13,34],[33,59],[23,19],[10,-26],[31,-7],[26,19],[59,19],[16,21],[50,16],[35,-12],[10,-26],[-9,-40],[-15,-8],[-27,31],[-26,-9],[-59,-98],[-23,-22],[-48,-18],[-11,-16],[-42,-11],[-11,-25],[47,-39],[86,-167],[-14,-62],[-11,-22],[52,-66],[11,-33],[28,3],[-2,-48],[-43,-2],[-58,-20],[-13,-65],[-37,8],[-30,29],[9,77],[-15,45],[-26,24],[-47,60],[26,106],[0,41],[-42,16],[-25,-14],[-49,-48],[26,-76],[1,-70],[-7,-189],[4,-131],[-97,-17],[-21,13],[-15,32],[5,50],[16,46],[14,104],[-2,39],[-13,92],[-26,25],[-48,-25],[-20,77],[-1,49],[12,32],[33,36],[24,170],[3,64],[61,101],[-3,56],[6,97],[13,45],[41,70],[44,-19],[28,47],[4,41],[15,14],[56,-17],[36,-35],[52,-1],[55,-8],[50,-35],[33,23],[98,-19],[55,31],[84,119],[26,2],[16,-29],[-25,-45]],[[36699,9335],[14,-27],[-6,-34],[-35,-9],[-9,52],[36,18]],[[40096,9103],[22,10],[35,93],[35,30],[35,-2],[-5,-82],[-65,-54],[15,-24],[24,-10],[29,-55],[-77,31],[-21,3],[-11,-24],[5,-73],[11,-43],[27,-72],[-28,9],[-40,95],[-14,158],[-23,60],[17,70],[4,40],[39,72],[27,15],[-11,-77],[6,-36],[-4,-41],[-12,-27],[-34,-28],[14,-38]],[[40195,9327],[-30,-5],[-10,44],[18,38],[28,27],[15,-44],[-21,-60]],[[36010,9403],[-10,-23],[-64,49],[-15,19],[12,31],[77,-76]],[[37557,9613],[-32,42],[-4,21],[31,33],[22,-55],[-17,-41]],[[39986,9722],[-24,-30],[-5,44],[14,33],[15,-47]],[[35984,9900],[39,-10],[27,7],[89,-6],[25,-9],[36,-46],[25,-68],[31,-20],[-14,-56],[43,-27],[165,-144],[29,-41],[1,-19],[28,-18],[47,-101],[29,-6],[5,30],[26,1],[31,-37],[17,-67],[20,-12],[27,5],[52,-58],[8,-61],[24,-33],[83,-52],[12,-26],[25,29],[51,-46],[7,-53],[-22,-6],[-19,-32],[18,-37],[-24,-18],[-5,-37],[49,-48],[58,-12],[25,2],[12,-105],[20,-53],[36,-68],[83,-16],[51,-98],[5,-64],[-21,-58],[7,-67],[3,-114],[-14,-206],[-8,-19],[-49,68],[-23,-16],[5,-28],[-54,27],[-19,-19],[10,-37],[-23,0],[-84,143],[-77,67],[-132,137],[-38,84],[-52,51],[-30,65],[-39,57],[-34,68],[-13,81],[-44,125],[-37,76],[-66,122],[-32,28],[-28,42],[-46,176],[8,35],[-9,20],[-58,51],[-55,39],[-32,46],[-13,68],[-32,34],[-56,106],[-34,12],[-37,31],[-108,141],[-38,101],[2,40],[26,30],[58,-27],[24,-36],[17,-8]],[[35683,10176],[-27,39],[0,25],[27,5],[6,-42],[-6,-27]],[[35510,10849],[-21,0],[-2,35],[28,-8],[-5,-27]],[[35533,11090],[4,-44],[-20,-11],[-12,46],[28,9]],[[35549,11273],[13,-20],[1,-59],[-34,-26],[0,48],[13,52],[3,74],[12,38],[17,-21],[-25,-86]],[[13502,12212],[24,-47],[-42,-8],[-33,14],[-41,-6],[-11,-26],[-88,34],[-55,46],[28,44],[30,13],[100,-19],[88,-45]],[[34048,10070],[-97,-51],[-52,21],[-20,43],[-25,118],[-6,133],[-5,36],[8,28],[13,139],[20,50],[11,63],[23,21],[-43,17],[4,28],[29,-1],[13,-26],[56,-63],[40,-86],[48,-139],[39,-72],[12,-54],[3,-59],[-14,-71],[-10,-25],[-47,-50]],[[29871,6816],[11,-58],[26,-47],[1,-22],[48,-75],[27,-139],[6,-125],[20,-86],[18,-40],[-3,-37],[-29,-89],[-28,18],[-16,76],[-24,-2],[-12,-19],[30,-157],[-19,-78],[-15,-9],[-22,-83],[9,-78],[-19,-101],[-89,-340],[-46,-208],[-57,-215],[-35,-201],[-37,-112],[-25,-99],[-42,-33],[-61,-12],[-34,-15],[-71,-54],[-52,-1],[-62,49],[-39,14],[-41,40],[-48,120],[-3,99],[9,68],[-48,112],[-15,84],[2,49],[28,107],[30,29],[103,231],[-7,50],[5,47],[-29,89],[-29,150],[-11,111],[51,117],[14,116],[43,-2],[37,20],[67,12],[16,43],[28,3],[50,-29],[5,48],[71,77],[23,-16],[-14,-49],[39,31],[-19,54],[30,56],[21,-50],[33,79],[-6,42],[11,30],[35,25],[-24,59],[7,33],[16,4],[33,-43],[30,47],[41,49],[14,80],[-11,49],[43,69],[11,38]],[[35696,12357],[-5,-18],[-37,32],[-25,56],[56,-30],[11,-40]],[[997,6551],[18,-25],[0,-36],[-40,-5],[-27,53],[49,13]],[[1066,6486],[35,-19],[-28,-23],[-23,9],[16,33]],[[15507,11604],[17,-35],[-22,-19],[-27,59],[32,-5]],[[44840,5332],[53,-24],[71,-70],[90,-107],[62,-50],[83,-81],[12,-30],[-16,-24],[-58,30],[-38,33],[-11,21],[-70,39],[-36,26],[-113,142],[-19,36],[-10,59]],[[45348,5114],[5,-32],[-33,8],[-5,32],[33,-8]],[[45246,5244],[-2,-34],[23,-28],[-14,-20],[-41,43],[6,42],[28,-3]],[[45356,563],[3,-38],[-26,-11],[-31,15],[2,60],[32,-2],[20,-24]],[[440,1128],[28,-64],[-17,-9],[-22,53],[11,20]],[[45977,1700],[-32,-26],[32,-31],[27,-83],[41,26],[78,24],[38,2],[-35,-85],[30,-49],[-105,-157],[-30,-59],[-35,-22],[-34,-56],[19,-40],[37,-23],[-19,-26],[-37,11],[-51,-8],[-87,-45],[-51,-46],[-29,-122],[-63,-145],[-31,-16],[-25,-41],[-65,-53],[-5,-14],[-66,-19],[-93,23],[-20,25],[-62,18],[-128,16],[-36,36],[-1,34],[45,19],[-18,28],[17,42],[64,82],[76,45],[16,44],[46,59],[82,29],[97,66],[114,92],[59,61],[29,60],[28,103],[51,25],[30,61],[0,68],[38,40],[40,28],[24,-1]],[[46019,2709],[69,-35],[51,-45],[24,2],[34,-94],[-34,1],[57,-86],[-9,-20],[13,-67],[67,-54],[29,9],[-6,56],[44,-19],[19,-141],[27,-7],[117,-56],[11,-9],[48,19],[62,68],[38,-1],[23,-16],[-19,-133],[-39,-52],[-16,-69],[-62,-1],[-49,-23],[-20,-52],[18,-30],[-18,-75],[-54,-85],[-56,-107],[-62,-62],[-43,-21],[-45,66],[-7,25],[29,49],[21,88],[-8,40],[-32,38],[-126,64],[-26,46],[12,23],[43,28],[30,3],[26,40],[22,113],[17,9],[-10,59],[-23,85],[27,39],[-51,20],[-13,38],[10,13],[-8,92],[-19,1],[-30,-25],[-109,172],[-3,60],[-45,72],[27,-6],[27,-47]],[[12819,10275],[-18,-2],[-18,30],[19,21],[17,-49]],[[30683,5216],[21,-6],[21,-40],[-3,-37],[-20,-7],[-42,21],[-13,30],[9,32],[27,7]],[[39295,12248],[38,-17],[31,20],[17,-37],[-17,-69],[14,-76],[21,-14],[11,-31],[-4,-44],[-31,-103],[-64,-43],[-20,-24],[-22,-97],[27,-126],[6,-48],[15,-52],[22,-24],[38,-16],[9,13],[-4,47],[15,9],[60,0],[25,-38],[1,-53],[24,-8],[27,34],[63,-23],[-45,-13],[-6,-26],[60,-86],[23,-16],[-11,-83],[-27,21],[-3,38],[-65,27],[-29,79],[-50,61],[-41,22],[23,-72],[-16,-22],[-20,31],[-76,71],[-33,-21],[-24,-41],[-27,1],[-19,26],[-37,4],[-8,76],[47,47],[-18,48],[-38,14],[8,-62],[-28,-5],[-14,65],[-29,28],[-16,90],[-4,69],[-20,16],[4,66],[48,-51],[35,22],[-11,35],[-3,50],[15,88],[-1,74],[7,90],[14,73],[34,37],[15,-15],[38,-1],[46,-35]],[[39240,10038],[10,-26],[-44,1],[-3,20],[37,5]],[[39370,10114],[-27,-9],[-22,37],[36,23],[26,-17],[-13,-34]],[[39908,10558],[-20,-73],[22,-32],[4,-81],[27,-53],[4,-55],[-19,-50],[-22,-17],[-12,-110],[-13,40],[-14,81],[-18,59],[-25,-17],[-33,-72],[-1,-38],[26,-21],[15,-49],[-5,-50],[-33,-64],[-15,1],[-14,45],[-48,11],[-67,43],[-33,44],[-11,71],[14,67],[20,48],[-29,41],[-56,37],[-20,-7],[-17,-53],[-24,36],[-37,-35],[-1,39],[-37,-4],[-13,-24],[-36,-121],[-29,10],[-4,32],[30,75],[-3,36],[31,49],[44,15],[39,24],[12,47],[53,23],[34,-9],[16,-78],[27,6],[55,69],[32,-15],[5,77],[32,-3],[64,20],[-2,44],[-15,70],[13,25],[53,-66],[54,-88]],[[39640,10677],[-52,7],[-2,46],[22,12],[21,34],[22,-5],[23,-48],[-16,-36],[-18,-10]],[[39499,10585],[-31,1],[-66,104],[12,56],[23,1],[22,29],[12,120],[33,31],[38,-15],[4,-13],[-42,-152],[-13,-61],[26,-55],[-18,-46]],[[39523,10646],[2,75],[60,161],[26,36],[0,-59],[-27,-68],[-27,-45],[-20,-75],[-14,-25]],[[39020,10908],[10,-40],[18,-24],[-17,-25],[-34,-15],[-10,-20],[-42,-39],[-21,-8],[-6,-56],[-30,-57],[-45,-28],[-17,-45],[-61,-50],[-37,-40],[5,47],[43,66],[34,39],[19,2],[50,78],[48,60],[29,60],[18,4],[37,61],[-1,100],[16,9],[-6,-79]],[[39738,10954],[28,-136],[0,-25],[-26,-35],[-35,25],[4,105],[-24,42],[-26,0],[-15,92],[36,-34],[53,-1],[5,-33]],[[39442,10889],[-106,-52],[16,117],[7,99],[-9,33],[110,-81],[34,-3],[-8,-44],[-40,-40],[-4,-29]],[[39074,11165],[33,-36],[-14,-20],[-23,34],[4,22]],[[39590,11147],[20,-39],[6,-51],[-37,36],[-25,39],[-42,4],[-1,53],[12,4],[67,-46]],[[39759,11208],[16,-19],[22,-64],[-2,-85],[13,-36],[-3,-55],[-41,-1],[-28,46],[-7,69],[-48,56],[-30,53],[0,31],[41,-5],[38,11],[29,-1]],[[39366,11225],[-17,-76],[-11,10],[10,45],[18,21]],[[39144,11380],[38,-10],[30,6],[29,-14],[43,-64],[-2,-92],[-22,-43],[-28,4],[-29,58],[-28,87],[-38,45],[7,23]],[[39364,11356],[-14,-34],[-22,18],[2,47],[34,-31]],[[39652,11393],[-18,-10],[-23,21],[13,72],[8,5],[27,-57],[-7,-31]],[[43484,6875],[-29,-2],[-45,43],[2,12],[64,-35],[8,-18]],[[43093,7218],[51,-51],[-19,-21],[-32,72]],[[43116,7230],[-11,-7],[-48,8],[2,55],[35,-13],[22,-43]],[[43045,7276],[-31,-5],[10,39],[21,-34]],[[43354,7343],[33,-27],[-24,-18],[-22,16],[13,29]],[[43772,7754],[-33,-27],[-25,5],[-45,52],[-6,51],[-22,20],[-30,46],[2,70],[41,-9],[15,-41],[32,-54],[26,-21],[36,-52],[9,-40]],[[43226,8204],[30,-17],[13,17],[34,-22],[1,-60],[-6,-29],[-23,-29],[-13,-42],[5,-39],[-25,-17],[-52,2],[-5,-29],[-39,-49],[-47,-12],[-62,-42],[-84,-4],[-30,34],[-58,11],[-79,46],[-12,24],[14,35],[134,-19],[54,5],[22,41],[9,-40],[24,-8],[59,10],[35,26],[10,37],[37,43],[29,-9],[13,26],[-22,112],[34,-2]],[[43372,8095],[-29,71],[0,45],[-47,96],[-24,25],[-55,37],[-93,88],[76,-39],[66,-54],[19,-28],[70,-75],[40,-59],[-2,-69],[-21,-38]],[[43052,8488],[-47,5],[-14,19],[28,22],[33,-24],[0,-22]],[[42645,8592],[-19,-30],[-70,3],[-3,34],[62,5],[30,-12]],[[14874,12185],[-48,-16],[-66,11],[-62,-8],[-5,78],[21,24],[152,-12],[31,-15],[6,-26],[-29,-36]],[[4016,5754],[-49,23],[-9,24],[21,20],[41,-47],[-4,-20]],[[44266,7295],[31,-27],[45,4],[30,-26],[33,-53],[-48,-7],[-81,15],[-31,56],[0,34],[21,4]],[[44479,7131],[84,-49],[29,-39],[5,-25],[-32,-1],[-37,15],[-34,37],[-15,62]],[[44478,7276],[19,-41],[-19,-5],[0,46]],[[44036,7429],[15,-13],[-10,-29],[-22,18],[17,24]],[[44392,7467],[37,-60],[1,-37],[30,-53],[17,-73],[-39,44],[-42,67],[-20,92],[16,20]],[[43973,7531],[15,-48],[19,-3],[14,-34],[-9,-27],[-32,30],[-7,30],[-31,-15],[-10,13],[26,48],[15,6]],[[43917,7553],[12,-47],[-23,2],[-6,32],[17,13]],[[44095,7611],[37,-14],[46,-54],[44,-20],[56,-64],[-33,-3],[-78,56],[-45,52],[-27,47]],[[43838,7775],[18,-10],[65,-62],[2,-17],[46,-52],[-45,10],[-94,106],[8,25]],[[24321,9032],[11,-30],[-30,-40],[-1,55],[20,15]],[[39201,12928],[-23,-13],[-60,102],[-24,68],[9,93],[10,41],[97,198],[19,19]],[[39334,13436],[2,-6],[-9,-62],[-36,-144],[-11,-68],[-16,-61],[-23,-53],[-16,-20],[-24,-94]],[[15511,10899],[-7,-125],[-20,-12],[-95,-6],[43,34],[12,19],[-1,38],[-11,22],[21,18],[58,12]],[[28606,7805],[-35,25],[-9,71],[17,9],[9,-52],[11,-8],[7,-45]],[[15124,10910],[-18,-5],[-38,31],[50,11],[6,-37]],[[45160,6333],[22,-57],[35,-4],[15,-47],[6,-48],[-58,-19],[-15,47],[-15,94],[10,34]],[[45511,5497],[24,-37],[-19,-20],[-17,33],[12,24]],[[45484,5621],[31,-58],[-9,-8],[-37,22],[0,33],[15,11]],[[45391,5817],[24,-28],[-13,-24],[-36,16],[25,36]],[[45364,5989],[31,-36],[-25,-9],[-14,20],[8,25]],[[45364,6069],[16,-30],[-25,-14],[-25,28],[34,16]],[[45245,6110],[20,-38],[42,-43],[3,-30],[-46,4],[-6,55],[-28,24],[15,28]],[[30453,11221],[52,8],[46,-24],[-51,-34],[-56,-9],[-44,42],[29,31],[24,-14]],[[13014,8421],[-19,-6],[5,52],[24,11],[4,-26],[-14,-31]],[[11551,8987],[71,-163],[-14,-37],[-41,-17],[-28,8],[-8,26],[37,33],[-25,102],[-10,15],[18,33]],[[11695,8826],[-21,-7],[-18,14],[4,29],[33,7],[2,-43]],[[11545,8875],[-29,-4],[-6,31],[26,8],[9,-35]],[[30948,5281],[-29,10],[11,48],[28,38],[25,-44],[-12,-38],[-23,-14]],[[3281,12447],[-20,-22],[-78,-59],[-10,4],[-35,14],[-13,93],[22,73],[-7,28],[3,8],[43,-23],[45,-28],[39,-61],[11,-24],[0,-3]],[[3043,12721],[53,-13],[32,-34],[-1,-8],[-23,-15],[-28,-6],[-17,21],[-20,43],[4,12]],[[2973,12734],[-16,2],[8,23],[69,-11],[-20,-20],[-41,6]],[[2869,12847],[25,-54],[17,-21],[-6,-2],[-55,7],[-20,45],[5,4],[34,21]],[[2693,12894],[-11,-14],[-7,-4],[-29,15],[-12,11],[26,36],[13,0],[12,1],[2,-1],[9,-9],[-3,-35]],[[12810,13358],[-10,16],[41,29],[4,-31],[-35,-14]],[[46722,5736],[-7,-21],[-28,-5],[-29,-24],[-31,-1],[-70,25],[-9,47],[54,77],[64,18],[35,-41],[21,-75]],[[46899,6059],[-53,-70],[-2,-35],[-21,-7],[-24,19],[-18,-33],[-35,-14],[-38,24],[11,32],[100,43],[16,21],[64,20]],[[41824,7322],[0,284],[-2,117],[-21,50],[21,52],[0,322],[0,344]],[[9014,13436],[337,0]],[[10745,13436],[2519,0]],[[13296,13436],[8223,0]],[[28002,13436],[305,0]],[[30796,13436],[1350,0]],[[38952,13436],[277,0]],[[39334,13436],[7569,0],[0,-13436],[-32305,0]],[[13757,0],[-17,0]],[[13707,0],[-13707,0],[0,13436],[8834,0]],[[30046,13436],[26,0]],[[30174,13436],[443,0]]],"transform":{"scale":[0.007675415218642731,0.005582018457874367],"translate":[-180,-50]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]]],"type":"MultiPolygon","properties":{"ct":[134.35,-25.59]},"id":"AUS"},{"arcs":[[51]],"type":"Polygon","properties":{"ct":[144.8,13.45]},"id":"GUM"},{"arcs":[[[125]],[[126]]],"type":"MultiPolygon","properties":{"ct":[-172.43,-13.62]},"id":"WSM"},{"arcs":[[[128]],[[129]],[[130]]],"type":"MultiPolygon","properties":{"ct":[165.5,-21.34]},"id":"NCL"},{"arcs":[[[131]],[[132]],[[133]],[[134]]],"type":"MultiPolygon","properties":{"ct":[170.48,-43.98]},"id":"NZL"},{"arcs":[[[202,98]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]]],"type":"MultiPolygon","properties":{"ct":[144.24,-6.6]},"id":"PNG"},{"arcs":[[165]],"type":"Polygon","properties":{"ct":[-149.39,-17.7]},"id":"PYF"},{"arcs":[[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]]],"type":"MultiPolygon","properties":{"ct":[160.15,-9.62]},"id":"SLB"},{"arcs":[[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]]],"type":"MultiPolygon","properties":{"ct":[166.87,-15.22]},"id":"VUT"},{"arcs":[[[200]],[[201]]],"type":"MultiPolygon","properties":{"ct":[177.95,-17.84]},"id":"FJI"}]},"lakes":{"type":"GeometryCollection","geometries":[]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[51]],[[125]],[[126]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[202,98]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[200]],[[201]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-24,203,-23,-25,204,-20,205,-5,206,-4,207,-1,208,-177,-178,209,-6,210,-32,-33,211],[-44],[-132],[-7],[-78],[-77],[-75],[-59],[-60],[-76],[-63],[-64],[-80],[-73],[-65],[-70],[-137],[-194],[-124],[-180],[-18],[-57],[-56],[-17],[-66],[-62],[-67],[-61],[-58],[-69],[-71],[-72],[-74],[-83],[-79],[-81],[-187],[-201],[-202],[-186],[-185],[-184],[-183],[-135],[-9],[-10],[-134],[-12],[-11],[-13],[-14],[-8],[-173],[-161],[-156],[-16],[-157],[-68],[-158],[-159],[-99,-98],[-130],[-129],[-15],[-182],[-155],[-188],[-131],[-96],[-90],[-97],[-163],[-164],[-52],[-169],[-168],[-167],[-171],[-170],[-172],[-174],[-160],[-175],[-162],[-31,-94],[-84],[-110],[-93],[-139],[-140],[-113],[-89],[-92],[-101],[-102],[-112],[-116],[-86],[-87],[-88],[-114],[-82],[-117],[-85],[-108],[-95],[-91],[-111],[-109],[-107],[-105],[-100],[-104],[-103],[-106],[-150],[-151],[-149],[-152],[-147],[-148],[-145],[-144],[-143],[-138],[-153],[-121],[-120],[-119],[-115],[-118],[-125],[-19],[-43],[-154],[-142],[-141],[-146],[-189],[-53],[-27],[-28],[-29],[-26],[-30],[-136],[-190],[-122],[-47],[-165],[-46],[-176],[-45],[-54],[-123],[-55],[-200],[-181],[-21],[-179],[-22],[-51],[-49],[-48],[-128],[-50],[-127],[-191],[-126],[-42],[-195],[-133],[-166],[-192],[-193],[-196],[-197],[-198],[-199],[-37],[-34],[-35],[-36],[-41],[-40],[-39],[-38]],[[212,-2]],[[213,-3]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/oceania_50m.json b/topojson/dist/oceania_50m.json new file mode 100644 index 00000000000..313e1c285c4 --- /dev/null +++ b/topojson/dist/oceania_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[95199,69836],[0,0],[2,-2],[2,-1],[15,-15],[63,-66],[9,-10],[3,-3],[1,-1],[1,-2],[5,-5],[3,-4],[22,-31],[4,-4],[9,-14],[6,-8],[5,-19],[5,-18],[0,-3],[2,-9],[0,0],[1,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,0],[0,-2],[0,0],[-1,-1],[-1,-3],[-1,-2],[0,0],[-4,-1],[-1,-1],[-1,1],[-3,1],[-2,1],[-32,20],[-18,12],[-3,1],[-5,4],[-1,1],[0,0],[0,0],[-38,36],[-21,21],[-20,23],[-1,1],[-3,4],[-8,8],[-6,11],[3,67],[1,17],[0,1],[1,4],[0,1],[0,2],[2,0],[2,0],[0,0],[1,0],[1,0],[0,0]],[[166030,36519],[5,316],[53,304],[-18,727],[220,895],[199,569],[62,534],[161,844],[161,294],[187,449],[222,248],[94,10],[152,133],[119,222],[123,371],[26,150],[61,882],[-76,352],[-202,379],[-280,719],[-41,359],[-16,58],[-13,30],[-105,257],[281,357],[59,152],[-24,186],[-45,219],[-220,539],[-172,549],[-27,193],[-437,978],[-23,142],[416,78],[43,18],[221,159],[-7,28],[-63,7],[-531,-144],[-183,250],[-45,136],[33,102],[42,7],[-7,86],[-74,286],[-127,235],[-118,199],[-27,207],[-122,206],[-288,373],[-170,174],[-250,415],[-293,410],[-207,257],[-339,334],[-211,284],[-344,707],[-362,978],[-36,212],[79,-13],[185,58],[169,328],[84,696],[100,-70],[220,-49],[123,58],[21,21],[-5,15],[-15,-8],[-312,108],[-202,253],[15,112],[135,47],[94,391],[63,56],[-73,-9],[-144,54],[-18,158],[174,368],[168,496],[2,289],[27,80],[1,237],[90,484],[-169,540],[-65,410],[-144,141],[-242,12],[-198,124],[-127,564],[-95,-41],[-18,-29],[18,-40],[-27,-21],[-155,16],[-15,131],[25,133],[-38,-50],[-318,-162],[-907,-122],[-314,-108],[-532,-75],[-193,122],[-148,149],[-98,153],[-194,565],[-5,258],[-418,696],[-337,348],[-114,49],[-431,73],[-991,-67],[-487,-50],[-441,-105],[-380,-139],[-104,-75],[-72,-159],[-352,-138],[-468,-112],[-707,-476],[-579,-210],[-537,-356],[-47,12],[-135,161],[-66,35],[-660,180],[-809,168],[-1802,-271],[15,-36],[-1062,-603],[-170,-71],[-172,15],[-558,299],[-744,531],[-183,187],[-540,687],[-1126,984],[-116,154],[-50,80],[-735,485],[-60,207],[-6,149],[-89,-73],[-119,36],[-183,188],[-18,32],[47,32],[-151,323],[-75,-32],[-106,241],[-7,77],[77,0],[63,-39],[175,123],[-163,70],[-47,232],[35,14],[-148,214],[18,126],[-27,113],[-265,348],[-59,409],[-299,205],[-15,41],[-31,-1],[-3,-53],[-86,-23],[-404,429],[-4,86],[101,302],[-176,-107],[-56,114],[-6,119],[136,112],[-33,9],[-78,-72],[-53,-5],[-67,94],[-2,-5],[-27,-68],[-6,-11],[-119,-19],[-53,131],[-211,146],[-79,132],[64,176],[172,152],[89,12],[-134,52],[-108,-106],[-115,102],[-9,45],[84,140],[258,49],[133,76],[-8,46],[-284,-37],[-211,-119],[-278,51],[-35,43],[-118,-44],[-105,14],[-122,124],[12,154],[-334,193],[-43,228],[12,585],[-53,300],[113,169],[89,-29],[-27,-26],[35,-141],[96,-44],[88,6],[109,55],[96,107],[45,24],[-94,-15],[-107,-92],[-101,-21],[-54,36],[-74,269],[-18,272],[-589,963],[558,1013],[75,221],[20,271],[-7,209],[65,420],[295,933],[60,532],[-21,578],[-106,486],[-253,593],[56,191],[105,163],[42,446],[-14,163],[-208,491],[-30,9],[-4,-194],[-124,150],[-208,520],[-77,-171],[-40,-259],[-36,94],[112,1026],[129,418],[112,154],[61,-26],[104,64],[478,1336],[94,384],[499,599],[194,154],[128,209],[46,226],[-2,75]],[[258876,83639],[-48,-115],[-178,-14],[-26,-100],[19,-129],[-32,-84],[-99,-64],[-221,45],[-126,108],[-252,-278],[25,-41],[89,6],[85,-54],[31,-84],[-296,-301],[-371,-253],[-302,-152],[-83,-8],[-208,-349],[-7,-115],[-117,-180],[-141,-145],[-702,-224],[-266,148],[-114,-60],[-115,-123],[-207,63],[7,76],[-169,-100],[-130,-151],[-167,-61],[-5,-158],[43,-30],[22,-136],[-149,111],[-156,10],[-22,60],[101,102],[-179,94],[-269,508],[-36,44],[-37,8],[18,-332],[-32,-71],[107,-169],[52,-254],[-23,-130],[-35,-25],[-4,8],[-190,158],[-47,-289],[-127,119],[-36,249],[-57,77],[-33,2],[25,-60],[53,-44],[18,-246],[-59,-285],[-74,-90],[-22,8],[-52,161],[-76,-102],[-209,32],[-14,33],[-93,-7],[-164,-237],[-232,48],[-123,-105],[-6,-76],[-138,-114],[-732,-70],[-131,-116],[-7,-56],[-175,-86],[-174,-187],[-44,-97],[24,-134],[135,-227],[55,-68],[75,-41],[37,-89],[-60,-134],[-114,-106],[-344,18],[-50,91],[-97,465],[-25,41],[-13,-11],[-33,47],[-17,73],[14,215],[81,228],[76,50],[-83,159],[-134,110],[-110,-142],[-234,-60],[-83,77],[-47,165],[-188,192],[-27,12],[-30,2],[70,-196],[-115,-20],[-78,128],[-105,-15],[-71,-69],[-85,70],[-17,-82],[-144,-93],[-109,-25],[20,-73],[-45,-26],[-66,13],[-141,-50],[-333,-181],[0,-91],[-146,-246],[-272,6],[-87,34],[-25,-21],[-166,-777],[-278,-254],[-260,-177],[-60,-141],[-177,-750],[-21,-233],[236,-488],[156,-197],[157,-107],[176,-285],[-37,-83],[15,-92],[173,-360],[967,-1188],[33,-98],[60,-17],[32,51],[100,-10],[84,-107],[94,-128],[277,-584],[295,-416],[330,-1470],[-22,-510],[131,-624],[22,-225],[-4,-116],[-60,138],[-141,-135],[46,-659],[-30,-287],[-68,-149],[-209,-284],[-1190,-908],[-365,-184],[-148,132],[-123,-32],[-15,-222],[-173,-567],[-332,-361],[-654,-429],[-146,-289],[-134,-146],[-149,-58],[-103,-17],[-82,37],[-10,34],[27,15],[38,232],[44,802],[43,288],[168,125],[-96,176],[-147,110],[-131,-50],[-163,245],[-15,59],[-211,149],[-301,47],[-86,-77],[-107,232],[71,123],[-36,233],[-106,120],[-39,-1],[-51,-71],[-21,-205],[-62,-38],[-192,-13],[-21,47],[2,428],[-168,388],[-17,118],[-214,472],[-61,27],[-32,-104],[-176,99],[-189,269],[-219,229],[-164,46],[-302,-50],[-308,6],[-94,136],[28,304],[80,383],[-12,88],[-342,63],[-265,-30],[-112,-51],[-86,-55],[-73,-100],[88,-347],[-121,-1050],[-234,-574],[-185,-776],[-178,-418],[-36,-223],[-43,-507],[74,-622],[34,-42],[114,-22],[88,33],[45,62],[131,44],[126,-50],[56,-222],[43,-525],[111,-217],[56,-29],[149,-432],[95,-540],[85,-267],[205,-328],[186,-132],[174,2],[124,61],[232,-156],[185,-357],[244,-240],[109,-59],[168,-160],[111,-229],[258,-290],[111,-59],[118,-140],[225,-529],[74,-252],[33,-401],[-118,-598],[67,-256],[15,-745],[82,-162],[82,-103],[78,-42],[170,-318],[284,-772],[42,-248],[-13,-82],[-149,26],[-60,181],[-68,49],[-198,-155],[-5,-2],[74,20],[3,0],[2,1],[2,0],[1,1],[2,0],[21,-12],[2,-2],[3,-2],[1,-2],[1,-1],[1,-2],[3,-11],[104,-59],[-197,-94],[-78,-15],[-6,12],[-13,24],[-1,1],[-1,1],[0,2],[-1,4],[3,9],[24,71],[7,18],[-15,-12],[-206,-25],[-367,400],[-1290,1043],[-143,346],[12,98],[-60,217],[-201,359],[-184,207],[-174,433],[-33,278],[-6,414],[-89,130],[-61,419],[-73,831],[-189,441],[-44,118],[-234,311],[-201,588],[-51,-30],[-158,210],[-227,463],[-275,330],[-32,116],[-71,78],[-122,-71],[-25,-35],[-1,-9],[-19,-128],[-54,-11],[-78,96],[-57,381],[39,405],[87,141],[5,234],[334,1237],[-113,-293],[-92,162],[-54,391],[49,119],[172,217],[11,466],[117,405],[-35,154],[-49,48],[-9,89],[-40,440],[-9,410],[17,78],[-130,463],[-38,29],[-237,635],[-4,120],[-8,50],[-11,23],[-13,-12],[-20,-168],[-12,-291],[-30,-10],[-140,938],[-5,367],[-46,161],[-18,-76],[4,-46],[-85,193],[-142,1419],[3,110],[109,252],[29,-16],[14,1],[25,35],[-195,121],[-6,-36],[-4,-52],[-188,-64],[-133,189],[-93,422],[-157,231],[-44,27],[-16,-133],[13,-236],[-37,-151],[-140,-247],[-77,-87],[-120,-56],[-51,4],[-145,141],[-202,-224],[-121,38],[-39,-306],[-147,-268],[-168,-214],[-128,-26],[-28,98],[23,84],[30,50],[26,100],[21,260],[-66,-70],[-68,-292],[-39,125],[25,96],[-64,60],[-71,-121],[-70,-242],[-82,176],[19,100],[-49,60],[-78,-1],[-47,77],[26,167],[-48,82],[-142,-162],[2,-94],[-65,-121],[-114,-132],[-62,-22],[-37,100],[44,378],[93,335],[207,986],[-123,471],[-69,417],[-162,463],[-41,71],[2,12],[-11,4],[-12,20],[-40,533],[-251,255],[26,137],[-23,175],[-229,136],[-88,186],[-169,14],[-36,30],[-80,377],[-46,-96],[-9,-69],[-98,-254],[-107,112],[-38,357],[-90,139],[5,-29],[43,-96],[12,-20],[22,-224],[-54,-4],[-242,381],[-108,366],[-8,14],[-4,-30],[16,-118],[15,-23],[-38,-10],[-171,379],[-59,212],[35,216],[-6,10],[-17,5],[-6,-36],[-80,66],[26,592],[52,258],[-253,112],[-225,288],[-136,-37],[-14,-59],[18,-93],[-86,-160],[-60,11],[-260,353],[-81,163],[-44,389],[-21,51],[-149,30],[-55,-395],[28,-265],[61,-194],[68,-183],[31,-41],[-348,-451],[-58,-2],[-84,221],[-276,112],[-64,98],[-38,-7],[-51,-121],[-74,167],[-34,30],[-209,-238],[-107,-22],[-89,20],[-475,-344],[-69,-177],[-104,34],[-48,113],[54,227],[-17,33],[-113,-105],[-138,-243],[-108,-119],[-533,-176],[-157,-131],[-118,-178],[-30,-135],[127,-325],[24,-152],[-503,-800],[-191,-115],[-447,-162],[-225,-136],[-394,-355],[-127,-153],[-262,-454],[-328,-470],[-625,-563],[-174,-268],[-539,-350],[-230,-237],[-66,-160],[8,-40],[53,-39],[21,-82],[5,-73],[-36,-139],[-462,-284],[-225,25],[-179,-56],[-69,-92],[-181,-492],[-200,-13],[8,86],[-135,31],[-191,-87],[-124,-131],[-169,-472],[-31,-201],[51,-361],[46,-830],[134,-604],[-4,-339],[-50,-416],[-82,-349],[-240,-472],[-104,-481],[83,-656],[19,-775],[-302,-27],[-259,-206],[-216,-494],[53,-419],[-455,-198],[-310,-407],[-28,-297],[-61,-134],[-245,-211],[-201,-129],[-186,50],[-268,257],[-414,645],[-160,495],[-102,654],[-91,360],[-344,1189],[-172,384],[-272,353],[-227,587],[-133,440],[-208,1132],[-190,638],[-102,248],[-245,464],[-51,214],[-372,862],[-96,377],[-106,937],[-283,1304],[-33,247],[5,94],[29,26],[-4,218],[-60,24],[-39,234],[8,89],[95,-11],[-20,37],[-18,12],[-92,124],[-70,445],[113,556],[86,251],[-157,627],[-21,22],[-8,1],[-16,-10],[-5,-22],[-31,8],[6,453],[94,102],[81,34],[-150,17],[-90,133],[-42,185],[66,259],[52,21],[97,-37],[82,76],[-23,21],[-416,-14],[-100,-362],[67,-351],[-178,-440],[-129,-115],[-826,-451],[-161,-17],[-181,86],[-274,199],[-185,200],[-760,948],[-186,260],[-34,99],[36,108],[77,83],[14,-98],[64,-84],[120,-40],[664,301],[131,88],[212,243],[13,39],[29,253],[-182,1],[-64,-18],[-167,-214],[-273,-179],[-465,120],[-438,328],[-75,85],[-100,203],[-27,170],[77,149],[106,117],[-125,200],[-107,26],[-264,19],[-201,91],[-323,26],[15,62],[6,244],[-57,413],[-22,21],[-123,29],[-467,35],[-38,44],[23,137]],[[199671,83639],[120,-233],[57,-52],[50,57],[-50,228]],[[200529,83639],[-35,-110],[-104,-260],[-119,-182],[51,41],[104,12],[-83,-287],[179,-51],[10,76],[105,-101],[50,-122],[14,-112],[34,-35],[217,-41],[202,51],[173,118],[133,35],[585,-31],[213,-67],[248,17],[196,85],[278,167],[165,307],[35,149],[72,102],[220,239]],[[204664,83639],[0,-22],[95,-312],[100,-212],[293,-438],[185,-187],[604,-257],[327,-75],[295,-29],[141,-126],[563,-930],[127,-136],[233,-35],[35,-114],[-27,-223],[-339,-732],[-319,-342],[-183,-248],[-179,-406],[-96,-291],[-72,-72],[-193,47],[-14,40],[71,161],[-74,46],[-98,-63],[-212,-487],[-86,-359],[-23,-241],[57,-460],[-182,-255],[-231,-18],[-228,-72],[-202,-123],[-148,-235],[2,-111],[-71,-319],[-167,-243],[-540,-37],[-261,-90],[-109,-207],[-35,-208],[26,-95],[-28,-134],[-155,-220],[-120,-74],[-132,-38],[-90,34],[-27,51],[-122,13],[-415,-52],[-804,-375],[-512,-223],[-124,-100],[-147,-254],[-48,-188],[13,-131],[-68,-311],[-426,-267],[-319,-157],[-1126,-389],[-470,-214],[-259,-159],[-213,-385],[-129,-135],[-333,-50],[-119,14],[-85,46],[-86,-4],[-659,-501],[-426,-179],[-579,-20],[-326,-77],[-573,-574],[-653,-232],[-291,1],[-305,114],[-267,532],[-25,87],[20,146],[-64,583],[-120,411],[-82,673],[-79,260],[-62,51],[-8,279],[50,741],[-49,337],[-44,309],[-211,409],[-138,377],[-410,481],[-312,528],[-151,325],[-173,578],[-267,654],[-247,327],[-350,318],[-141,-4],[-286,311],[-110,244],[-154,185],[-85,183],[-90,228],[36,257],[-104,592],[42,254],[-1,299],[-144,461],[-113,207],[-311,737],[-144,152],[-431,321],[-290,285],[-139,423],[0,145]],[[186091,83639],[247,-618],[246,-352],[38,-202],[-34,-187],[-1,-284],[69,-327],[41,-97],[49,-220],[37,-72],[105,-136],[435,-338],[249,-245],[223,-196],[-9,-57],[-2,-9],[-2,-234],[32,-196],[170,-444],[49,-439],[28,-880],[62,-580],[121,-703],[82,-180],[147,3],[61,-45],[191,-170],[234,-345],[284,-250],[213,-424],[105,-281],[182,-846],[115,-716],[374,-844],[83,39],[-20,43],[9,124],[15,49],[63,41],[109,-110],[55,-100],[-35,-53],[10,-38],[100,-233],[52,-64],[61,-44],[109,85],[125,-14],[120,-84],[34,-59],[-2,-66],[50,-82],[109,-5],[236,-100],[288,-478],[216,-299],[402,-416],[223,-406],[228,-336],[128,-101],[72,56],[92,-67],[30,-73],[198,-366],[53,-292],[-40,-154],[-519,-275],[-221,-183],[28,-72],[53,-47],[63,13],[-18,60],[113,54],[313,11],[46,-89],[46,-54],[155,-108],[41,-68],[30,-134],[148,-270],[206,-261],[310,-307],[231,-56],[390,72],[606,406],[401,-38],[153,-96],[91,-10],[188,72],[386,300],[385,173],[141,-83],[335,33],[157,99],[475,55],[102,-27],[373,100],[600,200],[305,182],[84,132],[27,115],[62,52],[117,36],[431,-144],[8,-60],[-162,-670],[66,-858],[-235,-330],[-64,-706],[-588,-1397],[-104,-133],[-174,-356],[-217,-576],[-265,-522],[-127,-363],[-25,-228],[-103,-306],[-259,-550],[-444,-809],[-160,-350],[-980,-1380],[-699,-877],[-131,-126],[-1046,-780],[-985,-1064],[-700,-955],[-642,-932],[-362,-734],[-205,-301],[-251,-122],[-480,-543],[-146,-86],[-74,-90],[-47,-108],[-58,-576],[-385,-792],[-62,-32],[54,-108],[-161,-427],[-25,-2],[-202,-175],[-109,-425],[20,-8],[-278,-1102],[78,-375],[364,-491],[133,-39],[-7,-367],[-76,-144],[-99,-578],[6,-41],[33,-32],[6,-1],[43,25],[49,-34],[-66,-373],[-48,-8],[-1,-53],[107,-680],[103,-281],[77,44],[134,-639],[15,-303],[417,-342],[142,-55],[24,-43],[-7,-102],[-36,-56],[78,32],[50,-17],[8,-60],[-31,-2],[-9,-3],[-21,-9],[13,-28],[17,-1],[48,-493],[-136,-300],[50,-540],[-6,-531],[0,-1],[25,-128],[73,-280],[-70,-280],[-66,-35],[-9,-46],[30,-80],[45,-29],[21,63],[77,-1023],[-39,-270],[131,-323],[105,-64],[2,-309],[-20,-65],[-62,-47],[-66,-242],[-13,-91],[21,-111],[-86,-212],[-378,-597],[-203,-268],[-108,-44],[11,-76],[33,-74],[-86,-114],[-576,-466],[-606,-286],[-251,-8],[-203,-233],[-340,-214],[-462,-356],[-4,22],[-32,23],[-7,0],[-34,-24],[69,-120],[-241,-456],[-304,-405],[39,-33],[-36,-82],[-246,-25],[-237,-201],[-318,-468],[-399,-383],[-50,5],[-8,63],[-116,107],[-25,-26],[1,-15],[23,-30],[5,-3],[-39,-717],[15,-196],[15,-36],[-2,20],[216,-107],[98,-275],[69,-504],[164,-633],[127,-160],[65,-404],[11,-521],[-140,-1077],[88,80],[47,-77],[-38,-217],[-96,-216],[-207,-339],[-55,-46],[-245,-144],[-1185,-541],[-356,-229],[-166,-160],[-243,-436],[134,-233],[97,-106],[51,3],[42,-136],[-28,-509],[-325,-1525],[-92,-300],[-119,-178],[-212,-238],[-162,-85],[-436,-494],[-183,-300],[-77,-217],[-432,-875],[-457,-737],[-587,-573],[-682,-854],[-564,-525],[-693,-539],[-463,-245],[-258,-3],[-183,50],[-176,-20],[-149,-100],[-55,-132],[-634,-204],[-368,-40],[-263,99],[-441,88],[-182,-32],[-51,-80],[-698,96],[-220,-61],[-172,-100],[-163,-186],[-193,-97],[-711,14],[-193,-76],[-200,-87],[-324,-302],[-328,21],[-46,28],[-444,422],[-214,249],[-363,-42],[46,-185],[-77,51],[-84,305],[97,149],[22,-18],[33,35],[-35,196],[-348,723],[-83,64],[-45,-23],[-24,207],[50,135],[35,12],[88,-79],[75,19],[88,107],[57,134],[5,381],[-87,504],[-369,616],[-435,928],[-160,517],[-148,594],[-102,268],[-237,473],[-84,86],[-672,768],[-239,534],[-227,694],[10,187],[-123,359],[-146,758],[-18,311],[20,254],[-143,582],[-63,134],[-88,338],[-17,315],[24,39],[-3,279],[-61,786],[35,-35],[55,107],[-27,343],[-100,328],[-249,410],[-584,1141],[-156,558],[-495,1229],[-304,607],[-281,360],[-133,324],[-97,604],[14,376]],[[101321,76109],[0,-1],[0,0],[1,-5],[-8,-15],[-3,-3],[-2,-2],[-74,-52],[-21,-7],[-15,-3],[-23,-6],[-10,-1],[-7,-2],[6,13],[81,74],[4,2],[1,2],[7,4],[20,14],[2,0],[0,0],[41,12],[0,0],[0,-24]],[[105520,18929],[-111,-54],[-144,-99],[-85,-325],[-12,-120],[-13,-114],[36,-259],[0,0],[109,-164],[6,-33],[6,-33],[-14,-52],[-29,-114],[-38,-9],[-37,-9],[-1,-1],[-23,-41],[1,-78],[0,-76],[196,-256],[0,0],[137,-91],[0,0],[226,-87],[322,-218],[65,-60],[83,-76],[66,-90],[67,-89],[62,-159],[-94,-148],[-115,-182],[-18,-74],[-6,-24],[11,-150],[41,-83],[63,-127],[65,-65],[87,-89],[149,-58],[0,0],[60,7],[39,4],[10,47],[0,0],[40,-36],[21,-66],[19,-62],[17,-513],[-754,-1230],[-8,-113],[-148,-133],[-411,-242],[0,0],[-835,-289],[0,0],[-634,-155],[-810,-147],[-294,-7],[-551,-11],[-207,61],[-40,55],[-44,62],[-173,73],[0,0],[-1,-3],[-49,-74],[159,-519],[0,0],[-71,2],[0,0],[1,-6],[11,-39],[0,0],[5,-2],[48,-14],[0,0],[102,-126],[37,-46],[-25,-95],[-22,-87],[-91,-210],[-45,-10],[-44,-9],[-39,-148],[-75,-281],[110,-191],[80,-138],[41,-40],[16,-16],[0,0],[-124,-294],[-63,-45],[-93,-43],[-495,-226],[-602,-13],[-26,8],[-86,25],[-737,384],[-46,50],[-12,13],[-161,9],[0,0],[-105,-121],[-30,-111],[-25,-89],[78,-447],[1,-374],[1,-244],[20,-55],[25,-70],[365,-386],[49,-8],[68,-11],[84,3],[225,10],[55,56],[3,57],[1,31],[0,0],[-23,35],[-12,18],[-113,9],[29,42],[235,128],[70,13],[63,12],[38,-72],[74,-141],[31,-341],[-31,-222],[0,0],[-62,-39],[-26,-17],[-3,0],[-351,-64],[-97,127],[25,116],[0,0],[-10,16],[-62,100],[0,0],[-220,66],[-96,-20],[-253,-154],[-15,-10],[-41,-81],[7,-57],[174,-80],[107,-49],[240,-68],[0,0],[-508,-361],[-275,-405],[-20,-128],[41,-173],[11,-44],[27,-208],[28,-217],[-4,-24],[-7,-33],[-125,-198],[-225,-123],[-71,-161],[14,-40],[6,-19],[155,-70],[0,0],[-70,-101],[-83,-12],[-28,-4],[-417,45],[-190,-90],[-444,-210],[-17,-13],[-61,-47],[-207,-275],[-116,-207],[-141,-251],[-36,-114],[-8,-27],[15,-165],[190,-372],[278,-249],[238,-212],[436,-94],[103,4],[171,7],[46,-17],[39,-14],[37,-49],[62,-81],[37,-131],[1,-4],[-112,-672],[0,0],[-130,-178],[-42,-8],[-50,-10],[-215,-218],[-217,-133],[-319,-196],[-330,-302],[-175,-161],[-83,-196],[8,-213],[-64,-403],[-16,-45],[-39,-109],[-113,-120]],[[91697,0],[-17,62],[-159,64],[-29,97],[8,145],[2,38],[43,24],[147,81],[105,-23],[0,0],[-22,30],[-11,14],[69,238],[-19,127],[0,0],[-64,84],[-91,-244],[-10,-27],[-10,-82],[-11,-101],[0,0],[-131,85],[-29,19],[0,0],[-16,57],[-10,34],[-23,493],[9,64],[30,213],[327,115],[-4,154],[-463,363],[0,0],[62,32],[112,57],[155,-16],[115,-12],[376,-172],[104,3],[89,2],[0,0],[-205,345],[8,51],[5,31],[0,0],[-46,84],[-88,162],[0,0],[-252,-240],[-254,37],[-62,10],[-13,-3],[-105,-21],[-59,22],[-101,38],[-4,11],[-8,22],[84,127],[85,71],[0,0],[117,-33],[0,0],[13,-62],[-39,-78],[30,10],[204,72],[0,0],[-158,86],[-118,64],[0,0],[-2,78],[-1,23],[0,0],[155,194],[0,0],[37,1],[83,3],[52,38],[49,34],[-70,164],[-105,242],[0,0],[-149,17],[-181,-37],[0,0],[14,-35],[9,-20],[0,0],[77,-15],[133,-25],[0,0],[-10,-13],[-15,-20],[-129,5],[-367,165],[-37,16],[0,0],[-52,83],[0,0],[3,32],[2,24],[0,0],[-54,15],[-262,-49],[-77,-14],[-3,-11],[-8,-33],[131,-37],[0,0],[64,-141],[0,0],[-5,-12],[-18,-40],[-90,-48],[-17,-9],[-85,14],[-124,174],[23,174],[35,63],[13,1],[83,7],[309,265],[138,117],[176,90],[10,5],[44,144],[0,0],[-107,-85],[-52,-40],[0,0],[-46,8],[-83,14],[6,145],[52,103],[442,36],[347,28],[84,-215],[5,-15],[-8,-138],[0,0],[126,-12],[95,-91],[-14,-57],[-20,-85],[-43,-59],[-48,-64],[61,-46],[18,-13],[322,490],[1,28],[1,26],[0,0],[-45,-56],[-120,-152],[-38,19],[0,0],[51,318],[51,107],[0,0],[176,163],[49,4],[109,10],[0,0],[-150,55],[-56,-59],[-68,-72],[-88,-50],[0,0],[53,264],[23,115],[236,176],[44,-27],[45,-90],[53,-28],[40,-21],[92,-34],[12,-4],[0,0],[69,46],[-3,48],[-1,15],[-139,47],[-144,48],[-129,76],[-38,23],[0,0],[90,145],[92,146],[270,177],[57,37],[69,176],[33,83],[-5,12],[-33,78],[0,0],[-213,109],[-306,157],[0,0],[113,177],[186,485],[-30,257],[-14,120],[60,183],[84,257],[-36,75],[-14,29],[17,66],[82,212],[35,87],[31,45],[125,183],[0,0],[52,-41],[0,0],[9,117],[17,225],[-28,1],[-26,2],[-24,-50],[-11,-24],[-28,-1],[-39,-2],[-104,46],[-56,24],[-20,23],[-29,33],[175,207],[180,31],[84,58],[52,173],[0,0],[-258,-91],[-91,-32],[0,0],[-73,82],[-47,53],[-95,21],[-80,-47],[-95,-95],[-222,-223],[-67,15],[-207,43],[0,0],[-62,191],[-57,177],[-53,293],[-21,219],[42,125],[129,375],[-7,209],[-2,46],[51,292],[31,60],[11,21],[0,0],[28,14],[109,57],[69,-32],[0,0],[9,13],[16,24],[147,575],[-75,340],[-39,111],[-52,149],[-218,1407],[-14,228],[87,205],[109,-63],[78,0],[48,0],[116,132],[46,437],[97,-3],[150,607],[3,13],[224,744],[33,63],[97,185],[64,80],[71,89],[96,289],[43,134],[91,606],[255,525],[-20,585],[36,164],[96,84],[2,1],[28,75],[61,371],[10,272],[-25,257],[-24,235],[-54,325],[-36,213],[-33,310],[-60,565],[56,418],[14,27],[3,5],[0,0],[9,-26],[8,-20],[98,29],[9,3],[59,61],[0,0],[72,270],[39,143],[-19,457],[-21,86],[-24,27],[-58,64],[-63,133],[-8,175],[24,146],[171,241],[70,226],[0,0],[49,459],[8,74],[0,0],[301,1090],[44,236],[35,190],[14,173],[34,421],[-42,195],[0,0],[97,420],[114,162],[6,119],[3,71],[-73,333],[-46,207],[20,204],[80,859],[-40,324],[0,0],[-69,57],[-9,136],[19,207],[31,34],[217,234],[-5,75],[-3,47],[45,434],[83,547],[77,506],[-10,166],[-104,510],[61,813],[-11,191],[-12,204],[-111,533],[-31,276],[-31,269],[13,231],[-37,231],[-809,712],[-25,89],[-9,33],[-79,128],[-186,299],[-1014,715],[-307,168],[-419,230],[-343,264],[-167,129],[-517,350],[-137,131],[-156,148],[-217,267],[-225,278],[-167,160],[-315,567],[-54,276],[10,50],[13,64],[0,0],[32,-44],[56,259],[-12,250],[-134,235],[-73,162],[-295,655],[-80,133],[-54,89],[-1043,2323],[-244,895],[-57,103],[-14,25],[-346,980],[-518,922],[-198,559],[-214,343],[-207,190],[-120,77],[-324,206],[-247,214],[-64,55],[-43,108],[0,0],[12,116],[45,89],[0,0],[118,-58],[81,59],[1,80],[1,104],[-37,114],[-19,55],[-105,148],[-163,500],[-84,256],[31,202],[27,174],[11,35],[24,73],[444,606],[80,72],[243,217],[49,2],[33,2],[17,36],[26,60],[45,9],[7,1],[0,0],[45,50],[119,131],[44,108],[31,157],[43,218],[16,226],[-16,51],[-34,105],[0,0],[-92,24],[-75,19],[-201,-431],[-424,393],[-168,192],[71,147],[109,223],[-4,580],[-40,93],[0,0],[51,383],[257,415],[169,480],[151,227],[12,154],[29,360],[-64,137],[26,102],[23,85],[0,0],[318,193],[425,114],[191,257],[59,137],[0,0],[39,-22],[49,-29],[0,0],[-105,175],[8,18],[117,258],[166,-48],[0,0],[14,99],[11,71],[0,0],[-33,26],[-85,70],[-18,91],[-19,91],[61,191],[85,166],[25,49],[622,166],[87,181],[11,24],[16,100],[17,111],[76,160],[21,46],[0,0],[355,513],[22,110],[-2,62],[-1,39],[-28,75],[-49,132],[-14,11],[-32,26],[0,0],[-55,-79],[-103,-21],[0,0],[-85,115],[-8,76],[6,41],[9,65],[67,51],[0,0],[87,205],[25,191],[-66,861],[14,422],[27,831],[-274,460],[-86,111],[-117,149],[-231,326],[-21,29],[-206,486],[-21,97],[45,81],[75,134],[110,105],[33,-24],[315,-234],[0,0],[-60,94],[-326,375],[0,0],[-88,-111],[-38,-48],[-27,36],[-109,144],[-19,51],[-23,62],[-146,146],[-146,146],[-214,102],[-69,6],[-100,9],[-117,-28],[-267,210],[0,0],[-5,83],[-6,86],[0,0],[-114,-60],[-11,10],[-43,34],[402,348],[716,-219],[144,-8],[222,-130],[86,-50],[238,-179],[314,-438],[67,-20],[93,-29],[115,-169],[330,-481],[-1,-18],[0,-15],[0,0],[-33,-21],[-25,-16],[0,0],[-2,-119],[6,-2],[54,-22],[44,16],[29,10],[0,0],[23,128],[1,2],[-17,396],[0,0],[-3,6],[-49,105],[0,0],[175,208],[311,369],[150,349],[4,9],[45,33],[105,75],[56,-5],[40,52],[172,226],[14,419],[6,190],[17,46],[43,123],[-1,160],[0,61],[486,483],[85,84],[0,0],[233,-84],[42,-15],[17,-1],[166,-12],[0,0],[30,32],[63,67],[-13,175],[20,31],[59,89],[77,4],[57,3],[98,-56],[51,-30],[262,-5],[59,-1],[136,27],[153,152],[292,288],[269,114],[0,0],[278,372],[413,387],[238,-94],[99,-40],[135,-267],[0,0],[-6,-88],[-1,-1],[-172,-191],[-8,-32],[-7,-26],[0,0],[-10,-9],[-70,-65],[-434,-134],[-14,-48],[-16,-55],[17,-97],[20,-116],[175,-341],[59,-219],[52,-194],[-36,-178],[-13,-60],[-255,-368],[-109,-232],[-24,-51],[244,-697],[56,-103],[44,-83],[0,0],[39,-15],[143,1],[131,50],[100,78],[145,234],[28,348],[2,31],[0,0],[-12,37],[-31,99],[-330,615],[0,0],[-9,49],[-70,375],[34,70],[48,99],[79,59],[1134,525],[43,5],[96,10],[-44,245],[-206,-70],[-45,11],[-50,276],[3,61],[0,0],[90,205],[148,105],[0,0],[51,-41],[53,-43],[275,-743],[146,41],[130,35],[22,-7],[365,-119],[347,-270],[76,-173],[35,-81],[-38,-146],[37,-183],[0,-4],[19,-34],[47,-88],[69,-60],[113,-21],[66,-12],[757,153],[69,14],[0,0],[92,4],[564,23],[91,-48],[0,0],[-2,-48],[0,0],[72,-127],[95,-169],[87,-65],[439,-122],[200,-56],[202,22],[202,148],[43,31],[489,224],[254,26],[0,0],[-103,92],[-167,33],[-68,1],[-32,1],[-50,-32],[-22,-14],[0,0],[-6,117],[454,1],[817,112],[273,-23],[496,33],[0,0],[-21,-51],[-12,-30],[0,0],[-41,-29],[-397,-78],[-143,-28],[-107,-184],[0,0],[303,-647],[0,0],[9,2],[14,4],[0,0],[103,226],[102,-53],[53,-27],[178,-215],[136,34],[0,0],[224,-97],[0,0],[47,-61],[111,-79],[163,-5],[116,-108],[19,-18],[48,-94],[28,-53],[-153,-141],[0,0],[-48,-411],[0,0],[73,-93],[10,-12],[0,0],[-77,-96],[-17,-21],[14,-26],[21,-40],[369,-23],[8,0],[0,0],[174,107],[150,-41],[111,-31],[43,-41],[169,-181],[0,0],[29,15],[10,5],[60,-30],[1,0],[0,0],[485,-380],[426,-529],[64,-118],[26,-48],[54,-133],[2,-186],[-9,-90],[-3,-35],[-54,-62],[-20,-82],[-19,-82],[-24,-435],[0,0],[32,43],[2,10],[82,370],[14,19],[45,63],[98,18],[6,1],[219,-79],[515,-553],[181,-154],[75,-198],[8,-219],[0,0],[48,113],[18,42],[73,40],[31,17],[0,0],[548,-109],[238,-5],[97,-2],[84,64],[198,30],[187,-23],[17,-2],[0,0],[223,-91],[11,21],[0,0],[-57,87],[0,0],[123,28],[75,-5],[99,-6],[432,-95],[253,-89],[0,0],[21,-65],[-8,-162],[0,0],[62,144],[92,23],[299,-233],[396,-107],[10,-2],[163,-161],[782,-768],[268,-500],[0,0],[56,219],[6,20],[0,0],[297,-348],[32,-84],[39,-101],[97,-904],[292,-1025],[173,-411],[38,-20],[14,-8],[107,24],[288,-156],[0,0],[8,-34],[56,-253],[-17,-110],[-16,-99],[-60,-178],[-222,-213],[-160,-213],[-76,-171],[-20,-45],[-38,-51],[-228,-297],[-53,-35],[-67,-43],[-82,-82],[-106,-107],[-188,-398],[9,-31],[43,-51],[86,-16],[126,149],[28,33],[13,39],[30,88],[101,151],[21,30],[0,0],[62,27],[93,40],[43,0],[0,0],[42,-104],[-123,-352],[-62,-77],[-125,-155],[0,0],[102,0],[43,0],[0,0],[81,100],[67,162],[99,240],[68,35],[104,53],[252,-70],[110,-8],[1094,-75],[234,-174],[0,0],[-86,-334],[-5,-22],[0,0],[-293,-760],[0,0],[-189,-174],[-336,-106],[-121,-74],[-32,-19],[-395,-1],[-313,-136],[5,-52],[6,-54],[0,0],[557,47],[151,124],[6,2],[260,81],[0,-58],[0,-32],[0,0],[-16,-39],[-75,-190],[-27,-168],[26,-17],[17,22],[62,78],[165,358],[78,111],[98,84],[0,0],[-10,-97],[0,-7],[0,0],[-40,-51],[0,0],[4,-7],[16,-35],[0,0],[28,10],[248,426],[9,-5],[60,-27],[-2,-43],[-1,-46],[36,-95],[0,0],[7,2],[1,1],[89,40],[8,3],[1,1],[47,36],[-1,33],[-11,-2],[-62,-12],[0,0],[-36,69],[-39,74],[21,177],[0,0],[121,90],[0,0],[5,-10],[7,-13],[20,2],[10,1],[-22,183],[143,206],[72,105],[0,0],[23,-34],[8,-13],[57,79],[46,62],[55,11],[91,18],[56,-12],[68,-64],[72,-68],[16,-48],[9,-30],[61,-8],[35,18],[112,57],[0,0],[63,-21],[275,-93],[130,-92],[0,0],[12,-26],[18,-37],[0,0],[-13,-28],[0,-1],[0,0],[131,-70],[195,-4],[7,0],[68,-68],[54,-163],[0,0],[22,11],[45,24],[29,25],[64,57],[0,0],[244,-305],[3,-3],[113,-12],[32,-16],[74,-38],[9,-21],[30,-70],[30,-223],[58,3],[29,38],[21,26],[-21,50],[96,131],[46,63],[57,-36],[82,-53],[122,-217],[29,-34],[41,-47],[17,-7],[30,-13],[44,-73],[-7,-182],[-3,-92],[-82,-160],[0,0],[32,-43],[0,0],[69,114],[46,77],[47,23],[69,-85],[13,-50],[22,-85],[-10,-24],[-27,-67],[-78,22],[0,0],[-50,-118],[-10,-22],[-200,-796],[5,-40],[6,-46],[31,6],[3,1],[0,0],[213,313],[89,324],[69,247],[153,97],[26,17],[14,1],[51,6],[0,0],[-10,-89],[-10,-85],[-30,-37],[-96,-119],[-117,-87],[0,0],[108,-87],[28,17],[41,58],[49,69],[0,0],[157,121],[54,20],[234,85],[46,-9],[63,-12],[33,108],[-76,71],[0,0],[42,54],[152,-34],[58,-13],[645,-373],[170,-98],[0,0],[90,-3],[97,64],[0,0],[395,-183],[233,-9],[721,134],[231,-31],[197,-27],[682,-479],[32,-27],[635,-548],[265,-385],[297,-347],[52,-61],[0,0],[399,-355],[375,-218],[165,-54],[56,-18],[370,-3],[20,0],[151,42],[304,-84],[93,-42],[40,-44],[16,-18],[47,-117],[122,-302],[82,-431],[53,-274],[78,-326],[132,-547],[24,-350],[-44,-710],[-5,-88],[-14,-65],[-65,-292],[-166,-541],[-28,-138],[-188,-359],[-645,-955],[-53,-69],[-284,-367],[-292,-229],[-68,-94],[-71,-122],[-1,-1],[0,0],[-37,-72],[-311,-612],[-212,-577],[-273,-535],[-293,-433],[-138,-98],[-13,2],[-34,4],[0,0],[8,28],[39,126],[-18,149],[-38,41],[-92,98],[-51,-12],[-27,-65],[-4,-10],[-2,-10],[-27,-122],[5,-125],[3,-77],[-117,-544],[-110,-329],[-40,-118],[0,-21],[0,-32],[50,-46],[27,-25],[0,0],[28,9],[0,0],[-47,-378],[-47,-374],[88,-979],[1,-6],[5,-49],[34,-154],[-178,-1102],[-79,-487],[-8,-143],[-2,-37],[30,-274],[-146,-381],[-51,-41],[-42,-33],[-130,-256],[-44,-157],[-48,-171],[-24,-353],[21,-220],[30,-329],[-56,-265],[-362,-599],[-76,-219],[-138,-404],[0,0],[-27,-26],[-186,-178],[-112,-174],[-9,-14],[-103,-260],[-126,-321],[0,0],[16,-91],[64,-366],[-11,-107],[-109,-81],[-98,-72],[-230,-88],[-79,-30],[-150,-112],[-42,-52],[-148,-180],[0,0],[-21,-98],[0,0],[7,-14],[59,-118],[-132,-198],[-6,-9],[0,0],[-187,-1],[-687,-3],[0,0],[-23,59],[81,199],[-2,26],[-1,15],[0,0],[-32,10],[-12,4],[0,0],[-59,-29],[-54,-26],[-29,-39],[-35,-47],[7,-7],[20,-21],[59,5],[33,-136],[0,-3],[-45,-43],[-11,-3],[-311,-78],[-204,-17],[-104,-9],[0,0],[46,37],[0,0],[102,1],[171,0],[0,0],[-114,75],[-122,81],[-207,-68],[-145,13],[-55,5],[-27,35],[-292,-156],[-28,-188],[0,0],[126,-4],[0,0],[15,-30],[18,-35],[-5,-7],[-26,-36],[-154,-42],[0,0],[-18,3],[-107,21],[-703,-472],[-165,2],[-46,1],[-57,-30],[-110,-60],[-311,-205],[-583,-506],[-338,-293],[-305,-404],[-245,-225],[-127,59],[-70,32],[-33,-123],[0,-2],[0,0],[-249,-30],[0,0],[2,-8],[40,-132],[8,-3],[78,-25],[66,-69],[72,-75],[-157,-454],[-136,-167],[-4,-96],[0,0],[53,-41],[43,-34],[0,0],[-25,-355],[140,-555],[-42,-185],[-21,-94],[-11,-441],[17,-100],[-146,-635],[-78,-144],[-88,-61],[-117,-81],[-110,-106],[-118,-114],[-192,-247],[-219,-350],[-93,-202],[-118,-255],[-127,-396],[-83,-260],[-204,-374],[-144,-262],[-91,-137],[-67,-101],[-348,-399],[0,0],[-640,-565],[0,0],[-30,273],[0,0],[136,16],[55,26],[133,63],[280,285],[192,262],[414,742],[95,171],[10,68],[20,147],[-33,54],[-25,40],[0,0],[-37,-6],[-13,-2],[-157,-122],[-17,-13],[0,0],[-160,-44],[-90,128],[-110,-57],[-10,-5],[0,0],[-1,-40],[-9,-271],[-133,-481],[-13,-47],[-221,-248],[-82,-64],[-159,-126],[-117,-276],[-107,-409],[51,-91],[35,-64],[0,0],[-316,-797],[-94,-234],[-120,-184],[-516,-506],[-352,-682],[-40,-43],[-283,-298],[-468,-233],[-173,-86],[-16,-5],[-28,-8],[-91,33],[-215,76],[-88,76],[0,0],[-266,24],[-234,-94],[-83,16],[-249,47],[-88,40],[-13,6],[-297,68],[-134,131],[-88,86],[-287,34],[-201,23],[-205,55],[-24,6],[0,0],[-439,525],[-17,376],[63,435],[52,94],[104,-5],[59,51],[17,34],[8,16],[8,24],[14,45],[10,62],[0,0],[-79,-128]],[[8077,39874],[7,-1],[67,-10],[0,0],[-133,-121],[-12,-4],[-7,-3],[-2,1],[-10,7],[-5,4],[-49,37],[-3,4],[-2,1],[2,3],[14,16],[1,1],[2,2],[0,0],[0,0],[0,0],[1,1],[10,7],[2,2],[117,53],[0,0]],[[9157,39909],[5,-6],[0,-1],[0,-1],[0,-1],[0,-3],[-3,-25],[-1,-8],[0,-2],[0,0],[0,-1],[0,0],[-1,0],[-1,-1],[-50,-15],[-13,10],[-13,27],[-1,3],[-1,1],[-1,3],[-2,8],[0,2],[0,1],[0,0],[0,1],[1,1],[9,4],[3,1],[7,0],[58,4],[1,0],[0,0],[1,-1],[2,-1]],[[215641,992],[132,-22],[25,2],[89,29],[116,47],[52,91],[59,-75],[29,-85],[-144,-7],[-69,-66],[162,-129],[3,-1],[30,-3],[67,-8],[17,0],[8,2],[72,25],[40,26],[199,163],[210,71],[65,-7],[52,-14],[45,-21],[7,-5],[3,-1],[6,-9],[27,-106],[0,-2],[0,-2],[0,-3],[1,-14],[1,-7],[0,-22],[-9,-31],[-11,-34],[-30,-37],[-46,-45],[-22,0],[-81,27],[-429,11],[-14,-1],[-104,-83],[85,-120],[36,-30],[81,-28],[135,-48],[-42,42],[-1,1],[-5,3],[-1,1],[-3,5],[-1,1],[-1,2],[-9,28],[-1,3],[0,1],[1,2],[6,2],[9,4],[3,1],[76,25],[47,-7],[68,-17],[41,-16],[1,-1],[1,-1],[3,-2],[11,-16],[1,-1],[2,-3],[0,-1],[0,-2],[-28,-59],[-38,-67],[-2,-1],[-5,-4],[-1,-1],[-11,-8],[-134,-31],[-178,26],[-63,87],[-1,1],[-4,8],[-5,12],[-1,2],[-1,3],[-4,7],[-3,8],[-3,24],[8,17],[-9,26],[-28,26],[-16,11],[-4,2],[-2,1],[-29,12],[-9,-67],[-312,-19],[-96,57],[-103,-32],[-2,-1],[-3,-1],[-9,-11],[3,-41],[6,-18],[9,-16],[9,-17],[4,-6],[0,-3],[3,-14],[0,-2],[-6,-27],[-5,-13],[-22,-10],[-25,-11],[-23,-9],[-17,-6],[-149,-11],[-6,0],[-23,1],[-3,3],[-16,46],[1,31],[32,96],[49,117],[29,15],[11,15],[-8,37],[-88,260],[-30,92],[113,109],[-53,107],[15,70],[101,158],[55,34],[4,0],[14,-1],[2,0],[3,-1],[4,-1],[1,0],[12,-8],[1,-2],[0,-1],[-22,-53],[55,-52],[-64,-260],[-15,-15],[-4,-11],[-4,-17],[2,-9],[11,-35],[10,-12],[19,-19]],[[216455,462],[-2,0],[-9,4],[-2,2],[-1,0],[-1,1],[-90,49],[16,25],[12,-1],[14,-8],[39,-24],[1,-1],[8,-7],[18,-16],[2,-2],[1,-2],[1,-1],[4,-7],[2,-4],[2,-3],[-1,0],[-4,-2],[-3,-1],[-2,-1],[-1,-1],[-4,0]],[[216378,568],[-3,-2],[-53,30],[-2,2],[-7,9],[-14,22],[3,11],[16,9],[26,-23],[11,-22],[12,-6],[2,-2],[1,-1],[3,-1],[2,-2],[1,-1],[2,-3],[1,-1],[1,-1],[1,-11],[0,-3],[0,-1],[-2,-2],[-1,-1]],[[216417,681],[-9,-7],[-1,1],[-4,1],[-3,1],[-37,19],[-3,1],[-5,3],[-1,1],[2,1],[1,1],[5,4],[42,-3],[1,0],[2,-1],[1,-1],[13,-12],[-4,-9]],[[216142,874],[-2,-1],[-30,2],[-3,1],[-4,1],[-1,0],[-2,0],[-17,5],[-17,4],[-6,2],[-9,3],[-2,0],[-1,1],[-2,2],[1,3],[0,1],[1,1],[2,3],[2,2],[67,32],[2,1],[3,1],[21,9],[4,2],[1,0],[12,-1],[2,0],[2,0],[10,-4],[2,-1],[-15,-50],[-8,-10],[-11,-8],[-1,0],[-1,-1]],[[215846,1001],[-52,-11],[-14,27],[-10,97],[28,39],[86,78],[1,0],[9,6],[1,1],[3,1],[2,1],[3,0],[1,0],[12,-9],[2,-2],[1,-1],[1,-1],[0,-2],[2,-6],[1,-4],[-1,-1],[-2,-3],[26,-22],[-48,-166],[-10,-7],[-16,-9],[-7,-1],[-15,-4],[-1,-1],[-3,0]],[[215726,1129],[-2,0],[-2,1],[0,1],[7,54],[4,11],[11,31],[26,40],[2,3],[1,1],[1,1],[3,2],[3,1],[1,0],[5,1],[2,0],[5,-45],[-2,-40],[-1,-3],[-1,-1],[0,-2],[-12,-18],[-23,-28],[-5,-4],[-1,-1],[-3,-2],[-1,0],[-5,-2],[-3,-1],[-10,0]],[[215996,1229],[-5,-1],[-1,0],[-3,1],[-32,32],[-1,1],[-3,4],[-8,14],[0,2],[-1,1],[-1,7],[1,2],[3,5],[1,1],[2,1],[1,0],[2,1],[27,7],[1,0],[3,0],[2,-1],[1,0],[2,-1],[2,-2],[42,-30],[1,-2],[2,-4],[-1,-9],[-2,-2],[-2,-2],[-31,-24],[-2,-1]],[[215292,1499],[-2,0],[-24,5],[-7,10],[3,5],[18,9],[20,0],[0,2],[20,-2],[3,0],[0,-1],[1,-3],[-8,-11],[-2,-2],[-3,-4],[-1,-1],[-2,-1],[-3,-2],[-2,0],[-6,-4],[-1,0],[-4,0]],[[201034,4023],[49,-4],[3,1],[3,0],[2,0],[4,0],[1,0],[9,-2],[3,-1],[28,-22],[5,-4],[3,-3],[5,-8],[2,-18],[-1,-5],[-12,-11],[-8,-7],[-10,-5],[-2,-1],[-14,-7],[-3,-1],[-72,9],[-40,21],[-8,5],[-15,12],[0,2],[-4,5],[-1,2],[0,4],[0,2],[1,8],[2,2],[1,1],[3,3],[66,22]],[[200728,3934],[-9,-5],[-80,22],[-22,13],[-17,16],[-11,16],[-5,9],[-3,10],[4,12],[38,24],[31,17],[13,5],[15,-6],[11,-7],[9,-6],[73,-61],[1,-1],[0,-1],[-8,-24],[-13,-15],[-15,-11],[-12,-7]],[[199379,4301],[-7,-4],[-5,2],[-46,23],[-18,14],[-3,4],[-1,1],[-1,1],[-1,3],[-3,7],[0,1],[-1,6],[-1,3],[1,2],[1,1],[2,4],[4,8],[2,3],[5,3],[8,6],[2,1],[1,1],[3,1],[11,2],[1,0],[40,3],[2,-1],[3,0],[2,-1],[1,0],[1,-2],[3,-3],[12,-19],[7,-14],[2,-18],[0,-5],[-8,-17],[-2,-2],[-2,-2],[-15,-12]],[[222988,12559],[-2,0],[-1,0],[-4,1],[-2,0],[-6,1],[-2,1],[-3,2],[-8,22],[0,2],[0,2],[1,3],[1,5],[1,1],[8,3],[2,-1],[7,-3],[1,-1],[13,-17],[1,0],[1,-3],[2,-2],[0,-2],[1,-3],[1,-3],[1,-2],[-1,0],[-2,-2],[-3,-2],[-5,-1],[-2,-1]],[[223008,13522],[-2,-1],[-5,0],[-2,0],[-2,0],[-3,1],[-1,0],[-1,0],[-1,1],[-1,1],[-20,25],[-2,11],[-1,6],[0,1],[0,2],[1,2],[2,12],[12,24],[13,6],[1,0],[5,2],[1,1],[1,0],[2,0],[4,-1],[11,-3],[2,-1],[3,-2],[1,-2],[4,-5],[1,-1],[3,-6],[2,-3],[1,-3],[1,-4],[0,-3],[1,-2],[1,-9],[1,-20],[0,-1],[-2,-3],[-1,-3],[-1,-1],[-7,-10],[-15,-8],[-7,-3]],[[190805,30778],[-1,0],[-1,0],[-5,1],[-2,1],[-1,0],[-4,3],[-2,1],[-15,18],[-3,6],[-1,1],[-1,3],[2,22],[1,2],[0,2],[2,2],[2,3],[1,0],[1,1],[5,2],[36,4],[1,0],[1,0],[1,-1],[0,0],[1,-2],[1,-3],[4,-10],[1,-3],[0,-1],[5,-18],[-6,-9],[0,-1],[-15,-21],[-5,-2],[-3,-1]],[[102348,74899],[51,-50],[25,-24],[29,-36],[0,-1],[0,0],[1,-1],[-3,-13],[-2,-7],[-1,-2],[0,0],[-3,-4],[-5,-5],[0,0],[-3,-3],[-1,-1],[-9,-5],[-25,-13],[-33,-13],[-40,5],[-11,3],[-6,1],[-22,7],[-23,7],[-1,2],[0,0],[-1,0],[-1,1],[-1,2],[-1,3],[-1,5],[-1,3],[-1,0],[0,1],[0,1],[0,0],[0,1],[0,2],[-1,7],[-1,23],[-1,32],[11,22],[7,14],[26,37],[1,1],[7,6],[0,1],[4,3],[2,1],[34,-13]],[[102346,75503],[1,-1],[1,-1],[4,-5],[2,-4],[16,-23],[7,-10],[8,-12],[6,-10],[1,-1],[0,0],[3,-10],[0,-1],[1,-2],[0,-2],[0,-1],[4,-26],[0,-2],[0,-15],[-2,-44],[0,0],[-8,-2],[-14,2],[-2,1],[-6,2],[-44,37],[-32,27],[-10,73],[17,15],[47,15],[0,0]],[[279389,43518],[35,11],[1,1],[0,0],[62,-150],[28,-293]],[[279515,43087],[26,-265],[136,-338],[16,-39]],[[279693,42445],[87,-453]],[[279780,41992],[127,-75],[93,-239]],[[280000,41678],[22,-57],[-45,-217]],[[279977,41404],[84,-63]],[[280061,41341],[44,-34],[29,-571]],[[280134,40736],[10,-196]],[[280144,40540],[49,-297]],[[280193,40243],[42,-151]],[[280235,40092],[103,-373]],[[280338,39719],[83,-101],[0,0],[57,-2],[78,-4],[114,94]],[[280670,39706],[290,239],[28,-4],[6,0],[57,-87],[21,-193]],[[281072,39661],[138,-144],[147,-152]],[[281357,39365],[134,-105],[68,-52],[192,-1227],[7,-480]],[[281758,37501],[85,-216]],[[281843,37285],[10,-25]],[[281853,37260],[205,-304],[138,-263],[180,-570],[-2,-19],[-46,-413],[-22,-74]],[[282306,35617],[-34,-115],[16,-108]],[[282288,35394],[63,-95],[73,-109],[32,-184]],[[282456,35006],[54,-307],[166,-225],[4,-5],[336,-227],[45,-27],[176,-106],[204,-10],[54,-2],[66,-269],[54,-68],[85,-107],[504,-226]],[[284204,33427],[432,-261],[21,-25],[53,-63],[91,-220],[-24,-10],[-2,-1],[-27,17],[-152,97]],[[284596,32961],[-28,-15],[29,-198],[131,-242],[147,-101]],[[284875,32405],[100,-69],[44,-108]],[[285019,32228],[21,-51]],[[285040,32177],[154,-406],[181,-866]],[[285375,30905],[38,-283],[231,-79],[135,-46]],[[285779,30497],[-125,367],[21,89],[14,60],[37,33],[36,33],[120,-241]],[[285882,30838],[374,-310],[0,0],[20,65],[10,29]],[[286286,30622],[-76,63],[-7,39],[-13,72],[28,70],[0,0],[69,-31],[124,-233],[26,-209],[-37,-632]],[[286400,29761],[0,0],[-86,-165],[0,0],[-61,50],[-46,38],[0,0],[1,-2],[114,-221],[16,-21],[199,-86]],[[286537,29354],[99,44],[53,-29],[29,-103],[34,-124]],[[286752,29142],[230,-237],[47,-5],[153,-17],[0,0],[-4,56]],[[287178,28939],[-29,41],[92,-8],[56,-104]],[[287297,28868],[144,-267],[54,-163],[135,-212]],[[287630,28226],[530,-645],[8,-39],[62,-272]],[[288230,27270],[10,-167],[9,-13]],[[288249,27090],[124,-181],[33,-107]],[[288406,26802],[36,-114]],[[288442,26688],[-47,-934]],[[288395,25754],[-21,-45],[2,-158],[1,-212],[82,-143],[27,-47],[151,-446],[39,-132]],[[288676,24571],[93,-321]],[[288769,24250],[-21,-25],[0,0],[4,0],[16,-1],[53,-145]],[[288821,24079],[14,-137],[23,-229],[-14,-96]],[[288844,23617],[-8,-61]],[[288836,23556],[-152,-355],[-113,-189]],[[288571,23012],[4,-41],[10,-7]],[[288585,22964],[61,-42],[-6,-88],[0,-3],[-152,-732],[-125,-339]],[[288363,21760],[0,0],[-41,-228],[1,-110],[0,-54],[12,-29],[9,-20],[18,-5]],[[288362,21314],[20,-5],[-3,-35],[-9,-139],[-23,-94],[-57,-238]],[[288290,20803],[-139,-410],[-51,-83],[-159,-259],[-29,-88],[-7,-21],[-6,-56],[8,-14]],[[287907,19872],[36,-61],[-31,-119],[-35,-134],[0,0],[-42,-34],[-165,-132]],[[287670,19392],[-171,-64],[-68,6],[-16,-17],[1,-43],[40,-37],[45,-42]],[[287501,19195],[-239,-159]],[[287262,19036],[-116,-77],[-71,-187],[0,0]],[[287075,18772],[-1,-147],[-25,-53],[-95,-200]],[[286954,18372],[-24,-7],[-68,-20],[-129,84],[0,0],[-3,-30],[-3,-27],[0,0],[105,-141],[12,-5],[11,-5]],[[286855,18221],[13,38],[0,0],[-4,-51]],[[286864,18208],[-12,-144],[-25,-31],[-87,2],[-87,3],[0,0],[113,-47],[61,6],[0,0]],[[286827,17997],[-62,-128],[-49,-101]],[[286716,17768],[-175,-272],[-12,-18],[-150,-609],[9,-88]],[[286388,16781],[13,-130],[-116,-110]],[[286285,16541],[-371,-608]],[[285914,15933],[-59,-221],[-43,-487],[-112,-495]],[[285700,14730],[-8,-351],[30,-123],[9,-33],[-6,-92],[-13,-192],[-40,-30],[-224,-174],[-243,-103]],[[285205,13632],[-506,-24],[-464,-22]],[[284235,13586],[-497,-70],[-110,-134],[-29,-36],[50,12],[94,22],[0,0]],[[283743,13380],[-746,-674]],[[282997,12706],[-539,-105],[0,0],[-16,-65]],[[282442,12536],[82,-165]],[[282524,12371],[33,24],[49,36]],[[282606,12431],[52,-55],[18,-19],[2,-41],[3,-106],[-49,-69],[-19,-28]],[[282613,12113],[-43,10],[-21,34],[-5,8],[1,2],[1,6],[-128,141],[-136,149]],[[282282,12463],[-357,164],[-142,154]],[[281783,12781],[-10,89],[105,125]],[[281878,12995],[-49,81]],[[281829,13076],[-35,59]],[[281794,13135],[-144,10],[-24,-13]],[[281626,13132],[-82,-196],[0,0],[-144,-95],[-45,-2]],[[281355,12839],[-53,-1],[-101,121],[6,15]],[[281207,12974],[2,6],[47,-11],[10,-3],[118,50]],[[281384,13016],[76,141]],[[281460,13157],[49,91],[0,0]],[[281509,13248],[-22,98]],[[281487,13346],[-135,203],[-38,21]],[[281314,13570],[-350,-291],[8,-143]],[[280972,13136],[3,-60]],[[280975,13076],[-277,-196],[-204,-145]],[[280494,12735],[-48,-58],[-42,-51],[-187,-128],[-67,-14]],[[280150,12484],[-72,-15],[-484,236],[-556,272]],[[279038,12977],[-285,88]],[[278753,13065],[-151,-16],[-144,-16]],[[278458,13033],[-144,27],[-66,12],[-111,115],[-87,52],[-110,66]],[[277940,13305],[-312,19],[-145,116],[-102,82],[-313,438],[-176,246],[-10,38]],[[276882,14244],[-79,269],[127,155]],[[276930,14668],[20,135]],[[276950,14803],[-51,234]],[[276899,15037],[-78,210],[-9,25],[-5,8],[-142,268],[-97,128],[-56,72],[-124,110]],[[276388,15858],[-266,235],[0,0],[40,-15],[47,-18]],[[276209,16060],[275,-270],[129,-159],[52,-63],[132,-225],[0,0],[-63,137],[-76,164],[-372,350]],[[276286,15994],[-106,99],[-231,58]],[[275949,16151],[-108,-78],[-76,-54],[-21,-3]],[[275744,16016],[-248,-32],[-17,9],[-60,34],[0,0],[31,62],[30,56],[114,62]],[[275594,16207],[126,161],[3,3],[82,433],[22,118],[0,0],[-240,456],[-162,307],[-29,-2],[-26,-54],[-26,-53]],[[275344,17576],[-220,-900],[-132,-107]],[[274992,16569],[-82,-23],[-498,-135],[-75,79],[0,0],[51,120],[93,223],[32,-4],[236,-27]],[[274749,16802],[140,505]],[[274889,17307],[21,380],[81,235],[14,39],[0,0],[85,121],[85,122],[35,135],[121,460]],[[275331,18799],[-7,64],[-8,65],[-185,619]],[[275131,19547],[0,0],[-1,-45],[-5,-143],[-139,-412]],[[274986,18947],[-225,-507]],[[274761,18440],[-114,-102],[-186,-169],[-47,32],[-268,-238]],[[274146,17963],[-622,-780]],[[273524,17183],[-87,-224],[0,0],[79,31]],[[273516,16990],[73,28],[0,0],[15,-274],[-21,-14],[-21,-13],[-460,329]],[[273102,17046],[-226,162]],[[272876,17208],[0,0],[40,26]],[[272916,17234],[53,36],[129,-5],[-138,594]],[[272960,17859],[-97,130],[-94,126]],[[272769,18115],[-284,640]],[[272485,18755],[-91,42],[-99,-4]],[[272295,18793],[-193,-8],[0,0],[-42,97],[-92,218],[-9,127],[0,0],[41,-18]],[[272000,19209],[61,-26],[0,0],[64,116],[-20,130],[-65,92],[0,0],[-61,47],[-189,143],[-57,58],[-138,140],[-169,44],[0,0],[-11,-43],[-9,-33]],[[271406,19877],[-1202,293]],[[270204,20170],[-338,260],[-458,236]],[[269408,20666],[-339,-91],[-179,-49],[-340,16]],[[268550,20542],[-316,-35],[-642,-73]],[[267592,20434],[-392,-200]],[[267200,20234],[-446,-228]],[[266754,20006],[-708,-238],[-202,-20]],[[265844,19748],[-296,-28],[-340,55]],[[265208,19775],[-128,20]],[[265080,19795],[-132,-42],[-15,-5],[-139,-86],[-737,-454],[-229,-108]],[[263828,19100],[-145,-67]],[[263683,19033],[-162,-37]],[[263521,18996],[-46,-30],[-51,-34],[0,0],[-97,-127],[-113,-347],[-126,-217],[-88,-152],[0,0],[-42,-35],[-163,-133],[-53,-10],[-127,-26],[-81,10]],[[262534,17895],[-44,5],[-121,97]],[[262369,17997],[-253,-48],[-529,-98],[-41,31],[-151,111],[-252,27]],[[261143,18020],[-218,24]],[[260925,18044],[-563,-86],[-620,-49]],[[259742,17909],[-90,-39],[-79,-34]],[[259573,17836],[-136,-109],[-95,-153]],[[259342,17574],[-18,-117],[-279,-161],[0,0],[-54,-14],[-327,-86]],[[258664,17196],[-361,-361],[-80,-41],[-333,-171],[-43,0],[-140,3],[-110,35]],[[257597,16661],[-159,52]],[[257438,16713],[-602,-41],[-579,336]],[[256257,17008],[-221,258],[-31,36]],[[256005,17302],[-62,46],[-138,102]],[[255805,17450],[-138,49],[-42,-16],[-54,-21],[-39,9]],[[255532,17471],[-16,4],[0,0],[-6,7],[-53,58]],[[255457,17540],[-33,294],[-7,58],[13,471],[0,0]],[[255430,18363],[31,-12],[14,-6],[46,-73]],[[255521,18272],[8,-12],[65,-29],[10,-4],[12,2],[125,11],[67,65],[44,44]],[[255852,18349],[159,277]],[[256011,18626],[12,186]],[[256023,18812],[-31,253],[79,555]],[[256071,19620],[-2,641],[-34,121]],[[256035,20382],[-24,87]],[[256011,20469],[-414,916]],[[255597,21385],[-113,340]],[[255484,21725],[-85,495],[0,0],[-9,465]],[[255390,22685],[-85,611]],[[255305,23296],[0,0],[-225,490]],[[255080,23786],[-212,367],[-87,152],[-96,576]],[[254685,24881],[-15,92]],[[254670,24973],[-116,352]],[[254554,25325],[-326,624]],[[254228,25949],[-288,373],[-52,186]],[[253888,26508],[7,12]],[[253895,26520],[42,73],[0,0],[95,46]],[[254032,26639],[0,0],[78,-245],[-3,-80],[156,-301],[31,-3],[0,0],[109,98],[0,0],[15,27],[25,46],[5,214]],[[254448,26395],[-274,324],[-104,278],[-28,72],[18,107]],[[254060,27176],[18,32],[27,48],[0,0],[76,-120]],[[254181,27136],[152,-238],[111,-217]],[[254444,26681],[105,-329]],[[254549,26352],[63,-85],[78,49],[39,25],[28,73],[0,0]],[[254757,26414],[-32,554]],[[254725,26968],[-303,636],[-85,237],[-107,300]],[[254230,28141],[-191,310],[-8,85],[24,293],[11,134],[159,437],[0,0],[122,119]],[[254347,29519],[24,73],[41,467]],[[254412,30059],[-102,370],[-31,113],[0,0],[277,819],[0,0],[94,79],[0,0],[60,12],[17,-23],[0,0],[-40,-91],[-41,-208]],[[254646,31130],[-15,-81],[35,-349],[30,-60],[13,2],[13,2],[164,106],[13,8],[154,451]],[[255053,31209],[64,185],[0,0],[313,168]],[[255430,31562],[388,208],[0,0]],[[255818,31770],[368,427],[662,464]],[[256848,32661],[196,-5],[533,-11],[187,38],[35,15],[31,12],[92,99],[48,53]],[[257970,32862],[19,57],[148,121],[278,50]],[[258415,33090],[296,53]],[[258711,33143],[257,323],[0,0],[122,29],[27,-9],[150,-48],[311,52]],[[259578,33490],[347,58]],[[259925,33548],[432,195]],[[260357,33743],[197,119],[139,85]],[[260693,33947],[48,47],[82,81],[80,119],[61,90]],[[260964,34284],[259,559]],[[261223,34843],[145,313],[0,0],[115,78],[92,92],[157,158]],[[261732,35484],[56,225]],[[261788,35709],[-121,102],[0,0],[-62,422],[28,269],[122,232],[239,237],[149,149],[-8,22],[-6,19],[4,19],[19,72],[131,209],[93,21],[18,-66],[-27,-11],[0,0],[4,-75],[10,-163]],[[262381,37167],[209,-409],[92,-235],[0,0],[1,-11],[8,-76]],[[262691,36436],[83,-118]],[[262774,36318],[71,-103]],[[262845,36215],[0,0],[39,304],[-5,56],[-7,69],[0,0],[204,-13],[8,54],[17,110]],[[263101,36795],[-320,564],[0,0],[134,62]],[[262915,37421],[42,20],[3,49],[2,44]],[[262962,37534],[-64,29],[-14,6],[-23,49],[-2,5],[0,0],[28,107],[0,0],[38,11],[46,12],[39,-32],[46,-36],[-12,-28],[-17,-37],[-36,9]],[[262991,37629],[-21,5],[0,0],[38,-44],[115,-132],[18,18],[54,54],[179,-60],[160,-54],[369,25],[84,5]],[[263987,37446],[-170,79],[-139,13],[-24,108]],[[263654,37646],[-32,145]],[[263622,37791],[226,327]],[[263848,38118],[55,133],[0,0],[-49,56],[0,0],[-87,-157],[0,0],[-73,-15],[-82,-16]],[[263612,38119],[-24,-42],[-16,-27],[0,0],[-17,207]],[[263555,38257],[26,94],[34,119],[0,0],[143,4],[52,49],[16,114],[0,0],[123,-12],[172,-137],[12,-3],[93,-22],[0,0],[-31,122],[-60,243],[-44,28],[-73,46],[0,0],[499,-47],[0,0],[-94,135]],[[264423,38990],[-26,38]],[[264397,39028],[-75,47],[-21,41]],[[264301,39116],[-58,111],[-24,108],[176,159]],[[264395,39494],[0,0],[29,-20],[30,-22],[132,73],[0,0],[9,72],[9,69],[0,0],[44,46],[0,0]],[[264648,39712],[163,-179]],[[264811,39533],[57,-111]],[[264868,39422],[9,3],[14,4]],[[264891,39429],[142,452]],[[265033,39881],[-23,180],[58,86]],[[265068,40147],[72,-258],[5,-17],[104,61],[0,0],[-37,45],[145,54],[41,-71],[47,-82],[0,0],[57,63],[89,196]],[[265591,40138],[33,153]],[[265624,40291],[-18,54],[-10,28],[101,39]],[[265697,40412],[68,27],[114,-145]],[[265879,40294],[61,-134],[0,0],[24,25],[50,51]],[[266014,40236],[23,0],[56,1],[257,-250],[277,-453]],[[266627,39534],[44,-31],[59,-180],[47,-140],[-15,-175]],[[266762,39008],[-11,-136],[-102,-418]],[[266649,38454],[-86,-66],[-17,-30],[4,-11],[18,-41],[0,0],[286,262],[69,64],[76,306],[0,0],[76,40],[0,0],[36,96],[0,0],[-25,84],[-10,12]],[[267076,39170],[-54,62],[0,0],[49,27],[25,13],[0,0],[29,1]],[[267125,39273],[130,2],[119,-37],[132,-41],[71,-51]],[[267577,39146],[120,-85],[80,81]],[[267777,39142],[90,-6],[14,-1],[40,-18]],[[267921,39117],[34,-15],[77,-131]],[[268032,38971],[1,0]],[[268033,38971],[55,44],[120,194],[12,174]],[[268220,39383],[12,170]],[[268232,39553],[-96,-44],[-138,29],[-36,36],[-109,108],[16,98],[83,220],[22,59],[202,163]],[[268176,40222],[16,13],[0,0]],[[268192,40235],[138,461],[41,-9]],[[268371,40687],[49,-11],[79,58],[19,13],[0,0]],[[268518,40747],[116,147]],[[268634,40894],[-49,98],[-35,70],[16,174]],[[268566,41236],[11,122],[49,67],[89,121],[138,46]],[[268853,41592],[77,-8],[134,-12],[0,0]],[[269064,41572],[-173,120],[24,235],[8,4],[32,15],[102,-43],[103,-180]],[[269160,41723],[91,-97],[0,0],[-9,89],[-6,59],[0,0]],[[269236,41774],[-86,88],[131,296],[269,25]],[[269550,42183],[5,-5]],[[269555,42178],[93,-107]],[[269648,42071],[147,-7]],[[269795,42064],[53,-3]],[[269848,42061],[655,65],[54,49]],[[270557,42175],[90,82],[128,553]],[[270775,42810],[-160,180],[-15,17],[0,0],[-76,-8],[-159,-17],[-16,-10]],[[270349,42972],[-79,-49],[-277,257]],[[269993,43180],[10,50],[2,12],[119,112],[24,-31],[42,-52],[0,0],[111,19],[153,26],[161,-217],[15,-19],[0,0],[48,-10],[178,-34],[213,-149]],[[271069,42887],[75,-100],[84,-113]],[[271228,42674],[141,-55]],[[271369,42619],[401,-27],[0,0],[50,-47]],[[271820,42545],[48,-44],[150,-218],[-5,-32],[16,-26],[175,47],[69,19],[82,4],[219,12],[0,0],[21,-46],[17,-35],[0,0],[198,-135],[0,0],[21,-6],[95,-29],[10,4],[96,37],[59,78],[-30,0],[0,0],[80,73],[126,43]],[[273267,42291],[178,-84],[68,-33]],[[273513,42174],[93,-304],[173,-14],[30,24]],[[273809,41880],[55,44]],[[273864,41924],[50,201]],[[273914,42125],[-17,15],[-15,13]],[[273882,42153],[-79,-14],[-27,45],[-8,12],[0,0],[66,69],[158,165]],[[273992,42430],[57,22],[49,19],[0,0],[-51,-44],[-4,-44]],[[274043,42383],[89,-222],[34,-86],[0,0],[81,-4],[7,19],[10,23]],[[274264,42113],[-63,46],[50,22],[32,14],[83,-78],[50,-100]],[[274416,42017],[1,-33]],[[274417,41984],[1,-22],[0,0],[-183,-205]],[[274235,41757],[-92,-192],[-14,-28],[-31,-189]],[[274098,41348],[53,-106],[0,0],[-27,-39],[-54,-79],[-139,-91],[-164,13],[-36,3]],[[273731,41049],[0,0],[-41,-9],[-87,-20],[-73,-65],[-49,-206],[17,-279],[13,-9],[47,-32]],[[273558,40429],[41,37],[27,25],[0,0],[-123,-542],[-136,-141]],[[273367,39808],[-108,-190],[-49,-86],[0,0]],[[273210,39532],[-20,-80],[-411,-159]],[[272779,39293],[-64,-25],[6,-10],[5,-10],[45,-19],[0,0],[146,66],[0,0],[185,-128]],[[273102,39167],[173,-198]],[[273275,38969],[22,-107],[13,-62],[209,-14]],[[273519,38786],[101,-88]],[[273620,38698],[77,-68]],[[273697,38630],[272,-298],[255,-279]],[[274224,38053],[171,-28]],[[274395,38025],[542,-294],[209,-157],[99,-167]],[[275245,37407],[269,-273]],[[275514,37134],[81,-43],[17,-9]],[[275612,37082],[605,-163],[202,-377],[85,-158]],[[276504,36384],[328,-219],[241,-162],[38,-4],[61,-6],[196,54],[141,39],[77,58],[214,163],[150,417]],[[277950,36724],[252,702]],[[278202,37426],[78,452],[6,34],[-15,100],[16,106],[28,182],[89,330]],[[278404,38630],[36,133]],[[278440,38763],[48,320]],[[278488,39083],[-74,617]],[[278414,39700],[-71,599],[47,269]],[[278390,40568],[23,135],[79,135]],[[278492,40838],[0,0],[43,-6],[0,0],[1,-80],[0,0],[36,73],[7,15],[0,0],[-60,191]],[[278519,41031],[-75,237],[0,0],[184,307],[0,0],[84,-26],[0,0],[4,-13],[7,-23],[0,0],[40,57]],[[278763,41570],[-7,52],[-14,95]],[[278742,41717],[-187,79],[0,0],[-61,-65],[0,0],[-44,25],[0,0],[189,567],[28,46],[34,57],[11,-2],[10,-1],[68,199],[6,18],[12,60],[128,629]],[[278936,43329],[176,294]],[[279112,43623],[77,189],[0,0],[43,5]],[[279232,43817],[38,4],[17,-13]],[[279287,43808],[18,-16],[-19,-121]],[[279286,43671],[-11,-75],[114,-78]],[[283971,7628],[-150,-66],[-57,22],[-52,81],[-43,67],[-3,56],[0,10],[63,73],[57,-115]],[[283786,7756],[42,-5],[33,-5],[0,0],[18,21],[16,18],[-22,91],[-13,50],[0,0],[59,47]],[[283919,7973],[28,-16],[23,-13],[15,-36],[7,-17],[-7,-167],[-3,-91],[0,0],[-11,-5]],[[281266,10324],[149,-48],[124,-40],[38,8],[52,10]],[[281629,10254],[779,-383]],[[282408,9871],[133,-32],[37,-9],[48,8]],[[282626,9838],[346,57],[-2,6],[-17,60],[72,37],[99,51],[344,-6]],[[283468,10043],[531,275],[179,-112],[105,-171],[-12,-92],[-23,-175]],[[284248,9768],[-2,-555]],[[284246,9213],[-1,-347],[0,0],[-48,73],[0,0]],[[284197,8939],[-53,-22]],[[284144,8917],[-39,-70]],[[284105,8847],[-92,-222]],[[284013,8625],[-24,-139]],[[283989,8486],[-46,-258],[-138,-196]],[[283805,8032],[-80,-113],[0,0],[-295,-63],[-80,-260],[0,0],[-98,-74],[-111,60],[-24,13]],[[283117,7595],[45,135],[3,10],[2,8],[0,0],[-4,-1],[-6,-3],[-54,-112],[0,0],[-1,-23],[0,-17],[15,-28]],[[283117,7564],[70,-129],[0,0],[-5,-9],[-125,-255],[-68,-71],[-294,114],[-158,30]],[[282537,7244],[-252,47]],[[282285,7291],[-62,82],[-5,7],[0,0],[19,23],[29,34],[-173,116]],[[282093,7553],[-264,291],[-170,383],[-26,110]],[[281633,8337],[-55,242],[39,30]],[[281617,8609],[0,0],[109,-98]],[[281726,8511],[62,-55],[0,0],[10,8],[73,61]],[[281871,8525],[-245,246]],[[281626,8771],[-275,461],[-24,54],[-96,214],[-165,524],[-3,64],[-1,8],[102,316],[0,0],[102,-88]],[[284208,11141],[36,-45],[0,0]],[[284244,11096],[5,-29],[16,-93]],[[284265,10974],[-33,-70],[-13,-4],[-56,-15],[-135,47],[-178,310],[-43,74],[153,133],[0,0],[248,-308]],[[280548,11058],[-94,-68],[0,0],[-17,34],[-24,46],[-13,180]],[[280400,11250],[-2,29],[39,207]],[[280437,11486],[38,45],[-3,43],[-1,27],[0,0],[10,1],[30,3]],[[280511,11605],[118,-89],[0,0],[13,-151],[12,-145],[-28,-87]],[[280626,11133],[-8,-25],[-70,-50]],[[274578,15580],[-270,-9]],[[274308,15571],[-14,0],[-76,1],[-29,25],[-80,67],[-28,56],[34,169],[0,0],[687,178],[106,13],[81,9],[18,-23],[-35,-152]],[[274972,15914],[376,-192]],[[275348,15722],[-770,-142]],[[253663,27009],[-47,198],[6,70],[40,40],[222,-634],[0,-4],[-10,-94],[0,0],[-211,424]],[[288609,27920],[-210,-832],[0,0],[-115,128],[121,495],[130,200]],[[288535,27911],[-14,78],[-72,96],[116,89]],[[288565,28174],[36,-208],[8,-46]],[[276726,37335],[-22,24],[0,0],[-117,-125]],[[276587,37234],[-130,-141],[-41,32]],[[276416,37125],[-54,43],[5,90]],[[276367,37258],[51,93],[65,51],[0,0],[189,69],[133,-77],[0,0],[17,-59],[0,0],[-55,-15],[-21,-5],[-20,20]],[[273947,39939],[23,257]],[[273970,40196],[49,79],[38,62],[99,44],[0,0],[0,8],[0,77],[0,0],[38,25]],[[274194,40491],[21,-22],[5,-6],[0,0],[49,-288]],[[274269,40175],[129,-221],[37,-19],[-9,-108],[-39,-27],[-236,32],[-204,107]],[[262326,42066],[-1,-1],[0,0],[-2,1],[0,0],[-3,1],[0,0],[0,2],[-1,2],[0,2],[1,2],[0,1],[1,1],[0,0],[1,0],[0,0],[3,0],[2,-1],[1,0],[1,-3],[1,-1],[0,0],[-1,-3],[-1,-1],[-1,-1],[-1,-1]],[[268836,42743],[11,-185],[-333,9],[56,460],[78,91],[66,5],[0,0],[7,-22],[115,-358]],[[269002,43012],[50,-4],[90,55],[99,61]],[[269241,43124],[63,12],[11,2],[119,-105]],[[269434,43033],[59,-53],[-4,17],[-35,164],[0,0]],[[269454,43161],[80,105],[34,-32],[93,-90],[59,-171]],[[269720,42973],[-145,-219],[-309,-299],[0,0],[-266,162],[-178,188],[0,0],[-61,263],[-36,155],[9,89],[25,2],[243,-302]],[[234506,80609],[-88,-259],[-52,254],[5,58],[-11,222],[-83,176],[-24,27],[-21,31],[32,66],[82,-16],[81,-252],[79,-307]],[[88355,83639],[43,-156],[2,-7],[3,-9],[4,-6],[2,-5],[1,-2],[3,1],[0,0],[2,1],[97,-116],[2,-3],[5,-7],[1,-1],[1,-2],[2,-3],[1,-3],[4,-9],[1,-3],[1,-3],[1,-2],[5,-29],[2,-15],[5,-73],[5,-81],[-7,-16],[-31,-74],[-71,-21],[0,0],[-1,-15],[-1,-18],[-25,-29],[0,0],[-5,-5],[-20,-18],[0,-1],[-19,-12],[-2,-1],[-58,-29],[-12,-6],[-33,21],[0,0],[0,0],[-27,25],[-189,174],[-51,198],[0,0],[36,52],[20,28],[72,106],[37,89],[5,32],[8,53]],[[92606,79325],[-69,-120],[-18,-31],[-5,-7],[-17,-25],[-169,-27],[-74,-9],[-178,-21],[0,0],[-1,0],[-9,1],[-3,3],[-1,0],[-4,5],[-1,1],[-1,1],[0,1],[-6,18],[0,0],[-3,16],[-10,50],[46,106],[17,12],[114,82],[78,24],[17,-10],[28,-16],[2,-3],[0,-1],[6,-11],[0,-1],[1,-1],[1,-1],[4,-7],[2,-2],[5,-4],[1,-1],[49,-20],[1,0],[0,0],[2,-1],[1,0],[9,2],[62,26],[1,1],[5,3],[5,3],[2,1],[4,2],[9,5],[1,1],[1,0],[0,0],[2,2],[6,4],[2,1],[4,6],[3,3],[0,2],[19,45],[39,95],[0,1],[0,0],[1,1],[0,1],[1,0],[1,2],[3,1],[10,6],[8,4],[3,2],[1,1],[1,0],[2,0],[9,3],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[3,-9],[1,-1],[0,-1],[0,-1],[0,-4],[1,-3],[0,-1],[0,-3],[-1,-26],[-1,-25],[-4,-32],[-4,-30],[0,0],[0,-1],[0,-1],[-1,-1],[-3,-15],[-1,-4],[-1,-3],[-21,-56]],[[92661,79789],[43,-42],[0,-43],[-80,-34],[-22,1],[0,0],[-6,24],[-11,37],[4,6],[14,20],[30,23],[9,6],[11,6],[1,1],[1,0],[1,0],[0,0],[1,0],[0,0],[1,0],[1,-2],[1,-1],[1,-2]],[[92575,80779],[0,0],[170,-41],[44,-15],[23,-13],[51,-29],[7,-7],[6,-5],[3,-8],[-4,-21],[-7,-9],[-21,-18],[-4,-4],[-5,0],[-1,0],[0,0],[-1,1],[-18,14],[-3,3],[-1,0],[0,1],[-16,18],[-12,13],[-3,4],[-1,1],[-1,1],[-1,1],[-2,3],[-14,16],[-2,2],[0,0],[-1,1],[0,0],[-6,3],[-1,1],[-2,1],[-14,3],[-2,0],[-1,0],[0,0],[0,0],[-78,4],[-32,-5],[-39,-16],[-49,26],[-16,14],[-9,8],[0,0],[5,14],[20,62],[0,0],[38,-24]],[[91460,80895],[-4,-2],[0,-1],[-1,0],[-2,1],[-2,3],[0,1],[-1,1],[0,1],[-2,2],[0,0],[0,2],[0,4],[0,3],[0,1],[0,2],[0,2],[0,2],[3,12],[1,6],[0,2],[7,11],[1,2],[68,85],[2,2],[1,0],[0,1],[0,0],[1,0],[0,-1],[1,0],[1,0],[0,-2],[1,0],[0,-1],[-1,-5],[-3,-6],[0,-2],[-1,-3],[-4,-8],[0,-1],[-1,-2],[-29,-52],[-15,-24],[-21,-36]],[[91898,81080],[16,-169],[-2,-9],[0,-5],[-3,-7],[-10,-29],[-17,-39],[-82,-135],[-8,-10],[-6,-8],[-1,-1],[-9,-9],[-148,-105],[-30,-2],[-60,-2],[0,0],[127,116],[168,148],[-5,74],[-4,68],[-27,91],[0,0],[50,42],[30,10],[10,3],[0,0],[1,-2],[10,-20]],[[91554,81209],[161,-85],[35,-18],[17,-11],[0,0],[-53,-53],[-76,7],[-25,5],[-65,14],[-19,12],[-40,100],[-5,15],[-8,30],[1,2],[0,0],[5,3],[1,1],[2,0],[6,1],[0,0],[1,0],[4,0],[27,-4],[14,-9],[17,-10]],[[92053,81526],[16,-7],[0,0],[6,-6],[-2,-2],[-43,-13],[-15,-5],[-10,-2],[-5,0],[-19,0],[-1,0],[0,0],[-4,0],[0,0],[-40,26],[0,1],[0,1],[10,3],[7,3],[26,1],[63,1],[11,-1],[0,0]],[[90386,81915],[36,-13],[0,0],[1,0],[2,-1],[1,0],[2,-2],[1,0],[1,-1],[1,0],[20,-13],[4,-3],[1,0],[0,-1],[2,-1],[2,-2],[0,-1],[1,-1],[6,-9],[3,-6],[0,0],[0,-1],[0,0],[-1,-1],[-1,0],[-1,0],[-36,12],[-46,15],[-21,13],[0,0],[-10,17],[-2,7],[0,0],[1,2],[1,2],[0,0],[1,1],[1,1],[0,0],[1,1],[0,0],[24,-12],[5,-3]],[[90633,82177],[1,0],[0,-1],[9,-9],[2,-2],[4,-5],[4,-6],[22,-31],[50,-100],[260,-522],[19,-28],[6,-7],[21,-34],[14,-28],[11,-70],[4,-24],[0,-1],[0,-1],[2,-10],[4,-28],[-1,-1],[-1,-5],[-1,-1],[0,0],[-2,-3],[-2,-3],[0,0],[-19,-13],[0,0],[-104,174],[-137,228],[-35,201],[-66,137],[-47,105],[-22,49],[-2,12],[-3,22],[0,0],[1,1],[3,3],[2,3],[2,-1],[1,-1]],[[90070,82166],[130,-140],[13,-14],[0,0],[-18,-22],[-166,89],[9,29],[4,13],[28,45],[0,0]],[[91074,82212],[13,-4],[1,0],[1,-1],[5,-3],[0,0],[1,0],[0,-1],[0,-1],[2,-4],[2,-7],[1,-2],[0,-1],[0,-3],[1,-2],[0,-2],[-4,-20],[-4,-18],[-17,-10],[-3,-2],[0,0],[-14,-3],[-94,11],[-2,2],[-1,1],[0,0],[-1,6],[-3,11],[-1,2],[1,4],[1,1],[0,0],[0,1],[0,0],[2,2],[10,6],[9,5],[5,3],[6,3],[4,2],[5,2],[21,7],[10,3],[32,10],[11,2],[0,0]],[[90018,82170],[-1,-1],[-1,0],[-6,-3],[-1,0],[-1,-1],[-9,-4],[-3,-1],[0,1],[-1,0],[-3,2],[-1,6],[-1,2],[1,13],[1,17],[5,9],[3,5],[0,0],[16,-22],[2,-11],[1,-9],[0,-1],[-1,-2]],[[88578,82171],[-2,0],[-1,-1],[-14,9],[8,45],[0,0],[0,0],[2,-1],[2,-1],[0,0],[1,-1],[11,-11],[6,-7],[0,0],[-4,-18],[-3,-4],[-6,-10]],[[88699,82322],[-60,-80],[0,0],[-12,-2],[0,0],[-20,13],[-18,12],[6,2],[13,2],[9,10],[0,0],[0,2],[1,4],[-3,8],[0,0],[25,19],[25,12],[12,5],[7,1],[4,1],[11,-9]],[[89768,82500],[-18,28],[0,0],[-53,87],[0,0],[19,-1],[9,0],[0,0],[29,-66],[14,-33],[1,-2],[1,-3],[1,-4],[2,-6],[0,0],[-5,0]],[[91394,82662],[5,-16],[1,-3],[1,-7],[11,-44],[-5,-14],[-7,-21],[-32,-74],[-3,-9],[0,0],[-1,-1],[0,0],[-2,-1],[0,0],[-2,0],[-1,0],[-22,0],[-1,0],[0,0],[-29,1],[-5,10],[14,111],[4,28],[0,1],[1,2],[0,1],[1,2],[2,4],[1,1],[0,1],[1,2],[2,3],[4,8],[1,1],[1,2],[8,9],[2,0],[1,0],[2,1],[23,6],[14,4],[2,0],[2,0],[2,-3],[4,-5]],[[88661,82763],[1,-1],[0,0],[5,-4],[2,-2],[2,-2],[0,-1],[26,-81],[13,-40],[29,-183],[2,-20],[2,-13],[-3,-48],[-3,-14],[-4,-15],[-2,-6],[-3,-10],[-6,-6],[-5,3],[-3,2],[-13,12],[-3,3],[-4,4],[1,3],[0,6],[0,1],[0,2],[-1,2],[0,0],[0,1],[0,2],[-1,1],[-1,0],[-15,2],[-57,-34],[0,0],[-43,43],[-15,181],[48,122],[28,73],[5,7],[4,4],[11,5],[1,1],[1,0],[1,0],[0,0]],[[88472,82817],[0,0],[0,0],[1,-1],[4,-3],[1,-1],[2,-2],[0,0],[0,0],[4,-3],[2,-1],[1,-3],[1,-1],[-1,-2],[-2,-2],[-1,-3],[-58,-74],[0,0],[-30,-11],[-38,-15],[-1,0],[-1,0],[-7,0],[-1,0],[-1,2],[-7,9],[-4,6],[0,0],[0,0],[-1,2],[-7,14],[0,1],[-1,4],[-1,2],[-1,3],[1,3],[0,1],[1,3],[0,0],[1,0],[3,1],[1,0],[2,-1],[2,-1],[2,-1],[48,6],[21,6],[1,1],[1,0],[2,1],[0,2],[1,4],[3,28],[0,0],[33,23],[4,1],[5,1],[15,1]],[[89609,82799],[14,-14],[3,-2],[3,-4],[10,-14],[2,-3],[2,-4],[1,-5],[0,-1],[0,0],[-1,-2],[0,0],[-1,0],[-2,0],[-9,3],[-1,0],[-10,5],[-8,11],[-25,37],[1,3],[0,2],[0,1],[2,7],[0,3],[0,0],[1,0],[1,0],[0,0],[2,1],[1,-1],[0,-1],[1,-1],[13,-21]],[[88366,82837],[6,-3],[9,-6],[1,0],[0,-1],[8,-6],[-11,-41],[-2,-4],[-2,-2],[0,0],[-3,-3],[-7,-7],[-15,-2],[-13,-3],[-9,1],[-30,27],[-3,4],[0,0],[10,6],[1,1],[1,0],[4,1],[0,0],[5,3],[38,26],[3,1],[8,7],[1,0],[0,1],[0,0]],[[88351,82845],[0,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,0],[-1,-3],[0,0],[-11,-15],[-2,-1],[0,0],[-1,-1],[-1,0],[-35,-23],[-6,-1],[-1,0],[0,0],[-1,0],[-2,0],[0,0],[0,1],[-8,10],[-1,2],[-1,2],[-2,6],[-2,3],[1,5],[0,0],[1,2],[73,16]],[[88594,82663],[-28,-70],[0,0],[-62,-42],[-89,126],[95,122],[0,0],[56,43],[0,0],[1,0],[2,2],[0,0],[1,0],[9,6],[1,0],[21,9],[2,1],[0,-1],[1,-2],[2,-4],[1,-1],[0,0],[0,0],[3,-12],[-9,-103],[-7,-74]],[[88470,82913],[3,-2],[-3,-8],[-4,-11],[-1,-1],[0,0],[-1,-2],[-1,0],[0,-1],[-24,-12],[-5,1],[0,0],[0,0],[-1,1],[-2,2],[-2,6],[-4,9],[-1,10],[0,3],[1,2],[0,1],[0,1],[1,0],[0,1],[0,0],[2,0],[1,1],[21,1],[8,0],[7,-1],[5,-1]],[[88450,82947],[-2,0],[-1,0],[-3,-1],[-2,-2],[-12,-7],[-1,0],[-1,0],[-5,-5],[-3,-2],[0,0],[0,-2],[0,-2],[1,-6],[1,-4],[-4,-5],[-1,-2],[-3,-2],[-21,-14],[-18,-7],[-1,0],[-1,-1],[-3,0],[-3,1],[-1,0],[0,1],[0,1],[0,0],[0,3],[0,2],[7,5],[24,14],[28,28],[2,1],[20,10],[0,0],[1,-1],[2,-3]],[[88556,82909],[-11,-3],[-17,-6],[-11,24],[13,25],[8,16],[0,0],[17,3],[1,-59],[0,0]],[[87945,83272],[7,0],[0,0],[2,-19],[-1,-2],[0,-1],[0,0],[-1,-1],[-2,-1],[-22,-11],[0,0],[-1,0],[-5,1],[-2,0],[-2,0],[-3,1],[-1,0],[0,1],[-1,0],[0,0],[-1,1],[-1,0],[-3,3],[0,0],[-1,1],[0,3],[-1,2],[0,0],[2,12],[1,0],[0,1],[1,0],[18,6],[5,1],[0,0],[1,0],[11,2]],[[90335,83282],[4,-5],[18,-21],[186,-328],[55,-99],[15,-29],[24,-47],[1,-4],[1,-1],[0,-1],[0,-1],[14,-39],[3,-10],[1,-4],[1,-2],[2,-9],[0,-2],[1,-3],[0,-2],[0,0],[0,0],[-1,0],[-1,-1],[-2,0],[-63,-10],[-79,-12],[-26,6],[-1,0],[-2,1],[-1,1],[0,0],[-1,0],[-9,6],[-1,1],[-1,0],[-17,19],[-1,1],[0,2],[-1,3],[0,1],[1,1],[1,1],[0,0],[0,1],[0,0],[0,0],[11,7],[43,24],[19,10],[0,0],[-24,142],[-143,297],[-3,6],[-2,2],[-1,3],[-1,0],[0,1],[-14,18],[-4,5],[0,0],[0,0],[-4,3],[-32,25],[-13,3],[-4,0],[-3,1],[-6,8],[-6,10],[-1,16],[30,20],[9,0],[7,-3],[12,-6],[2,-1],[1,-1],[1,0],[0,0],[1,-1],[2,-1],[1,-2],[1,0]],[[88901,83639],[-38,-14],[-21,-6],[-10,-2],[0,0],[-25,-1],[-21,0],[-18,0],[-60,20],[-3,3]],[[89946,83639],[-26,-196],[-28,-131],[0,0],[-33,5],[0,0],[-27,54],[-2,30],[0,0],[60,112],[33,126]],[[79384,76376],[-10,-18],[-51,-90],[0,0],[227,-27],[0,0],[-16,-397],[-47,-171],[-19,-67],[-36,-308],[-28,-243],[58,-357],[0,0],[-33,-141],[-58,-245],[-139,-326],[-40,-52],[-36,-47],[0,0],[-37,7],[-31,5],[-78,-69],[-159,-281],[-4,-33],[-4,-36],[88,-24],[39,-10],[101,7],[130,8],[69,-25],[26,-10],[50,-41],[111,-90],[112,-20],[0,0],[151,177],[164,51],[181,-68],[105,-40],[497,-53],[334,23],[381,126],[969,41],[303,-98],[107,-34],[929,-750],[162,-168],[-69,-36],[-16,-50],[-51,-166],[60,-309],[-210,-752],[-61,-412],[-11,-190],[-1,-19],[6,-112],[46,-741],[-32,-86],[-14,-36],[-57,-25],[-34,-123],[-43,-303],[-13,-333],[-5,-133],[-115,-213],[5,-100],[2,-45],[49,-196],[62,-123],[0,0],[21,-10],[39,-20],[0,0],[4,-12],[145,-439],[91,-184],[16,-32],[491,-709],[208,-139],[90,-96],[74,-79],[14,-232],[92,-203],[155,-110],[127,8],[98,6],[168,-49],[97,-110],[11,-2],[162,-19],[154,37],[130,32],[481,333],[150,78],[178,91],[91,-97],[75,-80],[138,-29],[0,0],[32,-46],[68,-99],[14,-82],[-73,-6],[-54,-4],[0,0],[-18,-39],[-32,-69],[4,-81],[7,-121],[-368,-315],[-9,-6],[-46,-28],[-80,-2],[-18,-1],[0,0],[-36,-338],[293,-397],[39,-105],[16,-45],[0,0],[-22,-61],[-362,-237],[-153,-23],[-85,-12],[-55,5],[-98,9],[-35,45],[-5,6],[-79,505],[-28,184],[0,0],[-48,39],[-17,-12],[-58,-39],[0,-123],[0,-86],[0,0],[-249,77],[-105,228],[-120,263],[-131,-11],[-138,32],[-46,10],[-76,29],[-5,39],[-18,17],[-47,46],[-253,-12],[-65,-3],[-53,-79],[-165,-239],[0,0],[-234,652],[0,0],[-152,123],[0,0],[-7,-1],[-82,-12],[-23,-32],[69,-116],[87,-60],[15,-167],[-23,-9],[-14,5],[-192,66],[-116,116],[-43,43],[0,0],[8,83],[1,14],[0,0],[63,70],[19,63],[12,44],[-20,196],[-5,48],[0,0],[-275,296],[-251,173],[-53,16],[-105,33],[0,0],[-184,248],[-38,113],[-37,108],[-417,319],[-36,27],[14,-147],[3,-21],[79,-112],[0,0],[48,-30],[100,-32],[64,-139],[0,0],[-163,-227],[-52,-29],[-18,16],[-336,309],[-97,40],[0,0],[-86,166],[-26,50],[-64,269],[103,207],[47,610],[-714,791],[-67,131],[-142,277],[-244,264],[-416,449],[39,175],[0,0],[145,41],[0,0],[-59,120],[-7,15],[1,71],[3,245],[0,0],[-76,19],[-91,-51],[-149,-9],[-61,58],[-21,45],[0,0],[-26,-59],[0,-34],[42,-50],[29,-35],[-111,-115],[-65,-24],[-228,13],[-237,14],[-242,67],[-416,260],[-56,6],[-120,14],[-327,132],[-37,23],[-193,120],[-193,92],[-206,98],[-409,-1],[-205,40],[-5,1],[-3,1],[-195,102],[-108,85],[-90,69],[-402,395],[-637,814],[-428,477],[-134,117],[-194,167],[-334,176],[-120,46],[-100,38],[-68,11],[-135,21],[-382,-41],[-212,-143],[-168,-113],[-182,-80],[-254,-112],[-106,-72],[-37,-25],[-200,-29],[-342,112],[-279,183],[-283,50],[-139,45],[-175,57],[-412,228],[-150,109],[-76,54],[-85,113],[-403,128],[-179,34],[-165,31],[-96,66],[-137,94],[-813,393],[-184,89],[-588,560],[-157,114],[-184,133],[-144,-8],[-58,-3],[-198,58],[-142,42],[-660,292],[-190,364],[-10,11],[-106,121],[-162,128],[-76,59],[-789,513],[1,4],[1,9],[-23,61],[-34,88],[-67,69],[-85,87],[-200,341],[-154,393],[-19,48],[0,0],[-4,27],[21,19],[61,54],[240,44],[62,62],[7,32],[8,42],[-63,93],[29,339],[21,40],[17,30],[30,391],[0,0],[-47,91],[-119,89],[-53,40],[-142,329],[-56,466],[-71,193],[-55,150],[-437,519],[-59,71],[-430,731],[-39,49],[-43,52],[-196,206],[-639,559],[-207,383],[-7,12],[-21,34]],[[59904,83639],[74,-372],[-2,-92],[-1,-65],[26,-100],[26,-100],[49,-93],[11,-12],[42,-48],[153,-41],[36,6],[28,4],[0,0],[4,34],[141,26],[109,-109],[160,-161],[176,-288],[118,-193],[48,-162],[11,-38],[0,0],[-40,-213],[-39,-54],[-32,-44],[-301,-254],[-102,28],[0,0],[-358,801],[-522,534],[-175,134],[-77,46],[-183,111],[-89,-6],[-52,-3],[0,0],[-314,210],[-164,277],[-1,135],[22,102]],[[71409,83639],[-129,-552],[-34,-375],[-18,-208],[-4,-181],[-19,-800],[-55,-373],[-24,-164],[-2,-179],[96,-462],[0,0],[24,-44],[169,-309],[168,-801],[116,-346],[634,-937],[0,0],[46,-187],[77,-319],[22,-51],[39,-89],[302,-471],[221,-138],[0,0],[245,-28],[244,-77],[152,-95],[15,-10],[11,-7],[79,-50],[92,-192],[69,-144],[40,-19],[64,-30],[178,40],[103,24],[320,129],[258,59],[322,73],[393,187],[79,21],[65,16],[205,29],[234,33],[0,0],[14,-14],[45,-43],[133,39],[54,17],[254,189],[259,192],[38,39],[285,291],[220,616],[25,71],[0,0],[-5,73],[-16,210],[-1,4],[-1,1],[0,0],[57,672],[4,18],[38,148],[29,44],[24,35],[95,71],[87,67],[234,109],[448,101],[526,118],[312,117],[405,24],[350,-105],[192,-58],[105,41],[9,4],[0,42],[-2,65],[27,26],[42,-44],[88,-92],[157,-385],[-97,-283],[-5,-16],[0,0],[-39,-58],[-158,-234],[-135,-131],[-87,-165],[-59,-113],[-47,-166],[0,0],[34,-183],[-30,-72],[-18,-42],[-118,-115],[-97,-49],[2,-45],[1,-41],[73,-118],[54,-86],[-39,-36],[-39,-186],[0,0],[115,-100],[-76,-267],[-82,-288],[-35,-167],[-66,-312],[-7,-7],[-3,9],[-161,750],[-1,1],[-1,0],[-3,-5],[-89,-126],[-54,-136],[-58,-144],[-28,-8]],[[101185,75892],[92,78],[1,2],[15,-79],[-26,-54],[0,0],[-82,53]],[[113060,55635],[-36,-17],[-20,-10],[-186,0],[-112,40],[0,0],[70,111],[123,90],[51,2],[88,-26],[51,-15],[16,-18],[28,-33],[-2,-16],[-1,-17],[-22,-28],[-48,-63]],[[112708,55830],[-156,-102],[-8,31],[-12,10],[-11,9],[-36,20],[-72,8],[-34,4],[0,0],[-26,206],[0,0],[501,142],[0,0],[45,-51],[1,-26],[1,-23],[-193,-228]],[[112297,56074],[-53,-50],[-74,-70],[0,0],[-73,56],[98,294],[83,9],[0,0],[8,-103],[11,-136]],[[112349,56143],[-41,-3],[0,0],[-3,56],[-7,113],[14,61],[14,58],[197,-19],[0,0],[-1,-42],[0,-21],[-79,-115],[-88,-82],[-6,-6]],[[112321,57921],[-70,-54],[-57,-46],[-85,198],[22,118],[104,65],[0,0],[32,-42],[54,-239]],[[104247,70621],[1,-1],[1,-1],[4,-2],[1,0],[0,0],[3,-3],[1,-2],[143,-183],[1,-6],[1,-3],[0,-1],[1,-1],[-1,-6],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-4],[-1,-3],[-1,-3],[-1,-1],[0,0],[-3,-8],[-3,-4],[-2,-5],[-1,-1],[-10,-21],[0,0],[-14,-16],[-29,-33],[-3,0],[-1,-1],[-6,-2],[-1,0],[-1,-1],[-2,0],[-1,0],[0,0],[-3,0],[-6,-1],[-27,15],[-36,19],[-3,4],[-6,6],[-11,14],[0,1],[0,0],[-2,4],[-11,54],[-8,123],[-1,23],[1,24],[1,6],[2,6],[1,1],[0,1],[0,1],[5,6],[4,6],[1,2],[1,1],[0,0],[1,0],[4,3],[4,1],[6,0],[5,-1],[1,0],[0,0],[2,0],[1,0],[1,0]],[[254621,60877],[141,7],[180,77],[357,340],[173,87],[52,-3],[-89,-170],[22,-105],[52,107],[50,20],[177,-17],[166,220],[25,156],[-78,-26],[-107,96],[1,97],[201,212],[117,-48],[120,57],[189,455],[483,938],[82,228],[82,-99],[15,-107],[-25,-125],[-61,-120],[-5,-49],[13,-18],[13,-8],[10,-3],[44,18],[143,232],[189,54],[58,-248],[155,-61],[47,39],[180,-182],[-18,-202],[-63,0],[-46,-77],[2,-303],[152,1],[138,105],[96,14],[70,-196],[-66,-45],[-116,-3],[5,-60],[52,-71],[121,10],[39,98],[70,73],[159,-69],[177,-153],[413,-235],[60,14],[71,-92],[7,-167],[-84,-112],[-380,-183],[-174,-14],[-178,96],[-166,-155],[80,-187],[187,-211],[-79,-202],[-150,-48],[-369,49],[-111,-22],[-28,-163],[-83,-74],[-8,-39],[205,-240],[-94,-260],[-201,16],[-204,0],[-58,-4],[-34,-25],[-10,-27],[408,-47],[108,-60],[-3,-26],[-189,-5],[-32,-22],[98,-369],[123,-145],[331,-692],[-82,-253],[-76,-144],[64,-189],[469,-506],[285,-251],[137,-108],[34,-13],[31,-67],[-20,-65],[-133,-136],[-416,18],[-241,88],[-58,98],[-10,74],[-82,66],[-5,-325],[-106,-72],[-36,-64],[-168,-466],[-43,-216],[24,-703],[-7,-85],[-40,-70],[27,-53],[55,-21],[-95,-124],[-123,104],[-243,-499],[-92,-78],[-81,-7],[-4,86],[-62,163],[-7,-10],[-158,-539],[-149,-252],[-27,-401],[44,-88],[171,45],[13,-29],[-65,-379],[-277,-444],[-62,106],[-45,-179],[12,-294],[-69,-178],[-5,-20],[-51,-194],[-594,-317],[-501,-311],[-75,11],[-2,290],[-56,631],[-28,-31],[-368,52],[-178,-120],[-216,54],[-154,217],[-210,89],[-195,-50],[-419,-291],[-391,-44],[-179,120],[-5,333],[-113,249],[-187,-154],[-477,-147],[-545,122],[-66,130],[-185,1298],[55,382],[-127,272],[-140,129],[-297,126],[-50,203],[164,-49],[-103,144],[-48,33],[-171,17],[-94,331],[8,80],[36,48],[42,238],[-53,192],[-98,93],[-103,486],[62,529],[76,242],[98,198],[423,529],[5,-116],[66,-154],[142,-129],[356,-77],[5,50],[38,27],[118,-37],[500,-321],[221,-85],[-19,81],[-82,13],[-147,298],[131,403],[18,125],[128,209],[78,39],[-44,212],[32,157],[179,148],[1024,283],[174,94],[461,743],[182,216],[152,278],[48,199],[70,142]],[[239694,42198],[15,-23],[9,-14],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-5,-4],[-3,-1],[-4,-2],[0,-1],[-1,0],[-2,-1],[0,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[0,0],[-3,7],[-5,11],[-2,4],[0,19],[-1,18],[5,1],[2,0],[0,-2],[6,-11]],[[239775,42164],[-1,-1],[-1,-2],[0,0],[-2,-3],[-1,-2],[-1,0],[0,-1],[0,-1],[-3,-1],[-11,-7],[-3,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,2],[-1,0],[-1,5],[0,1],[0,2],[0,0],[0,1],[20,25],[10,13],[0,0],[1,0],[0,0],[0,0],[2,-1],[1,-2],[0,0],[1,0],[0,-2],[1,-1],[0,0],[1,-4],[1,-3],[0,-3],[0,0],[0,-1],[1,-1],[0,0],[0,-4],[-4,-10]],[[90608,441],[0,0],[56,-71],[115,-264],[-81,1],[-42,38],[-63,58],[1,49],[0,40],[-173,-124],[-9,218],[0,0],[29,24],[20,16],[99,-4],[0,0],[2,-1],[13,-4],[27,20],[6,4]],[[91153,1476],[10,-6],[68,-43],[35,3],[29,1],[0,0],[42,-166],[48,-256],[0,0],[-18,-455],[-12,-15],[-8,-10],[0,0],[-2,-30],[-6,-81],[52,0],[47,-108],[9,-20],[0,0],[-49,-204],[-86,-86]],[[91050,0],[-18,18],[-1,1],[0,0],[39,129],[35,1],[0,0],[-17,59],[-9,30],[-33,6],[-39,8],[0,0],[-7,61],[-2,19],[15,96],[25,48],[43,83],[60,39],[45,29],[0,4],[6,60],[0,0],[-156,-63],[-83,-33],[-56,-281],[12,-52],[2,-7],[0,0],[42,46],[0,0],[2,-2],[31,-34],[-54,-128],[-53,6],[-79,10],[0,0],[-112,236],[0,0],[26,104],[-100,68],[6,82],[14,174],[170,-19],[120,-49],[99,-39],[75,290],[-123,190],[-9,49],[-24,134],[123,61],[88,42]],[[90639,1539],[-141,-97],[-17,-11],[0,0],[-82,25],[-20,6],[0,0],[65,41],[0,0],[-56,12],[-27,6],[-14,52],[-5,18],[7,62],[4,33],[28,39],[0,0],[28,3],[141,18],[61,-20],[27,-67],[1,-120]],[[91232,1868],[21,-262],[42,-52],[32,-39],[0,0],[-138,3],[-173,3],[0,0],[63,230],[47,-2],[27,-1],[0,0],[-66,186],[0,0],[64,146],[0,0],[40,-58],[2,-4],[0,0],[39,-150]],[[91015,1796],[-101,-82],[0,0],[-132,150],[5,25],[4,22],[-98,221],[0,0],[161,-14],[25,-2],[34,-18],[37,-19],[57,-46],[0,0],[9,-57],[2,-9],[0,0],[60,-19],[0,0],[-17,-75],[-1,-1],[-45,-76]],[[90869,1551],[-115,-92],[-36,-29],[0,0],[-49,128],[5,171],[-52,65],[-75,25],[-49,16],[0,0],[-95,271],[27,28],[24,25],[139,56],[31,-33],[-4,-18],[-4,-19],[-17,-32],[-1,-2],[0,0],[13,-57],[3,-15],[235,-388],[20,-100]],[[91611,2450],[0,0],[4,-2],[240,-78],[58,24],[51,-21],[3,-1],[-3,-8],[-24,-70],[-19,-8],[-14,-6],[-425,-7],[-120,58],[-15,7],[65,49],[73,55],[94,6],[32,2]],[[92082,4360],[-75,-136],[0,0],[-55,23],[-61,91],[-9,13],[-30,54],[-8,88],[-2,19],[0,0],[13,25],[32,67],[57,9],[28,4],[32,34],[28,30],[0,0],[31,-94],[-4,-113],[-2,-88],[1,0],[24,-26]],[[92037,5293],[-26,-13],[-29,-16],[0,0],[-41,48],[-150,33],[-201,45],[0,0],[-6,49],[-5,44],[22,24],[28,30],[208,23],[136,15],[0,0],[78,-165],[-14,-117]],[[91898,5935],[-224,-99],[-109,-48],[-80,33],[-45,93],[-16,34],[10,48],[0,0],[250,30],[45,-2],[82,-4],[87,-85]],[[92733,6199],[-1,-2],[-1,-3],[0,0],[5,-3],[1,0],[0,3],[0,5],[9,-1],[80,-9],[81,-92],[0,0],[-126,-199],[-34,-53],[-154,-140],[-132,-57],[-27,5],[-24,4],[-79,84],[-81,232],[32,52],[9,10],[15,15],[0,0],[10,-7],[14,-10],[177,8],[23,2],[0,0],[12,36],[-17,7],[-34,15],[42,119],[134,-14],[66,-7]],[[91881,9121],[-16,-41],[0,0],[134,25],[115,21],[91,-99],[46,-141],[-2,-39],[-5,-63],[-60,-185],[-17,-53],[-171,-118],[-22,-60],[-21,-59],[11,-65],[197,-168],[-27,-152],[-121,-230],[-25,-48],[4,-67],[-32,-94],[-17,-51],[-75,-78],[-1,-2],[0,0],[-61,16],[-264,70],[-93,50],[-21,11],[0,0],[-3,23],[-2,20],[206,389],[7,14],[25,188],[-43,323],[15,161],[114,225],[-7,162],[-4,87],[57,59],[2,2],[0,0],[20,5],[47,13],[0,0],[9,-26],[10,-25]],[[251879,78062],[-16,-498],[-347,-427],[24,-45],[-1,-390],[-495,-405],[-171,-67],[-50,-135],[-67,-47],[-773,337],[-53,360],[-17,506],[51,113],[505,398],[35,60],[-71,-25],[84,171],[342,94],[120,-66],[129,-13],[349,150],[139,-100],[2,54],[106,92],[175,-117]],[[193382,43084],[4,-1],[9,-1],[20,-4],[3,-1],[5,-2],[1,0],[2,-3],[1,-5],[11,-34],[3,-11],[85,-512],[-64,-49],[-125,85],[-2,2],[-2,2],[-5,5],[-2,3],[-2,3],[-1,1],[-2,4],[-29,60],[-10,45],[0,1],[1,4],[0,3],[30,309],[2,14],[3,27],[6,19],[1,1],[1,1],[3,5],[12,10],[8,6],[33,13]],[[193653,42099],[38,-17],[22,-10],[16,-11],[78,-52],[17,-16],[2,-4],[9,-16],[2,-14],[-1,-16],[-160,30],[-17,10],[-23,44],[-13,31],[0,2],[2,14],[1,8],[1,2],[4,7],[21,8],[1,0]],[[194382,42213],[10,-34],[8,-28],[11,-49],[1,-16],[0,-100],[-2,-21],[-1,-5],[-3,-6],[-3,-3],[-1,-1],[-3,-1],[-2,0],[-1,0],[-3,-1],[-1,0],[-17,9],[-134,154],[-28,47],[43,9],[18,5],[1,1],[1,1],[35,29],[1,1],[1,2],[2,7],[4,22],[4,18],[53,8],[6,-48]],[[17516,32123],[12,0],[1,0],[1,0],[1,0],[1,-1],[4,0],[3,-2],[1,0],[0,0],[2,-1],[0,-1],[1,0],[0,0],[0,-1],[2,-1],[1,-1],[0,-2],[13,-25],[0,-1],[1,-2],[1,-3],[0,-2],[-1,-7],[-3,-15],[-3,-8],[0,0],[-5,-3],[0,0],[-2,-2],[-2,-1],[-1,0],[0,0],[-38,10],[-2,0],[-1,0],[-21,8],[-5,3],[0,0],[0,1],[0,0],[-2,2],[-1,3],[-3,17],[-2,16],[0,4],[2,5],[0,1],[4,4],[4,6],[8,2],[9,3],[20,-6]],[[19158,31301],[-2,-5],[0,0],[0,-1],[0,0],[-19,-3],[-36,-5],[-3,2],[0,0],[-1,0],[-1,0],[-15,11],[-3,3],[-1,3],[-1,3],[0,1],[0,7],[0,3],[0,0],[0,0],[0,3],[1,1],[2,10],[1,3],[1,3],[0,2],[1,1],[6,7],[4,5],[1,1],[0,0],[4,1],[4,1],[4,1],[1,1],[6,2],[4,1],[3,0],[1,0],[0,0],[0,0],[5,0],[8,-13],[23,-37],[0,-2],[1,-2],[0,-4],[1,-2],[0,-2],[0,0]],[[19635,33256],[-1,-1],[-3,-1],[-2,-1],[-5,3],[0,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,2],[0,0],[-1,1],[-4,5],[-1,8],[0,2],[-1,1],[0,1],[0,1],[0,0],[0,3],[-1,10],[0,2],[1,1],[2,7],[0,1],[1,1],[4,1],[3,1],[2,1],[0,0],[1,0],[5,-3],[8,-3],[0,0],[2,-2],[1,-1],[1,-1],[1,-1],[0,0],[0,0],[1,-4],[0,-4],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[-2,-8],[-1,-5],[-1,0],[0,-1],[0,-1],[-1,-2],[-2,-3],[-1,-1],[0,0]],[[18939,33494],[11,-4],[4,-1],[7,-3],[3,-4],[11,-10],[2,-2],[1,-3],[1,-1],[0,0],[6,-13],[-7,-10],[-1,-1],[0,0],[-9,-8],[-3,-2],[-2,-1],[-5,-3],[-3,-2],[-1,1],[0,0],[0,0],[-2,2],[-3,3],[-1,1],[-2,4],[-1,1],[-1,2],[-5,9],[0,1],[-1,0],[-2,4],[-1,2],[-2,3],[0,1],[0,2],[-1,7],[0,2],[0,2],[1,4],[1,4],[0,2],[4,9],[0,1],[1,1]],[[19304,33620],[-3,-4],[-1,-1],[0,0],[-1,0],[0,1],[-2,2],[0,0],[0,0],[-17,43],[-1,3],[-1,2],[0,2],[0,0],[0,1],[0,4],[0,0],[1,2],[0,1],[0,0],[19,45],[0,0],[1,1],[2,0],[0,0],[1,-1],[2,-3],[0,0],[0,-12],[0,-11],[0,-50],[0,-7],[0,-6],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-5],[0,0]],[[17510,34710],[-1,-3],[0,-2],[0,-2],[-1,-1],[-1,-1],[-3,-4],[-1,-1],[0,-1],[-1,-1],[-4,-4],[-2,-1],[-1,-1],[-1,2],[-1,0],[-8,23],[-1,9],[0,1],[6,17],[1,3],[1,3],[1,1],[1,1],[0,1],[2,1],[3,5],[1,1],[7,6],[1,1],[1,0],[1,1],[3,-1],[2,-1],[0,0],[-2,-19],[-3,-33]],[[135296,72867],[20,-9],[29,-33],[137,-178],[12,-18],[59,-96],[6,-23],[5,-18],[1,-9],[1,-10],[-1,-2],[0,-1],[-46,-85],[-25,-7],[-21,2],[-79,12],[-44,33],[-17,19],[-17,22],[-31,68],[-18,57],[6,222],[2,15],[4,13],[4,10],[4,8],[7,7],[1,0],[1,1]],[[134482,72373],[11,-40],[0,-2],[1,-3],[0,-17],[-2,-7],[-4,-12],[-5,-8],[-11,-10],[-6,-4],[-4,0],[-12,5],[-6,4],[-20,27],[2,18],[2,15],[8,14],[14,8],[31,15],[1,-1],[0,-2]],[[134764,72541],[5,0],[10,-3],[3,-1],[3,-1],[18,-18],[8,-11],[0,-2],[1,-3],[10,-41],[2,-8],[7,-91],[0,-6],[-4,-15],[-3,-7],[-5,-9],[-2,-2],[-5,-7],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-4,-4],[-14,-11],[-3,-2],[-3,-1],[-11,-7],[-15,-6],[-5,-1],[-1,0],[-1,0],[-1,0],[-24,3],[-7,3],[-4,2],[-7,4],[-3,3],[-1,1],[-2,2],[-59,60],[-1,2],[-1,6],[-1,5],[-1,33],[2,18],[1,4],[0,5],[13,35],[9,12],[18,21],[17,13],[14,5],[25,16],[10,9],[7,5],[11,-4]],[[135835,72839],[1,-1],[1,0],[1,-1],[5,-8],[1,-2],[0,-1],[1,-2],[2,-6],[3,-18],[6,-58],[4,-52],[1,-4],[-1,-6],[-1,-6],[-10,-18],[-7,-8],[-3,-3],[-30,-25],[-1,-1],[-3,-1],[-4,-1],[-6,1],[-15,1],[-5,1],[-10,6],[-4,2],[-18,20],[-4,5],[-3,11],[0,2],[-1,4],[3,31],[3,28],[12,74],[26,49],[6,0],[50,-13]],[[136117,73850],[9,3],[47,-20],[18,-22],[27,-44],[3,-8],[1,-7],[1,-37],[1,-24],[-10,-28],[-11,-15],[-85,-72],[-17,-1],[-48,0],[-63,36],[-4,3],[-1,1],[-1,1],[-2,1],[-1,1],[-2,2],[-5,8],[-1,2],[-1,1],[-3,15],[0,6],[5,41],[37,104],[106,53]],[[134789,74353],[2,-1],[3,0],[217,-68],[5,-2],[4,-2],[12,-6],[20,-19],[11,-11],[0,-1],[2,-6],[0,-2],[-6,-14],[-2,-3],[-3,-3],[-2,0],[-1,0],[-49,2],[-176,0],[-105,49],[-9,8],[-6,11],[-3,6],[-1,6],[0,4],[1,15],[0,1],[1,6],[1,3],[2,3],[2,3],[25,14],[3,2],[3,1],[4,1],[25,5],[20,-2]],[[134414,74493],[64,-47],[1,-1],[1,-1],[0,-1],[1,-1],[0,-4],[-1,-1],[-5,-8],[-8,-3],[-17,-3],[-3,0],[-3,0],[-13,0],[-3,4],[-35,32],[-1,1],[-4,12],[0,3],[0,2],[7,15],[4,9],[1,1],[1,-1],[13,-8]],[[136017,74540],[15,-58],[13,-124],[1,-12],[-14,-71],[-6,-8],[-17,-8],[-9,3],[-48,130],[-9,94],[1,17],[6,18],[2,4],[4,4],[50,27],[2,1],[6,-6],[0,-1],[1,-2],[2,-8]],[[134280,74630],[1,-2],[2,-2],[1,-2],[1,-1],[5,-8],[26,-51],[-2,-59],[-85,-33],[-20,6],[-38,21],[-34,27],[0,14],[7,19],[15,22],[3,4],[2,0],[101,43],[4,2],[6,1],[1,0],[1,0],[3,-1]],[[134157,74920],[33,-23],[45,-53],[1,-1],[0,-4],[1,-1],[0,-2],[0,-4],[1,-16],[-1,-1],[0,-1],[-4,-6],[-15,-26],[-5,-5],[-162,-149],[-2,-1],[-16,-7],[-11,-1],[-66,-2],[-23,39],[-38,106],[-1,3],[0,1],[0,2],[0,8],[2,8],[4,9],[14,25],[1,2],[6,6],[185,106],[51,-12]],[[85083,81572],[122,-80],[32,-22],[311,135],[0,0],[-73,-64],[61,-68],[35,-37],[0,0],[49,-3],[0,0],[226,121],[492,-247],[19,-10],[0,0],[68,30],[108,-16],[54,-8],[271,-165],[64,-102],[96,-155],[123,-122],[104,-47],[0,0],[8,0],[219,21],[251,-29],[457,-281],[302,-280],[333,-241],[0,0],[77,-21],[-3,6],[-57,116],[-214,157],[0,0],[-8,20],[-3,6],[0,0],[8,9],[26,29],[0,0],[543,-464],[175,-120],[225,-156],[355,-160],[354,-6],[85,-60],[5,-9],[34,-63],[-43,-149],[-46,-160],[0,0],[122,2],[138,2],[303,-43],[210,-80],[134,-147],[82,-90],[214,-113],[79,-8],[44,-54],[2,-19],[6,-49],[-22,-28],[-64,-84],[-28,-14],[-29,-13],[-190,-19],[-285,-28],[-387,-161],[-173,1],[-96,40],[-103,43],[-336,27],[-38,3],[0,0],[-500,-45],[-812,-131],[-48,16],[-7,3],[0,0],[-2,41],[96,152],[196,199],[80,43],[103,56],[60,76],[5,7],[0,0],[18,69],[12,47],[-134,212],[-95,69],[-176,-4],[-424,-11],[-55,41],[-32,24],[-288,311],[-102,465],[-140,204],[-327,-90],[-144,7],[-1232,548],[-802,158],[-45,9],[0,0],[-376,176],[0,0],[372,103],[0,0],[45,42],[-16,93],[-178,115],[-336,1],[-320,0],[-135,-55],[-150,-111],[-134,-133],[-177,-176],[-516,-186],[-58,-21],[-66,-166],[0,0],[-254,-92],[0,0],[-330,39],[-45,25],[-27,14],[21,12],[203,110],[114,211],[33,162],[9,12],[148,208],[283,216],[629,268],[321,69],[256,56],[110,55],[77,38],[164,7],[34,2],[0,0],[23,-4],[243,-39]],[[84372,79802],[-22,-19],[-35,-30],[-227,-87],[-16,5],[-167,53],[-46,51],[-36,104],[0,0],[81,-89],[69,-4],[33,26],[15,13],[-41,80],[-73,143],[31,76],[0,0],[96,99],[0,0],[41,-12],[170,-47],[0,0],[48,-93],[50,-98],[5,-55],[2,-24],[31,-62],[-9,-30]],[[87966,80912],[60,-38],[224,-222],[54,-53],[159,-172],[122,-58],[16,-7],[0,0],[-29,-57],[-33,-64],[-64,36],[-90,125],[-43,100],[-40,94],[-53,29],[-262,146],[-58,14],[-140,36],[-9,30],[-9,30],[195,31]],[[96231,69340],[1,-1],[1,-1],[2,-1],[1,0],[0,0],[2,-2],[2,-2],[1,-1],[22,-20],[1,0],[0,-1],[1,-1],[0,0],[3,-3],[2,-3],[2,-2],[31,-52],[32,-53],[-1,-1],[0,0],[-4,-4],[-1,0],[-6,-1],[-46,-1],[0,0],[-9,1],[-119,74],[-12,9],[-24,22],[-80,87],[-24,36],[-18,28],[-17,29],[-3,63],[-2,28],[0,0],[5,3],[9,5],[45,-30],[3,-2],[5,-4],[1,0],[0,0],[1,-1],[1,-1],[0,0],[2,-3],[2,-2],[15,-27],[1,-2],[0,0],[0,-1],[2,-11],[0,-3],[0,0],[0,-1],[0,-3],[0,-4],[170,-140]],[[247380,44139],[6,-20],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-32],[-9,-18],[-24,-45],[0,0],[-30,-8],[-73,29],[0,0],[-4,3],[-7,7],[0,0],[17,35],[10,15],[0,0],[88,44],[27,-2]],[[85403,77376],[77,-62],[45,22],[23,2],[52,2],[29,1],[8,0],[0,0],[1,-1],[1,0],[0,0],[3,-1],[0,0],[0,-1],[0,0],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[3,-10],[1,-4],[-1,-4],[-1,-8],[0,-3],[-1,-4],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-7,-9],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-4,-1],[-1,-1],[-1,0],[0,-1],[-4,0],[-162,-31],[-17,4],[-35,7],[-26,19],[-29,94],[0,0],[1,3],[2,3],[1,3],[0,0],[0,1],[2,2],[4,4],[1,1],[0,1],[1,0],[10,6],[7,3],[4,-1],[2,-1],[13,-8],[1,-1],[0,-1],[1,-3],[0,0],[1,-2]],[[86611,77735],[0,0],[-1,-1],[-2,-4],[0,0],[0,0],[-1,0],[0,0],[-1,-1],[-97,-43],[-1,0],[-1,1],[0,0],[-14,1],[0,0],[-1,2],[0,1],[-1,1],[1,1],[0,2],[1,1],[0,2],[22,18],[12,10],[18,5],[9,2],[22,7],[20,7],[0,0],[1,1],[1,1],[5,-1],[2,0],[1,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[2,-2],[0,0],[0,0],[1,-3],[0,0],[0,-2],[0,-2],[0,-1],[0,0],[0,-2]],[[86719,77726],[-19,8],[-2,1],[0,0],[69,45],[26,17],[0,0],[1,0],[4,0],[2,0],[2,0],[1,0],[16,-7],[0,-2],[1,-1],[1,-2],[-1,-2],[0,-2],[0,-1],[-1,0],[-35,-28],[-32,-13],[-33,-13]],[[102670,73200],[78,-48],[25,-15],[40,-76],[11,-49],[1,-165],[-2,-14],[-3,-14],[-8,-46],[-1,-3],[-1,-2],[0,0],[-2,-3],[-1,-1],[-5,-4],[-23,-15],[-30,-19],[-4,-3],[-2,0],[-11,-4],[0,0],[-1,0],[-7,0],[-1,0],[0,1],[-4,2],[-1,0],[0,1],[-2,1],[-87,374],[3,75],[0,2],[0,3],[1,3],[0,1],[0,1],[1,4],[0,1],[0,1],[1,1],[0,1],[1,4],[2,3],[0,0],[1,1],[7,1],[8,0],[13,0],[1,0],[0,0],[2,0]],[[93721,77732],[-6,77],[85,106],[11,13],[44,21],[27,12],[506,23],[160,-64],[386,-197],[400,-136],[237,-311],[347,53],[7,-16],[36,-77],[-42,-78],[-326,37],[-25,-22],[-1,-61],[-1,-71],[179,-38],[147,-32],[291,5],[64,-37],[119,-67],[308,-338],[21,-23],[0,0],[-110,-267],[-267,-145],[-18,38],[-55,112],[-58,27],[-29,14],[-176,14],[-505,42],[-277,-98],[-71,-76],[-76,-81],[-235,-39],[-73,126],[-47,48],[-65,68],[-148,-88],[-92,-55],[-179,-376],[-140,-226],[-53,-52],[-47,-46],[0,0],[-128,120],[-1,1],[-9,45],[-26,134],[-36,47],[-54,70],[-122,151],[-15,18],[0,0],[-108,55],[0,0],[-47,-2],[-369,-14],[-215,-68],[-106,-4],[-6,0],[0,0],[-56,14],[-344,84],[-252,2],[-16,-9],[-235,-136],[-329,193],[0,0],[-80,85],[-56,59],[13,59],[38,166],[182,64],[424,-146],[0,0],[10,-8],[49,-41],[442,-37],[19,-1],[60,-3],[322,-12],[258,92],[0,0],[14,22],[22,36],[5,75],[3,32],[-228,186],[-68,74],[-114,126],[10,195],[1,19],[92,217],[-6,25],[-4,16],[-305,195],[-300,12],[-46,51],[-4,4],[0,2],[1,79],[35,42],[44,51],[149,81],[149,18],[170,22],[95,-28],[103,-31],[219,-142],[503,-76],[0,0]],[[190624,73185],[76,-12],[37,39],[-67,30],[87,6],[81,-64],[11,-75],[-370,42],[-57,102],[73,39],[21,102],[-77,74],[56,-2],[73,-57],[56,-224]],[[281359,70927],[-25,-91],[-139,-262],[-2,-4],[-3,-4],[-21,-27],[-5,-6],[-10,-1],[-8,-1],[-4,1],[-2,1],[-19,8],[-1,1],[0,0],[0,0],[-2,2],[-2,4],[-4,6],[-4,8],[-15,71],[-1,6],[-1,5],[-2,85],[13,33],[5,13],[0,0],[38,6],[31,9],[29,12],[0,0],[5,8],[20,31],[20,57],[9,32],[19,4],[39,7],[42,-14]],[[292813,63547],[7,0],[9,-5],[28,-13],[40,-27],[1,-8],[0,-3],[0,0],[1,-3],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,0],[14,-8],[0,0],[7,10],[0,0],[3,-3],[9,-8],[2,-15],[3,-16],[-2,-29],[-2,-25],[-16,-40],[-3,-7],[-58,-12],[-7,-1],[0,0],[-10,3],[-8,3],[-18,6],[-8,2],[-13,5],[0,0],[-2,3],[0,1],[-8,28],[-19,64],[26,59],[3,7],[18,37]],[[296956,61645],[0,0],[0,-1],[0,-1],[1,0],[-1,-2],[-2,-2],[-5,-2],[-3,-2],[0,0],[-1,0],[0,-1],[-2,0],[-2,-1],[-2,0],[-16,2],[-3,2],[-7,2],[-4,2],[-2,4],[0,0],[-1,2],[-2,4],[-1,2],[-1,3],[-1,4],[-1,2],[0,2],[0,0],[0,1],[-1,4],[1,0],[0,1],[22,-10],[34,-15]],[[297009,61695],[-26,-38],[-10,-14],[-7,5],[-4,2],[-6,3],[0,-1],[-1,0],[0,0],[-2,-1],[0,0],[51,67],[1,-5],[1,-3],[0,0],[0,0],[-2,0],[1,-3],[2,-2],[0,0],[2,-10]],[[287330,63928],[-2,-8],[0,-3],[-1,-2],[0,-1],[0,0],[0,0],[-2,0],[-5,1],[-1,1],[-1,0],[0,0],[-20,51],[1,2],[0,2],[0,1],[0,0],[0,0],[1,1],[3,0],[1,1],[2,-1],[1,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[4,-2],[9,-6],[0,0],[0,0],[1,-1],[1,-1],[2,-2],[2,-16],[1,-15]],[[287131,63986],[8,-3],[1,0],[1,-1],[2,-1],[0,0],[0,0],[1,-2],[0,-1],[2,-3],[-2,-43],[0,-1],[0,0],[-2,-2],[-19,-7],[-1,0],[0,0],[-1,0],[-1,0],[-19,1],[-4,2],[-19,11],[-1,1],[0,0],[0,2],[0,0],[5,19],[4,19],[2,2],[2,4],[0,1],[1,2],[2,3],[0,1],[1,1],[2,1],[13,8],[19,-12],[3,-2],[0,0]],[[287333,64079],[0,0],[9,-2],[0,0],[24,-10],[1,0],[0,-1],[1,0],[0,0],[0,-1],[-1,-1],[-1,-2],[0,0],[-39,-34],[0,0],[-2,-2],[-1,0],[0,-1],[0,0],[-3,4],[-1,1],[-1,6],[-1,3],[0,1],[0,1],[0,2],[0,5],[0,2],[0,3],[0,0],[0,2],[-1,3],[0,6],[1,3],[0,1],[1,7],[0,1],[1,1],[0,0],[2,1],[3,1],[1,0],[1,0],[1,0],[3,0],[2,0],[0,0]],[[275483,66479],[10,-22],[15,-40],[-2,-9],[-4,-15],[-7,-10],[-75,-73],[-26,-25],[0,0],[-2,0],[-2,1],[-1,0],[0,0],[-1,3],[-1,0],[-2,6],[0,2],[1,1],[1,14],[0,1],[6,27],[21,53],[20,44],[3,6],[0,0],[8,6],[38,30],[0,0]],[[102645,74163],[0,0],[49,-80],[2,-234],[-82,-126],[-78,-119],[-34,-33],[-5,-3],[-4,-2],[-2,-1],[-38,-13],[-26,2],[-23,36],[-10,16],[-20,60],[-28,191],[-8,55],[0,0],[9,42],[5,12],[7,19],[3,5],[5,6],[0,1],[1,0],[8,6],[0,0],[3,2],[16,7],[0,0],[1,0],[1,1],[2,0],[65,-49],[2,-3],[32,-43],[17,-8],[4,-1],[2,-1],[1,0],[3,-1],[1,0],[0,0],[4,3],[11,10],[29,27],[16,26],[10,17],[-2,46],[-1,1],[-2,2],[-1,1],[-1,2],[-5,4],[0,0],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[0,0],[-1,3],[-3,8],[-4,20],[-3,13],[0,1],[1,2],[5,14],[1,1],[0,2],[2,2],[6,6],[14,14],[39,31],[0,0],[8,-8]],[[102802,73614],[28,-23],[38,-47],[0,-1],[0,0],[0,-1],[1,-6],[0,-2],[0,-2],[1,-3],[1,-7],[0,-1],[-1,-1],[0,-3],[-1,-7],[-1,-4],[0,-3],[-24,-30],[-1,-1],[0,0],[-3,-3],[-10,-8],[-3,-2],[0,0],[-20,-3],[-2,0],[0,0],[0,0],[-11,1],[-14,4],[-1,1],[0,0],[-4,3],[-1,1],[-12,9],[-2,2],[-2,4],[-2,3],[-1,2],[-1,1],[-1,1],[0,1],[0,6],[-2,30],[7,20],[8,19],[8,19],[12,25],[1,1],[0,0],[2,2],[0,0],[1,0],[0,1],[5,1],[5,1],[0,0],[1,0],[0,0],[1,0]],[[103030,73975],[-16,-12],[-30,-19],[-25,-13],[-4,0],[-1,0],[0,0],[0,0],[-1,1],[0,1],[-1,2],[2,12],[7,7],[1,1],[60,41],[9,-3],[0,-1],[3,-3],[1,-1],[0,0],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-6,-5]],[[163574,59795],[-194,-438],[-213,56],[-21,93],[15,81],[164,283],[210,87],[39,-162]],[[102501,69394],[2,-1],[3,0],[1,-3],[0,0],[1,-1],[8,-52],[-6,-49],[-10,-50],[-4,-14],[-8,-29],[-11,-13],[-13,-15],[-18,-11],[-24,-14],[-24,1],[-9,0],[-38,9],[37,129],[3,11],[3,9],[10,26],[1,3],[8,21],[1,2],[0,0],[28,31],[22,17],[2,0],[2,0],[3,-1],[30,-6]],[[102665,69671],[-3,-4],[-11,-19],[-43,-21],[0,0],[0,16],[3,18],[2,10],[38,58],[0,0],[1,1],[1,0],[0,1],[1,0],[1,0],[3,1],[1,0],[1,-1],[1,-1],[5,-12],[5,-13],[0,-1],[1,-1],[0,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-14],[0,-1],[0,-1],[-6,-11]],[[92814,76700],[0,-81],[-248,107],[-125,53],[-58,86],[36,42],[0,0],[24,4],[27,3],[0,0],[303,-151],[41,-63]],[[262292,43587],[-62,-20],[-33,44],[-3,126],[506,343],[-37,-83],[18,-57],[-12,-97],[-377,-256]],[[260297,44341],[-179,-60],[-184,46],[-290,340],[-228,188],[-368,36],[-128,73],[-89,138],[74,127],[157,72],[250,8],[377,83],[116,-149],[458,-371],[164,-214],[39,-71],[2,-73],[-79,-107],[-92,-66]],[[264159,45206],[-277,-425],[-303,-352],[-524,-210],[-281,-7],[-16,37],[29,111],[43,60],[109,555],[47,110],[209,234],[60,29],[230,153],[145,28],[409,240],[124,243],[28,112],[64,32],[361,85],[1417,170],[39,-57],[-257,-277],[-114,-65],[-150,-21],[-20,-7],[-74,-41],[-54,-83],[-545,-284],[-430,-146],[-269,-224]],[[262604,46400],[-258,-24],[31,117],[83,70],[87,2],[87,-29],[-30,-136]],[[263103,46597],[-310,-392],[-247,15],[-15,45],[130,228],[292,96],[150,8]],[[256923,46390],[-155,-506],[-143,-93],[-187,38],[-239,161],[45,-15],[95,1],[20,36],[-17,263],[16,112],[167,171],[96,42],[244,-90],[55,-67],[3,-53]],[[263475,46502],[-141,-264],[-72,-12],[-122,110],[55,127],[63,46],[52,-86],[143,218],[34,-27],[-12,-112]],[[263671,46697],[112,-48],[356,22],[50,-74],[8,-116],[-29,-29],[-438,-92],[-198,80],[22,136],[117,121]],[[258370,46495],[237,-35],[77,28],[225,-246],[15,-135],[80,23],[-95,-132],[-208,-81],[-235,-48],[-108,118],[-99,-11],[-243,-112],[-751,-245],[-109,0],[-221,101],[-3,118],[69,93],[-35,95],[7,124],[46,75],[294,200],[228,-51],[157,-145],[158,-205],[392,75],[23,42],[-43,74],[-269,127],[-196,237],[31,98],[139,54],[86,-7],[351,-229]],[[262280,46714],[77,-190],[-112,-138],[-85,-26],[-3,-203],[-320,-143],[-381,-95],[-294,-19],[-474,-106],[-156,19],[-252,119],[-367,35],[-224,-76],[-102,91],[-1,185],[64,135],[125,52],[147,114],[63,59],[132,16],[482,-134],[313,-201],[510,79],[215,-102],[282,40],[334,322],[24,62],[-25,29],[-68,-17],[-18,-32],[-50,11],[55,128],[69,25],[40,-39]],[[255740,46696],[163,-113],[133,-144],[11,-48],[-87,-110],[-409,-198],[-428,302],[-50,1],[-141,251],[17,96],[331,-111],[130,15],[167,134],[163,-75]],[[268222,46781],[-55,-4],[-116,170],[4,85],[75,45],[112,-29],[44,-35],[3,-60],[-67,-172]],[[265569,47221],[14,-103],[-254,-217],[-252,52],[-311,-104],[37,174],[85,154],[60,24],[160,-54],[394,173],[67,-99]],[[275581,46389],[-554,-23],[107,357],[120,268],[162,299],[119,120],[152,81],[214,41],[53,-2],[159,-105],[92,-94],[54,-105],[-30,-159],[-248,-389],[-184,-207],[-216,-82]],[[269821,47242],[-292,-392],[-156,1],[-20,123],[90,313],[219,318],[71,148],[117,60],[23,-108],[-7,-221],[-45,-242]],[[254665,47974],[-532,-281],[-206,15],[-113,39],[-39,60],[-15,-43],[24,-39],[-107,-2],[-244,66],[8,117],[136,168],[971,15],[103,-66],[14,-49]],[[272261,48586],[61,-191],[-141,-221],[-135,-131],[-87,89],[-39,91],[55,351],[53,-56],[49,-122],[-32,175],[-72,76],[4,161],[27,48],[26,-22],[118,-186],[113,-62]],[[272502,48744],[-91,-73],[-46,7],[-108,99],[-74,249],[210,102],[50,1],[105,-163],[-46,-222]],[[248726,49114],[317,-308],[488,-67],[14,55],[75,4],[159,-235],[101,-345],[93,-58],[642,-21],[554,-68],[248,-88],[98,52],[91,171],[110,363],[170,56],[106,-45],[278,-297],[1018,-190],[66,-52],[88,-335],[51,-216],[-22,-24],[4,-105],[122,-96],[330,-177],[613,143],[398,-160],[23,-50],[-107,-666],[11,-92],[124,-135],[-113,-99],[-321,129],[-567,314],[-324,-8],[-91,-75],[-212,-27],[-340,101],[-328,65],[-676,27],[-520,162],[-484,291],[-475,150],[-422,80],[-200,-49],[-119,-67],[-7,-46],[-44,-31],[-105,6],[-420,105],[-317,218],[-341,76],[-429,37],[-145,54],[-32,100],[34,353],[-442,167],[-318,-62],[-226,49],[-16,74],[32,48],[121,-105],[44,15],[174,306],[202,534],[161,102],[107,-49],[417,-69],[281,18],[-27,41],[16,102],[209,-51]],[[260239,48990],[-71,-478],[-34,365],[7,350],[32,98],[24,-80],[42,-255]],[[272408,49381],[42,-238],[-124,22],[-63,-77],[-128,93],[15,160],[92,183],[45,39],[121,-182]],[[270950,49197],[-77,-126],[81,322],[74,113],[86,355],[40,11],[29,-43],[-45,-178],[-188,-454]],[[261522,49760],[-11,-103],[-73,3],[-121,208],[13,127],[100,74],[38,8],[83,-148],[-22,-96],[-7,-73]],[[262023,49909],[-88,-179],[-204,20],[-12,89],[75,428],[82,209],[190,150],[25,-10],[37,-36],[16,-261],[-10,-88],[-111,-322]],[[262514,50564],[-19,-125],[-46,86],[-70,-48],[-72,-459],[29,-29],[80,12],[128,-134],[-349,-449],[-142,-19],[-80,233],[17,30],[24,14],[34,47],[91,187],[79,474],[-8,163],[28,173],[103,141],[77,35],[99,-281],[-3,-51]],[[262571,51172],[-95,-150],[-73,8],[-89,115],[-9,92],[56,85],[147,-31],[64,-58],[-1,-61]],[[266860,51575],[-240,-29],[-18,96],[83,96],[240,121],[36,-12],[19,-142],[-120,-130]],[[256515,51380],[-144,-149],[-39,27],[-4,576],[92,248],[106,85],[21,-424],[-32,-363]],[[266004,51669],[-398,-181],[-79,1],[-408,233],[-130,206],[-34,95],[4,182],[67,94],[519,54],[102,-10],[181,-101],[212,-241],[-5,-239],[-31,-93]],[[242839,52272],[-63,-89],[-176,286],[-5,103],[67,33],[159,-200],[18,-133]],[[268064,52620],[360,-206],[192,18],[309,-180],[234,-459],[-22,-330],[-195,67],[-626,512],[-259,28],[-219,-117],[-151,46],[-171,109],[-292,-178],[-148,-24],[-47,35],[-181,339],[-119,-167],[-124,-317],[-61,429],[110,78],[113,140],[57,123],[1240,54]],[[249613,52544],[-280,-349],[-101,152],[-33,-28],[26,-39],[-15,-49],[-150,-73],[-40,60],[-35,310],[30,82],[33,252],[150,69],[73,-47],[196,-74],[59,-52],[60,-87],[27,-127]],[[242531,52593],[-98,-2],[-30,302],[2,64],[23,9],[150,-158],[44,-150],[-91,-65]],[[242173,53425],[97,-309],[-188,113],[-37,56],[-25,64],[51,135],[33,10],[69,-69]],[[264974,53156],[-73,-43],[-80,331],[50,118],[70,-51],[33,-355]],[[265163,53668],[-595,-64],[-105,36],[-22,27],[11,74],[800,-8],[-89,-65]],[[268644,53495],[-138,-20],[-123,36],[-111,51],[-108,96],[253,150],[177,22],[35,16],[68,48],[94,-176],[-10,-139],[-137,-84]],[[263758,53546],[-187,-41],[-65,151],[27,197],[38,54],[99,20],[118,4],[549,-117],[25,-151],[-392,-24],[-212,-93]],[[274157,53674],[-358,-6],[-205,67],[-44,48],[-143,59],[-252,57],[-31,70],[41,4],[1067,-144],[161,-66],[-236,-89]],[[247597,54027],[159,-353],[14,-257],[65,-260],[82,-136],[303,-250],[-81,-276],[13,-37],[86,-51],[-252,39],[-397,188],[-54,172],[9,62],[-97,462],[-26,30],[-259,41],[-142,-32],[-146,76],[9,129],[189,338],[100,103],[78,23],[111,-124],[26,72],[162,95],[48,-54]],[[266669,54074],[72,-79],[22,4],[-91,-150],[-433,-21],[-86,71],[-10,39],[44,232],[184,99],[298,-195]],[[262517,54341],[-5,-59],[47,-83],[116,199],[151,-62],[-18,-160],[-63,-108],[-292,-55],[50,100],[-25,195],[-194,-331],[-58,12],[-58,151],[34,187],[64,108],[196,-6],[55,-88]],[[250901,54476],[-231,-170],[-80,57],[22,260],[31,47],[188,-18],[54,-12],[16,-164]],[[241763,53759],[-101,-27],[-198,137],[-243,507],[47,200],[55,111],[189,-72],[5,-72],[142,-341],[150,-304],[-9,-94],[-37,-45]],[[269309,54421],[-59,-186],[-80,25],[-83,86],[-101,285],[13,59],[201,64],[99,-23],[10,-310]],[[273534,54914],[408,-386],[-66,-70],[-138,-55],[-199,30],[-83,81],[-91,341],[-148,-81],[-126,172],[-26,102],[144,-37],[325,-97]],[[277954,45581],[0,0],[-139,108],[-542,721],[-189,339],[43,65],[-9,145],[-197,-250],[-691,-67],[-107,117],[192,531],[-287,334],[157,80],[520,-32],[80,-31],[4,2],[-19,130],[-18,24],[-476,-73],[-278,95],[-183,186],[-4,47],[24,23],[159,3],[157,50],[-2,54],[-254,238],[-212,287],[-134,714],[-402,461],[-181,137],[28,145],[82,37],[-49,98],[-108,-93],[-126,16],[18,84],[-73,-79],[-104,-33],[-94,77],[14,60],[-30,65],[-7,-28],[-207,0],[-31,26],[-266,121],[-553,248],[-414,59],[-475,211],[-58,47],[-78,129],[15,116],[102,31],[70,-35],[66,9],[4,57],[-532,-24],[-114,122],[-267,190],[-81,-30],[-68,82],[-59,139],[25,288],[31,79],[161,98],[-35,174],[-165,-215],[-172,-363],[-53,-526],[-128,-168],[-221,-56],[-91,25],[-75,166],[-77,332],[68,3],[67,173],[-55,171],[-417,420],[-106,23],[-89,-22],[-77,44],[-19,29],[32,150],[80,74],[149,10],[150,-21],[154,-96],[263,207],[321,154],[53,-55],[250,-198],[113,49],[193,201],[30,95],[2,27],[-84,324],[-403,-191],[-971,-47],[-355,333],[-79,356],[-128,242],[-39,34],[-54,-5],[-92,-78],[-289,-27],[-220,84],[64,51],[151,187],[58,150],[26,179],[766,554],[190,71],[286,-7],[317,-157],[170,-118],[460,-123],[229,-167],[181,-532],[-137,-495],[17,-402],[67,-266],[172,-384],[64,99],[155,31],[86,-414],[97,-283],[114,-92],[150,-36],[279,14],[709,1067],[179,181],[323,61],[308,126],[13,149],[-37,196],[483,310],[94,5],[1622,-992],[216,3],[443,-80],[182,-86],[13,-34],[-19,14],[-37,-101],[32,-26],[232,39]],[[277937,52855],[0,0],[138,-29],[14,-3],[0,0],[237,-123],[953,-549],[0,0],[864,-264],[0,0],[335,-298],[221,-116],[22,-11],[0,0],[29,7],[72,19],[123,-141],[348,-270],[249,-175],[55,-38],[0,0],[98,-12],[30,-40],[280,-375],[83,-128],[3,-360],[-28,-114],[-26,-109],[26,-79],[162,-16],[89,-9],[87,-36],[135,-55],[136,-61],[47,-21],[57,-48],[131,-111],[242,-151],[137,-25],[110,36],[23,7],[221,-168],[92,-139],[70,-107],[54,-146],[13,-36],[4,-217],[-55,-51],[-192,-42],[-55,-2],[-168,-9],[-34,7],[-145,31],[-45,-12],[-65,-18],[-14,-35],[-8,-21],[-2,-93],[-3,-119],[169,-379],[41,-68],[71,-119],[36,-31],[167,-146],[163,-265],[120,-80],[175,-118],[147,-277],[64,-178],[214,-602],[24,-33],[37,-50],[63,-16],[79,-20],[162,65],[167,68],[70,-15],[65,-13],[22,-148],[-73,-95],[-54,-139],[46,-145],[0,0],[14,-8],[200,-113],[465,-44],[21,-28],[17,-23],[-21,-28],[-30,-39],[-171,-42],[0,0],[-48,-50],[-25,-26],[178,-229],[226,-90],[411,-162],[189,59],[0,0],[-226,-136],[0,0],[-52,15],[-123,37],[-59,-34],[0,0],[-1,-70],[58,-50],[182,-152],[0,0],[-150,-88],[-87,-20],[-97,-22],[-77,42],[-100,54],[50,103],[23,48],[0,5],[-3,44],[0,0],[-586,114],[-378,73],[-195,141],[0,0],[-355,-54],[-539,118],[0,0],[-137,149],[-111,251],[-147,235],[-58,39],[-73,48],[0,0],[-25,6],[-15,4],[-109,327],[13,48],[13,46],[-13,15],[-3,3],[-58,-92],[0,0],[-231,89],[-43,49],[-24,77],[-11,38],[12,28],[-46,168],[-183,351],[-89,171],[-93,124],[-288,200],[-601,203],[-140,30],[-18,4],[-90,163],[-9,90],[-11,105],[0,0],[-168,1],[-3,4],[0,0],[0,0],[0,-1],[0,-3],[0,0],[-3,0],[-4,0],[-139,-39],[-40,-11],[0,0],[-141,-173],[27,-48],[17,-30],[0,0],[-41,-69],[0,0],[-27,-16],[-35,-20],[-189,87],[-34,31],[-21,20],[-52,143],[-19,15],[-17,2],[-14,-3],[-11,-2],[41,-108],[121,-313],[23,-120],[-9,-9],[-34,-40],[-86,1],[-13,0],[0,0],[-65,24],[-173,63],[-39,66],[0,1],[-11,-2],[-32,-5],[0,0],[13,-79],[57,-91],[25,-23],[108,-99],[39,-5],[18,-3],[-20,-10],[-101,-53],[-535,-91],[-37,-6],[0,0],[-3,-63],[0,0],[23,-20],[33,-29],[147,-32],[131,-135],[43,-69],[62,-101],[34,-266],[-13,-12],[-55,-54],[-70,-8],[-60,-6],[0,0],[-35,-22],[-175,-108],[-230,-98],[-132,-57],[-129,78],[-125,74],[-841,-45],[-40,-15],[-69,-27],[-93,108],[-10,12]],[[246340,55080],[-112,-74],[-35,17],[-82,177],[63,99],[138,67],[48,-37],[39,-86],[-6,-50],[-53,-113]],[[266506,54984],[-123,-152],[-147,2],[-61,221],[-1,284],[89,75],[38,-14],[104,-152],[101,-264]],[[269301,55715],[200,-125],[44,-69],[13,-107],[-61,-79],[-259,20],[-256,317],[-37,-47],[105,-197],[-40,-15],[-71,-3],[-211,77],[62,47],[-26,50],[-47,17],[-16,-23],[-2,72],[168,49],[364,10],[70,6]],[[246608,55537],[16,-136],[-255,63],[-61,116],[48,162],[22,22],[45,-26],[115,-162],[70,-39]],[[244619,57016],[132,-149],[85,11],[236,-196],[19,-57],[-26,-104],[-32,1],[-64,100],[-364,175],[-36,155],[23,65],[27,-1]],[[245018,56972],[104,-138],[62,-90],[-32,-69],[-49,3],[-283,230],[-93,-8],[59,119],[47,29],[185,-76]],[[246477,56920],[-38,-167],[-175,94],[-8,64],[1,184],[146,32],[74,-207]],[[244533,56775],[-32,-1],[-83,90],[-33,87],[-29,246],[21,130],[46,5],[171,-204],[-41,-191],[41,-131],[-61,-31]],[[240610,56464],[-72,-91],[-110,55],[-432,802],[23,94],[119,107],[49,-1],[96,-85],[224,-304],[135,-237],[-32,-340]],[[244604,57389],[7,-245],[-186,206],[-167,45],[-94,158],[204,-48],[207,-56],[29,-60]],[[264128,57170],[-335,-496],[-152,-390],[-239,-90],[-520,-121],[-300,36],[-305,187],[-326,22],[-350,-19],[-512,56],[-146,-73],[-206,-42],[-253,29],[-177,87],[-74,-6],[-178,-89],[-176,-273],[-119,-440],[46,-489],[44,-129],[514,-729],[339,-29],[87,210],[224,364],[150,123],[24,-11],[-11,-103],[54,-48],[203,-42],[131,38],[46,79],[392,118],[106,128],[333,98],[73,1],[156,-73],[66,-163],[-60,-247],[-44,-57],[-52,5],[-101,102],[-2,67],[-77,23],[-174,-51],[-58,-56],[-63,-158],[-269,-400],[-151,-138],[-325,-113],[-72,-95],[-279,-68],[-110,75],[-32,-71],[45,-183],[24,23],[111,-63],[199,-181],[578,-1040],[-96,-385],[-75,-82],[0,-54],[349,-412],[72,-206],[135,10],[-65,93],[74,0],[39,-83],[-9,-301],[-32,-28],[-252,17],[-389,-125],[-59,-135],[-3,-81],[67,-99],[-93,-91],[-243,50],[-159,93],[-41,87],[60,480],[-98,282],[-173,149],[-314,372],[-14,120],[114,204],[49,180],[25,156],[-1,255],[-62,69],[-216,31],[-169,-89],[-326,-295],[177,-476],[30,-330],[-23,-102],[-48,-1178],[22,-814],[-641,-107],[-143,78],[-98,199],[-1,76],[38,235],[103,287],[92,651],[-11,243],[-90,570],[-55,105],[-118,51],[-315,-157],[-16,15],[-114,463],[-10,309],[54,239],[27,-41],[94,60],[121,166],[160,1056],[-12,293],[32,104],[406,629],[-22,353],[43,600],[85,280],[271,437],[91,60],[-7,-91],[51,-47],[163,-39],[182,291],[27,255],[99,90],[377,-107],[235,-221],[266,-11],[79,8],[369,-51],[331,-217],[92,135],[127,9],[653,-118],[365,190],[556,743],[80,29],[95,-18],[106,-180],[-13,-56],[-27,-22],[-127,-203]],[[243894,58110],[93,-165],[-42,-216],[-105,-89],[-130,37],[-71,216],[13,108],[62,58],[33,-19],[121,82],[26,-12]],[[266465,56664],[78,-11],[71,73],[127,288],[21,174],[81,117],[237,189],[179,47],[44,-19],[9,-38],[-31,-512],[-228,-180],[-68,-19],[-141,-137],[99,-147],[162,-64],[250,-315],[-56,-32],[-511,198],[-144,19],[-51,-49],[-19,-106],[32,-453],[73,-268],[182,-445],[94,-117],[-86,-37],[-196,211],[-264,590],[-95,980],[47,61],[2,49],[-86,35],[-40,50],[-77,179],[34,224],[81,212],[24,253],[129,267],[131,176],[123,98],[59,-2],[-72,-476],[28,-60],[12,-167],[-28,-257],[-81,-164],[-223,-178],[-23,-53],[34,-111],[77,-73]],[[267124,58063],[-200,-33],[-63,275],[121,235],[83,98],[102,72],[40,-66],[58,-90],[0,-118],[-92,-327],[-49,-46]],[[239316,58531],[-70,-141],[-427,306],[-100,119],[18,94],[66,100],[13,-15],[260,-238],[199,-162],[41,-63]],[[249592,59839],[-79,-20],[-65,59],[38,65],[-103,157],[-30,131],[206,207],[47,-121],[103,-221],[-27,-114],[-90,-143]],[[265735,60518],[-81,-257],[-77,70],[-34,277],[33,201],[17,24],[45,-22],[97,-293]],[[239142,61628],[257,-65],[181,45],[330,-13],[258,-26],[165,-53],[243,-289],[165,-420],[100,-18],[110,-110],[-27,-231],[-85,-47],[16,-71],[284,-167],[1097,-894],[196,-256],[3,-120],[114,-321],[3,170],[25,40],[47,0],[312,-629],[309,-340],[14,13],[0,16],[-54,179],[-79,93],[-23,119],[55,72],[173,4],[207,-232],[79,-338],[35,-76],[132,-76],[179,32],[348,-361],[54,-381],[155,-207],[556,-320],[-304,-323],[1,-27],[142,34],[241,156],[20,19],[74,105],[74,51],[70,-20],[266,-266],[43,-101],[20,-183],[-19,-46],[-141,-35],[-126,-151],[-7,-46],[121,-235],[-156,-110],[-33,-229],[324,-299],[389,-75],[133,38],[28,-27],[79,-655],[133,-325],[182,-340],[60,-83],[553,-103],[336,-612],[36,-394],[-95,-160],[-48,-206],[47,-415],[20,-708],[-29,-564],[-59,-721],[-54,-115],[-328,421],[-86,57],[-66,-155],[33,-175],[-359,171],[-129,-123],[70,-230],[-154,1],[-558,889],[-515,416],[-876,855],[-253,523],[-347,317],[-199,406],[-134,215],[-122,138],[-184,308],[-45,117],[-86,507],[-289,775],[-245,473],[-443,762],[-212,169],[-184,263],[-304,1098],[-5,109],[56,107],[-61,126],[-384,316],[-363,245],[-215,286],[-89,421],[-213,214],[-372,658],[-224,76],[-245,190],[-717,877],[-117,244],[-137,388],[11,250],[47,78],[128,105],[161,-38],[226,-129],[24,-85],[134,-140],[115,-47]],[[237138,63345],[-47,-51],[-64,224],[-66,72],[-5,48],[5,106],[24,31],[104,55],[21,4],[-1,-26],[32,-36],[39,-255],[-42,-172]],[[235993,67537],[-48,-56],[-95,52],[-13,220],[126,158],[32,-40],[30,-169],[-32,-165]],[[236146,69035],[20,-277],[-37,-183],[-36,15],[-56,102],[-79,288],[38,91],[29,-42],[14,49],[45,305],[40,-25],[26,-129],[-4,-194]],[[236250,70174],[15,-37],[34,13],[33,-99],[11,-366],[-48,-71],[-57,-1],[17,-200],[-89,-11],[18,69],[-48,7],[-19,41],[-2,303],[91,322],[16,462],[80,232],[98,64],[19,-195],[-25,-60],[-38,-2],[32,-70],[-138,-401]],[[89733,76019],[158,-289],[0,0],[-116,-46],[-92,-5],[-69,-4],[-124,51],[-95,38],[-231,-31],[-43,-5],[-66,-40],[-34,-95],[13,-16],[11,-15],[0,0],[-336,121],[-251,91],[-178,142],[-185,148],[0,0],[187,276],[199,78],[0,0],[667,-117],[162,-74],[423,-208]],[[20891,49474],[-1,-1],[-10,-5],[-31,20],[0,4],[1,6],[0,0],[23,7],[31,0],[0,0],[1,0],[3,-3],[2,-2],[0,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[-17,-11],[-5,-3]],[[4766,50523],[-1,0],[-1,0],[0,1],[-2,1],[-16,12],[-1,1],[-1,1],[-18,20],[-1,2],[-2,4],[-1,2],[0,1],[0,1],[0,0],[1,2],[0,2],[0,0],[1,0],[3,-1],[1,0],[18,-14],[2,-1],[1,-1],[5,-4],[2,-2],[4,-4],[0,0],[1,0],[1,-1],[0,-1],[1,-1],[3,-4],[0,0],[1,-1],[0,0],[0,-1],[3,-4],[0,-1],[0,0],[0,-2],[0,-3],[0,-2],[-1,-1],[0,-1],[0,0],[0,0],[-3,0]],[[6763,50698],[-4,-2],[-1,0],[0,0],[-3,0],[-1,1],[-10,5],[-9,4],[-1,2],[-2,6],[-2,4],[-2,3],[0,1],[0,2],[0,0],[0,0],[0,2],[0,1],[0,1],[1,1],[0,1],[1,2],[1,2],[0,1],[0,0],[3,1],[0,0],[1,1],[0,0],[1,-1],[3,0],[35,-23],[1,0],[-1,-3],[-2,-3],[-3,-3],[-2,-2],[-1,-1],[-2,-3],[-1,0]],[[7583,50776],[-1,0],[-1,0],[-2,0],[-1,0],[-3,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[0,0],[0,1],[-1,1],[-1,3],[-1,1],[0,1],[0,1],[0,7],[0,4],[0,0],[0,1],[1,3],[3,4],[1,1],[1,1],[0,0],[3,1],[3,3],[2,-1],[2,0],[0,0],[1,-1],[2,-2],[3,-3],[0,0],[1,-1],[0,-1],[1,-2],[4,-6],[1,-2],[0,-1],[0,-3],[1,-1],[1,-6],[0,-2],[-1,-1],[0,0],[0,0],[-2,-2],[-3,0],[-4,-1],[-3,-1]],[[21718,51247],[-4,-1],[-8,-3],[-2,2],[-4,4],[-2,2],[-2,3],[-4,6],[-1,1],[-19,34],[0,0],[0,1],[1,0],[0,2],[0,2],[0,0],[1,1],[1,3],[2,3],[0,1],[0,0],[3,3],[16,-3],[14,-3],[13,-2],[15,-2],[-15,-49],[0,-1],[-1,-1],[0,0],[0,-1],[-1,-1],[-2,-1],[-1,0]],[[7256,52558],[0,-1],[-1,0],[-2,1],[-1,0],[-71,40],[0,0],[0,0],[-1,1],[-2,3],[-2,2],[0,0],[-1,6],[-1,1],[0,1],[0,3],[-1,3],[-4,20],[0,2],[0,10],[-1,1],[0,6],[1,3],[0,1],[1,2],[1,9],[1,1],[0,1],[7,2],[1,0],[0,0],[1,0],[2,-1],[2,0],[3,-1],[1,0],[1,0],[5,-4],[2,-1],[1,-1],[3,-2],[1,0],[42,-40],[0,-1],[1,0],[0,-2],[8,-28],[6,-18],[1,-3],[0,-2],[0,-2],[-1,-6],[-1,-3],[0,-2],[-1,-1],[-1,0]],[[307879,53578],[0,0],[-1,0],[-1,1],[0,0],[-1,0],[0,0],[-1,3],[-20,87],[0,3],[0,4],[0,0],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[14,-15],[0,0],[7,-8],[3,-8],[5,-13],[2,-8],[2,-16],[0,-5],[1,-11],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-6,-4],[-1,0],[-2,-1],[-1,0],[0,0]],[[308660,54222],[-6,-11],[0,0],[-55,71],[-1,1],[0,0],[0,0],[-2,2],[-3,4],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,0],[1,-1],[0,0],[1,0],[6,-1],[3,-1],[3,0],[2,0],[3,-1],[1,0],[3,-1],[8,-10],[2,-2],[1,-3],[30,-53]],[[308258,54220],[-1,0],[-2,1],[-1,1],[-2,2],[-19,18],[-13,26],[-28,54],[0,14],[0,3],[0,2],[0,0],[2,-1],[3,-2],[2,-1],[7,-6],[3,-4],[7,-8],[4,-5],[2,-3],[2,-2],[0,-1],[7,-13],[3,-6],[12,-28],[1,-2],[1,-1],[0,-2],[3,-7],[3,-7],[3,-8],[1,-6],[1,-3],[1,-2],[-1,-1],[0,-2],[0,0],[-1,0]],[[307183,54379],[-1,-1],[-4,2],[-28,22],[-11,9],[-8,12],[-40,55],[-2,14],[1,4],[0,0],[1,1],[0,0],[0,1],[1,-1],[1,-1],[1,-1],[1,-1],[0,0],[64,-81],[22,-27],[1,-1],[1,-1],[0,0],[0,0],[1,-1],[0,-1],[0,-2],[-1,-1]],[[306922,54890],[0,-12],[0,0],[-2,0],[-1,1],[-11,48],[-3,16],[-2,15],[0,9],[0,6],[-1,4],[0,14],[0,1],[0,1],[-1,3],[0,3],[-2,6],[0,2],[-1,2],[-1,2],[0,2],[0,0],[0,0],[-1,3],[-2,4],[0,1],[0,0],[-1,2],[-1,1],[-20,28],[-12,13],[-13,14],[-4,3],[-6,7],[0,1],[0,0],[1,1],[1,0],[0,0],[2,0],[6,-3],[1,0],[0,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[2,-2],[1,-1],[0,-1],[15,-19],[6,-8],[4,-5],[5,-5],[7,-10],[8,-11],[0,-2],[1,-1],[0,-2],[0,-2],[1,-1],[0,-4],[1,-2],[0,-2],[0,-1],[0,-1],[18,-113]],[[306157,55882],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[14,56],[7,27],[0,0],[1,0],[0,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-2],[0,0],[0,-1],[1,-1],[0,-1],[1,-1],[2,-6],[0,-4],[0,-7],[0,0],[0,-1],[-1,-6],[0,-1],[0,0],[-9,-32],[-2,-7],[-1,-1],[0,-1],[-1,-2],[0,0],[-1,-2],[-12,-6],[0,0],[-1,0]],[[306443,56208],[0,0],[-72,48],[-23,17],[-1,0],[0,1],[-2,4],[0,1],[0,0],[0,1],[1,1],[10,21],[1,0],[3,2],[2,2],[1,1],[1,0],[2,0],[3,1],[1,0],[1,0],[3,-1],[3,-1],[4,-3],[3,-2],[1,0],[0,-1],[1,-1],[3,-3],[5,-5],[4,-4],[39,-46],[4,-9],[2,-4],[3,-18],[-1,0],[0,-1],[-1,-1],[-1,0]],[[305643,56686],[-1,0],[-2,-1],[0,0],[0,1],[10,30],[2,2],[19,54],[20,27],[1,1],[0,0],[1,1],[1,1],[0,0],[1,1],[4,3],[0,1],[3,2],[1,2],[0,0],[3,5],[0,0],[0,1],[1,2],[1,3],[1,3],[0,3],[0,3],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-4,5],[-1,1],[-20,25],[-7,7],[-5,6],[0,0],[4,-2],[6,-3],[14,-10],[0,-1],[1,0],[3,-2],[3,-2],[1,-1],[0,0],[2,-1],[0,-1],[8,-10],[5,-8],[1,-7],[0,-2],[0,-3],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-6],[-1,-1],[0,-2],[0,0],[-2,-3],[-41,-83],[-14,-27],[-1,-3],[-1,-1],[-3,-5],[-1,-2],[-4,-4]],[[305790,57265],[0,0],[-4,-1],[-87,0],[0,0],[0,0],[-1,1],[-1,0],[0,0],[0,0],[-2,1],[0,0],[0,1],[1,4],[49,21],[26,11],[7,-2],[2,-1],[11,-6],[0,-1],[0,0],[2,-3],[0,0],[0,0],[0,0],[0,-2],[2,-4],[0,-1],[2,-9],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-2,-3],[-2,0]],[[305650,57663],[-3,-1],[-1,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,0],[-1,2],[-1,1],[0,1],[0,1],[0,2],[29,75],[9,25],[0,0],[3,-1],[5,-2],[2,-3],[2,-4],[1,-1],[0,0],[0,-1],[2,-2],[4,-7],[0,0],[0,-4],[0,-4],[0,0],[0,-1],[-1,-2],[0,-2],[0,-4],[0,-2],[0,0],[0,-1],[0,-1],[0,-1],[-2,-7],[0,0],[-1,-8],[-1,-2],[0,-2],[-1,-3],[-1,-4],[-1,-4],[-1,-4],[0,-1],[-1,-1],[-3,-6],[-11,-15],[-1,-1],[-4,-5],[-2,-1],[-2,0],[-3,-1],[0,0],[-1,0],[-1,0],[0,0],[-2,-1],[-5,0]],[[305903,57947],[0,0],[-1,0],[-7,1],[-1,1],[0,0],[-1,0],[-2,0],[-8,3],[-4,1],[-2,1],[-1,0],[-1,1],[-3,1],[-2,2],[-1,0],[0,1],[-2,2],[0,0],[0,1],[0,5],[-1,7],[0,3],[0,0],[0,2],[1,0],[0,1],[1,2],[0,0],[1,0],[2,0],[11,-1],[28,-3],[10,-16],[0,-2],[-1,-3],[0,0],[-1,-2],[0,-1],[-1,-1],[0,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-2,0],[0,0],[-2,0],[-1,0]],[[19329,57992],[169,-252],[0,0],[4,-10],[1,0],[0,-1],[0,-1],[1,0],[1,-3],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[1,-3],[0,-2],[1,-2],[0,-3],[1,-4],[0,0],[0,-1],[0,-5],[1,-9],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-11],[0,0],[-1,-2],[-1,0],[0,-1],[-2,-1],[0,0],[-1,0],[-19,-4],[-14,-2],[-10,3],[-6,2],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,2],[-257,162],[0,0],[23,75],[0,0],[5,-12],[10,-25],[37,-43],[22,-1],[1,0],[2,0],[0,1],[1,0],[1,0],[2,0],[0,1],[0,0],[10,50],[2,10],[1,64],[-3,13],[-1,2],[-1,2],[-7,12],[-1,2],[-5,6],[-28,32],[-19,15],[0,1],[37,-5],[47,-38]],[[305907,57982],[-5,-2],[0,0],[-34,40],[-1,1],[0,0],[0,0],[0,0],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,5],[0,2],[1,2],[0,0],[0,1],[1,3],[0,1],[1,3],[1,3],[3,4],[0,0],[0,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[0,0],[1,0],[1,-1],[0,-1],[3,-3],[0,0],[2,-2],[2,-5],[1,-2],[0,0],[0,-1],[2,-6],[0,-1],[0,-1],[1,-3],[8,-44],[0,0],[-1,0],[-1,-1]],[[305441,59152],[-7,-2],[0,0],[0,16],[1,1],[2,8],[22,13],[18,12],[13,8],[3,0],[0,0],[7,3],[1,1],[3,0],[1,1],[2,0],[4,1],[2,1],[11,1],[1,1],[26,4],[3,-3],[-5,-10],[-108,-56]],[[305607,59284],[-48,-50],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,0],[6,12],[2,3],[1,1],[0,1],[51,51],[0,0],[0,-1],[2,-3],[0,0],[2,-3],[-10,-12]],[[17629,59993],[-7,0],[-5,0],[-1,0],[-12,2],[-1,0],[-2,0],[0,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,1],[-3,3],[-1,0],[0,1],[-1,0],[-8,12],[-4,5],[-1,1],[0,1],[-1,1],[0,2],[-2,3],[-1,3],[-1,5],[-1,1],[-1,2],[0,2],[-1,3],[-1,5],[0,1],[0,1],[0,0],[0,0],[2,2],[0,1],[0,0],[86,-3],[9,-1],[2,-1],[6,-5],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-5],[0,-2],[0,0],[0,-1],[-2,-4],[0,0],[-1,-3],[0,0],[0,-1],[-2,-2],[-1,-1],[-26,-22],[-1,0],[0,0],[-2,-1],[-5,-1],[-2,0]],[[17665,60073],[3,-6],[0,0],[-11,1],[-2,0],[-3,0],[-13,1],[-6,2],[-3,2],[0,0],[-2,1],[-8,6],[-2,1],[0,0],[-1,1],[-9,7],[0,0],[0,0],[-1,1],[-1,2],[-1,1],[-4,6],[0,1],[0,0],[-3,9],[-4,20],[-4,17],[1,1],[0,1],[0,0],[1,0],[1,-1],[1,0],[1,0],[0,0],[39,-41],[31,-33]],[[17555,60082],[-2,-5],[-1,-2],[0,0],[0,1],[-1,2],[-1,1],[0,1],[-2,2],[0,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,1],[-1,5],[0,1],[-1,1],[0,1],[-1,5],[0,1],[0,0],[0,1],[1,2],[0,3],[0,1],[4,11],[4,11],[0,0],[17,15],[2,1],[1,1],[1,1],[1,0],[3,0],[3,0],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[0,0],[0,-1],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[-31,-64]],[[101469,75185],[26,-18],[25,-22],[15,-15],[21,-30],[23,-38],[37,-63],[0,0],[-4,-2],[-15,-8],[-116,71],[-9,9],[-18,18],[-13,14],[-5,5],[-15,23],[-2,8],[-1,2],[2,10],[1,5],[5,9],[7,9],[0,0],[2,2],[7,6],[22,6],[1,0],[2,-1],[1,0],[1,0]],[[101670,74948],[6,-4],[9,-8],[1,-1],[2,-3],[1,-2],[4,-5],[0,-1],[0,-1],[1,-1],[1,-6],[1,-6],[1,-1],[0,-2],[0,0],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-8],[1,-1],[0,-3],[1,-14],[-1,-2],[0,0],[0,-1],[0,-5],[0,-2],[-1,-4],[-4,-16],[-2,-5],[-2,-2],[-3,-2],[0,0],[-36,-10],[-1,0],[-1,0],[-1,0],[0,0],[-2,1],[-8,5],[-2,1],[-3,2],[-1,1],[-1,3],[-7,17],[-1,3],[-1,2],[-1,7],[0,4],[0,2],[0,2],[0,0],[0,3],[1,11],[0,4],[0,1],[1,2],[0,11],[1,2],[0,3],[14,33],[2,1],[4,3],[8,3],[2,-1],[1,0],[1,0],[3,0],[11,-2]],[[103136,71393],[9,-46],[0,-32],[-3,-95],[0,-2],[-1,-2],[0,-1],[0,-1],[-2,-10],[-1,-9],[-4,-23],[-5,-25],[-3,-15],[0,-2],[0,0],[0,0],[-1,-3],[-1,-2],[0,-1],[-9,-20],[-27,-45],[-13,2],[-10,2],[-31,16],[-20,10],[-1,1],[-3,2],[-1,1],[-1,1],[0,0],[-9,11],[-4,4],[0,1],[-5,7],[-9,10],[-2,3],[0,1],[-1,1],[-2,6],[-3,8],[0,7],[0,0],[-1,3],[0,66],[0,5],[0,1],[0,1],[5,23],[5,24],[1,1],[0,2],[4,8],[38,76],[17,36],[15,32],[19,45],[0,0],[1,2],[2,4],[1,2],[0,0],[1,1],[1,1],[2,1],[1,0],[0,0],[2,0],[1,0],[1,0],[9,0],[0,0],[2,0],[1,-1],[0,0],[3,-2],[2,-2],[0,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[16,-33],[12,-23],[0,0],[1,-4],[2,-20]],[[226274,62684],[-648,-316],[-190,50],[-150,81],[-73,91],[-63,175],[-164,737],[-39,827],[-38,227],[56,170],[86,867],[133,308],[26,90],[15,56],[32,249],[142,11],[36,12],[26,19],[0,31],[-48,57],[-33,28],[-49,36],[-29,19],[-35,19],[-142,7],[-65,71],[-11,56],[103,46],[191,-5],[88,-162],[374,-395],[260,-532],[325,-868],[254,-451],[85,-333],[17,-365],[-91,-444],[-67,-155],[-314,-314]],[[254205,80435],[-34,-18],[-8,58],[32,-1],[-7,-25],[17,-14]],[[198515,42429],[71,-250],[-46,-36],[-46,68],[-22,-35],[-1,-65],[71,-78],[31,-2],[14,35],[174,-292],[3,-138],[320,-464],[183,-863],[37,-781],[34,-198],[98,-339],[121,-244],[-22,-234],[-112,-386],[-77,-170],[-72,-6],[-113,118],[-105,477],[-27,20],[-135,-33],[-81,-118],[126,-681],[77,-90],[-1,-208],[-128,-487],[-100,-51],[-147,-521],[53,-204],[6,-280],[-128,-631],[-590,-2111],[-306,-1297],[-378,-1339],[-234,-1251],[-241,-697],[-168,-619],[-279,-206],[-181,-65],[-81,19],[-140,-24],[-230,-97],[-474,-333],[-340,-6],[-414,306],[-258,85],[-214,160],[-57,88],[-322,745],[-20,617],[53,211],[6,216],[-316,694],[-103,525],[12,306],[188,665],[198,179],[687,1441],[2,46],[-15,133],[-37,132],[42,176],[-10,116],[-191,550],[-192,937],[-79,566],[5,125],[339,726],[98,721],[286,-9],[243,124],[286,64],[157,10],[41,-44],[-1,225],[65,86],[186,18],[48,-23],[9,-81],[70,-10],[19,59],[190,-121],[85,-109],[120,51],[-25,45],[-149,151],[-21,94],[25,64],[135,164],[153,108],[-3,-16],[7,-7],[17,-4],[-6,68],[168,164],[73,32],[78,-127],[-127,-319],[36,10],[241,171],[14,26],[-122,334],[195,348],[124,149],[45,-160],[-99,-193],[-3,-130],[36,-12],[40,35],[218,492],[-36,263],[71,187],[187,76],[-31,-151],[19,-72],[12,19],[41,281],[-67,182],[-64,59],[-26,127],[45,205],[64,52],[47,-24],[119,-222],[52,-57],[44,9],[199,293],[137,106],[139,197],[95,498],[-77,305],[72,66],[158,253],[59,111],[-11,159],[82,78]],[[219519,60417],[-1,0],[-1,0],[-1,1],[-1,6],[0,3],[0,2],[0,14],[0,4],[2,8],[1,2],[0,3],[2,6],[3,8],[0,2],[1,3],[1,1],[2,4],[1,3],[2,1],[1,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[-2,-5],[-4,-19],[-1,-2],[0,-1],[-1,-2],[0,-1],[-3,-14],[0,-2],[-1,-2],[0,-2],[0,-1],[-5,-12],[-1,-1]],[[219206,54990],[-1,0],[-4,-2],[-3,-1],[-7,6],[-2,2],[-1,1],[-3,5],[2,0],[5,-1],[3,0],[1,0],[8,-2],[1,0],[1,-1],[3,-2],[2,-2],[-2,-1],[-3,-2]],[[219233,55006],[-1,-1],[-10,-6],[-3,-3],[-1,4],[-1,1],[11,17],[1,-1],[3,-5],[2,-2],[0,-2],[-1,-2]],[[219169,55017],[0,-1],[-1,-3],[-3,1],[-1,1],[-3,3],[-1,2],[-1,3],[-1,3],[2,3],[1,1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-3],[2,-3],[0,-2]],[[219256,55056],[-1,-1],[0,1],[-1,6],[3,4],[1,1],[1,1],[1,1],[4,4],[0,-1],[1,-1],[-1,-3],[-1,-5],[-7,-7]],[[219156,55048],[0,-2],[0,-3],[-1,-1],[-1,0],[-1,0],[-1,1],[-16,33],[-1,3],[-5,11],[0,2],[0,6],[1,3],[3,6],[0,1],[2,2],[2,3],[1,1],[1,-1],[2,-12],[1,-1],[5,-24],[1,-3],[1,-2],[6,-23]],[[219269,55080],[-1,-1],[-1,-1],[-1,5],[-1,3],[-1,2],[-7,20],[3,4],[6,5],[2,0],[1,0],[2,-2],[1,-1],[1,-1],[0,-2],[-1,-3],[-3,-20],[0,-8]],[[219443,55421],[0,-1],[-2,-2],[-1,-1],[-1,0],[-4,0],[-11,21],[4,4],[3,2],[2,1],[1,0],[2,-1],[0,-2],[3,-6],[1,-3],[0,-2],[1,-3],[2,-7]],[[219132,56010],[-1,-1],[-2,0],[-1,0],[-3,3],[-2,2],[0,2],[1,1],[1,0],[6,-4],[0,-2],[1,-1]],[[219151,56015],[5,-6],[0,-2],[0,-1],[-1,-3],[-2,-4],[-3,0],[-3,5],[-1,3],[-1,3],[0,2],[0,1],[1,2],[1,1],[3,1],[1,0],[0,-1],[0,-1]],[[219124,56024],[-1,-1],[-2,-1],[-5,1],[1,3],[1,1],[1,0],[3,0],[1,-1],[0,0],[1,-1],[0,-1]],[[219253,56025],[-1,-1],[0,-1],[-2,-4],[-10,-2],[-2,1],[-1,1],[0,2],[1,3],[5,6],[3,-1],[5,-1],[1,0],[0,-1],[1,-2]],[[219081,56070],[0,-1],[-2,0],[-1,0],[-1,1],[-3,1],[0,3],[1,0],[2,0],[1,-1],[3,-2],[0,-1]],[[219382,56067],[-2,-1],[-1,0],[-1,1],[0,2],[-1,3],[1,1],[0,1],[1,1],[5,7],[2,3],[1,0],[2,1],[0,-1],[1,0],[1,-1],[1,-2],[-10,-15]],[[219412,56091],[-2,-1],[-2,0],[-1,2],[1,1],[1,3],[2,0],[2,1],[0,-1],[0,-1],[0,-3],[-1,-1]],[[219055,56095],[-2,-1],[-1,0],[-8,5],[-1,1],[-1,3],[3,0],[9,-6],[1,-2]],[[219423,56109],[0,-1],[-1,-2],[-1,1],[-1,3],[1,4],[2,1],[1,2],[2,0],[0,-2],[0,-2],[-3,-4]],[[219433,56127],[-1,0],[-3,-1],[0,1],[0,3],[0,2],[0,1],[2,1],[1,1],[5,2],[1,-2],[0,-1],[0,-1],[-5,-6]],[[219446,56130],[-2,0],[-2,2],[0,2],[0,1],[3,7],[1,-1],[2,-7],[0,-2],[-2,-2]],[[219454,56140],[-1,-1],[-1,-1],[-2,1],[0,2],[0,3],[2,2],[6,5],[1,2],[1,-1],[1,0],[0,-1],[0,-1],[-6,-9],[-1,-1]],[[219482,56155],[-1,-1],[-3,-1],[-1,-1],[-1,2],[0,1],[1,2],[0,1],[2,2],[2,1],[1,0],[0,0],[1,-1],[0,-2],[0,-1],[-1,-2]],[[219489,56168],[-1,-2],[-1,-1],[-1,5],[0,1],[2,3],[1,1],[0,1],[1,0],[1,-2],[0,-2],[-1,-3],[-1,-1]],[[219496,56181],[-2,0],[-2,-1],[1,4],[0,6],[3,4],[1,1],[1,0],[0,-1],[1,-1],[-1,-3],[0,-2],[-1,-4],[-1,-1],[0,-2]],[[219032,56204],[-1,-1],[0,-1],[-3,0],[-2,1],[-1,1],[-3,4],[0,2],[0,1],[0,1],[7,-4],[1,-1],[1,-1],[1,-2]],[[219502,56232],[0,0],[-1,-1],[-2,2],[-1,1],[0,4],[0,2],[0,1],[1,0],[2,-4],[0,-1],[1,-2],[0,-1],[0,-1]],[[219021,56261],[-2,-7],[0,2],[-2,4],[0,3],[1,3],[0,1],[1,0],[1,1],[0,-1],[1,-1],[1,-3],[-1,-1],[0,-1]],[[219499,56263],[-1,-3],[-1,2],[-1,2],[0,3],[1,1],[0,1],[1,0],[0,-1],[1,-2],[0,-3]],[[219494,56297],[-1,-1],[0,0],[-3,3],[-1,2],[-1,1],[0,1],[0,1],[3,0],[2,-2],[1,-1],[0,-2],[0,-1],[0,-1]],[[219014,56301],[-1,-1],[-3,1],[-1,1],[-2,7],[0,3],[-1,2],[1,0],[0,1],[3,1],[2,0],[1,-3],[1,-5],[0,-2],[0,-2],[0,-3]],[[219489,56316],[0,0],[-1,0],[-1,0],[-2,1],[-1,2],[0,1],[-3,6],[0,3],[1,1],[5,-6],[2,-2],[2,-2],[0,-1],[0,-2],[-2,-1]],[[219013,56348],[-1,-1],[-2,-1],[-3,2],[5,9],[2,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1]],[[219402,56463],[-1,0],[-1,0],[-5,6],[-1,3],[1,3],[2,0],[1,-1],[4,-4],[0,-2],[1,-3],[0,-1],[-1,-1]],[[219192,56520],[-3,-2],[-1,0],[-1,-1],[0,2],[-1,2],[1,1],[2,1],[2,0],[1,0],[0,-3]],[[219398,56526],[-1,-2],[-2,1],[-1,1],[-1,1],[0,2],[-1,6],[1,2],[1,2],[2,-1],[0,-1],[1,-1],[1,-5],[0,-5]],[[219394,56545],[-1,0],[-1,-1],[-1,2],[1,3],[0,3],[1,1],[0,1],[2,2],[1,0],[0,-1],[1,-2],[0,-2],[-1,-3],[-1,-1],[-1,-2]],[[219390,56571],[-2,-1],[-1,0],[-2,1],[0,4],[2,2],[4,6],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[-3,-7]],[[219393,56594],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,2],[-1,6],[0,3],[1,1],[0,1],[2,-1],[1,-3],[1,-5],[0,-1],[0,-1]],[[219369,56695],[-1,-2],[-1,1],[-2,4],[0,3],[0,3],[2,2],[1,-1],[1,-1],[0,-2],[1,-4],[-1,-2],[0,-1]],[[219387,57752],[-4,-7],[-2,-2],[-10,1],[0,3],[1,3],[1,0],[1,0],[13,4],[0,-2]],[[219355,57759],[0,-1],[1,-3],[-3,-2],[-1,-1],[-5,1],[-2,1],[0,1],[-1,1],[1,2],[10,1]],[[219402,57764],[-1,-1],[-1,-1],[-4,-4],[-2,-1],[-1,0],[-1,0],[-3,1],[-2,1],[0,1],[7,8],[3,0],[2,0],[1,-1],[1,0],[2,-1],[-1,-1],[0,-1]],[[219319,57765],[-3,-1],[-1,0],[-2,2],[-1,3],[3,1],[4,1],[1,0],[1,0],[0,-1],[1,-2],[-1,-1],[-2,-2]],[[219412,57783],[-1,0],[-1,0],[-1,2],[-1,1],[-1,2],[1,2],[1,-1],[2,-1],[1,-2],[1,-1],[-1,-2]],[[219399,57784],[0,-2],[-2,1],[-2,1],[0,2],[0,2],[0,1],[0,2],[1,1],[3,-8]],[[219402,57792],[-1,-2],[-1,1],[-1,1],[1,2],[2,1],[1,0],[0,-2],[-1,-1]],[[219452,57787],[0,-1],[-1,-1],[-1,-1],[-3,1],[-2,0],[0,1],[-1,5],[7,3],[3,-1],[-2,-6]],[[219304,57788],[-1,0],[-1,0],[-10,7],[0,2],[1,1],[1,1],[1,0],[4,-1],[2,0],[1,-1],[2,-3],[1,-2],[0,-2],[-1,-1],[0,-1]],[[219493,57799],[-1,-1],[-8,-8],[-1,0],[-3,1],[0,3],[22,27],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[-2,-4],[-3,-5],[-1,-1],[-1,-2],[-1,-1]],[[219514,57831],[-3,-7],[-2,1],[-3,1],[1,1],[4,14],[1,4],[1,-1],[1,-1],[0,-12]],[[219279,57863],[-3,0],[-2,-1],[-2,2],[0,1],[0,2],[1,1],[4,3],[1,2],[1,-1],[2,-1],[1,-1],[1,-2],[-1,-1],[-3,-4]],[[219520,57858],[-3,1],[9,62],[1,3],[0,1],[2,2],[1,-1],[2,-1],[1,-1],[1,-1],[2,-3],[1,-1],[0,-7],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,-3],[-2,-7],[0,-1],[-1,-3],[-11,-30],[-2,-4]],[[219299,57937],[-2,-1],[-2,2],[0,3],[1,2],[0,1],[1,1],[1,1],[1,0],[0,0],[1,-2],[0,-2],[0,-1],[0,-3],[-1,-1]],[[219531,57950],[-2,-1],[-2,7],[-1,1],[-1,3],[2,2],[1,-1],[1,-2],[1,-2],[1,-6],[0,-1]],[[219344,57970],[-1,-1],[-1,0],[-4,1],[0,1],[-1,1],[0,2],[0,2],[1,2],[1,1],[3,1],[0,0],[1,0],[1,-1],[0,-9]],[[219525,57998],[0,-1],[0,-3],[-2,0],[0,1],[-1,1],[-1,1],[-1,1],[0,3],[0,1],[3,1],[1,1],[0,-3],[1,-1],[0,-2]],[[219524,58041],[-1,-1],[-1,0],[0,2],[-1,1],[0,3],[0,2],[1,4],[2,-1],[0,-2],[1,-1],[-1,-4],[0,-3]],[[219528,58062],[-1,0],[-3,-1],[1,3],[1,5],[1,1],[1,0],[0,0],[1,0],[0,-1],[0,-2],[0,-4],[-1,-1]],[[219536,58078],[-3,-1],[-1,-1],[-1,1],[-1,3],[4,17],[2,2],[1,0],[1,-1],[0,-3],[-1,-1],[0,-5],[0,-9],[-1,-2]],[[219548,58101],[-2,-1],[-1,0],[-1,0],[-4,0],[0,1],[-1,3],[2,5],[2,8],[19,2],[2,0],[2,-1],[1,-1],[1,-1],[0,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-13,-8]],[[219090,58177],[-2,-1],[-3,1],[-2,1],[-1,1],[0,1],[0,2],[1,0],[2,0],[4,1],[1,-2],[1,-2],[-1,-1],[0,-1]],[[219126,58177],[-2,0],[-1,0],[-1,1],[-1,2],[-1,3],[3,2],[2,-2],[1,-2],[1,-1],[-1,-1],[0,-2]],[[219147,58191],[-1,-1],[-3,0],[0,1],[-2,1],[0,3],[1,4],[1,3],[1,-1],[1,0],[2,-3],[0,-2],[1,-2],[-1,-2],[0,-1]],[[219040,58205],[-1,-3],[-1,1],[-2,0],[-1,1],[-2,4],[2,2],[1,0],[1,-1],[1,-2],[2,-2]],[[219168,58203],[-2,-1],[-3,0],[-2,0],[-2,2],[-2,1],[-1,1],[0,3],[-1,1],[0,2],[1,1],[0,0],[1,0],[2,-1],[7,-5],[2,-1],[0,-1],[0,-2]],[[219191,58219],[-1,-1],[-1,0],[-2,2],[-1,4],[0,1],[1,2],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1]],[[219013,58294],[0,-5],[0,-1],[-2,2],[-3,4],[0,2],[1,0],[1,1],[0,-1],[1,0],[1,-1],[1,-1]],[[219021,58313],[0,-2],[-1,-1],[-5,1],[0,1],[-1,2],[3,5],[2,0],[2,-6]],[[219002,58343],[-1,0],[-2,1],[-1,1],[-1,5],[-1,3],[0,3],[-1,1],[0,2],[1,1],[0,-1],[2,-1],[1,-1],[2,-8],[0,-1],[1,-3],[0,-2]],[[219358,58368],[-1,-1],[-2,-2],[-2,1],[-1,2],[1,7],[2,2],[1,0],[1,0],[2,-1],[0,-1],[0,-2],[0,-2],[-1,-3]],[[219368,58389],[-2,-1],[0,1],[1,3],[1,2],[4,7],[0,1],[1,0],[0,-2],[0,-3],[-2,-3],[-2,-4],[-1,-1]],[[218991,58396],[-1,-2],[-1,1],[-4,9],[0,1],[1,2],[1,0],[2,0],[0,-2],[1,-3],[1,-6]],[[219376,58420],[-2,-1],[-2,1],[-5,45],[8,-11],[4,-15],[-2,-15],[-1,-2],[0,-2]],[[219333,58548],[-2,-1],[0,-1],[-1,2],[-2,3],[-1,5],[0,2],[1,2],[2,1],[1,0],[1,-1],[0,-1],[1,-5],[1,-3],[-1,-3]],[[218980,58744],[-1,-1],[-1,0],[0,1],[-1,2],[-1,3],[0,2],[0,3],[3,-1],[1,0],[1,-6],[0,-2],[-1,-1]],[[218953,58759],[-1,-1],[-2,-1],[-1,0],[-3,1],[-1,2],[0,1],[-1,3],[0,4],[0,2],[1,1],[2,-2],[1,-1],[2,-3],[2,-4],[1,-2]],[[218939,58773],[-1,-1],[-2,1],[0,3],[1,3],[0,1],[1,0],[0,0],[1,-1],[2,-2],[0,-1],[0,-2],[-2,-1]],[[219084,58817],[-3,0],[-1,3],[-1,1],[0,2],[9,8],[2,0],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-3,-7]],[[219409,58849],[-1,0],[0,5],[0,1],[0,2],[0,2],[1,0],[1,0],[1,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2]],[[219379,58854],[-1,-3],[-1,1],[-1,0],[-12,6],[-1,2],[-1,1],[1,2],[0,1],[1,-1],[9,-4],[2,0],[1,-1],[1,-2],[2,-2]],[[219439,58908],[-3,-1],[-1,0],[-2,1],[1,2],[2,2],[1,0],[1,1],[2,0],[1,-2],[-2,-3]],[[219070,58937],[-1,-1],[-1,-2],[-2,1],[-1,1],[0,2],[0,2],[0,1],[1,1],[2,1],[0,-2],[1,-3],[1,-1]],[[218943,58960],[0,-3],[-9,-1],[0,1],[1,2],[2,3],[2,2],[2,1],[1,1],[1,1],[0,-7]],[[219539,58979],[-2,-1],[-1,-1],[-2,1],[0,2],[1,1],[1,3],[1,0],[1,0],[1,-1],[1,-1],[-1,-1],[0,-2]],[[218931,58986],[0,-1],[0,-1],[-3,0],[-1,2],[-1,0],[0,3],[0,1],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[0,-2]],[[219541,58993],[-2,-2],[-1,-1],[-1,0],[-2,1],[0,1],[0,2],[1,2],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,-2]],[[219542,59004],[0,-2],[0,-1],[-1,0],[-4,0],[0,3],[1,1],[2,1],[1,0],[1,-1],[0,-1]],[[219545,59011],[-1,-1],[-2,-1],[-2,5],[0,1],[1,3],[0,4],[1,1],[1,1],[2,-2],[1,-1],[-1,-10]],[[218971,59022],[-2,0],[-2,-1],[-1,3],[1,3],[2,0],[1,1],[2,-2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[218980,59030],[-1,0],[-3,0],[-2,2],[1,1],[0,1],[2,1],[1,0],[1,0],[1,-2],[0,-1],[0,-2]],[[219071,59047],[0,-2],[-1,-3],[-3,1],[-1,0],[-1,1],[-3,4],[2,0],[2,1],[1,1],[1,0],[2,1],[1,-4]],[[219552,59045],[-2,-2],[-1,0],[-2,0],[-1,2],[-2,3],[-1,3],[2,1],[1,-1],[3,0],[1,0],[0,-2],[2,-4]],[[219565,59052],[-1,-1],[-1,-1],[-2,1],[1,9],[0,3],[1,3],[0,2],[1,0],[2,0],[0,-1],[0,-1],[0,-2],[-1,-12]],[[219087,59084],[-1,-1],[-2,-1],[-2,3],[0,1],[0,2],[0,2],[1,0],[1,1],[1,-1],[2,-1],[0,-1],[0,-1],[0,-3]],[[218977,59187],[0,-1],[0,-2],[-1,-2],[0,-1],[-3,0],[0,2],[0,3],[0,1],[0,2],[1,4],[1,0],[2,0],[0,-4],[0,-2]],[[219043,59216],[-1,0],[-3,-1],[-1,0],[-1,-1],[-2,2],[-1,0],[1,1],[1,1],[2,1],[3,1],[2,0],[0,-1],[1,-1],[0,-1],[-1,-1]],[[219053,59382],[-2,0],[-1,1],[-2,2],[0,2],[1,1],[2,1],[1,0],[1,-2],[0,-2],[1,-1],[-1,-1],[0,-1]],[[219519,59620],[-2,-1],[-2,3],[1,1],[1,1],[2,2],[1,0],[3,1],[0,-1],[1,-1],[-1,-1],[-4,-4]],[[218917,59633],[-3,-1],[-2,1],[-2,0],[0,2],[0,5],[1,0],[1,0],[4,0],[1,0],[2,-1],[0,-1],[0,-1],[-2,-3],[0,-1]],[[218891,59645],[-1,-3],[0,-1],[-11,-1],[1,4],[0,1],[4,3],[2,1],[2,-2],[3,-2]],[[218874,59648],[-2,-1],[-3,0],[0,3],[1,2],[1,0],[2,0],[1,-1],[0,-2],[0,-1]],[[218988,59673],[-1,0],[-3,0],[0,0],[0,1],[0,2],[2,4],[11,15],[1,1],[2,1],[1,-2],[1,-1],[-1,-3],[0,-3],[-1,-2],[-7,-8],[-2,-2],[-1,-1],[-2,-2]],[[218866,59818],[-3,0],[-1,2],[-1,8],[1,1],[2,-1],[1,-1],[0,-1],[0,-3],[0,-2],[1,-2],[0,-1]],[[219408,59866],[-4,-1],[-2,0],[0,1],[-1,5],[4,0],[1,1],[2,-1],[3,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1]],[[218802,59905],[-5,-1],[-1,2],[-1,1],[-1,7],[0,2],[2,-1],[4,-2],[1,0],[1,-1],[1,-3],[0,-3],[-1,-1]],[[219439,60049],[-1,-2],[0,-1],[-1,0],[-1,0],[0,2],[0,7],[0,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1]],[[219442,60060],[-1,0],[-1,0],[-2,2],[0,2],[2,1],[2,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-2]],[[219446,60070],[-2,-1],[-2,3],[0,3],[1,1],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[0,-2]],[[219455,60100],[-1,-3],[-1,2],[0,1],[-1,11],[1,0],[1,0],[2,-4],[-1,-1],[0,-4],[0,-2]],[[219471,60148],[-3,-1],[-3,0],[0,1],[-2,2],[1,1],[2,2],[3,2],[2,2],[2,0],[1,0],[0,-1],[0,-3],[-1,-1],[-2,-4]],[[218810,60214],[-2,0],[-2,-1],[-1,1],[-1,0],[-4,1],[0,3],[0,1],[1,0],[1,0],[8,0],[1,0],[0,-3],[-1,-2]],[[219012,60259],[-1,0],[-1,-1],[-2,0],[-1,2],[3,8],[2,2],[1,-9],[-1,-1],[0,-1]],[[218816,60282],[0,-1],[-2,-2],[-2,0],[-4,1],[-2,0],[0,1],[-1,1],[2,2],[1,0],[1,0],[5,0],[2,0],[0,-1],[0,-1]],[[219504,60327],[-2,-2],[-1,0],[-3,0],[0,2],[-1,3],[0,2],[0,1],[1,3],[2,-2],[1,-1],[0,-1],[2,-3],[1,-2]],[[219004,60336],[-2,0],[-1,2],[2,5],[0,2],[2,0],[1,0],[0,-2],[1,-2],[-2,-2],[-1,-3]],[[219496,60409],[-4,3],[1,4],[1,2],[1,2],[4,1],[1,1],[8,-4],[1,-1],[0,-3],[-1,-2],[0,-1],[-2,-1],[-2,-1],[-8,0]],[[219451,60419],[-1,0],[-3,-1],[-10,9],[0,1],[0,1],[5,0],[3,-1],[1,0],[1,-1],[1,-1],[2,-2],[1,-3],[0,-2]],[[218940,60466],[1,-3],[0,-1],[-1,0],[-4,1],[-3,2],[-1,1],[1,2],[0,3],[1,-1],[2,-2],[4,-2]],[[219038,60508],[-3,0],[-5,3],[-1,0],[-2,1],[-1,0],[0,3],[1,0],[4,0],[5,-2],[1,0],[1,-2],[0,-1],[0,-2]],[[219365,60562],[-1,-2],[-4,1],[-2,0],[0,2],[1,0],[5,1],[1,0],[0,-1],[0,-1]],[[219626,60633],[-1,0],[-5,0],[0,3],[-1,1],[1,4],[1,2],[1,0],[0,0],[1,0],[1,-1],[0,-1],[3,-6],[-1,-1],[0,-1]],[[219022,60692],[-2,0],[-1,-1],[-1,3],[0,2],[0,1],[0,5],[1,1],[0,2],[2,1],[1,0],[2,-8],[0,-1],[0,-1],[-1,-1],[-1,-3]],[[219674,60709],[0,3],[1,1],[2,2],[1,2],[1,0],[2,-1],[0,-2],[0,-1],[-2,-2],[-1,-1],[-4,-1]],[[219413,60868],[-2,-2],[-2,1],[-2,0],[-1,3],[0,2],[1,1],[2,1],[1,-1],[1,-1],[2,-2],[0,-2]],[[219541,60914],[-4,-1],[-3,0],[0,1],[-1,2],[4,1],[1,0],[2,0],[1,0],[1,-1],[-1,-2]],[[219064,61199],[0,-1],[0,-2],[-10,-12],[-1,0],[-2,9],[2,5],[4,5],[2,-1],[2,-1],[2,0],[1,-2]],[[219035,61201],[-1,-2],[-4,1],[-1,1],[-1,0],[-6,4],[1,1],[1,0],[1,0],[2,0],[3,0],[1,-1],[1,-1],[3,-3]],[[219008,61204],[-2,-2],[-1,0],[-3,0],[-9,2],[0,1],[0,0],[3,2],[1,1],[1,0],[2,0],[6,-1],[2,-1],[0,-2]],[[219464,61278],[-2,0],[-5,-1],[-2,0],[-1,0],[-1,1],[0,3],[0,1],[5,2],[2,1],[5,3],[0,-1],[1,-2],[-2,-5],[0,-2]],[[218977,61361],[-1,-2],[0,-1],[-2,2],[-1,1],[-1,1],[-1,3],[0,2],[-1,1],[1,1],[1,0],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-1]],[[218992,61362],[-1,-1],[0,-1],[-2,1],[-2,2],[-1,2],[-1,2],[1,2],[0,1],[2,1],[2,1],[0,-1],[1,-3],[0,-1],[1,-4],[0,-1]],[[219000,61369],[-3,-1],[-2,2],[0,1],[-1,2],[0,1],[-1,2],[1,0],[1,0],[1,0],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1]],[[219095,61456],[-5,0],[-2,2],[-1,0],[1,3],[1,0],[1,1],[5,-4],[0,-1],[0,-1]],[[219110,61474],[-1,-1],[0,-2],[-3,1],[-1,1],[-5,1],[-1,3],[-1,2],[0,2],[1,1],[1,1],[1,-1],[2,-1],[7,-7]],[[219138,61505],[-4,0],[-1,1],[-1,0],[-2,2],[1,0],[1,1],[2,0],[6,-2],[-1,-1],[-1,-1]],[[219155,61521],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,2],[1,1],[2,0],[4,0],[1,0],[1,-1],[1,-1],[0,-2]],[[219147,61586],[-2,-1],[-1,2],[-1,2],[0,2],[1,2],[2,0],[1,-1],[0,-3],[0,-1],[0,-2]],[[219180,61627],[-2,-1],[-1,3],[2,4],[0,2],[2,0],[0,-3],[1,-2],[-1,-1],[-1,-2]],[[219570,61645],[-2,-6],[-1,-1],[-4,1],[-1,1],[-3,0],[2,3],[2,3],[1,1],[7,11],[0,-3],[-1,-7],[0,-3]],[[219078,61656],[-2,-1],[-4,0],[0,1],[-1,1],[1,1],[1,1],[2,2],[2,-2],[1,-1],[0,-1],[0,-1]],[[219154,61657],[-2,0],[0,1],[-1,3],[1,3],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-2],[1,-1],[-1,-3],[-3,-1]],[[219610,61706],[-1,-4],[0,-1],[-1,1],[0,1],[-1,1],[0,7],[0,2],[0,3],[1,0],[2,0],[0,-1],[0,-6],[0,-3]],[[219344,61734],[-2,0],[-5,0],[-1,0],[-6,0],[-2,1],[0,2],[1,1],[1,2],[1,0],[8,1],[3,0],[0,-2],[1,-1],[1,-4]],[[219409,61733],[-1,-1],[-1,0],[-1,1],[-7,7],[-2,2],[2,0],[1,1],[2,-2],[4,-4],[2,-2],[1,-2]],[[219613,61740],[0,-5],[0,-4],[-1,1],[-4,10],[0,1],[1,2],[1,0],[1,0],[2,-5]],[[219600,61799],[9,-8],[-1,-26],[-3,-6],[-2,-1],[-1,1],[-4,36],[2,4]],[[219356,61809],[-1,-7],[0,-2],[-2,1],[-2,9],[0,2],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1]],[[219361,61822],[-1,-2],[0,-3],[-2,2],[0,1],[0,2],[-1,6],[0,2],[1,0],[2,0],[1,-2],[0,-1],[0,-2],[0,-3]],[[219060,61847],[9,-1],[1,0],[2,-2],[-1,0],[-2,-2],[-1,-1],[-5,-1],[-1,0],[-2,0],[0,7]],[[219366,61841],[-2,-6],[-1,-1],[-1,2],[-1,0],[0,2],[-1,4],[1,1],[1,3],[1,1],[1,1],[1,-3],[0,-2],[1,-2]],[[219533,61849],[0,-1],[-1,-2],[-1,0],[-3,1],[-4,4],[-3,2],[1,1],[3,0],[4,-2],[3,-2],[1,-1]],[[219065,61856],[-1,-1],[-2,2],[1,1],[2,4],[1,0],[5,0],[0,-1],[1,-1],[-7,-4]],[[219073,62034],[-3,-3],[-1,5],[0,2],[1,4],[1,1],[1,1],[2,2],[0,-4],[1,-2],[0,-1],[-1,-2],[-1,-3]],[[219362,62103],[-2,0],[-1,0],[-1,0],[-2,2],[-1,1],[10,5],[0,-4],[1,-2],[-3,-1],[-1,-1]],[[219394,62129],[-5,-12],[0,-1],[0,1],[0,3],[0,7],[2,17],[3,1],[0,-1],[1,-1],[1,-3],[0,-1],[-1,-4],[-1,-6]],[[219397,62158],[-1,-5],[-1,-3],[0,3],[-2,10],[-1,1],[2,0],[1,0],[1,-1],[0,-2],[1,-3]],[[219352,62159],[-1,-1],[-1,0],[-1,1],[-1,3],[-3,4],[-1,1],[2,2],[1,0],[1,-1],[1,-1],[2,-3],[1,-3],[0,-2]],[[219049,62181],[-1,3],[-5,11],[1,2],[1,1],[1,0],[2,-1],[1,-1],[1,-4],[0,-1],[-1,-10]],[[219391,62196],[-2,0],[-3,-1],[-1,4],[-1,8],[0,2],[3,-1],[7,-1],[1,0],[1,-2],[1,-3],[-2,-2],[-3,-3],[-1,-1]],[[219040,62232],[-2,0],[-2,5],[0,1],[-1,1],[0,4],[0,2],[1,0],[2,1],[1,-3],[1,-2],[0,-2],[0,-4],[0,-3]],[[219176,62238],[-1,1],[-2,3],[2,6],[1,1],[1,0],[4,0],[1,1],[2,0],[2,-3],[1,-1],[1,-1],[-12,-7]],[[219439,62261],[-1,-1],[-1,-1],[-3,-3],[-2,0],[-3,1],[17,27],[1,0],[2,0],[0,-2],[-1,-13],[-7,-7],[-2,-1]],[[219030,62283],[0,-3],[0,-1],[-1,1],[-2,1],[-4,14],[1,3],[1,0],[1,1],[1,-1],[1,-1],[0,-2],[2,-12]],[[219434,62344],[-3,-1],[-4,-1],[-1,4],[-1,7],[0,2],[3,-2],[3,-2],[1,0],[0,-2],[1,-2],[1,-3]],[[219400,62407],[-2,-1],[-11,10],[0,1],[-1,3],[2,0],[1,1],[1,-1],[1,0],[2,-1],[7,-10],[0,-1],[0,-1]],[[219228,62452],[2,-3],[0,-1],[1,-1],[-2,-2],[-8,-1],[-1,0],[-2,1],[1,3],[1,5],[2,0],[2,-1],[4,0]],[[219108,62478],[-2,0],[-9,6],[-1,1],[0,1],[0,1],[1,1],[2,-1],[8,-6],[1,0],[1,-2],[-1,-1]],[[219283,62534],[-3,-4],[-2,1],[-1,4],[0,3],[1,1],[1,3],[2,-2],[1,0],[1,-1],[0,-3],[0,-2]],[[219214,62551],[-1,-1],[-2,-1],[-1,3],[-1,1],[-2,6],[2,2],[1,0],[2,0],[2,0],[0,-2],[0,-1],[1,-5],[-1,-1],[0,-1]],[[219286,62631],[4,-5],[0,-1],[1,-2],[1,-2],[-1,-3],[-1,-3],[0,-1],[-1,-1],[-2,-3],[-1,4],[-1,2],[0,1],[0,4],[-1,6],[2,2],[0,2]],[[219295,62665],[-2,-1],[-5,-1],[-2,4],[1,9],[1,0],[2,0],[3,-6],[1,-3],[1,-2]],[[219271,62708],[-5,-3],[-1,1],[-2,2],[1,3],[1,2],[1,1],[1,0],[3,0],[2,-1],[-1,-2],[0,-2],[0,-1]],[[219052,62763],[-1,-1],[-5,-3],[-2,-1],[1,4],[0,4],[1,1],[2,3],[2,-3],[2,-4]],[[219250,62761],[-1,-2],[-1,-1],[-1,0],[-2,1],[-3,18],[2,1],[1,1],[1,-1],[3,-3],[0,-3],[1,-11]],[[219238,62805],[-1,-3],[0,-2],[-1,0],[-3,-1],[-5,5],[1,5],[4,4],[2,-1],[2,-1],[0,-2],[1,-2],[0,-2]],[[219170,62805],[-2,-2],[-3,-2],[0,3],[0,3],[-1,2],[2,2],[2,3],[0,1],[3,-1],[1,0],[0,-3],[-1,-4],[-1,-2]],[[219020,62814],[-1,0],[-5,0],[4,13],[2,0],[3,0],[0,-3],[0,-1],[0,-2],[-1,-1],[-2,-6]],[[219223,62839],[-2,-7],[-1,-1],[0,-2],[-1,-1],[-1,1],[-2,2],[-1,1],[-2,5],[5,7],[1,-1],[1,-1],[3,-3]],[[218791,62899],[-2,-2],[-1,-1],[-2,1],[0,2],[0,1],[3,8],[1,1],[1,0],[2,0],[0,-2],[1,-1],[-2,-5],[-1,-2]],[[218986,62919],[-4,-2],[-3,-1],[-2,0],[-2,1],[6,6],[3,1],[1,0],[2,-1],[1,-1],[-1,-1],[-1,-2]],[[218970,62927],[-1,0],[-2,0],[-1,3],[0,1],[1,1],[2,2],[1,1],[1,0],[2,0],[2,0],[0,-1],[1,-1],[1,-1],[-1,-2],[-2,-2],[-3,-1],[-1,0]],[[219089,63026],[0,-2],[-1,-2],[-1,0],[-2,0],[-5,8],[1,3],[1,0],[1,2],[7,-4],[0,-2],[-1,-3]],[[219025,63055],[-2,0],[-3,0],[-2,1],[5,6],[1,0],[2,1],[0,-1],[1,-3],[-1,-3],[-1,-1]],[[219008,63068],[-2,-2],[-3,-1],[-1,-1],[-1,0],[-3,1],[2,3],[1,1],[1,1],[3,2],[1,-1],[2,-3]],[[219088,63081],[-1,-1],[-3,-2],[0,2],[-1,1],[0,2],[0,1],[0,7],[1,1],[2,2],[1,1],[1,-3],[1,-1],[-1,-10]],[[219053,63113],[-2,0],[-2,0],[-1,5],[-1,1],[0,2],[0,3],[-1,2],[3,1],[1,0],[1,-1],[1,-1],[1,-2],[0,-8],[0,-2]],[[219103,63136],[-2,-5],[-2,2],[-1,1],[-5,15],[0,4],[0,1],[-1,5],[2,0],[2,0],[2,-2],[3,-3],[0,-1],[1,-2],[1,-3],[0,-3],[0,-3],[0,-4],[0,-2]],[[218970,63159],[-3,1],[-1,0],[-1,3],[0,2],[2,4],[1,0],[2,0],[2,0],[-2,-10]],[[219064,63175],[-2,-1],[-2,0],[0,1],[0,3],[1,6],[0,1],[1,1],[1,0],[3,1],[0,-2],[1,-3],[-2,-4],[-1,-1],[0,-2]],[[218970,63192],[-9,-5],[-3,-1],[-2,1],[-3,2],[-1,3],[0,2],[-1,1],[1,0],[2,1],[9,0],[3,0],[1,0],[1,-1],[2,-3]],[[219116,63182],[-3,1],[0,1],[-1,5],[-1,3],[1,4],[1,2],[0,2],[2,0],[2,0],[1,-1],[1,-3],[-3,-14]],[[218997,63240],[-2,-1],[-1,0],[-1,3],[-2,4],[1,4],[0,2],[1,0],[3,0],[0,-2],[0,-3],[0,-6],[1,-1]],[[219149,63234],[-4,-6],[-1,-1],[-3,0],[-1,0],[6,30],[1,-1],[2,-4],[1,-3],[0,-3],[0,-4],[0,-3],[0,-3],[-1,-2]],[[218985,63270],[-1,0],[-2,-1],[1,2],[0,8],[0,3],[1,1],[1,2],[1,-1],[2,-2],[2,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[-1,-2],[-2,-2]],[[219093,63279],[-4,-5],[-5,16],[1,1],[1,1],[2,-1],[2,-2],[1,-1],[2,-3],[0,-1],[0,-2],[0,-1],[0,-2]],[[219182,63269],[-2,-2],[-2,-2],[-1,1],[-2,1],[-4,2],[25,53],[1,1],[3,3],[1,-3],[2,-4],[-1,-1],[-1,-8],[-10,-26],[-9,-15]],[[219155,63322],[-2,0],[-1,-1],[-1,2],[-2,2],[1,4],[0,2],[1,2],[1,0],[1,1],[1,-1],[1,-2],[0,-3],[0,-1],[0,-3],[0,-2]],[[219220,63376],[11,0],[1,-1],[1,-3],[0,-3],[-2,-4],[-3,-1],[-1,-1],[-2,1],[-6,0],[0,1],[-2,5],[1,6],[1,0],[1,0]],[[219091,63393],[-2,0],[-2,5],[-1,2],[0,4],[-1,6],[1,0],[1,1],[4,-18]],[[219029,63415],[-1,-5],[-1,1],[-1,5],[0,1],[0,2],[2,2],[1,-2],[0,-3],[0,-1]],[[219145,63440],[-2,-3],[-1,1],[-2,1],[-1,1],[-2,5],[-2,4],[0,1],[-1,4],[0,2],[1,3],[1,-1],[2,-1],[7,-17]],[[219177,63458],[-4,-1],[-2,0],[8,11],[1,0],[1,0],[0,-3],[0,-2],[0,-1],[-1,-1],[-1,-1],[-2,-2]],[[219245,63450],[-1,-2],[-6,-12],[-2,-3],[-2,4],[-2,6],[4,39],[1,1],[1,1],[1,1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[2,-10],[0,-3],[1,-1],[0,-2],[-2,-13]],[[218983,63515],[-3,0],[-2,0],[-2,1],[-1,6],[1,1],[3,3],[1,-1],[1,-1],[2,-2],[0,-4],[0,-1],[0,-2]],[[218967,63524],[0,-2],[1,-3],[-2,0],[-2,0],[-1,3],[0,2],[-1,4],[0,2],[1,3],[2,-5],[1,-3],[1,-1]],[[219232,63509],[-3,0],[-1,-1],[-2,2],[0,1],[0,15],[2,16],[4,-1],[2,-1],[0,-1],[3,-10],[-5,-20]],[[218959,63547],[-1,-1],[-1,0],[-1,1],[-2,5],[-1,4],[-1,3],[1,-1],[2,0],[2,-5],[1,-1],[1,-4],[0,-1]],[[219047,63581],[-2,-2],[-3,2],[-5,18],[1,0],[2,0],[2,-2],[1,-3],[0,-1],[4,-12]],[[218885,63654],[-2,-1],[0,1],[2,5],[1,1],[1,1],[2,1],[2,0],[0,-1],[-1,-2],[-4,-4],[-1,-1]],[[218988,63657],[-3,-1],[-1,2],[-5,16],[2,1],[1,0],[1,-1],[6,-8],[0,-2],[0,-2],[-1,-2],[0,-3]],[[304087,63637],[-55,26],[-57,27],[0,0],[-2,2],[-6,5],[-1,1],[-2,1],[-1,1],[0,0],[-16,21],[-3,3],[-3,4],[1,4],[0,1],[1,4],[1,3],[5,10],[1,0],[0,0],[0,0],[1,1],[55,-42],[96,-75],[0,0],[-7,1],[-8,2]],[[301951,60868],[-1,0],[-2,-1],[-6,-4],[-5,-1],[0,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[-2,1],[-2,0],[-3,2],[-1,1],[-2,1],[0,0],[-1,1],[0,0],[-2,4],[-1,1],[-1,1],[0,2],[-1,2],[0,1],[0,3],[0,0],[46,6],[14,1],[-5,-5],[-3,-4],[-1,-1],[-2,-2],[-1,-1],[-7,-7]],[[301898,60901],[-1,0],[-2,-1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,0],[0,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3]],[[301983,60937],[1,0],[2,-1],[0,-1],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-4],[-1,-5],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,1],[0,0],[0,0],[-1,2],[0,2],[0,3],[-1,9],[0,2],[1,2],[1,1],[0,2],[1,1],[1,0],[0,0]],[[301887,60922],[-1,-1],[-1,0],[-2,1],[-1,1],[0,1],[-3,4],[-2,5],[-1,2],[0,0],[1,1],[1,1],[1,2],[4,3],[2,-3],[1,-3],[0,-1],[0,-2],[1,-1],[1,-8],[0,-1],[-1,-1],[0,0]],[[301896,60963],[-2,-2],[0,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,0],[1,1],[0,1],[1,0],[0,1],[1,0],[3,1],[0,0],[0,-2],[-1,-4],[-1,-1],[-1,-3]],[[301429,62042],[0,-2],[-1,-5],[0,-6],[-2,-8],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,0],[0,-2],[-1,-3],[-3,-5],[0,-2],[0,0],[-1,-1],[-1,-3],[-2,-3],[-1,-1],[-1,-1],[-2,-2],[-2,0],[-5,0],[-2,2],[-1,1],[0,0],[-1,2],[0,1],[-1,2],[-1,1],[-1,8],[-1,1],[0,2],[0,1],[0,0],[0,1],[0,1],[27,39],[0,0],[1,0],[0,0],[1,-1],[0,0],[0,-1],[1,-3],[1,-6]],[[301399,62043],[-1,0],[-1,-1],[0,0],[0,0],[0,1],[-1,0],[-2,2],[0,0],[0,1],[-2,2],[0,0],[-1,1],[-1,1],[-1,1],[0,0],[0,1],[0,2],[0,1],[0,0],[1,0],[2,-1],[5,-3],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[0,0],[0,-2],[0,-1],[1,0],[-3,-2],[0,0]],[[302278,62045],[-2,0],[0,3],[1,1],[0,2],[1,2],[1,2],[0,1],[2,2],[1,3],[0,1],[1,0],[2,2],[1,0],[1,0],[2,-1],[0,0],[1,0],[0,-2],[1,-3],[-1,-1],[-2,-3],[-1,-1],[-1,-2],[-1,0],[0,0],[-1,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,0],[-1,0]],[[302663,62256],[0,-2],[0,0],[-1,0],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[0,1],[0,0],[0,1],[-1,4],[0,0],[0,0],[0,0],[1,-1],[4,-7],[0,-1],[0,-1],[0,-1]],[[302647,62269],[-1,0],[-1,3],[-1,1],[0,1],[-1,1],[-2,4],[0,2],[-1,1],[0,2],[2,1],[0,0],[1,0],[1,-1],[0,0],[1,-3],[2,-3],[3,-5],[0,-1],[0,-1],[-1,-1],[0,0],[-1,0],[-1,-1]],[[304918,62326],[0,-2],[0,-2],[0,-1],[0,-1],[0,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-2,2],[-1,1],[0,1],[-2,4],[-1,2],[0,0],[-1,4],[-1,2],[3,-2],[0,0],[1,0],[1,-1],[0,0],[1,0],[0,-1],[1,-1],[1,-1],[1,-3],[1,-3],[1,-1]],[[302716,62219],[0,0],[-1,-1],[-2,-3],[-1,-1],[-2,-2],[-1,-1],[-2,0],[-1,0],[-2,1],[-1,0],[0,0],[0,0],[-1,1],[-4,4],[-3,2],[-10,12],[-1,1],[-1,2],[0,0],[0,0],[14,20],[34,50],[0,0],[-11,-67],[-1,-3],[-1,-3],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,-3],[0,-2],[0,0]],[[302748,62361],[-1,0],[0,0],[0,0],[-4,3],[0,0],[-1,1],[-1,3],[0,1],[-1,0],[4,-2],[1,-1],[0,0],[0,0],[0,0],[2,-2],[1,-3],[0,0]],[[304897,62357],[0,-1],[-1,1],[-1,1],[-2,6],[-2,5],[0,0],[0,0],[3,-1],[4,-8],[-1,-2],[0,-1]],[[302570,62391],[0,0],[0,-1],[0,0],[0,0],[-1,-1],[-1,0],[0,1],[-1,0],[-10,4],[0,0],[0,0],[-2,0],[0,1],[0,0],[-1,0],[0,0],[0,0],[-1,3],[0,1],[0,2],[1,2],[0,0],[2,0],[0,0],[1,0],[1,0],[0,0],[0,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[4,-3]],[[304881,62416],[0,0],[-1,0],[0,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[0,2],[-1,1],[-1,3],[0,0],[3,-1],[0,0],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[1,-6]],[[302747,62375],[-2,0],[0,0],[-1,0],[0,2],[0,1],[0,0],[25,27],[6,6],[0,0],[1,1],[1,1],[11,6],[11,7],[4,1],[0,0],[-7,-8],[-43,-40],[-2,-1],[-3,-2],[0,0],[-1,-1]],[[302811,62451],[-1,-3],[-1,0],[-1,0],[-1,1],[-5,15],[-2,8],[1,0],[0,0],[1,0],[1,0],[0,0],[1,-1],[0,0],[1,-1],[1,0],[0,0],[2,-2],[1,-1],[1,-2],[0,0],[1,-1],[1,-3],[-1,-1],[0,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,0],[0,-3]],[[304744,62494],[0,0],[6,3],[9,3],[7,2],[1,0],[0,-1],[2,0],[4,-1],[17,-6],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[3,-1],[23,-17],[3,-2],[0,0],[-2,-2],[0,0],[-1,0],[-2,-1],[-2,0],[-4,2],[-7,4],[-21,7],[-31,12],[-11,2]],[[302768,62509],[1,-2],[5,-8],[2,-2],[0,-1],[-1,1],[-1,0],[-3,2],[-1,0],[0,0],[-2,3],[-1,1],[-3,4],[0,0],[-1,3],[-1,2],[0,1],[0,1],[-1,0],[0,0],[2,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-2]],[[304627,62507],[0,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,0],[-4,-1],[-1,-1],[-2,1],[-2,0],[0,0],[-1,0],[-1,0],[-2,1],[-5,4],[0,0],[-1,0],[-3,3],[-1,1],[-4,3],[-15,15],[0,0],[-1,1],[-2,2],[0,0],[0,1],[0,0],[-1,1],[0,0],[0,1],[1,0],[53,-23]],[[304688,62530],[1,0],[3,-4],[0,-1],[-23,0],[-2,1],[0,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,0],[1,0],[1,0],[7,0],[6,0],[6,0],[1,-1],[0,0]],[[302718,62526],[0,0],[0,0],[-1,0],[-1,0],[-1,1],[-1,1],[-4,3],[1,1],[0,1],[0,0],[2,-1],[0,0],[2,-1],[1,0],[0,-1],[0,0],[1,-1],[1,-1],[0,0],[0,-1],[0,-1]],[[302697,62559],[0,-2],[2,-7],[2,-4],[0,-2],[1,-2],[-2,1],[0,0],[-2,0],[-1,3],[-1,2],[0,1],[0,0],[-2,9],[1,0],[2,1]],[[304553,62540],[0,0],[2,-1],[1,-1],[1,0],[0,-1],[0,0],[1,-1],[0,0],[1,-1],[-2,0],[0,0],[-1,0],[-12,3],[-9,4],[0,0],[4,19],[0,0],[4,2],[10,-23]],[[302693,62567],[0,-2],[0,-2],[-2,1],[-3,7],[-2,4],[3,1],[0,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,0],[0,-1],[0,-1],[1,-1]],[[304542,62590],[-1,1],[0,0],[-2,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,0],[0,-1],[1,-1],[0,-3],[1,-1],[0,-4],[1,-6],[0,0]],[[302668,62589],[0,0],[0,0],[0,0],[-1,0],[0,1],[-1,1],[-1,0],[-4,18],[-7,27],[0,0],[1,0],[1,0],[1,-1],[0,0],[0,-1],[4,-9],[1,-4],[3,-6],[1,-3],[1,-11],[1,-12],[0,0]],[[304540,62623],[0,0],[-1,0],[-1,0],[0,0],[0,1],[-1,3],[-1,3],[-2,6],[0,1],[0,1],[0,1],[1,2],[2,6],[0,0],[1,-5],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,0],[0,-2],[1,-4],[0,-1],[0,-7]],[[304532,62667],[-2,1],[0,0],[0,1],[-1,0],[0,3],[0,2],[-1,2],[0,1],[0,1],[1,5],[0,0],[0,2],[1,3],[1,1],[3,1],[1,1],[2,1],[0,0],[0,-1],[0,-2],[0,0],[-5,-22],[0,0]],[[302635,62686],[0,-1],[0,-1],[0,0],[0,0],[-1,0],[-4,12],[-2,4],[0,1],[1,0],[1,0],[0,0],[0,0],[1,-3],[2,-2],[0,-1],[0,0],[1,-2],[1,-3],[0,-1],[0,-1],[0,-2],[0,0]],[[304680,62716],[0,0],[-2,0],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,0],[0,1],[0,2],[0,1],[0,1],[4,1],[1,1],[2,0],[1,1],[0,0],[2,-1],[1,-1],[0,0],[-1,-2]],[[302627,62707],[-1,0],[-2,1],[0,0],[-4,9],[0,0],[0,2],[0,1],[2,1],[1,-2],[0,-1],[1,0],[0,-1],[3,-10]],[[302542,62761],[0,0],[0,0],[-2,1],[0,1],[0,1],[0,1],[0,1],[0,0],[3,0],[0,-1],[-1,-4],[0,0]],[[304470,63563],[5,-3],[0,0],[-4,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-11,-3],[-3,-1],[-5,-1],[-2,0],[-2,0],[-1,0],[-2,1],[-1,1],[-3,1],[-1,1],[-1,1],[-3,2],[-2,2],[-1,1],[0,1],[-1,3],[-4,7],[-6,15],[-5,14],[0,0],[1,-1],[2,-1],[2,-1],[54,-36]],[[304575,63597],[10,15],[18,28],[2,1],[1,0],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,0],[0,0],[-15,-26],[-9,-11],[-11,-10],[0,0],[1,2],[0,3]],[[304398,63630],[3,-10],[1,-1],[0,-2],[-1,1],[-8,5],[-3,2],[0,0],[-2,3],[0,0],[0,1],[-1,3],[0,0],[5,14],[0,0],[2,0],[1,0],[0,-1],[3,-15]],[[304672,63662],[0,-1],[1,0],[-1,-1],[-1,-1],[-10,-6],[-3,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-8,-2],[-1,-1],[0,0],[-1,0],[0,0],[0,0],[-1,3],[0,0],[26,17],[0,0],[2,0],[0,-1],[1,0],[1,0],[0,0],[2,-1]],[[304654,63661],[0,-1],[0,0],[0,0],[-2,0],[-2,0],[-3,0],[-3,0],[-5,1],[0,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[0,0],[1,1],[4,1],[1,0],[1,0],[0,0],[2,1],[2,0],[2,-1],[1,0],[0,0],[2,-1],[1,-1],[1,0],[1,-1],[0,0],[0,-1],[1,0],[0,0]],[[304156,63632],[-9,-1],[-1,0],[-1,0],[0,0],[-1,0],[-4,0],[-2,1],[0,0],[0,0],[-2,1],[0,0],[39,13],[40,14],[0,0],[-32,-19],[-10,-5],[-5,-1],[-8,-2],[-2,-1],[-1,0],[-1,0]],[[304403,63688],[0,0],[0,3],[0,2],[-1,5],[0,1],[0,1],[0,0],[1,0],[2,1],[0,0],[3,-1],[-5,-12]],[[304233,63699],[1,-1],[0,0],[-2,0],[-6,5],[-3,3],[0,1],[0,2],[0,0],[1,0],[0,0],[1,0],[0,0],[2,0],[1,0],[1,-1],[1,0],[0,0],[0,0],[0,-1],[2,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1]],[[304717,63705],[1,-3],[1,-1],[0,0],[0,0],[-1,-2],[-12,-19],[0,0],[0,0],[-7,-10],[-7,-5],[0,0],[0,0],[-9,1],[0,2],[0,1],[0,0],[0,1],[20,37],[2,3],[0,0],[2,0],[0,0],[1,0],[2,0],[2,-1],[1,0],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[1,-1]],[[304191,63702],[0,0],[-1,0],[-1,0],[0,0],[-1,2],[-1,2],[-1,1],[0,1],[-5,9],[1,1],[0,1],[1,1],[0,0],[1,-3],[1,-3],[4,-9],[1,-1],[0,-1],[1,-1],[0,0]],[[303968,63808],[-1,0],[-2,-1],[0,0],[1,1],[0,2],[1,2],[4,2],[1,1],[1,0],[0,0],[1,0],[0,0],[1,-2],[0,0],[0,0],[-1,-1],[-1,-1],[-2,-1],[-3,-2]],[[303985,63805],[-6,7],[0,2],[0,2],[0,0],[3,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,0],[1,-3],[0,-1],[0,0],[0,0],[0,0],[0,-2],[-3,0]],[[304464,63807],[-1,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,5],[0,24],[0,5],[0,2],[0,0],[1,0],[1,0],[1,0],[1,-1],[6,-2],[0,0],[-6,-36]],[[301924,63905],[6,-1],[7,0],[5,-1],[13,-1],[70,-17],[0,0],[-1,-3],[-4,-8],[-35,5],[-12,1],[-51,20],[1,0],[1,5]],[[301907,63913],[0,-3],[-1,-1],[0,0],[-1,1],[0,0],[-1,1],[-4,1],[-2,2],[-2,2],[-1,0],[-2,2],[-1,1],[-1,2],[-1,2],[-1,3],[0,0],[0,0],[0,2],[2,0],[16,-15]],[[301866,63950],[0,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,1],[0,0],[-9,2],[-1,0],[0,0],[-1,0],[-2,1],[-1,0],[-3,2],[-1,0],[0,3],[1,1],[1,0],[4,-1],[1,0],[15,-5],[2,0],[0,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,0]],[[301806,63992],[0,0],[-2,2],[-4,5],[-1,4],[-1,5],[0,1],[0,0],[-5,27],[-3,18],[0,1],[0,1],[-1,4],[0,1],[0,0],[0,3],[1,7],[0,0],[0,0],[1,1],[0,1],[1,2],[1,0],[0,1],[2,3],[0,0],[0,0],[1,1],[0,0],[0,0],[1,1],[1,1],[0,-1],[0,0],[1,-1],[7,-88]],[[302127,64109],[-1,-1],[-2,-1],[0,0],[0,3],[-1,4],[0,0],[1,0],[0,3],[1,1],[0,0],[0,0],[1,1],[0,0],[1,1],[0,0],[1,0],[0,0],[0,-2],[0,0],[1,-1],[0,-3],[-1,-3],[-1,-2]],[[302130,64146],[-2,0],[-1,0],[-1,1],[0,1],[0,0],[0,3],[0,2],[1,2],[0,2],[0,0],[1,2],[1,2],[1,1],[0,0],[1,-1],[0,0],[0,0],[1,-1],[0,0],[0,-2],[-2,-12]],[[302146,64234],[1,0],[0,-1],[1,0],[2,-2],[0,0],[1,0],[0,-1],[2,-1],[1,-1],[0,0],[2,-2],[0,0],[0,0],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,0],[0,-4],[-2,-7],[-1,-6],[-1,0],[0,-1],[-1,-2],[-2,-2],[0,0],[0,-1],[-1,-1],[0,0],[-3,-2],[0,0],[-2,-1],[0,0],[-1,1],[-21,40],[0,0],[0,1],[0,0],[1,1],[0,0],[12,1],[0,0],[2,0],[4,-1],[1,0],[1,0],[1,-1],[0,0],[1,0],[0,0]],[[301531,64401],[-1,-1],[-5,-3],[-1,0],[-3,0],[0,0],[-1,0],[-2,0],[-2,1],[-1,1],[-2,1],[-1,1],[0,0],[-5,4],[-1,1],[0,0],[0,0],[-1,2],[-1,1],[-1,2],[1,2],[0,0],[32,-6],[-2,-2],[-3,-4]],[[301571,64479],[0,-1],[0,0],[-1,-1],[0,0],[0,0],[-1,2],[-1,6],[-1,5],[0,4],[0,1],[0,0],[1,2],[0,0],[1,-3],[1,-4],[0,-1],[1,-2],[0,-1],[0,0],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[0,0]],[[301460,64761],[-1,-1],[0,-1],[0,-1],[0,0],[-2,1],[-1,2],[0,0],[0,0],[-1,3],[0,0],[1,0],[0,-1],[2,-1],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[1,0]],[[304067,64840],[-1,-2],[0,0],[0,1],[-1,2],[-1,1],[-1,2],[0,0],[-2,3],[0,2],[-1,1],[-1,1],[1,1],[0,0],[0,1],[1,1],[1,-1],[0,0],[3,-3],[0,-1],[1,-1],[1,-2],[0,-1],[0,-3],[0,-2],[0,0]],[[301465,64861],[2,-3],[3,-2],[0,0],[1,-1],[2,-4],[1,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,0],[-12,17],[-1,1],[0,0],[0,1],[0,1],[0,1],[0,0],[2,0],[1,-1],[2,0],[0,0]],[[304064,64877],[0,-3],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,2],[-1,3],[0,0],[1,3],[1,0],[0,0],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,0]],[[304014,64879],[0,-4],[0,-1],[0,0],[0,-1],[-2,0],[-2,0],[-1,3],[-1,2],[0,1],[1,1],[0,2],[1,1],[0,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,0]],[[301301,64884],[0,0],[-2,0],[0,-1],[-1,1],[-2,2],[0,0],[-1,1],[-1,2],[-1,3],[0,2],[0,1],[0,0],[1,0],[1,0],[6,-8],[0,-2],[0,-1]],[[304059,64896],[-1,-3],[0,-1],[0,-1],[0,0],[-1,1],[-1,2],[0,0],[-1,1],[0,2],[0,1],[-1,1],[0,0],[3,0],[0,0],[1,-1],[1,-1],[0,-1]],[[303971,64903],[-1,0],[0,-1],[0,0],[-1,0],[0,0],[-1,1],[-1,0],[0,1],[0,0],[0,1],[0,1],[1,1],[0,0],[0,0],[1,0],[1,-1],[0,0],[1,-3]],[[304048,64923],[0,-1],[-1,0],[0,-1],[0,0],[0,0],[-1,2],[0,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,0],[0,-2],[1,-1],[-1,-3]],[[303928,64935],[0,0],[0,0],[-1,-1],[-1,0],[-1,2],[0,3],[0,0],[1,1],[1,1],[1,0],[0,0],[1,-2],[0,-1],[0,-2],[-1,-1]],[[300804,65027],[-2,-1],[0,0],[-1,1],[-1,1],[0,0],[0,1],[-1,2],[0,0],[1,-1],[2,0],[2,0],[0,0],[0,-1],[0,0],[0,-2]],[[304054,65025],[-1,-1],[0,0],[-1,-1],[-1,0],[-1,1],[-3,9],[0,0],[0,0],[1,1],[2,-1],[2,0],[1,-1],[2,-3],[0,0],[-1,-3],[0,-1]],[[304035,65046],[-1,-1],[-2,1],[0,0],[0,3],[0,0],[0,1],[1,0],[0,0],[1,0],[0,0],[1,-1],[0,0],[0,0],[0,-1],[0,0],[0,-2]],[[303951,65088],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,0],[1,-1],[1,-1],[1,-1],[-1,-3],[0,-2]],[[304072,65224],[-2,-1],[0,0],[-2,1],[0,0],[0,2],[1,1],[0,1],[0,0],[0,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1]],[[304080,65232],[-1,0],[-1,-1],[-1,0],[0,0],[0,2],[0,0],[0,1],[0,0],[0,2],[0,1],[0,0],[1,1],[1,3],[1,2],[2,-1],[1,0],[0,-3],[0,0],[1,-2],[-2,-2],[-1,-1],[-1,-2]],[[303933,65360],[0,0],[0,0],[-2,-1],[0,0],[0,1],[0,0],[-1,2],[-1,1],[0,1],[0,0],[-1,3],[0,0],[2,-1],[1,-1],[0,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,0],[0,-1]],[[304115,65466],[0,0],[-1,-1],[0,0],[-2,-1],[-1,-1],[-1,1],[0,1],[0,0],[0,3],[-1,1],[0,0],[0,1],[1,2],[0,0],[0,1],[1,0],[2,4],[1,1],[1,1],[0,0],[1,-1],[1,-1],[0,0],[1,-1],[1,-3],[0,0],[-1,-2],[0,-2],[-2,-2],[-1,-1],[0,0]],[[301090,65490],[0,-6],[-1,-4],[0,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-4,0],[-1,0],[0,0],[-1,0],[0,0],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,3],[-1,1],[0,2],[0,1],[-1,1],[0,0],[0,1],[0,2],[0,2],[0,0],[1,1],[1,0],[6,2],[9,3],[2,0],[1,-1],[1,0],[0,0],[0,0],[0,-2],[0,-2],[0,0],[0,-1],[0,-2],[0,0],[0,-1],[0,-2]],[[301049,65515],[-1,0],[0,-1],[0,-1],[-1,1],[0,0],[-1,0],[-3,3],[-2,1],[-1,1],[0,1],[0,2],[0,0],[1,0],[0,-1],[0,0],[3,0],[0,-1],[1,0],[2,-2],[1,-1],[0,0],[0,-1],[1,-1]],[[303819,65514],[-1,-1],[-1,1],[0,0],[0,0],[-2,2],[0,3],[0,1],[0,1],[0,0],[1,2],[0,1],[1,0],[0,0],[0,-1],[1,-1],[1,-3],[0,-1],[0,-2],[0,0],[0,-2]],[[304070,65541],[0,-1],[0,0],[0,-2],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,1],[-1,1],[-2,2],[0,0],[0,2],[2,0],[1,1],[1,-2],[1,-1],[0,0],[1,-1]],[[301092,65548],[-1,-2],[0,0],[0,0],[-1,2],[0,0],[-1,1],[0,1],[0,0],[0,0],[0,1],[0,2],[0,3],[0,1],[0,0],[0,2],[0,0],[1,0],[0,0],[1,0],[0,-1],[0,0],[1,-2],[0,-1],[0,-3],[1,-1],[-1,-3]],[[300992,65568],[-2,-1],[-5,3],[-1,1],[-2,2],[0,0],[0,1],[0,2],[0,0],[5,-3],[5,-2],[0,-1],[0,-2]],[[303998,65615],[0,-1],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,1],[0,0],[1,0],[1,1],[1,0],[0,0],[1,-1],[1,-2]],[[303797,65614],[-2,-1],[0,0],[0,3],[0,2],[1,1],[0,0],[0,0],[1,-1],[1,-1],[-1,-3]],[[301095,65627],[-1,0],[0,-1],[0,-1],[-2,0],[0,0],[1,2],[0,2],[0,1],[0,0],[1,2],[0,1],[1,1],[0,0],[1,0],[1,1],[0,0],[0,-1],[0,-1],[0,0],[-1,-1],[-1,-3],[0,-2]],[[303971,65645],[0,-1],[0,-1],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-2,3],[-1,1],[0,0],[3,2],[0,-1],[2,-2],[0,-1]],[[301103,65644],[-1,-2],[-1,1],[-2,0],[1,0],[0,1],[0,0],[1,2],[0,1],[2,2],[0,0],[0,0],[0,0],[1,0],[1,-1],[0,0],[0,-1],[-2,-3]],[[303900,65671],[-2,0],[0,1],[-1,0],[-1,3],[0,0],[1,0],[0,0],[2,0],[1,-1],[0,0],[1,0],[0,-1],[0,0],[-1,-1],[0,-1]],[[303787,65690],[0,-2],[0,-1],[0,-3],[0,0],[-4,-6],[-5,-6],[-1,-1],[-2,-3],[-3,2],[1,1],[0,1],[0,2],[0,0],[1,3],[1,3],[0,1],[2,6],[1,1],[1,2],[8,0]],[[301118,65667],[0,0],[-2,1],[1,20],[1,2],[1,-1],[0,-1],[1,-3],[0,0],[0,-2],[0,-3],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,0],[0,-1]],[[303862,65689],[0,0],[-2,-2],[-1,0],[0,0],[-1,0],[0,1],[-1,1],[1,2],[1,0],[0,0],[1,0],[0,0],[1,-1],[0,-1],[1,0]],[[299775,65703],[-2,0],[0,0],[0,0],[-1,1],[0,2],[0,1],[1,1],[0,0],[1,-1],[0,0],[0,-1],[0,0],[1,-3]],[[299814,65703],[-5,-2],[-1,0],[-2,0],[-1,1],[0,0],[-1,1],[0,0],[0,1],[0,0],[0,1],[11,10],[2,-2],[0,-2],[1,-1],[0,0],[0,-1],[0,-2],[1,-1],[0,0],[-2,-1],[-1,-1],[-2,-1]],[[299385,65715],[-1,-1],[-1,0],[-2,-1],[-3,0],[0,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,0],[0,1],[2,-2],[5,-2],[0,-1],[0,0],[1,-1],[0,0],[0,0]],[[299808,65731],[-1,-1],[0,0],[-1,1],[0,1],[0,1],[0,0],[1,0],[1,-2]],[[299783,65748],[-1,-1],[-3,-2],[0,3],[0,0],[0,1],[1,1],[0,0],[1,0],[1,0],[0,-2],[1,0],[0,0]],[[303088,65820],[-1,-1],[-2,0],[-1,1],[0,1],[-1,1],[0,0],[0,3],[0,0],[1,-1],[2,0],[0,0],[0,0],[1,-1],[1,0],[0,0],[1,-1],[-1,-2]],[[300941,65820],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[2,1],[0,0],[0,0],[1,1],[0,0],[1,-2],[0,0],[0,-1],[1,-4],[0,-3]],[[300889,65871],[0,-1],[-1,-1],[-1,1],[0,0],[-1,1],[0,0],[-1,1],[-1,1],[1,1],[0,2],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,0],[0,0],[0,-1],[1,-3]],[[299312,65881],[-1,-1],[0,0],[0,-2],[0,0],[-1,1],[-1,1],[0,0],[-1,2],[0,1],[0,0],[0,0],[1,2],[1,0],[0,0],[1,-1],[0,0],[0,0],[1,-1],[0,-2]],[[300877,65884],[-1,-1],[0,-1],[-1,0],[-1,0],[0,0],[-1,1],[0,2],[0,1],[0,0],[1,2],[0,0],[2,-1],[0,-2],[1,-1]],[[300695,65903],[-2,0],[0,1],[1,1],[0,1],[2,1],[0,0],[0,0],[2,-1],[0,0],[-1,-1],[-1,-1],[-1,-1]],[[300740,65917],[0,0],[6,0],[1,0],[0,0],[1,0],[0,0],[0,-1],[-1,-1],[0,0],[0,0],[-2,-1],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[0,1],[-4,0],[-1,3],[3,-1],[1,0],[0,0]],[[300671,65913],[1,-1],[0,0],[-3,0],[0,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-1,2],[1,3],[0,0],[3,-2],[5,-5]],[[300722,65916],[-1,0],[0,-1],[0,0],[-1,1],[-1,1],[-1,0],[0,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[0,0],[1,-1],[0,0],[-1,-2],[-1,0],[-2,-1]],[[300814,65921],[0,0],[0,-1],[0,-1],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,1],[-1,2],[1,1],[0,0],[0,1],[0,0],[1,-1],[1,0],[0,0],[0,0],[1,-1],[1,-1]],[[300659,65923],[-2,0],[0,0],[-1,0],[-1,-1],[0,0],[-1,1],[-2,0],[0,0],[0,0],[0,2],[0,1],[0,0],[1,1],[1,-1],[3,-1],[0,0],[1,-1],[1,-1]],[[300637,65941],[-1,-2],[0,0],[-1,1],[-2,1],[0,0],[-1,2],[-2,2],[0,0],[0,0],[-1,3],[0,1],[0,0],[0,0],[2,0],[1,0],[0,0],[0,0],[1,-1],[0,0],[0,-1],[1,0],[0,-1],[1,-1],[0,0],[0,-1],[1,-1],[0,-1],[1,-1]],[[300622,65949],[-2,0],[0,0],[-2,0],[0,0],[-1,0],[0,0],[-1,1],[0,0],[1,1],[2,0],[1,1],[1,-1],[0,-1],[1,-1]],[[299285,65950],[0,0],[-1,-1],[-1,-1],[0,0],[0,0],[-2,1],[-2,2],[0,0],[-2,2],[0,0],[1,1],[1,1],[1,0],[2,-1],[1,0],[0,0],[0,-1],[1,0],[0,-2],[1,-1]],[[303005,65974],[0,0],[-2,0],[0,0],[-2,2],[0,0],[0,2],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,0],[0,-1],[0,0]],[[302971,66004],[-1,0],[-1,-1],[0,0],[-2,2],[0,3],[1,0],[2,0],[0,0],[1,-2],[0,-1],[0,-1]],[[299180,66027],[-1,0],[-1,0],[0,0],[-4,5],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,0],[1,0],[1,-1],[2,0],[1,-2],[2,-3],[0,-2],[1,-1],[0,0],[0,-3],[0,0],[0,-2]],[[300747,66122],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,0],[1,0],[2,1],[0,0],[0,-1],[0,0],[-1,-2],[-1,-2]],[[300343,66143],[-1,-1],[0,0],[-2,1],[-3,3],[1,1],[0,0],[1,0],[0,0],[1,1],[1,-1],[1,-1],[0,0],[1,-1],[0,-2]],[[300322,66152],[0,-1],[0,0],[0,-1],[0,0],[-3,0],[-1,0],[-1,1],[0,0],[0,0],[-1,1],[1,2],[0,0],[1,0],[2,0],[0,0],[1,-2],[1,0],[0,0]],[[300304,66157],[-1,-1],[0,0],[0,0],[-3,1],[-5,2],[-2,0],[-1,1],[-1,1],[0,1],[1,2],[0,1],[0,0],[1,1],[1,0],[4,-1],[1,-1],[0,0],[0,0],[0,0],[1,-1],[2,-1],[0,0],[1,-1],[0,-2],[1,-2]],[[300501,66170],[-1,-1],[-1,0],[-2,2],[1,0],[0,0],[0,0],[1,1],[6,3],[2,-1],[0,0],[1,0],[0,0],[0,-1],[0,0],[1,-1],[0,0],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-3,0]],[[303095,66210],[-2,0],[-1,0],[0,0],[0,0],[1,2],[0,1],[1,1],[2,1],[1,1],[0,0],[1,0],[1,0],[0,0],[0,-1],[0,-1],[-1,-1],[-3,-3],[0,0]],[[303221,66226],[-2,-2],[0,0],[0,0],[-1,1],[0,1],[-1,2],[3,3],[1,2],[0,0],[1,0],[1,1],[1,1],[0,0],[0,-1],[1,-1],[0,0],[0,0],[-1,-1],[-1,-2],[0,-1],[0,0],[-1,-1],[-1,-1],[0,-1]],[[300872,66237],[0,-1],[1,-1],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-2],[-9,-2],[-9,-1],[-1,0],[0,-1],[-2,0],[-2,0],[-2,0],[0,0],[-1,2],[-1,1],[1,1],[0,2],[1,2],[1,3],[1,3],[2,2],[1,1],[1,2],[1,1],[0,0],[5,3],[0,0],[1,0],[1,0],[0,0],[2,-1],[1,-1],[4,-1],[1,0],[0,-1],[2,-2],[1,-1],[0,-1]],[[303238,66243],[-2,-1],[-2,0],[0,0],[-1,0],[0,0],[2,3],[0,0],[1,1],[1,2],[1,1],[0,0],[0,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1]],[[303257,66293],[-1,-1],[-3,-1],[0,0],[-1,1],[0,1],[0,3],[1,26],[3,0],[1,-1],[0,0],[1,0],[0,0],[1,-1],[1,-3],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-6],[0,-1],[0,-1],[-2,-2],[-1,-2]],[[303247,66331],[0,-3],[0,0],[-2,3],[-2,2],[0,1],[0,2],[0,0],[2,0],[0,0],[1,-1],[0,-1],[0,0],[1,-2],[0,-1],[0,0],[0,0]],[[303222,66372],[0,-1],[-1,0],[0,-1],[0,0],[-1,1],[-1,2],[0,0],[-1,2],[0,1],[0,0],[0,0],[1,1],[1,0],[0,0],[0,0],[1,-1],[0,0],[0,-2],[0,0],[1,-1],[0,-1],[0,0],[0,0]],[[303027,66378],[0,-1],[0,-1],[-1,1],[0,0],[-1,2],[0,0],[-1,1],[1,1],[1,0],[0,0],[1,0],[0,0],[1,-1],[0,0],[-1,-2]],[[303011,66383],[-3,-1],[-1,0],[1,2],[2,2],[0,1],[1,0],[2,1],[1,0],[0,-1],[1,-1],[0,0],[0,0],[-1,-1],[-3,-2]],[[303210,66387],[0,-2],[0,-1],[0,0],[0,1],[-1,0],[0,1],[-1,2],[0,2],[1,-1],[0,0],[0,0],[0,0],[1,0],[0,-1],[0,-1]],[[302948,66392],[1,-1],[0,-1],[0,0],[-1,-1],[-6,2],[0,0],[-1,1],[-3,1],[0,0],[1,1],[1,1],[0,0],[1,0],[1,0],[1,0],[0,0],[0,0],[1,0],[1,-1],[3,-2]],[[302913,66395],[0,0],[0,-1],[-1,0],[0,0],[0,0],[-1,1],[0,0],[0,1],[0,0],[1,1],[1,1],[1,-1],[-1,-2]],[[303186,66417],[-1,-1],[0,0],[-1,0],[-4,-1],[-1,2],[0,1],[1,2],[0,0],[1,0],[2,1],[1,0],[1,-1],[0,0],[0,0],[1,-3],[0,0]],[[302335,66692],[0,0],[0,0],[-1,-1],[-1,-1],[-1,0],[-7,-1],[-5,-1],[-4,0],[-1,0],[-1,0],[0,0],[1,2],[0,0],[9,4],[14,6],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1]],[[302455,66714],[0,0],[-3,-1],[-1,-1],[-2,-1],[-3,-1],[-1,0],[0,0],[-1,0],[0,0],[-2,-1],[-2,0],[-2,0],[0,0],[-1,0],[-1,0],[0,2],[0,0],[0,3],[0,0],[5,2],[10,4],[1,-1],[2,0],[1,0],[2,0],[0,-1],[1,0],[1,-1],[0,0],[-3,-2],[0,-1],[-1,0]],[[302373,66716],[-1,0],[-1,0],[-1,0],[0,0],[-2,1],[0,0],[-1,0],[0,2],[0,0],[1,0],[2,1],[1,0],[0,0],[2,1],[0,0],[1,0],[0,0],[2,1],[0,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1]],[[302390,66721],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[0,0],[0,1],[0,0],[0,2],[0,1],[10,-2],[1,-2],[0,0],[-3,-1],[-1,0]],[[302456,66736],[0,0],[0,-1],[0,0],[0,-1],[-1,0],[-2,3],[-5,5],[0,0],[1,0],[1,1],[0,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2]],[[302439,66748],[-1,0],[0,0],[-1,2],[0,1],[0,1],[0,0],[2,1],[0,0],[0,0],[1,0],[0,0],[0,-2],[1,0],[0,-1],[-1,-2],[-1,0],[0,0]],[[302243,66771],[0,0],[-2,-1],[-2,2],[0,0],[0,1],[0,3],[1,0],[0,0],[1,0],[1,-1],[0,0],[0,-2],[1,-1],[0,-1]],[[302423,66791],[1,-2],[1,-2],[0,0],[-5,4],[-2,1],[2,1],[2,-1],[1,-1]],[[302412,66796],[-2,1],[0,3],[0,0],[1,0],[1,0],[1,1],[1,-1],[0,0],[1,0],[0,0],[0,0],[0,-2],[-2,-1],[-1,-1]],[[302406,66803],[-2,-2],[0,0],[-1,0],[-1,1],[0,1],[1,4],[0,0],[1,0],[0,0],[2,-1],[0,-1],[0,-2]],[[302200,66812],[0,0],[-1,-2],[0,0],[-2,1],[0,0],[0,0],[-1,1],[0,0],[-1,1],[-1,0],[0,1],[0,3],[0,1],[1,1],[0,2],[1,0],[0,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-5],[1,-1]],[[302385,66818],[-2,-2],[-1,-1],[0,0],[-1,1],[0,0],[0,2],[0,1],[1,1],[0,0],[1,1],[1,0],[0,0],[1,-1],[0,0],[0,0],[0,-1],[0,0],[0,-1]],[[299615,66943],[-1,0],[-1,0],[-1,0],[-2,0],[-3,1],[1,2],[0,1],[2,1],[1,0],[0,1],[1,0],[2,1],[0,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,0],[-1,-2],[0,-1]],[[302197,66944],[-2,-1],[0,0],[-1,0],[-1,2],[-1,0],[-1,1],[0,3],[0,0],[0,0],[0,2],[0,0],[0,0],[0,0],[2,0],[1,-1],[1,0],[3,0],[0,-1],[2,-1],[0,0],[0,-1],[-1,-1],[-2,-2]],[[302186,66956],[0,-1],[-1,-1],[0,0],[0,-1],[0,0],[-3,2],[-1,2],[-1,2],[-1,1],[0,1],[-1,3],[0,0],[1,2],[0,0],[1,0],[0,0],[1,-1],[0,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,0],[1,-2],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,0]],[[302639,67001],[-1,-1],[0,-1],[0,0],[0,0],[-1,1],[-2,1],[0,0],[1,2],[0,1],[1,0],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,-1],[0,-1]],[[299603,67115],[2,-2],[0,0],[0,0],[1,-1],[0,-1],[1,0],[0,-2],[0,-3],[0,0],[1,-2],[-1,-1],[0,-1],[-1,-3],[-1,1],[0,0],[-2,0],[-6,6],[-4,4],[-2,5],[0,1],[1,2],[1,1],[0,1],[2,1],[1,-1],[7,-5]],[[299529,67116],[-2,-3],[0,0],[-1,1],[-1,0],[0,0],[-1,3],[0,1],[0,2],[0,3],[0,0],[0,0],[0,0],[1,-1],[1,-1],[0,0],[0,0],[1,-1],[1,-1],[0,-2],[0,0],[1,-1]],[[303037,67147],[-1,-1],[0,0],[-1,-1],[-1,0],[-1,2],[0,0],[1,1],[0,3],[1,2],[1,0],[2,0],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[-1,-1],[0,-1],[0,0]],[[302934,67227],[-1,-1],[0,0],[0,-1],[0,0],[0,0],[0,1],[-2,1],[0,1],[-1,1],[0,2],[0,1],[1,0],[0,0],[1,-1],[1,0],[0,0],[1,-1],[0,-1],[0,-1],[0,-1]],[[303818,67234],[-1,-2],[-1,-8],[0,-1],[0,0],[0,-1],[-1,-2],[-1,-1],[0,0],[-4,-3],[-1,0],[0,0],[-1,-1],[-2,0],[-1,1],[3,18],[0,1],[0,1],[1,1],[0,2],[1,0],[0,1],[1,1],[0,0],[2,1],[0,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[0,0],[-1,-3],[0,-1],[0,-1]],[[303027,67252],[-1,-1],[0,0],[-1,1],[0,1],[0,3],[0,0],[0,0],[1,0],[1,0],[1,-1],[0,-2],[0,0],[-1,-1],[0,0]],[[303029,67300],[0,0],[-1,0],[0,-1],[0,0],[-1,0],[-1,1],[0,0],[0,0],[0,1],[0,0],[0,3],[0,0],[1,1],[0,0],[1,1],[1,-1],[0,-1],[0,0],[0,-2],[0,0],[0,0],[0,-1],[0,-1],[0,0]],[[303023,67374],[-1,-1],[-1,0],[0,0],[-1,1],[0,0],[0,2],[0,1],[2,3],[1,-2],[1,-1],[0,0],[0,-1],[-1,-1],[0,0],[0,-1]],[[303017,67399],[0,-2],[0,0],[-2,1],[0,0],[-2,2],[0,1],[0,3],[0,0],[0,1],[1,3],[0,0],[1,-3],[1,-2],[1,-2],[0,-1],[0,-1]],[[303012,67412],[-1,0],[0,0],[-1,0],[-1,1],[0,0],[-1,1],[0,0],[0,0],[0,3],[0,0],[0,0],[1,0],[1,-1],[1,0],[1,0],[0,-2],[0,0],[0,-2]],[[303007,67421],[-1,0],[-1,-1],[0,0],[-1,0],[-2,1],[0,0],[-1,1],[0,0],[0,0],[0,3],[0,1],[0,0],[2,3],[0,0],[1,-1],[2,-1],[0,0],[0,-1],[1,0],[1,-2],[0,0],[0,-1],[0,0],[-1,-2],[0,0]],[[300004,68153],[-1,-1],[0,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,0],[0,0],[-1,3],[0,0],[0,0],[1,0],[2,0],[1,0],[2,0],[0,0],[0,0],[1,0],[0,-1],[0,-1],[0,0]],[[300041,68154],[0,-1],[-1,-2],[0,0],[-2,1],[0,1],[-1,3],[0,0],[2,-1],[0,0],[1,0],[1,-1]],[[299932,68155],[-1,0],[-1,0],[-2,-1],[0,1],[1,2],[0,1],[5,2],[0,0],[1,0],[2,-1],[1,0],[0,0],[0,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,0],[-1,0],[-1,0]],[[299946,68159],[-1,0],[-1,0],[0,0],[1,2],[0,1],[0,0],[2,1],[1,0],[0,0],[0,0],[1,1],[1,0],[1,0],[0,0],[-1,-2],[0,-1],[-4,-2]],[[299898,68162],[-1,0],[-2,-1],[-1,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[1,3],[0,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,0]],[[299885,68162],[-1,-1],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,0],[-2,1],[-1,1],[0,1],[0,1],[0,0],[0,0],[1,0],[2,0],[2,0],[2,0],[0,0],[0,0],[2,0],[1,0],[1,-1],[0,0],[0,-1],[0,-1],[0,0],[0,0]],[[299837,68178],[-2,0],[-1,0],[-1,0],[0,0],[-1,0],[-1,1],[0,2],[0,1],[1,1],[0,0],[2,-1],[0,0],[0,0],[1,0],[2,-2],[0,-1],[0,-1]],[[302767,68177],[0,0],[-1,0],[-2,2],[0,0],[1,2],[1,1],[0,1],[1,1],[0,0],[1,-1],[0,0],[1,-1],[-1,-3],[0,-1],[-1,-1]],[[299836,68204],[-1,-3],[0,0],[-1,-1],[-1,-1],[0,0],[0,0],[0,1],[0,3],[0,1],[0,1],[1,1],[1,3],[0,1],[0,0],[1,-1],[1,0],[0,0],[0,-1],[0,0],[0,-2],[0,-1],[-1,-1]],[[300258,68207],[-1,-1],[0,-1],[0,0],[-2,-2],[-1,0],[-3,-1],[0,0],[-2,-1],[-1,0],[-2,0],[-2,1],[0,2],[-1,2],[0,1],[1,0],[0,0],[15,6],[0,0],[0,-1],[-1,-5]],[[300354,68192],[-21,0],[0,0],[13,6],[13,7],[3,1],[-8,-14]],[[300177,68253],[-3,-1],[1,2],[0,2],[5,7],[1,1],[0,0],[1,-2],[0,0],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[302855,68264],[0,0],[-2,-1],[0,0],[-1,1],[-3,1],[0,1],[-2,2],[0,1],[0,1],[0,2],[0,0],[3,-1],[1,0],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[0,0],[1,-1],[1,-3]],[[302930,68295],[2,0],[2,0],[1,-2],[0,0],[0,-3],[-1,-1],[-2,-2],[-1,0],[0,-1],[-12,-6],[0,1],[-1,4],[7,9],[1,0],[0,1],[0,0],[1,0],[1,0],[2,0]],[[300858,68353],[-2,0],[0,0],[0,1],[0,1],[1,1],[2,1],[1,0],[0,1],[5,1],[3,0],[0,0],[0,0],[0,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-4,-1]],[[300904,68449],[0,-3],[-1,-1],[-2,-1],[-1,-1],[0,0],[-2,-1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[8,-2]],[[300895,68457],[0,0],[-1,-1],[0,0],[-1,1],[-1,1],[0,0],[-1,3],[2,0],[0,0],[1,0],[1,-1],[2,-1],[0,0],[0,0],[-1,-1],[-1,-1]],[[300871,68473],[-2,0],[0,0],[-1,0],[0,1],[0,1],[1,2],[1,0],[0,1],[1,0],[0,0],[1,0],[0,-1],[1,0],[-1,-3],[-1,-1]],[[300503,68515],[-1,-1],[0,0],[-2,0],[0,0],[-1,1],[0,0],[0,0],[0,1],[0,0],[0,6],[0,0],[0,0],[2,0],[2,1],[0,0],[1,0],[0,0],[0,-2],[0,-1],[1,-1],[-1,-1],[0,0],[-1,-3]],[[300178,68538],[-1,0],[-1,0],[0,-1],[-1,0],[0,0],[1,3],[0,1],[0,0],[1,1],[0,1],[0,0],[1,0],[1,1],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,0],[-2,-2]],[[299023,68579],[-1,-1],[0,0],[-1,-1],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[-2,1],[0,1],[-1,1],[0,1],[0,0],[-1,1],[0,1],[0,1],[-1,2],[1,0],[1,1],[0,0],[2,-3],[2,-1],[4,-3],[1,0],[-1,-3]],[[299044,68587],[-1,0],[0,-1],[-5,2],[1,0],[2,1],[1,0],[2,1],[0,0],[0,-1],[0,-1],[0,-1]],[[299079,68596],[0,0],[-2,-1],[0,0],[-1,3],[0,0],[1,1],[0,1],[3,2],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[-4,-2]],[[299206,68601],[-2,2],[4,17],[0,1],[1,1],[0,1],[0,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,0],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,0],[-2,-2],[0,0],[-1,-1]],[[299199,68710],[-1,-1],[0,0],[-15,27],[4,2],[5,-1],[0,-1],[1,0],[1,-1],[0,0],[2,-2],[1,-1],[0,0],[0,-1],[0,-1],[1,0],[0,-3],[1,-1],[0,-1],[1,-2],[0,-3],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,0]],[[298946,68800],[-1,-1],[0,0],[-3,-2],[0,0],[0,1],[0,1],[0,0],[1,1],[0,0],[0,1],[0,0],[1,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1]],[[298973,68816],[0,-1],[0,0],[-1,-3],[0,0],[-7,1],[0,0],[2,2],[2,1],[0,1],[1,1],[2,0],[0,1],[1,0],[1,1],[0,0],[0,-1],[-1,-2],[0,-1]],[[303147,69358],[-1,-1],[0,0],[0,-1],[-1,-1],[0,0],[-1,2],[-2,3],[0,2],[1,0],[1,1],[0,0],[0,-2],[1,-1],[1,-1],[0,-1],[1,0]],[[303171,69426],[0,0],[-2,-1],[0,0],[0,1],[-1,0],[1,2],[2,2],[1,-2],[1,-1],[0,0],[-2,-1]],[[302134,71993],[-2,-1],[0,0],[-2,0],[1,1],[0,0],[1,2],[0,0],[0,0],[1,1],[0,0],[0,1],[1,0],[0,0],[1,0],[0,0],[1,0],[1,0],[0,0],[1,0],[0,0],[-4,-4]],[[302147,72004],[-2,-2],[-2,0],[0,1],[0,1],[1,1],[0,2],[1,1],[0,0],[1,2],[5,6],[0,1],[1,1],[1,0],[0,0],[0,-2],[0,0],[0,-1],[-2,-2],[0,0],[-1,-2],[-1,-2],[0,0],[-1,-1],[0,-2],[0,0],[-1,-2]],[[302160,72020],[-1,0],[-2,-1],[0,0],[1,3],[4,3],[1,1],[1,0],[0,0],[1,-1],[0,0],[0,-1],[-2,-2],[0,0],[-2,-1],[-1,-1]],[[302170,72026],[-3,-1],[-1,1],[0,0],[1,1],[1,1],[26,33],[1,-1],[2,-2],[-4,-13],[-3,-4],[0,-1],[-1,0],[-2,-3],[0,0],[-8,-5],[-3,-2],[-1,-1],[-3,-2],[-2,-1]],[[302198,72070],[0,-1],[0,0],[-2,2],[0,2],[0,0],[0,0],[0,2],[0,2],[0,1],[1,1],[3,1],[0,-2],[0,-1],[0,-1],[-1,-4],[-1,-2]],[[302199,72089],[-1,-2],[0,-2],[0,-1],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[-1,4],[-1,5],[0,3],[0,0],[0,1],[1,1],[1,2],[0,0],[1,1],[1,0],[0,0],[1,-1],[0,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3]],[[241094,69638],[-96,-149],[-28,22],[-9,350],[10,46],[44,-19],[105,-106],[-26,-144]],[[237226,76921],[-33,-112],[-167,108],[-79,91],[-164,348],[24,65],[53,0],[90,-146],[205,-106],[45,-72],[26,-176]],[[282109,72806],[2,-4],[8,-10],[0,-1],[0,-1],[0,-2],[0,-6],[-36,-98],[-32,-89],[0,0],[-5,0],[-21,10],[-12,5],[-13,10],[0,0],[-1,2],[0,1],[1,2],[0,4],[1,7],[5,20],[1,3],[14,51],[13,24],[4,7],[63,69],[0,0],[0,0],[1,1],[0,0],[0,0],[1,0],[0,0],[0,0],[0,0],[0,-1],[1,0],[5,-4]],[[281646,71554],[-10,-11],[-53,-42],[-7,-1],[-6,-1],[-7,1],[-7,0],[-6,1],[-3,0],[-21,9],[-16,7],[0,0],[4,7],[13,18],[15,13],[5,4],[57,34],[1,1],[2,1],[0,0],[1,0],[1,0],[0,0],[3,0],[1,0],[1,0],[0,0],[13,-1],[11,-3],[5,-2],[4,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[0,0],[0,-1],[1,0],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-1,-1],[-5,-26]],[[281984,72494],[0,-1],[0,0],[0,-1],[-3,-17],[-9,-45],[-4,-8],[-9,-17],[-1,-1],[0,0],[-1,-1],[0,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,0],[-1,0],[-2,0],[-1,0],[0,0],[0,0],[0,0],[-2,2],[0,1],[-41,80],[-2,25],[1,5],[3,10],[8,18],[5,10],[14,21],[18,22],[1,1],[0,1],[2,2],[1,0],[0,1],[1,0],[0,0],[0,0],[1,-1],[0,0],[1,-2],[1,-1],[0,0],[0,-1],[1,-2],[3,-4],[1,-1],[1,-2],[0,-1],[1,-3],[0,-1],[15,-87]],[[281975,74015],[1,0],[32,0],[1,0],[1,-1],[1,0],[3,-1],[2,-1],[9,-6],[0,-1],[1,-1],[0,0],[0,0],[0,-1],[0,0],[1,-5],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[-4,-10],[-3,-6],[-1,0],[-2,-1],[-5,-2],[-3,-1],[-49,1],[0,0],[-6,8],[-1,1],[0,0],[-1,2],[-2,7],[-1,5],[0,1],[0,2],[-1,8],[0,1],[0,2],[2,2],[1,0],[1,1],[23,0]],[[282127,75364],[-1,-1],[-9,1],[0,0],[-1,0],[-1,1],[-1,0],[-7,11],[0,1],[0,0],[-1,8],[0,2],[0,0],[0,2],[0,1],[0,1],[0,1],[0,0],[1,1],[0,0],[3,9],[1,2],[0,1],[1,0],[0,2],[2,0],[1,1],[0,0],[5,1],[0,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,0],[1,-1],[6,-9],[1,-1],[1,-2],[1,-4],[1,-2],[0,0],[0,-1],[0,-1],[0,-1],[1,-3],[0,0],[-1,-2],[0,-5],[0,0],[-1,-1],[0,0],[0,0],[0,0],[-1,-1],[-7,-10],[-1,-1],[0,0]],[[282088,76018],[1,0],[2,-1],[0,0],[1,-1],[1,-1],[1,0],[1,-1],[3,-5],[1,-1],[0,0],[0,-2],[1,-5],[0,-5],[1,-7],[0,-8],[0,-1],[0,-1],[-1,-2],[-4,-11],[-3,-8],[-2,-5],[0,0],[-47,-49],[0,0],[-1,13],[-1,14],[8,46],[5,30],[1,2],[1,1],[0,1],[2,2],[0,0],[4,3],[3,3],[1,1],[1,0],[1,1],[1,0],[1,0],[0,0],[2,0],[2,1],[8,-3],[5,-1]],[[281977,76735],[1,0],[1,-1],[3,-1],[8,-4],[10,-10],[1,-1],[2,-3],[1,-2],[1,-9],[0,-7],[1,-12],[0,-1],[0,-2],[0,-2],[-8,-17],[-4,-8],[-16,-14],[-11,10],[-2,3],[-1,2],[-6,14],[-4,11],[-1,6],[-2,11],[0,1],[0,1],[0,1],[0,0],[1,4],[0,2],[5,14],[3,6],[2,5],[1,1],[1,1],[2,3],[2,1],[1,1],[2,0],[1,0],[1,0],[0,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1]],[[6626,40779],[20,-7],[26,-29],[12,-18],[18,-27],[41,-72],[4,-9],[29,-80],[1,-17],[0,-2],[-14,-56],[-16,-60],[-35,2],[-29,1],[-59,-4],[-2,0],[0,0],[-85,-21],[-12,-2],[-45,-7],[-8,4],[-15,7],[-14,18],[-7,9],[-48,72],[-90,134],[4,87],[0,0],[314,76],[4,1],[6,0]],[[7083,40378],[237,-120],[99,-82],[0,0],[4,-7],[7,-12],[1,-12],[1,-1],[0,-4],[0,0],[0,-2],[1,-5],[-1,-1],[0,0],[-2,-8],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,-5],[-4,-8],[0,0],[-208,4],[-25,1],[-17,1],[-40,5],[-91,32],[-17,6],[0,0],[-44,22],[-84,92],[-5,7],[-1,1],[0,0],[-8,23],[0,5],[0,1],[16,21],[2,3],[3,2],[1,1],[1,2],[6,6],[2,2],[0,0],[1,1],[6,3],[0,1],[1,0],[2,1],[33,13],[54,20],[1,1],[1,0],[2,0],[1,1],[11,2],[5,1],[39,1],[0,0],[15,-5]],[[101419,75744],[0,0],[2,0],[2,0],[40,-2],[2,0],[0,0],[2,0],[1,-1],[1,0],[11,-7],[5,-3],[1,-3],[0,-1],[-1,-2],[-1,-6],[-1,-1],[0,-2],[-4,-2],[-9,-7],[-18,-8],[-5,-1],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[-2,3],[-2,2],[-1,2],[-3,5],[-14,22],[-2,12]],[[102013,74506],[9,-26],[10,-30],[11,-74],[0,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,0],[-1,-1],[-3,-6],[-2,-2],[0,-1],[-1,-1],[0,0],[-1,0],[-1,-1],[-1,-1],[-3,-3],[0,0],[-1,0],[-3,-1],[-1,-1],[-2,-1],[-6,0],[-8,1],[-3,1],[-1,1],[-3,2],[0,0],[-7,5],[-3,2],[-1,1],[-1,0],[-1,1],[-7,9],[-14,27],[-2,16],[0,9],[-1,7],[14,36],[15,40],[2,4],[0,0],[1,1],[0,0],[1,-1],[0,0],[5,-2],[10,-4],[1,0],[1,-1]],[[103054,72237],[16,-25],[22,-35],[52,-125],[9,-13],[15,-23],[12,-39],[14,-57],[3,-16],[0,-2],[0,-21],[0,0],[-7,-15],[-18,-38],[-13,-10],[-3,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-7,2],[-1,0],[0,0],[-1,0],[0,0],[-16,11],[-105,72],[-130,225],[-1,1],[-1,2],[-1,3],[-7,15],[0,1],[0,1],[-1,1],[-1,3],[-3,6],[-33,110],[-1,2],[-1,3],[0,3],[-1,2],[0,2],[0,5],[0,0],[0,2],[0,1],[0,0],[0,2],[0,0],[3,16],[0,1],[0,1],[3,5],[1,2],[1,3],[1,3],[2,2],[0,2],[3,3],[1,3],[1,1],[5,5],[2,2],[0,0],[0,0],[1,1],[4,2],[3,1],[1,1],[1,0],[31,13],[2,0],[0,0],[2,0],[0,0],[4,0],[1,0],[1,-1],[0,0],[1,0],[4,-1],[3,-1],[54,-37],[38,-39],[40,-41]],[[194905,41652],[45,-89],[38,-141],[-4,-131],[-36,-22],[-23,0],[-17,8],[-26,78],[19,1],[-44,180],[-2,2],[-4,5],[-1,1],[0,4],[0,2],[1,1],[11,48],[31,45],[9,9],[1,0],[1,0],[1,-1]],[[195067,41513],[1,-1],[1,-3],[0,-2],[0,-3],[0,-3],[-1,-9],[0,-1],[-1,-2],[-9,-8],[-5,-2],[-6,16],[-3,15],[3,5],[12,19],[1,-1],[1,-1],[5,-16],[1,-3]],[[297992,33190],[14,-13],[59,-51],[36,-22],[23,-14],[8,3],[1,1],[0,0],[0,0],[0,1],[0,1],[1,6],[0,1],[0,0],[-1,4],[-1,5],[0,1],[-1,1],[0,2],[0,0],[219,-72],[261,-244],[205,-192],[600,-665],[209,-148],[80,-66],[123,-101],[523,-470],[8,-8],[25,-23],[79,-186],[-7,-49],[-22,-54],[-33,-29],[0,0],[-19,-7],[-30,-11],[-95,30],[-42,13],[-244,143],[-258,202],[-8,64],[-1,12],[-1,1],[-2,6],[-1,1],[0,2],[-1,1],[-1,2],[-7,6],[-12,10],[-22,17],[-15,12],[-351,193],[-18,11],[-98,38],[-16,10],[-4,2],[-14,10],[-199,141],[-79,82],[-281,352],[-17,21],[-241,277],[-136,151],[0,0],[-22,39],[-101,183],[-37,85],[-45,103],[-125,296],[0,0],[134,-117]],[[300926,30480],[-4,-15],[-3,-10],[-1,-1],[0,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,0],[-2,-1],[-12,1],[-14,2],[-1,1],[0,1],[-2,2],[1,3],[3,18],[14,21],[10,-1],[9,-7],[5,-4],[0,0],[0,0],[1,-3],[1,-1]],[[300890,30577],[16,-10],[1,-1],[0,0],[1,-1],[2,-1],[3,-7],[3,-5],[1,-3],[1,0],[0,-1],[3,-7],[0,-2],[1,-1],[0,-2],[1,-4],[0,-1],[1,-2],[-2,-15],[-2,-14],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-2,2],[-1,1],[-15,-4],[-7,-1],[0,0],[-1,-2],[-1,-1],[-14,-16],[-1,-2],[-1,-1],[0,0],[-4,-4],[0,0],[-1,-1],[-3,0],[-2,0],[-6,-1],[0,0],[-1,0],[-5,1],[-3,1],[-3,1],[-22,9],[-15,17],[-4,19],[0,13],[-1,11],[1,11],[2,16],[0,0],[25,3],[56,7]],[[300281,30783],[21,-6],[0,0],[0,0],[2,-2],[2,-4],[1,-2],[0,-2],[0,-1],[1,-7],[-1,-14],[-1,-2],[0,0],[0,-1],[0,-1],[-1,-1],[-10,-24],[0,-1],[-1,-1],[-5,-7],[-1,-2],[-2,-2],[-1,-1],[0,0],[-4,-3],[-2,-1],[0,0],[-25,7],[0,1],[-1,0],[-1,1],[0,1],[-4,16],[-1,3],[0,0],[5,29],[11,12],[11,13],[2,2],[1,0],[2,0],[2,0],[0,0]],[[299630,31131],[-1,0],[-1,0],[-1,0],[-2,0],[-3,1],[-2,1],[-1,1],[-2,0],[-1,1],[0,0],[-1,1],[-2,2],[0,0],[-1,1],[-10,22],[0,1],[0,0],[-1,3],[-1,3],[1,3],[0,2],[14,14],[0,0],[2,-1],[1,-1],[0,0],[1,-1],[3,-3],[0,-1],[0,-1],[3,-16],[6,-30],[-1,-1],[0,-1]],[[299630,31226],[0,0],[1,0],[0,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-4],[0,0],[0,-2],[0,0],[0,-1],[0,0],[0,0],[0,-1],[-6,-6],[-11,-10],[-7,-6],[0,0],[-13,6],[-3,14],[-4,19],[0,0],[2,4],[0,0],[1,1],[0,0],[35,-11]],[[301374,31833],[43,-35],[-1,-39],[-3,-102],[-8,-19],[-1,-1],[0,0],[-73,-32],[0,0],[-3,0],[-35,2],[-9,6],[-82,60],[-7,5],[-8,7],[-36,199],[0,0],[14,10],[26,19],[95,18],[88,-98]],[[301168,32185],[-2,-3],[-1,0],[-3,-6],[-1,-1],[0,0],[-1,0],[-2,2],[-6,4],[-10,8],[-5,4],[-1,1],[-2,2],[-2,3],[-1,2],[0,3],[-1,2],[0,1],[0,6],[0,1],[1,2],[0,1],[0,1],[1,3],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,0],[5,-5],[0,-1],[2,-1],[8,-11],[8,-11],[1,-2],[0,-2]],[[300692,32645],[-4,-35],[-3,-47],[-3,-40],[-1,-43],[-1,-17],[1,-11],[2,-20],[94,-58],[11,-24],[43,-92],[0,0],[-7,-24],[-20,-75],[-1,-1],[0,0],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-9,-5],[-15,-8],[-14,-6],[-8,-3],[0,0],[-6,1],[-2,1],[-3,1],[0,0],[-42,28],[-126,84],[-7,6],[-4,3],[-12,14],[-19,21],[-28,52],[-32,61],[22,162],[13,99],[42,16],[63,24],[3,0],[0,0],[1,0],[2,1],[2,0],[14,-7],[7,-3],[5,-2],[1,0],[1,-1],[0,0],[17,-15],[1,0],[2,-2],[8,-9],[18,-20]],[[300111,33016],[33,-55],[-22,-129],[-12,-71],[-25,-58],[-24,-26],[-1,-2],[-8,-5],[-24,-12],[-1,-1],[-23,-4],[-2,2],[-1,1],[18,29],[2,2],[45,91],[21,90],[9,42],[0,1],[1,1],[0,2],[1,5],[2,17],[1,10],[0,1],[0,1],[0,3],[-1,3],[0,3],[0,1],[-1,1],[0,2],[-2,3],[-12,29],[-4,9],[0,0],[-11,-8],[0,0],[2,15],[25,12],[1,0],[2,0],[3,1],[1,-1],[2,0],[1,0],[3,-4],[1,-1]],[[298045,33290],[-3,-2],[-4,-2],[-5,0],[-5,-1],[-2,1],[-3,0],[-1,1],[-1,2],[-25,31],[-15,30],[6,24],[8,5],[0,0],[35,-57],[7,-12],[8,-20],[0,0]],[[297697,33360],[-1,-1],[-1,-2],[0,0],[0,0],[0,0],[-3,1],[-3,2],[-3,3],[-1,0],[-1,0],[-10,13],[-9,12],[0,1],[0,0],[-1,2],[-1,1],[0,5],[0,0],[0,1],[1,1],[0,0],[2,5],[0,0],[2,2],[1,1],[1,1],[2,2],[1,0],[3,2],[2,0],[0,0],[1,1],[1,0],[0,0],[1,0],[1,0],[1,0],[3,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,0],[0,0],[1,-1],[5,-6],[2,-4],[1,-2],[0,0],[1,-1],[0,0],[0,-1],[-2,-30],[-1,-2],[0,-1],[0,-2]],[[297827,33429],[16,-40],[0,0],[1,-2],[3,-16],[-3,-4],[-2,-3],[0,0],[0,-1],[-3,-4],[0,0],[-1,-1],[0,-1],[0,0],[-1,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-10,2],[-6,2],[-7,11],[-4,5],[1,37],[1,19],[0,2],[1,2],[0,1],[1,3],[0,2],[1,1],[0,0],[1,0],[1,1],[0,0],[2,0],[1,0],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[3,-3],[1,-2],[2,-2],[1,-3],[0,0],[0,0],[0,-1]],[[297586,33737],[1,-7],[3,-13],[0,-2],[2,-8],[0,0],[-24,-15],[0,0],[-12,17],[-1,2],[-1,1],[-3,7],[-10,25],[-9,24],[-11,94],[0,1],[1,2],[0,0],[0,0],[1,0],[2,1],[1,-2],[3,-3],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[2,-4],[17,-31],[1,0],[0,0],[1,-3],[1,-1],[4,-7],[1,-2],[25,-69]],[[297513,33896],[-13,-6],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[-4,5],[-10,33],[3,4],[6,8],[0,0],[12,-19],[13,-23],[0,-1],[0,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,0]],[[294337,34202],[-2,-1],[0,-1],[-4,-3],[-4,1],[-4,2],[-1,1],[0,1],[-1,1],[-2,5],[-1,3],[-2,6],[-1,2],[0,1],[0,1],[0,1],[-1,25],[-1,44],[1,51],[0,3],[7,46],[0,1],[0,1],[0,2],[5,31],[3,17],[1,2],[0,1],[0,0],[1,1],[3,5],[3,1],[2,1],[0,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[0,0],[0,-1],[1,0],[2,-2],[0,-1],[1,-2],[1,-1],[0,-2],[2,-10],[2,-7],[0,0],[0,-2],[0,-3],[5,-46],[0,-1],[0,-2],[-2,-39],[0,0],[-1,-3],[0,-4],[0,-1],[0,-1],[0,-5],[-1,-5],[0,-7],[-6,-59],[-1,-2],[0,0],[0,-2],[-2,-12],[0,-2],[0,0],[-1,-5],[-1,-6],[-2,-4],[0,-3],[-1,-2],[0,-2],[0,0],[-2,-4],[-1,-1],[-1,-3]],[[8811,34622],[0,0],[11,-5],[2,0],[0,-2],[2,-3],[0,-1],[1,0],[23,-99],[-13,-44],[-31,-40],[-10,-13],[0,0],[-6,-4],[-3,-2],[0,0],[-20,-6],[-6,1],[-4,1],[-22,12],[-1,2],[-6,8],[-15,47],[12,66],[4,21],[4,15],[13,24],[2,4],[1,1],[2,2],[3,6],[3,2],[1,1],[0,1],[1,0],[1,1],[2,1],[1,1],[9,2],[15,3],[2,0],[3,0],[5,0],[2,0],[1,0],[0,0],[1,0],[3,-1],[3,-1],[4,-1]],[[301426,3502],[4,-34],[0,0],[-91,-14],[0,0],[1,2],[3,4],[-31,27],[0,0],[-47,-83],[115,-49],[14,-1],[13,-1],[16,2],[23,-86],[0,0],[-175,-67],[-217,-26],[-27,-12],[-96,-75],[-2,-2],[-1,-2],[0,0],[17,95],[0,0],[28,26],[94,85],[42,131],[4,11],[0,38],[-15,33],[-35,77],[12,81],[1,6],[0,0],[76,12],[61,9],[27,-12],[49,-22],[137,-153]],[[2924,7024],[0,0],[149,-56],[11,-4],[0,0],[-73,11],[-26,4],[0,0],[-4,-22],[-3,-13],[0,-2],[0,-4],[59,-117],[45,-92],[49,-58],[6,-7],[0,0],[-25,-38],[0,0],[-113,-56],[0,0],[-38,86],[-108,243],[60,105],[11,20]],[[305554,10580],[73,-19],[19,-15],[12,-9],[0,0],[-41,19],[-38,11],[-29,6],[-63,1],[-57,2],[-61,-107],[-28,-49],[0,0],[30,-67],[6,-14],[12,-15],[28,-35],[87,-64],[11,0],[34,0],[96,-258],[7,-86],[81,-168],[79,-46],[189,204],[187,89],[187,89],[0,0],[-41,-63],[-40,-62],[105,-168],[175,67],[0,0],[-43,23],[-48,26],[0,0],[6,22],[35,125],[250,14],[0,0],[-68,-129],[-46,-88],[-177,-45],[-39,-40],[0,0],[205,-13],[20,-2],[-57,-21],[-54,-90],[-2,-11],[-16,-91],[18,-69],[3,-5],[5,-9],[33,-41],[145,-176],[-699,-977],[-140,-301],[-59,-72],[-232,-137],[-227,-348],[0,0],[-37,-292],[0,0],[161,45],[154,-41],[68,-79],[22,-25],[0,0],[-32,-92],[-6,-17],[-14,-8],[-70,-42],[-247,67],[-112,-15],[-229,-32],[-579,-281],[-90,-65],[-175,-129],[-38,-48],[-37,-46],[-85,-344],[-103,-414],[-375,-759],[-46,-144],[0,0],[67,24],[24,9],[0,0],[17,-35],[0,0],[-179,-56],[-136,-43],[-70,-82],[-92,-174],[-435,-326],[0,0],[6,-5],[7,-5],[0,0],[46,7],[7,1],[4,1],[0,0],[-106,-91],[-84,-23],[-349,-94],[-179,11],[-288,88],[-156,49],[-130,151],[0,0],[-79,21],[-333,90],[-389,45],[-461,54],[-79,94],[0,0],[5,7],[69,111],[0,0],[-105,38],[-104,-20],[-23,-5],[0,0],[-5,22],[-27,146],[0,0],[6,16],[14,32],[114,44],[188,75],[0,0],[-56,146],[-23,-2],[-25,-2],[0,0],[-14,30],[0,0],[110,258],[58,43],[0,0],[100,-51],[51,-27],[-58,172],[-2,4],[8,53],[121,145],[145,172],[238,168],[316,37],[0,0],[-45,78],[105,275],[303,364],[339,114],[210,70],[641,406],[477,376],[-5,5],[-11,12],[-18,-2],[-11,-13],[-5,-5],[0,0],[57,77],[161,75],[114,53],[226,178],[59,72],[107,129],[111,185],[10,22],[74,165],[102,350],[84,289],[0,0],[158,24],[39,6],[142,130],[32,49],[121,186],[38,127],[4,15],[0,0],[4,426],[0,0],[10,14],[46,67],[197,162],[68,46],[198,134],[161,-11]],[[305828,16866],[17,-123],[4,-28],[26,3],[32,3],[43,13],[56,19],[174,-67],[110,-42],[100,12],[58,6],[74,-68],[0,0],[-30,-81],[-11,-27],[0,0],[145,-120],[3,-3],[53,31],[0,0],[-5,6],[-15,19],[50,22],[20,-17],[58,-48],[23,-85],[14,-51],[185,-448],[0,0],[-118,63],[-89,48],[0,0],[-10,-64],[-6,-41],[374,-537],[0,-56],[0,-30],[-56,-33],[-3,-2],[25,-124],[61,-291],[-5,-31],[-57,-2],[-4,0],[0,0],[-10,10],[-47,45],[0,0],[27,-132],[0,0],[-2,28],[18,-2],[2,0],[0,0],[62,33],[51,-3],[42,-2],[7,-11],[46,-35],[53,-40],[114,-87],[148,-111],[194,55],[-37,351],[-45,81],[-88,160],[0,0],[5,8],[29,49],[0,0],[23,-15],[120,-76],[66,-230],[60,-32],[118,-62],[62,-208],[-18,-193],[55,-412],[19,-43],[11,-24],[93,-21],[90,-19],[0,0],[-7,-55],[1,-6],[0,-1],[59,13],[104,-36],[99,-35],[288,-128],[231,-102],[-3,-16],[-3,-20],[77,-23],[25,7],[199,53],[35,22],[63,40],[226,274],[94,77],[89,72],[108,-5],[146,-5],[123,-77],[30,-19],[-2,-32],[-12,-163],[-24,-140],[-88,-494],[-259,-322],[-38,-156],[-69,-278],[0,0],[-212,-1],[-202,-1],[-323,-146],[0,0],[-107,-160],[-25,-148],[-3,-15],[0,0],[53,-79],[71,-107],[-125,-470],[-355,-530],[-52,-92],[-322,-571],[-52,-68],[-39,-51],[-265,-222],[-57,-48],[-214,-131],[0,0],[-59,3],[-13,0],[0,0],[-299,413],[-43,6],[-26,-27],[-30,-31],[3,9],[48,199],[194,302],[44,116],[69,180],[31,254],[-36,158],[-21,90],[-105,118],[-106,120],[-838,398],[0,0],[-9,9],[-130,136],[-2,9],[-32,132],[0,0],[1,2],[34,94],[44,44],[1,0],[77,47],[211,129],[199,17],[45,47],[79,83],[29,62],[6,12],[11,45],[120,567],[29,137],[67,-14],[47,72],[0,0],[-23,62],[-79,218],[33,89],[0,0],[-155,528],[0,0],[2,30],[12,197],[0,0],[55,-96],[113,110],[0,0],[-73,51],[-27,19],[0,0],[16,19],[17,20],[0,0],[0,1],[-1,2],[34,3],[0,0],[9,24],[-314,-16],[-43,127],[-21,64],[-25,45],[-1,18],[-9,104],[81,-36],[-19,344],[0,0],[-26,9],[0,0],[-1,0],[-16,-46],[0,0],[-45,62],[-2,3],[55,200],[0,0],[-125,5],[-145,-112],[-56,-43],[-530,782],[-22,48],[50,111],[0,0],[14,14],[22,21],[11,-8],[41,-31],[0,0],[20,25],[39,69],[0,0],[4,34],[0,0],[-26,0],[-28,0],[-89,-108],[-81,-99],[0,0],[-150,213],[-22,78],[-21,77],[0,0],[9,15],[38,63],[-25,137],[-43,72],[-87,144],[-130,179],[-41,56],[132,160],[11,14],[0,0],[4,-57],[3,-45],[-20,-74],[54,-36],[117,-193],[58,-97]],[[300397,55194],[2,-2],[0,0],[2,-2],[0,-2],[0,-3],[1,-3],[-1,-4],[0,-1],[-1,-4],[-9,-22],[-1,-2],[-1,-1],[0,0],[-4,-3],[-1,-1],[-1,0],[0,0],[-3,0],[-1,-1],[-2,1],[0,0],[-3,0],[-4,3],[-1,1],[-1,1],[-1,1],[-1,1],[0,0],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,5],[2,3],[0,2],[1,1],[1,3],[0,0],[0,0],[1,1],[6,9],[11,13],[2,0],[0,0],[1,1],[2,0],[1,0],[0,0],[1,-1],[2,0],[3,-1],[1,-1],[0,0]],[[85194,63963],[-6,-40],[0,0],[-44,10],[-69,16],[-104,116],[0,0],[-20,69],[59,77],[49,65],[0,0],[9,-4],[13,-7],[113,-302]],[[44763,28599],[1,-4],[2,-11],[3,-14],[0,-2],[0,-3],[1,-2],[1,-9],[0,-4],[0,-4],[0,-3],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-7],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,0],[0,0],[-2,1],[-1,0],[0,0],[-8,3],[-17,6],[-5,3],[-1,1],[-1,1],[0,0],[-15,30],[0,3],[-2,8],[0,0],[-1,5],[0,1],[1,2],[0,1],[1,6],[0,1],[3,4],[4,10],[9,8],[29,4],[2,-25]],[[203908,32470],[47,-6],[3,-1],[2,0],[3,0],[23,-4],[1,0],[37,-17],[18,-9],[2,-1],[1,-1],[1,0],[3,-1],[2,-3],[15,-21],[1,-2],[123,-221],[0,-1],[1,-1],[1,-4],[4,-19],[2,-15],[-22,-172],[-3,-13],[-1,-3],[0,-2],[-4,-3],[-6,-6],[-2,-1],[-1,-1],[-1,-1],[-22,-8],[-3,-1],[-95,-24],[-26,3],[-15,3],[-65,21],[-41,15],[-46,27],[-64,47],[-22,17],[-30,39],[-11,24],[-44,126],[9,92],[47,106],[64,33],[76,20],[38,-11]],[[261146,76246],[252,-110],[98,18],[104,108],[0,4],[115,-236],[-110,-425],[47,-311],[45,-162],[135,-91],[74,-193],[-25,-274],[-205,-638],[-130,-111],[-293,-159],[-132,-147],[-150,-603],[180,-788],[38,-297],[104,-326],[146,-146],[252,-99],[60,81],[4,53],[-31,236],[100,58],[226,-3],[31,17],[-3,54],[143,-71],[169,-236],[43,-190],[-42,-136],[41,-35],[120,-17],[70,62],[47,250],[65,-101],[420,-143],[36,-89],[-335,11],[-45,-161],[401,-540],[152,-97],[-24,-344],[-51,-172],[-79,2],[-100,128],[-24,92],[9,146],[32,-13],[44,-12],[63,29],[12,98],[-326,-65],[-256,127],[-194,496],[-335,377],[-187,155],[-86,-21],[54,-211],[97,-236],[-74,-239],[-28,104],[-132,194],[-509,439],[-217,-127],[-42,-173],[-116,-86],[-179,6],[-126,161],[-251,29],[-49,156],[-4,316],[315,290],[10,18],[1,38],[-26,116],[-105,129],[-250,89],[-9,-25],[-3,-79],[64,-283],[-39,-67],[-92,8],[-56,29],[-71,195],[-22,210],[-194,172],[-103,561],[19,38],[-52,392],[-43,114],[-70,-53],[-16,38],[23,409],[27,44],[79,30],[13,-152],[203,-236],[140,29],[92,109],[-74,217],[-20,308],[104,550],[21,320],[-13,128],[-3,11],[-5,7],[-6,1],[-5,-9],[6,245],[40,313],[93,461],[56,100],[170,124],[105,-89],[251,-6],[306,-217]],[[260778,62490],[42,-35],[115,1],[-90,-133],[-291,7],[-38,35],[17,91],[100,83],[75,11],[70,-60]],[[261642,62959],[-181,-53],[-147,230],[241,140],[174,-103],[-87,-214]],[[265218,65726],[17,-109],[-129,-166],[-23,-182],[146,-200],[32,-504],[93,-133],[81,-193],[29,-345],[-128,-313],[-141,-106],[-67,39],[-45,-53],[56,-111],[11,-147],[-36,-410],[-92,247],[-3,95],[-85,410],[-118,364],[-173,-101],[-217,-453],[-15,-126],[12,-107],[75,-21],[94,-113],[100,-302],[-2,-188],[-33,-124],[-216,-401],[-103,12],[-92,279],[-86,46],[-47,-25],[-186,48],[-443,263],[-98,84],[-120,195],[-73,442],[92,412],[76,60],[62,160],[-7,80],[-190,258],[-273,183],[-102,44],[-132,-44],[-36,-236],[-74,-94],[-87,85],[-7,26],[-68,115],[-248,-222],[3,6],[-10,242],[-89,46],[-74,-9],[-77,-62],[-91,-150],[-159,-446],[1,-90],[-83,-216],[-40,-24],[-147,86],[-31,196],[204,469],[-25,223],[102,222],[104,86],[297,91],[259,149],[79,296],[352,140],[66,-71],[20,84],[84,-16],[56,-50],[90,-288],[12,-197],[-128,-126],[67,16],[241,145],[370,431],[155,-114],[55,21],[31,476],[213,-16],[343,75],[83,45],[-9,278],[-101,436],[11,126],[31,46],[45,-21],[152,-214],[198,-197],[359,-542]],[[263440,66463],[-174,-10],[-173,53],[-63,140],[50,147],[145,78],[136,209],[104,20],[47,-43],[0,-3],[0,-2],[153,-303],[62,-47],[-169,-178],[-118,-61]],[[262499,65889],[-142,-45],[-63,56],[-437,643],[80,352],[149,6],[114,80],[31,102],[38,498],[47,245],[152,169],[62,29],[258,-98],[25,-81],[-280,-942],[-85,-381],[60,-167],[110,-179],[-12,-120],[-107,-167]],[[262659,66271],[-46,-10],[59,478],[402,1002],[101,383],[74,-151],[-6,-6],[-1,-367],[-179,-424],[-177,-280],[-133,-469],[-94,-156]],[[259314,67905],[68,-251],[33,1],[85,-151],[-10,-41],[-103,-113],[-104,-20],[-116,-75],[-69,-126],[-281,-243],[-139,-48],[-37,-350],[-202,-355],[-86,-85],[-212,-87],[-111,-282],[-186,-174],[-221,-138],[-249,-250],[-28,-45],[-26,49],[24,120],[68,171],[285,413],[223,242],[125,14],[336,486],[315,370],[193,376],[97,59],[26,-35],[157,258],[16,104],[74,18],[12,136],[-28,209],[8,275],[107,54],[-44,-486]],[[264089,68186],[188,-844],[-4,-156],[-169,-216],[3,-44],[-195,131],[-40,66],[6,420],[34,114],[-16,118],[-163,266],[-44,-50],[-123,48],[-100,570],[32,37],[203,-249],[352,-5],[36,-206]],[[263726,68558],[-108,-11],[-61,103],[1,31],[-51,100],[83,31],[93,-37],[71,-152],[-28,-65]],[[262121,67787],[-704,-328],[104,729],[52,619],[-31,44],[-181,41],[41,140],[41,32],[64,-57],[732,-498],[14,-6],[214,-18],[-51,-274],[-52,-45],[-214,-204],[17,-92],[-46,-83]],[[259675,69501],[222,-224],[37,12],[9,61],[35,-66],[-83,-113],[-92,-17],[-153,213],[-13,116],[38,18]],[[263107,69389],[134,-242],[36,-317],[-243,224],[-167,240],[-148,65],[-133,-40],[-4,333],[40,131],[31,-28],[7,-76],[242,-130],[205,-160]],[[264231,69768],[106,-119],[21,-63],[-19,-104],[81,-35],[62,-195],[-21,-282],[7,-248],[87,-223],[-2,-261],[-22,-83],[-267,-1],[-187,284],[-48,429],[-214,279],[-108,69],[-200,332],[-23,92],[24,102],[275,-33],[142,25],[57,40],[53,6],[73,-46],[103,56],[20,-21]],[[261618,69878],[-113,-592],[-53,50],[4,56],[9,-31],[13,-8],[23,51],[-71,58],[64,283],[43,89],[81,44]],[[260141,70838],[250,-58],[201,37],[197,-86],[253,-310],[28,-92],[-13,-368],[1,-204],[-144,-265],[-45,-28],[-159,20],[10,9],[2,23],[-192,360],[-185,540],[-251,281],[-39,-14],[-33,49],[32,87],[87,19]],[[261600,70693],[-90,-214],[-147,110],[-32,69],[-4,89],[50,137],[198,-142],[25,-49]],[[263518,70922],[-122,-61],[-124,65],[-31,63],[88,447],[55,33],[104,-210],[76,-144],[-46,-193]],[[261515,72176],[-81,-105],[-24,22],[-71,337],[23,97],[74,18],[69,-29],[-7,-79],[-42,-67],[27,-72],[20,-16],[12,-106]],[[272435,64187],[-18,-89],[-26,-97],[-9,-33],[-27,-33],[-6,-1],[-1,0],[0,0],[-2,3],[-6,11],[-6,10],[-22,55],[-13,32],[7,37],[7,42],[33,91],[7,18],[2,6],[65,108],[0,0],[6,-7],[10,-11],[-1,-142]],[[272003,63480],[1,0],[1,-1],[1,0],[1,0],[2,-4],[3,-6],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,-4],[0,-1],[-1,0],[0,0],[0,-1],[-12,-16],[-3,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[0,3],[0,1],[0,0],[1,2],[0,1],[0,1],[3,9],[3,12],[2,5],[1,7],[0,0],[6,0],[1,0],[0,0],[1,0],[2,0]],[[272103,63566],[-21,-27],[-2,-2],[0,0],[-1,0],[0,1],[-1,5],[-1,2],[0,10],[0,9],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[1,1],[1,3],[0,1],[0,1],[9,13],[15,23],[9,5],[0,0],[1,0],[0,0],[1,0],[0,0],[0,0],[1,-1],[0,-1],[0,-2],[-1,-6],[-11,-44]],[[272214,63752],[-1,-6],[-2,-21],[-2,-3],[-12,1],[-11,1],[-2,0],[-1,1],[0,0],[-1,2],[0,1],[-1,0],[-1,4],[-1,1],[0,1],[0,1],[0,2],[-2,15],[1,1],[0,1],[0,3],[0,0],[2,0],[1,1],[0,0],[1,0],[13,4],[12,3],[3,0],[0,0],[0,0],[2,-5],[1,-4],[0,-2],[0,-2],[1,0],[0,0]],[[272273,63904],[0,-3],[0,-3],[-5,-30],[0,-4],[-53,-51],[-3,0],[-3,1],[-3,1],[-1,2],[-12,16],[-6,7],[-7,11],[0,0],[1,0],[1,0],[0,0],[1,-1],[1,0],[1,0],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[6,-6],[0,0],[1,-2],[4,-5],[5,-1],[6,-2],[0,0],[13,14],[18,25],[14,17],[7,18],[-1,2],[0,3],[0,1],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[-1,1],[-2,2],[0,1],[0,0],[0,0],[-1,1],[-1,1],[-2,6],[0,0],[16,-14],[0,0],[2,-3],[0,0],[0,-1],[1,-1],[0,-1],[0,-2]],[[272288,63958],[21,-3],[4,-22],[2,-14],[0,0],[-20,16],[-18,14],[-3,2],[-1,1],[-7,7],[-1,2],[0,0],[-1,0],[0,2],[-1,0],[0,2],[-1,2],[2,0],[0,0],[1,-1],[1,0],[2,0],[10,-4],[1,0],[1,-1],[3,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[2,-1]],[[288981,42796],[-191,-13],[-10,22],[-6,11],[-23,16],[-18,13],[-199,170],[-44,37],[0,0],[-7,36],[-4,19],[0,0],[29,21],[423,-218],[39,-52],[23,-32],[-12,-30],[0,0]],[[286387,44929],[335,-317],[0,0],[35,64],[75,24],[0,0],[14,-86],[-62,-192],[0,0],[-100,32],[-85,28],[-132,296],[0,0],[-49,55],[-26,-11],[0,0],[-1,20],[-4,87],[0,0]],[[286538,45007],[-6,-4],[-65,-38],[-319,47],[0,0],[-23,188],[0,0],[35,153],[112,-67],[90,-9],[27,-2],[0,0],[105,-115],[44,-153]],[[286063,45293],[-1,-6],[-37,-145],[-165,118],[-46,88],[7,35],[9,46],[43,55],[56,20],[33,-23],[10,-6],[47,-52],[34,-100],[10,-30]],[[288117,45709],[225,-164],[-54,-87],[0,0],[-109,-27],[-60,41],[-88,60],[27,94],[-173,69],[-29,-8],[-26,-8],[0,0],[0,-27],[0,-8],[-1,3],[-28,88],[52,23],[25,11],[180,-45],[59,-15]],[[290895,48271],[-5,-12],[-38,-84],[0,0],[-10,60],[0,0],[-82,-25],[0,0],[-83,-110],[0,0],[-16,3],[-147,28],[-9,7],[-144,112],[-107,148],[-39,55],[0,0],[-5,40],[-35,277],[0,0],[-34,28],[-117,97],[-198,287],[-24,191],[40,246],[0,0],[84,-12],[184,-41],[47,-121],[53,-136],[215,-338],[176,-130],[164,-184],[20,-38],[53,-99],[40,-173],[17,-76]],[[284071,49476],[-55,-216],[0,0],[-55,54],[0,0],[-146,358],[0,0],[100,-56],[88,-49],[68,-91]],[[289736,50179],[65,-183],[-14,-238],[-41,-62],[-18,-27],[0,0],[-53,208],[12,185],[-47,-14],[56,76],[40,55],[0,0]],[[287266,51067],[137,-70],[64,-32],[81,94],[7,8],[102,-16],[121,-121],[6,-207],[4,-163],[-39,-183],[-81,-142],[0,0],[-72,-35],[-91,-264],[45,-71],[24,-39],[-9,-86],[-25,-46],[-162,-108],[-104,6],[-247,12],[0,0],[-13,-84],[-16,-102],[-95,-134],[-19,-27],[-58,-54],[-90,-86],[-127,-48],[-38,-14],[0,0],[-13,-1],[-135,-11],[-224,-166],[-188,-96],[-164,-3],[-143,-3],[-38,-6],[-57,-10],[-77,-3],[-81,-3],[0,0],[-110,57],[-85,155],[0,0],[-107,42],[0,0],[-22,2],[-254,23],[0,0],[-73,40],[-454,251],[-69,86],[-2,6],[-10,53],[31,166],[34,31],[27,24],[892,-122],[0,0],[360,35],[78,147],[66,403],[39,20],[24,13],[50,-40],[30,-24],[-75,-69],[-65,-199],[55,-247],[158,-46],[394,61],[237,160],[67,233],[243,262],[0,0],[195,-53],[0,0],[8,7],[46,36],[29,119],[-50,349],[-57,101],[-13,23],[-39,167],[-9,39],[20,16],[5,5],[77,-6],[144,-12]],[[288236,50392],[-5,-4],[-11,-9],[0,0],[-173,457],[1,274],[-138,310],[-176,290],[-120,118],[-42,42],[-148,93],[-217,137],[-456,403],[-160,142],[-145,159],[52,28],[0,0],[254,-218],[68,-58],[273,-152],[364,-276],[80,-60],[19,-28],[104,-148],[455,-456],[10,-10],[230,-323],[39,-45],[22,-194],[-17,-105],[-21,-129],[-142,-238]],[[286111,52839],[-92,-38],[-216,71],[-86,104],[-11,13],[130,96],[55,41],[0,0],[89,-56],[82,-53],[33,-25],[18,-14],[5,-18],[11,-44],[-18,-77]],[[283410,53484],[0,-6],[2,-18],[-20,0],[-3,0],[0,0],[-108,-161],[-267,10],[-196,7],[0,0],[-12,23],[-23,46],[11,141],[269,37],[0,0],[143,-3],[91,-34],[113,-42]],[[98846,75849],[-179,-56],[-135,-43],[-443,68],[-411,-48],[-22,56],[-10,373],[-1,57],[54,123],[0,0],[28,8],[59,19],[464,-34],[548,-40],[137,-61],[69,-32],[17,-71],[22,-91],[-96,-110],[-101,-118]],[[26691,35819],[-1,0],[-4,0],[-3,1],[-6,1],[-4,1],[-51,22],[0,0],[-259,116],[-23,11],[-3,5],[-1,1],[-1,3],[0,1],[-1,2],[-29,114],[-3,12],[1,65],[0,0],[7,6],[13,11],[8,7],[11,9],[28,13],[10,4],[47,16],[5,-1],[13,-1],[106,-66],[20,-12],[98,-144],[49,-72],[1,-3],[0,0],[1,-1],[0,-1],[1,0],[5,-10],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-3],[0,-23],[-1,-9],[-2,-19],[-4,-13],[-1,-3],[-7,-19],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[-1,0],[-1,-2],[-1,0],[-2,-1],[-2,0],[-3,-1],[-7,-1],[-3,-1]],[[30895,24928],[-10,-4],[-1,0],[0,0],[-30,23],[-7,11],[-3,8],[0,21],[0,5],[1,7],[1,3],[1,1],[0,0],[6,2],[7,2],[8,1],[10,2],[6,-1],[5,-2],[11,-3],[7,-10],[1,-38],[0,-2],[-1,-2],[-1,-7],[-2,-9],[-9,-8]],[[27994,29125],[0,0],[-2,0],[-1,0],[-3,1],[0,0],[-17,7],[2,5],[1,3],[11,9],[4,2],[1,1],[13,7],[7,1],[8,1],[1,0],[0,0],[5,-1],[3,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[0,-2],[0,-1],[0,0],[-2,-2],[0,0],[-1,-1],[0,0],[-11,-7],[-25,-18],[0,0],[-4,-1]],[[26456,29658],[-32,-6],[-2,-1],[0,0],[-1,1],[-1,0],[-5,6],[-7,10],[-4,5],[0,2],[0,4],[0,1],[0,0],[1,3],[0,0],[1,3],[1,2],[0,0],[0,0],[2,2],[4,4],[1,1],[0,0],[1,1],[1,1],[1,1],[0,0],[1,1],[2,1],[0,0],[2,1],[4,1],[0,0],[1,1],[18,5],[3,1],[3,0],[2,0],[4,0],[3,0],[1,0],[5,-1],[8,-8],[2,-2],[0,0],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-5],[0,-1],[-1,-3],[0,-3],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-8,-7],[-2,-2],[-3,-1],[-1,-1],[-1,-1],[0,0],[-1,0],[-4,-2]],[[38984,29963],[-2,0],[0,0],[0,0],[-1,0],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[0,0],[-5,3],[-14,10],[0,3],[-1,1],[0,5],[0,1],[0,0],[49,32],[6,4],[0,0],[4,1],[10,3],[-3,-13],[-1,-5],[-26,-42],[-4,-3],[-2,-1],[-1,-1],[-1,0],[-1,0]],[[23512,30501],[-13,-5],[0,0],[-4,3],[-1,1],[-4,4],[-4,8],[-1,2],[-1,1],[0,0],[9,17],[1,1],[3,3],[1,1],[1,1],[0,0],[1,1],[0,0],[1,0],[3,1],[12,-6],[1,-1],[0,0],[1,-1],[0,-1],[1,-1],[1,-2],[1,-2],[0,-1],[1,-5],[0,-1],[0,-1],[0,-3],[-1,-2],[-2,-3],[-2,-3],[0,0],[0,-1],[-2,-2],[-1,-1],[-2,-2],[0,0]],[[24820,30644],[-1,0],[-1,-2],[0,0],[-5,9],[-5,8],[-18,50],[0,1],[0,7],[-1,3],[0,4],[0,2],[0,2],[0,2],[0,1],[0,0],[1,2],[1,2],[1,1],[1,0],[1,1],[0,1],[2,2],[0,0],[0,0],[0,0],[5,-1],[1,0],[1,0],[1,0],[1,-1],[0,0],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[1,-1],[13,-11],[9,-8],[3,-19],[-1,-9],[-3,-19],[-3,-8],[-1,-2],[-4,-6],[-3,-4],[0,-1],[-1,-1],[-1,-1],[-1,-1]],[[34102,31530],[-4,-2],[-3,1],[-5,1],[-1,0],[0,0],[-1,0],[-2,0],[-1,0],[-2,1],[-3,0],[-7,3],[-4,1],[-1,0],[0,1],[-1,0],[-1,0],[-3,2],[-3,4],[-1,1],[-1,2],[0,1],[-1,1],[-3,6],[-1,1],[0,1],[-2,8],[-4,17],[0,3],[0,3],[1,4],[1,3],[0,2],[1,2],[2,4],[0,1],[0,1],[2,2],[0,0],[4,5],[1,1],[0,0],[0,0],[2,1],[3,2],[1,1],[3,1],[3,1],[2,0],[1,1],[3,0],[0,0],[1,0],[0,0],[1,0],[2,-2],[2,-1],[0,0],[35,-63],[0,-3],[-2,-9],[-6,-5],[-5,-4],[-1,0],[-1,0],[0,-1],[-1,0]],[[34274,33834],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-1,28],[0,23],[0,1],[0,2],[0,1],[0,0],[1,2],[1,0],[0,0],[1,1],[0,0],[2,-1],[0,-1],[2,-1],[2,-2],[2,-1],[1,-1],[0,0],[0,0],[1,-1],[3,-2],[6,-5],[2,-1],[2,-3],[4,-5],[0,0],[1,-1],[1,-2],[0,0],[2,-4],[0,-1],[0,0],[1,-3],[1,-3],[0,-2],[-1,-4],[-1,-1],[-4,-7],[-1,0],[-4,-3],[-1,0],[0,0],[-1,-1],[0,0],[-1,0],[0,-1],[-3,-1],[0,0],[-2,-2],[-2,0],[-9,-3],[-2,0],[-1,0]],[[37786,35116],[35,-62],[0,0],[-47,44],[-73,68],[0,0],[8,5],[51,-36],[26,-19]],[[37260,35282],[-1,0],[0,0],[0,0],[-4,4],[-79,89],[-2,3],[-1,1],[-3,3],[-1,2],[1,1],[0,1],[1,3],[0,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[4,-2],[2,-1],[3,-2],[2,-1],[1,-1],[2,-2],[0,0],[2,-1],[2,-1],[1,-2],[0,0],[5,-6],[1,-1],[0,0],[2,-2],[2,-3],[0,0],[1,-1],[0,0],[2,-2],[11,-15],[3,-4],[13,-17],[3,-5],[15,-22],[0,-1],[3,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[-1,-2],[0,0],[-2,0]],[[33929,35445],[0,0],[-1,0],[-1,0],[-50,67],[-12,19],[-30,50],[0,0],[18,-15],[67,-96],[1,-1],[0,-1],[3,-4],[1,-1],[0,-2],[1,-2],[0,-1],[2,-6],[1,-1],[0,-1],[0,-1],[0,-4]],[[31982,35832],[-3,-1],[-27,12],[0,0],[0,2],[0,1],[0,3],[0,0],[0,0],[3,11],[0,1],[1,2],[1,1],[1,1],[0,0],[1,1],[1,1],[0,0],[1,1],[2,2],[1,1],[1,0],[0,0],[3,1],[1,0],[1,0],[0,0],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[3,-4],[1,-2],[0,-1],[1,-4],[3,-15],[0,-2],[0,-4],[0,0],[0,-2],[0,0],[0,-2]],[[33945,35919],[-1,-1],[-1,3],[2,5],[12,20],[1,2],[1,1],[4,4],[1,1],[0,0],[5,6],[2,2],[1,1],[1,1],[7,6],[0,1],[1,0],[3,3],[0,0],[2,2],[70,50],[3,1],[6,3],[1,1],[0,0],[0,-1],[1,0],[1,-1],[-1,-3],[0,-1],[0,0],[-1,-1],[0,-1],[-3,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[0,0],[-6,-5],[-1,-1],[-1,-1],[-4,-2],[-6,-5],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-4,-3],[-10,-5],[-1,-1],[0,0],[-4,-3],[-3,-2],[-2,0],[-57,-57],[-1,-2],[-4,-2]],[[34104,36031],[1,-4],[1,0],[0,-1],[0,0],[0,-1],[0,-5],[0,-2],[1,0],[0,-4],[0,-2],[0,0],[0,-3],[-2,-7],[-1,-3],[0,-2],[-3,-7],[-3,-12],[-1,0],[0,-1],[-2,-3],[-1,-2],[-10,-14],[-4,-6],[-3,-4],[-12,-11],[-21,-20],[-75,-70],[-8,-4],[-11,-6],[-16,-4],[-2,-1],[-6,-1],[0,0],[-1,0],[-2,0],[-3,0],[-2,1],[-2,1],[-1,0],[-1,3],[0,0],[-1,1],[0,0],[0,2],[-1,5],[0,1],[0,0],[0,3],[0,1],[1,4],[0,1],[0,0],[3,14],[1,1],[0,2],[3,8],[2,3],[0,1],[1,3],[1,2],[1,2],[1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[1,3],[1,1],[1,0],[0,0],[1,1],[1,-1],[0,0],[1,-2],[0,-1],[0,0],[0,-3],[-1,-2],[0,-1],[-1,-3],[0,-1],[-9,-18],[-7,-14],[0,-1],[-1,-2],[0,-3],[0,-6],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[0,0],[1,-1],[4,0],[1,1],[1,0],[1,0],[1,0],[0,0],[2,0],[2,0],[1,1],[3,1],[2,0],[0,1],[3,1],[4,1],[1,1],[2,1],[2,1],[2,1],[1,0],[1,0],[0,1],[8,5],[10,8],[96,89],[15,23],[12,21],[0,1],[1,1],[1,5],[0,2],[0,1],[1,3],[0,2],[0,2],[0,3],[-1,4],[0,1],[-2,5],[0,1],[-2,2],[0,1],[0,0],[-2,0],[0,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-3,1],[-2,0],[-1,1],[-1,0],[-1,1],[0,0],[0,0],[0,1],[0,1],[0,1],[0,0],[2,1],[1,0],[2,0],[1,0],[2,0],[4,0],[1,0],[5,-1],[2,0],[0,0],[2,0],[1,-1],[3,-1],[3,-1],[1,0]],[[32429,36125],[-2,-2],[-3,1],[-1,1],[0,0],[-73,72],[0,3],[1,1],[0,0],[1,0],[0,0],[1,0],[2,0],[10,-3],[1,0],[2,-1],[1,0],[7,-4],[0,0],[1,-1],[0,0],[1,0],[5,-3],[7,-5],[4,-4],[5,-6],[21,-27],[1,-2],[2,-2],[1,-1],[0,-1],[1,-2],[1,-1],[0,0],[1,-3],[0,0],[2,-3],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1]],[[26144,36147],[-5,-5],[0,0],[-5,1],[-4,0],[-6,0],[-5,1],[-6,2],[-2,2],[-3,2],[-8,7],[-39,44],[-3,5],[-1,2],[-8,17],[0,0],[-1,3],[-1,4],[0,1],[-1,3],[0,6],[-1,1],[1,2],[2,4],[0,2],[1,0],[1,2],[5,4],[43,5],[38,5],[0,0],[21,-8],[26,-11],[0,0],[-9,-22],[-4,-11],[-19,-56],[-3,-6],[-4,-6]],[[33392,36369],[0,-1],[-1,0],[-1,0],[0,0],[-1,0],[-10,15],[-23,31],[0,0],[0,0],[5,4],[7,0],[6,-1],[5,-2],[2,0],[0,-1],[0,0],[2,0],[2,-2],[0,-1],[2,-2],[1,-2],[2,-2],[0,-1],[2,-4],[0,-1],[0,-1],[1,0],[0,-2],[0,-2],[1,-3],[0,-2],[0,-1],[1,-5],[0,-2],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-3],[-2,-1]],[[29818,36365],[-2,-1],[-1,0],[0,0],[-6,2],[0,0],[0,0],[-1,1],[-1,1],[-2,1],[-1,1],[0,0],[-8,19],[-7,16],[0,2],[0,4],[0,2],[0,1],[0,1],[0,3],[2,7],[0,1],[1,1],[0,2],[0,0],[3,0],[3,0],[1,-2],[0,0],[1,-1],[9,-24],[13,-32],[0,-1],[0,0],[-1,-3],[-1,-1],[-2,0]],[[25124,37002],[-4,-3],[-31,36],[-1,2],[0,0],[-1,2],[0,2],[-1,3],[1,2],[2,3],[4,3],[1,1],[1,1],[20,14],[10,8],[1,0],[1,1],[1,1],[1,-1],[2,0],[12,-13],[0,0],[1,-15],[-8,-18],[0,0],[0,0],[-12,-29]],[[24732,36906],[-14,-11],[-2,1],[-4,1],[-12,8],[0,0],[-8,55],[-10,75],[0,21],[2,15],[3,19],[0,1],[0,1],[1,3],[0,1],[1,2],[1,2],[1,0],[0,1],[0,1],[1,2],[1,1],[0,0],[2,1],[7,5],[0,1],[1,0],[2,1],[0,0],[1,0],[1,0],[0,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[8,-7],[9,-7],[16,-44],[17,-49],[-19,-81],[-9,-15],[-1,-1],[0,0],[0,0],[-2,-2]],[[31128,37076],[-1,-3],[0,0],[-35,15],[-19,8],[0,0],[0,1],[0,0],[0,3],[-1,2],[1,3],[0,0],[0,0],[0,3],[2,4],[0,0],[0,0],[1,1],[1,2],[0,1],[1,0],[1,1],[1,3],[3,0],[5,2],[1,0],[3,0],[1,-1],[4,0],[0,0],[1,0],[1,0],[1,-1],[2,0],[6,-2],[1,-1],[6,-6],[0,0],[2,-2],[2,-3],[7,-10],[1,-2],[2,-2],[0,0],[0,0],[1,-6],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,0]],[[25085,37059],[-3,-1],[-7,-4],[-2,0],[0,0],[0,1],[-1,0],[0,0],[-1,1],[-1,1],[-1,3],[-1,2],[-2,7],[0,1],[0,2],[0,1],[0,1],[1,10],[1,5],[2,13],[4,27],[1,4],[0,2],[4,12],[2,3],[1,2],[1,0],[2,1],[2,2],[1,1],[13,0],[3,0],[2,0],[1,0],[1,0],[1,0],[0,0],[1,0],[1,0],[0,0],[2,-1],[1,-1],[1,0],[0,0],[1,-1],[1,0],[0,0],[6,-7],[1,-3],[1,0],[0,-1],[1,-1],[0,0],[0,-1],[1,-2],[0,0],[0,-1],[0,-2],[0,-2],[0,-1],[-2,-33],[-11,-18],[-29,-22]],[[31657,37216],[5,-3],[1,-1],[1,-1],[8,-7],[27,-31],[1,-1],[0,0],[1,0],[0,-1],[7,-7],[0,-1],[0,0],[2,-3],[1,-2],[0,-2],[1,-3],[0,-1],[0,-2],[0,0],[-1,0],[-1,-1],[-1,-1],[0,0],[-2,2],[0,1],[0,0],[-1,0],[-1,2],[0,1],[0,0],[-5,8],[-6,7],[-4,5],[-11,13],[-13,13],[-3,3],[-2,2],[-4,4],[-5,4],[0,0],[-2,0],[-2,1],[-2,1],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-9,-3],[-14,-5],[-2,-1],[-16,-4],[-1,-1],[-1,0],[0,0],[-6,0],[-3,0],[-3,1],[-2,0],[-1,0],[-2,0],[-4,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,2],[1,2],[0,1],[2,1],[1,1],[0,0],[1,0],[4,1],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,0],[2,0],[4,0],[1,1],[3,0],[8,0],[7,1],[1,0],[0,0],[1,0],[3,1],[3,0],[10,4],[0,0],[1,0],[4,1],[5,3],[3,1],[0,0],[1,0],[4,2],[0,1],[2,0],[5,-1],[1,0],[1,-1],[1,-1],[2,-1],[4,-2],[5,-3]],[[31474,37243],[64,-32],[5,-3],[0,0],[0,1],[1,0],[0,0],[0,1],[1,-1],[2,0],[0,0],[1,-1],[1,-3],[0,-1],[0,-3],[0,-1],[0,0],[-1,-1],[0,0],[-2,-2],[-2,-3],[-1,0],[-2,-1],[-2,0],[-3,1],[-8,0],[-1,0],[-4,2],[-12,4],[-1,1],[-6,3],[0,0],[-4,2],[-10,7],[-50,35],[-24,18],[0,0],[58,-23]],[[24704,37155],[-7,-1],[-3,0],[-2,1],[-2,1],[-42,38],[-8,7],[-5,6],[0,1],[0,0],[-1,3],[0,10],[0,3],[4,13],[1,2],[7,19],[0,0],[5,4],[9,8],[1,1],[2,1],[0,0],[1,0],[3,0],[1,0],[2,0],[1,-1],[3,-1],[1,0],[1,0],[0,-1],[2,0],[11,-1],[14,-6],[3,-2],[3,-1],[6,-6],[2,-2],[10,-10],[3,-6],[4,-5],[0,-2],[1,-1],[-1,-4],[0,-3],[0,-3],[-11,-39],[-8,-18],[-1,-1],[0,0],[-2,-2],[-1,-1],[-1,0],[-3,-1],[-1,0],[0,0],[-2,0]],[[24471,37318],[-3,-3],[-7,4],[0,0],[-1,2],[-15,66],[1,3],[1,1],[1,1],[0,0],[0,0],[0,0],[11,2],[3,0],[0,0],[0,0],[10,-7],[8,-6],[1,-3],[3,-9],[0,-19],[0,-13],[-3,-7],[-10,-12]],[[31324,37372],[-1,-2],[0,0],[-3,0],[0,0],[-1,0],[-61,29],[0,0],[-2,7],[-1,3],[27,-6],[1,0],[2,0],[2,-1],[2,-1],[2,-1],[2,-1],[7,-5],[1,0],[0,0],[1,-1],[0,0],[7,-5],[3,-2],[4,-3],[6,-5],[1,-2],[0,-1],[1,-2],[0,-1],[0,0],[0,0]],[[24419,37639],[-7,-2],[-31,-9],[-1,0],[-1,0],[0,0],[-1,3],[-2,10],[1,3],[0,1],[0,3],[1,2],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[2,1],[2,2],[1,0],[0,1],[2,1],[0,0],[0,0],[2,1],[2,0],[1,0],[0,0],[3,-1],[1,0],[0,0],[20,-13],[4,-3],[0,0],[2,-3],[0,0],[0,-1],[0,-2],[0,0],[-1,0],[-2,-1],[0,0]],[[29148,37691],[-8,-2],[-11,-2],[-2,0],[-5,1],[-2,0],[-2,1],[-1,1],[-4,1],[0,0],[-1,1],[-1,1],[-5,5],[-2,2],[-15,28],[-1,7],[-1,4],[0,2],[-1,2],[3,5],[0,1],[0,0],[1,1],[1,2],[0,0],[1,2],[3,2],[1,2],[0,0],[1,1],[1,1],[4,3],[2,1],[0,0],[2,2],[2,1],[1,1],[2,0],[1,1],[7,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[8,-1],[1,0],[2,-1],[5,-3],[0,0],[1,-1],[1,0],[1,-2],[2,-3],[2,-3],[2,-2],[0,0],[2,-3],[8,-18],[1,-2],[4,-9],[3,-10],[1,-5],[0,-1],[-1,-2],[0,-2],[-1,-1],[-2,-3],[-1,-1],[-3,-1],[0,0],[-3,-2],[-9,-3],[-1,-1]],[[32444,37736],[-1,0],[0,0],[0,0],[-2,3],[1,3],[1,3],[6,29],[3,10],[5,17],[4,11],[1,4],[13,26],[8,16],[2,0],[2,1],[0,0],[0,-1],[1,-1],[0,-1],[0,-5],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[-37,-102],[-1,-2],[-2,-2],[0,-1],[-2,0]],[[29770,37857],[101,-267],[0,-2],[0,0],[0,-1],[1,-2],[1,-3],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[0,0],[-1,0],[-2,0],[0,1],[-1,0],[-30,37],[-9,13],[-3,8],[-7,24],[-31,114],[-12,9],[-79,60],[0,0],[-2,-1],[-2,-2],[-1,0],[0,0],[0,0],[-2,0],[0,0],[0,2],[1,2],[1,3],[2,2],[1,2],[1,1],[1,1],[1,2],[3,2],[2,0],[0,1],[1,0],[6,4],[6,3],[14,7],[5,2],[2,1],[0,0],[3,0],[2,1],[4,0],[0,0],[1,1],[4,0],[2,0],[3,0],[3,-1],[1,0],[7,-10],[1,-1],[0,0]],[[34544,37920],[-36,-10],[-7,1],[-2,1],[0,0],[-1,1],[-10,12],[-1,1],[-1,2],[-1,2],[0,1],[0,1],[0,6],[0,1],[0,3],[1,1],[0,1],[0,3],[1,2],[0,0],[0,0],[3,3],[1,1],[1,0],[1,1],[2,1],[1,1],[8,2],[9,4],[1,0],[0,0],[4,2],[1,0],[0,0],[23,-1],[1,0],[0,0],[3,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[0,0],[3,-2],[1,-1],[0,-1],[0,0],[0,-3],[0,-1],[1,-4],[0,-3],[-1,-1],[-1,-4],[-1,-1],[-8,-16],[-2,-3],[0,-1],[0,0]],[[32564,37958],[-15,-14],[-11,-10],[0,0],[-2,2],[0,1],[0,0],[0,0],[0,1],[0,1],[1,2],[1,1],[1,1],[11,22],[1,1],[1,2],[30,24],[1,1],[5,1],[0,0],[0,0],[1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-1],[0,0],[-1,-2],[0,-1],[-1,-1],[-22,-22]],[[32648,37957],[-1,-1],[-5,5],[-28,27],[0,2],[0,1],[0,4],[0,2],[0,0],[2,2],[1,1],[2,1],[10,-1],[5,-1],[2,-1],[1,0],[1,-1],[0,0],[1,0],[2,-1],[1,0],[0,0],[0,-1],[1,0],[1,-1],[2,-4],[8,-19],[-2,-8],[-1,-2],[0,-2],[-1,-1],[0,0],[-1,-1],[-1,0]],[[27493,38068],[-1,-1],[-2,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-4,2],[-1,0],[0,0],[-1,1],[-2,1],[-3,2],[-2,1],[-6,5],[-2,3],[-4,9],[0,1],[0,2],[-1,5],[0,1],[8,38],[0,0],[4,-3],[11,-10],[27,-38],[0,0],[-1,-1],[0,-1],[0,0],[-1,-3],[-3,-4],[-2,-2],[0,-1],[0,-1],[-2,-2],[-1,0],[-1,-1],[-4,-2],[-2,-1]],[[30221,38145],[36,-124],[0,0],[-85,147],[1,1],[11,6],[1,0],[2,0],[1,0],[0,0],[2,0],[3,-1],[1,0],[1,0],[2,-1],[7,-3],[10,-5],[5,-15],[1,-3],[1,-2],[0,0]],[[30622,38192],[-2,-2],[-1,0],[-1,1],[-2,1],[-8,5],[0,0],[-2,3],[-2,5],[-1,4],[0,1],[0,4],[0,1],[0,1],[1,2],[0,0],[0,1],[2,3],[1,3],[1,0],[0,0],[2,1],[0,1],[3,2],[1,0],[1,0],[0,0],[3,0],[1,0],[0,0],[3,-1],[0,0],[2,-1],[0,0],[1,-1],[2,-2],[1,-1],[0,-1],[1,-1],[0,-2],[2,-5],[0,-2],[1,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[-5,-6],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,0],[-1,0],[-1,-1]],[[29909,38502],[7,-5],[0,0],[-23,2],[-16,1],[-7,2],[-8,1],[-1,0],[-2,1],[-16,6],[-1,1],[-2,1],[-2,1],[-4,4],[-9,10],[-1,1],[0,1],[1,3],[0,0],[1,1],[0,0],[2,1],[81,-32]],[[29263,38605],[0,0],[-1,-2],[0,0],[-18,73],[1,0],[1,1],[4,1],[3,1],[17,-8],[2,-2],[1,0],[1,-1],[0,0],[1,-2],[0,-1],[0,0],[-1,-14],[-2,-17],[-5,-14],[-3,-11],[-1,-3],[0,-1]],[[27153,39150],[-1,0],[-3,-1],[-4,0],[-1,0],[-21,21],[-22,22],[-1,2],[0,0],[0,0],[2,3],[0,1],[1,0],[1,2],[1,0],[3,-1],[0,0],[3,0],[2,0],[3,0],[16,-5],[0,0],[1,0],[3,-1],[8,-3],[0,0],[4,-1],[2,-2],[2,-2],[1,-1],[4,-2],[0,-2],[1,-3],[2,-2],[1,-3],[-1,-7],[0,-3],[0,0],[0,-2],[-1,-1],[0,-1],[0,0],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0]],[[30097,39356],[-1,-1],[0,0],[-14,11],[0,2],[-2,9],[-1,3],[0,1],[0,1],[1,9],[1,8],[0,2],[0,1],[21,40],[7,12],[0,0],[13,7],[1,0],[-5,-28],[-10,-64],[-1,-2],[0,0],[0,-2],[-2,-2],[-6,-6],[-1,-1],[0,0],[-1,0]],[[30183,39478],[-25,0],[-17,0],[-3,2],[0,3],[0,1],[1,2],[0,1],[0,0],[1,2],[1,1],[1,1],[0,1],[1,0],[17,9],[2,0],[5,0],[3,0],[2,0],[4,-2],[1,-1],[0,0],[7,-14],[-1,-6]],[[29248,39643],[0,0],[-1,0],[-2,0],[-36,28],[-1,1],[-2,3],[0,0],[2,1],[2,0],[2,2],[0,0],[1,0],[2,0],[2,1],[2,0],[1,0],[1,0],[1,1],[2,-1],[2,0],[0,0],[15,-3],[3,-5],[2,-2],[2,-2],[0,-1],[1,0],[0,-9],[0,-6],[0,-1],[0,-1],[-1,-3],[0,-3]],[[30415,39690],[-32,-25],[-24,-18],[0,0],[10,54],[18,7],[9,4],[8,2],[12,4],[2,0],[2,0],[1,-1],[1,0],[0,0],[2,-6],[0,-1],[-1,-4],[-1,-5],[-1,-2],[-1,-2],[0,0],[0,-1],[-1,-1],[-4,-5],[0,0],[0,0]],[[29575,39744],[-1,0],[-49,28],[4,5],[12,5],[2,0],[2,0],[1,0],[6,1],[1,0],[1,0],[2,0],[0,0],[1,-1],[0,0],[0,0],[16,-9],[0,-1],[1,-2],[1,-5],[1,-1],[0,0],[3,-11],[0,-1],[-1,-2],[0,-2],[-1,-3],[-2,-1]],[[35834,44020],[-2,-1],[-16,-11],[-3,2],[-4,2],[-15,10],[-5,4],[-3,4],[-1,2],[-2,5],[-1,2],[2,102],[0,1],[1,1],[0,2],[1,1],[0,0],[1,2],[3,0],[2,1],[0,0],[1,0],[3,1],[8,-3],[7,-4],[9,-6],[9,-8],[9,-8],[1,-2],[11,-22],[2,-25],[-1,-2],[0,-1],[0,0],[0,-1],[-3,-15],[0,-2],[-13,-28],[0,-1],[0,-1],[-1,-1],[0,0]],[[35666,44588],[0,0],[-2,-1],[-2,0],[-1,1],[-4,3],[-6,4],[0,1],[-1,1],[-1,3],[-3,5],[-2,4],[-5,15],[-1,1],[0,1],[-1,3],[0,1],[0,0],[-1,2],[0,3],[0,1],[0,0],[3,17],[2,2],[1,2],[6,3],[1,1],[0,0],[0,0],[1,0],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,-3],[13,-45],[4,-19],[-1,-2],[0,-1],[0,0]],[[35455,44659],[-46,-57],[0,0],[-10,23],[-6,14],[4,27],[4,29],[1,3],[0,0],[0,1],[0,1],[0,1],[5,5],[7,9],[12,9],[14,4],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,0],[4,-7],[7,-10],[-1,-30],[0,-18],[0,0]],[[35561,44819],[-110,-57],[-41,13],[-6,4],[-4,3],[-19,18],[-12,34],[-3,15],[-2,12],[4,6],[3,5],[9,7],[7,5],[54,28],[0,0],[2,2],[1,1],[1,1],[1,1],[2,2],[1,0],[0,0],[13,9],[6,5],[0,0],[23,0],[1,2],[0,1],[1,1],[1,0],[0,1],[2,1],[1,1],[0,0],[0,0],[5,0],[15,-1],[0,0],[4,-3],[20,-14],[61,-41],[0,0],[-20,-31],[-21,-31]],[[34605,45213],[-18,-16],[-12,9],[-10,8],[-2,2],[-4,6],[-13,19],[-9,13],[-5,7],[-2,4],[-6,23],[0,0],[27,41],[3,3],[6,4],[10,5],[2,1],[1,0],[6,-3],[3,-3],[3,-2],[18,-14],[8,-21],[4,-12],[-2,-21],[-7,-51],[0,0],[-1,-1],[0,0],[0,-1]],[[35002,45772],[-3,-1],[0,0],[-1,1],[-5,3],[-1,0],[-1,1],[-2,2],[-2,2],[-12,12],[0,0],[-3,3],[-1,1],[0,2],[0,2],[0,4],[0,4],[0,2],[0,0],[1,3],[1,6],[0,0],[0,0],[0,2],[0,1],[0,0],[0,2],[0,0],[1,2],[1,7],[12,18],[3,5],[11,6],[5,1],[15,2],[1,0],[0,0],[1,0],[1,-1],[1,0],[2,-1],[8,-3],[3,-1],[14,-7],[12,-6],[3,-6],[9,-29],[1,-5],[0,-1],[-1,-11],[0,-4],[-2,-5],[-2,-2],[0,-1],[-1,0],[-29,-4],[-40,-6]],[[34628,45790],[-138,-47],[-2,1],[-1,0],[-3,3],[0,1],[-1,0],[-10,16],[-12,17],[-7,26],[-10,34],[0,1],[-2,8],[-1,3],[-1,9],[-1,1],[-1,6],[0,0],[0,1],[0,2],[0,3],[-1,4],[0,2],[1,3],[0,2],[5,27],[5,9],[2,3],[14,8],[7,3],[6,2],[21,7],[2,1],[0,0],[0,0],[1,0],[3,0],[0,0],[0,-2],[1,-1],[0,0],[1,-1],[87,-43],[2,-6],[33,-103]],[[34034,46782],[-4,-4],[-3,1],[-5,0],[0,1],[-1,0],[-4,3],[-3,5],[-1,1],[0,3],[-1,5],[-1,12],[-1,1],[0,6],[8,44],[3,4],[2,2],[9,4],[20,8],[18,8],[1,0],[2,1],[0,0],[1,-1],[1,0],[1,-1],[1,-2],[3,-5],[2,-3],[0,0],[0,-9],[-43,-76],[-3,-5],[-2,-3],[0,0]],[[34134,46910],[-12,-3],[0,1],[-2,1],[-1,1],[-4,3],[-2,2],[0,1],[2,2],[1,2],[1,0],[0,0],[20,18],[9,7],[1,0],[1,0],[0,0],[1,0],[0,0],[0,0],[4,-4],[2,-3],[2,-1],[0,-1],[-1,-2],[0,-1],[-7,-9],[-8,-9],[0,-1],[-1,0],[-1,-2],[0,0],[-5,-2]],[[294178,45414],[100,-111],[53,-27],[57,-30],[50,4],[68,5],[181,13],[20,-9],[20,-8],[157,-141],[3,-3],[188,-271],[3,-9],[2,-10],[1,-1],[0,-1],[7,-16],[2,-5],[2,-3],[2,-4],[1,-1],[1,-1],[1,-1],[3,-2],[3,-3],[1,0],[0,-1],[-316,-48],[-544,95],[-3,1],[0,0],[-5,2],[-1,1],[0,0],[0,0],[-5,4],[-14,13],[-53,65],[-55,77],[-7,18],[-3,9],[-59,159],[-6,153],[0,16],[1,21],[1,1],[0,0],[3,11],[2,8],[1,3],[0,0],[0,0],[1,2],[1,2],[7,8],[5,5],[6,6],[56,37],[39,-13],[15,-14],[7,-6]],[[300437,42800],[3,-7],[1,-3],[0,-1],[-2,-5],[0,0],[0,-1],[-1,-1],[-7,-7],[-3,-2],[-22,-19],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,1],[-3,1],[0,0],[0,4],[-1,2],[-1,5],[0,4],[0,3],[0,1],[0,1],[8,18],[1,3],[5,10],[15,7],[1,0],[0,0],[2,-1],[1,0],[0,0],[10,-10]],[[300309,42824],[73,-32],[13,-40],[5,-13],[18,0],[3,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,-2],[1,-1],[0,0],[0,0],[1,-1],[3,-13],[1,-2],[0,-1],[0,0],[0,-3],[-1,-2],[-3,-2],[-1,-1],[-3,-2],[0,0],[-2,-1],[-13,-5],[-1,0],[-69,-13],[-6,3],[-20,11],[-17,17],[-10,11],[-21,57],[1,10],[0,16],[5,10],[8,14],[0,0],[30,-8]],[[294489,42916],[24,-17],[172,-124],[10,-48],[20,-100],[0,0],[-307,194],[-2,2],[-11,7],[-9,13],[-18,25],[-8,11],[-1,2],[-5,10],[-11,20],[0,13],[0,4],[0,3],[1,2],[10,15],[2,3],[1,1],[18,20],[1,1],[0,0],[0,0],[2,1],[1,1],[2,2],[2,1],[1,0],[0,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[6,0],[0,0],[94,-61]],[[294195,43188],[0,0],[19,-9],[5,-2],[1,-1],[2,-1],[2,-1],[0,0],[23,-21],[0,-1],[1,-1],[1,-1],[1,-2],[2,-6],[1,-2],[0,0],[-2,-2],[0,-1],[0,-1],[-3,0],[-15,3],[-3,1],[-7,2],[-10,3],[-2,0],[-1,1],[-2,2],[0,1],[-1,0],[-2,3],[-3,3],[-8,10],[-10,13],[-1,1],[-1,1],[-2,3],[-2,2],[0,0],[1,1],[3,2],[0,0],[0,0],[6,0],[6,0],[1,0]],[[300022,43243],[9,-1],[1,-1],[1,-1],[4,-5],[4,-4],[6,-21],[0,0],[-8,-37],[-3,-8],[-6,-15],[-28,-11],[-1,0],[0,0],[-1,0],[0,0],[-14,12],[0,0],[-2,2],[-16,27],[-2,8],[0,0],[0,7],[0,14],[4,13],[14,25],[6,3],[4,2],[0,0],[21,-7],[7,-2],[0,0]],[[296521,43650],[-1,0],[0,0],[-3,2],[-7,5],[-1,4],[0,1],[-1,1],[6,26],[1,2],[0,0],[0,0],[1,2],[0,1],[0,0],[2,3],[1,0],[1,1],[1,1],[5,2],[4,-1],[0,0],[1,-1],[2,-1],[3,-2],[1,-1],[1,-2],[2,-4],[1,-1],[0,-2],[1,-5],[1,-3],[0,-2],[0,-1],[0,0],[0,-1],[0,-2],[-5,-14],[-2,-3],[-1,0],[-3,-2],[-2,-1],[0,0],[-9,-2]],[[299613,43714],[0,-1],[0,-2],[1,-3],[0,-2],[-1,-2],[-1,-4],[-1,-2],[-1,-3],[-1,-3],[-4,-6],[-3,-5],[-1,-2],[-7,-5],[-1,-1],[-1,-1],[0,0],[-1,0],[0,-1],[-12,-5],[-2,-1],[-9,6],[-9,6],[1,2],[0,1],[1,2],[0,0],[1,1],[0,1],[1,0],[1,1],[1,1],[2,2],[4,4],[5,4],[22,18],[5,2],[0,0],[2,1],[1,0],[0,0],[2,0],[5,-3]],[[299354,43804],[0,0],[-1,0],[-2,0],[-2,2],[-1,0],[0,1],[2,7],[2,5],[0,1],[0,1],[1,1],[0,0],[2,6],[7,17],[1,1],[1,3],[1,1],[0,0],[4,3],[1,1],[0,0],[0,0],[2,-2],[2,-2],[1,-1],[5,-11],[0,0],[0,0],[1,-1],[0,-2],[0,0],[0,-1],[0,-2],[0,0],[-2,-7],[-1,-2],[-2,-2],[0,-1],[-2,-2],[-1,-1],[-7,-5],[-12,-8]],[[299584,43859],[12,-1],[48,-5],[3,-1],[1,-1],[1,0],[2,-1],[4,-2],[1,0],[0,0],[1,-1],[1,-1],[3,-4],[1,-1],[0,0],[-1,-5],[-2,-11],[-16,-26],[-9,-15],[-14,-16],[-42,-52],[-9,-4],[0,0],[-17,6],[-14,-5],[-165,-67],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-16,2],[-1,0],[-2,1],[-1,1],[-3,2],[0,0],[-3,7],[-13,32],[0,1],[0,1],[-1,1],[0,2],[0,2],[-1,1],[1,7],[1,10],[4,19],[1,6],[1,2],[2,3],[1,1],[0,2],[0,0],[30,37],[55,43],[26,21],[113,11],[28,-2]],[[299356,44132],[-2,1],[-2,0],[-3,4],[-2,2],[0,2],[-1,1],[0,1],[-1,4],[0,1],[1,2],[0,4],[1,1],[0,4],[1,7],[2,2],[0,2],[1,1],[9,6],[1,0],[2,0],[0,0],[1,-1],[0,-1],[2,-1],[6,-9],[1,-1],[0,-2],[1,-3],[1,-3],[0,0],[0,-1],[-1,-9],[-1,-3],[-1,-2],[-1,-2],[-8,-4],[-7,-3]],[[299817,44283],[-1,0],[-12,-3],[-2,-1],[0,0],[-6,-1],[0,0],[-1,0],[-2,0],[0,2],[0,16],[1,4],[1,1],[2,2],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[9,4],[2,1],[0,0],[13,2],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[0,0],[1,-1],[2,-2],[1,-1],[0,-2],[0,-3],[0,0],[0,-1],[-2,-3],[0,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-18,-14]],[[295922,44336],[1,-1],[0,0],[0,0],[1,-3],[0,-1],[0,-1],[0,-4],[0,-2],[-2,-8],[-1,-2],[-2,-6],[-1,-2],[0,-1],[-1,-1],[-6,-10],[-8,-9],[-4,-5],[0,-1],[-1,0],[-1,-2],[-2,2],[-1,0],[-1,1],[-2,0],[-1,1],[0,0],[-6,3],[0,0],[0,0],[-2,5],[-11,34],[-4,13],[1,5],[2,6],[4,21],[1,7],[1,1],[0,0],[2,3],[4,4],[3,0],[4,0],[2,1],[1,0],[1,0],[0,0],[8,-7],[0,0],[1,-1],[1,-2],[3,-4],[3,-4],[4,-7],[4,-9],[5,-14]],[[295597,44393],[63,-44],[70,-48],[426,-213],[85,-90],[11,-13],[52,-80],[41,-63],[0,0],[9,-41],[25,-113],[-56,-2],[-67,-2],[-88,-3],[-106,33],[-34,11],[-14,6],[-22,8],[-29,13],[-45,20],[-36,33],[-63,64],[-49,49],[-52,59],[-25,28],[0,88],[-16,89],[-5,13],[0,0],[-4,3],[-11,7],[-30,16],[-28,11],[-10,4],[-14,4],[-17,2],[0,0],[-1,0],[-5,-2],[0,0],[-2,-1],[-2,-3],[-2,-4],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,0],[-1,0],[0,0],[-1,-1],[-13,2],[-27,8],[-13,4],[-1,0],[-3,2],[0,0],[-1,2],[-1,3],[0,1],[-1,4],[0,2],[0,1],[-2,28],[10,93],[1,2],[0,3],[1,6],[2,3],[1,2],[0,1],[1,1],[2,1],[1,0],[1,1],[36,14],[11,4],[5,-2],[15,-6],[24,-9],[3,-2],[7,-3]],[[300649,44638],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[-5,6],[-3,6],[-1,3],[-4,8],[-2,5],[-2,2],[-5,14],[0,0],[1,2],[0,1],[1,2],[5,1],[1,-1],[2,-1],[1,0],[1,-1],[5,-3],[1,-1],[2,-2],[1,-1],[0,0],[0,-1],[3,-3],[1,-1],[0,-1],[2,-8],[2,-8],[0,-2],[1,-3],[0,0],[0,-2],[0,0],[-2,-6],[0,-1],[0,-2]],[[296095,44909],[7,-118],[-3,-8],[0,-2],[-11,-15],[-2,1],[0,0],[0,0],[-10,19],[0,0],[0,0],[-1,2],[-6,17],[-2,6],[-1,3],[-5,19],[-1,4],[-6,29],[-1,5],[-1,20],[3,32],[0,0],[0,0],[1,1],[2,6],[1,3],[0,0],[1,1],[2,2],[1,1],[0,0],[1,0],[1,0],[0,0],[6,0],[2,0],[0,0],[0,0],[2,-1],[0,0],[20,-27]],[[295591,45293],[15,-21],[4,-6],[19,-30],[2,-3],[0,-1],[0,0],[1,-1],[0,-1],[1,0],[20,-46],[44,-97],[9,-25],[9,-24],[12,-61],[14,-74],[0,-2],[1,-1],[0,-16],[0,-1],[0,-1],[0,-1],[-2,-7],[0,-1],[0,-3],[-2,-11],[-1,-2],[-7,-17],[-1,-3],[0,0],[0,0],[-1,0],[-1,-1],[-3,-1],[-1,-1],[0,0],[-85,62],[-49,112],[1,2],[1,3],[1,3],[1,3],[0,2],[1,1],[1,21],[0,90],[0,89],[-15,26],[-21,42],[-3,14],[-8,29],[0,0],[43,-40]],[[294230,45542],[0,0],[-1,0],[-2,-1],[-1,0],[0,0],[0,0],[-1,1],[0,0],[-4,3],[0,1],[-2,1],[-1,1],[-3,5],[-9,12],[-2,3],[0,2],[-1,1],[0,2],[-2,3],[0,0],[0,4],[0,1],[4,18],[0,1],[0,1],[2,3],[1,2],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,0],[1,0],[11,6],[2,1],[2,0],[1,0],[2,1],[1,0],[0,-1],[2,-1],[9,-10],[2,-3],[4,-6],[0,0],[1,0],[2,-4],[1,-2],[0,-2],[1,-1],[-1,-3],[-3,-22],[-1,-1],[0,-1],[-1,0],[-1,-3],[0,0],[-1,-1],[-2,-1],[-1,-1],[0,0],[-11,-11],[-2,-2]],[[294700,45596],[1,0],[0,0],[3,2],[0,0],[4,2],[5,0],[3,0],[4,-1],[5,-1],[2,-1],[1,0],[6,-4],[8,-5],[3,-8],[3,-7],[0,-3],[0,-1],[-8,-10],[-18,-25],[-11,-8],[-10,-5],[-3,-1],[-5,-1],[-5,-1],[-5,0],[-52,0],[-10,8],[-23,17],[0,0],[7,-3],[7,6],[2,1],[9,11],[9,11],[3,4],[2,3],[2,3],[8,17],[9,18],[1,6],[3,8],[0,2],[15,-9],[19,-12],[6,-13],[0,0]],[[293722,45691],[3,-71],[0,-1],[0,-1],[-1,-3],[-1,-1],[0,0],[-12,-26],[-3,-3],[-5,-4],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-6,1],[-16,0],[-5,1],[-10,2],[-1,2],[0,1],[-1,1],[1,1],[0,3],[14,36],[12,27],[32,45],[0,0],[5,-5],[1,-1],[0,0]],[[293619,45722],[0,0],[16,2],[58,-37],[-33,-71],[-11,-18],[-3,-2],[-1,0],[0,0],[-21,3],[-14,2],[-5,1],[-10,3],[-30,15],[-16,26],[0,0],[0,2],[0,1],[2,8],[1,5],[0,0],[34,32],[1,0],[1,1],[7,5],[0,0],[17,-13],[0,0],[-1,10],[0,11],[-1,0],[-1,0],[-2,2],[-10,12],[-1,0],[-3,4],[-1,1],[0,0],[0,0],[1,0],[2,1],[14,0],[10,-6]],[[294589,45716],[2,0],[2,0],[2,0],[0,0],[3,0],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[36,-39],[2,-2],[0,0],[1,-2],[1,-1],[7,-16],[1,-3],[0,-2],[0,0],[1,-2],[0,-3],[0,0],[1,-7],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[0,0],[-1,-1],[-1,-3],[0,-1],[-3,-4],[-22,-33],[-12,-7],[-18,-3],[-90,58],[-58,51],[0,0],[49,43],[5,0],[85,-6]],[[294469,45778],[0,0],[0,-1],[0,-1],[11,-55],[-22,-18],[-4,-4],[0,0],[-4,18],[-3,17],[-5,27],[-2,8],[3,6],[2,5],[2,2],[1,1],[0,0],[0,0],[8,-1],[9,-2],[1,-1],[0,0],[2,-1],[1,0],[0,0]],[[294397,45855],[14,2],[1,0],[3,-1],[1,0],[1,-1],[0,0],[1,-1],[1,-2],[1,0],[0,0],[1,-2],[3,-6],[0,-3],[1,-2],[0,-9],[0,0],[0,-2],[0,-1],[0,0],[0,-6],[-1,-1],[-1,-2],[0,0],[-5,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,0],[-1,1],[-5,10],[-18,9],[-2,-17],[-2,-10],[-7,8],[3,15],[1,1],[1,2],[2,6],[2,6],[1,2],[1,1],[1,1],[1,1],[0,-1],[6,-1]],[[295290,46005],[1,-1],[1,0],[0,-1],[4,-2],[1,-1],[2,-2],[0,0],[2,-2],[2,-4],[1,-1],[1,-4],[1,-3],[0,-1],[-2,-2],[-23,-5],[-1,0],[0,0],[-1,1],[-22,20],[-1,1],[0,0],[-1,2],[1,1],[3,2],[2,2],[0,0],[1,1],[2,0],[2,1],[2,1],[1,0],[1,0],[3,0],[2,0],[2,0],[1,0],[1,0],[0,0],[11,-3]],[[292311,46030],[37,-50],[1,-3],[2,-5],[0,-5],[0,-12],[-5,-9],[-4,1],[-13,1],[-2,0],[0,0],[-1,0],[0,0],[-27,13],[-91,44],[-7,4],[-15,12],[-9,8],[-14,13],[0,0],[-2,2],[-2,5],[0,0],[1,1],[0,0],[5,2],[10,4],[83,7],[42,-26],[11,-7]],[[292818,45917],[0,0],[-17,-4],[-2,1],[-1,0],[-1,0],[-1,2],[-1,1],[0,0],[-3,3],[0,1],[-1,1],[-16,26],[-1,7],[-1,12],[0,0],[-1,5],[2,9],[1,7],[0,1],[0,0],[4,7],[50,63],[0,0],[36,-99],[0,0],[-47,-43]],[[292650,46245],[17,2],[37,5],[50,-84],[1,-1],[-10,-86],[-2,-9],[0,-1],[-2,-4],[-2,-5],[-52,-77],[-2,-1],[-2,-2],[-10,-6],[-11,-2],[-29,10],[-22,8],[-27,26],[-2,2],[0,0],[-1,0],[-27,40],[-5,7],[0,1],[-4,10],[-1,2],[0,1],[-4,14],[10,82],[4,27],[71,31],[25,10]],[[292086,46384],[1,0],[1,0],[2,0],[1,0],[1,0],[10,-2],[3,-1],[0,0],[0,0],[1,-1],[1,0],[2,-1],[4,-2],[3,-1],[2,-5],[4,-6],[4,-9],[13,-47],[0,-1],[2,-19],[-24,-108],[-25,-118],[0,0],[-44,13],[-35,43],[-48,58],[-8,13],[0,0],[-3,10],[1,4],[1,2],[14,24],[58,80],[26,49],[4,7],[6,8],[13,14],[0,0],[9,-4]],[[294068,46398],[67,-149],[-8,-31],[-5,-7],[-6,-6],[-2,0],[-9,-1],[-15,1],[-9,0],[-1,1],[-1,0],[-1,1],[0,0],[-39,42],[-43,47],[-2,4],[0,3],[0,1],[-1,1],[0,1],[0,2],[-3,8],[-1,5],[0,4],[-1,3],[0,0],[0,0],[0,4],[0,0],[0,1],[-1,6],[0,3],[0,1],[0,1],[-1,5],[0,4],[1,1],[0,1],[0,1],[1,4],[1,2],[2,5],[2,4],[22,26],[3,1],[5,2],[11,3],[1,1],[2,0],[4,1],[2,0],[0,1],[1,0],[0,0],[1,0],[1,0],[2,0],[1,0],[0,0],[2,1],[1,-1],[2,0],[2,-1],[3,-2],[9,-5]],[[295015,46479],[1,0],[7,1],[0,0],[1,-1],[0,0],[1,0],[2,-1],[1,0],[1,-1],[4,-5],[0,0],[1,-1],[34,-40],[8,-9],[9,-11],[1,-2],[2,-1],[0,-2],[1,0],[0,0],[1,-1],[5,-9],[127,-205],[34,-58],[2,-6],[3,-7],[1,-6],[0,-1],[0,-1],[0,-3],[0,0],[0,-4],[0,-4],[-1,-3],[0,-1],[-1,0],[0,-1],[-1,-2],[-11,-13],[0,-1],[0,0],[-13,-8],[-3,-2],[0,0],[35,-180],[3,-13],[0,0],[30,-18],[14,-12],[7,-7],[17,-16],[22,-32],[10,-14],[7,-14],[9,-18],[49,-117],[34,-80],[96,-372],[20,-84],[0,-4],[2,-24],[2,-24],[-3,-25],[-1,-3],[0,0],[-1,-1],[0,0],[-1,-1],[-7,-4],[0,0],[0,1],[-3,0],[-1,0],[0,1],[-5,6],[-45,51],[-24,47],[-25,50],[-13,26],[-10,26],[-12,33],[-12,23],[-43,51],[-1,1],[-1,1],[-2,1],[-2,2],[0,0],[-5,6],[-42,33],[-4,3],[-279,417],[-4,36],[-8,58],[-124,477],[17,56],[10,31],[42,-24],[12,-3],[13,1],[0,0],[1,0],[0,1],[1,2],[1,1],[0,2],[1,3],[1,20],[0,0],[-2,6],[-12,28],[0,0],[19,-2]],[[295085,46494],[3,-9],[3,-9],[1,-3],[0,0],[-1,-13],[-1,-9],[0,0],[-3,-2],[0,0],[-31,37],[-6,8],[-3,3],[0,0],[15,9],[2,1],[0,0],[1,0],[0,0],[1,0],[1,0],[2,-1],[1,0],[6,-4],[4,-3],[3,-2],[1,-1],[0,-1],[1,-1],[0,0]],[[292225,46502],[0,1],[0,1],[0,1],[1,0],[2,3],[5,2],[4,1],[12,-3],[0,-1],[1,0],[1,0],[2,-1],[1,-2],[5,-5],[6,-8],[1,-1],[0,-1],[11,-40],[0,0],[0,-3],[1,-1],[-1,-4],[-1,-1],[0,0],[0,-2],[0,0],[-2,2],[-1,1],[-2,7],[0,1],[-1,4],[-3,13],[0,0],[-54,10],[-15,2],[-1,0],[-2,1],[-3,1],[-1,3],[-2,2],[0,1],[-1,6],[-1,12],[-1,13],[1,0],[3,2],[2,2],[33,-19]],[[291817,46632],[10,0],[14,0],[19,-18],[9,-7],[0,-1],[1,-1],[0,0],[1,-2],[1,-5],[1,-1],[1,-5],[3,-22],[7,-57],[2,-14],[0,0],[-7,9],[-64,81],[2,43],[0,0]],[[291946,46590],[2,-28],[1,-10],[0,0],[-49,24],[0,0],[1,3],[0,1],[0,0],[0,0],[0,2],[0,1],[-1,1],[0,0],[-1,1],[0,0],[-1,0],[-1,0],[-4,4],[-2,2],[-8,8],[-3,4],[-2,5],[-8,14],[-7,23],[10,17],[3,5],[0,0],[19,1],[12,1],[30,-61],[9,-18]],[[291622,46794],[20,-41],[5,-12],[6,-15],[-6,-7],[-1,-1],[-3,-1],[-10,-2],[0,0],[-1,0],[-17,12],[-14,10],[-13,20],[0,4],[1,10],[0,3],[1,11],[0,2],[1,0],[1,2],[3,4],[0,1],[0,1],[24,0],[3,-1]],[[292230,46880],[25,-47],[59,-114],[11,-83],[9,-52],[22,-5],[11,1],[8,8],[9,11],[7,9],[9,2],[6,-2],[4,-1],[37,-29],[0,0],[8,-11],[3,-4],[0,-2],[50,-109],[22,-49],[6,-14],[14,-39],[5,-43],[4,-32],[-11,-37],[-4,-17],[-9,-23],[-45,-16],[-119,86],[-39,32],[-6,8],[-49,61],[-3,10],[-7,21],[-1,1],[-1,3],[0,2],[-2,5],[3,11],[1,6],[0,1],[1,1],[0,0],[0,1],[2,5],[0,0],[0,0],[1,0],[1,0],[0,1],[2,0],[0,-1],[0,0],[0,-4],[0,-2],[1,-1],[0,0],[0,-1],[9,-1],[40,-1],[0,0],[-50,95],[-40,37],[-51,-8],[-59,-16],[-27,-7],[-27,-29],[-1,-1],[0,0],[0,0],[-3,-5],[0,0],[-5,-5],[-18,-16],[-15,-6],[-20,3],[0,0],[-24,35],[-14,23],[-9,16],[-3,4],[0,2],[-2,18],[2,27],[14,33],[2,1],[2,1],[0,1],[12,1],[6,0],[4,0],[55,89],[44,71],[3,6],[4,9],[1,2],[1,2],[0,1],[0,0],[3,2],[24,29],[25,20],[34,23],[1,0],[3,3],[3,1],[6,4],[1,0],[5,1],[17,-8],[0,0],[2,-5]],[[291395,46903],[10,-13],[2,-2],[1,-3],[8,-17],[4,-11],[7,-31],[7,-31],[21,-117],[-2,-7],[-3,-17],[-6,-4],[-12,-7],[-12,0],[0,0],[-29,85],[-28,162],[1,3],[1,3],[6,7],[1,1],[0,0],[2,2],[1,1],[0,0],[1,0],[2,1],[1,0],[6,-2],[10,-3]],[[294937,46948],[3,-12],[-1,-4],[0,-3],[0,0],[0,-1],[-1,0],[0,-2],[0,0],[-1,0],[-1,0],[-8,0],[-3,0],[-1,0],[0,0],[-4,4],[-9,21],[-5,11],[0,3],[5,13],[1,2],[0,0],[5,0],[3,0],[0,0],[1,0],[1,0],[0,0],[1,-1],[1,0],[1,0],[0,0],[1,0],[3,-6],[2,-5],[6,-19],[0,-1]],[[291863,47019],[7,0],[2,0],[0,0],[4,0],[7,-3],[28,-31],[25,-34],[1,-2],[0,-1],[1,0],[1,-3],[0,0],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[5,-17],[5,-27],[1,-7],[0,-2],[1,-9],[1,-18],[1,-74],[-5,-30],[-6,-26],[-2,-7],[0,0],[-12,-19],[-9,-14],[0,0],[-4,-1],[-4,-2],[-7,1],[-7,0],[-47,16],[-25,9],[-15,6],[-4,3],[-6,2],[-8,4],[0,0],[-1,1],[-1,1],[0,0],[-1,1],[-6,5],[-6,7],[-3,5],[-8,11],[-3,4],[-3,5],[-7,15],[-4,11],[-7,15],[-2,10],[-2,7],[-4,33],[0,11],[2,15],[0,4],[7,35],[4,10],[2,3],[3,5],[13,18],[7,9],[19,21],[6,8],[12,7],[11,6],[1,0],[0,0],[1,1],[4,1],[5,2],[15,6],[1,0],[4,0],[4,1],[1,0],[0,0],[0,0],[1,0],[1,-1],[0,0],[2,-1],[1,0],[0,0]],[[291393,47058],[0,0],[2,0],[1,-1],[2,0],[1,-1],[1,-1],[3,-1],[1,0],[0,0],[1,-2],[1,-3],[2,-10],[1,-8],[0,-4],[-1,-4],[-1,-3],[0,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-7,-6],[-2,-1],[-2,1],[-3,0],[-2,0],[-14,5],[-1,1],[-1,1],[-1,1],[-9,16],[0,1],[1,1],[0,2],[16,24],[2,2],[2,2],[1,1],[2,1],[2,0],[2,0],[2,0],[1,-2],[0,-1],[0,-4],[0,-2]],[[293130,47239],[10,-27],[-1,-5],[0,-6],[-2,-2],[-3,-6],[-1,-1],[0,0],[-1,-1],[0,0],[-2,-1],[-1,1],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-18,12],[2,5],[3,8],[14,16],[6,3],[0,0],[1,0],[0,0],[1,-1]],[[291436,47321],[6,-4],[113,-149],[17,-115],[-47,-168],[0,0],[-19,12],[-12,7],[-33,75],[-2,5],[-17,43],[1,11],[2,12],[0,1],[0,1],[0,3],[0,1],[0,1],[1,11],[-3,4],[-3,6],[-1,1],[0,1],[-1,1],[-28,33],[-29,31],[-17,19],[0,0],[0,0],[-2,3],[0,1],[-2,3],[-4,17],[-1,20],[-1,21],[2,20],[1,4],[0,0],[1,3],[4,9],[0,1],[4,5],[9,13],[7,7],[44,25],[7,3],[3,2]],[[292978,47333],[34,-17],[24,-11],[21,-51],[0,0],[-86,14],[-24,21],[-19,17],[-18,18],[0,2],[1,1],[1,1],[0,1],[0,0],[1,0],[1,0],[3,0],[3,-1],[3,0],[32,0],[12,3],[11,2]],[[293047,47381],[104,-38],[138,-50],[50,-56],[136,-154],[62,-70],[55,-57],[157,-90],[22,-3],[21,-4],[45,0],[3,-1],[13,-5],[32,-21],[88,-82],[12,-11],[174,-171],[85,-100],[6,-10],[12,-23],[-9,-11],[-23,-25],[-23,-17],[-27,-6],[-41,-9],[-47,35],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[-1,1],[-2,1],[-4,3],[-6,4],[-3,2],[-3,1],[-4,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-11,-1],[-2,0],[-1,-1],[-4,-2],[0,0],[-140,90],[-80,52],[-85,59],[-209,147],[-75,67],[-73,84],[-71,81],[-24,27],[-60,69],[-61,94],[-12,24],[-19,38],[-2,2],[-1,2],[0,0],[-15,16],[-29,25],[-8,7],[-1,1],[-19,17],[-6,3],[0,0],[0,0],[-1,16],[0,48]],[[292878,47457],[8,-2],[25,-13],[66,-33],[0,0],[-8,-38],[-3,-16],[-90,67],[-5,10],[-1,7],[-1,2],[2,12],[0,1],[4,3],[0,0],[1,0],[2,0]],[[292863,47515],[4,-1],[16,-6],[5,-13],[-16,-35],[0,0],[-41,32],[29,23],[2,0],[1,0]],[[292453,47528],[9,-1],[8,-10],[4,-5],[17,-26],[7,-34],[0,-14],[0,0],[0,0],[-2,-3],[-1,-3],[-1,-1],[0,0],[-3,-2],[-3,-1],[-47,2],[0,0],[-3,1],[-3,2],[-5,3],[-3,3],[-1,2],[-2,2],[0,0],[-1,1],[-10,11],[-1,2],[0,0],[-1,1],[-3,8],[0,3],[-1,1],[0,1],[1,11],[1,14],[5,6],[1,1],[0,0],[21,14],[0,0],[17,11]],[[292840,47529],[12,-6],[-1,-5],[-9,-13],[-4,-6],[-1,-1],[0,0],[-3,2],[-11,10],[-9,13],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[7,6],[0,0],[2,1],[0,0],[9,-4],[9,-3]],[[292250,47533],[18,-6],[26,-8],[34,-42],[-2,-7],[0,0],[-23,-7],[-16,-1],[-7,0],[0,0],[0,0],[1,10],[-12,10],[-9,7],[-39,12],[0,0],[-1,2],[0,1],[0,1],[0,1],[3,11],[4,14],[0,0],[8,7],[0,0],[1,1],[3,1],[0,0],[0,0],[1,0],[1,0],[0,-1],[6,-4],[3,-2]],[[290570,47516],[-1,-1],[-3,-3],[-3,-2],[-2,-2],[-2,-1],[-1,0],[-4,-1],[-18,1],[-3,0],[-12,3],[-7,3],[-9,3],[-1,1],[-1,1],[-1,2],[-1,6],[-1,6],[0,3],[-1,3],[0,1],[0,1],[0,0],[1,3],[4,13],[0,1],[1,0],[0,2],[2,3],[0,0],[1,1],[0,1],[1,1],[0,1],[4,4],[1,1],[2,2],[10,6],[1,0],[0,1],[1,0],[1,0],[9,1],[4,1],[1,0],[1,1],[2,-1],[2,0],[5,0],[2,0],[0,0],[1,0],[1,0],[1,0],[4,-2],[7,-1],[5,-2],[0,0],[3,-7],[16,-28],[0,0],[-1,-1],[-10,-14],[-12,-11]],[[290791,47824],[-2,-6],[-1,-1],[0,-1],[-1,0],[-2,-2],[-1,0],[-2,1],[-1,0],[-12,0],[-7,1],[-1,0],[-2,0],[-9,3],[-1,0],[0,0],[-1,1],[-1,1],[-1,1],[-2,2],[0,0],[0,2],[0,4],[1,2],[0,1],[11,9],[0,0],[0,0],[3,2],[1,0],[0,1],[5,3],[0,0],[24,-17],[2,-5],[0,0],[0,-2]],[[290700,47973],[18,-38],[42,-86],[-3,-1],[-7,-6],[-36,-14],[-68,23],[-8,3],[0,0],[3,27],[4,17],[5,18],[25,73],[1,2],[0,0],[1,1],[2,2],[0,0],[0,0],[2,1],[11,0],[2,-1],[0,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,0],[1,-18]],[[290937,48204],[16,-1],[0,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[-21,-32],[0,0],[-4,-3],[-7,-4],[-8,-3],[-2,-1],[-2,-1],[0,2],[0,0],[0,2],[0,1],[-1,1],[-1,9],[-2,10],[0,1],[0,2],[0,2],[1,2],[0,1],[0,1],[0,0],[1,2],[1,1],[1,1],[1,1],[1,1],[2,1],[2,1],[2,2],[8,4],[7,4]],[[291333,48401],[0,0],[6,-3],[93,-50],[23,-12],[183,-154],[70,-59],[15,-15],[163,-159],[2,-27],[1,-12],[1,-8],[2,-10],[9,-37],[1,-8],[0,0],[1,0],[21,-29],[40,-46],[13,-14],[76,-73],[51,-49],[0,0],[16,-8],[50,-23],[64,35],[7,-94],[-12,-10],[-20,-16],[-303,62],[-115,100],[-248,285],[-78,86],[-68,74],[-34,32],[-56,54],[-25,29],[-25,86],[53,51],[23,22]],[[145032,64183],[-34,-142],[-345,158],[60,55],[243,22],[76,-93]],[[311001,46243],[0,0],[0,0],[-1,0],[0,-1],[-1,0],[-4,-3],[-1,0],[0,0],[-1,3],[-3,65],[-1,20],[2,-1],[5,-12],[5,-13],[2,-16],[0,-2],[2,-20],[1,-5],[0,-4],[0,-1],[-1,-3],[0,-2],[0,0],[0,-1],[-4,-4]],[[310549,47452],[12,-12],[12,-12],[1,-1],[3,-5],[1,-2],[1,-3],[0,-1],[0,-1],[0,0],[0,0],[-2,-3],[-1,-1],[0,-1],[-3,-4],[-1,-3],[-1,-1],[-1,0],[-4,0],[0,0],[-15,27],[-5,10],[-1,2],[-2,4],[0,0],[0,3],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[0,0],[1,0]],[[311557,45327],[1,-2],[2,-4],[0,0],[1,-3],[1,-2],[0,-1],[1,-2],[1,-3],[0,-1],[0,-8],[0,0],[-1,1],[-2,0],[-15,23],[3,4],[1,1],[0,0],[2,-1],[2,-1],[2,-1],[1,0],[0,0]],[[161632,56222],[15,-8],[10,-10],[11,-12],[7,-13],[16,-30],[12,-37],[2,-30],[-4,-47],[-1,-3],[0,-3],[-3,-6],[-1,-1],[-9,-17],[-2,-2],[-1,-2],[-9,-12],[-96,-137],[-50,-53],[-25,-10],[-48,192],[-1,51],[4,23],[2,5],[0,2],[1,2],[16,41],[17,23],[19,19],[15,14],[48,46],[17,12],[33,4],[3,0],[2,-1]],[[162259,57656],[36,-8],[15,-19],[-9,-64],[-17,-67],[0,0],[-1,-1],[-17,-19],[-4,-2],[-9,3],[-7,4],[-28,20],[-9,18],[-5,22],[38,97],[14,14],[3,2]],[[260521,80477],[-154,-80],[-401,633],[-156,426],[50,312],[9,267],[65,253],[645,1235],[125,116]],[[261406,83639],[10,-40],[-57,-381],[-243,-901],[-71,-424],[-108,-375],[-150,-334],[-107,-119],[-159,-588]],[[203874,50650],[38,-97],[15,-55],[6,-81],[-30,9],[-21,25],[-55,111],[3,48],[44,40]],[[200171,44496],[2,-5],[1,-1],[0,-2],[1,-1],[2,-15],[0,-1],[0,-7],[0,-3],[-1,-2],[-1,-3],[-1,-2],[-8,-5],[-2,2],[-12,32],[1,2],[3,8],[2,3],[4,3],[2,2],[2,-2],[5,-3]],[[196112,45325],[5,-3],[3,-2],[1,-1],[1,-1],[1,0],[3,-2],[2,-3],[2,-2],[0,-1],[2,-7],[1,-3],[-2,-11],[-1,-3],[-1,-3],[0,-1],[-2,-2],[-5,-9],[-1,-1],[-3,-3],[-2,-2],[-22,-18],[-160,-41],[-42,38],[14,-8],[1,0],[3,-1],[2,0],[2,0],[3,-1],[2,1],[4,0],[2,0],[13,1],[24,7],[50,18],[68,26],[4,9],[-22,37],[1,2],[0,2],[1,1],[2,0],[22,-5],[24,-8]],[[195890,45318],[-30,-16],[-1,0],[-1,0],[-1,1],[0,2],[-2,4],[0,7],[-1,3],[0,2],[0,1],[1,3],[6,6],[2,3],[3,3],[2,1],[1,1],[3,2],[9,2],[3,-1],[1,0],[0,-1],[1,-2],[4,-21]],[[195966,45342],[22,1],[26,1],[16,-2],[27,-4],[1,-1],[1,-2],[0,-3],[-2,-2],[-5,-2],[-1,0],[-16,-5],[-93,8],[3,14],[21,-3]],[[204552,47750],[-2,-2],[-1,-1],[-2,1],[-1,0],[-1,3],[-1,1],[0,2],[0,2],[0,3],[1,3],[1,6],[24,67],[1,2],[0,1],[2,1],[1,0],[2,0],[2,1],[2,-2],[1,-2],[1,-2],[0,-1],[0,-4],[-2,-20],[-2,-12],[-24,-43],[-1,-3],[-1,-1]],[[203696,50761],[3,-8],[-3,-14],[-1,-5],[-4,-5],[-2,-1],[-1,0],[-2,0],[-2,0],[0,0],[-9,5],[-5,6],[-11,15],[-4,5],[0,1],[-2,3],[-1,3],[0,2],[1,6],[1,2],[3,4],[1,2],[2,0],[1,0],[2,0],[2,0],[5,1],[2,-1],[3,0],[2,0],[3,0],[3,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[4,-12]],[[204213,50895],[-14,-16],[-3,1],[-9,17],[-1,3],[0,1],[-1,3],[0,2],[-1,3],[4,17],[0,1],[1,1],[1,0],[1,1],[0,0],[1,0],[8,-7],[1,-1],[2,-1],[4,-5],[6,-15],[0,-2],[0,-2],[0,-1]],[[204088,50975],[50,-24],[15,-22],[-12,-20],[-8,-9],[-2,-1],[-2,1],[-25,9],[-33,33],[-1,1],[-2,4],[-1,3],[-1,2],[-3,18],[1,2],[0,4],[15,6],[1,0],[1,0],[2,0],[1,-1],[4,-6]],[[93383,80099],[8,-10],[5,-5],[-2,-9],[0,0],[-10,-16],[-8,-14],[-88,-36],[-8,1],[-10,2],[-19,13],[-21,14],[-13,49],[0,4],[7,33],[0,0],[79,-13],[80,-13]],[[93765,80108],[28,-18],[0,-39],[0,0],[-117,-18],[-8,-1],[0,0],[-11,97],[0,0],[108,-21]],[[94257,79650],[-1,0],[0,0],[-3,0],[0,0],[-2,3],[-1,1],[0,2],[-4,23],[0,2],[-1,1],[2,24],[2,24],[2,8],[0,0],[7,6],[0,0],[2,2],[1,0],[1,1],[2,0],[0,1],[1,0],[1,0],[1,-1],[0,0],[1,-1],[1,-5],[0,-1],[1,-2],[0,-74],[0,0],[0,-1],[-1,-1],[-1,-3],[0,0],[-2,-1],[-1,-1],[0,0],[-8,-7],[0,0]],[[93952,79752],[-1,-5],[0,-6],[-1,-9],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-4,-4],[0,0],[-17,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,2],[0,0],[0,0],[-2,5],[-7,17],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,4],[0,0],[1,1],[6,11],[24,16],[11,8],[1,-17],[1,-14],[1,-4]],[[93928,79845],[0,0],[-1,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,2],[-3,10],[-1,8],[3,30],[1,16],[1,3],[1,3],[0,3],[0,1],[0,0],[0,0],[2,1],[1,1],[1,1],[6,4],[0,0],[1,0],[2,1],[6,1],[0,0],[0,0],[1,0],[0,0],[1,-2],[0,-3],[-9,-56],[-2,-10],[-5,-13],[0,0]],[[93135,79970],[5,0],[5,-1],[0,0],[-8,-31],[-9,-33],[-1,-4],[0,-1],[-2,-5],[-1,-2],[-5,-7],[-5,-6],[-1,-1],[-3,-3],[-1,-1],[-5,-4],[-1,-1],[0,0],[-2,-1],[-3,-1],[-1,0],[-1,-1],[0,0],[-1,0],[-1,1],[0,0],[-1,2],[0,0],[0,1],[1,2],[0,1],[7,28],[5,18],[1,7],[0,1],[0,1],[0,1],[0,2],[1,3],[0,2],[1,1],[0,1],[0,2],[2,10],[1,2],[0,2],[2,2],[0,0],[0,1],[1,1],[0,0],[14,10],[5,1],[1,0],[0,0]],[[93937,79983],[18,-52],[7,-18],[0,0],[-59,54],[-20,49],[0,0],[17,-11],[37,-22]],[[93580,80202],[31,-83],[0,0],[-43,23],[-62,34],[-19,17],[-2,2],[0,0],[-3,7],[-8,15],[0,2],[0,0],[-1,1],[-2,6],[0,0],[0,0],[1,3],[0,1],[4,4],[7,9],[1,2],[0,0],[2,0],[1,1],[8,3],[1,0],[1,0],[10,1],[6,0],[3,0],[3,1],[1,0],[0,0],[3,0],[2,0],[1,0],[2,0],[35,-10],[7,-3],[4,-2],[1,-5],[5,-29]],[[7113,45600],[0,-1],[1,-3],[1,-10],[12,-76],[1,-5],[0,-2],[0,-1],[1,-10],[0,0],[0,-1],[-3,-19],[-2,-9],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-37,4],[-4,6],[-18,23],[-1,1],[-3,6],[-2,4],[0,1],[0,0],[-1,2],[-1,5],[-1,10],[0,1],[0,1],[0,2],[0,3],[0,2],[1,2],[3,55],[3,8],[57,8],[1,0],[1,-1],[1,-1],[0,0],[1,-1],[1,-2],[0,-1],[0,-1]],[[7610,45363],[14,-17],[3,-3],[3,-4],[2,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-3],[0,-1],[2,-6],[0,-1],[0,0],[0,-1],[-1,-2],[-2,-7],[-14,-44],[-5,-17],[-1,0],[0,-1],[-2,-1],[-1,-2],[-1,1],[-3,2],[-4,5],[-8,8],[-30,35],[-3,3],[-1,2],[-1,1],[-1,1],[0,0],[0,1],[0,4],[0,3],[1,1],[48,47],[1,1],[1,1]],[[6522,46189],[0,0],[-2,-1],[-18,-6],[-3,-1],[0,0],[-3,0],[-1,-1],[-1,0],[-3,-1],[-1,1],[-3,6],[-1,3],[-1,2],[-7,38],[-1,2],[0,1],[-1,7],[1,1],[0,1],[1,2],[0,1],[1,2],[2,0],[3,1],[7,1],[5,0],[1,1],[1,0],[1,0],[0,0],[1,-1],[2,-2],[21,-30],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,-2],[0,-3],[-1,0],[0,-3],[0,-1]],[[4148,32173],[0,0],[-15,-13],[-1,-2],[0,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,0],[0,-1],[1,-2],[1,-1],[0,0],[4,-3],[47,-22],[0,0],[0,0],[1,0],[1,0],[0,0],[0,0],[2,-1],[4,0],[0,0],[0,0],[0,0],[0,0],[1,0],[0,0],[7,1],[0,0],[1,0],[14,7],[9,6],[10,15],[0,1],[0,3],[-1,3],[-2,6],[-2,6],[0,0],[-4,-3],[0,0],[-2,10],[4,22],[18,8],[2,1],[1,0],[2,1],[2,0],[0,0],[3,-1],[15,-5],[12,-5],[7,-3],[1,0],[0,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,0],[1,0],[0,-1],[3,-3],[3,-3],[0,0],[0,-1],[1,-1],[0,0],[1,-1],[0,-1],[0,0],[1,-2],[0,-1],[0,0],[0,-2],[0,-2],[0,-1],[0,0],[0,-1],[-1,-1],[0,-1],[-57,-102],[0,0],[-70,-4],[-60,45],[-26,19],[-35,29],[-11,9],[0,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,3],[-1,1],[0,1],[-1,2],[0,0],[-3,13],[-1,7],[-7,37],[8,17],[8,13],[6,-1],[1,0],[0,0],[103,-87]],[[4410,31832],[0,0],[-2,-2],[0,0],[-2,2],[-33,34],[-2,3],[-15,20],[-1,2],[-4,15],[0,0],[0,1],[0,3],[0,3],[2,17],[0,0],[1,3],[0,2],[1,2],[0,2],[2,4],[1,2],[3,8],[1,1],[27,60],[1,0],[1,1],[3,4],[0,1],[0,0],[2,2],[1,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,-7],[1,-17],[3,-38],[2,-19],[1,-16],[3,-76],[0,-4],[-1,-7],[-4,-8]],[[4525,33189],[0,-1],[0,0],[0,-5],[-4,-15],[-2,-9],[-1,-1],[-2,-3],[-20,15],[0,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,2],[0,2],[2,5],[11,1],[9,2],[0,0],[0,0],[5,2],[3,0],[0,0]],[[4852,33577],[2,1],[0,0],[0,-1],[1,-2],[0,0],[1,-1],[0,-1],[0,-3],[0,0],[-1,-1],[-1,-3],[0,0],[-13,-21],[-1,-1],[-1,-1],[-8,3],[0,2],[2,4],[0,0],[0,1],[1,1],[1,0],[1,1],[0,0],[1,1],[1,2],[0,1],[1,2],[0,0],[0,1],[1,8],[0,2],[1,2],[-1,8],[0,1],[2,-1],[2,0],[7,-4],[1,-1]],[[4901,33674],[-33,-23],[12,24],[15,32],[0,0],[8,-17],[-2,-16]],[[4950,33735],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,0],[-28,-2],[-7,1],[0,0],[0,3],[1,1],[0,1],[3,3],[2,3],[8,8],[4,4],[21,16],[10,-8],[1,-1],[0,0],[-4,-16]],[[4258,33782],[0,0],[25,-6],[2,-1],[1,0],[0,0],[1,-1],[0,-1],[1,-1],[1,-2],[0,0],[11,-23],[0,0],[0,0],[1,-1],[0,-3],[1,-4],[1,-2],[0,-2],[1,-1],[1,-9],[-1,-2],[-1,-6],[-2,-6],[0,-3],[-1,-2],[0,-1],[-2,-4],[-4,-6],[-2,-1],[-1,0],[-9,-1],[-9,-1],[-9,1],[-2,1],[0,0],[0,0],[-3,5],[-16,22],[-2,26],[0,0],[0,5],[1,4],[0,3],[5,10],[6,10],[5,3]],[[4964,33815],[0,-3],[2,-7],[0,-3],[0,-5],[-1,-1],[0,0],[-1,-1],[0,0],[-1,-1],[-1,0],[0,0],[-2,0],[-1,0],[-1,1],[-1,1],[-9,20],[-8,16],[-2,8],[-1,10],[0,0],[3,0],[2,0],[1,0],[1,0],[0,0],[10,-17],[10,-18]],[[4309,33801],[-1,0],[-3,1],[-3,6],[0,3],[0,14],[1,3],[0,2],[0,1],[0,1],[6,11],[1,2],[0,1],[3,4],[1,0],[1,0],[0,0],[1,1],[1,0],[5,-4],[8,-16],[0,0],[0,0],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[-1,-2],[-2,-3],[0,-1],[-1,0],[-3,-4],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-6,-4]],[[4635,34814],[11,-8],[3,-3],[1,0],[2,-2],[1,-1],[2,-2],[3,-4],[1,-1],[0,0],[-9,-20],[-2,-4],[0,-1],[-1,-1],[-7,-3],[-5,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,1],[-4,3],[-1,1],[0,0],[-9,20],[1,5],[1,2],[3,6],[0,2],[0,0],[1,1],[2,3],[1,1],[1,0],[1,1],[1,1],[8,1]],[[5179,34903],[1,-4],[-1,-7],[-1,-11],[-1,-3],[0,-3],[-2,0],[0,0],[0,0],[-1,0],[-1,1],[-5,4],[0,0],[0,0],[-1,2],[-1,1],[-1,1],[-1,1],[-1,4],[0,2],[0,0],[-2,25],[0,0],[7,0],[5,-4],[2,-2],[0,0],[1,-1],[2,-4],[1,-2]],[[5113,34939],[0,-6],[0,0],[-4,-3],[-17,-14],[-4,-2],[0,0],[-4,2],[-4,2],[0,0],[4,8],[3,7],[1,0],[2,2],[10,4],[0,0],[13,0],[0,0]],[[5210,34903],[-1,-4],[-1,-1],[0,0],[-2,0],[-13,4],[-10,28],[2,6],[1,2],[3,7],[2,5],[1,0],[0,1],[8,7],[1,0],[0,0],[4,-12],[3,-26],[2,-17]],[[5246,35047],[15,-19],[17,-32],[0,0],[0,-2],[2,-9],[-2,-10],[-1,-1],[-11,-9],[-6,-5],[0,0],[-1,12],[0,0],[-24,6],[-14,-1],[-16,-1],[-7,-5],[-19,-16],[-15,-16],[-2,-1],[-1,0],[-1,0],[0,0],[0,0],[-6,-1],[-6,-1],[-1,2],[-1,1],[0,0],[-8,27],[-2,12],[0,2],[0,2],[2,4],[1,3],[1,2],[30,29],[25,23],[0,0],[19,11],[3,1],[0,0],[1,0],[0,0],[1,0],[0,0],[27,-8],[0,0]],[[5414,37981],[0,-1],[0,-1],[0,0],[-1,-3],[-2,-4],[-21,-30],[-1,-1],[0,0],[-4,-5],[-2,0],[0,0],[-1,0],[-4,2],[-4,4],[-2,2],[-2,3],[-1,1],[0,0],[0,0],[0,1],[0,1],[-2,6],[0,0],[0,1],[-1,1],[4,11],[1,3],[0,0],[0,0],[25,14],[11,6],[0,0],[1,0],[3,1],[1,-3],[2,-4],[0,-3],[0,-1],[0,-1]],[[3780,38319],[0,0],[-1,0],[-2,-1],[-1,0],[0,0],[0,0],[-2,0],[-5,0],[0,1],[-1,0],[-7,4],[0,0],[0,0],[-5,6],[-6,7],[0,1],[-1,1],[-5,8],[-1,2],[0,0],[-1,1],[0,0],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[1,1],[6,17],[7,6],[2,2],[2,1],[1,0],[3,2],[0,0],[2,1],[7,3],[3,1],[2,1],[1,0],[1,0],[2,1],[0,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[4,-3],[1,-1],[0,0],[2,-2],[2,-4],[3,-3],[0,-1],[1,-1],[0,-2],[1,-2],[0,-3],[0,-3],[0,0],[-1,-12],[-2,-12],[-1,-2],[0,-1],[-2,-3],[-1,-3],[0,0],[0,0],[-5,-6],[-2,-4],[0,0],[-8,-3],[-7,-4]],[[103084,67844],[13,0],[16,-2],[0,-1],[0,-2],[0,-3],[0,0],[-2,-7],[0,-2],[0,-2],[-1,-1],[0,0],[-26,-57],[-46,-656],[-5,-43],[-44,-27],[-5,-3],[-16,-10],[-30,-17],[-10,-6],[-5,-3],[-20,-9],[-42,-4],[-588,-30],[0,0],[-15,40],[34,22],[32,21],[108,60],[35,20],[87,43],[0,0],[82,119],[-1,121],[-2,119],[-14,55],[-10,27],[-7,22],[-26,19],[-20,15],[0,0],[140,112],[141,30],[97,20],[150,20]],[[103453,68379],[-1,-7],[-5,-26],[-3,-14],[-8,-30],[-37,-25],[-17,-11],[-28,-16],[-25,-15],[-116,-60],[-35,6],[4,17],[3,14],[111,125],[0,0],[136,65],[1,0],[5,1],[0,0],[0,0],[3,1],[2,-1],[1,0],[2,-1],[2,0],[0,0],[0,0],[1,-1],[1,-1],[0,-1],[2,-5],[1,-4],[0,-6],[0,-4],[0,-1]],[[190269,46864],[-89,-20],[-40,40],[265,357],[-5,-118],[-52,-178],[-79,-81]],[[190110,48583],[-50,-49],[-129,195],[-57,12],[-59,440],[116,58],[58,-322],[73,-50],[61,-226],[-13,-58]],[[190319,49771],[-72,-115],[-63,43],[-15,45],[72,265],[-26,27],[-7,194],[12,68],[26,-14],[81,-45],[10,-179],[32,-16],[-50,-273]],[[21802,77482],[0,0],[-129,-139],[-519,-366],[-67,25],[-235,88],[-84,577],[60,233],[98,143],[8,51],[-17,28],[-36,60],[-18,101],[4,17],[10,44],[8,5],[24,14],[265,-158],[295,-176],[261,-379],[80,-115],[-5,-31],[-3,-22],[0,0]],[[20225,79188],[41,25],[200,-110],[106,4],[208,-161],[6,-52],[5,-41],[0,0],[0,0],[-8,-6],[-106,-81],[-50,-14],[-170,-48],[-17,8],[-29,13],[-84,121],[-142,203],[9,66],[7,59],[24,14]],[[19757,79270],[-106,14],[0,0],[0,0],[52,139],[463,-68],[-70,-96],[-65,-25],[-274,36]],[[19065,79971],[0,0],[90,-151],[29,-117],[52,-65],[18,28],[91,-161],[0,0],[0,0],[-42,-10],[-60,-15],[-298,59],[-2,0],[0,0],[-138,281],[0,0],[0,0],[33,19],[227,132],[0,0]],[[17900,80263],[-3,-14],[-70,-73],[-26,-26],[-24,4],[-111,22],[-82,69],[-82,69],[0,0],[0,0],[47,129],[125,94],[0,0],[0,0],[92,4],[78,4],[0,0],[0,0],[12,-8],[56,-39],[3,-13],[13,-68],[-28,-154]],[[102886,70678],[23,-5],[8,-12],[2,-3],[0,0],[1,-1],[11,-35],[0,-2],[1,-4],[1,-5],[3,-15],[0,0],[0,-1],[0,-1],[0,-1],[1,-16],[0,-3],[-5,-57],[-12,-48],[-10,-43],[0,-2],[-1,-1],[0,-2],[-1,-3],[0,-2],[-22,-24],[-2,-1],[-1,0],[-1,0],[0,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,0],[-2,0],[-1,0],[0,0],[0,0],[-4,0],[0,0],[0,0],[-3,2],[-2,1],[-7,6],[-8,6],[-12,11],[-17,15],[-12,19],[-3,4],[-4,8],[-5,13],[-2,41],[1,2],[0,2],[1,3],[2,10],[1,1],[0,1],[7,26],[1,3],[2,6],[1,1],[36,69],[8,15],[0,0],[0,0],[2,2],[0,2],[1,1],[3,4],[10,9],[1,0],[0,1],[2,1],[1,0],[2,1],[3,2],[1,1],[3,0],[1,0],[1,0]],[[102651,69790],[-2,0],[-1,0],[0,0],[-1,1],[-1,1],[-4,3],[-1,1],[0,0],[0,1],[-1,2],[-1,2],[-1,1],[4,20],[0,0],[1,1],[1,1],[0,0],[1,0],[5,1],[4,0],[5,1],[2,0],[18,-11],[0,-1],[0,-1],[2,-2],[0,0],[0,0],[-1,-2],[-1,-1],[-4,-5],[0,0],[-1,-1],[-21,-12],[-2,0]],[[102768,69963],[0,-2],[0,-1],[0,-3],[1,-3],[0,-4],[0,0],[0,-1],[-1,-3],[0,0],[0,-1],[-4,-9],[-9,-20],[-12,-4],[-1,1],[-1,0],[-10,8],[-1,3],[1,3],[0,1],[9,14],[14,21],[0,0],[10,4],[0,0],[1,0],[2,0],[1,-3],[0,0],[0,-1]],[[102850,70267],[-1,-3],[-1,-2],[-7,-12],[-4,-6],[0,-1],[-1,-1],[-2,-1],[-11,-5],[-4,0],[-1,0],[-1,0],[0,0],[-1,1],[-1,0],[0,0],[0,0],[-8,2],[-10,2],[-5,7],[3,2],[41,42],[22,15],[0,0],[0,0],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-6],[-2,-6],[-6,-18]],[[100511,67914],[-33,-9],[-85,-22],[-170,60],[-137,49],[22,38],[28,48],[0,0],[336,65],[66,56],[7,6],[0,0],[1,-3],[29,-43],[46,-169],[0,0],[-110,-76]],[[99956,76334],[1,-2],[0,0],[2,-7],[0,-2],[0,-1],[0,-3],[-8,-13],[0,0],[-1,-1],[-1,-2],[-2,-3],[-2,-2],[-5,-3],[-1,-1],[-1,0],[0,-1],[-37,-15],[-22,-9],[-12,-5],[0,0],[-5,0],[-7,-1],[-25,1],[-3,1],[-4,1],[0,0],[-1,0],[0,1],[-1,1],[0,0],[1,3],[1,0],[0,1],[59,60],[4,4],[64,6],[0,0],[0,-1],[1,0],[5,-7]],[[99815,76327],[0,0],[0,-1],[0,-1],[1,-3],[-1,-2],[-1,-1],[0,0],[-12,-3],[-2,0],[-2,1],[-2,0],[-4,1],[-22,6],[1,2],[1,6],[6,6],[6,7],[1,0],[2,0],[1,0],[1,0],[5,-2],[8,-3],[9,-8],[3,-4],[1,-1]],[[100161,76395],[-9,-9],[0,0],[-1,-1],[-83,-73],[0,0],[-14,-5],[-1,1],[0,0],[0,2],[0,1],[3,30],[4,6],[0,0],[0,0],[1,2],[19,29],[28,7],[41,11],[5,1],[1,0],[1,0],[4,1],[0,0],[1,-3],[0,0]],[[100151,76668],[9,-7],[2,-1],[0,0],[1,0],[1,-1],[4,-3],[1,-1],[1,-1],[7,-8],[10,-11],[0,0],[1,-1],[1,-1],[12,-18],[0,-1],[0,-2],[1,-4],[0,0],[0,-2],[0,0],[-1,-1],[0,0],[-1,-1],[-1,-2],[0,0],[-2,0],[-2,-1],[-1,1],[-5,1],[-29,14],[-50,22],[3,12],[3,12],[0,0],[15,3],[14,3],[2,-1],[1,0],[3,0],[0,0]],[[99779,75589],[2,-2],[5,-4],[30,-26],[5,-3],[3,-3],[1,0],[0,-1],[0,0],[4,0],[3,-1],[9,10],[11,6],[5,1],[3,1],[9,0],[63,-3],[1,-8],[0,-6],[0,0],[-51,-26],[-25,-12],[-20,-8],[-15,-4],[-49,-8],[-45,-7],[-23,-1],[-30,-2],[-3,3],[-6,5],[0,0],[0,8],[0,44],[13,20],[9,13],[77,16],[14,-2]],[[99802,76242],[18,-2],[5,0],[2,-1],[8,-3],[24,-15],[2,-1],[5,-4],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-1],[-1,-7],[0,0],[-1,0],[-5,-6],[0,0],[-1,-1],[-9,-2],[-86,-18],[-4,0],[-2,1],[-3,1],[-5,9],[0,1],[0,0],[0,1],[-1,1],[0,0],[0,1],[0,0],[-1,3],[0,1],[0,2],[0,0],[0,0],[0,1],[0,0],[0,1],[0,1],[0,2],[0,1],[0,1],[15,13],[2,2],[0,0],[38,18]],[[99664,76237],[4,-1],[11,-8],[7,-4],[3,-3],[9,-8],[3,-3],[14,-17],[-3,-9],[0,0],[-7,-3],[-7,-1],[-14,-4],[-3,0],[-6,0],[-14,4],[0,0],[-11,4],[-9,5],[0,0],[-1,1],[0,2],[-1,4],[-1,5],[-9,7],[-3,3],[-57,7],[-5,-2],[-14,-3],[-1,0],[-1,1],[0,0],[-7,7],[0,0],[0,0],[-2,5],[-1,2],[0,0],[3,2],[3,3],[8,3],[0,0],[28,8],[7,2],[8,1],[19,3],[2,0],[19,-5],[15,-4],[7,-2],[7,-2]],[[245970,67198],[-46,-203],[-36,23],[-70,219],[13,75],[70,102],[68,-90],[1,-126]],[[300122,39425],[0,0],[47,-99],[39,-80],[38,-118],[19,-60],[0,0],[164,-16],[6,-1],[66,-6],[0,0],[35,-105],[61,-190],[52,-252],[-9,-45],[0,0],[-151,-78],[-9,4],[-7,3],[-53,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-11,-2],[-1,0],[0,0],[-21,-4],[0,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,-2],[0,0],[0,0],[-3,-1],[0,-1],[0,0],[-8,-7],[-45,-61],[-67,29],[0,0],[-31,82],[-25,65],[-45,150],[-51,304],[-44,262],[-2,16],[1,10],[6,81],[17,87],[0,0],[0,0],[0,2],[1,2],[1,2],[2,2],[8,7],[0,1],[0,0],[31,21]],[[302894,33305],[7,0],[3,0],[1,-1],[0,0],[2,0],[40,-25],[1,-1],[0,0],[0,0],[3,-2],[1,-1],[1,-2],[0,0],[1,-1],[1,-1],[0,-2],[1,-1],[5,-14],[0,0],[1,-5],[2,-6],[-1,-4],[-2,-8],[-2,-9],[-1,-4],[-1,-1],[-5,-12],[-1,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-1],[0,0],[-1,-1],[0,0],[-1,-1],[-6,-9],[-1,-2],[-3,-2],[-13,-6],[-25,7],[-38,10],[-6,1],[-4,2],[-1,0],[0,0],[0,1],[0,0],[-1,1],[-1,0],[0,0],[0,1],[-13,25],[-3,8],[-6,19],[0,9],[1,10],[1,9],[0,0],[0,1],[3,5],[6,7],[4,3],[8,4],[0,0],[15,5],[14,1],[18,1]],[[303253,34003],[0,-1],[0,-2],[0,-1],[-5,-28],[-6,-10],[-3,0],[-9,1],[-1,0],[0,0],[-3,6],[-1,1],[0,2],[-4,8],[-2,7],[-2,11],[0,0],[33,6],[2,0],[0,0],[1,0]],[[302454,34216],[19,0],[9,-1],[9,-2],[1,-1],[0,0],[0,0],[1,-1],[0,-1],[0,0],[0,-2],[1,-4],[-1,-9],[53,-125],[19,-46],[48,-37],[0,0],[-28,-107],[-3,-10],[-1,-2],[0,-1],[-1,-3],[-8,-14],[-4,-6],[-5,-4],[0,0],[-2,0],[-1,0],[-5,0],[-3,0],[-2,1],[-1,0],[-7,3],[-30,11],[-6,3],[0,0],[-17,9],[-11,10],[-1,1],[-1,1],[-1,1],[-34,44],[-37,57],[-15,32],[-5,12],[-8,23],[-2,8],[-2,9],[0,0],[-1,3],[1,1],[0,1],[0,1],[0,0],[23,110],[5,8],[10,6],[3,3],[7,4],[2,2],[24,12],[8,0]],[[302277,34993],[25,-11],[2,-2],[0,0],[1,0],[3,-2],[1,-1],[1,-2],[6,-9],[15,-28],[113,-214],[5,-6],[3,-2],[16,-29],[1,-2],[0,0],[6,-19],[2,-12],[1,-7],[0,-15],[-3,-7],[-13,-19],[-2,-2],[-2,-3],[-3,-4],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-3,-2],[-17,-13],[0,0],[0,0],[-2,-1],[0,0],[0,0],[-2,0],[-1,1],[0,0],[-1,0],[-5,2],[-140,65],[-7,3],[-9,6],[-19,11],[-60,38],[-1,1],[0,0],[-1,1],[-6,5],[-1,1],[-1,3],[0,0],[0,1],[-1,0],[0,1],[0,0],[0,2],[-1,1],[-1,22],[2,123],[3,42],[1,18],[1,1],[0,2],[0,0],[0,0],[3,9],[2,4],[0,1],[3,4],[4,8],[9,11],[12,16],[2,1],[0,0],[5,5],[5,3],[0,0],[1,1],[1,0],[46,5],[3,0],[0,0],[2,0],[1,0]],[[301658,36208],[74,-58],[0,0],[83,-112],[-2,-30],[-1,-16],[-11,-57],[-1,-1],[0,-1],[-2,-7],[0,-1],[0,-1],[-1,-1],[-1,-2],[-2,-3],[-2,-2],[-4,-3],[-2,-2],[0,0],[-39,-21],[-1,0],[0,0],[-2,-1],[-3,0],[0,0],[-1,0],[0,0],[-2,0],[-5,1],[-146,85],[-47,7],[-48,7],[0,-2],[-1,-2],[-1,-1],[0,-2],[-6,-5],[0,-1],[-1,0],[-1,-1],[0,0],[-1,0],[-1,-1],[0,0],[-1,0],[-2,-1],[-2,-1],[0,0],[-1,0],[0,0],[-1,0],[-1,0],[-5,7],[-4,4],[-1,42],[15,44],[1,3],[5,11],[6,9],[2,2],[0,1],[1,1],[91,120],[75,-8]],[[301566,36237],[1,0],[0,0],[2,-2],[0,0],[4,-7],[0,0],[2,-3],[1,-1],[0,0],[0,-1],[1,-2],[2,-5],[1,0],[0,-1],[0,-1],[-2,-2],[-2,-1],[-40,-22],[-20,-12],[-3,2],[-7,2],[0,0],[6,26],[6,5],[12,9],[14,9],[11,6],[2,1],[6,2],[0,0],[2,-1],[1,-1]],[[301651,36263],[-2,-1],[0,0],[0,0],[-1,-1],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,0],[-9,2],[-5,1],[-6,4],[-8,6],[-1,1],[0,0],[0,0],[0,0],[-1,2],[0,1],[-1,1],[-3,7],[-3,5],[-11,27],[1,5],[2,9],[5,5],[1,1],[1,1],[1,0],[0,1],[1,0],[0,0],[0,0],[2,1],[3,1],[1,0],[1,0],[0,0],[1,0],[1,-1],[2,-1],[0,0],[0,0],[1,-2],[1,-1],[10,-23],[18,-39],[1,-2],[1,-3],[1,-4],[0,-1],[0,-2]],[[301631,36695],[-1,-1],[0,0],[-2,-1],[-3,-1],[-1,0],[0,0],[-1,-1],[-1,0],[0,0],[-3,0],[-2,0],[0,0],[-1,1],[-12,7],[-1,5],[0,2],[0,9],[0,1],[0,1],[1,0],[41,40],[1,1],[0,0],[1,2],[3,1],[2,2],[2,0],[1,0],[3,0],[1,0],[0,0],[2,0],[12,-5],[13,-12],[1,0],[0,-1],[1,0],[1,-2],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,0],[0,-1],[-1,0],[0,-1],[-4,-3],[-53,-38]],[[301825,36944],[0,0],[1,-1],[0,0],[1,0],[2,-4],[1,-4],[1,-2],[0,-3],[-1,-13],[-1,-1],[0,-1],[-1,-2],[-20,-30],[0,-1],[-1,-1],[0,0],[-15,-8],[-3,-1],[-2,0],[0,0],[-5,1],[-8,1],[-1,4],[0,1],[-1,5],[0,5],[0,3],[0,13],[0,5],[0,2],[1,6],[1,9],[1,7],[1,1],[1,1],[7,4],[11,8],[14,0],[5,0],[11,-4]],[[301478,37284],[4,-2],[3,-4],[8,-12],[188,-211],[0,0],[-41,-27],[-123,-26],[0,0],[-12,5],[-38,17],[-8,12],[-5,7],[-2,4],[-4,8],[-16,51],[-7,22],[14,84],[6,19],[9,29],[11,17],[1,2],[0,0],[1,1],[3,3],[0,0],[8,1]],[[301614,37376],[2,0],[3,0],[2,-2],[1,-1],[1,-2],[2,-2],[1,-2],[2,-5],[4,-11],[2,-9],[1,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,-3],[-1,-6],[0,-1],[-1,-1],[-4,-4],[-1,0],[-3,-2],[-12,-1],[-1,0],[-7,3],[-9,5],[-3,2],[-2,3],[-1,2],[-9,18],[0,7],[1,10],[1,3],[1,2],[1,1],[1,1],[1,1],[0,0],[8,2],[1,0],[0,0],[1,0],[0,1],[3,-1],[0,0],[1,0],[1,0],[12,-3]],[[301531,37435],[2,-4],[7,-10],[-3,-56],[-1,-3],[0,-2],[0,0],[-1,-4],[-1,-1],[-1,-2],[-1,-2],[-3,-1],[-2,-1],[-3,-1],[-1,-1],[-2,0],[-6,-1],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-4,1],[-2,1],[0,0],[-3,2],[-1,1],[-3,6],[0,0],[0,0],[-1,1],[0,1],[0,0],[0,0],[0,1],[0,0],[0,1],[0,0],[0,1],[0,1],[2,11],[4,22],[3,10],[5,17],[9,14],[10,-2],[0,0]],[[301480,37779],[0,0],[100,-187],[1,-2],[1,-2],[5,-16],[0,-3],[0,-2],[-2,-6],[-2,-9],[-3,-6],[-3,-5],[-2,-3],[-3,-3],[-10,-10],[-6,-2],[-3,-2],[0,0],[-13,-2],[0,-1],[-5,-1],[-8,-1],[-60,-5],[-20,-2],[-23,-2],[-4,0],[-9,5],[-31,16],[-43,23],[-15,8],[-22,13],[-54,47],[-1,1],[0,0],[-1,2],[-5,29],[-1,7],[0,6],[0,0],[0,2],[1,1],[2,3],[3,3],[2,1],[2,1],[4,2],[1,0],[227,102]],[[300683,38038],[29,-20],[20,-25],[61,-129],[5,-22],[20,-42],[17,-16],[16,-16],[36,-28],[38,-28],[162,-164],[14,-15],[44,-87],[-5,-30],[-8,-47],[-11,-22],[0,0],[-50,-4],[-58,1],[-61,1],[-139,22],[-31,284],[-7,59],[-13,23],[-22,41],[-38,-6],[0,0],[-116,94],[7,66],[8,81],[1,7],[2,6],[0,1],[1,2],[4,5],[1,2],[3,3],[15,10],[9,5],[2,1],[2,0],[1,0],[1,0],[1,0],[0,0],[2,0],[7,-2],[7,-2],[17,-7],[6,-2]],[[300593,38334],[8,-2],[35,-8],[24,-25],[6,-7],[-1,-27],[0,-35],[-2,-10],[-2,-5],[-2,-5],[-4,-9],[0,0],[-1,0],[-2,-2],[-4,-2],[-7,-4],[-4,-1],[-1,-1],[-2,-1],[-2,0],[-8,3],[-1,1],[-1,0],[-3,2],[-1,0],[0,0],[-1,1],[-1,0],[-2,1],[-5,3],[0,0],[0,0],[-2,2],[-2,0],[-1,1],[-1,1],[-2,1],[-50,33],[-2,2],[-5,3],[0,0],[0,1],[-1,0],[0,1],[-2,1],[0,0],[-2,2],[0,1],[-1,1],[-8,10],[-3,5],[-3,5],[-1,3],[0,1],[0,2],[0,1],[0,6],[0,3],[0,1],[0,4],[3,20],[0,0],[4,8],[1,1],[1,1],[0,0],[14,8],[4,1],[4,1],[10,0],[19,2],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0]],[[300684,38371],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,2],[0,0],[-1,1],[0,0],[0,0],[0,1],[-1,0],[0,1],[-1,1],[0,0],[-1,2],[-1,3],[-1,1],[1,2],[1,2],[18,32],[5,8],[0,0],[0,0],[1,0],[1,1],[1,-1],[0,0],[1,0],[0,0],[0,-1],[0,0],[1,-1],[0,0],[1,-1],[1,-2],[1,-2],[0,-1],[0,-2],[1,-1],[0,0],[1,-4],[0,-2],[1,-7],[0,0],[0,-1],[1,-3],[-1,-1],[0,0],[0,-1],[0,-1],[0,0],[-1,-2],[0,-3],[0,0],[-1,0],[0,-1],[-2,-4],[-1,-1],[-2,-3],[-1,-1],[-5,-6],[-2,-2],[-1,0],[0,0],[-1,-1],[-3,-2],[-1,0],[0,0],[-1,-1],[0,0]],[[300637,38432],[8,-35],[2,-10],[0,-6],[0,-3],[0,-3],[0,0],[-1,-1],[0,-3],[-2,-7],[-1,-1],[0,0],[-1,-2],[-2,-2],[-2,-3],[-1,-1],[0,0],[-1,0],[0,-1],[-4,-1],[-1,-1],[0,0],[-1,0],[-2,0],[0,-1],[-1,0],[-8,-2],[-36,3],[-3,1],[-6,2],[-12,3],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[2,5],[1,3],[0,1],[1,1],[0,1],[2,3],[0,0],[0,0],[23,31],[0,1],[18,18],[7,6],[1,0],[7,5],[1,0],[1,0],[1,0],[0,0],[1,-1],[1,0],[6,-1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,0],[0,0],[1,-1],[1,-1],[0,-1],[0,-1]],[[301459,38529],[0,0],[1,0],[1,-1],[0,-2],[1,-1],[20,-74],[4,-45],[34,-186],[24,-127],[-52,-115],[-18,-38],[0,0],[-26,166],[-18,113],[-1,188],[4,58],[5,56],[1,4],[1,1],[3,3],[4,2],[5,0],[4,0],[0,0],[0,0],[3,-2]],[[301284,38724],[4,0],[11,-3],[2,-17],[1,-12],[-48,-103],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-19,-25],[-19,-23],[-19,-22],[-8,-8],[-1,-1],[-9,-4],[0,0],[0,0],[-1,-1],[-5,-1],[-93,7],[-7,1],[-5,0],[-1,0],[-1,1],[-3,2],[-23,20],[-2,3],[-2,2],[0,0],[0,10],[2,9],[2,8],[0,0],[21,26],[15,15],[10,11],[6,5],[5,5],[68,54],[2,1],[72,33],[41,12],[3,0],[1,0],[0,0],[1,0],[1,0],[2,-1]],[[301369,39144],[17,-11],[8,-24],[2,-7],[9,-37],[13,-58],[20,-94],[30,-139],[7,-95],[0,-2],[-3,-49],[-8,-27],[0,-1],[-1,-2],[0,0],[-1,-1],[-8,-3],[-3,-1],[-1,0],[-7,1],[-4,3],[-8,5],[-8,39],[-2,15],[-7,38],[0,3],[-2,14],[0,5],[0,1],[0,2],[0,1],[-1,1],[1,4],[0,1],[0,1],[-8,92],[-5,63],[-44,229],[-6,21],[-1,7],[1,3],[0,2],[0,0],[4,6],[0,1],[1,0],[0,0],[1,0],[0,0],[14,-7]],[[301356,39656],[15,-4],[1,-1],[1,0],[1,0],[0,0],[0,-2],[0,-1],[0,0],[-1,-4],[-1,-4],[0,-2],[-1,-2],[-4,-14],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-2,-3],[-1,0],[-4,-1],[-9,-2],[-1,0],[-1,0],[-5,4],[-1,2],[-1,1],[-1,1],[-1,1],[0,2],[-1,3],[-3,13],[1,3],[0,1],[0,3],[1,2],[0,0],[1,1],[0,0],[1,3],[0,1],[1,2],[1,0],[0,0],[2,2],[0,1],[1,0],[1,1],[1,0],[1,0],[3,1],[1,0],[8,-1]],[[300921,39920],[5,-2],[30,-11],[0,0],[3,-4],[4,-5],[4,-9],[2,-3],[2,-5],[6,-30],[1,-2],[0,-1],[0,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-5,-18],[-1,-1],[0,-2],[-19,-60],[-4,-8],[0,-1],[-2,-2],[-6,-7],[-6,-5],[0,0],[-2,-2],[0,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-6,-2],[-4,-1],[-5,0],[0,0],[-87,6],[0,0],[-12,26],[0,0],[0,91],[1,6],[8,27],[3,3],[4,3],[28,17],[17,2],[11,5],[3,2],[5,3],[9,4],[1,0],[0,1],[0,0],[1,-1],[2,0],[1,-1],[6,-3],[7,-3]],[[300885,40451],[2,-2],[1,-2],[1,-1],[0,0],[1,-1],[7,-10],[1,-3],[16,-42],[4,-12],[10,-32],[12,-48],[1,-4],[-30,-39],[-40,-36],[-17,-4],[-21,-5],[0,0],[-51,99],[-1,2],[0,0],[0,2],[-1,0],[0,2],[-2,17],[1,23],[4,41],[3,7],[2,5],[2,6],[4,8],[2,4],[3,4],[11,11],[10,10],[5,4],[2,2],[2,1],[19,7],[11,3],[0,0],[1,0],[2,0],[23,-17]],[[301067,40535],[2,-10],[0,0],[0,-3],[0,-1],[0,0],[0,-3],[0,-5],[0,-2],[0,-3],[-1,-2],[0,0],[0,-1],[-1,0],[-5,-2],[-47,-20],[0,0],[-6,4],[-8,6],[10,18],[6,11],[23,12],[12,3],[10,2],[5,-4]],[[300733,40701],[5,-1],[4,-1],[2,0],[5,-2],[11,-7],[0,0],[0,-1],[1,-3],[1,-6],[2,-7],[2,-8],[1,-2],[0,-1],[0,0],[2,-6],[1,-7],[-1,-2],[-5,-6],[-1,0],[0,-1],[-1,-1],[-2,-2],[-2,-2],[-1,0],[0,-1],[-3,-2],[-7,-2],[-6,-1],[-6,-1],[-1,0],[-2,0],[-4,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-4,2],[-7,5],[-3,3],[-1,1],[0,1],[-1,1],[-3,6],[-2,4],[0,1],[-1,4],[0,2],[0,2],[0,2],[2,6],[1,4],[0,1],[0,0],[1,2],[1,3],[2,3],[3,4],[4,4],[1,1],[4,4],[10,3],[1,0],[1,0],[1,0]],[[300190,40822],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,0],[2,-2],[0,-1],[0,0],[0,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-11],[1,-1],[0,-1],[-2,-7],[-4,-14],[-2,-7],[-1,0],[-1,-3],[0,0],[-1,-1],[0,-1],[-1,-1],[-5,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-10,27],[-1,5],[-1,7],[0,0],[0,1],[1,1],[1,2],[0,0],[0,0],[1,1],[1,1],[15,9],[0,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,0],[1,-1]],[[300136,40903],[3,-3],[5,-5],[3,-7],[6,-15],[3,-7],[0,-1],[0,-1],[0,-3],[0,-1],[0,0],[-2,-6],[0,-3],[-1,-1],[0,0],[0,-1],[-4,-5],[0,0],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-6,5],[-19,28],[0,1],[0,1],[-2,2],[0,1],[-1,3],[-1,9],[1,3],[2,3],[0,0],[7,7],[1,0],[1,0],[0,0],[1,0],[4,-3],[1,0]],[[300143,41018],[1,0],[3,-1],[1,-1],[2,-1],[0,0],[1,-1],[0,0],[0,-1],[5,-18],[0,0],[0,-2],[1,-10],[0,-2],[0,-4],[0,-1],[0,0],[0,0],[-15,-11],[-20,-6],[-9,1],[-11,12],[-4,13],[0,0],[-1,10],[0,11],[9,13],[0,0],[1,1],[0,0],[1,1],[0,0],[35,-3]],[[300065,41179],[5,-1],[10,-6],[0,0],[1,-1],[3,-3],[1,-2],[3,-5],[1,-4],[1,-1],[1,-20],[0,-11],[0,-17],[1,-25],[-3,-22],[-1,-6],[0,-3],[0,-4],[-1,-1],[0,-1],[0,0],[0,-1],[-1,0],[-7,3],[-5,3],[-10,8],[-1,1],[-4,4],[-1,1],[-1,1],[-1,2],[-2,4],[0,0],[0,8],[0,19],[2,8],[2,12],[9,18],[0,1],[1,2],[0,1],[0,0],[0,1],[-1,5],[-2,5],[-1,2],[-2,3],[-3,4],[-1,2],[-2,4],[0,1],[0,1],[-1,1],[0,3],[0,6],[0,1],[0,0],[1,1],[0,0],[0,1],[1,0],[0,0],[1,0],[0,0],[0,-1],[6,-1],[1,-1]],[[202383,69853],[108,-15],[234,63],[311,-148],[-78,-91],[-266,-125],[-371,-56],[-95,39],[-199,223],[89,148],[104,46],[51,-15],[112,-69]],[[301302,23358],[-1,0],[0,-1],[-1,-1],[-1,-1],[-8,-3],[-7,-3],[-12,2],[-10,2],[-3,1],[-4,2],[-5,3],[-3,2],[-2,7],[-1,6],[0,5],[-1,5],[0,2],[1,21],[0,3],[5,12],[0,0],[20,-6],[3,-2],[2,-1],[6,-4],[1,0],[1,0],[22,-16],[1,-23],[-2,-5],[-1,-7]],[[96766,69172],[-5,-2],[-2,2],[0,0],[-2,2],[-1,1],[0,0],[-1,1],[-1,1],[-1,1],[-4,4],[-1,2],[-1,1],[0,1],[-4,7],[-7,21],[-2,5],[0,0],[-5,35],[-1,33],[2,2],[2,3],[1,1],[0,1],[1,1],[0,1],[0,1],[1,4],[-1,5],[-1,6],[-5,14],[-3,8],[-1,3],[0,0],[-1,1],[-9,18],[0,1],[-1,0],[-2,3],[-1,2],[-2,3],[0,0],[-1,1],[-8,7],[-10,7],[0,0],[-1,0],[-13,5],[-2,1],[0,0],[10,18],[17,30],[73,-39],[27,-26],[1,0],[4,-71],[-10,-43],[-13,-56],[-1,-2],[0,-1],[-5,-11],[0,-1],[-1,-1],[0,0],[-1,-2],[-2,-4],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-2,-1]],[[101330,75243],[-2,0],[-8,7],[-1,1],[-7,14],[-4,6],[0,1],[0,1],[-5,10],[-1,2],[-1,1],[3,17],[0,3],[0,0],[13,0],[1,-1],[26,-27],[4,-4],[2,-2],[0,-1],[1,-1],[0,0],[1,-1],[0,-1],[0,0],[1,-4],[-3,-9],[-1,-1],[0,0],[-1,-2],[0,0],[0,-1],[-8,-4],[-4,-2],[-1,0],[-1,-1],[-1,0],[0,0],[-1,0],[-1,-1],[-1,0]],[[101116,75417],[0,0],[-13,-4],[-3,-1],[-1,1],[-4,1],[-3,0],[-3,0],[-1,0],[0,0],[-1,1],[0,0],[-2,3],[1,0],[0,1],[0,1],[0,1],[0,3],[1,4],[1,5],[1,6],[1,3],[2,3],[3,1],[3,1],[3,1],[3,1],[5,-1],[9,-3],[1,-1],[0,-1],[0,0],[2,-6],[0,-2],[0,-2],[1,-2],[-1,-1],[0,-1],[0,-1],[-3,-11],[-2,0]],[[86489,52423],[-64,-49],[-8,-6],[-53,15],[-1,0],[-2,69],[-3,95],[36,159],[51,22],[109,48],[115,-71],[0,0],[-3,-17],[-3,-23],[-34,-21],[-48,-30],[-42,-87],[-50,-104]],[[76766,55942],[45,-81],[70,-123],[139,-363],[218,-444],[0,0],[-45,-175],[-50,-59],[-157,-60],[-112,-42],[-190,45],[-67,108],[13,54],[0,0],[140,159],[108,49],[0,0],[-168,634],[-63,96],[-64,-35],[-21,24],[-16,18],[220,195]],[[78402,54714],[-74,-19],[-30,15],[-49,25],[49,62],[55,65],[40,47],[33,38],[63,47],[38,-5],[35,-4],[19,-34],[-115,-152],[-64,-85]],[[77724,54942],[0,0],[-143,-44],[0,0],[-117,85],[-11,73],[22,64],[16,47],[221,41],[0,0],[56,-75],[12,-15],[0,0],[-22,-129],[0,0],[-7,-10],[-27,-37]],[[76724,55249],[-22,-13],[-57,-36],[-45,9],[-67,14],[-38,174],[-4,21],[173,50],[0,0],[66,-97],[-6,-122]],[[77448,55400],[-24,-47],[-143,8],[-40,25],[-35,22],[-10,34],[-15,49],[63,105],[46,-26],[127,-70],[16,-53],[15,-47]],[[205672,32873],[-12,-1],[-95,14],[-43,25],[-10,6],[-31,21],[6,31],[37,179],[22,65],[9,21],[103,160],[7,11],[21,28],[25,27],[11,9],[10,5],[5,0],[6,-3],[36,-18],[18,-13],[107,-244],[-30,-112],[-6,-17],[-42,-108],[-39,-38],[-13,-8],[-58,-27],[-44,-13]],[[210806,33744],[-81,-29],[-4,1],[-1,0],[-4,2],[-3,1],[-32,31],[8,16],[78,53],[3,1],[10,6],[1,0],[15,1],[23,-12],[5,-2],[9,-6],[1,-25],[-1,-3],[0,-1],[-13,-18],[-4,-5],[-7,-9],[-2,-1],[-1,-1]],[[204937,44060],[-2,0],[-2,1],[-1,1],[-43,70],[-12,20],[-5,9],[-1,2],[-24,49],[0,2],[0,1],[0,1],[1,15],[1,0],[1,1],[2,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-2],[81,-125],[1,-1],[3,-4],[1,-2],[1,-1],[1,-1],[3,-13],[-1,-3],[0,-2],[-1,-1],[-1,-1],[-1,-3],[-7,-5],[-2,-1]],[[218605,47518],[-33,-48],[-1,-3],[-2,0],[-2,-1],[-3,-1],[-2,2],[-2,2],[-1,1],[-43,153],[48,-113],[-1,-2],[0,-11],[0,-5],[0,-2],[0,-1],[0,-9],[0,-2],[0,-2],[0,-1],[0,-2],[2,-2],[4,3],[1,1],[1,1],[27,43],[9,16],[5,75],[-10,30],[-17,21],[-17,28],[3,1],[4,1],[4,-3],[1,0],[36,-53],[-4,-97],[-7,-20]],[[150941,37912],[-53,-16],[-19,1],[-19,17],[2,25],[10,28],[0,1],[1,1],[1,2],[0,0],[49,51],[4,1],[1,0],[1,0],[1,0],[0,0],[27,-7],[13,-10],[16,-36],[-4,-19],[-3,-5],[-6,-10],[-1,-2],[-2,-2],[-2,-2],[-17,-18]],[[147256,10846],[15,-14],[34,-52],[1,-1],[1,-2],[1,-2],[0,-1],[0,-5],[-10,-24],[-3,-3],[-27,8],[-3,0],[-2,2],[0,2],[-11,16],[-26,23],[-21,11],[-2,0],[-2,0],[-1,1],[-1,0],[-3,0],[-2,12],[6,22],[13,6],[3,-2],[9,2],[31,1]],[[144872,14141],[-7,-4],[-11,6],[-4,3],[-1,1],[-1,1],[0,13],[0,2],[0,1],[1,4],[0,1],[14,9],[11,5],[25,-11],[7,-6],[0,-3],[0,-2],[0,-1],[-2,-1],[-32,-18]],[[145222,14309],[-1,0],[-8,1],[-28,13],[-20,29],[-3,7],[-2,5],[-1,3],[6,18],[3,8],[1,2],[17,29],[14,3],[25,0],[13,-1],[10,-6],[4,-5],[8,-9],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[8,-19],[0,-2],[2,-6],[0,-3],[0,-2],[-1,-1],[-1,-3],[-2,-2],[-40,-46],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[0,0],[-1,0],[-3,-1]],[[143430,46859],[-39,-13],[-8,3],[-8,10],[-2,2],[-1,2],[-1,5],[-1,26],[4,28],[7,20],[13,14],[8,2],[5,0],[9,-3],[1,-1],[2,0],[1,-1],[20,-19],[15,-15],[11,-16],[5,-17],[-18,-16],[-23,-11]],[[85132,83152],[-117,-20],[0,0],[42,101],[9,20],[144,95],[125,83],[67,-49],[-35,-142],[0,0],[-74,0],[-14,0],[-7,-4],[-140,-84]],[[311495,34356],[-1,-1],[0,0],[-1,1],[-3,1],[-5,2],[-9,4],[0,0],[0,0],[-4,11],[0,0],[7,11],[2,4],[4,16],[0,0],[0,1],[-5,10],[0,0],[0,11],[0,1],[0,0],[0,0],[6,5],[3,0],[0,0],[11,1],[4,-4],[0,0],[0,0],[4,-1],[2,-2],[5,-4],[0,-2],[1,-1],[5,-41],[-12,-15],[0,0],[0,0],[-4,-3],[-8,-5],[-2,0]],[[1374,34379],[-1,0],[0,0],[-1,1],[0,7],[0,10],[1,20],[0,3],[1,2],[1,7],[2,4],[4,6],[1,1],[0,0],[1,0],[0,0],[1,0],[0,0],[1,0],[1,-1],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-4],[-1,-23],[-1,-4],[0,-1],[0,-1],[0,-1],[0,0],[0,-2],[-1,0],[0,-1],[-1,-2],[0,0],[0,0],[-3,-6],[0,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,0],[-1,-1],[-4,-1],[-1,-1],[-1,0]],[[1247,34396],[-18,-1],[-19,0],[-2,1],[-1,1],[0,0],[-1,1],[0,0],[-1,1],[0,1],[-1,1],[-1,2],[0,0],[0,5],[-1,10],[0,2],[0,2],[2,7],[4,8],[10,17],[4,2],[5,3],[5,-2],[3,-1],[12,-60]],[[310393,34572],[-28,-46],[0,-1],[-1,0],[-35,-10],[-2,-1],[-12,-1],[-36,-3],[-17,3],[-11,17],[-8,13],[0,0],[1,12],[0,0],[-31,-1],[-30,-2],[-65,-37],[0,0],[-6,-23],[0,-1],[0,0],[-1,60],[81,62],[27,12],[42,18],[15,-2],[18,-4],[22,-6],[14,-3],[17,-5],[14,-4],[21,-22],[8,-17],[3,-8]],[[109,34572],[-6,-3],[-1,1],[0,0],[-2,2],[0,1],[0,0],[-1,1],[0,1],[0,1],[0,0],[3,29],[1,10],[2,16],[7,19],[3,7],[2,5],[1,0],[2,1],[39,-11],[-3,-28],[-9,-10],[-31,-35],[-7,-7],[0,0]],[[910,34580],[-6,-2],[-1,1],[0,0],[0,0],[-7,9],[-1,1],[-1,1],[-4,7],[-4,10],[-1,1],[-1,4],[0,2],[-1,2],[0,2],[0,5],[0,1],[0,10],[1,4],[4,8],[0,1],[0,0],[1,1],[0,0],[4,3],[14,12],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-7],[2,-3],[0,-1],[1,-1],[0,-1],[3,-11],[2,-5],[1,-8],[1,-5],[0,-6],[0,-1],[0,0],[0,-1],[0,-2],[0,0],[0,-1],[-3,-11],[0,-1],[0,0],[-1,-1],[-9,-14],[-2,-2],[-2,-1]],[[310406,34713],[2,-4],[4,2],[2,0],[0,0],[1,0],[3,0],[1,0],[1,0],[7,-30],[-1,-4],[0,-2],[0,0],[-2,-7],[-22,-29],[0,0],[-2,0],[-1,0],[-3,0],[-3,2],[-1,1],[-14,16],[-3,5],[-3,8],[-1,7],[0,2],[2,7],[0,4],[0,0],[0,0],[6,9],[17,10],[10,3]],[[1214,34734],[0,0],[-12,-5],[-29,3],[-16,3],[-4,2],[0,0],[-1,1],[0,1],[-1,5],[0,0],[0,1],[1,1],[2,2],[1,0],[1,0],[0,0],[26,-1],[14,-1],[17,-3],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,-2],[0,0],[0,0],[0,-1],[0,0],[1,-1],[-1,-3],[-1,-1]],[[1298,34937],[-1,0],[-1,-1],[-1,0],[0,1],[0,0],[-1,0],[0,0],[-1,0],[-9,10],[-4,5],[-1,1],[0,3],[0,9],[0,1],[0,1],[1,5],[1,2],[1,1],[1,0],[0,1],[0,0],[1,1],[1,0],[0,1],[2,0],[2,1],[1,1],[1,0],[2,1],[0,0],[1,0],[1,0],[1,0],[0,-1],[0,0],[3,-3],[6,-6],[3,-10],[0,-1],[0,-2],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,0],[0,-1],[-6,-11],[-1,-1],[0,0],[0,-1],[-1,-1],[0,0]],[[311615,34948],[0,0],[-3,-1],[-2,-1],[-7,3],[-40,61],[-3,6],[-2,5],[-1,2],[0,2],[0,2],[1,2],[1,2],[14,9],[14,9],[3,1],[4,1],[39,10],[8,2],[2,0],[0,0],[9,0],[3,-1],[1,0],[4,-3],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-3],[0,-2],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-1,-1],[-46,-93],[-1,-3],[-1,-1]],[[309671,35016],[0,0],[-1,0],[0,0],[-1,1],[-6,6],[-1,2],[0,1],[-32,81],[0,7],[0,3],[0,0],[2,3],[15,18],[0,0],[0,0],[1,1],[0,0],[1,0],[0,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,0],[0,0],[1,-1],[0,0],[0,-1],[3,-5],[5,-10],[0,-2],[1,0],[2,-6],[11,-87],[-1,-4],[-1,-2],[-1,-3],[0,0],[0,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0]],[[1052,35412],[-4,0],[-12,-1],[0,0],[0,0],[-19,17],[-3,8],[-6,16],[3,21],[0,3],[0,0],[8,6],[6,5],[4,1],[1,0],[2,0],[7,1],[1,0],[4,0],[0,0],[0,0],[4,-1],[6,-2],[21,-6],[0,0],[5,-4],[2,-2],[1,-2],[2,-2],[0,0],[1,-1],[6,-11],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,0],[0,-1],[0,-6],[0,0],[-1,0],[-22,-21],[-12,-7],[-7,-5],[0,0]],[[310462,35517],[-1,0],[-4,-1],[-27,10],[-1,0],[-2,2],[4,9],[7,14],[1,3],[1,1],[1,1],[0,1],[9,10],[8,4],[10,-12],[9,-25],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,0],[-2,-2],[-1,-1],[-9,-5]],[[831,35683],[-1,0],[-4,0],[-3,0],[-2,1],[-1,0],[0,0],[-3,2],[-13,18],[-4,10],[-1,2],[0,1],[-1,1],[0,0],[0,1],[0,1],[1,2],[0,0],[0,1],[0,2],[1,1],[0,1],[0,0],[1,0],[0,1],[0,0],[2,2],[2,3],[0,0],[1,2],[4,3],[0,1],[1,0],[0,0],[1,0],[6,-4],[0,0],[0,0],[6,-4],[3,-2],[3,-2],[4,-3],[0,-1],[2,-3],[0,-1],[0,0],[1,-1],[0,0],[2,-8],[1,-1],[0,0],[0,-1],[0,-2],[0,-9],[0,-1],[0,-1],[0,-2],[-1,-3],[-1,-3],[0,-2],[-1,0],[0,0],[0,0],[-3,-2],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0]],[[311137,35554],[0,0],[-1,0],[-1,0],[-1,0],[-2,1],[-8,2],[-1,1],[-1,1],[-48,59],[-23,28],[-5,9],[0,25],[3,21],[4,24],[8,9],[10,10],[3,3],[4,4],[1,0],[3,3],[2,0],[3,1],[6,0],[2,0],[1,0],[1,0],[0,0],[1,0],[1,-1],[1,-1],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[5,-8],[3,-6],[1,-1],[0,0],[0,-1],[23,-48],[7,-17],[0,0],[0,-1],[5,-23],[8,-36],[1,-12],[0,-9],[0,-2],[0,0],[0,-5],[0,-6],[-12,-17],[-1,-2],[0,0],[-1,-1],[-1,0],[-3,-1],[-1,0]],[[311185,35935],[0,0],[6,-2],[7,-2],[10,0],[1,0],[2,-1],[10,-5],[1,-1],[2,-1],[0,-1],[0,0],[-8,-46],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[-3,-6],[0,-2],[0,0],[-2,-2],[-1,-1],[0,0],[0,0],[-1,0],[-1,0],[-1,0],[-2,1],[-3,1],[0,0],[0,0],[-1,1],[-17,27],[-1,11],[-3,17],[8,20]],[[310984,35907],[-8,0],[-5,4],[-6,6],[-3,5],[-4,7],[0,1],[0,1],[0,8],[0,0],[8,4],[2,1],[6,-1],[1,0],[0,0],[0,0],[0,0],[1,-1],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,-1],[0,0],[1,-1],[0,0],[0,0],[10,-12],[1,-1],[0,-2],[0,-1],[1,-2],[-1,-2],[0,0],[0,-1],[-1,0],[-3,-7],[-1,-2],[0,0],[0,-1],[0,0],[-1,-1],[-1,0]],[[309268,35954],[-11,-4],[-8,1],[-2,0],[-5,5],[-2,3],[-6,14],[0,0],[0,0],[0,1],[0,1],[5,4],[5,1],[0,0],[11,3],[4,0],[0,-1],[0,0],[1,0],[0,0],[2,-1],[0,0],[1,-1],[0,0],[1,-1],[1,-1],[1,-4],[3,-11],[1,-6],[-2,-3]],[[604,35933],[-3,0],[-23,7],[-4,3],[-3,1],[0,0],[-2,3],[-1,1],[0,0],[0,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,0],[0,1],[0,1],[2,9],[2,12],[1,6],[1,2],[0,1],[1,1],[0,0],[0,0],[0,0],[0,1],[1,0],[1,1],[0,0],[0,1],[1,0],[2,2],[2,2],[3,1],[1,1],[0,0],[0,0],[3,1],[1,0],[0,1],[1,0],[1,0],[2,0],[12,-1],[2,-1],[0,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,0],[9,-6],[1,-1],[1,-1],[0,-1],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,0],[0,-1],[0,0],[0,-1],[1,-1],[0,-2],[0,-3],[0,-6],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[-1,-1],[0,0],[-1,-1],[-1,-3],[-1,-2],[-1,-1],[0,0],[0,-1],[0,0],[-1,-1],[-3,-2],[-7,-5],[-2,-1],[0,-1],[-1,0]],[[310632,35923],[0,-1],[-1,0],[-2,0],[0,0],[-7,6],[-8,7],[-1,2],[-3,5],[-1,2],[-2,6],[-3,7],[-11,31],[-2,12],[0,0],[0,1],[0,2],[1,1],[0,2],[0,0],[0,1],[1,1],[2,1],[1,0],[0,1],[0,0],[23,-33],[20,-30],[0,0],[0,0],[0,0],[0,0],[0,0],[3,-5],[0,0],[0,-8],[0,-1],[0,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,-3],[-3,-3],[-1,0]],[[1037,36024],[-3,-2],[-3,1],[-4,2],[-1,0],[-2,1],[-1,0],[-6,8],[-10,12],[0,0],[0,1],[0,0],[0,1],[-1,1],[-1,3],[0,3],[-1,5],[1,4],[1,1],[1,2],[1,2],[1,0],[1,2],[1,0],[0,1],[1,0],[0,0],[3,0],[1,0],[1,0],[7,0],[4,-4],[4,-5],[0,0],[1,0],[0,-1],[0,-1],[1,0],[6,-28],[0,0],[0,-1],[0,0],[0,0],[0,-2],[0,-2],[-2,-3],[-1,-1],[0,0],[0,0]],[[310673,35979],[-17,-3],[-11,4],[-13,3],[0,0],[-1,1],[0,1],[0,0],[-1,2],[-1,1],[-3,8],[-1,1],[-1,1],[-5,23],[-1,7],[-3,19],[-1,6],[0,12],[6,12],[9,19],[0,0],[4,3],[11,8],[2,1],[4,2],[5,0],[5,0],[5,0],[3,-1],[1,0],[1,-1],[2,-1],[6,-4],[1,-1],[8,-20],[3,-9],[1,-2],[7,-37],[0,-2],[1,-2],[-2,-10],[-2,-9],[-2,-7],[-1,-4],[-2,-5],[-3,-4],[-1,-2],[-1,-1],[0,0],[-2,-2],[-4,-3],[-5,-3],[-1,-1]],[[730,36275],[-1,0],[0,0],[-5,1],[-2,1],[0,0],[-2,0],[-1,1],[-2,1],[-2,2],[0,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-2,3],[-2,4],[0,1],[0,0],[0,1],[0,3],[0,4],[0,0],[0,0],[0,5],[1,4],[2,5],[5,9],[4,2],[9,3],[3,1],[1,0],[1,0],[0,0],[1,-1],[1,0],[0,0],[0,0],[1,-1],[1,-1],[0,-1],[10,-14],[2,-3],[1,-1],[1,-5],[0,-1],[0,-3],[0,-2],[0,0],[0,-1],[0,-2],[-1,-1],[0,0],[0,-1],[0,-1],[-2,-3],[0,-2],[-2,-2],[-5,-6],[0,0],[-1,-1],[-1,-1],[0,0],[0,0],[-4,-1],[-1,0],[-4,0],[0,0]],[[310500,35709],[-32,-149],[0,0],[-9,12],[-1,1],[0,0],[0,0],[-1,0],[-4,0],[-91,-11],[-56,-6],[-11,-4],[-23,-9],[-57,-34],[-32,-24],[-34,-25],[-18,-26],[-20,-31],[-1,0],[-35,-10],[-36,-1],[-52,-3],[-28,-1],[-48,-1],[-41,-1],[-467,161],[-36,53],[-24,59],[-16,39],[-5,37],[4,72],[2,5],[3,8],[10,15],[2,4],[362,476],[426,112],[48,-52],[19,-21],[50,-71],[19,-27],[90,-80],[5,-4],[91,-212],[46,-245],[1,-6]],[[309221,36447],[-22,-3],[-1,0],[-3,12],[1,4],[3,26],[1,7],[2,8],[0,0],[5,1],[18,3],[10,-3],[1,-7],[0,-3],[0,0],[1,-2],[1,-8],[0,-2],[0,0],[-1,-1],[-4,-10],[-5,-12],[-4,-6],[-3,-4]],[[744,36486],[0,0],[-1,0],[-10,1],[-8,5],[-1,2],[-2,2],[-1,2],[0,0],[0,1],[0,1],[-1,3],[-1,3],[0,2],[0,0],[0,0],[0,0],[0,6],[0,0],[0,0],[0,1],[1,1],[0,3],[1,1],[0,1],[0,0],[0,1],[1,0],[0,1],[1,1],[0,0],[0,0],[0,1],[2,1],[1,0],[1,0],[0,0],[2,0],[3,0],[2,-1],[2,0],[2,-1],[1,0],[0,0],[0,0],[1,0],[0,0],[1,-1],[5,-4],[0,0],[0,-1],[1,0],[0,0],[2,-2],[0,-1],[1,-1],[1,-2],[0,0],[0,0],[0,-2],[1,-9],[0,-4],[-1,-2],[0,-1],[0,0],[-1,0],[0,-2],[-1,0],[0,-1],[-1,-1],[0,0],[-1,-1],[-3,-3]],[[311168,36359],[-7,-2],[-2,3],[-17,148],[2,2],[1,1],[5,3],[10,6],[11,3],[3,1],[33,7],[2,-1],[2,-1],[1,0],[0,0],[1,-2],[0,-1],[1,-2],[1,-2],[0,-2],[2,-3],[0,-1],[0,0],[5,-69],[-12,-31],[-8,-22],[-6,-11],[-1,-3],[0,0],[-20,-17],[-7,-4]],[[896,36586],[10,-51],[5,-23],[0,0],[-12,5],[-16,8],[0,0],[-5,12],[-23,58],[-17,23],[3,3],[0,0],[9,-4],[46,-31]],[[309312,36645],[-21,-17],[0,0],[-1,1],[-11,10],[28,64],[46,19],[0,0],[7,-17],[-2,-6],[-4,-9],[-1,-3],[-1,-1],[-6,-7],[-2,-2],[0,0],[-32,-32]],[[309406,36821],[0,0],[0,0],[-1,0],[-2,1],[-1,0],[0,0],[-1,1],[-5,4],[-2,2],[-2,2],[-3,9],[0,0],[7,20],[10,5],[0,0],[6,1],[0,0],[0,0],[0,1],[0,0],[1,0],[2,0],[1,0],[0,0],[1,-3],[1,-2],[0,-1],[0,0],[1,-3],[1,-5],[0,-1],[0,-2],[-2,-5],[0,-1],[-8,-20],[0,0],[0,-1],[-4,-2]],[[309483,36910],[-25,-32],[-1,0],[-1,0],[-14,10],[-1,7],[2,15],[1,3],[1,1],[2,5],[2,3],[27,35],[3,3],[6,6],[1,0],[0,0],[2,-2],[0,-1],[5,-34],[-10,-19]],[[310256,37002],[-3,-16],[-18,5],[-6,4],[-8,4],[-4,3],[-1,3],[-8,28],[0,0],[1,0],[1,1],[1,0],[6,-3],[15,-7],[4,0],[9,-1],[7,-8],[1,-1],[2,-6],[1,-6]],[[243,37045],[-43,-17],[-12,-4],[-1,0],[-1,0],[-1,0],[-11,8],[-1,2],[0,0],[-1,1],[0,2],[3,37],[5,7],[0,0],[0,0],[2,1],[2,2],[0,0],[17,5],[3,1],[0,0],[43,-2],[0,0],[1,-3],[4,-8],[-2,-15],[-3,-15],[-4,-2]],[[267,37041],[-6,-2],[-1,0],[0,0],[0,1],[-1,9],[0,0],[1,7],[3,32],[0,0],[7,3],[8,3],[2,1],[5,-1],[0,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,-4],[1,-3],[1,-1],[0,0],[0,0],[-10,-23],[-2,-4],[0,-1],[-2,-5],[-1,-1],[-10,-5]],[[309581,37064],[-52,-68],[-4,-5],[-4,-4],[-14,-10],[-10,-2],[-2,0],[0,0],[-6,6],[-3,3],[1,18],[0,1],[0,0],[0,1],[0,2],[0,0],[1,1],[2,3],[2,3],[1,0],[1,0],[1,-3],[67,80],[38,45],[-1,7],[3,0],[2,-2],[10,-5],[5,-8],[-1,-3],[-2,-3],[-3,-6],[-3,-8],[-29,-43]],[[311613,37164],[-3,0],[-1,0],[0,0],[-5,1],[-4,1],[-1,1],[-1,1],[0,0],[-2,2],[0,1],[0,0],[0,1],[20,32],[27,23],[6,5],[0,0],[2,-1],[2,-10],[-2,-13],[-1,-9],[-1,-2],[-4,-7],[-1,-1],[0,-1],[-1,-1],[-4,-7],[-6,-9],[-1,0],[-3,-3],[0,-1],[-16,-3]],[[310676,37331],[-9,-6],[-10,-7],[0,0],[-3,4],[-5,9],[13,43],[1,1],[0,0],[0,0],[1,0],[1,0],[20,-5],[1,-2],[1,0],[0,-3],[0,0],[0,-1],[-2,-19],[-1,-1],[0,-1],[-1,-3],[-1,-1],[-1,-3],[-2,-2],[0,0],[-3,-3]],[[311154,37522],[-10,0],[-17,-1],[-1,1],[-5,9],[0,1],[0,1],[0,0],[0,0],[0,2],[1,1],[1,0],[0,0],[1,1],[9,4],[29,7],[4,0],[0,0],[1,-3],[0,-4],[0,-1],[0,0],[1,-1],[-1,-1],[-1,-2],[-2,-4],[-1,-2],[0,0],[-1,-1],[-1,-2],[0,0],[-1,0],[0,-1],[-2,-2],[0,0],[-1,-1],[0,0],[-2,0],[-1,-1]],[[311679,37715],[0,0],[-89,-92],[-29,-31],[-54,-72],[-180,-240],[-75,-141],[-3,-58],[0,-13],[0,0],[6,-2],[12,-4],[0,0],[46,4],[55,35],[95,46],[109,53],[7,-15],[20,-39],[-23,-42],[-13,-24],[0,0],[-393,-58],[-5,5],[-28,24],[0,0],[2,2],[0,0],[1,1],[5,6],[3,6],[1,1],[1,1],[1,21],[0,1],[0,0],[0,1],[0,2],[0,0],[-1,0],[0,1],[-1,1],[-1,1],[0,0],[0,0],[-59,36],[-1,1],[0,0],[0,0],[-1,0],[-1,0],[0,1],[-1,0],[0,0],[-19,4],[-37,-1],[-17,0],[0,0],[-1,0],[-1,-1],[0,0],[-1,0],[-8,-7],[-32,-32],[-72,-74],[0,-80],[0,-9],[-79,-30],[-155,-57],[-59,31],[-92,49],[-102,68],[-14,23],[-2,10],[-6,29],[-2,13],[7,16],[8,17],[2,4],[6,9],[48,53],[10,10],[15,14],[0,0],[96,-22],[0,0],[102,89],[192,83],[276,120],[35,53],[5,8],[3,2],[63,68],[82,42],[143,41],[79,-22],[9,0],[112,60]],[[16,37740],[-16,-11]],[[0,37754],[0,4]],[[0,37758],[0,3],[5,3],[1,0],[0,0],[1,1],[3,1],[0,0],[17,5],[13,6],[0,0],[1,1],[0,0],[0,0],[0,-1],[1,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-4,-8],[-2,-2],[-2,-3],[0,0],[-18,-19]],[[82,38186],[-1,0],[-1,0],[0,0],[-1,1],[-45,28],[-9,6],[-1,0],[0,1],[-3,3],[-2,4],[-5,10],[0,1],[2,0],[45,-17],[2,-1],[1,-1],[0,0],[1,0],[7,-4],[18,-16],[1,-1],[3,-4],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,0],[-1,-1],[-8,0],[-4,-1],[-1,0],[-1,0]],[[309223,41796],[-2,-1],[0,0],[-13,0],[-44,2],[-29,2],[-11,4],[-1,1],[-1,0],[-5,4],[-1,0],[0,1],[-1,0],[-1,3],[0,1],[-1,3],[0,1],[0,0],[0,3],[0,1],[0,0],[0,2],[1,0],[0,1],[1,1],[0,0],[1,1],[0,1],[47,13],[52,-6],[4,-3],[2,-2],[1,-1],[1,0],[0,-1],[2,-2],[0,0],[0,0],[1,-1],[1,-1],[0,-1],[1,-2],[1,-2],[0,0],[0,-2],[-2,-11],[0,-4],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[0,0]],[[311679,36981],[0,0],[0,0],[25,-16],[0,0],[0,0]],[[311704,36965],[1,62]],[[311705,36835],[-3,-5]],[[311702,36830],[0,0],[-8,-10],[-14,-9],[-2,-2],[-32,-14],[-4,-2],[0,0],[-10,8],[-9,6],[-9,18],[-5,10],[0,0],[-2,19],[0,0],[0,0],[3,8],[0,0],[0,0],[69,119]],[[311684,37341],[5,9],[7,15],[0,0],[8,13],[0,0]],[[311704,37378],[1,1]],[[311705,37328],[-13,-11]],[[311692,37317],[0,0],[-10,2],[0,0],[0,0],[2,22]],[[61,37116],[10,8],[18,16],[7,6],[7,5],[0,0],[12,-11],[0,0],[0,0],[10,-36],[0,0],[16,-67],[-30,-56],[-3,-7],[-35,-47],[-69,-86],[0,0]],[[4,36841],[-4,-6]],[[0,37027],[61,89]],[[7,37318],[-2,3],[0,0]],[[5,37321],[-5,7]],[[0,37379],[11,16]],[[11,37395],[0,0],[20,14],[31,17],[11,0],[-20,-96],[0,0],[0,0],[-46,-12]],[[277954,45581],[0,1766],[0,596],[-16,114],[-2,16],[-136,314],[60,41],[77,281],[0,2003],[0,2143]],[[16,37740],[-16,-11]],[[0,37729],[0,24]],[[0,37753],[0,5]],[[311704,36965],[1,62]],[[311705,37027],[0,-192]],[[311705,36835],[-3,-5]],[[311704,37378],[1,1]],[[311705,37379],[0,-17],[0,0],[0,0],[0,0],[0,-34]],[[311705,37328],[-13,-11]],[[4,36841],[-4,-6]],[[0,36835],[0,2],[0,0],[0,190]],[[0,37027],[61,89]],[[5,37321],[-5,7]],[[0,37328],[0,0],[0,38],[0,0],[0,13]],[[0,37379],[11,16]],[[308298,12477],[-54,-60],[-66,-40],[-66,-33],[-48,-19],[-34,5],[38,109],[-15,55],[-29,27],[12,51],[40,55],[117,0],[98,-49],[22,-41],[-15,-60]],[[303615,7072],[-3,-25],[-31,-62],[-36,-127],[-1,-94],[-56,-76],[-2,39],[2,80],[2,48],[15,41],[-25,245],[16,69],[10,-49],[11,-108],[13,-35],[18,-12],[18,6],[27,39],[22,21]],[[267574,37757],[-14,-20],[-13,-33],[-26,-42],[-23,-48],[12,-34],[-5,-19],[-12,-34],[-8,-23],[-17,-27],[-12,-34],[-15,-13],[-12,9],[-12,7],[-20,0],[-21,-32],[-9,-65],[5,-51],[-4,-43],[-5,-49],[-3,-63],[-23,-94],[-20,-12],[-13,33],[-20,46],[-29,41],[-32,23],[-13,17],[-12,13],[-12,21],[3,14],[4,33],[-7,33],[-40,8],[-6,31],[33,71],[45,145],[13,71],[20,16],[17,14],[-6,31],[-23,41],[12,17],[31,8],[37,3],[32,52],[27,13],[3,-13],[-26,-43],[5,-26],[6,-24],[18,-1],[28,15],[40,21],[48,24],[39,1],[27,-12],[8,-17]],[[303261,6560],[-16,-62],[-22,2],[-23,2],[1,117],[-22,169],[-19,116],[4,48],[14,23],[21,25],[19,21],[11,-11],[-9,-76],[-14,-54],[25,-153],[26,-120],[4,-47]],[[303042,6371],[-43,-9],[-45,20],[-16,32],[-8,28],[4,47],[3,106],[-11,110],[17,16],[4,-28],[5,-46],[19,-12],[30,48],[28,37],[2,-47],[-49,-84],[-10,-90],[7,-54],[21,-39],[14,-15],[28,-20]],[[262199,29346],[-48,27],[-110,137],[-29,77],[77,164],[6,54],[47,11],[105,10],[46,-25],[13,-175],[-18,-175],[-44,-80],[-45,-25]],[[267201,30503],[-187,55],[-59,119],[21,97],[76,39],[43,28],[105,39],[169,99],[99,112],[21,63],[58,61],[117,8],[69,-37],[-12,-55],[-112,-99],[-10,-109],[71,-71],[66,-35],[-3,-57],[-49,-34],[-52,-56],[-63,-72],[-110,-102],[-68,-26],[-190,33]],[[273518,19710],[-5,94],[26,102],[108,205],[5,72],[-52,74],[-120,103],[-35,83],[-21,57],[-33,27],[-30,-4],[-21,-11],[-46,18],[-23,85],[20,78],[3,47],[-12,23],[-25,18],[-28,13],[-35,43],[-28,39],[-44,54],[-18,151],[9,37],[56,-23],[97,-117],[148,-55],[95,16],[60,-1],[108,-33],[23,-56],[-2,-55],[5,-69],[30,-99],[51,-81],[61,-299],[33,-91],[-51,-247],[3,-70],[-16,-32],[-46,-15],[-54,24],[-58,25],[-70,-23],[-51,-98],[-17,-9]],[[275192,20389],[-47,-164],[-24,-37],[-33,22],[-83,77],[-11,34],[61,51],[28,76],[25,377],[-26,59],[-44,36],[-82,95],[-23,55],[29,27],[59,21],[23,41],[3,31],[-17,186],[-18,75],[3,103],[-26,44],[-146,4],[-28,63],[-9,113],[-48,119],[-63,85],[-38,73],[13,49],[83,-43],[85,-100],[53,-85],[103,-48],[126,-75],[81,-115],[76,-134],[64,-175],[24,-86],[-8,-57],[5,-65],[92,-221],[-18,-149],[-244,-362]],[[259579,22855],[-10,-83],[-50,0],[-80,34],[23,44],[26,64],[-23,73],[-26,55],[25,68],[2,75],[-33,27],[-42,-3],[-28,-31],[-5,-182],[-22,-141],[-65,-54],[-52,13],[48,341],[-50,25],[-43,-23],[-109,-130],[-54,79],[-11,185],[84,27],[76,88],[73,20],[130,-70],[88,33],[57,101],[42,54],[80,-12],[71,19],[59,-51],[-12,-60],[-40,-5],[-61,47],[-137,-138],[-30,-59],[58,-197],[34,-85],[29,-45],[-22,-103]],[[277017,21228],[-15,-69],[-38,-64],[-36,-47],[-30,2],[-48,50],[-74,52],[-40,24],[-81,96],[-27,54],[53,115],[147,232],[153,214],[48,59],[52,-22],[28,-92],[-15,-113],[-39,-367],[-38,-124]],[[275046,23031],[-49,-26],[-72,-27],[-99,-54],[-28,-11],[-82,5],[-79,-21],[-68,21],[8,115],[69,112],[114,27],[224,70],[94,31],[19,-73],[-51,-169]],[[275265,23308],[-118,69],[-138,-15],[-122,44],[-61,-20],[-55,5],[-37,41],[-53,107],[-81,6],[-18,-35],[-5,-66],[-39,-40],[-48,-2],[-61,69],[-47,135],[20,85],[4,75],[-34,267],[21,26],[51,36],[21,89],[-18,128],[-49,107],[-21,44],[-51,23],[-39,27],[13,58],[80,63],[122,58],[256,-129],[107,-126],[98,-33],[93,-3],[25,-26],[5,-59],[11,-94],[46,-79],[-34,-44],[-19,-164],[-27,-27],[-4,-94],[95,-216],[103,-162],[95,-74],[-4,-44],[-83,-10]],[[0,37027],[0,301]],[[0,37379],[0,350]],[[0,37753],[0,45886],[58686,0]],[[59904,83639],[2245,0]],[[71409,83639],[16765,0]],[[88355,83639],[350,0]],[[88901,83639],[1022,0]],[[89946,83639],[53063,0]],[[186091,83639],[2028,0]],[[204664,83639],[8946,0]],[[258876,83639],[1828,0]],[[261406,83639],[50299,0],[0,-46260]],[[311705,37328],[0,-301]],[[311705,36835],[0,-36835],[-214649,0]],[[91697,0],[-385,0]],[[91050,0],[-91050,0],[0,36835]],[[199671,83639],[177,0]],[[200529,83639],[2943,0]],[[283169,15492],[1,1]],[[283170,15493],[49,64],[49,16],[99,-15]],[[282291,15596],[162,-46]],[[267319,37768],[-25,-336],[5,-156],[28,-71],[8,-68],[-18,-100]],[[308070,12335],[24,25],[117,106],[59,71],[23,72]],[[286136,23809],[-111,96],[-166,7],[-257,-52],[-152,-8],[-71,52],[-72,-16],[-39,-32],[-29,-54],[-85,-74],[-140,-93],[-80,-76],[-20,-59],[-56,-66],[-92,-71],[-79,-154],[-65,-236],[-69,-143],[-72,-48],[-111,-130],[-152,-214],[-239,-148],[-488,-125]],[[270009,39360],[-82,41],[-38,75],[-21,124],[-100,162],[-267,303],[-49,102],[-12,61],[7,53],[-18,34],[-44,14],[-74,-20],[-105,-55],[-77,-11],[-49,34],[-43,72],[-37,109],[-36,55],[-34,2],[-44,58],[-56,113],[-63,67],[-71,21],[-19,41],[17,53],[0,26],[-28,23],[-28,8]],[[283491,22165],[-132,2],[-53,17],[-16,33],[-116,57],[-216,82],[-124,29],[-34,-26],[-135,-13],[-236,-1],[-126,-23],[-14,-44],[-102,-89],[-188,-135],[-109,-102],[-32,-70],[-53,-35],[-112,0],[-57,-61],[-46,-19],[-53,3],[-42,-35],[-29,-73],[-59,-57],[-88,-40],[-80,-79],[-74,-117],[-92,-69],[-111,-23],[-72,-49],[-34,-76],[-87,-78],[-142,-79],[-73,-86],[-5,-92],[-98,-78],[-191,-62],[-117,-62],[-41,-62],[-40,-23],[-38,17],[-32,-38],[-28,-92],[-37,-50],[-47,-9],[-40,-38],[-36,-67],[-45,-46],[-55,-26],[-31,-59],[-5,-93],[-18,-56],[-45,-29],[-336,-242],[-117,-192],[-13,-333],[7,-164],[-19,-108],[-42,-107],[36,-106],[115,-107],[60,-73],[5,-39],[-35,-86],[-75,-133],[-118,-103],[-163,-70],[-106,-89],[-50,-109],[-23,-83],[8,-87]],[[265947,36374],[-134,-79],[-82,-27],[-110,0],[-326,23],[-141,-25],[-65,-65],[-32,-49],[0,-34],[-23,-23],[-46,-9],[-52,-73],[-57,-138],[-110,-176],[-243,-321],[-322,-196],[-188,-45],[-161,41],[-135,115],[-108,189],[-90,103],[-74,17],[-76,-10],[-79,-39],[-75,4],[-72,46],[-87,120],[-103,194],[-66,102],[-30,12],[-15,33],[-2,82],[-4,74]],[[271126,40929],[58,-137],[20,-95],[2,-99],[-14,-77],[-32,-53],[-34,-26],[-56,2],[-89,32],[-58,-28],[-56,-79],[-46,-126],[-35,-173],[-40,-115],[-44,-57],[-66,-48],[-88,-40],[-142,-124],[-196,-211],[-124,-107],[-77,-8]],[[280075,37376],[-287,116],[-336,309],[-160,114],[-98,22],[-75,39],[-81,81],[-198,447],[-144,187],[-109,67],[-140,53]],[[284002,14534],[136,264],[30,118],[-43,88],[-98,407],[-51,151],[-38,30],[-146,70],[-76,2],[-68,-31],[-50,-2],[-32,28],[-37,4],[-44,-18],[-31,-37],[-19,-54],[-23,-19],[-45,23]],[[283171,15493],[-1,0]],[[283170,15493],[-128,8],[-117,37],[-148,69],[-104,13],[-58,-44],[-62,-23],[-100,-3]],[[282291,15596],[-185,42],[-106,52],[-90,75],[-135,32],[-180,-12],[-123,-19],[-64,-24],[-41,-43],[-16,-62],[1,-56],[18,-52],[-42,-36],[-102,-20],[-113,41],[-125,105],[-83,100],[-43,94],[-77,101],[-109,106],[-166,119],[-223,130],[-112,94],[-2,58],[-36,46],[-71,34],[-47,40],[-24,45],[-12,106],[-2,168],[-31,104],[-90,61],[-221,45],[-94,42],[-39,54],[-33,22],[-28,-12],[-32,-57],[-36,-103],[-38,-47],[-41,10],[-56,71],[-70,132],[-33,121],[5,109],[-18,60],[-39,11],[-35,41],[-31,70],[-82,56],[-200,63]],[[278739,17713],[-143,5],[-83,-28],[-69,-61],[-100,10],[-132,79],[-108,44],[-85,8],[-60,25],[-25,31],[-42,18],[-29,-13],[-94,-57],[-37,-38],[18,-19],[3,-35],[-13,-50],[-50,-63],[-88,-77],[-41,-67],[4,-57],[-32,-8],[-70,43],[-53,78],[-34,113],[-90,54],[-146,-7],[-87,6],[-30,18],[-10,26],[-2,37],[-39,32],[-73,20],[-42,6],[-27,-29],[-56,-80],[-43,-261],[-3,-180],[35,-97],[-8,-71],[-51,-44],[-5,-58],[41,-74],[-22,-28],[-84,16],[-83,-23],[-80,-61],[-15,-47],[49,-33],[7,-42],[-35,-50],[-13,-44],[9,-40],[36,-43],[62,-48],[11,-53],[-53,-76],[-62,-38]],[[266316,36106],[304,179],[197,-67],[87,-64],[44,-82],[41,-47],[37,-11],[90,59],[143,129],[105,118],[68,107],[21,85],[-26,62],[-5,58],[15,55],[-32,60],[-78,65],[-43,66],[-6,67],[7,48],[32,44]],[[267319,37767],[-30,56],[-1,58],[37,115],[3,141],[-31,168],[-86,98],[-143,29],[-87,48],[-50,103],[-7,52]],[[280095,49137],[127,-397],[-1,-104],[38,-78],[75,-88],[95,-59],[114,-31],[99,23],[84,76],[69,42],[54,6],[113,-94],[228,-258],[21,-32],[14,-33],[4,-42],[25,-19],[46,10],[37,-6],[28,-21],[10,-26],[-4,-24],[16,-20],[50,4],[35,-13],[20,-29],[18,-4],[23,12],[33,-9],[64,-57],[31,-99],[0,-139],[-38,-77],[-75,-15],[-45,-42],[-15,-69],[22,-72],[59,-78],[17,-88],[-24,-111],[1,-15]],[[308020,12187],[54,64],[9,35],[-12,18],[-1,31]],[[308293,12609],[57,72],[50,29],[63,8],[42,32],[19,54],[-20,23],[-60,-9],[-58,26],[-57,61],[-85,25],[-113,-11],[-81,24],[-51,59],[-36,75],[-20,91],[-1,95],[16,98],[-15,62],[-71,40],[-106,40],[-84,71],[-99,115],[-53,112],[-8,109],[-27,108],[-47,107],[-72,52],[-145,-5],[-56,-53]],[[303488,6688],[-107,-238],[-47,-80],[-46,-36]],[[303288,6334],[-19,-45]],[[303269,6289],[-12,-31],[-17,-114],[52,-112],[180,-165],[57,-63],[85,-42],[196,-65],[102,-22]],[[287343,23710],[-98,-35],[-67,-60],[-103,-146],[-22,-89],[-44,-59],[-73,-58],[-51,40],[-27,136],[-63,94],[-97,52],[-53,52],[-7,52],[-58,53],[-109,56],[-125,24],[-210,-13]],[[303048,6372],[94,-6],[127,-77]],[[303223,6500],[65,-166]],[[301986,5211],[-44,-149],[-36,-62],[-43,-23],[3,-36],[48,-49],[17,-62],[-15,-75],[6,-59],[39,-65],[152,-201],[31,-88],[-25,-115],[-113,-265],[-27,-133]],[[253663,27009],[-10,44],[-35,172],[2,27],[27,35],[23,9],[65,-188],[42,-137],[30,-76],[0,-77],[15,-24],[30,-89],[-19,-37],[-170,341]],[[267548,26766],[0,-6350]],[[267548,20416],[-48,-11],[-210,-125],[-90,-46]],[[266754,20006],[-55,-18],[-297,-83],[-246,-100],[-92,-31],[-53,-10],[-167,-16]],[[265844,19748],[-224,-21],[-353,38],[-59,10]],[[265080,19795],[-64,-20],[-138,-33],[-188,-144],[-284,-175],[-92,-35],[-283,-192],[-203,-96]],[[263683,19033],[-84,-19],[-58,-10],[-12,-6],[-8,-2]],[[263521,18996],[-27,-18],[-65,-37],[-102,-127],[-138,-354],[-85,-167],[-189,-267],[-124,-90],[-123,13],[-88,-60],[-46,6]],[[262369,17997],[-157,-30],[-53,-2],[-333,-69],[-212,-40],[-75,127],[-100,20],[-99,-4],[-197,21]],[[260925,18044],[-218,-33],[-247,-25],[-150,-32],[-568,-45]],[[259742,17909],[-74,-32],[-40,-6],[-46,-32],[-9,-3]],[[259573,17836],[-18,-15],[-35,-24],[-82,-67],[-7,-14],[-89,-142]],[[259342,17574],[-5,-33],[-59,-109],[-175,-98],[-144,-3],[-161,-23],[-124,-110],[-10,-2]],[[258664,17196],[-53,-53],[-138,-122],[-306,-256],[-62,-32],[-77,-20],[-124,-47],[-163,-22],[-46,-14],[-98,31]],[[257438,16713],[-276,-19],[-122,4],[-301,43],[-223,117],[-259,150]],[[256257,17008],[-137,161],[-66,87],[-30,24],[-19,22]],[[255805,17450],[-116,41],[-24,13],[-71,-5],[-49,-31],[-13,3]],[[255532,17471],[-8,2],[-39,36],[-28,31]],[[255430,18363],[30,-12],[23,-18],[38,-61]],[[255852,18349],[1,0],[18,17],[28,65],[112,195]],[[256023,18812],[-17,134],[0,10],[-14,113],[79,551]],[[256035,20382],[-1,2],[-4,30],[-9,19],[-10,36]],[[256011,20469],[-276,610],[-55,152],[-55,93],[-28,61]],[[255484,21725],[-75,433],[-11,99],[0,2],[-8,426]],[[255390,22685],[-3,23],[13,109],[-11,118],[-70,259],[-14,102]],[[255080,23786],[-17,29],[-39,114],[-159,276],[-90,132],[-90,544]],[[254670,24973],[-40,121],[-46,168],[-27,54],[-3,9]],[[254554,25325],[-28,54],[-219,440],[-50,74],[-29,56]],[[254228,25949],[-72,94],[-174,256],[-89,196],[-2,4],[-3,9]],[[253895,26520],[15,26],[2,-1],[41,-48],[20,-4],[19,39],[-2,87],[42,20]],[[254448,26395],[-258,306],[-52,177],[-95,192],[17,106]],[[254060,27176],[13,23],[11,12],[65,-24],[32,-51]],[[254181,27136],[128,-200],[-11,-176],[-13,-53],[7,-45],[28,-42],[36,-34],[40,49],[28,86],[20,-40]],[[254444,26681],[64,-199],[1,-6],[2,-2],[38,-122]],[[254757,26414],[-15,263],[15,122],[-12,131],[-20,34],[0,4]],[[254230,28141],[-39,63],[-5,18],[-57,110],[-74,177],[-4,203],[7,135],[43,215],[119,326],[8,16],[119,115]],[[254412,30059],[-30,110],[0,36],[-24,114],[-66,175],[-6,24],[79,277],[175,517],[39,45],[87,59],[16,-90],[-6,-43],[-30,-153]],[[255053,31209],[28,80],[0,1],[92,132],[11,8],[246,132]],[[255818,31770],[215,249],[60,51],[98,131],[657,460]],[[257970,32862],[12,37],[116,89],[97,49],[214,52],[6,1]],[[258711,33143],[200,252],[68,66],[220,-19],[197,-29],[117,66],[65,11]],[[259925,33548],[108,48],[97,36],[133,68],[94,43]],[[260357,33743],[60,36],[98,50],[103,68],[17,15],[58,35]],[[260964,34284],[55,118],[28,50],[28,71],[148,320]],[[261732,35484],[11,47],[42,30],[13,84],[-21,21],[11,43]],[[261788,35709],[-108,91],[-29,198],[-37,191],[-3,99],[18,173],[83,189],[62,85],[86,99],[78,31],[66,87],[106,86],[44,86],[66,176],[60,134],[46,-5],[49,-170],[6,-92]],[[262381,37167],[59,-116],[35,-97],[107,-194],[102,-285],[4,-7],[3,-32]],[[262774,36318],[17,-25],[15,-33],[33,-40],[1,3],[5,-8]],[[263101,36795],[-20,35],[28,62],[-16,60],[-68,-3],[-28,74],[-56,86],[-42,41],[-118,207],[0,2],[70,32],[4,0],[2,3],[58,27]],[[262962,37534],[-57,25],[-28,107],[35,50],[71,-14],[43,-81],[-35,8]],[[263987,37446],[-113,53],[-1,1],[-76,39],[-86,7],[-35,-1],[-22,101]],[[263622,37791],[2,3],[35,-7],[58,3],[7,104],[15,66],[109,158]],[[263612,38119],[-11,-19],[-38,62],[-8,95]],[[264423,38990],[-8,12],[1,12],[-17,11],[-2,3]],[[264301,39116],[-9,16],[-1,39],[-51,90],[-2,89],[40,38],[117,106]],[[264648,39712],[25,-27],[0,-74],[-17,-55],[25,5],[16,23],[20,52],[94,-103]],[[264811,39533],[2,-4],[7,-48],[28,-19],[20,-40]],[[264891,39429],[48,154],[28,12],[-2,71],[68,215]],[[265033,39881],[-7,51],[11,9],[9,79],[-31,49],[53,78]],[[265591,40138],[0,1],[34,58],[-9,58],[8,36]],[[265624,40291],[-10,29],[7,62],[76,30]],[[265697,40412],[42,17],[50,-20],[90,-115]],[[266014,40236],[17,0],[38,-17],[142,-107],[64,-71],[96,-88],[256,-419]],[[266762,39008],[-3,-33],[-8,-41],[-3,-73],[-99,-407]],[[267076,39170],[-41,47],[1,5],[58,46],[26,5],[5,0]],[[267125,39273],[110,2],[290,-92],[23,-17]],[[267548,39166],[0,-12400]],[[267548,39166],[29,-20]],[[267577,39146],[74,-52],[39,-49],[9,-142],[35,-50],[19,89],[-4,172],[28,28]],[[267921,39117],[15,-6],[8,-5],[44,-59],[44,-76]],[[268033,38971],[6,5],[17,-60],[40,-40],[14,59],[-19,83],[0,1],[114,185],[3,0],[74,18],[-35,33],[-35,8],[8,120]],[[268232,39553],[-81,-37],[0,9],[-78,-2],[-107,77],[-91,109],[69,200],[139,195],[78,65],[5,46],[10,7]],[[268192,40235],[130,433],[25,24],[24,-5]],[[268518,40747],[10,14],[2,1],[25,33],[79,99]],[[268634,40894],[-7,13],[11,18],[-87,141],[15,170]],[[268566,41236],[8,83],[114,74],[53,162],[112,37]],[[269064,41572],[-119,83],[2,1],[-7,173],[12,67],[43,27],[55,-23],[35,-75],[34,-30],[41,-72]],[[269236,41774],[-51,53],[-8,43],[-4,45],[28,62],[40,12],[58,6],[6,80],[-10,64],[19,22],[236,22]],[[269555,42178],[17,-19],[3,-16],[48,-44],[25,-28]],[[269648,42071],[7,0],[3,-3],[55,0],[82,-4]],[[269848,42061],[263,26],[89,-23],[65,38],[184,18],[17,-10],[34,-62],[19,92],[38,35]],[[270557,42175],[81,74],[12,5],[80,-22],[32,7],[-72,99],[4,90],[-1,28],[82,354]],[[270349,42972],[-36,-23],[-53,-15],[-4,2],[-103,96],[-57,72],[-42,20],[-61,56]],[[269993,43180],[5,22],[113,89],[49,-18],[76,-94],[43,-34],[37,7],[23,74],[33,39],[62,-22],[193,-160],[108,-155],[56,41],[70,64],[208,-146]],[[271069,42887],[9,-13],[31,-75],[61,-94],[40,-6],[18,-25]],[[271369,42619],[62,-4],[41,-33],[105,5],[216,-23],[18,-10],[9,-9]],[[273267,42291],[109,-51],[-26,-32],[2,-65],[34,-35],[41,15],[57,55],[11,5],[18,-9]],[[273809,41880],[17,13],[7,0],[4,10],[27,21]],[[273864,41924],[28,112],[0,0],[0,0],[22,89]],[[273882,42153],[-19,-3],[-2,8],[-37,26],[18,46],[144,194],[6,6]],[[273992,42430],[2,1],[53,-4],[-4,-44]],[[274264,42113],[-17,13],[85,7],[36,-19],[48,-97]],[[274417,41984],[0,-12],[-43,-59],[-139,-156]],[[274235,41757],[-46,-95],[-116,-160],[-17,-54],[45,-82],[-3,-18]],[[274098,41348],[13,-26],[11,-64],[-67,-143],[-115,-76],[-17,26],[-61,43],[-53,-30],[-57,-18],[-17,-11],[-4,0]],[[273558,40429],[19,17],[20,-81],[-68,-302],[-22,-87],[-67,-90],[-33,-37],[-40,-41]],[[273210,39532],[-14,-55],[-22,-31],[-395,-153]],[[273102,39167],[27,-31],[5,-19],[67,-86],[47,-32],[27,-30]],[[273519,38786],[55,-49],[7,-7],[8,-5],[31,-27]],[[273697,38630],[133,-145],[2,-6],[28,-83],[124,-80],[240,-263]],[[274224,38053],[52,-9],[11,-10],[47,1],[61,-10]],[[274395,38025],[338,-183],[0,0],[196,-112],[27,-13],[174,-131],[80,-120],[35,-59]],[[275245,37407],[13,-14],[6,-8],[78,-88]],[[275342,37297],[-1,-1],[0,-10530]],[[275341,26766],[-7793,0]],[[273947,39939],[1,13],[30,54],[-14,125],[6,65]],[[274194,40491],[18,-19],[-2,-20],[17,-86],[12,-17],[30,-174]],[[274269,40175],[9,-15],[-25,-94],[4,-48],[32,-47],[85,-44],[40,19],[16,-9],[-16,-65],[-32,-52],[-114,22],[-98,-8],[-56,17],[-167,88]],[[268847,42561],[-159,71],[-162,-59],[-12,0],[18,142],[1,0],[51,43],[-9,131],[-17,40],[7,62],[65,99],[38,27],[38,-1],[33,-92],[8,-100],[40,-92],[23,-97],[27,-10],[10,-164]],[[269241,43124],[5,1],[22,-12],[31,6],[19,16],[116,-102]],[[269454,43161],[73,96],[29,-40],[101,-74],[30,-74],[33,-96]],[[269720,42973],[-4,-6],[-32,-43],[-1,-7],[-50,-77],[-23,3],[-65,-118],[-90,-88],[-209,-170],[-94,57],[-181,140],[-115,139],[-77,192],[-16,157],[-31,101],[14,25],[16,13],[17,-2],[33,-41],[50,-67],[14,-12],[51,-63],[21,-33],[6,-1],[48,-60]],[[275341,26766],[2598,0],[0,-3346]],[[277939,23420],[20,-5625]],[[277959,17795],[-25,31],[-25,11],[-1,-4530]],[[277908,13307],[-47,3],[-247,41],[-182,130],[-25,20],[-152,280],[-283,313],[-35,50],[-47,71],[-8,29]],[[276882,14244],[-35,118],[-2,69],[39,175],[3,9],[43,53]],[[276950,14803],[-6,31],[4,40],[-35,102],[-14,61]],[[276388,15858],[-186,164],[-10,17],[-10,31],[27,-10]],[[276286,15994],[-87,81],[64,-15],[40,63],[56,22],[46,-84],[51,-15],[2,140],[29,66],[-20,30],[-17,27],[-78,31],[-86,-47],[-65,-59],[-89,-51],[-35,-54],[-55,-1],[-93,23]],[[275744,16016],[-54,-7],[-14,0],[-177,36],[59,140],[3,4],[33,18]],[[275344,17576],[-48,-197],[-27,-45],[-17,-133],[-91,-373],[-57,-168],[-112,-91]],[[274992,16569],[-19,-6],[-9,0],[-93,18],[-162,-53],[-110,-64],[-99,0],[-55,-20],[-72,16],[113,362],[99,-10],[37,5],[127,-15]],[[274749,16802],[6,19],[57,3],[55,167],[33,185],[-18,104],[7,27]],[[274889,17307],[21,378],[127,315],[56,87],[74,105],[113,120],[-15,132],[-13,52],[79,303]],[[275331,18799],[-5,45],[7,9],[-69,361],[-43,108],[-42,64],[-48,161]],[[274986,18947],[-32,-72],[-16,-16],[-81,-117],[-72,-247],[-24,-55]],[[274146,17963],[-75,-94],[-8,-8],[-82,-51],[-134,-223],[-323,-404]],[[273516,16990],[36,13],[13,-15],[35,-165],[2,-40],[-20,-35],[-44,22],[-110,110],[-52,-30],[-274,196]],[[273102,17046],[-14,10],[-65,70],[-81,70],[-35,8],[-20,-5],[-11,9]],[[272916,17234],[47,32],[32,-32],[75,-57],[42,-5],[20,23],[-68,218],[-104,446]],[[272960,17859],[-41,55],[-17,33],[-58,68],[-75,100]],[[272769,18115],[-192,433],[-16,44],[-8,10],[-68,153]],[[272295,18793],[-165,-7],[-104,195],[-59,243],[33,-15]],[[271406,19877],[-362,88],[-244,157],[-94,8],[-157,-44],[-345,84]],[[270204,20170],[-58,45],[-243,197],[-284,165],[-94,31],[-6,1],[-111,57]],[[268550,20542],[-5,0],[-20,1],[-486,-54],[-330,-37],[-47,-10],[-70,-8]],[[267592,20434],[-28,-14],[-16,-4]],[[274578,15580],[-37,-1],[-45,7],[-39,-10],[-149,-5]],[[274308,15571],[0,0],[-47,5],[-143,109],[-36,42],[12,58],[15,41],[52,67],[392,94],[128,49],[110,29],[142,-12],[47,-17],[17,-15],[-25,-107]],[[274972,15914],[18,-9],[0,-1],[1,0],[357,-182]],[[275348,15722],[-12,-2],[-139,40],[-142,-34],[-43,-44],[-6,-23],[-271,-50],[-80,23],[-38,-45],[-39,-7]],[[275342,37297],[59,-69],[77,-57],[36,-37]],[[275612,37082],[144,-39],[21,-7],[5,0],[240,-64],[28,-15],[164,-44],[29,-42],[74,-138],[13,-45],[9,-74],[81,-179],[70,-25],[14,-26]],[[277950,36724],[153,428],[24,44],[45,147],[30,83]],[[278202,37426],[38,221],[5,23],[49,169],[-17,184],[48,314],[79,293]],[[278440,38763],[19,125],[20,80],[-3,35],[12,80]],[[278414,39700],[-3,24],[10,46],[31,206],[-52,150],[-47,103],[-5,101],[42,238]],[[278390,40568],[17,99],[19,58],[66,113]],[[278519,41031],[-37,117],[-13,162],[33,55],[71,82],[41,62],[81,0],[39,-27],[6,55],[23,33]],[[278742,41717],[-154,65],[-5,5],[-59,42],[9,157],[102,302],[56,116],[36,-48],[42,-39],[6,86],[-14,90],[77,295],[85,400],[8,116],[5,25]],[[279112,43623],[29,72],[14,18],[41,99],[36,5]],[[279232,43817],[15,2],[27,0],[13,-11]],[[279287,43808],[6,-6],[12,-10],[-19,-121]],[[279389,43518],[2,1],[38,-38],[49,-117],[20,-110],[1,-4],[16,-163]],[[279515,43087],[25,-253],[-1,-47],[19,-211],[53,-66],[48,-43],[26,-2],[8,-20]],[[279693,42445],[62,-321],[9,-85],[9,-8],[7,-39]],[[279780,41992],[111,-65],[28,-106],[69,-112],[12,-31]],[[280000,41678],[16,-39],[-2,-61],[-37,-174]],[[280061,41341],[21,-16],[30,-169],[4,-57],[18,-363]],[[280144,40540],[6,-37],[-6,-67],[35,-136],[8,-19],[6,-38]],[[280235,40092],[78,-284],[11,-50],[4,-5],[10,-34]],[[280670,39706],[170,140],[104,42],[98,-137],[29,-83],[1,-7]],[[281072,39661],[3,-3],[21,-61],[231,-202],[11,-11],[19,-19]],[[281357,39365],[2,-2],[97,-98],[100,-74],[7,-7],[87,-556],[-15,-128],[68,-251],[22,-200],[26,-70],[7,-478]],[[281758,37501],[12,-30],[-1,-8],[56,-140],[14,-28],[4,-10]],[[281853,37260],[14,-21],[9,-20],[77,-112],[101,-172],[20,-9],[108,-206],[39,-105],[124,-391],[29,-125],[-44,-391],[-7,-33],[-17,-58]],[[282288,35394],[6,-9],[0,-3],[134,-215],[28,-161]],[[284204,33427],[107,-65],[4,-4],[4,-1],[298,-179],[38,-45],[54,-86],[55,-128],[-69,-12],[-41,17],[-58,37]],[[284875,32405],[51,-35],[88,-129],[5,-13]],[[285040,32177],[16,-43],[17,-73],[29,-48],[7,-16],[40,-187],[48,-51],[178,-854]],[[285779,30497],[-48,142],[3,4],[-55,239],[34,138],[34,17],[34,4],[101,-203]],[[286286,30622],[-67,56],[-1,5],[4,114],[47,19],[43,-57],[79,-176],[16,-365],[1,-305],[1,-6],[-9,-146]],[[286537,29354],[87,38],[47,-58],[53,-90],[28,-102]],[[287178,28939],[-10,14],[26,-1],[100,-77],[3,-7]],[[287630,28226],[283,-345],[36,-82],[79,-144],[117,-81],[26,-43],[59,-261]],[[288249,27090],[42,-61],[23,-60],[37,-60],[28,-19],[27,-88]],[[288442,26688],[-3,-49],[-39,-213],[18,-206],[-23,-466]],[[288676,24571],[66,-226]],[[288742,24345],[-84,-74],[-163,-24],[-66,-105],[-235,30],[-82,-35],[-123,70],[-34,-33],[-67,68],[-69,-90],[-105,-50],[-65,-55],[-47,0],[-170,-109],[35,-115],[54,-74],[-39,-189],[-77,-55],[-69,5],[-28,-60],[-54,30],[-27,65],[-152,-76],[-22,-89],[-44,-59],[-73,-57],[-51,39],[-27,136],[-63,94],[-97,52],[-53,52],[-7,52],[-58,53],[-109,56],[-125,24],[-210,-13],[-111,96],[-166,7],[-257,-52],[-152,-8],[-70,51],[-73,-15],[-39,-32],[-29,-54],[-85,-74],[-140,-93],[-80,-76],[-20,-59],[-56,-66],[-17,-13],[-6902,-1]],[[288609,27920],[-144,-568],[-16,-44],[-49,-189],[-3,-30],[-78,88],[-12,88],[19,115],[46,104],[8,59],[-7,39],[32,129],[86,90],[33,72],[4,26],[7,12]],[[288535,27911],[-3,19],[5,36],[-49,100],[-36,20],[1,2],[112,86]],[[288565,28174],[11,-63],[9,-137],[18,-24],[6,-30]],[[276587,37234],[-39,-43],[-4,2],[-10,-17],[-41,-44],[-43,-18],[-21,1],[-13,10]],[[276367,37258],[42,77],[22,26],[50,39],[122,27],[82,36],[73,-42],[51,-79],[-79,-11],[-4,4]],[[284105,8847],[-46,-110],[-3,-5],[-22,-58],[-21,-49]],[[283989,8486],[-27,-151],[-30,-52],[-9,-83],[-118,-168]],[[283805,8032],[-63,-89],[-10,6],[-103,29],[-33,-36],[5,-49],[-102,-22],[-14,54],[-95,114],[3,-55],[40,-96],[-3,-33],[-21,-66],[-34,-18],[-18,-44],[0,-62],[-9,-70],[-82,-62],[-137,99],[-10,-37],[0,-1],[-2,1]],[[283117,7564],[55,-102],[-9,-12],[-27,-56],[-43,-148],[-53,-93],[-32,-33],[-19,-5],[-70,12],[-73,29],[-105,83],[-114,-12],[-90,17]],[[282285,7291],[-5,7],[-2,12],[-28,41],[11,36],[99,24],[102,-1],[-16,44],[-27,16],[-44,-11],[-130,38],[-53,-10],[-99,66]],[[282093,7553],[-22,25],[-81,143],[-62,87],[-36,34],[-43,18],[-26,28],[-178,398],[-12,51]],[[281633,8337],[-41,181],[-9,65],[34,26]],[[281726,8511],[52,-46],[28,-93],[51,117],[-5,20],[19,16]],[[281871,8525],[-172,172],[-5,12],[-7,49],[-19,-29],[-42,42]],[[281626,8771],[-6,10],[5,21],[-18,98],[-159,215],[-121,204],[-116,244],[-13,43],[-2,50],[-57,168],[-31,125],[-14,109],[55,221],[7,106],[4,15],[67,-42],[39,-34]],[[281629,10254],[457,-225],[26,-20],[92,-38],[204,-100]],[[282626,9838],[335,56],[39,-45],[-10,66],[18,57],[54,45],[61,28],[101,-2],[27,4],[217,-4]],[[283468,10043],[12,6],[46,-14],[40,42],[18,26],[175,91],[81,-14],[48,-1],[83,104],[55,-2],[155,-81],[70,-113],[-6,-179],[5,-66],[5,-21],[-7,-53]],[[284248,9768],[-1,-337],[-1,-13],[1,-4],[-1,-201]],[[284197,8939],[-6,-3],[-8,19],[-29,-34],[-10,-4]],[[283971,7628],[-77,-34],[-36,-5],[-41,-25],[-9,3],[-71,103],[-44,113],[34,46],[28,-10],[31,-63]],[[283919,7973],[16,-9],[26,-114],[20,-217],[-10,-5]],[[284265,10974],[-7,-15],[-1,1],[-77,-69],[-17,-6],[-131,45],[-13,30],[-56,85],[-57,100],[11,39],[-26,73],[-47,-4],[-32,55],[47,32],[36,53],[62,54],[8,-5],[243,-301]],[[284244,11096],[3,-19],[-32,-36],[44,-36],[6,-31]],[[280626,11133],[-4,-15],[-36,-33],[-38,-27]],[[280548,11058],[-2,-2],[-74,-34],[-25,-4],[-20,62],[10,90],[-37,78],[0,2]],[[280400,11250],[-2,22],[20,76],[-1,31],[20,107]],[[280437,11486],[24,29],[21,18],[7,70],[22,2]],[[280511,11605],[107,-81],[21,-133],[-13,-99],[27,-77],[-27,-82]],[[277959,17795],[60,-25],[85,-8],[108,-43],[132,-80],[100,-10],[69,61],[83,29],[143,-6],[200,-63],[82,-56],[31,-70],[34,-41],[40,-11],[18,-60],[-5,-110],[33,-120],[70,-132],[55,-71],[42,-10],[38,47],[36,103],[32,57],[28,12],[33,-22],[39,-53],[93,-41],[222,-47],[90,-61],[31,-104],[2,-168],[12,-106],[24,-45],[47,-40],[71,-34],[37,-50],[1,-54],[112,-94],[223,-130],[166,-119],[109,-106],[77,-101],[43,-94],[83,-100],[125,-105],[113,-41],[102,20],[42,36],[-18,52],[-1,56],[16,62],[40,43],[65,24],[123,19],[180,12],[135,-32],[90,-75],[106,-52],[193,-44],[154,-45],[94,4],[68,23],[58,44],[104,-13],[135,-63],[130,-43],[131,-7],[46,63],[49,16],[99,-15],[45,-22],[24,18],[18,54],[31,37],[44,19],[37,-5],[32,-28],[46,1],[72,32],[76,-2],[146,-70],[38,-30],[51,-151],[98,-407],[43,-88],[-30,-118],[-25,-52],[72,-28],[1495,-779]],[[285680,13939],[-9,-31],[-107,-21],[-86,-78],[-105,-106],[-168,-71]],[[285205,13632],[-345,-16],[-45,2],[-137,-11],[-443,-21]],[[283743,13380],[-203,-184],[-65,-58],[-5,-5],[-473,-427]],[[282442,12536],[11,-23],[0,-4],[4,-3],[67,-135]],[[282524,12371],[29,21],[5,-7],[31,33],[17,13]],[[282613,12113],[-36,8],[-9,5],[-9,15],[-5,41],[-68,125],[-83,110],[-76,35],[-20,-16],[-25,27]],[[282282,12463],[-137,63],[-60,112],[-86,13],[-74,-1],[-61,52],[-24,17],[-57,62]],[[281783,12781],[-9,81],[11,22],[33,40],[52,19],[-8,33],[16,19]],[[281829,13076],[0,1],[-17,33],[-4,1],[-14,24]],[[281626,13132],[-80,-190],[-155,-102],[-36,-1]],[[281355,12839],[-10,0],[-77,57],[-67,64],[6,14]],[[281384,13016],[73,136],[1,2],[1,1],[1,2]],[[281509,13248],[-6,28],[1,4],[-4,6],[-13,60]],[[281314,13570],[-348,-289],[-29,-13],[-60,-38],[92,-29],[3,-65]],[[280975,13076],[-42,-30],[-11,-3],[-103,-49],[-197,-127],[-117,-124],[-11,-8]],[[280494,12735],[-23,-27],[-98,-103],[-123,-84],[-59,-28],[-41,-9]],[[280150,12484],[-38,-8],[-150,61],[-36,6],[-113,55],[-73,64],[-198,68],[-19,10],[-190,139],[-136,72],[-96,16],[-30,-7],[-33,17]],[[278753,13065],[-12,-1],[-3,2],[-173,14],[-34,-39],[-73,-8]],[[277940,13305],[-32,2]],[[285213,16361],[-31,-30],[-77,10],[-81,-40],[-39,-65],[8,-75],[-19,-84],[-35,-30],[15,-244],[-46,-95],[-89,30],[-42,75],[-8,85],[-35,-5],[-50,44],[-15,80],[-4,159],[50,204],[239,185],[74,-35],[4,-45],[54,-60],[127,-64]],[[286259,16516],[21,49],[60,29],[1,0]],[[286341,16594],[0,0],[-56,-53]],[[286285,16541],[-8,-13],[-18,-12]],[[288742,24345],[27,-95]],[[288821,24079],[1,-13],[-2,-127],[25,-93],[13,-128],[-1,-13],[-13,-88]],[[288836,23556],[-3,-7],[-106,-186],[-86,-233],[-70,-118]],[[288585,22964],[43,-30],[0,-69],[-47,-314],[-37,-181],[-23,-65],[-31,-184],[-28,-93],[-99,-268]],[[288362,21314],[5,-1],[2,-21],[-23,-200],[-34,-136],[-18,-137],[-4,-16]],[[287907,19872],[28,-47],[-2,-23],[-25,-97],[-39,-121],[-110,-121],[-89,-71]],[[287501,19195],[-20,-13],[-59,-23],[-123,-91],[-7,-12],[-30,-20]],[[287075,18772],[-1,-116],[-20,-33],[-40,-52],[-17,-56],[-18,-91],[-25,-52]],[[286855,18221],[7,21],[4,-17],[-2,-17]],[[286827,17997],[-56,-115],[-1,1],[-29,-10],[-37,-36],[42,-8],[-30,-61]],[[286388,16781],[7,-71],[-11,10],[-51,-39],[-14,-39],[22,-48]],[[286259,16516],[-38,-27],[-64,-157],[-243,-399]],[[285700,14730],[-1,-38],[-4,-22],[-8,-262],[31,-199],[-20,-105],[-1,-102],[-17,-63]]],"transform":{"scale":[0.001154938162685873,0.0008967108645488349],"translate":[-180,-50]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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],[461],[462],[463],[464],[465],[466],[467],[468],[469],[470],[471],[472],[473],[474],[475],[476],[477],[478],[479],[480],[481],[482],[483],[484],[485],[486],[487],[488],[489],[490],[491],[492],[493],[494],[495],[496],[497],[498],[499],[500],[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],[545],[546],[547],[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],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652],[653],[654],[655],[656],[657],[658],[659],[660],[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],[709],[710],[711],[712],[713],[714],[715],[716],[717],[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],[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],[792],[793],[794],[795],[796],[797],[798],[799],[800],[801],[802],[803],[804],[805],[806],[807],[808],[809],[810],[811],[812],[813],[814],[815],[816],[817],[818],[819],[820],[821],[822],[823],[824],[825],[826],[827],[828],[829],[830],[831],[832],[833],[834],[835],[836],[837],[838],[839],[840],[841],[842],[843],[844],[845],[846],[847],[848],[849],[850],[851],[852],[853],[854],[855],[856],[857],[858],[859],[860],[861],[862],[863],[864],[865],[866],[867],[868],[869],[870],[871],[872],[873],[874],[875],[876],[877],[878],[879],[880],[881],[882],[883],[884],[885],[886],[887],[888],[889],[890],[891],[892],[893],[894],[895],[896],[897],[898],[899],[900],[901],[902],[903],[904],[905],[906],[907],[908],[909],[910],[911],[912],[913],[914],[915],[916],[917],[918],[919],[920],[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],[965],[966],[967],[968],[969],[970],[971],[972],[973],[974],[975],[976],[977],[978],[979],[980],[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],[1193],[1194],[1195],[1196],[1197],[1198],[1199],[1200],[1201],[1202],[1203],[1204],[1205],[1206],[1207],[1208],[1209],[1210],[1211],[1212],[1213],[1214],[1215],[1216],[1217],[1218],[1219],[1220],[1221],[1222],[1223],[1224],[1225],[1226],[1227],[1228],[1229],[1230],[1231],[1232],[1233],[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],[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,1360],[1361,1362]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[10]],[[11]]],"type":"MultiPolygon","properties":{"ct":[-170.72,-14.3]},"id":"ASM"},{"arcs":[[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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]]],"type":"MultiPolygon","properties":{"ct":[134.35,-25.58]},"id":"AUS"},{"arcs":[[[434]],[[435]]],"type":"MultiPolygon","properties":{"ct":[96.83,-12.18]},"id":"CCK"},{"arcs":[[[453]],[[454]],[[455]],[[456]],[[457]],[[458]]],"type":"MultiPolygon","properties":{"ct":[-159.77,-21.23]},"id":"COK"},{"arcs":[[473]],"type":"Polygon","properties":{"ct":[105.64,-10.48]},"id":"CXR"},{"arcs":[[480]],"type":"Polygon","properties":{"ct":[144.78,13.43]},"id":"GUM"},{"arcs":[[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]]],"type":"MultiPolygon","properties":{"ct":[158.23,6.88]},"id":"FSM"},{"arcs":[[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]]],"type":"MultiPolygon","properties":{"ct":[-157.63,1.84]},"id":"KIR"},{"arcs":[[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[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]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]]],"type":"MultiPolygon","properties":{"ct":[171.1,7.12]},"id":"MHL"},{"arcs":[[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]]],"type":"MultiPolygon","properties":{"ct":[145.76,15.19]},"id":"MNP"},{"arcs":[[[1006]],[[1007]]],"type":"MultiPolygon","properties":{"ct":[-172.44,-13.62]},"id":"WSM"},{"arcs":[[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]]],"type":"MultiPolygon","properties":{"ct":[165.5,-21.33]},"id":"NCL"},{"arcs":[[1029]],"type":"Polygon","properties":{"ct":[-169.86,-19.05]},"id":"NIU"},{"arcs":[[[1030]],[[1031]],[[1032]],[[1033]]],"type":"MultiPolygon","properties":{"ct":[170.47,-44]},"id":"NZL"},{"arcs":[[1034]],"type":"Polygon","properties":{"ct":[166.92,-0.53]},"id":"NRU"},{"arcs":[[1036]],"type":"Polygon","properties":{"ct":[-128.32,-24.38]},"id":"PCN"},{"arcs":[[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]]],"type":"MultiPolygon","properties":{"ct":[134.57,7.51]},"id":"PLW"},{"arcs":[[[1363,542]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]]],"type":"MultiPolygon","properties":{"ct":[144.25,-6.6]},"id":"PNG"},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"ct":[-149.39,-17.69]},"id":"PYF"},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"ct":[160.14,-9.62]},"id":"SLB"},{"arcs":[[[1187]],[[1188]],[[1189]]],"type":"MultiPolygon","properties":{"ct":[179.18,-8.5]},"id":"TUV"},{"arcs":[[[1211]],[[1212]],[[1213]]],"type":"MultiPolygon","properties":{"ct":[-171.82,-9.17]},"id":"TKL"},{"arcs":[[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]]],"type":"MultiPolygon","properties":{"ct":[-175.2,-21.17]},"id":"TON"},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"ct":[166.86,-15.22]},"id":"VUT"},{"arcs":[[1284]],"type":"Polygon","properties":{"ct":[167.95,-29.03]},"id":"NFK"},{"arcs":[[[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]],[[1364,1365,1366,1345]],[[1346]],[[1347]],[[1348,1367,1368,1369,1351]],[[1352,1370,1371,1372,1355]],[[1356,1373,1374,1375]],[[1359,1376,1377,1378,1362]]],"type":"MultiPolygon","properties":{"ct":[177.95,-17.84]},"id":"FJI"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[1379]],"type":"Polygon"},{"arcs":[[1380]],"type":"Polygon"},{"arcs":[[1381]],"type":"Polygon"},{"arcs":[[1382]],"type":"Polygon"},{"arcs":[[1383]],"type":"Polygon"},{"arcs":[[1384]],"type":"Polygon"},{"arcs":[[1385]],"type":"Polygon"},{"arcs":[[1386]],"type":"Polygon"},{"arcs":[[1387]],"type":"Polygon"},{"arcs":[[1388]],"type":"Polygon"},{"arcs":[[1389]],"type":"Polygon"},{"arcs":[[1390]],"type":"Polygon"},{"arcs":[[1391]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[10]],[[11]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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]],[[434]],[[435]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[473]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[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]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1036]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1363,542]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[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]],[[1187]],[[1188]],[[1189]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[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]],[[1284]],[[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]],[[1364,1365,1366,1345]],[[1346]],[[1347]],[[1348,1367,1368,1369,1351]],[[1352,1370,1371,1372,1355]],[[1356,1373,1374,1375]],[[1359,1376,1377,1378,1362]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-1374,-1357,-1376,1392,-1377,-1360,-1363,-1379,1393,-1365,-1346,-1367,1394,-425,1395,-424,-426,1396,-394,1397,-422,1398,-423,1399,-2,-7,1400,-6,1401,-3,1402,-1193,-1194,1403,-1371,-1353,-1356,-1373,1404,-1368,-1349,-1352,-1370,1405,-9,-10,1406,-438,-439,1407],[-15],[-14],[-1031],[-451],[-22],[-23],[-452],[-453],[-24],[-25],[-26],[-27],[-21],[-17],[-18],[-19],[-20],[-13],[-16],[-1197],[-1202],[-1203],[-1200],[-1196],[-596],[-1199],[-1198],[-1297],[-1013],[-1012],[-1201],[-1233],[-1195],[-1235],[-1234],[-515],[-504],[-499],[-506],[-505],[-501],[-436],[-1298],[-523],[-1295],[-474],[-435],[-1296],[-511],[-1038],[-514],[-508],[-503],[-516],[-513],[-517],[-512],[-526],[-524],[-507],[-510],[-522],[-500],[-521],[-520],[-519],[-518],[-1033],[-363,-362,-364],[-337,-336,-338],[-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339],[-373,-372,-371,-370],[-368,-367,-366,-365,-369],[-377,-376,-375],[-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-335],[-496],[-392,-391,-390,-389,-388],[-497],[-374],[-386],[-387],[-502],[-498],[-1339],[-1334],[-1335],[-1314],[-1329],[-1317],[-1322],[-1308],[-1311],[-1315],[-1256],[-1257],[-1255],[-1305],[-1285],[-1034],[-1260],[-1343],[-1259],[-1258],[-1331],[-1341],[-1340],[-1342],[-1321],[-1320],[-1319],[-1324],[-1326],[-1336],[-1333],[-1328],[-1275],[-1274],[-1276],[-1273],[-1270],[-1272],[-1271],[-1269],[-1268],[-1267],[-1264],[-1265],[-1266],[-1263],[-1262],[-1261],[-1015],[-1014],[-1018],[-1017],[-1026],[-1025],[-1024],[-1022],[-1019],[-1023],[-1020],[-1021],[-1028],[-1027],[-1029],[-1254],[-1072],[-1160],[-1165],[-1182],[-1070],[-1169],[-543,-542],[-1067],[-1066],[-384,-383,-382,-385],[-1065],[-509],[-1068],[-380,-379,-378,-381],[-1064],[-1016],[-1179],[-1163],[-1170],[-1181],[-1073],[-1069],[-1071],[-1185],[-1167],[-1171],[-1172],[-1174],[-1183],[-1184],[-1186],[-1166],[-1149],[-1154],[-1153],[-1176],[-1164],[-1168],[-1159],[-1157],[-1158],[-1161],[-1178],[-1132],[-1177],[-1175],[-1173],[-1180],[-1283],[-1282],[-1162],[-1156],[-1281],[-1135],[-1145],[-1144],[-1148],[-1147],[-1136],[-1138],[-1150],[-1155],[-1152],[-1151],[-1348],[-1146],[-1188],[-1142],[-1190],[-1141],[-1140],[-1139],[-1137],[-1143],[-1277],[-1278],[-1133],[-1134],[-1280],[-1279],[-808],[-1035],[-807],[-585],[-583],[-582],[-581],[-580],[-579],[-578],[-574],[-576],[-575],[-577],[-573],[-1189],[-846],[-843],[-854],[-858],[-859],[-855],[-860],[-812],[-856],[-857],[-813],[-483],[-482],[-484],[-810],[-811],[-822],[-838],[-836],[-835],[-844],[-845],[-849],[-853],[-847],[-842],[-841],[-806],[-848],[-851],[-852],[-850],[-829],[-839],[-823],[-837],[-834],[-819],[-816],[-820],[-818],[-817],[-815],[-833],[-831],[-825],[-827],[-828],[-875],[-870],[-871],[-866],[-867],[-869],[-587],[-586],[-821],[-814],[-809],[-840],[-832],[-824],[-826],[-830],[-895],[-892],[-890],[-884],[-880],[-883],[-887],[-888],[-876],[-878],[-893],[-877],[-864],[-879],[-872],[-874],[-940],[-934],[-933],[-901],[-915],[-931],[-916],[-935],[-930],[-923],[-924],[-928],[-927],[-926],[-929],[-932],[-955],[-954],[-951],[-950],[-949],[-936],[-937],[-938],[-939],[-947],[-946],[-942],[-943],[-944],[-945],[-941],[-994],[-997],[-996],[-992],[-991],[-990],[-976],[-975],[-962],[-970],[-956],[-959],[-960],[-961],[-958],[-957],[-980],[-982],[-981],[-972],[-973],[-974],[-971],[-963],[-964],[-965],[-966],[-967],[-968],[-969],[-995],[-993],[-948],[-904],[-986],[-952],[-953],[-914],[-917],[-984],[-985],[-983],[-989],[-988],[-987],[-977],[-979],[-978],[-922],[-906],[-907],[-921],[-920],[-908],[-909],[-911],[-913],[-912],[-919],[-903],[-910],[-925],[-905],[-902],[-863],[-889],[-891],[-868],[-881],[-873],[-865],[-894],[-885],[-886],[-899],[-900],[-896],[-882],[-897],[-918],[-1075],[-1074],[-487],[-486],[-488],[-485],[-1005],[-1004],[-481],[-1000],[-1003],[-1002],[-1001],[-898],[-862],[-861],[-1063],[-1058],[-1062],[-1061],[-1059],[-546],[-556],[-530],[-531],[-532],[-533],[-545],[-534],[-540],[-536],[-541],[-553],[-555],[-549],[-538],[-547],[-548],[-550],[-434],[-527],[-537],[-1041],[-1040],[-554],[-557],[-560],[-1060],[-565],[-564],[-559],[-563],[-562],[-552],[-561],[-529],[-558],[-1253],[-539],[-525],[-528],[-535],[-544],[-551],[-1043],[-1045],[-1048],[-1044],[-1052],[-1039],[-1047],[-1057],[-1046],[-1055],[-1053],[-1049],[-1054],[-1050],[-1051],[-998],[-393],[-595],[-999],[-450],[-1056],[-1042],[-1006],[-802],[-799],[-796],[-800],[-794],[-795],[-803],[-804],[-805],[-594],[-1284],[-787],[-776],[-777],[-778],[-783],[-779],[-780],[-781],[-782],[-788],[-784],[-786],[-785],[-792],[-790],[-789],[-731],[-732],[-735],[-736],[-744],[-747],[-748],[-753],[-775],[-771],[-768],[-762],[-758],[-755],[-772],[-774],[-673],[-678],[-672],[-680],[-671],[-670],[-662],[-663],[-664],[-667],[-725],[-726],[-727],[-728],[-729],[-730],[-698],[-700],[-714],[-707],[-697],[-696],[-695],[-694],[-692],[-691],[-690],[-684],[-686],[-685],[-689],[-677],[-711],[-597],[-716],[-721],[-715],[-722],[-713],[-717],[-723],[-720],[-718],[-706],[-719],[-708],[-709],[-710],[-681],[-674],[-675],[-704],[-682],[-683],[-687],[-688],[-693],[-676],[-699],[-703],[-702],[-701],[-705],[-712],[-742],[-745],[-743],[-738],[-739],[-733],[-724],[-666],[-741],[-737],[-734],[-740],[-665],[-668],[-669],[-679],[-767],[-766],[-765],[-764],[-763],[-761],[-760],[-759],[-756],[-757],[-752],[-751],[-750],[-754],[-749],[-746],[-652],[-651],[-649],[-647],[-801],[-603],[-601],[-599],[-598],[-797],[-791],[-798],[-793],[-773],[-770],[-769],[-641],[-640],[-639],[-642],[-635],[-636],[-638],[-643],[-648],[-637],[-646],[-650],[-661],[-654],[-653],[-655],[-615],[-616],[-614],[-613],[-611],[-610],[-608],[-628],[-629],[-630],[-631],[-632],[-633],[-634],[-644],[-645],[-625],[-620],[-612],[-622],[-609],[-626],[-607],[-606],[-624],[-623],[-621],[-605],[-617],[-618],[-619],[-604],[-460],[-461],[-462],[-1187],[-1192],[-1191],[-492],[-602],[-600],[-480],[-656],[-660],[-658],[-659],[-657],[-627],[-1286],[-1036],[-1291],[-430],[-429],[-469],[-468],[-428],[-467],[-432],[-1289],[-431],[-466],[-465],[-464],[-463],[-8],[-1288],[-591],[-1248],[-1010],[-592],[-1246],[-1287],[-1250],[-1251],[-1247],[-1252],[-473],[-1076],[-566],[-1],[-493],[-1231],[-1232],[-1245],[-489],[-1241],[-490],[-593],[-491],[-433],[-1011],[-478],[-28],[-1009],[-29],[-427],[-1209],[-1204],[-1208],[-1210],[-479],[-1211],[-495],[-1205],[-1206],[-1243],[-1244],[-397],[-1249],[-1207],[-1242],[-494],[-477],[-475],[-395],[-472],[-408],[-407],[-406],[-405],[-404],[-402],[-403],[-398],[-400],[-401],[-399],[-396],[-476],[-471],[-470],[-1304],[-419],[-418],[-417],[-411],[-412],[-416],[-415],[-414],[-420],[-410],[-421],[-409],[-413],[-1237],[-1236],[-1240],[-1238],[-1239],[-1212],[-1008],[-1007],[-1214],[-570],[-572],[-590],[-589],[-569],[-568],[-588],[-1292],[-584],[-1293],[-1290],[-1294],[-1077],[-1096],[-1093],[-1097],[-1123],[-1127],[-1126],[-1125],[-1124],[-1128],[-1129],[-1130],[-567],[-571],[-1131],[-1213],[-1108],[-1115],[-1113],[-1116],[-1118],[-1119],[-1121],[-1122],[-1120],[-1117],[-1099],[-1102],[-1103],[-1105],[-1112],[-1106],[-1092],[-1088],[-1090],[-1091],[-1094],[-1086],[-1087],[-1100],[-1110],[-1107],[-1111],[-1114],[-1109],[-1098],[-1101],[-1104],[-1227],[-1030],[-459],[-458],[-457],[-456],[-455],[-454],[-1082],[-1079],[-1080],[-1083],[-1085],[-1084],[-1095],[-1089],[-1327],[-1325],[-1318],[-1347],[-1323],[-1337],[-1338],[-1332],[-1230],[-1229],[-1330],[-12],[-11],[-1226],[-1228],[-1225],[-1220],[-1222],[-1309],[-1223],[-1310],[-1221],[-1312],[-1316],[-1218],[-1217],[-1216],[-1215],[-1306],[-1313],[-1307],[-1224],[-446],[-445],[-449],[-1302],[-442],[-447],[-448],[-1303],[-1081],[-1301],[-1037],[-1300],[-1299],[-1219],[-1032],[-1078],[-437],[-443],[-444],[-440],[-441]],[[1408,-4]],[[1409,-5]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[1410,1411],[1412]]},{"type":"LineString","arcs":[1413]},{"type":"LineString","arcs":[1414]},{"type":"LineString","arcs":[1415]},{"type":"LineString","arcs":[1416]},{"type":"LineString","arcs":[1417]},{"type":"LineString","arcs":[1418]},{"type":"LineString","arcs":[1419]},{"type":"LineString","arcs":[1420]},{"type":"MultiLineString","arcs":[[1421],[1422,1423],[1424,1425]]},{"type":"MultiLineString","arcs":[[1426],[1427]]},{"type":"LineString","arcs":[1428]},{"type":"MultiLineString","arcs":[[1429],[1430]]},{"type":"LineString","arcs":[1431,1432,1433]},{"type":"LineString","arcs":[1434]},{"type":"LineString","arcs":[1435]},{"type":"LineString","arcs":[1436]},{"type":"LineString","arcs":[1437]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[[1438]],[[1439,1440,157,1441,1442,160,1443,162,1444,1445,165,1446,167,1447,1448,1449,1450,1451,173,1452,1453,176,1454,1455,179,1456,181,1457,183,1458,185,1459,1460,188,1461,1462,191,1463,193,1464,1465,1466,197,1467,199,1468,1469,1470,1471,204,1472,206,1473,208,1474,210,1475,212,1476,214,1477,216,1478,218,1479,1480,221,1481,223,1482,1483,1484,227,1485,229,1486,231,1487,233,1488,235,1489,237,1490,239,1491,241,1492,243,1493,1494,246,1495,1496,249,1497,1498,1499,253,1500,255,1501,257,1502,1503,1504]]],"type":"MultiPolygon","properties":{"ct":[122.18,-25.49],"gu":"AUS"},"id":"WA"},{"arcs":[[[-1505,1505,1506,261,1507,263,1508,265,1509,267,1510,269,1511,1512,1513,273,1514,275,1515,277,1516,1517,280,1518,1519,283,1520,1521,1522,287,1523,289,1524,291,1525,1526,294,1527,1528,297,1529,299,1530,1531,1532,303,1533,305,1534,307,1535,309,1536,311,1537,1538,1539,1540,1541,1542]],[[1543,382,1544,1545]],[[1546]],[[387,1547,389,1548,1549]]],"type":"MultiPolygon","properties":{"ct":[133.37,-19.51],"gu":"AUS"},"id":"NT"},{"arcs":[[[-1440,-1543,1550,1551,1552,1553,1554,124,1555,126,1556,128,1557,130,1558,132,1559,1560,1561,1562,1563,138,1564,140,1565,142,1566,1567,145,1568,1569,1570,149,1571,151,1572,1573,154,1574,1575]],[[1576,1577,1578,1579]]],"type":"MultiPolygon","properties":{"ct":[135.83,-30.07],"gu":"AUS"},"id":"SA"},{"arcs":[[[-1542,1580,316,1581,318,1582,1583,321,1584,323,1585,1586,326,1587,328,1588,330,1589,1590,1591,334,1592,1593,1594,1595,1596,34,1597,36,1598,38,1599,40,1600,1601,1602,1603,45,1604,47,1605,49,1606,51,1607,53,1608,55,1609,57,1610,59,1611,61,1612,63,1613,65,1614,67,1615,69,1616,1617,-1551]],[[1618,1619,1620]],[[377,1621,379,1622]]],"type":"MultiPolygon","properties":{"ct":[144.52,-22.59],"gu":"AUS"},"id":"QL"},{"arcs":[[[346,1623,348,1624,1625,351,1626,353,1627,1628,1629,357,1630,1631,1632,338,1633,340,1634,1635,1636,344,1637]],[[1638,336,1639]],[[1640,361,1641]],[[1642,1643,1644,1645,1646]]],"type":"MultiPolygon","properties":{"ct":[146.57,-42],"gu":"AUS"},"id":"TS"},{"arcs":[[-1553,1647,1648,1649,95,1650,97,1651,1652,100,1653,1654,1655,104,1656,106,1657,1658,109,1659,111,1660,113,1661,115,1662,1663,1664,119,1665,121,1666]],"type":"Polygon","properties":{"ct":[144.29,-36.84],"gu":"AUS"},"id":"VI"},{"arcs":[[1667]],"type":"Polygon","properties":{"ct":[149,-35.5],"gu":"AUS"},"id":"CT"},{"arcs":[[1668,1669,1670]],"type":"Polygon","properties":{"ct":[150.65,-35.15],"gu":"AUS"},"id":"JB"},{"arcs":[[-1552,-1618,1671,71,1672,73,1673,75,1674,77,1675,79,1676,81,1677,83,1678,85,1679,87,1680,89,1681,-1669,1682,92,1683,-1648],[-1668]],"type":"Polygon","properties":{"ct":[147.01,-32.17],"gu":"AUS"},"id":"NS"}]}}} \ No newline at end of file diff --git a/topojson/dist/south-america_110m.json b/topojson/dist/south-america_110m.json new file mode 100644 index 00000000000..e19ea4f50ae --- /dev/null +++ b/topojson/dist/south-america_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[3890,2566],[-16,-37],[-18,24],[18,58],[-57,-20],[3,72],[81,2],[26,35],[42,-35],[2,63],[-33,27],[-55,25],[-17,-8],[96,-40],[-74,-16],[-32,-49],[-47,27],[19,45],[-27,0],[-40,29],[36,10],[-9,40],[-69,17],[13,43],[-21,38],[23,9],[-26,31],[-48,2],[48,53],[-4,37],[44,17],[12,32],[-61,-19],[-8,79],[6,37],[55,15],[-1,21],[-77,49],[29,12],[45,-4],[62,-23],[32,1],[-34,46],[-20,44],[-42,-32],[-99,11],[80,19],[-45,20],[25,39],[37,11],[-29,54],[-55,-3],[-55,8],[-16,21],[-37,-19],[11,-19],[-36,-13],[-21,23],[26,33],[74,51],[0,52],[132,8],[13,-49],[50,-10],[25,115],[39,24],[48,-28],[10,15],[-75,26],[31,39],[54,29],[11,47],[-86,35],[18,24],[31,65],[-7,51],[24,59],[-8,14],[22,49],[26,30],[-13,31],[-35,17],[29,28],[-25,36],[-29,-3],[-53,-43],[-46,8],[-20,49],[-12,69],[28,67],[-1,34],[16,50],[38,11],[25,77],[-28,80],[-36,189],[-3,31],[15,27],[39,-8],[19,18],[8,58],[16,0],[25,83],[38,100],[44,56],[23,57],[15,81],[43,71],[-4,78],[27,44],[12,86],[-8,66],[-15,72],[-15,118],[9,56],[33,10],[19,56],[-3,61],[-28,42],[3,43],[28,32],[12,30],[9,72],[50,146],[14,57],[8,80],[-7,26],[16,57],[19,21],[1,26],[-20,72],[17,143],[-7,44],[-11,7],[1,46],[42,36],[6,75],[27,141],[-19,91],[10,109],[-4,53],[-19,72],[-14,135]],[[4273,7731],[-135,95],[-5,17],[-44,57],[-169,96],[-121,53],[-85,53],[-86,47],[-49,38],[-74,73],[-28,21],[-52,76],[-9,37],[18,45],[-2,33],[-22,32],[-61,109],[-23,30],[-173,312],[-41,120],[-12,17],[-57,132],[-87,124],[-33,75],[-35,46],[-35,25],[-74,38],[-52,36],[3,42],[33,0],[0,25],[-27,43],[-41,101],[16,65],[74,81],[53,39],[14,1]],[[2852,9965],[43,38],[20,65],[-6,51],[-28,6],[-33,-58],[-71,53],[-28,26],[30,49],[-1,78],[-6,13],[8,51],[43,56],[28,64],[26,31],[6,69],[-10,18],[8,25],[53,26],[71,15],[32,35],[24,12]],[[3061,10688],[-17,23],[20,37],[28,-6],[4,22],[-20,13],[-6,25],[29,54],[103,23],[38,83],[59,69],[4,28],[-13,28],[-34,-8],[-13,39],[25,35],[5,25],[-11,116],[7,168],[-46,62],[-34,35]],[[3189,11559],[-42,47],[-38,79],[39,43],[-28,7],[-29,39],[-49,39],[-36,14],[-47,-2],[-45,28],[-2,23],[39,44],[120,-29],[24,-1],[91,-48],[52,-59],[27,-7]],[[3265,11776],[74,-87],[13,46],[-9,15],[81,77],[26,48],[34,14],[36,37],[3,82],[10,52],[95,76],[76,-15],[16,14],[11,39],[47,-10],[76,2],[74,60],[45,15],[46,50],[69,52],[56,-18],[22,-48],[-29,-26]],[[4137,12251],[-16,-17],[-72,-18],[1,-43],[29,-46],[18,-55],[-8,-32],[-42,-49],[-22,-38],[40,-94],[17,-25],[30,-2],[39,17],[24,32],[5,51],[-7,18],[-55,83],[-13,57],[26,30],[189,71],[24,2],[-8,32],[-42,-7],[-7,45],[15,27],[24,14],[17,-11],[46,-100],[46,11],[65,-17],[58,-37],[18,-34],[0,-44],[22,-25],[30,-4],[138,22],[109,4],[43,-53],[14,-9],[107,-23],[34,3],[40,24],[82,30],[43,30],[136,15],[46,-3],[82,4],[-12,-15],[-90,-14],[-18,-24],[51,-87],[21,31],[25,-11],[30,-29],[23,5],[37,-13],[26,-19],[28,-1],[35,-36],[-26,-19],[-8,-56],[14,-14],[-10,-24],[63,-3],[29,14],[51,-15]],[[5771,11757],[125,-77],[71,-71],[24,-40],[-2,-73],[28,13],[36,-10],[86,-75],[30,-20],[14,-56]],[[6183,11348],[28,28],[91,-15],[56,0],[47,12],[34,-3],[79,4],[114,-24],[3,-31]],[[6635,11319],[25,23],[50,-32],[68,-14],[157,-125],[45,-67]],[[6980,11104],[10,32],[50,-47],[11,-25],[17,-121],[48,-138],[29,-55],[27,0],[48,-21],[10,-39],[-15,-52],[-64,-57],[-16,-29],[-44,-47],[-52,-35],[-31,-54],[23,-13],[26,25],[27,41],[33,9],[21,-25],[29,12],[41,-10],[201,-11],[39,-23],[-15,-48],[-49,-102],[-31,-23],[-82,-27],[-66,0],[-52,-18],[2,-15],[93,7],[25,16],[44,11],[-15,-42],[13,-12],[28,48],[29,1],[62,85],[20,12],[4,22],[35,42],[23,12],[33,3],[38,-29],[25,10],[56,-16],[24,-24],[56,-10],[20,-31],[27,15],[41,-41],[36,-9],[12,-42],[38,42],[23,-12],[47,-53],[-1,-37],[30,-9],[6,-19],[-29,-28],[-34,-106],[8,-11],[35,42],[26,77],[30,15],[8,-22],[-41,-33],[18,-12],[46,36],[48,14],[18,28],[35,-6],[136,-63],[31,8],[66,-25],[39,-1],[120,18],[71,-8],[114,-64],[111,-77],[44,-52],[58,-55],[67,-47],[62,-29],[37,-10],[65,0],[25,5],[51,-11],[25,-14],[28,-56],[22,-95],[35,-117],[4,-47],[-8,-107],[-13,-48],[-32,-91],[-32,-48],[-107,-129],[-56,-58],[-49,-31],[-23,-29],[-58,-92],[-36,-77],[-45,-72],[-49,-58],[-23,-13],[-3,41],[-30,17],[-9,-55],[-19,-73],[-25,-60],[17,-15],[-15,-101],[14,-132],[7,-28],[-43,-213],[3,-61],[-24,-51],[-37,-44],[-15,-44],[-4,-48],[8,-73],[-9,-36],[-61,-80],[-35,-84],[-56,-52],[-38,-78],[12,-76],[-35,-21],[-51,-16],[-57,-46],[7,-31],[-23,-27],[-145,-1],[9,35],[-26,0],[9,-34],[-59,-15],[-40,21],[-34,-9],[-38,7],[-49,-21],[-9,-46],[-20,4],[-118,-64],[-35,1],[-79,-40],[-154,-107],[-51,-54],[-40,-31],[-80,-8],[7,-19],[37,-23],[-26,-61],[-23,-22],[16,-23],[-4,-48],[23,-75],[-11,-37],[1,-72],[-24,-86],[-13,-19],[-72,-49],[-69,-80],[-35,-61],[-35,-88],[-84,-117],[-58,-54],[-107,-76],[-5,37],[54,14],[47,38],[32,35],[85,123],[5,29],[-18,11],[-56,-24],[-35,9],[-2,-42],[-24,-71],[-77,-58],[-19,-37],[-18,-55],[14,-21],[-68,-139],[-20,-24],[-86,-68]],[[6727,5427],[-59,-92],[-54,-45],[-114,-45],[-65,25],[-45,3],[-39,-13],[-121,24],[-37,29],[-120,16],[-73,71],[-3,50],[11,58],[32,26]],[[6040,5534],[-43,-20],[-18,-75],[6,-35],[18,-22],[-21,-60],[32,-34],[61,-24],[54,-29],[46,-43],[11,-21],[-35,-44],[-2,-33],[42,-49],[50,-5],[9,-86],[-151,-198],[-69,-33],[-139,-39],[-105,-20],[-135,-20],[-141,-3],[-49,24],[-37,0],[27,-70],[22,-31],[-23,-53],[-15,-2],[-19,-58],[41,-51],[-20,-40],[-109,-42],[-100,-2],[-142,56],[-36,10],[-27,-43],[13,-60],[1,-83],[7,-17],[61,-52],[71,0],[-10,33],[61,20],[19,-28],[0,-76],[-74,-16],[-24,48],[-52,6],[-45,-22],[-6,-18],[87,-26],[-85,-49],[-45,-54],[-4,-17],[18,-87],[-23,-34],[-37,-16],[-13,-55],[-69,6],[-106,-40],[-47,-45],[-43,-62],[-5,-41],[32,-50],[85,-62],[73,-12],[46,1],[37,-40],[-19,-90],[-73,-55],[-89,-44],[-84,-62],[-32,-130],[-53,-33],[-45,0],[-66,-40],[-24,-29],[-19,-57],[31,-92],[-16,-14],[42,-27],[66,-72],[-10,-10]],[[4555,2636],[-94,24],[-59,-18],[-31,-30],[-55,-4],[-100,-24],[-30,-96],[2,-60],[-46,-19],[-122,34],[-49,42],[22,22],[89,6],[51,15],[33,32],[-63,50],[-104,6],[-80,-2],[-16,-37],[-13,-11]],[[4529,2596],[30,-30],[5,-25],[-27,-28],[73,-42],[74,-66],[141,-71],[111,-38],[97,0],[-60,-42],[-91,-7],[-186,17],[-104,7],[-63,-10]],[[4529,2261],[-62,-10],[-90,22],[-62,-4],[-111,12],[-11,21],[-87,11],[20,21],[108,0],[31,18],[80,-18],[19,15],[-43,30],[-14,55],[116,35],[-3,20],[-83,-2],[-42,-14],[-34,17],[9,55],[117,55],[114,7],[28,-11]],[[3182,14220],[24,-40],[0,-44],[-36,-20],[-41,29],[-9,27],[22,25],[4,23]],[[3888,13641],[-18,-25],[-70,-7],[1,27],[35,16],[52,-11]],[[3560,14024],[68,-104],[-41,32],[-27,72]],[[1685,13245],[28,-18],[-3,-53],[-11,-32],[-10,-74],[9,-48],[-15,-52],[-23,-44],[-37,-21],[-28,-47],[60,-2],[43,-22],[18,-3],[25,24],[28,7],[47,-15],[83,-7],[56,3],[63,17],[162,5],[68,-17],[155,-101],[27,-23],[-23,-33],[10,-42],[-35,-101],[-12,-83],[9,-115],[-18,-19],[-12,-58],[-3,-62],[-19,-29],[9,-45],[20,-21],[25,-60],[18,-30],[82,-95],[34,-18],[28,-24],[2,-31],[15,-27],[26,-15],[66,-5],[16,-14],[29,-3],[47,9],[80,45],[55,22],[27,-23],[23,-4],[17,-20],[-27,-27],[2,-27],[-62,-42],[-25,-5],[-6,-45],[49,-54],[5,-28],[-60,-32],[-40,-4],[-32,8],[-18,93],[-20,-2],[0,-28],[-42,10],[-37,66],[-65,8],[-12,14],[-53,-2],[-36,-43],[-39,88],[-18,-13],[-2,-24],[-34,10],[-26,21],[17,37],[-4,33],[-46,39],[-68,30],[-31,33],[-13,30],[-75,47],[16,-38],[35,-27],[-36,-34],[-59,43],[-34,35],[-11,36],[17,28],[8,81],[-119,106],[-35,55],[-110,96],[7,23],[24,6],[-11,18],[1,42],[-53,-5],[-10,8],[4,-18],[-30,-19],[-77,4],[-40,9],[-70,35],[-29,2],[-55,18],[-38,19],[-66,26],[-68,0],[-35,5],[-66,35],[-67,53],[-106,109],[-72,64],[-54,38],[-56,24],[-71,15],[-63,-5],[-63,-35],[-97,-38],[-33,-4],[-57,15],[-47,24],[-99,21],[-69,30],[-52,37],[-67,18],[-57,8],[-39,22],[-19,7]],[[357,14220],[-22,-74],[-8,-78],[-4,-132],[-14,-96],[16,-62],[32,-48],[28,-107],[20,-46],[105,-126],[31,-87],[50,-63],[37,-19],[82,-14],[42,-22],[27,-45],[18,-6],[46,8],[54,18],[96,17],[66,26],[97,13],[41,0],[85,51],[54,44],[41,92],[-4,39],[10,90],[15,33],[70,33],[162,30],[52,15],[68,4],[90,-22],[45,5],[26,-51],[-17,-40],[-55,-57],[-33,-60],[-2,-40],[-36,-22],[22,-39],[-13,-29],[19,-14],[-45,-138],[-27,100],[-39,-56]],[[7296,10461],[-40,-3],[13,32],[32,-5],[-5,-24]],[[7237,10487],[-26,-13],[-28,11],[-5,27],[84,19],[8,-13],[-33,-31]],[[7169,10520],[-33,-8],[16,39],[17,-31]],[[7178,10529],[-4,39],[32,-11],[-28,-28]],[[7173,10768],[-21,-13],[-14,26],[26,19],[9,-32]],[[4567,2245],[-36,-23],[37,-49],[-59,4],[-13,36],[-57,5],[-57,-23],[-33,24],[28,18],[150,18],[40,-10]],[[4755,2224],[-25,-25],[-137,18],[-11,40],[145,-3],[28,-30]],[[4452,2250],[-101,-12],[24,28],[77,-16]],[[4148,2384],[41,-24],[-27,-23],[-64,43],[50,4]],[[4052,2417],[38,-17],[-12,-45],[-71,34],[45,28]],[[4260,2458],[16,-58],[-74,-2],[58,60]],[[3904,2462],[9,-16],[56,-4],[42,-25],[-37,-30],[-43,-8],[-8,38],[-35,7],[-35,26],[51,12]],[[3758,2542],[86,-28],[-11,-16],[-75,44]],[[3890,2566],[61,0],[23,5],[47,24],[50,-5],[40,8],[12,-29],[-74,-28],[-46,-4],[6,-21],[-47,-6],[-1,-47],[-104,57],[62,3],[-29,43]],[[3646,3192],[24,-6],[15,-57],[-3,-61],[13,-35],[-8,-28],[-27,-21],[-73,30],[-31,55],[4,34],[65,-14],[12,39],[-26,50],[35,14]],[[3561,3200],[-44,-10],[1,35],[28,3],[15,-28]],[[3659,3244],[4,-35],[-40,-11],[12,55],[24,-9]],[[3623,3235],[-39,9],[17,34],[33,-23],[-11,-20]],[[3599,3202],[-62,38],[19,27],[43,-65]],[[3801,3579],[-38,6],[6,27],[29,-3],[3,-30]],[[3793,3704],[-74,13],[7,20],[57,5],[10,-38]],[[3770,3790],[-55,-19],[-22,27],[63,4],[14,-12]],[[3909,3826],[29,-14],[-26,-34],[-48,-26],[-35,43],[80,31]],[[3767,4218],[39,1],[22,-46],[-13,-32],[-28,-16],[-6,-25],[33,-22],[-4,-21],[-45,-76],[-54,11],[-20,14],[36,54],[-1,91],[19,30],[-2,33],[24,4]],[[2635,13943],[26,-14],[39,9],[24,-14],[38,16],[85,-34],[39,0],[45,-22],[26,-34],[38,-23],[80,-1],[76,-38],[50,-37],[56,-33],[3,14],[125,-70],[59,-21],[59,-1],[21,-18],[-15,-41],[94,-5],[35,-11],[36,-32],[48,-16],[9,-17],[-24,-18],[-79,-7],[-64,-21],[-62,11],[-63,4],[-83,-6],[-135,-18],[6,29],[33,27],[30,13],[16,27],[-38,37],[-100,-2],[-62,51],[-17,62],[-24,28],[-78,-11],[-205,73],[-142,22],[-62,24],[62,14],[5,18],[-30,16],[-109,0],[-48,-23],[-52,-41],[-95,-28],[-11,-22],[-43,-13],[-55,6],[26,21],[24,50],[26,30],[47,29],[105,36],[96,17],[32,12],[77,-4]],[[2517,13705],[-48,-18],[-30,51],[21,23],[35,-7],[22,-49]],[[5565,12819],[26,-25],[-2,-32],[-16,-7],[-15,50],[7,14]],[[4074,13427],[27,31],[84,3],[91,-35],[67,-18],[39,-42],[58,7],[0,-23],[-54,5],[-4,-21],[54,-9],[48,1],[31,-14],[55,-49],[-19,-36],[-44,-19],[-27,26],[-113,7],[-46,-13],[-25,-21],[-39,-5],[-31,32],[-40,-19],[-30,-51],[-40,-43],[-21,16],[-21,40],[-41,30],[-69,-2],[-55,-10],[-66,13],[-42,1],[-42,-20],[-55,26],[-23,19],[9,31],[30,8],[81,-26],[140,-7],[43,12],[7,22],[-68,52],[16,64],[-51,26],[-50,1],[-8,19],[38,23],[53,5],[69,-27],[84,-10]],[[5934,2800],[37,-9],[28,-24],[69,22],[25,-25],[2,-24],[-113,-30],[-21,-29],[-52,9],[-63,-42],[-36,26],[32,41],[43,19],[49,66]],[[5859,2793],[20,-19],[-76,-57],[-84,-48],[-45,-5],[-27,19],[94,42],[-25,54],[123,-5],[20,19]],[[5561,12948],[8,-42],[-26,-33],[-18,-7],[-15,48],[32,0],[19,34]],[[3923,13289],[-62,10],[5,18],[57,-28]],[[3410,13197],[26,-39],[-46,-7],[-37,12],[-45,-5],[-13,-22],[-98,28],[-60,39],[31,37],[33,11],[111,-16],[98,-38]],[[5629,12690],[19,-30],[-25,-16],[-29,50],[35,-4]],[[2653,11579],[-19,-2],[-21,25],[22,18],[18,-41]],[[4928,13174],[-52,-13],[-74,9],[-69,-6],[-5,65],[23,20],[169,-10],[34,-12],[7,-22],[-33,-31]],[[8994,2394],[129,-15],[72,-31],[58,-64],[-29,-21],[-75,57],[-140,54],[-15,20]],[[5634,12100],[-8,-104],[-22,-10],[-105,-5],[47,28],[13,16],[0,32],[-13,19],[23,14],[65,10]],[[5205,12109],[-19,-4],[-43,26],[56,9],[6,-31]],[[2869,10030],[-21,-5],[5,43],[27,9],[5,-21],[-16,-26]],[[1249,10502],[79,-135],[-16,-32],[-45,-13],[-31,6],[-9,21],[41,28],[-28,85],[-11,13],[20,27]],[[1409,10368],[-24,-6],[-19,12],[4,24],[37,6],[2,-36]],[[1242,10409],[-32,-3],[-7,26],[29,7],[10,-30]],[[2643,14155],[-11,13],[45,24],[5,-26],[-39,-11]],[[4554,0],[1,52],[-38,22],[16,20],[68,8],[111,-4],[77,43],[-49,17],[-3,69],[23,44],[-41,32],[59,10],[-41,63],[-64,-10],[17,71],[57,24],[46,-42],[43,-9],[-18,88],[55,12],[64,-14],[3,54],[24,35],[48,3],[188,76],[-19,24],[7,41],[30,16],[81,-18],[120,82],[31,-25],[76,26],[160,89],[171,29],[59,20],[23,21],[218,46],[39,-7],[39,-42],[-88,11],[-39,-24],[-88,-15],[-57,-43],[-31,-49],[7,-27],[-125,27],[-103,-36],[-105,-59],[-136,-43],[-7,-18],[42,-24],[-75,-34],[-5,-23],[72,-36],[75,30],[110,4],[-53,-49],[-64,25],[-41,-26],[-102,15],[-61,-7],[55,-63],[-42,1],[-63,47],[-87,7],[-29,-43],[14,-55],[-74,6],[-103,-67],[-33,-4],[-42,-60],[-12,-55],[96,-13],[-49,-24],[69,-42],[103,-18],[3,27],[138,-34],[-62,-18],[47,-39],[129,-47],[-18,-50],[57,-21]],[[3651,64],[30,-36],[-24,-21],[-177,3],[-31,40],[202,14]],[[5477,42],[-29,8],[-54,69],[55,7],[41,-35],[-13,-49]],[[4414,62],[32,-62]],[[4145,0],[-97,36],[0,39],[29,38],[-60,27],[92,25],[131,20],[65,-14],[14,-35],[95,-74]],[[4612,391],[-85,-55],[-50,3],[-28,42],[55,28],[43,64],[86,5],[19,-58],[-40,-29]],[[4924,625],[-49,9],[36,34],[42,-4],[-29,-39]],[[5298,836],[30,-18],[-90,-43],[-84,18],[6,18],[90,44],[48,-19]],[[6087,912],[95,-27],[-30,-37],[-122,-9],[-28,59],[42,20],[43,-6]],[[6481,1015],[-37,-23],[-62,11],[-95,-21],[-1,30],[113,19],[82,-16]],[[5727,1117],[-6,-31],[-130,23],[136,8]],[[6052,1211],[54,-17],[-144,-35],[-8,33],[98,19]],[[5389,7147],[35,-29],[57,-81],[135,-107],[7,-10],[92,-36],[58,-3],[69,-43],[30,-29],[84,-43],[109,-41],[30,-19],[28,-36],[-4,-20],[-79,-95],[-12,-32],[-5,-47],[-55,-57],[44,-21],[67,-6],[117,-28],[78,-5],[92,20],[38,25],[110,82],[30,65],[6,96]],[[6550,6647],[27,-8],[32,17],[47,-19],[26,-114],[0,-74],[-19,-32],[-58,-36],[-78,-30],[-143,-106],[-80,-83],[-99,-121],[-95,-83]],[[6110,5958],[-24,-73],[-49,-208],[-3,-72],[6,-71]],[[4555,2636],[1,8],[-198,40],[-68,9],[-236,-2],[-57,51],[-15,23],[20,91],[-5,38],[-69,6],[-55,-24],[-29,37],[-18,55],[-4,101],[13,28],[95,57],[74,94],[-34,51],[-4,32],[31,37],[50,42],[24,68],[5,65],[-4,87],[24,36],[32,24],[-23,52],[-38,11],[-28,24],[115,3],[10,41],[-42,12],[-56,-3],[2,33],[19,43],[1,29],[-38,91],[-31,30],[1,86],[26,25],[23,43],[-9,108],[-15,59],[29,49],[11,92],[28,39],[13,57],[-4,38],[84,46],[-25,55],[-21,95],[1,118],[21,52],[72,47],[19,25],[2,36],[-12,52],[24,100],[49,70],[10,46],[2,66],[-16,33],[-53,212],[-17,9],[-16,37],[7,60],[12,12],[44,104],[37,44],[-13,97],[43,146],[82,101],[34,81],[29,23],[27,2],[29,29],[-45,62],[15,38],[-2,83],[-12,40],[20,44],[-18,53],[44,55],[135,55],[48,155],[-28,28]],[[4734,7063],[23,33],[55,57],[79,59],[37,-33],[63,-7],[55,0],[54,-15],[41,-80],[14,4],[35,77],[17,27],[143,0],[39,-38]],[[4529,2261],[0,335]],[[4734,7063],[-58,-12],[-43,10],[-14,117],[-29,92],[0,19],[-73,120],[-8,20],[18,86],[29,54],[-43,39],[-31,39],[-18,90],[-36,65],[-24,57]],[[4404,7859],[-15,31],[14,25],[94,114],[-65,36],[-19,75],[37,53],[-28,42],[-2,26],[33,46],[40,42],[-17,51],[-3,36],[19,50],[5,75],[25,46],[-46,87],[-87,145]],[[4389,8839],[49,0],[69,-13],[7,-16],[68,28],[19,32],[82,38],[83,45],[51,44],[60,13],[68,8],[41,12],[21,-24],[-2,-39],[-12,-44],[11,-67],[-7,-63],[18,-63],[43,-49],[18,-10],[59,-57],[63,-11],[40,11],[94,-46],[33,-30],[43,-17],[57,-14],[35,-51],[91,-1],[46,-7],[62,-35],[14,-27],[-9,-46],[27,-53],[4,-69],[-24,0],[30,-128],[21,-47],[238,-7],[-9,-72],[12,-60],[45,-39],[26,0],[16,-19],[29,-79],[2,-22],[-41,-137],[-40,-88],[22,-18],[-2,-26],[-26,-18]],[[6034,7458],[-2,49],[-10,12],[-106,64],[-25,7],[-101,0],[-107,-25],[-127,-21],[-49,-39],[-50,-86],[-13,-93],[-55,-179]],[[6550,6647],[46,179],[-1,49],[-25,26],[-29,12],[-57,-25],[-50,2],[-15,50],[-21,126],[1,27],[-31,50],[-100,14],[-47,-12],[-64,4],[-85,17],[-13,15],[20,106],[-6,85],[-39,86]],[[4389,8839],[-26,1],[-58,-14],[-67,5],[0,176],[15,52],[-15,1],[-87,-74],[-23,-5],[-104,0],[-28,70],[-16,8],[-74,10],[-26,18],[22,25],[-1,21],[-79,91],[-33,75],[-20,31],[4,47],[12,63],[19,27],[56,25],[20,25],[-11,24],[4,58],[28,44],[11,60],[138,94],[110,24],[72,33],[32,3],[60,-33],[11,21]],[[4335,9845],[78,438],[-3,43],[-21,52],[-51,53],[-17,26],[3,105],[87,19],[42,-8],[-7,45],[-21,22],[-75,-1],[0,95],[36,6],[200,-3],[76,33],[15,17],[33,8],[35,-61],[6,-29],[-3,-52],[34,9]],[[4782,10662],[73,-68],[58,15],[47,20],[32,-33],[70,66],[61,34],[15,-2],[46,39],[23,42],[74,25],[3,41],[-76,6],[-20,17],[-10,58],[-5,78],[-25,34],[-66,54],[-3,31],[146,-52],[52,-1],[71,-44],[24,7],[4,53],[55,19],[35,-10],[67,24],[46,37],[54,9],[52,56],[-21,39]],[[5664,11256],[77,11],[30,-28],[-11,-67],[14,-22],[39,-26],[20,-52],[-28,-49],[-31,-105],[-2,-37],[12,-44],[25,-46],[9,-52],[57,-52],[55,-26],[52,6],[29,47],[27,-8],[66,25],[35,27],[68,6],[30,-5],[41,10]],[[6278,10769],[58,-14],[5,54],[33,37],[76,8],[70,-11],[33,-16]],[[6553,10827],[16,-18],[42,-11],[41,22],[68,1],[55,-18],[51,30],[21,29],[9,31],[34,70],[90,141]],[[6727,5427],[-23,9],[1,80],[45,44],[-15,38],[-107,104],[-64,54],[-81,32],[-41,38],[-95,30],[-25,36],[-88,77],[-40,5],[-27,-30],[-57,14]],[[4273,7731],[54,12],[21,15],[29,78],[27,23]],[[4335,9845],[-15,19],[-54,40],[-27,29],[81,132],[-2,11],[-113,64],[-42,-8],[-104,7],[-11,-17],[-37,-9],[-108,4],[-22,14],[-19,82],[-37,25],[-28,55],[-85,42],[-22,67],[-60,44],[-37,20],[-24,-5]],[[3569,10461],[-73,23],[-41,43],[-30,13],[-24,-27],[-95,11],[-41,13],[-65,64],[-62,31],[-77,56]],[[3189,11559],[15,39],[26,10],[35,41],[29,22],[-27,53],[-2,52]],[[4137,12251],[-93,-30],[-25,-46],[-51,-39],[-58,-94],[-11,-96],[-54,-88],[39,4],[47,-34],[17,-62],[32,-35],[7,-54],[-17,-12],[6,-76],[86,-59],[76,-1],[105,7],[64,-13],[103,-131],[30,-3],[40,14],[43,-7],[106,18],[13,11],[49,-16],[3,-41],[-56,-104],[4,-113],[27,-106],[28,-24],[19,-38],[-72,-81],[32,-9],[48,-53],[54,-152],[4,-26]],[[6553,10827],[33,31],[20,35],[29,104],[-3,26],[-47,60],[-17,125],[7,29],[59,69],[1,13]],[[5664,11256],[-89,102],[30,60],[-11,46],[15,21],[53,6],[55,30],[11,24],[-46,24],[-10,26],[20,53],[26,1],[80,66],[-27,42]],[[6183,11348],[-14,-102],[-10,-17],[-39,-3],[-48,-32],[-3,-52],[-17,-43],[6,-25],[34,-53],[54,-39],[27,-64],[63,-118],[12,-18],[30,-13]],[[2852,9965],[5,-38],[-36,-78],[1,-38],[32,14],[74,-16],[31,-24],[30,-48],[41,-4],[40,52],[13,32],[40,150],[100,71],[148,52],[85,70],[67,86],[25,81],[25,23],[-11,56],[-40,44],[47,11]],[[4413,8064],[-46,30],[-37,28],[15,10],[2,19],[-3,29],[42,-9],[31,-25],[57,-46],[4,-4],[31,-66],[-23,-23],[-9,-3],[-5,-1],[-13,11],[-13,9],[-10,26],[-23,15]],[[357,14220],[2789,0]],[[3182,14220],[6916,0],[0,-14220],[-4640,0]],[[4554,0],[-108,0]],[[4145,0],[-4145,0],[0,13004]],[[6481,8335],[-52,-6],[-99,-50],[-31,-25],[-8,-32],[44,-116],[22,-35],[1,-20],[-11,-18],[-62,-48],[-16,-23],[-7,-39],[-56,-79],[-28,-21],[-21,-28],[-18,-81],[-22,-62],[37,-50],[-7,-27],[-10,-14],[-22,-29],[-23,-30],[-10,-14],[-13,-7],[-12,-8],[-22,-15],[42,-83],[-2,-43],[0,-13],[-3,-70],[-4,-78],[0,0],[-6,-10],[21,-59],[0,-40],[71,-132],[20,-51],[11,-44],[-1,-45],[-20,-50],[-44,-43],[-5,-17],[-3,-7],[0,-14],[0,-13],[-9,-15],[-2,-2],[-26,-42],[-34,-55],[-15,-23],[-20,-32],[-26,-42],[-5,-9],[-5,-8],[0,0],[-34,-73],[-6,-53],[-26,-57],[-22,-107],[-25,-20],[-18,-31],[-9,-45],[-10,-152],[-59,-83],[-46,-39],[-30,-37],[-15,-41],[-5,-42],[3,-33],[10,-34],[22,-36],[34,-33],[55,-38],[97,-47],[76,-27],[35,0]],[[4087,8182],[24,82],[-8,75],[-15,32],[-28,26],[-41,24],[-88,38],[-68,10],[-49,60],[-43,78],[-18,45],[-23,112],[0,26],[49,13],[10,24],[-8,34],[-30,61],[-8,32],[7,48],[-23,27],[-45,97],[1,44],[19,34],[-21,18],[-26,48],[-35,35],[-17,56],[-28,42],[1,14],[11,11],[-4,73],[9,43],[23,26],[28,14],[64,50],[34,75],[13,14],[25,11],[45,79],[19,40],[21,21],[11,53],[15,19],[23,9],[58,2],[49,9],[39,-2],[46,-45],[40,-19],[53,-15],[39,11],[38,-4],[36,-23],[24,-25],[12,-13],[29,7],[23,20],[35,78],[45,26],[127,22],[16,12],[4,17],[40,36],[40,24],[77,7],[44,26],[78,-2],[34,-16],[20,-1],[27,-11],[124,-107],[82,-51],[120,-44],[64,27],[47,10],[86,-10],[46,13],[129,62],[97,22],[14,10],[25,2],[139,-32],[23,17],[31,2],[79,83],[42,24],[112,3],[84,52],[43,17],[44,10],[53,-28],[50,-6],[40,-39],[49,19],[57,50],[42,22],[153,60],[94,51],[114,91],[53,66]]],"transform":{"scale":[0.006932065755595167,0.006680731364275668],"translate":[-100,-70]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[77,78,79,12,80,81]],[[82,14]]],"type":"MultiPolygon","properties":{"ct":[-65.15,-35.19]},"id":"ARG"},{"arcs":[[-82,83,84,85,86]],"type":"Polygon","properties":{"ct":[-64.66,-16.71]},"id":"BOL"},{"arcs":[[[-79,87,-86,88,89,90,91,92,93,10,94]],[[21]],[[22]],[[23]],[[24]],[[25]]],"type":"MultiPolygon","properties":{"ct":[-53.09,-10.78]},"id":"BRA"},{"arcs":[[[-81,13,0,95,-84]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[-83,15]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]]],"type":"MultiPolygon","properties":{"ct":[-71.22,-35.19]},"id":"CHL"},{"arcs":[[-90,96,97,3,98,5,99]],"type":"Polygon","properties":{"ct":[-73.08,3.91]},"id":"COL"},{"arcs":[[[49]],[[50]]],"type":"MultiPolygon","properties":{"ct":[-58.75,-51.76]},"id":"FLK"},{"arcs":[[-94,100,9]],"type":"Polygon","properties":{"ct":[-53.23,3.92]},"id":"GUF"},{"arcs":[[-92,101,7,102]],"type":"Polygon","properties":{"ct":[-58.97,4.79]},"id":"GUY"},{"arcs":[[-85,-96,1,103,-97,-89]],"type":"Polygon","properties":{"ct":[-74.35,-9.18]},"id":"PER"},{"arcs":[[-78,-87,-88]],"type":"Polygon","properties":{"ct":[-58.39,-23.24]},"id":"PRY"},{"arcs":[[57]],"type":"Polygon","properties":{"ct":[-36.64,-54.37]},"id":"SGS"},{"arcs":[[-93,-103,8,-101]],"type":"Polygon","properties":{"ct":[-55.9,4.13]},"id":"SUR"},{"arcs":[[-80,-95,11]],"type":"Polygon","properties":{"ct":[-56.02,-32.79]},"id":"URY"},{"arcs":[[[-91,-100,6,-102]],[[59]]],"type":"MultiPolygon","properties":{"ct":[-66.17,7.13]},"id":"VEN"},{"arcs":[[[-98,-104,2]],[[60]]],"type":"MultiPolygon","properties":{"ct":[-78.37,-1.46]},"id":"ECU"},{"arcs":[[[61]],[[62]],[[63]]],"type":"MultiPolygon","properties":{"ct":[-91.16,-0.57]},"id":"ECU"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[104]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[12,13,0,1,2,3,98,5,6,7,8,9,10,11]],[[14,15]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[49]],[[50]],[[57]],[[59]],[[60]],[[61]],[[62]],[[63]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[-20,-21,105,-17,106,-66,107,-69,-70,108],[-49],[-53],[-54],[-18],[-46],[-56],[-47],[-60],[-59],[-26],[-65],[-19],[-52],[-48],[-55],[-57],[-45],[-62],[-24],[-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,-35],[-61],[-25],[-64],[-22],[-23],[-63],[-31],[-30],[-32],[-16,-15],[-40],[-41],[-29],[-42],[-38],[-37],[-43],[-39],[-27],[-28],[-44],[-68],[-71],[-72],[-58],[-73],[-74],[-75],[-76],[-77],[-50],[-51],[-34],[-36],[-33],[-67]],"type":"Polygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[109]},{"type":"LineString","arcs":[110]}]},"subunits":{"type":"GeometryCollection","geometries":[]}}} \ No newline at end of file diff --git a/topojson/dist/south-america_50m.json b/topojson/dist/south-america_50m.json new file mode 100644 index 00000000000..e121d78fbc5 --- /dev/null +++ b/topojson/dist/south-america_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[19353,57184],[1,0],[1,-1],[2,0],[11,-10],[46,-41],[7,-6],[2,-2],[1,0],[1,-1],[3,-4],[3,-2],[17,-19],[2,-3],[7,-8],[4,-5],[4,-12],[4,-11],[0,-2],[1,-6],[0,0],[1,-3],[0,-1],[0,0],[1,-2],[0,0],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[-1,-2],[-1,-1],[0,0],[-3,-1],[-1,-1],[-1,1],[-2,1],[-2,0],[-23,13],[-14,7],[-2,1],[-4,2],[0,1],[0,0],[0,0],[-29,22],[-16,14],[-15,14],[0,0],[-2,2],[-6,6],[-5,6],[2,42],[1,10],[0,1],[1,2],[0,1],[0,2],[2,-1],[1,0],[0,0],[1,0],[0,0],[0,0]],[[23922,61078],[0,-1],[1,0],[0,-3],[-6,-10],[-2,-2],[-1,0],[-56,-33],[-15,-4],[-11,-2],[-18,-4],[-7,-1],[-5,0],[4,8],[61,46],[2,1],[2,1],[5,3],[15,8],[1,0],[0,0],[31,8],[0,0],[-1,-15]],[[27057,25590],[-84,-33],[-107,-62],[-63,-201],[-10,-75],[-9,-71],[27,-161],[0,0],[81,-101],[5,-21],[4,-20],[-10,-33],[-22,-70],[-28,-6],[-28,-5],[-1,-1],[-17,-25],[1,-49],[0,-47],[146,-159],[0,0],[102,-56],[0,0],[169,-54],[240,-136],[49,-37],[62,-47],[50,-56],[49,-55],[47,-99],[-70,-92],[-87,-113],[-13,-46],[-4,-15],[8,-92],[31,-52],[47,-79],[48,-40],[65,-56],[111,-35],[0,0],[45,4],[29,2],[7,30],[0,0],[30,-23],[16,-41],[14,-38],[13,-319],[-563,-763],[-6,-70],[-110,-83],[-307,-150],[0,0],[-623,-179],[0,0],[-473,-96],[-605,-92],[-219,-4],[-412,-7],[-154,38],[-30,34],[-33,39],[-129,45],[0,0],[-1,-2],[-36,-46],[119,-322],[0,0],[-54,1],[0,0],[1,-3],[8,-25],[0,0],[4,-1],[36,-9],[0,0],[76,-78],[27,-28],[-18,-59],[-16,-55],[-69,-130],[-33,-6],[-32,-6],[-30,-91],[-56,-174],[82,-119],[60,-86],[31,-25],[12,-9],[0,0],[-93,-183],[-47,-28],[-69,-27],[-370,-140],[-449,-8],[-20,5],[-64,16],[-550,238],[-34,31],[-9,8],[-120,5],[0,0],[-79,-75],[-22,-68],[-19,-56],[59,-277],[0,-232],[1,-152],[15,-34],[19,-43],[272,-240],[36,-5],[52,-7],[62,3],[168,5],[41,35],[2,35],[1,20],[0,0],[-18,22],[-8,11],[-85,5],[22,26],[176,80],[52,8],[47,7],[28,-45],[55,-87],[24,-212],[-24,-137],[0,0],[-46,-25],[-19,-10],[-3,0],[-261,-40],[-73,79],[19,72],[0,0],[-8,10],[-46,62],[0,0],[-164,41],[-72,-12],[-188,-96],[-12,-6],[-31,-51],[6,-35],[130,-49],[80,-31],[178,-42],[0,0],[-378,-224],[-206,-251],[-15,-80],[31,-107],[8,-27],[20,-130],[21,-135],[-3,-14],[-5,-21],[-93,-123],[-168,-76],[-53,-100],[10,-25],[5,-11],[116,-44],[0,0],[-53,-63],[-62,-7],[-21,-3],[-311,28],[-142,-56],[-331,-130],[-13,-8],[-45,-29],[-155,-171],[-86,-128],[-106,-156],[-26,-71],[-7,-17],[11,-102],[143,-231],[207,-154],[177,-132],[326,-58],[77,2],[127,5],[35,-11],[29,-9],[28,-30],[46,-50],[27,-82],[1,-2],[-83,-417],[0,0],[-97,-111],[-32,-5],[-37,-6],[-161,-135],[-162,-82],[-238,-122],[-246,-188],[-130,-99],[-63,-122],[7,-133],[-49,-250],[-11,-27],[-29,-68],[-98,-86],[-138,-64],[-37,-4],[-78,-9],[-44,6],[-44,7],[-294,-185],[-60,-75],[-49,-59],[-85,-264],[142,-428],[0,0],[-34,-10],[-63,-19],[-21,-23],[-34,-35],[0,0],[75,21],[4,1],[55,-36],[132,-86],[259,-290],[39,-44],[0,0],[-47,-48]],[[20404,12187],[0,0],[-18,10],[-50,28],[-178,37],[-172,37],[-269,-83],[-137,-138],[0,0],[-150,-11],[-96,-8],[-106,-26],[-341,-86],[-134,-442],[0,0],[13,-48],[32,-115],[-19,-60],[-18,-56],[0,0],[-15,-8],[-113,-58],[-47,-11],[-33,-8],[-546,157],[-137,95],[-60,71],[-22,26],[3,4],[39,63],[58,33],[97,5],[172,8],[58,-36],[0,0],[29,-107],[-46,-24],[-39,-21],[-108,-28],[0,0],[27,-11],[15,-6],[52,16],[93,29],[9,14],[15,27],[-19,96],[16,26],[25,40],[230,70],[100,101],[47,49],[0,0],[-14,32],[-4,8],[0,0],[-123,90],[-140,102],[-467,25],[-249,-5],[-108,-2],[0,0],[-49,-33],[-16,-40],[-12,-31],[4,-69],[-36,-32],[-19,-18],[-75,-172],[-2,0],[-24,4],[-53,109],[-125,96],[110,0],[19,0],[78,170],[0,0],[-212,-78],[-44,-16],[-33,8],[-36,8],[0,0],[69,121],[-16,64],[-9,36],[0,0],[39,97],[0,0],[22,-6],[88,-23],[34,12],[27,9],[5,9],[5,11],[229,-58],[0,0],[61,119],[0,0],[-26,-30],[-45,-51],[-37,18],[-3,1],[0,52],[0,30],[57,76],[0,0],[62,3],[0,0],[145,-175],[-22,-50],[-5,-10],[-46,-34],[-163,-71],[0,0],[142,17],[26,3],[51,39],[37,28],[17,75],[3,15],[3,61],[8,230],[0,0],[-148,126],[-248,119],[0,0],[-3,27],[-1,11],[0,0],[-72,-76],[431,-186],[0,0],[-60,-57],[-12,-2],[-48,-5],[-235,97],[0,0],[-23,-19],[46,-91],[-58,-89],[-87,-133],[0,0],[-86,21],[0,0],[-87,71],[-36,29],[0,0],[-21,61],[-15,44],[16,10],[19,12],[29,-37],[8,-11],[0,0],[12,30],[36,100],[0,0],[-117,-2],[-94,57],[-36,22],[-52,60],[0,0],[-7,58],[0,0],[25,32],[117,-71],[26,24],[-11,152],[-29,34],[-96,21],[-70,15],[-9,-20],[0,0],[-81,35],[-51,30],[0,0],[-19,60],[9,33],[43,29],[0,0],[42,1],[131,3],[0,0],[70,109],[0,0],[80,16],[99,19],[0,0],[-127,63],[-23,12],[0,0],[-11,-33],[-35,-101],[-91,-67],[-31,-2],[-16,-2],[-34,31],[-28,26],[-22,39],[-76,136],[0,0],[45,11],[25,6],[57,-19],[61,-20],[51,3],[0,0],[-15,7],[-121,53],[-113,143],[0,0],[-217,11],[0,0],[52,120],[36,13],[40,14],[144,-90],[46,64],[28,39],[-14,43],[-119,39],[-21,61],[6,89],[1,25],[33,14],[109,50],[78,-14],[0,0],[-16,19],[-8,9],[51,147],[-14,79],[0,0],[-47,52],[-69,-151],[-7,-17],[-7,-51],[-9,-63],[0,0],[-97,53],[-22,12],[0,0],[-12,35],[-7,21],[-18,306],[7,40],[22,133],[245,71],[-4,95],[-345,226],[0,0],[46,19],[84,36],[116,-10],[85,-8],[281,-106],[78,2],[66,1],[0,0],[-153,214],[6,31],[4,20],[0,0],[-35,52],[-65,100],[0,0],[-188,-148],[-190,23],[-46,5],[-10,-1],[-79,-13],[-43,13],[-76,24],[-3,7],[-6,14],[63,78],[64,44],[0,0],[87,-20],[0,0],[10,-38],[-30,-49],[22,6],[153,45],[0,0],[-118,53],[-88,40],[0,0],[-1,48],[-1,15],[0,0],[115,120],[0,0],[28,1],[62,2],[39,23],[36,22],[-52,101],[-78,150],[0,0],[-111,10],[-136,-22],[0,0],[11,-22],[6,-12],[0,0],[58,-9],[99,-16],[0,0],[-7,-8],[-12,-13],[-95,3],[-275,103],[-27,10],[0,0],[-39,51],[0,0],[2,20],[2,15],[0,0],[-40,9],[-196,-30],[-58,-9],[-2,-6],[-6,-21],[98,-23],[0,0],[48,-88],[0,0],[-4,-7],[-13,-25],[-67,-30],[-13,-5],[-63,8],[-93,109],[17,108],[26,39],[10,0],[62,5],[230,164],[103,73],[132,56],[7,3],[33,89],[0,0],[-80,-53],[-38,-25],[0,0],[-35,5],[-62,9],[4,90],[39,64],[330,22],[259,17],[63,-133],[4,-9],[-6,-86],[0,0],[94,-7],[71,-57],[-11,-35],[-15,-53],[-32,-36],[-35,-40],[45,-29],[13,-8],[241,304],[0,18],[1,16],[0,0],[-33,-35],[-90,-94],[-29,12],[0,0],[39,197],[38,66],[0,0],[131,102],[37,2],[81,6],[0,0],[-112,35],[-41,-37],[-52,-45],[-65,-31],[0,0],[39,164],[18,72],[176,108],[33,-16],[33,-56],[40,-17],[30,-14],[68,-20],[9,-3],[0,0],[52,28],[-3,30],[-1,9],[-103,29],[-107,31],[-97,47],[-29,14],[0,0],[68,90],[68,90],[202,110],[43,24],[51,109],[25,51],[-4,7],[-24,49],[0,0],[-160,68],[-228,97],[0,0],[84,110],[139,301],[-22,160],[-11,74],[45,113],[63,160],[-27,46],[-10,18],[12,41],[62,132],[25,54],[24,28],[93,113],[0,0],[39,-25],[0,0],[7,73],[13,139],[-21,1],[-20,1],[-18,-31],[-8,-15],[-21,-1],[-29,0],[-78,28],[-42,15],[-15,14],[-21,21],[131,128],[134,19],[63,36],[38,107],[0,0],[-193,-56],[-68,-20],[0,0],[-54,51],[-35,33],[-71,13],[-59,-29],[-71,-59],[-166,-138],[-50,9],[-154,27],[0,0],[-47,118],[-42,110],[-40,182],[-16,136],[32,77],[96,233],[-5,130],[-1,28],[38,181],[23,38],[8,13],[0,0],[21,9],[81,35],[52,-20],[0,0],[6,8],[12,15],[110,357],[-56,211],[-29,69],[-39,92],[-162,874],[-11,141],[65,127],[81,-39],[59,0],[35,0],[87,82],[34,271],[73,-2],[111,377],[2,8],[168,462],[25,39],[72,115],[48,49],[53,56],[71,179],[33,83],[67,377],[190,325],[-15,363],[28,102],[71,52],[2,1],[20,46],[46,230],[8,170],[-19,159],[-18,146],[-41,201],[-26,132],[-25,193],[-45,350],[42,260],[11,17],[2,3],[0,0],[7,-16],[5,-13],[74,19],[6,1],[45,38],[0,0],[53,168],[29,88],[-14,284],[-15,54],[-18,16],[-43,40],[-48,82],[-5,109],[17,91],[128,149],[52,140],[0,0],[37,286],[6,45],[0,0],[224,677],[33,146],[26,118],[11,108],[25,261],[-31,121],[0,0],[72,260],[85,101],[4,74],[3,44],[-55,207],[-34,128],[15,127],[60,533],[-30,201],[0,0],[-51,35],[-7,85],[14,128],[23,21],[162,145],[-4,47],[-2,29],[33,270],[63,339],[57,314],[-8,103],[-77,317],[46,504],[-9,119],[-9,126],[-83,331],[-23,171],[-22,167],[9,144],[-28,143]],[[19142,35746],[-604,442],[-18,55],[-7,21],[-59,79],[-139,186],[-756,444],[-229,104],[-313,142],[-257,165],[-124,79],[-386,218],[-102,81],[-116,92],[-162,166],[-169,172],[-124,99],[-235,352],[-40,172],[7,31],[10,39],[0,0],[24,-27],[41,161],[-8,155],[-101,146],[-54,100],[-220,407],[-60,82],[-40,55],[-779,1443],[-182,555],[-42,64],[-11,15],[-258,609],[-386,572],[-148,347],[-160,212],[-154,119],[-90,47],[-242,128],[-184,133],[-48,34],[-32,67],[0,0],[8,72],[34,55],[0,0],[89,-36],[60,37],[1,50],[1,64],[-28,70],[-14,35],[-78,91],[-122,311],[-63,159],[23,125],[20,108],[9,22],[17,45],[332,377],[60,44],[181,134],[37,2],[24,1]],[[12776,46075],[12,23],[20,37],[34,5],[5,1],[0,0],[34,31],[88,82],[33,66],[23,98],[32,135],[12,141],[-12,31],[-25,65],[0,0],[-68,15],[-57,12],[-149,-267],[-317,243],[-126,120],[54,91],[81,138],[-3,360],[-30,58],[0,0],[38,238],[192,257],[126,298],[113,141],[9,95],[21,224],[-48,85],[20,63],[17,53],[0,0],[238,119],[317,72],[142,159],[44,85],[0,0],[29,-14],[37,-17]],[[13712,49418],[0,0],[-78,108],[6,11],[86,160],[125,-30],[0,0],[10,62],[8,44],[0,0],[-24,16],[-64,43],[-13,57],[-14,56],[45,119],[63,103],[19,30],[464,103],[65,113],[9,15],[12,62],[13,69],[56,99],[16,29],[0,0],[264,318],[17,68],[-1,38],[-1,25],[-21,46],[-37,82],[-10,7],[-24,16],[0,0],[-41,-49],[-77,-13],[0,0],[-64,72],[-5,47],[4,25],[7,40],[50,32],[0,0],[65,127],[19,119],[-50,534],[10,262],[21,516],[-205,286],[-64,68],[-87,93]],[[14286,53446],[-173,202],[-15,18],[-154,302],[-15,60],[33,50],[56,83],[82,66],[24,-15],[236,-145],[0,0],[-45,58],[-243,232],[0,0],[-66,-68],[-28,-30],[-21,22],[-81,89],[-14,32],[-17,39],[-109,90],[-110,91],[-159,63],[-51,4],[-75,6],[-87,-18],[-199,130],[0,0],[-4,52],[-5,54],[0,0],[-85,-38],[-8,6],[-33,22],[301,215],[534,-135],[108,-5],[165,-81],[65,-31],[177,-111],[234,-272],[50,-13],[70,-17]],[[14624,54453],[86,-105],[246,-299],[0,-11],[-1,-9],[0,0],[-24,-14],[-19,-10],[0,0],[-1,-73],[4,-2],[40,-13],[33,10],[22,6],[0,0],[17,79],[0,2],[-12,245],[0,0],[-2,4],[-37,65],[0,0],[131,129],[232,230],[112,216],[3,6],[34,20],[78,47],[42,-3],[29,32],[129,140],[10,260],[5,118],[12,28],[33,77],[-1,99],[0,38],[362,300],[64,52],[0,0],[173,-52],[32,-10],[13,0],[124,-7],[0,0],[22,19],[47,42],[-10,109],[16,19],[43,55],[58,3],[43,2],[73,-36],[38,-18],[195,-3],[44,-1],[102,17],[114,94],[218,179],[201,71],[0,0],[207,230],[309,241],[177,-59],[74,-24],[100,-166],[0,0],[-4,-54],[-1,-1],[-128,-119]],[[18531,56648],[-6,-19],[-5,-16],[0,0],[-7,-6],[-53,-41],[-324,-83],[-10,-30],[-12,-34],[12,-60],[16,-72],[130,-212],[44,-136],[39,-120],[-27,-111],[-9,-36],[-191,-229],[-81,-144],[-18,-32],[181,-432],[42,-64],[34,-51],[0,0],[29,-10],[106,1],[98,31],[75,48],[108,146],[21,216],[1,18],[0,0],[-9,24],[-23,61],[-246,381],[0,0],[-7,31],[-52,233],[25,43],[36,62],[59,36],[846,326],[33,3],[71,7],[-32,151],[-154,-43],[-34,7],[-38,171],[3,38],[0,0],[67,127],[111,65],[0,0],[37,-25],[40,-27],[205,-461],[110,25],[96,23],[17,-5],[272,-74],[259,-168],[57,-107],[26,-50],[-28,-91],[27,-113],[1,-3],[13,-21],[35,-55],[52,-37],[84,-13],[50,-7],[565,95],[51,8],[0,0],[68,3],[422,14],[68,-30],[0,0],[-2,-29],[0,0],[54,-79],[71,-105],[65,-40],[328,-76],[149,-35],[151,14],[150,91],[32,20],[365,139],[190,16],[0,0],[-77,57],[-124,21],[-51,0],[-25,1],[-37,-20],[-16,-9],[0,0],[-4,73],[338,1],[610,69],[204,-14],[370,20],[0,0],[-16,-31],[-9,-19],[0,0],[-30,-18],[-297,-48],[-106,-18],[-80,-114],[0,0],[226,-402],[0,0],[6,2],[11,2],[0,0],[77,140],[76,-32],[40,-18],[132,-133],[102,22],[0,0],[167,-61],[0,0],[36,-37],[82,-50],[122,-3],[86,-67],[15,-11],[36,-58],[20,-33],[-114,-88],[0,0],[-36,-255],[0,0],[55,-58],[7,-7],[0,0],[-57,-60],[-13,-13],[10,-16],[16,-25],[276,-14],[6,0],[0,0],[130,67],[111,-26],[83,-19],[32,-25]],[[25850,54363],[127,-113],[0,0],[21,10],[7,3],[46,-19],[0,0],[0,0],[362,-236],[318,-328],[48,-74],[19,-29],[40,-83],[2,-115],[-6,-56],[-3,-22],[-40,-38],[-15,-51],[-14,-51],[-18,-270],[0,0],[24,27],[1,6],[61,230],[10,11],[35,39],[73,12],[4,0],[163,-49],[385,-343],[135,-95],[56,-124],[6,-136]],[[27697,52469],[0,0],[36,71],[13,26],[55,25],[23,10],[0,0],[409,-68],[177,-3],[72,-1],[63,40],[148,18],[140,-14],[13,-1],[0,0],[166,-56],[8,12],[0,0],[-43,55],[0,0],[93,17],[55,-3],[74,-4],[323,-59],[188,-55],[0,0],[16,-41],[-6,-100],[0,0]],[[29720,52338],[46,89],[69,15],[223,-145],[296,-66],[7,-2],[122,-99],[583,-477],[200,-311]],[[31266,51342],[0,0],[43,136],[4,13],[0,0],[221,-216],[24,-52],[30,-63],[72,-561]],[[31660,50599],[217,-636],[129,-255]],[[32006,49708],[29,-13],[11,-4]],[[32046,49691],[80,14],[215,-97],[0,0],[5,-21],[42,-157],[-13,-68]],[[32375,49362],[-11,-61]],[[32364,49301],[-45,-111],[-166,-132]],[[32153,49058],[-119,-132]],[[32034,48926],[-57,-106],[-15,-29],[-29,-31]],[[31933,48760],[-170,-184]],[[31763,48576],[-39,-22],[-50,-27]],[[31674,48527],[-61,-51],[-79,-66]],[[31534,48410],[-140,-247],[6,-19],[32,-32],[65,-10],[93,92],[21,21],[10,24],[23,55]],[[31644,48294],[75,94]],[[31719,48388],[15,19],[0,0],[47,16],[69,25],[32,0],[0,0],[32,-65],[-93,-218],[-45,-48],[-94,-96],[0,0],[76,0],[32,0],[0,0],[61,62],[50,101]],[[31901,48184],[74,149],[51,21],[77,33],[188,-43],[82,-5],[817,-47],[174,-108],[0,0],[-64,-207],[-4,-14],[0,0],[-218,-472],[0,0],[-141,-108],[-251,-65],[-90,-46],[-24,-12],[-295,-1],[-233,-84],[4,-32],[3,-34],[0,0],[416,29],[113,77],[4,1],[194,51],[0,-36],[1,-20],[0,0],[-12,-24],[-56,-118],[-21,-104],[20,-11],[12,13],[47,49],[123,223],[58,68],[74,52],[0,0],[-8,-60],[0,-4],[0,0],[-30,-32],[0,0],[3,-4],[12,-22],[0,0],[21,6]],[[33022,47243],[185,265],[7,-3],[44,-17],[-1,-27],[-1,-28],[27,-59],[0,0],[5,1],[1,1],[67,24]],[[33356,47400],[5,2],[1,1],[35,22],[0,20],[-9,-1]],[[33388,47444],[-46,-7],[0,0],[-27,43]],[[33315,47480],[-29,46],[15,110],[0,0],[91,55]],[[33392,47691],[0,0],[4,-6],[5,-8],[15,1],[7,1],[-16,113]],[[33407,47792],[106,128],[55,66],[0,0],[16,-22],[6,-8],[43,49],[34,39],[42,7],[67,11],[42,-8],[51,-39],[54,-43],[11,-29],[8,-19]],[[33942,47924],[45,-5]],[[33987,47919],[26,11],[84,36],[0,0],[47,-13]],[[34144,47953],[205,-58]],[[34349,47895],[97,-57],[0,0],[9,-16]],[[34455,47822],[13,-24],[0,0],[-9,-17],[-1,-1],[0,0],[98,-43]],[[34556,47737],[146,-2],[5,0],[51,-42],[40,-101]],[[34798,47592],[0,0],[16,6]],[[34814,47598],[34,15]],[[34848,47613],[22,16]],[[34870,47629],[47,35],[0,0],[183,-189]],[[35100,47475],[2,-2],[85,-8],[23,-10],[55,-23],[7,-13],[22,-44],[23,-138],[43,2],[22,23],[15,17],[-16,31],[73,81],[34,39]],[[35488,47430],[42,-22],[62,-33],[90,-135]],[[35682,47240],[22,-21],[31,-29]],[[35735,47190],[13,-5],[22,-8],[33,-45],[-5,-113]],[[35798,47019],[-3,-57],[-61,-99],[0,0],[24,-27],[0,0],[51,71],[35,48],[35,14],[51,-53],[10,-31],[17,-53],[-8,-15],[-20,-41],[-58,14]],[[35871,46790],[-38,-73]],[[35833,46717],[-7,-15]],[[35826,46702],[-150,-493]],[[35676,46209],[4,-25],[5,-28],[23,3],[2,0],[0,0],[159,195]],[[35869,46354],[67,201],[51,153],[114,61],[19,10],[11,1],[38,3],[0,0],[-7,-55],[-8,-52],[-22,-23],[-72,-75]],[[36060,46578],[-87,-54],[0,0],[80,-53],[21,10],[31,36],[36,43],[0,0],[118,75],[40,12],[175,53],[34,-6],[47,-7],[25,67]],[[36580,46754],[-57,44],[0,0],[32,34],[113,-21],[43,-8],[482,-232],[126,-60]],[[37319,46511],[0,0],[67,-3]],[[37386,46508],[73,40],[0,0],[295,-114]],[[37754,46434],[174,-5],[538,83]],[[38466,46512],[172,-19]],[[38638,46493],[147,-17],[509,-297],[24,-17],[474,-340]],[[39792,45822],[197,-239]],[[39989,45583],[222,-215]],[[40211,45368],[39,-38],[0,0]],[[40250,45330],[298,-220]],[[40548,45110],[280,-136]],[[40828,44974],[123,-33],[42,-11],[276,-2],[15,0]],[[41284,44928],[112,26],[228,-53]],[[41624,44901],[69,-25],[30,-28],[12,-11],[35,-73]],[[41770,44764],[91,-187],[61,-268],[39,-169],[59,-203]],[[42020,43937],[98,-339],[18,-218],[-32,-440]],[[42104,42940],[-4,-55],[-11,-40],[-48,-181],[-124,-336]],[[41917,42328],[-21,-86],[-140,-223],[-482,-592],[-40,-43],[-211,-228]],[[41023,41156],[-219,-142]],[[40804,41014],[-50,-59],[-53,-75]],[[40701,40880],[-1,-1],[0,0],[-27,-44]],[[40673,40835],[-232,-380],[-158,-358],[-205,-332],[-218,-269],[-103,-61],[-10,1],[-26,3],[0,0],[7,17],[29,79]],[[39757,39535],[-14,92],[-28,25],[-69,61]],[[39646,39713],[-38,-7]],[[39608,39706],[-20,-41],[-3,-6],[-1,-6]],[[39584,39653],[-21,-76],[4,-77],[2,-48],[-87,-338],[-82,-204],[-30,-73]],[[39370,38837],[0,-13],[1,-20]],[[39371,38804],[37,-28],[20,-16],[0,0],[21,5],[0,0],[-36,-234]],[[39413,38531],[-35,-232]],[[39378,38299],[66,-608]],[[39444,37691],[1,-4],[4,-30],[25,-96],[-133,-683],[-59,-303],[-6,-89],[-1,-22],[22,-171]],[[39297,36293],[-109,-236],[-38,-25],[-31,-21],[-97,-159],[-33,-97],[-36,-106]],[[38953,35649],[-18,-219]],[[38935,35430],[15,-137],[23,-204],[-42,-164],[-270,-373]],[[38661,34552],[-56,-135],[-104,-251],[0,0],[-20,-16],[-139,-111],[-83,-108],[-7,-8],[-77,-162],[-94,-199]],[[38081,33562],[0,0],[12,-56]],[[38093,33506],[48,-227],[-8,-67],[-82,-50],[-72,-45],[-172,-54],[-60,-19],[-111,-70]],[[37636,32974],[-32,-32],[-110,-112],[0,0],[-16,-60],[0,0],[5,-9]],[[37483,32761],[45,-73],[-99,-123],[-4,-6],[0,0],[-140,0],[-513,-3],[0,0],[-17,37],[60,124]],[[36815,32717],[-1,16],[0,9],[0,0],[-25,7],[-9,2],[0,0],[-44,-18],[-40,-16],[-21,-24],[-26,-30],[4,-4],[15,-13]],[[36668,32646],[45,3],[24,-84],[0,-2],[-33,-27],[-9,-2],[-232,-48],[-152,-11]],[[36311,32475],[-78,-5],[0,0],[35,23]],[[36268,32493],[0,0],[75,0]],[[36343,32493],[128,0],[0,0],[-84,47],[-92,50]],[[36295,32590],[-154,-42],[-109,8]],[[36032,32556],[-40,3],[-21,22],[-217,-97]],[[35754,32484],[-22,-117]],[[35732,32367],[94,-2],[0,0],[12,-19],[13,-21],[-4,-5],[-19,-22],[-115,-26],[0,0],[-14,2],[-79,13]],[[35620,32287],[-525,-293],[-123,1]],[[34972,31995],[-34,1],[-42,-19],[-83,-37],[-232,-127]],[[34581,31813],[-435,-315]],[[34146,31498],[-252,-181]],[[33894,31317],[-228,-251],[-183,-140]],[[33483,30926],[-94,37]],[[33389,30963],[-53,20]],[[33336,30983],[-24,-77]],[[33312,30906],[-1,-1],[0,0]],[[33311,30905],[-185,-19]],[[33126,30886],[0,0],[1,-4],[30,-82],[6,-2],[58,-16],[49,-43]],[[33270,30739],[54,-46],[-117,-282]],[[33207,30411],[-102,-103],[-2,-60],[0,0],[39,-25]],[[33142,30223],[32,-21],[0,0],[-18,-221]],[[33156,29981],[104,-345],[-31,-114]],[[33229,29522],[-16,-58]],[[33213,29464],[-8,-274]],[[33205,29190],[13,-62],[-109,-394],[-59,-90],[-66,-38],[-87,-50]],[[32897,28556],[-82,-66],[-88,-70]],[[32727,28420],[-143,-154]],[[32584,28266],[-163,-217]],[[32421,28049],[-70,-125]],[[32351,27924],[-89,-159]],[[32262,27765],[-94,-245]],[[32168,27520],[-62,-162],[-152,-232],[-107,-162],[-68,-85],[-51,-63],[-259,-248],[0,0],[-478,-351],[0,0],[-23,170],[0,0],[102,10]],[[31070,26397],[42,16],[99,39]],[[31211,26452],[209,177],[143,163]],[[31563,26792],[309,460]],[[31872,27252],[71,106],[7,42],[15,92],[-25,34],[-18,24],[0,0],[-28,-4],[-9,-1],[-118,-75],[-12,-9],[0,0]],[[31755,27461],[-120,-27],[-67,80],[-82,-36]],[[31486,27478],[-7,-3],[0,0],[-1,-25],[-7,-168]],[[31471,27282],[-99,-298],[-10,-29]],[[31362,26955],[-165,-155],[-61,-39],[-119,-78]],[[31017,26683],[-87,-172],[-80,-254],[38,-56]],[[30888,26201],[27,-40],[0,0],[-237,-494],[-70,-146],[-89,-114],[-386,-314]],[[30133,25093],[-262,-423],[-30,-27],[-211,-185],[-349,-145],[-129,-53],[-12,-3],[-22,-5],[-67,20],[-161,48],[-65,47],[0,0],[-199,15],[-175,-59],[-61,10],[-187,29],[-65,25],[-10,4],[-222,43],[-99,81],[-66,53],[-215,21],[-149,14],[-154,34],[-17,4],[0,0],[-328,326],[-13,233],[47,270],[39,58],[78,-2],[44,31],[13,21],[6,11],[5,14],[11,28],[8,38],[0,0],[-59,-79]],[[23044,10571],[10,-8],[120,3],[214,5],[0,0],[-18,-19],[-24,-24],[-241,0],[-106,-34],[-153,-48],[-27,3],[0,0],[-45,47],[46,40],[93,12],[77,9],[25,-9],[16,-6],[0,0],[13,29],[0,0]],[[20287,12003],[21,-22],[116,-117],[41,-61],[38,-56],[0,0],[-18,1],[-40,2],[-71,-57],[-36,-29],[-14,-43],[6,-11],[14,-24],[48,-26],[92,-14],[7,-1],[159,-118],[332,-306],[22,-14],[108,-68],[500,-245],[500,-178],[0,0],[434,-2],[0,0],[-68,-82],[0,0],[-203,-110],[-406,-33],[-362,6],[-18,10],[-29,16],[-118,16],[-307,30],[-375,26],[-89,6],[-61,-6],[-149,-12],[-42,-14],[-33,-12]],[[20286,10455],[-75,-18],[-87,-23],[-115,-4],[-403,99],[-175,-12],[-100,-7],[-349,26],[-148,31],[-51,94],[-2,4],[-274,23],[-79,-34],[-27,-12],[-68,18],[-75,19],[-81,-8],[-80,55],[-18,13],[19,11],[14,9],[43,-12],[62,-16],[76,-6],[100,-8],[-10,51],[0,0],[55,25],[43,20],[309,17],[176,-18],[267,-109],[15,16],[18,19],[-193,113],[-119,34],[-71,21],[-69,40],[0,0],[-16,49],[-4,11],[310,-112],[361,-80],[84,68],[0,0],[208,-39],[30,-13],[106,-44],[-4,-55],[139,31],[0,0],[-41,48],[-443,149],[-187,62],[-88,188],[3,41],[0,1],[24,22],[339,91],[179,73],[8,24],[5,15],[-26,53],[0,0],[-77,9],[-72,9],[-39,-5],[-187,-24],[-187,-62],[-39,20],[-111,58],[0,0],[3,58],[8,153],[27,45],[78,44],[148,82],[301,125],[157,10],[351,22],[125,-50]],[[24689,60326],[38,-31],[19,-14],[21,-22],[1,-1],[0,0],[0,-1],[-2,-8],[-2,-4],[0,-1],[0,0],[-3,-3],[-3,-3],[0,0],[-3,-2],[-1,-1],[-6,-3],[-18,-8],[-25,-8],[-30,4],[-8,1],[-5,1],[-16,4],[-17,5],[-1,1],[0,0],[-1,0],[-1,1],[0,1],[-1,2],[-1,2],[-1,2],[0,0],[0,1],[0,0],[0,1],[0,1],[0,1],[-1,4],[-1,14],[0,20],[8,14],[5,8],[19,23],[1,1],[5,4],[0,0],[3,2],[2,1],[25,-9]],[[24687,60702],[1,-1],[1,-1],[3,-3],[2,-2],[12,-14],[5,-6],[6,-8],[4,-6],[1,-1],[0,0],[2,-6],[0,-1],[1,-1],[0,-1],[0,-1],[3,-16],[0,-1],[0,-10],[-1,-27],[0,0],[-7,-1],[-10,1],[-2,1],[-4,1],[-33,23],[-24,17],[-7,45],[12,9],[35,10],[0,0]],[[14245,65751],[32,-97],[2,-4],[3,-6],[2,-4],[2,-3],[1,-1],[2,1],[0,0],[1,0],[73,-71],[1,-2],[4,-5],[1,-1],[1,0],[1,-2],[1,-2],[2,-6],[1,-2],[1,-2],[1,-1],[3,-18],[2,-9],[4,-46],[4,-50],[-5,-10],[-24,-46],[-53,-13],[0,0],[-1,-9],[-1,-11],[-18,-18],[0,0],[-4,-3],[-14,-12],[-1,0],[-14,-8],[-1,0],[-44,-18],[-9,-4],[-24,13],[0,0],[0,0],[-20,16],[-141,107],[-38,124],[0,0],[27,32],[14,17],[54,66],[28,55],[3,20],[6,33]],[[17418,63074],[-51,-75],[-14,-19],[-3,-5],[-13,-15],[-127,-16],[-55,-6],[-132,-14],[0,0],[-1,1],[-7,1],[-2,1],[-1,0],[-3,3],[0,1],[-1,1],[-1,0],[-4,11],[0,0],[-2,10],[-8,31],[35,66],[12,8],[85,50],[59,15],[12,-6],[21,-10],[2,-2],[0,0],[4,-7],[1,-1],[0,0],[1,-1],[3,-4],[2,-2],[3,-2],[1,-1],[36,-12],[1,0],[0,0],[2,-1],[1,0],[6,1],[46,17],[1,0],[4,2],[3,2],[2,1],[3,1],[6,3],[1,0],[1,1],[0,0],[2,1],[5,2],[0,1],[4,4],[2,2],[0,1],[14,28],[29,59],[0,0],[1,0],[0,1],[0,0],[1,1],[1,1],[2,1],[7,3],[6,3],[3,1],[0,0],[1,0],[2,1],[6,1],[1,0],[1,0],[1,0],[1,0],[0,0],[1,0],[0,0],[1,-1],[1,0],[1,-1],[0,0],[1,-1],[0,-1],[0,-1],[2,-5],[1,-1],[0,-1],[0,0],[0,-3],[1,-2],[0,0],[0,-2],[-1,-16],[-1,-15],[-3,-21],[-3,-18],[0,0],[0,-1],[0,0],[0,-1],[-2,-9],[-2,-3],[0,-2],[-16,-34]],[[17460,63362],[31,-26],[0,-27],[-59,-21],[-16,0],[0,0],[-6,15],[-8,23],[3,4],[11,12],[23,15],[6,3],[8,4],[1,0],[1,1],[0,0],[1,0],[0,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1]],[[17395,63976],[0,0],[127,-25],[32,-10],[18,-8],[38,-18],[5,-4],[5,-3],[2,-5],[-3,-13],[-5,-6],[-16,-11],[-3,-2],[-4,-1],[0,0],[-1,0],[0,1],[-14,9],[-2,1],[0,1],[-1,0],[-11,11],[-9,9],[-2,2],[-1,1],[-1,0],[-1,1],[-1,2],[-11,9],[-1,2],[0,0],[-1,0],[0,0],[-4,3],[-1,0],[-2,1],[-11,1],[-1,0],[0,1],[0,0],[0,0],[-59,2],[-24,-3],[-29,-10],[-36,16],[-12,9],[-7,4],[0,0],[4,9],[14,39],[0,0],[29,-15]],[[16563,64048],[-3,-2],[0,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,0],[-1,2],[0,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[2,8],[1,4],[0,1],[5,7],[1,1],[51,53],[1,1],[1,0],[0,1],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-3],[-2,-4],[0,-1],[-1,-1],[-3,-6],[0,0],[-1,-2],[-21,-32],[-11,-15],[-16,-22]],[[16890,64163],[12,-105],[-2,-6],[0,-2],[-2,-5],[-8,-18],[-12,-24],[-61,-84],[-6,-7],[-5,-4],[-1,-1],[-6,-5],[-110,-66],[-23,-1],[-45,-1],[0,0],[95,72],[125,92],[-3,45],[-3,43],[-21,56],[0,0],[38,26],[22,6],[8,3],[0,0],[0,-1],[8,-13]],[[16633,64243],[120,-53],[26,-11],[13,-7],[0,0],[-40,-33],[-56,5],[-19,3],[-49,8],[-14,8],[-30,62],[-3,9],[-6,19],[1,1],[0,0],[3,2],[1,0],[2,1],[4,0],[0,0],[1,0],[3,0],[20,-2],[11,-6],[12,-6]],[[17005,64440],[12,-5],[0,0],[5,-3],[-2,-2],[-32,-8],[-11,-3],[-8,-1],[-3,0],[-14,0],[-1,0],[0,0],[-3,0],[0,0],[-30,16],[0,1],[0,1],[7,1],[6,2],[19,1],[48,0],[7,0],[0,0]],[[15762,64681],[26,-8],[0,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,0],[1,0],[15,-9],[3,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,0],[1,-1],[5,-6],[2,-3],[0,0],[0,-1],[0,0],[-1,-1],[0,0],[-1,0],[-27,7],[-35,10],[-15,8],[0,0],[-8,10],[-1,5],[0,0],[1,1],[0,1],[1,0],[0,1],[1,1],[0,0],[1,0],[0,0],[18,-7],[4,-2]],[[15946,64844],[0,0],[1,-1],[6,-6],[1,-1],[3,-3],[4,-3],[16,-20],[37,-62],[194,-324],[15,-17],[4,-5],[16,-21],[10,-17],[9,-43],[2,-16],[0,0],[0,-1],[2,-6],[2,-17],[0,-1],[-1,-3],[0,0],[-1,-1],[-1,-2],[-1,-1],[0,0],[-14,-8],[0,0],[-78,108],[-102,141],[-26,125],[-50,85],[-35,65],[-16,30],[-1,8],[-3,14],[0,0],[1,0],[2,2],[2,2],[1,-1],[1,0]],[[15525,64837],[97,-87],[10,-9],[0,0],[-13,-13],[-124,55],[6,18],[3,8],[21,28],[0,0]],[[16275,64865],[9,-2],[1,0],[1,-1],[3,-1],[1,-1],[0,0],[0,0],[1,-1],[1,-3],[1,-4],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-3,-12],[-3,-11],[-13,-7],[-2,-1],[0,0],[-10,-2],[-71,7],[-1,1],[0,1],[0,0],[-2,4],[-2,7],[0,1],[0,2],[1,1],[0,0],[0,0],[0,0],[1,2],[8,3],[6,3],[4,2],[5,2],[3,1],[3,2],[16,4],[8,2],[23,6],[9,1],[0,0]],[[15486,64839],[0,0],[0,0],[-5,-2],[-1,0],[-1,-1],[-7,-2],[-1,-1],[-1,1],[0,0],[-3,1],[-1,4],[0,1],[0,8],[1,11],[4,5],[2,3],[0,0],[12,-14],[1,-6],[2,-6],[-1,0],[-1,-2]],[[14412,64840],[-2,0],[0,0],[-11,5],[6,28],[0,0],[0,0],[2,-1],[1,0],[0,-1],[1,0],[8,-7],[5,-4],[0,0],[-4,-11],[-1,-3],[-5,-6]],[[14502,64934],[-44,-50],[0,0],[-9,-1],[0,0],[-15,8],[-14,7],[5,1],[9,2],[7,6],[0,0],[0,1],[0,3],[-2,5],[0,0],[19,11],[19,8],[9,3],[5,1],[3,0],[8,-5]],[[15300,65044],[-13,17],[0,1],[-40,54],[0,0],[15,-1],[6,0],[0,0],[21,-41],[11,-21],[1,-1],[0,-2],[2,-2],[1,-4],[0,0],[-4,0]],[[16513,65145],[4,-10],[1,-2],[1,-4],[8,-28],[-4,-9],[-5,-12],[-24,-47],[-2,-5],[0,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-16,1],[-1,0],[0,0],[-21,0],[-4,6],[10,69],[4,18],[0,1],[0,0],[0,1],[1,1],[1,3],[1,1],[0,0],[1,2],[1,1],[4,5],[0,1],[1,1],[6,6],[1,0],[1,0],[2,1],[16,3],[11,3],[2,0],[1,0],[2,-2],[2,-3]],[[14474,65207],[1,0],[0,0],[4,-3],[1,-1],[1,-1],[0,-1],[20,-50],[10,-25],[21,-114],[2,-12],[1,-8],[-2,-30],[-3,-9],[-3,-9],[-1,-4],[-2,-6],[-4,-3],[-4,2],[-3,1],[-9,7],[-3,2],[-2,2],[0,2],[0,4],[0,1],[0,1],[0,1],[0,0],[0,0],[-1,2],[0,0],[-1,0],[-11,2],[-43,-21],[0,0],[-32,26],[-11,113],[35,75],[22,45],[4,5],[3,3],[8,3],[0,0],[1,0],[1,0],[0,0]],[[14333,65241],[0,0],[0,0],[1,-1],[2,-2],[1,0],[2,-1],[0,0],[0,0],[2,-2],[2,-1],[1,-2],[0,-1],[0,0],[-1,-2],[-1,-2],[-44,-45],[0,0],[-22,-8],[-28,-9],[-1,0],[-1,0],[-5,0],[-1,0],[-1,1],[-5,6],[-3,4],[0,0],[0,0],[0,1],[-6,9],[0,0],[-1,3],[0,1],[-1,2],[1,2],[0,0],[1,2],[0,0],[1,0],[1,1],[1,0],[2,-1],[1,0],[2,-1],[36,4],[15,3],[1,1],[1,0],[1,1],[0,1],[1,2],[2,18],[0,0],[25,14],[3,1],[4,0],[11,1]],[[15181,65230],[11,-9],[2,-1],[2,-3],[8,-8],[1,-3],[2,-1],[0,-4],[1,0],[0,0],[-1,-2],[0,0],[-1,0],[-1,0],[-7,2],[-1,0],[-8,3],[-5,7],[-19,23],[1,2],[0,1],[0,1],[1,4],[0,2],[0,0],[1,0],[0,0],[1,0],[1,0],[1,0],[0,0],[1,-1],[9,-13]],[[14254,65253],[4,-2],[7,-3],[1,-1],[0,0],[6,-3],[-8,-26],[-2,-3],[-2,-1],[0,0],[-1,-2],[-6,-4],[-11,-2],[-10,-1],[-7,1],[-22,16],[-3,3],[0,0],[8,4],[1,0],[0,0],[3,1],[0,0],[4,2],[29,15],[2,2],[6,3],[0,1],[1,0],[0,0]],[[14242,65258],[1,0],[0,0],[0,-1],[0,0],[0,-1],[0,0],[-1,-1],[0,-1],[-8,-9],[-2,0],[0,-1],[-1,0],[0,0],[-26,-14],[-5,-1],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[0,1],[-6,6],[-1,1],[0,1],[-2,4],[-1,2],[1,3],[0,0],[0,1],[54,10]],[[14424,65146],[-21,-44],[0,0],[-46,-26],[-67,78],[71,76],[0,0],[42,26],[0,0],[1,1],[1,0],[0,0],[1,1],[7,3],[1,0],[15,6],[1,1],[1,-1],[0,-1],[2,-3],[1,0],[0,0],[0,0],[2,-8],[-7,-64],[-5,-45]],[[14331,65301],[3,-2],[-2,-5],[-4,-7],[0,0],[0,0],[-1,-1],[-1,0],[0,-1],[-18,-8],[-4,1],[0,0],[0,0],[0,1],[-2,1],[-1,3],[-3,6],[-1,6],[0,2],[1,2],[0,0],[0,1],[0,0],[1,0],[0,0],[1,1],[1,0],[15,0],[6,1],[5,-1],[4,0]],[[14316,65322],[-1,-1],[0,0],[-3,0],[-2,-1],[-9,-4],[0,-1],[-1,0],[-4,-3],[-2,-1],[0,0],[0,-1],[0,-1],[1,-4],[0,-3],[-2,-3],[-2,-1],[-1,-1],[-16,-9],[-13,-5],[-1,0],[-1,0],[-2,0],[-3,1],[0,0],[-1,0],[0,1],[0,0],[0,2],[0,1],[6,3],[18,9],[21,17],[1,1],[15,6],[0,0],[1,-1],[1,-1]],[[14395,65298],[-8,-2],[-13,-4],[-7,15],[9,16],[6,10],[0,0],[13,2],[0,-37],[0,0]],[[13939,65523],[6,0],[0,0],[1,-12],[0,-1],[0,0],[-1,-1],[0,0],[-2,-1],[-16,-6],[0,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,1],[0,0],[-1,0],[0,0],[-1,0],[0,1],[-1,0],[-2,2],[0,0],[-1,1],[0,1],[-1,2],[0,0],[2,7],[0,0],[1,0],[0,1],[14,3],[3,1],[0,0],[1,0],[8,1]],[[15723,65529],[3,-2],[14,-14],[138,-203],[42,-62],[11,-18],[18,-29],[0,-2],[1,-1],[0,-1],[0,0],[11,-25],[2,-6],[1,-2],[0,-2],[2,-5],[0,-1],[0,-2],[1,-1],[0,0],[0,0],[-1,0],[-1,-1],[-1,0],[-48,-6],[-58,-8],[-20,4],[0,0],[-2,1],[-1,0],[0,0],[-1,1],[-6,3],[-1,1],[-1,0],[-13,12],[0,0],[0,1],[-1,2],[0,1],[1,0],[0,1],[0,0],[1,1],[0,0],[0,0],[8,4],[32,15],[14,6],[0,0],[-18,89],[-107,184],[-2,3],[-1,2],[-1,1],[0,1],[-1,0],[-11,11],[-2,3],[0,0],[0,0],[-3,2],[-24,16],[-10,1],[-3,1],[-2,0],[-4,5],[-5,7],[-1,9],[23,13],[6,0],[5,-2],[9,-4],[2,0],[1,-1],[1,0],[0,0],[1,-1],[0,0],[2,-1],[0,-1]],[[14653,65751],[-28,-9],[-16,-3],[-7,-2],[-1,0],[-18,-1],[-16,1],[-14,0],[-44,12],[-2,2]],[[15433,65751],[-20,-121],[-21,-82],[0,0],[-24,3],[0,0],[-20,34],[-2,18],[0,0],[45,70],[25,78]],[[7550,61243],[-7,-11],[-38,-56],[0,0],[169,-16],[0,0],[-12,-247],[-35,-106],[-14,-42],[-27,-190],[-21,-152],[43,-221],[0,0],[-25,-87],[-43,-152],[-103,-203],[-30,-32],[-27,-29],[0,0],[-27,4],[-24,3],[-58,-43],[-118,-174],[-4,-21],[-3,-22],[66,-15],[29,-6],[76,4],[96,6],[52,-17],[20,-6],[37,-25],[83,-56],[83,-12],[0,0],[113,110],[122,31],[135,-42],[79,-25],[371,-33],[249,15],[285,78],[722,26],[227,-61],[79,-22],[694,-465],[121,-105],[-52,-21],[-11,-32],[-39,-103],[45,-192],[-157,-466],[-45,-256],[-9,-118],[-1,-11],[6,-70],[34,-460],[-24,-53],[-11,-23],[-43,-15],[-25,-77],[-31,-188],[-10,-206],[-4,-83],[-86,-132],[3,-62],[2,-28],[37,-122],[46,-76],[0,0],[15,-6],[30,-13],[0,0],[3,-7],[108,-272],[68,-115],[12,-20],[367,-440],[154,-86],[68,-59],[55,-49],[10,-145],[69,-125],[116,-68],[94,4],[74,4],[125,-30],[73,-69],[8,-1],[121,-12],[114,23],[98,20],[359,207],[112,48],[132,57],[68,-60],[57,-50],[102,-18],[0,0],[24,-29],[51,-61],[11,-51],[-55,-4],[-40,-3],[0,0],[-14,-24],[-24,-42],[4,-50],[5,-75],[-275,-196],[-7,-4],[-34,-17],[-60,-2],[-14,0],[0,0],[-26,-210],[219,-247],[28,-65],[12,-27],[0,0],[-16,-38],[-270,-147],[-115,-14],[-62,-8],[-42,3],[-73,5],[-26,29],[-4,3],[-58,314],[-22,114],[0,0],[-35,24],[-13,-7],[-43,-25],[-1,-76],[0,-54],[0,0],[-186,48],[-78,142],[-89,163],[-98,-7],[-103,20],[-35,6],[-56,18],[-3,25],[-14,10],[-35,28],[-189,-7],[-48,-2],[-41,-49],[-122,-148],[0,0],[-175,405],[0,0],[-113,76],[0,0],[-6,-1],[-61,-7],[-17,-20],[52,-72],[65,-37],[11,-104],[-17,-5],[-11,3],[-143,41],[-87,72],[-32,26],[0,0],[6,52],[1,9],[0,0],[47,43],[14,39],[9,27],[-15,122],[-4,30],[0,0],[-205,183],[-187,108],[-40,10],[-78,20],[0,0],[-138,154],[-28,70],[-27,67],[-311,198],[-28,17],[11,-91],[2,-13],[59,-70],[0,0],[36,-18],[74,-20],[49,-86],[0,0],[-123,-141],[-39,-18],[-12,10],[-251,191],[-73,25],[0,0],[-64,103],[-20,32],[-47,166],[77,129],[35,378],[-533,491],[-50,82],[-106,171],[-182,164],[-311,279],[29,109],[0,0],[109,25],[0,0],[-44,74],[-6,10],[1,44],[3,152],[0,0],[-57,12],[-68,-32],[-112,-5],[-45,36],[-16,27],[0,0],[-19,-36],[0,-21],[31,-31],[22,-22],[-83,-71],[-48,-15],[-171,8],[-177,9],[-180,41],[-311,161],[-41,4],[-90,9],[-244,82],[-27,14],[-145,74],[-144,57],[-154,62],[-305,-1],[-152,25],[-4,0],[-2,1],[-146,63],[-81,53],[-67,43],[-300,245],[-475,505],[-320,296],[-100,72],[-145,104],[-249,109],[-89,29],[-75,24],[-51,6],[-101,14],[-284,-26],[-159,-89],[-125,-70],[-136,-50],[-189,-69],[-80,-45],[-28,-15],[-149,-18],[-255,69],[-208,114],[-212,31],[-103,28],[-131,35],[-307,142],[-113,67],[-56,34],[-63,70],[-301,80],[-134,21],[-123,19],[-72,41],[-102,58],[-85,34]],[[1598,65751],[-97,-342],[-24,-233],[-14,-130],[-3,-112],[-14,-496],[-41,-231],[-18,-103],[-2,-110],[72,-287],[0,0],[18,-27],[126,-193],[126,-496],[86,-215],[473,-582],[0,0],[34,-116],[58,-198],[16,-32],[29,-55],[226,-292],[165,-85],[0,0],[183,-18],[182,-48],[113,-59],[11,-6],[9,-4],[58,-32],[69,-119],[52,-89],[30,-12],[48,-19],[132,26],[77,14],[239,81],[193,36],[240,46],[293,116],[59,12],[48,10],[154,18],[174,21],[0,0],[11,-9],[34,-27],[98,25],[41,10],[190,117],[193,120],[28,24],[213,180],[164,383],[19,44],[0,0],[-4,45],[-12,130],[-1,3],[-1,1],[0,0],[43,417],[3,11],[28,92],[22,27],[18,22],[71,44],[65,41],[174,68],[335,63],[392,73],[233,73],[303,14],[260,-65],[144,-36],[78,26],[7,2],[0,26],[-1,40],[19,16],[32,-27],[66,-57],[117,-238],[-72,-177],[-4,-9],[0,0],[-30,-36],[-117,-145],[-101,-82],[-65,-102],[-44,-70],[-35,-103],[0,0],[26,-114],[-23,-45],[-14,-26],[-87,-71],[-73,-30],[1,-28],[1,-26],[55,-73],[40,-53],[-29,-23],[-29,-115],[0,0],[86,-62],[-57,-166],[-61,-178],[-26,-104],[-49,-194],[-6,-4],[-2,6],[-120,465],[-1,1],[0,0],[-3,-4],[-66,-78],[-41,-84],[-43,-89],[-21,-6]],[[23821,60943],[69,49],[1,0],[11,-49],[-20,-33],[0,0],[-61,33]],[[32503,48354],[-83,25],[0,0],[52,69],[92,56],[38,1],[65,-16]],[[32667,48489],[39,-10],[11,-11],[21,-20],[-1,-10],[-1,-11],[-16,-17],[-36,-39],[-27,-11],[-15,-6],[-139,0]],[[32421,48492],[-117,-63],[-6,19]],[[32298,48448],[-8,6],[-8,6],[-27,12],[-54,5],[-26,3],[0,0],[-19,127],[0,0]],[[32156,48607],[374,89],[0,0],[34,-32],[1,-16],[0,-15],[-144,-141]],[[32075,48612],[-55,-43],[0,0],[-55,35]],[[31965,48604],[74,182]],[[32039,48786],[61,6],[0,0],[6,-64],[8,-84],[-39,-32]],[[32283,48852],[0,0],[-1,-27],[0,-13],[-59,-71]],[[32223,48741],[-66,-51],[-4,-4],[-30,-2],[0,0],[-3,35],[-5,70],[11,38],[10,36],[147,-11]],[[32132,49790],[-52,-34],[-43,-28],[-63,122],[16,74],[78,40],[0,0],[24,-26],[40,-148]],[[26107,57671],[0,0],[1,0],[3,-2],[0,0],[1,0],[2,-2],[1,-1],[106,-113],[1,-4],[1,-2],[0,-1],[0,0],[-1,-4],[0,-1],[0,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,0],[-1,-1],[-2,-4],[-2,-3],[-2,-3],[0,-1],[-8,-13],[0,0],[-10,-9],[-22,-21],[-2,0],[-1,0],[-5,-2],[0,0],[-1,0],[-1,0],[-1,0],[0,0],[-2,-1],[-5,0],[-20,9],[-27,12],[-2,2],[-5,4],[-8,9],[0,1],[0,0],[-1,2],[-9,34],[-5,76],[-2,14],[1,15],[2,4],[1,4],[0,1],[0,0],[1,0],[3,5],[3,3],[1,1],[1,1],[0,0],[0,0],[4,2],[2,0],[5,0],[4,0],[0,0],[1,0],[1,0],[1,-1],[1,0]],[[20460,10382],[16,-22],[0,0],[-4,-10],[-7,-19],[-159,-54],[-10,-3],[-100,12],[-169,76],[-6,-15],[-4,-9],[0,0],[137,-68],[17,-4],[48,-4],[133,-9],[46,-24],[93,-49],[0,0],[-7,-10],[-21,-29],[0,0],[87,-70],[65,-52],[22,-14],[62,-36],[0,0],[-14,-52],[-37,-32],[-42,11],[-72,114],[-71,36],[-143,11],[-122,10],[0,0],[-9,-22],[-1,-4],[0,0],[-50,46],[-31,29],[20,69],[13,48],[0,0],[-146,14],[-108,11],[-52,-14],[-95,-26],[0,0],[99,-106],[48,-51],[0,0],[-2,-1],[-40,-19],[-213,110],[-34,44],[0,0],[2,6],[5,17],[0,0],[-114,21],[-7,1],[-1,8],[-1,13],[89,57],[39,26],[0,0],[670,82],[115,-1],[0,0],[66,-43]],[[21300,10284],[0,0],[-112,-114],[-132,5],[0,0],[-7,7],[-17,17],[-191,22],[-128,15],[-38,-11],[-22,-7],[0,0],[-18,3],[-36,6],[-22,23],[-34,118],[-18,66],[0,0],[113,14],[96,-4],[440,-20],[42,-26],[11,-7],[35,-38],[31,-35],[7,-34]],[[19945,10403],[0,0],[-456,-55],[-35,3],[-28,46],[-2,3],[0,0],[10,56],[162,21],[301,-50],[41,-20],[7,-4]],[[18584,11025],[10,-37],[9,-29],[0,0],[85,69],[39,-10],[6,-2],[2,-2],[15,-12],[9,-59],[4,-29],[-7,-24],[-4,-15],[-49,-46],[-14,-5],[-47,-17],[-38,16],[-75,31],[-39,43],[-34,37],[-98,70],[-12,16],[-1,2],[-15,53],[18,28],[33,4],[203,-82]],[[18153,11174],[167,-79],[-6,-11],[-42,-79],[-112,53],[0,0],[-1,-1],[-24,-12],[0,0],[84,-99],[47,-56],[0,0],[-83,-52],[-34,4],[-31,4],[0,0],[61,68],[-160,63],[0,0],[-68,69],[-24,57],[17,28],[0,0],[103,-35],[65,48],[41,30],[0,0]],[[19085,11368],[53,-208],[16,-63],[0,0],[-103,8],[-75,5],[0,0],[60,-159],[18,-47],[0,0],[-211,86],[-10,45],[-11,55],[0,0],[115,89],[107,195],[0,0],[5,0],[20,2],[14,-7],[2,-1],[0,0]],[[17489,11386],[0,0],[42,-76],[248,-18],[5,-39],[0,0],[38,17],[7,4],[140,-98],[0,0],[-84,-71],[-82,-69],[-193,-34],[-201,18],[0,0],[60,17],[76,21],[0,0],[5,7],[52,76],[0,0],[-5,5],[-23,28],[-155,32],[0,0],[-39,-87],[0,0],[28,-22],[20,-16],[-15,-21],[-33,-13],[-116,34],[0,0],[-1,59],[0,57],[14,36],[17,41],[0,0],[-139,-11],[-68,-5],[0,0],[10,49],[9,45],[48,18],[0,0],[107,-39],[94,57],[19,12],[0,0],[-16,25],[-27,43],[0,0],[25,13],[37,20],[0,0],[0,-1],[30,-16],[47,-43],[24,-22],[-2,-13],[-3,-20]],[[16836,11752],[244,-82],[138,-46],[161,-103],[0,0],[-46,-14],[-70,19],[-94,26],[-278,158],[0,0],[-94,-8],[-155,18],[-60,7],[0,0],[-116,67],[-124,107],[-25,21],[41,21],[9,4],[2,-1],[170,-95],[0,0],[-5,-30],[0,0],[116,-27],[186,-42]],[[18415,12012],[0,0],[17,-16],[31,-28],[17,-63],[-12,-26],[-229,-89],[-100,-39],[-155,-14],[-54,-5],[-2,1],[-60,11],[-109,-32],[-11,-3],[0,0],[117,-9],[22,-10],[56,-25],[12,-27],[3,-6],[0,0],[-90,-12],[-118,-15],[16,-117],[25,-29],[38,-42],[-8,-29],[-79,2],[-466,262],[0,0],[45,-4],[220,-21],[0,0],[14,38],[-119,206],[0,0],[90,21],[142,-22],[31,-5],[0,0],[77,16],[26,6],[0,0],[62,33],[151,80],[219,-24],[142,28],[39,8]],[[15983,13391],[-9,-76],[-3,-25],[0,0],[-77,5],[-40,42],[0,0],[-15,55],[30,70],[0,0],[-12,17],[36,37],[3,3],[134,-18],[86,-12],[0,0],[-59,-43],[-74,-55]],[[16663,13347],[-7,-59],[0,0],[-13,29],[-39,-32],[-94,31],[-44,29],[-23,46],[-8,15],[63,29],[74,33],[0,0],[-185,27],[-15,2],[0,0],[83,54],[79,-40],[9,-9],[39,-37],[38,-56],[43,-62]],[[16197,13673],[-163,-117],[-38,-27],[0,0],[-14,7],[-29,15],[0,0],[0,64],[8,14],[24,47],[0,0],[54,-27],[28,11],[1,1],[5,51],[-9,17],[-117,21],[0,0],[-48,66],[0,0],[78,13],[0,0],[-5,-32],[0,-3],[221,-74],[1,-10],[3,-37]],[[15927,14116],[0,0],[42,-44],[85,-164],[-59,1],[-32,24],[-47,35],[0,31],[1,25],[-129,-77],[-7,135],[0,0],[21,14],[15,11],[74,-3],[0,0],[2,0],[10,-3],[20,13],[4,2]],[[16333,14759],[8,-4],[51,-27],[26,2],[21,1],[0,0],[32,-104],[36,-159],[0,0],[-14,-282],[-8,-9],[-6,-6],[0,0],[-2,-19],[-4,-50],[39,0],[35,-68],[6,-12],[0,0],[-37,-126],[-119,-100],[-109,20],[-44,37],[-1,1],[0,0],[29,80],[26,1],[0,0],[-13,36],[-7,19],[-24,4],[-29,5],[0,0],[-5,38],[-2,11],[11,60],[19,30],[32,51],[45,24],[33,19],[0,2],[5,37],[0,0],[-117,-39],[-62,-20],[-41,-175],[9,-32],[1,-4],[0,0],[32,28],[0,0],[1,-1],[23,-21],[-40,-80],[-40,4],[-59,6],[0,0],[-83,147],[0,0],[19,64],[-75,43],[5,51],[11,107],[126,-12],[90,-30],[74,-24],[55,180],[-91,118],[-7,30],[-17,84],[91,37],[65,27]],[[15950,14797],[-105,-60],[-12,-7],[0,0],[-62,16],[-15,4],[0,0],[49,25],[0,0],[-42,8],[-20,3],[-11,33],[-4,11],[6,38],[2,21],[22,24],[0,0],[20,2],[106,11],[46,-13],[20,-41],[0,-75]],[[16393,15002],[16,-163],[31,-32],[23,-24],[0,0],[-102,1],[-129,2],[0,0],[47,143],[35,-1],[20,-1],[0,0],[-50,116],[0,0],[48,90],[0,0],[30,-36],[1,-2],[0,0],[30,-93]],[[16231,14957],[-76,-51],[0,0],[-98,93],[3,16],[3,14],[-73,136],[0,0],[121,-8],[18,-1],[26,-11],[27,-13],[43,-28],[0,0],[7,-35],[1,-6],[0,0],[45,-12],[0,0],[-13,-46],[0,-1],[-34,-47]],[[16122,14805],[-86,-57],[-27,-18],[0,0],[-36,79],[3,106],[-38,41],[-56,15],[-37,10],[0,0],[-71,168],[20,18],[18,15],[104,35],[23,-20],[-3,-11],[-3,-12],[-13,-20],[0,-2],[0,0],[9,-35],[2,-10],[176,-240],[15,-62]],[[16675,15363],[0,0],[4,-1],[179,-49],[43,15],[38,-13],[2,-1],[-2,-4],[-18,-44],[-14,-5],[-11,-4],[-317,-4],[-89,36],[-12,4],[49,31],[55,34],[70,3],[23,2]],[[17027,16548],[-56,-84],[0,0],[-41,14],[-46,57],[-6,8],[-22,33],[-7,55],[-1,11],[0,0],[9,16],[25,41],[42,6],[21,3],[24,21],[21,18],[0,0],[23,-58],[-3,-70],[-2,-54],[1,-1],[18,-16]],[[16993,17127],[-19,-8],[-22,-9],[0,0],[-30,29],[-112,21],[-150,27],[0,0],[-5,31],[-4,27],[17,15],[21,19],[156,14],[101,9],[0,0],[58,-102],[-11,-73]],[[16890,17526],[-167,-62],[-81,-30],[-60,21],[-34,57],[-12,22],[8,29],[0,0],[186,19],[34,-1],[60,-3],[66,-52]],[[17513,17690],[-1,-2],[-1,-1],[0,0],[4,-2],[1,0],[0,2],[0,2],[7,0],[60,-6],[60,-57],[0,0],[-94,-123],[-25,-33],[-116,-87],[-98,-35],[-21,3],[-17,2],[-59,52],[-60,144],[23,33],[7,6],[12,9],[0,0],[7,-4],[10,-6],[132,5],[18,0],[0,0],[8,23],[-12,5],[-26,9],[32,74],[100,-9],[49,-4]],[[16877,19503],[-12,-25],[0,0],[100,15],[86,13],[68,-61],[35,-88],[-3,-24],[-3,-39],[-45,-115],[-13,-33],[-127,-73],[-16,-37],[-16,-37],[8,-40],[147,-104],[-20,-95],[-90,-142],[-19,-30],[3,-42],[-24,-59],[-13,-31],[-55,-48],[-2,-2],[0,0],[-45,10],[-197,44],[-70,31],[-15,7],[0,0],[-2,14],[-2,12],[154,242],[6,9],[18,116],[-32,200],[11,100],[85,140],[-5,101],[-3,53],[43,37],[1,1],[0,0],[15,4],[35,7],[0,0],[7,-16],[7,-15]],[[11804,64468],[90,-50],[24,-13],[233,84],[0,0],[-55,-40],[46,-42],[25,-23],[0,0],[37,-2],[0,0],[169,75],[367,-153],[14,-6],[0,0],[51,18],[81,-10],[40,-5],[202,-102],[48,-64],[72,-96],[92,-75],[77,-30],[0,0],[6,1],[164,12],[187,-18],[341,-174],[225,-173],[249,-150],[0,0],[57,-13],[-2,4],[-42,72],[-160,97],[0,0],[-6,12],[-3,4],[0,0],[6,6],[20,18],[0,0],[405,-288],[131,-75],[168,-96],[265,-100],[264,-3],[63,-38],[4,-5],[26,-40],[-32,-92],[-35,-99],[0,0],[91,1],[103,1],[226,-27],[157,-49],[100,-92],[61,-56],[160,-69],[59,-6],[33,-33],[2,-12],[4,-30],[-16,-18],[-48,-52],[-22,-8],[-21,-8],[-142,-12],[-213,-18],[-288,-100],[-130,1],[-71,25],[-77,26],[-251,17],[-28,2],[0,0],[-374,-28],[-605,-81],[-36,10],[-5,2],[0,0],[-2,25],[72,95],[146,123],[59,27],[78,34],[44,48],[4,4],[0,0],[13,43],[9,29],[-100,131],[-70,44],[-132,-3],[-316,-7],[-41,25],[-24,15],[-215,194],[-77,288],[-104,127],[-244,-56],[-107,4],[-920,340],[-598,98],[-34,6],[0,0],[-280,109],[0,0],[277,64],[0,0],[34,26],[-12,58],[-133,71],[-251,1],[-239,0],[-100,-34],[-112,-69],[-100,-83],[-132,-109],[-385,-116],[-44,-13],[-49,-102],[0,0],[-190,-58],[0,0],[-246,25],[-34,15],[-20,9],[16,7],[152,69],[85,130],[25,101],[6,7],[110,130],[211,133],[470,167],[240,43],[191,34],[82,34],[57,24],[123,5],[25,1],[0,0],[17,-2],[182,-25]],[[11273,63370],[-16,-12],[-27,-19],[-169,-53],[-12,3],[-125,32],[-34,32],[-27,64],[0,0],[61,-55],[51,-3],[24,17],[12,8],[-30,50],[-55,88],[23,47],[0,0],[72,62],[0,0],[30,-7],[127,-29],[0,0],[36,-59],[37,-60],[4,-34],[1,-16],[24,-38],[-7,-18]],[[13955,64058],[45,-23],[167,-138],[40,-33],[119,-107],[91,-35],[12,-5],[0,0],[-22,-35],[-25,-40],[-47,22],[-67,78],[-32,62],[-30,58],[-39,18],[-196,91],[-43,9],[-105,22],[-7,19],[-7,18],[146,19]],[[20124,56876],[1,0],[0,0],[2,-1],[0,0],[0,-1],[2,0],[1,-2],[1,0],[17,-13],[0,0],[1,0],[0,-1],[0,0],[2,-2],[2,-2],[1,-1],[23,-32],[24,-33],[0,-1],[0,0],[-3,-2],[-1,0],[-4,-1],[-35,0],[0,0],[-6,0],[-89,46],[-10,6],[-18,14],[-59,53],[-18,23],[-14,17],[-12,18],[-3,39],[-1,18],[0,0],[4,1],[7,4],[33,-19],[2,-1],[4,-3],[1,0],[0,0],[0,0],[1,-1],[0,0],[2,-2],[2,-1],[11,-17],[0,-1],[0,0],[1,-1],[1,-7],[0,-2],[0,0],[0,0],[0,-2],[0,-2],[127,-88]],[[12042,61864],[58,-38],[33,13],[17,1],[39,2],[22,0],[6,0],[0,0],[1,0],[0,0],[1,0],[1,-1],[1,0],[0,0],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,0],[1,-1],[1,-6],[1,-3],[0,-2],[-1,-5],[0,-2],[-1,-2],[0,-2],[0,0],[0,-1],[0,0],[-1,-1],[0,0],[-5,-6],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,0],[-3,0],[-121,-19],[-12,2],[-26,4],[-20,12],[-22,59],[0,0],[1,2],[1,2],[1,1],[0,1],[0,0],[2,1],[3,3],[1,1],[0,0],[0,0],[8,3],[5,2],[3,0],[2,-1],[9,-5],[1,0],[0,-1],[1,-2],[0,0],[0,-1]],[[12944,62087],[0,0],[-1,-1],[-1,-2],[0,0],[-1,0],[0,0],[0,-1],[-1,0],[-72,-26],[-1,0],[-1,0],[0,0],[-10,0],[0,0],[-1,2],[0,0],[-1,1],[1,1],[0,1],[0,0],[1,2],[16,11],[9,6],[14,3],[7,2],[16,4],[15,4],[0,1],[0,0],[1,0],[4,0],[1,0],[1,0],[0,0],[1,0],[1,-1],[0,0],[0,0],[1,-1],[0,0],[0,0],[1,-2],[0,0],[0,-1],[0,-1],[0,-1],[0,0],[0,-1]],[[13024,62081],[-14,5],[-1,1],[0,0],[51,28],[20,10],[0,0],[1,0],[2,0],[2,0],[1,0],[1,0],[12,-4],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-26,-18],[-24,-8],[-25,-8]],[[24929,59272],[58,-29],[19,-10],[30,-47],[8,-30],[1,-103],[-2,-8],[-1,-9],[-7,-29],[-1,-2],[0,-1],[0,0],[-2,-1],[0,-1],[-4,-3],[-17,-9],[-22,-12],[-4,-1],[-1,-1],[-9,-2],[0,0],[0,0],[-5,0],[-1,0],[0,0],[-3,2],[-1,0],[0,0],[-1,1],[-65,232],[2,46],[0,2],[0,1],[0,3],[0,0],[1,1],[0,2],[1,1],[0,0],[0,1],[0,1],[1,2],[1,2],[1,0],[0,1],[5,0],[7,0],[9,0],[1,0],[0,0],[1,0]],[[18250,62085],[-4,48],[64,65],[8,9],[33,12],[19,8],[378,14],[120,-39],[287,-122],[299,-85],[177,-193],[259,33],[5,-10],[27,-48],[-31,-48],[-244,22],[-18,-13],[-1,-38],[-1,-44],[134,-24],[110,-19],[217,3],[48,-23],[88,-42],[230,-210],[16,-14],[0,0],[-82,-165],[-200,-90],[-13,23],[-41,69],[-43,17],[-22,9],[-131,9],[-377,26],[-207,-61],[-53,-47],[-57,-51],[-175,-24],[-55,78],[-34,30],[-49,43],[-111,-55],[-68,-34],[-134,-234],[-105,-140],[-39,-32],[-35,-29],[0,0],[-95,75],[-1,0],[-6,28],[-20,83],[-27,30],[-40,43],[-92,94],[-11,11],[0,0],[-80,34],[0,0],[-35,-1],[-276,-9],[-160,-42],[-79,-2],[-4,0],[0,0],[-42,8],[-257,52],[-188,2],[-12,-6],[-176,-84],[-245,119],[0,0],[-60,53],[-42,37],[10,36],[28,103],[136,40],[317,-90],[0,0],[7,-6],[36,-25],[331,-23],[14,-1],[45,-1],[240,-8],[192,57],[0,0],[11,14],[16,22],[4,47],[2,20],[-170,115],[-51,46],[-85,78],[8,121],[0,12],[69,135],[-5,16],[-2,9],[-228,121],[-224,7],[-34,32],[-3,3],[0,1],[0,49],[27,26],[32,32],[111,50],[112,11],[127,14],[70,-18],[77,-19],[164,-88],[375,-47],[0,0]],[[26584,12946],[72,-21],[51,-11],[41,-10],[105,-74],[19,-38],[111,-87],[23,-11],[9,10],[-6,40],[-17,27],[-3,5],[-17,2],[-16,2],[-32,4],[-18,3],[-1,0],[0,0],[-2,1],[0,0],[0,0],[-1,1],[1,9],[0,5],[0,5],[5,5],[2,1],[20,17],[33,28],[48,17],[170,19],[25,-9],[18,-19],[5,-4],[0,0],[43,-54],[18,-24],[3,-4],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,-1],[-1,0],[0,0],[-2,-1],[-23,-4],[-1,0],[-6,0],[-1,0],[-1,0],[0,0],[-4,0],[-77,7],[-1,1],[-1,0],[-1,0],[-1,0],[-7,3],[-2,0],[0,0],[-1,1],[-3,1],[0,0],[-3,2],[-40,5],[0,0],[-56,-14],[0,0],[0,-2],[-1,-12],[0,0],[41,-17],[44,-6],[27,0],[36,-5],[71,-13],[1,0],[1,0],[3,-1],[1,0],[0,0],[32,-15],[-16,-35],[0,0],[-15,-6],[-28,-12],[-57,-16],[-23,-3],[-17,-3],[-37,-4],[-30,-4],[-48,-12],[-77,-18],[-83,-27],[-91,-30],[-92,-7],[-35,2],[-9,1],[0,0],[-29,9],[-60,20],[-10,3],[0,0],[118,-62],[14,-8],[0,0],[2,0],[33,-11],[32,-24],[6,-4],[0,0],[-28,-37],[-10,-14],[0,0],[-25,-4],[-50,9],[-180,32],[-50,-2],[-47,-2],[0,0],[30,-46],[11,-17],[-105,-29],[-50,-73],[10,-11],[25,-28],[0,0],[-38,-18],[-70,32],[-160,123],[-1,3],[0,2],[0,3],[1,10],[0,1],[0,2],[0,0],[0,1],[0,1],[0,0],[12,1],[3,0],[0,0],[73,62],[4,32],[5,34],[29,22],[18,14],[191,89],[0,0],[100,130],[21,54],[50,126],[5,9],[4,8],[6,-4],[35,-20]],[[26069,12203],[0,0],[-21,-18],[0,0],[0,-1],[-1,0],[0,0],[-3,-1],[-1,0],[-7,0],[-10,0],[-1,1],[-2,1],[-4,3],[-2,1],[0,1],[0,1],[0,0],[4,6],[0,0],[20,6],[25,8],[1,-1],[2,0],[0,-3],[0,-4]],[[26018,12208],[0,0],[0,-2],[0,-1],[-1,-1],[-1,-3],[-1,0],[0,-1],[-4,-5],[-3,-2],[-2,-1],[0,0],[-1,-1],[0,0],[-1,-1],[0,0],[-2,0],[-1,1],[-2,0],[-8,4],[-18,8],[-4,2],[0,0],[12,10],[5,5],[15,10],[15,10],[34,5],[0,0],[-17,-20],[-15,-17]],[[26004,12336],[0,0],[22,2],[18,1],[1,0],[0,0],[1,0],[1,-1],[1,-1],[1,0],[0,0],[1,-1],[1,-1],[0,0],[0,0],[0,-1],[2,-2],[1,-2],[4,-19],[4,-11],[-6,-10],[-6,-7],[-30,-28],[-11,29],[1,1],[8,4],[0,16],[0,10],[0,2],[-3,8],[-1,1],[-1,1],[-2,2],[-1,1],[0,0],[0,0],[-1,1],[0,0],[-1,0],[0,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[0,0],[0,0],[-12,-2],[-6,8],[-1,0],[-2,6],[12,16],[2,0],[0,0],[1,1],[1,-1],[0,-1],[0,0],[4,-9],[5,-13]],[[26608,12315],[0,-1],[0,-2],[0,0],[-5,-2],[-12,-7],[-1,0],[0,0],[-5,-2],[-5,-2],[-7,-2],[-30,-7],[-3,0],[-10,-1],[-6,-1],[-18,0],[0,0],[-1,4],[-1,4],[0,5],[55,23],[52,21],[0,0],[-2,-21],[-1,-9]],[[26854,12458],[10,-2],[9,-3],[0,0],[-6,-39],[-18,-24],[-1,-1],[0,0],[-38,32],[-17,15],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,0],[1,1],[1,1],[1,1],[0,0],[41,22],[0,0],[7,-2],[12,-2],[0,0],[0,0],[1,-2]],[[25301,12466],[0,-5],[2,-9],[-11,-5],[-19,3],[-27,8],[0,0],[39,22],[0,0],[0,0],[2,0],[4,-1],[0,0],[0,0],[4,-2],[1,0],[1,-1],[0,0],[0,-1],[2,-2],[1,-4],[1,-3]],[[26034,12471],[-1,1],[-1,0],[0,0],[0,1],[-1,1],[0,1],[0,0],[0,1],[5,18],[0,2],[0,0],[2,1],[0,1],[3,3],[4,1],[1,0],[0,0],[1,0],[0,0],[0,0],[1,0],[2,0],[0,0],[0,0],[1,-1],[2,-2],[1,-1],[1,-1],[1,0],[0,-1],[7,-14],[2,-4],[0,-8],[0,-1],[0,0],[-1,-1],[0,-1],[-1,0],[-12,-3],[0,0],[-17,7]],[[25065,12583],[4,-29],[0,-1],[-1,-1],[0,0],[0,-1],[-1,-1],[-8,-3],[-14,-5],[-14,3],[-4,1],[-9,4],[-9,4],[-21,11],[-5,3],[-1,0],[-3,2],[1,2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,0],[0,1],[0,0],[1,0],[39,11],[33,9],[6,-8],[2,-6]],[[25283,12615],[12,0],[0,0],[0,-1],[1,-4],[4,-9],[0,-5],[-1,-7],[-7,-71],[-1,-2],[0,-1],[0,0],[0,0],[-1,-3],[-12,-13],[-59,-30],[-11,-4],[0,0],[-1,0],[-2,0],[0,0],[-30,19],[-22,15],[-19,12],[-5,7],[-10,10],[-6,15],[-8,17],[15,12],[17,14],[29,12],[22,9],[3,0],[2,-1],[0,0],[1,0],[13,-1],[7,-1],[9,-2],[24,-13],[6,5],[12,10],[0,1],[0,0],[0,0],[0,2],[0,0],[0,1],[0,1],[1,0],[0,1],[0,0],[17,5]],[[26138,12607],[-3,-6],[-4,-10],[0,0],[-30,-1],[0,0],[3,8],[3,6],[26,10],[3,0],[5,2],[0,0],[-3,-9]],[[25037,12676],[17,-10],[0,0],[-27,-37],[-7,-9],[-5,-2],[-5,1],[-7,7],[-2,1],[-1,1],[0,1],[0,0],[-2,16],[-1,12],[0,0],[3,5],[1,2],[0,0],[31,12],[0,0],[2,1],[1,0],[1,-1],[0,0],[1,0]],[[26033,12877],[9,0],[8,-1],[0,0],[0,-1],[1,0],[0,0],[1,-2],[4,-7],[-1,-1],[0,-1],[0,0],[-5,-3],[-7,-4],[-1,0],[0,0],[-1,0],[-2,-1],[-3,-2],[-1,0],[0,0],[-5,0],[0,0],[-1,0],[-1,1],[0,0],[-1,1],[-7,10],[2,3],[5,6],[0,0],[1,0],[1,1],[0,0],[2,1],[2,0]],[[26247,12913],[44,-19],[50,-21],[0,0],[-5,-47],[-68,-56],[-72,-58],[-6,-5],[-46,-9],[-147,-133],[-356,-211],[-2,-1],[-21,-12],[-27,-4],[-63,-9],[-109,-10],[-11,21],[-15,28],[0,0],[-2,2],[-7,6],[-39,7],[-19,3],[-2,0],[-5,0],[-5,-1],[-5,-2],[-1,-1],[0,0],[-1,0],[-1,-1],[0,0],[0,0],[-4,10],[-7,17],[0,0],[238,96],[77,41],[106,56],[5,6],[12,17],[1,17],[0,14],[0,1],[0,2],[0,0],[-1,0],[-1,1],[-1,0],[0,0],[-2,1],[-2,1],[0,0],[-2,0],[-8,0],[-30,0],[-47,-5],[-198,26],[0,0],[116,-9],[28,-2],[41,4],[98,8],[1,3],[3,7],[0,0],[-23,17],[-8,5],[-12,9],[-61,37],[-131,80],[0,0],[66,5],[44,3],[419,-19],[131,-5],[14,2],[25,2],[57,15],[1,1],[0,1],[0,0],[1,1],[0,0],[-5,5],[0,1],[-1,0],[-5,3],[-2,1],[-7,2],[-8,4],[-9,3],[-3,20],[0,2],[5,9],[11,16],[7,1],[6,1],[1,0],[5,-1]],[[25385,12920],[22,-9],[0,0],[7,-6],[0,0],[2,-4],[-9,-12],[-3,-1],[-6,-3],[0,0],[0,0],[-3,1],[0,0],[-1,0],[0,0],[-2,4],[-1,1],[-5,10],[-8,13],[0,1],[0,0],[0,1],[1,2],[0,1],[0,1],[0,0],[2,1],[0,0],[1,0],[0,0],[1,-1],[1,0],[1,0]],[[26015,12921],[0,0],[34,-26],[0,0],[-27,-6],[-45,9],[15,24],[0,0],[2,0],[1,1],[1,0],[7,0],[6,0],[6,-2]],[[25900,12931],[-1,-22],[-1,-3],[-2,-5],[0,0],[0,0],[-2,-1],[-3,-1],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,1],[-15,6],[-3,2],[-13,6],[-9,5],[-15,10],[-1,2],[-2,3],[0,2],[0,1],[1,1],[0,0],[0,0],[1,1],[4,1],[17,3],[27,5],[17,-10],[11,-7],[0,0]],[[25765,12934],[1,0],[2,0],[1,1],[3,0],[1,0],[13,2],[0,0],[2,0],[1,0],[3,0],[1,0],[11,-7],[9,-14],[-3,-11],[-4,-5],[-14,-17],[-7,-9],[-5,-6],[0,0],[-5,-1],[-3,0],[-6,-1],[-50,-4],[-17,-2],[-43,18],[0,0],[8,7],[29,25],[1,0],[1,1],[1,0],[0,0],[3,3],[66,20]],[[26171,12956],[3,0],[0,0],[2,-1],[1,0],[4,-2],[3,-1],[2,-1],[0,0],[1,-1],[2,-1],[8,-10],[9,-12],[-15,-14],[-4,-5],[-44,-1],[-6,0],[-5,1],[-2,0],[-3,0],[-4,1],[-5,1],[-145,43],[-7,3],[-1,1],[0,0],[-2,0],[-2,1],[-2,2],[-1,0],[0,0],[0,1],[-1,1],[-1,1],[0,0],[10,6],[20,4],[8,1],[1,0],[1,1],[1,0],[0,0],[2,0],[2,0],[1,0],[0,0],[1,0],[0,0],[1,0],[0,0],[3,0],[2,0],[1,-1],[0,0],[116,-13],[45,-5]],[[25511,12950],[2,-2],[5,-7],[1,-1],[0,0],[0,-1],[0,-2],[-5,-6],[-1,-1],[-1,-1],[0,0],[0,0],[-32,16],[-12,10],[-5,6],[0,0],[0,1],[0,1],[0,1],[1,4],[1,8],[3,1],[14,-7],[27,-18],[0,0],[1,0],[1,-1],[0,-1]],[[25163,13100],[0,0],[3,-2],[1,-1],[1,-1],[0,0],[1,-1],[0,0],[-1,-2],[0,0],[-2,0],[-6,1],[-7,1],[-28,7],[0,0],[-2,8],[-1,7],[-2,13],[0,0],[1,1],[0,0],[0,0],[1,1],[1,-1],[2,0],[1,0],[5,-2],[5,-3],[5,-4],[1,-1],[0,0],[21,-21]],[[25095,13110],[-1,0],[-1,-1],[-4,-1],[0,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-8,5],[-30,16],[-1,0],[-1,0],[0,1],[0,2],[0,0],[0,0],[0,1],[1,3],[1,2],[1,0],[1,-1],[5,-1],[5,-2],[1,0],[33,-17],[0,-1],[1,0],[1,-1],[5,-4],[1,-1],[1,0],[0,0],[1,-1],[0,0],[-1,0],[-1,-1]],[[24910,59870],[0,0],[37,-50],[2,-145],[-61,-78],[-59,-74],[-25,-20],[-4,-2],[-3,-2],[-1,0],[-28,-9],[-20,2],[-17,22],[-8,10],[-14,38],[-22,118],[-6,34],[0,0],[8,26],[3,7],[5,12],[3,3],[3,4],[1,1],[0,0],[6,4],[0,0],[2,1],[12,4],[0,0],[1,0],[1,1],[1,0],[49,-31],[1,-1],[24,-27],[12,-5],[3,-1],[2,0],[1,0],[2,-1],[0,0],[1,0],[3,2],[8,6],[22,17],[11,16],[8,10],[-1,29],[-1,1],[-2,1],[0,1],[-1,1],[-4,2],[0,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,0],[0,1],[-1,1],[-2,5],[-3,12],[-2,8],[0,1],[1,1],[3,9],[1,1],[0,1],[2,2],[4,3],[11,9],[29,19],[0,0],[5,-5]],[[25028,59529],[20,-14],[29,-29],[0,-1],[0,0],[0,-1],[1,-3],[0,-1],[0,-1],[0,-3],[1,-4],[0,0],[0,-1],[0,-2],[-1,-4],[-1,-3],[0,-2],[-18,-19],[0,0],[-1,0],[-2,-2],[-7,-5],[-2,-1],[0,0],[-16,-2],[-1,0],[0,0],[0,0],[-8,1],[-11,3],[0,0],[-1,0],[-2,2],[-1,0],[-9,6],[-2,1],[-1,3],[-2,1],[0,1],[-1,1],[0,1],[-1,1],[0,3],[-1,19],[5,13],[6,11],[6,12],[9,16],[1,0],[0,0],[1,1],[0,0],[1,1],[0,0],[4,1],[3,0],[1,0],[0,0],[0,0],[1,0]],[[25198,59753],[-12,-7],[-23,-12],[-18,-8],[-3,0],[-1,0],[0,0],[0,0],[0,1],[-1,0],[0,1],[1,8],[5,4],[1,1],[45,25],[6,-2],[1,0],[2,-2],[1,-1],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[-4,-3]],[[24803,56910],[1,0],[3,0],[1,-2],[0,0],[0,-1],[7,-32],[-5,-31],[-8,-31],[-3,-8],[-5,-18],[-8,-8],[-10,-10],[-14,-6],[-18,-9],[-17,0],[-8,0],[-28,6],[28,80],[2,7],[2,5],[8,16],[0,2],[7,13],[0,1],[0,0],[21,20],[17,11],[1,0],[2,-1],[2,0],[22,-4]],[[24925,57082],[-2,-3],[-7,-11],[-33,-13],[0,0],[0,10],[3,11],[1,6],[28,36],[0,0],[1,0],[0,1],[0,0],[1,0],[1,0],[2,1],[1,0],[1,-1],[0,-1],[4,-7],[4,-8],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[-1,-9],[0,0],[0,-1],[-5,-7]],[[17573,61444],[0,-50],[-185,66],[-93,34],[-44,53],[28,26],[0,0],[18,2],[19,2],[0,0],[227,-93],[30,-40]],[[15274,61022],[118,-180],[0,0],[-87,-28],[-68,-3],[-52,-3],[-93,32],[-70,24],[-173,-19],[-32,-4],[-49,-25],[-26,-58],[10,-11],[8,-9],[0,0],[-250,75],[-187,57],[-133,88],[-139,91],[0,0],[140,172],[148,49],[0,0],[498,-73],[121,-46],[316,-129]],[[24033,60504],[20,-11],[18,-14],[11,-9],[16,-18],[17,-24],[28,-39],[0,0],[-3,-1],[-11,-6],[-87,44],[-7,6],[-13,11],[-10,9],[-4,3],[-11,14],[-1,5],[-1,2],[2,6],[0,3],[4,5],[5,6],[0,0],[1,1],[6,4],[16,4],[1,0],[1,-1],[1,0],[1,0]],[[24183,60357],[4,-3],[7,-4],[1,-1],[1,-2],[1,-1],[3,-3],[0,-1],[0,0],[1,-1],[1,-4],[1,-3],[0,-1],[0,-1],[0,-1],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,-5],[0,-1],[0,-2],[1,-8],[0,-1],[0,0],[0,-1],[0,-3],[-1,-2],[0,-2],[-3,-10],[-1,-3],[-2,-1],[-2,-1],[0,0],[-27,-7],[-1,0],[-1,0],[0,0],[-1,0],[-1,1],[-6,3],[-2,1],[-1,1],[-1,1],[-1,2],[-5,10],[-1,1],[-1,2],[0,4],[-1,3],[0,1],[0,1],[0,0],[0,2],[1,7],[0,2],[0,1],[1,2],[0,6],[0,1],[1,2],[10,20],[2,1],[3,2],[5,2],[2,0],[1,0],[0,-1],[3,0],[8,-1]],[[25277,58151],[7,-29],[0,-19],[-2,-60],[-1,-1],[0,-1],[0,-1],[0,0],[-1,-7],[-2,-5],[-2,-14],[-4,-16],[-2,-9],[-1,-1],[0,0],[0,0],[0,-2],[-1,-1],[0,-1],[-6,-13],[-21,-27],[-10,1],[-7,1],[-23,10],[-15,6],[-1,1],[-2,1],[-1,1],[0,0],[0,0],[-7,7],[-3,3],[0,0],[-4,4],[-7,7],[-1,2],[0,0],[-1,1],[-1,4],[-2,5],[-1,4],[0,0],[0,2],[-1,41],[0,3],[0,1],[0,0],[4,14],[4,15],[1,1],[0,1],[3,5],[28,47],[13,22],[11,20],[14,28],[1,0],[0,2],[2,2],[0,1],[1,1],[0,0],[1,0],[1,1],[1,0],[0,0],[1,0],[1,0],[1,0],[6,0],[1,0],[1,0],[1,0],[0,-1],[2,-1],[2,-1],[0,0],[0,0],[0,-1],[0,0],[0,-2],[-1,-1],[0,0],[0,-1],[0,-1],[12,-20],[9,-14],[0,0],[0,-3],[2,-12]],[[23996,60851],[0,0],[1,0],[2,0],[29,-1],[2,0],[0,0],[2,0],[0,0],[1,0],[8,-5],[4,-2],[1,-2],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[-2,-2],[-7,-4],[-13,-4],[-5,-1],[0,0],[0,0],[-1,0],[-1,0],[0,0],[-2,1],[-1,2],[-2,1],[-2,3],[-10,14],[-1,7]],[[24439,60083],[7,-16],[7,-19],[9,-46],[0,0],[-1,-1],[0,0],[-1,-1],[0,-1],[0,0],[0,-1],[-1,0],[-2,-4],[-2,-1],[0,-1],[0,0],[-1,-1],[0,0],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-5,-1],[-6,1],[-2,1],[-1,0],[-2,1],[0,1],[-5,3],[-2,1],[-1,1],[0,0],[-1,0],[-5,6],[-11,17],[-1,10],[-1,5],[0,5],[10,22],[11,25],[2,2],[0,0],[0,1],[0,0],[1,-1],[0,0],[4,-1],[7,-2],[1,-1],[1,0]],[[25216,58674],[12,-15],[16,-22],[39,-77],[6,-8],[12,-14],[9,-25],[11,-35],[1,-10],[1,-2],[0,-12],[0,0],[-5,-10],[-14,-23],[-10,-7],[-2,-1],[-1,0],[0,0],[-1,0],[-1,0],[-6,1],[-1,0],[0,0],[-1,0],[0,0],[-11,7],[-79,44],[-97,140],[0,1],[-1,1],[-1,2],[-5,9],[0,1],[0,0],[-1,1],[-1,2],[-2,4],[-25,68],[0,1],[-1,2],[0,2],[-1,1],[0,1],[0,3],[0,0],[0,1],[0,1],[0,1],[0,0],[0,1],[2,10],[1,0],[0,1],[1,3],[1,1],[1,2],[1,2],[1,1],[1,1],[1,2],[2,2],[0,1],[4,3],[1,1],[1,0],[0,0],[0,0],[3,2],[2,0],[1,1],[1,0],[23,8],[1,0],[1,0],[1,0],[0,0],[3,0],[1,0],[1,0],[0,0],[0,0],[3,-1],[2,-1],[41,-23],[28,-24],[30,-26]],[[11886,53539],[-4,-24],[0,0],[-33,6],[-51,10],[-78,72],[0,0],[-15,43],[44,47],[37,41],[0,0],[6,-3],[10,-4],[84,-188]],[[22075,60916],[-133,-35],[-101,-26],[-331,42],[-307,-30],[-16,35],[-7,231],[-1,36],[41,76],[0,0],[20,5],[44,12],[347,-21],[409,-25],[101,-38],[52,-19],[13,-44],[16,-57],[-71,-69],[-76,-73]],[[40290,11070],[37,-4],[34,-4],[474,-58],[30,-4],[0,0],[13,-7],[100,-59],[133,-56],[7,-2],[71,-19],[114,-105],[77,-71],[9,-14],[13,-18],[46,-89],[0,0],[-10,-17],[-33,-56],[-1,-1],[0,0],[-2,-4],[-17,-7],[-37,-6],[-29,-5],[-31,15],[-3,1],[-74,37],[0,0],[-53,61],[-176,149],[-140,63],[-94,43],[-212,60],[-170,81],[-11,5],[-7,4],[-92,63],[0,0],[-21,-1],[-159,-10],[-1,-2],[0,0],[0,-1],[-5,-1],[-5,-2],[-1,-1],[-2,0],[-1,0],[0,0],[-1,-1],[0,1],[-1,0],[-5,8],[2,6],[0,1],[1,2],[6,14],[1,3],[3,5],[27,4],[24,5],[3,0],[2,0],[1,0],[0,0],[3,1],[1,0],[0,0],[162,-7]],[[40663,10748],[15,-5],[2,-1],[1,-1],[2,-1],[1,0],[10,-8],[4,-2],[0,-1],[0,-1],[0,0],[0,0],[0,-1],[0,0],[-2,-2],[-16,-5],[-3,-1],[-1,0],[0,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-4,1],[-4,1],[0,0],[-1,0],[-2,1],[-20,17],[0,2],[1,0],[0,1],[2,4],[0,1],[0,0],[1,0],[19,3],[1,0],[1,-1],[2,0],[1,0],[0,0]],[[17998,63554],[6,-6],[4,-3],[-1,-6],[0,0],[-8,-10],[-6,-8],[-66,-23],[-5,1],[-8,1],[-15,8],[-15,9],[-10,30],[0,2],[5,21],[0,0],[59,-8],[60,-8]],[[18283,63559],[21,-11],[0,-24],[0,0],[-87,-11],[-6,-1],[0,0],[-9,61],[0,0],[81,-14]],[[18651,63275],[-1,0],[0,0],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[-3,14],[0,1],[0,1],[1,15],[2,15],[1,5],[0,0],[5,3],[0,1],[2,1],[0,0],[1,0],[1,1],[1,0],[0,0],[1,0],[1,0],[0,-1],[0,0],[1,-3],[0,-1],[1,-1],[0,-46],[0,0],[0,0],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,0],[-1,-1],[-5,-4],[0,0]],[[18423,63339],[-1,-3],[0,-4],[0,-6],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-3,-2],[0,0],[-13,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,0],[0,0],[-2,3],[-5,11],[0,1],[0,0],[0,1],[0,0],[0,1],[0,2],[1,0],[0,1],[4,6],[18,10],[8,5],[1,-10],[1,-9],[1,-2]],[[18405,63396],[0,0],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[0,1],[-2,6],[-1,5],[2,19],[1,10],[0,1],[1,2],[0,2],[0,1],[0,0],[0,0],[1,1],[1,0],[1,1],[4,2],[1,0],[1,0],[1,1],[4,0],[0,0],[0,0],[1,1],[0,0],[0,-1],[1,-3],[-7,-34],[-1,-7],[-4,-8],[0,0]],[[17813,63474],[4,0],[3,-1],[0,0],[-6,-19],[-6,-21],[-1,-2],[0,-1],[-1,-3],[-2,-1],[-3,-4],[-4,-4],[0,0],[-2,-3],[-1,0],[-4,-2],[-1,-1],[0,0],[-1,-1],[-3,-1],[0,0],[-1,0],[0,0],[-1,0],[0,1],[0,0],[-2,1],[0,0],[1,1],[0,1],[1,1],[5,17],[4,11],[0,4],[0,1],[0,0],[0,1],[0,1],[1,2],[0,2],[0,0],[0,1],[1,1],[1,6],[1,2],[0,0],[1,2],[0,0],[1,0],[0,1],[0,0],[11,6],[3,1],[1,0],[0,0]],[[18412,63482],[13,-32],[5,-11],[0,0],[-44,33],[-15,30],[0,0],[13,-6],[28,-14]],[[18145,63618],[23,-52],[0,0],[-32,15],[-46,21],[-14,10],[-2,2],[0,0],[-2,4],[-6,9],[0,1],[0,0],[-1,1],[-1,3],[0,0],[0,1],[0,2],[1,1],[2,2],[6,6],[1,0],[0,0],[1,1],[1,0],[6,2],[0,0],[1,0],[8,1],[4,0],[2,0],[3,0],[0,0],[1,0],[1,0],[2,0],[1,0],[1,0],[26,-6],[6,-2],[3,-1],[0,-3],[4,-18]],[[25238,55948],[10,0],[12,-1],[0,-1],[0,-1],[0,-2],[0,0],[-1,-4],[-1,-1],[0,-1],[0,-1],[0,0],[-20,-35],[-34,-408],[-4,-26],[-32,-17],[-4,-2],[-12,-6],[-23,-11],[-7,-4],[-4,-1],[-15,-6],[-31,-3],[-439,-18],[0,0],[-11,25],[25,14],[24,12],[81,38],[26,12],[65,27],[0,0],[61,74],[-1,75],[-1,73],[-11,35],[-7,16],[-6,14],[-19,12],[-15,9],[0,0],[105,70],[105,18],[72,13],[112,12]],[[25514,56280],[-1,-4],[-4,-16],[-2,-9],[-6,-18],[-28,-16],[-12,-7],[-21,-10],[-19,-9],[-87,-37],[-26,3],[3,11],[3,9],[83,77],[0,0],[101,41],[1,0],[3,0],[1,0],[0,0],[2,1],[1,-1],[1,0],[2,0],[1,0],[0,0],[0,0],[1,-1],[0,-1],[1,0],[1,-4],[0,-2],[1,-4],[0,-2],[0,-1]],[[25091,57707],[16,-3],[7,-7],[1,-2],[0,0],[1,-1],[8,-22],[0,-1],[1,-2],[0,-3],[3,-10],[0,0],[0,-1],[0,0],[0,-1],[1,-9],[0,-3],[-4,-35],[-9,-30],[-7,-26],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-17,-16],[-1,0],[-1,0],[-1,0],[0,0],[-1,0],[-1,-1],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[-2,0],[0,0],[0,0],[-3,1],[-1,0],[-6,4],[-5,4],[-9,7],[-13,9],[-9,12],[-2,2],[-3,6],[-4,7],[-1,26],[0,1],[1,1],[0,2],[2,6],[0,1],[0,0],[6,17],[1,2],[1,3],[0,1],[28,43],[5,9],[0,0],[0,0],[2,2],[0,0],[1,1],[2,3],[7,5],[1,0],[0,1],[2,0],[0,1],[2,0],[2,1],[1,1],[2,0],[1,0],[1,0]],[[24915,57156],[-1,0],[-1,0],[0,0],[-1,0],[-1,1],[-3,2],[0,1],[0,0],[-1,0],[0,1],[-1,2],[0,0],[2,13],[0,0],[1,0],[1,1],[0,0],[1,0],[4,0],[3,1],[3,0],[2,0],[13,-7],[0,0],[0,-1],[2,-1],[0,0],[0,0],[-1,-1],[-1,-1],[-3,-3],[0,0],[0,-1],[-16,-7],[-2,0]],[[25002,57263],[1,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[-3,-5],[-7,-13],[-9,-2],[-1,0],[-1,0],[-7,5],[-1,2],[1,2],[0,1],[7,8],[10,14],[0,0],[8,2],[0,0],[0,0],[1,0],[1,-2],[0,0],[0,-1]],[[25064,57452],[-1,-2],[-1,-1],[-5,-7],[-3,-4],[0,-1],[-1,0],[-1,-1],[-9,-3],[-3,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-6,1],[-7,2],[-4,4],[2,2],[31,26],[17,9],[0,0],[0,0],[0,-2],[1,-1],[0,0],[-1,-1],[0,-1],[0,0],[0,-1],[0,0],[-1,-4],[-1,-4],[-4,-11]],[[23318,55992],[-25,-6],[-63,-13],[-127,37],[-102,30],[16,23],[21,31],[0,0],[251,40],[49,35],[5,3],[0,0],[1,-1],[22,-27],[34,-105],[0,0],[-82,-47]],[[22904,61217],[0,-1],[0,0],[2,-4],[0,-1],[0,-1],[0,-2],[-6,-8],[0,0],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-3,-2],[-1,0],[0,-1],[-1,0],[-28,-10],[-15,-5],[-10,-3],[0,0],[-4,0],[-5,-1],[-18,1],[-2,0],[-3,1],[0,0],[-1,0],[-1,1],[0,1],[0,0],[1,1],[0,0],[1,1],[44,37],[3,3],[47,3],[0,0],[1,0],[0,0],[4,-5]],[[22798,61213],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,0],[-9,-2],[-1,0],[-2,0],[-1,1],[-4,0],[-16,4],[0,2],[2,3],[4,4],[5,4],[0,0],[2,0],[0,0],[1,0],[4,-1],[6,-2],[6,-5],[3,-3],[0,0]],[[23057,61255],[-7,-5],[0,0],[-1,-1],[-62,-46],[0,0],[-10,-2],[0,0],[-1,0],[0,1],[0,1],[3,18],[2,4],[0,1],[0,0],[1,0],[14,18],[21,5],[31,7],[4,0],[1,0],[0,0],[3,1],[0,0],[1,-2],[0,0]],[[23049,61425],[7,-5],[1,0],[0,0],[1,-1],[1,0],[3,-2],[1,-1],[0,0],[6,-5],[7,-7],[0,0],[1,0],[1,-1],[8,-11],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[-1,0],[-1,-1],[0,0],[-1,0],[-2,-1],[-1,0],[-3,1],[-22,9],[-37,14],[2,7],[2,7],[0,0],[11,2],[11,2],[1,0],[1,0],[2,0],[0,0]],[[22772,60755],[1,-1],[4,-3],[23,-16],[3,-2],[3,-2],[0,0],[0,0],[0,0],[3,0],[2,-1],[7,6],[8,4],[4,1],[2,0],[7,0],[47,-1],[1,-6],[0,-3],[0,0],[-39,-16],[-18,-8],[-15,-5],[-11,-2],[-37,-5],[-34,-5],[-16,0],[-23,-1],[-2,1],[-5,3],[0,0],[0,5],[0,28],[10,12],[7,8],[57,10],[11,-1]],[[22789,61160],[13,-1],[4,0],[2,-1],[6,-1],[17,-10],[2,-1],[3,-2],[1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,-5],[-1,0],[0,0],[-4,-4],[0,0],[0,0],[-7,-1],[-64,-11],[-3,-1],[-2,1],[-2,1],[-3,5],[-1,1],[0,0],[0,1],[0,0],[0,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,0],[0,0],[0,1],[0,0],[0,1],[0,0],[0,1],[0,1],[0,1],[11,8],[2,1],[0,0],[28,11]],[[22686,61157],[3,-1],[8,-4],[5,-3],[3,-2],[6,-5],[3,-2],[10,-10],[-2,-6],[0,0],[-6,-1],[-5,-2],[-10,-2],[-3,0],[-4,0],[-10,3],[0,0],[-8,2],[-8,3],[0,0],[0,1],[0,1],[-1,3],[-1,3],[-6,4],[-3,2],[-42,4],[-4,-1],[-10,-2],[-1,0],[0,1],[-1,0],[-5,4],[0,0],[0,0],[-1,3],[-1,2],[0,0],[2,1],[2,1],[6,2],[0,0],[21,6],[5,0],[6,1],[14,2],[2,0],[14,-3],[11,-3],[6,-1],[5,-1]],[[20523,56772],[-4,-1],[-1,1],[0,0],[-2,1],[0,1],[0,0],[-1,1],[-1,1],[0,0],[-3,3],[-1,1],[-1,0],[0,1],[-3,4],[-6,14],[-1,2],[0,0],[-4,22],[0,21],[1,1],[2,2],[0,1],[1,0],[0,1],[0,0],[0,1],[1,3],[-1,3],[0,3],[-4,9],[-3,5],[-1,2],[0,0],[0,0],[-7,12],[0,0],[0,0],[-2,2],[-1,2],[-1,1],[0,0],[-1,1],[-6,4],[-7,4],[-1,0],[0,1],[-10,3],[-2,0],[0,0],[8,11],[13,19],[54,-24],[20,-16],[1,-1],[3,-43],[-7,-27],[-10,-35],[-1,-1],[0,-1],[-3,-6],[-1,-1],[0,-1],[0,0],[-1,-1],[-2,-2],[0,-1],[-1,-1],[0,0],[-2,-1],[-1,-1]],[[23929,60540],[-1,0],[-6,4],[-1,1],[-5,9],[-3,4],[0,0],[0,1],[-4,6],[-1,1],[0,1],[2,11],[0,1],[0,0],[9,0],[1,0],[20,-17],[3,-3],[1,-1],[0,0],[1,-1],[0,0],[1,0],[0,-1],[0,0],[0,-3],[-2,-5],[-1,-1],[0,0],[0,-1],[0,0],[0,-1],[-6,-2],[-4,-2],[0,0],[0,0],[-1,0],[0,0],[-1,0],[-1,-1],[-1,0]],[[23770,60648],[0,0],[-10,-2],[-2,-1],[-1,0],[-3,1],[-3,1],[-2,0],[0,0],[-1,0],[0,0],[0,0],[-1,2],[0,0],[0,1],[0,0],[0,1],[0,2],[1,2],[1,3],[0,4],[1,1],[2,3],[2,0],[2,1],[2,0],[3,1],[3,-1],[7,-1],[1,-1],[0,0],[0,-1],[1,-3],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[0,0],[-2,-7],[-1,0]],[[12853,46378],[-48,-31],[-6,-4],[-40,10],[0,0],[-2,42],[-2,59],[27,99],[38,14],[81,29],[86,-43],[0,0],[-2,-11],[-3,-14],[-25,-13],[-36,-19],[-31,-54],[-37,-64]],[[5596,48561],[34,-50],[52,-76],[103,-225],[163,-276],[0,0],[-33,-108],[-37,-38],[-117,-36],[-84,-27],[-142,29],[-50,66],[10,34],[0,0],[104,99],[81,30],[0,0],[-126,394],[-47,59],[-48,-22],[-15,15],[-12,11],[164,121]],[[6817,47799],[-55,-12],[-22,10],[-37,15],[36,39],[42,40],[29,29],[25,24],[47,29],[28,-3],[27,-2],[14,-22],[-86,-94],[-48,-53]],[[6311,47941],[0,0],[-106,-28],[0,0],[-88,53],[-8,46],[16,39],[12,29],[165,26],[0,0],[42,-46],[9,-10],[0,0],[-16,-80],[0,0],[-6,-6],[-20,-23]],[[5565,48132],[-16,-9],[-43,-22],[-34,6],[-49,8],[-29,108],[-3,13],[129,31],[0,0],[50,-60],[-5,-75]],[[6105,48225],[-18,-29],[-107,5],[-29,15],[-26,14],[-8,21],[-11,30],[47,66],[34,-16],[95,-44],[12,-33],[11,-29]],[[11840,65449],[-87,-13],[0,0],[31,63],[7,13],[107,59],[93,51],[51,-31],[-27,-87],[0,0],[-55,0],[-10,0],[-6,-3],[-104,-52]],[[20377,0],[-7,22],[0,0],[9,19],[11,24],[28,23],[25,21],[-12,77],[-27,54],[-144,85],[-27,16],[0,0],[74,92],[85,11],[68,10],[116,15],[36,4],[0,0],[130,-27],[0,0],[367,8],[196,114],[148,85],[-13,37],[0,0],[-64,13],[-141,30],[-38,96],[14,148],[7,71],[64,97],[137,87],[7,5],[-101,16],[-187,147],[0,0],[109,20],[158,28],[8,16],[32,72],[0,0],[-83,6],[-28,1],[0,0],[-2,65],[43,28],[45,28],[114,13],[49,55],[0,0],[-186,3],[-177,4],[-163,-26],[-123,-20],[0,0],[-26,71],[75,79],[-33,105],[31,39],[27,32],[29,13],[228,98],[90,-1],[32,-33],[-6,-23],[-11,-44],[75,-67],[26,-24],[0,0],[142,-57],[52,17],[0,0],[-82,406],[9,19],[1,2],[104,30],[57,2],[77,3],[70,-26],[74,-27],[62,-6],[77,-7],[0,0],[21,134],[-5,117],[103,155],[3,4],[128,8],[90,5],[82,71],[82,35],[50,-3],[68,-5],[220,100],[339,155],[95,71],[0,0],[-178,40],[-5,1],[0,0],[-13,102],[48,87],[133,73],[157,-35],[206,-45],[58,46],[198,159],[126,69],[35,48],[44,60],[77,-4],[0,0],[67,-69],[-20,-37],[49,-6],[43,-6],[58,32],[113,62],[168,28],[716,409],[767,136],[264,91],[22,60],[83,40],[475,85],[117,58],[383,67],[70,-5],[102,-25],[179,-195],[0,0],[-1,-34],[-45,-40],[-55,1],[-134,2],[-25,32],[-2,3],[0,0],[22,24],[10,11],[-16,49],[-152,3],[-125,-81],[-49,-32],[-78,-11],[-128,-20],[-65,10],[-71,-28],[-50,-20],[-82,-64],[-172,-135],[-105,-134],[-22,-59],[-13,-35],[3,-24],[2,-10],[51,-8],[-12,-36],[-14,-43],[0,0],[-65,3],[-38,2],[-71,17],[-147,37],[-68,61],[-126,1],[-44,1],[-208,-50],[-148,-67],[-106,-48],[-470,-274],[-286,-92],[-325,-103],[-35,-52],[1,-3],[5,-31],[8,-4],[143,-67],[21,-21],[17,-17],[0,0],[-236,-109],[-104,-48],[-10,-25],[-12,-26],[0,-57],[0,0],[323,-167],[338,141],[493,19],[7,-26],[-20,-41],[-1,-2],[0,0],[-113,-80],[-112,-79],[-148,-6],[0,0],[-58,67],[-30,35],[-52,17],[-97,-63],[-84,-55],[-105,-11],[0,0],[-10,14],[-16,25],[-55,23],[-66,6],[-43,4],[-161,6],[-133,-14],[-143,-15],[-48,-31],[-3,-1],[138,-50],[160,-209],[0,0],[-188,1],[0,0],[-45,64],[-17,25],[0,0],[-105,62],[-115,69],[-12,4],[-247,90],[-31,-9],[-38,-12],[-61,-41],[2,-36],[-52,-82],[-47,-47],[-33,-34],[0,0],[38,-141],[0,0],[75,-1],[64,-66],[0,0],[-1,-3],[-5,-9],[-92,-28],[-16,-4],[0,0],[-330,24],[-303,-43],[0,0],[-19,-17],[-42,-37],[0,0],[104,-24],[21,-5],[0,0],[-25,-31],[-25,-31],[-175,-121],[-92,-30],[-55,11],[-42,-50],[-69,-82],[-77,-147],[-6,-67],[-13,-135],[-14,-20],[-21,-30],[0,0],[282,-25],[129,53],[0,0],[16,-72],[3,-17],[-218,-112],[0,0],[83,-80],[226,-114],[461,-84],[102,18],[0,0],[-71,41],[-17,70],[249,99],[237,20],[284,-13],[9,-5],[21,-11],[0,0],[-40,-32],[-60,-13],[-72,16],[-41,9],[-153,-19],[-72,-22],[-68,-21],[-103,-62],[0,0],[303,-60],[123,-45],[-278,-84],[21,-33],[25,-40],[73,-60],[69,-33],[23,-11],[416,-127],[88,-50],[75,-41],[0,0],[23,-76],[-3,-28],[-2,-27],[0,0],[-23,-32],[-50,-7],[-42,-5],[13,-58],[137,-93],[21,-4]],[[16356,295],[58,-54],[68,-62],[8,-51],[-18,-15],[-92,-81],[-661,-8],[-130,23],[-140,183],[18,17],[139,24],[338,-4],[86,56],[205,0],[121,-28]],[[18030,320],[-99,-15],[-21,2],[-214,16],[-152,53],[8,16],[10,20],[88,52],[132,12],[28,-9],[41,-13],[179,-134],[0,0]],[[24534,193],[-11,-1],[-32,-3],[-86,42],[-145,194],[-96,127],[0,0],[56,27],[19,9],[169,-7],[184,-158],[15,-26],[10,-19],[3,-62],[-35,-89],[-22,-14],[-29,-20]],[[19774,285],[144,-285]],[[18567,0],[-433,166],[0,8],[-3,174],[35,34],[32,32],[66,106],[0,0],[-142,44],[-152,46],[4,6],[22,30],[0,0],[71,20],[338,98],[375,39],[117,30],[95,24],[50,-4],[54,-5],[188,-59],[48,-51],[11,-93],[2,-16],[0,0],[233,-153],[196,-191]],[[20660,1808],[-380,-254],[-91,5],[-133,7],[-97,59],[-20,23],[-28,30],[18,85],[150,78],[96,50],[196,298],[36,18],[84,41],[162,45],[169,47],[33,-5],[26,-4],[17,-35],[1,-2],[0,0],[-61,-35],[-85,-50],[32,-167],[0,0],[39,-77],[13,-24],[-177,-133]],[[22055,2890],[-197,-34],[-32,9],[3,17],[9,48],[62,44],[100,117],[52,10],[42,9],[73,-9],[7,-13],[12,-20],[-11,-31],[-9,-26],[-24,-9],[-2,0],[0,0],[-85,-112]],[[23733,3868],[13,-8],[122,-78],[86,15],[46,-22],[2,-1],[0,0],[-151,-53],[-388,-137],[-377,83],[0,0],[28,82],[405,207],[144,21],[0,0],[10,-2],[66,-15],[0,0],[-10,-39],[-5,-20],[9,-33],[0,0]],[[24411,3912],[-42,-22],[-136,-72],[-99,-3],[-111,-4],[0,0],[20,21],[5,0],[40,-1],[0,0],[121,141],[19,37],[0,0],[-32,65],[0,0],[12,25],[13,28],[0,0],[8,2],[88,18],[19,-2],[17,-3],[117,-78],[21,-14],[-59,-101],[-21,-37],[0,0]],[[27266,4216],[24,-37],[32,-49],[29,11],[102,40],[164,-60],[74,-27],[0,0],[15,-25],[14,-24],[-86,-68],[-73,-57],[-175,-27],[-228,-35],[-146,20],[-11,13],[-24,31],[-22,64],[-22,62],[0,0],[-74,8],[-12,12],[-8,8],[0,0],[19,31],[29,46],[186,92],[2,1],[65,21],[129,42],[-8,-37],[0,0],[5,-56]],[[29034,4692],[23,-43],[9,-18],[-86,-34],[-45,-3],[-70,-6],[-111,21],[-167,30],[-422,-98],[-43,19],[-49,23],[0,0],[8,34],[59,46],[19,15],[25,8],[158,52],[324,30],[102,-25],[228,-33],[14,-6],[24,-12]],[[25656,5167],[97,-23],[128,-30],[55,2],[28,1],[0,0],[-131,-56],[-205,-41],[0,0],[-45,24],[-231,28],[-27,3],[-32,1],[-202,5],[0,0],[-46,47],[0,0],[611,39]],[[27109,5598],[80,-4],[93,-4],[80,3],[0,0],[-4,-26],[-6,-47],[0,0],[-86,-17],[-234,-47],[-242,-88],[-63,-7],[-18,-2],[-225,37],[0,0],[188,117],[138,41],[113,16],[186,28]],[[24139,33048],[156,-135],[133,-167],[123,-207],[604,-495],[35,-49],[411,-167],[258,-13],[309,-195],[135,-138],[124,-74],[254,-122],[488,-191],[132,-85],[127,-171],[-18,-89],[-351,-440],[-57,-149],[5,-91],[-26,-128],[-64,-91],[-182,-169],[196,-100],[302,-26],[524,-128],[347,-25],[414,95],[172,112],[491,382],[94,173],[37,127],[-4,175],[34,268]],[[29342,30735],[120,-36],[143,76],[191,-64],[19,-24],[119,-525],[-1,-342],[-87,-148],[-258,-166],[-348,-141],[-644,-491],[-355,-383],[-227,-288],[-44,-81],[-173,-191],[-428,-381]],[[27369,27550],[-108,-339],[-218,-960],[-13,-333],[38,-231],[-11,-97],[0,0]],[[20404,12187],[0,0],[5,40],[-888,182],[-302,41],[-1061,-5],[-57,22],[-198,211],[-63,107],[89,419],[-23,176],[-35,30],[-80,12],[-196,-14],[-188,-107],[-56,-3],[-30,31],[-102,142],[-80,253],[-25,195],[6,271],[58,130],[209,115],[216,149],[335,433],[-38,99],[-118,140],[-15,144],[137,173],[227,195],[39,77],[67,235],[22,301],[-24,147],[6,259],[108,163],[78,28],[66,84],[-22,119],[-84,119],[-168,55],[-128,108],[278,10],[126,-27],[111,32],[71,112],[5,37],[-29,42],[-62,31],[-125,25],[-251,-14],[-16,40],[24,110],[84,202],[5,133],[-168,421],[-142,138],[4,396],[118,116],[105,199],[-35,213],[-8,286],[-65,273],[131,229],[48,425],[45,147],[80,33],[43,133],[15,128],[-18,177],[210,108],[111,1],[55,102],[-111,254],[-96,440],[5,546],[93,239],[79,33],[247,188],[83,113],[8,166],[-52,242],[106,464],[221,322],[44,213],[11,303],[-72,156],[-240,979],[-77,41],[-68,170],[28,278],[41,66],[15,-10],[197,480],[166,204],[-59,449],[192,676],[366,468],[156,374],[127,105],[121,10],[83,48],[48,86],[-203,287],[19,144],[49,33],[-8,383],[-56,185],[22,105],[71,99],[-80,244],[56,103],[139,152],[605,255],[214,715],[-123,129]],[[21208,32658],[102,153],[244,263],[240,177],[21,108],[22,9],[71,-21],[169,-152],[279,-34],[250,1],[238,-71],[61,-89],[124,-280],[64,21],[156,356],[78,123],[639,0],[90,-116],[83,-58]],[[20286,10455],[0,0],[0,1547],[1,1]],[[21208,32658],[-261,-57],[-138,11],[-54,37],[-34,381],[-31,162],[-127,424],[0,89],[-328,555],[-34,30],[-1,61],[80,395],[128,252],[-190,182],[-142,177],[-80,419],[-161,297],[-105,264]],[[19730,36337],[-69,143],[61,117],[356,444],[68,85],[-291,166],[-88,344],[45,55],[63,77],[60,113],[-126,198],[-7,118],[146,211],[178,198],[-75,234],[-16,168],[50,82],[37,150],[24,345],[111,213],[-205,401],[-390,673]],[[19662,40872],[218,-1],[243,-39],[67,-23],[32,-75],[105,27],[196,102],[88,151],[367,175],[370,207],[230,203],[267,62],[308,35],[182,58],[38,-17],[55,-95],[-9,-179],[-52,-205],[50,-309],[-3,-184],[-29,-108],[81,-290],[191,-228],[81,-45],[267,-262],[280,-54],[45,19],[21,33],[54,14],[58,-12],[421,-214],[149,-141],[191,-79],[258,-61],[154,-238],[409,-3],[207,-35],[277,-159],[63,-128],[-53,-94],[11,-116],[123,-247],[17,-318],[-106,0],[135,-590],[91,-221],[1067,-29],[-41,-333],[10,-123],[47,-154],[89,-112],[110,-71],[115,-1],[73,-88],[131,-362],[11,-104],[-184,-634],[-182,-404],[101,-84],[-12,-123],[-113,-79]],[[27032,34487],[-12,223],[-42,58],[-475,297],[-113,32],[-453,-3],[-144,-20],[-335,-93],[-570,-101],[-217,-176],[-228,-401],[-56,-430],[-248,-825]],[[29342,30735],[-5,70],[93,268],[117,491],[-5,227],[-111,116],[-131,55],[-254,-115],[-123,-13],[-103,24],[-66,232],[-95,582],[6,125],[-140,229],[-448,67],[-56,-46],[-155,-12],[-284,22],[-381,78],[-51,32],[-8,36],[88,493],[3,197],[-30,196],[-171,398]],[[19662,40872],[-120,3],[-257,-67],[-300,27],[0,811],[68,241],[-67,5],[-390,-344],[-104,-21],[-466,0],[-46,11],[-11,143],[-70,169],[-71,36],[-330,48],[-119,82],[102,117],[-8,99],[-350,419],[-150,344],[-89,146],[16,218],[56,288],[29,50],[54,77],[60,44],[110,55],[81,16],[72,62],[17,53],[-50,112],[23,271],[122,201],[52,275],[19,28],[222,136],[375,272],[493,109],[198,78],[124,78],[146,15],[102,-49],[72,-66],[93,-37],[48,37],[2,58]],[[19420,45522],[349,2026],[-13,197],[-97,242],[-226,243],[-78,123],[15,483],[390,90],[84,-56],[105,20],[-35,206],[-40,78],[-53,26],[-335,-5],[0,439],[161,24],[897,-13],[340,155],[65,75],[113,57],[36,-17],[157,-283],[28,-136],[-21,-154],[7,-86],[151,43]],[[21420,49299],[327,-312],[262,68],[132,86],[79,6],[63,-61],[8,-60],[70,-31],[314,307],[276,156],[65,-11],[208,180],[100,196],[142,31],[190,84],[19,78],[-5,112],[-339,28],[-91,77],[-44,269],[-23,359],[-36,75],[-78,81],[-292,254],[-37,88],[21,55],[657,-241],[233,-5],[157,-84],[158,-119],[108,31],[16,248],[247,86],[156,-47],[302,110],[86,48],[50,75],[73,50],[238,39],[235,258],[-55,175],[-39,10]],[[25373,52048],[39,21],[303,27],[137,-129],[11,-33],[-30,-200],[-32,-76],[65,-100],[174,-122],[91,-240],[-126,-228],[-37,-107],[-105,-379],[-8,-171],[54,-204],[112,-212],[43,-241],[255,-237],[244,-122],[232,27],[51,136],[79,80],[121,-34],[102,35],[194,80],[157,124],[306,26],[133,-21],[187,47]],[[28125,49795],[258,-65],[23,249],[146,173],[342,37],[313,-51],[148,-77]],[[29355,50061],[70,-83],[188,-50],[57,9],[128,92],[112,19],[193,-14],[245,-81],[97,30],[134,105],[91,134],[42,146],[151,324],[403,650]],[[30133,25093],[0,0],[-34,1],[-70,42],[7,368],[42,62],[157,144],[-64,175],[-479,481],[-287,251],[-362,146],[-186,175],[-213,85],[-210,54],[-114,169],[-392,352],[-69,25],[-113,-1],[-43,-38],[-23,-53],[-57,-45],[-107,2],[-147,62]],[[19142,35746],[0,0],[241,57],[94,69],[68,127],[-3,35],[66,196],[122,107]],[[19420,45522],[-69,88],[-240,185],[-123,133],[363,610],[-6,51],[-507,298],[-77,26],[-111,-65],[-468,33],[-47,-79],[-166,-40],[-483,19],[-99,61],[-89,380],[-163,115],[-128,254],[-338,158],[-41,37],[-49,196],[-49,116],[-270,201],[-165,94],[-83,17],[-24,-41]],[[15988,48369],[-328,107],[-184,201],[-135,59],[-79,-19],[-19,-26],[-7,-81],[-428,50],[-182,63],[-100,81],[-189,211],[-279,145],[-222,148],[-124,110]],[[14286,53446],[0,0],[65,180],[117,49],[158,189],[131,99],[-122,248],[-11,242],[0,0]],[[18531,56648],[0,0],[-414,-140],[-113,-212],[-230,-180],[-258,-437],[-50,-442],[-242,-409],[6,-31],[92,2],[76,49],[144,-81],[68,-78],[74,-285],[146,-162],[17,-45],[12,-204],[-34,13],[-41,-69],[10,-310],[15,-40],[387,-275],[339,-4],[473,34],[285,-63],[463,-604],[77,-15],[57,2],[179,65],[191,-34],[251,35],[225,47],[59,52],[165,-33],[52,-42],[23,-113],[-9,-74],[-252,-482],[19,-522],[47,-240],[75,-251],[17,-24],[37,1],[72,-87],[83,-175],[-321,-377],[145,-42],[212,-242],[241,-706],[19,-119]],[[29355,50061],[41,18],[107,126],[87,164],[131,478],[8,75],[-20,45],[-209,280],[-79,578],[34,133],[262,318],[3,62]],[[25373,52048],[-397,470],[134,277],[-6,91],[-47,123],[68,94],[236,28],[251,139],[34,46],[12,67],[-100,51],[-44,-27],[-62,87],[-45,120],[93,243],[115,7],[356,306],[3,26],[-124,167],[0,0]],[[27697,52469],[-61,-468],[-46,-82],[-174,-11],[-216,-149],[-13,-239],[-78,-199],[30,-116],[150,-246],[244,-181],[90,-174],[28,-120],[282,-548],[56,-80],[136,-61]],[[12776,46075],[0,0],[24,-174],[-88,-225],[-75,-137],[2,-174],[29,-17],[39,9],[76,73],[183,-24],[149,-52],[142,-109],[50,-117],[80,-104],[186,-18],[179,239],[60,146],[177,696],[449,329],[662,239],[381,323],[301,399],[110,374],[115,104],[-9,149],[-44,114],[-177,200],[211,51]],[[19796,37220],[-22,16],[-23,9],[-31,3],[-2,15],[24,34],[7,36],[-5,21],[-27,12],[-45,15],[-45,16],[-26,17],[-15,14],[-17,11],[-20,14],[-22,22],[-19,18],[-14,6],[-8,-5],[-5,-10],[1,-13],[6,-17],[6,-14],[-1,-8],[-7,-2],[-8,-1],[-11,5],[-13,10],[-18,13],[-24,14],[-22,13],[-11,9],[-3,15],[-3,24],[2,27],[10,19],[15,18],[15,23],[23,9],[35,-18],[31,-22],[13,-2],[-13,38],[-33,73],[-39,74],[-6,19],[16,17],[38,21],[7,14],[7,10],[22,7],[25,9],[12,12],[36,4],[40,-55],[54,-20],[60,-70],[28,-12],[29,-14],[11,-23],[29,-54],[18,-4],[30,-23],[22,-12],[13,-13],[15,-19],[28,-28],[42,-21],[15,-37],[0,-43],[13,-10],[59,-13],[47,-3],[22,-16],[-8,-16],[-11,-16],[-17,-22],[-23,-24],[11,-36],[27,-37],[42,-9],[45,-11],[38,-2],[27,-12],[0,-23],[5,-11],[-1,-10],[-15,-6],[-28,-5],[-25,-6],[-8,-9],[-5,-13],[-17,-17],[-31,-16],[-47,-6],[-10,-2],[-20,-4],[-14,-17],[12,-7],[8,-4],[19,-25],[6,-16],[2,-17],[-5,-14],[-5,-15],[-21,0],[-25,5],[-34,18],[-7,4],[-28,18],[-18,3],[-14,26],[30,45],[9,37],[-3,32],[-1,26],[20,15],[5,5],[39,20],[26,-13],[13,1],[-4,24],[-36,21],[-44,45],[-40,20],[-17,-4],[-3,-31],[-8,-32],[-4,-14],[-6,-23],[-27,-13],[-29,-3],[-30,3],[-36,5],[-27,14]],[[17469,19874],[-14,40],[-3,53],[13,44],[40,46],[41,32],[46,-10],[48,-25],[41,-52],[26,-58],[-20,-21],[-63,10],[-96,-65],[-59,6]],[[24408,27147],[-115,-44],[-106,-16],[-101,-37],[-53,49],[-33,31],[-46,35],[-31,41],[32,30],[67,17],[68,28],[22,24],[28,19],[141,-26],[8,11],[26,-4],[55,-28],[36,-57],[2,-73]],[[18106,13687],[-11,-14],[-74,-14],[-104,-26],[-108,-3],[-99,10],[-50,10],[-79,-9],[-116,-46],[-20,-43],[27,-35],[67,0],[42,7],[8,-16],[-44,-38],[-46,-51],[-22,-6],[-36,73],[-63,104],[-39,22],[-35,-2],[-33,-7],[-8,10],[46,43],[121,-14],[36,19],[-7,25],[-40,19],[-77,35],[-44,-12],[-39,-32],[-5,18],[14,44],[-5,36],[23,26],[29,21],[11,13],[33,-33],[48,-71],[75,-32],[95,-12],[45,7],[187,9],[210,29],[50,-21],[37,-43]],[[29148,51758],[-20,-25],[-10,-14],[2,-19],[9,-18],[21,-5],[17,-7],[1,-20],[-7,-18],[-17,-4],[-20,-9],[-13,10],[-21,9],[-19,-7],[-22,-20],[-11,-26],[-15,-30],[-23,-18],[-16,5],[-27,10],[-19,5],[-7,15],[-19,8],[-25,-1],[-24,3],[4,32],[17,24],[15,9],[4,29],[-7,24],[32,56],[40,69],[14,59],[16,24],[21,0],[48,-20],[33,-36],[20,-10],[34,3],[29,3],[22,-3],[6,-19],[-11,-31],[-16,-33],[-15,-1],[-21,-3]],[[17923,20583],[1,-22],[-6,-7],[-38,2],[-81,5],[-59,14],[-7,26],[4,23],[15,21],[67,25],[62,5],[20,-15],[16,-12],[5,-17],[-2,-21],[3,-27]],[[17896,14008],[-119,48],[-84,35],[-58,1],[-28,-12],[-46,-2],[-77,-6],[-55,-3],[-1,7],[18,16],[19,16],[3,19],[-14,26],[-18,30],[22,19],[35,28],[34,0],[41,-27],[190,-51],[167,-40],[33,-11],[50,-29],[20,-28],[0,-19],[-8,-16],[-14,-11],[-31,-6],[-79,16]],[[29608,31347],[-29,-12],[-42,-18],[-13,-22],[3,-25],[33,-40],[23,-30],[-19,3],[-41,17],[-28,0],[-12,-19],[-11,-18],[4,-25],[32,-36],[12,-31],[-9,-25],[-10,-17],[-18,-8],[-1,-20],[57,-25],[57,-17],[-43,-15],[-47,-20],[-28,-8],[-32,-5],[1,-17],[19,-26],[-14,-12],[-43,1],[-24,-6],[-17,-16],[-18,-15],[-1,1],[-18,5],[-15,11],[0,79],[17,24],[39,23],[18,31],[-5,24],[-21,12],[-13,7],[3,10],[-31,8],[-63,10],[-21,17],[27,14],[66,-2],[53,-5],[11,25],[3,35],[-13,21],[-93,21],[-81,17],[17,9],[45,-4],[57,-8],[52,5],[37,20],[5,31],[-38,37],[22,27],[59,14],[8,22],[0,27],[-21,29],[0,25],[20,23],[-7,38],[11,26],[32,9],[13,25],[-1,31],[-22,41],[-13,36],[7,32],[5,30],[17,21],[25,12],[11,6],[-10,-51],[0,-3],[0,-5],[8,-51],[12,-43],[-4,-126],[-1,-120],[28,-31],[22,-15]],[[30031,25226],[-10,9],[-9,17],[-7,22],[-4,34],[-2,46],[-6,48],[-11,39],[-11,35],[-2,38],[16,40],[34,37],[48,46],[43,3],[33,20],[20,29],[7,34],[0,28],[7,23],[24,19],[3,2],[28,16],[25,20],[25,20]],[[30282,25851],[31,20],[40,15],[25,45],[21,45],[52,25],[44,29],[4,30],[7,25],[8,33],[23,32],[16,13],[12,-4],[7,-23],[0,-77],[24,-31],[18,-42],[21,-31],[1,-28],[-4,-32],[-12,-36],[-28,-41],[-22,-41],[-24,-38],[-27,-45],[-23,-21],[-25,-7],[-31,5],[-28,33],[-24,27],[-26,17],[-34,-7],[-41,-26],[-27,-77],[-35,-68],[-41,-18],[-22,-3],[-17,-7],[-17,-16],[-20,-28],[-18,-53],[-10,-79],[9,-85],[-10,-41],[-24,-10],[-12,-7],[-11,3],[-1,0]],[[18633,16246],[-26,-25],[-110,-9],[-163,26],[-84,23],[-15,4],[-140,-15],[-168,-45],[-191,-109],[-142,-90],[-27,-25],[-7,-28],[-22,-32],[-28,-10],[22,69],[52,87],[53,41],[30,43],[-22,50],[-19,55],[21,10],[30,-46],[39,-28],[69,6],[156,58],[161,52],[74,38],[-5,29],[5,12],[17,5],[59,-10],[6,2],[78,21],[13,-11],[18,-33],[87,-32],[84,-20],[60,-32],[35,-31]],[[38178,42041],[66,-103],[0,-22],[-14,-12],[-166,-31],[-26,-53],[-6,-60],[-27,-27],[-50,-6],[-54,-17],[-74,-40],[-50,-5],[-13,8],[-57,-21],[-109,-1],[-31,35],[-45,-12],[-41,-31],[-49,-38],[-62,-95],[3,-39],[61,-24],[55,-25],[45,-59],[28,-44],[-28,7],[-13,26],[-37,39],[-80,31],[-53,5],[-28,21],[-22,5],[-37,6],[-18,-65],[72,-187],[61,-143],[-25,-53],[-29,-104],[-19,-24],[-20,-13],[-23,-36],[-10,2],[37,110],[37,124],[-14,77],[-37,37],[-34,48],[-30,8],[-43,-36],[-36,-57],[-48,-87],[-73,-116],[-6,-23],[-4,-116],[-15,-69],[-31,-31],[-9,-44],[-24,2],[-25,-6],[-21,9],[-29,49],[-25,24],[-35,21],[-51,-24],[-6,19],[34,83],[13,38],[23,17],[54,58],[48,41],[-20,41],[-15,16],[-30,18],[2,29],[24,20],[32,-39],[42,-63],[38,-2],[23,26],[-2,63],[-27,38],[-40,43],[2,25],[21,0],[54,-38],[42,-14],[27,20],[8,20],[-42,56],[-5,31],[9,45],[19,-8],[55,-35],[39,14],[2,44],[-23,38],[-43,83],[-125,65],[-17,25],[16,12],[25,-8],[12,28],[16,-26],[12,-10],[10,9],[23,-12],[22,-18],[8,-22],[17,-28],[13,-5],[25,6],[17,17],[-24,43],[6,24],[24,-8],[35,-25],[37,8],[13,25],[5,29],[19,23],[11,27],[-12,43],[-32,44],[24,8],[63,0],[16,57],[36,5],[32,10],[9,33],[18,23],[32,-3],[13,-39],[36,-32],[118,37],[96,-18],[57,4],[30,-8],[7,4],[52,-21],[25,9],[15,12],[26,-2],[26,57],[0,55],[-26,49],[12,11],[39,-14],[7,10],[-11,29],[4,18],[34,-5],[44,6],[14,28],[9,33],[-12,31],[4,16],[2,47],[7,37],[33,-9],[11,-14],[16,-13],[-12,-81],[21,-58]],[[36962,40862],[-30,18],[6,21],[23,24],[20,19],[-7,8],[-41,-10],[-28,-39],[-65,-29],[-3,-12],[63,11],[12,-21],[-25,-43],[-8,-29],[14,-22],[19,-26],[20,4],[27,42],[3,84]],[[32499,45387],[-66,9],[-10,13],[-25,48],[4,16],[28,27],[0,45],[4,14],[36,41],[3,39],[19,21],[2,49],[1,71],[18,14],[40,-9],[21,-76],[32,-116],[12,-70],[0,-21],[17,-18],[33,-54],[12,-64],[-4,-25],[55,-78],[34,-53],[-12,-32],[21,-52],[-4,-25],[-37,-31],[6,-44],[36,-153],[68,-76],[138,0],[17,-19],[-22,-21],[-129,-38],[-72,60],[-45,82],[-41,96],[-76,137],[-11,74],[-28,60],[-54,24],[-24,18],[24,32],[15,43],[-14,32],[-22,10]],[[35560,35449],[19,-9],[6,-20],[19,-12],[-10,-11],[-31,5],[-50,15],[-47,-1],[-7,-13],[5,-27],[28,-81],[-8,-32],[-14,15],[-29,56],[-28,-6],[-11,-4],[-60,-8],[-57,-23],[1,47],[6,11],[88,10],[26,19],[10,35],[-12,54],[-15,-4],[-7,-55],[-22,-10],[-38,16],[0,20],[33,25],[20,60],[2,38],[-18,-2],[-49,-24],[-8,17],[14,10],[12,13],[21,43],[-13,27],[-31,9],[-21,-24],[-19,-23],[-31,-5],[-25,-16],[5,29],[18,49],[29,28],[51,27],[1,24],[17,39],[-1,21],[-32,4],[12,19],[47,27],[16,-2],[21,-19],[-15,-45],[-20,-82],[17,-41],[30,-11],[13,-17],[5,-38],[2,-26],[21,6],[10,-7],[-2,-22],[-13,-32],[3,-34],[35,-27],[39,11],[13,25],[11,-11],[7,-21],[11,-9]],[[31396,34311],[-5,20],[7,17],[11,12],[-28,50],[8,18],[29,-14],[43,-3],[28,18],[58,-1],[17,12],[-11,38],[15,26],[29,-22],[17,3],[18,52],[1,60],[-2,161],[14,43],[21,35],[18,-41],[9,-129],[5,-47],[91,34],[90,63],[56,14],[-56,-88],[-80,-33],[-34,-26],[-59,-39],[-32,-56],[5,-43],[28,-22],[14,-38],[-45,8],[-35,-15],[-34,-6],[-15,0],[-23,-9],[-38,-12],[-25,-16],[44,-46],[73,-38],[-1,-11],[-85,20],[-69,41],[-38,-8],[-22,7],[-12,11]],[[17700,20308],[44,28],[97,-3],[17,-12],[-3,-17],[-61,-28],[-69,10],[-25,22]],[[20242,17011],[8,-27],[15,-35],[25,-27],[18,-12],[5,-27],[-21,-26],[-71,-9],[-90,9],[-48,80],[-28,57],[-7,85],[4,29],[23,12],[38,-21],[11,-65],[15,-17],[22,0],[23,33],[42,-3],[16,-36]],[[1598,65751],[12512,0]],[[14245,65751],[262,0]],[[14653,65751],[763,0]],[[15433,65751],[29802,0],[0,-65751],[-20884,0]],[[20377,0],[-459,0]],[[18567,0],[-18567,0],[0,60129]],[[35938,33592],[-148,102]],[[35410,33850],[-31,4],[-15,13],[-39,23],[-70,16],[-86,65],[-104,113],[-70,47],[-39,-19],[-29,0],[-19,19],[-63,11],[-160,2]],[[34202,34409],[215,-135],[78,-59],[21,-40]],[[31668,34535],[266,195]],[[31934,34730],[1,0]],[[32708,34620],[-633,84]],[[31994,35284],[-6,46],[27,53],[58,75],[78,54],[99,34],[87,17],[110,2]],[[33456,35754],[-468,10],[-101,-43]],[[33961,35872],[-220,-145],[-92,-45],[-57,7]],[[29331,30846],[47,77],[42,70],[24,68],[-9,32],[-3,7],[27,137],[65,235],[20,153],[-23,73],[-1,51],[23,29],[10,14]],[[31059,33621],[-12,-32],[-22,-17],[-37,-12],[-17,-30],[5,-47],[-37,-66],[-79,-85],[-61,-81],[-41,-77],[-105,-96],[-256,-171]],[[31666,34836],[2,-301]],[[31668,34535],[-45,-84],[-65,-58],[-150,-93]],[[35484,35263],[-56,173],[-17,145],[-30,63],[-48,28],[-8,55],[48,122]],[[36737,40736],[60,107],[73,70],[106,67],[95,106],[86,145],[40,107],[-7,68],[30,58],[66,50],[59,74],[52,99],[141,51],[230,1],[142,12],[53,23],[51,52],[47,80],[64,32],[119,-22]],[[32513,45794],[31,-260],[60,-232],[99,-291],[73,-174],[45,-59],[62,-22],[115,22]],[[30589,47374],[-135,-41],[-82,-39],[-94,-67],[-137,-51],[-182,-37],[-132,-46],[-82,-56],[-48,-71],[-13,-87],[-79,-63],[-181,-57],[-37,0],[-26,0],[-48,15]],[[29313,46774],[-24,41],[1,74],[-12,47],[-26,23],[-39,22],[-51,22],[-54,-11],[-58,-44],[-67,-9],[-77,25],[-69,43],[-53,66],[-37,26],[-26,17],[-33,4],[-41,-5],[-43,-26],[-67,-18],[-92,-11],[-95,-51],[-100,-92],[-76,-86],[-51,-81],[-44,-51],[-38,-20],[-45,-13],[-51,-5],[-59,11],[-67,26],[-64,4],[-60,-20],[-66,18],[-70,54],[-56,30],[-42,6],[-65,-59],[-87,-125],[-92,-85],[-98,-44],[-65,-77],[-32,-109],[-33,-58],[-21,-10],[-31,2],[-42,7],[-46,14],[-63,-16],[-60,-69],[-30,-26]],[[26696,46135],[-75,-3],[-55,16],[-60,37],[-70,21],[-82,8],[-106,30],[-130,53],[-98,21],[-66,-10],[-39,-25]],[[25915,46283],[-5,-30],[-13,-24],[-21,-22],[-95,-47],[-64,-13],[-49,16],[-85,1],[-121,-13],[-96,-55],[-72,-97],[-115,-50],[-158,-2],[-121,-43]],[[24900,45904],[-84,-83],[-77,-60],[-69,-37],[-44,-8],[-77,36],[-172,93],[-58,30],[-17,1],[-20,-10],[-16,-49],[-61,-34],[-104,-19],[-102,-42],[-101,-64],[-51,-33],[-35,5],[-17,25],[-25,42],[-43,36],[-108,36],[-79,12],[-53,-13],[-60,3],[-69,17],[-117,55],[-166,91],[-107,75],[-76,87],[-139,122]],[[22753,46218],[-74,65],[-107,109],[-70,94],[-70,61],[-70,27],[-41,31],[-14,33],[-50,15],[-131,-6],[-90,76],[-50,18],[-39,-13],[-38,5],[-36,25],[-38,-12],[-37,-50],[-43,-4],[-46,43],[-42,25],[-39,7],[-27,-34],[-15,-76],[-29,-49],[-42,-23],[-61,-16],[-80,-9],[-99,23],[-117,53],[-81,-3],[-46,-59],[-76,-49],[-105,-41],[-72,-62],[-55,-125],[3,-80],[-12,-41],[-27,-30],[-69,-5],[-111,18],[-213,-26],[-316,-72],[-173,-72],[-30,-71],[-11,-75],[7,-79],[-13,-66],[-34,-52],[-2,-43],[30,-35],[-16,-43],[-63,-52],[-83,-25],[-104,3],[-66,31],[-1,4],[-11,30],[-33,52],[-50,48],[-47,29],[-19,36],[-1,2],[-27,78],[-37,26],[-27,21],[-26,-3],[-21,-17],[-6,-4],[-42,-14],[-28,2],[-18,-2],[-221,-63],[-102,-17],[-52,15],[-36,42],[-58,23],[-81,5],[-73,25],[-65,45],[-43,77],[-19,109],[-22,68],[-24,24],[-80,-17],[-137,-58],[-108,-25],[-119,16],[-175,17],[-92,-7],[-69,-26],[-63,-40],[-55,-56],[-21,-97],[15,-139],[-2,-80],[-19,-21],[-31,-4],[-42,13],[-21,-11],[2,-35],[-14,-33],[-30,-32],[-20,-41],[-17,-75]],[[30298,36090],[-63,309],[7,74],[28,65],[52,79],[29,68],[5,59],[53,67],[99,75],[71,90],[42,103],[45,68],[49,32],[23,45],[-5,56],[16,37],[35,17],[35,34],[33,51],[75,44],[116,36],[74,50],[31,63],[13,44],[-6,25],[10,24],[26,22],[24,60],[20,99],[48,82],[77,68],[64,14],[55,14],[26,-1],[38,20],[48,96],[88,259],[23,181],[22,65],[26,9],[10,69],[-6,130],[40,135],[86,140],[44,111],[2,82],[19,80],[53,119],[-53,16],[-31,39],[-27,67],[-3,75],[20,84],[-1,103],[-24,122],[-4,85],[13,47],[-5,47],[-36,72],[33,68],[-3,54],[-29,63],[5,95],[41,126],[22,112],[7,147],[0,68],[32,85],[62,124],[33,90],[5,57],[38,98],[104,211]],[[32197,41714],[59,213],[68,140],[97,137],[78,88],[62,38],[72,94],[82,148],[59,131],[36,112],[24,100],[12,88],[-31,80],[-74,71],[-4,96],[65,122],[28,116],[-9,111],[85,104],[177,95],[98,85],[20,74],[27,52],[34,29],[37,13],[39,-3],[12,34],[-14,70],[15,45],[46,21],[14,31],[-15,42],[9,28],[34,14],[6,40],[-23,64],[14,50],[50,35],[14,37],[-21,37],[-25,22],[-29,8],[-27,25],[-26,43],[-41,18],[-58,-7],[-56,7],[-81,30]],[[33136,44742],[-138,36]],[[31998,39557],[59,159],[63,88],[85,70],[38,52],[-10,33],[4,39],[35,81],[15,19],[24,5],[33,-10],[22,26],[11,61],[-4,51],[-20,39],[3,85],[24,131],[2,73],[-20,16],[-8,41],[5,69],[-9,73],[-22,79],[-3,155],[15,234],[-6,169],[-27,104],[-27,55],[-27,6],[-24,21],[-20,34],[-11,37],[-1,62]],[[23406,50418],[49,107],[3,51],[-27,31],[-13,30],[2,45],[-13,164],[23,92],[55,74],[76,9],[96,-58],[66,-13],[37,31],[28,-17],[18,-66],[32,-56],[46,-46],[113,-61],[180,-76],[131,-36],[83,4],[59,20],[35,35],[41,16],[46,-3],[48,16],[49,32],[68,12],[87,-9],[55,3],[35,21],[60,3],[35,16],[30,29],[102,20],[174,8],[103,-7],[33,-23],[30,-72],[28,-119],[-33,-137],[-94,-156],[-51,-126],[-8,-94],[-37,-83],[-67,-71],[-36,-47],[-6,-24],[10,-34],[27,-43],[-28,-72],[-83,-98],[-66,-174],[-50,-247],[-82,-207],[-112,-166],[-79,-225],[-45,-285],[-14,-178],[23,-109],[-37,-149],[-6,-114],[11,-128],[-1,-89],[-12,-82]],[[18585,21615],[73,54],[0,62],[-73,131],[-41,41],[-16,51],[-5,74],[-42,63],[-80,52],[-61,60],[-42,69],[-45,46],[-49,23],[-57,5],[-66,-13],[-45,9],[-38,47],[-69,40],[-65,17],[-82,8],[-60,18],[-39,29],[-36,58],[-32,86],[-43,53],[-53,19],[-33,43],[-11,68],[-26,63],[-41,56],[-32,29],[-2,1]],[[15165,49368],[-2,-132],[18,-56],[56,-39],[102,-15],[76,6],[84,21],[62,-16],[39,-53],[110,-52],[179,-50],[103,-66],[29,-83],[44,-46],[62,-9],[36,-39],[11,-69],[51,-55],[90,-42],[48,-56],[6,-71],[20,-46],[34,-22],[38,-5],[42,12],[37,-1],[33,-14],[31,-25],[28,-36],[62,-43],[97,-49],[85,-28],[74,-6],[50,-16],[41,-39],[73,-37],[51,-8],[53,7],[44,-13],[35,-32],[52,-2],[67,27],[52,1],[36,-26],[40,-6],[44,15],[51,-15],[60,-43],[53,0],[46,45],[39,9],[31,-25],[41,3],[50,30],[45,-20],[41,-72],[55,-48],[70,-22],[51,-34],[34,-47],[48,-22],[60,1],[26,-23],[-8,-45],[4,-30],[17,-14],[30,-3],[63,13],[98,21],[63,-23],[61,-62],[59,-38],[56,-16],[52,-29],[46,-43],[54,-30],[60,-17],[58,-2],[55,13],[64,-15],[74,-43],[48,-19],[22,7],[37,59],[54,111],[59,41],[65,-27],[65,-1],[49,20],[40,-3]],[[18598,18285],[83,-19],[51,32],[69,115]],[[18805,18415],[57,206],[44,78],[48,21],[28,34],[7,48],[23,47],[40,47],[36,33],[35,17],[106,6],[177,-7],[120,-11],[64,-14],[114,-109],[166,-203],[76,-132],[-13,-60],[1,-38],[23,-27],[91,-67],[49,-59],[37,-74],[50,-30],[65,14],[77,-6],[88,-25],[199,13],[481,76],[32,0],[29,-19],[25,-38],[42,-24],[59,-11],[123,6],[229,26],[20,4],[22,19],[1,16],[-5,27],[13,20],[57,40],[51,29],[110,38],[81,43],[52,47],[70,27],[89,6],[67,15],[47,24],[87,1],[188,-32]],[[22637,21591],[241,-26],[133,-25],[106,-33],[154,-78],[203,-124],[141,-68],[78,-13],[78,-31],[80,-50],[112,-33],[143,-17],[116,-58],[135,-148],[19,-21],[9,-11]],[[19191,24025],[51,-210],[37,-91],[61,-63],[133,-32],[67,-72],[44,-122],[15,-83],[-13,-44],[-1,-57],[11,-71],[-12,-61],[-34,-51],[-25,-76],[-13,-100],[6,-66],[25,-31],[38,-29],[50,-27],[102,-19],[154,-12],[96,-34],[40,-57],[93,-42],[149,-27],[90,-30],[32,-34],[116,-30],[200,-28],[116,-42],[31,-56],[-10,-56],[-51,-56],[-24,-47],[5,-37],[22,-23],[39,-9],[48,-37],[59,-64],[90,-26],[122,14],[78,-26],[35,-64],[67,-51],[149,-56],[70,-32],[32,-33],[18,-42],[37,-27],[54,-11],[237,-10],[114,-14],[87,-26],[64,-6],[41,14],[52,-3],[63,-22],[95,-5],[189,18]],[[29332,38077],[163,61],[69,41],[28,43],[46,12],[62,-19],[47,-3],[47,20],[152,117],[95,170],[89,262],[68,160],[47,59],[24,47],[0,36],[51,130],[103,225],[29,146],[-44,68],[-17,45],[12,23],[-34,65],[-78,108],[-57,65],[-36,22],[-39,51],[-40,79],[-43,56],[-48,33],[-30,50],[-13,67],[20,78],[80,134]],[[21091,26026],[82,-189],[22,-90],[-11,-54],[6,-115],[25,-178],[77,-199],[131,-219],[63,-131],[-3,-42],[-12,-28],[-21,-16],[-8,-34],[3,-54],[13,-67],[24,-80],[39,-81],[54,-82],[37,-88],[22,-94],[-8,-201],[-37,-307],[-56,-199],[-74,-91],[-26,-128],[23,-167],[1,-114],[-21,-61],[0,-70],[22,-78],[-1,-49],[-24,-19],[32,-35],[86,-51],[70,-57],[54,-63],[57,-32],[59,-2],[44,-41],[28,-80],[65,-53],[101,-27],[57,-53],[13,-79],[-10,-47],[-33,-14],[-28,-31],[-22,-46],[22,-38],[66,-28],[43,-32],[20,-36],[54,-47],[87,-57],[117,-61],[222,-100]],[[35897,33114],[94,75],[63,69],[62,87],[32,61],[2,34],[-6,18],[-16,1],[-22,31],[-28,61],[-46,33],[-94,8]],[[35790,33694],[-45,56],[-35,21],[-38,3],[-38,18],[-37,32],[-36,3],[-36,-25],[-32,-10],[-30,5],[-27,20],[-26,33]],[[34685,34144],[-169,31]],[[34202,34409],[-165,115],[-64,57],[-21,24],[-37,5],[-50,-17],[-39,-3],[-26,22],[-35,10],[-45,-3],[-26,-21],[-1,-31],[-31,-18],[-53,-1],[-39,-25],[-38,2],[-44,23],[-49,-7],[-69,-32],[-229,-3],[-63,-10],[-30,-51],[-18,-95],[-20,-41],[-22,13],[-17,50],[-11,86],[-29,18],[-47,-50],[-34,-24],[-22,0],[-25,34],[-29,67],[-5,53],[21,38],[-13,21],[-69,5]],[[32075,34704],[-45,40],[-35,7],[-61,-21]],[[31934,34730],[-1,0]],[[23420,35278],[90,-29],[35,15],[11,50],[33,34],[55,16],[65,40],[75,63],[78,97],[81,132],[59,158],[55,275],[-9,139],[8,92],[20,91],[3,63],[-15,36],[-40,28],[-63,20],[-51,63],[-38,104],[-130,103],[-220,101],[-131,95],[-43,87],[-62,59],[-81,31],[-46,31],[-9,30],[-82,54],[-233,115]],[[21763,36283],[196,-198],[38,-61],[28,-19],[32,5],[48,-26],[97,-83],[163,-168],[67,-84],[24,-57],[38,-35],[54,-14],[37,11],[21,34],[40,30],[60,24],[69,-19],[78,-63],[69,-20],[59,22],[62,-47],[64,-117],[53,-69],[41,-21],[30,-39],[19,-59],[24,-26],[28,5],[22,24],[15,45],[27,21],[59,-1]],[[22597,40203],[0,8],[-3,50],[-35,61],[-16,4],[-18,-12],[-9,-6],[-4,-3],[-15,11],[-1,16],[-1,11],[9,44],[-20,46],[-49,48],[-1,3],[-25,47],[-2,47],[0,4],[-9,30],[-2,5],[-19,17],[-11,30],[-3,43],[14,51],[31,60],[-6,91],[-44,123],[-25,89],[-4,55],[6,40],[27,39]],[[34573,34383],[115,-21],[145,3],[62,8],[26,13],[9,15],[-9,16],[11,29],[31,40],[49,23],[68,4],[48,45],[27,86],[29,52],[31,20],[9,28],[-13,37],[10,41],[35,43],[31,70],[27,98],[46,68],[64,40],[40,45],[20,77]],[[19734,47596],[7,-47],[3,-103],[6,-10],[64,-99],[136,-103],[138,-44],[139,15],[156,33],[172,53],[147,23],[122,-8],[94,-24],[68,-40],[106,-39],[144,-38],[215,22],[286,81],[247,-7],[208,-96],[138,-35],[65,25],[49,-25],[49,-110],[-22,-51],[30,-89],[74,-143],[37,-92],[-2,-42],[21,-30],[42,-16],[16,-31],[-9,-45],[19,-59],[46,-72],[19,-54],[-11,-78]],[[36570,35787],[-80,131],[-17,64],[29,61],[25,58],[-12,15],[-41,-10],[-35,32],[-28,73],[-7,50],[15,27],[47,45],[53,6],[80,-8],[42,21],[43,41],[13,55],[20,23],[41,18],[45,46],[49,74],[44,41],[37,8],[45,52],[51,97],[93,72],[134,45],[110,-1],[84,-45],[83,10],[79,64],[70,33],[91,2],[139,24],[62,27],[32,35],[41,13],[51,-9],[88,52],[125,114],[126,51],[127,-12],[99,5],[72,24],[44,24],[18,26],[79,23],[212,30],[71,-57],[52,-11],[55,18],[47,42],[39,65],[54,27],[46,-3],[9,-2]],[[26449,38391],[22,109],[-1,86],[-25,146],[23,41],[10,109],[4,192],[15,123],[23,54],[18,201],[12,348],[33,218],[56,85],[29,95],[5,105],[17,77],[28,49],[17,58],[4,66],[-7,30],[-24,23],[-6,67],[13,179]],[[22362,41255],[8,16],[45,81],[10,73],[-7,34],[-10,49],[-3,64],[13,43],[-19,57],[-49,71],[0,4],[-5,50],[39,37],[83,7],[126,-24],[80,-2],[33,20],[19,39],[5,57],[16,30],[27,4],[38,33],[48,61],[60,32],[71,3],[53,29],[35,57],[46,38],[58,18],[30,27],[3,37],[26,35],[49,34],[26,37],[4,40],[41,37],[78,33],[60,11],[42,-11],[16,11],[-11,33],[12,29],[32,23],[37,51],[61,119],[64,-20],[73,27],[158,99],[13,61],[-21,99],[-52,156],[0,157],[53,157],[48,82],[43,7],[45,42],[47,77],[55,42],[65,7],[40,20],[15,33],[0,29],[-15,24],[12,42],[39,59],[25,60],[10,61],[32,33],[38,6],[22,2],[22,-1],[99,-11],[39,18],[11,44],[30,42],[48,41],[25,37],[0,32],[13,18],[25,3],[6,11],[-13,17],[46,12],[105,8],[63,32],[20,57],[91,58],[163,59],[84,57],[6,53],[51,54],[76,43],[45,22],[22,16],[24,20],[17,30],[66,88],[57,44],[43,-3],[44,14],[45,31],[23,43],[0,52],[11,30],[20,53],[63,113],[56,45],[33,2],[29,-5],[19,4],[17,6],[17,10],[21,17],[40,47],[42,65],[22,76],[48,65],[75,53],[35,53],[-4,55],[60,85],[199,176]],[[17987,40017],[46,82],[1,71],[-30,87],[14,64],[58,41],[62,17],[101,-11],[111,-9],[46,-20],[19,-34],[67,-57],[116,-81],[86,-79],[58,-78],[56,-46],[55,-14],[46,-35],[38,-57],[68,-54],[98,-49],[77,-26],[57,-2],[33,8],[16,17],[26,-2],[58,-13],[166,-48],[123,-4],[80,41],[41,30],[30,3],[23,-9],[27,-10],[21,5],[13,15],[17,4],[21,-18],[31,-1],[29,22],[36,6],[38,-15],[58,5],[117,37],[10,10],[36,36],[33,13],[34,-3],[31,28],[28,61],[37,45],[46,31],[29,38],[10,47],[40,34],[71,21],[48,53],[26,86],[36,48],[45,11],[40,36],[35,62],[35,36],[34,9],[45,-12],[54,-33],[48,-3],[44,25],[35,36],[26,45],[46,26],[97,11],[11,34],[28,13],[51,1],[22,14],[11,22],[24,-5],[49,17],[69,51],[56,25],[43,0],[28,23],[18,25],[18,5],[25,8],[40,40],[36,1],[26,-6],[25,13],[10,31],[2,22],[-20,9],[5,14],[31,18],[35,5],[37,-8],[15,18],[3,38],[15,20],[35,0],[26,20],[7,48],[19,22],[28,-2],[59,29],[135,93]],[[15181,49793],[146,-33],[67,1],[52,36],[198,117],[65,56],[-1,33],[20,35],[41,38],[16,34],[-7,31],[43,86],[91,141],[54,143],[17,145],[70,188],[121,230],[73,169],[25,108],[-3,55],[-29,3],[5,99],[59,296],[9,235],[21,124],[36,90],[14,81],[-7,73],[11,76],[28,79],[14,77],[-2,74],[30,71],[64,68],[31,71],[-1,74],[45,66],[89,56],[81,68],[71,80],[28,80],[-16,81],[12,132],[39,181],[11,137],[-19,92],[4,64],[41,55]],[[16933,54089],[20,124],[-12,142],[-38,202],[-64,115],[-91,26],[-90,51],[-90,75],[-61,34],[-33,-9],[-33,20],[-34,49],[-34,30],[-51,19],[-28,15],[-6,37],[6,63],[-13,73],[-31,83],[-4,68],[24,54],[-11,51],[-47,49],[13,100],[72,152],[35,130],[-1,109],[-21,91],[-39,69]],[[22835,37471],[-37,42],[-31,86],[-38,143],[-40,101],[-42,59],[-28,56],[-15,51],[0,40],[16,30],[-13,62],[-42,94],[-4,27],[14,14],[26,57],[31,117],[1,82],[-28,49],[-12,40],[2,32],[-17,46],[-39,61],[-29,32],[-21,2],[-8,22],[7,43],[-20,51],[-47,60],[1,111],[49,163],[23,66],[5,41],[30,22],[12,41],[12,21],[28,17],[18,42],[7,68],[-23,100],[-54,134],[-21,77],[12,20],[0,18],[-13,17],[2,13],[17,17],[-2,22],[-18,49],[12,27],[21,10],[5,21],[-8,37],[8,28],[34,22],[19,29]],[[15111,41587],[-62,189],[-34,116],[-1,74],[22,73],[-66,99],[-154,125],[-98,116],[-42,108],[-36,63],[-30,18],[-30,50],[-29,83],[-33,61],[-37,40],[-19,70],[-1,101],[-62,196],[-124,289],[-65,190],[-6,90],[-28,94],[-48,97],[-53,67],[-56,38],[-44,53],[-49,104],[-76,43],[-49,50],[-47,71],[8,105],[65,139],[48,80],[32,20],[15,43],[-2,66],[16,43],[34,18],[10,40],[-13,60],[3,44],[21,27],[9,37],[-1,46],[21,30],[41,12],[22,25],[3,38],[25,14],[47,-9],[86,33],[126,76],[90,38],[55,-1],[42,-11],[28,-21],[14,-31],[-1,-41],[15,-22],[29,-4],[6,-14],[-8,-6],[5,-22],[20,-32],[16,-2],[12,29],[60,-12],[109,-53],[109,-26],[112,-1],[60,-12],[9,-22],[27,-20],[45,-17],[58,-6],[72,4],[44,-10],[23,-39],[191,-28],[76,-3],[24,13],[21,-4],[16,-21],[45,38],[74,98],[120,59],[166,20],[100,42],[33,62],[48,49],[62,36],[50,-5],[36,-45],[52,-39],[65,-33],[42,11],[19,57],[26,37],[34,17],[46,3],[59,-12],[48,-28],[38,-42],[68,9],[152,93]],[[19298,26136],[61,-67],[47,-14],[52,16],[36,35],[20,54],[5,41],[-10,26],[15,51],[58,111],[70,62],[44,62],[41,82],[20,83],[-2,104],[7,15]],[[16884,51680],[-23,-43],[-6,-46],[6,-65],[14,-57],[36,-74],[58,-45],[14,-35],[-9,-41],[105,-42],[218,-43],[129,-2],[37,39],[32,60],[27,79],[32,47],[57,21],[173,13],[69,17],[21,25],[39,19],[56,14],[50,-2],[45,-18],[55,22],[65,62],[129,73],[192,82],[123,61],[54,39],[41,53],[29,65],[57,66],[85,68],[48,49],[11,32],[98,57],[184,84],[132,109],[79,135],[91,73],[101,8],[67,15],[45,29],[4,3],[48,17],[30,-7],[27,-26],[48,11],[68,47],[98,10],[130,-29],[171,0],[118,16],[94,12],[132,31],[8,5],[30,19],[14,9],[85,-3],[155,-45],[42,-12]],[[20670,21473],[166,-53],[102,-16],[94,4],[90,-11],[87,-26],[124,-5],[163,18],[132,3],[102,-12],[97,-26],[90,-40],[99,-25],[107,-9],[88,-48],[69,-87],[57,-95],[44,-102],[85,-62],[128,-22],[89,-34],[51,-44],[59,-35],[69,-26],[77,-11],[85,3],[129,-63],[172,-131],[108,-70],[44,-9],[62,-45],[120,-121],[138,-24],[95,-57],[109,-84],[39,-69]],[[19169,49873],[239,35],[183,34],[101,32],[81,40],[96,6],[112,-29],[95,-13],[79,3],[71,34],[63,66],[68,13],[73,-40],[70,36],[66,112],[40,49],[13,-12],[16,14],[19,39],[54,46],[62,44],[47,21],[13,6],[64,-23],[31,-4],[11,-13],[3,-4],[19,-55],[21,-9],[32,-23],[61,-58],[51,-61],[21,-16],[18,-13],[27,-28],[8,-39],[-7,-26],[-4,-14],[32,-92],[15,-19],[7,-10],[12,-35],[-2,-5],[-10,-30],[27,-41],[66,-180],[4,-55],[15,-25],[18,-74],[30,-69],[-7,-47],[12,-46],[0,-1],[10,-139],[-11,-58],[-28,-24],[-56,-11],[-83,1],[-61,-83],[-57,-253],[27,-171],[49,-102],[80,-90],[60,-40],[41,10],[96,-36],[154,-82],[105,-29],[56,24],[73,13],[90,1],[59,13],[29,24],[37,3],[44,-19],[59,-6],[73,6],[78,-17],[120,-58],[165,-40],[134,6],[238,57],[179,37],[117,6],[113,-10],[106,-43],[98,-76],[111,-65],[184,-81],[94,-119],[96,-77],[193,-111],[322,-160],[34,-8]],[[24633,47487],[53,0],[53,-9],[63,-33],[53,-56],[43,-77],[22,-66],[1,-53],[52,-78],[102,-102],[36,-53],[32,-47],[33,-98],[89,-134],[214,-255],[78,-74],[59,-25],[64,-3],[67,-18],[68,-34],[49,-10],[51,21]],[[18867,23166],[67,-263],[33,-116],[1,-51],[-22,-22],[-11,-31],[0,-39],[15,-29],[32,-21],[75,-14],[119,-8],[82,-23],[44,-37],[34,-45],[25,-53],[31,-30],[39,-8],[29,-67],[19,-125],[31,-90],[44,-56],[26,-60],[9,-64],[53,-67],[98,-71],[82,-38],[66,-4],[79,38],[91,78],[72,41],[52,3],[107,-56],[163,-115],[115,-106],[103,-144]],[[23628,50091],[-132,-42],[-59,-38],[-30,-46],[-46,-24],[-91,-3],[-186,78],[-84,19],[-43,-15],[-133,38],[-221,90],[-112,91],[-4,91],[-28,68],[-53,47],[-42,56],[-32,64],[-31,41],[-30,17],[-50,6],[-103,-6],[-109,14],[-45,-22],[-16,-54],[-60,-20],[-104,15],[-80,32],[-56,48],[-36,52],[-16,56],[-42,71],[-100,129],[-94,69],[-36,59],[-9,73],[-65,35],[-120,-1],[-115,24],[-162,73],[-1,0],[-33,78],[-10,59],[2,58],[0,9],[-11,48],[-1,4],[-27,35],[0,110],[14,92],[13,92],[6,139],[-13,96],[18,56],[6,17],[5,4],[55,45],[34,77],[4,55],[3,50],[36,85],[66,67],[9,27],[13,39],[-6,21],[-15,45],[4,7],[28,50]],[[21052,52741],[14,26],[113,101],[69,118],[37,204],[-6,126],[72,81],[149,80],[107,90],[66,101],[106,60],[146,20],[103,39],[93,88],[83,36],[79,5],[103,-12],[89,-18],[74,-23],[66,-36],[49,-42],[16,-21],[10,-9],[9,-1],[13,1],[10,2],[33,10],[29,17],[98,35],[52,44],[-18,47],[-5,36],[10,24],[32,15],[55,4],[42,15],[28,26],[42,-6],[44,-35],[26,-17],[16,-4],[26,-3],[36,2],[45,27],[48,54],[79,31],[109,7],[103,31],[97,57],[96,21],[95,-13],[105,34],[114,83],[120,69],[125,55],[54,6]],[[24458,54429],[38,5],[59,-34],[78,-12],[149,15],[21,-4],[144,122],[191,116]],[[24515,54702],[-9,-42],[8,-32],[26,-23],[-9,-47],[-64,-107],[-9,-22]],[[24727,55114],[-5,-19],[-68,-218],[-49,-95],[-78,-67],[-12,-13]],[[24362,55223],[-6,-28],[-10,-19],[-58,-110],[17,-97],[72,-122],[63,-77],[53,-31],[22,-37]],[[35510,32495],[-295,-180],[-65,-28],[-67,-8],[-90,5],[-55,-7],[-17,-19],[-19,-3],[-20,15],[11,46],[41,77],[51,49],[63,21],[63,40],[66,60],[76,41],[88,22],[93,61],[97,98],[99,58],[102,18],[35,-2],[38,-9],[45,14],[104,57],[69,6],[32,-44],[35,-13],[37,19],[35,3],[33,-15],[89,41],[144,97],[132,71],[181,69]],[[36745,33155],[554,265],[187,78],[88,13],[52,-26],[59,-8],[66,9],[74,-19],[81,-48],[83,0],[109,63]],[[34693,35180],[-160,220],[29,41],[1,20],[-15,11],[-1,27],[13,40],[-10,60],[-33,81],[-72,65],[-110,48],[-80,18],[-51,-13],[-53,34],[-53,80],[-55,20],[-82,-60]],[[33592,35689],[-136,65]],[[32887,35721],[-46,-11],[-44,-44],[-58,-81],[-51,-12],[-47,56],[-42,8],[-37,-39],[-43,-23],[-72,-10]],[[26377,25050],[65,-10],[96,-44],[127,-76],[94,-30],[104,32]],[[25597,25488],[69,-59],[277,-190],[198,-104],[120,-17],[48,-24],[30,-25],[38,-19]],[[25597,25488],[180,-52],[106,-13],[80,12],[102,-45],[125,-102],[93,-98],[94,-140]],[[25596,25489],[1,-1]],[[26750,29543],[-136,-85],[-40,-51],[18,-69],[17,-74],[-5,-75],[-20,-100],[-44,-73],[-68,-46],[-34,-101],[0,-156],[-22,-153],[-45,-147],[-2,-23],[-7,-36],[-14,-18],[-18,-17],[-32,-14],[-88,-46],[-57,-55],[-23,-59],[-26,-111],[-30,-162],[-2,-117],[25,-69],[1,-78],[-24,-84],[-3,-72],[18,-58],[2,-74],[-8,-53],[-1,-46],[-10,-33],[-13,-30],[-41,-48],[-210,-304],[-154,-197],[-95,-77],[-86,-24],[-55,-47],[-23,-71],[-2,-61]],[[25393,26329],[18,-51],[-1,-71],[-31,-138],[-20,-127],[9,-88],[29,-93],[44,-94],[58,-96],[98,-83],[0,0]],[[29331,30846],[-9,-269],[-5,-128],[-7,-54],[-22,-156],[-40,-124],[-10,-31],[-46,-82],[-7,-2],[-34,-8],[-29,-25],[-15,-32],[-3,-7],[-33,-33],[-49,-26],[-26,-29],[-4,-31],[-47,-20],[-30,-3],[-59,-6],[-52,-25],[-16,-41],[-29,-33],[-44,-24],[-21,-40],[0,-4],[2,-51],[-25,-48],[-53,-40],[-49,-1],[-39,33],[-5,4],[-60,26],[-75,12],[-63,-10],[-50,-31],[-44,-50],[-17,-29],[-22,-39],[-43,-11],[-30,29],[-17,16],[-60,14],[-73,-18],[-58,7],[-43,30],[-66,3],[-83,-22],[-6,-1],[-181,27],[-272,79],[-230,30],[-282,-29]],[[29864,32299],[-78,-51],[-57,-113],[-35,-175],[-49,-108],[-92,-60]],[[29553,31792],[130,42],[49,116],[48,180],[38,106],[46,63]],[[30397,32907],[-100,-128],[-101,-78],[-135,-69],[-90,-103],[-45,-137],[-62,-93]],[[31408,34300],[-89,-80],[-38,-75],[-17,-98],[-47,-94],[-77,-93],[-35,-73],[6,-53],[-11,-49],[-41,-64]],[[31994,35284],[-27,-46],[-30,-18],[-41,-4],[-46,-29],[-51,-54],[-34,-50],[-16,-46],[-1,-33],[4,-9],[-10,-15],[-28,-3],[-26,-33],[-22,-108]],[[29031,38537],[-231,-26],[-238,-132],[-133,-60],[-107,-31],[-93,-68],[-78,-104],[-39,-75],[0,-47],[35,-46],[69,-47],[40,-61],[11,-76],[34,-65],[57,-54],[18,-49],[-21,-46],[-7,-38],[7,-31],[33,-34],[60,-39],[39,-40],[18,-41],[-10,-43],[-38,-44],[-9,-42],[20,-38],[-12,-36],[-43,-35],[-66,-28],[-90,-21],[-71,-57],[-50,-93],[-44,-59],[-37,-26],[-22,-34],[-8,-45],[3,-39],[24,-51],[-129,-221],[-63,-91],[-60,-53],[-64,-97],[-77,-54],[-111,-44],[-40,-117],[30,-191],[-14,-122],[-57,-53],[-34,-62],[-12,-73],[-26,-48],[-39,-24],[-14,-32],[13,-41],[52,-28],[91,-16],[53,-20],[16,-22],[24,-90],[2,-45],[-6,-37],[-23,-44],[-40,-49],[-13,-30],[16,-12],[-7,-28],[-29,-45],[-41,-31],[-55,-17],[-27,-21],[0,-26],[-40,-50],[-80,-75],[-83,-62],[-85,-49],[-36,-33],[13,-17],[1,-17],[-6,-8],[-6,-8],[20,-38],[10,-10],[44,-49],[29,-75],[1,-49],[2,-41],[11,-41],[19,8],[1,0],[20,-6],[19,-21],[-4,-22],[-13,-11],[-13,-10],[0,-18],[19,-9],[7,-4],[4,-20],[-6,-9],[-12,-16],[7,-21],[11,-6],[21,-11],[13,-46],[-6,-76],[-14,-56],[-5,-8],[-17,-27],[-4,-27],[16,-20],[-7,-40],[-31,-61],[-6,-62],[11,-41],[6,-22],[-5,-100],[-40,-203],[-1,-6],[8,-86],[25,-52],[44,-46],[31,-69],[17,-92],[-18,-57],[-54,-21],[-3,-35],[48,-48],[25,-53],[1,-57],[49,-72],[99,-87],[55,-96],[11,-104],[33,-79],[57,-55],[17,-60],[-22,-66],[18,-67],[59,-67],[23,-44],[-12,-20],[13,-43],[38,-66],[21,-59],[4,-52],[-7,-47],[-30,-64],[4,-59],[-19,-43],[-41,-49],[-13,-40],[16,-32],[-6,-16],[-27,1],[-36,-22],[-45,-45],[-38,-22],[-33,1],[-40,-31],[-48,-62],[-6,-58]],[[27371,30918],[19,-27],[18,-26],[15,-48],[0,-5],[-5,-36],[-4,-5],[-31,-40],[-65,-48],[-19,-20],[-1,-20],[-16,-40],[-40,-63],[-14,-23],[-13,-39],[-3,-29],[-34,-33],[-72,-47],[-18,-12],[-19,-29],[-1,-6],[-3,-25],[-12,-18],[-8,-5],[-4,-3],[-17,-31],[-14,-51],[0,-7],[-2,-59],[12,-80],[-3,-26],[-19,-14],[-7,-10],[-5,-8],[-3,-35],[-1,-3],[0,-1],[-14,-22],[-3,-4],[0,-1],[-29,-17],[-11,-20],[4,-13],[4,-9],[-22,-23],[-16,-7],[-36,-15],[-32,-32],[-5,-21],[-6,-21],[-29,-38],[-38,-28],[-8,-5],[-15,-45],[24,-82]],[[21684,35042],[37,43],[9,28],[-7,26],[16,23],[41,21],[58,-28],[76,-77],[70,-33],[99,16],[32,64],[49,44],[77,46],[76,-16],[74,-77],[63,-51],[53,-24],[60,-10],[68,3],[86,-119],[104,-242],[58,-182],[11,-124],[47,-72],[83,-22],[63,-79],[42,-137],[49,-79],[57,-21],[45,-51],[34,-79],[51,-41],[69,-2],[119,-44],[168,-86],[110,-69],[52,-50],[42,-65],[45,-120],[59,-169],[46,-76],[51,-40],[15,-17],[11,-13],[0,-4],[0,-16],[54,-41],[35,-20],[74,-42],[103,-120],[95,-178],[76,-112],[14,-20],[83,-85],[77,-60],[69,-34],[1,-1],[38,-28],[1,-4],[4,-18],[65,-45],[24,-13],[103,-56],[80,-69],[31,-64],[2,-5],[2,-1],[45,-25],[78,-44],[186,-63],[30,-10],[157,-35],[98,3],[32,-13],[109,-45],[184,-120],[111,-84],[41,-46],[23,-15],[97,-60],[299,-155],[132,-39],[63,-36],[7,-8],[30,-37],[37,-13],[27,13],[9,4],[75,-16],[114,-50],[89,-60],[24,-28],[80,-92],[11,-13]],[[17819,40942],[49,-43],[83,4],[200,54],[71,73],[73,39],[97,28],[102,54],[108,79],[50,51],[-7,22],[14,22],[33,20],[24,58],[16,94],[54,91],[93,86],[50,64],[8,41],[24,28],[40,14],[30,42],[7,25],[12,46],[43,57],[65,44],[36,38],[5,31],[42,30],[81,27],[68,5],[57,-19],[38,3],[21,24],[33,13],[69,0],[26,-9],[15,10],[15,22],[19,9],[32,-2],[47,27],[62,62],[87,53],[113,42],[58,4],[22,-11],[15,-16],[28,-8],[33,8],[39,-17],[50,-61],[27,-48],[3,-37],[16,-15],[29,7],[20,-8],[10,-21],[42,-4],[74,13],[48,0],[23,-14],[50,16],[117,67],[262,117],[91,66],[6,55],[-7,20],[-12,9],[-4,18],[7,33],[-5,19],[-7,11],[1,13],[36,31],[5,26],[-11,19],[4,14],[10,28],[50,73],[20,55],[-10,39],[31,52],[72,65],[27,32],[2,16],[13,10],[17,1],[13,12],[7,28],[29,20],[51,13],[35,-3],[18,-19],[28,8],[36,36],[37,11],[38,-14],[23,7],[8,27],[29,25],[52,22],[25,-10],[4,-26],[20,-12],[37,8],[29,-14],[20,-35],[27,-14],[35,0],[16,-18],[16,-8],[40,14],[30,-3],[16,-16],[19,1],[14,13],[29,-1],[32,-10],[43,5],[16,20],[19,11],[27,0],[23,10],[13,23],[23,5],[23,-3],[15,10],[-2,14],[13,8],[17,-2],[8,12],[-5,15],[9,14],[41,30],[47,27],[24,2],[16,-13],[10,19],[3,50],[17,11],[15,3],[41,-13],[29,10],[9,30],[12,7],[16,6],[40,-19],[52,17],[65,51],[29,33],[-7,14],[6,10],[20,6],[3,8],[1,9],[16,10],[0,19],[-33,63],[1,40],[35,17],[10,16],[-16,15],[-4,23],[6,30],[22,16],[37,2],[21,15],[5,28],[26,26],[45,23],[30,64],[24,158],[-28,153],[-34,63],[-49,23],[-13,23],[23,24],[13,32],[3,41],[16,22],[27,5],[10,17],[-8,29],[20,16],[48,5],[24,-8],[-1,-19],[13,-11],[25,-4],[19,10],[12,23],[36,11],[60,-1],[45,-23],[30,-46],[43,-18],[56,9],[18,-13],[-3,-24],[7,-22],[22,-16],[31,8],[40,31],[34,9],[29,-14],[51,20],[73,54],[21,-5],[9,-14],[14,-23],[32,-8],[14,14],[-8,59],[11,34],[28,9],[5,20],[10,40],[15,9],[13,16],[23,0],[29,5],[17,26],[1,81],[-7,47],[-14,14],[11,23],[38,33],[14,31],[-10,29],[19,36],[32,16],[27,-5],[27,10],[10,16],[8,27],[24,12],[27,-3],[23,18],[8,19],[-9,23],[14,22],[39,21],[52,6],[64,-8],[64,36],[23,23],[30,28],[11,36],[-16,35],[11,30],[20,11],[46,10],[30,24],[13,39],[42,30],[71,22],[75,71],[79,120],[23,97],[-40,108]],[[22058,31693],[30,-144],[-23,-78],[16,-78],[46,-103],[71,-93],[98,-84],[47,-62],[-1,-40],[29,-28],[59,-16],[55,21],[51,58],[50,17],[48,-22],[33,-36],[17,-48],[44,-34],[69,-21],[78,15],[88,51],[63,49],[38,49],[36,20],[35,-11],[53,-87],[72,-163],[35,-104],[-1,-45],[36,-81],[75,-118],[28,-87],[-20,-56],[10,-92],[40,-130],[10,-114],[-20,-99],[-3,-94],[14,-90],[29,-96],[45,-104],[19,-84],[-8,-97],[-9,-32],[28,-75],[61,-129],[73,-101],[86,-73],[47,-60],[7,-47],[30,-37],[54,-24],[59,-48],[67,-71],[55,-107],[44,-144],[80,-116],[115,-89],[103,-52],[92,-16],[82,13],[72,42],[53,2],[35,-39],[91,-47],[147,-53],[140,-68],[133,-80],[75,-59],[18,-37],[5,-74],[-7,-113],[8,-70],[23,-25],[7,-59],[-6,-91],[8,-69],[24,-46],[7,-36],[-11,-27],[-35,-21],[-59,-16],[-33,-30],[-9,-67],[18,-99],[-13,-70],[-40,-75],[0,-43],[40,-11],[26,-62],[13,-112],[-7,-86],[-27,-57],[6,-46],[68,-53]],[[19762,26797],[14,4],[137,5],[69,-18],[32,-40],[16,-42],[1,-46],[38,-26],[75,-7],[87,9],[99,27],[57,3],[22,-28],[32,-42],[7,-56],[-8,-84],[13,-75],[36,-66],[9,-45],[7,-20],[28,-7],[88,6],[75,-26],[61,-59],[88,-36],[114,-14],[76,-26],[56,-57]],[[18106,13687],[400,11],[162,-4],[57,-15],[56,3],[55,21],[117,-2],[178,-25],[101,0],[23,24],[32,12],[61,1],[148,0],[70,20],[41,39],[92,11],[143,-20],[99,10],[83,57],[22,10]],[[35372,35849],[13,54],[14,16],[20,-4],[19,50],[20,104],[28,61],[38,19],[12,37],[-11,55],[12,85],[37,116],[40,88],[42,62],[-30,132],[-102,201],[-39,115],[23,27],[9,89],[-7,225],[82,22],[40,29],[24,43],[51,41],[117,58],[189,175],[75,102],[25,87],[40,89],[54,91],[42,120],[29,151],[39,113],[50,78],[45,135],[41,195],[37,117],[34,39],[17,102],[-2,165],[9,112],[21,59],[44,71],[68,85],[18,96],[-30,108],[-6,77],[19,48],[-12,64],[-45,81],[-16,56],[13,32],[-5,56],[-22,79],[5,53],[31,27],[39,85],[67,214]],[[38244,41916],[95,-25],[77,12],[90,41],[60,72],[30,103],[40,30],[41,4],[46,5],[47,21],[36,25],[26,29],[13,39],[2,49],[33,30],[62,13],[33,29],[3,46],[53,43],[103,42],[74,-5],[45,-51],[106,-54],[167,-57],[83,-55],[25,-11],[31,0],[23,21],[26,24],[25,-3],[14,-29],[1,-57],[32,-30],[62,-5],[27,-23],[-8,-41],[15,-70],[40,-100],[183,-131],[488,-246],[106,-44],[41,-39],[10,-49],[39,-48],[67,-49],[50,-23],[34,2],[25,-27],[18,-54],[27,-27],[36,0],[25,-15],[7,-13]],[[26715,40852],[44,215],[50,99],[71,55],[57,115],[44,174],[12,154],[-18,134],[-62,92],[-103,52],[-63,68],[-22,83],[2,78],[27,74],[54,72],[83,72],[19,44],[-46,16],[1,100],[48,185],[16,142],[-16,100],[14,87],[46,74],[23,69],[0,62],[15,48],[42,52],[-6,53],[-54,84],[-101,134],[-45,107],[12,82],[40,73],[68,64],[81,44],[92,25],[84,41],[76,58],[47,74],[19,91],[103,122],[189,153],[102,114],[15,73],[32,57],[48,41],[48,89],[46,136],[41,81],[36,26],[46,5],[54,-15],[51,19],[46,52],[27,60],[10,68],[73,70],[95,51],[41,21],[103,70],[69,68],[72,95],[112,184],[104,241],[57,205],[44,251],[55,136],[66,22],[59,4],[103,-23]],[[32841,37425],[-51,110],[-59,30],[-56,63],[-73,107],[-28,90],[19,74],[31,53],[46,33],[57,74],[67,115],[63,68],[59,21],[35,60],[11,99],[-1,69],[-13,39],[4,33],[22,27],[115,82],[53,10],[39,-26],[36,-4],[33,17],[105,93],[27,51],[-4,46],[15,19],[34,-9],[37,14],[39,36],[25,53],[11,70],[-15,51],[-40,34],[-9,96],[22,157],[-11,142],[-67,192],[30,75],[2,32],[-15,14],[-5,22],[7,29],[-33,43],[-73,54],[-68,140],[-78,271],[-2,70],[33,48],[53,57],[17,88],[-33,102],[10,90],[53,81],[17,90],[-20,101],[-4,109],[11,116],[21,84],[30,52],[8,44],[-14,35],[1,29],[17,24],[-5,52],[-26,79],[-7,91],[12,105],[47,146],[80,190],[36,134],[-9,80],[5,59],[18,38],[-5,67],[-26,98],[-6,60],[17,24],[32,16],[49,8],[31,48],[14,87],[51,68],[89,48],[50,57],[11,66],[27,50],[43,36],[17,36],[-7,35],[-25,12],[-43,-9],[-37,15],[-31,40],[1,25],[32,13],[39,36],[44,60],[43,160],[42,260],[6,241],[-31,223],[-27,131],[-22,38],[-59,36],[-98,33],[-59,39],[-19,45],[-45,20],[-68,-4],[-71,15],[-73,35],[-62,14],[-52,-8],[-42,-27],[-33,-47],[-36,-29],[-60,-17]],[[32513,45794],[25,328],[-8,187],[-31,155],[-5,91],[30,41],[23,16]],[[18308,37834],[7,82],[14,31],[21,6],[4,34],[-13,60],[14,64],[61,99],[29,69],[0,86],[-21,128],[-19,83],[-19,39],[-33,31],[-47,22],[-43,63],[-39,102],[-74,57],[-109,12],[-97,38],[-85,65],[-120,67],[-153,70],[-107,24],[-63,-22],[-51,-4],[-60,19],[-166,171],[-54,79],[2,43],[-16,70],[-37,95],[-49,79],[-61,65],[-68,110],[-75,155],[-15,112],[43,67],[-28,133],[-98,197],[-48,122],[1,48],[33,23],[68,-1],[76,-22],[85,-45],[56,-19],[29,5],[0,54],[-28,101],[-7,94],[13,87],[-33,71],[-79,56],[-49,65],[-18,74],[-2,64],[13,54],[-3,19],[-13,12],[-8,10],[6,32],[15,20],[9,17],[-4,10],[-12,6],[-19,25],[-8,37],[9,19],[27,1],[20,17],[13,34],[-24,18],[-63,2],[-34,43],[-6,83],[-13,61],[-20,40],[-23,10],[-14,-1],[-8,9],[-6,16],[-16,26],[-41,33],[-17,51],[8,70],[-13,37],[-22,16],[-8,19],[3,18],[-2,15],[-12,8],[-40,125],[19,80],[67,78],[48,35],[29,-9],[13,20],[-2,51],[-19,16],[-35,-21],[-31,1],[-27,21],[-20,6],[-15,0],[-6,19],[-1,68],[-16,42],[-32,16],[-11,21],[9,26],[-6,11],[-22,-2],[-7,17],[8,38],[-5,32],[-20,26],[-26,11],[-12,1],[-13,10],[10,13],[-6,18],[-51,23],[-28,-1],[-6,-27],[-19,1],[-33,30],[-10,27],[12,23],[-10,38],[-33,53],[0,16],[15,4],[7,16],[-23,45],[-1,43],[21,40],[-23,50],[-67,60],[-47,27],[-27,-7],[-11,9],[5,24],[-14,13],[-8,18],[10,20],[74,54],[9,27],[-3,17],[-16,19],[11,40],[38,52],[4,55],[-30,57],[1,38],[15,16],[-12,36],[-25,27],[-10,29],[17,24],[1,52],[-23,75],[4,55],[33,35],[19,0],[12,-4],[12,8],[6,17],[23,9],[36,-9],[48,17],[57,49],[29,-3],[21,-1],[16,7],[2,23],[31,55],[59,73],[46,21],[32,-29],[22,-3],[12,22],[15,3],[15,-8],[18,7],[14,48],[27,30],[33,16],[10,17],[-6,16],[3,16],[11,14],[-2,20],[-5,9],[2,11],[9,13],[2,16],[-4,13],[9,14],[27,20],[11,28],[-7,61],[9,63],[24,64],[14,8],[17,-1],[24,-28],[41,4],[53,43],[29,40],[6,29],[15,10],[18,-4],[6,17],[-13,24],[14,39],[44,42],[26,6],[20,4],[5,13],[-3,23],[8,26],[37,37],[0,22],[-10,8],[-4,14],[15,31]],[[32481,28715],[-66,32],[-65,12],[-84,2],[-46,-6],[-9,-14],[-51,4],[-138,32],[-84,25],[-103,104],[-148,191],[-98,105],[-48,18],[-62,45],[-77,72],[-53,34],[-27,-4],[-34,15],[-40,33],[-37,8],[-33,-16],[-30,0],[-48,1],[-25,26],[-46,66],[-49,44],[-52,21],[-34,2],[-23,-9],[-24,11],[-25,-4],[-29,5],[-43,27],[-62,4],[-81,-20],[-68,10],[-55,39],[-47,9],[-34,-2],[-27,11],[-24,18],[-26,-3],[-21,-9],[-20,10],[-32,-6],[-28,-17],[-23,7],[-14,24],[-13,21],[-28,12],[-32,-1],[-38,-14],[-21,-21],[-6,-27],[-27,-18],[-49,-8],[-28,6],[-8,22],[-30,8],[-53,-5],[-33,6],[-6,0],[-48,-4],[-68,-57],[-48,-21],[-27,14],[-32,-24],[-35,-64],[-12,-8],[-31,-21],[-41,-8],[-38,-8],[-23,-8],[-46,3],[-39,-16],[-32,-34],[-35,-13],[-37,8],[-34,-12],[-30,-34],[-18,-36],[-2,-21],[-2,-18],[-30,-27],[-42,-11],[-12,-3],[-19,-20],[0,-1],[3,-27],[-24,-21],[-62,-15],[-30,-7],[-66,-40],[-41,-56],[-21,-17],[-22,-19],[-4,-1],[-65,-21],[-92,-57],[-13,-36],[9,-9],[26,-24],[12,-29],[-9,-25],[-29,-4],[-48,19],[-13,1],[-21,3],[-21,-11],[-9,-21],[1,-26],[0,-4],[-17,-20],[-9,-3],[-27,-8],[-22,-25],[-7,-28],[-3,-11],[-44,-49],[-29,-22],[-50,-37],[-63,-80],[-8,-17],[-38,-83],[-53,-66],[-44,-23],[-17,-9],[-42,-45],[-24,-58],[-65,-90],[-107,-123],[-98,-84],[-87,-46],[-49,-51],[-8,-42],[-3,-15],[-57,-66],[-102,-73],[-39,-44],[-14,-16],[-3,-48],[-40,-60],[0,-1],[-77,-77],[-27,-66],[34,-82],[1,-2],[5,-102],[-15,-40],[-26,-11],[-8,-3],[-7,-26],[6,-13],[12,-26],[1,-51],[-16,-63],[-36,-72],[-14,-22],[-41,-59],[-13,-54],[23,-22],[6,-5],[14,-29],[-1,-31],[-12,-45],[-22,-58],[-32,-40],[-3,-3],[-46,-28],[-14,-36],[18,-43],[3,-45],[-13,-47],[8,-46],[5,-8],[24,-36],[-3,-50],[-27,-56],[-23,-48]],[[30085,40528],[90,101],[20,85],[-18,104],[23,74],[65,45],[42,101],[19,157],[25,95],[32,32],[7,32],[-19,30],[-6,36],[6,41],[37,63],[68,83],[55,53],[41,22],[36,42],[29,60],[71,23],[114,-17],[64,24],[15,65],[32,63],[48,62],[14,51],[-20,42],[-11,63],[-1,83],[-30,61],[-58,37],[-46,54],[-31,71],[-46,43],[-60,16],[-43,25],[-26,34],[-16,50],[-6,68],[-27,94],[-50,120],[15,185],[80,249],[68,163],[56,75],[75,47],[95,20],[64,43],[34,67],[0,62],[-34,57],[-44,32],[-55,6],[-55,39],[-55,71],[-31,63],[-10,82],[-40,57],[-14,55],[-1,74],[-29,102],[-56,132],[-54,83],[-51,34],[-34,67],[-16,98],[33,155],[53,130],[32,80],[29,130],[-25,49],[3,48],[32,47],[20,83],[13,175]],[[30625,45780],[170,180],[73,108],[32,97],[48,16],[65,-63],[36,-52],[8,-39],[23,-31],[36,-21],[40,9],[44,40],[17,40],[-10,39],[11,52],[32,66],[-10,47],[-52,29],[-64,61],[-75,92],[-33,84],[9,76],[-32,115],[-34,71],[-40,83],[-44,156],[-19,205],[13,43],[22,30]],[[21566,41579],[-29,-15],[-37,-20],[-238,-196],[-9,-7],[-51,-30],[-6,0],[-52,-4],[-34,-28],[-54,-22],[-107,-80],[-2,-3],[-53,-62],[-35,-58],[-42,-2],[-32,16],[-73,-6],[-28,-2],[-51,-20],[-57,-56],[-69,-103],[-29,-29],[-56,-30],[-65,-25],[-81,-38],[-35,-2],[-26,-6],[-6,-1],[-28,17],[-9,37],[-41,23],[-99,12],[-147,26],[-151,6],[-69,-3],[-6,0],[-62,-1],[-57,7],[-50,7],[-78,2],[-68,-36],[-82,-37],[-18,-8],[-45,-12],[-34,-1],[-32,5],[-38,24],[-8,8],[-45,46],[-41,-21],[-16,-12],[-14,-11],[1,117],[1,176],[0,156],[1,124],[0,145],[1,103],[18,26],[10,13],[17,43],[-6,17],[-15,42],[5,53],[14,37],[5,9],[14,27],[-43,-18],[-19,-10],[-19,-23],[-4,-4],[-6,-5],[-50,-33],[-37,-37],[-44,-30],[-47,-56],[-9,-11],[-38,-30],[-8,-7],[-47,-23],[-80,-79],[-65,-15],[-116,-8],[-58,-4],[-180,0],[-165,0],[-25,1],[1,47],[0,18],[4,46],[-10,9],[-46,39],[-4,60],[-15,41],[-19,50],[-39,32],[-55,12],[-78,24],[-13,4],[-135,29],[-73,1],[-56,1],[-127,-3],[78,101],[77,101],[-2,88],[-63,76],[-33,48],[-52,65],[-65,46],[-35,60],[2,17],[1,19],[-5,24],[-25,15],[-24,22],[-34,24],[0,0],[-39,32],[0,32],[-15,34],[-24,40],[0,32],[-23,51],[-24,36],[-25,24],[-35,34],[1,28],[25,13],[2,1],[11,33],[-4,32],[-30,20],[-35,10],[-10,12],[-37,46],[-34,30],[-23,18],[-13,20],[13,14],[15,21],[4,32],[-7,30],[0,26],[22,8],[24,-4],[25,16],[4,1],[28,5],[36,4],[18,18],[-2,32],[-22,63],[-23,26],[-2,12]],[[16933,43522],[732,-329],[1480,-389],[366,-207],[1925,-958]],[[21436,41639],[122,-57],[8,-3],[0,0]],[[21436,41639],[55,62],[31,0],[64,58],[60,22],[64,74],[6,84],[187,-10],[69,13],[44,-10],[106,-105],[58,22],[29,59],[69,24],[52,-21],[17,37],[127,93],[15,-7],[17,-74],[52,-43],[35,25],[86,130],[-14,64],[26,41],[69,52],[58,-25],[60,-3],[78,53],[38,-16],[23,22],[106,-6],[64,9],[-6,173],[35,-18],[49,21],[49,102],[-46,65],[49,74],[106,34],[18,65],[86,19],[3,58],[32,56],[410,-6],[49,-6],[69,-31],[29,-37],[26,-75],[52,-46],[11,-49],[55,9],[52,-25],[43,-130],[87,-27],[26,-108],[86,-31],[52,-44],[29,13],[23,77],[49,12],[29,28],[69,-25],[0,-30]],[[24808,42381],[67,-56],[14,-46],[-29,-59],[-17,-90],[17,-68],[-40,-9],[-12,-56],[41,-61],[-3,-37],[46,-121],[-26,-46],[-29,-16],[29,-92],[-9,-93],[-23,-47],[3,-139],[61,-120],[-21,-173],[21,-50],[-32,-21],[9,-62],[-9,-52],[32,-31],[666,-4],[0,-24],[37,-43],[67,15],[66,-28],[69,3],[44,-21],[60,-164],[-75,-105],[-49,-46],[0,-99],[26,-112],[49,-9],[35,-93],[29,-52],[-3,-81],[43,-98],[-55,-161],[-60,-77],[-26,-99],[-26,-37],[-72,-31],[-49,-68],[-3,-46],[-49,-93],[-21,-102],[-178,-127],[-43,-42]],[[25380,38992],[-122,70],[-105,50],[-34,-6],[-93,-10],[-92,-10],[-62,-10],[-42,11],[-138,0],[-17,12],[-37,26],[-46,44],[-5,6],[-92,108],[-14,55],[-1,2],[-38,18],[-32,-4],[-24,-3],[-58,8],[-78,33],[-33,14],[-105,49],[-23,-1],[-28,-1],[-44,30],[-80,73],[-37,29],[-14,31],[-3,7],[-17,57],[-32,12],[-41,-10],[-15,-10],[-29,-19],[-63,19],[-77,52],[-49,40],[-29,19],[-66,29],[-64,6],[-98,-42],[-14,3],[-65,14],[-51,6],[-74,9],[-62,18],[-36,10],[-9,2],[-6,12],[-33,67],[-21,52],[-64,33],[-50,39],[-60,61],[-31,20],[-54,17],[-23,9],[-28,12],[-3,25],[-2,13],[-19,50],[-5,13],[-34,61],[-16,4],[-18,-12],[-9,-6],[-4,-3],[-14,11],[-2,16],[-1,11],[9,44],[-20,46],[-49,48],[-1,3],[-25,47],[-2,47],[0,4],[-9,28],[-2,7],[-19,17],[-11,30],[-3,43],[14,51],[31,60],[-6,91],[-44,123],[-25,89],[-4,55],[6,40],[27,39],[8,16],[45,81],[10,73],[-7,34],[-10,49],[-3,64],[13,43],[-19,57],[-38,54],[-26,1],[-35,-14],[-44,-46],[-50,-8],[-45,28],[-141,-12],[-219,-28],[-88,-29],[-51,-12],[-62,-10],[-34,-17]],[[26580,48603],[-583,3],[-165,-3],[-66,-64],[-26,-87],[-32,-34],[-23,-74],[-37,-59],[-3,-49],[-46,-108],[-3,-41],[49,-68],[6,-37],[-21,-21],[-83,-25],[-32,-62],[-81,-21],[-60,6],[-52,114],[-58,53],[-17,37],[-84,18],[-29,25],[-75,-3],[-14,-34],[-139,-62],[-49,-62],[-29,-151],[12,-53],[-9,-83],[-29,-93],[0,-120],[-63,33],[-53,9],[-53,0],[2,13],[-37,87],[-61,68],[-72,55],[-41,16],[-25,43],[-47,25],[-66,80],[-58,40],[21,53],[63,-16],[43,53],[-6,83],[-31,37],[-3,87],[-20,49],[-46,34],[-24,68],[-37,53],[-6,46],[35,53],[-26,55],[-3,50],[23,46],[3,81],[26,40],[3,37],[-35,92],[3,41],[58,49],[-44,108],[-2,68],[-64,210],[-6,37],[-63,56],[-43,74],[49,93],[-12,65],[26,55],[-11,25],[-90,49],[-101,0],[-78,65],[-17,47],[-101,-10],[-46,33],[-11,7]],[[23655,49987],[13,81],[-10,49],[-126,16],[-83,0],[-136,12],[-65,21],[-14,14],[-2,16],[13,33],[0,2],[13,66],[-19,90],[-37,77],[-31,64],[-49,138],[-6,96],[1,102],[4,67],[-35,52],[-189,164],[-34,40],[-32,38],[-21,53],[-74,98],[-1,1],[5,8],[14,23],[14,-1],[29,0],[30,-21],[7,-5],[33,-55],[24,-13],[33,0],[99,1],[75,0],[41,-10],[25,-18],[21,-23],[5,-11],[26,-53],[34,-31],[69,1],[108,1],[22,2],[39,4],[9,-5],[27,-13],[46,-15],[70,25],[25,9],[26,1],[28,-15],[63,-70],[40,-45],[59,-48],[49,-65],[72,0],[60,55],[1,6],[7,84],[8,95],[18,54],[30,15],[36,2],[43,29],[25,21],[21,16],[40,13],[13,-3],[153,-37],[9,3],[37,16],[169,49],[120,44],[52,19],[10,15],[39,64],[18,5],[54,16],[52,54],[4,4],[13,-1],[33,-5],[69,-2],[43,10],[21,11],[14,15],[10,12],[39,78],[47,29],[53,28],[6,3],[41,37],[33,45],[2,6],[13,34],[0,17],[0,14],[-20,60],[-14,34],[-10,23],[-26,19],[-19,7],[3,1],[5,1],[51,12],[48,-20],[76,-3],[32,15],[48,-7],[60,40],[39,-13],[8,0],[18,0],[23,-31],[8,-15],[10,-20],[52,-39],[5,-3],[-1,-5],[-5,-59],[-10,-57],[-8,-66],[-3,-50],[-24,-51],[-36,-48],[-10,-19],[-5,-25],[24,-16],[42,-4],[43,-2],[11,0],[36,-15],[47,-3],[57,-41],[27,-25],[3,-19],[-9,-21],[-9,-24],[-8,-42],[15,-27],[16,-19],[46,-95],[22,-33],[12,-8],[6,-3],[5,-18],[-16,-35],[-19,-44],[-42,-47],[-6,-36],[-34,-23],[-11,-8],[-68,-47],[13,-87],[2,-21],[1,-23],[-1,-34],[-27,-46],[-7,-18],[-40,-117],[-18,-67],[-15,-156],[1,-52],[21,-66],[1,-4],[44,-151],[2,-5],[2,-3],[24,-22],[61,-37],[7,-105],[0,-9],[-5,-102],[-3,-43],[10,-18],[27,-9],[7,-4],[13,-9],[3,-32],[-2,-34],[45,-20],[40,-12],[36,-47],[66,-73],[26,-13],[13,-30],[50,-56],[5,-6],[13,-3],[72,-19],[85,-27],[1,-1]],[[26516,49350],[3,-33],[61,-714]],[[16933,43522],[-1,3],[-4,23],[18,74],[12,47],[41,49],[2,2],[124,105],[44,29],[68,44],[55,7],[41,27],[26,41],[7,45],[-3,22],[-3,17],[-21,58],[-8,23],[-17,49],[-18,40],[16,49],[31,66],[6,10],[55,89],[57,107],[5,26],[1,5],[7,66],[27,133],[14,72],[-7,28],[13,24],[35,21],[62,13],[25,5],[58,40],[26,22],[64,53],[75,80],[62,25],[113,74],[64,47],[26,15],[63,34],[114,11],[67,9],[28,4],[14,5],[40,17],[75,9],[3,0],[2,1],[51,24],[55,1],[4,0],[110,25],[31,32],[7,6],[32,46],[43,39],[50,10],[44,-6],[12,-1],[67,1],[70,10],[12,2],[26,-20],[13,-10],[18,-37],[50,-38],[36,2],[0,0],[35,8],[49,-32],[32,4],[20,18],[4,45],[7,14],[5,11],[24,141],[40,233],[35,211],[40,234],[41,242],[42,244],[34,201],[29,173],[18,105],[29,139],[11,122],[3,10],[8,25],[-7,30],[-5,8],[-20,34],[1,18],[2,24],[-2,22],[-26,23],[-20,14],[-16,19],[-7,28],[-13,27],[-5,29],[-19,23],[-5,29],[12,28],[5,22],[1,7],[-6,27],[-7,32],[-14,31],[-22,18],[-51,21],[-52,49],[-62,44],[-7,8],[-71,76],[-17,40],[0,109],[3,118],[5,179],[3,91],[44,5],[39,2],[41,6],[27,5],[8,2],[3,1],[30,12],[24,16],[29,10],[23,-3],[23,14],[25,14],[24,11],[36,9],[33,-22],[11,-13],[7,-8],[21,-10],[1,-1],[20,3],[14,-2],[15,-18],[18,-1],[27,3],[25,4],[12,5],[2,11],[-7,19],[-9,18],[7,28],[1,34],[1,21],[0,22],[-5,7],[-15,17],[-19,45],[-22,36],[-35,24],[-32,10],[-27,-15],[-25,-3],[-18,14],[-31,0],[-32,5],[-35,5],[-62,-10],[-22,12],[-30,1],[-35,-13],[1,173],[1,163],[0,114],[2,0],[30,-3],[27,15],[12,6],[45,2],[13,1],[3,2],[41,20],[25,1],[47,-10],[17,-8],[32,-15],[48,-3],[126,0],[137,1],[151,0],[152,0],[132,0],[41,-2],[-8,13],[-16,25],[-28,49],[11,39],[14,39],[16,20],[41,-21],[34,-67],[24,-41],[5,-8],[27,-25],[35,-3],[39,9],[39,20],[67,91],[19,22],[47,57],[5,3],[30,23],[4,3],[32,21],[27,9],[1,0],[36,-3],[32,-21],[20,-37],[74,-130],[56,-98],[19,-61],[1,-149],[-1,-34],[-2,-80],[0,-17],[2,-6],[5,-11],[11,-5],[115,29],[7,2],[166,-160],[123,-118],[53,-38],[29,-10],[72,7],[85,16],[41,17],[45,36],[74,52],[60,28],[24,4],[24,-9],[51,-31],[28,-57],[-26,-67],[4,-41],[54,2],[42,69],[2,3],[28,51],[63,44],[61,63],[42,59],[50,35],[51,29],[25,13],[59,26],[56,-2],[41,28],[54,52],[38,42],[26,16],[50,-4],[2,0],[19,1],[46,4],[64,52],[58,62],[12,38],[19,66],[21,93],[17,19],[21,15],[25,9],[14,2],[46,5],[60,29],[45,21],[72,50],[69,11],[20,13],[25,46],[0,1]],[[26580,48603],[11,-213],[-9,-62],[6,-123],[75,-56],[-6,-133],[29,-49],[49,-50],[38,3],[83,-67],[32,-130],[49,-50],[41,-6],[60,-74],[49,-43],[67,-34],[52,-53],[46,-15],[112,-99],[58,-25],[75,-46],[72,-28],[40,12],[18,-30],[52,-10],[52,-28],[51,-86],[119,-68],[52,-12],[-3,-87],[72,-31],[89,43],[9,-61],[54,-61],[7,-38],[-237,-550],[-992,-2293],[-53,-49],[-40,-73],[-12,-82],[45,-108],[101,-133],[53,-84],[7,-52]],[[27053,43369],[-42,-53],[-15,-48],[0,-62],[-23,-69],[-45,-74],[-15,-87],[16,-100],[-17,-156],[-28,-96],[-19,-75],[-29,-116],[-49,-40],[-1979,-12]],[[26516,49350],[33,-37],[19,-18],[16,-14],[26,-2],[22,5],[30,22],[7,6],[30,23],[51,-2],[50,4],[10,0],[11,19],[5,25],[-3,17],[-9,46],[21,19],[19,4],[31,7],[10,33],[2,3],[10,16],[14,21],[17,3],[21,-12],[33,-8],[37,-11],[14,-14],[6,-7],[33,-2],[37,4],[14,14],[11,24],[0,0],[8,51],[24,1],[47,12],[50,23],[67,3],[13,0],[50,0],[32,15],[29,33],[41,67],[15,26],[30,22],[32,16],[27,-3],[56,16],[45,22],[17,-6],[36,-48],[18,-10],[26,-3],[47,-14],[39,-11],[15,3],[30,5],[50,15],[47,6],[11,-4],[23,-7],[25,14],[27,10],[20,-7],[43,-5],[103,-27],[52,-12],[44,-9],[38,-9],[36,10],[22,21],[5,62],[4,44],[-30,38],[-38,44],[-15,24],[-19,30],[-42,16],[6,28],[27,29],[27,16],[16,19],[18,73],[11,12],[12,4],[14,-3],[27,-19],[45,-25],[61,-33],[46,9],[177,15],[26,34],[38,7],[15,8],[48,25],[25,3],[23,-8],[28,6],[42,31],[17,3],[7,-34],[27,-35],[31,-31],[2,-2],[16,-7],[17,3],[37,7],[29,-9],[5,-12]],[[29264,50126],[-13,-6],[1,-6],[10,-99],[-46,-92],[23,-34],[-26,-50],[21,-28],[-3,-49],[20,-86],[101,6],[52,-25],[86,9],[104,-71],[20,0],[58,-80],[3,-25],[46,12],[55,-43],[20,-37],[87,-9],[11,28],[52,-10],[6,-40],[61,3],[11,-86],[64,12],[20,-52],[-38,-22],[32,-145],[98,-111],[87,-22],[11,-22],[-17,-126],[9,-105],[54,-96],[23,-77],[-5,-56],[26,-49],[40,-121],[55,6],[83,-83],[47,-65],[-3,-111],[17,-37],[52,-25],[11,-59],[-5,-99],[75,3],[20,-37],[-15,-21],[21,-81],[78,-52],[69,-3],[52,-19],[43,25],[63,-13]],[[31091,47645],[-22,-14],[-8,-97],[-30,-33],[-26,-21],[-135,25],[-209,-105],[-72,-26],[229,-5],[73,-56],[161,37],[195,133],[74,28],[151,90],[62,61],[112,72],[24,32],[62,33],[34,-43],[3,-27],[-51,-53],[13,-34],[34,-43],[12,-59],[5,-44],[21,-79],[69,-107],[2,-35],[-9,-46],[33,-39],[34,-22],[118,-115],[90,62],[289,20],[63,-20],[87,41],[175,94],[-55,-166],[-39,-153],[-31,-61],[-30,-166],[-29,-44],[-24,-51],[39,18],[33,24],[43,64],[32,111],[105,243],[34,61],[25,18],[106,34],[43,57],[16,4]],[[33022,47243],[122,175],[71,0],[46,-55],[43,-32],[9,53],[43,16]],[[33388,47444],[-42,-6],[-6,2],[-25,40]],[[33315,47480],[-17,28],[-4,24],[45,65],[-22,48],[75,46]],[[33407,47792],[71,86],[42,20],[9,40],[30,16],[23,6],[46,-45],[51,53],[48,21],[22,-9],[28,-24],[28,-10],[24,5],[60,33],[47,-45],[6,-15]],[[33942,47924],[28,-3],[9,-3],[-1,2],[9,-1]],[[34144,47953],[3,-1],[20,-20],[60,-3],[122,-34]],[[34349,47895],[85,-50],[13,-9],[8,-14]],[[34556,47737],[64,-1],[3,-1],[65,-6],[24,2],[44,-37],[1,-7],[3,-1],[38,-94]],[[34814,47598],[4,2]],[[34818,47600],[-14,-10],[-11,-53],[23,-21],[-49,-96],[11,-62],[-11,-71],[-29,-31],[-46,-6],[9,-49],[54,-4],[3,-83],[-43,-148],[-63,-78],[-24,10],[3,-102],[-17,-16],[6,-71],[-38,-24],[-14,-47],[-61,-34],[-43,-52],[61,-74],[-50,-47],[9,-49],[-20,-74],[-49,-68],[-52,-96],[-23,0],[-55,-46],[-14,-90],[-41,-31],[3,-19],[-26,-169],[-144,-164],[-14,9],[-15,-68],[-32,-77],[-49,-43],[-20,-59],[-61,-87],[-46,-40],[-95,6],[-291,-247],[-309,-266],[6,-11]],[[33137,44742],[0,-1],[0,0],[80,-29],[56,-7],[58,7],[41,-18],[26,-43],[27,-25],[29,-8],[25,-22],[21,-37],[-14,-37],[-50,-35],[-14,-50],[23,-64],[-6,-40],[-34,-14],[-9,-28],[15,-42],[-14,-31],[-46,-21],[-15,-45],[14,-70],[-12,-34],[-39,3],[-37,-13],[-34,-29],[-27,-52],[-20,-74],[-98,-85],[-177,-95],[-85,-104],[10,-112],[-29,-115],[-65,-122],[4,-96],[74,-71],[31,-80],[-12,-88],[-24,-100],[-36,-112],[-62,-137],[-80,-145],[-71,-91],[-62,-38],[-78,-88],[-97,-137],[-68,-140],[-59,-213],[-38,-78]],[[32159,41636],[-687,37],[-2452,154],[-886,68],[-17,0],[-121,62],[-61,-12],[-43,86],[-57,19],[-78,9],[-18,31],[-6,74],[-11,19],[-127,65],[-118,114],[-64,25],[-40,98],[-6,81],[-20,43],[26,142],[-90,127],[-75,247],[-34,50],[-20,61],[-52,84],[-49,49]],[[31390,48056],[110,17],[61,-86],[-75,-246],[-22,-1],[-100,-130],[-112,-91],[-17,-9],[-109,-54],[-68,-13],[88,173],[79,80],[0,47],[1,113],[86,142],[78,58]],[[31901,48184],[60,120],[51,35],[138,29],[401,-78],[60,-4],[86,14],[33,18],[412,-23],[50,-5],[160,-98],[-25,-49],[-24,-65],[-21,-90],[-17,-18],[-28,4],[17,-80],[-6,-33],[-14,-31],[-34,-65],[-52,-83],[-16,-17],[-39,-29],[-32,-37],[6,-34],[17,-35],[-20,-44],[-17,-18],[-79,-60],[-2,-1],[-34,-7],[-31,6],[-56,64],[-5,-50],[-15,-51],[-13,-18],[-33,-9],[-45,2],[-40,28],[-65,30],[-12,-82],[-40,-57],[-6,-3],[-256,0],[-11,6],[-36,3],[-17,-19],[-35,-13],[-124,-4],[-68,-31],[-41,9],[-61,62],[-10,42],[-36,84],[-33,100],[-23,91],[19,78],[40,-2],[47,-12],[10,5],[2,26],[-10,21],[-76,-4],[-48,47],[-8,72],[10,150],[6,30],[33,43],[11,38],[-1,8],[46,94]],[[31719,48388],[9,10],[39,15],[49,7],[64,-12],[10,-33],[-1,-18],[-177,-136],[-60,45],[-11,22],[3,6]],[[32503,48354],[-53,16],[-28,12],[33,44],[42,33],[71,33],[45,10],[54,-13]],[[32667,48489],[35,-9],[14,-31],[-5,-39],[-41,-40],[-126,-16],[-41,0]],[[32421,48492],[-115,-62],[-2,1],[-6,17]],[[32156,48607],[1,1],[71,-3],[161,54],[91,-25],[26,-36],[-37,-59],[-48,-47]],[[31965,48604],[7,16],[47,54],[16,68],[1,37],[3,7]],[[32039,48786],[47,5],[3,-79],[7,-83],[-21,-17]],[[32223,48741],[-38,-30],[-43,-14],[-13,22],[0,87],[19,47],[38,6],[97,-7]],[[31688,34944],[-22,-106],[3,-302]],[[31669,34536],[-46,-85],[-62,-57],[-153,-94],[-89,-80],[-38,-76],[-17,-97],[-47,-94],[-77,-93],[-35,-73],[6,-53],[-11,-49],[-41,-64],[-11,-32],[-23,-17],[-38,-12],[-16,-30],[5,-47],[-37,-66],[-79,-85],[-61,-81],[-41,-77],[-106,-96],[-255,-171],[-100,-128]],[[30297,32779],[-101,-78],[-135,-69],[-90,-103],[-37,-120],[-60,-103],[-88,-58],[-57,-113],[-36,-175],[-48,-108],[-76,-47]],[[29569,31805],[-83,52],[-45,48],[-57,35],[-62,27],[-18,-7],[-12,-4],[-32,-16],[-62,-26],[-71,-43],[-36,-16],[-64,-16],[-73,-14],[-60,9],[-51,9],[-14,13],[-11,9],[-7,6],[-17,60],[0,19],[0,31],[-11,73],[-27,30],[-11,11],[-13,32],[-2,39],[4,44],[0,0],[11,32],[-7,39],[-17,27],[4,48],[-8,67],[-23,37],[-3,4],[-13,48],[0,42],[0,6],[-1,4],[-18,44],[-2,53],[3,8],[14,40],[6,48],[-15,28],[-4,6],[-36,21],[-28,55],[-3,46],[-1,25],[-30,39],[-20,19],[-12,13],[-36,0],[-56,18],[-49,-2],[-79,2],[-37,11],[-19,26],[-5,3],[-44,31],[-28,59],[-34,12],[-49,-18],[-17,-23],[-19,-32],[-35,-37],[-45,2],[-46,-20],[-45,-3],[-31,-2],[-29,-2],[-19,6],[-41,12],[-73,21],[-62,13],[-60,-13],[-40,11],[-54,7],[-59,5],[-47,36],[-52,21],[-28,-7],[-36,-23],[0,0],[-38,5],[-50,18],[-5,13],[-14,30],[4,28],[11,27],[19,39],[-10,42],[4,36],[9,32],[8,37],[-6,34],[0,1],[-2,36],[-5,34],[-6,37],[26,52],[21,44],[-13,37],[4,25],[17,40],[0,1],[22,50],[-2,94],[-20,55],[-11,8],[-9,7],[-6,17],[9,18],[1,3],[-3,6],[-8,17],[-4,22],[5,9],[6,11],[-15,40],[-11,4],[-20,7],[-11,12],[-10,43],[-9,51],[0,1],[5,38],[-15,34],[-22,21],[-21,36],[-4,5],[-18,23],[-7,36],[-1,3],[-14,49],[0,1],[3,1],[39,8],[17,28],[6,7],[24,32],[19,4],[21,6],[47,14],[17,28],[-109,102],[-63,58],[-3,3],[38,82],[65,139],[29,62],[34,73],[48,103],[12,19],[42,6],[-8,54],[-1,34],[-25,2],[-9,0],[38,126],[55,178],[42,136],[3,4],[11,18],[30,7],[7,15],[-37,22],[-17,33],[-5,9],[-48,121],[-60,148]],[[27300,36174],[1,0],[17,-1],[61,-3],[20,-53],[69,-37],[15,-21],[33,13],[32,4],[111,44],[77,54],[64,96],[60,54],[63,91],[29,48],[50,-3],[115,13],[35,-13],[69,25],[52,46],[95,22],[49,-18],[26,-38],[98,-30],[29,-28],[116,-28],[49,-77],[126,-56],[102,-71],[69,3],[112,22],[58,34],[20,31],[52,27],[113,4],[66,-47],[20,-65],[46,0],[55,25],[58,6],[40,28],[29,53],[58,37],[83,105],[49,37],[41,-3],[-46,-266],[-70,-34],[-83,-145],[8,-22],[70,-9],[92,-43],[78,9],[72,-13],[121,10],[104,-22],[52,6],[9,3]],[[30339,35978],[5,-55],[-8,-136],[14,-43],[29,-22],[52,28],[81,-31],[-3,-49],[-38,-50],[-29,-71],[15,-31],[69,-19],[95,-9],[75,13],[101,-78],[46,3],[113,-58],[23,-34],[95,-31],[46,-40],[130,-56],[64,-6],[89,-22],[61,-58],[112,-22],[66,-59],[46,-98]],[[29264,50126],[8,-18],[0,-4],[3,-23],[23,-22],[30,-1],[15,-8],[27,-15],[23,-33],[19,-9],[34,-17],[25,-10],[65,-27],[38,0],[5,0],[34,-11],[5,-1],[24,-11],[26,20],[0,1],[13,8],[79,48],[46,32],[8,7],[22,17],[23,23],[17,6],[11,-14],[10,-18],[0,0],[33,-11],[78,-21],[35,-6],[50,18],[11,7],[32,24],[20,10],[32,-30],[18,-37],[3,-7],[15,-19],[32,5],[20,-3],[43,-4],[47,-14],[0,0],[29,1],[39,20],[1,0],[21,38],[56,35],[54,32],[30,43],[46,71],[15,31],[3,52],[64,149],[24,28],[14,47],[26,55],[0,46],[18,44],[37,39],[27,23],[43,65],[30,61],[76,134],[5,38],[30,23],[10,29],[32,36],[34,28],[14,42],[25,43],[26,16],[28,17],[20,15],[61,119],[7,54],[55,2],[18,-13],[124,-121],[14,-19],[84,-263],[13,-104],[12,-195],[27,-102],[2,-18]],[[31660,50599],[121,-354],[2,-16],[17,-66],[29,-59],[39,-115],[4,-11],[2,-21],[-25,-32],[36,-2],[18,-10],[28,-57],[8,-25],[26,-49],[12,-16],[29,-58]],[[32046,49691],[41,7],[27,-6],[53,-5],[133,-60],[38,-30],[49,-166],[-4,-27],[-8,-42]],[[32364,49301],[-39,-94],[-45,-31],[-15,-25],[-58,-50],[-54,-43]],[[32153,49058],[-14,-15],[-19,-16],[-6,-12],[-80,-89]],[[32034,48926],[-17,-31],[-5,-6],[-51,-99],[-28,-30]],[[31763,48576],[-26,-15],[-14,-1],[-37,-22],[-6,-8],[-6,-3]],[[31534,48410],[-3,-5],[-49,-16],[-11,-65],[-59,-128],[-18,-33],[-50,-67],[-38,-28],[-96,-148],[-12,-64],[1,-113],[-64,-69],[-44,-29]],[[32076,49939],[14,-9],[32,-112],[-4,-28],[-65,-32],[-37,12],[-34,83],[11,68],[47,23],[36,-5]],[[32159,41636],[-66,-133],[-38,-98],[-5,-57],[-33,-90],[-62,-124],[-31,-84],[-8,-216],[-22,-112],[-41,-126],[-5,-95],[29,-63],[4,-54],[-34,-68],[36,-72],[5,-48],[-13,-46],[4,-85],[23,-122],[2,-103],[-20,-84],[3,-75],[27,-67],[31,-39],[52,-15]],[[31997,39560],[-52,-120],[-19,-80],[-2,-82],[-44,-111],[-86,-140],[-39,-134],[5,-131],[-10,-69],[-26,-9],[-21,-65],[-24,-181],[-88,-259],[-48,-96],[-38,-20],[-25,1],[-120,-28],[-77,-68],[-48,-83],[-20,-98],[-24,-60],[-26,-22],[-10,-24],[6,-25],[-13,-44],[-31,-63],[-74,-50],[-117,-37],[-74,-43],[-33,-51],[-34,-34],[-36,-17],[-79,-59],[3,-41],[-86,-43],[-9,-49],[43,-47],[-42,-102],[-71,-90],[-99,-75],[-53,-67],[-5,-59],[-29,-68],[-52,-79],[-29,-66],[-6,-73],[63,-309],[41,-112]],[[27300,36174],[-17,43],[-5,63],[-1,6],[-28,42],[-9,-3],[-38,-11],[-55,13],[-52,39],[-87,65],[-42,26],[-50,30],[-31,33],[-12,96],[-2,10],[-27,118],[-7,88],[-5,57],[5,35],[13,19],[65,92],[-1,55],[7,49],[-3,38],[-20,1],[-31,-17],[-5,-1],[-42,-12],[-27,-1],[-271,10],[-308,12],[-256,10],[-223,9],[-7,95],[-11,137],[-2,22],[-9,113],[-14,179],[-67,84],[-22,28],[-97,121],[-34,31],[117,4],[83,3],[-17,325],[-25,34],[-15,69],[-7,36],[-16,59],[-41,48],[-5,31],[-4,24],[1,6],[6,30],[23,22],[15,56],[-3,15],[-8,41],[-25,53],[-30,50],[-57,31],[-44,30],[-38,26],[-2,1]],[[30297,32779],[46,2],[62,46],[164,-22],[52,22],[61,-31],[49,9],[84,-12],[34,12],[29,-28],[35,28],[14,40],[49,16],[52,-19],[72,-43],[84,-6],[32,-31],[34,9],[61,-24],[124,24],[112,-62],[116,-37],[78,-18],[63,-87],[38,-3],[63,19],[127,-16],[40,22],[49,-28],[110,9],[98,19],[9,-34],[29,-16],[2,-34],[116,-49],[60,-105],[15,-105],[-26,-68],[32,-93],[34,-49],[-11,-84],[-20,-21],[124,-152],[49,-40],[-3,-49],[40,-71],[32,-16],[-9,-55],[-46,-78],[9,-92],[52,-19],[80,3],[44,13],[127,3],[31,-22],[107,9],[81,-43],[-35,-46],[-14,-170],[34,-19],[64,87],[95,-53],[23,16],[29,-124],[61,-31],[0,-8]],[[33544,30974],[-61,-48]],[[33483,30926],[-2,1],[2,4],[-13,0],[-81,32]],[[33336,30983],[-13,-41],[-16,-12],[6,-19],[-1,-5]],[[33311,30905],[-177,-18],[-4,3],[1,-3],[-5,-1]],[[33270,30739],[51,-44],[-70,-114],[-78,-20],[-9,-22],[43,1],[24,-42],[-6,-35]],[[33225,30463],[-42,9],[-173,-3],[-17,-21],[-107,9],[-67,-25],[-54,-52],[-101,-44],[-23,-37],[-70,0],[-80,44],[-20,24],[-84,59],[-43,19],[-156,-28],[-81,0],[-35,-23],[-57,41],[-55,0],[-67,-31],[-57,-111],[-23,6],[-84,-40],[-29,25],[-83,6],[-113,-77],[-26,-53],[6,-52],[26,-74],[-29,-31],[-89,-34],[-52,68],[-240,0],[-86,12],[-124,93],[-168,12],[-55,22],[-63,0],[-20,15],[-93,28],[-63,-19],[-52,10],[-84,-13],[-101,75],[-49,15],[-66,-34],[-38,0],[-95,22],[-4,0]],[[29939,30275],[-1,22],[-49,98],[-13,23],[-36,63],[-26,146],[-18,55],[-41,15],[-29,37],[-8,11],[-33,3],[-14,1],[-7,6],[-15,13],[-23,15],[-33,-4],[-22,-22],[-7,-7],[-6,0],[-47,-1],[-33,-11],[-39,-25],[-37,11],[-24,22],[-37,0],[-13,1],[3,99],[47,77],[42,70],[24,68],[-9,32],[-3,7],[27,137],[65,235],[20,153],[-23,73],[-1,51],[23,29],[10,14],[17,13],[-1,0]],[[34054,37347],[-357,-3],[-211,3],[-46,6],[11,50],[-29,83],[49,71],[-23,31],[38,139],[268,0],[222,-6],[6,-25],[69,-37],[0,-83],[-28,-87],[-6,-105],[37,-37]],[[31997,39560],[60,156],[63,88],[85,70],[17,-61],[-43,-65],[3,-59],[-49,-92],[3,-72],[20,-27],[121,-62],[52,-3],[38,-31],[147,-74],[106,-16],[90,-34],[14,81],[41,89],[104,186],[77,55],[12,-65],[46,-24],[67,-62],[17,-37],[-3,-50],[23,-68],[3,-77],[-9,-99],[23,-21],[35,30],[20,112],[43,15],[70,-28],[72,7],[92,65],[40,-7],[-7,-55],[65,-10],[46,-37],[44,3],[52,-34],[112,-43],[14,25],[-40,117],[52,25],[55,-90],[75,-3],[95,34],[130,71],[78,19],[92,0],[49,25],[69,77],[35,21],[101,31],[87,10],[43,24]],[[34744,39590],[95,-80],[9,-43],[-49,-34],[-21,-93],[3,-40],[61,-25],[-9,-68],[-57,-37],[-55,-173],[5,-148],[26,-90],[32,-52],[29,-75],[58,-49],[17,-31],[58,-37],[-26,-80],[0,-47],[31,-108],[-11,-40],[-61,-83]],[[34879,38157],[-34,-37],[-72,-10],[-70,19],[-11,43],[-46,53],[-84,40],[-43,-56],[17,-52],[-14,-31],[20,-87],[-58,-21],[-63,37],[-64,3],[-37,-25],[-26,-124],[26,-9],[23,-58],[-52,-75],[3,-77],[40,-34],[23,-173],[-20,-28],[-138,-37],[-32,9],[-67,-77],[-46,-3]],[[34054,37347],[-23,-74],[9,-56],[-17,-52],[-52,-74],[-15,-59],[32,-53],[89,-61],[70,-179],[5,-41],[-52,-34],[12,-34],[-63,-46],[-73,-90],[-20,-52],[-29,12],[-20,-86],[46,-50],[32,19],[78,-34],[11,-84],[-37,-52],[-17,-56],[5,-37],[44,-127],[-26,-15],[-82,-60],[-220,-145],[-92,-45],[-57,7],[-136,66],[-469,9],[-100,-43],[-46,-11],[-44,-44],[-58,-81],[-51,-12],[-47,56],[-42,8],[-37,-39],[-43,-23],[-72,-10],[-111,-2],[-86,-17],[-99,-34],[-78,-54],[-58,-75],[-27,-53],[6,-46],[-27,-46],[-29,-18],[-42,-4],[-46,-29],[-51,-54],[-34,-50],[-16,-46],[-1,-32],[4,-10],[-10,-15],[-28,-3],[-26,-33]],[[33137,44742],[59,17],[36,29],[33,47],[42,27],[52,8],[62,-14],[73,-35],[71,-16],[68,5],[45,-20],[20,-45],[58,-39],[98,-33],[59,-36],[22,-38],[27,-131],[31,-223],[-6,-241],[-42,-259],[-43,-161],[-44,-60],[-39,-36],[-32,-13],[-1,-25],[31,-40],[37,-15],[43,9],[25,-12],[7,-35],[-2,-65],[26,-59],[29,3],[43,-89],[28,-2],[16,-48],[83,-86],[47,-84],[40,-46],[20,3],[75,56],[81,24],[110,13],[54,-40],[15,-75],[-23,-71],[-3,-71],[-23,-31],[26,-52],[-101,0],[-87,-28],[-29,-34],[-28,-68],[-26,-111],[11,-59],[-104,-102],[-11,-40],[28,-22],[64,-3],[61,-68],[11,-95],[49,-71],[124,-62],[17,-40],[-43,-65],[-32,-10],[-11,-55],[104,-77],[29,-65],[-6,-37],[81,-115],[40,-12],[61,6],[66,-22],[35,-43],[57,-31]],[[34931,41308],[122,-9]],[[35053,41299],[-67,-96],[-115,-71],[-32,-9],[-138,-121],[43,-86],[-9,-22],[-78,-37],[-60,-145],[-44,-40],[-26,-56],[12,-43],[40,-25],[41,-58],[153,-31],[69,-40],[-15,-44],[-89,-43],[-20,-28],[17,-52],[58,6],[37,-22],[15,-43],[-87,-49],[-23,-35],[-49,-30],[-9,-25],[-5,-148],[20,-56],[101,-56],[0,-68],[-49,-77],[0,-59]],[[31669,34536],[264,194],[62,21],[35,-7],[45,-40],[638,-83],[64,-6],[13,-21],[-19,-39],[3,-52],[28,-67],[26,-34],[21,0],[35,24],[47,50],[29,-18],[11,-86],[17,-50],[22,-13],[20,41],[19,95],[29,51],[63,10],[227,4],[71,31],[49,7],[44,-23],[38,-2],[39,25],[53,1],[30,18],[1,30],[27,22],[45,3],[35,-10],[26,-22],[39,3],[50,17],[37,-5],[21,-24],[64,-57],[54,-39],[7,-21],[-21,-55],[-17,-96],[26,-37],[63,-34],[29,-74],[-66,-121],[-6,-74],[49,-46],[15,-105],[43,-43],[40,-102],[-5,-41],[69,-3],[52,31],[83,-25],[21,16],[31,-37],[64,-22],[8,-46],[-43,-102],[-29,-6],[-14,-62],[-26,-28],[6,-65],[26,-55],[-26,-47],[37,-55],[-40,-50],[-23,-80],[37,-62],[61,-22],[3,-21],[57,-31],[38,-68],[-49,-47],[66,-46],[6,-65],[46,-27],[87,24],[5,-31],[81,13],[72,37],[32,-28],[43,6],[32,37],[0,50],[-37,18],[83,56],[28,-2],[30,5],[35,-25],[37,27],[40,-24],[90,28],[17,31],[121,65],[87,12],[58,31]],[[35650,32941],[40,-12],[78,-96],[9,-28],[63,-12],[208,18],[31,-74],[-51,-34],[-18,-49],[-55,-25],[-72,3],[-75,-18],[-89,-41],[-46,-37],[-6,-102],[-38,-46],[53,-104]],[[35682,32284],[-23,-3],[-39,6]],[[35620,32287],[-34,-19],[-13,-3],[-21,-16],[-446,-249],[-109,1],[-21,-6],[-4,0]],[[34581,31813],[-20,-15],[-73,-37],[-153,-87],[-130,-133],[-59,-43]],[[33894,31317],[-4,-4],[-23,-16],[-155,-119],[-29,-31],[-24,-2],[-49,-25],[19,-20],[33,-2],[-8,-41],[-110,-83]],[[34818,47600],[30,13]],[[34870,47629],[26,19],[18,-22],[61,-21],[125,-130]],[[35488,47430],[17,-9],[20,-20],[69,-53],[45,-44],[43,-64]],[[35682,47240],[19,-18],[-16,-19],[32,4],[18,-17]],[[35798,47019],[-3,-54],[-6,-6],[-19,-38],[-9,-15],[-30,-9],[-32,-17],[36,-38],[25,-37],[54,99],[38,28],[49,14],[11,-11],[23,-58],[6,-66],[-69,-22],[-1,1]],[[35871,46790],[-1,-1],[-18,-6],[0,-30],[-19,-36]],[[35826,46702],[0,0],[-1,-1],[-18,-34],[-14,-72],[-18,-59],[-1,-3],[-98,-324]],[[35869,46354],[8,25],[28,31],[37,143],[47,141],[47,40],[7,4],[29,0],[48,-16],[3,-46],[-8,-26],[-42,-58],[-13,-14]],[[36580,46754],[-27,21],[0,3],[36,26],[97,-7],[94,-27],[292,-141],[25,-23],[153,-62],[69,-33]],[[37386,46508],[6,3],[89,-5],[37,19],[54,-20]],[[37572,46505],[-7,-31],[35,-58],[-18,-68],[-51,-53],[-52,-83],[-67,-22],[3,-28],[-75,-89],[-95,-13],[-58,-18],[-31,18],[-47,-83],[-34,-31],[-32,-59],[9,-61],[-46,-93],[-76,-80],[-25,-72],[-64,-67],[23,-106],[38,-9],[20,-65],[-32,-95],[-23,-16],[12,-49],[-15,-31],[32,-37],[32,-74],[14,-112],[17,-43],[-17,-105],[-52,-56],[-86,-142],[-35,-18],[11,-62],[-17,-40],[23,-198],[46,-46],[26,-44],[72,-46],[-11,-127],[9,-30],[-38,-93],[-3,-37],[-40,-53],[-98,-25],[-43,19],[-67,-34],[-104,-28],[-63,62],[-75,37],[-90,-6],[-89,-37],[-55,-3],[-14,-44],[-21,16],[-46,-56],[-3,-24],[-57,-59],[-32,-71],[-92,-25],[-84,-71],[-87,-102],[-66,22],[-60,-56],[-75,-34],[-176,-43],[-113,-81],[-46,-135],[-23,-195],[-49,-71],[-3,-40],[-49,-84],[-12,-89],[-43,-96],[-69,-62],[-35,-96],[26,-58],[3,-75],[20,-40],[6,-105],[43,-31],[20,-61],[-26,-50],[-14,-207],[0,-114],[-26,-19],[0,-40],[-34,-68],[11,-22],[-6,-71]],[[35650,32941],[66,31],[43,-6],[41,37],[43,9],[58,34],[98,9],[49,-6],[80,53],[127,46],[52,28],[162,0],[66,6],[78,37],[136,-15],[44,-26],[507,242],[-3,49],[-55,7],[3,28],[40,74],[3,55],[49,47],[26,120],[55,111],[-29,28],[29,28],[64,-6],[23,15],[23,56],[40,37]],[[37568,34069],[78,-31],[20,-108],[-11,-47],[11,-46],[176,-62],[32,10],[81,-31],[127,12],[66,-43]],[[38148,33723],[-21,-63],[-46,-98]],[[38093,33506],[35,-168],[7,-61],[-9,-55],[-79,-59],[-297,-110],[-79,-46],[-26,-27],[-9,-6]],[[37483,32761],[1,0],[5,-49],[29,-36],[-87,-108],[-30,2],[-296,0],[-91,-12],[-163,-1],[-27,12],[-42,28],[-11,29],[44,91]],[[36668,32646],[14,1],[17,-33],[10,-42],[-20,-36],[-94,-5],[-105,-34],[-22,-2],[-80,44],[-8,14],[-50,18],[-35,19]],[[36295,32590],[-10,-3],[-11,4],[-117,-23],[-27,-19],[-98,7]],[[35754,32484],[-5,-28],[-1,-1],[0,-2],[-16,-86]],[[35732,32367],[60,-1],[28,-26],[-32,-30],[-31,-13],[-75,-13]],[[36311,32475],[-75,-5],[-1,1],[33,22]],[[36343,32493],[110,0],[-95,-10],[-30,-7],[-17,-1]],[[37572,46505],[182,-71]],[[37754,46434],[49,-1],[14,-3],[104,-14],[32,14]],[[37953,46430],[7,-113],[-77,-133],[-32,-34],[-15,-80],[44,-108],[17,-81],[46,-71],[35,-160],[31,-56],[41,-37],[29,-102],[-44,-71],[-60,-78],[-6,-52],[12,-77],[28,-59],[-2,-71],[40,-65],[6,-40],[34,-71],[-5,-96],[28,-40],[50,-37],[20,-127],[-3,-55],[20,-155],[0,-74],[55,-167],[6,-86],[17,-81],[32,-52],[8,-62],[61,-34],[86,-19],[41,-52],[-15,-65],[-46,-68],[-46,-133],[32,-89],[-3,-47]],[[38425,43332],[-69,-6],[-29,-19],[0,-58],[46,-87],[-26,-86],[72,-50],[12,-49],[-9,-87],[-32,-65],[-101,-83],[-55,-83],[-34,9],[-23,-56],[-61,9],[-43,-74],[-49,-15],[-35,-59],[-101,-55]],[[37888,42418],[-20,-50],[-43,-56],[-20,-49],[-38,-25],[-34,7],[-81,-13],[0,-105],[-41,-28],[-34,-55],[-44,28],[-80,3],[-70,-59],[-103,-9],[-78,-71],[-38,-62],[-55,9],[-28,-56],[-87,31],[-64,-18],[-51,21],[-4,30],[-60,26],[-9,28],[-54,15],[-38,-31],[-124,3],[-24,55],[-22,23],[-58,-40],[-43,15],[-35,-19],[-23,-55],[-75,12],[-11,-49],[29,-47],[37,-126],[29,-37],[-20,-102],[6,-59],[-32,-50],[-6,-43],[-26,-24],[-72,-158],[-52,-15],[-81,-93],[-63,-28],[-61,19],[-69,9],[-78,-28],[-52,-40],[-17,-34],[-69,-34],[-21,-50],[-43,-15],[-52,12],[-72,-24],[-176,80],[-81,111],[-20,93],[-29,49],[-57,56],[-98,3]],[[34879,38157],[32,-81],[-63,-182],[69,43],[26,41],[104,-13],[34,16],[38,55],[66,74],[58,-3],[92,59],[61,80],[81,16],[141,83],[29,56],[179,117],[129,53],[26,18],[70,3],[34,-21],[208,-31],[36,-19],[-12,-19],[-39,-113],[-12,-63],[10,-24],[26,-25],[75,-28],[138,-37],[29,7],[40,55],[101,43],[179,-27],[41,-50],[167,-133],[35,6],[95,-71],[109,-49],[55,0],[58,-53],[95,7],[89,43],[286,-266],[17,-154],[113,-44],[83,31],[55,44],[35,-16],[40,9],[44,-40],[60,16],[61,-28],[26,-28],[37,15],[96,-33],[60,3],[43,-53],[23,3],[84,-71],[43,-3],[47,-77],[-49,-139],[-76,-59],[-49,-74],[-2,-28],[-75,-15],[-15,-34],[-6,-90],[26,-62],[-34,-31],[-113,7],[-34,-44],[-32,-139],[6,-89],[-26,-34],[-3,-56],[72,-19],[11,-95],[44,0],[20,-47],[63,-65],[49,-34],[15,-34],[-29,-71],[14,-40]],[[38638,36006],[-5,3],[-136,56],[-32,-25],[-37,19],[-87,-37],[-37,6],[-41,-19],[-78,0],[87,-83],[6,-31],[-46,-9],[-49,34],[-67,-50],[-29,-3],[-52,-83],[9,-25],[66,-49],[15,-34],[-18,-127],[67,-40],[-3,-77],[-104,-16],[-66,16],[-26,-31],[46,-38],[37,13],[52,-65],[-17,-37],[69,-77],[12,-102],[-20,-124],[-58,-12],[11,-40],[-83,-78],[-17,-142],[-78,-62],[-38,-160],[-26,-19],[-202,3],[-89,-111],[37,-40],[0,-74],[-34,-62],[26,-16],[-46,-77],[11,-12]],[[38638,36006],[15,-21],[332,-220],[3,-1]],[[38988,35764],[-8,-34],[-27,-81]],[[38953,35649],[-6,-75],[-6,-27],[0,-51],[-6,-66]],[[38935,35430],[12,-103],[20,-221],[-21,-122],[-33,-82],[-40,-53],[-101,-65],[-91,-156],[-17,-71],[-3,-5]],[[38661,34552],[-49,-117],[-32,-32],[-10,-71],[-35,-84],[-18,-36],[-96,-110],[-75,-60],[-43,-22],[-40,-41],[-26,-87],[-81,-143],[-8,-26]],[[37888,42418],[29,-16],[107,19],[34,-7],[3,-40],[63,-4],[15,-23],[58,-28],[0,-124],[23,-40],[3,-40],[95,-47],[9,-86],[-35,-56],[38,-34],[78,9],[98,43],[60,72],[30,103],[40,30],[87,9],[47,21],[36,25],[26,29],[13,39],[2,49],[33,30],[62,13],[33,29],[3,45],[53,44],[103,42],[70,-4],[49,-52],[103,-52],[170,-59],[83,-55],[25,-11],[31,0],[27,25],[22,20],[25,-3],[14,-29],[1,-57],[32,-30],[62,-5],[27,-23],[-8,-41],[15,-70],[40,-100]],[[39922,41978],[159,-113]],[[40081,41865],[-43,-65],[31,-28],[-23,-56],[43,-102],[41,-28],[0,-24],[78,-90],[-3,-157],[-35,-81],[9,-86],[26,-56],[-20,-34],[-101,-53],[-26,0],[-64,31],[-52,-6],[-34,-74],[5,-49],[38,-59],[43,-34],[32,-96],[52,-49],[-17,-81],[26,-31],[75,-27],[34,-59],[90,-22],[17,25],[38,-12],[104,29]],[[40445,40491],[-37,-109],[-141,-309],[-174,-259],[-40,-80],[-83,-103],[-60,-73],[-104,-84],[-30,-1],[-33,8],[-2,12],[16,42]],[[39646,39713],[-23,-5],[-4,3],[-2,-4],[-9,-1]],[[39584,39653],[-10,-37],[-18,-15],[-41,-5],[44,-38],[6,-21],[2,-32],[-40,-77],[-1,-79],[-81,-87],[-46,-64],[-23,-80],[-15,-75],[35,21],[17,-16],[13,-23],[-8,-34],[-25,-65],[0,-32],[-23,-57]],[[39371,38804],[25,-20],[0,-19],[-8,-37],[26,-40],[27,68],[5,-7],[-33,-218]],[[39378,38299],[43,-387],[1,-21],[3,-25],[19,-175]],[[39297,36293],[-104,-225],[-41,-23],[-48,-48],[-106,-182],[-10,-51]],[[39479,39173],[2,-50],[-22,-41],[-25,6],[-11,28],[-18,26],[10,21],[17,12],[47,-2]],[[39557,39405],[0,8],[3,2],[-3,-10]],[[37953,46430],[11,5],[141,21],[102,6],[234,46],[25,4]],[[38638,46493],[62,-7],[96,-18],[124,-86],[105,-49],[64,-48],[102,-50],[168,-102],[70,-50],[57,-58],[136,-106],[63,-20],[107,-77]],[[39792,45822],[7,-9],[32,-48],[26,-21],[132,-161]],[[39989,45583],[13,-12],[32,-41],[57,-46],[120,-116]],[[40250,45330],[16,-12],[41,-48],[53,-21],[188,-139]],[[40548,45110],[7,-4]],[[40555,45106],[-194,-71],[-35,-19],[-81,-71],[-124,-278],[-86,-105],[-20,-50],[0,-52],[-32,-80],[-113,-136],[-43,-13],[-29,22],[-52,-46],[-11,-37],[-44,-56],[-17,-93],[52,9]],[[39726,44030],[-35,-67],[-46,-146],[20,-46],[-20,-56],[-49,-37],[-3,-77],[29,-19],[6,-89],[49,-43],[35,-10],[8,-40],[-31,-93],[-32,-21],[-3,-53],[-40,-58]],[[39614,43175],[-78,-31],[-29,-28],[-67,-99],[-20,19],[-49,-25],[-23,71],[-86,49],[-41,40],[-29,53],[-118,49],[-78,71],[-124,19],[-69,-9],[-72,-31],[-70,-9],[-57,18],[-179,0]],[[40081,41865],[24,-18],[331,-167],[149,-74],[114,-49],[41,-40],[11,-48],[38,-48],[67,-49],[50,-23],[33,2],[26,-27],[18,-54],[27,-27],[36,0],[25,-15],[7,-13]],[[41078,41215],[-55,-59]],[[41023,41156],[-7,-4],[-69,-33],[-86,-57],[-37,-35],[-20,-13]],[[40804,41014],[-25,-29],[-27,-26],[-34,-54],[-17,-25]],[[40673,40835],[-26,-42],[-17,-17],[-37,11],[1,-81],[-10,-16],[-76,-115],[-27,-20],[1,37],[15,28],[7,30],[0,36],[-25,-26],[-51,-98],[17,-71]],[[39922,41978],[43,56],[41,56],[81,31],[98,114],[5,56],[38,25],[43,-81],[35,-3],[69,25],[32,-40],[52,-28],[135,-136],[119,-46],[37,-34],[23,46],[46,18],[165,-21],[89,59],[61,6],[52,40],[17,37],[75,50],[3,33],[66,50],[29,-6],[58,21],[52,3],[52,-34],[72,37],[89,22],[52,-34],[58,-3],[96,-18]],[[41905,42279],[-2,-9],[-1,-3],[-92,-162],[-41,-65],[-72,-93],[-106,-130],[-81,-84],[-43,-12],[-39,23],[28,-60],[-24,-52],[-56,-81],[-94,-114],[-69,-66],[-19,-31],[-116,-125]],[[40555,45106],[13,-6],[31,-52],[101,-12],[128,-62]],[[40828,44974],[29,-8],[18,-14],[101,-32],[127,9],[14,0],[136,-6],[22,5],[9,0]],[[41284,44928],[92,21],[220,-41],[28,-7]],[[41624,44901],[54,-20],[15,-8],[49,-51],[28,-58]],[[41770,44764],[79,-162],[3,-7],[60,-242],[0,0],[30,-186],[28,-57],[48,-165]],[[42018,43945],[-45,-20],[-135,19],[-32,-16],[-104,47],[-130,25],[-34,-13],[-133,-15],[-211,37],[-26,74],[-57,3],[-72,-52],[-15,-71],[46,-99],[-57,-10],[3,-68],[17,-34],[-46,-99],[-55,-3],[-35,-31],[-37,31],[17,75],[-32,40],[-98,12],[-29,28],[-34,-31],[-72,-22],[-41,-27],[-34,58],[-44,28],[-115,12],[6,90],[49,25],[23,86],[141,192],[0,43],[-55,19],[-103,-50],[-35,9],[-107,-30],[-75,-34],[-23,-81],[-32,-34],[-103,-62],[-35,-9],[-49,-52],[-69,24],[-29,-12],[-98,62],[-58,21]],[[39614,43175],[34,-41],[35,-9],[3,-34],[40,-18],[49,21],[20,-9],[41,34],[33,-57],[1,-33],[29,-15],[20,28],[38,3],[11,24],[41,-33],[19,43],[53,-10],[52,59],[66,34],[55,62],[101,49],[75,90],[35,-3],[23,37],[60,19],[67,-53],[86,-37],[0,-74],[-118,-47],[-9,-49],[29,-80],[-38,-37],[-75,-127],[84,28],[41,-13],[14,-129],[43,-47],[64,-37],[83,40],[32,3],[101,96],[-20,50],[58,61],[78,10],[17,58],[55,10],[46,-10],[31,31],[32,-31],[29,31],[32,-31],[69,7],[23,-16],[29,74],[32,-9],[80,25],[21,-3],[80,40],[38,139],[81,-3],[66,52],[133,-18],[55,-71],[78,-26]],[[42095,43223],[-1,-31],[4,-28],[-12,-40],[-4,-38],[26,-83],[-4,-63]],[[42104,42940],[-3,-31],[-26,-62],[-49,-218],[-31,-89],[-78,-212]],[[41917,42328],[-12,-49]],[[42018,43945],[2,-8]],[[42020,43937],[7,-24],[22,-161],[33,-85],[2,-66],[27,-15],[19,-182],[-7,-74],[-27,-96],[-1,-11]],[[33225,30463],[-2,-13],[-16,-39]],[[33142,30223],[4,-3],[4,-8],[23,-28],[-17,-203]],[[33156,29981],[54,-181],[10,-79],[16,-45],[9,-51],[-27,-47],[11,-54],[0,-2]],[[33213,29464],[-1,-21],[-24,-68],[18,-140],[-1,-45]],[[33205,29190],[5,-27],[-4,-78],[-72,-260],[-46,-63],[-1,-61],[-32,-49],[-113,-67],[-21,-15],[-24,-14]],[[32897,28556],[-71,-57],[-44,-33],[-17,-15],[-38,-31]],[[32727,28420],[-52,-56],[-41,-39],[-26,-33],[-24,-26]],[[32584,28266],[-55,-73],[-33,-41]],[[32496,28152],[-66,37],[-34,37],[-55,16],[-81,-34],[29,-53],[-12,-25],[-75,50],[3,62],[61,71],[40,-7],[40,105],[-5,109],[69,68],[32,49],[63,19],[-6,46],[-18,13],[-66,32],[-65,12],[-84,2],[-46,-6],[-9,-14],[-51,4],[-138,32],[-84,25],[-103,104],[-148,191],[-98,105],[-48,18],[-62,45],[-77,72],[-53,34],[-27,-4],[-34,15],[-40,33],[-37,8],[-33,-16],[-78,1],[-25,26],[-47,66],[-48,44],[-52,21],[-34,2],[-23,-8],[-24,10],[-25,-4],[-29,5],[-43,27],[-62,4],[-81,-20],[-68,10],[-55,39],[-47,9],[-34,-2],[-27,11],[-24,18],[-26,-3],[-21,-9],[-20,10],[-32,-6],[-28,-17],[-23,7],[-27,45],[-27,12],[-33,-1],[-38,-15],[-21,-20],[-6,-27],[-27,-18],[-49,-8],[-28,6],[-8,22],[-30,8],[-53,-5],[-33,6],[-6,0],[-48,-4]],[[29768,29649],[12,2],[50,26],[52,99],[26,66],[-6,54],[-17,39],[6,57],[17,154],[5,64],[8,13],[19,31],[-1,21]],[[32496,28152],[-21,-27],[-14,-23],[-40,-53]],[[32351,27924],[-6,-10],[-56,-92],[-12,-31],[-15,-26]],[[32168,27520],[-14,-36],[-37,-94],[-207,-327],[-83,-118],[-112,-131],[-129,-134],[-28,-26],[-191,-148],[-218,-137],[-79,-61],[-77,-87],[-4,7],[-7,58],[8,30],[-10,44],[-1,28],[91,9]],[[31070,26397],[5,2],[12,-7],[34,25],[0,0],[90,35]],[[31211,26452],[2,2],[12,2],[52,53],[141,118],[71,35],[63,95],[6,29],[5,6]],[[31563,26792],[92,138],[22,-3],[17,29],[-5,24],[77,115],[47,27],[52,75],[-3,40],[10,15]],[[31755,27461],[-108,-24],[-9,67],[-89,35],[-35,62],[-11,42],[-31,18],[2,-74],[8,-71],[27,-28],[-23,-10]],[[31471,27282],[-25,-74],[-14,10],[-6,-72],[-21,-61],[-37,-32],[-17,-45],[13,-48],[-2,-5]],[[31362,26955],[-75,-70],[-86,-61],[-135,-66],[-30,-31],[-7,-37],[-12,-7]],[[30888,26201],[25,-37],[-18,-16],[-54,-72],[-44,-80],[-107,-301],[-93,-182],[-72,-89],[-102,-94],[-290,-235],[-18,3],[-43,19],[-35,23],[-8,13],[0,2],[-4,22],[3,52],[3,-3]],[[30282,25851],[-19,-16],[-40,32],[-53,20],[-32,11],[-82,54],[-73,70],[-33,72],[-10,23],[-21,54],[-29,62],[-10,28],[-29,12],[-45,31],[-29,29],[-42,17],[-35,9],[-39,10],[-78,32],[-96,76],[-70,85],[-34,55],[-13,14],[-24,26],[-199,65],[-91,77],[-30,-20],[-5,-4],[-54,24],[-52,37],[-16,29],[-22,29],[-21,34],[-5,12],[-8,21],[-54,56],[-69,61],[-30,18],[-16,-5],[-15,-24],[-9,-23],[-27,-14],[-1,-1],[-31,-28],[-33,-34],[-43,-23],[-51,-7],[-34,1],[-7,13],[-2,47],[10,83],[3,24],[-30,41],[-39,45],[-45,59],[-67,55],[-83,70],[-203,180],[-69,54],[-3,1],[-3,1],[-64,4],[-62,-6],[-57,-24],[-43,-84],[-17,-13],[-22,1],[-88,1],[-42,5],[-67,9],[-21,29],[-15,22],[29,33],[102,73],[57,66],[3,15],[8,42],[49,51],[88,46],[97,84],[107,123],[66,90],[23,58],[42,45],[17,9],[44,23],[53,66],[38,82],[8,18],[63,80],[49,37],[30,22],[44,49],[3,11],[7,28],[22,25],[27,8],[8,3],[18,20],[-1,4],[-1,26],[10,21],[21,11],[21,-3],[13,-1],[48,-19],[29,4],[9,25],[-12,29],[-26,24],[-9,9],[13,36],[92,57],[65,21],[4,1],[21,18],[22,18],[41,56],[66,40],[30,7],[62,15],[24,21],[-3,27],[0,1],[19,20],[12,3],[42,11],[30,27],[2,18],[3,21],[17,36],[30,34],[34,12],[37,-8],[35,13],[32,34],[39,16],[46,-2],[23,7],[38,8],[41,8],[31,21],[12,8],[35,64],[32,24],[27,-14],[48,21],[68,57]]],"transform":{"scale":[0.0015474743008732177,0.0014448449453240255],"translate":[-100,-70]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285],[286],[287],[288],[289],[290],[291],[292],[293],[294],[295],[296],[297],[298],[299],[300],[301],[302],[303],[304],[305],[306]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[307,308,309,2,310,311]],[[139]],[[312,140]]],"type":"MultiPolygon","properties":{"ct":[-65.15,-35.19]},"id":"ARG"},{"arcs":[[-312,313,314,315,316]],"type":"Polygon","properties":{"ct":[-64.66,-16.71]},"id":"BOL"},{"arcs":[[[-309,317,-316,318,319,320,321,322,323,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,324]],[[177,178]],[[179,180,181]],[[182,183,184]],[[185,186]],[[187]]],"type":"MultiPolygon","properties":{"ct":[-53.09,-10.78]},"id":"BRA"},{"arcs":[[[-311,3,325,-314]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[-313,141]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]]],"type":"MultiPolygon","properties":{"ct":[-71.21,-35.17]},"id":"CHL"},{"arcs":[[-320,326,327,6,328,8,329]],"type":"Polygon","properties":{"ct":[-73.08,3.91]},"id":"COL"},{"arcs":[[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]]],"type":"MultiPolygon","properties":{"ct":[-58.78,-51.76]},"id":"FLK"},{"arcs":[[-324,330,12]],"type":"Polygon","properties":{"ct":[-53.23,3.92]},"id":"GUF"},{"arcs":[[-322,331,10,332]],"type":"Polygon","properties":{"ct":[-58.97,4.78]},"id":"GUY"},{"arcs":[[-315,-326,4,333,-327,-319]],"type":"Polygon","properties":{"ct":[-74.35,-9.18]},"id":"PER"},{"arcs":[[-308,-317,-318]],"type":"Polygon","properties":{"ct":[-58.39,-23.24]},"id":"PRY"},{"arcs":[[[259]],[[260]]],"type":"MultiPolygon","properties":{"ct":[-36.67,-54.38]},"id":"SGS"},{"arcs":[[-323,-333,11,-331]],"type":"Polygon","properties":{"ct":[-55.9,4.13]},"id":"SUR"},{"arcs":[[-310,-325,138]],"type":"Polygon","properties":{"ct":[-56.02,-32.8]},"id":"URY"},{"arcs":[[[-321,-330,9,-332]],[[275]]],"type":"MultiPolygon","properties":{"ct":[-66.17,7.13]},"id":"VEN"},{"arcs":[[[-328,-334,5]],[[286]]],"type":"MultiPolygon","properties":{"ct":[-78.37,-1.46]},"id":"ECU"},{"arcs":[[[287]],[[288]],[[289]],[[290]],[[291]]],"type":"MultiPolygon","properties":{"ct":[-91.18,-0.55]},"id":"ECU"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[334]],"type":"Polygon"},{"arcs":[[335]],"type":"Polygon"},{"arcs":[[336]],"type":"Polygon"},{"arcs":[[337]],"type":"Polygon"},{"arcs":[[338]],"type":"Polygon"},{"arcs":[[339]],"type":"Polygon"},{"arcs":[[340]],"type":"Polygon"},{"arcs":[[341]],"type":"Polygon"},{"arcs":[[342,343]],"type":"Polygon"},{"arcs":[[344]],"type":"Polygon"},{"arcs":[[345],[346]],"type":"Polygon"},{"arcs":[[347]],"type":"Polygon"},{"arcs":[[348]],"type":"Polygon"},{"arcs":[[349]],"type":"Polygon"},{"arcs":[[350]],"type":"Polygon"},{"arcs":[[351]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[2,3,4,5,6,328,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]],[[177,178]],[[179,180,181]],[[182,183,184]],[[185,186]],[[187]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[259]],[[260]],[[275]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[-175,-176,352,-145,353,-173,354,-174,355,-294,356,-298,-299,357],[-215],[-218],[-219],[-220],[-217],[-1],[-284],[-270],[-258],[-188],[-271],[-276],[-144],[-268],[-267],[-147],[-266],[-265],[-264],[-263],[-262],[-269],[-222],[-251],[-250],[-146],[-216],[-214],[-253],[-283],[-282],[-256],[-281],[-278],[-255],[-177],[-259],[-2],[-280],[-279],[-277],[-252],[-286],[-285],[-148],[-143],[-247],[-245],[-189],[-249],[-257],[-221],[-248],[-246],[-273],[-272],[-275],[-254],[-274],[-172],[-164],[-157],[-160],[-162],[-163],[-165],[-166],[-159],[-167],[-158],[-169],[-170],[-168],[-171],[-293],[-149],[-151],[-150],[-152],[-154],[-153],[-156],[-155],[-161],[-287],[-289],[-288],[-292],[-291],[-290],[-205],[-212],[-204],[-209],[-210],[-211],[-213],[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3],[-184,-183,-185],[-182,-181,-180],[-186,-187],[-178,-179],[-199],[-200],[-203],[-197],[-196],[-191],[-192],[-193],[-194],[-195],[-190],[-208],[-207],[-198],[-206],[-142,-141],[-232],[-235],[-231],[-242],[-241],[-240],[-239],[-236],[-237],[-234],[-243],[-233],[-244],[-201],[-202],[-238],[-230],[-228],[-227],[-226],[-225],[-140],[-223],[-224],[-229],[-296],[-297],[-300],[-301],[-302],[-303],[-306],[-307],[-305],[-304],[-261],[-260],[-295]],"type":"Polygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[358],[359],[360],[361,362],[363]]},{"type":"MultiLineString","arcs":[[364],[365],[366]]},{"type":"MultiLineString","arcs":[[367],[368],[369,370]]},{"type":"MultiLineString","arcs":[[371],[372]]},{"type":"LineString","arcs":[373]},{"type":"LineString","arcs":[374,375,376,377,378,379]},{"type":"LineString","arcs":[380,381,382]},{"type":"LineString","arcs":[383]},{"type":"LineString","arcs":[384]},{"type":"LineString","arcs":[385]},{"type":"LineString","arcs":[386]},{"type":"MultiLineString","arcs":[[387],[388]]},{"type":"MultiLineString","arcs":[[389],[390]]},{"type":"LineString","arcs":[391]},{"type":"LineString","arcs":[392]},{"type":"MultiLineString","arcs":[[393],[394],[395],[396],[397,398],[399],[400]]},{"type":"LineString","arcs":[401]},{"type":"LineString","arcs":[402]},{"type":"LineString","arcs":[403]},{"type":"LineString","arcs":[404]},{"type":"LineString","arcs":[405]},{"type":"LineString","arcs":[406]},{"type":"LineString","arcs":[407]},{"type":"MultiLineString","arcs":[[408],[409]]},{"type":"LineString","arcs":[410]},{"type":"LineString","arcs":[411]},{"type":"LineString","arcs":[412]},{"type":"LineString","arcs":[413]},{"type":"MultiLineString","arcs":[[414],[415,416]]},{"type":"LineString","arcs":[417]},{"type":"MultiLineString","arcs":[[418,419],[420],[421],[422],[423]]},{"type":"MultiLineString","arcs":[[424],[425]]},{"type":"MultiLineString","arcs":[[426],[427],[428]]},{"type":"MultiLineString","arcs":[[429],[430],[431],[432],[433,434],[435],[436,437],[438],[439],[440],[441,442]]},{"type":"LineString","arcs":[443]},{"type":"LineString","arcs":[444]},{"type":"LineString","arcs":[445]},{"type":"LineString","arcs":[446]},{"type":"LineString","arcs":[447]},{"type":"MultiLineString","arcs":[[448],[449]]},{"type":"LineString","arcs":[450]},{"type":"MultiLineString","arcs":[[451],[452]]},{"type":"LineString","arcs":[453]},{"type":"LineString","arcs":[454]},{"type":"MultiLineString","arcs":[[455],[456]]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[457,458,459]],"type":"Polygon","properties":{"ct":[-70.47,-9.3],"gu":"BRA"},"id":"AC"},{"arcs":[[-460,460,461,462]],"type":"Polygon","properties":{"ct":[-62.84,-10.92],"gu":"BRA"},"id":"RO"},{"arcs":[[463,464,465]],"type":"Polygon","properties":{"ct":[-61.41,2.07],"gu":"BRA"},"id":"RR"},{"arcs":[[-459,466,-464,467,468,-461]],"type":"Polygon","properties":{"ct":[-64.72,-4.18],"gu":"BRA"},"id":"AM"},{"arcs":[[[-466,469,470,471,472,29,473,474,32,475,476,35,477,478,38,479,40,480,481,482,483,-468]],[[484]],[[485]],[[25,486]],[[487,488]],[[489,180,490]],[[182,491,492]],[[185,493]]],"type":"MultiPolygon","properties":{"ct":[-53.27,-4.18],"gu":"BRA"},"id":"PA"},{"arcs":[[494,495,496,497,498,499]],"type":"Polygon","properties":{"ct":[-54.85,-20.33],"gu":"BRA"},"id":"MS"},{"arcs":[[[-471,500,501,15,502,17,503,504,505,21,506,23,507]],[[508]]],"type":"MultiPolygon","properties":{"ct":[-51.98,1.46],"gu":"BRA"},"id":"AP"},{"arcs":[[-462,-469,-484,509,510,-499,511]],"type":"Polygon","properties":{"ct":[-55.93,-12.96],"gu":"BRA"},"id":"MT"},{"arcs":[[-497,512,513,514,109,515,111,516,113,517,518,519]],"type":"Polygon","properties":{"ct":[-51.64,-24.63],"gu":"BRA"},"id":"PR"},{"arcs":[[520]],"type":"Polygon","properties":{"ct":[-47.79,-15.77],"gu":"BRA"},"id":"DF"},{"arcs":[[-500,-511,521,522,523,-521,524]],"type":"Polygon","properties":{"ct":[-49.61,-16.02],"gu":"BRA"},"id":"GO"},{"arcs":[[-483,525,526,527,-522,-510]],"type":"Polygon","properties":{"ct":[-48.33,-10.14],"gu":"BRA"},"id":"TO"},{"arcs":[[-496,528,529,530,531,104,532,106,533,-513]],"type":"Polygon","properties":{"ct":[-48.74,-22.26],"gu":"BRA"},"id":"SP"},{"arcs":[[-482,534,42,535,44,536,537,47,538,539,50,540,52,541,54,542,56,543,544,-526]],"type":"Polygon","properties":{"ct":[-45.3,-5.12],"gu":"BRA"},"id":"MA"},{"arcs":[[[-530,545,546,547,90,548,92,549,94,550,551,100,552,553]],[[554,97,555]]],"type":"MultiPolygon","properties":{"ct":[-42.65,-22.18],"gu":"BRA"},"id":"RJ"},{"arcs":[[-527,-545,556,557,558,559,560]],"type":"Polygon","properties":{"ct":[-42.99,-7.41],"gu":"BRA"},"id":"PI"},{"arcs":[[-495,-525,-524,561,562,-546,-529]],"type":"Polygon","properties":{"ct":[-44.68,-18.45],"gu":"BRA"},"id":"MG"},{"arcs":[[-547,-563,563,564,565,566,567]],"type":"Polygon","properties":{"ct":[-40.67,-19.57],"gu":"BRA"},"id":"ES"},{"arcs":[[[-523,-528,-561,568,569,570,571,77,572,79,573,81,574,83,575,85,576,-564,-562]],[[577]],[[578]]],"type":"MultiPolygon","properties":{"ct":[-41.71,-12.47],"gu":"BRA"},"id":"BA"},{"arcs":[[-559,579,59,580,581,582,63,583,584,585,586,587]],"type":"Polygon","properties":{"ct":[-39.63,-5.1],"gu":"BRA"},"id":"CE"},{"arcs":[[-571,588,589,590,591,75,592]],"type":"Polygon","properties":{"ct":[-37.45,-10.58],"gu":"BRA"},"id":"SE"},{"arcs":[[-570,593,594,-589]],"type":"Polygon","properties":{"ct":[-36.62,-9.51],"gu":"BRA"},"id":"AL"},{"arcs":[[-586,595,596,597,598,599,600]],"type":"Polygon","properties":{"ct":[-36.68,-5.84],"gu":"BRA"},"id":"RN"},{"arcs":[[-560,-588,601,602,603,604,-594,-569]],"type":"Polygon","properties":{"ct":[-38,-8.33],"gu":"BRA"},"id":"PE"},{"arcs":[[-587,-601,605,606,-602]],"type":"Polygon","properties":{"ct":[-36.83,-7.12],"gu":"BRA"},"id":"PB"},{"arcs":[[-519,607,115,608,609,118,610,611,612,613,614,615,616]],"type":"Polygon","properties":{"ct":[-50.51,-27.25],"gu":"BRA"},"id":"SC"},{"arcs":[[-616,617,124,618,126,619,620,621,622,131,623,133,624,625,136,626,-344,627]],"type":"Polygon","properties":{"ct":[-53.33,-29.69],"gu":"BRA"},"id":"RS"}]}}} \ No newline at end of file diff --git a/topojson/dist/usa_110m.json b/topojson/dist/usa_110m.json new file mode 100644 index 00000000000..bc142817075 --- /dev/null +++ b/topojson/dist/usa_110m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[11069,0],[6,15],[5,103],[-8,27],[6,38],[41,38],[54,23],[25,52],[19,17],[-14,35],[16,55],[21,-10],[3,35],[-15,19],[-4,36],[22,82],[79,33],[29,124],[46,103],[2,42],[-10,42],[-26,-13],[-10,60],[20,51],[3,38],[-8,173],[5,251],[-35,92],[-26,52],[-32,71],[-29,117],[29,64],[-21,10],[-23,59],[-37,59],[-27,20],[-37,-2],[-34,41],[-2,34],[30,67],[92,-44],[18,-2],[70,-71],[40,-88],[21,-10],[57,-130],[10,68],[-7,22],[63,116],[19,71],[27,21],[27,55],[2,122],[8,79],[73,113],[59,-22],[11,20],[9,59],[36,-16],[59,4],[57,88],[34,23],[36,74],[52,78],[44,-27],[16,-71],[-22,-38],[-12,-27],[-56,-27],[1,-63],[23,-68],[14,-83],[-6,-48],[-33,-73],[-17,-57],[31,-140],[13,-37],[23,-3],[30,26],[18,47],[4,76],[-5,27],[-43,123],[-10,85],[21,46],[145,105],[18,3],[-6,49],[-32,-12],[-6,68],[12,41],[18,21],[14,-17],[35,-149],[35,15],[50,-25],[44,-54],[14,-51],[0,-67],[18,-36],[23,-7],[105,34],[84,5],[33,-78],[11,-13],[82,-36],[26,5],[31,35],[63,45],[33,45],[105,23],[34,-5],[64,7],[-10,-22],[-69,-22],[-13,-36],[38,-130],[17,46],[19,-16],[23,-43],[18,7],[28,-19],[20,-28],[21,-1],[27,-55],[-19,-28],[-6,-83],[10,-21],[-7,-36],[48,-5],[22,22],[39,-23],[97,-114],[54,-106],[19,-60],[-2,-110],[21,20],[28,-16],[66,-111],[23,-30],[11,-84],[21,42],[71,-21],[42,-2],[37,19],[26,-5],[60,7],[88,-37],[2,-46],[19,34],[39,-47],[52,-22],[121,-186],[34,-100],[8,48],[38,-70],[9,-37],[12,-181],[38,-205],[22,-82],[20,-1],[37,-32],[8,-57],[-12,-77],[-49,-86],[-12,-43],[-34,-70],[-30,-41]],[[11285,5629],[21,-35],[22,-69],[0,-65],[-28,-31],[-31,44],[-7,40],[17,37],[6,79]],[[11852,4721],[-14,-37],[-54,-12],[1,41],[27,23],[40,-15]],[[11600,5292],[52,-155],[-31,48],[-21,107]],[[11366,5989],[42,-58],[-14,-134],[-24,16],[19,64],[9,58],[-32,54]],[[6968,7268],[-18,107]],[[6950,7375],[-25,71]],[[6925,7446],[-61,83],[-39,40]],[[6825,7569],[-94,74]],[[6731,7643],[-40,46]],[[6691,7689],[-95,11],[-15,20],[-2,106]],[[6579,7826],[-43,99]],[[6536,7925],[-86,169],[-22,162]],[[6428,8256],[-18,5]],[[6410,8261],[-28,52],[-12,84]],[[6370,8397],[39,17],[-22,54]],[[6387,8468],[-37,-1],[-29,47],[-29,86]],[[6292,8600],[-53,90],[-9,73],[1,74]],[[6231,8837],[-8,53],[-26,60]],[[6197,8950],[-32,44],[-5,41],[33,122]],[[6193,9157],[1,135]],[[6194,9292],[-49,274],[35,165],[9,78],[19,275],[3,95],[-6,180]],[[6205,10359],[3,76],[14,56]],[[6222,10491],[-33,13],[-31,162],[-27,49],[-6,92],[98,-50]],[[6223,10757],[96,-13],[25,5],[11,-57],[19,-26],[-6,-65],[-33,-72]],[[6335,10529],[18,-6]],[[6353,10523],[38,54]],[[6391,10577],[-10,51],[19,102]],[[6400,10730],[-26,97],[4,35]],[[6378,10862],[-41,70],[6,14]],[[6343,10946],[-36,0],[-16,54],[13,15],[-10,71],[-39,-53],[-38,20],[-26,68],[-34,-2],[-34,56],[25,83],[-48,-14],[-47,34],[-83,-1],[-18,9],[23,59],[-12,14],[-67,27],[-29,-33],[-24,20],[-9,63],[-24,33],[-34,75],[0,50],[14,11],[42,61],[25,21],[-9,49],[-69,-73],[-28,77],[-9,66],[-35,17],[-6,45],[-37,45],[37,18],[-31,53],[10,61],[-58,-66],[-2,-56],[-36,-35],[-75,135],[27,10],[-1,62],[-42,91],[27,35],[22,60],[-12,50]],[[5530,12331],[-21,-52],[-50,-49],[-23,15],[-13,99]],[[5423,12344],[-19,32]],[[5404,12376],[-49,-15],[-56,57],[-6,35],[65,101]],[[5358,12554],[-59,-9],[6,-46],[-64,36],[17,47],[35,21]],[[5293,12603],[-15,40],[-43,53],[-11,40],[-59,27],[-31,110],[4,39],[-50,86],[-60,31],[-63,82],[14,-87],[-26,-14],[-19,42],[-139,-35],[-96,73],[-82,105],[-108,62],[-61,42],[40,36],[-30,33],[-61,-33],[-61,10],[-100,52]],[[4236,13397],[-102,27]],[[4134,13424],[-124,-20],[-35,3],[-27,34]],[[3948,13441],[-50,11],[-32,26],[-69,28],[8,45],[-85,5],[-34,52],[-75,19],[-76,-59]],[[3535,13568],[12,-73],[-18,-84]],[[3529,13411],[-58,-24],[-84,23]],[[3387,13410],[-100,-133],[-45,-4]],[[3242,13273],[-39,-39],[-72,-19],[-15,45],[64,49]],[[3180,13309],[-63,43],[67,172]],[[3184,13524],[10,54]],[[3194,13578],[83,54],[56,-23]],[[3333,13609],[22,21],[-35,52]],[[3320,13682],[-71,4]],[[3249,13686],[-89,-57]],[[3160,13629],[-90,-134]],[[3070,13495],[-49,-41]],[[3021,13454],[-14,-79],[-20,-39],[-121,-73]],[[2866,13263],[-2,-78],[52,9]],[[2916,13194],[44,-46],[-19,-33],[-61,-49]],[[2880,13066],[-43,-81],[-48,-24]],[[2789,12961],[-117,-106],[-67,-48]],[[2605,12807],[17,-32],[-25,-38]],[[2597,12737],[-89,-37]],[[2508,12700],[-67,-80],[-35,-3]],[[2406,12617],[-11,-38],[-26,-24],[-12,-51],[-97,-37],[-24,11]],[[2236,12478],[-68,-63],[-89,-49],[-29,1]],[[2050,12367],[16,56],[-26,2],[-32,-86]],[[2008,12339],[-38,-46],[-92,-22]],[[1878,12271],[-36,-16],[9,55],[74,58]],[[1925,12368],[36,64],[57,54]],[[2018,12486],[57,20],[67,-64]],[[2142,12442],[22,29],[-11,36]],[[2153,12507],[24,66],[54,52],[103,70]],[[2334,12695],[27,24],[51,85],[62,55],[15,158]],[[2489,13017],[14,56],[39,46]],[[2542,13119],[-22,25],[-101,-50],[-38,52]],[[2381,13146],[-38,-27]],[[2343,13119],[17,-54],[-40,-14],[-62,114]],[[2258,13165],[-36,-29]],[[2222,13136],[-63,46]],[[2159,13182],[-137,-96],[-9,103]],[[2013,13189],[-25,51],[34,61]],[[2022,13301],[-69,140],[-28,-44]],[[1925,13397],[-59,-28],[-60,-12],[-48,11],[-4,28],[-60,73]],[[1694,13469],[-70,63],[53,57],[-15,50],[-40,12]],[[1622,13651],[-53,45],[-25,50]],[[1544,13746],[42,132],[56,80],[43,23]],[[1685,13981],[-2,72],[44,69],[41,10],[79,-51]],[[1847,14081],[74,43]],[[1921,14124],[37,52]],[[1958,14176],[131,9]],[[2089,14185],[42,60]],[[2131,14245],[-21,99],[-31,37]],[[2079,14381],[50,54]],[[2129,14435],[-40,68]],[[2089,14503],[-118,-61]],[[1971,14442],[-44,-42]],[[1927,14400],[-109,23]],[[1818,14423],[-79,-1]],[[1739,14422],[-88,-25],[-120,29],[-59,119]],[[1472,14545],[36,43],[-98,21]],[[1410,14609],[-85,39],[14,38],[224,126],[166,62],[71,-8]],[[1800,14866],[-23,-84]],[[1777,14782],[38,-26]],[[1815,14756],[100,4],[92,-10]],[[2007,14750],[44,52]],[[2051,14802],[42,15],[-86,87],[20,49],[-13,25],[-91,-9],[-121,32],[-14,57],[-32,48],[-131,90]],[[1625,15196],[-144,70]],[[1481,15266],[29,20],[20,77]],[[1530,15363],[217,36]],[[1747,15399],[75,44],[41,51]],[[1863,15494],[27,110],[53,62],[66,45]],[[2009,15711],[65,-8],[106,50]],[[2180,15753],[75,62],[73,-7]],[[2328,15808],[128,22]],[[2456,15830],[46,25],[95,84],[116,-62]],[[2713,15877],[49,18],[55,-35],[10,-38],[160,18],[82,-29]],[[3069,15811],[-6,-40],[70,-37],[71,-7]],[[3204,15727],[176,24],[91,-23],[91,-38]],[[3562,15690],[71,-16]],[[3633,15674],[103,3],[99,-33]],[[3835,15644],[78,-14],[111,37]],[[4024,15667],[61,-3],[191,-95]],[[4276,15569],[46,-11]],[[4322,15558],[178,-24],[88,-65],[192,-81],[95,-6],[40,11],[-39,66],[90,15],[17,45],[46,-3],[41,24],[66,-41],[55,3],[83,75],[31,-10],[130,84],[44,12],[109,-29],[-106,-50],[-48,-48],[2,-97],[72,128],[93,31],[60,-39],[68,65],[12,92],[19,48],[87,-65],[61,-121],[83,-76],[43,-15],[61,120],[68,32],[-13,-64],[43,-15],[-45,-55],[17,-16],[94,7],[37,26],[9,58],[40,14],[116,-2],[76,-29],[82,-59],[189,-46],[80,-46],[185,-36],[40,38],[97,-33],[85,-68],[19,-69],[-91,4],[-38,-15],[1,-82],[165,-29],[121,-4],[199,35],[69,40],[49,-64],[71,1],[16,-41],[106,-59],[10,-42],[-34,-14],[5,-43],[46,-21],[3,57],[66,-35],[-18,64],[-44,62],[-18,56],[34,90],[89,18],[32,44],[81,23],[4,44],[-68,-16],[-51,-39],[-72,-14],[-35,-34],[-69,-10],[-55,28],[51,78],[111,20],[124,51],[47,-9],[42,-33],[-11,-73],[71,-38],[49,-48],[102,20],[50,-48],[105,-49],[77,4],[146,32],[103,-28],[78,14],[-6,24],[37,95],[99,44],[27,-51],[72,-25],[46,9],[-18,-112],[-29,-42],[34,-65],[29,16],[44,-34],[35,26],[-47,120],[22,61],[72,-4],[80,91],[61,23],[-24,94],[-46,-50],[-57,4],[49,68],[-12,54],[65,-21],[37,34],[-14,28],[-90,-14],[-34,42],[-36,-11],[-100,42],[-76,81],[-5,34],[40,76],[-41,35],[12,107],[31,31],[70,-22],[20,48],[-60,20],[70,29],[12,49],[75,9],[170,-144],[7,-103],[66,-56],[30,-61],[55,-48],[-146,-98],[114,-49],[52,12],[78,-25],[-63,-30],[63,-54],[17,-64],[3,-82],[40,-33],[33,63],[6,97],[41,57],[41,6],[105,-93],[30,-96],[-57,-22],[-6,-70],[25,-68],[117,-108],[39,45],[73,127],[20,21],[21,128],[70,39],[17,35],[-63,74],[1,84],[27,30],[76,10],[122,-43],[113,-8],[-18,-39],[37,-39],[97,-18],[-3,-72],[18,-57],[-78,-47],[-66,21],[43,-113],[105,-119],[-30,-104],[-57,-20],[-14,-28],[-121,-86],[-34,-4],[-56,88],[-26,-19],[65,-108],[-16,-17],[-75,59],[-19,-42],[-63,10],[-37,68],[-126,-9],[6,-45],[82,-29],[-32,-56],[-102,-124],[-28,-16],[-72,5],[-87,77],[-117,69],[-20,-40],[46,-32],[68,-78],[215,-19],[15,-24],[-40,-73],[-51,-63],[-40,-85],[-49,-23],[-101,-1],[-82,-17],[14,-45],[-18,-32],[-71,-10],[-95,41],[36,-57],[43,-5],[29,-32],[10,-68],[-71,-42],[-118,2],[38,-71],[-65,17],[-13,-68],[-47,-39],[-16,-77],[-47,-44],[-67,-41],[27,-25],[-3,-34],[-49,-127],[-29,-149],[11,-121],[-25,-62],[52,-73],[128,1],[21,-39],[37,-169],[37,-86],[2,-42],[-16,-45],[46,-4],[130,50],[46,-10],[70,-48],[115,-35],[105,-87],[40,-105],[113,-39],[65,-33],[99,-82],[44,-15],[81,12],[185,-40],[10,-78],[-10,-47],[-1,-99],[21,-65],[-17,-192],[62,-88],[21,-57],[96,-113],[26,-86],[60,-53],[64,110],[31,-36],[28,-7],[-21,73],[42,65],[10,85],[-31,62],[6,20],[-23,73],[-10,84],[-7,140],[-43,55],[-11,66],[132,69],[63,54],[78,92],[41,75],[25,94],[-7,170],[-35,119],[-33,66],[-35,43],[-49,29],[-64,76],[44,112],[32,58],[17,53],[41,32],[-34,114],[1,93],[-50,10],[8,43],[49,110],[-51,55],[-17,96],[9,46],[75,47],[46,-9],[124,-45],[99,-14],[37,-27],[90,71],[19,3],[68,-64],[29,-13],[70,-77],[69,-44],[-27,-13],[1,-40],[28,-37],[153,-42],[26,-45],[24,33],[27,-38],[-28,-21],[4,-91],[-15,-47],[21,-63],[-14,-67],[53,-71],[-3,-25],[-64,-21],[13,-71],[42,51],[83,7],[29,-47],[36,-34],[39,-98],[28,44],[86,50],[35,71],[28,-18],[59,88],[22,74],[-21,51],[43,49],[34,89],[42,-25],[0,-65],[32,-53],[50,-39],[-12,-24],[49,-33],[-3,-31],[56,-66],[-11,-59],[49,-16],[-5,-35],[19,-76],[47,-18],[11,-66],[-58,-29],[61,-31],[33,-42],[12,-39],[-30,-74],[-47,-45],[92,-63],[-5,-46],[31,-28],[49,-5],[21,-42],[10,-63],[65,-6],[33,-56],[59,-18],[0,-37],[108,-15],[62,-25],[-3,-41],[-87,-35],[-53,-40],[19,-25],[86,13],[43,18],[30,-73],[-32,-51],[85,18],[40,-21],[40,-42],[21,-58],[-29,-26],[18,-41],[-46,-66],[57,-11],[12,-24],[-30,-91],[-101,-107],[-98,-14],[-58,-40],[-25,10],[-59,-67],[-12,-43],[-79,-86],[-24,-41],[-173,-14],[-163,26],[-81,-2],[-193,-1],[-97,-13],[-48,-45],[-36,-56],[-7,-56],[-22,-45],[-77,-12],[-100,-110],[-61,-120],[-41,-107],[-30,-53],[-33,-25],[-86,-149],[89,66],[80,137],[39,83],[48,60],[65,58],[180,117],[54,25],[80,14],[66,-10],[47,-31],[34,-44],[-3,-84],[-58,-61],[-53,-45],[-24,-3],[-49,40],[-69,-23],[64,-36],[37,-63],[51,42],[48,-29],[-31,-92],[16,-122],[36,-113],[62,-11],[-4,-40],[71,-45],[71,-10],[26,-32],[42,39],[25,-28],[32,-2],[39,-29],[13,-56],[-61,-24],[-38,-34],[-76,-47],[-16,-20],[-44,5],[-34,-23],[-2,-39],[-33,7],[-6,32],[-38,-18],[-7,-48],[-70,-130],[-39,-14],[-7,-32],[-27,-8],[-25,66],[-31,-4],[-8,138],[28,45],[109,108],[63,44],[26,-24],[45,29],[-2,20],[-50,-1],[-79,-15],[4,23],[63,71],[-22,21],[-48,-62],[-97,-78],[-70,-22],[-68,-10]],[[12512,10069],[13,-60],[-96,-54]],[[12429,9955],[-17,-37],[-23,27],[-40,-32],[-26,15],[-54,-108],[-16,3]],[[12253,9823],[-32,-40],[-30,15]],[[12191,9798],[-21,-22]],[[12170,9776],[-70,-190]],[[12100,9586],[4,-47],[-30,-89]],[[12074,9450],[18,-6],[39,-105],[33,-17],[32,18]],[[12196,9340],[-5,-50],[-72,14]],[[12119,9304],[-59,-41],[-6,40]],[[12054,9303],[-17,21]],[[12037,9324],[-12,-82],[-163,-26]],[[11862,9216],[-76,-56]],[[11786,9160],[7,-21]],[[11793,9139],[146,30]],[[11939,9169],[40,0],[-123,-82],[-103,-28],[-27,21]],[[11726,9080],[-9,-41],[22,-8]],[[11739,9031],[7,-47],[-11,-104],[-25,-70],[-46,-84],[-20,-3]],[[11644,8723],[-74,96]],[[11570,8819],[32,-126]],[[11602,8693],[23,-25],[5,-87],[-21,-86],[-46,-118],[-19,-72],[-21,31],[13,69],[24,52]],[[11560,8457],[-16,20],[-15,89]],[[11529,8566],[-20,-25],[-20,52],[8,35]],[[11497,8628],[-2,125],[-26,7],[-5,-98]],[[11464,8662],[3,-53]],[[11467,8609],[22,-87],[1,-115]],[[11490,8407],[-13,-9],[10,-95],[-23,-19],[7,-42],[26,13],[30,-21]],[[11527,8234],[15,-100],[-12,-48]],[[11530,8086],[-46,-25],[-38,29],[-2,-61],[99,6]],[[11543,8035],[11,-29],[-2,-50]],[[11552,7956],[-45,-62],[-36,-6],[-9,-47],[28,-39]],[[11490,7802],[-20,-43],[-69,-12]],[[11401,7747],[-52,-62]],[[11349,7685],[-64,-109],[-25,-3]],[[11260,7573],[-43,-30]],[[11217,7543],[-34,-63],[-10,-42],[-39,-58]],[[11134,7380],[-40,-79],[-40,-33],[-48,-67]],[[11006,7201],[-50,-115]],[[10956,7086],[-34,-158]],[[10922,6928],[0,-92],[21,-184]],[[10943,6652],[31,-141]],[[10974,6511],[25,-77],[20,-82]],[[11019,6352],[6,-104]],[[11025,6248],[16,-64],[30,-148],[7,-50],[-14,-240],[-10,-2]],[[11054,5744],[-14,-91],[-16,-19]],[[11024,5634],[-62,-23],[-10,23]],[[10952,5634],[1,48],[-24,72],[-24,28],[-64,198]],[[10841,5980],[-10,-3],[-47,168]],[[10784,6145],[-18,79],[22,160]],[[10788,6384],[-19,131]],[[10769,6515],[-30,12],[-57,137]],[[10682,6664],[-46,61]],[[10636,6725],[-25,-3],[-25,-37]],[[10586,6685],[-32,-31],[-62,-22],[-9,56]],[[10483,6688],[-58,67]],[[10425,6755],[-43,28]],[[10382,6783],[-47,7]],[[10335,6790],[-131,-32],[9,24]],[[10213,6782],[-10,65],[-9,8],[-26,-70]],[[10168,6785],[-67,11]],[[10101,6796],[-49,-20]],[[10052,6776],[-62,-70]],[[9990,6706],[20,-35]],[[10010,6671],[32,10],[4,-28],[-38,-41]],[[10008,6612],[18,-40]],[[10026,6572],[36,-17],[15,-56],[-35,-30],[-8,52]],[[10034,6521],[-24,44],[-35,11],[-14,-39],[-38,15]],[[9923,6552],[-48,-45],[-30,26],[-20,50],[-55,80]],[[9770,6663],[-37,-28]],[[9733,6635],[-17,-38],[-39,15],[-64,40],[-43,-6]],[[9570,6646],[-46,-18]],[[9524,6628],[-56,-42],[-18,63]],[[9450,6649],[-31,-12]],[[9419,6637],[9,-95],[-52,-93],[-106,-101]],[[9270,6348],[-15,-19],[-25,5]],[[9230,6334],[-33,-34],[-30,-72],[-4,-38],[-20,-94],[2,-108],[7,-65]],[[9152,5923],[21,-97],[-13,-34]],[[9160,5792],[21,6],[-4,-62],[-35,-135],[-19,-127],[-7,-117],[-3,-196],[-10,-144],[12,-92],[25,-71],[21,-160],[15,-70],[81,-187],[24,-130],[38,-94],[29,-28],[62,-21],[33,-32],[21,-68],[13,-9],[36,12],[41,26],[74,27],[51,37],[74,20],[32,0],[65,76],[42,66],[31,138],[-3,58],[7,134],[12,49],[54,50],[124,44],[40,23],[52,5],[70,-33],[34,9],[20,-77],[-13,-60],[-42,-85],[-25,-89],[-2,-60],[-27,-32],[16,-58],[-10,-45],[15,-20],[-35,-207],[-20,151],[-30,-84],[21,-27],[-2,-80],[-8,-48],[-9,-110],[8,-71],[-12,-78],[-18,-65],[-28,-31],[-21,-70],[45,-4],[33,-33],[15,-4],[19,35],[21,10],[37,-21],[63,-11],[43,5],[49,25],[124,8],[52,-26],[119,-151],[21,-33],[-18,-51],[8,-62],[-27,-150],[-9,-125],[6,-170],[-13,-30],[-10,-85],[-2,-94],[-15,-42],[8,-69],[15,-30],[19,-91],[14,-43],[63,-142],[26,-28],[21,-35],[2,-46],[12,-41],[20,-22],[50,-7],[13,-22],[22,-4],[36,14],[62,66],[42,34],[21,-35],[17,-6],[13,-29],[-21,-40],[2,-41],[-47,-63],[-20,-7],[-4,-68],[37,-79],[4,-43],[-46,-47],[-31,-7],[-24,13],[-14,138],[-16,-3],[0,-41],[-32,15],[-28,98],[-50,12],[-9,21],[-41,-3],[-28,-64],[-30,131],[-14,-20],[-1,-35],[-26,14],[-20,32],[13,55],[-4,49],[-35,59],[-52,44],[-24,50],[-9,44],[-58,70],[12,-56],[27,-41],[-27,-51],[-46,65],[-26,52],[-8,53],[13,42],[6,122],[-92,158],[-26,82],[-85,143],[5,35],[19,8],[-9,27],[1,64],[-41,-9],[-8,12],[4,-27],[-23,-27],[-60,5],[-31,13],[-53,52],[-22,4],[-42,27],[-30,29],[-51,38],[-52,-1],[-27,9],[-50,51],[-52,79],[-81,163],[-55,96],[-42,57],[-43,35],[-54,23],[-49,-8],[-49,-51],[-74,-58],[-25,-6],[-44,22],[-36,37],[-76,30],[-53,46],[-40,55],[-51,26],[-44,13],[-30,32],[-128,97],[-75,112],[-44,49],[-26,-2],[-43,20],[-85,59],[-24,73],[-45,64],[-101,102],[-52,132],[-22,89],[10,20],[30,9],[15,206],[-28,44],[-19,66],[-7,93],[-16,69],[-63,118],[-55,146],[-36,62],[-82,112],[-26,77],[-29,65],[-70,57],[-35,38],[-6,61],[21,83],[-3,49],[-31,33],[-107,134],[-8,19],[-1,91],[-22,35],[-19,5],[-42,58],[-49,92],[-75,216],[-62,225],[-3,93],[-62,96],[-38,28],[-22,-18],[-42,52],[-28,20],[-10,-151],[15,-42],[13,-108],[-2,-65],[30,-82],[36,-43],[45,-72],[11,-67],[70,-119],[7,-25],[10,-105],[7,-27],[51,-98],[27,-65],[45,-71],[23,-97],[9,-109],[53,-166],[17,-157],[14,-31],[19,-8],[27,14],[34,-54],[38,-97],[8,-40],[-15,-62],[-38,-51],[-13,6],[-46,160],[-67,107],[-56,58],[-18,-1],[-40,42],[-21,55],[15,135],[1,80],[-10,53],[-16,39],[-79,96],[-138,123],[-41,81],[-41,59],[59,1],[22,22],[27,75],[2,58],[-12,34],[-80,149],[-91,107],[-37,192],[-31,111],[-27,74],[-29,118],[-25,70],[-9,54]],[[14445,0],[4,18],[25,-8],[-1,-10]],[[14425,14],[-14,-14]],[[14396,0],[-13,10],[-4,41],[65,29],[6,-20],[-25,-46]],[[14372,63],[-25,-13],[12,59],[13,-46]],[[14379,77],[-3,57],[25,-17],[-22,-40]],[[14375,433],[-16,-20],[-11,40],[20,28],[7,-48]],[[10328,15860],[107,29],[70,6],[47,34],[28,77],[-83,7],[-54,63],[32,109],[-23,70],[9,45],[52,76],[268,93],[123,2],[50,-80],[47,-43],[43,-106],[-19,-69],[-47,-68],[64,-9],[46,79],[66,0],[52,-38],[68,87],[87,30],[80,-7],[49,-26],[127,-28],[28,-53],[-34,-30],[108,-9],[3,-55],[-96,-29],[38,-38],[53,45],[73,-2],[-57,-58],[114,-37],[53,73],[124,-34],[38,-45],[-35,-44],[-70,2],[-25,-43],[28,-23],[81,22],[58,52],[33,-43],[-4,-42],[150,8],[80,-37],[-2,-52],[-124,-36],[144,-2],[28,28],[51,-33],[53,-100],[-86,11],[-63,-49],[70,-21],[67,0],[62,-45],[-11,-28],[-79,6],[-93,30],[-13,-28],[71,-30],[-29,-55],[-143,16],[72,-47],[155,-57],[70,-65],[52,-25],[164,-5],[70,-82],[8,-35],[-52,-33],[75,-17],[59,-27],[25,-40],[58,-4],[55,15],[65,-48],[-8,-97],[-48,-10],[-56,22],[-18,-39],[33,-94],[-40,-1],[2,-47],[-71,30],[-45,-53],[40,-52],[-20,-79],[-70,75],[-68,3],[-24,70],[-52,30],[14,68],[-59,-10],[-54,73],[-91,43],[-43,-59],[44,-35],[-13,-27],[-83,23],[34,-87],[49,-14],[11,-85],[104,-93],[76,-3],[-15,-56],[71,-7],[-39,-47],[67,-77],[-10,-34],[44,-21],[-11,-79],[-57,16],[57,-111],[-85,-15],[-123,56],[-31,4],[-121,146],[-1,-61],[-71,57],[-28,-40],[71,-91],[27,-5],[68,-54],[32,-51],[28,-2],[73,-95],[10,-77],[-56,4],[-25,23],[-92,39],[-111,17],[-76,45],[-34,55],[-37,32],[-34,-23],[-93,64],[-70,25],[-11,65],[52,23],[-61,57],[-71,3],[-44,81],[-57,39],[2,36],[-27,30],[-45,-12],[-16,35],[-55,-68],[-78,15],[-114,-32],[-40,-23],[-114,19],[-44,54],[2,85],[52,36],[28,77],[169,-43],[42,1],[180,58],[18,52],[-77,69],[6,31],[48,28],[96,85],[18,40],[76,78],[-62,138],[-22,67],[-40,29],[-47,4],[-3,42],[-76,19],[-35,77],[-80,5],[-88,-58],[-40,7],[4,61],[114,17],[1,34],[-66,44],[-111,49],[46,23],[-53,30],[-48,-12],[5,77],[-24,21],[-128,18],[39,-82],[-17,-18],[-89,-7],[-43,34],[-128,-5],[-25,-20],[-104,-16],[-79,41],[-76,-13],[-214,34],[-25,-19],[-69,45],[-8,32],[-150,-27],[-111,76],[-37,41],[-9,54],[67,8],[85,-26],[88,20],[-95,48],[-178,17],[-37,31],[12,163],[-10,30],[67,99],[2,54],[38,62],[80,64],[73,36],[109,26],[156,-6],[28,-36],[-103,-64],[-78,-107],[0,-64],[30,-59],[-5,-74],[78,-88],[86,-59],[-211,-80]],[[7251,16220],[99,12],[67,77],[112,-26],[97,-38],[-24,-55],[87,21],[55,-19],[30,53],[-73,28],[66,28],[127,-82],[21,-28],[37,-167],[45,-28],[55,71],[-47,59],[-7,54],[-46,152],[25,52],[154,-28],[120,-70],[95,-241],[35,-46],[3,-56],[-23,-69],[123,-103],[92,-24],[119,-78],[63,3],[3,-107],[-85,12],[-37,41],[-43,-25],[2,-67],[49,-8],[27,-66],[-9,-37],[-99,-22],[-33,-22],[-236,20],[27,40],[-114,20],[-44,20],[-31,54],[-89,-111],[-125,-24],[-45,-32],[-106,-28],[-303,-30],[-59,3],[-54,68],[4,85],[-65,20],[-111,-6],[-73,9],[-66,24],[-83,77],[-23,53],[46,31],[270,45],[203,-23],[139,28],[-130,46],[-150,36],[-55,-14],[-162,-14],[-36,11],[-137,-8],[-76,56],[-14,43],[59,28],[189,45],[-3,13],[-140,6],[-87,-16],[-16,20],[67,43],[-131,-8],[-25,51],[88,77],[-24,60],[143,102],[289,99],[74,-40],[4,-82],[-71,-48]],[[12590,18517],[174,3],[207,-91],[179,-16],[13,-44],[-318,-105],[-130,-2],[-28,-56],[93,-26],[-464,-171],[-282,-198],[-139,-14],[-79,-38],[-409,-51],[288,-9],[-14,-48],[-126,-9],[112,-41],[0,-45],[-64,-16],[32,-42],[-80,-26],[8,-40],[-156,-26],[-157,12],[68,-90],[-56,-45],[-104,-17],[33,-41],[-46,-41],[75,-23],[74,45],[32,-83],[-91,-26],[-130,-59],[-132,-28],[25,61],[-148,22],[-21,-28],[-154,7],[-79,-24],[-94,-6],[-93,17],[-172,-6],[-207,46],[-4,68],[113,49],[164,24],[-131,113],[11,32],[91,17],[142,-41],[38,-61],[116,-14],[-75,66],[-14,45],[-62,42],[-172,16],[17,78],[95,70],[173,22],[92,64],[-111,103],[-146,30],[-5,115],[294,-9],[271,-122],[-14,55],[-80,20],[-105,63],[300,31],[160,34],[-49,51],[-162,-43],[-241,-25],[-325,-2],[-233,33],[-140,52],[-96,58],[5,46],[83,55],[-235,24],[122,32],[150,-3],[25,33],[230,45],[169,15],[-43,41],[344,-40],[52,86],[66,30],[250,34],[224,-18],[45,48],[273,-14],[193,14],[340,3],[-8,-23],[363,-24]],[[13780,11530],[21,-7],[-37,-82],[-5,-57],[-89,-189],[-31,-82],[11,-29],[35,59],[45,49],[51,-29],[-38,-106],[32,-22],[58,3],[37,-32],[30,58],[15,-47],[47,35],[59,-50],[-52,-82],[4,-70],[27,-41],[19,36],[44,32],[11,-20],[-12,-43],[-36,-30],[-42,-17],[15,-38],[-18,-52],[7,-37],[22,-24],[29,107],[45,20],[-27,-68],[-11,-49],[67,-18],[-21,-55],[-9,-72],[-34,-63],[-38,-5],[-9,22],[11,90],[-50,-62],[-20,26],[38,103],[-18,85],[-27,21],[-22,-88],[-19,-26],[-25,6],[-25,-44],[-21,-62],[-62,-15],[-9,42],[65,55],[49,56],[-51,26],[-30,-33],[-37,11],[8,55],[-45,-41],[-70,-16],[-50,14],[-114,20],[-42,-24],[-42,-7],[-20,14],[-10,63],[107,121],[-33,19],[43,114],[25,-10],[12,122],[78,237],[38,71],[37,97],[68,45],[41,10]],[[6548,16627],[96,-35],[132,-23],[87,24],[76,-12],[201,-127],[31,-39],[-58,-33],[-96,-30],[-270,-125],[-22,-57],[-95,-43],[-23,-112],[-19,-38],[-85,-32],[-73,-8],[-98,-58],[-59,26],[-29,68],[-44,43],[-161,62],[-22,42],[43,71],[38,19],[-8,61],[67,24],[-38,43],[101,127],[-36,39],[-42,89],[79,30],[284,29],[43,-25]],[[9275,17211],[69,4],[139,-32],[88,-5],[64,-62],[76,-5],[101,21],[95,-28],[-8,-25],[153,-35],[-51,-30],[-122,3],[248,-114],[46,-35],[117,17],[75,-43],[34,25],[197,44],[48,25],[121,-9],[59,14],[136,-16],[14,-31],[78,2],[74,-42],[14,-36],[-84,-50],[78,-12],[-82,-95],[-198,-21],[-172,12],[-144,-10],[-149,4],[-182,-10],[-68,6],[10,57],[-77,-8],[-14,-31],[-83,-11],[-101,34],[-66,-9],[-55,27],[-47,147],[45,41],[-12,41],[-107,129],[-72,-20],[-112,5],[-118,22],[-62,82],[-57,35],[64,28]],[[10515,14626],[43,-40],[28,41],[31,-42],[95,-45],[61,-61],[48,-11],[69,-67],[-16,-87],[102,9],[84,-75],[-83,-71],[-150,42],[-5,44],[-79,44],[-64,-5],[-5,-59],[-54,-31],[-46,-70],[-82,-44],[-33,17],[2,93],[-14,33],[-133,-45],[-31,37],[29,40],[85,43],[-19,51],[-5,62],[29,72],[5,130],[11,50],[43,43],[46,-21],[8,-77]],[[7932,16994],[71,-3],[11,-39],[69,-2],[47,40],[124,-32],[18,-53],[-70,-136],[-135,-35],[-50,16],[-82,-15],[-60,28],[-74,-40],[-87,-9],[-21,-26],[-136,-49],[-98,-18],[-111,10],[-81,55],[175,64],[130,2],[11,34],[-122,5],[-41,-16],[-151,-2],[-70,-27],[-73,2],[-219,63],[94,123],[23,70],[89,29],[36,47],[149,1],[18,-60],[85,17],[74,-16],[107,-81],[43,-71],[77,11],[160,-17],[27,27],[-39,33],[-98,30],[87,47],[-122,46],[96,86],[106,15],[3,-71],[47,-48],[-37,-35]],[[9570,18168],[204,-37],[121,-127],[190,-32],[154,-10],[7,-73],[67,-36],[35,-57],[122,-21],[71,-67],[-224,-57],[-70,-79],[-117,-67],[-25,-46],[-105,49],[-65,-52],[-134,8],[-104,30],[-201,150],[181,60],[-184,38],[-72,-35],[-84,33],[5,28],[-116,123],[102,110],[178,4],[-86,38],[-26,50],[230,21],[-54,54]],[[8889,16506],[71,-36],[165,36],[52,-8],[27,-49],[-166,-142],[68,9],[61,-16],[21,-42],[57,-7],[34,-74],[-32,-32],[8,-71],[-27,-33],[-147,-61],[-48,-47],[-35,-2],[-59,42],[-55,80],[-93,74],[-135,38],[-86,73],[21,77],[80,-6],[58,-66],[97,9],[35,30],[-41,85],[-55,0],[-78,51],[48,25],[25,46],[129,17]],[[5909,11139],[-14,12],[-39,-13],[3,55],[-64,6],[-56,89],[-20,46],[37,30],[71,-31],[7,-13],[80,-40],[110,-30],[29,-37],[64,-160],[66,-38],[49,-66],[32,-86],[17,-30],[-37,-40],[-121,67],[-47,38],[33,51],[-55,-2],[-15,-19],[-34,33],[-24,87],[-56,-18],[9,59],[-25,50]],[[9909,16453],[-78,-89],[-57,-85],[-57,-37],[-88,17],[-80,-17],[43,-58],[-43,-36],[-23,-54],[-126,-15],[4,106],[-58,78],[9,182],[33,36],[-3,45],[72,25],[132,19],[130,-31],[136,-6],[84,-19],[-30,-61]],[[9037,17109],[87,-23],[20,-223],[-60,-46],[52,-31],[-59,-25],[-161,-13],[-91,13],[-24,76],[97,49],[-30,19],[-282,-37],[-36,25],[133,79],[-53,62],[28,43],[61,-6],[100,-77],[40,19],[-37,47],[-65,28],[90,32],[137,-39],[53,28]],[[7159,17270],[-110,-38],[50,-54],[6,-46],[-126,-34],[13,-35],[-68,-25],[-54,30],[19,66],[-102,-40],[25,-42],[-85,-43],[-47,-57],[-60,-16],[-81,35],[-118,14],[-53,29],[-9,40],[131,31],[262,189],[146,9],[58,-17],[101,55],[102,-51]],[[9147,15562],[78,-36],[93,-79],[17,-91],[-56,-57],[-32,-6],[-105,24],[-79,52],[-69,22],[-43,-8],[-27,60],[74,13],[33,24],[-8,60],[71,76],[53,-54]],[[8540,17701],[73,-47],[69,11],[58,-62],[89,3],[76,-47],[-8,-67],[85,-52],[-23,-48],[-122,-10],[-84,80],[-197,45],[-184,-22],[-61,53],[165,-1],[8,63],[-137,53],[-78,-4],[-9,66],[176,16],[104,-30]],[[10990,16473],[36,6],[117,-29],[145,7],[102,-34],[129,-136],[-35,-20],[-147,19],[-61,-2],[-99,-32],[-96,26],[-29,83],[-66,21],[4,91]],[[13208,10293],[-39,-82],[35,-10],[30,51],[-22,15],[50,55],[4,27],[51,-47],[-4,-38],[-42,-51],[-47,-28],[-26,10],[-51,-9],[-21,99],[17,7],[51,143],[35,70],[34,-36],[-13,-116],[-42,-60]],[[11537,15022],[-124,1],[-23,43],[-8,64],[34,75],[40,46],[80,16],[98,-39],[-3,-125],[-16,-38],[-78,-43]],[[13093,10961],[-40,-1],[-99,36],[-42,31],[-62,76],[-47,45],[35,9],[84,-27],[87,-47],[54,-51],[24,-9],[26,-48],[-20,-14]],[[9597,16733],[-34,-58],[-110,-2],[-213,80],[22,47],[77,72],[93,25],[65,-12],[91,-75],[9,-77]],[[5250,11993],[19,-21],[34,26],[13,71],[40,28],[-29,-151],[-31,-62],[-31,-12],[-30,41],[-1,33],[-39,72],[8,83],[82,-13],[23,-51],[-14,-22],[-44,-22]],[[10861,14061],[3,-52],[-100,-99],[-32,-21],[-64,7],[-20,41],[36,96],[33,26],[35,-16],[38,18],[71,0]],[[12844,10448],[27,-60],[14,-6],[193,-4],[-43,-32],[-20,-38],[6,-37],[-36,-4],[-9,42],[-77,14],[-40,42],[-16,48],[1,35]],[[9276,17542],[82,-3],[79,-35],[-44,-32],[14,-59],[-220,-33],[-38,41],[63,33],[-116,34],[-46,34],[-6,71],[83,12],[155,-40],[-6,-23]],[[7662,17385],[93,-19],[-4,-41],[-82,-30],[-135,-21],[-128,58],[3,75],[242,38],[111,5],[16,-41],[-116,-24]],[[8364,16381],[-69,-88],[-33,2],[-112,102],[-59,14],[54,56],[150,8],[68,-33],[1,-61]],[[11116,13763],[-19,-8],[-40,50],[0,76],[27,46],[41,16],[37,-41],[-46,-139]],[[11004,11769],[-138,61],[13,47],[77,4],[34,-43],[14,-69]],[[7841,17527],[-19,-33],[-218,-5],[-177,35],[288,69],[126,-66]],[[9368,17383],[201,-8],[63,-27],[-54,-49],[-251,5],[-52,37],[93,42]],[[5345,11881],[-27,-32],[34,-95],[41,-71],[-11,-15],[-74,120],[-29,36],[-3,38],[57,30],[12,-11]],[[5704,11841],[-11,-89],[-42,21],[-14,32],[7,79],[36,-2],[24,-41]],[[11816,15143],[-105,-5],[-48,39],[3,30],[143,-20],[7,-44]],[[6846,16888],[-37,-22],[-73,44],[158,93],[27,-29],[-75,-86]],[[11182,12573],[-42,-41],[-42,-17],[69,118],[32,-36],[-17,-24]],[[9979,17250],[-49,-4],[-91,42],[10,49],[77,6],[69,-30],[-16,-63]],[[11319,14095],[-72,64],[39,21],[56,-15],[13,-49],[-36,-21]],[[8370,17232],[-88,10],[-91,121],[98,-22],[81,-109]],[[8570,17003],[-75,-17],[-85,3],[-10,38],[164,21],[6,-45]],[[10370,15145],[-51,9],[-4,63],[59,19],[-4,-91]],[[8418,16764],[-93,16],[20,43],[96,13],[29,-46],[-52,-26]],[[11205,15393],[-56,6],[99,103],[29,-24],[-72,-85]],[[8494,17052],[-113,1],[-31,58],[60,17],[125,-52],[-41,-24]],[[12779,13726],[-13,-22],[-71,49],[5,19],[73,0],[6,-46]],[[8889,17904],[79,-3],[48,-77],[-169,24],[42,56]],[[11119,15597],[37,-24],[-70,-35],[-84,26],[117,33]],[[12416,13473],[-53,-11],[21,69],[45,-18],[-13,-40]],[[5792,11608],[-14,40],[65,66],[-3,-37],[-36,-29],[-12,-40]],[[11386,14226],[51,-17],[26,-35],[-45,-11],[-32,63]],[[12149,14011],[22,-32],[-61,-5],[-5,48],[44,-11]],[[7329,17364],[-46,-6],[-89,58],[87,17],[84,-50],[-36,-19]],[[10577,14660],[-60,27],[28,45],[32,-72]],[[11422,15448],[-37,0],[-9,58],[72,2],[-26,-60]],[[8737,17386],[-101,-33],[-50,26],[86,24],[65,-17]],[[9353,15551],[31,-24],[-20,-37],[-51,9],[7,48],[33,4]],[[5909,11139],[7,-59],[-40,32],[33,27]],[[10889,5171],[20,-21],[30,15],[19,-22],[29,24],[65,-51],[30,1],[34,-33],[21,-52],[29,-34],[61,-1],[59,-56],[38,-57],[43,-48],[2,20],[96,-104],[46,-32],[45,-1],[16,-26],[-11,-62],[72,-8],[26,-16],[28,-48],[38,-24],[6,-24],[-18,-28],[-61,-10],[-49,-32],[-48,17],[-48,6],[-64,-9],[-104,-26],[5,42],[25,40],[24,20],[12,40],[-29,56],[-77,-3],[-48,76],[-13,93],[-18,41],[-60,-17],[-158,110],[-109,33],[-48,35],[48,21],[4,27],[-23,23],[-84,0],[-36,-33],[-40,-62],[-74,-41],[-8,-34],[-33,-18],[-42,8],[20,32],[18,75],[20,44],[37,43],[80,54],[74,25],[24,18],[59,-6]],[[10798,4816],[-36,-27],[-23,76],[16,35],[27,-11],[16,-73]],[[13140,3494],[20,-38],[-2,-48],[-12,-10],[-11,75],[5,21]],[[11995,4401],[20,46],[65,5],[70,-52],[51,-28],[31,-62],[44,11],[0,-35],[-42,8],[-3,-31],[42,-14],[37,1],[23,-21],[42,-72],[-14,-54],[-34,-29],[-20,39],[-87,11],[-36,-20],[-19,-31],[-30,-8],[-23,48],[-31,-28],[-23,-76],[-31,-65],[-16,25],[-16,59],[-32,45],[-53,-3],[-42,-15],[-51,20],[-32,0],[-32,-29],[-42,39],[-18,29],[7,45],[23,13],[62,-39],[108,-11],[33,18],[5,34],[-52,77],[12,94],[-39,40],[-39,2],[-6,27],[29,35],[41,8],[53,-40],[65,-16]],[[13137,3687],[7,-63],[-21,-49],[-14,-10],[-11,71],[24,0],[15,51]],[[14960,13463],[-3,44],[-29,19],[-45,0],[-4,62],[-74,56],[-35,-50],[-29,21],[-77,-9],[-25,44],[-76,27],[-61,68],[21,84],[-52,62],[-86,47],[-13,23],[21,48],[-11,45],[-36,10],[8,42],[-55,2],[-16,30],[-4,74],[-68,127],[61,-3],[51,53],[8,61],[-40,21],[-30,-13],[-48,-97],[-32,2],[4,96],[70,54],[-30,10],[-28,-42],[-29,2],[3,90],[-83,97],[-7,47],[-34,0],[-12,50],[-37,64],[48,69],[64,-3],[2,40],[-102,9],[-35,37],[15,113],[53,82],[-3,48],[84,5],[60,-29],[100,-4],[-9,56],[-140,-11],[-67,19],[70,54],[91,-8],[59,15],[10,32],[-24,42],[10,40],[93,-10],[-23,49],[-53,-1],[51,84],[21,76],[-113,13],[-81,-4],[-129,70],[-93,16],[-62,56],[53,37],[180,-27],[79,-52],[78,-8],[-37,57],[19,98],[-94,-9],[-48,27],[33,34],[-84,12],[56,47],[-101,52],[-38,-33],[-17,-61],[-96,-19],[-72,13],[-52,61],[71,54],[-37,26],[73,50],[35,124],[-74,81],[9,53],[-82,45],[19,62],[-56,31],[-30,91],[34,10],[-81,62],[-13,33],[-115,38],[-43,57],[37,42],[-26,37],[-73,1],[-79,60],[-131,42],[-167,20],[-106,29],[-174,-47],[-217,23],[-39,-22],[50,-48],[-152,25],[-157,69],[93,39],[-40,28],[-164,25],[-83,49],[23,27],[294,49],[142,7],[93,-18],[41,43],[-107,43],[-66,-37],[-184,-13],[-82,18],[-3,31],[-249,68],[-68,37],[32,79],[374,70],[17,30],[195,37],[131,-3],[141,88],[-20,107],[-220,19],[-36,63],[200,72],[195,96],[86,23],[203,-22],[25,97],[-32,63],[286,62],[461,59],[99,-56],[116,-26],[295,-28],[46,12],[-143,60],[-45,69],[200,-3],[199,-62],[129,-25],[136,-71],[20,20]],[[14960,18455],[-91,35],[91,13]],[[14960,18530],[-54,34],[54,7]],[[14295,15619],[25,-10],[-22,-70],[-46,31],[43,49]],[[14201,15557],[-43,-41],[-148,-46],[-62,17],[-5,51],[-58,5],[-13,144],[39,19],[130,-24],[62,-61],[68,-24],[30,-40]],[[14273,18316],[-214,25],[40,45],[174,-70]],[[14960,18332],[-5,-2],[-93,40],[-117,31],[-90,57],[187,4],[118,-43]],[[14960,18372],[-14,-5],[14,-8]],[[11879,4195],[-48,16],[4,27],[44,-43]],[[11484,4058],[21,-58],[-36,-11],[-28,18],[-35,-7],[-10,-33],[-75,42],[-46,58],[24,56],[25,15],[86,-23],[74,-57]],[[7506,6429],[-33,23],[12,69],[17,7],[11,-42],[-7,-57]],[[7413,6489],[-14,3],[-40,78],[9,28],[32,-55],[13,-54]],[[13189,3301],[15,-45],[-19,-23],[-23,74],[27,-6]],[[10903,1643],[-15,-3],[-16,38],[17,26],[14,-61]],[[12651,4024],[-40,-20],[-57,14],[-53,-10],[-4,98],[18,30],[130,-15],[26,-19],[5,-32],[-25,-46]],[[13193,2421],[-6,-156],[-17,-15],[-81,-7],[36,42],[11,24],[-1,48],[-9,27],[18,23],[49,14]],[[12864,2435],[-15,-6],[-33,39],[43,13],[5,-46]],[[9825,37],[11,-37]],[[9811,0],[14,37]],[[2699,4255],[-30,18]],[[2669,4273],[-11,115]],[[2658,4388],[19,92]],[[2677,4480],[-6,35],[2,10],[37,-29]],[[2710,4496],[38,-35],[33,-76],[10,-29]],[[2791,4356],[-1,-5],[-16,-28],[-67,-73],[-8,5]],[[2616,4598],[-14,27],[-18,53]],[[2584,4678],[4,15],[45,-16],[27,-43],[0,-9],[-20,-19],[-24,-8]],[[2529,4710],[-14,2],[7,28],[59,-13],[-17,-25],[-35,8]],[[2462,4783],[14,-26],[-6,-2]],[[2470,4755],[-46,8]],[[2424,4763],[-17,57]],[[2407,4820],[4,4]],[[2411,4824],[29,26],[22,-67]],[[2262,4963],[12,1]],[[2274,4964],[10,1],[1,-2],[8,-10],[-2,-45],[-9,-17],[-7,-4],[-24,18],[-11,14],[22,44]],[[10896,5487],[-9,20],[35,36],[4,-38],[-30,-18]],[[6388,10719],[-46,54],[14,40],[32,-94]],[[231,11533],[-20,65],[43,-19],[-23,-46]],[[399,11557],[-58,-28],[15,64],[23,23],[20,-59]],[[581,11620],[57,58],[3,-38],[-60,-20]],[[1271,11847],[-30,19],[52,81],[22,15],[32,-34],[-76,-81]],[[1481,12037],[43,-1],[-7,-45],[-40,-36],[-89,-50],[-24,21],[67,32],[29,47],[-27,10],[8,38],[40,-16]],[[1736,12177],[-13,-20],[-42,-1],[-11,40],[41,60],[72,36],[42,4]],[[1825,12296],[13,-42],[23,-36],[-66,-13],[-59,-28]],[[5198,12522],[31,-9],[34,-44],[28,-64],[33,-163],[-43,-12],[-43,88],[-38,5],[-25,33],[24,25],[-39,52],[12,38],[-33,58],[0,61],[34,-6],[25,-62]],[[5214,12705],[45,-64]],[[5259,12641],[-29,-20],[-69,-9],[-51,31],[2,-54],[-10,-59],[-32,10],[-2,95],[-15,38],[7,38],[33,4],[14,40],[66,-19],[41,-31]],[[5027,12565],[-29,18],[-18,55],[-36,46],[11,58],[-7,46],[-30,28],[9,17],[0,14],[64,-19],[14,-29],[24,-140],[-2,-94]],[[3010,12931],[55,1],[-17,-36]],[[3048,12896],[5,-65],[-73,-33]],[[2980,12798],[17,-38],[-32,-26],[-37,8]],[[2928,12742],[-44,-66],[-36,24],[-52,97],[18,52],[42,32],[27,-4]],[[2883,12877],[39,53],[42,26],[46,-25]],[[5001,12997],[16,11]],[[5017,13008],[58,-27],[-9,-50],[38,-63],[8,-50],[-69,-79],[-16,35],[8,64],[-34,159]],[[4914,13008],[78,-43],[-5,-34],[16,-68],[-26,-26],[-53,46],[1,-48],[-17,-19],[-28,23],[-28,65],[-37,32],[1,42],[84,42]],[[4900,13020],[14,-12]],[[3019,12959],[-67,6],[59,58],[9,35],[33,6],[44,-38],[-78,-67]],[[3597,13368],[8,53],[41,63],[20,-14],[-69,-102]],[[1585,13460],[6,-61],[-63,-46]],[[1528,13353],[-100,48],[-36,47],[139,42],[54,-30]],[[937,14222],[66,-21]],[[1003,14201],[73,26],[26,-34]],[[1102,14193],[63,-39],[46,-5],[8,-42]],[[1219,14107],[-86,-28],[-73,66]],[[1060,14145],[-74,23]],[[986,14168],[-33,-23],[-49,38],[33,39]],[[0,15409],[110,-43]],[[110,15366],[138,-95],[176,-103],[98,-66],[58,-68],[-15,-59],[18,-97],[30,-45],[68,-25],[-18,151],[40,30],[224,-42],[29,-50],[140,-108],[28,-8],[-78,-71],[-2,-55],[-65,25],[-8,-44],[-112,-22],[17,-74],[-32,-38],[-55,-12],[0,-38],[52,-38],[-20,-33],[-55,-29],[-97,38],[-33,52],[-125,38],[-43,55],[-14,76],[-113,43],[-66,-32],[-81,-2],[-28,20],[-18,56],[2,56],[-46,46],[-68,-19],[-11,-40],[13,-48],[42,-57],[-33,-69]],[[47,14565],[-47,-39]],[[276,15920],[-51,-55],[-168,-30]],[[57,15835],[-57,20]],[[0,15979],[100,13]],[[100,15992],[93,-17],[83,-55]],[[6343,10946],[2284,0]],[[8627,10946],[775,0]],[[9402,10946],[3,83],[31,-11]],[[9436,11018],[29,-135]],[[9465,10883],[68,-18]],[[9533,10865],[18,-21]],[[9551,10844],[62,22],[62,-22],[43,-57]],[[9718,10787],[51,-18],[35,-34]],[[9804,10735],[29,5],[47,36],[21,-30],[52,1],[38,-25]],[[9991,10722],[66,3]],[[10057,10725],[63,52],[34,14],[196,-154],[193,-163],[7,-39]],[[10550,10435],[73,-76]],[[10623,10359],[36,-57],[42,-27],[20,-73],[81,-74],[44,-390],[-20,-81]],[[10826,9657],[-18,-106],[-47,-89],[-21,-11]],[[10740,9451],[-8,-60]],[[10732,9391],[12,-41],[43,-40],[31,2],[125,117],[106,34],[45,24]],[[11094,9487],[103,79]],[[11197,9566],[-10,71],[-17,69]],[[11170,9706],[57,41],[174,0],[54,47],[21,56]],[[11476,9850],[129,169],[50,37],[88,-5]],[[11743,10051],[271,4],[57,67]],[[12071,10122],[43,32],[40,90]],[[12154,10244],[11,97],[25,90]],[[12190,10431],[86,171],[20,-7],[15,-55]],[[12311,10540],[68,39],[55,-64],[1,-206],[-2,-85]],[[12433,10224],[35,-37],[0,-69]],[[12468,10118],[44,-49]],[[9160,5792],[-98,41],[-70,57]],[[8992,5890],[-22,8],[-43,139],[-5,87],[-15,50],[-29,48],[-51,124],[-38,157]],[[8789,6503],[-69,115]],[[8720,6618],[-32,33],[-67,15],[-51,-22],[-16,-52]],[[8554,6592],[-10,-67],[-31,-51],[-20,8],[-77,69],[-51,71],[-16,55],[-4,49]],[[8345,6726],[-24,106]],[[8321,6832],[-70,90],[-56,91]],[[8195,7013],[-37,75]],[[8158,7088],[-16,12]],[[8142,7100],[-172,0]],[[7970,7100],[-14,-7],[-2,-93],[-319,1],[-222,139],[-174,110],[-5,59]],[[7234,7309],[-266,-41]],[[4322,15558],[0,-2086],[51,-19]],[[4373,13453],[79,10],[15,15],[68,4],[-14,-59],[41,-35],[136,-154],[11,-53],[34,4]],[[4743,13185],[69,34]],[[4812,13219],[28,93],[94,46],[49,-52],[38,-78],[143,-178]],[[5164,13050],[30,-74]],[[5194,12976],[70,-142],[49,-133]],[[5313,12701],[31,-57]],[[5344,12644],[115,-59],[70,-48],[11,-47]],[[5540,12490],[-12,-47],[2,-112]],[[11476,9850],[8,10],[2,-1],[12,-35]],[[11498,9824],[7,-87],[-83,-73],[-91,18],[-87,9]],[[11244,9691],[-58,-29],[-5,-1],[-11,45]],[[11203,9576],[-6,-9]],[[11197,9567],[-4,29],[8,2],[2,-22]],[[11194,9564],[-86,-121]],[[11108,9443],[-84,-65]],[[11024,9378],[-57,-30]],[[10967,9348],[-65,-62],[-81,-30],[-55,12],[-68,46]],[[10698,9314],[35,79]],[[10733,9393],[-1,-2]],[[11094,9487],[100,77]],[[10571,10374],[-34,9],[-23,63],[-109,-20],[-98,-50],[-78,86],[-63,28],[36,118],[-98,-74],[-89,-73],[-86,-56]],[[9929,10405],[-68,76]],[[9861,10481],[-111,-46]],[[9750,10435],[1,33]],[[9751,10468],[75,94],[79,89],[110,72]],[[10015,10723],[42,2]],[[10550,10435],[30,-31],[-9,-30]],[[11003,5984],[-25,8],[2,55],[25,-8],[-2,-55]],[[7515,9235],[5,-44],[-4,-65],[-56,62],[-3,8],[-19,103],[32,-42],[20,-23],[21,21],[4,-20]],[[10535,10229],[20,30]],[[10555,10259],[3,-1],[98,20],[-55,89]],[[10601,10367],[6,9],[16,-17]],[[10826,9657],[-9,-51],[-5,-5]],[[10812,9601],[-5,92],[-20,129],[-41,23],[-69,-99],[-22,2],[-6,57],[61,89],[10,102],[-9,101],[-82,87],[-94,45]],[[10535,10229],[-15,-85],[-25,-23],[-19,-110],[-11,75],[-44,-54],[-28,-75],[-29,-109],[-5,-95],[37,-138],[-3,-147],[-45,-109],[-23,-31]],[[10325,9328],[-30,-25]],[[10295,9303],[-37,-1]],[[10258,9302],[-11,15]],[[10247,9317],[-29,118],[-1,58]],[[10217,9493],[3,55]],[[10220,9548],[-14,109],[21,127],[25,155],[57,172],[-16,-1],[-82,-144],[-15,27],[44,80]],[[10240,10073],[66,145]],[[10306,10218],[75,20],[87,45],[87,-24]],[[110,15366],[-110,43],[0,446],[57,-20]],[[100,15992],[-100,-13],[0,3009],[14960,0],[0,-417]],[[14960,18530],[0,-27]],[[14960,18455],[0,-36]],[[14960,18332],[0,-43]],[[14960,13463],[0,-13463],[-487,0]],[[14445,0],[-34,0]],[[14396,0],[-114,0]],[[11069,0],[-1233,0]],[[9811,0],[-9811,0],[0,14526],[47,39]],[[14960,18372],[0,-13]],[[7675,9991],[-21,-10],[-19,17],[-11,13],[-12,12],[-13,8],[-13,9],[-10,30],[-2,52],[23,159],[-1,45],[-3,15],[-4,16],[-5,17],[-10,32],[-5,18],[-10,17],[-9,17],[-6,28],[7,37],[24,42],[52,66],[73,72],[32,12],[45,-35],[98,-10],[13,-6],[28,-12],[28,-13],[13,-5],[10,-4],[18,-6],[9,-3],[108,46],[14,16],[26,29],[13,15],[19,3],[46,6],[54,7],[46,6],[19,2],[108,-22],[59,14],[38,-7],[84,-92],[38,-21],[12,-3],[21,-5],[11,-3],[5,-17],[5,-18],[34,-40],[6,-26],[13,-49],[6,-27],[10,-24],[9,-24],[4,-80],[24,-176],[-2,-60],[-10,-39],[-20,-36],[1,-24],[8,-24],[9,-11],[10,-11],[13,-14],[25,-26],[14,-13],[33,-7],[7,-10],[14,-19],[8,-10],[-2,-17],[-2,-32],[-2,-17],[4,-22],[14,-19],[31,-42],[30,-43],[11,-23],[-1,-5],[2,-1],[29,-29],[40,-17],[10,10],[26,-1],[40,2],[28,-28],[31,-19],[5,-19],[9,-10],[19,-3],[5,-23],[7,-37],[0,-18],[20,-42],[7,-37],[1,-52],[8,-7],[7,-27],[11,-64],[3,-39],[-3,-40],[7,-40],[2,-18],[19,-36],[17,-28],[14,-48],[27,-30],[14,0],[3,-32],[-15,-41],[8,-22],[14,-46],[29,-22],[158,40],[21,-9],[16,-54],[35,-35],[26,-49],[27,-10],[66,13],[63,-8],[50,35],[9,2],[16,1],[7,-3],[-4,-25],[-3,-22],[-11,-32],[-7,-39],[16,-34],[22,-31],[13,-1],[29,-49],[11,-7],[8,-54],[-4,-34],[14,-54],[12,5],[20,-34],[-4,-23],[2,-35],[-17,-18],[-25,-24],[-3,-22],[-7,-31],[-8,-55],[-3,0],[0,0],[2,-9],[-1,-9],[-11,-32],[-19,-22],[-4,-37],[-18,-29],[1,-65],[-12,-21],[-2,-17],[-20,-17],[-1,-33],[-14,-59],[-13,-13],[-20,-30],[-11,-47],[-25,-77],[-2,-53],[13,-59],[-6,-44],[8,-13],[-10,-32],[16,-46],[-4,-28],[14,-38],[-16,-23],[-5,-42],[-21,-35],[-10,-47],[-10,-54],[-14,-25],[5,-55],[6,-54],[21,-36],[24,-84],[14,-30],[24,-19],[81,-35],[11,-21],[7,-34],[53,-110]],[[9750,10435],[-29,-13],[1,-125],[-3,0],[-28,-24],[-23,-22],[-16,-41],[23,-42],[-8,-56],[0,-60],[-4,-50],[33,-42],[13,-2],[36,-32],[12,-15],[8,-24],[28,-39],[37,-33],[4,-18],[0,-54],[3,-25]],[[9837,9718],[-145,4],[-162,-2],[-151,-3],[-121,1]],[[9258,9718],[2,208],[-14,214],[-19,18],[-11,34],[6,30],[25,25],[2,33]],[[9249,10280],[0,40],[-7,34],[-10,37],[-5,45],[-1,51],[-4,12],[-4,66],[-1,30],[-2,26],[-6,46],[-13,45],[-13,41],[-2,41],[-1,44],[4,28],[0,26],[-10,32],[-2,22]],[[9172,10946],[230,0]],[[9436,11018],[23,-106],[0,-2],[0,0],[6,-27]],[[9465,10883],[25,-7],[4,-4],[35,-6],[4,-1]],[[9551,10844],[31,11],[102,-32],[13,-8],[21,-28]],[[9718,10787],[48,-17],[5,-3],[33,-32]],[[9991,10722],[24,1]],[[9751,10468],[-1,-33]],[[7087,10946],[224,0],[1101,0]],[[8412,10946],[1,-408],[6,-272]],[[8419,10266],[-6,-204]],[[8413,10062],[-185,2],[-199,-1],[-172,2],[-219,-1],[1,-114],[-2,-8]],[[7637,9942],[-12,12],[-11,32],[-12,6],[-16,-44],[-25,-8],[-63,14],[-3,-22],[-36,8],[-21,-30],[-19,58],[-14,32],[-22,6],[-7,16],[-7,58],[-20,28],[-12,71],[-14,30],[-13,7],[-12,-32],[-21,-26],[-20,22],[-1,57],[13,14],[-10,58],[11,58],[12,50],[-33,2],[-29,33],[-31,69],[-18,34],[-26,21],[-20,36],[0,40],[-29,60],[-9,234]],[[9249,10280],[-211,-12],[-180,0],[-227,-1],[-212,-1]],[[8412,10946],[215,0]],[[8627,10946],[545,0]],[[2658,4388],[14,66],[4,9],[-1,7],[2,10]],[[2677,4480],[-6,34],[3,10],[36,-28]],[[2791,4356],[-1,-5],[0,0],[-7,-12],[-37,-41],[-36,-35],[-5,-12],[-6,4]],[[2669,4273],[-1,10],[2,37],[-9,41],[-3,27]],[[2616,4598],[-13,24],[-3,6],[-16,50]],[[2584,4678],[2,6],[5,8],[12,-4],[28,-15],[19,-23],[9,-14],[-6,-18],[-11,-10],[-14,-6],[-12,-4]],[[2575,4728],[-2,-12],[-6,-9],[-52,6],[7,27],[2,0],[51,-12]],[[2411,4824],[26,24],[7,-11],[18,-54]],[[2462,4783],[13,-24],[-2,-3],[-3,-1]],[[2424,4763],[-10,34],[-4,15],[-2,3],[-1,5]],[[2274,4964],[3,0],[9,-1],[1,-2],[2,-50],[-13,-23],[-33,36],[19,39]],[[7637,9942],[4,-4],[0,-555]],[[7641,9383],[-331,-2]],[[7310,9381],[-332,1]],[[6978,9382],[2,402],[9,63],[-9,29],[-20,15],[0,36],[16,51],[23,44],[16,72],[15,58],[11,29],[-6,34],[-18,18],[-26,43]],[[6991,10276],[1,40],[-10,34],[-4,311],[0,285]],[[6978,10946],[109,0]],[[6991,10276],[-229,-2],[-40,-23],[-28,10],[-22,-18],[-41,-25],[-50,3],[-25,-18],[-23,-8],[-18,12],[-39,9],[-25,-7],[-43,-24],[-27,0],[-26,8],[-8,32],[-3,37],[-21,43],[-32,12],[-27,21],[-34,1],[-24,0]],[[6206,10339],[-1,7],[0,13]],[[6222,10491],[-31,12],[-29,157],[-33,104],[11,35],[83,-42]],[[6223,10757],[36,-5],[44,-20],[48,-170],[-16,-33]],[[6353,10523],[6,9],[3,-11],[21,45],[8,11]],[[6391,10577],[-2,13],[-6,53],[17,87]],[[6378,10862],[-41,69],[0,2],[6,13],[306,0],[329,0]],[[6388,10719],[-13,16],[-3,28],[-2,9],[18,-53]],[[7863,8265],[0,-1264]],[[7863,7001],[-128,-1],[-93,1],[-251,156],[-153,99],[-4,53]],[[7234,7309],[14,-1],[13,45],[-20,31],[-4,33],[-6,40],[22,51],[9,102],[33,46],[-21,43],[-14,42],[-9,39],[-6,30],[-2,20]],[[7243,7830],[6,44],[-5,44],[-2,43],[0,48],[-10,31],[7,28],[24,0],[21,-16],[15,-9],[7,34],[5,7],[-1,180]],[[7310,8264],[179,3],[213,0],[161,-2]],[[7234,7309],[-29,-4],[-222,-35],[-15,-2],[-18,107]],[[6950,7375],[-1,2],[0,5],[-3,5],[-21,59]],[[6825,7569],[-7,6],[-5,26],[-38,7],[-44,35]],[[6731,7643],[-1,1],[-19,29],[-7,2],[-13,14]],[[6691,7689],[-86,10],[-24,30],[-2,97]],[[6536,7925],[-65,127],[-12,26],[-12,42],[-19,136]],[[6410,8261],[-12,23],[-23,75],[-5,38]],[[6387,8468],[-34,-1],[-31,47],[-4,7],[-26,79]],[[6292,8600],[-43,73],[-11,24],[-6,52],[-2,18],[1,70]],[[6197,8950],[-26,36],[-6,13],[-2,16],[7,57],[23,85]],[[6194,9292],[-12,67],[0,23]],[[6182,9382],[467,-1]],[[6649,9381],[0,-670],[209,-302],[199,-295],[186,-284]],[[8638,8936],[1,-345],[0,-327]],[[8639,8264],[-107,0]],[[8532,8264],[-132,1],[-189,0],[-175,0],[-173,0]],[[7863,8265],[-1,894]],[[7862,9159],[111,0],[111,0],[222,1],[111,0]],[[8417,9160],[221,0],[0,-217],[0,-7]],[[7310,9381],[0,-1117]],[[6649,9381],[329,1],[0,0]],[[8532,8264],[1,-110]],[[8533,8154],[0,-586],[0,-420],[-103,0],[-200,0],[-100,0],[2,-19],[10,-29]],[[7970,7100],[-13,-6],[-5,0],[0,-93],[-89,0]],[[6182,9382],[-28,134],[-7,40],[43,208],[27,405],[-11,170]],[[7641,9383],[-1,-218],[222,-6]],[[8413,10062],[3,-456]],[[8416,9606],[1,-446]],[[10011,8047],[-1,-18],[-12,-32],[-19,-22],[-4,-37],[-18,-29],[1,-65],[-12,-21]],[[9946,7823],[-2,-17],[-20,-17],[-1,-33],[-14,-59],[-13,-13],[-20,-30],[-12,-46],[-24,-78],[-2,-53],[13,-59],[-6,-44]],[[9845,7374],[-93,8],[-122,-8],[-107,1]],[[9523,7375],[7,126],[-26,1],[-21,-3],[-6,15]],[[9477,7514],[3,195],[2,218],[-22,236]],[[9460,8163],[135,-3],[123,-1],[117,0],[126,-14],[9,-28],[-12,-24],[-13,-24],[-7,-22],[73,0]],[[9837,9718],[2,-13],[14,-35],[-10,-17],[1,-47],[4,-20],[7,-35],[37,-22],[10,-34]],[[9902,9495],[7,-17],[13,-11],[5,-24],[18,-18],[11,-20],[-6,-60],[-20,-50],[-8,-16],[-25,-13],[-38,-11],[-10,-39],[14,-17],[4,-35],[-14,-38],[-8,-34],[-28,-33],[-2,-41]],[[9815,9018],[-15,19],[-22,36],[-121,-5],[-127,-2],[-99,0],[-100,0]],[[9331,9066],[-7,40],[3,40],[-3,39],[-11,64],[-7,27],[-8,7],[-1,52],[-7,37],[-20,42],[0,18],[-7,37],[-5,23]],[[9258,9492],[0,20],[-18,25],[9,36],[6,36],[3,25],[-15,29],[1,55],[14,0]],[[8638,8936],[0,0],[194,0],[144,0],[255,0],[152,0]],[[9383,8936],[27,-30],[14,1],[3,-33],[-15,-41],[8,-22],[14,-46],[29,-22],[-1,-239],[-1,-239]],[[9461,8265],[-97,0],[-200,0],[-199,-1],[-111,0],[-111,0],[-104,0]],[[9460,8163],[2,102],[-1,0]],[[9383,8936],[-14,48],[-17,28],[-19,36],[-2,18]],[[9815,9018],[-10,-56],[10,-66],[18,-46],[22,-38],[25,-30],[10,-11],[10,-42],[1,-38],[13,-9],[21,15],[21,-36],[-6,-42],[-11,-32],[-7,-39],[16,-34],[22,-32],[13,0],[29,-49],[11,-7],[8,-54],[-4,-34],[14,-54],[12,5],[20,-34]],[[10073,8255],[-4,-23],[2,-35],[-17,-18],[-25,-24]],[[10029,8155],[-3,-22],[-7,-31],[-8,-55]],[[8416,9606],[216,0],[167,0],[222,0],[29,-29],[40,-17],[10,10],[26,-1],[40,2],[28,-28],[31,-19],[5,-19],[9,-10],[19,-3]],[[9477,7514],[-48,44],[-31,23],[-25,-15],[-39,3],[-23,-1],[-19,-18],[-19,-9],[-16,11],[-37,-12],[-17,37],[-17,-32],[-30,14],[-31,35],[-33,-23],[-15,54],[-52,-5],[-33,12],[-37,16],[-16,46],[-29,-15],[-18,18],[-27,24],[0,214],[0,219],[-111,0],[-111,0],[-110,0]],[[9845,7374],[8,-13],[-10,-32],[16,-46],[-4,-28],[14,-38],[-16,-23],[-5,-42],[-21,-35],[-10,-47],[-10,-54],[-14,-25],[5,-55],[98,-7],[104,-1],[-3,-37],[-7,-37],[7,-28],[14,-26],[4,-37],[2,-22],[1,-3]],[[10018,6738],[-28,-32]],[[10010,6671],[28,8],[0,-1],[0,-34],[-30,-32]],[[10026,6572],[25,-12],[9,-17],[-21,-29],[-5,4],[0,3]],[[9923,6552],[-44,-41],[-3,0],[-77,111],[-29,41]],[[9733,6635],[-12,-26],[-20,-6],[-17,7],[-68,43],[-10,-2],[-36,-5]],[[9570,6646],[-20,-8],[-3,0]],[[9547,6638],[-8,24],[11,33],[17,29],[0,45],[-8,15],[10,53],[7,24],[11,82],[-10,30],[-13,51],[-9,52],[-7,34],[-18,26],[-7,239]],[[9547,6638],[-3,-2],[-20,-8]],[[9524,6628],[-18,-13],[-40,-23],[-16,57]],[[9419,6637],[9,-93],[-65,-108],[-93,-88]],[[9270,6348],[-1,-1],[-19,-17],[-20,4]],[[9152,5923],[7,-36],[2,-32],[10,-35],[-11,-28]],[[8992,5890],[-20,7],[-29,99],[-25,156],[-59,116],[-9,21],[-35,121],[-10,26],[-16,67]],[[8789,6503],[-21,35],[-9,25],[-18,21],[-21,34]],[[8554,6592],[-9,-58],[-7,-19],[-24,-39],[-75,55],[-17,15],[-14,16],[-39,55],[-23,103],[-1,6]],[[8321,6832],[-35,44],[-45,68],[-16,19],[-30,50]],[[8158,7088],[-16,12]],[[11802,9394],[85,-4],[103,-5]],[[11990,9385],[1,-122],[-6,-27]],[[11985,9236],[-123,-20]],[[11786,9160],[3,-9],[-4,-3],[0,1]],[[11785,9149],[0,0],[-1,7],[-4,27],[25,22],[-9,19],[6,170]],[[11802,9394],[24,154]],[[11826,9548],[91,-3]],[[11917,9545],[134,-2],[12,22],[23,15],[13,-4]],[[12099,9576],[0,-52],[-25,-74]],[[12196,9340],[-4,-40],[-15,-7],[-58,11]],[[12119,9304],[-50,-35],[-4,0]],[[12065,9269],[-3,35],[-17,25],[-8,59],[-47,-3]],[[11917,9545],[-9,23],[9,29],[3,58],[3,14],[4,53],[12,45],[9,19],[13,53],[3,36],[4,22],[21,11],[25,26],[4,27],[-8,32],[13,61],[0,0]],[[12023,10054],[3,15],[43,51]],[[12069,10120],[16,-410],[-4,-22],[20,-33],[5,-31],[8,1]],[[12114,9625],[-14,-39]],[[12100,9586],[1,-7],[-2,-3]],[[12065,9269],[-6,-3],[-5,37]],[[12037,9324],[-11,-73],[-26,-13],[-15,-2]],[[11826,9548],[5,185],[-16,1],[-2,9],[7,32],[-10,59],[11,46],[-6,34],[-3,66],[4,29],[3,44]],[[11819,10053],[120,1],[84,0]],[[10176,7819],[140,-1],[142,-3]],[[10458,7815],[29,-277],[26,-222],[16,-70],[10,-40],[-19,-39],[-6,-71],[6,-42],[-3,-40],[-3,-36],[7,-29],[6,-26]],[[10527,6923],[-226,-1],[-64,-13],[-1,-17],[25,-54],[-6,-44],[-6,-25]],[[10249,6769],[-13,-3],[-27,6],[4,10]],[[10168,6785],[-19,3]],[[10149,6788],[-4,341],[20,357],[19,289],[-8,44]],[[10527,6923],[17,-60],[111,-10],[180,-34],[8,-39],[14,20],[1,78],[13,7],[22,-16],[23,-4]],[[10916,6865],[20,-155],[0,-2],[7,-56]],[[10974,6511],[18,-55],[8,-26],[19,-78]],[[11019,6352],[4,-61],[0,-27],[2,-10],[0,-6]],[[11025,6248],[4,-16],[46,-227],[-2,-114],[-8,-133],[-2,-12],[-9,-2]],[[11024,5634],[-47,-17],[-23,11],[-2,6]],[[10841,5980],[-10,-3],[-12,41],[-35,127]],[[10784,6145],[-16,71],[-2,9],[12,86],[10,67],[-1,3],[1,3]],[[10769,6515],[-23,9],[-53,114],[-11,26]],[[10682,6664],[-3,5],[-9,18],[-15,13],[-19,25]],[[10586,6685],[-5,-5],[-29,-27],[-57,-20],[-4,8],[-8,47]],[[10483,6688],[-41,47],[0,1],[-1,0],[-16,19]],[[10382,6783],[0,1],[-10,7],[-18,-4],[-19,3]],[[10335,6790],[-86,-21]],[[10458,7815],[86,-2],[59,3]],[[10603,7816],[138,-2]],[[10741,7814],[-13,-19],[-17,-42],[30,-37],[19,-14],[20,-70],[14,-40],[38,-53],[8,-28],[26,-36],[13,-53],[35,-45],[8,-51],[7,-25],[-4,-17],[21,-24],[11,-42],[-1,-42],[11,-9],[19,-11]],[[10986,7156],[-8,-20],[-22,-50]],[[10956,7086],[-2,-11],[-21,-52],[-9,-88],[-2,-7]],[[10922,6928],[0,-6],[-6,-57]],[[9946,7823],[109,0],[121,-4]],[[10149,6788],[-48,8]],[[10052,6776],[-34,-38]],[[10741,7814],[11,7],[59,38],[103,-2],[52,-10],[0,-20],[12,15],[17,-38],[0,-26],[123,-2],[124,-212]],[[11242,7564],[-6,-7],[-19,-14]],[[11134,7380],[-19,-38],[-67,-80],[-8,-14],[-34,-47]],[[11006,7201],[-17,-40],[-3,-5]],[[9902,9495],[113,0],[116,0],[85,-2],[0,0],[1,0]],[[10247,9317],[0,0],[0,-259],[0,-258],[-12,-62],[9,-17],[6,-38],[-1,-30],[-10,-14],[-8,-37],[-23,-48],[-15,-60],[-4,-46]],[[10189,8448],[1,-16],[-12,-31],[9,-21],[-19,-17],[-26,-18],[5,-49],[-15,-19],[-27,21],[-29,12],[-8,-21],[5,-34]],[[10247,9317],[11,-15]],[[10295,9303],[30,25]],[[10325,9328],[0,0],[120,-1],[104,1],[0,-18]],[[10549,9310],[-1,-202],[0,-217],[-1,-155]],[[10547,8736],[-6,-11],[9,-45],[-5,-17],[-19,0],[-17,-20],[-26,8],[-3,-43],[-15,-16],[-15,-38],[-16,-7],[-24,-67],[-22,19],[-7,28],[-20,-45],[-12,-25],[-24,26],[-25,-21],[-9,-22],[-34,34],[-24,-24],[-28,17],[-1,-24],[-15,5]],[[10547,8736],[38,-5],[19,-22],[30,-50],[23,-16],[17,-18],[27,6],[19,-13],[24,12],[21,4],[9,-31],[21,-21]],[[10795,8582],[2,-22],[-1,-46],[13,-35],[5,-34],[16,-29],[11,-27],[22,-4]],[[10863,8385],[-12,-17],[-32,-49],[-35,-27],[0,0],[0,0],[-3,-18],[-12,-23],[-28,-25],[-2,-2],[-1,-2],[-9,-20],[-17,-10]],[[10712,8192],[-6,-3],[-32,-13],[-75,-7],[-97,9],[-32,-2],[-64,6],[-65,2],[-59,1],[-70,-7],[-3,11],[-22,-1],[0,-35],[-158,2]],[[10603,7816],[2,47],[24,14],[7,24],[16,27],[22,6],[26,10],[26,20],[11,19],[21,18],[-1,16],[28,31],[9,-20],[41,42],[19,-4],[17,37],[23,10],[-1,32],[2,28],[-43,-4]],[[10852,8169],[43,4],[187,-10],[221,-1],[117,2],[105,1],[12,0]],[[11537,8165],[4,-28],[1,-4],[-12,-47]],[[11543,8035],[7,-18],[3,-46],[-1,-15]],[[11490,7802],[-15,-32],[-26,-15],[-48,-8]],[[11401,7747],[-31,-37],[0,0],[0,-1],[-21,-24]],[[11260,7573],[-9,-6],[-9,-3]],[[10549,9310],[57,2],[50,0],[42,2],[0,0]],[[10967,9348],[57,30]],[[11024,9378],[0,-299]],[[11024,9079],[-15,-11],[4,-29],[-5,-51],[-11,-58],[-11,-49],[-2,-23],[-30,-51],[-13,-11],[-15,-6],[-13,5],[-25,-38],[-4,-41],[-4,-21],[-10,-9],[-1,25],[-15,5],[-16,-48],[-1,-50],[-15,-31],[-27,-5]],[[10712,8192],[-6,-3],[-32,-13],[165,-8],[13,1]],[[10863,8385],[5,-38],[10,-16],[2,-4],[17,-18],[26,20],[9,7],[0,0],[0,0],[13,-16],[35,16],[7,3],[1,12],[1,8],[13,-8],[13,15],[0,1],[0,0],[0,0],[16,-3],[17,17],[2,12],[1,9],[-2,26],[0,0],[0,0],[15,39],[21,29],[6,33],[11,22],[8,18],[10,48],[0,0],[0,0],[15,-17],[17,-16],[16,9],[5,20],[11,28],[7,19],[5,12],[0,0],[0,0],[8,-9],[17,29],[12,17],[9,12],[4,6],[10,16],[7,47],[2,13],[0,0],[0,0],[51,-55],[5,-6],[13,42]],[[11334,8784],[3,-1],[13,-6],[15,-17],[0,0],[0,0],[-7,-19],[-1,-5],[23,-14],[21,-25],[0,0]],[[11401,8697],[9,-19],[-1,-13],[0,0]],[[11409,8665],[-2,-18],[-4,-5],[-15,-16],[-12,-50],[15,-12],[18,10],[5,-25]],[[11414,8549],[1,-7],[74,-70],[1,-65]],[[11527,8234],[10,-69]],[[11594,8492],[-60,-172],[-10,14],[20,88],[16,35]],[[11560,8457],[-7,8],[3,10]],[[11556,8475],[0,0],[12,14],[26,3],[0,0]],[[9861,10481],[67,-75]],[[9928,10406],[1,-1],[7,4],[0,-1],[18,-7],[9,-40],[97,-40],[64,-40],[31,-1],[21,-2],[7,-37],[26,-14],[10,-32],[-7,-18],[-5,-36],[24,-2],[-8,-36],[15,-26],[0,0],[3,-1]],[[10241,10076],[-1,-3]],[[10220,9548],[-3,-55]],[[11024,9079],[0,-206],[115,0]],[[11139,8873],[-1,-113],[17,20],[19,26],[22,8],[15,24],[33,-9],[12,16],[21,17],[35,-17],[13,-32],[9,-29]],[[11629,8589],[-73,0],[-8,285]],[[11548,8874],[9,17],[10,10],[24,-11]],[[11591,8890],[-17,-23],[3,-43]],[[11577,8824],[4,-19],[-11,14]],[[11602,8693],[19,-20],[4,-6],[4,-78]],[[11401,8697],[9,11],[14,-23],[-15,-20]],[[11556,8475],[-15,22],[-12,69]],[[11529,8566],[-19,-23],[-6,9],[-6,15],[-3,53],[2,8]],[[11464,8662],[1,-11],[0,-2],[0,-5],[2,-35]],[[11467,8609],[13,-50],[8,-52],[-73,35],[-1,7]],[[11139,8873],[103,0],[35,0],[79,1],[95,-1],[97,1]],[[11629,8589],[1,-7],[-1,-1],[-1,-4],[-34,-85],[0,0]],[[11591,8890],[22,20],[8,14],[27,30],[14,24],[-35,58],[-2,24],[-12,7],[0,36],[13,27],[-5,29],[17,20],[20,50],[13,9]],[[11671,9238],[85,-88],[-4,-47]],[[11752,9103],[-17,-30],[-9,7]],[[11739,9031],[6,-38],[-18,-122],[-68,-146],[-15,-2]],[[11644,8723],[-2,2],[-4,31],[-25,12],[-36,56]],[[11785,9149],[-6,-5],[12,3],[2,-8]],[[11939,9169],[15,0],[9,-11],[-86,-57],[-51,-22],[-11,-3],[-67,0],[4,27]],[[11671,9238],[-18,16],[-19,16],[-7,32],[3,25],[-13,20],[-24,35],[-151,0],[-161,0],[-173,0],[0,61]],[[11108,9443],[86,121]],[[11194,9564],[3,2]],[[11197,9566],[0,1]],[[11203,9576],[-2,22],[0,0],[-10,67],[53,26]],[[11498,9824],[-11,32],[113,155],[50,42],[61,0],[32,-2]],[[11743,10051],[76,2]],[[12069,10120],[2,2]],[[12071,10122],[10,7],[35,26],[12,30],[26,59]],[[12154,10244],[2,13],[33,172],[1,2]],[[12190,10431],[84,168],[36,-58],[1,-1]],[[12311,10540],[7,4],[63,32],[52,-60],[1,-1],[0,-63],[0,-178],[-1,-50]],[[12433,10224],[1,-1],[0,-14],[34,-58],[0,-33]],[[12468,10118],[42,-47],[9,-36],[6,-26],[-1,0],[-95,-54]],[[12253,9823],[-31,-39],[-2,-1],[-29,15]],[[12170,9776],[-56,-151]],[[9928,10406],[1,-1]],[[10571,10374],[7,22],[0,0],[-7,-22],[30,-7],[0,0]],[[10306,10218],[-65,-142]],[[10812,9601],[0,0],[0,0],[-52,-123],[-6,-19],[-14,-8]],[[10740,9451],[-7,-58]],[[10733,9393],[-35,-79]],[[3010,12931],[32,1],[13,-20],[-7,-16]],[[2980,12798],[15,-35],[-4,-4],[-31,-24],[-32,7]],[[2928,12742],[-43,-65],[-1,-1],[-16,10],[-29,30],[-18,34],[-13,80],[3,9],[52,41],[20,-3]],[[2883,12877],[31,42],[53,31],[14,-3],[29,-16]],[[1528,13353],[-37,18],[-34,19],[-64,58],[123,37],[41,-9],[28,-16]],[[1003,14201],[60,22],[32,-22],[7,-8]],[[1219,14107],[-80,-26],[-22,13],[-57,51]],[[1060,14145],[-19,6],[-7,6],[-11,-1],[-37,12]],[[986,14168],[-30,-21],[-5,-1],[-40,32],[1,14],[25,30]],[[937,14222],[44,-14],[4,-2],[1,0],[17,-5]],[[4812,13219],[21,72],[101,65],[59,-116],[74,-91],[84,-83],[13,-16]],[[5194,12976],[51,-103],[28,-63],[40,-109]],[[5344,12644],[3,-1],[4,-10],[189,-142],[0,-1]],[[5530,12331],[-3,-10],[-33,-57],[-17,-16],[-51,70],[-3,26]],[[5404,12376],[-36,-11],[-45,33],[-13,81],[48,75]],[[5358,12554],[-59,-9],[-8,47],[-4,6],[6,5]],[[4236,13397],[-77,20],[-12,5],[-4,0],[-9,2]],[[4134,13424],[-94,-15],[-36,-5],[-16,2],[-19,9],[-21,26]],[[3535,13568],[1,-9],[-15,-5],[16,-107],[-8,-36]],[[3387,13410],[-86,-114],[-26,-20],[-33,-3]],[[3242,13273],[-27,-27],[-69,-27],[-12,-3],[-6,53],[52,40]],[[3180,13309],[-61,41],[4,18],[61,156]],[[3194,13578],[37,24],[49,29],[53,-22]],[[3320,13682],[-62,3],[-2,5],[-6,-4],[-1,0]],[[3160,13629],[-38,-56],[-8,-7],[-10,-20],[-34,-51]],[[3021,13454],[-12,-67],[-97,-96],[-46,-28]],[[2916,13194],[43,-45],[-26,-40],[-53,-43]],[[2789,12961],[-114,-103],[-50,-30],[-2,-8],[-18,-13]],[[2605,12807],[10,-18],[-13,-45],[-5,-7]],[[2508,12700],[-58,-70],[-16,-11],[-28,-2]],[[2236,12478],[-51,-48],[-1,0],[-103,-62],[-3,-2],[-28,1]],[[2008,12339],[-37,-46],[-1,0],[-92,-22]],[[1925,12368],[31,56],[43,45],[19,17]],[[2018,12486],[1,1],[64,12],[59,-57]],[[2153,12507],[2,7],[53,89],[36,31],[90,61]],[[2489,13017],[10,39],[10,24],[33,39]],[[2542,13119],[-11,12],[13,31],[-126,-67],[-37,51]],[[2343,13119],[8,-26],[-30,-41],[-1,0],[-3,6],[-59,107]],[[2258,13165],[-7,-5],[-3,5],[-4,-11],[-22,-18]],[[2222,13136],[-31,23],[-14,37],[-17,-14],[-1,0]],[[2159,13182],[-108,-76],[-31,1],[-7,82]],[[2013,13189],[-24,51],[0,2],[33,59]],[[1925,13397],[-1,0],[-127,-38],[-6,2],[-91,102],[-3,2],[-3,4]],[[1622,13651],[-23,19],[-39,43],[-16,33]],[[1544,13746],[39,124],[67,92],[35,19]],[[1685,13981],[-1,47],[19,56],[15,24],[68,12],[61,-39]],[[1847,14081],[19,11],[10,-5],[18,22],[27,15]],[[1958,14176],[65,5],[23,-6],[10,8],[33,2]],[[2089,14185],[41,59],[1,1],[0,0],[0,0]],[[2131,14245],[-19,91],[-2,11],[-3,2],[-28,32]],[[2129,14435],[-14,23],[15,15],[-23,-1],[-18,31]],[[1971,14442],[-17,-16],[-10,-4],[-11,-17],[-6,-5]],[[1927,14400],[-103,21],[-1,1],[0,0],[-5,1]],[[1739,14422],[-81,-23],[-136,45],[-50,101]],[[1410,14609],[-52,24],[-29,26],[9,23],[82,49],[70,40],[202,89],[34,12],[13,0],[61,-6]],[[1777,14782],[20,-14],[-1,-7],[12,0],[7,-5]],[[2007,14750],[17,19],[6,1],[-2,4],[23,28]],[[1625,15196],[-3,1],[-3,3],[-51,24],[-87,42]],[[1530,15363],[194,32],[1,0],[1,0],[21,4]],[[1863,15494],[0,1],[2,2],[27,108],[0,1],[98,92],[19,13]],[[2180,15753],[46,37],[47,23],[55,-5]],[[2328,15808],[87,15],[10,-2],[5,4],[26,5]],[[2713,15877],[48,17],[2,0],[80,-101],[40,35],[45,5],[97,-7],[44,-15]],[[3204,15727],[170,23],[162,-49],[26,-11]],[[3633,15674],[52,2],[77,-8],[73,-24]],[[4024,15667],[25,-1],[154,-62],[4,-1],[69,-34]],[[4373,13453],[66,8],[100,-58],[77,-98],[99,-146],[22,26],[6,0]],[[5259,12641],[-4,-3],[-70,89],[29,-22]],[[5017,13008],[45,-20],[-61,8],[0,1]],[[4914,13008],[13,-8],[-63,2],[36,18]],[[1736,12177],[-6,-9],[-34,-11],[-11,-1],[-9,19],[-5,18],[116,100],[38,3]]],"transform":{"scale":[0.009024064171122994,0.004476511480935328],"translate":[-180,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284,285,286,287,288,289],[290,291],[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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[284,285,286,287,288,289]],[[290,291]],[[292]],[[293,294,295,296,297]],[[298,299]],[[300]],[[301]],[[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,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,366,367,368,369,370,371,372,373,374,375,376,377,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]],[[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]],[[378,379,380,381,382,383,384,385,386,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]]],"type":"MultiPolygon","properties":{"ct":[-99.11,39.52]},"id":"USA"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[357,387,388,389]],"type":"Polygon"},{"arcs":[[[390,391]],[[392,393,394,395,396,397,354,398]]],"type":"MultiPolygon"},{"arcs":[[399,400,401,402,403,404,349,405]],"type":"Polygon"},{"arcs":[[406]],"type":"Polygon"},{"arcs":[[407]],"type":"Polygon"},{"arcs":[[408,409,410,351,411,412]],"type":"Polygon"},{"arcs":[[-409,413,414,415,416,417,418,419,420,421]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[284,285,286,287,288,289]],[[290,291]],[[292]],[[293,294,295,296,297]],[[298,299]],[[300]],[[301]],[[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,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,366,367,368,369,370,371,372,373,374,375,376,377,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]],[[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]],[[378,379,380,381,382,383,384,385,386,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]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-334,422,-336,-339,423,-268,424,-267,425,-272,426,-266,427,-198,428,-199,-200,429,-1,430,-283,-284,431],[-275],[-279],[-201],[-202],[-203],[-262],[-2],[-261],[-301],[-5],[-4],[-3],[-274],[-280],[-264],[-281],[-282],[-265],[-263],[-278],[-204],[-257],[-237],[-250],[-246],[-244],[-220],[-209],[-206],[-271],[-270],[-248],[-269],[-207],[-227],[-221],[-260,-214],[-223],[-251],[-232],[-256],[-226],[-239],[-210],[-241],[-231],[-254],[-222],[-253],[-234],[-218],[-216],[-215],[-259],[-213],[-205],[-310],[-319,-320],[-312,-311],[-225],[-252],[-236],[-235],[-302],[-245],[-230],[-208],[-233],[-211],[-258],[-229],[-240],[-228],[-219],[-212],[-224],[-242],[-249],[-247],[-243],[-306],[-313],[-308,-309],[-307],[-326,-325],[-322,-321],[-317,-316,-315,-314,-318],[-323],[-324],[-217],[-304],[-305],[-332,-331,-330,-329,-328,-327],[-255],[-303],[-238],[-291,-292],[-289,-288,-287,-286,-285,-290],[-297,-296,-295,-294,-298],[-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-197],[-276],[-293],[-277],[-299,-300]],[[432,-273]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[433]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[434,435,436,437,438,341,439,440,344,441,442,347,443,-404,444]],"type":"Polygon","properties":{"ct":[-94.32,46.31],"gu":"USA"},"id":"MN"},{"arcs":[[445,446,447,448,449]],"type":"Polygon","properties":{"ct":[-109.66,47.05],"gu":"USA"},"id":"MT"},{"arcs":[[-438,450,-447,451,452]],"type":"Polygon","properties":{"ct":[-100.48,47.46],"gu":"USA"},"id":"ND"},{"arcs":[[[453,454,288,455,284,456]],[[457,458]],[[459]],[[296,460,461,294,462]],[[298,463]]],"type":"MultiPolygon","properties":{"ct":[-155.5,19.61],"gu":"USA"},"id":"HI"},{"arcs":[[-450,464,465,466,467,468,469]],"type":"Polygon","properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"arcs":[[[-469,470,471,22,472,473,25,474,475,28,476]],[[477]]],"type":"MultiPolygon","properties":{"ct":[-120.36,47.37],"gu":"USA"},"id":"WA"},{"arcs":[[478,479,480,481,482]],"type":"Polygon","properties":{"ct":[-111.66,34.3],"gu":"USA"},"id":"AZ"},{"arcs":[[-481,483,484,7,485,486,487,11,488,13,489,15,490,491,18,492,20,493,494,495]],"type":"Polygon","properties":{"ct":[-119.62,37.26],"gu":"USA"},"id":"CA"},{"arcs":[[496,497,498,499,500,501]],"type":"Polygon","properties":{"ct":[-105.55,39],"gu":"USA"},"id":"CO"},{"arcs":[[-467,502,-482,-496,503]],"type":"Polygon","properties":{"ct":[-116.65,39.35],"gu":"USA"},"id":"NV"},{"arcs":[[-479,-499,504,505,375,506]],"type":"Polygon","properties":{"ct":[-106.08,34.42],"gu":"USA"},"id":"NM"},{"arcs":[[-468,-504,-495,507,-471]],"type":"Polygon","properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"arcs":[[-466,508,-500,-483,-503]],"type":"Polygon","properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"arcs":[[-449,509,510,-501,-509,-465]],"type":"Polygon","properties":{"ct":[-107.55,43.03],"gu":"USA"},"id":"WY"},{"arcs":[[511,512,513,514,515,516]],"type":"Polygon","properties":{"ct":[-92.44,34.92],"gu":"USA"},"id":"AR"},{"arcs":[[-436,517,518,519,520,521]],"type":"Polygon","properties":{"ct":[-93.51,42.08],"gu":"USA"},"id":"IA"},{"arcs":[[-497,522,523,524]],"type":"Polygon","properties":{"ct":[-98.38,38.48],"gu":"USA"},"id":"KS"},{"arcs":[[-517,525,-524,526,-520,527,528,529]],"type":"Polygon","properties":{"ct":[-92.48,38.38],"gu":"USA"},"id":"MO"},{"arcs":[[-502,-511,530,-521,-527,-523]],"type":"Polygon","properties":{"ct":[-99.82,41.53],"gu":"USA"},"id":"NE"},{"arcs":[[-498,-525,-526,-516,531,-505]],"type":"Polygon","properties":{"ct":[-97.5,35.58],"gu":"USA"},"id":"OK"},{"arcs":[[-437,-522,-531,-510,-448,-451]],"type":"Polygon","properties":{"ct":[-100.23,44.45],"gu":"USA"},"id":"SD"},{"arcs":[[-514,532,533,181,534,183,535,185,536,187,537,538,539]],"type":"Polygon","properties":{"ct":[-92.01,31.1],"gu":"USA"},"id":"LA"},{"arcs":[[-506,-532,-515,-540,540,541,191,542,543,194,544,366,545,546,369,547,371,548,373,549]],"type":"Polygon","properties":{"ct":[-99.34,31.49],"gu":"USA"},"id":"TX"},{"arcs":[[550,551,552,131,553,554]],"type":"Polygon","properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"arcs":[[-551,555,556,557,558,126,559,560,561]],"type":"Polygon","properties":{"ct":[-71.86,42.27],"gu":"USA"},"id":"MA"},{"arcs":[[-558,562,563,564,565,566]],"type":"Polygon","properties":{"ct":[-71.57,43.68],"gu":"USA"},"id":"NH"},{"arcs":[[-552,-562,567,129,568]],"type":"Polygon","properties":{"ct":[-71.57,41.71],"gu":"USA"},"id":"RI"},{"arcs":[[-557,569,570,-563]],"type":"Polygon","properties":{"ct":[-72.66,44.07],"gu":"USA"},"id":"VT"},{"arcs":[[571,572,573,574,177,575,576]],"type":"Polygon","properties":{"ct":[-86.82,32.79],"gu":"USA"},"id":"AL"},{"arcs":[[-574,577,578,159,579,580,581,163,582,165,583,584,168,585,586,171,587,588,174,589,590]],"type":"Polygon","properties":{"ct":[-82.5,28.65],"gu":"USA"},"id":"FL"},{"arcs":[[-573,591,592,593,594,595,596,-578]],"type":"Polygon","properties":{"ct":[-83.45,32.65],"gu":"USA"},"id":"GA"},{"arcs":[[-513,597,-577,598,179,599,-533]],"type":"Polygon","properties":{"ct":[-89.67,32.78],"gu":"USA"},"id":"MS"},{"arcs":[[-594,600,601,154,602,603]],"type":"Polygon","properties":{"ct":[-80.9,33.91],"gu":"USA"},"id":"SC"},{"arcs":[[-519,604,-418,605,606,-528]],"type":"Polygon","properties":{"ct":[-89.2,40.06],"gu":"USA"},"id":"IL"},{"arcs":[[-606,607,-416,608,609,610,611]],"type":"Polygon","properties":{"ct":[-86.28,39.9],"gu":"USA"},"id":"IN"},{"arcs":[[-529,-607,-612,612,613,614,615]],"type":"Polygon","properties":{"ct":[-85.28,37.51],"gu":"USA"},"id":"KY"},{"arcs":[[-593,616,617,618,147,619,149,620,621,152,622,-601]],"type":"Polygon","properties":{"ct":[-79.36,35.54],"gu":"USA"},"id":"NC"},{"arcs":[[-611,623,-396,624,625,626,-613]],"type":"Polygon","properties":{"ct":[-82.79,40.28],"gu":"USA"},"id":"OH"},{"arcs":[[-512,-530,-616,627,-617,-592,-572,-598]],"type":"Polygon","properties":{"ct":[-86.32,35.84],"gu":"USA"},"id":"TN"},{"arcs":[[[-615,628,629,630,631,632,145,633,-618,-628]],[[634,635,636]]],"type":"MultiPolygon","properties":{"ct":[-78.89,37.51],"gu":"USA"},"id":"VA"},{"arcs":[[-435,-402,637,638,639,-420,640,-605,-518]],"type":"Polygon","properties":{"ct":[-90,44.65],"gu":"USA"},"id":"WI"},{"arcs":[[-614,-627,641,642,-629]],"type":"Polygon","properties":{"ct":[-80.61,38.64],"gu":"USA"},"id":"WV"},{"arcs":[[643,644,645,646,138,647]],"type":"Polygon","properties":{"ct":[-75.51,38.99],"gu":"USA"},"id":"DE"},{"arcs":[[-631,648]],"type":"Polygon","properties":{"ct":[-77.02,38.9],"gu":"USA"},"id":"DC"},{"arcs":[[-637,649,650,142,651,652,-632,-649,-630,-643,653,-644,654]],"type":"Polygon","properties":{"ct":[-76.79,39.04],"gu":"USA"},"id":"MD"},{"arcs":[[-646,655,656,657,135,658,659]],"type":"Polygon","properties":{"ct":[-74.68,40.21],"gu":"USA"},"id":"NJ"},{"arcs":[[-555,660,133,661,-657,662,663,664,665,-391,666,-389,667,668,-570,-556]],"type":"Polygon","properties":{"ct":[-75.53,42.94],"gu":"USA"},"id":"NY"},{"arcs":[[-626,-394,-663,-656,-645,-654,-642]],"type":"Polygon","properties":{"ct":[-77.81,40.87],"gu":"USA"},"id":"PA"},{"arcs":[[-565,669,670,671,672,673,674,675,121,676,123,677]],"type":"Polygon","properties":{"ct":[-69.25,45.4],"gu":"USA"},"id":"ME"},{"arcs":[[[-639,678,-400,679,-410,-422,680]],[[-624,-610,-414,-413,681,682,683]]],"type":"MultiPolygon","properties":{"ct":[-84.61,43.48],"gu":"USA"},"id":"MI"},{"arcs":[[[684,314,685,686,687]],[[324,688]],[[689,328,690,691,692,693]],[[380,694,382,695,384,696,386,697,32,698,699,35,700,701,38,702,40,703,704,705,44,706,46,707,48,708,50,709,52,710,54,711,712,57,713,59,714,61,715,63,716,717,66,718,68,719,720,71,721,722,723,724,725,77,726,79,727,728,729,730,84,731,732,733,88,734,90,735,736,93,737,95,738,97,739,99,740,101,741,103,742,105,743,107,744,745,110,746,112,747,114,748,116,749,118,378,750]],[[310,751]],[[318,752]],[[321,753]],[[308,754]]],"type":"MultiPolygon","properties":{"ct":[-152.69,64.54],"gu":"USA"},"id":"AK"}]}}} \ No newline at end of file diff --git a/topojson/dist/usa_50m.json b/topojson/dist/usa_50m.json new file mode 100644 index 00000000000..0b8ff979529 --- /dev/null +++ b/topojson/dist/usa_50m.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[49261,11474],[0,0],[1,-1],[2,-1],[7,-13],[33,-54],[4,-7],[2,-3],[0,-1],[1,-1],[2,-5],[2,-3],[12,-25],[1,-4],[5,-10],[3,-7],[3,-16],[2,-14],[1,-3],[0,-7],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,0],[-2,-2],[-1,0],[0,0],[-2,1],[-1,1],[-16,17],[-10,9],[-1,1],[-3,4],[0,0],[0,0],[0,0],[-20,30],[-11,17],[-10,19],[-1,0],[-1,3],[-4,7],[-4,9],[2,54],[0,14],[1,1],[0,3],[0,1],[0,2],[1,0],[1,0],[0,0],[1,0],[0,0],[0,0]],[[52429,16587],[0,0],[0,-1],[0,-3],[-4,-13],[-1,-3],[-1,-1],[-38,-42],[-11,-6],[-8,-3],[-12,-4],[-5,-2],[-4,-1],[3,11],[42,60],[2,2],[1,1],[4,4],[10,11],[1,0],[0,0],[21,10],[0,0],[0,-20]],[[44752,0],[25,60],[6,125],[15,294],[-33,112],[14,83],[11,69],[0,0],[165,157],[220,93],[99,210],[30,112],[0,0],[20,-19],[26,-23],[0,0],[-54,142],[4,15],[60,211],[86,-40],[0,0],[7,81],[6,58],[0,0],[-17,21],[-44,57],[-10,74],[-9,75],[31,156],[44,135],[13,39],[322,136],[45,147],[6,20],[8,81],[9,91],[39,130],[11,38],[0,0],[184,418],[11,90],[-1,50],[0,32],[-15,61],[-25,108],[-8,9],[-16,21],[0,0],[-29,-64],[-53,-18],[0,0],[-44,94],[-4,62],[3,34],[5,52],[35,42],[0,0],[44,167],[14,156],[-35,702],[7,344],[14,677],[-141,375],[-45,90],[-60,122],[-120,266],[-11,23],[-106,397],[-11,79],[23,65],[39,109],[57,86],[17,-19],[163,-191],[0,0],[-31,76],[-169,306],[0,0],[-45,-90],[-20,-40],[-14,30],[-56,117],[-10,42],[-12,51],[-76,119],[-75,119],[-111,82],[-35,5],[-52,8],[-61,-23],[-138,171],[0,0],[-3,67],[-3,71],[0,0],[-59,-49],[-6,8],[-22,28],[208,284],[371,-179],[74,-6],[115,-106],[45,-41],[123,-146],[162,-357],[35,-17],[48,-23],[60,-137],[170,-393],[0,-15],[0,-12],[0,0],[-17,-17],[-13,-13],[0,0],[-1,-97],[3,-2],[28,-17],[23,12],[15,8],[0,0],[12,105],[0,1],[-9,323],[0,0],[-1,5],[-26,86],[0,0],[91,169],[161,301],[78,285],[2,7],[23,27],[54,61],[29,-4],[21,42],[89,184],[7,342],[3,155],[9,37],[22,101],[0,130],[0,50],[251,393],[44,69],[0,0],[120,-68],[22,-13],[9,-1],[86,-9],[0,0],[16,26],[32,54],[-7,143],[11,26],[30,72],[40,3],[30,3],[51,-46],[26,-24],[135,-4],[31,-1],[70,21],[80,124],[151,235],[139,93],[0,0],[144,303],[214,316],[122,-77],[52,-32],[69,-218],[0,0],[-3,-72],[0,-1],[-89,-155],[-4,-26],[-4,-21],[0,0],[-5,-8],[-36,-53],[-225,-109],[-7,-39],[-8,-45],[8,-79],[11,-95],[91,-278],[30,-178],[27,-158],[-19,-146],[-6,-48],[-132,-300],[-57,-189],[-12,-42],[126,-568],[29,-84],[23,-67],[0,0],[20,-13],[74,1],[68,41],[51,63],[75,191],[15,284],[1,25],[0,0],[-6,30],[-16,81],[-171,501],[0,0],[-5,40],[-36,306],[18,57],[24,81],[41,47],[587,429],[23,4],[49,8],[-22,199],[-107,-56],[-23,8],[-27,226],[2,49],[0,0],[47,167],[76,86],[0,0],[27,-34],[27,-35],[142,-605],[76,33],[67,29],[12,-6],[188,-97],[180,-220],[39,-141],[18,-66],[-19,-119],[19,-150],[0,-3],[10,-28],[24,-71],[36,-49],[58,-17],[35,-10],[391,125],[36,11],[0,0],[47,3],[293,19],[46,-39],[0,0],[0,-39],[0,0],[37,-104],[49,-137],[45,-53],[227,-100],[104,-45],[104,18],[104,120],[23,25],[253,183],[131,21],[0,0],[-53,75],[-86,27],[-36,1],[-16,1],[-26,-26],[-11,-12],[0,0],[-3,95],[234,2],[423,91],[141,-19],[257,27],[0,0],[-11,-42],[-6,-24],[0,0],[-21,-24],[-206,-63],[-74,-23],[-55,-150],[0,0],[157,-528],[0,0],[4,2],[8,3],[0,0],[53,185],[53,-44],[27,-22],[92,-175],[71,28],[0,0],[115,-79],[0,0],[25,-50],[57,-64],[85,-5],[60,-87],[10,-15],[24,-76],[15,-44],[-79,-115],[0,0],[-25,-335],[0,0],[38,-76],[5,-10],[0,0],[-40,-78],[-9,-17],[7,-21],[11,-33],[191,-18],[4,-1],[0,0],[91,88],[77,-34],[58,-25],[22,-33],[87,-148],[0,0],[15,13],[5,4],[31,-25],[1,0],[0,0],[251,-309],[220,-432],[33,-96],[14,-39],[28,-109],[1,-151],[-5,-74],[-1,-28],[-28,-51],[-10,-67],[-11,-67],[-12,-354],[0,0],[17,36],[1,7],[42,302],[7,15],[24,51],[51,16],[3,0],[113,-64],[266,-451],[94,-125],[39,-162],[4,-178],[0,0],[25,92],[9,34],[38,33],[16,13],[0,0],[283,-89],[123,-3],[51,-2],[43,52],[103,25],[96,-19],[9,-2],[0,0],[116,-74],[5,17],[0,0],[-29,71],[0,0],[64,23],[38,-4],[52,-5],[223,-78],[131,-72],[0,0],[11,-53],[-4,-132],[0,0],[32,117],[48,19],[154,-190],[205,-87],[5,-2],[85,-131],[404,-626],[139,-408],[0,0],[29,179],[3,17],[0,0],[153,-285],[17,-68],[21,-82],[50,-737],[150,-836],[90,-335],[20,-16],[7,-6],[55,19],[150,-127],[0,0],[3,-28],[29,-206],[-8,-89],[-9,-81],[-31,-145],[-115,-174],[-82,-174],[-39,-139],[-11,-37],[-20,-41],[-118,-243],[-27,-28],[-35,-35],[-42,-67],[-23,-37]],[[52960,15601],[27,-41],[13,-20],[15,-29],[0,-1],[0,0],[0,0],[-1,-11],[-1,-5],[-1,-2],[0,0],[-1,-4],[-3,-3],[0,0],[-2,-3],[0,-1],[-5,-4],[-12,-11],[-18,-10],[-20,4],[-6,2],[-3,2],[-11,5],[-12,6],[-1,1],[0,0],[0,0],[-1,1],[0,2],[-1,2],[-1,4],[0,2],[0,1],[0,0],[0,1],[0,0],[-1,1],[0,2],[0,5],[0,19],[-1,27],[6,17],[3,11],[13,31],[1,1],[4,5],[0,0],[2,3],[1,0],[17,-10]],[[52959,16093],[1,-1],[0,-1],[2,-4],[2,-3],[8,-18],[3,-8],[5,-11],[3,-7],[0,-2],[0,0],[2,-7],[0,-1],[0,-2],[0,-2],[0,-1],[3,-21],[0,-1],[-1,-13],[0,-35],[0,0],[-5,-2],[-7,2],[-1,0],[-3,2],[-23,30],[-16,23],[-6,58],[9,13],[24,12],[0,0]],[[45628,22904],[0,0],[85,-141],[29,-165],[1,-6],[2,-7],[1,-5],[2,-4],[0,-2],[2,1],[0,0],[1,1],[50,-94],[1,-3],[3,-6],[0,-1],[1,-1],[0,-3],[1,-2],[2,-8],[1,-2],[1,-3],[0,-1],[2,-24],[2,-12],[2,-60],[3,-66],[-4,-13],[-16,-60],[-37,-17],[0,0],[0,-12],[-1,-15],[-13,-23],[0,0],[-2,-4],[-11,-16],[0,0],[-9,-10],[-1,-1],[-31,-23],[-6,-5],[-17,17],[0,0],[0,0],[-14,21],[-98,141],[-26,162],[0,0],[19,42],[10,23],[37,86],[20,73],[2,26],[5,51],[1,18],[0,8],[-1,24],[-4,19],[-4,16],[5,42],[4,44]],[[47919,19209],[-35,-98],[-9,-26],[-3,-5],[-9,-21],[-88,-21],[-38,-8],[-92,-17],[0,0],[0,0],[-5,1],[-2,2],[0,1],[-2,3],[0,1],[-1,1],[0,1],[-3,15],[0,0],[-2,12],[-5,42],[24,85],[9,10],[58,67],[41,19],[9,-7],[14,-14],[1,-2],[0,-1],[3,-9],[1,0],[0,-1],[0,-1],[3,-5],[1,-3],[2,-3],[1,0],[25,-17],[0,0],[1,0],[1,-1],[0,0],[5,2],[32,22],[0,0],[3,2],[2,3],[2,1],[2,2],[4,3],[1,1],[0,0],[0,0],[1,2],[4,3],[0,1],[2,5],[2,3],[0,1],[10,37],[20,77],[0,1],[0,0],[1,1],[0,0],[0,1],[1,1],[1,1],[5,5],[4,3],[2,2],[1,0],[0,0],[1,1],[5,2],[0,0],[1,0],[1,0],[0,0],[1,0],[0,0],[0,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,0],[2,-8],[0,-1],[0,-1],[0,0],[0,-4],[0,-2],[1,-1],[0,-2],[-1,-22],[-1,-19],[-2,-27],[-2,-24],[0,-1],[0,-1],[0,0],[0,-1],[-1,-12],[-1,-4],[-1,-2],[-11,-45]],[[47948,19587],[22,-34],[0,-35],[-41,-28],[-11,1],[0,0],[-4,19],[-6,30],[2,5],[8,16],[16,20],[4,4],[6,5],[0,1],[1,0],[0,0],[1,0],[0,0],[0,0],[0,0],[1,-2],[0,-1],[1,-1]],[[47903,20393],[0,0],[88,-33],[23,-12],[12,-11],[26,-23],[4,-6],[3,-4],[2,-7],[-2,-17],[-4,-7],[-11,-14],[-2,-4],[-3,0],[0,0],[0,0],[-1,1],[-9,11],[-2,3],[0,0],[0,1],[-8,14],[-6,11],[-2,3],[0,1],[-1,1],[0,1],[-1,2],[-8,13],[-1,2],[0,0],[0,0],[0,0],[-3,3],[-1,1],[-1,1],[-7,2],[-1,0],[-1,0],[0,0],[0,0],[-40,3],[-17,-3],[-20,-14],[-25,21],[-9,12],[-4,6],[0,0],[2,11],[10,51],[0,0],[20,-20]],[[47326,20489],[-2,-3],[0,0],[0,0],[-1,1],[-1,2],[0,1],[-1,1],[0,0],[-1,2],[0,1],[0,0],[0,4],[0,2],[0,2],[0,1],[0,1],[0,2],[2,10],[0,5],[0,2],[4,9],[0,1],[36,69],[1,2],[0,0],[0,1],[0,0],[0,0],[1,-1],[0,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-2,-5],[0,-2],[-1,-2],[-1,-7],[-1,-1],[0,-2],[-15,-42],[-8,-19],[-11,-29]],[[47553,20639],[8,-138],[-1,-7],[0,-4],[-1,-6],[-6,-24],[-8,-31],[-43,-110],[-4,-9],[-3,-6],[0,-1],[-5,-7],[-76,-86],[-16,-1],[-31,-2],[0,0],[65,94],[87,121],[-2,60],[-2,56],[-14,74],[0,0],[26,34],[15,8],[5,3],[0,0],[1,-1],[5,-17]],[[47375,20744],[84,-69],[17,-15],[9,-9],[0,0],[-27,-43],[-39,6],[-13,4],[-34,11],[-10,11],[-21,81],[-2,12],[-4,24],[0,2],[0,0],[3,3],[0,0],[2,0],[2,1],[1,0],[0,0],[2,0],[14,-3],[8,-7],[8,-9]],[[47633,21003],[8,-6],[0,0],[4,-5],[-1,-2],[-23,-10],[-8,-4],[-5,-2],[-2,0],[-10,0],[0,0],[-1,0],[-1,0],[0,0],[-21,22],[0,0],[0,1],[5,3],[3,2],[14,1],[33,1],[5,-1],[0,0]],[[46771,21320],[18,-11],[0,0],[1,0],[1,-1],[0,0],[2,-1],[0,0],[1,-1],[0,0],[10,-11],[2,-2],[1,-1],[0,0],[1,-1],[1,-2],[0,0],[0,-1],[3,-8],[2,-4],[0,0],[0,-1],[0,0],[0,-1],[-1,0],[0,0],[-19,10],[-24,12],[-11,10],[0,0],[-5,14],[-1,6],[0,0],[1,2],[0,1],[0,1],[0,0],[1,1],[0,0],[1,1],[0,0],[12,-10],[3,-2]],[[46899,21534],[0,-1],[0,0],[4,-8],[2,-2],[2,-4],[2,-4],[11,-26],[26,-81],[135,-425],[10,-23],[2,-7],[12,-27],[7,-23],[5,-57],[2,-19],[0,-1],[1,-1],[0,-8],[2,-23],[0,-1],[-1,-4],[0,0],[0,-1],[-1,-2],[-1,-2],[0,0],[-10,-11],[0,0],[-54,142],[-70,185],[-19,164],[-34,112],[-24,86],[-11,40],[-1,10],[-2,17],[0,1],[0,0],[2,3],[1,2],[1,-1],[1,0]],[[46607,21525],[67,-115],[7,-11],[0,0],[-9,-18],[-86,72],[5,24],[1,11],[15,37],[0,0]],[[47127,21562],[6,-3],[1,-1],[0,0],[3,-2],[0,-1],[0,0],[1,0],[0,-1],[1,-4],[1,-5],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[-2,-17],[-2,-14],[-9,-9],[-2,-1],[0,0],[-7,-2],[-49,8],[-1,2],[0,1],[0,0],[-1,5],[-1,9],[-1,1],[1,3],[0,1],[0,0],[0,1],[0,0],[1,2],[5,5],[5,4],[3,2],[3,3],[2,1],[2,2],[11,5],[5,3],[17,8],[6,2],[0,0]],[[46580,21527],[0,0],[-1,0],[-3,-2],[0,-1],[-1,0],[-5,-3],[-1,-1],[0,0],[0,0],[-2,2],[-1,5],[0,1],[0,11],[1,14],[2,7],[2,4],[0,0],[8,-18],[1,-9],[1,-7],[0,-1],[-1,-2]],[[45835,21529],[-1,-1],[0,0],[-8,7],[4,37],[0,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[6,-9],[3,-5],[0,0],[-2,-15],[-2,-3],[-3,-8]],[[45898,21651],[-31,-65],[0,0],[-6,-2],[0,0],[-11,11],[-9,10],[3,1],[6,3],[5,8],[0,0],[0,1],[1,3],[-2,7],[0,0],[13,15],[13,10],[6,4],[4,1],[2,1],[6,-8]],[[46451,21796],[-9,23],[0,1],[-28,71],[0,0],[10,-1],[5,0],[0,0],[14,-54],[8,-27],[0,-2],[1,-2],[1,-4],[1,-4],[0,0],[-3,-1]],[[47292,21929],[3,-14],[0,-2],[1,-5],[6,-36],[-3,-12],[-4,-17],[-16,-61],[-2,-7],[0,0],[0,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,0],[-11,1],[-1,0],[0,0],[-15,0],[-2,8],[7,91],[2,23],[0,1],[1,1],[0,1],[0,2],[1,3],[0,1],[1,1],[0,1],[1,3],[2,6],[1,1],[0,1],[5,8],[0,0],[1,1],[1,0],[12,5],[7,3],[1,0],[1,0],[1,-2],[2,-4]],[[45878,22011],[1,-1],[0,0],[2,-3],[1,-1],[1,-2],[0,-1],[14,-66],[7,-33],[14,-149],[2,-17],[1,-10],[-2,-39],[-2,-12],[-2,-11],[-1,-6],[-1,-8],[-3,-4],[-3,2],[-2,2],[-6,9],[-2,3],[-2,3],[0,2],[1,5],[0,1],[0,1],[-1,3],[0,0],[0,0],[0,2],[-1,0],[0,1],[-7,1],[-30,-27],[0,0],[-22,35],[-8,147],[24,99],[15,60],[3,5],[2,4],[6,4],[0,1],[1,0],[0,0],[0,0]],[[45780,22055],[0,0],[1,0],[0,-1],[2,-2],[0,-1],[2,-1],[0,-1],[0,0],[1,-2],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-3],[-1,-2],[-30,-60],[0,0],[-15,-9],[-20,-12],[0,0],[-1,0],[-3,0],[-1,0],[0,1],[-4,8],[-2,4],[0,1],[0,0],[-1,1],[-3,11],[0,2],[-1,3],[0,1],[-1,3],[1,2],[0,1],[0,2],[0,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,-1],[25,5],[11,4],[0,1],[1,0],[1,1],[0,1],[0,4],[2,23],[0,0],[17,19],[2,0],[3,1],[7,1]],[[46369,22040],[7,-11],[1,-2],[2,-3],[5,-11],[1,-3],[1,-3],[1,-4],[0,-1],[0,0],[-1,-2],[0,0],[0,0],[-1,0],[-5,3],[-1,0],[-5,4],[-4,9],[-13,30],[1,3],[0,1],[0,1],[1,5],[0,3],[0,0],[1,0],[0,0],[0,0],[1,1],[0,-1],[0,0],[1,-1],[7,-18]],[[45725,22071],[4,-3],[4,-4],[1,0],[0,-1],[4,-4],[-6,-34],[-1,-4],[-1,-1],[0,0],[-1,-2],[-4,-6],[-8,-2],[-7,-2],[-4,1],[-16,21],[-1,4],[0,0],[5,5],[1,0],[0,0],[2,1],[0,0],[2,3],[20,21],[2,1],[4,5],[0,1],[0,0],[0,0]],[[45718,22078],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0],[-1,-2],[0,0],[-6,-12],[0,-1],[-1,0],[0,-1],[0,0],[-19,-19],[-3,0],[0,0],[0,-1],[-1,0],[-1,0],[0,0],[0,1],[-4,8],[-1,2],[0,2],[-1,5],[-1,2],[1,4],[0,0],[0,2],[38,13]],[[45844,21930],[-15,-58],[0,0],[-32,-34],[-46,103],[49,99],[0,0],[29,35],[0,0],[0,1],[1,1],[0,0],[1,0],[5,5],[0,0],[11,8],[1,0],[0,-1],[1,-1],[1,-3],[0,-1],[0,0],[0,-1],[2,-10],[-5,-83],[-3,-60]],[[45779,22134],[2,-3],[-2,-6],[-2,-9],[0,0],[0,-1],[-1,-1],[0,0],[0,-1],[-13,-10],[-3,1],[0,0],[0,0],[0,1],[-1,2],[-1,4],[-2,7],[-1,9],[0,2],[1,2],[0,1],[0,0],[0,0],[1,1],[0,0],[1,0],[0,1],[11,1],[4,0],[4,-1],[2,0]],[[45769,22161],[-1,0],[0,0],[-2,-1],[-1,-1],[-7,-6],[0,0],[0,0],[-3,-4],[-2,-2],[0,0],[0,-2],[0,-1],[1,-5],[0,-3],[-1,-5],[-1,-1],[-2,-1],[-11,-12],[-9,-6],[0,0],[-1,0],[-1,-1],[-2,1],[0,1],[-1,0],[0,0],[0,1],[0,2],[0,2],[4,4],[12,11],[15,23],[1,1],[10,8],[0,0],[1,-1],[1,-2]],[[45824,22130],[-6,-3],[-9,-4],[-5,19],[6,21],[4,12],[0,0],[9,3],[1,-48],[0,0]],[[45507,22426],[4,0],[0,0],[1,-16],[0,-1],[0,-1],[0,0],[-1,-1],[-1,-1],[-11,-8],[0,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[0,0],[0,0],[-1,1],[0,0],[-1,0],[0,1],[-2,2],[0,0],[0,1],[0,2],[-1,2],[0,0],[2,10],[0,0],[0,0],[0,1],[10,4],[2,1],[0,0],[1,1],[5,1]],[[46744,22434],[2,-4],[10,-17],[96,-268],[29,-80],[7,-24],[13,-38],[0,-3],[0,-1],[1,-1],[0,-1],[7,-32],[2,-8],[0,-3],[1,-2],[0,-7],[1,-1],[0,-3],[0,-1],[0,0],[0,0],[-1,-1],[0,0],[-1,-1],[-33,-8],[-40,-10],[-14,6],[0,0],[-1,0],[-1,1],[0,0],[-1,0],[-4,5],[-1,1],[0,0],[-9,16],[0,0],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,0],[0,0],[0,1],[0,0],[6,5],[22,20],[10,8],[0,0],[-13,116],[-74,242],[-1,4],[-1,2],[-1,2],[0,1],[0,0],[-8,15],[-2,4],[0,0],[0,0],[-2,3],[-16,20],[-7,2],[-2,1],[-2,0],[-3,7],[-3,8],[-1,13],[16,16],[5,1],[3,-3],[6,-5],[2,-1],[0,0],[1,-1],[0,0],[0,-1],[1,-1],[1,-1],[0,0]],[[45986,22797],[6,-1],[7,-2],[2,0],[10,-4],[18,-24],[1,-1],[3,-6],[1,-2],[0,-1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[-8,-15],[-12,-7],[-31,-19],[-11,-4],[-5,-2],[-1,0],[-13,-1],[-10,0],[-10,0],[-30,16],[-3,4],[0,1],[0,1],[-3,8],[4,11],[1,1],[0,0],[2,4],[10,11],[8,8],[14,12],[8,5],[7,4],[2,1],[2,1],[12,1],[14,2],[1,0],[0,0],[4,0],[0,0]],[[46219,23017],[-2,-2],[-1,-2],[0,0],[-1,0],[0,0],[0,0],[-1,0],[1,8],[1,1],[0,0],[0,1],[0,1],[0,2],[0,0],[1,3],[0,1],[2,4],[0,2],[0,0],[1,1],[0,2],[6,16],[6,14],[7,18],[0,2],[1,1],[0,0],[0,0],[1,1],[1,-2],[0,0],[0,0],[0,-1],[0,0],[1,-1],[0,0],[0,-1],[0,-1],[0,-2],[-7,-23],[-8,-20],[-9,-23]],[[46290,23224],[0,0],[-6,-3],[0,0],[-6,-16],[2,-20],[0,-3],[1,-8],[3,-5],[71,-85],[69,-53],[110,-166],[1,-2],[1,-3],[1,0],[0,-1],[7,-23],[1,-23],[0,-27],[0,-29],[-16,-191],[-14,-107],[0,0],[-17,4],[0,0],[-14,44],[-1,24],[0,0],[31,92],[18,108],[1,10],[0,5],[1,34],[0,1],[0,0],[0,0],[0,3],[0,5],[0,4],[0,2],[0,10],[0,1],[0,1],[0,1],[-2,9],[-4,19],[-6,13],[-57,91],[-6,10],[-41,49],[-86,102],[-68,1],[-16,0],[22,118],[0,0],[7,1],[13,3]],[[45121,23377],[10,-6],[2,-2],[1,-1],[5,-5],[3,-4],[0,0],[0,-1],[0,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,0],[-1,0],[-1,0],[0,0],[-21,4],[0,1],[0,0],[0,1],[0,1],[1,5],[0,0],[5,11]],[[45140,23434],[2,-27],[1,-13],[0,0],[-2,-1],[-3,-2],[-20,-8],[0,0],[-1,3],[0,0],[1,2],[1,5],[0,3],[6,18],[0,0],[1,2],[4,11],[2,6],[1,1],[1,1],[1,1],[1,2],[0,0],[0,0],[1,0],[1,1],[0,0],[1,-1],[0,-1],[0,-2],[1,-1]],[[45756,23449],[0,-1],[0,-1],[0,-1],[0,-1],[2,-6],[0,-2],[0,0],[0,-1],[1,0],[0,-1],[1,-3],[5,-11],[3,-8],[4,-10],[1,-2],[5,-11],[3,5],[0,0],[1,0],[0,-1],[0,0],[0,-1],[3,-23],[1,-11],[-1,-1],[0,0],[0,0],[0,-1],[0,-1],[0,0],[0,0],[-2,1],[-3,2],[-3,4],[-8,16],[0,0],[-8,25],[-2,8],[-2,14],[0,0],[-1,-1],[0,-1],[0,0],[-5,2],[-4,21],[0,0],[3,0],[0,-1],[0,-1],[0,0],[1,-1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,2],[0,3],[0,0],[0,1],[0,3],[0,2],[-2,2],[0,0],[1,2],[0,1],[0,0],[0,0],[1,-2],[1,0],[1,-1],[0,-9],[1,-4],[1,-2]],[[45908,23908],[0,-1],[0,-1],[-1,-2],[-2,-11],[0,-1],[0,-1],[-9,-22],[0,0],[-2,12],[-4,29],[-1,9],[6,4],[3,2],[10,-13],[0,-3],[0,-1],[0,0]],[[46022,23944],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[-1,-15],[-1,-4],[0,1],[-1,1],[-2,3],[-13,29],[0,0],[0,2],[0,0],[10,8],[1,1],[1,0],[1,0],[0,0],[1,0],[0,0],[2,-10],[2,-6]],[[46039,23993],[2,-2],[2,-3],[5,-11],[0,-2],[0,-1],[1,-3],[0,-2],[0,0],[-1,-2],[-3,-14],[-2,-6],[0,-1],[0,-1],[0,0],[-1,0],[-4,-1],[0,0],[-2,4],[-1,1],[0,6],[-1,10],[-1,21],[0,7],[0,0],[2,2],[0,0],[2,-1],[2,-1]],[[46041,24065],[-3,-11],[-4,-14],[-5,-9],[-1,-2],[0,0],[1,-5],[-6,-6],[-2,-3],[5,32],[0,5],[0,1],[0,5],[0,0],[2,3],[4,7],[3,5],[1,0],[3,-4],[2,-4]],[[46044,24122],[-5,-20],[-5,-17],[-3,-10],[-3,-6],[0,-1],[-1,0],[0,0],[0,0],[-1,0],[-2,0],[0,0],[-11,18],[1,4],[0,4],[0,1],[0,2],[0,1],[1,2],[4,8],[1,0],[0,0],[1,1],[2,0],[0,0],[1,0],[0,-1],[0,0],[1,-1],[0,-1],[0,-1],[0,-1],[3,1],[4,3],[2,5],[3,11],[7,-2]],[[46155,24030],[-1,5],[-1,2],[0,0],[0,1],[0,1],[0,6],[0,0],[0,1],[-1,1],[-1,20],[2,13],[1,3],[0,0],[0,1],[1,3],[1,5],[1,6],[1,7],[1,5],[1,5],[6,26],[0,0],[1,0],[0,-1],[0,0],[1,-1],[0,-2],[1,-2],[-1,-1],[0,0],[0,-5],[-7,-50],[-6,-49],[0,0]],[[46063,24149],[9,-34],[-2,-8],[-3,-11],[-8,-16],[-3,-5],[-1,-1],[0,0],[0,0],[-1,0],[-3,12],[-1,6],[7,52],[0,0],[2,1],[1,2],[0,0],[0,0],[2,2],[1,0],[0,0]],[[45777,24170],[0,0],[0,-1],[1,-2],[0,-2],[-2,-15],[0,-2],[0,0],[0,-1],[0,-1],[0,0],[-1,-3],[0,-1],[0,-4],[-2,-7],[-3,-11],[0,-1],[0,0],[0,0],[0,-1],[-1,0],[0,0],[-1,-1],[0,1],[-1,1],[-1,2],[-1,2],[-1,3],[-1,1],[0,2],[-1,4],[11,34],[0,1],[1,0],[0,1],[3,1]],[[45772,24194],[3,0],[1,-1],[0,-1],[1,0],[0,-1],[0,0],[0,-2],[0,0],[0,-1],[0,-1],[-2,-4],[0,-2],[0,0],[-12,-39],[0,0],[-2,0],[-1,0],[-8,20],[0,2],[0,0],[0,1],[-1,3],[0,1],[-1,0],[-2,12],[1,2],[3,0],[0,0],[2,1],[18,9],[0,1],[0,0]],[[45765,24228],[0,0],[0,-1],[0,0],[0,-1],[-8,-14],[-4,-6],[-4,-4],[-3,-3],[-5,-1],[0,0],[-1,0],[-1,0],[-2,3],[-5,9],[0,0],[-1,1],[1,2],[28,24],[1,0],[1,0],[3,-7],[0,-2],[0,0]],[[46108,24236],[2,-4],[1,-3],[0,0],[-1,0],[0,0],[-1,-1],[-2,2],[-2,1],[0,1],[-1,0],[-2,2],[-3,3],[-15,18],[-11,13],[-1,2],[0,2],[0,1],[0,0],[1,0],[1,2],[3,2],[1,1],[1,1],[29,-43],[0,0]],[[45459,24298],[0,0],[77,-36],[9,-3],[16,3],[5,1],[91,21],[55,-56],[0,0],[-98,-41],[-188,-76],[0,0],[-11,80],[5,16],[21,69],[0,0],[3,4],[15,18]],[[45955,24368],[135,-187],[34,-48],[0,0],[1,-2],[1,-4],[1,-38],[-1,-12],[-5,-43],[-29,-237],[-25,-210],[0,0],[-26,-19],[-14,-10],[0,0],[-55,98],[0,0],[76,260],[17,86],[20,102],[-1,20],[0,27],[-98,126],[-35,66],[-9,16],[-11,31],[0,0],[5,-5],[19,-17]],[[45858,24447],[0,0],[-3,-5],[-8,-12],[-74,34],[0,0],[7,-1],[78,-16]],[[45621,24560],[-3,-6],[-4,-9],[-8,-16],[-2,-1],[-1,-2],[0,0],[-10,-3],[0,2],[0,0],[0,1],[0,0],[1,4],[1,1],[0,2],[1,1],[2,5],[2,2],[0,0],[5,6],[14,17],[2,1],[1,0],[-1,-5]],[[29267,29500],[-19,241]],[[29248,29741],[-1077,-167]],[[28171,29574],[-70,434]],[[28101,30008],[-37,142]],[[28064,30150],[-64,150]],[[28000,30300],[-244,331],[-3,4],[0,0],[-130,135]],[[27623,30770],[-30,30],[0,0],[-8,7],[-370,293],[-56,65],[-105,124]],[[27054,31289],[-308,33],[-76,9],[-22,29],[-38,52],[0,0],[-12,433]],[[26598,31845],[-166,388],[-7,17],[-64,125],[-283,561],[-89,660],[-13,-4],[-21,-6],[-38,30],[-114,212],[-49,342],[2,173],[0,0],[7,9],[12,16],[33,-3],[5,-23]],[[25813,34342],[10,-44],[-12,-21]],[[25811,34277],[0,0],[14,-105],[0,0]],[[25825,34172],[91,-83],[33,0]],[[25949,34089],[-36,151]],[[25913,34240],[-90,216],[-148,-4],[0,0],[-26,26],[-92,90],[0,0],[0,26]],[[25557,34594],[-1,51]],[[25556,34645],[-117,350],[0,0],[-216,367],[-33,294],[-2,80]],[[25188,35736],[-4,171],[10,53]],[[25194,35960],[-32,214]],[[25162,36174],[-56,128],[-52,118]],[[25054,36420],[-127,177],[0,0],[-20,166],[0,0],[130,496]],[[25037,37259],[7,553]],[[25044,37812],[-45,312]],[[24999,38124],[-33,96],[-17,119]],[[24949,38339],[-43,306],[-39,207],[-2,7],[-19,67],[90,481],[50,191],[0,0],[37,317],[78,1120]],[[25101,41035],[12,383],[-11,549],[0,0],[132,25],[15,11],[28,21],[10,20],[6,11],[0,0],[-103,12],[-16,2],[0,0],[-14,14]],[[25160,42083],[-73,69]],[[25087,42152],[14,311],[47,208]],[[25148,42671],[0,0],[14,10],[0,0]],[[25162,42681],[-6,10],[-134,51]],[[25022,42742],[-91,478],[-34,181]],[[24897,43401],[-59,89],[-26,38],[0,0],[-23,74],[-12,176]],[[24777,43778],[-14,196],[0,0],[92,-25],[307,-175]],[[25162,43774],[385,-55],[104,19],[44,-230],[-48,-100],[-6,-12],[0,0],[-19,-19],[-6,6],[-20,16]],[[25596,43399],[-37,-90],[-71,-177],[-1,-4],[-20,-81]],[[25467,43047],[42,0],[21,0]],[[25530,43047],[11,8],[53,44],[0,0]],[[25594,43099],[-79,-45],[0,0],[-10,5],[-19,12],[0,0],[43,115]],[[25529,43186],[20,53],[44,70],[118,187],[38,-59]],[[25749,43437],[23,-36],[-20,-221],[-5,-45],[-49,-117]],[[25698,43018],[-17,-40],[-25,12]],[[25656,42990],[-25,11],[-16,90],[0,0]],[[25615,43091],[-19,-120],[18,-127]],[[25614,42844],[0,0],[25,-8]],[[25639,42836],[45,-15]],[[25684,42821],[157,219],[0,0]],[[25841,43040],[-22,105],[-22,102],[12,178],[10,38]],[[25819,43463],[23,90],[22,32],[6,9],[3,35]],[[25873,43629],[3,34]],[[25876,43663],[-48,141],[-20,58]],[[25808,43862],[-16,86]],[[25792,43948],[-20,110],[13,135],[0,5],[-26,96]],[[25759,44294],[-64,38]],[[25695,44332],[-75,154],[15,32],[12,25]],[[25647,44543],[-58,0],[-67,0],[-6,0],[-5,0],[-13,0],[-39,74],[-25,145],[11,12],[42,49],[-18,123],[-23,165],[-24,9],[-44,-50],[-25,-28],[0,0],[-64,-145],[-154,81],[-78,147],[17,87],[18,15],[12,11],[16,-14],[21,-19],[5,-16],[16,-48],[0,0],[-18,442],[0,0],[-26,-224],[0,-2],[0,0],[-80,-97],[-6,-7],[-138,-7],[-126,159],[-12,68],[100,339],[-194,-58],[0,0],[-17,107],[-6,38],[71,185],[9,58],[17,113],[-9,26],[-5,16],[-5,0],[-9,1],[-44,-91],[-1,-40],[0,-13],[19,-54],[1,-3],[0,0],[-13,-112],[-11,-18],[-73,-129],[-25,-16],[-1,-1],[-51,41],[-38,30],[-182,-1],[-152,-1],[-72,35],[0,0],[136,78],[110,64],[57,79],[3,11],[44,138],[-16,116],[-22,28],[-15,0],[-7,0],[0,0],[5,-15],[32,-107],[-71,-196],[-26,-29],[-181,-34],[0,0],[-5,40],[17,23],[33,43],[0,0],[-15,18],[-35,41],[-273,107],[-71,-67],[12,-2],[14,-3],[-13,-27],[-56,-35],[-97,84],[0,0],[-11,49],[-13,60],[110,14],[136,18],[0,0],[-6,2],[-29,12],[-107,-16],[-109,-17],[-94,67],[0,0],[146,4],[-61,63],[0,0],[-8,-4],[-90,-50],[-7,85],[-4,35],[43,2],[31,1],[83,38],[75,33],[0,0],[-13,11],[-9,8],[-29,-41],[-61,-22],[-86,30],[-21,7],[0,0],[-7,20],[-21,64],[0,0],[16,36],[63,145],[81,36],[10,4],[236,-5],[0,0],[-343,14],[-93,-136],[0,0],[-20,32],[-61,95],[1,166],[0,39],[55,42],[170,251],[27,21],[77,61],[69,-23],[55,-113],[90,-184],[0,0],[-2,32],[-2,37],[-249,452],[0,0],[-280,-298],[0,0],[-84,250],[0,0],[8,15],[11,21],[-13,8],[-32,20],[-59,-212],[-25,-55],[-18,4],[-12,2],[-3,13],[-2,11],[0,0],[41,101],[70,335],[-8,93],[-7,-9],[-13,-16],[-59,30],[-83,42],[-26,183],[0,0],[-26,32],[-124,151],[-14,105],[0,0],[166,-32],[68,35],[32,16],[71,-9],[135,-197],[0,0],[-39,70],[-56,99],[-51,46],[-66,17],[-49,-33],[-40,-27],[-20,23],[-84,97],[-29,79],[14,88],[46,82],[0,0],[5,3],[22,10],[0,0],[-15,22],[-30,44],[-216,-251],[-18,-20],[0,0],[-3,-110],[-4,-115],[-18,-2],[0,0],[-49,59],[-97,117],[0,0],[0,0],[19,-28],[33,-48],[26,-107],[-8,-129],[0,0],[-13,-1],[-38,-3],[-115,209],[-10,90],[-3,32],[0,0],[-28,-3],[-42,47],[-88,142],[-21,32],[1,41],[41,38],[144,-155],[36,-57],[32,-50],[34,-50],[0,0],[0,0],[-116,179],[-60,93],[-7,250],[-31,68],[-60,134],[-52,-38],[-11,5],[-28,13],[-3,17],[-9,63],[25,109],[111,143],[0,0],[4,12],[82,232],[128,5],[21,0],[95,73],[86,113],[0,0],[-27,-1],[-6,-4],[-12,-8],[-84,-111],[-8,-11],[-60,-44],[-52,-2],[-52,-2],[-4,3],[-29,21],[0,0],[0,1],[12,59],[61,136],[74,165],[52,27],[0,0],[-17,12],[-87,59],[0,0],[0,-67],[-1,-45],[-24,-118],[-86,-216],[-33,-33],[0,0],[-24,90],[29,80],[6,16],[-8,288],[-6,174],[49,192]],[[22398,50824],[-39,-81]],[[22359,50743],[-25,-51],[0,0],[1,-27]],[[22335,50665],[25,-489]],[[22360,50176],[-52,-131]],[[22308,50045],[-33,-80]],[[22275,49965],[-128,-159]],[[22147,49806],[-76,-40],[-52,11],[-40,51],[-32,167],[0,5],[-1,76],[49,193],[14,110],[16,117]],[[22025,50496],[-34,146],[-17,72]],[[21974,50714],[-116,180],[-15,-22],[78,-122],[39,-103],[0,0],[25,-122],[-42,-206],[-18,-88],[-20,-20],[-43,-43],[-7,7],[-44,40],[0,0],[35,41]],[[21846,50256],[18,57],[4,10],[0,0],[-19,36]],[[21849,50359],[-187,-53]],[[21662,50306],[-7,-5],[-3,-4],[0,0]],[[21652,50297],[-21,-168],[0,0],[0,-5],[-13,-9],[-6,-4],[-31,63],[0,0],[-10,202],[23,15]],[[21594,50391],[64,133],[14,57]],[[21672,50581],[46,185]],[[21718,50766],[-11,23],[-30,60]],[[21677,50849],[-54,-28],[-80,-41],[0,0]],[[21543,50780],[62,-80],[0,0],[-14,-61],[-8,-37],[-63,-155],[0,0],[-88,74],[-9,8],[0,0],[-23,142],[124,230]],[[21524,50901],[1,1]],[[21525,50902],[129,171],[9,13],[0,0],[-14,3],[-102,24],[-57,-30],[-66,-35]],[[21424,51048],[26,-187],[0,0],[-17,-26],[-4,-5],[-66,-27],[-22,30],[-18,25],[-32,110]],[[21291,50968],[-15,1],[-28,0]],[[21248,50969],[-14,-55],[-18,39],[-25,55],[0,0],[-3,50],[-1,40],[0,0],[73,99],[27,16]],[[21287,51213],[17,10],[18,-24],[23,-31],[0,0],[26,51]],[[21371,51219],[31,63],[0,0],[-5,29],[-6,33],[-48,98],[-1,3],[-178,215],[-42,165],[0,0],[-241,109],[0,0],[-4,4],[-54,53],[0,0],[25,46],[19,36]],[[20867,52073],[69,2],[36,34],[0,0]],[[20972,52109],[-124,58],[-91,214],[0,0],[1,13],[7,56],[22,11],[11,6],[146,-98],[0,0],[-69,89],[-87,72],[-13,10],[-125,161],[-80,191],[-242,123],[-4,5],[-55,72],[-82,210],[-98,253],[-62,289]],[[20027,53844],[-26,120],[-3,-12],[-51,-160]],[[19947,53792],[0,0],[49,-223]],[[19996,53569],[79,-217],[56,-354]],[[20131,52998],[-9,-34],[-4,-17],[-2,-3]],[[20116,52944],[-21,-32],[0,0],[-39,16],[-32,13],[-76,169]],[[19948,53110],[-83,-19],[-87,-20],[-59,93],[-1,1],[8,31],[25,96],[-90,260],[0,0],[2,-18],[2,-24],[0,0],[-14,-66],[-6,-26],[-31,-12],[-6,-2],[0,0],[-100,68],[-14,35],[-13,31],[-12,12],[-45,48]],[[19424,53598],[-147,56],[0,0],[-19,-110],[0,0],[184,-55],[66,-58],[49,-85],[0,0],[-55,-52]],[[19502,53294],[-20,-20],[0,0],[24,-3],[0,0],[12,9]],[[19518,53280],[42,29],[10,24],[18,-14],[61,-92],[46,-153],[0,0],[-29,-39],[-206,-68]],[[19460,52967],[-74,1],[-386,296],[-334,428],[-437,253],[-226,160],[-17,12],[7,22],[0,0],[16,-7],[32,9]],[[18041,54141],[40,10],[66,111]],[[18147,54262],[1,268],[-29,48]],[[18119,54578],[-47,-89]],[[18072,54489],[-48,-92],[-248,-136],[-118,20],[-129,22],[-256,133],[-17,36],[89,13]],[[17345,54485],[7,42],[17,105],[-32,14],[-93,41],[0,0],[-3,-35]],[[17241,54652],[-116,-138],[0,0],[-413,111]],[[16712,54625],[-498,-82],[-93,7]],[[16121,54550],[-48,4],[0,0],[-44,55],[-66,83],[-203,45],[-39,58],[0,0],[47,165]],[[15768,54960],[-111,-56],[0,0],[-4,-10],[-22,-51],[-108,11],[-173,104],[0,0],[-4,16]],[[15346,54974],[-14,54],[0,0],[59,94],[-2,5],[-5,12],[-117,38],[-28,-2]],[[15239,55175],[-198,-13],[-18,35]],[[15023,55197],[-48,91],[-46,35],[0,0],[-24,52],[3,37],[2,17],[0,0],[37,63],[20,34],[0,0],[-308,-103]],[[14659,55423],[-59,27]],[[14600,55450],[-169,-127],[-68,-52],[-41,-20],[-49,14],[20,94]],[[14293,55359],[2,13],[0,0]],[[14295,55372],[21,40],[62,120],[70,87]],[[14448,55619],[59,38],[-34,28],[-15,13]],[[14458,55698],[-179,-198],[-19,-21],[0,0],[-69,-178],[-157,-55]],[[14034,55246],[0,0],[25,-28],[18,-19],[21,1],[72,2]],[[14170,55202],[64,33],[30,-13],[27,-12],[0,0],[2,-26],[4,-43],[0,0],[-21,-34],[-74,-68],[-3,-3],[-70,-5],[0,0],[37,-27]],[[14166,55004],[34,-25],[29,6]],[[14229,54985],[29,59],[12,24],[0,0],[28,15],[52,-103]],[[14350,54980],[-3,-21],[-7,-48],[0,0],[-166,-141]],[[14174,54770],[-30,-59],[0,0],[81,4]],[[14225,54715],[93,4],[0,0],[-48,-147],[0,0],[-236,-99],[-159,24],[-182,70]],[[13693,54567],[-58,-122],[-19,-11],[-14,-7],[-8,29],[-9,34],[-10,3],[-15,4],[0,0],[-1,-6]],[[13559,54491],[-15,-105],[-256,-359],[-16,0],[-12,-1],[-10,24],[-12,27],[0,0],[-28,-14],[-101,-54]],[[13109,54009],[-160,-158],[-76,3]],[[12873,53854],[-53,2]],[[12820,53856],[-107,-76],[-53,-5],[-30,25],[-76,66],[-3,38],[28,53],[0,0],[8,2]],[[12587,53959],[5,-1],[5,0]],[[12597,53958],[261,200],[168,194]],[[13026,54352],[-81,-11],[-163,-143],[-37,13],[-57,20],[-43,36],[-21,17],[-9,20],[-12,27],[0,0],[79,243],[21,30],[9,14],[23,60],[137,352]],[[12872,55030],[34,177],[8,43],[0,0]],[[12914,55250],[334,221],[227,-93]],[[13475,55378],[123,-11],[153,-13],[0,0]],[[13751,55354],[3,6],[17,32],[0,0],[-206,71],[-73,62],[-62,54],[0,0],[13,46]],[[13443,55625],[2,5]],[[13445,55630],[34,42],[61,74]],[[13540,55746],[160,116],[0,0]],[[13700,55862],[-43,20],[-37,17]],[[13620,55899],[-119,-96]],[[13501,55803],[-23,-88],[-21,-14],[-36,-26],[-287,14],[-111,-52]],[[13023,55637],[-245,-177]],[[12778,55460],[-46,-61],[-162,-217]],[[12570,55182],[-146,-250],[-10,-17]],[[12414,54915],[-200,-168],[0,0],[1,-45],[-58,-276],[0,0],[-14,-6],[-77,-33],[0,0],[29,-16],[6,-3],[-26,-102],[0,0],[-70,-37],[-59,-32],[0,0],[-21,60],[-104,-120],[-2,-3],[0,0],[-230,-164]],[[11589,53970],[-48,-229],[25,-71],[11,-17],[1,-2],[0,0],[12,5],[82,36],[59,-3]],[[11731,53689],[59,-3],[54,-37],[62,-43],[60,-103],[0,0],[-65,-120],[-10,-17],[0,0],[-87,-80],[-44,-9],[-22,-5],[-94,-103],[-175,-332],[-25,18]],[[11444,52855],[-169,-116],[-473,-430],[-52,-26],[-91,-45]],[[10659,52238],[-44,-43]],[[10615,52195],[-81,-81]],[[10534,52114],[70,-67],[0,0],[-2,-63],[-61,-95],[-39,-61],[-93,-7]],[[10409,51821],[-20,-17]],[[10389,51804],[-32,-27],[-97,-44],[-118,-54],[-28,5],[-5,0],[0,0],[-33,-85]],[[10076,51599],[-205,-247],[-86,-7],[-56,-5]],[[9729,51340],[-22,-79],[-22,-76],[30,-74]],[[9715,51111],[21,-54],[0,0],[-64,-123],[0,0],[-11,52],[-18,86]],[[9643,51072],[-65,16]],[[9578,51088],[-8,-74],[-9,-78],[-33,-54],[-271,-88]],[[9257,50794],[-52,12],[-19,-17],[-15,-14],[-55,-176]],[[9116,50599],[-13,-42],[0,0],[34,174]],[[9137,50731],[-96,42]],[[9041,50773],[-165,-153],[-112,-103],[-360,-198],[-117,4],[-5,25],[5,23],[14,58],[0,0],[6,15],[45,106],[-39,19]],[[8313,50569],[-4,2],[-13,-3],[-47,-10]],[[8249,50558],[-45,-86]],[[8204,50472],[-5,-82],[-33,-73],[-47,-106],[-152,-189],[-210,151]],[[7757,50173],[0,0],[21,-35]],[[7778,50138],[18,-30],[1,-12],[16,-131],[0,0],[-57,-16],[-65,-19],[-99,3],[-135,-110],[-10,43],[0,0],[36,225],[0,0],[43,28]],[[7526,50119],[155,99]],[[7681,50218],[102,109]],[[7783,50327],[51,119],[3,5],[90,136],[131,125],[101,97],[185,65]],[[8344,50874],[45,16]],[[8389,50890],[167,-28]],[[8556,50862],[-30,-29],[-24,-23]],[[8502,50810],[0,0],[80,-123],[39,-29],[40,-29],[0,0]],[[8661,50629],[89,119],[2,49],[1,31],[-31,41],[-19,23],[101,270],[113,111]],[[8917,51273],[103,101]],[[9020,51374],[355,240]],[[9375,51614],[64,43]],[[9439,51657],[18,17],[88,83],[207,344]],[[9752,52101],[1,2]],[[9753,52103],[248,221],[0,107]],[[10001,52431],[1,73]],[[10002,52504],[14,122],[14,115]],[[10030,52741],[35,228],[24,101]],[[10089,53070],[31,125],[63,75]],[[10183,53270],[95,112],[59,225],[-39,-5]],[[10298,53602],[-109,-118],[0,0],[-4,-2],[-405,-202],[-66,37],[-27,50],[-34,63],[-25,58],[-2,6],[0,0],[-8,133],[0,0],[-41,-50],[-50,-62],[-53,-134],[0,0],[9,-81]],[[9483,53300],[52,-119],[8,-17],[0,0],[-32,-50],[-13,-21],[-30,-9],[-14,-5],[-29,11],[-45,18],[-76,155],[-79,161]],[[9225,53424],[-95,147],[-52,-12]],[[9078,53559],[-21,-85],[-2,-8],[0,0],[-49,-10],[-21,-4],[-27,28],[-121,129],[-60,17],[-48,15]],[[8729,53641],[-185,-123]],[[8544,53518],[-128,-84],[-19,-26],[-53,-70]],[[8344,53338],[-102,-65],[-8,-5],[0,0],[-1,0],[-60,-19],[-115,40],[73,44]],[[8131,53333],[28,80],[16,45],[-36,211],[0,0],[-45,66]],[[8094,53735],[-21,31],[0,0]],[[8073,53766],[-34,111],[60,106],[46,43]],[[8145,54026],[31,30],[0,0],[1,68]],[[8177,54124],[-177,388],[-9,16],[-93,166],[-5,0],[-31,4],[-21,-41],[5,-64],[-64,-77],[-236,-117],[-63,-12],[-182,-34],[-194,44],[0,0],[-2,5],[-35,81],[23,26],[0,0],[-60,80],[-92,108],[-92,109],[-186,128],[-55,75],[-42,57],[0,0],[138,98]],[[6704,55164],[49,86],[26,47],[0,0]],[[6779,55297],[-60,203],[-133,114]],[[6586,55614],[-28,-64],[-1,-3],[-58,45]],[[6499,55592],[-62,48]],[[6437,55640],[-73,71],[-19,19],[-14,27],[-89,176]],[[6242,55933],[19,88]],[[6261,56021],[18,82],[83,232],[48,137],[95,135]],[[6505,56607],[134,188],[91,73],[5,1],[79,24]],[[6814,56893],[-25,188],[8,53],[8,52],[57,99],[35,5]],[[6897,57290],[32,5]],[[6929,57295],[3,10],[3,9],[0,0],[-23,24],[2,21],[3,39],[67,64],[0,1],[0,0],[8,2],[157,39],[150,-67],[108,-89]],[[7407,57348],[61,-51],[105,16],[57,47],[138,114],[103,148],[44,63],[85,-5],[109,-7],[176,17],[107,11],[54,22],[99,127],[71,116],[0,0],[1,49],[0,11],[-84,344]],[[8533,58370],[-126,147],[-9,115]],[[8398,58632],[0,0],[106,-2],[32,34],[70,75],[4,90],[-39,59],[-22,34]],[[8549,58922],[-45,40],[-59,52],[-478,-248],[0,0],[-174,-172],[-334,42]],[[7459,58636],[-110,52],[-104,11],[-103,-6],[-111,-7],[-199,-88],[0,0],[-23,-2],[-132,-11],[-305,73],[-180,42],[-43,76]],[[6149,58776],[-73,132]],[[6076,58908],[-125,276]],[[5951,59184],[0,0],[76,10],[34,54]],[[6061,59248],[56,88],[0,0],[-10,13],[-9,12],[-258,55],[-140,30],[-106,49]],[[5594,59495],[-238,108],[-34,63],[92,93],[317,180],[589,333]],[[6320,60272],[333,148],[336,103]],[[6989,60523],[242,10]],[[7231,60533],[82,-23],[33,-9],[0,0],[-67,-8],[-95,-343]],[[7184,60150],[0,0],[155,-104]],[[7339,60046],[404,16],[372,-44]],[[8115,60018],[46,32],[3,2],[128,179],[180,-57],[30,-10],[0,0],[10,28],[4,13],[0,0],[-5,9]],[[8511,60214],[-49,78],[-338,133]],[[8124,60425],[-148,135],[-136,124],[-49,79],[0,0],[16,53],[32,9]],[[7839,60825],[71,19]],[[7910,60844],[95,-113],[29,-94]],[[8034,60637],[0,-48],[0,-8],[0,0],[64,-82],[8,-11],[147,-94],[115,38]],[[8368,60432],[14,16],[5,6],[0,0],[-6,15],[0,0],[-57,21],[-53,20],[-72,63],[-83,74],[5,19],[19,71]],[[8140,60737],[54,109],[101,3]],[[8295,60849],[0,0],[-13,40],[-57,24],[-81,34]],[[8144,60947],[-167,-36],[-203,-1],[-391,72],[-99,57],[-8,95]],[[7276,61134],[-47,138]],[[7229,61272],[-75,138]],[[7154,61410],[-55,58]],[[7099,61468],[-76,42],[-89,49],[-308,233],[-56,42],[-318,156]],[[6252,61990],[-263,129]],[[5989,62119],[26,18]],[[6015,62137],[91,62]],[[6106,62199],[47,182],[34,134]],[[6187,62515],[139,82],[112,-3],[113,-4],[510,69],[46,19],[74,30],[142,100],[44,30],[164,207]],[[7531,63045],[14,44],[4,12],[1,84],[0,54],[40,111],[52,144],[214,253],[52,47],[35,30],[113,66],[66,38],[175,-19],[87,-9],[158,53],[52,18],[221,132]],[[8815,64103],[303,250],[90,31]],[[9208,64384],[107,37],[169,33],[0,0],[-83,-20],[-12,-3],[-74,-38]],[[9315,64393],[-61,-31],[0,-22],[0,0],[5,-5]],[[9259,64335],[15,-16],[78,3]],[[9352,64322],[60,3]],[[9412,64325],[444,75],[72,13]],[[9928,64413],[188,105],[117,120],[157,162],[108,59]],[[10498,64859],[40,-31],[68,-53]],[[10606,64775],[134,-53]],[[10740,64722],[203,-33],[16,-55],[9,-28],[0,0],[-68,-51],[-68,-51],[-39,-5],[-43,-5],[0,0],[30,-96],[17,-6],[27,-9]],[[10824,64383],[153,25]],[[10977,64408],[180,254],[12,16],[133,-85],[88,-55],[33,-136],[5,-22]],[[11428,64380],[139,-52],[80,45],[12,19],[12,18],[140,23]],[[11811,64433],[267,23],[22,-4],[94,-22],[213,-94],[0,0],[-23,-162]],[[12384,64174],[159,-85]],[[12543,64089],[123,-66]],[[12666,64023],[195,-18],[94,-9]],[[12955,63996],[710,97],[208,-53]],[[13873,64040],[163,-42]],[[14036,63998],[366,-152]],[[14402,63846],[285,-64]],[[14687,63782],[218,4],[200,4],[236,-45],[162,-87],[189,-57],[129,-2],[130,54]],[[15951,63653],[116,47],[204,52],[246,-15],[205,-85],[344,-182],[224,-119],[30,-7],[153,-36]],[[17473,63308],[0,-8490]],[[17473,54818],[0,8490],[0,0],[209,-44],[171,-18],[342,-35],[110,-45],[48,-36],[103,-79],[25,-28],[67,-77],[324,-148],[88,-41],[365,-140],[165,16],[95,-18],[127,-25],[353,-176],[0,3],[-3,22],[0,0],[-120,125],[-69,71],[-113,161],[0,0],[-23,55],[-23,52],[0,0],[30,40],[36,11],[66,20],[61,-41],[129,26],[41,8],[0,0],[-34,77],[-17,36],[17,31],[102,39],[68,-5],[118,-8],[29,33],[25,28],[0,0],[18,155],[0,0],[40,12],[55,-129],[0,0],[66,-19],[100,-29],[0,0],[-40,-118],[-107,-117],[2,0],[74,-1],[172,114],[223,14],[0,0],[6,4],[61,43],[16,65],[98,64],[65,42],[91,86],[123,-38],[297,191],[7,5],[33,-11],[78,-28],[32,26],[70,118],[0,0],[3,17],[5,22],[62,24],[118,24],[93,-15],[5,-6],[18,-23],[84,-4],[83,-4],[60,88],[58,87],[129,-135],[-24,-55],[0,0],[-28,-21],[-38,-28],[-320,-152],[-108,-51],[-87,-87],[-108,-108],[0,0],[-34,-385],[0,0],[43,-13],[146,285],[0,0],[-7,14],[0,0],[14,42],[99,133],[38,50],[377,124],[82,11],[76,9],[0,0],[-29,-18],[0,0],[3,-111],[68,-30],[41,-19],[8,8],[29,77],[33,35],[58,61],[147,83],[0,0],[-7,45],[-3,18],[0,0],[78,131],[187,34],[-13,51],[0,0],[-194,97],[0,0],[-4,34],[22,89],[61,72],[0,0],[233,-149],[89,-86],[31,-29],[133,-222],[32,-51],[0,0],[19,-72],[12,-45],[47,-103],[157,-168],[83,-66],[95,-75],[110,-40],[67,-24],[20,1],[49,4],[85,39],[26,12],[0,0],[5,27],[5,28],[-66,2],[-54,1],[0,0],[20,35],[45,75],[34,101],[13,39],[63,124],[139,93],[-1,0],[-15,27],[-35,8],[-30,7],[-92,-25],[0,0],[73,53],[63,-3],[160,-7],[0,0],[-13,14],[-54,53],[-39,-8],[-40,-8],[-3,36],[-4,52],[0,0],[10,0],[46,1],[92,-38],[0,0],[20,-123],[0,0],[-23,-113],[-30,-145],[110,-21],[64,-42],[0,0],[-30,-36],[-155,-188],[0,0],[72,-64],[51,-2],[45,-3],[205,25],[79,9],[0,0],[10,7],[137,98],[17,105],[22,130],[0,0],[71,26],[89,32],[469,-9],[81,-19],[34,-7],[195,-93],[106,-77],[223,-162],[763,-189],[27,-20],[85,-63],[142,-67],[73,-34],[744,-150],[-13,38],[-22,65],[0,0],[201,55],[78,-17],[3,0],[72,-28],[235,-90],[83,-60],[137,-99],[125,-116],[106,-165],[0,0],[-30,-117],[0,0],[-173,7],[-193,7],[-69,-27],[-86,-34],[12,-175],[0,0],[-217,-76],[0,0],[93,-36],[116,-45],[670,-118],[487,-15],[0,0],[30,6],[239,55],[138,-7],[44,7],[184,31],[152,42],[18,5],[280,163],[47,-1],[35,-45],[8,-9],[0,0],[-16,-66],[13,-31],[83,-82],[26,-26],[65,-23],[11,-4],[21,17],[42,34],[103,-12],[46,-6],[39,-54],[4,-16],[22,-99],[228,-128],[113,-36],[40,-35],[48,-42],[26,-68],[9,-24],[5,-78],[0,0],[-75,-31],[-61,-24],[12,-120],[4,-44],[1,-7],[1,-5],[62,-37],[40,-25],[103,-126],[180,-221],[0,0],[-6,65],[-1,6],[-72,95],[-122,160],[16,229],[13,33],[16,39],[39,-30],[18,-14],[0,0],[4,-19],[17,-81],[0,0],[-75,21],[-22,6],[0,0],[18,-21],[74,-87],[7,-2],[9,-3],[4,15],[9,36],[58,-15],[76,-18],[0,0],[-34,122],[-39,138],[-78,110],[-101,143],[-68,210],[-5,16],[0,0],[60,216],[81,150],[356,75],[47,41],[57,49],[0,0],[26,89],[131,40],[85,25],[47,2],[47,1],[20,25],[6,65],[11,115],[0,0],[-50,-1],[-44,0],[-78,-28],[-104,-38],[-201,-154],[-4,-4],[-15,12],[-12,10],[-34,-1],[-43,-1],[-188,-79],[-57,13],[-44,11],[-62,-9],[-39,-5],[-7,-11],[-10,-52],[-3,-12],[44,-14],[37,-56],[0,0],[-130,-19],[-152,-23],[-57,58],[-59,59],[-70,-27],[-34,25],[0,0],[205,314],[49,26],[402,58],[107,44],[391,163],[193,-37],[150,-121],[18,-14],[-21,-32],[-2,-3],[-16,-194],[-6,-69],[0,0],[270,-144],[19,-10],[8,-7],[110,-80],[29,-39],[50,-67],[102,6],[79,5],[0,0],[1,-42],[0,-38],[-18,-54],[0,0],[111,105],[22,21],[31,20],[85,56],[107,-105],[93,-90],[201,-94],[226,-106],[125,52],[18,-14],[14,-11],[53,-6],[61,-8],[37,5],[2,0],[246,65],[114,-8],[5,-21],[1,-6],[0,0],[53,70],[138,25],[33,6],[0,0],[17,-2],[231,-26],[171,-89],[312,59],[0,0],[-23,99],[17,151],[0,0],[12,-11],[8,-7],[20,19],[45,45],[0,0],[-4,31],[-8,57],[-47,42],[-96,85],[-14,61],[0,0],[34,1],[73,2],[57,-47],[51,-42],[14,1],[19,3],[191,52],[-2,2],[-32,43],[-54,48],[-25,23],[-17,23],[0,0],[3,7],[5,11],[97,-6],[38,-2],[30,-25],[0,0],[1,-9],[1,-18],[9,-5],[7,-4],[0,0],[22,44],[93,-10],[139,-143],[-1,-12],[-3,-18],[-9,0],[-3,0],[-12,-35],[0,0],[223,-84],[0,0],[-89,-72],[4,-62],[19,-18],[40,13],[45,15],[0,0],[10,59],[0,0],[41,47],[213,88],[18,8],[-45,-59],[-58,-215],[-29,-105],[13,-137],[-106,-124],[-8,-10],[0,0],[-2,-19],[-2,-19],[52,-100],[42,-82],[-1,-9],[-6,-28],[0,0],[49,-44],[80,45],[38,21],[86,-46],[40,-40],[52,-53],[71,23],[71,82],[-21,73],[-60,205],[-71,82],[-24,78],[-16,50],[33,105],[39,122],[18,22],[293,-17],[141,137],[100,126],[0,0],[1,11],[3,28],[0,0],[80,69],[62,25],[79,31],[62,20],[30,9],[10,9],[0,0],[-10,20],[-14,27],[-15,110],[-16,118],[-39,106],[0,0],[-103,24],[-72,-98],[0,-7],[1,-34],[0,0],[8,-4],[15,-10],[89,47],[0,0],[-111,-104],[-15,-14],[-138,-24],[-6,-1],[0,0],[-27,12],[-58,27],[0,0],[54,133],[10,25],[23,0],[0,0],[111,118],[-2,9],[-9,37],[-53,30],[0,0],[12,116],[3,30],[260,81],[0,0],[-24,-56],[-13,-31],[-2,-2],[-42,-49],[8,-87],[0,0],[76,57],[149,138],[0,0],[-58,113],[-31,23],[-5,4],[0,0],[-4,-1],[-56,-11],[-69,-58],[-164,-11],[-32,-3],[0,0],[-101,123],[-39,48],[-43,-13],[-100,-30],[-408,173],[-48,45],[-162,152],[-97,131],[-20,139],[28,80],[0,0],[6,7],[123,169],[123,1],[-52,71],[-65,-19],[-65,54],[-101,86],[0,0],[-4,83],[31,130],[35,144],[-13,81],[0,0],[28,28],[97,98],[44,15],[26,9],[54,-14],[31,-44],[17,-25],[15,-10],[46,-31],[52,8],[56,138],[23,57],[-10,-2],[-72,-16],[-105,15],[-35,32],[-26,25],[6,29],[0,0],[159,89],[124,30],[0,0],[15,31],[28,62],[0,0],[-25,30],[0,0],[13,64],[0,0],[18,13],[302,35],[32,-71],[2,-4],[-20,-54],[0,0],[-17,2],[-30,3],[-28,-27],[-4,-4],[0,0],[19,-63],[196,40],[89,-30],[43,-15],[404,-363],[0,0],[47,-192],[-10,-152],[-6,-76],[0,0],[-37,-19],[0,0],[172,-141],[36,-29],[96,-38],[120,-248],[0,0],[12,-57],[16,-26],[3,-4],[27,45],[0,0],[-3,42],[34,6],[22,-18],[36,-30],[81,-119],[0,0],[-4,-21],[-2,-14],[-205,-22],[-87,60],[-43,30],[-108,-119],[0,0],[13,-29],[150,34],[58,-22],[32,-48],[-399,-281],[0,0],[1,-6],[2,-23],[163,-44],[116,-31],[132,-70],[48,-25],[0,0],[23,22],[141,131],[108,-13],[0,0],[-7,-20],[-8,-23],[-41,-40],[-9,-9],[-121,-26],[0,0],[7,-3],[15,-7],[200,5],[33,-10],[90,-29],[89,63],[65,-35],[67,-37],[0,0],[-20,-21],[-95,-3],[-12,-1],[-80,-92],[-152,-24],[-25,-4],[0,0],[156,-134],[100,-85],[48,-128],[5,-30],[16,-104],[12,-299],[1,-32],[40,-69],[48,-83],[72,14],[133,257],[28,114],[-1,220],[0,60],[0,0],[70,99],[94,133],[36,26],[9,7],[74,14],[48,-22],[424,-377],[0,0],[21,-42],[41,-82],[57,-266],[4,-74],[-22,-77],[-34,-17],[-18,-9],[-96,66],[0,0],[-5,81],[-30,-31],[-29,-31],[-21,-246],[-3,-36],[4,-20],[7,-32],[27,-67],[63,-159],[289,-295],[17,-39],[22,-53],[-9,-50],[-2,-13],[0,0],[2,-30],[63,-34],[93,76],[0,0],[31,128],[75,31],[51,21],[91,-69],[21,134],[-4,128],[0,3],[185,322],[43,44],[41,40],[42,160],[31,119],[9,243],[0,0],[39,84],[33,18],[18,9],[342,-27],[3,35],[-41,36],[-110,4],[9,69],[2,12],[0,0],[60,63],[120,47],[0,0],[-131,62],[-106,50],[-58,6],[-27,42],[-56,91],[5,344],[0,0],[23,32],[6,8],[0,0],[1,1],[79,79],[132,18],[178,24],[104,-11],[134,-84],[152,-48],[103,-33],[207,8],[96,3],[95,-26],[56,-16],[0,0],[-56,-66],[-14,-91],[0,0],[145,-56],[0,0],[9,-12],[0,0],[-6,-92],[0,0],[64,-19],[49,-15],[149,8],[52,-20],[78,-29],[15,-48],[17,-55],[0,0],[-253,-178],[0,0],[209,-12],[44,-25],[46,-79],[-18,-125],[0,0],[-108,-66],[-207,-128],[-160,52],[-108,34],[-9,-26],[3,-77],[57,-24],[0,0],[57,-207],[45,-85],[21,-39],[102,-117],[322,-370],[0,0],[-27,-113],[-42,-172],[-49,-136],[-128,-23],[-39,-22],[-64,-37],[-48,-94],[-11,-21],[-488,-351],[-138,-16],[0,0],[-22,45],[-35,70],[-36,22],[-96,159],[0,0],[19,150],[-19,-30],[-37,-57],[-62,18],[-89,27],[-52,124],[-5,11],[0,0],[-177,58],[-130,-159],[0,0],[46,-23],[10,-6],[92,44],[0,0],[-6,7],[-12,15],[0,0],[51,-6],[59,-7],[70,-73],[101,-105],[139,-235],[123,-207],[-1,-19],[0,-10],[-44,-26],[-19,-11],[0,0],[-49,38],[-254,200],[-61,-60],[-5,-31],[-13,-79],[-253,41],[0,0],[-22,54],[0,0],[-5,32],[-10,72],[-115,118],[-274,-46],[-19,8],[-42,19],[-7,1],[-5,0],[-159,-18],[0,0],[-27,-49],[-14,-26],[0,0],[64,-109],[0,0],[332,-117],[20,-34],[0,0],[-47,-104],[-7,-14],[-35,-28],[-62,-48],[-195,-256],[-48,-63],[-49,-56],[-118,-132],[-46,-26],[-69,-38],[-289,21],[-44,26],[-28,17],[-28,33],[-69,82],[-72,60],[-111,94],[-103,50],[-65,31],[-305,199],[0,0],[2,-44],[-71,-51],[0,0],[-13,-67],[187,-128],[275,-319],[420,-46],[162,11],[69,5],[16,-4],[203,-43],[22,-37],[37,-63],[0,0],[-33,-84],[-87,-142],[-42,-69],[-160,-199],[-47,-59],[-54,-103],[-76,-144],[0,0],[5,-9],[9,-19],[0,0],[-45,-71],[-184,-87],[-13,-6],[-40,-5],[-158,-17],[-110,9],[-101,8],[-143,89],[-2,1],[0,0],[-9,23],[-9,26],[-99,-44],[0,0],[93,-138],[3,-54],[0,0],[-32,-1],[-28,-2],[-34,47],[-46,-8],[-24,-5],[44,-145],[12,-39],[0,0],[-72,-131],[0,0],[-43,12],[-123,36],[24,-62],[0,0],[-146,-25],[-19,4],[-111,37],[-48,15],[-41,28],[-75,52],[-91,29],[-149,-12],[-125,28],[-81,42],[-144,74],[-234,84],[-61,-1],[-75,-2],[-39,-16],[-84,-36],[0,0],[148,-43],[135,-39],[39,18],[44,21],[194,-75],[56,7],[195,-118],[0,0],[-145,-113],[-6,-4],[-17,8],[-31,-2],[-12,-16],[0,0],[62,-8],[84,36],[29,12],[60,53],[48,43],[44,9],[64,14],[20,-19],[33,-32],[3,-33],[-13,1],[-10,0],[3,-21],[110,-92],[176,-18],[65,-56],[49,-74],[51,-236],[-5,-28],[-2,-12],[-181,-108],[-107,-64],[-186,-14],[-169,34],[-123,-14],[-22,-39],[-4,-7],[0,0],[51,-73],[10,-6],[4,-3],[195,-81],[0,0],[-81,-79],[-57,12],[-16,32],[-6,3],[-17,11],[-65,4],[-104,8],[5,-15],[36,-128],[58,-31],[131,2],[0,0],[-20,-28],[-12,-17],[0,0],[-8,1],[-60,7],[-29,10],[-75,26],[0,0],[9,27],[1,0],[-28,31],[-3,4],[0,0],[0,0],[-55,-4],[-9,-15],[-9,-16],[0,0],[22,-44],[19,-39],[0,0],[-11,-22],[-13,-28],[-130,-100],[-114,-12],[0,0],[12,-9],[45,-37],[-12,-66],[-16,-91],[0,0],[-11,0],[-231,-2],[0,0],[15,-25],[41,-66],[94,-51],[15,-8],[37,-4],[0,0],[-188,-176],[-1,-1],[-270,-170],[0,0],[25,-48],[16,-28],[0,0],[30,47],[16,26],[54,-6],[68,-7],[15,-34],[2,-6],[-46,-44],[-39,10],[-42,11],[0,0],[3,-10],[5,-11],[-10,-123],[-1,-16],[0,0],[-198,-515],[-35,-51],[0,0],[-46,16],[-22,8],[-46,-35],[0,0],[2,-15],[75,-16],[8,-2],[25,-74],[-61,-290],[-11,-99],[-5,-50],[0,0],[3,-313],[34,-103],[6,-75],[-101,-252],[-32,-23],[-4,-2],[9,-15],[75,-23],[68,-100],[93,-137],[49,-20],[18,-8],[233,51],[62,-5],[158,-14],[85,-159],[0,0],[70,-326],[77,-359],[19,-22],[19,-22],[114,-306],[13,-88],[2,-10],[0,0],[-6,-75],[-37,-97],[-31,-84],[0,0],[186,-16],[526,201],[90,-19],[99,-20],[282,-196],[465,-143],[345,-304],[80,-48],[74,-160],[54,-116],[4,-15],[25,-83],[1,-53],[419,-144],[40,-14],[265,-138],[191,-160],[206,-172],[148,-50],[32,-11],[83,13],[243,37],[749,-165],[10,-16],[17,-28],[6,-120],[9,-150],[-43,-194],[-3,-401],[0,0],[38,-69],[48,-197],[-25,-335],[-17,-220],[0,0],[-26,-90],[-1,-31],[-3,-107],[0,0],[142,-168],[111,-187],[85,-233],[388,-459],[26,-57],[42,-160],[35,-136],[62,-85],[116,-82],[68,-48],[42,-6],[47,83],[0,0],[15,138],[63,137],[23,25],[68,74],[62,-75],[60,-75],[8,-48],[33,-223],[0,0],[38,-37],[0,0],[36,281],[-14,102],[0,0],[-30,51],[-42,145],[16,24],[157,241],[25,92],[12,253],[-2,2],[-27,35],[-48,109],[-45,104],[0,0],[8,8],[19,18],[-4,56],[-61,155],[-20,87],[-14,57],[3,144],[1,27],[0,0],[-41,170],[-9,100],[-9,96],[1,303],[-12,69],[-102,72],[-1,1],[-72,153],[0,0],[-4,65],[-7,92],[-29,34],[-68,15],[0,0],[63,64],[203,89],[330,190],[124,107],[132,111],[115,125],[22,24],[18,23],[162,204],[166,307],[45,141],[43,137],[10,103],[-14,354],[-14,338],[-49,218],[-20,59],[-71,207],[-45,91],[-87,175],[-78,97],[-66,81],[-199,118],[0,0],[-92,125],[-88,120],[-18,5],[-29,7],[3,-41],[-7,20],[-25,71],[0,0],[21,197],[45,4],[23,36],[87,142],[5,10],[4,9],[-1,5],[-9,55],[0,0],[35,30],[170,148],[0,0],[-9,12],[-15,20],[-26,5],[-24,19],[67,215],[22,7],[42,15],[102,111],[0,0],[-66,227],[-69,234],[-29,199],[20,112],[13,69],[0,0],[-45,29],[-101,7],[-58,4],[34,176],[88,220],[58,145],[30,49],[21,34],[0,0],[-46,97],[-48,61],[-21,26],[0,0],[-29,0],[-37,1],[-1,2],[-26,37],[-56,264],[-12,125],[6,57],[3,40],[1,2],[29,91],[0,0],[71,25],[149,124],[82,39],[187,-33],[442,-165],[58,-22],[0,0],[93,-112],[0,0],[95,88],[79,0],[133,-32],[122,-87],[30,-22],[362,289],[37,7],[39,7],[276,-261],[79,-57],[24,1],[12,1],[130,-142],[154,-169],[0,0],[-18,-19],[-9,-11],[0,0],[38,-47],[56,-70],[54,70],[73,-31],[29,-12],[57,-60],[-14,-17],[-12,-14],[-85,-23],[-19,-79],[0,0],[24,-85],[0,0],[28,-36],[88,-114],[547,-152],[68,-19],[22,-108],[60,-51],[25,-23],[0,0],[46,63],[52,72],[16,55],[18,62],[0,0],[46,-6],[31,-106],[-2,-138],[0,-21],[-113,-87],[-26,-126],[0,0],[0,-6],[2,-92],[27,-100],[12,-46],[-56,-183],[-3,-9],[0,0],[2,-16],[10,-109],[73,-129],[-60,-275],[20,-50],[29,-71],[168,-169],[0,0],[-10,-81],[-3,-20],[0,0],[-90,-10],[-51,-65],[-38,-47],[-1,3],[-12,57],[-53,62],[-5,6],[-9,-7],[-1,-2],[0,0],[0,-44],[0,-37],[11,-110],[-31,-9],[-125,-37],[0,0],[108,-74],[90,-61],[0,0],[17,29],[33,55],[107,110],[13,14],[19,6],[79,26],[240,-1],[75,-65],[13,-11],[0,0],[27,-117],[147,-136],[44,-112],[-2,-111],[-1,-49],[0,0],[1,4],[50,104],[60,51],[0,0],[1,-23],[4,-263],[0,0],[114,179],[273,160],[72,42],[37,84],[52,120],[1,77],[23,10],[30,-1],[177,-193],[-3,-57],[0,-1],[-33,-88],[-35,-94],[0,0],[11,-40],[8,-4],[14,-8],[0,0],[80,261],[-15,20],[-90,131],[120,210],[0,0],[16,17],[38,43],[57,-34],[126,20],[0,0],[-52,24],[-38,17],[-43,64],[0,0],[8,-2],[5,-1],[0,0],[3,94],[1,39],[0,0],[105,-54],[0,0],[-51,152],[30,71],[-66,161],[-18,44],[5,30],[1,2],[0,0],[105,85],[101,-65],[0,0],[-27,110],[-10,39],[83,199],[19,45],[3,46],[2,24],[0,0],[30,44],[2,3],[0,0],[19,4],[57,11],[86,-57],[46,-31],[0,0],[-17,0],[-16,0],[-5,-21],[-2,-10],[1,-263],[0,0],[41,46],[27,31],[22,-35],[14,-23],[0,0],[-18,-146],[12,-37],[26,-42],[5,-9],[118,-68],[28,-31],[55,-60],[0,0],[-19,-67],[-1,-1],[-27,-30],[0,0],[103,-69],[96,-65],[13,-56],[-7,-20],[-20,-51],[-62,-39],[0,0],[89,-46],[72,-38],[126,-144],[18,-102],[0,0],[-63,-140],[-154,-61],[-13,-6],[-2,-6],[-20,-86],[0,0],[268,88],[120,8],[5,-8],[2,-3],[-28,-132],[12,-90],[0,0],[-102,-40],[-84,-33],[-43,-48],[-9,-11],[0,0],[22,-14],[83,54],[68,6],[76,7],[57,-142],[41,-25],[56,-35],[63,-9],[30,-4],[0,0],[4,-28],[20,-135],[26,-49],[-6,-54],[0,0],[-26,-13],[-208,-107],[0,0],[157,-81],[88,-45],[0,0],[-66,-80],[0,0],[138,-88],[63,-1],[48,-160],[0,0],[-18,-14],[-20,-16],[-90,-179],[0,0],[10,-10],[24,-23],[0,0],[-29,-58],[-90,-2],[0,0],[-240,91],[0,0],[263,-152],[0,0],[-19,-44],[-10,-22],[0,0],[-43,-19],[-54,-22],[2,-4],[4,-10],[107,-49],[53,-25],[25,-19],[84,-62],[0,0],[-101,-22],[-30,26],[-1,1],[0,0],[-80,6],[-15,1],[7,-18],[13,-35],[202,-38],[30,9],[50,16],[12,-21],[15,-28],[-3,-26],[-17,-160],[125,-112],[54,-1],[119,-4],[22,-16],[3,-3],[0,0],[4,-93],[3,-61],[78,-14],[37,-148],[3,-92],[0,-18],[0,0],[-59,-109],[-11,-20],[-65,-200],[0,0],[5,2],[3,1],[129,156],[43,66],[14,23],[0,0],[81,2],[-22,-60],[-28,-77],[-29,-37],[-19,-24],[0,0],[-4,-36],[0,0],[3,4],[100,157],[121,130],[28,-29],[10,-10],[-6,-51],[-99,-98],[0,0],[68,-4],[43,25],[74,43],[18,-11],[31,-20],[0,0],[-8,-18],[-26,-57],[-95,-96],[-88,-186],[0,0],[9,5],[41,26],[162,212],[26,33],[9,6],[56,38],[0,0],[-1,-38],[0,-13],[121,-59],[-1,-150],[0,0],[245,-55],[13,4],[60,19],[48,65],[63,40],[63,-67],[0,0],[-10,-43],[-47,-24],[0,0],[253,-104],[34,-66],[3,-6],[0,0],[-9,-49],[-41,-46],[-130,-72],[-65,-19],[-157,-49],[-2,-28],[0,0],[-163,-99],[0,0],[-51,-16],[-380,-118],[0,0],[89,-21],[294,119],[29,-26],[39,-34],[6,-43],[63,9],[288,46],[0,0],[-33,32],[-108,23],[-141,-3],[0,0],[20,64],[0,0],[0,0],[16,5],[87,23],[281,-33],[43,-34],[7,-5],[0,0],[46,-114],[74,-182],[1,-66],[-14,-30],[-97,-97],[-18,-17],[0,0],[15,-23],[52,-83],[58,55],[32,106],[84,29],[93,33],[0,0],[8,-30],[3,-11],[162,-86],[6,-14],[13,-30],[143,-126],[41,-105],[41,-104],[0,0],[0,-16],[1,-14],[0,0],[-87,-77],[-32,-28],[0,0],[36,-32],[17,-16],[28,-64],[0,-1],[0,0],[-5,-52],[0,0],[-60,-41],[-94,40],[0,0],[76,-111],[0,0],[-16,-47],[-2,-5],[0,0],[-39,-10],[-51,-95],[0,0],[228,-45],[27,-23],[28,-25],[-3,-52],[0,0],[-66,-3],[-82,-3],[0,0],[112,-117],[0,0],[-2,-6],[-85,-240],[-210,-223],[-200,-211],[-246,-38],[-147,-22],[-14,73],[0,0],[-7,-16],[-36,-81],[-111,-106],[-68,-31],[-83,35],[-17,7],[-37,-31],[-59,-51],[-144,-191],[-47,-177],[-30,-43],[-28,-23],[-88,-73],[-6,-42],[-19,-29],[-54,-82],[-92,-54],[-3,-2],[-30,-67],[0,0],[17,-10],[-85,-90],[0,0],[-46,-11],[-36,43],[-116,-36],[-501,-56],[0,0],[-5,12],[-124,25],[-279,38],[-251,34],[-58,-32],[-231,20],[-37,3],[-140,-1],[-640,-4],[-146,-19],[-248,-32],[-97,-92],[-98,-93],[-112,-159],[-6,-9],[-27,-61],[-27,-224],[-24,-48],[-66,-136],[-130,-21],[-180,-30],[-407,-448],[-161,-318],[-85,-167],[-38,-102],[-126,-335],[-121,-215],[-133,-103],[-128,-227],[-71,-127],[-121,-169],[-29,-81],[0,0],[267,197],[94,69],[168,293],[154,266],[157,339],[195,242],[0,0],[135,121],[128,116],[728,477],[216,99],[327,58],[0,0],[264,-41],[46,-30],[146,-95],[0,0],[137,-179],[3,-45],[2,-33],[-22,-58],[-6,-16],[0,0],[8,-22],[20,-55],[-7,-47],[-10,-67],[-237,-249],[-212,-184],[-99,-12],[-97,82],[-101,84],[-204,-71],[-73,-26],[-86,-53],[0,0],[-6,-24],[0,0],[206,-2],[144,-67],[41,-50],[65,-78],[14,-56],[14,-56],[16,-16],[94,77],[114,93],[75,9],[90,-62],[1,-1],[28,-62],[-18,-59],[-65,-214],[-44,-102],[-103,-116],[-39,-44],[41,-43],[7,-8],[0,0],[118,24],[0,0],[39,-307],[82,-263],[63,-200],[129,-21],[122,-21],[64,-32],[26,-41],[0,0],[-19,-13],[-47,-33],[-27,2],[-7,0],[-3,-41],[-1,-7],[76,-61],[77,-62],[114,-51],[19,-9],[120,2],[7,-2],[160,-41],[0,0],[24,-29],[82,-100],[0,0],[29,28],[142,129],[97,-73],[2,-40],[68,-18],[26,-7],[23,-1],[0,1],[13,17],[157,-119],[54,-228],[-247,-98],[-80,-71],[-74,-65],[-174,-110],[-133,-83],[-33,-42],[-32,-40],[-176,23],[-139,-93],[0,0],[6,-41],[12,-78],[0,0],[-13,-21],[-13,-19],[-14,3],[-122,25],[-23,130],[0,0],[-111,-54],[-42,-20],[0,0],[-18,-44],[-18,-48],[8,-102],[-231,-432],[-52,-99],[-2,-2],[-41,-54],[-60,0],[-56,0],[-26,-129],[-111,-35],[-27,68],[-75,200],[-123,-16],[0,0],[-21,190],[-9,87],[33,220],[-7,7],[-28,32],[-1,23],[-1,4],[45,83],[36,52],[33,47],[442,442],[70,49],[185,129],[6,-123],[0,0],[36,10],[61,16],[156,102],[25,16],[0,0],[123,2],[0,0],[38,44],[0,0],[-136,28],[-33,7],[-200,-6],[-321,-59],[7,40],[9,52],[255,289],[-9,17],[-23,43],[-55,25],[-101,-129],[-94,-121],[-384,-309],[-10,-8],[-63,-20],[-218,-69],[-179,2],[-42,39],[-18,-6],[-14,-5],[-24,-72],[0,0]],[[50586,40973],[43,-188],[13,-57],[0,0],[-109,-151],[-34,-14],[0,0],[-5,14],[-7,19],[3,43]],[[50490,40639],[-108,-78],[-130,-53],[-40,-116],[-29,-36],[-57,45],[-35,65]],[[50091,40466],[-161,-130]],[[49930,40336],[-56,33]],[[49874,40369],[-52,31],[-8,26],[-5,16],[0,0],[-67,-95]],[[49742,40347],[-17,-82],[-11,-57],[0,0]],[[49714,40208],[-109,-250],[0,0],[-1,1],[-29,22],[-34,-10]],[[49541,39971],[-130,-164],[-121,64]],[[49290,39871],[-43,-45],[-44,-47],[-24,-58],[0,0],[-257,-713]],[[48922,39008],[-2,-20]],[[48920,38988],[-2,-37],[18,-136]],[[48936,38815],[-118,-362]],[[48818,38453],[39,-42],[29,17]],[[48886,38428],[5,3],[125,-300]],[[49016,38131],[29,-130],[54,-55]],[[49099,37946],[80,-12]],[[49179,37934],[59,32],[36,20],[0,0]],[[49274,37986],[4,43],[3,42]],[[49281,38071],[-40,137],[0,0],[-7,7],[-20,20]],[[49214,38235],[-10,-13],[-12,-14],[0,0],[6,0],[11,1],[0,0],[-10,-13],[0,0],[-25,40],[0,0],[25,17]],[[49199,38253],[59,-38],[11,-28]],[[49269,38187],[21,-55]],[[49290,38132],[22,-127],[3,-107],[0,0],[-27,-94],[-187,17],[-84,31]],[[49017,37852],[-19,7],[0,0],[-1,7],[-4,56],[-21,10]],[[48972,37932],[-29,-47],[-75,-125],[-88,-56],[-20,-13],[-66,21]],[[48694,37712],[41,145],[-3,20],[-2,12],[-64,52]],[[48666,37941],[-21,-255],[-26,-79],[-658,-106],[-203,-151],[-105,-78]],[[47653,37272],[-6,-11]],[[47647,37261],[-73,-125],[0,0],[18,-54]],[[47592,37082],[8,-23],[0,0],[3,21]],[[47603,37080],[7,51],[72,57]],[[47682,37188],[385,80],[202,42],[80,10],[56,7],[0,0],[19,-13],[9,-6],[-499,-330],[-44,-18],[-87,-36],[-284,-60],[-41,46],[8,49]],[[47486,36959],[6,38],[-10,6],[-5,3],[0,0],[-17,-15],[-51,-44],[-20,-57],[-9,-26],[-3,-43],[-2,-39]],[[47375,36782],[46,-17],[41,-16]],[[47462,36749],[9,17],[12,22],[0,0],[5,-124]],[[47488,36664],[4,-107]],[[47492,36557],[-46,-425],[-51,-143]],[[47395,35989],[-50,-138],[-188,-343],[0,0],[-81,-11],[0,0],[-92,128],[-105,145],[-47,391]],[[46832,36161],[0,0],[-12,-35]],[[46820,36126],[-47,-140]],[[46773,35986],[5,-101],[73,-289],[57,-224],[23,-40],[42,-72],[7,3]],[[46980,35263],[23,10],[16,-354]],[[47019,34919],[-84,-352]],[[46935,34567],[-185,-481],[-78,-291],[-15,-28],[-15,-27],[-22,-5],[-11,-2],[-22,189],[53,279],[13,28],[86,182]],[[46739,34411],[9,72]],[[46748,34483],[3,28]],[[46751,34511],[-7,3],[-21,8]],[[46723,34522],[-48,-26],[0,0],[-14,116],[-13,112]],[[46648,34724],[2,70],[2,50],[-30,8]],[[46622,34852],[-8,3],[0,0]],[[46614,34855],[-84,-101],[0,0],[-20,54],[-60,159],[23,100],[9,41],[4,60],[3,43],[0,202]],[[46489,35413],[-14,169],[1,15],[1,18],[23,69],[24,72],[3,4],[19,28],[34,-5]],[[46580,35783],[3,0],[0,0]],[[46583,35783],[29,201]],[[46612,35984],[-38,-29],[-20,-15]],[[46554,35940],[-78,-126]],[[46476,35814],[-105,-168],[-8,-174],[-11,-226]],[[46352,35246],[3,-59],[9,-155]],[[46364,35032],[86,-356],[-16,-80],[-140,159],[-139,121],[-73,17],[-6,-29]],[[46076,34864],[-1,-7]],[[46075,34857],[144,-126],[61,-53],[162,-184]],[[46442,34494],[27,-121]],[[46469,34373],[-11,-139],[-2,-24],[-44,-1],[-39,12],[-144,268],[-14,26],[-27,2]],[[46188,34517],[0,0],[33,-61],[69,-127]],[[46290,34329],[67,-93],[45,-63]],[[46402,34173],[8,-75]],[[46410,34098],[34,-311],[0,0],[-95,-80],[-5,5],[-46,39]],[[46298,33751],[62,-168]],[[46360,33583],[17,-46],[0,0]],[[46377,33537],[45,5],[0,0],[62,49],[91,-25],[0,0],[31,-61]],[[46606,33505],[131,-728]],[[46737,32777],[0,0],[-15,35]],[[46722,32812],[-14,29],[-43,257]],[[46665,33098],[-83,116]],[[46582,33214],[34,-310],[0,0],[-186,-102],[0,0],[-154,118]],[[46276,32920],[-16,-76]],[[46260,32844],[0,-2],[10,-170]],[[46270,32672],[153,10],[246,15],[28,-75]],[[46697,32622],[18,-46],[-3,-87],[-4,-117],[-182,-250],[0,0],[-31,8],[-157,38],[0,0],[6,-23],[8,-33],[28,-15],[0,-8],[-5,-69],[-34,-115],[-106,-120],[0,0],[196,61],[24,-98],[-82,-177],[-195,-14]],[[46178,31557],[-81,-32],[-93,-113],[-117,-142],[-17,-29],[-242,-414],[0,0],[-36,-4],[-67,-9],[-83,-57],[-88,-61]],[[45354,30696],[-140,-259]],[[45214,30437],[0,0],[-4,-18]],[[45210,30419],[-35,-154],[-157,-236]],[[45018,30029],[-17,-33],[-146,-285],[-162,-136],[-193,-272],[-203,-467],[-55,-262],[-81,-382],[-3,-375],[33,-295],[51,-455]],[[44242,27067],[129,-572],[27,-85],[74,-229],[79,-333]],[[44551,25848],[25,-423]],[[44576,25425],[64,-260]],[[44640,25165],[122,-605],[28,-202],[-56,-976],[0,0],[-16,18],[-5,5],[-11,-17]],[[44702,23388],[-10,-15]],[[44692,23373],[-40,-263]],[[44652,23110],[-17,-105],[3,-6],[17,-35]],[[44655,22964],[-29,-89],[-16,-52],[0,0]],[[44610,22823],[-5,76],[-32,26],[-217,-87],[-36,-5],[0,0],[-21,33],[-11,34],[-9,27],[10,76],[4,32],[-3,28],[-5,57],[-38,143],[-39,107],[0,1],[-6,11],[-16,31],[-96,115],[-87,270]],[[44003,23798],[-172,537],[-4,-2],[-38,-11],[-117,422]],[[43672,24744],[-72,261]],[[43600,25005],[115,242],[16,53]],[[43731,25300],[-4,45],[-6,11],[-20,40],[-42,26]],[[43659,25422],[-28,-42],[-9,-14],[0,0],[23,-78],[-17,-79],[-52,-51],[0,0],[-6,19],[-43,151],[2,31],[7,97],[75,490],[4,30]],[[43615,25976],[-26,272],[-49,261]],[[43540,26509],[-6,0]],[[43534,26509],[-74,0],[-25,30],[-15,19],[-141,317],[-63,172]],[[43216,27047],[-26,71]],[[43190,27118],[-26,45],[-36,61]],[[43128,27224],[-127,140]],[[43001,27364],[-67,-6]],[[42934,27358],[-33,-3]],[[42901,27355],[-100,-154]],[[42801,27201],[-79,-76],[-50,-48],[-89,-45],[-41,-21],[-28,-6],[-92,-19]],[[42422,26986],[0,10],[6,100]],[[42428,27096],[-29,75]],[[42399,27171],[-17,43]],[[42382,27214],[-232,272],[-175,117]],[[41975,27603],[-156,20],[-34,5],[-159,-39],[-370,-89]],[[41256,27500],[38,99],[-41,261]],[[41253,27860],[-39,33],[0,0],[-17,-49],[-85,-233]],[[41112,27611],[0,0],[-23,10],[-31,13]],[[41058,27634],[-217,18]],[[40841,27652],[-161,-64]],[[40680,27588],[-38,-15],[-250,-284]],[[40392,27289],[4,-68],[77,-76],[84,26],[46,14],[0,0]],[[40603,27185],[13,16],[22,26],[17,-20],[2,-2],[0,0],[-1,-18],[-1,-22],[-38,-93],[0,0],[-151,-168],[1,-35],[1,-19]],[[40468,26850],[68,-109]],[[40536,26741],[146,-67],[64,-133]],[[40746,26541],[8,-57]],[[40754,26484],[-3,-10],[-9,-31],[-90,-78],[-50,-44],[0,0],[-35,214],[-59,111]],[[40508,26646],[-37,70],[-74,56]],[[40397,26772],[-65,-13],[-57,-157]],[[40275,26602],[0,0],[-89,5],[-67,53],[0,0],[-13,-9],[-21,-14]],[[40085,26637],[-24,-43],[-21,-38]],[[40040,26556],[-115,-77],[-120,103],[-20,52]],[[39785,26634],[-60,152],[-224,328]],[[39501,27114],[-4,1],[-17,5]],[[39480,27120],[-34,-9]],[[39446,27111],[-53,-64],[-40,-50]],[[39353,26997],[0,0],[18,-32],[23,-40],[0,0]],[[39394,26925],[-112,-81],[0,0],[-138,55],[-18,7]],[[39126,26906],[-26,21]],[[39100,26927],[-113,90],[-108,46],[-12,5],[-172,-23],[-189,-74],[-228,-172],[-69,257]],[[38209,27056],[-8,8],[-9,7],[0,0],[-108,-65]],[[38084,27006],[-3,-65],[-2,-59]],[[38079,26882],[22,-60],[18,-200],[-121,-238],[-27,-42],[-63,-101],[-426,-408],[-107,-147]],[[37375,25686],[-77,-106],[-31,-55],[-63,-113],[0,0],[73,159],[25,53]],[[37302,25624],[0,0],[117,128],[0,0]],[[37419,25752],[-30,36],[-69,-12],[-137,-140]],[[37183,25636],[-119,-292]],[[37064,25344],[-14,-147],[-1,-8],[-84,-385],[8,-437],[1,-16],[28,-251],[84,-394]],[[37086,23706],[17,-55]],[[37103,23651],[18,-57],[0,0],[-86,-24]],[[37035,23570],[-311,114],[-84,49]],[[36640,23733],[84,-49],[311,-114],[86,24],[-6,-91],[-10,-162],[-81,-310],[-63,-241],[-77,-515],[-17,-306],[-10,-170],[-2,-146],[-10,-652],[-28,-304],[-13,-135],[0,-145],[49,-377],[0,0],[13,-36],[87,-252],[87,-652],[60,-282],[328,-764],[0,0],[24,-153],[40,-260],[11,-42],[20,-72],[157,-384],[114,-112],[0,0],[127,-23],[126,-63],[79,-78],[7,-7],[6,-6],[41,-41],[47,-157],[36,-117],[21,-16],[33,-24],[92,33],[53,19],[166,106],[134,48],[166,59],[203,153],[42,16],[33,14],[106,23],[121,27],[0,0],[8,-11],[23,-36],[68,33],[29,13],[131,154],[134,157],[20,32],[147,237],[114,502],[13,58],[0,0],[-3,60],[-8,170],[-1,3],[0,2],[0,0],[29,547],[3,15],[19,121],[15,35],[12,29],[50,58],[45,54],[121,90],[232,82],[272,96],[161,95],[210,20],[181,-86],[99,-47],[54,34],[6,3],[-1,34],[0,53],[13,21],[22,-36],[45,-75],[82,-313],[-50,-232],[-3,-12],[0,0],[-20,-47],[-82,-191],[-70,-107],[-45,-135],[-30,-91],[-25,-136],[0,0],[18,-149],[-16,-59],[-9,-34],[-61,-94],[-50,-40],[1,-36],[0,-34],[38,-96],[28,-70],[-20,-30],[-20,-151],[0,0],[59,-81],[-39,-218],[-42,-235],[-19,-136],[-34,-255],[-3,-5],[-2,7],[-83,612],[-1,1],[0,0],[-2,-5],[-46,-103],[-28,-110],[-30,-117],[-14,-7],[-6,-15],[-26,-74],[0,0],[118,-21],[0,0],[-9,-324],[-24,-139],[-10,-55],[-18,-250],[-15,-199],[30,-291],[0,0],[-17,-114],[-30,-200],[-72,-266],[-21,-43],[-18,-38],[0,0],[-19,5],[-16,5],[-41,-57],[-82,-229],[-2,-26],[-3,-30],[46,-19],[20,-9],[53,6],[67,7],[35,-21],[14,-8],[26,-33],[58,-73],[57,-17],[0,0],[78,145],[85,41],[94,-55],[55,-33],[257,-43],[172,19],[198,102],[501,34],[157,-80],[55,-28],[481,-611],[84,-137],[-36,-29],[-8,-41],[-27,-136],[31,-251],[-108,-613],[-32,-336],[-6,-155],[0,-15],[3,-92],[24,-604],[-17,-70],[-7,-30],[-30,-20],[-17,-100],[-22,-247],[-7,-271],[-3,-109],[-59,-173],[2,-82],[1,-37],[26,-160],[32,-99],[0,0],[11,-9],[20,-16],[0,0],[2,-10],[75,-358],[47,-149],[8,-27],[255,-578],[107,-113],[47,-78],[38,-65],[7,-189],[48,-165],[80,-89],[66,6],[51,4],[86,-39],[51,-90],[5,-1],[84,-16],[80,30],[67,26],[249,272],[78,63],[92,75],[47,-79],[39,-66],[71,-24],[0,0],[16,-37],[36,-81],[7,-66],[-38,-5],[-28,-4],[0,0],[-9,-32],[-17,-56],[3,-66],[3,-98],[-190,-257],[-5,-5],[-24,-23],[-41,-2],[-10,0],[0,0],[-18,-276],[152,-324],[19,-85],[9,-37],[0,0],[-11,-49],[-188,-193],[-79,-19],[-44,-11],[-28,5],[-51,7],[-18,37],[-3,5],[-40,412],[-15,149],[0,0],[-25,33],[-9,-10],[-30,-33],[0,-100],[0,-70],[0,0],[-129,63],[-54,186],[-62,214],[-68,-9],[-72,26],[-23,9],[-40,23],[-2,32],[-9,14],[-25,37],[-131,-10],[-33,-2],[-28,-64],[-85,-196],[0,0],[-121,532],[0,0],[-79,100],[0,0],[-3,-1],[-43,-9],[-12,-26],[36,-95],[45,-49],[8,-136],[-12,-7],[-8,4],[-99,54],[-60,94],[-22,35],[0,0],[4,68],[1,12],[0,0],[33,56],[9,52],[6,35],[-10,160],[-3,40],[0,0],[-142,241],[-130,141],[-27,13],[-54,27],[0,0],[-96,202],[-20,92],[-19,88],[-215,260],[-19,23],[8,-121],[1,-17],[41,-91],[0,0],[24,-25],[52,-25],[34,-114],[0,0],[-85,-185],[-27,-24],[-9,13],[-174,252],[-50,33],[0,0],[-45,135],[-13,41],[-33,219],[53,169],[24,497],[-369,645],[-35,107],[-73,225],[-127,215],[-215,366],[20,144],[0,0],[75,33],[0,0],[-30,97],[-4,13],[1,58],[1,200],[0,0],[-39,15],[-47,-42],[-77,-7],[-32,47],[-11,37],[0,0],[-13,-48],[0,-28],[21,-40],[16,-29],[-58,-94],[-33,-20],[-119,11],[-122,12],[-125,54],[-216,212],[-28,5],[-63,11],[-169,108],[-19,18],[-100,99],[-100,74],[-106,81],[-212,-1],[-106,32],[-3,1],[-1,1],[-101,83],[-56,69],[-46,56],[-208,323],[-330,663],[-222,389],[-69,95],[-100,136],[-173,143],[-62,38],[-52,31],[-35,9],[-70,17],[-198,-33],[-110,-117],[-86,-92],[-94,-65],[-132,-91],[-55,-59],[-19,-21],[-103,-23],[-177,91],[-145,149],[-146,41],[-72,37],[-91,46],[-213,186],[-78,89],[-39,44],[-44,92],[-208,105],[-93,27],[-85,25],[-50,54],[-71,77],[-421,320],[-95,73],[-304,456],[-81,93],[-95,108],[-75,-6],[-30,-2],[-103,47],[-73,34],[-342,238],[-98,297],[-5,9],[-55,99],[-84,104],[-39,48],[-408,418],[0,3],[1,8],[-12,49],[-18,72],[-34,56],[-44,71],[-104,278],[-80,320],[-10,39],[0,0],[-2,23],[11,15],[32,44],[124,36],[32,51],[4,26],[4,34],[-33,75],[16,277],[10,32],[9,25],[16,319],[0,0],[-25,74],[-61,73],[-28,32],[-73,269],[-29,379],[-37,158],[-28,122],[-226,423],[-31,57],[-222,596],[-21,40],[-22,43],[-102,168],[-330,456],[-107,312],[-4,9],[-71,182],[-35,67],[-2,3],[-2,5],[-286,230],[-105,118],[-34,38],[-7,67],[-18,181],[47,187],[38,150],[1,103],[0,15],[-15,83],[-55,107],[-19,8],[-52,21],[-432,542],[-30,80],[-7,261],[0,34],[1,74],[30,51],[-120,91],[-10,3],[-66,17],[-151,213],[-18,24],[0,0],[-3,6],[-112,186],[-50,108],[-35,76],[-165,482],[-136,394],[-119,437],[-131,481],[-13,379],[-120,215],[-131,174],[-127,96],[-25,19],[-25,-73],[0,0],[-16,0],[-49,0],[-127,156],[-44,55],[-36,31],[-60,50],[-2,1],[-6,2],[-9,-2],[-1,-1],[0,0],[-7,-110],[-31,-503],[25,-112],[19,-34],[16,-27],[26,-177],[28,-264],[-7,-152],[-5,-109],[21,-74],[22,-78],[79,-185],[0,0],[148,-174],[180,-291],[0,0],[21,-132],[23,-143],[21,-39],[18,-35],[191,-319],[53,-90],[0,0],[30,-102],[19,-197],[22,-231],[11,-45],[17,-64],[205,-397],[0,0],[47,-116],[62,-150],[0,0],[-2,-66],[44,-95],[8,5],[25,18],[58,-81],[50,-71],[94,-395],[24,-160],[0,0],[-5,-54],[-6,-78],[21,-153],[176,-546],[41,-128],[44,-349],[-1,-74],[-1,-53],[14,-82],[13,-81],[26,-76],[5,-10],[22,-39],[79,-33],[19,4],[14,4],[0,0],[2,27],[74,22],[56,-89],[83,-131],[91,-235],[61,-157],[25,-133],[5,-30],[0,0],[-20,-174],[-21,-44],[-16,-36],[-156,-207],[-53,23],[0,0],[-185,653],[-270,435],[-91,110],[-39,37],[-95,90],[-46,-4],[-27,-3],[0,0],[-163,171],[-84,226],[-1,110],[61,439],[2,148],[2,176],[-39,209],[-2,9],[0,0],[-63,156],[-95,115],[-226,275],[-557,502],[-9,16],[-77,130],[-42,95],[-39,91],[-164,239],[-20,67],[257,-64],[89,90],[50,141],[59,165],[1,46],[5,190],[-48,138],[-280,526],[-43,79],[-368,437],[0,0],[-89,469],[-59,310],[-126,451],[-58,161],[-50,142],[-39,156],[-80,323],[-47,133],[-54,151],[-31,188],[-6,33],[1077,167],[19,-241],[0,0]],[[51656,29403],[1,-1],[7,-9],[0,0],[-2,-2],[-8,-12],[-32,-46],[-2,-2],[-13,-14],[-2,-1],[-1,0],[-1,-1],[-3,-1],[-2,-1],[0,0],[-2,-1],[-8,0],[0,0],[-2,2],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,0],[-1,2],[0,1],[-1,1],[0,1],[-1,0],[-1,8],[-3,9],[5,20],[13,18],[3,5],[-1,-5],[-3,-9],[-2,-3],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-3,-5],[0,-2],[0,0],[0,-1],[0,0],[-1,0],[-1,-9],[0,-1],[0,-1],[0,0],[0,-1],[3,-10],[0,-3],[1,-2],[1,-2],[1,-1],[0,0],[0,0],[2,-2],[0,0],[0,0],[4,1],[0,0],[1,0],[0,0],[1,0],[0,1],[1,1],[3,2],[10,12],[4,6],[0,0],[-3,6],[22,24],[8,4],[7,5],[3,2],[0,1],[2,1],[1,3],[1,1],[0,2],[1,1],[-1,1],[-1,1],[0,1],[-2,3],[0,0],[0,1],[-2,-1],[0,0],[-1,-1],[0,0],[0,0],[-2,-2],[0,-1],[-1,0],[-1,-2],[0,0],[-2,5],[-1,0],[0,0],[9,15],[0,0],[0,-1],[1,-1],[1,-1],[0,0],[1,-1],[0,0],[0,0],[0,-1],[1,-2],[1,-3]],[[52359,16410],[47,64],[1,1],[8,-64],[-14,-44],[0,0],[-42,43]],[[58357,0],[63,73],[27,1],[45,-21],[27,-12],[8,-14],[14,-27]],[[58321,57],[-56,-57]],[[58236,0],[-6,8],[-5,8],[-19,15],[-38,7],[-17,3],[0,0],[-13,168],[0,0],[259,116],[0,0],[23,-42],[1,-21],[0,-19],[-100,-186]],[[58109,257],[-28,-41],[-38,-57],[0,0],[-38,45],[51,240],[43,7],[0,0],[4,-84],[6,-110]],[[58135,313],[-21,-3],[0,0],[-1,46],[-4,92],[8,50],[6,47],[103,-15],[0,0],[-1,-35],[0,-17],[-41,-94],[-45,-67],[-4,-4]],[[58121,1762],[-36,-44],[-30,-37],[-44,161],[12,96],[54,53],[0,0],[16,-34],[28,-195]],[[53943,12113],[1,0],[0,0],[2,-2],[1,-1],[0,0],[1,-2],[1,-2],[74,-149],[1,-5],[0,-2],[0,-1],[0,0],[0,-5],[0,-2],[0,0],[-1,-1],[0,-1],[0,-3],[-1,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[-2,-5],[-1,-4],[-1,-4],[-1,-1],[-5,-17],[0,0],[-7,-13],[-15,-27],[-2,0],[-1,-1],[-3,-1],[0,0],[-1,-1],[0,0],[-1,0],[0,0],[-2,0],[-3,-1],[-14,12],[-18,16],[-2,3],[-3,5],[-6,11],[0,1],[0,0],[-1,3],[-5,44],[-5,101],[0,18],[0,20],[1,5],[1,5],[0,1],[0,0],[1,1],[2,6],[2,4],[1,1],[0,1],[0,0],[1,1],[2,2],[2,0],[3,0],[3,0],[0,0],[0,0],[1,0],[1,0],[0,-1]],[[41758,64537],[0,0],[85,-6],[56,-3],[62,19],[99,32],[71,42],[60,35],[283,24],[55,-19],[46,-17],[0,0],[-43,-14],[-23,-8],[0,0],[84,-117],[85,69],[-15,245],[0,0],[70,142],[40,81],[2,88],[-73,36],[-54,-18],[-47,-16],[-162,29],[-96,88],[-123,168],[0,0],[3,37],[2,26],[112,192],[0,0],[84,-10],[214,-24],[175,-117],[10,-7],[9,1],[21,1],[0,0],[-2,29],[-4,14],[-3,10],[-196,116],[-21,12],[-12,66],[-261,96],[-63,78],[-17,61],[-14,144],[5,88],[2,33],[30,62],[131,10],[617,-200],[0,0],[-463,203],[-260,51],[0,0],[23,36],[42,62],[0,0],[805,-141],[0,0],[-58,28],[-80,39],[-52,9],[-223,43],[-150,49],[-139,46],[18,78],[117,60],[315,97],[84,-21],[95,-24],[0,0],[-47,31],[-61,40],[0,0],[581,196],[314,3],[184,1],[73,-43],[27,-36],[77,-104],[23,-140],[128,-116],[64,-58],[0,0],[173,-432],[0,0],[-33,-28],[-245,-208],[-87,-93],[-78,-85],[0,0],[38,-4],[190,180],[145,59],[0,0],[4,-15],[9,-33],[-17,-43],[-4,-10],[0,0],[-28,-41],[-162,-239],[-65,-40],[121,-93],[8,4],[196,92],[13,15],[4,5],[-10,26],[40,118],[0,0],[6,8],[134,150],[134,-84],[6,-3],[0,0],[77,24],[50,66],[172,-135],[0,0],[4,-63],[-17,-44],[-29,-74],[-4,-25],[-9,-57],[181,-50],[0,0],[-112,97],[3,8],[49,126],[0,0],[147,-63],[44,-100],[117,-88],[175,-133],[0,6],[3,62],[0,0],[-57,50],[-100,86],[-96,64],[-263,175],[0,0],[52,91],[39,15],[34,13],[125,-43],[271,-94],[316,-72],[20,-5],[0,0],[-140,65],[-153,23],[-318,125],[-73,48],[-26,17],[0,0],[7,68],[46,58],[36,22],[40,25],[354,121],[323,-29],[11,-10],[39,-34],[145,-60],[81,-20],[57,-13],[48,5],[46,6],[196,-64],[86,-29],[72,-138],[40,-78],[-80,-71],[-56,-50],[-64,11],[-104,17],[-207,-72],[-153,-196],[30,30],[159,157],[82,28],[94,33],[169,-46],[0,0],[-109,-65],[-76,-45],[0,0],[-167,-217],[0,0],[264,262],[232,100],[288,-33],[41,-68],[12,-21],[-2,-14],[-14,-77],[-17,-27],[-10,-17],[-299,-90],[-89,-27],[0,0],[-17,-25],[-93,-139],[0,0],[220,115],[25,-78],[13,-181],[-94,-92],[-53,-52],[21,-23],[0,0],[9,9],[162,150],[-8,67],[-3,23],[-15,9],[-10,7],[0,32],[0,22],[213,185],[165,27],[72,12],[65,-15],[0,0],[-6,-23],[-3,-11],[-228,-235],[-4,-17],[-2,-9],[0,0],[34,-125],[202,204],[0,0],[-4,-109],[-2,-41],[0,0],[38,-79],[0,0],[73,71],[66,-24],[57,-22],[0,0],[-23,-80],[-10,-33],[0,0],[251,408],[53,22],[0,0],[256,-71],[189,-89],[157,-183],[0,0],[-144,-177],[0,0],[-79,15],[-106,21],[-95,-30],[-1,0],[-104,-172],[-6,-75],[-7,-93],[0,0],[129,74],[204,55],[120,33],[0,0],[22,31],[73,103],[141,76],[96,-55],[0,0],[7,-21],[31,-96],[0,0],[-104,-144],[-177,-143],[-90,-7],[-113,-9],[-23,-36],[-44,-67],[-37,-123],[-12,-42],[162,245],[67,-10],[70,-10],[0,0],[-20,-139],[-15,-96],[-123,-216],[2,-24],[100,124],[0,0],[127,383],[212,141],[117,51],[182,80],[30,-13],[26,-11],[0,0],[-61,-73],[-40,-47],[-107,-59],[-28,-15],[-19,-95],[374,222],[74,-3],[59,-3],[327,-151],[-9,-211],[0,0],[-501,-148],[-178,-120],[0,0],[-60,-98],[-140,-111],[0,0],[81,13],[157,124],[55,44],[0,0],[2,5],[12,37],[0,0],[88,50],[224,38],[111,18],[66,-3],[0,0],[12,-34],[-14,-22],[-64,-101],[-84,-53],[-144,-91],[-100,-36],[-140,-122],[0,0],[143,84],[346,142],[233,133],[30,31],[0,0],[-28,12],[-31,12],[2,42],[85,103],[31,9],[204,-135],[81,-86],[90,-152],[17,-62],[29,-105],[0,0],[-127,-14],[-4,-1],[-46,12],[-172,46],[-510,-184],[-54,-9],[-124,-21],[-139,17],[-91,-13],[-44,-7],[0,0],[17,-9],[36,-20],[271,30],[197,22],[186,-3],[282,-88],[126,0],[147,-1],[168,-91],[81,-91],[-1,-46],[-1,-26],[-41,-43],[-159,13],[-161,13],[-221,72],[-154,50],[-129,19],[-196,29],[-100,-78],[0,0],[159,47],[14,4],[227,-55],[7,-38],[0,0],[-133,-15],[-49,-6],[0,0],[-51,-67],[58,-8],[141,56],[134,-42],[23,-8],[129,-72],[0,0],[-7,-15],[-7,-19],[-41,-10],[-29,-8],[-140,-4],[0,0],[72,-60],[67,-55],[0,0],[-26,-42],[-7,-11],[0,0],[-219,24],[-360,40],[0,0],[11,-48],[493,-93],[18,-9],[20,-10],[25,-43],[3,-6],[0,0],[-155,9],[-121,7],[-94,-44],[0,0],[13,-8],[13,-7],[54,1],[178,2],[110,-44],[32,-13],[93,-23],[270,-65],[180,38],[14,-8],[34,-20],[0,0],[-104,-39],[-101,0],[-69,-1],[-203,-52],[-53,-38],[0,-27],[0,-7],[77,28],[56,19],[205,3],[39,1],[63,-95],[31,-46],[26,-18],[44,-31],[89,-8],[67,-5],[54,-89],[-24,-30],[-61,-77],[-29,-19],[-21,-14],[0,0],[193,111],[53,31],[0,0],[-11,-99],[-10,-96],[27,-61],[0,0],[79,200],[43,49],[26,-5],[73,-14],[0,0],[-1,-11],[-9,-54],[-41,-84],[8,-28],[207,237],[0,0],[64,-1],[98,-54],[0,0],[-105,-64],[-30,-37],[-47,-60],[-10,-91],[147,52],[21,34],[11,18],[0,0],[68,-4],[37,-3],[8,-8],[181,-172],[33,-143],[0,0],[-151,-95],[-61,-39],[1,-47],[1,-3],[0,0],[72,6],[73,7],[3,-12],[12,-41],[0,0],[-217,-65],[-32,-36],[0,0],[-1,-9],[-9,-73],[71,47],[147,99],[91,28],[93,30],[156,-11],[34,-2],[18,29],[29,48],[94,24],[13,-13],[26,-26],[15,-63],[-51,-62],[-38,-1],[-33,-13],[0,0],[-26,-22],[-99,-164],[-25,-42],[15,-38],[6,-14],[123,59],[82,40],[237,-18],[220,62],[30,-26],[234,-169],[78,-135],[0,0],[-62,-67],[-6,-7],[-44,-11],[-4,0],[-22,14],[-97,65],[0,0],[122,-185],[8,-11],[0,0],[2,-7],[11,-33],[0,0],[-4,-4],[-15,-14],[-194,-41],[-228,89],[-32,-74],[-37,-85],[0,0],[35,-13],[36,-14],[162,-129],[0,0],[-133,-39],[-6,-27],[0,-3],[24,-100],[13,-56],[0,0],[-95,-3],[-67,-2],[0,0],[13,-50],[22,-80],[-25,-63],[-147,62],[-140,60],[-82,126],[-28,-159],[40,-143],[0,0],[-5,-10],[-13,-28],[-97,-1],[0,0],[58,-58],[57,-57],[47,-98],[-29,-47],[-29,-7],[14,-37],[-31,-197],[-5,-34],[-56,22],[-32,59],[-21,39],[-41,31],[-64,48],[-67,107],[-55,14],[-54,14],[-105,-91],[-21,26],[-40,52],[-16,70],[-4,15],[0,0],[6,14],[10,24],[42,27],[35,22],[0,0],[-74,-4],[-29,-2],[-106,76],[0,0],[16,17],[21,24],[0,0],[-110,64],[-99,58],[-15,60],[6,13],[59,133],[0,0],[152,71],[120,185],[0,0],[-46,-60],[-221,-125],[-50,-8],[-186,-33],[-35,20],[0,0],[-8,70],[41,49],[4,23],[2,14],[0,0],[-60,-23],[-31,12],[-36,15],[-96,118],[-179,107],[-33,123],[-11,40],[-207,14],[-55,24],[-24,10],[-40,-28],[-29,-19],[160,-36],[43,-53],[6,-8],[4,-9],[32,-71],[0,0],[-29,-9],[-13,17],[-18,25],[-73,16],[0,0],[81,-115],[0,0],[-10,-15],[-2,-4],[-52,9],[-150,163],[-66,25],[-14,-12],[-14,-10],[0,0],[88,-171],[31,-41],[30,-38],[180,-142],[0,0],[-52,-108],[0,0],[-200,37],[-1,-14],[-1,-27],[0,0],[-135,95],[-94,-15],[-25,-4],[-8,-70],[50,-74],[26,-38],[59,-21],[34,12],[31,11],[0,0],[3,-98],[0,0],[-33,-105],[4,-34],[2,-18],[0,0],[64,73],[24,29],[90,21],[59,13],[64,-27],[1,-12],[3,-24],[0,0],[-17,-28],[-43,-21],[-37,-17],[0,0],[29,-28],[43,-41],[115,5],[-4,-49],[0,-5],[0,0],[-23,-46],[-78,-7],[42,-139],[0,0],[13,-17],[59,-70],[33,6],[33,6],[36,-50],[27,-163],[34,35],[19,20],[33,-2],[40,-2],[45,-17],[42,-16],[0,0],[4,-82],[2,-24],[-30,-11],[0,0],[113,-20],[59,-11],[0,0],[-3,105],[-1,27],[0,0],[45,6],[35,-31],[88,-79],[15,-41],[-7,-38],[-5,-31],[-66,-50],[2,-52],[0,-14],[164,-17],[126,-13],[-4,-65],[0,0],[-157,-127],[0,0],[101,-145],[50,-71],[70,-34],[14,-7],[38,-56],[0,0],[-60,-67],[-4,-23],[-2,-9],[14,-21],[13,-19],[74,-17],[102,-68],[0,0],[-6,-113],[-32,-137],[-4,-15],[0,0],[-1,-22],[-3,-33],[8,-20],[6,-13],[0,0],[-13,11],[-72,64],[-73,205],[-88,157],[-2,4],[-39,22],[-30,17],[0,0],[-7,-19],[0,0],[120,-208],[0,0],[-25,-99],[-15,-56],[64,-145],[61,-137],[67,-106],[40,-65],[0,0],[-17,-5],[-92,-23],[-80,59],[0,0],[-11,17],[-34,49],[-27,-28],[-13,-13],[34,-105],[3,-7],[0,0],[5,-6],[78,-100],[2,-12],[5,-45],[0,0],[-20,-40],[-2,-4],[-51,-24],[-41,-19],[-56,113],[-4,7],[-9,49],[-16,78],[-63,29],[-434,198],[-122,14],[-492,597],[0,0],[-6,1],[-7,2],[45,-168],[35,-73],[21,-43],[-90,30],[-289,234],[-88,26],[-126,-14],[0,0],[99,-171],[2,-4],[103,-104],[68,-97],[118,-168],[109,-22],[103,-117],[36,-40],[40,-18],[94,-43],[72,-74],[0,0],[35,-102],[1,-4],[21,-27],[115,-10],[18,-22],[36,-44],[113,-184],[129,-137],[-21,-122],[0,0],[36,-114],[25,-79],[-37,-3],[-92,-8],[-99,31],[-99,91],[-374,158],[-448,70],[-262,154],[-47,28],[-79,108],[-55,113],[-1,3],[0,1],[0,58],[0,0],[-60,30],[-91,44],[-17,-24],[-17,-23],[-87,-40],[-17,-8],[0,0],[-100,79],[-13,6],[-119,51],[-168,119],[0,0],[6,1],[21,3],[56,68],[0,28],[1,31],[-8,-3],[-33,-12],[-94,-115],[-34,-9],[-49,26],[-17,64],[-66,16],[-40,9],[-50,128],[0,0],[2,53],[1,83],[0,0],[210,93],[27,56],[0,0],[-145,38],[-16,72],[-111,66],[-23,-13],[-33,-20],[-8,-87],[0,0],[-18,14],[-18,15],[-64,64],[-21,182],[-39,95],[-6,-8],[-15,-21],[0,-158],[0,-27],[0,0],[-3,-1],[-38,-21],[-34,70],[-55,115],[-28,1],[-41,1],[-21,16],[-16,11],[0,0],[-17,52],[10,20],[22,43],[-96,78],[-36,11],[-44,13],[-53,58],[2,39],[6,106],[17,0],[29,34],[21,25],[0,0],[1,41],[0,0],[-32,27],[0,0],[-98,-144],[-5,-11],[-28,-74],[-52,110],[0,0],[48,24],[72,37],[0,0],[-82,54],[-40,-23],[-70,-39],[-41,-74],[-25,-54],[-56,-37],[51,177],[0,0],[-24,104],[-31,29],[-10,9],[-121,-141],[-119,121],[0,0],[-7,17],[0,0],[56,92],[5,8],[-24,9],[-39,15],[-45,-29],[-59,-36],[2,-13],[4,-23],[43,-50],[25,-12],[25,-13],[20,-62],[15,-46],[-5,-96],[-1,-18],[-298,59],[-15,3],[-213,109],[1,-24],[0,-39],[0,0],[10,-24],[13,-34],[-13,-70],[0,0],[-87,-15],[-175,-32],[0,0],[13,-13],[17,-16],[0,0],[-134,-15],[-42,-4],[0,0],[-15,-14],[0,0],[2,-31],[0,0],[-285,48],[-175,29],[-181,219],[-25,110],[33,237],[214,147],[98,137],[0,0],[-9,14],[-23,38],[0,0],[45,123],[270,-48],[413,-128],[6,0],[164,3],[184,58],[165,52],[41,-68],[30,3],[20,2],[27,28],[101,106],[85,51],[39,2],[36,2],[29,-13],[35,-16],[31,-39],[10,-11],[0,0],[18,-3],[49,-8],[0,0],[-1,21],[-1,15],[-98,268],[-91,41],[-81,81],[-44,51],[-94,107],[-9,36],[-9,35],[0,0],[44,55],[125,75],[66,40],[132,118],[255,227],[32,69],[43,94],[163,163],[0,0],[94,26],[7,17],[45,111],[0,0],[-142,348],[-109,212],[-75,190],[-16,85],[-163,116],[-73,-21],[-67,-20],[-47,56],[0,0],[-8,118],[-5,56],[0,0],[29,18],[8,120],[0,0],[-88,50],[-124,22],[-10,-6],[0,0],[3,-7],[9,-17],[70,-71],[59,-60],[0,0],[-14,-37],[-24,-13],[-9,-5],[0,0],[-170,44],[-27,22],[-20,16],[-52,102],[-37,71],[0,0],[11,6],[91,50],[0,0],[-82,11],[-72,72],[-324,20],[-96,-91],[-259,-142],[-55,-13],[-37,-8],[-26,7],[-28,8],[0,0],[-16,33],[11,193],[7,55],[0,0],[12,15],[14,17],[54,13],[38,9],[74,-19],[46,-12],[88,19],[133,28],[13,80],[1,9],[-9,49],[-62,65],[-111,66],[-25,15],[-7,3],[-61,29],[-93,-1],[-90,82],[-26,25],[4,38],[1,13],[49,43],[15,13],[0,0],[-71,-61],[-31,-26],[-27,9],[-183,64],[0,0],[23,27],[11,13],[33,11],[41,14],[9,-10],[3,-4],[-8,-18],[0,0],[27,8],[19,5],[31,49],[0,0],[-5,15],[-17,61],[0,0],[-196,46],[-68,-29],[-42,-18],[0,0],[1,-2],[11,-24],[-7,-13],[-6,-11],[-57,-21],[-12,38],[-11,31],[-2,176],[20,140],[0,0],[-12,26],[-47,31],[-36,24],[-67,0],[-74,-1],[-4,-11],[14,-33],[0,0],[-42,-10],[-78,37],[-34,36],[-20,20],[38,65],[0,0],[-273,100],[-5,45],[0,0],[112,47],[51,-38],[0,0],[-45,75],[-21,35],[-25,19],[-21,16],[-23,0],[-66,-258],[0,0],[-73,28],[0,0],[10,58],[0,0],[-42,4],[-35,4],[-37,-44],[-11,-54],[-2,-12],[0,0],[63,-27],[83,-35],[109,8],[34,-22],[71,-106],[14,-53],[39,-149],[0,0],[-68,-76],[-360,-28],[-84,38],[-7,9],[-82,90],[-462,64],[-277,39],[0,0],[5,-22],[7,-30],[39,-18],[51,-24],[40,7],[17,4],[60,-40],[85,-90],[104,-112],[0,0],[-19,-12],[-51,-32],[-173,129],[-47,35],[-62,38],[-267,159],[-185,72],[-137,54],[0,0],[49,-41],[8,-7],[103,-45],[184,-81],[159,-119],[-58,-64],[-5,-5],[0,0],[-39,-7],[-9,9],[-22,22],[-42,-47],[-47,-1],[-52,-1],[-184,76],[-134,90],[-308,-51],[-111,13],[-254,29],[-78,36],[-58,26],[-70,10],[-56,8],[-238,17],[-92,-21],[1,-3],[9,-35],[0,0],[31,10],[77,22],[169,-83],[0,0],[-117,9],[-77,6],[-42,7],[-60,9],[-165,83],[-113,99],[-24,89],[-11,42],[0,0],[-44,3],[-85,7],[-32,79],[-36,-13],[-44,-15],[-14,-32],[-36,-85],[-119,-15],[-56,-7],[-13,-7],[-48,-25],[-75,2],[-119,62],[-29,14],[0,0],[6,1],[60,6],[0,0],[-130,80],[-240,147],[-63,71],[-84,96],[-38,141],[0,77],[60,54],[97,-10],[113,-13],[182,-59],[3,-6],[9,-19],[98,-12],[51,-7],[293,30],[79,31],[0,0],[-16,21],[-122,67],[-173,94],[-52,19],[-37,13],[-338,32],[-382,36],[-107,44],[-43,85],[0,0],[1,111],[28,81],[22,446],[1,26],[-16,30],[-17,30],[-5,38],[-3,23],[0,0],[17,37],[69,151],[66,94],[45,1],[49,81],[24,40],[0,0],[5,145],[3,72],[155,254],[245,196],[77,62],[295,147],[441,108],[132,2],[110,1],[389,-30],[77,-19],[28,-7],[64,-47],[0,0],[-16,-20],[-41,-50],[-417,-262],[-47,-49],[-56,-59],[-211,-327],[-2,-261],[123,-239],[0,0],[-27,-41],[-12,-18],[-6,-37],[-5,-40],[29,-167],[108,-163],[0,0],[24,-23],[183,-173],[107,-73],[243,-165],[0,0],[-22,-28],[-25,-31],[-161,-29],[-460,-170],[-185,-68]],[[29316,66003],[0,-37],[0,-6],[177,40],[222,50],[50,115],[91,109],[93,64],[38,26],[454,-105],[140,-56],[252,-100],[0,0],[1,-36],[2,-51],[-64,-86],[-36,-50],[-120,-64],[-96,-51],[0,0],[23,-16],[63,-42],[190,90],[180,86],[38,27],[75,54],[96,-34],[126,-43],[162,-1],[0,0],[-117,138],[0,0],[55,13],[43,9],[0,0],[-1,3],[-22,54],[-296,116],[-26,29],[-67,72],[0,0],[23,33],[41,9],[296,-31],[120,-74],[3,-9],[12,-30],[379,-220],[66,-88],[20,-28],[44,-277],[12,-32],[32,-89],[35,-168],[24,-113],[183,-113],[7,3],[39,14],[105,116],[41,45],[0,0],[31,113],[0,0],[-121,127],[-68,110],[-28,219],[-16,54],[-170,566],[72,136],[0,0],[-3,11],[-6,21],[13,16],[22,29],[103,-13],[89,-11],[229,-77],[85,-6],[119,-8],[33,-19],[451,-264],[45,-64],[0,0],[7,-67],[4,-39],[327,-814],[0,0],[76,-76],[30,-48],[39,-63],[6,-133],[5,-92],[-42,-100],[-92,-113],[0,0],[40,-71],[38,-32],[461,-387],[0,0],[202,-43],[0,0],[-43,30],[-11,33],[-4,11],[0,0],[4,30],[3,26],[8,-1],[31,-3],[181,-179],[312,-188],[138,-105],[32,-25],[0,0],[22,2],[116,7],[51,49],[25,-17],[39,-28],[3,-14],[44,-206],[3,-55],[2,-35],[-21,-103],[-10,-13],[-8,-11],[-75,-2],[-67,-2],[-14,7],[-8,5],[-32,72],[0,0],[-16,90],[0,0],[-30,7],[-101,-129],[-152,170],[0,0],[-31,1],[-57,2],[0,0],[-3,-4],[-80,-102],[-15,-38],[-16,-42],[0,0],[9,-12],[-2,-36],[-4,-79],[-43,-23],[-61,9],[-110,17],[-132,102],[-38,8],[-78,16],[0,0],[18,-42],[17,-41],[71,-67],[72,-67],[0,0],[5,13],[22,49],[29,-38],[13,-80],[-17,-132],[0,-2],[0,0],[-89,-61],[2,-51],[17,-10],[211,246],[3,2],[123,88],[49,7],[87,-24],[60,-16],[10,-20],[16,-31],[0,0],[-95,-115],[0,0],[12,-8],[38,-24],[58,25],[70,-97],[-21,-141],[-8,-7],[-5,-4],[-110,-23],[-290,-63],[-66,-46],[-67,-46],[-469,47],[-124,42],[-18,43],[-35,-2],[0,0],[-13,-43],[-36,-37],[-158,19],[-101,12],[-56,60],[0,0],[60,26],[74,33],[29,46],[-214,38],[-247,44],[-176,81],[0,0],[6,6],[19,20],[0,0],[-19,53],[-15,38],[-62,54],[-55,46],[-120,-114],[-3,-2],[-40,-61],[-32,-100],[-100,-105],[-66,-69],[-264,-51],[-241,-46],[-181,-130],[-41,-15],[-74,-27],[-315,-70],[-521,-35],[-322,-41],[-382,-48],[-229,10],[-9,0],[0,0],[-219,278],[0,0],[17,346],[-57,27],[-67,32],[-139,23],[-446,-24],[-299,37],[-58,22],[-209,77],[-27,18],[-50,33],[-31,68],[-19,40],[-206,152],[-42,72],[-52,144],[0,0],[40,68],[148,60],[366,78],[725,102],[81,0],[77,0],[663,-92],[78,8],[507,53],[0,0],[-12,24],[-14,28],[-523,189],[-607,147],[-225,-60],[-327,-41],[-327,-14],[-38,12],[-105,32],[-278,-16],[-278,-17],[-39,46],[-44,52],[-135,77],[-89,52],[-96,113],[0,11],[1,13],[23,25],[14,15],[240,113],[157,30],[197,36],[409,117],[0,0],[175,15],[0,0],[-187,40],[0,0],[146,62],[25,3],[49,4],[38,-20],[16,-6],[34,-11],[20,1],[22,1],[67,30],[64,30],[0,0],[-208,14],[-326,-53],[-315,-50],[-175,15],[-21,2],[-79,38],[-39,-20],[0,0],[5,-12],[5,-10],[-15,-39],[-7,-19],[0,0],[-67,-1],[-154,-2],[-38,15],[-4,2],[0,0],[-25,63],[0,0],[102,69],[70,13],[112,19],[-12,77],[-147,-10],[-382,-25],[-11,-36],[0,0],[-19,17],[-48,42],[0,0],[-4,17],[-20,77],[0,92],[0,0],[60,84],[32,46],[115,112],[60,29],[90,44],[2,61],[3,69],[-92,28],[-12,23],[-5,9],[0,0],[2,16],[4,38],[0,0],[153,134],[5,4],[0,0],[419,276],[648,223],[522,181],[27,0],[32,2],[147,-55],[70,-86],[21,-25],[0,0],[19,-80],[-2,-255],[-94,-20],[-106,-95],[-87,-78],[0,0]],[[50904,75347],[-230,-72],[-786,-157],[0,0],[27,-14],[595,55],[683,150],[146,-12],[64,-49],[0,0],[2,70],[0,3],[0,0],[16,20],[184,22],[37,-6],[41,-5],[0,0],[-48,-30],[0,0],[37,-46],[85,-39],[201,59],[109,0],[99,0],[54,-30],[0,0],[3,-23],[2,-13],[-16,-9],[-81,-47],[0,0],[182,-104],[135,-78],[335,23],[214,-33],[175,-56],[28,-21],[59,-43],[0,-26],[0,-12],[0,0],[-18,-40],[-17,-39],[-207,-83],[-189,-75],[-704,-212],[-188,-57],[-133,-2],[-390,-6],[-257,-37],[-126,-18],[0,0],[343,-2],[0,0],[-131,-30],[-96,-23],[-1171,-37],[-212,-36],[0,0],[45,-10],[115,-25],[311,24],[331,26],[245,-43],[0,0],[-1503,-313],[-1,-80],[0,0],[326,111],[140,22],[1526,244],[435,44],[0,0],[53,-50],[0,0],[-36,-50],[0,0],[-75,-50],[0,0],[-29,-9],[-388,-124],[-137,-7],[-19,-1],[-94,-47],[-144,-74],[-1065,-433],[-67,-44],[-40,-26],[-95,-117],[-43,-19],[-48,-20],[-319,-26],[0,0],[-12,17],[0,0],[36,58],[0,0],[-121,63],[-75,40],[-93,10],[0,0],[78,-71],[92,-83],[111,-51],[129,-59],[0,0],[-36,-23],[-63,-41],[-191,8],[-19,1],[-364,-62],[-356,44],[-55,-103],[144,1],[251,1],[143,25],[191,34],[105,-37],[0,0],[-91,-93],[-148,-24],[-184,-31],[-17,-21],[-9,-10],[0,0],[158,20],[34,-9],[80,-22],[0,0],[-63,-49],[-35,-28],[-91,-35],[-58,-23],[-308,-53],[-19,0],[-234,-3],[-60,16],[-37,10],[-24,25],[-43,43],[-103,36],[-17,6],[-306,56],[-148,2],[-114,-16],[-148,-22],[0,0],[118,-48],[288,1],[68,-10],[159,-22],[51,-17],[4,-4],[87,-78],[29,-87],[0,0],[-74,-28],[-50,-19],[-568,-59],[-64,-16],[-34,-9],[-14,-29],[-87,-5],[-718,132],[-40,-30],[0,0],[183,-14],[16,-1],[211,-108],[0,0],[-501,20],[-359,-12],[-122,-5],[0,0],[441,-71],[455,-15],[709,-24],[17,-6],[1,-121],[0,-24],[0,0],[-3,-6],[-9,-24],[-59,-15],[-404,40],[-154,37],[0,0],[-14,8],[15,28],[2,4],[-1,2],[-6,12],[-130,40],[-279,2],[-491,5],[-176,-36],[0,0],[679,-14],[306,-49],[0,0],[-11,-5],[-52,-19],[-329,-6],[-357,-6],[-287,22],[-231,-19],[0,0],[468,-9],[75,-33],[0,0],[-145,-86],[-83,-69],[-25,-20],[-16,-36],[-4,-10],[40,-8],[0,0],[27,30],[77,88],[130,69],[418,47],[226,-22],[221,-22],[14,-16],[0,0],[-66,-28],[0,0],[0,-4],[1,-38],[0,0],[263,8],[0,0],[210,-51],[33,-37],[-2,-113],[-1,-69],[-258,-65],[-200,-16],[-97,13],[-36,5],[0,0],[-4,-6],[-16,-31],[0,0],[346,-68],[138,-69],[0,0],[-6,-5],[-4,-3],[-188,-82],[-127,-16],[-333,28],[-101,-13],[-116,-13],[4,-10],[5,-10],[0,0],[75,-16],[101,-22],[433,-23],[2,-22],[0,0],[-2,-3],[-37,-60],[-45,-27],[-40,-25],[-61,5],[-36,3],[-447,-63],[-106,9],[-530,43],[0,0],[-1,-2],[-18,-32],[0,0],[68,-63],[117,-37],[16,-17],[48,-52],[15,-56],[29,-110],[-225,-182],[-56,-17],[-73,-22],[-292,-29],[-70,1],[-424,1],[-288,91],[-77,24],[-153,87],[-91,101],[-39,43],[0,0],[-21,5],[-22,4],[2,-52],[0,0],[103,-188],[52,-22],[51,-21],[122,-4],[19,-24],[12,-13],[0,0],[-225,-28],[-53,-6],[-136,21],[0,0],[18,-48],[1,-1],[104,-95],[331,117],[149,-27],[258,-46],[86,16],[124,23],[92,-12],[89,-12],[27,-11],[44,-20],[50,-74],[0,0],[-98,-74],[-63,-47],[-11,-19],[-14,-24],[121,-38],[180,-55],[71,30],[16,42],[17,45],[67,48],[108,13],[21,2],[0,0],[13,-12],[70,-67],[58,-118],[-11,-139],[-158,-104],[-110,-73],[-69,5],[-13,27],[-18,38],[0,0],[-203,-113],[-71,-27],[-253,-98],[-306,-67],[-225,-50],[-13,19],[-26,38],[0,0],[8,9],[127,153],[4,32],[-148,64],[-85,38],[-100,-57],[-48,0],[-66,0],[-150,42],[-2,15],[-12,87],[-275,181],[0,0],[-19,-20],[0,0],[11,-12],[88,-100],[141,-75],[24,-43],[20,-102],[0,0],[-23,-16],[-39,-26],[-215,-9],[-19,-1],[-20,9],[-68,31],[-67,75],[-66,72],[0,0],[30,-79],[26,-69],[0,0],[-72,-1],[-153,-1],[-172,100],[0,0],[-14,33],[3,16],[4,32],[-9,3],[-89,30],[-31,-8],[0,0],[91,-150],[0,0],[-38,-29],[-3,-2],[-43,-5],[-113,-12],[-66,29],[-52,66],[-60,76],[-83,35],[-21,-11],[0,0],[99,-179],[192,-84],[85,-37],[0,0],[-72,-5],[-305,-21],[-379,69],[-177,122],[-92,-134],[-82,9],[-95,19],[-1,1],[0,0],[-109,63],[-42,70],[-45,77],[-14,-2],[-16,-2],[0,-38],[-1,-34],[56,-113],[0,0],[-50,-41],[-25,-20],[-230,52],[-121,27],[-34,322],[0,0],[-42,-68],[-57,-93],[-45,-139],[-29,-28],[-11,-10],[0,0],[-58,3],[-33,19],[-178,101],[0,0],[-7,31],[-13,53],[3,195],[427,187],[31,13],[-6,20],[0,0],[302,36],[5,0],[0,0],[176,-11],[187,51],[0,0],[-94,94],[-45,45],[-174,96],[-18,10],[-199,215],[20,99],[15,20],[8,9],[370,70],[128,-20],[226,-35],[133,-44],[47,-37],[37,-28],[87,-157],[23,-41],[0,0],[44,-52],[513,-115],[-27,36],[-17,23],[0,0],[161,3],[134,2],[275,133],[192,170],[279,323],[0,0],[-124,-5],[-53,-26],[-30,-14],[-7,-8],[-6,-8],[7,-35],[0,0],[-22,-29],[-36,-47],[-233,-255],[-208,-100],[-435,41],[-15,16],[-42,42],[-137,66],[-5,55],[37,33],[49,43],[0,0],[-33,-7],[-63,-12],[0,0],[-3,2],[-35,23],[9,6],[78,48],[372,7],[0,0],[-70,16],[-63,14],[-332,-47],[-35,15],[-85,37],[0,0],[158,68],[95,40],[153,-23],[114,48],[0,0],[-122,-25],[-112,55],[0,0],[20,38],[0,0],[5,2],[47,18],[166,19],[0,0],[-80,12],[-32,5],[-8,22],[-21,59],[-2,37],[-1,23],[0,0],[-53,-29],[-192,-190],[-263,-59],[-72,-9],[0,0],[-66,25],[14,24],[30,50],[93,56],[67,119],[14,26],[0,0],[-10,-2],[-22,-4],[-93,-98],[-97,-48],[-176,-87],[-187,-18],[-93,16],[-98,16],[68,315],[384,287],[699,90],[499,-51],[186,-69],[485,-181],[57,17],[-51,76],[-37,55],[-193,11],[-188,78],[0,0],[87,28],[485,1],[84,0],[28,39],[77,110],[0,0],[-19,27],[-166,-76],[-257,-65],[-495,36],[-467,72],[-26,36],[-7,10],[122,73],[0,0],[195,-44],[25,-37],[23,-9],[28,-10],[187,-15],[0,0],[62,26],[0,0],[-227,77],[-127,44],[0,0],[-448,418],[-92,29],[-83,25],[-415,68],[0,0],[-14,28],[0,0],[18,115],[16,28],[0,0],[47,-4],[261,-19],[136,-35],[45,12],[20,5],[0,0],[-146,41],[-19,2],[-377,44],[0,0],[-21,30],[-45,67],[0,0],[58,152],[2,5],[0,0],[185,20],[81,9],[163,-22],[243,-33],[515,-11],[50,-15],[56,-17],[592,-292],[264,-249],[147,-11],[323,-23],[340,56],[21,13],[52,31],[-22,-2],[-419,-42],[-306,55],[-66,47],[0,0],[-33,78],[-16,38],[68,27],[12,5],[0,0],[-14,18],[-7,8],[-192,29],[-131,54],[-427,257],[0,0],[1213,124],[189,53],[32,9],[881,23],[18,9],[18,9],[0,0],[-492,38],[-300,-3],[-125,-2],[0,0],[304,82],[511,89],[374,21],[399,21],[0,0],[-12,26],[-6,13],[-34,10],[0,0],[-563,7],[-210,-24],[-257,-29],[-38,19],[7,22],[32,95],[456,248],[302,90],[203,60],[0,0],[-29,6],[-35,7],[-251,-61],[-388,-94],[-404,-198],[-11,-37],[-26,-89],[-22,-16],[-75,-57],[-492,-131],[-161,-43],[-296,-48],[-177,-15],[-501,-40],[-18,19],[-1,1],[0,0],[33,64],[214,41],[184,35],[78,33],[103,44],[0,0],[-68,30],[-1,0],[-304,-89],[-176,-30],[-124,-21],[-123,51],[0,0],[94,17],[20,4],[102,55],[0,0],[-51,8],[-15,3],[-185,-75],[-12,-52],[-9,-40],[0,0],[13,-19],[-49,-76],[0,0],[-582,-31],[-437,18],[-143,30],[-154,32],[30,43],[22,32],[136,81],[294,177],[305,53],[277,27],[834,79],[23,24],[9,8],[0,0],[-1433,-116],[-298,-106],[-252,-152],[-148,-118],[-27,-2],[-114,-8],[-303,53],[-508,158],[-32,28],[-26,24],[0,0],[322,47],[237,36],[322,-25],[199,12],[113,7],[838,234],[98,27],[0,0],[-91,22],[-132,-19],[-118,-16],[-222,-41],[-142,-70],[-330,-48],[-175,-26],[-174,0],[-212,0],[-666,-52],[-11,2],[-178,41],[-18,14],[-11,8],[-24,55],[-13,30],[0,0],[155,61],[40,-5],[190,-22],[15,2],[226,25],[0,0],[-189,26],[-200,26],[0,0],[-2,44],[0,0],[148,30],[290,109],[151,13],[221,17],[327,-39],[0,0],[-497,70],[-311,-41],[-545,-130],[-260,55],[0,0],[304,86],[292,83],[0,0],[-146,22],[-149,23],[-222,-8],[-119,-50],[-67,-77],[-127,14],[-14,2],[0,0],[-10,3],[-68,23],[2,1],[21,9],[0,0],[-108,18],[-3,1],[0,0],[-23,7],[0,0],[2,29],[1,13],[71,61],[10,8],[490,130],[44,2],[338,14],[58,-32],[77,-43],[78,40],[13,6],[23,33],[37,51],[-2,28],[0,0],[24,13],[18,9],[404,79],[145,-13],[165,-14],[148,-107],[5,34],[6,34],[52,23],[269,-3],[44,-12],[82,-22],[203,-5],[133,-3],[99,-41],[154,-64],[56,-2],[19,-1],[-55,83],[-64,34],[-351,42],[-480,58],[-22,9],[-31,12],[-21,25],[-30,36],[0,0],[290,12],[285,11],[57,19],[52,19],[0,0],[-111,124],[-55,8],[-51,8],[0,0],[32,18],[13,8],[206,15],[130,-6],[119,-5],[0,0],[-15,-7],[-26,-14],[1,-6],[3,-20],[0,0],[373,-43],[128,-15],[62,-29],[101,-46],[254,-174],[210,-8],[94,-4],[0,0],[-270,58],[-22,13],[-130,76],[1,8],[3,31],[23,20],[53,-3],[93,-4],[251,-80],[204,-66],[371,-94],[34,-4],[169,-21],[173,-63],[103,-37],[28,1],[90,4],[0,0],[-125,63],[-133,68],[-393,59],[-757,232],[0,0],[-45,41],[0,0],[48,57],[31,36],[132,1],[345,0],[0,0],[-113,17],[-92,13],[-108,36],[-103,33],[0,0],[40,47],[6,1],[52,9],[352,-41],[74,-33],[290,-124],[97,8],[19,1],[-14,10],[-150,108],[-401,193],[0,0],[24,7],[170,-6],[310,-11],[194,-94],[504,-5],[0,0],[-309,43],[-140,19],[-89,73],[-66,18],[-60,17],[0,0],[1,19],[0,4],[90,21],[110,26],[112,2],[159,3],[547,-106],[0,0],[1,40],[0,7],[0,0],[75,25],[38,13],[246,-51],[226,-118],[158,-82],[121,-90],[32,-25],[112,14],[132,53],[0,0],[-177,58],[0,0],[-153,108],[-499,176],[-56,52],[0,0],[284,48],[1104,-57],[98,-22],[474,-223],[195,-134],[36,-9],[13,-4],[94,88],[0,0],[-95,53],[-172,39],[-97,22],[-191,103],[0,0],[73,25],[355,122],[478,11],[12,-6],[13,-7],[0,0],[-92,-62],[-11,-7],[143,-67],[301,-48],[0,0],[-286,119],[0,0],[295,78],[423,8],[99,-7],[0,0],[-10,-11],[-44,-50],[0,0],[10,-16],[11,-18],[1490,-69],[0,0],[-15,-21],[-7,-9]],[[55716,46918],[85,-31],[0,0],[-24,-168],[-5,-35],[-55,-49],[-174,67],[-10,-5],[-13,-7],[0,-1],[-9,-40],[12,-63],[5,-27],[22,-34],[23,-25],[0,0],[-7,39],[0,0],[25,4],[60,12],[26,-31],[4,-5],[-2,-43],[-1,-4],[0,0],[-8,-26],[-39,-121],[-238,-508],[-123,-263],[-94,-250],[-31,-84],[0,0],[44,-118],[142,241],[0,0],[180,197],[0,0],[107,-94],[27,-6],[72,-16],[0,0],[-131,-333],[-16,-70],[-5,-26],[0,0],[131,-93],[0,0],[26,19],[52,38],[26,-40],[17,-26],[57,12],[53,11],[0,0],[-49,-187],[0,0],[117,86],[75,-7],[4,-11],[3,-11],[0,0],[121,234],[22,21],[8,8],[0,0],[6,-4],[12,-8],[0,0],[12,-208],[0,0],[78,82],[44,46],[25,5],[43,10],[129,-108],[111,-93],[0,0],[-106,-201],[0,0],[-58,-5],[-1,-1],[0,0],[-45,-129],[0,0],[-1,-131],[0,0],[16,-21],[11,-14],[-6,-69],[-5,-48],[-7,-22],[-36,-107],[3,-9],[3,-13],[0,0],[93,66],[38,-26],[15,-57],[0,0],[77,141],[2,3],[65,50],[111,84],[0,0],[18,-34],[28,-51],[-4,-47],[-44,-125],[0,0],[-144,-122],[0,0],[-174,-71],[-29,13],[-40,19],[0,0],[16,-142],[0,0],[115,-43],[-6,-100],[-19,-60],[-1,-3],[-45,-50],[-9,5],[-6,3],[0,0],[10,-78],[0,0],[31,-80],[41,-43],[50,-54],[44,221],[14,69],[0,0],[60,145],[123,115],[29,28],[18,-37],[12,-26],[0,0],[-112,-275],[-43,-189],[-2,-11],[0,0],[60,-135],[0,0],[84,111],[62,243],[0,0],[14,-35],[40,-98],[13,-158],[0,0],[-85,-224],[-39,-294],[-81,-154],[-54,-102],[-46,-7],[-107,-16],[-13,14],[-13,13],[-12,64],[2,23],[44,343],[-3,94],[0,0],[-123,-212],[-77,-132],[-28,-33],[-46,21],[-14,6],[0,0],[2,19],[6,91],[37,129],[30,108],[60,125],[27,56],[0,0],[-53,245],[-22,103],[0,0],[-16,13],[-90,72],[0,0],[-91,-360],[-24,-34],[-53,-72],[0,0],[-10,15],[-16,22],[-77,-12],[-92,-164],[-8,-13],[-33,-144],[-49,-107],[-34,-28],[-31,-25],[-89,-5],[-98,-7],[-71,42],[-8,38],[-1,6],[43,86],[0,0],[262,223],[16,19],[184,209],[46,73],[26,42],[0,0],[-55,-26],[-93,-44],[-37,17],[-94,44],[0,0],[-5,-8],[-37,-57],[-79,-67],[-13,12],[-9,10],[-18,-2],[-60,-5],[-39,24],[-10,6],[0,0],[49,188],[16,151],[0,0],[-35,-118],[-108,-99],[-71,-65],[-64,-15],[-223,-53],[-92,28],[-106,32],[-41,9],[-50,11],[-217,39],[-154,19],[-170,-95],[-170,-28],[-50,34],[-31,21],[-40,259],[433,489],[0,0],[16,50],[0,0],[-72,14],[-79,15],[-177,-53],[-62,-19],[24,75],[126,127],[13,14],[30,-11],[72,-26],[0,0],[141,390],[0,0],[5,-23],[3,-11],[0,0],[84,-34],[17,-7],[0,0],[22,61],[12,35],[2,26],[-31,71],[17,122],[26,184],[151,495],[154,442],[10,27],[152,287],[28,87],[55,180],[3,31],[0,0],[25,37],[41,61],[41,28],[232,156],[64,14],[0,0],[-4,-35],[-6,-43],[80,-11],[29,-3],[0,0],[-28,46],[-11,18],[0,0],[33,40],[12,14]],[[26473,67658],[233,-85],[157,-58],[112,-159],[81,24],[6,8],[72,84],[158,-15],[29,-85],[-6,-17],[-6,-19],[-19,-8],[-9,-4],[0,0],[-3,-14],[-10,-40],[16,-5],[79,9],[58,62],[-2,37],[0,16],[0,0],[-25,31],[0,0],[109,52],[245,49],[175,-29],[132,-23],[140,-84],[228,-138],[161,-121],[107,-81],[176,-92],[114,-108],[7,-28],[7,-23],[0,0],[-238,-131],[-388,-124],[-1089,-508],[-7,-6],[-12,-12],[0,0],[-50,-148],[-22,-67],[0,0],[-47,-33],[-135,-94],[-110,-26],[-90,-22],[-69,-168],[0,0],[-16,-181],[-9,-105],[-51,-132],[-26,-25],[-345,-127],[-104,24],[-191,-60],[-397,-235],[-126,1],[-112,106],[-69,162],[-48,113],[-177,176],[-221,86],[-430,166],[-88,66],[0,0],[-12,64],[12,41],[172,289],[156,75],[0,0],[-32,244],[-1,8],[271,95],[0,0],[-17,17],[-26,26],[-73,18],[-39,115],[145,216],[188,193],[73,102],[5,6],[-35,98],[-11,30],[-101,30],[-109,195],[-8,14],[0,0],[-8,73],[-30,54],[-15,25],[-49,31],[-42,27],[0,0],[411,64],[701,58],[238,66],[209,-5],[172,-101]],[[37501,70033],[136,10],[143,9],[560,-133],[145,-7],[212,-12],[189,-131],[-103,-267],[0,0],[173,147],[284,-21],[25,-2],[0,0],[26,9],[173,56],[209,21],[199,-34],[159,-68],[23,-10],[0,0],[3,-4],[56,-83],[0,0],[-90,-18],[-345,61],[-77,-22],[0,0],[980,-168],[61,-10],[0,0],[15,-19],[26,-34],[0,0],[-72,-46],[-12,-2],[-163,-21],[-417,8],[-77,2],[-349,80],[0,0],[122,-62],[49,-26],[94,-23],[186,-46],[-5,-19],[-9,-38],[-121,-4],[-55,-2],[-14,-27],[0,-1],[0,0],[71,-36],[121,13],[247,26],[183,-85],[234,-109],[8,-16],[0,0],[-45,-126],[0,0],[-35,-3],[-70,-6],[0,0],[249,-171],[68,5],[10,21],[5,13],[-63,105],[0,0],[41,70],[10,19],[0,0],[73,-15],[186,-141],[230,55],[242,13],[130,-60],[79,-37],[78,-67],[13,-12],[30,3],[215,19],[16,23],[0,0],[-122,57],[0,0],[795,181],[133,68],[64,33],[207,-40],[74,1],[207,3],[238,56],[199,-17],[85,-7],[143,-23],[123,-20],[0,0],[-105,-64],[0,0],[12,-25],[7,-15],[67,-10],[76,-12],[203,27],[112,-20],[120,-95],[-33,-11],[-82,-27],[0,0],[87,-10],[207,-24],[0,0],[8,-20],[51,-128],[-60,-62],[-39,-39],[-244,-103],[0,0],[48,-63],[21,-27],[14,12],[27,25],[69,13],[17,3],[121,-13],[38,-51],[43,-57],[0,0],[-239,-70],[-107,33],[-52,16],[-16,-51],[0,0],[18,-47],[7,-19],[2,-99],[-27,-40],[-263,-28],[-536,-57],[-56,6],[-274,29],[-19,8],[-46,21],[-54,64],[-25,30],[-4,12],[-6,15],[0,0],[6,36],[5,29],[0,0],[-127,91],[-52,37],[-27,-29],[74,-74],[0,0],[19,-64],[-15,-37],[-37,-95],[-58,-29],[-433,-35],[-73,-3],[-76,-4],[-23,52],[0,0],[-42,1],[-199,2],[-22,-30],[-19,-25],[-187,-16],[-17,-1],[0,0],[-94,32],[-572,-31],[-163,-9],[-273,25],[-19,7],[0,0],[-13,57],[0,0],[69,169],[-19,69],[-3,1],[-16,4],[-272,-110],[-5,-80],[-26,-21],[-27,-22],[-333,-44],[0,0],[-54,18],[-357,118],[0,0],[20,93],[0,0],[39,41],[0,0],[-2,52],[0,0],[-12,-1],[-23,-3],[-124,-129],[0,0],[2,-35],[2,-57],[-29,1],[-138,3],[-108,53],[-114,57],[-37,50],[-6,31],[-26,116],[-66,140],[-92,74],[20,104],[15,82],[87,111],[97,57],[-2,24],[-1,31],[-24,58],[-22,53],[-70,101],[-118,137],[-247,285],[-50,2],[-64,1],[-175,-84],[-453,23],[-131,-68],[-132,11],[-4,28],[-5,37],[0,0],[218,20],[0,0],[-423,61],[-84,39],[-56,63],[0,0],[15,8],[20,12],[64,-8],[35,-4],[99,84],[0,0],[-54,-28],[-52,-28],[-125,27],[-269,109],[8,59],[0,1],[150,-2],[0,0],[-231,142],[3,13],[6,30],[8,6],[17,10],[141,-14],[79,22],[0,19],[0,3],[0,0],[-25,14],[0,0],[30,11]],[[42511,59515],[77,-170],[50,5],[49,4],[28,64],[39,89],[48,11],[0,0],[13,-14],[85,-85],[25,-69],[79,-53],[97,-66],[146,-44],[65,-20],[109,-152],[136,-98],[157,-54],[6,1],[29,8],[222,-183],[9,-7],[51,-82],[-9,-125],[-56,-231],[-62,-68],[0,0],[9,-23],[300,84],[164,46],[82,-84],[111,-113],[148,-111],[-1,-3],[-16,-53],[-122,-26],[-128,-116],[-68,-90],[-96,21],[-97,21],[-214,95],[-95,17],[-108,19],[-2,21],[-17,158],[-12,33],[-4,9],[-20,20],[-30,15],[-40,21],[-73,7],[-49,6],[-51,38],[-39,30],[-18,73],[-10,40],[0,0],[-93,-36],[-98,-38],[-39,-58],[-22,-242],[0,0],[-94,-55],[-124,-72],[-186,-283],[-188,-133],[-145,-48],[-64,4],[-22,2],[-48,64],[-18,185],[29,193],[0,0],[-21,79],[-14,23],[-22,33],[0,0],[-88,-30],[-451,-153],[-109,27],[-18,37],[2,87],[83,112],[37,49],[342,178],[0,0],[-3,53],[-1,18],[-40,44],[-34,91],[-5,60],[-15,191],[118,295],[0,0],[-2,155],[11,180],[12,193],[16,76],[26,128],[17,28],[126,116],[34,31],[53,5],[0,0],[30,-57],[13,-27],[0,0],[65,-7],[21,-2],[0,0],[19,-38],[10,-31],[20,-57],[0,0],[-17,-186]],[[32069,69149],[5,-8],[2,-5],[183,2],[96,1],[93,-60],[0,0],[-21,-45],[-25,-53],[0,0],[277,-10],[0,0],[41,-103],[10,-4],[22,-9],[17,1],[13,0],[1,2],[22,37],[-9,14],[-24,35],[-6,82],[3,9],[7,21],[76,62],[20,16],[227,-11],[6,0],[0,0],[266,-117],[24,-33],[21,-29],[29,-155],[-190,-343],[-92,-209],[0,0],[-422,-129],[-125,-15],[-202,66],[-333,-61],[-195,94],[-45,21],[-130,-83],[-74,-49],[-95,-35],[-263,-26],[-89,-10],[-93,-61],[0,0],[4,-34],[1,-10],[0,0],[-229,-93],[-254,-86],[-63,-21],[-399,-73],[-91,2],[-183,5],[-77,16],[-97,20],[-149,79],[-99,51],[-28,21],[-38,28],[-3,11],[-10,31],[0,0],[151,81],[330,107],[227,74],[208,17],[135,11],[89,-9],[92,-9],[177,94],[153,118],[0,0],[-30,29],[-81,8],[-53,-63],[-62,-25],[-59,-24],[-495,22],[-163,-67],[-174,-16],[-214,-19],[-15,25],[7,45],[8,58],[0,0],[46,112],[54,42],[47,36],[0,0],[-179,57],[0,0],[-142,-203],[5,-71],[-53,-75],[-286,-109],[-12,6],[-50,25],[-47,125],[0,0],[-46,1],[-79,0],[-7,-9],[-9,-13],[33,-62],[4,-8],[0,0],[-3,-20],[-77,-38],[-252,88],[0,0],[16,12],[0,0],[-11,39],[-4,18],[0,0],[-37,59],[-90,-16],[-48,-50],[-114,6],[-240,43],[-40,22],[-65,34],[0,0],[9,39],[54,69],[118,93],[0,0],[460,10],[422,127],[0,0],[14,10],[80,56],[0,0],[-577,-118],[-380,15],[9,23],[20,56],[30,30],[71,73],[50,18],[815,54],[0,0],[18,41],[0,0],[-526,-30],[-268,27],[0,0],[14,74],[10,60],[16,32],[14,30],[0,0],[60,24],[119,47],[262,-10],[443,-18],[10,6],[0,0],[-195,25],[-339,43],[-45,39],[0,0],[11,53],[177,99],[176,22],[177,22],[182,-27],[70,-11],[0,0],[11,-11],[24,-26],[-15,-57],[-13,-50],[0,0],[50,-79],[14,-22],[0,0],[53,3],[78,5],[215,60],[55,0],[29,-1],[214,-64],[121,-88],[135,-96],[0,0],[8,-95],[-92,-32],[-32,-36],[0,-1],[0,0],[290,20],[41,-14],[13,-4],[63,-107],[0,0],[-11,-32],[-11,-34],[25,-68],[45,-25],[10,-6],[182,26],[130,18],[648,-68],[47,46],[63,62],[0,0],[-48,77],[-113,58],[-329,82],[-51,30],[-16,9],[0,0],[64,23],[211,75],[45,55],[31,38],[-58,31],[-102,54],[-127,39],[-203,64],[0,61],[1,50],[0,0],[60,6],[63,6],[141,51],[123,177],[108,52],[122,59],[84,13],[79,-26],[35,-38],[-3,-85],[-4,-89],[17,-113],[140,-87],[40,-48],[13,-60],[-57,-28],[-60,-28],[-35,-90],[0,0]],[[38694,73930],[26,7],[95,29],[469,-99],[233,-91],[145,-195],[88,-88],[69,-70],[152,-49],[37,-114],[220,-34],[176,-27],[201,13],[136,-51],[12,-10],[23,-20],[0,0],[-94,-141],[0,0],[8,-25],[34,-38],[18,-20],[173,-76],[89,-20],[46,-10],[87,22],[-36,25],[-162,114],[12,64],[9,50],[110,44],[327,-31],[12,-53],[11,-51],[1,-31],[2,-69],[0,0],[-210,-43],[0,0],[213,-51],[158,-84],[112,-59],[-89,-245],[-29,-16],[-42,-24],[0,0],[20,-68],[24,10],[258,110],[126,-13],[12,-1],[0,0],[24,-14],[102,-54],[0,0],[-2,-55],[-28,-38],[-15,-1],[-19,-2],[0,0],[26,-28],[6,1],[39,3],[67,76],[154,38],[149,-121],[85,-70],[25,-37],[28,-41],[-6,-2],[-251,-88],[-212,-43],[-125,-26],[-58,-35],[-108,-65],[-106,20],[-37,7],[-117,-158],[0,0],[-46,-46],[-121,-118],[-44,-18],[-99,52],[-23,12],[-43,67],[3,32],[9,113],[0,0],[9,16],[44,80],[0,0],[-124,-48],[-21,-8],[0,0],[-30,-125],[11,-166],[99,-16],[59,-60],[-5,-22],[0,-3],[-19,-20],[-45,-47],[-78,-29],[-61,45],[-70,50],[-91,-61],[0,0],[48,-119],[-76,-158],[-20,-21],[-9,-9],[-145,48],[-193,190],[-184,183],[0,0],[-40,-21],[-21,-11],[0,0],[10,-29],[23,-59],[70,-54],[59,-46],[134,-199],[0,0],[-36,-5],[-19,-2],[-163,115],[-35,25],[-107,31],[-177,-8],[-48,-2],[87,-39],[57,-3],[60,-2],[9,-48],[6,-33],[0,0],[-10,-13],[-22,-28],[-219,0],[-56,0],[-122,15],[-146,19],[-214,61],[-205,58],[-60,31],[-136,71],[-18,37],[-5,10],[371,42],[90,47],[0,0],[-602,10],[-237,174],[0,0],[58,6],[47,6],[106,-24],[95,-21],[34,1],[23,2],[0,11],[-1,8],[0,0],[-80,23],[-121,34],[-147,6],[-229,140],[0,0],[182,69],[190,72],[757,26],[650,67],[0,0],[-63,1],[-267,3],[-165,-12],[-332,-26],[-96,15],[-50,11],[-76,17],[0,0],[37,24],[41,26],[111,-3],[91,-3],[243,25],[131,14],[45,38],[0,0],[-172,-16],[-264,-25],[-182,24],[5,18],[3,11],[-60,19],[-45,14],[-354,-76],[-95,-56],[-69,-16],[-56,-14],[0,0],[-12,4],[-71,22],[7,32],[5,19],[47,38],[0,0],[-130,35],[-82,-3],[0,0],[9,-19],[5,-13],[0,0],[-112,-54],[-110,-52],[-50,9],[-45,9],[0,0],[-20,33],[-6,10],[0,0],[-109,47],[-105,21],[-6,2],[0,0],[0,33],[1,31],[3,10],[15,43],[33,11],[0,0],[395,49],[180,56],[23,26],[-10,60],[0,0],[-90,-21],[-135,-72],[-235,-17],[-92,-7],[-159,17],[0,0],[-117,81],[-49,60],[-210,256],[0,0],[33,46],[4,6],[74,-2],[66,-2],[152,-47],[118,-36],[95,-6],[182,-13],[156,12],[8,32],[2,1],[237,82],[67,0],[0,0],[-172,43],[-2,-1],[-119,-49],[-163,-23],[-106,-16],[-467,135],[-90,61],[-21,15],[55,7],[153,20],[52,-4],[209,-16],[1,34],[0,0],[-143,63],[0,0],[-2,7],[-9,28],[5,44],[1,0],[35,26],[144,6],[206,9],[319,-41],[185,-24],[0,0],[-81,42],[-51,26],[-53,90],[-47,24],[-250,38],[-104,105],[-99,1],[-1,17],[12,11],[87,73],[157,57],[152,-19],[16,-10],[9,-5],[0,0],[5,-23],[31,-14],[31,-13],[89,29],[63,21],[0,0],[-77,79],[0,0],[342,-38],[54,10],[57,10],[22,27],[26,30],[0,0],[-2,7],[-6,28],[0,0],[-71,23],[-205,-8],[-105,-4],[-25,3],[-92,9],[-87,50],[53,68],[46,14],[5,1],[0,0],[114,-14],[111,-13]],[[35939,67165],[38,-36],[0,0],[16,-7],[233,-104],[359,78],[307,68],[126,-19],[84,-12],[112,-100],[4,-16],[8,-30],[-14,-53],[-45,-26],[-47,-29],[-246,-29],[0,0],[5,-13],[13,-37],[135,-3],[44,-1],[53,-89],[-2,-27],[0,0],[-133,-21],[-104,-17],[-344,-287],[5,-27],[9,-43],[138,84],[107,21],[17,4],[245,-66],[32,-32],[42,-110],[12,-31],[3,-72],[-22,-19],[-21,-18],[7,-56],[178,92],[84,44],[138,-298],[0,0],[-128,-131],[0,0],[-17,-224],[49,-66],[-110,-132],[0,0],[-14,18],[-57,-14],[-58,-64],[-27,-31],[-76,-33],[-100,-44],[-268,25],[-21,2],[-2,6],[-67,167],[0,0],[10,19],[17,33],[0,0],[-24,11],[-63,-81],[-25,-33],[-13,-51],[120,-110],[75,-69],[-26,-49],[-83,-72],[-85,-73],[-107,-19],[-19,6],[-17,6],[-45,56],[-21,25],[-6,-1],[-26,-5],[-140,97],[-115,169],[-106,154],[-289,211],[0,0],[-18,19],[-69,73],[-389,110],[-157,44],[-25,25],[-179,173],[-146,101],[-31,70],[11,52],[14,24],[94,165],[79,37],[31,14],[0,0],[79,-7],[134,-68],[234,-269],[0,0],[6,0],[160,-20],[61,16],[163,43],[21,34],[5,8],[0,0],[-12,66],[0,5],[0,0],[130,7],[0,0],[-46,151],[-42,51],[-13,16],[-43,1],[-30,-46],[-33,3],[-3,5],[-19,38],[0,0],[6,49],[57,78],[30,6],[37,6],[0,0],[-75,37],[-47,-19],[-51,-21],[-116,-9],[0,0],[-318,206],[0,0],[194,105],[145,-18],[82,-102],[61,-23],[15,-6],[10,6],[0,0],[-31,128],[-157,36],[0,0],[-84,82],[0,0],[36,70],[25,15],[146,30],[64,-5],[154,-12],[0,0],[-53,8],[-15,30],[0,0],[21,42],[68,20],[107,-9],[35,-3],[-4,-6],[-7,-7],[3,-13],[3,-8]],[[23561,46117],[27,-52],[170,-101],[74,-31],[79,-32],[301,-91],[84,-18],[59,-13],[14,-18],[103,-133],[132,-330],[128,-321],[101,-91],[81,-30],[87,-33],[109,-106],[86,-166],[126,-342],[2,-7],[35,11],[37,-132],[0,0],[-31,-64],[-63,-53],[-55,-47],[-162,89],[-330,183],[-187,155],[-2,29],[42,57],[91,122],[0,0],[-114,-4],[-106,-4],[-62,-75],[-139,135],[-10,43],[0,0],[4,-1],[39,-5],[60,100],[0,0],[-101,29],[-40,12],[-3,5],[-31,49],[-9,85],[-4,35],[-228,-73],[0,0],[-9,18],[-10,19],[3,34],[8,120],[46,48],[65,1],[39,9],[42,9],[0,0],[-106,34],[-61,20],[-82,133],[-57,45],[-59,-13],[-13,-23],[-13,-23],[-72,7],[-23,56],[-17,42],[20,25],[22,27],[6,36],[6,37],[0,0],[-260,27],[-125,198],[15,60],[5,17],[113,33],[47,13],[21,63],[-15,15],[-19,19],[-136,30],[0,0],[65,-28],[94,-39],[0,0],[-186,-78],[-55,10],[-49,48],[-40,91],[-42,95],[0,0],[33,62],[85,46],[31,17],[81,-5],[127,-68],[17,-9],[7,-4],[57,-40]],[[40065,66950],[-17,-15],[-97,-87],[-153,-195],[-52,-66],[-124,-188],[-105,-158],[-39,-38],[-75,-72],[-114,-41],[-357,69],[0,0],[-530,-11],[-4,-14],[-7,-26],[11,-13],[119,-3],[85,-3],[148,-145],[17,-57],[10,-33],[0,0],[-59,-71],[-6,-7],[-108,-66],[-39,-58],[-40,-57],[-10,-72],[-5,-32],[-44,-6],[-465,-58],[0,0],[-7,33],[0,2],[0,0],[7,24],[12,44],[4,331],[-43,81],[-26,49],[-99,125],[-36,33],[-29,27],[36,742],[-20,13],[-9,6],[-2,33],[-4,44],[58,29],[37,19],[71,0],[1,0],[0,0],[13,-9],[99,-78],[94,-28],[0,0],[98,4],[4,14],[-153,51],[-97,86],[-58,53],[-21,41],[3,22],[6,30],[0,0],[59,20],[234,79],[127,19],[404,61],[196,-30],[187,-27],[146,-71],[547,-23],[341,-80],[0,0],[4,-23],[8,-53],[0,0],[-20,-26],[-112,-144]],[[36538,69618],[0,0],[353,-93],[22,-239],[13,-138],[-6,-33],[-13,-77],[9,-35],[49,-189],[3,-110],[2,-84],[-117,60],[-46,-23],[-22,-10],[-26,-96],[-33,-120],[0,0],[38,-4],[41,-5],[134,-117],[0,0],[-239,-103],[0,0],[-4,-1],[-173,-26],[-162,6],[-36,1],[-277,-32],[-248,14],[-121,38],[0,0],[-52,113],[-14,30],[67,21],[50,15],[0,0],[-5,33],[-1,8],[-98,17],[-26,47],[-15,26],[72,65],[172,54],[145,81],[-9,34],[-8,35],[-103,8],[-714,-94],[-427,-55],[-55,8],[-8,9],[-83,83],[0,0],[90,45],[54,27],[90,71],[-14,32],[0,0],[9,9],[12,13],[76,37],[120,18],[35,-15],[117,-50],[52,-61],[0,0],[8,-1],[74,-9],[0,0],[-50,92],[-44,37],[-89,77],[-193,223],[-23,27],[48,139],[68,39],[76,-8],[168,-17],[106,-69],[39,-61],[25,-37],[237,-148],[139,-134],[106,-21],[0,0],[126,40],[0,0],[-97,4],[-43,2],[-63,67],[-88,94],[0,0],[80,25],[0,0],[-150,195],[-83,2],[-61,1],[-79,71],[-41,36],[248,113],[78,13],[41,7],[238,-42],[62,-11],[101,-68],[20,-63],[39,-33],[93,57],[91,135],[60,32],[0,0],[-122,21],[0,0],[170,12],[44,-19],[39,-51],[0,0],[-15,-3],[-53,-14]],[[28943,70276],[-83,-42],[-267,-62],[-92,-53],[0,0],[70,-82],[15,-5],[44,-16],[74,-115],[0,0],[10,-93],[12,-96],[-44,-36],[-38,-32],[-47,-13],[-48,-13],[-218,-28],[-115,-15],[0,-14],[-1,-25],[43,-83],[10,-20],[-2,-10],[-6,-25],[-67,-43],[-38,-13],[-67,-22],[-92,10],[-71,40],[-150,83],[0,0],[15,86],[40,115],[24,67],[0,0],[-4,22],[-15,83],[-10,-3],[-143,-33],[-27,-65],[-21,-50],[-156,-94],[-36,-22],[-61,7],[-28,-29],[134,-43],[0,0],[56,-105],[-199,-190],[-107,-16],[-37,28],[-81,173],[-54,-11],[-31,-58],[0,0],[56,-260],[0,0],[-42,-39],[-39,-37],[-95,-32],[-149,-31],[-127,155],[-50,162],[-75,17],[-13,-1],[-43,-4],[-17,-24],[-16,-54],[-3,-10],[6,-42],[9,-56],[0,0],[-144,-7],[-48,-3],[0,0],[-34,28],[-41,14],[-88,30],[-3,1],[-5,1],[-111,-9],[-113,-109],[4,-37],[0,0],[-17,-9],[0,0],[-14,4],[-137,42],[8,35],[5,25],[0,0],[32,49],[15,117],[0,0],[-45,14],[-150,-57],[0,0],[160,206],[0,0],[34,16],[90,43],[407,70],[160,178],[200,90],[118,54],[9,22],[9,25],[562,398],[133,29],[327,15],[35,-2],[96,-6],[146,-44],[88,-26],[35,6],[76,11],[21,23],[45,48],[0,0],[0,29],[1,61],[30,44],[202,5],[382,-163],[27,-44]],[[36981,63324],[0,0],[34,-68],[0,0],[29,48],[0,0],[77,-43],[145,-79],[10,-1],[23,-3],[101,-70],[159,-109],[6,-25],[4,-13],[0,0],[-20,-193],[0,0],[18,-4],[25,-7],[3,7],[6,12],[-12,4],[-7,3],[-3,37],[0,2],[11,85],[12,16],[10,14],[10,-5],[15,-9],[35,-65],[2,-2],[0,0],[2,-19],[3,-22],[-13,-45],[36,-82],[34,-79],[59,-34],[0,0],[70,14],[-5,-55],[-6,-61],[0,0],[-5,33],[0,0],[-5,2],[-19,10],[-84,-33],[-128,-131],[-97,-99],[-128,-25],[0,0],[-425,96],[-320,214],[0,0],[-7,28],[-3,15],[-39,10],[-30,8],[-9,-32],[0,0],[-87,27],[-103,33],[9,43],[0,0],[-64,22],[-11,4],[-37,-60],[0,0],[8,-37],[-37,-2],[-45,-2],[-41,23],[-51,28],[-52,95],[0,0],[37,95],[87,34],[0,0],[57,-14],[155,33],[30,22],[103,77],[17,90],[-22,51],[-18,42],[-4,32],[-5,30],[16,32],[22,-1],[90,-45],[0,0],[-17,49],[-5,16],[0,0],[15,83],[34,65],[8,14],[43,17],[15,25],[32,51],[0,0],[34,5],[244,-144],[10,-30],[-41,-48]],[[34527,72026],[99,-103],[7,-39],[23,-117],[6,-20],[15,-45],[21,-12],[46,39],[32,28],[47,80],[41,12],[160,44],[79,-12],[182,-89],[38,-18],[15,-146],[56,-20],[274,30],[29,4],[110,-51],[48,-22],[0,0],[7,-5],[143,-112],[0,0],[-58,-140],[-13,-31],[0,0],[20,-54],[20,-50],[341,-212],[-35,-163],[0,0],[-44,-26],[-12,-7],[-381,-49],[-112,9],[-147,70],[-84,74],[-31,81],[14,31],[3,6],[0,0],[-55,38],[-40,28],[-387,91],[-58,14],[-218,-33],[0,0],[-44,36],[-91,75],[-356,-46],[-102,-25],[0,0],[-46,-45],[-100,11],[-141,16],[-154,89],[-60,57],[-17,38],[-14,31],[117,65],[283,-36],[268,-33],[24,9],[28,45],[12,20],[-65,26],[0,0],[9,51],[71,45],[15,9],[0,0],[-63,49],[-1,1],[0,0],[-211,-19],[0,0],[34,129],[0,0],[-125,69],[-107,-24],[-56,-33],[-17,-25],[-27,-38],[-90,-45],[-35,-3],[-49,-5],[-12,9],[-10,8],[0,0],[114,112],[40,52],[-1,12],[-1,15],[-62,14],[-27,6],[-129,-19],[-99,-14],[-6,1],[-61,11],[-30,18],[-9,94],[13,28],[57,117],[711,61],[324,-67],[19,-4],[78,-51]],[[44435,67032],[66,11],[80,13],[471,-119],[588,29],[226,-77],[186,-63],[405,-452],[116,-98],[0,0],[-31,-54],[-75,-21],[-36,-10],[-235,31],[-360,47],[-147,-4],[-98,-3],[-159,-51],[-243,-78],[-91,-12],[-58,12],[-57,12],[-108,55],[-72,37],[-66,155],[0,0],[3,43],[5,77],[-32,34],[-29,31],[-101,15],[-121,18],[-43,50],[-3,97],[32,189],[-8,55],[-5,31]],[[53403,41885],[0,0],[-43,-30],[-104,-71],[1,-35],[14,6],[13,5],[59,63],[18,-78],[-8,-6],[-62,-48],[-26,-58],[-17,-40],[-4,-42],[22,-7],[120,-34],[23,19],[20,17],[23,52],[54,119],[-64,6],[-23,56],[0,0],[171,191],[30,34],[0,0],[13,40],[0,0],[-32,-15],[-20,-9],[-86,-125],[-14,-6],[-15,-8],[0,0],[104,173],[33,54],[22,1],[11,1],[86,-55],[23,-15],[25,-30],[74,-89],[-17,-153],[0,0],[-34,-43],[-135,-166],[-190,-115],[-34,-7],[-37,25],[-36,25],[-114,-32],[-11,-3],[0,0],[-47,-32],[-29,23],[-7,5],[-26,59],[-16,36],[-43,309],[0,0],[33,34],[20,-15],[6,-5],[5,6],[5,6],[206,586],[86,170],[56,113],[13,0],[24,-1],[38,-16],[63,-131],[0,0],[-3,-15],[-46,-305],[-1,-150],[-170,-244]],[[46645,61128],[-184,-14],[-183,-14],[-135,31],[-93,175],[-33,260],[39,119],[102,187],[92,106],[70,80],[320,65],[339,-96],[31,-35],[26,-29],[0,0],[-3,-131],[-8,-374],[-66,-155],[-78,-53],[-77,-51],[-159,-71]],[[52938,44600],[-93,0],[-72,0],[-396,146],[-171,124],[-35,56],[-24,40],[-194,212],[-91,39],[-124,102],[22,39],[3,5],[142,35],[130,-66],[138,-28],[74,-15],[199,-89],[82,-56],[68,-46],[137,-129],[81,-77],[45,-16],[54,-20],[0,0],[102,-197],[-25,-41],[-52,-18]],[[38803,68087],[-25,-176],[-20,-31],[-96,-28],[-442,-7],[-18,5],[-82,24],[-93,73],[-56,44],[-56,-8],[-71,-10],[-291,117],[-196,79],[9,70],[79,121],[70,32],[131,116],[76,100],[36,46],[94,26],[283,76],[97,-13],[13,-1],[153,-33],[262,-194],[27,-29],[77,-82],[0,0],[17,-138],[22,-179]],[[21227,48800],[57,-62],[21,-23],[135,106],[17,91],[36,200],[53,36],[107,75],[0,0],[-14,-77],[-100,-537],[-120,-238],[-8,-15],[0,0],[29,-14],[8,-4],[-37,-28],[-74,-8],[-25,3],[-27,4],[-119,166],[0,0],[15,19],[15,20],[74,-10],[10,-12],[32,-39],[6,32],[-31,40],[-22,27],[-103,57],[-157,296],[-6,122],[21,128],[15,87],[0,0],[10,2],[6,1],[94,-44],[224,-13],[59,-84],[33,-122],[-6,-34],[-49,-59],[0,0],[-23,-11],[-156,-78]],[[43913,57218],[33,-55],[0,0],[-23,-159],[0,0],[-404,-404],[-94,-68],[-33,-16],[-171,18],[-91,9],[0,0],[-78,169],[146,389],[82,86],[27,12],[22,9],[135,-60],[7,-4],[153,74],[149,25],[57,10],[33,-14],[50,-21]],[[51928,42514],[0,0],[94,-210],[15,-34],[60,-25],[778,-14],[0,0],[-68,-76],[-24,-27],[-22,-8],[-58,-20],[-55,-91],[0,0],[-3,-7],[-23,-59],[2,-14],[1,-9],[0,0],[14,-3],[4,0],[11,-49],[8,-35],[-18,-39],[-146,-14],[-41,60],[-2,32],[-2,27],[21,38],[0,0],[-9,12],[-88,44],[-51,-37],[0,0],[-172,49],[-163,172],[-67,196],[0,0],[-128,-1],[-4,16],[-6,20],[3,58],[0,1],[80,163],[90,120],[9,-17],[6,-12],[0,-40],[-1,-76],[-31,-62],[-14,-29]],[[37502,71379],[169,-42],[97,36],[66,-5],[128,-48],[162,-61],[24,-25],[8,-8],[0,0],[-124,-88],[-57,-40],[63,-40],[93,-59],[-62,-91],[-37,-53],[0,0],[-703,-89],[-33,-27],[-36,-29],[-117,13],[-153,164],[0,0],[48,69],[11,16],[0,0],[184,3],[0,0],[13,48],[-470,140],[-187,138],[0,0],[-24,289],[94,52],[2,0],[13,0],[228,-6],[258,-70],[155,-43],[215,-49],[-28,-95]],[[30980,70744],[37,-21],[64,-37],[211,21],[51,-14],[0,0],[10,-28],[-13,-139],[-2,-27],[-61,-41],[-30,-20],[-239,-63],[-549,-85],[0,0],[-192,39],[0,0],[-226,103],[-20,19],[-79,74],[-45,155],[-11,35],[0,0],[9,58],[47,46],[13,12],[0,0],[978,156],[94,3],[354,15],[42,-4],[106,-11],[31,-20],[0,0],[1,-7],[1,-21],[-28,-46],[-19,-31],[-67,-24],[-261,-35],[-222,-30],[0,0],[15,-32]],[[33815,66656],[-114,-146],[-163,-211],[-77,5],[-58,3],[-183,175],[-170,162],[-101,78],[-236,57],[13,26],[21,40],[63,54],[123,106],[371,19],[45,14],[58,19],[68,-8],[62,-8],[100,-50],[177,-88],[38,-60],[-37,-187]],[[44944,56005],[-76,-32],[-33,64],[-44,83],[-39,46],[-22,4],[-24,4],[-17,59],[-8,29],[-1,51],[0,34],[7,37],[19,100],[37,82],[71,107],[58,41],[44,8],[64,13],[65,-35],[42,-66],[41,-66],[0,0],[-38,-167],[-146,-396],[0,0]],[[44491,47888],[-6,-14],[-103,49],[-450,214],[-49,47],[0,0],[60,108],[40,36],[213,44],[102,-25],[136,-175],[67,-178],[1,-5],[0,0],[-11,-101]],[[31702,71321],[0,0],[-19,-89],[0,0],[-56,-48],[-378,-24],[-98,20],[-179,35],[-167,-37],[-62,-14],[-348,77],[-406,-85],[-49,-10],[-61,62],[57,57],[94,42],[266,77],[41,11],[0,0],[10,1],[172,14],[441,143],[101,33],[20,0],[113,2],[462,-185],[46,-82]],[[37877,70734],[20,-24],[2,-3],[11,-44],[80,14],[71,13],[627,13],[190,-45],[42,-44],[23,-24],[0,0],[-166,-150],[-53,-48],[-573,40],[-10,-1],[-430,-19],[-115,38],[-55,42],[-11,9],[-12,25],[-19,39],[21,48],[69,31],[78,36],[139,36],[71,18]],[[21609,48347],[16,-24],[34,-49],[12,-43],[9,-29],[-16,6],[-71,29],[0,0],[-82,-12],[-8,-8],[-3,-2],[0,0],[17,-62],[20,-72],[102,-253],[46,-80],[119,-207],[97,-44],[14,-7],[0,-5],[-14,-69],[-50,-6],[-91,69],[0,0],[-72,118],[-226,369],[-111,141],[-7,8],[0,0],[24,6],[106,24],[0,0],[-11,16],[-6,9],[-52,12],[-84,18],[0,0],[12,68],[124,41],[105,81],[27,-26],[20,-17]],[[23060,48184],[5,-97],[-40,-223],[-7,-42],[-41,-3],[-2,0],[0,0],[-11,82],[-6,41],[0,0],[23,107],[7,11],[16,26],[2,35],[0,18],[-3,11],[-1,1],[0,0],[-11,-9],[-1,-2],[0,0],[-51,-229],[-16,-29],[-9,-16],[-34,20],[-33,19],[-38,86],[-20,45],[0,0],[3,25],[27,296],[0,0],[46,-2],[98,-4],[61,-50],[0,0],[11,-34],[25,-83]],[[47775,61620],[-32,-27],[-393,6],[-63,29],[-61,27],[-71,104],[-12,65],[0,0],[26,57],[83,48],[85,48],[65,-38],[-17,-72],[272,-51],[87,-16],[0,0],[7,-9],[12,-19],[0,0],[24,-108],[-9,-33],[-3,-11]],[[27678,68721],[-149,-91],[-153,34],[-146,33],[6,111],[168,122],[126,93],[165,78],[180,86],[56,12],[77,-22],[22,-6],[-17,-36],[-31,-67],[-168,-192],[-136,-155]],[[45212,51161],[-98,-216],[-70,-155],[-103,-36],[0,0],[100,241],[-24,29],[-20,-19],[-107,-176],[-45,-74],[-21,49],[23,61],[22,62],[104,177],[46,79],[0,0],[-22,-160],[0,0],[71,76],[0,0],[45,227],[37,78],[0,0],[29,-41],[26,-36],[70,-31],[2,-29],[0,-10],[-15,-22],[-50,-74]],[[40347,70193],[-60,-6],[-140,-12],[-369,173],[0,0],[4,71],[2,44],[21,50],[15,36],[150,32],[163,-10],[190,-85],[87,-38],[0,0],[41,-47],[18,-48],[14,-41],[-1,-19],[-2,-19],[-100,-61],[-33,-20]],[[45765,57353],[-13,0],[-30,-1],[-123,130],[-127,135],[-14,40],[91,23],[80,20],[162,-44],[67,-18],[24,-45],[40,-74],[0,0],[-7,-47],[-5,-30],[-125,-76],[-20,-13]],[[33841,70120],[-125,-24],[-16,-3],[0,0],[-175,55],[-38,12],[-102,102],[-24,43],[-47,87],[-198,262],[34,15],[41,17],[111,-12],[107,-56],[105,-55],[69,-73],[63,-126],[82,-25],[28,-8],[7,-5],[115,-81],[14,-49],[4,-17],[-26,-28],[-29,-31]],[[34651,69189],[-305,-71],[-343,13],[-94,26],[-33,10],[-41,56],[0,0],[127,63],[264,44],[238,39],[162,3],[23,-12],[17,-8],[56,-74],[0,0],[-38,-68],[-26,-16],[-7,-5]],[[41927,61626],[-73,-58],[-40,19],[-46,21],[-46,57],[-8,51],[-6,37],[10,40],[15,57],[-30,70],[0,0],[67,94],[52,72],[0,0],[84,-41],[28,-38],[7,-9],[2,-16],[21,-204],[-8,-52],[-6,-42],[-11,-27],[-12,-31]],[[34034,68217],[-61,-5],[-93,-7],[-129,43],[-93,32],[0,0],[32,68],[49,105],[59,56],[38,37],[112,24],[182,-63],[115,-187],[0,0],[-106,-77],[-20,-15],[-27,-3],[-58,-8]],[[45304,62638],[-62,-24],[-95,-37],[-40,22],[-28,14],[0,3],[-1,44],[76,143],[107,17],[139,167],[-2,10],[-6,41],[87,43],[22,-6],[25,-6],[31,-6],[21,-4],[13,-30],[7,-17],[-5,-29],[0,0],[-289,-345]],[[34340,69387],[-136,-24],[-222,9],[-98,21],[-1,104],[0,0],[-11,5],[-57,22],[-9,10],[-49,59],[4,33],[0,0],[57,26],[75,33],[111,11],[505,-211],[0,0],[-36,-45],[-133,-53]],[[43331,59672],[0,0],[-47,-10],[-33,13],[-30,11],[-45,5],[-79,44],[-56,31],[-65,76],[-12,43],[-22,85],[-51,12],[-45,11],[-18,54],[-19,57],[0,0],[35,21],[26,-15],[33,-18],[53,-19],[47,-16],[151,-120],[9,-14],[8,-12],[0,0],[-20,-61],[0,0],[231,-119],[-51,-59]],[[36567,67128],[-165,-15],[-149,-14],[-58,24],[-72,30],[-21,31],[335,116],[280,61],[160,12],[23,-20],[4,-4],[0,0],[0,-34],[0,0],[-6,-7],[-45,-50],[-118,-74],[-19,-12],[-34,-10],[-115,-34]],[[51668,55852],[-53,-87],[-26,20],[-26,21],[-171,114],[-66,44],[-12,40],[20,22],[15,16],[175,31],[55,-15],[64,-18],[24,-44],[18,-32],[-11,-70],[-6,-42],[0,0]],[[35939,72855],[14,0],[87,1],[41,-31],[8,-6],[50,7],[121,16],[81,-40],[2,-1],[0,0],[32,-38],[34,-40],[13,-56],[32,-139],[-27,-51],[-2,-4],[0,0],[-77,-34],[-121,45],[-75,73],[-167,67],[-161,-16],[-53,19],[3,53],[2,50],[4,6],[42,62],[0,0],[117,57]],[[44954,63467],[94,-9],[0,0],[57,-90],[0,0],[-108,-76],[0,0],[-5,-2],[-171,-62],[-177,55],[-163,50],[0,0],[42,38],[90,82],[54,1],[65,1],[27,-57],[82,-1],[0,0],[55,13],[36,36],[22,21]],[[50199,54823],[-97,-60],[-67,-41],[-40,10],[-4,18],[-6,29],[34,114],[50,168],[73,19],[104,-89],[6,-4],[0,0],[4,-39],[-26,-58],[-31,-67]],[[22511,48361],[0,0],[-19,-35],[-1,-3],[-65,28],[-18,8],[-136,217],[-40,63],[0,0],[-24,5],[-25,6],[-26,50],[9,47],[0,0],[15,2],[17,3],[115,-93],[96,-78],[81,-146],[16,-55],[5,-19]],[[23417,47236],[-50,-18],[-22,-8],[0,0],[-4,70],[19,118],[34,65],[15,30],[48,17],[72,68],[93,88],[20,-15],[0,0],[0,0],[14,-59],[0,0],[-43,-78],[-63,-27],[-44,-47],[-39,-42],[-50,-162]],[[46035,57886],[42,0],[54,-2],[110,-65],[33,-38],[45,-54],[0,0],[-18,-20],[-21,-25],[0,0],[1,0],[65,-7],[0,0],[-43,-45],[-31,-32],[-54,16],[-54,16],[-214,213],[0,0],[37,43],[0,0],[2,0],[46,0],[0,-1],[0,1],[0,0]],[[49121,57014],[87,-133],[0,0],[-89,-49],[-158,29],[-10,27],[-30,85],[19,86],[-39,16],[-94,39],[-13,36],[-5,14],[0,0],[273,-103],[34,-27],[25,-20]],[[29632,70656],[-186,-22],[-211,113],[-149,119],[0,0],[279,86],[72,-16],[160,-95],[179,-106],[-144,-79]],[[42764,59652],[-77,-71],[-21,21],[-20,20],[-10,34],[-10,35],[-104,73],[0,0],[-23,231],[0,0],[51,29],[85,-77],[14,-28],[58,-111],[37,-101],[20,-55]],[[46179,62859],[-81,-21],[-67,21],[-28,60],[-18,38],[2,38],[6,100],[0,0],[49,18],[54,21],[71,-12],[118,-18],[-9,-35],[-26,-91],[-71,-119]],[[47052,62415],[3,-6],[64,-127],[3,-78],[3,-80],[-80,5],[-26,23],[-158,135],[10,104],[0,0],[23,37],[26,42],[36,-12],[65,-21],[16,-11],[15,-11],[0,0]],[[35324,70746],[116,-87],[0,0],[-524,-48],[-91,48],[-109,57],[0,0],[4,25],[3,23],[49,33],[289,17],[0,0],[162,-32],[43,-16],[58,-20]],[[40397,69526],[-30,-5],[-44,-7],[-43,21],[-47,23],[-133,150],[-47,53],[32,28],[26,22],[181,38],[67,-14],[56,-39],[25,-17],[15,-41],[6,-19],[-37,-155],[-27,-38]],[[37817,63279],[84,-67],[38,-30],[0,0],[-39,-103],[-2,-2],[-37,-46],[-85,-3],[-1,22],[0,26],[-38,52],[-5,-15],[-22,-61],[0,0],[-56,14],[16,109],[12,89],[0,0],[19,15],[31,24],[49,-14],[36,-10]],[[29751,69729],[-22,-2],[-23,-2],[-514,59],[0,0],[2,3],[21,39],[88,41],[256,31],[28,-2],[103,-4],[67,-31],[59,-26],[3,-47],[-24,-20],[-44,-39]],[[34686,68876],[-279,-23],[-74,21],[0,0],[194,133],[0,0],[363,75],[76,-47],[0,0],[-37,-18],[-24,-12],[-219,-129]],[[23920,45085],[0,0],[-12,-7],[-16,-9],[-16,8],[-25,13],[-65,87],[-31,41],[0,0],[41,32],[18,14],[0,0],[-7,17],[-10,28],[0,0],[34,28],[0,0],[42,-11],[9,-4],[10,-4],[11,-91],[17,-142]],[[44027,21040],[63,-65],[16,-18],[161,110],[0,0],[-38,-52],[32,-55],[18,-31],[0,0],[25,-2],[0,0],[117,98],[255,-201],[10,-8],[0,0],[35,24],[56,-13],[28,-6],[140,-134],[33,-84],[50,-126],[64,-99],[54,-39],[0,0],[3,0],[114,17],[130,-24],[236,-228],[156,-228],[173,-197],[0,0],[40,-17],[-2,5],[-29,95],[-111,127],[0,0],[-5,16],[-1,6],[0,0],[4,7],[14,24],[0,0],[280,-378],[91,-99],[117,-126],[183,-132],[183,-4],[45,-49],[2,-7],[18,-52],[-22,-121],[-24,-130],[0,0],[63,1],[71,2],[157,-35],[109,-66],[69,-120],[42,-73],[111,-92],[41,-7],[23,-43],[1,-16],[3,-39],[-11,-24],[-33,-68],[-15,-11],[-15,-11],[-98,-15],[-148,-24],[-200,-131],[-90,1],[-49,33],[-54,35],[-173,22],[-20,2],[0,0],[-259,-37],[-420,-106],[-25,13],[-3,2],[0,0],[-2,34],[50,124],[102,162],[41,35],[54,45],[30,63],[3,5],[0,0],[9,57],[6,38],[-69,172],[-49,57],[-91,-4],[-219,-9],[-29,34],[-17,19],[-148,254],[-54,379],[-72,167],[-169,-74],[-74,6],[-638,446],[-415,129],[-23,7],[0,0],[-195,144],[0,0],[192,84],[0,0],[24,34],[-8,76],[-92,94],[-174,0],[-166,1],[-70,-45],[-77,-90],[-70,-109],[-91,-144],[-267,-152],[-30,-17],[-35,-135],[0,0],[-131,-75],[0,0],[-171,32],[-23,20],[-14,12],[11,9],[105,90],[59,172],[17,133],[5,9],[76,170],[146,175],[326,219],[166,57],[133,45],[57,45],[40,31],[85,6],[17,1],[0,0],[12,-3],[126,-32]],[[43659,19597],[-12,-15],[-18,-24],[-117,-71],[-9,4],[-86,43],[-23,42],[-19,84],[0,0],[42,-72],[35,-4],[17,22],[8,10],[-21,65],[-38,117],[16,62],[0,0],[50,80],[0,0],[21,-9],[88,-38],[0,0],[25,-77],[26,-79],[2,-45],[1,-20],[17,-50],[-5,-25]],[[45518,20502],[31,-31],[116,-180],[28,-44],[83,-140],[63,-47],[8,-6],[0,0],[-15,-46],[-17,-53],[-33,30],[-47,102],[-22,81],[-21,76],[-27,24],[-136,119],[-30,12],[-72,29],[-5,25],[-5,24],[101,25]],[[49795,11070],[1,-1],[0,-1],[1,-1],[1,0],[0,0],[1,-1],[1,-2],[0,-1],[12,-16],[0,0],[1,-1],[0,-1],[0,0],[1,-2],[2,-3],[1,-1],[15,-42],[17,-44],[0,-1],[0,0],[-2,-3],[-1,0],[-3,-1],[-24,0],[0,0],[-4,0],[-62,60],[-6,8],[-13,18],[-41,71],[-12,29],[-10,23],[-9,23],[-1,52],[-1,23],[0,0],[2,2],[5,4],[23,-24],[2,-2],[2,-3],[1,0],[0,0],[0,-1],[1,0],[0,-1],[1,-2],[1,-2],[8,-21],[0,-2],[0,0],[0,-2],[1,-8],[0,-3],[0,0],[0,0],[0,-3],[0,-3],[88,-114]],[[44192,17620],[40,-50],[23,18],[12,1],[27,2],[15,0],[4,0],[0,0],[1,0],[0,0],[0,0],[2,-1],[0,0],[0,-1],[0,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-8],[1,-3],[0,-3],[-1,-7],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[-4,-8],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,0],[-2,-2],[0,0],[-1,0],[0,-1],[-2,0],[-84,-25],[-8,3],[-18,5],[-14,16],[-15,77],[0,0],[1,2],[0,3],[1,2],[0,0],[0,1],[1,1],[2,4],[1,1],[0,0],[0,1],[5,4],[4,3],[2,-1],[1,-1],[7,-6],[0,-1],[0,-1],[1,-3],[0,0],[0,-1]],[[44817,17913],[0,-1],[0,0],[-1,-3],[0,0],[0,0],[-1,-1],[0,0],[0,0],[-50,-35],[-1,0],[-1,0],[0,0],[-7,1],[0,0],[0,2],[0,1],[-1,0],[1,2],[0,1],[0,1],[0,1],[11,15],[7,8],[9,4],[5,2],[11,6],[10,6],[1,0],[0,0],[1,1],[2,-1],[1,0],[1,0],[0,0],[0,0],[1,-1],[0,0],[0,0],[1,-1],[0,0],[0,-1],[0,-2],[0,0],[1,-1],[-1,-2],[0,-1],[0,0],[0,-1]],[[44873,17905],[-10,7],[-1,0],[0,0],[36,37],[14,14],[0,0],[0,0],[2,0],[1,0],[1,0],[1,0],[8,-6],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[0,0],[0,-1],[-18,-23],[-17,-10],[-17,-11]],[[53127,14216],[40,-39],[13,-12],[21,-62],[6,-40],[0,-134],[-1,-12],[-1,-11],[-4,-38],[-1,-3],[0,-1],[0,0],[-1,-2],[-1,-1],[-2,-4],[-13,-12],[-15,-15],[-2,-2],[-1,-1],[-6,-3],[0,0],[0,0],[-4,0],[0,0],[-1,1],[-2,1],[0,1],[0,0],[-1,1],[-45,305],[2,61],[0,1],[0,3],[0,3],[0,0],[0,1],[0,4],[1,0],[0,1],[0,1],[0,1],[1,3],[1,2],[0,1],[0,0],[3,1],[5,0],[7,0],[0,0],[0,0],[1,0]],[[48496,17910],[-3,63],[44,86],[6,11],[23,17],[14,10],[262,19],[82,-52],[200,-161],[207,-111],[123,-254],[179,43],[4,-12],[18,-63],[-21,-64],[-169,30],[-13,-18],[0,-49],[-1,-58],[93,-31],[76,-26],[150,4],[34,-30],[61,-55],[159,-276],[11,-18],[0,0],[-56,-218],[-139,-118],[-9,31],[-28,91],[-30,23],[-16,11],[-90,11],[-262,34],[-143,-79],[-37,-62],[-40,-67],[-121,-31],[-38,102],[-24,40],[-34,55],[-76,-72],[-48,-45],[-92,-306],[-73,-184],[-27,-42],[-25,-38],[0,0],[-66,97],[0,1],[-5,37],[-13,109],[-19,39],[-28,57],[-63,123],[-8,15],[0,0],[-56,44],[0,0],[-24,-1],[-191,-11],[-111,-56],[-55,-3],[-3,0],[0,0],[-29,11],[-178,69],[-131,1],[-8,-8],[-121,-110],[-171,157],[0,0],[-41,69],[-29,49],[7,48],[19,135],[94,53],[220,-120],[0,0],[5,-7],[25,-33],[229,-30],[10,-1],[31,-2],[167,-10],[133,75],[0,0],[7,18],[12,29],[2,61],[2,27],[-118,151],[-35,60],[-60,103],[6,159],[0,15],[48,178],[-3,20],[-2,13],[-158,159],[-155,9],[-24,42],[-2,4],[0,1],[0,65],[19,34],[22,41],[77,66],[78,15],[87,18],[49,-23],[54,-25],[113,-116],[260,-62],[0,0]],[[53114,15001],[0,0],[26,-65],[1,-191],[-43,-102],[-40,-98],[-18,-26],[-3,-3],[-1,-2],[-1,-1],[-20,-10],[-13,2],[-12,29],[-6,13],[-10,49],[-15,155],[-4,45],[0,0],[5,35],[2,9],[4,16],[2,4],[2,5],[1,0],[0,1],[4,5],[0,0],[1,1],[9,6],[0,0],[0,0],[1,0],[1,1],[34,-40],[1,-3],[16,-35],[9,-6],[2,-1],[1,-1],[1,0],[1,0],[0,0],[1,-1],[2,3],[5,8],[16,22],[8,21],[5,14],[-1,38],[-1,1],[-1,1],[0,1],[-1,1],[-2,3],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,0],[0,3],[-1,6],[-3,16],[-1,11],[0,1],[0,1],[3,12],[0,1],[1,1],[1,2],[2,5],[8,11],[20,26],[0,0],[4,-7]],[[53196,14553],[14,-18],[19,-38],[1,-1],[0,-1],[0,0],[0,-5],[0,-2],[0,-1],[1,-3],[0,-5],[0,-1],[0,-1],[0,-2],[-1,-6],[0,-3],[-1,-3],[-12,-25],[0,0],[0,-1],[-2,-1],[-5,-8],[-1,-1],[0,0],[-11,-2],[-1,0],[0,0],[0,0],[-6,0],[-7,4],[0,1],[-1,0],[-1,2],[-1,1],[-6,7],[-1,2],[-2,3],[0,2],[-1,2],[0,1],[-1,1],[0,1],[0,5],[-1,24],[4,17],[4,15],[4,16],[6,20],[1,1],[0,0],[0,1],[1,0],[0,0],[0,1],[3,1],[2,1],[1,0],[0,0],[0,-1],[1,0]],[[53313,14848],[-8,-10],[-16,-16],[-12,-10],[-2,0],[-1,0],[0,0],[0,0],[0,1],[-1,0],[0,2],[1,10],[4,6],[0,1],[31,33],[5,-3],[0,0],[2,-3],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[-3,-4]],[[53040,11114],[0,-1],[2,0],[1,-2],[0,-1],[0,0],[5,-43],[-3,-40],[-6,-41],[-2,-11],[-4,-23],[-6,-11],[-6,-12],[-10,-9],[-12,-12],[-13,1],[-4,0],[-20,7],[19,105],[2,10],[1,7],[5,21],[1,2],[4,18],[1,1],[0,0],[14,25],[12,15],[0,0],[2,-1],[1,0],[16,-5]],[[53124,11340],[-1,-4],[-5,-15],[-23,-17],[0,0],[0,13],[2,15],[1,7],[19,48],[0,0],[1,0],[0,1],[0,0],[1,0],[0,0],[2,1],[0,0],[1,-1],[0,-1],[3,-9],[3,-11],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-11],[-1,0],[0,-1],[-3,-9]],[[60485,54702],[-93,-48],[-2,58],[0,0],[7,8],[88,100]],[[60485,54982],[-14,-20],[-20,-5],[-86,-23],[0,0],[-7,95],[-1,11],[0,0],[-71,0],[-111,0],[0,0],[-18,87],[0,0],[15,13],[13,13],[95,192],[30,60],[0,0],[-66,-48],[-87,-64],[-93,11],[-30,-77],[0,0],[-21,10],[-68,31],[0,0],[135,106],[36,3],[36,3],[112,52],[41,45],[51,56],[-4,25],[-2,20],[0,0],[-29,-5],[-30,-5],[-101,-130],[-162,-81],[-12,6],[-8,3],[-27,50],[0,0],[157,83],[44,84],[-62,121],[-125,-32],[37,-22],[63,-38],[0,0],[19,-53],[0,0],[-54,-39],[-81,-58],[-119,57],[-83,-68],[-61,-135],[0,0],[-14,-10],[-65,-47],[-61,24],[0,0],[19,45],[14,34],[19,11],[-29,30],[0,0],[-312,-38],[-76,-36],[-14,-6],[0,0],[54,4],[84,7],[0,0],[2,-20],[3,-25],[0,0],[-64,-18],[0,0],[-5,1],[-91,24],[-24,0],[-20,0],[0,0],[13,36],[13,38],[71,46],[43,28],[0,0],[-11,12],[-70,-3],[-15,-1],[-28,-9],[-77,-24],[-120,7],[2,5],[6,21],[244,14],[0,0],[1,5],[3,18],[-10,24],[-13,29],[0,0],[-171,75],[-103,-19],[-23,37],[-12,20],[44,69],[26,41],[-23,13],[-74,42],[-114,-25],[-7,-1],[-16,3],[-55,11],[0,0],[204,88],[4,2],[9,31],[0,0],[-146,-55],[-49,-18],[-47,74],[0,0],[82,341],[0,0],[-106,-81],[-21,-3],[-48,-7],[0,0],[63,149],[0,0],[-1,31],[0,0],[-20,-3],[-138,-18],[-33,74],[0,0],[59,29],[0,0],[34,83],[0,0],[-73,44],[-166,100],[-33,-8],[-76,53],[-3,5],[-37,63],[-6,15],[-6,14],[13,49],[21,86],[0,0],[52,57],[0,0],[16,23],[89,137],[0,0],[-111,-105],[0,0],[-38,130],[0,0],[-67,17],[-80,22],[-10,46],[15,69],[3,7],[28,50],[128,59],[0,0],[-58,13],[-154,-18],[-30,-4],[0,0],[-6,-2],[-105,-40],[-63,120],[-2,3],[3,13],[6,30],[135,32],[0,0],[-53,-5],[-112,84],[-10,8],[0,0],[8,72],[7,66],[0,0],[-108,-10],[-77,73],[0,43],[17,15],[49,16],[55,18],[116,80],[55,39],[0,0],[-145,-57],[-41,17],[-34,14],[-41,57],[-21,77],[0,0],[77,13],[225,37],[122,57],[7,11],[15,25],[0,0],[-68,1],[-10,0],[0,0],[-14,-6],[-137,-68],[-78,-15],[-104,-21],[-81,30],[-44,62],[-7,11],[132,25],[61,-41],[53,4],[111,64],[93,151],[140,-23],[41,-6],[0,0],[69,46],[-8,42],[-39,-27],[-68,25],[-63,24],[-101,69],[63,97],[68,15],[9,-3],[80,-28],[21,-15],[0,0],[2,-6],[34,-107],[31,-49],[100,-67],[95,-62],[44,7],[0,0],[-326,356],[-110,24],[-77,179],[-30,69],[0,0],[-14,72],[28,40],[0,0],[-75,17],[-3,0],[-14,-3],[0,0],[25,-78],[95,-294],[0,0],[-48,-41],[-84,-69],[0,0],[-6,53],[-9,75],[-65,-9],[-11,-1],[-27,-27],[-16,-16],[-97,-197],[-96,-196],[-101,5],[-32,2],[-12,176],[29,214],[142,109],[31,24],[10,7],[54,35],[27,26],[19,18],[-122,43],[-81,-109],[-4,-8],[-26,-54],[-104,-37],[-12,34],[-4,12],[38,110],[-35,43],[0,0],[4,65],[8,145],[0,0],[0,2],[-32,70],[-9,1],[-14,0],[-125,-83],[0,0],[-11,29],[-20,56],[0,0],[73,68],[0,0],[64,34],[250,136],[0,0],[-40,9],[-38,8],[-2,12],[-4,21],[0,0],[43,25],[66,39],[63,23],[54,20],[123,8],[48,3],[61,-37],[66,-41],[79,4],[1,0],[0,0],[3,28],[-60,32],[-15,8],[-33,6],[-193,40],[-136,-58],[-193,-82],[12,-58],[1,-6],[-65,-75],[-160,-70],[-77,33],[3,67],[-52,81],[-66,43],[-80,22],[-66,17],[10,46],[4,15],[67,59],[37,31],[92,19],[43,9],[17,-3],[139,-27],[214,76],[-9,73],[0,0],[-272,-63],[-363,-83],[-40,133],[0,0],[83,103],[195,155],[115,93],[216,173],[107,72],[124,84],[83,31],[116,43],[78,79],[57,57],[0,0],[-102,-18],[-4,-1],[-30,-18],[-228,-136],[-634,-540],[-185,-106],[-67,-9],[-78,13],[49,104],[0,0],[-32,95],[-20,58],[0,0],[25,107],[205,3],[288,3],[36,25],[0,0],[-183,25],[-188,-23],[-73,41],[-30,17],[0,0],[20,32],[45,25],[48,27],[111,-28],[147,16],[19,23],[14,16],[-17,33],[-28,55],[-146,-51],[-19,-6],[0,0],[-18,11],[0,0],[0,10],[3,29],[0,0],[24,16],[13,9],[127,11],[36,3],[107,-34],[64,9],[0,0],[-14,62],[0,0],[-7,17],[0,0],[-246,-26],[-316,10],[-141,151],[-33,10],[0,0],[66,87],[755,168],[274,-35],[98,-159],[26,-17],[15,-10],[13,0],[19,0],[129,49],[0,0],[-39,-13],[-29,-9],[-250,193],[-229,8],[-264,-28],[-205,-35],[-56,-9],[-89,-30],[-160,-54],[-22,18],[-18,16],[8,94],[0,0],[14,34],[12,33],[69,56],[41,18],[158,73],[75,69],[74,68],[64,19],[63,8],[87,12],[259,-135],[182,52],[359,-160],[0,0],[-59,50],[-50,42],[0,0],[26,14],[25,14],[179,25],[183,25],[0,0],[-81,28],[-61,21],[-83,-41],[-89,-44],[-177,-26],[-106,82],[0,0],[214,60],[139,38],[0,0],[-13,40],[-125,-2],[1,-7],[7,-39],[-87,-26],[-96,-28],[-10,8],[-20,17],[-28,73],[0,0],[46,36],[2,2],[58,-12],[21,-4],[14,34],[0,0],[-27,39],[-6,9],[0,0],[-84,-20],[-89,-21],[10,-16],[53,-90],[0,0],[-66,-71],[-9,-9],[0,0],[-153,-12],[-31,9],[-164,47],[-26,24],[-21,19],[0,0],[46,35],[30,22],[81,0],[52,1],[148,75],[0,0],[-9,2],[-14,3],[-602,-188],[-126,-127],[-79,-53],[-90,-60],[-22,-2],[-17,-2],[-22,75],[7,10],[82,106],[126,218],[86,31],[76,28],[48,-24],[85,-41],[173,-15],[49,26],[0,0],[-40,2],[-165,5],[-132,45],[-37,30],[-54,44],[-52,34],[-49,31],[0,0],[339,20],[19,-10],[223,-108],[234,2],[65,1],[28,-6],[77,-15],[238,-116],[104,19],[0,0],[-372,179],[0,0],[-19,72],[10,57],[3,17],[62,154],[0,0],[-191,-52],[0,0],[-21,-109],[-98,-19],[-88,-16],[-107,0],[-122,-1],[-137,40],[-133,38],[0,0],[115,64],[127,70],[4,43],[0,0],[-74,5],[0,0],[28,9],[84,27],[197,-17],[170,-14],[56,11],[141,27],[30,16],[13,6],[0,0],[39,131],[-84,112],[-2,6],[-13,51],[40,161],[0,0],[32,31],[99,-7],[22,-47],[125,-99],[0,0],[98,84],[0,0],[-73,67],[0,0],[36,29],[50,41],[0,0],[-105,61],[-74,-33],[-119,-54],[-101,21],[-10,2],[0,0],[4,4],[40,49],[35,5],[11,1],[117,194],[0,0],[-73,12],[-6,119],[0,0],[32,16],[116,-27],[19,28],[87,310],[0,0],[-455,54],[-66,-30],[-58,-27],[-207,42],[-224,117],[-63,50],[-41,34],[-190,83],[-377,64],[-157,142],[-95,85],[0,0],[13,49],[200,104],[517,-55],[145,-39],[66,-18],[320,-210],[103,-43],[108,-28],[276,-71],[40,5],[26,3],[0,0],[21,163],[0,0],[-12,7],[-15,10],[-91,-102],[-140,21],[-22,24],[-38,41],[0,0],[6,61],[1,11],[96,-15],[85,-14],[73,55],[0,0],[-58,34],[-44,25],[-250,14],[-7,17],[-11,25],[0,0],[53,17],[26,8],[265,-24],[0,0],[-100,69],[-47,32],[-185,41],[-223,109],[13,36],[15,5],[15,6],[104,-40],[130,-51],[95,45],[0,0],[-65,102],[-175,-17],[-205,-20],[-33,12],[-40,13],[0,0],[95,70],[39,29],[157,16],[37,45],[0,0],[-64,54],[-57,-15],[-270,-175],[0,0],[-70,19],[10,43],[0,0],[34,35],[102,104],[251,73],[43,-4],[70,-7],[27,27],[0,0],[-9,18],[-171,8],[-310,-109],[-94,-2],[-147,44],[0,0],[52,39],[68,50],[198,36],[196,36],[31,31],[41,41],[11,33],[0,0],[-13,11],[-14,11],[-42,-6],[-36,-62],[-122,-45],[-54,6],[-88,10],[-165,79],[-118,57],[0,0],[51,90],[-177,-16],[-94,-80],[-62,-52],[-164,10],[0,0],[22,-101],[42,-21],[48,-24],[0,0],[-16,-113],[-112,-35],[-104,-32],[-173,-11],[-88,17],[-200,37],[-146,169],[-67,78],[0,0],[57,62],[37,10],[59,14],[286,142],[0,0],[-149,-10],[-80,33],[-87,35],[0,0],[4,8],[13,30],[293,207],[3,56],[0,0],[-22,69],[-138,-26],[-105,10],[-64,52],[0,0],[57,48],[29,24],[162,-21],[130,-17],[13,24],[-14,131],[43,133],[0,0],[26,12],[20,9],[-20,34],[-56,90],[-32,30],[-19,18],[-101,14],[-218,30],[0,0],[8,38],[1,6],[83,39],[58,28],[0,0],[-7,47],[70,109],[0,0],[-27,60],[0,0],[-91,50],[-243,132],[-2,38],[-3,59],[0,0],[28,53],[66,36],[0,0],[-9,69],[0,0],[-226,127],[0,0],[1,96],[0,0],[-2,2],[-39,64],[0,0],[-113,-61],[-192,-29],[-127,-19],[0,0],[80,57],[55,1],[84,20],[80,19],[122,62],[0,0],[-37,78],[-36,79],[0,0],[139,42],[-10,36],[-139,101],[-102,36],[-73,74],[-4,3],[0,0],[-41,100],[-13,34],[-173,38],[-289,116],[-113,172],[-54,55],[-8,8],[0,0],[33,58],[117,111],[0,0],[-36,50],[-71,100],[-147,25],[-104,-13],[-44,-5],[0,0],[-15,20],[-26,36],[6,62],[0,0],[-157,6],[-32,1],[-93,116],[-147,52],[-328,51],[-57,68],[-399,50],[-275,34],[-274,75],[-155,42],[-26,-16],[-5,-56],[0,0],[-126,-132],[-81,-3],[-78,-3],[0,0],[-21,62],[-12,35],[-90,-9],[-57,-6],[-84,-25],[-124,-38],[-208,-134],[-79,4],[-114,65],[0,0],[117,114],[40,11],[0,0],[-16,6],[-66,28],[-217,-25],[-34,-36],[-21,-22],[-13,-41],[-106,49],[-161,74],[-37,-10],[-39,-9],[-81,-70],[0,0],[248,-134],[0,0],[-20,-26],[-25,-34],[-228,38],[-385,63],[-183,70],[-28,11],[-63,29],[-364,170],[0,0],[37,52],[340,106],[239,24],[34,96],[0,0],[-113,-17],[-34,-5],[-104,6],[-182,9],[-389,81],[-17,24],[-8,10],[7,14],[6,12],[-35,-4],[-227,-33],[-336,201],[18,47],[74,59],[196,69],[122,16],[128,17],[643,-54],[168,-14],[143,15],[0,0],[-4,5],[-12,17],[-82,1],[-89,0],[-284,58],[0,0],[137,38],[123,34],[219,11],[356,18],[374,-77],[86,115],[2,1],[67,12],[0,0],[13,50],[0,0],[-76,86],[-80,35],[-76,33],[-201,20],[-64,-20],[0,0],[-18,-52],[-8,-25],[-180,-53],[-294,-6],[-158,-3],[-79,-12],[-212,-33],[-330,75],[-14,126],[0,0],[-79,28],[-187,66],[-255,-23],[-7,0],[0,0],[-14,3],[-80,20],[0,0],[69,51],[0,0],[-42,30],[-198,23],[-212,77],[-196,109],[-79,44],[37,58],[6,10],[0,0],[85,253],[21,8],[798,134],[345,102],[48,5],[303,34],[82,30],[3,27],[3,18],[0,0],[-59,17],[0,0],[37,29],[178,56],[87,27],[396,53],[130,18],[529,-13],[27,12],[159,73],[353,250],[28,20],[0,0],[19,30],[2,3],[0,0],[-1,71],[-32,25],[-62,128],[-19,41],[14,139],[0,0],[273,38],[269,89],[-61,42],[-31,21],[-134,-110],[-581,-61],[-623,60],[0,0],[-32,26],[-124,99],[-11,99],[0,0],[19,33],[130,40],[168,51],[95,77],[26,20],[0,0],[393,105],[78,35],[94,41],[63,32],[57,28],[67,65],[272,119],[157,69],[178,-33],[80,-131],[168,-138],[9,-2],[53,-14],[0,0],[-8,27],[-100,79],[-86,68],[-96,174],[0,0],[58,25],[90,39],[162,-9],[137,-7],[215,-72],[104,-35],[203,32],[16,29],[28,53],[13,150],[4,50],[0,0],[38,112],[0,0],[-78,53],[-101,68],[-44,61],[0,0],[34,44],[28,13],[35,17],[153,32],[301,62],[283,-28],[270,-27],[40,-15],[39,-14],[5,-10],[24,-48],[-20,-59],[20,-16],[242,-58],[145,-35],[147,-64],[235,-102],[222,-65],[30,6],[5,1],[0,0],[-499,244],[-7,3],[-118,38],[-69,9],[-59,16],[-106,65],[-4,4],[-85,112],[-284,67],[-145,35],[0,0],[225,58],[167,43],[1068,133],[166,20],[51,-9],[181,-31],[0,0],[-1,2],[-29,59],[0,0],[424,67],[176,-58],[226,-169],[0,0],[14,-111],[15,-113],[-9,-18],[-17,-32],[-41,-23],[-42,-23],[-27,-77],[20,-119],[0,0],[81,-31],[6,-2],[0,0],[47,-3],[0,0],[51,196],[116,120],[82,85],[77,19],[97,24],[462,-81],[10,-2],[25,-7],[252,-70],[0,0],[350,-182],[127,3],[34,0],[0,0],[-257,116],[-369,167],[0,0],[21,5],[43,10],[492,-74],[186,50],[0,0],[-577,245],[-158,213],[-12,38],[-10,30],[0,0],[222,9],[221,9],[366,-32],[743,-234],[61,-19],[522,-98],[61,-25],[66,-28],[114,-92],[309,-146],[79,-1]],[[60485,75087],[-308,110],[0,0],[-59,40],[0,0],[367,3]],[[60485,75361],[-49,17],[0,0],[49,24]],[[60485,75449],[-206,85],[-12,5],[17,22],[17,21],[184,6]],[[57794,63556],[103,-42],[-55,-177],[-34,-107],[0,0],[-71,-47],[-52,20],[-17,41],[-47,113],[0,0],[169,173],[0,0],[-89,-45],[-78,12],[12,7],[56,34],[103,18]],[[57417,63304],[-53,-62],[-46,-54],[-74,-50],[-435,-136],[-165,-53],[-99,9],[-61,25],[-90,37],[-51,48],[-21,20],[14,21],[17,26],[0,0],[196,-28],[71,9],[39,6],[21,11],[-10,96],[-58,-29],[-105,-52],[-135,77],[0,0],[-234,24],[-56,28],[-50,54],[-24,27],[4,8],[18,34],[63,35],[2,0],[0,0],[1,238],[-18,33],[-6,99],[9,16],[6,11],[92,45],[66,32],[70,-7],[120,-13],[193,-44],[143,-33],[106,-76],[96,-116],[47,-57],[276,-96],[73,-62],[13,-11],[0,0],[35,-90]],[[57059,64703],[-52,-10],[-94,-17],[-65,45],[-36,100],[0,0],[10,15],[15,24],[64,23],[88,-8],[82,-11],[69,-9],[0,0],[10,-73],[0,0],[-91,-79]],[[57709,74530],[-207,-15],[-54,-4],[-608,122],[-53,19],[-74,97],[0,0],[50,39],[58,47],[185,-20],[277,-130],[154,-51],[105,-35],[55,-23],[112,-46],[0,0]],[[60485,74594],[-20,-5],[-374,162],[-280,73],[-197,51],[-88,67],[-109,82],[-164,85],[0,0],[216,20],[192,18],[211,-14],[136,-10],[337,-87],[140,-37]],[[60485,74775],[-55,-38],[55,-32]],[[48027,17069],[0,-66],[-128,87],[-65,44],[-30,69],[19,35],[0,0],[12,3],[14,2],[0,0],[157,-123],[21,-51]],[[46433,16514],[82,-236],[0,0],[-60,-37],[-48,-4],[-36,-4],[-64,42],[-49,31],[-120,-25],[-22,-5],[-34,-32],[-18,-77],[7,-14],[6,-11],[0,0],[-174,98],[-130,74],[-92,116],[-96,120],[0,0],[97,225],[103,64],[0,0],[345,-96],[84,-60],[219,-169]],[[10002,1820],[87,-206],[0,0],[3,-7],[0,-1],[0,-1],[0,0],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,0],[0,-1],[0,-3],[1,-1],[0,-2],[0,-3],[0,-2],[0,-1],[1,-1],[0,-4],[0,-7],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-8],[0,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,0],[0,-1],[-11,-3],[-6,-2],[-6,3],[-3,2],[0,0],[0,0],[-1,1],[-1,0],[0,0],[-2,2],[-133,132],[0,0],[12,61],[0,0],[3,-10],[5,-20],[19,-35],[12,-1],[0,0],[1,0],[0,0],[1,1],[0,0],[1,0],[0,0],[0,1],[5,40],[1,8],[1,52],[-1,11],[-1,2],[0,1],[-4,10],[-1,2],[-2,5],[-15,26],[-9,12],[-1,1],[20,-5],[24,-30]],[[9122,3451],[-4,0],[-2,0],[-1,0],[-6,1],[0,0],[-1,1],[0,0],[-1,1],[-1,0],[-1,1],[0,0],[-1,2],[-1,2],[-1,0],[0,0],[0,1],[-5,9],[-2,5],[0,0],[0,1],[-1,2],[0,1],[-1,2],[0,3],[-1,4],[0,1],[-1,1],[0,2],[0,2],[-1,4],[0,1],[0,1],[0,0],[0,0],[1,2],[0,1],[0,0],[45,-3],[4,0],[1,-2],[4,-4],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,-3],[0,0],[0,-2],[0,0],[-1,-1],[-1,-2],[0,-1],[-14,-18],[0,0],[0,0],[-1,0],[-3,-1],[-1,0]],[[9141,3516],[1,-5],[0,0],[-5,1],[-1,0],[-2,0],[-7,1],[-3,1],[-1,2],[0,0],[-1,1],[-4,5],[-1,1],[-1,0],[0,1],[-4,6],[0,0],[0,0],[-1,0],[-1,2],[0,0],[-2,6],[0,0],[0,0],[-2,7],[-2,17],[-2,14],[0,1],[0,0],[0,0],[1,0],[1,0],[0,0],[0,-1],[1,0],[20,-33],[16,-27]],[[9084,3523],[-1,-3],[-1,-2],[0,0],[0,1],[0,1],[-1,1],[0,0],[0,3],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,4],[0,2],[-1,0],[0,1],[0,4],[0,1],[0,0],[0,1],[0,2],[0,2],[0,1],[2,9],[2,9],[0,0],[9,12],[1,1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[-16,-52]],[[52506,15834],[13,-14],[13,-19],[8,-12],[11,-24],[12,-32],[19,-50],[0,0],[-2,-2],[-8,-7],[-60,58],[-5,7],[-9,15],[-7,11],[-3,4],[-7,19],[-1,7],[-1,1],[1,9],[1,4],[2,7],[4,7],[0,0],[1,2],[4,5],[11,5],[1,0],[0,-1],[1,0],[1,0]],[[52610,15641],[3,-4],[4,-6],[1,-1],[1,-2],[1,-2],[1,-4],[1,-1],[0,0],[0,-1],[1,-5],[0,-5],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,0],[0,-6],[0,-1],[1,-3],[0,-11],[0,-1],[0,-1],[0,0],[0,-4],[0,-3],[-1,-2],[-2,-14],[-1,-4],[-1,-1],[-2,-2],[0,0],[-18,-8],[-1,0],[0,0],[-1,0],[0,0],[-1,1],[-4,3],[-1,2],[-1,2],[-1,0],[0,3],[-4,13],[-1,2],[0,2],[-1,6],[0,3],[0,2],[0,1],[0,1],[0,2],[1,9],[0,3],[0,1],[0,2],[1,9],[0,1],[0,3],[7,26],[1,1],[2,3],[4,2],[1,0],[1,0],[0,0],[2,-1],[6,-1]],[[53368,12743],[5,-37],[0,-26],[-2,-78],[0,-1],[0,-2],[0,-1],[0,0],[-1,-9],[-1,-7],[-2,-19],[-2,-20],[-2,-13],[0,-1],[0,0],[0,0],[-1,-2],[0,-2],[0,-1],[-5,-16],[-14,-37],[-6,2],[-5,1],[-16,13],[-11,8],[0,1],[-2,2],[-1,1],[0,0],[0,1],[-5,9],[-1,3],[-1,1],[-2,5],[-5,9],[-1,2],[0,0],[-1,1],[-1,6],[-1,6],[0,5],[0,1],[-1,2],[0,54],[0,4],[0,1],[0,0],[3,19],[3,20],[0,0],[0,2],[2,7],[20,62],[8,29],[8,26],[10,37],[0,0],[1,2],[1,3],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,0],[1,0],[1,0],[0,0],[4,0],[1,0],[1,0],[0,-1],[0,0],[1,-2],[2,-1],[0,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-2],[0,0],[-1,-1],[0,-1],[9,-26],[6,-19],[0,0],[0,-3],[1,-17]],[[30347,26161],[-17,-24],[-59,39],[-8,6],[0,0],[-51,72],[0,0],[49,282],[54,21],[17,7],[0,0],[25,-99],[17,-72],[-27,-232]],[[29971,26404],[-4,-35],[-51,46],[-161,318],[12,118],[0,0],[24,-2],[0,0],[27,-48],[102,-178],[38,-165],[13,-54]],[[52480,16289],[0,0],[1,1],[1,0],[21,-2],[1,0],[0,0],[1,0],[0,0],[0,0],[6,-6],[3,-3],[1,-2],[-1,-1],[0,-2],[-1,-5],[0,-1],[0,-1],[-2,-2],[-5,-5],[-9,-7],[-3,-1],[0,0],[0,0],[-1,0],[0,0],[-1,1],[-1,1],[-1,2],[-1,2],[-1,4],[-7,18],[-1,9]],[[52787,15281],[5,-22],[5,-24],[6,-60],[0,0],[0,-1],[-1,-1],[0,-2],[0,0],[0,-1],[0,0],[-1,-1],[-2,-5],[0,-2],[-1,-1],[0,0],[0,0],[0,-1],[-1,0],[0,-1],[-2,-2],[0,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-3,0],[-4,1],[-2,1],[0,1],[-1,1],[0,0],[-4,4],[-2,2],[0,1],[-1,0],[0,1],[-4,7],[-7,22],[-1,13],[0,8],[-1,5],[8,30],[7,32],[1,3],[1,1],[0,0],[0,0],[0,0],[0,0],[3,-2],[5,-3],[1,-1],[0,0]],[[53326,13431],[8,-21],[11,-28],[27,-101],[5,-11],[8,-19],[6,-32],[7,-46],[2,-14],[0,-1],[0,-17],[0,0],[-4,-12],[-9,-31],[-7,-9],[-1,-1],[-1,-1],[0,0],[-1,0],[-1,0],[-3,1],[-1,1],[0,0],[-1,0],[0,0],[-8,9],[-54,58],[-68,184],[0,0],[0,2],[-1,3],[-4,12],[0,1],[0,0],[0,2],[-1,2],[-1,5],[-18,89],[0,2],[0,3],[-1,2],[0,1],[0,2],[0,4],[0,0],[0,2],[0,1],[0,0],[0,1],[0,0],[2,14],[0,0],[0,1],[1,4],[0,2],[1,2],[1,2],[1,3],[0,1],[1,3],[1,2],[0,1],[3,4],[1,1],[0,0],[0,0],[1,1],[2,1],[1,2],[1,0],[0,0],[16,11],[1,0],[0,0],[1,0],[0,0],[2,0],[1,0],[0,-1],[1,0],[0,0],[2,-1],[1,-1],[28,-30],[20,-32],[21,-33]],[[44084,6687],[-3,-33],[0,0],[-23,9],[-35,12],[-54,95],[0,0],[-11,56],[31,63],[25,53],[0,0],[5,-4],[6,-5],[59,-246]],[[51148,16375],[-92,-46],[-70,-34],[-229,55],[-213,-39],[-11,45],[-5,304],[-1,47],[28,100],[0,0],[14,7],[31,15],[240,-27],[284,-33],[70,-50],[36,-26],[9,-57],[11,-75],[-49,-90],[-53,-96]],[[55382,42791],[4,15],[0,2],[4,5],[4,1],[2,1],[1,-1],[0,0],[3,-2],[2,-1],[0,0],[0,-1],[30,-24],[0,-1],[1,-1],[3,-4],[0,0],[2,-17],[3,-92],[2,-67],[0,-2],[0,-5],[0,0],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-4,-7],[-13,-16],[-22,-26],[-4,-5],[-2,-1],[-13,7],[-2,3],[-12,23],[0,2],[0,1],[0,3],[-1,2],[0,2],[0,3],[1,0],[0,0],[0,2],[2,2],[0,1],[0,0],[0,1],[3,6],[2,2],[1,1],[0,1],[2,3],[1,1],[0,0],[6,4],[-4,190]],[[55482,42517],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[-1,-2],[0,0],[0,-1],[0,0],[-2,-1],[-1,-1],[0,0],[-1,0],[-24,-5],[-3,1],[-2,2],[-4,7],[0,1],[14,30],[2,4],[1,2],[1,0],[0,1],[1,1],[0,0],[1,1],[1,1],[1,1],[0,0],[1,1],[1,0],[1,0],[3,1],[1,0],[0,0],[0,0],[1,0],[2,0],[0,0],[2,-1],[0,-1],[0,0],[1,-1],[0,-3],[1,-3],[1,-18],[0,0],[0,0],[-1,-1],[0,-2],[0,0],[0,0],[1,-1],[0,0],[0,0],[0,-4],[1,-6]],[[48322,19839],[4,-8],[2,-4],[-1,-7],[0,0],[-5,-13],[-4,-11],[-46,-30],[-4,1],[-5,1],[-10,11],[-11,12],[-7,39],[1,4],[3,27],[0,0],[41,-11],[42,-11]],[[48519,19847],[15,-15],[0,-32],[0,0],[-61,-14],[-4,-1],[0,0],[-6,79],[0,0],[56,-17]],[[48774,19473],[-1,0],[0,0],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[-2,19],[0,1],[0,2],[1,19],[1,20],[1,6],[0,0],[3,5],[0,0],[2,1],[0,1],[0,0],[1,1],[1,0],[0,0],[0,0],[1,0],[0,-1],[0,0],[1,-4],[0,-1],[0,-2],[1,-60],[0,0],[-1,-1],[0,-1],[-1,-2],[0,0],[-1,-1],[0,-1],[0,0],[-4,-6],[0,0]],[[48616,19557],[0,-4],[-1,-5],[0,-8],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-3,-3],[0,0],[-9,-1],[0,0],[-1,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,1],[0,1],[0,0],[-1,3],[-3,14],[0,1],[-1,1],[0,1],[0,0],[0,1],[1,2],[0,1],[0,1],[3,8],[13,14],[5,6],[1,-14],[1,-11],[0,-3]],[[48604,19632],[0,0],[-1,-1],[0,0],[-1,-1],[0,0],[-1,1],[-1,1],[0,2],[-1,7],[-1,7],[1,25],[1,12],[0,3],[1,2],[0,3],[0,0],[0,1],[0,0],[1,1],[0,0],[1,1],[3,3],[0,0],[1,1],[1,0],[3,1],[0,0],[0,0],[0,0],[0,0],[1,-1],[0,-3],[-5,-46],[-1,-8],[-2,-11],[0,0]],[[48193,19735],[3,-1],[2,-1],[0,0],[-4,-25],[-4,-27],[-1,-3],[0,-1],[-1,-4],[-1,-2],[-2,-5],[-3,-5],[0,-1],[-2,-3],[0,0],[-3,-3],[0,-1],[0,0],[-1,-1],[-2,-1],[0,0],[-1,0],[0,0],[0,-1],[-1,1],[0,0],[-1,2],[0,0],[1,1],[0,1],[0,1],[4,23],[2,15],[0,5],[0,1],[1,1],[0,1],[0,1],[0,3],[0,2],[1,0],[0,1],[0,2],[1,8],[0,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,0],[7,8],[3,1],[0,1],[0,0]],[[48608,19745],[10,-42],[3,-15],[0,0],[-31,44],[-10,40],[0,0],[9,-9],[19,-18]],[[48424,19923],[15,-67],[0,0],[-22,19],[-32,28],[-10,13],[-1,2],[0,0],[-2,5],[-3,13],[-1,1],[0,0],[0,1],[-1,5],[0,0],[0,0],[1,2],[0,2],[1,3],[4,7],[1,1],[0,0],[1,1],[0,0],[5,3],[0,0],[0,0],[6,0],[3,1],[1,0],[2,0],[0,0],[1,0],[1,0],[1,0],[1,0],[0,0],[19,-8],[3,-2],[2,-2],[1,-4],[3,-24]],[[53341,9850],[7,0],[8,-2],[0,0],[0,-2],[1,-2],[0,0],[-1,-6],[-1,-2],[0,-1],[0,-1],[0,0],[-14,-46],[-24,-535],[-2,-35],[-23,-22],[-2,-3],[-9,-8],[-15,-14],[-5,-5],[-3,-2],[-10,-8],[-22,-3],[-304,-24],[0,0],[-8,33],[18,18],[16,17],[56,48],[18,17],[45,35],[0,0],[43,97],[-1,98],[-1,97],[-7,45],[-5,22],[-4,18],[-13,16],[-11,12],[0,0],[73,91],[73,24],[50,17],[77,16]],[[53532,10286],[0,-5],[-3,-21],[-2,-12],[-4,-24],[-19,-20],[-8,-9],[-15,-14],[-13,-12],[-60,-49],[-18,5],[2,14],[2,11],[57,102],[0,0],[70,53],[1,0],[2,1],[1,0],[0,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[0,0],[0,0],[0,-1],[1,-1],[0,0],[1,-5],[0,-2],[0,-6],[0,-3],[0,-1]],[[11281,17706],[0,0],[-66,-113],[-269,-298],[-34,20]],[[10912,17315],[-122,72],[-44,470],[31,190]],[[10777,18047],[51,117]],[[10828,18164],[4,41]],[[10832,18205],[-8,23]],[[10824,18228],[-19,49],[-9,82],[2,14]],[[10798,18373],[5,36],[4,4]],[[10807,18413],[12,11],[137,-128]],[[10956,18296],[153,-144]],[[11109,18152],[136,-309]],[[11245,17843],[40,-93],[-2,-26]],[[11283,17724],[-2,-18],[0,0]],[[10466,19097],[21,20],[103,-90],[55,4],[108,-132],[3,-41]],[[10756,18858],[2,-34],[0,0]],[[10758,18824],[0,0],[-4,-5]],[[10754,18819],[-55,-66],[-26,-12]],[[10673,18741],[-88,-38],[-8,6]],[[10577,18709],[-15,11],[-44,98]],[[10518,18818],[-73,165],[4,54]],[[10449,19037],[4,49],[13,11]],[[10224,19164],[-55,12],[0,0]],[[10169,19176],[0,0],[27,113]],[[10196,19289],[239,-56],[-36,-78],[-34,-21],[-141,30]],[[9865,19735],[0,0],[47,-123],[15,-95],[27,-53]],[[9954,19464],[9,23]],[[9963,19487],[47,-131],[0,0]],[[10010,19356],[0,0],[-22,-9]],[[9988,19347],[-31,-12],[-154,48]],[[9803,19383],[-1,0],[0,0]],[[9802,19383],[-71,229],[0,0]],[[9731,19612],[0,0],[17,16]],[[9748,19628],[117,107],[0,0]],[[9262,19973],[-1,-11],[-36,-59]],[[9225,19903],[-14,-22],[-12,4]],[[9199,19885],[-58,17],[-42,56]],[[9099,19958],[-43,57],[0,0]],[[9056,20015],[0,0],[25,105],[65,77],[0,0]],[[9146,20197],[47,3]],[[9193,20200],[41,3],[0,0]],[[9234,20203],[0,0],[6,-7]],[[9240,20196],[29,-32],[1,-10]],[[9270,20154],[7,-55],[-15,-126]],[[53239,12160],[12,-4],[4,-9],[1,-3],[0,0],[0,-1],[6,-29],[0,-1],[1,-3],[0,-4],[2,-12],[0,-1],[0,0],[0,-1],[0,-1],[0,-13],[0,-3],[-2,-46],[-6,-39],[-6,-35],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[-11,-20],[-1,0],[-1,-1],[0,0],[0,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-2,1],[-1,1],[-4,5],[-4,5],[-6,9],[-9,12],[-6,16],[-1,3],[-2,7],[-3,10],[-1,34],[0,1],[0,1],[1,3],[1,8],[0,1],[0,1],[4,21],[1,3],[1,5],[0,1],[19,56],[4,12],[0,0],[0,0],[1,2],[0,1],[1,1],[1,3],[5,7],[0,1],[1,0],[1,1],[0,0],[1,1],[2,1],[0,1],[2,0],[0,0],[1,0]],[[53117,11436],[-1,0],[0,0],[0,0],[-1,1],[0,1],[-2,3],[-1,0],[0,1],[0,0],[0,2],[-1,2],[0,0],[1,17],[1,0],[0,0],[0,1],[0,0],[1,0],[3,1],[2,0],[2,1],[2,0],[9,-9],[0,-1],[0,0],[1,-2],[0,-1],[0,0],[-1,-1],[0,-1],[-2,-4],[0,0],[-1,-1],[-11,-9],[-1,-1]],[[53178,11578],[0,-2],[0,-1],[0,-3],[0,-2],[0,-3],[0,0],[0,-1],[0,-2],[0,0],[0,-1],[-2,-7],[-5,-17],[-6,-3],[-1,0],[0,1],[-5,7],[-1,2],[0,2],[1,1],[4,12],[8,17],[0,0],[5,3],[0,0],[0,0],[1,0],[1,-2],[0,-1],[0,0]],[[53220,11825],[0,-2],[-1,-2],[-3,-9],[-2,-6],[-1,0],[0,-1],[-1,-1],[-6,-4],[-2,0],[0,0],[-1,0],[0,0],[0,1],[-1,0],[0,0],[0,0],[-4,1],[-5,2],[-3,6],[2,2],[21,34],[11,12],[1,0],[0,0],[0,-3],[0,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[-1,-5],[-1,-5],[-3,-15]],[[52010,9907],[-17,-7],[-44,-17],[-88,48],[-71,40],[11,31],[15,39],[0,0],[174,53],[34,46],[3,4],[0,0],[1,-2],[15,-35],[24,-138],[0,0],[-57,-62]],[[51723,16770],[0,-1],[0,0],[1,-6],[0,-1],[1,-2],[-1,-2],[-4,-10],[0,0],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-1],[0,0],[-1,0],[-19,-13],[-11,-8],[-6,-3],[0,0],[-3,-1],[-4,0],[-13,1],[-1,0],[-2,1],[0,0],[-1,0],[0,1],[0,1],[0,0],[1,2],[0,0],[0,1],[30,49],[3,3],[32,5],[0,0],[1,0],[0,-1],[3,-6]],[[51650,16765],[0,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,0],[-1,-1],[-6,-2],[-1,0],[-1,0],[-1,0],[-2,1],[-11,5],[0,2],[1,5],[3,5],[3,6],[0,0],[1,-1],[1,0],[0,0],[3,-1],[4,-3],[5,-6],[2,-3],[0,-1]],[[51829,16820],[-5,-7],[0,0],[0,-1],[-43,-60],[0,0],[-8,-3],[0,0],[0,1],[0,1],[0,1],[2,24],[1,5],[1,0],[0,0],[0,2],[10,23],[14,6],[22,9],[2,1],[1,0],[0,0],[2,1],[0,0],[1,-3],[0,0]],[[51823,17043],[5,-6],[1,0],[0,-1],[1,0],[0,-1],[2,-2],[1,-1],[0,-1],[4,-6],[5,-9],[0,0],[1,-1],[0,-1],[6,-14],[0,-1],[1,-2],[0,-3],[0,0],[0,-1],[0,0],[0,-2],[0,0],[-1,0],[-1,-2],[0,0],[0,0],[-2,0],[0,0],[-3,1],[-15,11],[-26,18],[2,10],[1,10],[0,0],[8,2],[7,2],[1,0],[1,0],[1,0],[0,0]],[[51631,16163],[1,-1],[3,-4],[16,-21],[2,-2],[2,-3],[0,0],[0,0],[0,0],[2,-1],[1,0],[5,8],[6,5],[2,1],[2,0],[5,0],[32,-2],[1,-7],[0,-5],[0,0],[-27,-21],[-13,-9],[-10,-7],[-8,-3],[-25,-7],[-23,-6],[-12,-1],[-16,-1],[-1,3],[-3,4],[0,0],[0,6],[0,36],[6,16],[5,11],[40,13],[7,-2]],[[51643,16695],[9,-1],[3,0],[1,-1],[4,-2],[13,-12],[1,-2],[2,-2],[0,0],[0,0],[0,0],[0,-1],[0,0],[0,0],[-1,-6],[0,0],[0,0],[-2,-5],[0,0],[-1,-1],[-5,-1],[-44,-15],[-2,0],[-1,1],[-2,1],[-2,7],[0,1],[0,0],[-1,1],[0,0],[0,0],[0,1],[0,0],[0,2],[0,2],[0,1],[0,0],[0,0],[0,1],[0,0],[0,1],[0,1],[0,1],[0,1],[0,0],[8,12],[1,1],[0,0],[19,14]],[[51572,16691],[2,-1],[5,-5],[4,-4],[2,-3],[4,-6],[2,-3],[7,-14],[-2,-6],[0,0],[-3,-3],[-4,-1],[-7,-3],[-2,0],[-3,0],[-7,3],[0,0],[-5,3],[-5,5],[0,0],[-1,1],[0,1],[0,3],[-1,4],[-4,6],[-2,2],[-29,6],[-3,-2],[-7,-2],[-1,0],[0,1],[-1,0],[-3,6],[0,0],[0,0],[-1,3],[0,2],[0,0],[1,2],[2,2],[4,2],[0,1],[14,6],[4,2],[4,1],[10,2],[1,0],[10,-4],[7,-3],[4,-2],[4,-2]],[[50072,10933],[-3,-2],[-1,2],[0,0],[0,1],[-1,1],[0,0],[0,1],[-1,1],[0,1],[-3,3],[0,2],[-1,0],[0,1],[-2,6],[-4,17],[0,4],[0,0],[-3,29],[0,27],[1,2],[1,2],[0,1],[0,0],[0,1],[0,0],[0,1],[1,4],[0,4],[-1,5],[-2,11],[-2,7],[-1,2],[0,0],[0,1],[-5,15],[0,0],[0,1],[-1,2],[-1,2],[-1,2],[0,0],[0,1],[-5,5],[-5,6],[0,0],[0,1],[-7,4],[-1,0],[0,0],[5,15],[9,25],[38,-32],[14,-21],[0,-1],[2,-57],[-5,-36],[-7,-45],[0,-2],[0,-1],[-3,-8],[0,-1],[0,-2],[0,0],[-1,-1],[-1,-3],[0,-1],[-1,-1],[0,0],[-1,-1],[-1,-1]],[[52434,15882],[-1,-1],[-4,6],[-1,0],[-4,12],[-1,5],[-1,1],[0,1],[-2,8],[-1,1],[0,2],[1,13],[1,3],[0,0],[6,0],[0,-1],[14,-22],[2,-4],[1,-1],[0,-1],[1,0],[0,-1],[0,0],[0,-1],[0,-1],[1,-2],[-2,-8],[0,-1],[-1,0],[0,-1],[0,-1],[0,0],[-4,-3],[-2,-2],[-1,0],[0,-1],[-1,0],[0,0],[0,0],[-1,0],[0,0]],[[52323,16023],[0,0],[-7,-3],[-1,-1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[0,0],[0,0],[0,1],[-1,2],[0,0],[0,1],[0,1],[0,0],[1,3],[0,3],[0,4],[1,5],[1,2],[1,3],[1,1],[1,1],[2,0],[2,1],[2,-1],[5,-2],[0,-1],[1,0],[0,-1],[0,-5],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-9],[-1,0]],[[39723,149],[23,-66],[30,-83]],[[39616,0],[107,149]],[[44052,22328],[-60,-16],[0,0],[21,82],[5,17],[74,77],[65,67],[35,-40],[-18,-115],[0,0],[-39,0],[-7,0],[-4,-4],[-72,-68]],[[25739,43655],[-98,181],[0,0],[56,165],[0,0],[22,0],[0,0],[5,-98]],[[25724,43903],[84,-232],[19,-53],[-9,-68],[-14,3],[-11,1],[-54,101]],[[935,46930],[-18,-9],[-2,0],[-23,17],[-30,24],[-1,4],[-6,33],[57,13]],[[912,47012],[0,0],[2,34],[0,15]],[[914,47061],[-76,57],[-45,33],[0,0],[19,34],[43,9],[0,0],[24,-10]],[[879,47184],[147,-66],[-1,-18]],[[1025,47100],[-90,-170]],[[1385,46969],[9,86],[47,118],[92,96],[0,0],[57,-84],[25,-38],[0,0],[0,-33]],[[1615,47114],[-1,-89],[-235,-113],[0,0],[6,57]],[[3143,47346],[0,0],[-103,-22],[-123,-26],[-94,5],[-63,3],[-79,54],[0,0],[1,3],[7,19],[217,25],[62,-42],[0,0],[175,-19]],[[2200,47274],[-15,47],[259,82]],[[2444,47403],[51,35]],[[2495,47438],[32,21],[52,59]],[[2579,47518],[-24,15],[-43,27],[0,0]],[[2512,47560],[66,72],[30,9]],[[2608,47641],[16,4],[55,-48],[0,0],[14,-57],[-77,-135]],[[2616,47405],[-23,-40],[-242,-82],[-151,-9]],[[5076,48159],[-102,-82],[-20,14]],[[4954,48091],[-7,5],[0,0]],[[4947,48096],[49,134],[20,56],[212,327],[89,62],[42,-1]],[[5359,48674],[33,-1]],[[5392,48673],[73,-22],[0,0],[-13,-89],[-4,-26],[0,0],[-310,-329],[-62,-48]],[[6011,48937],[102,142],[0,0],[28,-23],[36,-31],[0,0],[-5,-18],[-9,-33],[-12,-15],[-100,-122],[0,0],[81,-45],[0,0],[-21,-19],[-139,-125],[-164,-94],[-195,-112],[-87,-33],[-19,11],[-64,38],[0,0],[72,71],[222,106],[48,23]],[[5785,48658],[0,0],[15,19]],[[5800,48677],[88,113],[0,0],[24,-10]],[[5912,48780],[-7,68],[-113,44]],[[5792,48892],[-18,24],[-10,13],[0,0],[-1,34],[63,84],[131,42]],[[5957,49089],[25,7],[22,-49],[0,0],[-8,-12],[-13,-19]],[[5983,49016],[0,0],[1,-12],[3,-24],[21,-39],[3,-4],[0,0]],[[7433,49865],[0,0],[2,-4]],[[7435,49861],[34,-90]],[[7469,49771],[50,10],[10,1],[-3,-37]],[[7526,49745],[-3,-29],[0,0],[-267,-52]],[[7256,49664],[-156,-73],[-81,-39]],[[7019,49552],[-1,-14]],[[7018,49538],[-3,-21],[0,0],[-15,-15],[-36,-34],[-91,-25],[-76,23],[-46,99],[1,47],[1,15],[0,0],[70,105],[96,141],[290,146]],[[7209,50019],[137,15]],[[7346,50034],[16,1],[18,1],[37,-67],[13,-81],[3,-23]],[[21015,50954],[7,-8],[6,-5],[37,12]],[[21065,50953],[6,1],[16,-8],[54,-29],[79,-102]],[[21220,50815],[59,-77],[114,-259]],[[21393,50479],[0,0],[-15,-5]],[[21378,50474],[-24,-7],[-57,33],[-40,24]],[[21257,50524],[0,-5]],[[21257,50519],[3,-62],[0,0],[120,-58],[27,-51],[9,-17],[9,-34]],[[21425,50297],[21,-83],[25,-207]],[[21471,50007],[15,5]],[[21486,50012],[28,8],[12,-207],[-11,-39],[-16,-52],[-60,-8],[-87,50],[-116,240],[-58,119]],[[21178,50123],[-39,20]],[[21139,50143],[-53,27],[-22,29],[-25,34],[-13,0],[-14,-1],[0,0],[7,-52],[5,-37]],[[21024,50143],[69,-210],[90,-156]],[[21183,49777],[13,-51],[8,-30],[0,0],[-11,3],[-58,15],[-108,185],[-40,70],[0,0],[-18,84],[-47,225]],[[20922,50278],[96,102],[0,0],[-12,39],[-20,63],[-63,56],[-61,55],[0,0],[0,3],[-9,116]],[[20853,50712],[0,0],[37,3],[15,24],[5,7]],[[20910,50746],[-8,49],[0,0],[-60,102],[-18,-8],[-15,-7],[-29,98],[-13,223],[11,27],[10,-2],[11,-3],[94,-15],[23,-4],[99,-252]],[[21214,51508],[48,-69],[-74,-54],[-42,-30],[-246,-31],[-35,-5],[-119,94],[-85,35]],[[20661,51448],[9,-220],[-8,-59],[-20,-135],[-8,-26],[-7,-21],[-79,-82],[0,0],[-26,62],[-25,60],[0,0],[-13,138],[7,79],[5,61],[-1,21],[-5,87],[-60,157],[-9,98],[7,10],[30,44],[71,29],[28,11],[28,-18],[5,-3],[21,-64]],[[20611,51677],[30,-96]],[[20641,51581],[54,34],[-3,47],[0,0],[-33,100],[-27,29],[-39,41],[2,36],[9,6],[46,29],[89,-25],[0,0],[177,-53],[111,-86]],[[21027,51739],[53,-41],[134,-190]],[[20007,52036],[0,0],[-48,5],[-12,17]],[[19947,52058],[-63,93],[0,0],[36,69]],[[19920,52220],[1,36],[0,0],[0,0],[0,2],[0,17],[31,35],[9,10],[20,1],[7,0],[42,-51]],[[20030,52270],[149,-70],[21,-43],[36,-75],[95,-572]],[[20331,51510],[-3,-204],[-3,-176],[-16,-78],[0,0],[-101,150],[-40,104],[-28,75],[-2,24],[-2,21],[-57,87],[-51,77],[-41,22],[46,238],[-26,186]],[[12074,52670],[96,-51],[133,3],[89,1],[-50,-105]],[[12342,52518],[-20,-42],[0,0]],[[12322,52476],[20,-32],[38,-61]],[[12380,52383],[-13,-65]],[[12367,52318],[-22,-108],[-296,-132]],[[12049,52078],[40,-92],[27,-63],[0,0],[-128,-106],[-14,-5],[-17,-5],[-16,33],[-15,33],[0,7],[-1,30],[0,0],[49,91],[0,0],[-40,-24],[-95,-126],[-75,-156],[-68,-75],[-36,-39],[-77,2],[0,0],[57,116],[115,237]],[[11755,51936],[-4,9],[-5,11]],[[11746,51956],[-111,-134],[-121,-144],[0,0],[-79,150],[-131,247],[1,34],[2,31],[72,144],[169,131],[109,-15],[156,215],[234,-31]],[[12047,52584],[0,0],[4,17],[1,3],[-7,8]],[[12045,52612],[-85,98],[18,8],[4,2],[92,-50]],[[20612,52629],[22,-46],[0,0],[11,-38]],[[20645,52545],[46,-153],[-13,-34],[-1,-3],[0,0],[-50,82],[-62,162],[-45,120],[-47,33],[-5,3]],[[20468,52755],[0,0],[7,-65],[7,-70]],[[20482,52620],[156,-260],[4,-19],[24,-108],[1,-48],[1,-27],[0,0],[-37,-59],[0,0],[-26,-11],[-38,-17],[-177,-234],[-53,-4],[0,0],[-14,148],[32,260],[-137,647],[68,45],[0,0],[234,-109],[92,-195]],[[20008,52818],[176,-60],[0,0],[8,-28],[5,-18],[0,0],[-1,-60],[-32,-36]],[[20164,52616],[-94,47],[0,0]],[[20070,52663],[123,-162],[35,-159],[5,-64],[0,0],[-7,-24],[-6,-19],[0,0],[-98,1],[-174,152],[-40,34]],[[19908,52422],[-37,-35]],[[19871,52387],[-3,-3]],[[19868,52384],[22,-16],[24,-140],[-69,-80],[-64,26],[-52,68],[-45,108],[-66,156]],[[19618,52506],[-20,-10],[-60,66],[-71,77],[-8,108],[14,64],[333,166],[6,4],[55,-52],[21,-151],[0,0],[120,40]],[[11978,52837],[6,11],[59,61]],[[12043,52909],[129,83],[2,1],[0,0],[38,144],[170,156],[10,10],[0,0],[3,-2],[6,-3],[0,0],[-23,-83],[-33,-56],[0,0],[81,-72],[94,-83],[-8,-10]],[[12512,52994],[-60,-83]],[[12452,52911],[-208,-150],[-39,-28],[-52,-8],[-82,-13],[-33,11],[-102,35],[0,0],[42,79]],[[14493,54527],[80,85]],[[14573,54612],[170,255],[0,0],[5,-17]],[[14748,54850],[75,-41],[0,0],[-280,-411],[-37,-19],[-96,-49],[-41,14],[19,71],[105,112]],[[6410,54772],[21,-248]],[[6431,54524],[-36,-39]],[[6395,54485],[-41,-43],[-59,-36],[-116,-71],[-244,119],[-163,78],[-66,56],[-30,25],[-47,107],[-1,2],[19,10]],[[5647,54732],[38,19],[83,-5]],[[5768,54746],[123,54],[84,36]],[[5975,54836],[197,52]],[[6172,54888],[17,5],[4,6]],[[6193,54899],[13,26],[0,0],[21,-65]],[[6227,54860],[5,-17],[0,0]],[[6232,54843],[75,-2]],[[6307,54841],[34,-23],[69,-46],[0,0]],[[4928,57481],[24,-69],[-23,-7],[-1,76]],[[3787,57871],[148,-46],[121,-38]],[[4056,57787],[1,0],[189,103]],[[4246,57890],[93,1],[10,0],[0,0],[88,-69],[19,-70],[107,-87]],[[4563,57665],[88,-42]],[[4651,57623],[59,-28],[186,-19]],[[4896,57576],[32,-95]],[[4928,57481],[0,-77],[-345,-116],[-2,0],[-295,268],[-187,86],[-113,8],[-62,-43],[-71,-49],[-29,1],[-30,1],[-87,40],[-21,29],[-10,14],[0,0],[-8,26],[-12,42],[0,4],[5,75],[30,99],[6,17],[3,8],[8,21],[38,7],[0,0],[2,-46]],[[3748,57896],[0,0],[26,-17],[13,-8]],[[0,62702],[153,-76]],[[153,62626],[69,15],[124,-64],[97,-50],[560,-389],[292,-171],[420,-246],[128,-53],[266,-215],[238,-276],[0,0],[-48,-29],[-14,-211],[0,0],[72,-398],[114,-169],[8,-12],[0,0],[15,0],[117,-1],[56,-71],[17,-21],[31,-4],[39,-5],[64,61],[0,0],[13,66],[-18,15],[-78,66],[-15,239],[-17,68],[-24,98],[-78,78],[-105,-7],[-61,-5],[-26,21],[0,0],[433,35],[904,-169],[71,-120],[50,-85],[247,-192],[316,-245],[27,-8],[89,-28],[0,0],[-4,-20],[-16,-89],[0,0],[-50,-12],[-63,-14],[-184,-153],[0,0],[33,-43],[-9,-132],[-34,-47],[-72,14],[-46,9],[-81,45],[-62,34],[0,0],[-16,-89],[-16,-90],[-235,-27],[-56,28],[-298,150],[-133,17],[-6,-8],[-4,-6],[0,0],[69,-29],[95,-41],[66,-86],[5,-6],[45,-83],[0,0],[69,-300],[0,0],[-16,-39],[-3,-6],[0,0],[-56,-55],[-57,-57],[-115,-24],[-104,-23],[-11,-9],[-18,-16],[29,-128],[73,-89],[68,-33],[68,-33],[59,-90],[-3,-21],[-67,-13],[-71,-13],[-55,23],[-22,-20],[-22,-19],[-5,-23],[-7,-28],[-110,-51],[-58,21],[-67,23],[-28,73],[-90,-42],[-149,81],[-34,86],[-101,126],[-313,126],[-194,29],[0,0],[-8,8],[-108,91],[-27,60],[-29,64],[-50,286],[-4,24],[-23,13],[-52,28],[-247,86],[-137,48],[-78,-8],[-95,-96],[-94,-27],[-327,-8],[-31,21],[-84,58],[-71,229],[7,172],[2,57],[0,0],[75,99],[0,0],[16,182],[-5,15],[-8,24],[-10,-2],[-12,-2],[-14,-27],[-80,-158],[-42,-24],[-6,-3],[0,0],[-56,7],[-46,77],[0,0],[-57,-16],[-216,-61],[-48,-165],[2,-47],[2,-28],[0,0],[10,-26],[39,-92],[6,-6],[115,-98],[49,-128],[0,0],[-133,-281],[-172,-143]],[[17,59125],[-17,-15]],[[1114,64780],[25,-38],[0,0],[-15,-45],[0,0],[-14,-15],[-47,-51],[-120,-56],[-35,-17],[-678,-123],[-34,12]],[[196,64447],[-196,69]],[[0,65019],[393,53]],[[393,65072],[1,0],[12,2],[0,0],[17,-2],[181,-16],[75,-22],[100,-29],[224,-180],[111,-45]],[[10824,18228],[-19,49],[-9,82],[2,14]],[[10807,18413],[12,11],[137,-128]],[[11245,17843],[40,-93]],[[11285,17750],[-2,-26]],[[11281,17706],[-66,-113],[-269,-298],[-34,20]],[[10758,18824],[-4,-5]],[[10673,18741],[-88,-38],[-8,6]],[[10518,18818],[-73,165],[4,54]],[[10466,19097],[21,20]],[[10487,19117],[103,-90]],[[10590,19027],[55,4],[108,-132],[3,-41]],[[10224,19164],[-55,12]],[[10010,19356],[-22,-9]],[[9803,19383],[-1,0]],[[9731,19612],[17,16]],[[9865,19735],[47,-123]],[[9912,19612],[15,-95],[27,-53],[0,0]],[[9199,19885],[-58,17],[-42,56]],[[9056,20015],[25,105],[65,77]],[[9193,20200],[41,3]],[[9240,20196],[29,-32],[1,-10]],[[9262,19973],[-1,-11],[-36,-59]],[[36640,23733],[-75,45],[-152,138]],[[36413,23916],[-56,50],[-28,10],[-62,24],[-176,565]],[[36091,24565],[-19,354],[-32,108],[-29,95],[-76,127]],[[35935,25249],[-41,68],[-206,505],[-151,639]],[[35537,26461],[-27,52],[-67,129]],[[35443,26642],[-81,127],[-104,161]],[[35258,26930],[-130,133],[-262,59]],[[34866,27122],[-10,2],[-208,-90]],[[34648,27034],[-63,-209]],[[34585,26825],[-41,-273],[0,0],[0,0],[-92,-177],[-33,-31],[-82,34],[-210,191],[-99,90],[-207,287],[0,0],[-64,223],[-16,200],[-11,48],[-86,382]],[[33644,27799],[-135,196]],[[33509,27995],[-79,89]],[[33430,28084],[-71,81],[-227,374],[-119,221]],[[33013,28760],[-29,84]],[[32984,28844],[-19,18],[-11,11],[-17,8]],[[32937,28881],[-19,10],[-603,0],[-91,0]],[[32224,28891],[-20,-10],[-39,-19],[0,0],[-5,-380]],[[32160,28482],[-1289,6],[-898,566],[-706,446],[0,0]],[[25647,44543],[9231,-2]],[[34878,44541],[3137,-1]],[[38015,44540],[6,200]],[[38021,44740],[4,138]],[[38025,44878],[84,-6]],[[38109,44872],[43,-36],[73,-400]],[[38225,44436],[-3,-97]],[[38222,44339],[46,-55],[273,-72],[75,-85]],[[38616,44127],[77,10]],[[38693,44137],[81,11],[3,6],[10,23]],[[38787,44177],[78,39]],[[38865,44216],[38,-6],[59,-9],[86,-42],[69,-34],[36,-58]],[[39153,44067],[61,-97]],[[39214,43970],[78,-76]],[[39292,43894],[205,-72]],[[39497,43822],[140,-138]],[[39637,43684],[119,20]],[[39756,43704],[181,138]],[[39937,43842],[10,8],[41,-61]],[[39988,43789],[43,-64]],[[40031,43725],[211,7]],[[40242,43732],[152,-102]],[[40394,43630],[90,4]],[[40484,43634],[26,1]],[[40510,43635],[151,7]],[[40661,43642],[137,114],[117,98],[123,49],[16,7],[792,-628],[632,-535],[148,-125],[5,-27],[26,-135]],[[42657,42460],[128,-135]],[[42785,42325],[37,-38]],[[42822,42287],[19,-20]],[[42841,42267],[49,-53]],[[42890,42214],[59,-61]],[[42949,42153],[106,-171]],[[43055,41982],[39,-62]],[[43094,41920],[104,-9],[5,-1],[62,-98]],[[43265,41812],[83,-300]],[[43348,41512],[179,-163],[148,-136],[85,-756],[93,-833],[-82,-328],[-28,-160]],[[43743,39136],[-4,-25]],[[43739,39111],[-43,-247]],[[43696,38864],[-162,-310]],[[43534,38554],[-26,-50],[-73,-39],[-6,-4]],[[43429,38461],[-5,-2]],[[43424,38459],[-7,-22]],[[43417,38437],[-15,-42]],[[43402,38395],[-9,-180],[30,-115],[15,-55],[0,0],[176,-161],[50,3],[75,6],[257,240],[250,234],[427,139],[181,98],[417,320]],[[45271,38924],[-11,79]],[[45260,39003],[-22,167]],[[45238,39170],[-6,43]],[[45232,39213],[-16,64]],[[45216,39277],[-10,43]],[[45206,39320],[-44,176]],[[45162,39496],[228,165],[706,2],[216,190],[87,229]],[[46399,40082],[202,266]],[[46601,40348],[319,422]],[[46920,40770],[29,25]],[[46949,40795],[95,79]],[[47044,40874],[78,45]],[[47122,40919],[357,-18]],[[47479,40901],[1096,15]],[[48575,40916],[40,18]],[[48615,40934],[28,81],[57,61]],[[48700,41076],[106,112]],[[48806,41188],[156,119]],[[48962,41307],[17,13]],[[48979,41320],[0,0],[132,254],[24,86],[7,24]],[[49142,41684],[42,396]],[[49184,42080],[101,366]],[[49285,42446],[347,695]],[[49632,43141],[16,-6],[65,-24],[-1,-43]],[[49712,43068],[-3,-108]],[[49709,42960],[65,-71]],[[49774,42889],[275,160]],[[50049,43049],[46,-22]],[[50095,43027],[177,-241]],[[50272,42786],[6,-839]],[[50278,41947],[-11,-342]],[[50267,41605],[141,-154]],[[50408,41451],[2,-196]],[[50410,41255],[1,-85]],[[50411,41170],[84,-124]],[[50495,41046],[8,9],[13,15],[22,-10],[19,-8]],[[50557,41052],[27,-74],[2,-5]],[[17473,54818],[0,0],[208,-76]],[[17681,54742],[319,39]],[[18000,54781],[59,64],[271,15],[6,0]],[[18336,54860],[-56,-240]],[[18280,54620],[72,-88]],[[18352,54532],[94,-53]],[[18446,54479],[547,-626]],[[18993,53853],[46,-220]],[[19039,53633],[73,11]],[[19112,53644],[63,9]],[[19175,53653],[280,136]],[[19455,53789],[36,75],[12,25]],[[19503,53889],[46,150]],[[19549,54039],[19,128]],[[19568,54167],[220,110]],[[19788,54277],[159,79]],[[19947,54356],[162,-159]],[[20109,54197],[34,-46]],[[20143,54151],[6,-8],[0,-80],[0,0],[72,-112],[80,-123]],[[20301,53828],[577,-726]],[[20878,53102],[43,-106],[79,-193]],[[21000,52803],[251,-514]],[[21251,52289],[31,-65]],[[21282,52224],[15,-35]],[[21297,52189],[126,-317]],[[21423,51872],[34,-111]],[[21457,51761],[25,-80]],[[21482,51681],[117,-217]],[[21599,51464],[7,-13],[0,0]],[[21606,51451],[66,-27]],[[21672,51424],[110,-45]],[[21782,51379],[290,-167]],[[22072,51212],[112,-78],[171,-118],[45,-105],[-1,-43],[-1,-44],[0,0]],[[43413,38438],[3,-2]],[[43416,38436],[-14,-41]],[[45271,38924],[-9,65]],[[45262,38989],[18,14],[7,15],[-12,25],[-24,31]],[[45251,39074],[-2,13]],[[45249,39087],[7,-8],[13,-3],[14,31],[7,18],[-1,10],[-32,10],[-12,-11],[-1,-12]],[[45244,39122],[-6,48]],[[45238,39170],[-1,7]],[[45237,39177],[56,-26],[6,-11],[-2,-23],[-11,-32],[2,-45],[15,-57],[6,-45],[-3,-34],[-18,-31],[-33,-31],[-31,-46],[-28,-62],[-38,-51],[-48,-40],[-45,-50],[-43,-60],[-86,-82]],[[44936,38451],[-166,-140]],[[44770,38311],[-22,-16],[-20,-18],[-37,-31],[-37,-31]],[[44654,38215],[-240,-134]],[[44414,38081],[-161,-112],[-98,-90],[-85,-111],[-38,-35],[-43,-9],[-66,6],[-70,-13],[-72,-33],[-47,-26],[-21,-21],[-21,-6],[-19,8],[-53,54],[-4,-4],[-10,-8],[-31,10],[-36,1],[-31,-20],[-30,-3],[-31,13],[26,19],[121,42],[-1,7],[-44,24],[-14,22],[-11,-2],[-8,-25],[-16,-11],[-24,4],[-24,19],[-23,34],[-78,56],[-22,28],[-27,19],[-41,10],[-6,16]],[[43255,37944],[7,21]],[[43262,37965],[35,104],[21,39],[8,11],[11,0],[5,10],[-1,22],[4,14],[23,38],[12,19],[-5,32],[6,57],[15,74],[17,53]],[[46691,40436],[5,-23],[-6,-26],[-19,-30],[-182,-194],[-51,-71],[19,-39],[2,-18],[11,3],[37,34],[11,-4],[6,-9],[3,-22],[-17,-38],[7,-9],[33,9],[14,-4],[-12,-29],[-17,-19],[-3,-17],[-25,-48],[-11,-10],[-6,7],[2,21],[-24,-23],[-1,-19],[13,-17],[11,-28],[7,-37],[4,-80],[5,-15],[1,-8],[-2,-9],[-2,-19],[5,-16],[-4,-20],[-13,-22],[-26,-12],[-39,-2],[-43,-25],[-48,-48],[-33,-45],[-18,-40],[-13,-17],[-8,7],[-65,-33],[-23,-22],[-6,-19],[-6,-4],[-6,12],[-46,10],[-86,6],[-67,-6],[-48,-19],[-43,11],[-37,39],[-59,32],[-151,34],[-126,-7],[-104,-23],[-163,-70]],[[45228,39346],[-25,-14],[-41,164]],[[46399,40082],[130,171],[0,-2],[3,-10],[14,7],[14,16],[2,10],[-17,0],[56,74]],[[46601,40348],[9,12]],[[46610,40360],[12,9],[49,72],[12,5]],[[46683,40446],[8,-10]],[[46473,40004],[-1,-20],[6,3],[14,25],[1,10],[-14,-6],[-6,-12]],[[43413,38438],[11,20]],[[43424,38458],[-7,-21]],[[43417,38437],[-1,-1]],[[43424,38459],[7,12],[21,23],[41,25],[10,17],[9,44],[6,70],[13,44],[20,20],[5,21],[-9,24],[8,23],[24,23],[21,7],[16,-10],[8,-23],[1,-51]],[[43625,38728],[-91,-174]],[[43429,38461],[-5,-2]],[[44522,24440],[-18,-55],[-19,-77],[-14,-40],[-19,-6],[-19,15],[-14,14],[-17,27],[-16,52],[-21,42],[-21,18],[-20,38],[-5,35],[12,32],[26,38],[25,40],[32,64],[30,32],[20,0],[21,-45],[10,-21],[8,-21],[7,-30],[7,-41],[8,-54],[-3,-57]],[[30478,37271],[10,-31],[-4,-24],[-41,-36],[-20,-19],[-42,-102],[-34,-26],[-29,-38],[-17,2],[-11,51],[-19,53],[-4,55],[-15,62],[-6,-6],[-7,-17],[-6,-36],[-11,-36],[-15,8],[-24,72],[-25,48],[-18,35],[-10,36],[-8,51],[-8,54],[-12,45],[-15,34],[-15,26],[-17,35],[-19,45],[-11,45],[-5,57],[-1,40],[2,24],[-1,15],[-5,5],[-3,14],[7,14],[15,1],[25,21],[29,18],[20,9],[13,-1],[13,-6],[11,-20],[5,-31],[-12,-36],[-2,-24],[14,-37],[18,-28],[28,-31],[22,-1],[12,-8],[7,-37],[10,-65],[14,-57],[10,-25],[6,-2],[8,0],[7,5],[6,9],[4,15],[-6,69],[-4,55],[-6,43],[6,14],[7,9],[20,-14],[17,-30],[22,-15],[32,4],[35,10],[13,-7],[0,-11],[-6,-38],[-17,-10],[-28,6],[-29,3],[-12,-12],[-8,-14],[-8,-31],[9,-13],[19,-42],[14,-27],[14,-27],[12,-26],[31,-63],[49,-57]],[[30390,37156],[7,73],[-19,91],[-17,12],[-12,-10],[5,-35],[1,-50],[15,-37],[20,-44]],[[42670,41625],[-4,2],[-16,-17],[-26,-6],[-39,6],[-13,-8],[11,-21],[-9,-34],[-32,-45],[-18,-47],[-5,-47],[5,-42],[15,-37],[22,-24],[28,-10],[6,-15],[-17,-18],[-29,-10],[-43,-3],[-42,-20],[-44,-38],[-25,-34],[-7,-30],[-1,-44],[6,-107],[-4,-41],[-18,-76],[-25,-99],[-29,-62],[-5,8],[5,31],[24,99],[3,42],[-2,22],[-8,2],[-10,-19],[-10,-41],[-3,-22],[6,-3],[-4,-28],[-15,-52],[-13,-10],[-11,30],[0,40],[19,81],[-7,15],[11,50],[4,37],[-5,37],[4,35],[14,31],[-4,10],[-23,-13],[-32,-59],[-43,-105],[-33,-46],[-23,13],[-19,-8],[-15,-31],[-15,-16],[-17,1],[-11,-37],[-3,-74],[-17,-42],[-50,-25],[-9,-20],[-1,-27],[8,-36],[0,-71],[-8,-107],[-16,-93],[-26,-81],[-28,-66],[-46,-87],[-1,-17],[23,-68],[9,-51],[5,-101],[-1,-17],[-45,-125],[0,-18],[48,-209],[42,-150],[5,-16],[13,-60],[23,-118],[12,-117],[1,-115],[-6,-112],[-12,-108],[-18,-103],[-23,-99],[-25,-78],[-51,-128],[-24,-86],[-26,-70],[-26,-52],[-48,-59]],[[41758,37986],[-123,-108]],[[41635,37878],[-39,-21],[-42,-8],[-46,5],[-25,12],[-6,20],[-10,2],[-13,13],[-17,23]],[[41437,37924],[-19,41]],[[41418,37965],[-20,85],[-22,128],[-20,77],[-17,24],[-15,39],[-14,52],[-7,118]],[[41303,38488],[1,184]],[[41304,38672],[4,124],[9,67],[-2,51],[-14,35],[-9,43],[-3,52],[-8,36],[-11,18],[-3,26],[7,34],[0,23],[-7,12],[-1,19],[3,25],[-6,73],[2,44],[8,48],[25,88],[9,42],[2,44],[12,55],[33,114],[1,26],[-12,51],[-2,39],[2,51],[11,63],[18,75],[25,60],[31,44],[10,51],[-11,57],[4,85],[18,111],[21,84],[22,56],[16,53],[8,50],[-3,23],[-17,24],[-17,35],[-27,8],[-33,-24],[-5,2],[-17,-3],[-33,-52],[-29,-89],[-20,-37],[-29,-25],[-21,-28],[-14,-30],[-18,-7],[-22,17],[-4,43],[13,67],[21,65],[43,106],[1,26],[10,31],[66,45],[26,36],[8,46]],[[41395,40980],[3,68]],[[41398,41048],[4,19],[10,8],[29,56],[48,105],[43,109],[38,112],[29,63],[17,14],[13,34],[21,105],[15,48],[10,18],[5,-11],[-9,-58],[0,-47],[8,-61],[16,-20],[24,18],[21,40],[18,61],[20,25],[23,-10],[18,4],[15,18],[29,9],[5,-23],[-3,-46],[-9,-22],[-15,1],[-17,-24],[-18,-50],[0,-40],[21,-30],[10,-2],[0,27],[9,27],[30,49],[3,16],[57,43],[22,27],[6,32],[30,64],[28,21],[38,9],[38,-6],[36,-20],[20,1],[5,20],[31,15],[56,7],[42,30],[27,52],[34,27],[42,1],[56,-19],[71,-38],[58,-52],[76,-104],[20,-11]],[[42672,41689],[-2,-64]],[[42343,41596],[-21,14],[-15,-34],[-16,-75],[-2,-42],[12,-11],[15,5],[19,20],[8,35],[-4,79],[4,9]],[[42092,41047],[-3,-9],[9,-40],[10,-12],[13,-1],[5,13],[-1,27],[-9,16],[-24,6]],[[41700,41282],[-5,10],[-13,-52],[9,-21],[25,-3],[13,9],[3,38],[-3,13],[-7,5],[-22,1]],[[41645,41180],[-17,-21],[-15,-50],[-20,-32],[-25,-14],[-17,-33],[-9,-51],[-16,-46],[-36,-70],[-3,-19],[2,-27],[7,-35],[13,-24],[17,-11],[16,8],[41,79],[4,17],[-5,9],[5,30],[17,52],[12,25],[8,-1],[8,10],[9,22],[-1,21],[-11,18],[1,8],[12,-3],[5,19],[-4,42],[6,17],[14,-8],[8,12],[3,31],[-9,19],[-20,6]],[[42837,42270],[-15,-10],[-20,-24],[-27,-26],[-28,7],[-20,35],[-28,8],[-36,-20],[-33,1],[-28,22],[-54,11],[-6,16],[1,18],[8,18],[5,43],[1,69],[7,48],[14,29],[-21,11],[-56,-5],[-63,-23],[-72,-42],[-79,-14],[-84,12],[-64,-2],[-70,-21],[-13,7],[-44,-27],[-77,-63],[-57,-57],[-48,-65],[-7,-1],[-12,15],[-24,20],[-26,0],[-27,-19],[-28,12],[-28,43],[-26,12],[-23,-19],[-38,-8],[-84,10],[-9,13],[-7,46],[-9,20],[-17,14],[-26,51],[-57,130],[-16,16],[-47,40],[-45,18],[-112,25],[-25,18],[-14,-3],[-75,-70],[-3,-16],[-5,-15],[-12,-24],[-10,-11],[-6,11],[-6,21],[1,45],[8,69],[-4,45],[-18,21],[-7,25],[2,30],[-12,24],[-27,17],[-13,24],[2,29],[-3,19],[-7,11],[-29,-23],[-51,-55],[-35,-50],[-18,-44],[-28,-25],[-36,-6],[-29,-18],[-51,-64],[-39,-33],[-63,-24],[-89,-16],[-74,-41],[-60,-68],[-71,-58],[-85,-47]],[[40170,42362],[-57,-17]],[[40113,42345],[-30,14],[-36,29],[-54,52],[-8,-5],[5,-10],[-2,-9],[-10,-15],[-68,-39],[-9,15],[25,53],[10,39],[0,36],[11,45],[23,53],[9,36],[-6,19],[-26,31],[-21,2],[-27,-10],[-81,-78],[-8,6],[-26,12],[-6,-2],[-63,-68],[-63,-41],[-151,-58],[-38,-7],[-30,4],[-38,34],[-16,24]],[[39379,42507],[2,25]],[[39381,42532],[17,26],[188,210],[116,150],[193,281],[49,56],[112,93],[179,90],[88,50],[77,54],[49,42],[21,29],[17,13],[13,-2]],[[40500,43624],[15,11]],[[40515,43635],[146,7]],[[42657,42460],[105,-110]],[[42762,42350],[-5,-12],[0,-30],[30,-55],[12,6],[7,13],[12,17],[2,0]],[[42820,42289],[2,-2]],[[42822,42287],[15,-17]],[[39985,42691],[-5,-13],[2,-12],[18,-16],[6,7],[-2,13],[-11,18],[-8,3]],[[40031,42566],[28,26],[-3,12],[-10,1],[-60,-51],[-13,-21],[-4,-17],[10,-2],[26,12],[13,13],[2,14],[11,13]],[[40078,42650],[6,31],[-4,8],[-15,-5],[-33,-18],[-1,-14],[32,-8],[15,6]],[[40140,42763],[0,18],[-6,7],[-11,-5],[-7,-16],[-4,-28],[6,-7],[14,15],[8,16]],[[40811,43574],[128,96],[15,27],[-2,14],[7,22],[43,51],[-6,8],[-40,-16],[-75,-50],[-175,-137],[-21,-22],[-3,-10],[14,0],[0,-14],[-14,-27],[2,-19],[17,-10],[34,9],[50,28],[18,14],[3,7],[-17,5],[2,15],[20,9]],[[41313,43097],[22,20],[-23,31],[-38,15],[-52,0],[-52,-10],[-94,-47],[-33,-30],[-75,-106],[-21,-50],[-3,-39],[18,-28],[63,-19],[3,13],[-3,6],[-9,8],[17,36],[5,-14],[-2,-41],[-13,-28],[-13,-21],[-1,-27],[14,-33],[16,8],[20,49],[54,77],[-1,18],[8,29],[92,101],[19,31],[-4,11],[-20,17],[3,6],[103,17]],[[43739,39112],[-18,-9]],[[43721,39103],[-7,19],[-13,39],[-25,180],[-36,323],[-30,199],[-23,78],[-32,58],[-41,40],[-31,18],[-21,-5],[-34,-33],[-62,-29],[-26,-19],[-15,-25],[-17,-15],[-20,-4],[-2,-7],[15,-9],[0,-25],[-42,-110],[-9,-25],[-26,-9],[-21,-21],[-22,-55],[-21,-15],[-30,6],[-50,33],[-31,34],[-10,33],[0,41],[8,47],[0,38],[19,79],[26,28],[37,7],[21,12],[4,19],[11,13],[20,8],[16,50],[13,92],[16,51],[11,9],[11,-3],[0,-11],[44,59],[15,41],[1,42],[5,123],[5,79],[6,36],[-3,93],[-12,76],[-49,84],[-7,28],[2,29],[10,32],[21,7],[38,-24],[7,6],[-11,14],[-6,28],[-2,41],[-5,23],[-8,5],[-21,47],[-3,25],[3,23],[-8,23],[-29,36],[-51,37],[-124,70],[-22,27],[-30,16],[-39,5],[-25,21],[-10,38],[-17,34],[-24,30],[-38,20],[-51,9],[-55,32],[-57,56],[-32,17]],[[42672,41689],[14,-1],[6,8],[0,10],[-5,12],[3,45],[-3,12],[22,69],[20,18],[22,-7],[14,-14],[6,-24],[7,-8],[14,-1],[8,-3],[4,2],[7,13],[48,-6],[162,-35],[22,6],[13,12],[3,18],[-10,18],[-43,37],[-13,24],[-3,23],[6,22],[-9,19],[-24,18],[-53,5],[-10,18],[5,17],[15,22],[1,33],[-5,19],[-7,57],[-12,37],[-16,41]],[[42881,42225],[9,-11]],[[42890,42214],[22,-22]],[[42912,42192],[6,-29],[9,-22],[11,-13],[14,-4],[0,19],[-3,10]],[[42949,42153],[36,-58]],[[42985,42095],[-1,1],[-16,-21],[9,-46],[17,-54],[27,-62],[22,-16],[10,5],[9,20],[5,26],[6,6]],[[43073,41954],[21,-34]],[[43265,41812],[7,-23]],[[43272,41789],[-8,-8],[-13,-25],[-6,-27],[11,-20],[30,-14],[10,4]],[[43296,41699],[52,-187]],[[43743,39136],[-4,-24]],[[43223,41835],[-23,52],[-13,15],[-34,9],[-7,-10],[9,-23],[-2,-12],[-14,-18],[-27,-24],[-20,-5],[-14,12],[-9,-1],[-2,-24],[5,-11],[19,-21],[41,-12],[64,-2],[32,16],[10,30],[-4,20],[-11,9]],[[42936,42109],[-9,-1],[-3,-18],[5,-22],[22,-35],[6,5],[3,13],[-2,22],[-8,19],[-14,17]],[[42819,41638],[-57,13],[-3,-15],[34,-46],[21,-17],[13,1],[10,10],[7,17],[-3,20],[-16,24],[-6,-7]],[[38015,44540],[5,157],[25,4],[46,18],[21,40],[-2,74],[-31,19],[-2,22],[32,-2]],[[38225,44436],[0,-7],[-13,-12],[-47,4],[-44,52],[-39,36],[-16,-5],[-63,-57],[-42,-9],[-18,38],[-1,38],[10,26],[63,0]],[[46708,39292],[7,-18],[-29,-23],[-72,-3],[-61,55],[0,15],[16,8],[89,-14],[50,-20]],[[11662,54330],[-62,-47],[-54,-28],[-63,-19],[-73,-34],[-13,-33],[3,-40],[-10,-41],[-2,-26],[-14,-21],[-32,-8],[-100,-9],[-374,-89],[-62,39],[-14,72],[30,74],[263,113],[119,39],[298,78],[62,-9],[52,-1],[46,-10]],[[10770,52604],[-27,-30],[0,-23],[12,-17],[1,-27],[-21,-53],[-41,-60],[-12,-5],[14,50],[5,55],[-20,44],[-89,35],[-110,39],[-33,8],[-69,40],[-23,61],[30,62],[80,17],[161,-72],[136,-89],[6,-35]],[[26908,35474],[-10,-62],[-31,-11],[-21,24],[-15,81],[-11,28],[3,47],[33,71],[33,19],[10,11],[12,0],[8,-43],[-11,-165]],[[41074,40057],[-4,-117],[-22,-66],[-22,-52],[-15,4],[-12,115],[-12,81],[15,74],[30,77],[27,1],[17,-14],[-2,-103]],[[47773,40130],[-14,-85],[15,-162],[7,-86],[-6,-22],[-8,49],[-8,50],[-12,127],[-7,23],[-2,48],[3,99],[40,81],[-10,101],[-10,35],[-20,188],[20,124],[7,147],[13,58],[17,0],[4,-40],[5,-38],[5,-1],[14,27],[17,53],[40,1],[-16,-15],[-13,-26],[9,-35],[-2,-41],[-8,-151],[-9,-110],[-6,-21],[-16,-20],[3,-31],[13,-13],[0,-44],[-4,-11],[-5,4],[-10,-36],[-8,-70],[-17,-78],[-21,-79]],[[28848,30246],[-2,-47],[-36,-76],[-41,7],[-55,142],[-67,118],[3,63],[20,18],[27,-2],[29,-61],[101,-119],[21,-43]],[[46122,38764],[-22,-112],[-38,-87],[-5,11],[15,67],[9,52],[16,0],[16,72],[9,-3]],[[46202,38556],[-14,39],[-3,121],[-17,126],[-7,134],[7,-8],[33,-169],[-1,-133],[3,-84],[-1,-26]],[[46363,38633],[-4,-10],[-26,53],[-36,50],[-47,159],[9,134],[8,16],[15,-168],[16,-81],[28,-68],[37,-85]],[[40133,27519],[-19,-69],[-31,-17],[-17,16],[-3,34],[11,45],[28,59],[27,-21],[4,-47]],[[10507,52509],[-25,-64],[-77,-118],[-3,-30],[7,-23],[-13,-39],[-17,-19],[-41,27],[-42,36],[-11,32],[17,16],[23,4],[28,9],[23,28],[2,39],[54,65],[15,27],[42,28],[18,-18]],[[9111,60424],[1,-36],[-62,-3],[-65,11],[-21,25],[-63,45],[8,22],[86,-8],[87,-21],[29,-35]],[[31273,40301],[-16,-12],[-17,-3],[-8,16],[-16,18],[-6,24],[-24,8],[2,30],[-16,20],[-28,-9],[-19,-21],[-11,30],[12,22],[17,2],[18,6],[15,21],[16,48],[24,10],[25,-21],[3,-88],[28,-51],[1,-50]],[[12124,64147],[-150,-46],[-171,-35],[-28,13],[-34,-6],[-59,23],[-42,28],[-36,50],[-33,32],[-28,5],[-9,19],[43,16],[56,6],[27,-4],[17,16],[56,25],[90,11],[268,-121],[33,-32]],[[29501,43571],[-11,81],[-9,16],[3,27],[27,20],[39,-69],[10,-74],[8,-136],[-7,-26],[-16,-41],[-27,6],[-15,-3],[-6,24],[17,39],[-10,27],[-20,12],[-25,9],[-2,20],[26,30],[18,38]],[[29734,32570],[-16,11],[-25,72],[-30,80],[-45,63],[-26,46],[-16,32],[-23,-1],[-32,-120],[-44,-24],[-38,22],[-12,43],[-24,21],[-15,-9],[-20,-10],[-23,24],[-61,0],[-34,-74],[-12,-10],[-12,6],[-19,50],[-2,42],[73,30],[63,36],[36,40],[8,101],[12,122],[11,29],[12,4],[1,-69],[-11,-99],[-5,-114],[33,-90],[31,-55],[30,25],[28,68],[30,84],[15,-1],[33,-61],[29,-55],[36,-61],[35,-82],[30,-90],[-1,-26]],[[46030,38918],[-21,-42],[-20,-72],[-4,14],[1,27],[12,46],[19,47],[10,53],[11,-17],[-8,-56]],[[46381,38878],[-21,60],[-10,56],[6,22],[30,-128],[0,-11],[-5,1]],[[46474,38894],[-40,57],[-30,55],[1,45],[24,-66],[36,-50],[9,-41]],[[7407,54916],[-27,-19],[-13,-28],[-9,-18],[9,-66],[-32,-50],[-64,-43],[-1,10],[-10,30],[5,43],[5,25],[-9,11],[-19,-1],[-45,-10],[-47,-10],[-5,18],[16,7],[52,28],[23,16],[-14,16],[-26,19],[20,17],[13,20],[6,3],[25,-16],[28,14],[6,7],[27,-6],[72,-7],[14,-10]],[[30785,38208],[-8,-76],[-9,-55],[-10,-16],[-11,11],[-9,49],[-6,46],[2,67],[4,63],[22,20],[14,-4],[13,-36],[1,-46],[-3,-23]],[[30582,36533],[-38,-29],[-9,-57],[-9,-23],[-11,-6],[-1,16],[2,32],[-4,34],[-7,20],[28,69],[-4,64],[-9,50],[39,-8],[14,-28],[13,-48],[15,-43],[9,-11],[-4,-18],[-24,-14]],[[38421,42897],[-6,-38],[-19,-48],[-20,-20],[-22,-7],[-17,9],[-12,29],[-27,31],[-20,-21],[-2,-41],[-4,-12],[-3,16],[-9,40],[-7,39],[5,36],[9,-4],[39,18],[29,10],[26,8],[37,40],[7,-13],[-7,-45],[-5,-35],[14,3],[14,5]],[[26737,38166],[-12,-58],[-12,-83],[-8,-36],[-21,-6],[-10,16],[-9,60],[-2,108],[6,70],[12,21],[17,18],[16,-16],[14,-22],[9,-23],[0,-49]],[[27137,36272],[-1,-16],[-6,-16],[-18,9],[-27,44],[-40,93],[-27,86],[6,25],[19,36],[29,17],[19,-26],[8,-89],[15,-99],[13,-36],[10,-28]],[[27060,33685],[2,-6],[-2,-18],[-17,-21],[-23,-7],[9,25],[22,17],[9,10]],[[38740,42040],[6,-35],[3,-30],[-12,-25],[-27,-13],[-30,1],[-26,20],[-22,38],[-9,50],[16,48],[36,33],[32,14],[17,-3],[8,-14],[5,-37],[1,-29],[2,-18]],[[48705,39664],[14,-23],[20,-21],[1,-16],[-8,-26],[-20,-7],[-42,59],[-33,28],[4,25],[2,21],[10,14],[6,16],[-2,12],[12,-2],[19,-21],[11,-30],[6,-29]],[[27474,39351],[-19,0],[-20,-29],[-25,-17],[-19,21],[-17,37],[-15,45],[-5,37],[8,18],[62,11],[57,-19],[14,-55],[9,-42],[-5,-15],[-9,-1],[-5,3],[-11,6]],[[6549,59272],[3,-11],[-12,-21],[-35,-33],[-52,-34],[-50,-15],[-37,10],[-43,42],[-5,25],[21,16],[14,7],[74,-2],[90,7],[32,9]],[[7259,55580],[7,-14],[1,-20],[-9,-28],[-7,-19],[-12,0],[-7,20],[-17,34],[-18,28],[2,22],[19,24],[28,20],[30,1],[57,7],[39,4],[-20,-18],[-17,-12],[-36,-22],[-40,-27]],[[7837,55262],[3,-20],[-12,-9],[-20,-2],[-42,15],[-37,23],[-9,14],[6,14],[19,8],[26,1],[37,-15],[29,-29]],[[9470,53814],[-5,-32],[-17,-2],[-13,15],[-4,25],[-4,35],[-17,42],[-27,40],[50,-20],[31,-57],[5,-28],[1,-18]],[[9757,54488],[-15,-8],[-56,14],[-69,11],[-76,-25],[-54,-21],[-65,-13],[-24,-1],[-30,4],[-7,12],[-6,19],[-5,15],[14,2],[45,-5],[108,30],[97,32],[25,-3],[28,-26],[52,-3],[30,-16],[8,-18]],[[9338,54718],[11,22],[34,20],[62,28],[29,10],[-9,-18],[19,-17],[24,-14],[2,-12],[0,-14],[-3,-11],[-59,11],[-77,9],[-29,-14],[-4,0]],[[9540,54144],[-53,-20],[-4,-22],[14,-25],[63,-23],[26,-20],[10,-17],[-23,2],[-55,10],[-22,6],[-28,33],[-56,32],[-24,28],[-17,43],[-22,52],[18,2],[67,-61],[23,4],[44,11],[66,-7],[-27,-28]],[[39214,43970],[15,-14],[-6,-5],[-10,14],[-19,29],[-36,24],[-73,5],[-69,3],[-35,16],[-24,26],[-10,23],[7,7],[33,-20],[53,-26],[34,-6],[19,19],[19,26],[3,11],[-52,21],[-55,22],[-6,11],[1,9],[-24,6],[-35,-2],[-14,-9],[4,-15],[-7,-10],[-21,4],[-15,19],[-37,26],[-27,-7],[-15,13],[53,26]],[[33057,43255],[-15,-32],[-8,-2],[8,47],[0,40],[-15,49],[-15,52],[-8,27],[-11,26],[-10,32],[-16,25],[-16,3],[-11,-19],[-18,-28],[-14,-38],[-2,-33],[-20,3],[-37,-13],[-38,-13],[-21,-8],[-11,-20],[-5,-40],[-6,-16],[-7,16],[-12,21],[-17,-5],[-22,-21],[-10,1],[-7,19],[-68,17],[-55,1],[-12,-1],[-24,-28],[-19,-17],[-36,-10],[-47,0],[-47,-55],[-57,-87],[-30,-70],[-5,15],[6,58],[-3,35],[-6,30],[-8,14],[-15,10],[-28,11],[-57,3],[-11,16],[10,10],[57,1],[39,-11],[13,-13],[18,-45],[22,-11],[28,40],[30,39],[12,30],[-1,23],[-12,15],[49,-10],[67,-13],[15,16],[18,33],[20,11],[19,-6],[28,2],[50,1],[58,-8],[27,8],[-4,19],[3,16],[23,13],[27,5],[23,5],[14,15],[13,15],[24,17],[27,17],[6,18],[7,26],[-4,26],[-7,20],[24,22],[47,41],[12,-6],[18,-6],[18,-27],[-3,-32],[-12,-22],[6,-42],[27,-38],[14,-20],[-6,-20],[6,-22],[6,-27],[4,-44],[7,-57],[-1,-39]],[[34881,43239],[-40,19],[-43,-2],[-35,-20],[-8,-2],[4,25],[26,32],[28,29],[-4,44],[-13,47],[-39,6],[-61,20],[-25,30],[-17,89],[14,36],[4,33],[-19,39],[-47,44],[-63,33],[-71,5],[-57,-26],[-23,-30],[-45,-31],[-54,-13],[-27,11],[-14,41],[-14,22],[-37,-30],[-38,-42],[-10,9],[6,42],[17,26],[24,36],[41,10],[23,-41],[19,-24],[14,-13],[44,8],[63,63],[42,23],[40,9],[50,-9],[57,-23],[52,-36],[34,-48],[18,-77],[-9,-52],[0,-40],[1,-21],[22,-19],[29,-8],[24,-8],[11,13],[-7,52],[-7,56],[18,13],[28,11],[17,12],[7,0],[-3,-15],[-6,-21],[-4,-12],[-3,-12],[8,-51],[11,-57],[5,-25],[24,-16],[8,-17],[-19,-47],[23,-49],[30,-18],[33,-17],[61,-22],[74,6],[42,11],[11,6],[5,11],[61,9],[79,18],[33,15],[18,-10],[10,-25],[-20,-19],[-28,-17],[-36,-31],[-32,-24],[-85,8],[-40,-15],[-42,-10],[-49,-18],[-16,-3],[-15,22],[-37,37],[-28,21],[-23,14]],[[28578,43777],[-41,-19],[-46,-29],[-14,-29],[-2,-45],[-5,-37],[-15,-14],[-18,-5],[-11,6],[6,22],[8,45],[11,64],[18,49],[23,20],[15,16],[-3,19],[-9,17],[-14,6],[-17,8],[-25,-19],[-20,7],[18,31],[14,16],[29,0],[32,-16],[27,-43],[30,-49],[9,-21]],[[26877,43497],[-17,5],[-31,21],[-24,31],[-15,43],[-57,71],[-88,112],[-43,86],[-1,20],[42,-69],[96,-127],[70,-96],[42,-68],[26,-29]],[[15021,56660],[-2,-18],[-17,-28],[-22,10],[-39,63],[-23,44],[0,31],[6,30],[3,25],[10,3],[6,-22],[6,-22],[11,-42],[31,-46],[30,-28]],[[38096,43661],[45,-25],[39,-32],[3,-30],[-7,-24],[-47,-16],[-96,-3],[-61,17],[-10,32],[9,42],[28,40],[45,29],[34,-5],[18,-25]],[[38074,43745],[20,25],[61,29],[67,18],[35,-4],[23,-19],[1,-34],[-19,-31],[-28,-22],[-39,-15],[-64,-2],[-51,8],[-11,20],[5,27]],[[35258,26930],[-1,1],[1,7],[14,12],[27,-41],[15,-21],[18,-19],[15,-28],[16,-16],[16,14],[14,20],[5,-12],[7,21],[12,48],[3,-4],[-5,-38],[2,-32],[8,-20],[7,-4],[-1,-7],[-7,-8],[-19,-6],[-27,-18],[-22,-1],[-98,152]],[[31198,34449],[0,-24],[-17,-56],[-13,-90],[-57,-117],[-50,-120],[-11,-52],[-35,-75],[-27,-78],[20,-28],[63,13],[-11,-30],[-52,-4],[-91,-51],[-53,-35],[-34,-48],[-53,-7],[-34,-35],[-33,-53],[-8,12],[-25,89],[41,27],[24,-4],[21,7],[15,33],[22,43],[20,-25],[13,15],[8,27],[41,-24],[49,11],[34,103],[13,64],[27,16],[28,71],[-9,87],[10,8],[23,-3],[38,55],[19,35],[18,38],[30,88],[6,93],[14,32],[16,-8]],[[35714,40920],[-24,-9],[-13,-17],[-5,-33],[-5,-51],[-15,-44],[-22,-48],[-26,-29],[-18,-9],[-23,13],[-5,-15],[10,-74],[8,-62],[16,-15],[20,8],[12,-18],[-7,-46],[12,-22],[27,-6],[9,-20],[4,-17],[-2,-15],[-8,-14],[-30,22],[-40,2],[-19,23],[-13,29],[8,26],[-6,40],[-17,47],[-2,45],[-3,34],[-19,16],[-22,14],[-13,13],[-20,2],[-44,-15],[-56,-13],[-41,-7],[-11,2],[13,18],[39,15],[34,12],[9,20],[7,17],[23,2],[21,10],[25,3],[17,15],[-5,29],[19,1],[30,-15],[30,-35],[20,-16],[8,25],[18,29],[19,1],[7,24],[-1,37],[-1,55],[20,48],[25,45],[5,51],[5,53],[3,40],[-13,41],[-27,40],[-61,4],[-31,2],[37,20],[58,5],[25,7],[-5,29],[-10,23],[-25,51],[-49,72],[-38,59],[-5,13],[15,2],[33,-25],[37,7],[22,39],[4,20],[-3,34],[-8,55],[-28,75],[-46,107],[-35,102],[-4,38],[12,55],[13,25],[8,58],[0,71],[-5,88],[-7,44],[-6,39],[-36,56],[-24,28],[-8,21],[4,17],[28,-8],[21,-33],[37,-47],[9,-52],[10,-68],[7,-90],[-11,-97],[-10,-84],[7,-43],[0,-40],[10,-33],[19,-65],[27,-59],[25,-25],[12,-38],[4,-79],[-1,-74],[-5,-37],[-19,-24],[-5,-50],[14,-36],[31,-50],[12,-38],[1,-53],[4,-66],[7,-49],[-8,-74],[-6,-66],[9,-16],[2,-24],[-12,-25]],[[36225,39481],[48,-68],[61,-67],[33,-72],[56,-65],[60,-29],[5,-39],[-47,0],[-37,39],[-68,51],[-14,62],[-62,76],[-49,58],[-61,85],[-13,65],[-17,61],[-40,57],[14,76],[33,82],[6,41],[-10,54],[5,39],[19,-30],[8,-49],[-5,-57],[-25,-76],[-18,-49],[27,-54],[48,-152],[43,-39]],[[36091,24565],[-1,27],[15,-9],[21,-38],[41,-74],[26,-10],[0,-95],[16,-42],[15,-7],[14,-2],[2,-20],[-16,-68],[0,-55],[-6,-15],[-105,339],[-2,5],[-1,4],[-19,60]],[[41194,33332],[15,-128],[7,-92],[23,-113],[21,-105],[-11,-103],[-19,-117],[-29,3],[26,137],[-4,123],[-21,66],[-12,7],[-12,-49],[-11,29],[-1,56],[15,84],[1,98],[-19,91],[-65,269],[-6,65],[35,-47],[67,-274]],[[43724,30864],[13,-24],[24,-73],[36,-67],[27,-72],[-10,-28],[-55,8],[-61,-29],[-48,2],[15,18],[46,8],[73,49],[-14,46],[-50,64],[-32,47],[-14,-4],[-15,-13],[-11,-12],[12,65],[-11,17],[-5,56],[19,-8],[27,-39],[20,-25],[14,14]],[[44049,26695],[1,125],[19,-82],[45,-116],[5,-57],[-30,-24],[-20,54],[-10,52],[-10,48]],[[29410,31304],[-21,46],[13,47],[22,-57],[47,-52],[63,-93],[-24,-69],[-13,10],[-11,59],[-32,46],[-44,63]],[[25882,37152],[-4,-59],[6,-12],[50,6],[10,-15],[-3,-15],[-23,-19],[-40,8],[-55,-28],[-21,-2],[-7,20],[4,22],[10,56],[15,-9],[5,-32],[22,18],[19,51],[12,10]],[[26012,38727],[-2,-95],[11,-22],[42,-60],[10,-110],[-1,-34],[-15,5],[-36,69],[1,26],[-17,32],[-38,29],[-8,43],[20,43],[23,61],[10,13]],[[27243,39295],[-5,24],[10,24],[23,24],[51,-45],[6,-18],[-8,-38],[-26,-33],[-37,21],[-14,41]],[[50375,41487],[33,-36]],[[50408,41451],[0,-5]],[[50408,41446],[-9,-5],[-51,11],[-69,62],[-37,63]],[[50242,41577],[34,18]],[[50276,41595],[35,-61],[48,-50],[16,3]],[[10998,53301],[-55,-18],[-35,-14],[3,-23],[68,-26],[10,-16],[-21,-14],[-60,4],[-42,32],[-42,39],[-84,3],[-60,4],[-72,22],[-25,32],[-13,24],[29,16],[65,3],[1,11],[19,5],[29,-15],[23,-12],[14,-11],[76,-4],[124,-18],[56,-3],[-8,-21]],[[7689,55486],[-86,39],[13,24],[90,-26],[39,-4],[-56,-33]],[[11437,54742],[72,51],[100,56],[179,82],[28,6],[-14,-30],[-178,-93],[-91,-65],[-130,-106],[-77,-67],[-14,27],[50,67],[30,36],[14,6],[31,30]],[[12919,54746],[7,24],[38,47],[76,-30],[80,-102],[28,-35],[-12,-67],[-16,4],[-23,28],[-28,41],[-48,36],[-38,35],[-17,11],[-47,8]],[[8960,55768],[-39,-10],[-19,17],[13,43],[29,14],[30,-18],[16,-31],[-30,-15]],[[7927,55404],[5,-30],[14,-25],[27,-34],[-17,-23],[-15,-6],[-42,8],[-12,63],[0,47],[15,36],[25,-36]],[[7300,55960],[31,-40],[-28,-42],[-13,46],[-65,50],[-38,37],[-7,25],[20,2],[66,-41],[34,-37]],[[7411,56968],[-19,-17],[-10,-71],[-26,24],[-17,68],[25,9],[48,23],[21,-29],[-22,-7]],[[41371,31646],[54,33],[71,1],[52,-40],[117,-114],[32,-65],[16,-33],[-27,-8],[-163,183],[-85,23],[-56,-25],[-28,8],[17,37]],[[153,62626],[-153,76],[0,1814],[196,-69]],[[393,65072],[-393,-53],[0,12246],[60485,0],[0,-1677]],[[60485,75449],[0,-47]],[[60485,75361],[0,-121]],[[60485,75087],[0,-88]],[[60485,74594],[0,-256]],[[60485,54982],[0,-162]],[[60485,54702],[0,-54702],[-1944,0]],[[58357,0],[-92,0]],[[58236,0],[-498,0]],[[44752,0],[-4976,0]],[[39616,0],[-39616,0],[0,59110],[17,15]],[[60485,74775],[0,-70]],[[41882,30026],[0,-16],[27,-162],[7,-23]],[[42026,30531],[-5,-25],[-53,-105]],[[42579,28109],[35,-149],[2,-35]],[[42533,28757],[-25,128],[0,94],[27,155]],[[43095,31237],[-117,-179]],[[29402,31397],[2,-47],[28,-51],[67,-70],[15,-35],[0,-2],[0,-26],[-17,-30]],[[29306,32136],[-26,112],[-6,63],[7,77]],[[29238,32736],[12,65],[21,34],[34,23],[39,8],[45,-7],[33,-29],[22,-51],[22,-26],[22,-1],[29,42],[26,89],[25,18],[25,-32],[85,-139],[56,-160]],[[31198,34449],[-14,-14],[-10,-46],[-4,-54],[-18,-64],[-32,-69],[-51,-95],[-17,-35],[-2,-28],[-11,-42],[-26,-64],[-61,-163],[-46,-27],[-126,-66],[-58,-46],[-20,-65]],[[33235,36528],[-18,-18]],[[27746,44235],[-46,-137],[-11,-99],[14,-156]],[[26021,38610],[3,-51],[48,-153]],[[30870,40684],[-8,5],[-32,8],[-24,26],[-26,57],[-4,5]],[[38385,43092],[56,47],[26,6],[22,-29]],[[38304,43138],[-58,-15]],[[36128,39988],[16,-88],[-11,-70],[-35,-80],[-5,-50],[23,-20],[20,-48],[15,-77],[52,-91],[89,-105],[47,-68],[5,-30],[38,-41],[106,-79]],[[30683,42144],[-10,96],[-21,68],[-50,107]],[[35495,42462],[68,-95],[25,-86],[6,-110],[-7,-96],[-19,-83],[26,-141],[70,-199],[14,-106],[0,-29],[-15,-28],[-14,-27],[-2,-47],[2,-24],[12,-27],[29,-51],[20,-121],[-2,-166],[-9,-73],[-12,-15],[-12,-3],[-12,-36],[-4,-68],[-15,-59],[-27,-48],[-35,-16],[-44,17],[-5,-7],[-2,-16],[17,-38],[10,-50],[1,-54],[11,-38],[22,-21],[2,-23],[-3,-24],[12,-25],[53,-24],[11,-14]],[[35216,43183],[-13,42],[-54,3],[-100,-20],[-91,12],[-83,46],[-49,65],[-13,83],[-21,36],[-29,-13],[-36,8],[-45,27],[-13,52],[18,76],[-15,67],[-50,56],[-66,34],[-84,12],[-54,-13],[-22,-40],[-35,-30],[-48,-22],[-36,17],[-27,54],[-34,2],[-63,-80]],[[32973,43650],[-51,-122],[-36,-58],[-125,-104],[-72,-12],[-99,10],[-56,-10],[-11,-32],[-28,-13],[-46,7],[-51,-40],[-55,-88],[-34,-9],[-24,72],[-35,16],[-79,3]],[[25944,37072],[-123,-18]],[[38823,44195],[76,16]],[[36090,24582],[2,-6],[63,-138],[33,-111],[19,-136]],[[35377,26780],[-118,157]],[[32575,29916],[6,185]],[[32625,30154],[6,166]],[[25821,37054],[-19,-38]],[[27018,33633],[43,57]],[[43644,30922],[106,-164],[43,-80],[21,-78]],[[29877,38772],[-70,20]],[[30080,38917],[100,191]],[[30893,39275],[-20,24],[-42,96]],[[41713,31428],[-154,163],[-71,59],[-38,9],[-39,-9],[-57,-41]],[[41230,32674],[-12,15],[5,45],[19,81],[-4,105],[-29,130],[-15,114],[0,97],[-26,134],[-76,258]],[[43385,31450],[51,-80],[34,-31],[36,-10],[22,-26],[13,-64]],[[38150,44838],[-4,-62],[8,-127],[17,-105],[41,-127]],[[41916,29826],[79,-172],[12,-87],[-30,-59],[-8,-38],[-6,-10],[-15,8],[-22,-9],[-27,-37],[-27,-4],[-27,28],[-21,3],[-15,-22],[-16,-4],[-18,14],[-12,-9],[-4,-18],[-6,-1],[-7,8],[-7,44],[-7,9],[-7,0],[-17,-36],[-18,-7],[-18,22],[-16,6],[-14,-11],[-1,-19],[13,-26],[-9,-23],[-31,-18],[-9,-34],[13,-48],[-10,-28],[-34,-8],[-17,-26],[-1,-45],[-16,-3],[-31,37],[-25,-15],[-19,-68],[0,-51],[20,-34],[-5,-23],[-30,-14],[-4,-30],[21,-47],[-4,-47],[-29,-45],[-10,-50],[10,-54],[-6,-38],[-22,-22],[-8,-33],[5,-43],[-18,-35],[-39,-27],[-33,-60],[-25,-94],[-21,-50],[-12,-6],[-9,-11],[-2,-20],[-3,-180],[-9,-83],[-15,-26],[-5,-36],[2,-60]],[[41968,30401],[-17,-24],[-4,-33],[2,-50],[-13,-46],[-27,-43],[-11,-36],[8,-29],[-4,-39],[-18,-49],[-2,-26]],[[42482,31142],[-143,-46],[-70,-4],[-20,-2],[-11,-9],[-3,-17],[12,-18],[0,-19],[-12,-19],[-17,-5],[-19,5],[-11,-11],[-3,-22],[-8,-17],[-8,0],[-8,-6],[-1,-17],[-9,-19],[-13,-1],[-7,-17],[-1,-22],[-7,-21],[-22,-15],[-10,-38],[4,-68],[-16,-53],[-36,-37],[-13,-41],[-2,-47],[-2,-25]],[[45762,38025],[-62,-46],[-37,-9],[-51,17],[-60,80],[-17,59],[7,64],[-30,42],[-69,20],[-45,26],[-22,31],[-33,-15],[-44,-61],[-27,-69],[-10,-78],[-37,-45],[-63,-14],[-48,-41],[-33,-68],[-16,-58],[1,-72],[-17,-59],[-27,-24],[-44,-7],[-40,-23],[-36,-38],[-13,-28],[9,-20],[-4,-22],[-16,-25],[8,-33],[32,-39],[28,-60],[26,-81],[9,-49],[-7,-18],[15,-24],[29,-25],[3,-30],[-12,-74],[-70,-170],[-59,-107],[-52,-57],[-20,-8]],[[39841,30721],[-20,25],[-13,36],[-8,53],[-22,30],[-36,6],[-11,11],[-4,16],[-5,11],[-20,2],[-14,19],[-9,36],[-22,23],[-34,8],[-53,48],[-73,88],[-34,19],[-8,-3],[-16,7],[-19,37],[-42,120],[-20,108],[0,96],[-32,77],[-62,55],[-37,54],[-10,52],[-17,35],[-23,19],[-8,37],[6,56],[-14,21],[-53,-22],[-53,61],[-45,20],[-53,1],[-64,54],[-74,108],[-73,47],[-73,-14],[-51,19],[-30,53],[-42,14],[-54,-25],[-27,-29],[-1,-35],[-9,-21],[-18,-6],[-30,17],[-40,41],[-32,-14],[-24,-66],[-21,-26],[-17,16],[-15,-5],[-15,-26],[-14,2],[-13,31],[-43,38],[-75,46],[-52,57],[-29,69],[-23,36],[-18,1],[-6,29],[3,56],[-6,44],[-18,30],[-44,13],[-70,-4],[-38,24],[-6,53],[-35,46],[-64,38],[-42,56],[-21,74],[-36,38],[-51,2],[-27,18],[-3,36],[-22,39],[-42,43],[-31,17],[-19,-9],[-10,18],[1,45],[-17,30],[-35,15],[-24,38],[-15,60],[-11,3],[-17,-10],[-27,-34],[-24,-23],[-18,3],[-12,13],[-5,24],[9,26],[15,23],[2,11],[-8,11],[-19,4],[-18,22],[-6,41],[27,38],[59,35],[12,19],[-1,15],[-18,14],[-16,62],[-9,105],[-24,70],[-39,36],[-27,83],[-15,130],[-31,152],[-48,173],[-157,214],[-266,254],[-155,128],[-42,4],[-56,-38],[-71,-78],[-93,-152],[-114,-227],[-101,-99],[-129,47],[-354,170],[-157,33],[-79,-48],[-145,28],[-210,106],[-208,47],[-205,-10],[-135,-23],[-67,-36],[-56,5],[-47,47],[-60,34],[-109,34],[-72,58],[-78,20],[-107,1],[-79,34],[-52,67],[-68,49],[-85,30],[-84,-7],[-82,-47],[-80,23],[-77,93],[-38,76],[1,60],[-22,114],[-67,251],[-43,131]],[[35618,29910],[27,48],[55,34],[92,36],[52,52],[13,67],[2,75],[-10,84],[43,86],[95,89],[83,45],[70,2],[40,-26],[10,-53],[18,-27],[27,-2],[20,-25],[13,-50],[13,-20],[12,11],[10,-17],[9,-43],[32,-55],[82,-100],[-6,-49],[8,-39],[21,-45],[18,-2],[14,40],[26,1],[38,-38],[12,-36],[-14,-34],[1,-32],[16,-30],[27,-8],[36,15],[26,-16],[14,-47],[-3,-29],[-8,-12],[4,-18],[13,-14],[82,-50],[55,-69],[28,-86],[32,-57],[36,-29],[6,-24],[-24,-19],[-9,-30],[6,-42],[23,-41],[38,-41],[22,-9],[11,9],[4,-4],[1,-9],[-2,-57],[22,-79],[46,-101],[23,-76],[1,-51],[30,-81],[60,-112],[40,-109],[30,-160],[112,-412],[64,-164],[53,-54],[33,-60],[14,-67],[21,-32],[27,3],[22,-16],[18,-34],[-3,-60],[-23,-86],[-1,-66],[19,-45],[14,-101],[9,-157],[13,-84],[22,-17],[33,-14],[67,-28],[45,-38],[26,-49],[12,-79],[-1,-109],[-7,-84],[-13,-58],[22,-61],[58,-64],[28,-52],[-5,-44]],[[42615,27925],[-3,-48],[-31,-86],[-53,-274],[-17,-93],[2,-81],[31,-78],[12,-78],[-7,-78],[4,-46],[24,-25]],[[42533,28756],[6,-56],[-17,-252],[11,-162],[46,-177]],[[42978,31058],[-13,-69],[-22,-45],[-34,-43],[-28,-13],[-21,16],[-41,-65],[-61,-146],[-73,-131],[-86,-114],[-52,-91],[-18,-66],[-5,-65],[7,-62],[-11,-69],[-29,-77],[-10,-78],[12,-121],[64,-253],[18,-106],[-5,-44],[8,-37],[21,-31],[-4,-36],[-28,-41],[-19,-49],[-13,-88]],[[43125,31557],[25,-15],[14,-37],[11,-66],[-17,-75],[-64,-127]],[[43406,31884],[-1,-68],[-22,-62],[-65,-116],[-18,-88]],[[29247,29747],[-1,-6]],[[29497,31136],[-74,-101],[-40,-83],[-41,-133],[7,-109],[-2,-90],[-10,-71],[-16,-65],[-21,-60],[-21,-36],[-23,-11],[-8,-79],[7,-147],[25,-89],[44,-32],[27,-48],[9,-65],[-4,-64],[-17,-63],[-29,-34]],[[29310,29756],[-63,-9]],[[29306,32136],[-9,-323],[0,-82],[24,-103],[71,-186],[9,-45]],[[29238,32736],[4,-27],[21,-60],[1,-94],[3,-77],[12,-42],[2,-48]],[[30074,32979],[-148,-142],[-40,-70],[-13,-48],[1,-145],[-15,-64],[-30,-2],[-70,35],[-25,27]],[[30702,33571],[-52,-75],[-41,-92],[-48,-135],[-28,-101],[-10,-68],[4,-85],[18,-104],[-4,-73],[-26,-41],[-46,-7],[-68,27],[-49,45],[-30,63],[-24,23],[-20,-18],[-17,2],[-16,23],[-2,31],[13,40],[1,31],[-10,20],[-19,11],[-29,1],[-43,-27],[-84,-83]],[[33217,36510],[-56,-34],[-63,-32],[-71,-1],[-52,-27],[-36,-39],[-51,-87],[-19,-26],[-17,-4],[-23,28],[-30,3],[-37,-20],[-42,-67],[-45,-115],[-27,-53],[-47,-37],[-137,-22],[-86,0],[-51,-20],[-43,-41],[-73,-92],[-61,-87],[-32,-124],[-54,-72],[-55,-8],[-109,85],[-30,15],[-38,-2],[-44,-52],[-65,-98],[-31,-89],[-19,-112],[-25,-71],[-32,-29],[-29,-46],[-26,-64],[-17,-25],[-9,7],[-9,-14],[-6,-55],[-10,-29],[-13,-4],[-10,-31],[-7,-59],[-21,-64],[-50,-104],[-105,-185],[-53,-60],[-53,2]],[[33224,36727],[13,-171],[-2,-28]],[[25919,41445],[-24,-3],[-160,31],[-40,2],[-34,42]],[[25661,41517],[-9,69],[-44,208],[-44,124],[-45,41],[-35,18],[-45,-23]],[[27703,43843],[-29,-133],[-23,-46],[-28,-3],[-9,-33],[8,-62],[-1,-44],[-11,-27],[-26,7],[-41,41],[-63,23],[-84,3],[-58,47],[-31,90],[-79,18],[-126,-56],[-77,-8],[-26,38],[-28,11],[-28,-17],[-10,-34],[8,-49],[-1,-42],[-10,-34],[-34,-71],[-32,-27],[-44,-19],[-34,-63],[-21,-107],[-5,-80],[11,-53],[24,-43],[57,-48],[0,-49],[8,-28],[18,-23],[5,-39],[-6,-53],[9,-120],[23,-187],[46,-96],[67,-7],[50,13],[32,32],[39,-34],[48,-100],[25,-102],[1,-105],[23,-66],[42,-28],[10,-4],[13,-12],[9,-12]],[[27314,42002],[31,-68],[9,-20],[7,-14],[3,-13],[-3,-15],[-12,-23],[-14,-18],[-27,-34],[-57,-33],[-113,-10],[-226,-87],[-100,-69],[-87,-34],[-163,-32],[-148,-46],[-62,4],[-27,40],[-71,22],[-117,6],[-98,-26],[-91,-79],[-29,-8]],[[27916,44542],[-11,-24],[-85,-106],[-51,-84],[-24,-93]],[[16282,56789],[-7,76],[-17,43],[-28,37],[-59,26],[-133,22],[-114,-32],[-123,-86],[-171,-151],[-99,-106],[-28,-61],[-9,-56],[15,-77],[98,-142],[103,-97],[141,-98],[75,-77],[12,-83],[-27,-66],[-42,-42],[-66,-38],[-45,-51],[-22,-65],[2,-79],[26,-93],[45,-88],[63,-84],[18,-24],[5,-16],[-4,-25],[-38,-67],[-9,-21],[-24,-20]],[[35096,30488],[108,-127],[46,-122],[32,-60],[32,-36],[33,-19],[50,0],[73,-33],[55,-54],[93,-127]],[[30803,30092],[-92,-59],[-87,13],[-112,65],[-100,88],[-89,109],[-86,27],[-83,-56],[-31,-66],[21,-76],[7,-61],[-6,-46],[-41,-6],[-77,34],[-46,0],[-16,-33],[-35,-27],[-53,-20],[-94,-66],[-134,-113],[-81,-52],[-28,9],[-28,-9],[-27,-26],[-32,11],[-36,49],[-38,12],[-69,-37]],[[32167,30521],[40,-149],[-58,-215],[-46,-77],[-52,-11],[-41,-80],[-29,-148],[-41,-101],[-51,-53],[-53,-2],[-56,49],[-39,68],[-24,87],[-25,54],[-25,20],[-34,-17],[-43,-55],[-44,-28],[-47,-2],[-67,75],[-88,151],[-83,79],[-77,6],[-69,-39],[-63,-85],[-54,-16],[-46,52],[-55,23],[-97,-8]],[[44596,32935],[3,-24],[-11,-102],[10,-75],[30,-62],[12,-45],[-6,-30],[-12,-16],[-19,-2],[-8,-21],[2,-40],[17,-28],[31,-17],[38,-65],[66,-169],[23,-59],[7,-82],[-1,-123],[13,-61],[29,3],[22,-15],[14,-33],[0,-75],[-14,-119],[11,-98],[35,-78],[14,-66],[-8,-52],[4,-16],[16,-2],[14,-34],[21,-96],[19,-54],[17,-11],[20,-85],[36,-237],[61,-135],[39,-64],[38,-38],[21,-40],[4,-42],[-7,-49],[-30,-84],[-17,-29]],[[44168,33641],[-124,-70],[-81,-72],[-116,-82],[-203,-138],[-35,-80],[-121,-110],[-40,-29],[-75,-42],[-87,-61],[-30,-51],[-131,-113],[-69,-89],[-33,-58],[2,-40]],[[47459,40087],[4,-77],[-7,-30],[-18,-10],[-14,-26],[-11,-44],[-1,-31],[14,-25],[79,-88],[37,-68],[22,-77],[4,-64],[-14,-50],[-3,-62],[10,-73],[29,-26],[49,21],[24,-59],[-2,-211],[-47,-260],[-18,-155],[-2,-136],[-20,-117],[-38,-97],[-19,-125],[-2,-232],[-16,-175],[0,-103],[11,-117],[-4,-45],[-1,-29]],[[25189,37521],[-26,23],[-21,55],[-24,93],[-24,52],[-35,15],[-11,1]],[[26072,38406],[11,-33],[-7,-30],[-20,-41],[-25,-9],[-30,21],[-38,-28],[-47,-76],[-45,-40],[-43,-5],[-42,-32],[-42,-58],[-43,-18],[-46,20],[-33,3],[-31,-24],[-53,-37],[-45,5],[-55,32],[-53,-50],[-52,-132],[-24,-121],[4,-110],[-15,-88],[-33,-64],[-31,-17],[-45,47]],[[13073,61851],[-32,-172],[-43,-97],[-17,-63],[-6,-61],[22,-57],[51,-52],[39,-58],[29,-64],[0,-71],[-29,-78],[-108,-92],[-188,-106],[-75,-52],[-26,-55],[-15,-107],[-31,-74],[-48,-39],[-65,-32],[-84,-22],[-79,-3],[-75,17],[-77,-18],[-80,-54],[-72,-29],[-63,-3],[-37,-17],[-15,-44],[-39,20],[-82,-27],[-138,-67],[-101,-103],[-64,-138],[-79,-109],[-96,-81],[-80,-37],[-65,8],[-29,28],[-15,18],[-60,28],[-22,25],[-17,17],[-24,-8],[-12,13],[-1,25],[-19,28],[-39,4],[-59,-21],[-52,5],[-45,30],[-63,8],[-81,-12],[-12,-20],[-3,-22],[-11,-14],[-35,-16],[-9,-17],[6,-23],[-6,-48],[-59,-70],[-10,-27],[6,-27],[6,-20],[-7,-18],[9,-23],[20,-7],[16,-4],[9,-37],[11,-16],[5,-22],[-6,-17],[-15,-11],[-3,-15],[-1,-19],[-16,-10],[-32,1],[-33,1],[-30,11],[4,19],[-20,24],[-43,29],[-39,14],[-35,-1],[-42,-22],[-48,-44],[-70,-15],[-89,16],[-53,-1],[-15,-19],[-19,-50],[4,-17],[15,-7],[8,-22],[2,-37],[-10,-23],[7,-35],[-11,-40],[-5,-47],[7,-73],[23,-26],[40,21],[33,-3],[26,-28],[-10,-15],[-46,-2],[-20,-20],[4,-39],[-21,-36],[-71,-49],[-13,-15]],[[11326,57338],[-55,-53],[-37,-13],[-38,12],[-51,-13],[-66,-36],[-43,-2],[-22,31],[-33,3],[-46,-25],[-11,-21],[24,-17],[-18,-41],[-61,-64],[-34,-44],[-6,-25],[3,-17],[13,-9],[9,-29],[3,-50],[-4,-34],[-17,-29],[-94,-80],[-53,-78],[-42,-103],[-9,-95],[24,-89],[0,-53],[-24,-17],[-18,-34],[-14,-50],[-86,-72],[-158,-92],[-167,9],[-173,112],[-114,40],[-53,-33],[-35,-5],[-16,21],[-29,-48],[-40,-116],[-54,-76],[-68,-34],[-74,-6],[-82,22],[-132,4],[-275,-20],[-186,-26],[-89,-36],[-55,-54],[-30,-51],[-5,-49],[-17,-26],[-28,-3],[-17,-20],[-7,-38],[-34,-47],[-62,-58],[-38,-59],[-14,-60],[-34,-49],[-52,-38],[-42,-11],[-32,17],[-14,-9],[6,-36],[-4,-24],[-11,-15],[-21,5],[-31,25],[-16,-5],[-3,-36],[-12,-17],[-23,1],[-8,-12],[7,-25],[-12,-18],[-48,-15],[-29,-17]],[[31029,40657],[-51,-54],[-33,-13],[-32,7],[-23,26],[-16,52],[-4,9]],[[30776,40785],[-9,-1],[-35,-22],[-31,9],[-34,35],[-33,88],[-30,139],[-11,111],[8,83],[24,94],[42,105],[27,135],[13,165],[15,110],[18,55],[-7,83],[-50,168]],[[40603,26344],[53,158],[90,36]],[[40654,26502],[-12,20]],[[40642,26522],[46,138]],[[40642,26522],[-65,107],[-38,48],[-43,36],[-23,26],[-2,25],[-19,38],[-20,19],[-50,93],[-47,73],[-15,59],[-2,52],[11,45],[13,14],[12,2],[4,9],[0,14],[-4,10],[-49,16],[-93,10],[-64,30],[-33,51],[-52,14],[-73,-22],[-47,16],[-13,31],[-9,21],[-21,26],[-20,0],[-14,19],[-8,31],[-16,20],[-16,5],[-11,17],[2,19],[-8,17],[-14,16],[-5,20],[1,19],[-3,22],[-14,15],[-4,31],[8,70],[-4,23],[-14,26],[0,29],[-8,45],[-28,83],[-22,34],[-16,9],[-48,2],[-12,22],[4,32],[11,35],[-2,16],[-8,34],[-33,27],[-12,13],[-6,18],[1,21],[2,31],[19,32],[6,41],[-15,98],[5,54],[27,10],[13,52],[0,94],[11,63],[21,33],[19,78],[19,121],[39,101],[58,78],[29,69],[2,53],[6,24],[12,14],[19,36],[26,49],[4,34],[-1,24],[-2,25],[-20,45],[-31,39],[-20,61],[1,46],[-7,41],[-15,35],[3,33],[22,30],[1,29],[-19,27],[-1,48],[19,69],[-1,48],[-21,27],[-4,67],[20,161],[-4,21],[-21,49],[-2,59],[12,72],[-6,56],[-17,20],[-5,22],[-5,33],[19,31],[1,28],[-17,25],[11,37],[37,47],[11,26]],[[39841,30721],[11,28],[6,67],[-5,40],[-9,27],[4,13],[8,13],[45,24],[13,17],[2,21],[-14,52],[14,55],[41,57],[22,51],[3,44],[20,32],[37,20],[23,82],[9,143],[11,61],[19,9],[10,20],[3,41],[23,42],[43,43],[17,42],[-5,23],[0,31],[17,38],[51,62],[22,81],[-7,101],[19,90],[44,82],[18,80],[-7,79],[22,65],[51,50],[7,21],[-2,15],[-1,18],[1,7],[2,15],[12,9],[15,7],[7,13],[0,21],[-9,36],[5,43],[25,67],[3,58],[-18,48],[9,24],[12,7],[15,4],[5,11],[0,14],[-13,32],[4,27],[22,19],[6,49],[-9,78],[2,26],[3,11],[6,2],[8,-1],[10,-23],[5,-28],[6,-9],[9,8],[24,82],[21,22],[9,4],[23,-15],[11,-5],[23,29],[21,82],[12,86],[3,92],[-14,73]],[[40702,33626],[-31,55],[-22,25],[-4,-2],[-4,-7],[-2,-17],[1,-12],[3,-14],[-2,-9],[-4,-1],[-23,21],[-28,61],[-33,100],[-7,80],[18,59],[0,63],[-18,65],[-9,64],[0,62],[-45,93],[-89,125],[-66,76],[-42,29],[-49,63],[-57,95],[-30,73],[-3,51],[25,134],[75,293],[8,35],[3,13],[-4,13],[-7,12],[-31,34],[-60,30],[-56,16],[-44,-35],[-39,71],[-33,176],[-82,187],[-130,196],[-75,133],[-22,71],[-18,105],[-15,141],[0,116],[26,140],[23,16],[5,46],[-6,81],[24,61],[56,41],[51,92],[45,140],[21,101],[-4,61],[-17,58],[-29,54],[-7,68],[15,81],[49,51],[82,22],[75,41],[68,59],[40,66],[12,70],[20,55],[26,39],[18,64],[11,89],[1,66],[-8,42],[-29,49],[-51,55],[-29,52],[-6,49],[-27,52],[-47,56],[-30,69],[-14,82],[-45,60],[-77,40],[-49,62],[-21,84],[-14,95],[-6,106],[6,88],[18,72],[-4,48],[-28,25],[-18,33],[-8,41],[-18,325],[-19,126],[-28,50],[-59,57],[-91,66],[-55,61],[-32,87],[-64,100],[-42,42],[-41,15],[-33,33],[-24,49],[-34,31],[-42,13],[-48,41],[-79,102],[-64,29],[-30,44],[-18,67],[-22,23],[-25,-22],[-26,45],[-26,113],[-26,72],[-27,33],[-236,169],[-57,46],[-32,52],[-25,74],[-10,50],[5,26],[-16,48],[-37,68],[-23,58],[-8,49],[1,60],[10,71],[-1,68],[-12,63],[27,82],[67,101],[41,78],[16,56],[43,23],[73,-9],[47,25],[23,59],[31,42],[38,25],[37,75],[36,124],[7,72],[-22,19],[-20,42],[-19,64],[-29,46],[-37,29],[-38,5],[-37,-18],[-17,12],[1,44],[-15,19],[-32,-5],[-34,27],[-53,88]],[[38072,42865],[25,147],[41,121],[37,28],[71,-38]],[[38304,43138],[81,-46]],[[36488,39141],[187,-188],[80,-42],[37,39],[82,23],[126,6],[80,-19],[33,-43],[65,-48],[97,-53],[57,-58],[20,-63],[33,-40],[48,-17],[30,-80],[13,-144],[27,-115],[42,-88],[21,-65],[0,-40],[10,-44],[20,-46],[8,-79],[-4,-112],[9,-60],[21,-7],[9,-16],[-3,-24],[7,-18],[17,-12],[5,-32],[-7,-53],[6,-33],[20,-14],[3,-26],[-12,-38],[2,-30],[16,-22],[11,-98],[5,-173],[-1,-102],[-10,-30],[15,-62],[39,-96],[24,-95],[11,-94],[24,-61],[39,-29],[25,-60],[14,-93],[32,-78],[110,-125],[27,-1],[32,18],[25,-27],[16,-72],[-2,-37],[-22,-2],[-26,-43],[-32,-86],[8,-80],[47,-75],[32,-76],[16,-76],[31,-60],[69,-63],[53,0],[37,24],[39,49],[43,2],[46,-43],[49,-5],[50,32],[64,20],[76,6],[40,18],[6,29],[14,1],[23,-28],[34,28],[44,82],[61,-2],[76,-85],[27,-66],[-20,-47],[-5,-49],[11,-51],[42,-34],[72,-16],[68,-78],[94,-210],[76,-66],[65,10],[79,66],[82,33],[83,1],[88,-37],[91,-74],[73,-6],[53,63],[41,30],[28,0],[39,46],[48,94],[40,22],[26,-13],[56,-24]],[[35666,40392],[10,-19],[13,-37],[53,-41],[92,-39],[44,-38],[-6,-35],[6,-31],[17,-27],[36,-18],[53,-8],[17,17],[-20,43],[3,23],[26,3],[18,-27],[8,-57],[27,-50],[65,-63]],[[36128,39988],[0,-1]],[[30601,42416],[-26,8],[-25,36],[-32,69],[-13,46],[7,23],[-9,49],[-26,73],[-6,55],[14,35],[154,223],[72,67],[48,-3],[24,25],[2,54],[23,39],[45,24],[45,59],[44,94],[37,44],[29,-7],[78,61],[128,128],[74,54],[19,-21],[16,-48],[12,-76],[30,-62],[48,-49],[125,-7],[199,36],[103,1],[5,-34],[22,-36],[39,-38],[81,-31],[186,-37]],[[35216,43183],[-10,-20],[6,-48],[21,-84],[51,-51],[82,-21],[38,-26],[-3,-32],[9,-44],[22,-55],[7,-48],[-9,-40],[13,-78],[52,-173]],[[32973,43651],[17,34],[66,-1],[119,-22],[101,8],[84,40],[90,13],[97,-15],[66,11],[35,37],[67,12],[99,-12],[113,-39],[126,-67],[72,-23],[28,30]],[[12691,58450],[-238,22],[-87,-82],[-44,-68],[-32,-81],[-13,-57],[6,-35],[-92,-78],[-190,-121],[-108,-93],[-26,-66],[-41,-56],[-57,-46],[-53,-56],[-49,-64],[-22,-42],[3,-19],[-79,-49],[-243,-121]],[[45225,39340],[-2,-92]],[[42480,35173],[-11,9],[-16,21],[-27,9],[-44,-6],[-18,-43],[9,-79],[-15,-60],[-39,-42],[-28,-55],[-17,-69],[-27,-42],[-37,-15],[-30,-64],[-22,-112],[-25,-70],[-27,-27],[-37,7],[-46,40],[-27,42],[-8,43],[-13,31],[-13,13],[-8,1],[-1,-7],[3,-12],[-4,-13],[-29,-4],[-12,-18],[4,-31],[-7,-22],[-17,-13],[-8,-30],[-1,-46],[-12,-42],[-23,-39],[-33,13],[-44,64],[-44,15],[-45,-34],[-33,-47],[-22,-59],[-22,-15],[-30,45],[-73,62],[-38,14],[-28,-15],[-19,7],[-7,17],[-5,7],[-5,-9],[-1,-54],[-6,-34],[-13,-15],[-9,12],[-7,37],[-16,12],[-24,-13],[-25,5],[-22,22],[-8,-2],[-6,-10],[1,-43],[-4,-34],[-12,-21],[-16,-6],[-21,12],[-9,-11]],[[41201,34350],[-14,-16],[-25,-65],[-5,-72],[14,-78],[-37,-64],[-89,-48],[-47,-43],[-6,-37],[7,-56],[17,-76],[3,-53],[-11,-29]],[[41008,33713],[-64,20],[-116,69],[-77,-3],[-40,-73],[-14,-55],[5,-45]],[[44808,36767],[-71,67],[-33,57],[-19,70],[-35,23],[-79,-36],[-53,-40],[-10,-36],[16,-47],[9,-60],[1,-74],[-30,-163],[-60,-251],[-31,-157],[-1,-65],[-40,-85],[-79,-105],[-55,-63],[-32,-21],[-26,2],[-21,25],[-24,-17],[-26,-60],[-25,-31],[-23,-2],[-19,-38],[-16,-76],[-16,-43],[-14,-12],[-1,-38],[12,-65],[-1,-23],[-7,-1],[-6,4],[-15,-15],[-18,-36],[-6,-1],[-5,6],[-5,48],[-14,33],[-23,20],[-32,-44],[-41,-107],[-18,-70],[8,-48],[3,-70],[-10,-29],[-22,-11],[-18,-38],[-12,-66],[-31,-42],[-49,-17],[-56,33],[-61,82],[-39,79],[-16,75],[-53,3],[-92,-68],[-68,-11],[-47,48],[-35,18],[-35,-15],[-32,-31],[-28,18],[-34,57],[-54,39],[-74,22],[-51,60],[-29,100],[-30,68],[-32,38],[-35,10],[-39,-15],[-29,8],[-21,31],[-27,-3],[-32,-39],[-10,-39],[11,-40],[0,-32],[-12,-25],[4,-18],[21,-12],[8,-29],[-5,-44],[-45,-45],[-87,-51],[-18,-15],[-16,-6],[-7,3]],[[28076,44542],[5,-37],[-7,-50],[-19,-59],[-4,-79],[13,-99],[17,-69],[21,-38],[13,-73],[4,-106],[52,-81],[100,-54],[62,-3],[26,47],[24,22],[36,-4]],[[26690,37913],[-13,-137],[-25,-54],[-74,-43],[-131,-49],[-65,-98],[2,-146],[-8,-96],[-19,-44],[-23,2],[-27,50],[-28,9],[-29,-32],[-38,-6],[-47,18],[-40,-4],[-33,-29],[-29,2],[-27,31],[-20,0],[-13,-30],[-3,-36],[8,-42],[-14,-42],[-50,-65]],[[17473,61286],[-46,-11],[-178,-74],[-52,-35],[-21,-34],[-9,-47],[-11,-27],[-15,-8],[-140,2],[-25,4],[-10,9],[-2,17],[-5,13],[-15,8],[-62,-47],[-110,-104],[-132,-51],[-156,2],[-111,-11],[-67,-24],[-28,-23],[11,-22],[0,-16],[-9,-10],[-52,17],[-32,-16],[-31,-45],[-54,-34],[-77,-22],[-48,-1],[-19,22],[-13,-1],[-5,-22],[-28,-11],[-49,-1],[-50,-26],[-50,-52],[-51,-21],[-52,10],[-76,-14],[-115,-53]],[[45554,36032],[65,42],[37,-7],[32,-42],[32,-21],[32,2],[13,-10],[-8,-22],[9,-25],[24,-28],[9,-26],[-8,-25],[2,-17],[13,-12],[8,-26],[3,-42],[31,-41],[60,-40],[25,-40],[-11,-42],[-1,-29],[11,-27],[81,-54],[50,-77],[39,-30],[22,-19],[10,-24]],[[38805,44186],[-33,-44],[-46,-22],[-64,-10],[-37,18]],[[38222,44351],[-7,16],[-3,49]],[[36260,24022],[24,-25],[64,-16],[48,-38],[15,-26]],[[36491,23845],[30,-7],[49,-38],[29,-42]],[[36711,23691],[117,-19],[96,-52],[10,-13]],[[37056,23576],[5,5],[59,18]],[[35378,26779],[9,-49]],[[35494,26544],[11,-17],[8,-20]],[[35543,26435],[5,-12],[2,-17]],[[35603,26180],[61,-170],[30,-101],[-7,-15],[5,-53],[12,-57]],[[35755,25658],[38,-49],[49,-114],[50,-164],[29,-59]],[[35980,25175],[44,-54],[41,-80],[9,-73],[-1,-63],[0,-1]],[[36080,24772],[7,-17],[7,-57],[-6,-64]],[[32901,28924],[58,-50],[7,-13]],[[33121,28561],[23,-20],[95,-143],[133,-236],[34,-50]],[[33553,27931],[6,-6],[53,-68],[20,-40]],[[33657,27742],[19,-65],[70,-285],[0,-83]],[[33752,27233],[20,-95],[53,-161],[46,-94],[40,-29],[43,-57],[47,-85],[54,-57],[62,-29],[84,-77],[108,-124],[74,-63],[40,-3],[36,40],[30,82],[29,53],[26,21]],[[34556,26629],[-2,19],[19,117],[8,31]],[[34601,26876],[17,70],[8,16]],[[34671,27044],[0,1],[5,1]],[[34760,27082],[14,12],[19,53],[33,6],[34,-30]],[[35081,27074],[40,2],[19,21],[10,-1],[1,-23],[16,-9],[31,3],[27,-31],[34,-99]],[[32575,29916],[24,-153],[31,-62],[46,-23],[42,-59],[38,-96],[20,-72],[-1,-48],[32,-138],[94,-341]],[[32625,30154],[-44,-52]],[[32516,34338],[161,-29],[64,59],[49,-15],[56,-69],[66,-35],[75,1],[80,-29],[85,-57],[57,-54],[30,-50],[22,-58],[12,-64],[2,-87],[-9,-110],[4,-126],[18,-143],[3,-157],[-10,-169],[-19,-114],[-40,-87],[-70,-100],[-30,-77],[-13,-88],[-29,-88],[-45,-86],[-34,-102],[-22,-117],[-43,-130],[-62,-144],[-29,-117],[4,-91],[-15,-189],[-36,-287],[-24,-155],[-13,-23],[-3,-111],[5,-200],[-24,-162],[-54,-127],[-34,-105],[-20,-125]],[[44996,34919],[83,199],[59,243],[41,89],[41,16],[51,98],[62,178],[51,116],[58,77],[36,1],[16,21],[7,41],[17,24],[36,10]],[[26174,35141],[30,-37],[5,-35],[-11,-43],[-2,-52],[8,-59],[-2,-40],[-13,-22],[1,-28],[15,-35],[-15,-41],[-12,-30],[-53,-43],[-8,-17],[-7,-25],[-11,-19]],[[25802,37016],[-9,-67],[26,-68],[58,-90],[28,-66],[-3,-43],[5,-25],[12,-7],[-1,-34],[-16,-59],[2,-37],[18,-16],[18,-83],[18,-152],[21,-96],[23,-40],[4,-107],[-17,-175],[-5,-112],[6,-50],[23,-69],[39,-86],[21,-81],[4,-75],[16,-63],[27,-50],[23,-24],[20,2],[10,-24],[1,-78]],[[49181,42051],[10,49],[21,54],[38,42],[28,67],[24,18],[30,-9],[14,13],[-2,36],[61,129],[126,221],[84,125],[42,29],[32,9],[21,-13],[40,25],[59,62],[22,14]],[[49891,42957],[74,26],[46,27],[7,21]],[[50041,43045],[31,-7]],[[50076,43036],[52,-54]],[[27018,33633],[-37,-94],[-72,-49],[-119,-34],[-84,55],[-50,144],[-45,85],[-40,27],[-72,125],[-156,333]],[[27448,33720],[-32,98],[-134,190],[-20,26],[-16,13],[-16,-16],[-10,-29],[-35,-139],[-36,-78],[-37,-17],[-27,-26],[-24,-52]],[[26343,34225],[-23,47],[-12,70],[-10,109],[-19,65],[-44,29],[-11,12],[-12,23],[-13,13]],[[43814,30600],[91,-128],[31,-68],[2,-53],[11,-37],[20,-21],[19,-47],[18,-71],[36,-63],[55,-53],[39,-120],[25,-189],[26,-110],[39,-45],[53,-161],[17,-96],[-1,-85],[27,-65],[91,-73]],[[43541,31239],[103,-317]],[[29806,38791],[-67,-88],[-72,-36],[-100,-15],[-124,30],[-148,73],[-89,65],[-31,58],[-14,50],[2,42],[-23,26],[-50,12],[-32,26],[-14,39],[-37,4],[-58,-33],[-82,3],[-106,39],[-49,-4],[-26,-15],[-47,37],[-80,100],[-46,76],[-12,51],[-23,32],[-35,11],[-40,44],[-45,76],[-27,60],[-8,44],[-36,50],[-64,56],[-25,50],[18,65],[29,144],[6,67],[-7,38],[5,36],[17,35],[0,38],[-19,42],[-34,27],[-49,14],[-26,49],[-2,84],[37,129],[76,174],[42,123],[7,73],[46,166],[84,262],[33,168],[-20,73],[-43,70],[-66,67],[-47,78],[-27,89],[-8,62],[11,36],[-9,62],[-30,89],[-13,60],[4,33],[-18,15],[-41,-3],[-24,20],[-4,45],[-27,59],[-49,75],[-49,40],[-50,6],[-39,-16],[-28,-39],[-50,-33],[-71,-29],[-77,-8],[-80,12],[-73,-58],[-63,-128],[-62,-86],[-94,-77]],[[30079,38916],[-71,-114],[-50,-36],[-81,6]],[[30830,39395],[-71,99],[-28,57],[-7,46],[-72,67],[-138,87],[-67,-20],[5,-128],[-18,-111],[-39,-93],[-68,-108],[-147,-183]],[[31080,39848],[-43,-198],[-24,-76],[-19,-22],[-6,-30],[5,-40],[15,-30],[24,-21],[6,-39],[-13,-56],[-37,-44],[-66,-33],[-29,16]],[[26487,38542],[-75,37],[-173,37],[-75,39],[-34,53],[-43,-4],[-51,-61],[-15,-33]],[[43721,39103],[-32,-253],[0,0]],[[47174,40909],[-24,-5],[-42,5],[-32,-16]],[[46942,40789],[-67,-78]],[[46848,40675],[-159,-227]],[[21556,51543],[-84,7],[-59,-13],[-47,-52],[-20,-12]],[[14927,56817],[-65,64],[-23,36],[-2,28],[-33,27],[-65,27],[-56,-3],[-48,-31],[-71,19],[-95,69],[-82,43],[-106,23],[-172,11],[-77,-10],[-37,-25],[-46,2],[-57,29],[-87,12],[-119,-3],[-108,-47],[-97,-92],[-59,-76],[-31,-90],[-21,-78],[-1,-71],[11,-91],[-1,-57],[-13,-21],[3,-26],[21,-31],[9,-53],[-2,-73],[-33,-113],[-63,-153],[-50,-89],[-38,-28],[-22,-53],[-5,-114],[1,-51]],[[17016,56382],[-22,36],[-7,39],[0,56],[15,42],[45,43],[60,38],[33,44],[27,63],[37,51],[48,39],[31,38],[13,36],[-7,63],[-30,89],[-33,53],[-36,16],[-10,23],[15,30],[-52,70],[-119,111],[-85,55],[-49,0],[-53,19],[-55,37],[-40,47],[-24,56],[-26,25],[-28,-5],[-33,15],[-36,35],[-35,12],[-50,-17],[-209,-7],[-77,15],[-15,34],[-2,37],[10,42],[-10,44],[-32,47],[-91,39],[-149,32],[-109,62],[-71,94],[-26,58],[3,38],[-12,31],[-53,31],[-57,14],[-60,-1],[-66,24],[-69,47],[-59,18],[-48,-12],[-88,23],[-125,56],[-88,21],[-75,-19],[-117,115],[-39,66],[0,55],[-27,60],[-52,65],[-56,52],[-60,39],[-76,26],[-93,12],[-71,-11],[-77,-52],[-180,-96],[-106,-34],[-141,-1],[-9,11],[-2,48],[8,86],[-4,38],[-11,19],[0,18],[12,26],[-4,23],[-22,21],[-53,9],[-86,-2],[-80,-29],[-73,-57],[-108,16],[-145,90],[-121,42],[-97,-3],[-89,-24],[-82,-43],[-64,4],[-45,52],[-17,30],[4,28],[-9,7],[-26,-16],[-23,12],[-10,52],[-43,37],[-114,35]],[[41354,31609],[-51,-9],[-68,73],[-53,81],[-48,72],[-52,103],[-2,54],[13,49],[29,43],[13,39],[-1,33],[23,23],[47,12],[18,13],[-11,14],[2,28],[13,42],[-1,63],[-15,82],[5,88],[23,92],[7,52],[-15,18]],[[43025,32606],[-116,-94],[-51,-28],[-26,6],[-25,30],[-38,80],[-25,-55],[-15,-13],[-11,13],[-21,-49],[-29,-109],[-24,-57],[-19,-6],[-12,-29],[-6,-51],[-10,-20],[-14,10],[-25,-63],[-35,-136],[-41,-100],[-46,-63],[-28,-12],[-9,41],[-11,2],[-14,-38],[-17,-5],[-18,28],[-26,0],[-34,-29],[-20,-35],[-7,-43],[-65,-145],[-123,-250],[-80,-114],[-38,22],[-37,46],[-38,72],[-54,31],[-104,-15]],[[41092,33653],[-84,60]],[[43300,31550],[85,-99]],[[42673,36686],[49,-3],[3,15],[-38,46],[-15,16],[-4,39],[3,38],[-15,39],[-42,19],[-54,55],[-66,93],[-73,68],[-77,41],[-84,-7],[-90,-57],[-105,-34],[-121,-12],[-105,-82],[-90,-151],[-61,-75],[-34,3],[-39,-23],[-45,-48],[-83,-111],[-19,-79],[3,-99],[9,-71],[14,-42],[4,-78],[-4,-115],[-11,-104],[-18,-92],[-25,-68],[-32,-43],[-14,-48],[3,-52],[-5,-37],[-15,-23],[7,-56],[29,-90],[17,-90],[6,-88],[-6,-63],[-24,-57],[-23,-125],[-21,-49],[-24,-17],[-22,-46],[-19,-76],[-21,-37],[-21,2],[-16,-13],[-11,-30],[1,-32],[13,-33],[-4,-31],[-21,-28],[0,-14],[7,-8],[-3,-13],[-13,-14],[-9,-42],[1,-70],[-7,-34],[-14,-2],[-2,-19],[24,-79]],[[25944,39471],[-56,57],[-68,27],[-24,54],[-1,89],[-14,67],[-27,44],[-74,85],[-124,124],[-71,114],[-29,158],[-17,172],[14,78],[39,41],[11,33],[-15,24],[-2,37],[12,50],[-4,31],[-19,12],[8,34],[33,55],[11,47],[-9,39],[4,36],[19,32],[3,37],[-14,40],[1,34],[16,26],[35,19],[83,17],[43,56],[8,53],[-14,68],[-19,53],[-25,39],[-6,42],[9,22]],[[44097,32791],[25,-24],[25,7],[52,46],[202,109],[101,30],[82,-15],[12,-9]],[[17473,58802],[-2,1],[-27,33],[3,21],[-15,23],[-32,25],[-5,28],[21,31],[0,19],[-23,6],[-8,17],[5,27],[-20,10],[-43,-8],[-21,19],[2,68],[-16,41],[-58,39],[-104,50],[-70,52],[-36,54],[-65,31],[-95,9],[-64,17],[-33,26],[-35,1],[-37,-24],[-86,-10],[-133,4],[-99,21],[-63,40],[-38,41],[-11,42],[-38,33],[-63,23],[-45,30],[-28,39],[-1,60],[26,82],[6,58],[-14,35],[-91,102],[-167,172],[-94,108],[-18,47],[-58,61],[-97,76],[-105,45]],[[15478,60527],[-168,22]],[[7501,56373],[8,-70],[-1,-49],[-21,-35],[-44,-16],[-68,2],[-47,-14],[-27,-30],[-31,-6],[-28,19],[-4,34],[-7,15],[-17,1],[-27,-13],[-19,12],[-11,36],[-27,-11],[-43,-57],[-37,-25],[-30,8],[-44,-14],[-58,-37],[-39,3],[-45,15],[-38,-20],[-21,-38],[4,-29],[46,-34],[11,-34],[-16,-36],[-49,-40],[-54,-24],[-37,-36],[-44,-45],[-8,-56],[2,-40],[-19,-16]],[[7501,56373],[-79,40],[-133,29],[-77,37],[-22,47],[2,58],[27,70],[13,60],[-1,51],[-31,76],[-61,101],[-70,61],[-116,32],[-18,-7],[-30,-25]],[[15310,60549],[-374,-93],[-158,-58],[-64,-53],[-74,-31],[-83,-7],[-39,-21],[5,-34],[-72,-18],[-149,-3],[-128,-33],[-106,-63],[-57,-47],[-16,-33],[-12,-5],[-10,22],[-27,4],[-44,-12],[-19,-19],[6,-25],[-24,-20],[-54,-14],[-34,-31],[-15,-47],[-69,-15],[-124,19],[-92,-18],[-62,-55],[5,-28],[70,-3],[29,-36],[-14,-70],[-32,-26],[-50,17],[-38,-26],[-26,-68],[-63,-41],[-101,-14],[-109,-53],[-117,-94],[-156,-76],[-289,-86]],[[12524,59235],[-135,-37],[-83,9],[-74,44],[-71,17],[-67,-9],[-54,-23],[-39,-38],[-52,-12],[-65,16],[-118,-41],[-172,-97],[-125,-45],[-80,7],[-120,-30],[-128,-32],[-111,-70],[-87,-31],[-80,7],[-109,-39],[-92,-7],[-100,-29],[-137,-15],[-12,28],[-23,21],[-48,10],[-34,23],[-19,37],[-106,27],[-56,-5],[-50,22],[-117,6]],[[9960,58949],[-32,17],[-32,-10],[-40,-52],[-75,-109],[-53,-35],[-96,-163],[-79,-109],[-6,-29],[14,-81],[-6,-76],[-27,-74],[-41,-57],[-83,-63],[-62,-37],[-24,-34],[-7,-41],[-17,-32],[-28,-22],[-30,-58],[-33,-94],[-9,-74],[14,-52],[-24,-59],[-63,-65],[-37,-79],[-12,-93],[-33,-69],[-53,-44],[-34,-65],[-13,-84],[-19,-61],[-24,-35],[-12,-52],[0,-67],[17,-58],[34,-46],[23,-52],[14,-40],[5,-45],[4,-38],[19,-24],[48,-15],[27,-20],[7,-24],[-6,-31],[-18,-37],[-31,-25],[-45,-14],[-36,-34],[-27,-55],[-109,-29],[-191,-4],[-136,-27],[-83,-49],[-39,-43],[6,-37],[-9,-41],[-25,-42],[-57,-33],[-101,-19],[-32,-14],[-43,-23],[-15,20],[-4,53],[-26,81],[-51,108],[-51,54],[-53,1],[-32,22],[-14,41],[-26,11],[-38,-19],[-25,-25],[-10,-31],[-22,-4],[-33,21],[-33,-2],[-33,-24],[-37,-5],[-40,14],[-32,33],[-24,52]],[[15310,60549],[-2,0]],[[15311,60549],[-1,0]],[[18826,54044],[-3,-3],[-15,-11],[-18,-2],[-55,-32],[-22,-27],[-12,-47],[4,-27],[10,-14],[9,-8],[5,-13],[6,-25],[1,-20],[-3,-12],[-6,-9],[-8,-5],[-9,2],[-89,7],[-19,-6],[-15,-10]],[[31363,44535],[-144,0],[-191,0],[-191,0],[-191,0],[-192,0],[-191,0],[-191,0],[-191,0],[-191,0],[-148,0]],[[29542,44535],[2,7]],[[29544,44542],[1819,0]],[[31363,44542],[0,-7]],[[29542,44535],[-43,0],[-191,0],[-191,0],[-191,0],[-191,0],[-82,0]],[[28653,44535],[-109,0],[-191,0],[-144,0]],[[28209,44535],[-47,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-36,0]],[[25643,44535],[4,8]],[[25647,44543],[3897,-1]],[[22391,50810],[5,49],[-4,58],[-15,46],[-19,40],[-52,-24],[-89,36],[-29,99],[-77,30],[-41,68]],[[22070,51212],[2,0]],[[22398,50824],[-7,-14]],[[22064,51216],[-79,32],[-68,24],[-53,40],[-61,48],[-24,20]],[[21779,51380],[3,-1]],[[21782,51379],[282,-163]],[[21626,51443],[-41,-3],[-3,56]],[[21582,51496],[17,-32]],[[21606,51451],[20,-8]],[[21490,51666],[-31,17],[9,43]],[[21468,51726],[14,-45]],[[21482,51681],[8,-15]],[[21427,51860],[-73,25],[27,60],[7,16]],[[21388,51961],[35,-89]],[[21423,51872],[4,-12]],[[21275,52240],[-16,27],[-63,132],[-53,112]],[[21143,52511],[108,-222]],[[21251,52289],[24,-49]],[[21089,52621],[-32,55],[-53,117],[-70,132],[-66,103],[10,67],[-65,85],[-19,28]],[[20794,53208],[84,-106]],[[21000,52803],[89,-182]],[[20643,53397],[-18,14],[-46,34],[-67,50],[-35,44],[-15,37],[-15,27],[-13,36],[-6,29]],[[20428,53668],[215,-271]],[[20370,53742],[-39,30],[-25,40],[-56,46],[-47,20],[-16,15],[-57,139],[9,50],[6,50],[-6,25]],[[20139,54157],[4,-6]],[[20301,53828],[69,-86]],[[20138,54158],[-76,85]],[[20062,54243],[47,-46]],[[20109,54197],[29,-39]],[[20008,54296],[-11,11],[-49,45],[-101,-59],[-104,-60],[-73,-22],[-35,-10]],[[19635,54201],[153,76]],[[19947,54356],[61,-60]],[[19575,54170],[28,-55],[-14,-47],[-31,-22],[-8,0]],[[19550,54046],[18,121]],[[19568,54167],[7,3]],[[19505,53893],[0,-8],[-51,-116],[-40,0]],[[19414,53769],[41,20]],[[19503,53889],[2,4]],[[19215,53672],[-6,-4],[-68,-48],[-72,-77],[-37,11],[17,69],[-3,11]],[[19046,53634],[66,10]],[[19175,53653],[40,19]],[[18996,53841],[-43,46],[-77,84],[-59,63],[-83,90],[-59,63],[-61,65],[-80,86],[-17,61]],[[18517,54399],[476,-546]],[[18993,53853],[3,-12]],[[18351,54534],[-1,0],[-6,7]],[[18344,54541],[7,-7]],[[22305,50038],[-1,12],[21,70],[34,82]],[[22359,50202],[1,-26]],[[22308,50045],[-3,-7]],[[22344,50498],[-5,29],[-3,63],[2,21]],[[22338,50611],[6,-113]],[[22268,49955],[11,19]],[[22279,49974],[-4,-9]],[[22275,49965],[-7,-10]],[[38011,44540],[0,-6],[-106,1],[-191,0],[-191,0],[-191,0],[-191,0],[-55,0]],[[37086,44535],[-136,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-192,0],[-191,0],[-191,0],[-191,0]],[[35230,44535],[0,6]],[[35230,44541],[2781,-1]],[[50492,41051],[-5,-6],[-23,18],[-15,33],[-24,34],[-9,26],[1,4]],[[50417,41160],[75,-109]],[[50409,41328],[-2,8],[2,20]],[[50409,41356],[0,-28]],[[50276,41595],[-7,-3]],[[50269,41592],[1,10]],[[50270,41602],[105,-115]],[[50276,41868],[-2,136],[-1,117],[-1,146],[-1,107],[-1,149],[-2,142],[-1,129]],[[50267,42794],[5,-8]],[[50278,41947],[-2,-79]],[[50128,42982],[-52,54]],[[50076,43036],[19,-9]],[[50095,43027],[33,-45]],[[50072,43038],[-31,7]],[[50041,43045],[8,4]],[[50049,43049],[23,-11]],[[50018,43031],[-7,-21],[-46,-27],[-74,-26]],[[49891,42957],[127,74]],[[49831,42922],[-22,-14],[-2,0]],[[49807,42908],[24,14]],[[49710,42976],[-2,15]],[[49708,42991],[2,1]],[[49710,42992],[0,-16]],[[47174,40909],[-24,-5],[-42,5],[-32,-16]],[[47076,40893],[46,26]],[[47122,40919],[59,-3],[-7,-7]],[[46942,40789],[-67,-78]],[[46875,40711],[45,59]],[[46920,40770],[22,19]],[[46848,40675],[-159,-227],[-3,-6]],[[46686,40442],[-3,4]],[[46610,40360],[238,315]],[[45224,39344],[1,-4],[-2,-92]],[[45223,39248],[-7,29]],[[45206,39320],[-3,12],[21,12]],[[45262,38989],[-2,14]],[[45260,39003],[-9,71]],[[43689,38850],[0,0],[32,253],[0,0]],[[43721,39103],[18,9]],[[43739,39112],[0,-1]],[[43696,38864],[-7,-14]],[[42762,42350],[23,-25]],[[42785,42325],[35,-36]],[[40515,43635],[-2,-1]],[[40513,43634],[-9,1]],[[40504,43635],[6,0]],[[40510,43635],[5,0]],[[40387,43634],[-19,-6],[-42,18],[-14,39]],[[40312,43685],[75,-51]],[[40239,43732],[-59,-10],[-63,6]],[[40117,43728],[122,4]],[[40027,43731],[-37,-4],[-24,24],[-19,63],[-34,8],[-3,-1]],[[39910,43821],[27,21]],[[39988,43789],[39,-58]],[[39726,43699],[-24,-14],[-56,0]],[[39646,43685],[80,14]],[[39615,43705],[-30,22],[-94,85],[-12,16]],[[39479,43828],[18,-6]],[[39497,43822],[118,-117]],[[39281,43905],[-10,-22],[-29,0],[-21,80]],[[39221,43963],[60,-58]],[[39154,44065],[-55,50],[-47,33],[-71,40],[-25,7],[-46,5],[-46,4],[-41,-9]],[[38823,44195],[42,21]],[[39153,44067],[1,-2]],[[38805,44186],[-33,-44],[-46,-22],[-64,-10],[-37,18]],[[38625,44128],[68,9]],[[38787,44177],[18,9]],[[38222,44351],[-7,16],[-3,49],[0,1],[-41,127],[-17,105],[-8,127],[2,42],[-9,13],[-29,28],[-85,16]],[[38025,44875],[0,3]],[[38225,44436],[-3,-85]],[[42985,42095],[70,-113]],[[43055,41982],[18,-28]],[[43272,41789],[24,-90]],[[49708,42991],[-5,39],[7,81],[-43,16],[-36,14]],[[49631,43141],[1,0]],[[49712,43068],[-2,-76]],[[49275,42410],[-8,-77],[-13,-118],[-50,-90],[-22,-58]],[[49182,42067],[2,13]],[[49184,42080],[91,330]],[[49152,41775],[3,-16],[-4,-30],[-6,-13]],[[49145,41716],[7,59]],[[48974,41316],[1,-22],[-9,-17],[-19,1],[-21,-5],[-17,-35],[0,-51],[-13,-36],[-14,-7],[-13,25],[-15,39],[-17,3]],[[48837,41211],[125,96]],[[48962,41307],[12,9]],[[48830,41206],[-21,-20],[-11,-14]],[[48798,41172],[-22,-28],[-12,-1]],[[48764,41143],[42,45]],[[48806,41188],[24,18]],[[48609,40932],[-5,-20]],[[48604,40912],[-186,-1],[-187,0],[-51,0]],[[48180,40911],[395,5]],[[48575,40916],[34,16]],[[47326,40909],[-27,0],[-104,0],[-21,0]],[[47174,40909],[14,7],[138,-7]],[[31363,44542],[3515,-1]],[[34878,44541],[352,0]],[[35230,44535],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-48,0]],[[34036,44535],[-143,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-191,0],[-47,0]],[[18344,54541],[0,1]],[[18344,54542],[0,-1]],[[18334,54852],[0,0],[-70,-3],[-104,-6],[-93,-5],[-70,-68],[-64,-64],[-100,50],[-8,4]],[[17825,54760],[175,21]],[[18336,54860],[-2,-8]],[[17688,54743],[-2,-5],[-106,38],[-108,37],[0,266],[0,265],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,265],[0,266],[0,266],[0,265],[0,266],[0,262]],[[17472,63309],[1,-1]],[[17681,54742],[7,1]],[[18351,54534],[1,-2]],[[18446,54479],[71,-80]],[[18996,53841],[43,-208]],[[19039,53633],[7,1]],[[19215,53672],[199,97]],[[19505,53893],[44,146]],[[19549,54039],[1,7]],[[19575,54170],[60,31]],[[20008,54296],[54,-53]],[[20138,54158],[1,-1]],[[20370,53742],[58,-74]],[[20643,53397],[151,-189]],[[21089,52621],[54,-110]],[[21275,52240],[7,-16]],[[21297,52189],[91,-228]],[[21427,51860],[30,-99]],[[21457,51761],[11,-35]],[[21490,51666],[92,-170]],[[21626,51443],[46,-19]],[[21672,51424],[107,-44]],[[22064,51216],[6,-4]],[[22391,50810],[-32,-67]],[[22335,50665],[3,-54]],[[22344,50498],[15,-296]],[[22305,50038],[-26,-64]],[[22268,49955],[-121,-149]],[[22147,49806],[-15,-8],[-6,7],[-105,15],[-38,130],[-20,101],[-14,39],[35,137],[82,38],[1,19],[-39,13],[-10,21],[-8,70],[15,108]],[[22025,50496],[-26,109],[-9,59],[-11,30],[-5,20]],[[21974,50714],[-7,11],[-3,8],[-67,135],[-6,34],[30,42],[18,40],[-114,-69],[-146,-68],[-2,2]],[[21543,50780],[51,-66],[2,-7],[-2,-16],[-14,-28],[-16,-80],[-34,-84],[-17,-18],[-61,32],[-16,27],[-30,110],[7,30],[22,25],[30,53],[38,82],[21,60],[0,1]],[[21525,50902],[120,159],[62,31],[-131,21],[-20,11],[-18,28],[-15,46],[-27,51],[-50,18],[-22,19],[-33,63],[-7,9],[-27,55],[-2,39],[-9,21],[-34,7],[-20,25],[-4,96],[-69,27],[-28,23],[-39,59],[-20,78],[9,62],[-5,14],[-39,-8],[-248,114],[7,83],[11,20]],[[20972,52109],[-121,56],[-35,152],[-49,80],[10,31],[10,16],[22,1],[95,-58],[90,-69],[11,10],[-142,146],[-36,44],[-9,52],[-1,28],[12,15],[134,-13],[8,11],[-136,43],[-28,-1],[-30,-61],[-14,-15],[-18,2],[-39,51],[-16,34],[-33,52],[-25,30],[-49,114],[-2,54],[8,71],[50,162],[21,28],[5,18],[-15,-3],[-15,-15],[-41,-75],[-43,-124],[-35,-42],[-22,10],[-33,50],[-69,62],[-80,16],[-50,63],[-75,174],[-10,88],[-9,21],[-35,25],[-41,105],[-28,153],[-17,50],[-20,93]],[[20027,53844],[-24,114],[2,46],[-6,8],[-18,-60],[-4,-32],[-32,-8],[24,-50],[-13,-42],[-19,-5],[10,-22],[0,-1]],[[19996,53569],[50,-139],[1,-1],[22,-97],[10,-74],[15,-70],[18,-71],[19,-119]],[[20116,52944],[-1,-2],[-17,-8],[-72,21],[-22,31],[-56,124]],[[19948,53110],[-76,-17],[-100,-12],[-12,19],[0,44],[16,103],[-13,41],[-43,92],[-26,77],[0,12],[97,69],[-47,5],[-38,-27],[-14,18],[-23,97],[-15,36],[-8,8],[-4,-92],[16,-49],[3,-28],[-2,-26],[-6,-27],[-5,-14],[-18,-17],[-18,-4],[-32,19],[-37,37],[-32,17],[-11,15],[-15,41],[-25,30],[-24,8],[-12,13]],[[19424,53598],[-131,50],[-22,14],[-6,-12],[8,-19],[-14,-86],[-20,-29],[9,-6],[34,15],[38,-2],[62,-28],[57,-37],[20,-21],[9,-31],[7,-11],[55,-36],[3,-19],[-28,-43],[-3,-3]],[[19518,53280],[9,6],[43,4],[43,-21],[44,-70],[30,-101],[2,-27],[-12,-18],[-21,-12],[-150,-21],[-35,-49],[-11,-4]],[[19460,52967],[-64,1],[-70,56],[-69,43],[-133,101],[-102,82],[-6,8],[-3,33],[-15,17],[-29,14],[-39,43],[-51,71],[-32,56],[-12,40],[-30,46],[-95,96],[-50,36],[-45,21],[-21,3],[-27,15],[17,20],[3,13],[-85,19],[-81,45],[-204,126],[-106,79],[-62,38],[-26,21],[-12,18],[6,6],[24,7]],[[18147,54262],[1,241],[5,4],[16,-6],[52,-73],[8,-26],[-3,-99],[15,-117],[5,9],[5,38],[3,74],[5,35],[12,34],[18,18],[59,-10],[27,6],[-114,53],[-72,98],[-13,10],[-39,5],[-3,-3],[-15,25]],[[18072,54489],[-1,-3],[-82,-100],[-30,-23],[-135,-71],[-91,-15],[-102,11],[-87,24],[-219,113],[-34,27],[20,28],[34,5]],[[17241,54652],[-108,-128],[-154,46],[-199,48],[-54,3],[-14,4]],[[16712,54625],[-13,-2],[-97,5],[-251,-38],[-134,-38],[-73,-4],[-23,2]],[[16121,54550],[-30,2],[-18,2],[-13,16],[-3,12],[35,15],[-2,20],[-44,60],[-66,37],[-88,13],[-51,17],[-13,23],[-31,21],[-50,20],[-15,26],[36,126]],[[15768,54960],[-27,-14],[2,11],[17,68],[17,46],[43,77],[-15,-5],[-62,-57],[-55,-58],[-50,-76],[-30,-34],[-38,-32],[-60,7],[-81,48],[-70,24],[-11,0],[-2,9]],[[15239,55175],[-80,-5],[-1,20],[-6,18],[-31,13],[-43,-10],[-50,-24],[-5,10]],[[15023,55197],[-16,29],[4,2],[47,49],[-63,26],[-32,29],[-16,24],[1,86],[17,56],[141,53],[-45,21],[-89,-7],[-59,-46],[-20,-18],[-151,-50],[-4,0],[-40,-5],[-27,-17],[-1,-3],[-11,-3]],[[14600,55450],[-42,-31],[-7,3],[-20,22],[-11,-14],[-14,-42],[-13,-18],[-5,-4],[-65,-21],[-37,4],[-45,53],[-6,18],[15,46],[52,95],[46,58]],[[14458,55698],[-158,-175],[-34,-2],[-22,8],[-28,-6],[-32,-19],[-21,-21],[-10,-24],[7,-4],[48,27],[28,7],[8,-13],[-38,-82],[-23,-78],[-22,-20],[-35,3],[-38,-7],[-1,-22],[5,-4],[-58,-20]],[[14170,55202],[1,1],[13,-5],[33,-22],[5,-22],[-12,-60],[-9,-24],[-15,-12],[-58,2],[-19,-6],[-39,-38],[-20,-31],[7,-3],[34,26],[49,14],[2,0],[24,-18]],[[14229,54985],[28,56],[27,22],[28,-7],[38,-76]],[[14350,54980],[-1,-11],[-8,-18],[-24,-22],[-38,-12],[-23,-20],[-10,-25],[-6,-38],[0,-8],[-66,-56]],[[14225,54715],[21,1],[3,-23],[-8,-13],[-14,-7],[-20,-1],[-19,-21],[-44,-121],[-15,-13],[-19,13],[-16,-1],[-14,-16],[-31,-12],[-48,-8],[-41,3],[-73,26],[-29,18],[-23,30],[-65,-32],[-17,14],[-41,84],[-9,-5],[-5,-66],[-5,2]],[[13559,54491],[-8,-53],[-18,-29],[-4,-21],[3,-19],[-35,-49],[-40,22],[-18,2],[-5,-7],[25,-58],[-2,-15],[-16,-22],[-89,-96],[-27,4],[-17,11],[-18,-2],[-66,-41],[-19,1],[-24,25],[-12,-1],[-6,-26],[-1,-50],[-21,-41],[-32,-17]],[[13109,54009],[-134,-132],[-10,7],[-54,20],[-7,-10],[16,-29],[-2,-13],[-45,2]],[[12820,53856],[-9,-7],[-32,-8],[-63,-40],[-54,1],[-74,65],[-20,5],[-7,18],[15,53],[8,15],[3,1]],[[12597,53958],[137,105],[29,7],[51,30],[62,63],[32,48],[8,14],[110,127]],[[13026,54352],[-62,-8],[-11,5],[-141,-116],[-21,-11],[-28,1],[-112,44],[-24,19],[-16,56],[14,59],[46,141],[48,82],[72,100],[25,65],[37,175],[0,15],[19,51]],[[12914,55250],[5,3],[95,52],[58,50],[175,115],[2,0],[55,-22],[11,-12],[35,-28],[40,-20],[52,2],[2,1],[31,-13]],[[13751,55354],[3,5],[58,-19],[44,-3],[1,8],[-32,46],[-112,21],[-78,26],[-11,5],[-168,117],[-24,27],[11,38]],[[13445,55630],[0,1],[29,12],[14,17],[6,29],[4,6],[42,51]],[[13700,55862],[-13,6],[55,33],[-47,3],[-65,-10],[-10,5]],[[13620,55899],[-9,-8],[-2,0],[-31,-14],[-58,-52],[-7,-12],[-12,-10]],[[13501,55803],[-6,-20],[-29,-67],[-14,-13],[-60,-10],[-162,-8],[-28,37],[-15,6],[-20,-5],[-115,-72],[-29,-14]],[[12778,55460],[-4,-5],[-47,-25],[-63,-62],[-21,-48],[-1,-23],[3,-15],[-75,-100]],[[12570,55182],[-3,-6],[-20,-16],[-123,-140],[-16,-51],[0,-17],[13,-25],[-7,-12]],[[12414,54915],[-190,-159],[-5,-1],[-31,10],[-57,41],[-45,3],[-3,-6],[62,-44],[63,-58],[6,-7],[-53,-246],[0,-1],[-112,-21],[-35,-16],[-12,-13],[77,-29],[7,-15],[-11,-58],[-20,-19],[-64,-35],[-57,-10],[-6,18],[8,34],[-3,11],[-22,10],[-30,-18],[-76,-67],[-9,-11],[28,-18],[-6,-15],[-41,-48],[-17,-33],[-6,-7],[-165,-117]],[[11731,53689],[23,-1],[49,-22],[107,-71],[13,-17],[26,-46],[1,-6],[-3,-24],[-13,-33],[-33,-61],[-81,-91],[-36,-26],[-55,-20],[-18,-15],[-71,-86],[-17,-41],[-52,-99],[-52,-31],[4,-10],[24,-3],[-69,-130],[-12,0],[-15,-5],[-7,4]],[[11444,52855],[-23,-15],[-28,-11],[-5,-7],[0,-5],[-88,-61],[-102,-19],[-42,-94],[-21,-28],[-74,-68],[-46,-28],[-51,-16],[-28,-23],[-2,-30],[-15,-25],[-45,-42],[-5,-13],[-58,-53],[-58,-9],[-17,-16],[-2,-16],[-75,-38]],[[10615,52195],[-12,-12],[-45,-43],[-6,-8],[-18,-18]],[[10534,52114],[5,-4],[2,-15],[13,-15],[21,-48],[-2,-33],[-33,-90],[-12,-14],[-40,-23],[-16,-46],[-18,-1],[-20,3],[-19,-6],[-6,-1]],[[10409,51821],[-2,-2],[-4,-1],[-2,-3],[-12,-11]],[[10076,51599],[-93,-112],[-23,9],[-45,-5],[-71,-49],[-22,-36],[45,-8],[22,-11],[-1,-10],[-23,-10],[-40,1],[-24,-9],[-21,-15],[-51,-4]],[[9729,51340],[-4,-16],[-26,-8],[-28,-16],[-55,-91],[-7,-21],[8,-4],[30,9],[37,-15],[6,-7],[25,-60]],[[9715,51111],[13,-34],[-65,-72],[-5,-8],[-15,75]],[[9578,51088],[-6,-55],[-31,-90],[-38,-51],[-139,-63],[-107,-35]],[[9116,50599],[-7,-21],[-1,3],[1,4],[28,146]],[[9137,50731],[-36,16],[-25,15],[-7,-1],[-28,12]],[[9041,50773],[-60,-56],[-3,1],[-38,-30],[-71,-74],[-21,-20],[-54,-22],[-16,-19],[-19,-39],[-53,-29],[-25,12],[-26,-11],[-20,-37],[-18,-14],[-2,0],[-56,27],[-25,-19],[-32,-48],[-34,-31],[-35,-16],[-91,-15],[-37,10],[-8,14],[2,61],[12,35],[5,12],[12,17],[18,19],[26,2],[50,-14],[-5,15],[-19,17],[-45,30],[-12,4],[-28,14]],[[8249,50558],[-23,-44],[-6,-7],[-13,-29],[-3,-6]],[[8204,50472],[-1,-18],[-13,-77],[-10,-26],[-107,-175],[-41,-54],[-42,4],[-20,-21],[-28,-43],[-15,-12],[-53,38],[6,4],[-7,35],[-30,57],[-21,32],[-40,3],[-6,-26],[4,-37],[-23,17]],[[7778,50138],[4,-8],[7,-70],[-2,-30],[-24,-38],[-66,-42],[-20,4],[-59,83],[-55,17],[-4,-27],[13,-56],[-14,-52],[-35,-42],[-36,-30],[-21,2],[-1,34],[19,66],[5,55],[-9,44],[0,29],[2,7],[3,8],[41,27]],[[7526,50119],[81,52],[6,-6],[21,-3],[24,11],[16,21],[5,23],[2,1]],[[7783,50327],[5,13],[47,64],[73,132],[86,113],[99,95],[107,76],[31,15],[113,39]],[[8389,50890],[25,-4],[-1,-3],[13,-21],[22,-2],[54,11],[54,-9]],[[8556,50862],[-30,-29],[-17,-9],[0,-7],[-7,-7]],[[8661,50629],[89,119],[15,-11],[40,-15],[25,5],[10,24],[-17,30],[-77,64],[-22,27],[-5,38],[11,48],[23,66],[4,12],[35,88],[27,52],[98,97]],[[9020,51374],[131,89],[131,67],[32,43],[61,41]],[[9439,51657],[10,9],[7,-20],[50,-19],[33,-6],[15,6],[4,30],[-6,54],[-2,51],[0,4],[202,335]],[[9753,52103],[230,205],[9,-5],[11,-23],[13,-14],[49,-14],[33,21],[-5,11],[-27,7],[-17,13],[-16,56],[-32,32],[0,39]],[[10002,52504],[0,3],[25,120],[3,113],[0,1]],[[10030,52741],[8,48],[18,60],[51,30],[111,20],[-65,36],[-24,0],[-43,18],[-11,59],[14,58]],[[10183,53270],[47,56],[86,65],[-15,7],[-13,24],[13,50],[38,126],[51,155],[-69,-132],[-14,-18],[-9,-1]],[[10298,53602],[-92,-100],[-199,-100],[-81,-50],[-128,-63],[-22,-7],[-59,33],[-35,85],[-22,33],[-29,62],[12,80],[23,55],[50,9],[56,-26],[49,-3],[-63,55],[-91,48],[-41,-16],[-31,-77],[-42,-53],[-37,19],[-22,21],[15,-65],[-28,-98],[-10,-69],[7,-32],[5,-43]],[[9483,53300],[9,-20],[19,-85],[-8,-72],[-72,-33],[-59,59],[-124,229],[0,0],[-23,46]],[[9078,53559],[-8,-33],[-34,-44],[-40,-15],[-90,68],[-38,40],[-24,30],[-46,73],[-67,-38],[-2,1]],[[8544,53518],[-29,-19],[-99,-49],[-14,-1],[-18,-35],[-18,-16],[-10,-45],[-12,-15]],[[8344,53338],[-27,-17],[-143,-43],[-104,18],[61,37]],[[8131,53333],[26,74],[31,37],[-25,94],[-4,48],[0,60],[65,85],[-67,0],[-41,-29],[-22,33]],[[8073,53766],[-1,2],[-18,121],[46,74],[13,32],[32,31]],[[8177,54124],[-71,155],[0,1],[-103,242],[-47,180],[-80,96],[60,157],[66,143],[87,65],[-7,9],[-48,0],[-31,-9],[-28,-46],[-29,-36],[-91,-182],[-59,-89],[-38,-26],[61,-34],[10,-29],[11,-66],[-15,-80],[-5,-14],[-25,-30],[-59,3],[-65,-64],[-153,-70],[-206,-40],[-49,2],[-70,16],[-88,68],[0,48],[5,41],[-144,133],[-13,15],[-81,133],[-41,2],[-130,90],[-8,7],[6,47],[10,33],[-39,23],[-50,-2],[-22,6],[-21,28],[49,58],[78,56]],[[6779,55297],[-11,38],[40,16],[55,-19],[76,-48],[64,-21],[23,-22],[24,-42],[-25,-71],[-23,-50],[28,14],[80,77],[59,67],[28,-7],[19,-12],[33,-70],[41,-71],[90,68],[48,85],[-41,37],[-50,21],[-127,29],[31,24],[82,-2],[31,23],[-33,32],[-40,28],[-110,-95],[-200,5],[-140,56],[-76,-6],[-33,109],[54,38],[3,23],[-32,2],[-61,-18],[-27,32],[4,57],[-10,-5],[-24,-31],[-27,12],[-16,14]],[[6586,55614],[-1,-2],[-19,17],[15,27],[30,37],[-13,6],[-27,-8],[-26,-49],[6,-40],[-1,-49],[-51,39]],[[6437,55640],[-9,9],[-17,73],[-78,32],[-18,62],[48,79],[-21,41],[-52,14],[-42,-29],[-6,12]],[[6261,56021],[6,25],[80,21],[11,15],[-73,37],[32,90],[30,1],[99,29],[-42,53],[-8,29],[-9,48],[17,80],[75,120],[26,38]],[[6505,56607],[129,183],[12,12],[34,26],[41,15],[48,-15],[50,-33],[10,15],[-17,13],[-22,63],[24,7]],[[6814,56893],[0,2],[46,16],[41,71],[4,21],[-45,-30],[-47,-49],[-7,31],[-12,92],[-4,37],[2,12],[18,97],[2,5],[46,79],[7,9],[6,1],[26,3]],[[6929,57295],[0,1],[48,8],[19,-9],[5,21],[-68,67],[28,52],[24,27],[10,3],[144,37],[27,-5],[115,-52],[6,-3],[53,-61],[-7,-32],[-14,-18],[-28,-21],[-10,-15],[5,-13],[40,37],[63,43],[18,-14]],[[8533,58370],[-11,12],[-4,22],[-104,132],[-9,5],[-7,91]],[[8549,58922],[-27,24],[-38,52],[-30,19],[-25,-1],[-26,-24],[-180,-93],[-51,19],[-48,-67],[-137,-59],[-72,-59],[-127,-138],[-107,13],[-9,37],[-147,124],[-44,-42],[24,-39],[34,-28],[54,-12],[-17,-27],[-117,15]],[[7459,58636],[-8,4],[-52,36],[-102,35],[-265,-4],[-173,-70],[-16,15],[-17,5],[-29,-16],[-12,-28],[-19,-18],[-21,-4],[-21,-2],[-65,10],[-138,43],[-312,64],[-28,13],[-32,57]],[[6076,58908],[-3,6],[16,14],[-3,90],[-60,24],[-21,22],[-54,120]],[[6061,59248],[47,74],[39,12],[71,-12],[-16,23],[-18,18],[-185,43],[-25,-13],[-317,73],[-63,29]],[[5594,59495],[-13,5],[-199,101],[-21,25],[-24,56],[71,71],[1,-19],[6,-30],[150,70],[78,92],[148,16],[35,26],[46,49],[66,84],[93,44],[63,40],[82,24],[71,-39],[22,-6],[127,-8],[42,17],[18,13],[14,20],[-126,71],[13,39],[16,28],[98,55],[76,34],[85,21],[60,-2],[132,80],[165,51]],[[7231,60533],[38,-10],[-18,1],[-35,-7],[25,-13],[28,-27],[-8,-35],[-49,-104],[4,-73],[-4,-14],[-28,-23],[-31,-38],[34,-27],[-3,-13]],[[7339,60046],[376,15],[26,-13],[61,-8],[66,8],[247,-30]],[[8511,60214],[-29,47],[0,1],[-23,36],[-109,38],[-226,89]],[[8124,60425],[-10,9],[1,8],[-136,182],[-57,37],[-59,1],[-15,14],[-27,50],[-22,63],[8,26],[2,1],[30,9]],[[7910,60844],[86,-102],[10,-20],[2,0],[26,-85]],[[8368,60432],[11,13],[64,-1],[48,-19],[118,-82],[60,-10],[188,43],[2,80],[-16,58],[-44,37],[-127,-7],[-98,60],[-84,-17],[-156,-91],[-77,36],[-49,49],[-60,38],[-20,17],[-4,41],[16,60]],[[8140,60737],[50,101],[7,8],[98,3]],[[8144,60947],[-32,-7],[-32,8],[-191,-27],[-9,37],[1,40],[-78,-78],[-79,16],[-66,-5],[-151,28],[-129,37],[-84,85],[-16,31],[-2,22]],[[7229,61272],[-34,62],[-1,3],[-3,5],[-37,68]],[[7154,61410],[-40,42],[-1,3],[-2,1],[-12,12]],[[7099,61468],[-27,15],[-524,370],[-85,33],[-211,104]],[[6252,61990],[-4,2],[-81,73],[-78,27],[-64,10],[-36,17]],[[6015,62137],[13,8],[44,22],[25,26],[9,6]],[[6106,62199],[14,55],[26,79],[35,159],[6,23]],[[7531,63045],[8,26],[5,3],[14,60],[17,142],[63,134],[270,306],[125,121],[42,54],[27,26],[19,11],[28,-35],[14,-11],[9,-18],[-26,-8],[-42,-39],[-58,-26],[-14,-14],[34,3],[103,29],[57,34],[288,64],[157,105],[1,5],[143,86]],[[8815,64103],[47,38],[46,26],[32,-5],[37,-16],[-64,-86],[45,-23],[-40,-104],[84,-2],[19,-48],[5,42],[-1,59],[6,58],[13,40],[59,-18],[132,43],[-161,5],[-96,94],[-36,1],[175,145],[2,1],[89,31]],[[9208,64384],[105,36],[10,-9],[2,-13],[-10,-5]],[[9259,64335],[2,-2],[12,-19],[23,-4],[43,12],[13,0]],[[9412,64325],[430,73],[16,0],[13,5],[57,10]],[[10498,64859],[6,-4],[-5,-6],[43,-45],[44,-14],[20,-15]],[[10740,64722],[178,-29],[23,-44],[-24,-54],[-76,-60],[-154,-62],[47,-23],[31,-55],[40,-6],[19,-6]],[[10977,64408],[156,220],[93,-14],[57,-31],[64,-56],[-23,-54],[-27,-30],[84,-42],[43,-4],[4,-17]],[[11811,64433],[265,23],[117,-30],[6,2],[204,-90],[-54,-41],[-15,-73],[32,-30],[21,-2],[-3,-18]],[[12384,64174],[47,-25],[1,-2],[8,-3],[103,-55]],[[12543,64089],[50,-26],[-23,-22],[77,-7],[19,-11]],[[12955,63996],[300,41],[5,-3],[59,-9],[54,8],[59,28],[226,31],[47,-15],[16,2],[152,-39]],[[13873,64040],[71,-18],[15,-5],[10,-2],[67,-17]],[[14036,63998],[6,-2],[80,-77],[49,-3],[23,16],[208,-86]],[[14402,63846],[56,-13],[11,-6],[45,-6],[173,-39]],[[15951,63653],[43,17],[107,9],[142,44],[81,-1],[93,-11],[37,6],[26,19],[197,-65],[42,-18],[117,-78],[56,-63],[260,-88],[21,-11],[65,-42],[53,-56],[31,-6],[22,16],[73,-4],[55,-12]],[[17688,54743],[137,17]],[[18334,54852],[-54,-232]],[[18280,54620],[64,-78]],[[6320,60272],[30,13],[-1,-3],[-51,-35],[-75,-46],[-17,-5],[1,12],[113,64]],[[4246,57890],[81,1],[19,-5],[49,-31],[17,-13],[14,-14],[17,-37],[12,-45],[18,-32],[54,-20],[36,-29]],[[4651,57623],[27,-13],[2,-3],[57,-23],[35,5],[124,-13]],[[4928,57481],[0,-51],[-48,5],[-115,-12],[-48,-46],[-39,-57],[-82,-27],[-16,59],[-18,26],[-20,17],[-56,29],[-57,19],[-20,2],[-38,34],[-13,46],[-23,25],[-45,34],[-46,28],[-144,59],[-47,8],[-48,-7],[-52,-27],[-49,-40],[-51,-30],[-53,-6],[-51,17],[-47,39],[-24,28],[-13,48],[1,48],[6,46],[26,111],[45,22],[4,-4],[1,-28]],[[3787,57871],[22,-7],[16,-15],[7,-22],[46,3],[66,-9],[53,-16],[59,-18]],[[4928,57481],[18,-53],[-17,2],[-1,51]],[[14295,55372],[1,2],[24,6],[33,-22],[10,-22],[5,-45],[-57,-7],[-26,11],[-3,13],[11,45],[-1,5],[1,1]],[[15628,54846],[-1,-2],[-68,6],[65,55],[11,-12],[-7,-47]],[[6232,54843],[35,-1],[8,-1],[3,1],[29,-1]],[[6410,54772],[0,-5],[2,-23],[-12,-47],[4,-66],[-3,-28],[26,-26],[4,-53]],[[6395,54485],[-41,-43],[-58,-2],[-68,-37],[-14,-27],[4,-17],[-33,-20],[-30,33],[-36,18],[-94,20],[-81,39],[-113,76],[-69,23],[-70,79],[-61,97],[16,8]],[[5647,54732],[24,12],[30,6],[67,-4]],[[5768,54746],[2,2],[128,-11],[23,72],[10,8],[44,19]],[[5975,54836],[134,36],[0,0],[2,0],[61,16]],[[6193,54899],[0,0],[19,-10],[9,-10],[6,-19]],[[14573,54612],[168,252],[4,-2],[3,-12]],[[14748,54850],[37,-20],[19,-27],[-13,-32],[-148,-163],[-13,-21],[-13,-55],[-13,-19],[-19,-9],[-15,-24],[-8,-40],[-19,-20],[-28,-2],[-19,-11],[-10,-20],[-30,-17],[-50,-13],[-12,27],[25,64],[74,79]],[[14272,54578],[-57,10],[19,55],[68,35],[2,-2],[-32,-98]],[[12327,53163],[-13,-6],[-33,28],[-7,9],[97,89],[9,-6],[5,-14],[-2,-22],[-14,-27],[-42,-51]],[[12452,52911],[-2,-2],[-5,8],[-13,33],[-7,1],[-30,-40],[1,-19],[7,-17],[-52,-37],[-8,2],[-39,-26],[-9,16],[-6,45],[-12,-5],[-18,-55],[-20,-35],[-36,-29],[-8,-15],[-27,-1],[-23,-11],[-34,-6],[-6,1],[-145,60],[-9,6],[27,52]],[[12043,52909],[115,74],[22,-10],[19,2],[2,61],[-12,16],[17,64],[37,16],[28,-5],[30,-16],[30,-26],[27,-36],[16,-7],[17,54],[12,2],[53,-46],[7,2],[43,-39],[4,-9],[9,-3],[-7,-9]],[[20645,52545],[15,-52],[8,-37],[20,-69],[-3,-10],[-42,46],[-31,98],[-16,38],[-16,17],[-17,36],[-33,94],[-1,26],[-15,24],[-16,11],[-19,-4],[-7,-10],[0,-1],[-4,3]],[[20482,52620],[52,-87],[38,-73],[55,-89],[11,-29],[7,-82],[-24,-37],[30,-75],[-1,-15],[-7,-14],[-78,-33],[-28,-55],[-128,-168],[-30,-11],[-18,13],[-16,32],[-10,41],[-3,53],[20,33],[39,171],[1,56],[-49,78],[-12,27],[-40,187],[-19,174],[-12,76],[-18,63],[-16,37],[54,36],[1,-2],[24,-58],[114,-21],[43,3],[56,-27],[7,-12],[87,-183]],[[20336,53011],[41,13],[54,-41],[23,-32],[-118,60]],[[20008,52818],[155,-53],[19,-29],[12,-57],[-6,-36],[-24,-27]],[[20070,52663],[87,-114],[-41,-15],[-28,3],[-30,18],[-48,-43],[40,-33],[121,-8],[37,-69],[11,-53],[-27,-99],[-68,28],[-61,56],[-124,81],[-26,3],[-5,4]],[[19908,52422],[-18,-17],[-1,0],[0,-1],[-18,-17]],[[19868,52384],[17,-13],[-1,-15],[1,-106],[-33,-55],[-98,24],[-39,80],[-36,127],[-51,58],[-10,22]],[[19618,52506],[-7,-3],[-67,74],[-36,30],[-44,81],[-2,20],[16,60],[6,41],[26,11],[27,23],[61,30],[6,-8],[45,-53],[1,50],[21,40],[45,-1],[21,8],[30,38],[42,19],[25,-22],[39,-53],[15,-109],[-2,-8],[-35,-17],[10,-24],[26,-18],[18,15],[59,74],[44,14]],[[12322,52476],[6,-10],[1,-14],[32,-52],[10,-4],[9,-13]],[[12367,52318],[-18,-90],[-87,14],[-89,28],[-37,5],[-12,-9],[-26,-27],[18,-8],[79,-6],[28,-39],[11,-26],[-185,-82]],[[12049,52078],[21,-49],[-96,-10],[-76,-54],[-27,-27],[-9,-31],[-29,-23],[-64,-23],[38,-21],[6,-18],[1,-23],[-49,-102],[-1,-2],[-20,-21],[-83,-66],[-24,3],[-11,10],[-8,14],[-1,15],[125,153],[-5,8],[-34,5],[-4,4],[56,116]],[[11746,51956],[-87,-105],[-10,7],[-38,-27],[-8,1],[10,36],[25,44],[-5,12],[-13,11],[-31,6],[-49,2],[-36,-10],[-24,-23],[-2,-9],[50,2],[14,-11],[13,-21],[8,-25],[3,-28],[-10,-38],[-24,-47],[-35,8],[-72,105],[-31,154],[-61,118],[-3,28],[17,73],[46,75],[57,45],[26,11],[47,43],[46,13],[28,-1],[39,-19],[15,-39],[-9,-19],[3,-9],[28,-24],[29,-83],[34,-73],[23,-30],[30,-19],[-31,56],[-18,70],[-10,138],[-9,37],[18,10],[49,-6],[-2,21],[-51,47],[-17,21],[80,111],[2,-2],[42,-88],[20,-27],[16,-1],[16,15],[14,29],[14,18],[15,5],[47,-12],[16,4],[7,22],[0,31],[40,-5]],[[12045,52612],[-24,27],[0,2],[-25,42],[29,14],[1,-1],[48,-26]],[[12074,52670],[88,-47],[-19,-61],[3,-50],[18,6],[69,52],[36,15],[47,2],[37,-23],[5,-12],[-16,-34]],[[11989,52586],[-12,-25],[-12,6],[-25,30],[-2,1],[48,-6],[3,-6]],[[20331,51510],[-1,-80],[-12,-21],[-3,-29],[12,-80],[0,-55],[-1,-76],[-9,-58],[-13,-11],[-30,23],[-26,37],[-18,38],[-46,121],[-14,57],[0,40],[7,30],[15,18],[26,49],[-4,8],[-20,-11],[-40,-6],[-36,39],[-28,20],[6,70],[-7,20],[-55,-21],[-20,19],[-5,26],[1,40],[10,34],[52,87],[-5,16],[-25,3],[-11,10],[-24,169]],[[19947,52058],[-59,87],[14,23],[3,24],[15,28]],[[19920,52220],[1,11],[22,51],[18,17],[46,-1],[2,-2],[21,-26]],[[20030,52270],[12,-6],[61,-59],[29,-13],[43,-60],[38,-99],[28,-78],[24,-93],[33,-151],[33,-201]],[[12094,51926],[-57,-29],[-10,1],[-35,-59],[-27,-26],[-28,37],[-7,15],[8,68],[31,48],[127,-13],[17,-39],[-19,-3]],[[21027,51739],[52,-40],[1,-22],[-6,-62],[4,-63],[-2,-33],[-7,-27],[-13,-21],[-14,-3],[-44,57],[-50,102],[-38,32],[-1,-11],[10,-29],[31,-55],[6,-33],[22,-41],[10,-30],[5,-41],[0,-35],[-6,-30],[-10,-19],[-4,-2],[-32,-4],[-55,6],[-26,-12],[-94,74],[-3,49],[-14,103],[4,80],[-35,72],[-29,43],[-42,39],[-28,39],[8,30],[43,23],[71,-5],[153,-54],[29,-28],[13,22],[91,-71]],[[20661,51448],[3,-85],[-2,-18],[6,-88],[-7,-87],[-24,-90],[-5,-60],[-9,-18],[-11,-6],[-13,16],[-20,13],[-24,-51],[-30,0],[-25,115],[22,191],[50,39],[-30,52],[-57,55],[-4,11],[4,28],[-48,97],[-2,23],[7,81],[40,66],[32,13],[32,6],[40,-30],[16,-19],[9,-25]],[[20641,51581],[46,29],[22,-43],[18,-72],[-13,-45],[-19,10],[-15,-20],[-19,8]],[[21214,51508],[26,-38],[10,-39],[-34,-25],[-30,-9],[-15,-15],[-4,-12],[-2,-1],[-56,1],[-20,11],[-8,39],[5,36],[14,27],[16,54],[12,89],[13,-15],[73,-103]],[[21248,50969],[-2,-6],[-10,1],[-26,11],[-14,47],[-3,62],[10,23],[35,17],[26,75],[12,8],[11,6]],[[21371,51219],[30,61],[13,-23],[62,-131],[-9,-55],[-43,-23]],[[21424,51048],[24,-172],[-2,-20],[-1,-3],[-17,8],[-16,0],[-35,-21],[-36,9],[-17,17],[-7,19],[7,45],[-20,25],[-9,1],[-4,12]],[[21065,50953],[5,1],[75,-42],[75,-97]],[[21220,50815],[53,-69],[10,-26],[30,-101],[63,-117],[12,-12],[5,-11]],[[21378,50474],[-20,-6],[-81,67],[-8,-3],[-3,-14],[-9,6]],[[21257,50519],[2,-33],[-14,-34],[-22,-27],[18,-8],[70,15],[15,-7],[58,-68],[25,-13],[9,-20],[7,-27]],[[21425,50297],[8,-33],[-13,-37],[-10,-17],[3,-11],[18,-6],[17,3],[23,-189]],[[21486,50012],[21,6],[9,-51],[0,-26],[-9,-36],[0,-29],[7,-31],[0,-27],[-18,-72],[-19,-12],[-31,0],[-25,20],[-35,61],[-33,96],[-13,13],[-44,15],[-8,11],[-27,2],[-21,44],[2,47],[-17,52],[2,24],[-19,9],[-17,-14],[5,-27],[-18,36]],[[21139,50143],[-41,20],[-1,3],[-66,103],[-26,24],[7,29],[32,16],[27,-1],[5,18],[-55,98],[2,28],[20,50],[-25,21],[-69,-16],[-25,11],[-20,40],[-12,34],[-32,4],[-7,87]],[[20910,50746],[-2,11],[5,6],[7,38],[30,31],[-5,33],[-17,56],[-37,16],[-75,-34],[-11,-8],[-25,83],[9,11],[31,47],[-6,28],[-23,37],[-1,90],[14,21],[85,-19],[31,1],[95,-240]],[[21849,50359],[-86,-24],[-10,32],[-12,-33],[-5,-7],[-74,-21]],[[21652,50297],[-10,-79],[-12,-25],[-18,-47],[-22,52],[-13,123],[-2,52],[3,8],[16,10]],[[21594,50391],[55,114],[15,22],[1,24],[7,30]],[[21718,50766],[-6,12],[121,85],[15,-5],[52,-84],[55,-118],[13,-50],[1,-3],[0,-92],[-6,-71],[-14,-93],[-2,-10],[-30,-99],[-47,-55],[-34,12],[-16,30],[26,31]],[[20922,50278],[8,8],[84,-97],[6,-19],[4,-27]],[[21183,49777],[13,-50],[-6,-19],[-46,23],[-37,48],[-53,84],[-30,61],[-2,25],[-19,19],[-37,104],[-4,14],[-40,192]],[[7435,49861],[10,-26],[2,-8],[1,-2],[21,-54]],[[7469,49771],[35,7],[24,-10],[-2,-23]],[[7526,49745],[-2,-24],[-68,34],[-54,-62],[-146,-29]],[[7256,49664],[-26,-12],[-94,-2],[-44,-16],[-29,-29],[-28,-46],[-16,-7]],[[7018,49538],[-1,-8],[-4,-5],[-25,-32],[-27,-19],[-57,-20],[-69,2],[-35,11],[-19,38],[-17,76],[0,21],[7,37],[61,50],[20,26],[75,162],[71,36],[48,-9],[58,50],[104,64],[1,1]],[[7346,50034],[12,1],[11,-6],[19,-21],[15,-31],[27,-93],[3,-19]],[[5800,48677],[85,109],[12,-20],[9,-6],[4,4],[1,16],[1,0]],[[5912,48780],[-1,2],[1,18],[28,25],[-16,18],[-50,24],[-37,10],[-7,0],[-38,15]],[[5792,48892],[-5,6],[-10,18],[-7,27],[2,27],[3,9],[51,67],[1,2],[40,12],[25,6],[18,8],[47,15]],[[5957,49089],[7,2],[7,0],[16,-7],[5,-10],[3,-41],[-12,-17]],[[6011,48937],[19,27],[20,16],[24,38],[7,16],[30,42],[11,-16],[47,-35],[-39,-54],[-76,-80],[-26,-54],[-2,-23],[46,11],[50,-27],[-8,-9],[-40,-20],[-35,-38],[-81,-66],[-20,-37],[-74,-42],[-22,-2],[-86,-36],[-53,-34],[-13,-18],[-17,-9],[-19,1],[-22,-15],[-22,-31],[-6,-4],[-32,-12],[-13,-1],[-9,-7],[-13,-5],[-12,0],[-50,37],[-13,21],[44,43],[32,14],[49,7],[48,39],[98,53],[14,13],[38,18]],[[5076,48159],[-22,-18],[-10,-3],[-74,-58],[-16,11]],[[4947,48096],[5,14],[17,23],[33,62],[18,23],[6,31],[2,55],[69,108],[23,6],[61,-7],[25,24],[8,18],[-16,17],[-3,29],[4,50],[17,44],[23,28],[70,49],[13,5],[37,-1]],[[5392,48673],[17,-5],[44,-29],[8,-15],[-3,-23],[-11,-29],[-10,-43],[-45,-38],[-137,-98],[-44,-71],[-34,-68],[-15,-20],[-18,-20],[-14,-4],[-21,-18],[-28,-29],[-5,-4]],[[2200,47274],[-12,37],[68,32],[188,60]],[[2495,47438],[18,12],[38,14],[20,46],[8,8]],[[2512,47560],[59,64],[17,10],[20,7]],[[2608,47641],[12,3],[48,-42],[12,-32],[-5,-39],[-11,-39],[-49,-21],[-7,-21],[15,-34],[-7,-11]],[[2616,47405],[-19,-33],[-30,-16],[-111,-38],[-71,-18],[-158,-25],[-27,-1]],[[2888,47392],[88,-37],[63,2],[87,-9],[0,-6],[-76,-16],[-18,4],[-61,-21],[-41,-3],[-95,19],[-73,-13],[-17,4],[-24,17],[-2,1],[-26,28],[-1,18],[11,3],[18,2],[59,-22],[7,13],[55,23],[46,-7]],[[1385,46969],[9,80],[2,10],[8,21],[42,23],[16,20],[-4,49],[7,26],[52,54],[8,-1],[21,-34],[-1,-22],[-19,-48],[3,-31],[51,4],[16,-16],[0,-59],[-7,-17],[-7,-4],[-19,13],[-21,-31],[-53,-41],[-49,-24],[-23,32],[-36,-42],[4,38]],[[914,47061],[-57,43],[-30,26],[-18,31],[12,19],[23,12],[16,0],[19,-8]],[[879,47184],[68,-31],[9,-12],[30,-18],[40,-8],[-1,-15]],[[1025,47100],[-9,-16],[-17,-18],[-11,-34],[-53,-102]],[[935,46930],[-11,-5],[-54,45],[-9,17],[29,20],[22,5]],[[1615,47114],[0,-63],[-8,72],[8,10],[0,-19]],[[41448,27613],[-11,-8],[-36,-70],[-145,-35]],[[41256,27500],[2,5],[4,1],[51,29],[-10,50],[-13,37],[-37,238]],[[41253,27860],[-32,27],[-7,14],[-9,-12],[-10,-49],[-83,-229]],[[41058,27634],[-19,2]],[[41039,27636],[-5,158],[-4,171],[-5,170],[-5,171],[-4,171],[-5,170],[-5,171],[-4,170],[11,168],[10,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,168],[11,167],[11,168],[11,168],[11,168],[2,43],[1,14],[1,22],[-39,60]],[[41142,31814],[-8,12],[-6,11],[6,1],[72,-2],[72,-1],[72,-1],[72,-2],[71,-1],[72,-2],[72,-1],[72,-1],[72,-2],[72,-1],[72,-1],[72,-2],[71,-1],[72,-1],[72,-2],[72,-1]],[[42284,31816],[12,-116],[12,-117],[12,-116],[11,-116],[12,-116],[12,-116],[12,-116],[12,-116],[12,-117],[11,-116],[12,-116],[12,-116],[12,-116],[12,-116],[12,-117],[11,-116],[12,-53],[8,-85],[64,-253],[18,-106],[-5,-44],[8,-37],[21,-31],[-4,-36],[-28,-41],[-19,-49],[-13,-88],[0,0],[-27,-155],[0,-94],[25,-128],[0,-1],[6,-56],[-17,-252],[11,-162],[27,-105]],[[42560,28181],[-144,-1],[-145,0],[-145,0],[-145,0],[-145,0],[-145,0],[-145,0],[-145,0],[-6,-65],[3,-63],[16,-59],[65,-113],[6,-27],[-12,-87],[2,-62],[-7,-32],[-16,-28],[-4,-31]],[[40456,32725],[-2,-16],[9,-36],[0,-21],[-7,-13],[-15,-7],[-12,-9],[-2,-15],[-1,-7],[1,-18],[2,-15],[-7,-21],[-51,-50],[-22,-65],[7,-79],[-18,-80],[-44,-82],[-19,-90],[7,-101],[-22,-81],[-51,-62],[-17,-38],[0,-3]],[[40192,31816],[0,-28],[5,-23],[-17,-42],[-43,-43],[-23,-42],[-3,-41],[-10,-20],[-19,-9],[-11,-61],[-9,-143],[-23,-82],[-37,-20],[-20,-32],[-3,-44],[-22,-51],[-41,-57],[-14,-55],[14,-52],[-2,-21],[-13,-17],[-45,-24],[-8,-13],[-4,-13],[9,-27],[5,-40],[-6,-67],[-11,-28],[-11,-26],[-37,-47],[-11,-37],[17,-25],[-1,-28],[-19,-31],[5,-33],[5,-22],[17,-20],[6,-56],[-12,-72],[2,-59],[21,-49],[4,-21],[-20,-161],[1,-23]],[[39808,30011],[-88,0],[-80,0],[-81,-1],[-80,0],[-81,0],[-80,0],[-81,0],[-80,-1],[-81,0],[-80,0],[-81,0],[-80,0],[-81,-1],[-80,0],[-81,0],[-80,0]],[[38513,30008],[-1,123],[-1,123],[0,124],[-1,123],[-23,21],[-42,10],[-21,-7],[-25,6],[-17,-20],[-11,-4],[-9,5],[-6,17],[-18,13],[-24,44]],[[38314,30586],[2,99],[1,99],[1,99],[1,99],[2,98],[1,99],[1,99],[1,99],[2,99],[1,98],[1,99],[1,99],[2,99],[1,98],[1,99],[1,99],[-10,127],[-10,126],[-10,127],[-10,126],[-10,127],[-10,126],[-10,127],[-10,126]],[[38254,33179],[125,0],[125,0],[124,0],[125,0],[125,0],[125,0],[125,0],[124,0],[125,0],[125,0],[125,0],[125,0],[124,0],[125,0],[125,0],[125,0],[19,-71],[20,-46],[3,-34],[-4,-34],[-33,-74],[-30,-34],[-16,-37],[-22,-35],[-35,-97],[73,2],[74,2],[73,2],[83,2]],[[29248,29741],[-2,0]],[[29246,29741],[1,6],[0,0],[63,9],[29,34],[17,63],[4,64],[-9,65],[-27,48],[-44,32],[-25,89],[-7,147],[8,79],[23,11],[21,36],[21,60],[16,65],[10,71],[2,90],[-7,109],[41,133],[40,83],[74,101],[17,30],[0,26],[0,2],[-15,35],[-67,70],[-28,51],[-2,47],[-1,0],[-9,45],[-71,186],[-24,103],[0,76]],[[29297,31807],[0,6],[9,323],[-26,112],[-6,63],[7,77],[-2,48],[-12,42],[-3,77],[-1,94],[-21,60],[-4,27],[12,65],[21,34],[34,23],[39,8],[45,-7],[33,-29],[22,-51],[22,-26],[22,-1],[29,42],[26,89],[8,6],[1,392],[0,356]],[[29552,33637],[140,0],[140,-1],[140,0],[140,0],[140,0],[139,0],[140,-1],[140,0],[140,0],[140,0],[140,0],[139,0],[140,-1],[140,0],[140,0],[140,0]],[[31790,33634],[0,-322],[0,-323],[0,-322],[0,-322],[0,-322],[0,-323],[0,-322],[0,-322],[0,-322],[-1,-323],[0,-322],[0,-322],[0,-322],[0,-323],[0,-322],[0,-316]],[[31789,28484],[-915,4],[-191,120],[-212,135],[-213,134],[-212,135],[-213,134],[-212,135],[-213,135],[-141,89],[-19,236]],[[29246,29741],[-1075,-167]],[[28171,29574],[-4,23],[-2,81],[-15,25],[-49,305]],[[28101,30008],[-11,39],[-7,41],[-11,30],[-8,32]],[[28064,30150],[-29,69],[-18,47],[-7,11],[-10,23]],[[28000,30300],[-45,60],[-82,126],[-41,42],[-76,103],[-14,22],[-22,16],[-97,101]],[[27623,30770],[-29,29],[-42,123],[-42,16],[-81,-8],[-212,168],[-7,42],[-65,74],[-86,72],[-2,-1],[-3,4]],[[27054,31289],[-148,16],[-48,28],[-52,6],[-89,-13],[-31,3],[-19,6],[-1,1],[-35,64],[-22,19],[-11,426]],[[26598,31845],[-3,8],[3,32],[-11,41],[-22,32],[-22,16],[-53,123],[7,50],[-18,54],[-55,51],[-52,115],[-13,13],[-126,250],[-7,28],[-89,206],[-63,106],[-40,297],[26,55],[20,68],[-2,62],[-6,46],[-32,79],[-127,48],[-104,197],[-6,150],[-41,154],[0,100],[-6,109],[30,23],[25,-7],[2,-9]],[[25813,34342],[0,-2],[-2,-33],[3,-24],[-3,-6]],[[25825,34172],[83,-76],[4,-7],[21,-17],[22,-4],[-7,21],[1,0]],[[25913,34240],[-69,166],[-7,42],[-15,22],[-9,36],[32,43],[44,30],[58,8],[166,-14],[35,25],[29,-8],[22,3],[-45,25],[-25,-8],[-30,5],[-59,-5],[-24,11],[-27,30],[-17,3],[-55,-52],[-24,6],[-58,58],[-25,8],[-41,-33],[-5,-141],[6,-46],[-87,-2],[-2,1],[-36,40],[-50,73],[-26,26],[-12,-22],[0,24]],[[25556,34645],[-5,12],[-3,92],[45,-95],[-14,67],[-35,73],[-27,25],[-33,131],[-47,49],[-75,128],[-14,29],[-124,211],[-8,185],[-27,137],[-1,47]],[[25188,35736],[-3,150],[5,33],[-1,14],[5,27]],[[25194,35960],[-7,47],[0,6],[-22,143],[-1,2],[-2,16]],[[25162,36174],[-8,17],[-12,42],[-85,180],[-3,7]],[[25054,36420],[-1,1],[-12,25],[-96,143],[-15,108],[-6,110],[21,97],[1,9],[31,118],[4,-9],[-3,-22],[14,-7],[5,45],[8,24],[-15,3],[2,14],[9,28],[18,82],[18,70]],[[25037,37259],[3,235],[19,124],[-1,69],[-14,99],[0,26]],[[24999,38124],[-3,10],[-1,30],[-7,15]],[[24988,38179],[122,0],[118,0],[118,0],[118,0],[118,0],[119,0],[118,0],[118,0],[118,0],[118,0],[118,0],[118,0],[118,0],[119,0],[118,0],[118,0]],[[26882,38179],[0,-171],[0,-170],[0,-171],[0,-170],[0,-171],[0,-170],[0,-171],[0,-170],[0,-171],[0,-170],[0,-170],[0,-171],[0,-170],[0,-171],[0,-170],[0,-171],[105,-148],[105,-149],[105,-149],[105,-148],[105,-149],[105,-148],[105,-149],[105,-149],[82,-125],[82,-125],[82,-125],[82,-126],[82,-125],[83,-125],[82,-125],[82,-126],[114,-180],[113,-180],[114,-180],[114,-180],[114,-180],[113,-181],[114,-180],[122,-192]],[[31790,33634],[0,227],[0,227],[0,228],[0,227],[0,227],[0,227],[0,228],[0,227],[0,227],[0,227],[0,228],[0,227],[0,227],[0,227],[0,228],[0,227]],[[31790,37270],[141,0],[140,0],[141,0],[141,0],[140,0],[141,0],[141,0],[140,0],[141,0],[141,0],[141,0],[140,0],[141,0],[141,0],[140,0],[141,0]],[[34041,37270],[112,0],[112,0],[112,0],[111,0],[112,0],[112,0],[112,0],[112,0],[0,-114],[0,-114],[0,-113],[0,-114],[0,-113],[0,-114],[0,-113],[0,-114]],[[34936,36361],[0,-170],[1,-171],[0,-170],[0,-171],[1,-170],[0,-171],[0,-170],[1,-171],[0,-170],[0,-171],[1,-170],[0,-170],[0,-171],[0,-170],[1,-171],[0,-170]],[[34941,33634],[-111,0],[-110,0],[-111,0],[-111,0]],[[34498,33634],[-169,0],[-169,0],[-169,0],[-170,0],[-169,0],[-169,0],[-170,0],[-169,0],[-169,0],[-170,0],[-169,0],[-169,0],[-169,0],[-170,0],[-169,0],[-169,0]],[[48477,38189],[0,-49],[1,-68],[0,-50],[0,-68],[1,-78],[0,-72],[0,-62],[-1,-37],[-2,-57],[-12,-22],[-5,-45]],[[48459,37581],[-25,-4],[-15,2],[-64,-14],[-5,-1],[-111,-18],[-17,7],[-19,-13],[-175,-28],[-20,-1],[-34,17],[-27,-37],[-70,-52],[-19,-10],[-123,-97],[-82,-60]],[[47653,37272],[-19,47],[-18,45],[36,35],[28,27],[26,26],[17,16],[-14,35],[-13,35],[3,86],[4,87],[4,86],[3,86],[4,87],[3,86],[4,86],[4,87]],[[47725,38229],[37,-3],[38,-2],[38,-3],[37,-2],[38,-3],[38,-2],[37,-3],[38,-2],[1,-24],[19,3],[3,21],[53,-1],[54,-2],[53,-1],[54,-1],[53,-1],[54,-2],[53,-1],[54,-1],[0,-10]],[[46134,35350],[-10,24],[-22,19],[-9,7]],[[46093,35400],[36,62],[24,-54],[26,-59],[-40,-74],[-5,75]],[[47018,34956],[-39,-1],[-99,1],[-99,0],[-46,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,144],[-5,144],[-4,144],[-4,144],[-5,144],[-4,144],[-4,144],[-5,144]],[[46692,36108],[34,73],[15,22],[19,11],[55,4],[40,-26]],[[46855,36192],[-19,-31],[-3,-8],[-1,8]],[[46820,36126],[-17,-52],[-22,-41],[1,-22],[-9,-25]],[[46980,35263],[5,2],[19,-16],[2,-50],[-20,-82],[-26,-38],[34,8],[17,-19],[2,-6],[5,-106]],[[42560,28181],[19,-72],[35,-149],[2,-35],[41,-5],[72,-8],[71,-9],[72,-8],[71,-9],[72,-8],[71,-9],[71,-8],[72,-9],[71,-8],[72,-9],[71,-8],[71,-9],[72,-8],[71,-9],[72,-8],[71,-9],[1,-30],[11,-47],[3,-54],[6,-25],[14,-16],[22,-4],[23,30],[14,66],[4,75],[-9,85],[2,71],[11,42],[13,11],[12,22],[9,5],[25,-12],[93,-60],[76,-8]],[[44130,27935],[21,-83],[32,-337],[22,-117],[0,-5],[37,-326]],[[44551,25848],[0,-3],[-2,-5],[-6,-57],[-1,-84],[5,-83],[18,-100],[7,-35],[4,-56]],[[44576,25425],[11,-43],[-7,10],[-50,221],[-5,130],[7,184],[-12,-4],[-9,-60],[-5,-70],[-13,-27],[-17,107],[1,48],[18,57],[-5,20],[-29,29],[-7,46],[4,45],[-17,24],[-13,-1],[9,-111],[14,-68],[17,-164],[28,-99],[16,-83],[190,-885],[45,-113],[17,-80],[17,-170],[2,-120],[-24,-434],[-5,-60],[-1,-43],[-12,-207],[-1,15],[-8,4],[-26,-124],[-4,-11],[0,0]],[[44692,23373],[-4,-29],[-19,-57],[-8,-117],[-9,-60]],[[44652,23110],[-14,-86],[-51,-90],[-33,2],[-41,-35],[-64,-26],[-32,10],[-67,-39],[-41,4],[-5,8],[-23,75],[4,37],[10,36],[17,9],[59,-86],[11,36],[-18,43],[-34,24],[-25,27],[-51,196],[-53,135],[-9,90],[-91,55],[-23,29],[-75,234]],[[44003,23798],[-20,62],[-16,169],[-29,30],[-12,20],[28,98],[30,82],[-23,-21],[-18,-30],[-22,-72],[-16,-11],[-9,6],[-9,30],[-14,113],[5,170],[24,64],[-37,2],[-39,-24],[6,-57],[-5,-31],[-28,8],[-21,20],[-29,59],[-25,71],[-52,188]],[[43672,24744],[-3,10],[-39,154],[-13,35],[-17,62]],[[43600,25005],[4,8],[19,7],[51,140],[41,84],[2,10],[14,46]],[[43659,25422],[-9,-14],[-2,6],[-25,21],[-18,-16],[19,-60],[0,0],[14,-49],[-4,-61],[-7,-28],[-15,-25],[-25,13],[-12,-21],[-14,22],[-31,107],[42,350],[40,227],[1,67],[2,15]],[[43615,25976],[-2,19],[3,157],[3,38],[-3,69],[-53,149],[-6,9],[-17,92]],[[43534,26509],[-36,0],[-169,263],[-98,234],[-15,41]],[[43190,27118],[-22,38],[-20,47],[-19,20],[-1,1]],[[43001,27364],[-8,-1],[-1,1],[-7,-2],[-51,-4]],[[42901,27355],[-14,-22],[-14,-4],[-21,-33],[-5,-24],[-46,-71]],[[42801,27201],[-21,-20],[-15,-4],[-104,-105],[-14,-8],[-34,4],[-36,-30],[-27,-22],[-70,-12],[-31,-13],[-27,-5]],[[42428,27096],[-20,52],[-3,9],[-2,3],[-4,11]],[[42382,27214],[-77,91],[-44,76],[23,-5],[6,29],[-24,37],[10,43],[17,46],[-32,-7],[-29,-32],[-1,-39],[-6,-31],[-16,4],[-29,39],[-143,107],[-58,29],[-4,2]],[[41975,27603],[-2,0],[-61,30],[96,27],[52,-21],[-6,32],[-13,21],[-41,26],[-52,-10],[-33,13],[-34,-26],[-37,-39],[-33,-20],[-129,-28],[-105,-30],[17,32],[18,21],[62,31],[9,64],[-14,62],[-17,-14],[-17,-49],[-21,35],[-23,0],[-6,-78],[-30,-51],[-13,-53],[-42,-19],[-53,-13],[-4,5],[26,50],[-2,27],[-19,-15]],[[44640,25165],[87,-431],[0,-5],[-41,155],[-51,244],[-20,139],[25,-102]],[[44610,22823],[-3,47],[16,18],[22,49],[1,46],[9,-19]],[[44180,22440],[-13,42],[0,16],[18,-24],[-5,-34]],[[44081,22355],[-8,-3],[23,36],[8,54],[13,-42],[0,-10],[-36,-35]],[[43993,22312],[0,4],[2,10],[17,14],[13,-1],[-1,-19],[-31,-8]],[[42284,31816],[146,-3],[145,-3],[146,-3],[145,-3]],[[42866,31804],[136,3],[135,3],[136,3],[135,3]],[[43408,31816],[-3,0],[-22,-62],[-65,-116],[-18,-88],[85,-99],[0,-1],[51,-80],[34,-31],[36,-10],[22,-26],[13,-64],[0,0],[103,-317],[0,0],[106,-164],[43,-80],[21,-78],[91,-128],[31,-68],[2,-53],[11,-37],[20,-21],[19,-47],[18,-71],[36,-63],[55,-53],[39,-120],[25,-189],[26,-110],[39,-45],[53,-161],[17,-96],[-1,-85],[27,-65],[91,-73]],[[44413,29115],[-11,-38],[-21,-47],[-46,-40],[-16,2],[-14,-14],[8,-35],[14,-25],[-1,-15],[-17,-40],[-26,-8],[-16,-36],[5,-34],[10,-19],[-1,-6],[-7,-31],[-27,-28],[-8,-32],[17,-10],[5,4],[-18,-82],[-3,-6],[-16,-59],[-39,-16],[1,-19],[22,-17],[7,-16],[-24,-112],[-20,6],[-13,19],[-9,-66],[4,-36],[-9,-72],[-13,-86],[-8,-36],[1,-66],[6,-64]],[[44160,28062],[-12,-130],[-9,78],[0,76],[15,45],[6,11],[0,-80]],[[9146,20197],[42,3],[50,-2],[2,-2]],[[9240,20196],[19,-21],[13,-36],[0,-3],[2,-42],[-13,-50],[-6,-70],[-13,-37],[-40,-52],[-23,22],[-43,9],[-17,38],[-40,30],[-8,12],[-12,30],[19,83],[4,13],[64,75]],[[9988,19347],[-28,-11],[-4,-1],[-18,6],[-14,12],[-23,46],[-26,-13],[-4,37],[-5,10],[-17,-10],[16,-47],[-32,-2],[-26,8],[-12,50],[-27,61],[-18,58],[0,23],[-14,43],[6,6],[60,12],[46,83],[21,7],[43,-113]],[[9963,19487],[46,-129],[-3,-4],[-18,-7]],[[10196,19289],[12,-3],[1,-1],[95,-25],[5,2],[29,-6],[4,-6],[65,-10],[16,-4],[11,-6],[-26,-55],[-40,-35],[-73,38],[-120,13],[3,24],[4,19],[9,19],[1,21],[4,15]],[[10590,19027],[52,4],[21,-21],[29,-36],[15,-30],[38,-44],[9,-25],[2,-14],[-9,-31],[-42,-64],[-57,-15],[-34,-27],[-44,6],[-13,12],[-5,80],[-14,86],[-29,-10],[-32,29],[-31,68],[3,42]],[[10487,19117],[12,-11],[15,-24],[21,-54],[11,-17],[40,20],[4,-4]],[[10777,18047],[17,37],[0,0],[0,0],[34,80]],[[10828,18164],[2,20],[3,9],[-1,7],[0,5]],[[10832,18205],[-4,11],[-27,116],[8,83],[8,7],[3,2],[136,-128]],[[11109,18152],[57,-129],[5,-72],[32,-14],[5,-9],[14,-71],[42,-59],[21,-48]],[[11285,17750],[-1,-17],[-16,-49],[-91,-123],[-115,-54],[-101,-137],[-17,-74],[-32,19]],[[10912,17315],[-116,69],[-1,1],[7,234],[-34,189],[-18,71],[27,168]],[[39677,36705],[-39,48],[-7,34],[-32,34],[-5,21],[-24,20],[-22,66],[-113,-2],[-113,-1],[-114,-1],[-113,-1],[-113,-2],[-113,-1],[-113,-1],[-113,-2],[-113,-1],[-113,-1],[-113,-2],[-113,-1],[-113,-1],[-113,-2],[-113,-1],[-112,-1]],[[37740,36907],[-27,68],[-15,62],[10,30],[1,102],[-5,173],[-11,98],[-16,22],[-2,30],[12,38],[-3,26],[-20,14],[-6,33],[7,53],[-5,32],[-17,12],[-7,18],[3,24],[-9,16],[-21,7],[-9,60],[4,112],[-8,79],[-20,46],[-10,44],[0,40],[-21,65],[-42,88],[-27,115],[-13,144],[-30,80],[-13,5]],[[37420,38643],[-12,75],[-12,33],[-2,26],[-37,64],[-3,25],[5,31],[24,61],[22,101],[5,67],[18,51],[0,28],[-3,37],[-10,32],[-29,24],[-3,10],[-3,37],[12,23],[3,26],[-3,32],[-17,56],[-8,57],[65,4]],[[37432,39543],[146,0],[145,0],[146,0],[146,0],[145,0],[146,0],[146,0],[146,0],[145,0],[146,0],[146,0],[145,0],[146,0],[146,0],[145,0],[148,1]],[[39765,39544],[4,-57],[8,-41],[18,-33],[28,-25],[4,-48],[-18,-72],[-6,-88],[6,-106],[14,-95],[21,-84],[49,-62],[77,-40],[45,-60],[14,-82],[3,-7]],[[40032,38644],[27,-62],[47,-56],[27,-52],[6,-49],[29,-52],[51,-55],[29,-49],[8,-42],[-1,-66],[-11,-89],[-18,-64],[-26,-39],[-20,-55],[-12,-70],[-40,-66],[-68,-59],[-75,-41],[-82,-22],[-49,-51],[-15,-81],[6,-68],[30,-54],[17,-58],[4,-61],[-21,-101],[-45,-140],[-51,-92],[-56,-41],[-24,-61],[6,-81],[-5,-46],[-23,-16]],[[28653,44535],[0,-224],[0,-225],[0,-225],[-1,-225],[49,-91],[35,-56],[23,-61],[35,-63],[7,-23],[12,-68],[-9,-49],[18,-49],[-3,-25],[-14,-13],[-3,-4],[1,-5],[5,-8],[49,-48],[48,-67],[61,-46],[19,-27],[81,-133],[41,-85],[44,-62],[22,-71],[45,-62],[12,-31],[3,-7],[6,-1],[28,15],[7,-4],[14,-25],[3,-37],[10,-16],[17,-9],[20,-2],[62,18],[13,0],[7,-8],[3,-19],[-1,-33],[-6,-47],[-19,-46],[3,-42],[-14,-100],[-15,-66],[-1,-65],[-17,-37],[10,-44],[-7,-68],[6,-17],[22,-31],[9,-83],[-4,-15],[-39,-33],[-14,-21],[-5,-30],[17,-88],[-16,-48],[-2,-41],[3,-11],[37,-22],[43,-49],[14,-10],[10,1],[19,17],[20,33],[42,33],[50,73],[2,20],[4,11],[6,-1],[16,-10],[31,-43],[27,-24],[5,-6],[3,-12],[-2,-43],[15,-34],[5,-56],[15,-56],[11,-68],[41,-87],[22,-62],[24,-29],[14,-33],[11,-40],[4,-31],[-14,-59],[4,-24],[13,-26],[42,-60],[8,-5],[39,6],[21,-10],[20,-30],[22,-46],[13,-45],[4,-55],[22,-60],[3,-53],[13,-24],[27,-32],[25,-19],[10,-1],[7,8],[3,29],[10,23],[32,32],[30,-1],[115,-27],[7,2],[5,9],[20,49],[16,19],[24,6],[70,-12],[82,6],[42,-13],[62,18],[72,-14],[9,8],[2,10],[-6,18],[-1,36],[14,43],[5,36],[14,21],[20,11],[15,-1],[15,-20],[18,-32],[30,-88],[16,-32],[20,-27],[30,-25]],[[30892,40449],[0,-141],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-141],[0,-142],[0,-142],[0,-142]],[[30892,38179],[-84,0],[-84,0],[-83,0],[-84,0],[-84,0],[-84,0],[-84,0],[-83,0],[-84,0],[-84,0],[-84,0],[-83,0],[-84,0],[-84,0],[-84,0],[-84,0]],[[29551,38179],[-166,0],[-167,0],[-166,0],[-167,0],[-166,0],[-167,0],[-167,0],[-166,0]],[[28219,38179],[0,202],[-1,203],[0,203],[0,203],[0,203],[0,203],[-1,203],[0,223],[0,4],[28,137],[6,67],[-7,38],[5,36],[17,35],[0,38],[-19,42],[-34,27],[-49,14],[-26,49],[-2,84],[37,129],[76,174],[42,123],[7,73],[46,166],[84,262],[33,168],[-20,73],[-43,70],[-66,67],[-47,78],[-12,40]],[[28273,41816],[-15,49],[-8,62],[11,36],[-9,62],[-30,89],[-13,60],[3,22],[3,8],[0,146],[-1,146],[0,145],[0,146],[-1,146],[0,145],[0,146],[-1,146],[0,146],[-1,145],[0,146],[0,146],[-1,145],[0,146],[0,146],[-1,145]],[[40032,38644],[206,-2],[201,-2],[202,-3],[202,-2],[202,-2],[201,-2],[58,-1]],[[41304,38630],[-1,-142]],[[41418,37965],[16,-34]],[[41434,37931],[-1,-243],[0,-272],[-1,-273],[-1,-272],[0,-273],[-1,-272],[-1,-273],[0,-257],[0,-4],[-21,-28],[-14,-48],[3,-52],[-5,-37],[-15,-23],[7,-56],[29,-90],[17,-90],[6,-88],[-6,-63],[-24,-57],[-23,-125],[-21,-49],[-24,-17],[-22,-46],[-19,-76],[-21,-37],[-21,2],[-16,-13],[-11,-30],[1,-32],[13,-33],[-4,-31],[-21,-28],[0,-14],[7,-8],[-3,-13],[-13,-14],[-9,-42],[1,-70],[-7,-34],[-14,-2],[-2,-19],[24,-79]],[[41201,34350],[-14,-16],[-25,-65],[-5,-72],[14,-78],[-37,-64],[-89,-48],[-47,-43],[-6,-37],[7,-56],[17,-76],[3,-53],[-11,-29],[-64,20],[-116,69],[-77,-3],[-40,-73],[-14,-55],[5,-45]],[[40702,33626],[-31,55],[-22,25],[-4,-2],[-4,-7],[-2,-17],[1,-12],[3,-14],[-2,-9],[-4,-1],[-23,21],[-28,61],[-33,100],[-7,80],[18,59],[0,63],[-18,65],[-9,64],[0,62],[-45,93],[-89,125],[-66,76],[-42,29],[-49,63],[-57,95],[-30,73],[-3,51],[25,134],[75,294],[8,34],[3,13],[-4,13],[-7,12],[-31,34],[-60,30],[-56,16],[-44,-35],[-39,71],[-33,176],[-82,187],[-130,196],[-75,133],[-22,71],[-18,105],[-15,141],[0,116],[26,140]],[[41434,37931],[3,-7]],[[41635,37878],[94,82]],[[41729,37960],[111,0],[136,0],[136,0],[135,0],[136,0],[136,0],[136,0],[0,-53]],[[42655,37907],[-2,-296],[-1,-296],[-2,-296],[-1,-295],[-2,-296],[-1,-296],[-2,-296],[-1,-301]],[[42643,35535],[-7,-9],[-10,-39],[11,-40],[0,-32],[-12,-25],[4,-18],[21,-12],[8,-29],[-5,-44],[-45,-45],[-87,-51],[-18,-15],[-16,-6],[-7,3],[0,0],[-11,9],[-16,21],[-27,9],[-44,-6],[-18,-43],[9,-79],[-15,-60],[-39,-42],[-28,-55],[-17,-69],[-27,-42],[-37,-15],[-30,-64],[-22,-112],[-25,-70],[-27,-27],[-37,7],[-46,40],[-27,42],[-8,43],[-13,31],[-13,13],[-8,1],[-1,-7],[3,-12],[-4,-13],[-29,-4],[-12,-18],[4,-31],[-7,-22],[-17,-13],[-8,-30],[-1,-46],[-12,-42],[-23,-39],[-33,13],[-44,64],[-44,15],[-45,-34],[-33,-47],[-22,-59],[-22,-15],[-30,45],[-73,62],[-38,14],[-28,-15],[-19,7],[-7,17],[-5,7],[-5,-9],[-1,-54],[-6,-34],[-13,-15],[-9,12],[-7,37],[-16,12],[-24,-13],[-25,5],[-22,22],[-8,-2],[-6,-10],[1,-43],[-4,-34],[-12,-21],[-16,-6],[-21,12],[-9,-11]],[[34936,36361],[94,0],[94,0],[94,0],[94,0],[93,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[93,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[94,0],[93,0],[94,0],[94,0],[94,0],[94,0],[81,0]],[[37928,36361],[103,-117],[27,-1],[32,18],[25,-27],[16,-72],[-2,-37],[-22,-2],[-26,-43],[-32,-86],[8,-80],[47,-75],[32,-76],[16,-76],[31,-60],[69,-63],[-1,-35],[1,-118],[0,-119],[0,-118],[0,-119],[0,-118],[0,-119],[1,-118],[0,-118],[0,-119],[0,-118],[0,-119],[1,-118],[0,-119],[0,-118],[0,-119],[0,-118]],[[38254,33634],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0],[-103,0],[-104,0]],[[42643,35535],[25,30],[27,3],[21,-31],[29,-8],[39,15],[35,-10],[32,-38],[30,-68],[29,-100],[51,-60],[74,-22],[54,-39],[34,-57],[28,-18],[32,31],[35,15],[35,-18],[47,-48],[68,11],[92,68],[53,-3],[16,-75],[39,-79],[61,-82],[4,-3]],[[43633,34949],[11,-25],[4,-135],[-3,-26],[-15,-56],[1,-29],[13,-45],[48,-106],[4,-41],[19,-40],[16,-60],[51,-128],[79,-106],[62,-28]],[[43923,34124],[-169,-221],[-78,-80],[-74,-64],[-6,-11],[-16,-71],[-45,-63],[-28,-66],[-67,-55],[-48,-76],[-119,-74],[-67,-26],[-45,-43]],[[43161,33274],[-4,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-3],[-4,-2],[-155,9],[-156,9],[-155,9],[-156,9],[-155,9],[-156,9],[-155,8],[-156,9],[-149,-4],[-149,-5],[-149,-5],[-150,-5],[-13,29],[-39,6],[-60,10],[-3,0],[18,-93],[0,-82],[-1,-1],[-70,0],[-78,0],[-77,0],[-77,0],[-78,0],[-77,0],[-77,0],[-89,1]],[[40570,33179],[23,79],[21,22],[9,4],[23,-15],[11,-5],[23,29],[21,82],[12,86],[3,92],[-14,73]],[[40553,33181],[-31,-2]],[[40522,33179],[-2,11],[2,26],[3,11],[6,2],[8,-1],[10,-23],[4,-24]],[[39808,30011],[3,-44],[21,-27],[1,-48],[-19,-69],[1,-48],[19,-27],[-1,-29],[-22,-30],[-3,-33],[15,-35],[7,-41],[-1,-46],[20,-61],[31,-39],[20,-45],[2,-25],[1,-24],[-4,-34],[-26,-49],[-19,-36],[-12,-14],[-6,-24],[-2,-53],[-29,-69],[-58,-78],[-39,-101],[-19,-121],[-19,-78],[-21,-33],[-11,-63],[0,-94],[-13,-52],[-27,-10],[-5,-54],[15,-98],[-6,-41],[-19,-32],[-2,-25],[107,-1],[108,0],[108,0],[107,0],[108,0],[108,0],[107,0],[108,0],[-13,-105],[-32,-141],[-1,-36],[8,-46],[0,-26],[12,-39],[25,-38],[23,-58],[20,-104],[6,-48],[16,-66],[9,-13],[12,-8],[6,-3]],[[40533,27449],[-23,-26],[-2,-2],[-164,93],[-41,75],[-36,17],[-45,9],[-47,-93],[-37,-124],[58,-69],[49,-33],[81,28],[45,60],[36,-2],[18,13],[16,31],[31,-25],[1,-20],[-81,-92]],[[40603,27185],[8,10],[-2,-71],[4,-17],[-46,-33],[-33,-11],[-27,-43],[14,-24],[-28,-22],[-18,8],[-10,-8],[-2,-26],[-15,-24],[20,-69],[0,-5]],[[40536,26741],[29,-14],[96,-63],[25,2],[19,-39],[14,-40],[12,-14],[15,-32]],[[40754,26484],[-1,-2],[-31,-31],[-6,-30],[-26,-23],[-6,12],[-18,25],[-43,-75],[-20,-16],[10,81],[-16,31],[-24,81],[-28,40],[-37,69]],[[40397,26772],[-13,-3],[-6,8],[-126,72],[-1,-29],[9,-23],[18,-15],[22,-29],[0,-82],[-25,-69]],[[40085,26637],[-11,-20],[-13,-9],[-17,-44],[-4,-8]],[[40040,26556],[-88,-58],[-78,39],[-70,47],[-19,50]],[[39785,26634],[-11,26],[34,-10],[-2,30],[-40,97],[-7,43],[5,54],[-13,-1],[-24,-45],[-45,21],[-81,118],[-27,72],[-23,2],[-50,73]],[[39480,27120],[-4,-1],[-1,2],[-6,-4],[-23,-6]],[[39446,27111],[-12,-14],[-15,-9],[-28,-36],[-8,-17],[-30,-38]],[[39394,26925],[-75,-54],[-9,-4],[-171,34],[-13,5]],[[39100,26927],[-81,65],[-18,18],[-100,59],[-49,10],[-47,-12],[-137,-6],[-32,-16],[-27,-25],[-18,28],[-8,49],[16,8],[18,29],[16,58],[2,35],[-12,22]],[[38623,27249],[31,91],[7,33],[-5,154],[-13,56],[2,33],[14,84],[-2,77],[24,94],[18,48],[21,100],[4,64],[9,48],[-6,52],[14,38],[-9,53],[-3,69],[-17,27],[-31,102],[1,45],[-33,96],[0,33],[-31,50],[-6,32],[-3,133],[-9,39],[-26,76],[-62,111],[0,115],[0,115],[0,116],[0,115],[0,115],[0,115],[1,115],[0,115]],[[47725,38229],[-12,22],[14,76],[14,76],[14,77],[15,76],[14,77],[14,76],[14,76],[14,77]],[[47826,38862],[45,-3],[44,-2],[44,-3],[44,-2],[44,-3],[44,-2],[44,-3],[44,-2]],[[48179,38842],[64,-3],[63,-3],[64,-4],[64,-3],[63,-3],[64,-3],[64,-3],[63,-3],[39,24],[47,72],[28,15],[46,42],[22,9],[49,-4]],[[48919,38975],[-1,-24],[-5,-23],[13,-46],[8,-46],[2,-21]],[[48936,38815],[-95,-291],[-26,-45],[8,-10],[-5,-16]],[[48886,38428],[3,2],[2,-1],[102,-243],[-3,-20],[18,-16],[8,-19]],[[49099,37946],[30,-5],[23,-9],[10,5],[17,-3]],[[49274,37986],[2,28],[7,6],[-2,42],[0,1],[0,8]],[[49214,38235],[-3,-4],[-4,4],[-8,-19],[-4,-4],[-15,28],[19,13]],[[49199,38253],[53,-35],[15,-26],[2,-5]],[[49290,38132],[16,-93],[4,-36],[4,-88],[-7,-30],[-17,6],[-33,-6],[-154,-46],[-12,-14],[-74,27]],[[48972,37932],[-26,-42],[-98,-122],[-48,-10],[-39,-44],[-9,24],[-7,114],[24,95],[-13,-2],[-25,-34]],[[48731,37911],[-15,41],[-16,21],[-17,21],[1,34],[1,51],[-19,10],[-2,63],[-1,41],[-34,0],[-28,-1],[-44,-1],[-46,-1],[-34,-1]],[[46093,35400],[-30,23],[-50,77],[-81,54],[-11,27],[1,29],[11,42],[-25,40],[-60,40],[-26,34]],[[45822,35766],[-5,7],[-3,42],[-8,26],[-13,12],[-2,17],[8,25],[-9,26],[-24,28],[-9,25],[8,22],[-13,10],[-32,-2],[-32,21],[-32,42],[-37,7],[-65,-42],[-36,-10],[-17,-24],[-7,-41],[-16,-21],[-36,-1],[-5,2],[-41,14],[-29,25],[-5,11],[3,22],[-5,10],[-9,2],[-8,-13],[-8,-39],[-70,-106],[-34,21],[-13,0],[-98,-150],[-29,-24],[-58,-67],[1,116],[1,116],[2,117],[1,116]],[[45038,36108],[103,0],[104,0],[103,0],[103,0],[104,0],[103,0],[104,0],[103,0],[103,0],[104,0],[103,0],[104,0],[103,0],[103,0],[104,0],[103,0]],[[47018,34956],[1,-37]],[[47019,34919],[-8,-37],[0,33],[-7,14],[-12,-18],[-8,-20],[-4,-78],[-8,-39],[-29,-12],[-30,-103],[-28,-58],[-10,-36]],[[46875,34565],[-41,-9],[-68,-15],[-15,-36]],[[46751,34505],[0,6]],[[46723,34522],[-8,-4],[0,0],[-42,-1],[-4,33],[3,22],[16,49],[-27,49],[-7,2],[-6,52]],[[46648,34724],[0,16],[9,39],[-6,52],[0,1],[8,39],[-13,-6],[-9,-17],[-15,4]],[[46614,34855],[-11,-13],[-1,2],[-9,-9],[-2,-7],[-22,-27],[-25,30],[-43,39],[-24,69],[-13,53],[13,95],[30,17],[38,-15],[50,0],[-7,21],[-18,-3],[-53,77],[-17,47],[-11,5],[0,57],[32,24],[-11,57],[-21,24],[0,15]],[[46489,35413],[-4,46],[1,0],[27,-16],[22,83],[1,37],[-37,-54],[-9,116],[37,112],[35,49],[18,-3]],[[46583,35783],[1,3],[23,-1],[44,8],[-28,20],[-29,11],[22,45],[19,8],[18,38],[-44,-5],[5,73],[-3,-2],[1,3]],[[46612,35984],[-23,-17],[-21,-6],[-5,-14],[-9,-7]],[[46554,35940],[-62,-101],[-7,11],[-1,-24],[-8,-12]],[[46476,35814],[-18,-28],[-10,32],[-8,-15],[1,-21],[-6,-33],[-3,-5],[-18,-17],[0,-12],[-28,-46],[-46,27],[-1,-14],[31,-71],[-6,-112],[-13,14],[-5,-3],[16,-54],[-10,-210]],[[46364,35032],[39,-160],[-4,-1],[-32,38],[-28,29],[-33,94],[-5,37],[-9,29],[4,-67],[12,-76],[105,-169],[19,-65],[15,-51],[-2,-16],[-5,-29],[-24,31],[-24,44],[-62,50],[-55,21],[-30,27],[-38,99],[0,-49],[-3,-14],[-37,32],[-14,34],[-6,47],[-34,-3],[-35,-41],[-34,10],[-4,79],[9,42],[38,99],[37,51],[16,65],[-6,101]],[[46938,34578],[-7,-2]],[[46931,34576],[12,32],[30,115],[-35,-145]],[[49710,42976],[-1,-16]],[[49774,42889],[33,19]],[[49831,42922],[60,35]],[[50018,43031],[23,14]],[[50072,43038],[4,-2]],[[50128,42982],[139,-188]],[[50276,41868],[-9,-263]],[[50267,41605],[3,-3]],[[50269,41592],[-27,-15]],[[50408,41446],[1,-90]],[[50409,41328],[1,-73]],[[50411,41170],[6,-10]],[[50492,41051],[3,-5]],[[50557,41052],[26,-71],[9,-86],[-15,-41],[3,-53],[42,-16],[10,-17],[2,-20],[-92,-138],[-53,13],[1,16]],[[50490,40639],[-16,-12],[-9,2],[-42,-36],[-44,-11],[-8,-26],[-85,-35],[-12,7],[-22,-8],[-15,-57],[-18,-53],[-22,8],[-10,-40],[-12,-16],[-35,29],[-2,4],[-10,47],[-16,10],[-20,12],[-1,2]],[[50091,40466],[-2,-2],[-19,0],[-14,-7],[-18,-30],[-14,-15],[-13,-10],[-18,20],[-15,35],[-13,-56],[-15,-48],[-20,-17]],[[49874,40369],[-23,14],[11,15],[-12,11],[-18,-8],[-8,8],[13,50],[1,56],[-16,-20],[-22,-58],[-51,-47],[1,-31],[-8,-12]],[[49714,40208],[-97,-221],[-39,10],[-21,-21],[-16,-5]],[[49541,39971],[-44,-55],[-8,46],[-6,18],[-15,-87],[-15,-6],[-6,62],[-7,41],[-21,-35],[-14,-94],[-14,8],[-5,35],[-10,11],[-4,-40],[5,-50],[-87,46]],[[49290,39871],[-18,-19],[-16,-6],[-52,-62],[-41,-86],[6,-6],[-84,-231],[-34,-57],[-48,-172],[-10,-26],[-19,-20],[-18,-35]],[[48956,39151],[-36,85],[-7,68],[-41,81],[-16,56],[-5,62],[2,68],[-4,101],[-3,100],[-3,101],[-4,101],[-3,101],[-4,100],[-3,101],[-4,101],[-3,101],[-3,100],[-4,101],[-3,101],[-4,101],[-3,100],[-4,101],[-3,90]],[[48830,41206],[7,5]],[[48974,41316],[5,4]],[[49142,41684],[3,32]],[[49152,41775],[30,292]],[[49275,42410],[10,36]],[[49285,42446],[346,695]],[[43689,38850],[-64,-122]],[[43424,38459],[0,-1]],[[43262,37965],[-6,-18]],[[43256,37947],[-4,-6],[-150,-8],[-149,-9],[-149,-9],[-149,-8]],[[41729,37960],[29,26]],[[41396,41004],[-21,12],[-19,35],[-11,37],[-1,38],[27,93],[2,15],[-3,8],[-15,11],[-32,-17],[-33,-3],[-10,6],[-5,16],[1,25],[7,30],[19,55],[0,52],[9,30],[-8,55],[2,27],[-14,29],[-37,38],[-87,51],[9,56],[-3,25],[-22,36],[-91,43],[-61,19],[-62,1],[-43,15],[-50,5],[-31,26],[-32,25],[-31,26],[-32,26],[-56,21],[-56,22],[-56,22],[-56,22],[-56,22],[-56,22],[-56,22],[-56,22],[-12,38],[-13,38],[-12,38],[-13,38],[-26,16],[-13,9],[-10,20],[-23,-9],[-10,33],[3,7]],[[40141,42353],[29,9]],[[42837,42270],[4,-3]],[[42841,42267],[40,-42]],[[41398,41048],[-2,-44]],[[42912,42192],[37,-39]],[[38011,44540],[4,0]],[[38021,44740],[4,135]],[[38222,44351],[0,-12]],[[38616,44127],[9,1]],[[38805,44186],[18,9]],[[39154,44065],[60,-95]],[[39214,43970],[7,-7]],[[39281,43905],[11,-11]],[[39292,43894],[187,-66]],[[39615,43705],[22,-21]],[[39637,43684],[9,1]],[[39726,43699],[30,5]],[[39756,43704],[154,117]],[[40027,43731],[4,-6]],[[40031,43725],[86,3]],[[40239,43732],[3,0]],[[40242,43732],[70,-47]],[[40387,43634],[7,-4]],[[40484,43634],[20,1]],[[40513,43634],[-13,-10]],[[39381,42532],[-2,-25]],[[39379,42507],[-8,1],[-31,-51],[-13,-33],[-30,-9],[-1,-131],[0,-131],[0,-131],[0,-131],[-15,-14],[-18,-30],[-26,-8],[-121,-108],[-19,-31],[-22,-72],[-40,-81],[-9,-43],[1,-58],[61,-47],[22,-45],[11,-55],[-1,-48],[-31,-94],[-5,-37],[3,-114],[-15,-36],[12,-93],[1,-32],[-9,-101],[-7,-30],[12,-53],[1,-5],[57,-73],[48,-41],[42,-13],[34,-31],[24,-50],[33,-32],[41,-15],[42,-42],[64,-100],[32,-87],[55,-61],[91,-66],[59,-57],[28,-50],[19,-126],[14,-268]],[[37432,39543],[0,204],[0,204],[0,204],[0,204],[0,204],[0,204],[0,204],[0,204],[-34,68],[-75,54],[-18,33],[-35,82],[-14,35],[-2,27],[17,30],[67,88],[22,40],[10,40],[16,90]],[[37386,41762],[-6,69],[4,109],[-14,81],[-3,40],[-9,50],[-50,133],[-13,107],[-12,52],[-5,136],[2,38],[10,73],[-22,49],[-3,41],[-10,322],[-7,46],[2,150],[-39,157],[-19,54],[-9,64],[1,31],[-32,107],[-21,119],[2,102],[-7,77],[2,61],[-5,90],[6,51],[1,80],[-44,284]],[[38254,33179],[0,114],[0,114],[0,113],[0,114]],[[37928,36361],[-7,8],[-32,78],[-14,93],[-25,61],[-39,28],[-24,61],[-11,94],[-24,95],[-12,28]],[[40570,33179],[-1,-3],[-9,-8],[-6,9],[-1,4]],[[40522,33179],[7,-67],[-6,-49],[-22,-19],[-4,-27],[13,-32],[0,-14],[-5,-11],[-15,-4],[-12,-7],[-9,-24],[18,-48],[-3,-58],[-25,-67],[-3,-27]],[[41039,27636],[-198,16]],[[40841,27652],[-11,-4],[-2,0],[-14,-1],[-24,-15],[-110,-44]],[[40680,27588],[-21,-9],[-6,3],[-25,2],[-32,-63],[-63,-72]],[[40192,31816],[114,0],[119,0],[119,-1],[119,0],[119,0],[119,-1],[119,0],[122,0]],[[34036,44535],[1,-173],[0,-173],[1,-173],[0,-174],[1,-173],[1,-173],[0,-174],[1,-173],[0,-173],[1,-174],[1,-173],[0,-173],[1,-174],[1,-173],[0,-173],[1,-174]],[[34046,41762],[1,-211],[0,-211],[1,-212],[1,-211],[0,-3],[0,-2],[-1,-3],[0,-3],[-3,0],[-4,0],[-3,0],[-4,0]],[[34034,40906],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[-98,0],[-99,0],[-98,0],[-98,0],[-98,0],[0,-114],[0,-114],[0,-114],[0,-115]],[[42866,31804],[17,194],[12,44],[12,10],[47,1],[30,22],[26,116],[59,92],[27,23],[40,18],[95,22],[101,89],[74,84],[58,24],[18,31],[13,40],[9,55],[6,11],[33,-4],[26,48],[25,27],[25,16],[15,0],[6,-14],[4,-41],[5,-13],[11,-1],[14,9],[19,26],[50,81],[32,32],[51,18],[37,-43],[22,15],[64,167],[25,30],[20,12],[33,2],[0,46],[12,69],[1,47],[20,70]],[[44060,33279],[8,-14],[162,-3],[162,-2],[162,-3],[163,-2],[162,-3],[162,-2],[162,-3],[162,-3],[162,-2],[162,-3],[162,-2],[162,-3],[162,-2],[163,-3],[162,-2],[111,-2]],[[46611,33225],[-7,-42],[-22,31]],[[46582,33214],[32,-298],[-43,21],[-41,41],[3,-58],[-4,-64],[-32,20],[-22,21],[17,-61],[-5,-3],[-35,17],[-28,-5],[-10,-31],[-138,106]],[[46276,32920],[-5,-25],[-4,37],[-2,-65],[-5,-23]],[[46270,32672],[43,3],[9,-2],[17,4],[82,5],[14,-1],[6,2],[124,8],[4,-77],[-7,-83],[-4,-88],[17,0],[20,28],[10,158],[56,59],[13,-3],[23,-63]],[[46697,32622],[3,-7],[4,-33],[6,-71],[-13,-108],[-86,-126],[-62,-116],[-31,-24],[-45,13],[-52,30],[-25,6],[-19,-10],[-12,36],[-8,65],[-20,22],[-15,-3],[-10,-69],[-48,-20],[-66,29],[-68,58],[29,-62],[170,-117],[19,-22],[18,-32],[-24,-50],[-18,-57],[-3,-44],[-7,-28],[-67,-76],[-37,14],[-94,136],[43,-118],[34,-50],[69,-27],[129,44],[43,-48],[-35,-85],[-35,-59],[-45,-7],[-40,-16],[-7,-26],[-94,-7]],[[46178,31557],[-42,-17],[-10,0],[-38,10],[-53,-84],[-20,-12],[-28,16],[-11,67],[-13,33],[0,-126],[5,-34],[10,-25],[-62,-69],[-59,-85],[-21,-23],[-25,-43],[-30,-75],[-52,-90],[-8,60],[-4,-80],[-89,-152],[-110,3],[-71,-37]],[[45447,30794],[-65,110],[-60,104],[-61,104],[-60,103],[-61,104],[-60,104],[-61,104],[-60,103],[-63,4],[-64,4],[-63,3],[-63,4],[-64,3],[-63,4],[-63,4],[-64,3],[-2,72],[-2,50],[-39,87],[-24,50],[-50,-43],[-2,21],[2,38],[-5,13],[-13,10],[-72,5],[-71,5],[-71,5],[-71,5],[-71,6],[-71,5],[-71,5],[-71,5],[-16,9],[-32,-30],[-84,-46],[-42,-40],[-15,3],[-71,-39],[-72,-39],[-8,0]],[[46646,33224],[11,0]],[[46657,33224],[19,-106],[28,-186],[15,-51],[18,-104]],[[46722,32812],[-6,12],[-16,69],[-35,205]],[[46665,33098],[-2,3],[-17,123]],[[37386,41762],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0],[-104,0],[-105,0],[-104,0]],[[34041,37270],[0,227],[-1,227],[0,228],[0,227],[-1,227],[0,228],[-1,227],[0,227]],[[34038,39088],[155,0],[155,0],[155,0],[155,0],[155,0],[155,0],[155,0],[155,0],[156,0],[155,0],[155,0],[155,0],[155,0],[155,0],[155,0],[177,0],[134,-135],[80,-42],[37,39],[82,23],[126,6],[80,-19],[33,-43],[65,-48],[97,-53],[57,-58],[20,-63],[33,-40],[35,-12]],[[48609,40932],[6,2]],[[48700,41076],[64,67]],[[48956,39151],[-16,-93],[-18,-50]],[[48920,38988],[-1,-13]],[[48179,38842],[-8,32],[-25,58],[-6,25],[2,27],[13,73],[11,22],[10,43],[16,169],[14,98],[10,179],[10,52],[11,32],[18,85],[33,69],[22,85],[27,74],[3,43],[20,94],[14,167],[13,27],[60,23],[19,17],[64,69],[20,29],[13,29],[10,47],[7,12],[1,26],[-22,110],[-1,40],[49,124],[-10,72],[7,18]],[[47011,36345],[22,31],[52,56],[78,68],[-109,229],[-25,13],[-29,112],[-33,30],[-8,18],[-1,85],[3,49],[5,29],[28,24],[16,49],[0,26],[-21,79],[0,25],[41,48],[53,94],[32,103],[13,30],[15,21],[36,30]],[[47179,37594],[44,-42],[44,-41],[45,-42],[44,-41],[44,-42],[45,-41],[44,-42],[43,-41]],[[47532,37262],[-7,-71],[-44,-143],[-19,-34],[-22,-29],[-17,-13],[-15,-23],[-18,-36],[-16,-72],[3,-23],[-2,-36]],[[47375,36782],[8,-3],[1,-4],[40,-12],[38,-14]],[[47462,36749],[2,3],[6,-1],[14,13],[4,-100]],[[47492,36557],[-37,-344],[8,141],[-14,-16],[-10,-34],[-26,-193],[-36,-102],[-33,-71],[-34,12],[7,-56],[-9,-30],[-8,-61],[-21,-41],[-19,4],[-27,-28],[-11,-21],[-1,-41],[-18,-36],[-48,-133],[-75,-9],[10,85],[-35,39],[-34,21],[-38,-3],[-43,69],[-53,49],[-3,5],[-5,9],[-41,343],[17,54],[31,36],[89,37],[22,56],[14,47]],[[47395,35989],[-16,-43],[0,13],[65,171],[-1,-7],[-48,-134]],[[34498,33634],[1,-114],[0,-113],[0,-114],[0,-113]],[[34499,33180],[-19,-1],[-1,-255],[0,-256],[-1,-256],[-1,-255],[0,-256],[-1,-255],[-1,-256],[0,-255],[-1,-256],[-1,-255],[0,-256],[-1,-255],[-1,-256],[0,-255],[-1,-256],[-1,-256],[-100,0],[-101,0],[-101,0],[-100,0],[-101,0],[-101,0],[-101,0],[-100,0],[-101,0],[-101,0],[-100,0],[-101,0],[-101,-1],[-101,0],[-100,0],[-101,0],[-3,0],[46,-165],[0,0],[54,-47]],[[32955,28877],[-3,2],[-11,0],[-4,2]],[[32224,28891],[-9,-4],[-51,0],[-1,-102],[0,-82],[-3,-221]],[[32160,28482],[-371,2]],[[26882,38179],[167,0],[167,0],[167,0],[167,0],[167,0],[168,0],[167,0],[167,0]],[[29551,38179],[0,-142],[0,-142],[0,-142],[0,-142],[1,-142],[0,-142],[0,-142],[0,-142],[0,-141],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142],[0,-141],[0,-142],[0,-142],[0,-142],[0,-142],[0,-142]],[[45224,39344],[4,2]],[[46691,40436],[-5,6]],[[46848,40675],[27,36]],[[46942,40789],[7,6]],[[47044,40874],[32,19]],[[47326,40909],[153,-8]],[[47479,40901],[303,4]],[[47782,40905],[3,-56],[-9,-71],[8,-77],[-11,-162],[28,-125],[-6,-84],[1,-90],[-5,-22],[-22,-52],[-13,-51],[-7,-51],[1,-33],[18,-148],[4,-65],[0,-38],[-17,-122],[-1,-35],[5,-10],[6,0],[18,38],[9,6],[11,-10],[26,-57],[-1,-103],[-1,-75],[-1,-84],[-2,-125],[-1,-91],[-2,-84],[0,-64],[-7,-47],[12,-55]],[[47647,37261],[-72,-123],[-16,-22],[-27,-14],[-16,-36],[-18,-23],[17,79],[19,67],[15,130],[-4,105],[-20,43],[-20,29],[24,-104],[4,-127],[-1,-3]],[[47179,37594],[-10,34],[-16,26],[-80,46],[-21,31],[-18,41],[-13,50],[-7,53],[0,42],[6,47],[-19,32],[0,29],[-12,20],[-52,35],[-16,50],[-35,47],[-61,0],[-62,0],[-62,0],[-62,0],[-61,0],[-62,0],[-62,0],[-62,0],[-61,0],[-62,0],[-62,0],[-62,0],[-62,0],[-61,1],[-62,0],[-62,0],[-62,0],[-61,0],[-62,0],[-62,0],[-62,0],[-61,0],[-62,0],[-62,0],[-62,0],[-61,0],[-62,0],[-62,1],[-62,0],[-62,0],[-61,0],[-62,0],[0,122],[0,123],[0,5]],[[44910,38429],[26,22]],[[45237,39177],[-5,36]],[[45232,39213],[-9,35]],[[47486,36959],[3,16],[1,6],[18,38],[38,61],[38,26],[8,-24]],[[47603,37080],[6,48],[6,7],[16,12],[17,-25],[4,39],[4,7],[26,20]],[[47682,37188],[38,8],[2,0],[3,1],[65,14],[25,-11],[42,5],[33,25],[35,8],[92,6],[91,18],[23,20],[57,12],[-28,-38],[-32,-59],[29,-5],[24,17],[24,35],[54,47],[47,21],[14,4],[22,-33],[44,26],[31,10],[4,-3],[-142,-110],[-64,-42],[-19,-8],[-35,-28],[-61,-40],[-15,-9],[-39,-12],[-193,-112],[-15,-3],[-17,11],[-159,-58],[-66,-6],[-59,-20],[44,46],[1,18],[-11,13],[-23,-4],[-24,-48],[-30,-12],[-11,12],[-3,20],[6,35]],[[45249,39087],[-5,35]],[[44571,38169],[0,-77],[0,-95],[0,-95],[0,-95],[0,-96],[0,-95],[0,-95],[0,-96],[0,-95],[0,-95],[0,-96],[0,-95],[0,-96]],[[44571,36948],[-53,-40],[-10,-36],[16,-47],[9,-60],[1,-74],[-30,-163],[-60,-251],[-31,-157],[-1,-65],[-40,-85],[-79,-105],[-55,-63],[-32,-21],[-26,2],[-21,25],[-24,-17],[-26,-60],[-25,-31],[-23,-2],[-19,-38],[-16,-76],[-16,-43],[-14,-12],[-1,-38],[12,-65],[-1,-23],[-7,-1],[-6,4],[-15,-15],[-18,-36],[-6,-1],[-5,6],[-5,48],[-14,33],[-23,20],[-32,-44],[-41,-107],[-18,-70],[8,-48],[3,-70],[-10,-29],[-22,-11],[-18,-38],[-12,-66],[-31,-42],[-49,-17],[-52,30]],[[43256,37947],[-1,-3]],[[44414,38081],[157,88]],[[38314,30586],[-101,47],[-25,29],[-46,33],[-42,69],[-82,84],[-32,21],[-9,-3],[-18,-41],[-43,-33],[-24,-2],[-43,13],[-9,10],[-6,26],[-17,17],[-13,-13],[-63,-36],[-9,-24],[-36,-1],[-35,17],[-88,-55],[-31,-43],[-32,-15],[-16,-43],[-10,6],[-33,53],[-34,15],[-47,52],[-2,46],[-5,5],[-8,6],[-10,-5],[-21,-39],[-12,-10],[-11,1],[-46,27],[-19,47],[-9,14],[-10,3],[-20,-14],[-11,-52],[-9,-13],[-19,-9],[2,-26],[-17,-71],[-9,-14],[-12,3],[-12,17],[-9,25],[-4,22],[7,56],[-4,19],[-9,5],[-23,-26],[-19,1],[-25,-26],[-15,-8],[-15,6],[-23,43],[-40,28],[-15,50],[-8,15],[-8,3],[-9,-1],[-14,-16],[-46,-67],[-21,-21],[-18,-4],[-18,6],[-11,17],[-2,68],[-10,20],[-43,43],[-9,39],[-4,56],[-52,-9],[-63,6],[-29,-49],[-15,-9],[-18,10],[-52,66],[-54,-14],[-31,8],[-76,49],[-60,4],[-25,9],[-13,11],[-6,75],[-23,64],[-8,17],[-40,45],[-7,1],[-4,-10],[-9,-50],[-13,-2],[-46,14],[-43,-15],[-24,25],[-81,116],[-33,30],[-27,9],[0,109],[0,109],[0,109],[0,108],[0,109],[0,109],[0,109],[0,108],[-1,109],[0,109],[0,109],[0,108],[0,109],[0,109],[0,109],[0,108],[-84,0],[-84,0],[-84,0],[-84,0],[-84,0],[-84,0],[-84,0],[-84,0],[-84,1],[-84,0],[-84,0],[-83,0],[-84,0],[-84,0],[-84,0],[-84,0]],[[24988,38179],[-23,44],[-16,116]],[[24949,38339],[-43,305],[2,65],[-17,78],[-40,121],[-3,10],[19,112],[19,68],[49,300],[11,24],[21,-1],[35,51],[-16,12],[-25,-25],[22,119],[24,101],[16,37],[8,322],[20,280],[18,65],[-8,82],[4,57],[5,63],[0,6],[31,444]],[[25101,41035],[4,145],[8,89],[-4,40],[2,56],[11,64],[-14,238],[0,8],[6,267],[-10,26],[63,12],[69,0],[68,36],[25,-12],[29,-49],[36,-10],[45,9]],[[25439,41954],[45,23],[35,-18],[45,-41],[44,-124],[44,-208],[9,-69],[34,-42],[40,-2],[160,-31],[24,3],[0,0],[29,8],[91,79],[98,26],[117,-6],[71,-22],[27,-40],[62,-4],[148,46],[163,32],[87,34],[100,69],[226,87],[113,10],[57,33],[13,17],[8,0],[119,1],[119,0],[119,0],[119,0],[119,1],[119,0],[119,0],[111,0]],[[47011,36345],[-45,-81],[-66,-27],[-36,-30],[-9,-15]],[[45038,36108],[-59,0],[-58,0],[-58,0],[-59,0],[-58,0],[-58,0],[-59,0],[-58,0],[0,105],[0,105],[0,105],[0,105],[0,105],[0,106],[0,105],[0,104]],[[44571,38169],[83,46]],[[44770,38311],[140,118]],[[48731,37911],[-11,-15],[-16,14],[-7,13],[-9,39],[-13,22],[-14,8],[8,-53],[-3,2]],[[48666,37941],[-5,-61],[-16,-35],[-8,-164],[-35,-68],[-40,-15],[-103,-17]],[[48694,37712],[38,133],[-4,-129],[-11,-11],[-23,7]],[[45447,30794],[-6,-3],[-76,-88],[-11,-7]],[[45354,30696],[-8,-14],[-23,-27],[-36,-59],[-45,-107],[-28,-52]],[[45210,30419],[-3,-13],[-17,-40],[-18,-105],[-14,-21],[-13,41],[5,46],[0,38],[-24,-81],[14,-72],[-122,-183]],[[45018,30029],[-11,-20],[-18,-11],[-6,-36],[-66,-130],[-26,-28],[-57,20],[17,-74],[-21,-56],[-13,-15],[-60,-50],[-8,-6],[-26,4],[-22,-15],[-18,-36],[-42,-33],[-44,19],[-50,11],[-27,-20],[46,-33],[25,-48],[-3,-45],[-53,-74],[-4,1],[-8,31],[-9,63],[-14,-14],[-2,-29],[-12,-11],[-42,101],[2,-77],[15,-59],[14,-30],[14,-17],[3,-25],[-31,-73],[-12,-12],[-26,-10],[-14,-42],[4,-35]],[[34038,39088],[-1,227],[0,228],[-1,227],[0,227],[0,227],[-1,228],[0,227],[-1,227]],[[43161,33274],[101,-1],[217,-2],[155,-1],[126,-1],[75,-1],[94,0],[21,18],[47,-3],[63,-4]],[[38623,27249],[-21,3],[-47,-150],[27,-84],[-1,-17],[-62,-25],[-32,-6],[-210,-166],[-7,25],[25,30],[-35,18],[-2,-1],[-49,180]],[[38084,27006],[0,-1],[-11,-6],[7,-86],[-1,-31]],[[38079,26882],[5,-14],[2,-24],[17,-42],[12,-135],[-40,-70],[-54,-83],[-6,-81],[-54,-105],[-52,-59],[-120,-140],[-34,-30],[-19,-22],[-63,-61],[-47,-31],[-72,-77],[-24,-12],[46,66],[54,64],[-46,-8],[-72,30],[-44,1],[-1,-23],[-33,-34],[-35,49],[-15,33],[-7,29],[-15,6],[-14,-13],[52,-200],[22,-8],[24,-20],[-30,-47],[-31,-34],[-61,-10],[-35,58],[-10,-91],[0,-10],[-96,-98]],[[37183,25636],[-15,-37],[-24,-3],[-27,-13],[1,-38],[6,-38],[9,6],[-69,-169]],[[37064,25344],[-2,-21],[-43,11],[-13,-10],[-12,-20],[53,-126],[-76,-347],[-19,-3],[-71,74],[-38,57],[34,-155],[89,-43],[2,-129],[-12,-41],[-17,-78],[12,-54],[15,-135],[12,-61],[14,-187],[15,-82],[71,-252],[8,-36]],[[37103,23651],[17,-52],[-59,-18],[-5,-5],[-21,-6]],[[37035,23570],[-101,37],[-10,13],[-96,52],[-117,19],[-71,42]],[[36640,23733],[-41,25],[-29,42],[-49,38],[-30,7],[-78,71]],[[36413,23916],[-2,1],[-15,26],[-48,38],[-64,16],[-24,25],[-52,169],[-20,136],[-33,111],[-63,138],[-2,6],[-2,52],[6,64],[-7,57],[-7,17],[-7,132],[0,1],[1,63],[-9,73],[-41,80],[-44,54],[-45,74]],[[35935,25249],[-14,23],[-29,59],[-50,164],[-49,114],[-38,49],[-51,126],[-12,57],[-5,53],[7,15],[-30,101],[-61,170],[-53,226],[-2,17],[-5,12],[-6,26]],[[35537,26461],[-24,46],[-8,20],[-11,17],[-51,98]],[[35443,26642],[-56,88],[-9,49],[-1,1],[-118,157],[-34,99],[-27,31],[-31,-3],[-16,9],[-1,23],[-10,1],[-19,-21],[-40,-2],[-215,48]],[[34866,27122],[-6,1],[-34,30],[-33,-6],[-19,-53],[-14,-12],[-84,-36],[-5,-1],[0,-1],[-23,-10]],[[34648,27034],[-22,-72],[-8,-16],[-17,-70],[-16,-51]],[[34585,26825],[-4,-29],[-8,-31],[-19,-117],[2,-19],[-12,-74],[-26,-21],[-29,-53],[-30,-82],[-36,-40],[-40,3],[-74,63],[-108,124],[-84,77],[-62,29],[-54,57],[-47,85],[-43,57],[-40,29],[-46,94],[-53,161],[-20,95],[-6,76],[0,83],[-70,285],[-19,65],[-13,57]],[[33644,27799],[-12,18],[-20,40],[-53,68],[-6,6],[-44,64]],[[33430,28084],[-24,28],[-34,50],[-133,236],[-95,143],[-23,20],[-108,199]],[[32984,28844],[-18,17],[-7,13],[-4,3]],[[38051,26488],[-8,-3],[25,35],[-17,-32]],[[37419,25752],[-5,6],[16,3],[-55,-75]],[[37375,25686],[-8,-12],[-74,-83],[-7,-2],[16,35]],[[37436,25770],[12,24],[6,5],[0,-5],[-18,-24]],[[30892,38179],[0,-114],[0,-113],[0,-114],[0,-114],[0,-113],[0,-114],[0,-114],[0,-113],[112,0],[113,0],[112,0],[112,0],[112,0],[112,0],[113,0],[112,0]],[[46134,35350],[-7,-103],[-20,-51],[-33,-39],[-43,-70],[-10,-64],[-14,-120],[18,-41],[19,-11],[33,17],[-1,-4]],[[46075,34857],[90,-79],[25,-57],[92,-45],[96,-109],[6,-15],[24,-19],[34,-39]],[[46469,34373],[0,-2],[-5,-16],[-5,-66],[-17,-42],[-42,-5],[-25,11],[-134,233],[-16,21],[-50,122],[-59,65],[-18,-1],[83,-121],[23,-56],[-16,1]],[[46290,34329],[56,-79],[4,-9],[27,-34],[25,-34]],[[46410,34098],[13,-117],[-7,3],[-2,-49],[6,-29],[-28,-24],[-37,32],[-99,178],[1,-23],[8,-28],[57,-115],[51,-69],[43,-31],[25,-42],[-83,-69],[-32,48],[-13,72],[-32,-4],[-136,91],[-110,10],[11,-18],[14,-12],[87,-23],[34,-41],[72,-38],[42,-10],[6,-42],[-3,3]],[[46298,33751],[4,-11],[10,-64],[27,-37],[21,-56]],[[46377,33537],[9,1],[31,-5],[69,57],[45,-20],[49,-12],[26,-53]],[[46606,33505],[51,-281]],[[46646,33224],[-35,1]],[[43923,34124],[4,-30],[-7,-31],[15,-37],[12,-58],[16,-35],[21,-29],[35,-25],[41,-44],[32,-13],[11,2],[35,43],[30,23],[31,46],[55,-64],[22,0],[54,28],[51,7],[13,9],[19,27],[0,53],[4,14],[9,6],[10,2],[23,-20],[22,0],[95,61],[8,-4],[12,-29],[41,37],[25,33],[11,51],[21,50],[-5,23],[-13,28],[18,68],[25,66],[97,202],[31,122],[41,79],[13,62],[30,62],[21,128],[13,25],[19,5],[19,-17],[14,-23],[9,-38],[48,-34],[41,-4],[29,24],[17,45],[22,84],[22,50],[14,62],[14,44],[22,27],[56,-1],[28,38],[22,44],[13,14],[15,-2],[50,70],[66,147],[14,93],[17,66],[6,69],[13,37],[58,-74],[34,-43],[76,-97],[50,-65],[20,74],[29,109]],[[46875,34565],[-98,-358],[2,-44],[-15,-40],[-3,-3],[-30,-18],[-31,-39],[-20,-43],[-19,-117],[-36,-132],[-22,55],[-6,47],[10,122],[39,201],[24,69],[69,146]],[[46748,34483],[3,22]],[[46938,34578],[-3,-11]],[[46935,34567],[-52,-135],[-9,-6],[57,150]],[[47782,40905],[398,6]],[[25439,41954],[-13,12],[-22,3],[-47,46],[-27,45],[-61,-2],[-24,3],[-15,26],[-56,-18],[-14,14]],[[25087,42152],[5,112],[22,-57],[15,92],[11,115],[-31,44],[-8,5],[47,208]],[[25162,42681],[-4,7],[2,2],[-5,1],[-63,24],[-21,35],[-31,5],[-1,-19],[-17,6]],[[25022,42742],[-7,41],[-1,19],[-13,111],[-35,126],[-24,128],[-20,155],[-22,67],[-3,12]],[[24897,43401],[-3,6],[-10,29],[-72,109],[-19,63],[-13,121],[-3,49]],[[24777,43778],[-1,2],[9,112],[-12,79],[56,-15],[69,-51],[113,-53],[35,-38],[55,-29],[55,-8],[6,-3]],[[25162,43774],[353,-50],[12,-18],[23,-7],[29,3],[21,12],[16,18],[26,5],[0,-36],[13,-57],[27,-74],[9,-43],[1,-3],[-55,-130],[-10,-3],[-2,44],[-7,9],[-21,-46],[-1,1]],[[25596,43399],[-8,-19],[-73,-155],[-36,-104],[-2,-36],[-10,-38]],[[25467,43047],[10,0],[0,-1],[14,-6],[22,7],[17,0]],[[25594,43099],[-42,-24],[21,19],[2,9],[-45,-15],[-22,-2],[3,49],[2,7],[16,44]],[[25529,43186],[18,47],[30,42],[44,47],[26,38],[18,56],[49,66],[2,6],[33,-51]],[[25749,43437],[4,-6],[-2,-9],[-42,-51],[-5,-18],[7,-70],[-6,-7],[-16,8],[-5,-4],[40,-77],[12,-59],[1,-32],[-39,-94]],[[25698,43018],[-12,-28],[-17,21],[-6,-11],[-3,-12],[-4,2]],[[25615,43091],[-12,-74],[-29,-31],[-16,-41],[-14,-65],[-18,-31],[51,-6],[36,10],[1,-9]],[[25639,42836],[11,-4],[9,-7],[13,-1],[1,1],[11,-4]],[[25841,43040],[-14,67],[-9,96],[3,69],[-5,22],[-14,22],[2,22],[10,36],[1,33],[-6,18],[10,38]],[[25873,43629],[0,3],[5,10],[-3,10],[1,11]],[[25808,43862],[-3,17],[-2,20],[-3,6],[-8,43]],[[25759,44294],[-13,8],[-4,23],[-8,14],[-8,2],[-8,-12],[-16,-2],[-7,5]],[[25695,44332],[-25,50],[-8,25],[-26,113],[7,15]],[[25787,43729],[-22,22],[-10,26],[-6,36],[2,16],[36,-100]],[[25739,43655],[-23,43],[-2,51],[-7,21],[-15,4],[-15,16],[-23,47],[-3,12],[11,38],[24,64],[18,30],[12,-3],[4,-7],[4,-68]],[[25724,43903],[5,-14],[-53,-38],[-2,-11],[32,-14],[12,-12],[12,-40],[21,-119],[10,50],[61,-86],[0,-40],[-1,-4],[-7,-13],[-12,-5],[-12,13],[-11,29],[-13,16],[-7,2],[-20,38]],[[25758,43249],[-22,18],[-8,19],[1,43],[6,28],[5,6],[14,-12],[5,-7],[3,-54],[-4,-41]],[[25604,42909],[-4,-18],[-7,1],[-14,37],[-1,25],[12,19],[12,-40],[3,-20],[-1,-4]],[[40113,42345],[28,8]],[[41396,41004],[-1,-24]],[[41304,38672],[0,-42]]],"transform":{"scale":[0.002231958336777714,0.0011001100110011],"translate":[-180,0]},"objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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,461,462,463,464,465],[466],[467],[468],[469],[470],[471],[472],[473],[474],[475],[476],[477],[478],[479],[480],[481],[482],[483],[484],[485],[486],[487],[488],[489],[490],[491],[492],[493],[494],[495],[496],[497],[498],[499],[500],[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],[545],[546],[547],[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],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652,653],[654,655,656,657,658],[659,660],[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,709,710,711],[712,713,714,715,716],[717,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],[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]]}]},"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[772,598,773,600,601,774,775,603,776,593,594,595,596]],[[777,607,778,609,779,611,780,781,782,605]],[[613,614,783]],[[784,619,785,621,786,623,787,788,616,617]],[[789,627,790,629,791,631,792,633,793,625]],[[651]],[[652,653]],[[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,461,462,463,464,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,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,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892]],[[654,655,656,657,658]],[[659,660]],[[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,709,710,711]],[[712,713,714,715,716]],[[717,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]],[[745,746,747,748,749,750,751,752,753,754,755]],[[756]],[[757,758,759,760,761,762,763,764]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925]]],"type":"MultiPolygon","properties":{"ct":[-99.11,39.52]},"id":"USA"}]},"lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[926,927,855,928,929,930,931,932,933,934,935,936,937,938,939,940]],"type":"Polygon"},{"arcs":[[941,942,862,943,944,945,946],[947]],"type":"Polygon"},{"arcs":[[[-927,948,949,950]],[[951,952,851,953]]],"type":"MultiPolygon"},{"arcs":[[954]],"type":"Polygon"},{"arcs":[[955],[956]],"type":"Polygon"},{"arcs":[[957,958,959,960,961,962,963,964,965,966],[967],[968],[969],[970]],"type":"Polygon"},{"arcs":[[971,972,973,974,975,976,977,837,978,979,980,981],[982],[983],[984],[985],[986],[987]],"type":"Polygon"},{"arcs":[[988,989,-967,990,991,992,993,994,995,996,845,997,998,999,847,1000],[1001],[1002],[1003]],"type":"Polygon"},{"arcs":[[1004,817,1005]],"type":"Polygon"},{"arcs":[[1006]],"type":"Polygon"},{"arcs":[[1007]],"type":"Polygon"},{"arcs":[[1008]],"type":"Polygon"},{"arcs":[[1009]],"type":"Polygon"},{"arcs":[[1010]],"type":"Polygon"},{"arcs":[[1011]],"type":"Polygon"},{"arcs":[[1012]],"type":"Polygon"},{"arcs":[[1013]],"type":"Polygon"},{"arcs":[[1014]],"type":"Polygon"},{"arcs":[[1015]],"type":"Polygon"},{"arcs":[[1016]],"type":"Polygon"},{"arcs":[[1017]],"type":"Polygon"},{"arcs":[[1018]],"type":"Polygon"},{"arcs":[[1019]],"type":"Polygon"},{"arcs":[[1020]],"type":"Polygon"},{"arcs":[[1021]],"type":"Polygon"},{"arcs":[[1022]],"type":"Polygon"},{"arcs":[[1023]],"type":"Polygon"},{"arcs":[[1024]],"type":"Polygon"},{"arcs":[[1025]],"type":"Polygon"},{"arcs":[[1026]],"type":"Polygon"},{"arcs":[[1027]],"type":"Polygon"},{"arcs":[[1028]],"type":"Polygon"},{"arcs":[[1029]],"type":"Polygon"},{"arcs":[[1030]],"type":"Polygon"},{"arcs":[[1031]],"type":"Polygon"},{"arcs":[[1032]],"type":"Polygon"},{"arcs":[[1033]],"type":"Polygon"},{"arcs":[[1034]],"type":"Polygon"},{"arcs":[[1035]],"type":"Polygon"},{"arcs":[[1036]],"type":"Polygon"},{"arcs":[[1037]],"type":"Polygon"},{"arcs":[[1038]],"type":"Polygon"},{"arcs":[[1039]],"type":"Polygon"},{"arcs":[[1040]],"type":"Polygon"},{"arcs":[[1041]],"type":"Polygon"},{"arcs":[[1042]],"type":"Polygon"},{"arcs":[[823,824,1043]],"type":"Polygon"},{"arcs":[[1044]],"type":"Polygon"},{"arcs":[[1045]],"type":"Polygon"},{"arcs":[[1046]],"type":"Polygon"},{"arcs":[[1047]],"type":"Polygon"},{"arcs":[[1048]],"type":"Polygon"},{"arcs":[[1049]],"type":"Polygon"},{"arcs":[[1050]],"type":"Polygon"},{"arcs":[[1051]],"type":"Polygon"},{"arcs":[[1022]],"type":"Polygon"},{"arcs":[[1052]],"type":"Polygon"},{"arcs":[[1044]],"type":"Polygon"},{"arcs":[[1053]],"type":"Polygon"},{"arcs":[[1054]],"type":"Polygon"},{"arcs":[[1055]],"type":"Polygon"},{"arcs":[[1056]],"type":"Polygon"},{"arcs":[[1057]],"type":"Polygon"},{"arcs":[[1058]],"type":"Polygon"},{"arcs":[[1059]],"type":"Polygon"},{"arcs":[[1060]],"type":"Polygon"},{"arcs":[[1061]],"type":"Polygon"},{"arcs":[[1062]],"type":"Polygon"},{"arcs":[[1063,1064,1065,1066,1067]],"type":"Polygon"},{"arcs":[[1068]],"type":"Polygon"},{"arcs":[[1069]],"type":"Polygon"},{"arcs":[[1070]],"type":"Polygon"},{"arcs":[[1071]],"type":"Polygon"},{"arcs":[[1072]],"type":"Polygon"},{"arcs":[[1073]],"type":"Polygon"},{"arcs":[[1074]],"type":"Polygon"},{"arcs":[[1075]],"type":"Polygon"},{"arcs":[[1076]],"type":"Polygon"}]},"land":{"type":"GeometryCollection","geometries":[{"arcs":[[[772,598,773,600,601,774,775,603,776,593,594,595,596]],[[777,607,778,609,779,611,780,781,782,605]],[[613,614,783]],[[784,619,785,621,786,623,787,788,616,617]],[[789,627,790,629,791,631,792,633,793,625]],[[651]],[[652,653]],[[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,461,462,463,464,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,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,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892]],[[654,655,656,657,658]],[[659,660]],[[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,709,710,711]],[[712,713,714,715,716]],[[717,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]],[[745,746,747,748,749,750,751,752,753,754,755]],[[756]],[[757,758,759,760,761,762,763,764]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925]]],"type":"MultiPolygon"}]},"ocean":{"type":"GeometryCollection","geometries":[{"arcs":[[[-767,1077,-769,-772,1078,-558,1079,-557,1080,-556,1081,-563,1082,-555,1083,-554,1084,-469,1085,-470,-471,1086,-3,1087,-650,-651,1088],[-647],[-543],[-579],[-1],[-566],[-474],[-473],[-472],[-475],[-578],[-4],[-572],[-551],[-5],[-550],[-549],[-547],[-576],[-468],[-649],[-648],[-644],[-577],[-571],[-646],[-641],[-642],[-2],[-643],[-640],[-637],[-553],[-552],[-591],[-592],[-635],[-639],[-638],[-636],[-573],[-11],[-7],[-8],[-585],[-586],[-587],[-584],[-589],[-590],[-588],[-583],[-9],[-565],[-548],[-580],[-645],[-652],[-41],[-38],[-37],[-540],[-541],[-542],[-545],[-546],[-544],[-15],[-14],[-16],[-13],[-12],[-10],[-40],[-35],[-54],[-53],[-47],[-48],[-39],[-49],[-50],[-51],[-46],[-45],[-44],[-43],[-42],[-52],[-21],[-18],[-26],[-27],[-24],[-28],[-23],[-20],[-19],[-30],[-29],[-31],[-6],[-32],[-34],[-36],[-467],[-22],[-17],[-33],[-25],[-560],[-559],[-561],[-522],[-503],[-494],[-533],[-528],[-513],[-532],[-529],[-509],[-476],[-518],[-481],[-524],[-516],[-478],[-492],[-562],[-653,-654],[-486],[-539],[-582],[-504],[-511],[-499],[-482],[-479],[-520],[-495],[-525],[-493],[-531],[-581],[-498],[-506],[-488],[-521],[-730,-729,-728,-731],[-485],[-487],[-490],[-477],[-536],[-711,-710,-709,-708,-712],[-526],[-507],[-497],[-707,-706,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691],[-508],[-527],[-515],[-514],[-538],[-505],[-517],[-501],[-500],[-491],[-534],[-483],[-519],[-523],[-484],[-512],[-535],[-496],[-668,-667,-666,-665,-664,-663,-669],[-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-746],[-673,-672,-671,-670,-674],[-680,-679,-678,-677,-676,-675,-681],[-660,-661],[-690,-689,-688,-687,-686,-685,-684,-683,-682],[-662],[-659,-658,-657,-656,-655],[-765,-764,-763,-762,-761,-760,-759,-758],[-757],[-530],[-489],[-537],[-510],[-480],[-502],[-574],[-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,-404,-403,-402,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-389,-388,-387,-386,-385,-384,-383,-382,-381,-380,-379,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-466],[-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593],[-575],[-634,-633,-632,-631,-630,-629,-628,-627,-626,-625],[-612,-611,-610,-609,-608,-607,-606,-605],[-615,-614,-613],[-716,-715,-714,-713,-717],[-624,-623,-622,-621,-620,-619,-618,-617,-616],[-726,-725,-724,-723,-722,-721,-720,-719,-718,-727],[-737,-736,-735,-734,-733,-732,-738],[-744,-743,-745],[-741,-740,-739,-742],[-567],[-569],[-570],[-568]],[[1089,-564]]],"type":"MultiPolygon"}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[1090],[1091]]},{"type":"MultiLineString","arcs":[[1092],[1093],[1094]]},{"type":"MultiLineString","arcs":[[1095],[1096],[1097],[1098],[1099]]},{"type":"LineString","arcs":[1100]},{"type":"LineString","arcs":[1101]},{"type":"LineString","arcs":[1102]},{"type":"MultiLineString","arcs":[[1103],[1104]]},{"type":"MultiLineString","arcs":[[1105],[1106],[1107],[1108],[1109]]},{"type":"LineString","arcs":[1110]},{"type":"LineString","arcs":[1111]},{"type":"MultiLineString","arcs":[[1112],[1113],[1114],[1115]]},{"type":"LineString","arcs":[1116]},{"type":"LineString","arcs":[1117]},{"type":"LineString","arcs":[1118]},{"type":"MultiLineString","arcs":[[1119],[1120],[1121]]},{"type":"MultiLineString","arcs":[[1122],[1123]]},{"type":"LineString","arcs":[1124]},{"type":"LineString","arcs":[1125]},{"type":"MultiLineString","arcs":[[1126],[1127],[1128]]},{"type":"LineString","arcs":[1129]},{"type":"LineString","arcs":[1130]},{"type":"LineString","arcs":[1131]},{"type":"MultiLineString","arcs":[[1132],[1133],[1134],[1135]]},{"type":"LineString","arcs":[1136]},{"type":"MultiLineString","arcs":[[1137],[1138,1139],[1140],[1141],[1142],[1143],[1144],[1145]]},{"type":"MultiLineString","arcs":[[1146,1147],[1148,1149],[1150]]},{"type":"LineString","arcs":[1151]},{"type":"LineString","arcs":[1152]},{"type":"MultiLineString","arcs":[[1153],[1154]]},{"type":"LineString","arcs":[1155]},{"type":"LineString","arcs":[1156]},{"type":"LineString","arcs":[1157]},{"type":"MultiLineString","arcs":[[1158],[1159]]},{"type":"LineString","arcs":[1160]},{"type":"LineString","arcs":[1161]},{"type":"MultiLineString","arcs":[[1162],[1163]]},{"type":"MultiLineString","arcs":[[1164],[1165],[1166],[1167,1168,1169],[1170],[1171]]},{"type":"MultiLineString","arcs":[[1172],[1173,1174],[1175],[1176],[1177]]},{"type":"LineString","arcs":[1178]},{"type":"LineString","arcs":[1179]},{"type":"MultiLineString","arcs":[[1180,1181,1182],[1183]]},{"type":"LineString","arcs":[1184]},{"type":"LineString","arcs":[1185]},{"type":"LineString","arcs":[1186]},{"type":"LineString","arcs":[1187]},{"type":"MultiLineString","arcs":[[1188],[1189]]},{"type":"MultiLineString","arcs":[[1190],[1191],[1192],[1193],[1194],[1195],[1196],[1197],[1198],[1199],[1200],[1201],[1202],[1203],[1204],[1205],[1206],[1207],[1208],[1209],[1210],[1211],[1212],[1213]]},{"type":"LineString","arcs":[1214]},{"type":"MultiLineString","arcs":[[1215],[1216]]},{"type":"MultiLineString","arcs":[[1217],[1218],[1219],[1220]]},{"type":"MultiLineString","arcs":[[1221],[1222],[1223]]},{"type":"MultiLineString","arcs":[[1224],[1225]]},{"type":"MultiLineString","arcs":[[1226],[1227],[1228],[1229]]},{"type":"LineString","arcs":[1230]},{"type":"LineString","arcs":[1231]},{"type":"MultiLineString","arcs":[[1232],[1233],[1234]]},{"type":"LineString","arcs":[1235]},{"type":"LineString","arcs":[1236]},{"type":"LineString","arcs":[1237]},{"type":"MultiLineString","arcs":[[1238],[1239],[1240]]},{"type":"LineString","arcs":[1241]},{"type":"LineString","arcs":[1242]},{"type":"LineString","arcs":[1243]},{"type":"LineString","arcs":[1244]},{"type":"MultiLineString","arcs":[[1245,1246],[1247],[1248],[1249,1250,1251],[1252],[1253]]},{"type":"LineString","arcs":[1254]}]},"subunits":{"type":"GeometryCollection","geometries":[{"arcs":[[1255,1256,1257,1258]],"type":"Polygon","properties":{"ct":[-112.05,49],"gu":"CAN"},"id":"AB"},{"arcs":[[[-1257,1259,1260,1261,1262,1263]],[[1264,1265,925,1266]],[[1267,1268,1269]],[[1270,1271,921,1272]],[[1273,1274,1275]],[[1276,1277,1278]],[[1279,1280,1281]],[[1282,1283,913,1284]],[[1285,1286]],[[1287,1288,911,1289]],[[1290,1291,1292]],[[1293,1294,908,1295]],[[1296,1297,1298]],[[1299,1300,904,1301]],[[1302,1303,902,1304]],[[1305,1306,1307]],[[1308,1309]],[[1310,1311,111,1312]],[[1313,1314]],[[1315,1316,1317]]],"type":"MultiPolygon","properties":{"ct":[-118.5,49],"gu":"CAN"},"id":"BC"},{"arcs":[[1318,1319,1320,1321]],"type":"Polygon","properties":{"ct":[-98.32,49],"gu":"CAN"},"id":"MB"},{"arcs":[[[1322,1323]],[[1324,1325]],[[-1068,1326,1327,1328]],[[1329,1330,885,1331]],[[1332,1333,1334]],[[1335,1336,1337]],[[1338,1339]],[[1340,1341]],[[1342,1343,1344]]],"type":"MultiPolygon","properties":{"ct":[-67.79,46.62],"gu":"CAN"},"id":"NB"},{"arcs":[[[1345,1346,1347]],[[1348,1349,1350]],[[1351,1352,-946,1353]],[[1354,1355,860,1356]],[[-930,1357,1358]],[[1359,1360,1361,849,1362]],[[-980,1363,1364]],[[1365,1366,1367,1368]],[[1369,1370]],[[1371,1372]],[[1373,1374,830,1375]],[[1376,1377]],[[1378,1379,1380]],[[1381,1382]],[[1383,1384,823,1385]],[[1386,1387,821,1388]],[[1389,1390,816,817,1391]],[[-996,1392,1393]],[[-999,1394]]],"type":"MultiPolygon","properties":{"ct":[-94.8,49.09],"gu":"CAN"},"id":"ON"},{"arcs":[[[-1344,1395,1396,879,1397]],[[1398,1399,1400]],[[1401,1402]],[[1403,1404,1405]],[[1406,1407,1408,1409]],[[1410,1411,1412,1413]],[[1414,1415]]],"type":"MultiPolygon","properties":{"ct":[-70.86,45.35],"gu":"CAN"},"id":"QC"},{"arcs":[[-1259,1416,1417,-1321,1418,1419]],"type":"Polygon","properties":{"ct":[-105.79,49],"gu":"CAN"},"id":"SK"},{"arcs":[[[1422,1423,895,1424]],[[1425,1426,314,893,1427]]],"type":"MultiPolygon","properties":{"ct":[-139.84,60.26],"gu":"CAN"},"id":"YT"},{"arcs":[[[-1309,1428,898,1429,-1306,1430,1431,-1303,1432,-1300,1433,1434,-1297,1435,-1294,1436,-1291,1437,-1288,1438,-1286,1439,-1283,1440,-1280,1441,916,1442,-1277,1443,1444,-1274,1445,-1271,1446,1447,-1268,1448,-1265,1449,109,1450,-1314,1451,-1311,1452,-1316,1453,1454,1455,1456,124,1457,126,1458,133,1459,1460,136,1461,138,1462,1463,1464,142,1465,1466,145,1467,147,1468,149,1469,1470,1471,1472,154,1473,1474,157,1475,161,1476,163,1477,165,1478,1479,168,1480,170,1481,1482,173,1483,175,1484,1485,178,1486,180,1487,182,1488,184,1489,1490,1491,188,1492,1493,1494,192,1495,1496,195,1497,1498,1499,199,1500,1501,1502,203,1503,205,1504,1505,1506,209,1507,1508,212,1509,1510,215,1511,217,1512,1513,220,1514,222,1515,224,1516,226,1517,228,1518,1519,231,1520,1521,1522,235,1523,237,1524,1525,1526,241,1527,243,1528,245,1529,1530,248,1531,250,1532,1533,1534,254,1535,256,1536,258,1537,1538,261,1539,263,1540,1541,267,1542,269,1543,271,1544,1545,274,1546,276,1547,1548,279,1549,281,1550,1551,1552,1553,286,1554,1555,289,1556,1557,1558,293,1559,295,1560,297,1561,299,1562,301,1563,303,1564,1565,1566,307,1567,1568,1569,1570,312,1571,-1426,1572,-1423,1573,1574,-1421]],[[1575]],[[758,1576,760,1577,762,1578,764,1579]],[[1580]],[[159,1581]],[[1582]],[[753,1583,755,1584,746,1585,1586,1587,1588,751,1589]],[[742,1590,1591]],[[1592]],[[1593]],[[740,1594,738,1595]],[[727,1596,729,1597]],[[1598]],[[1599,732,1600,1601,735,1602,1603]],[[718,1604,720,1605,1606,723,1607,725,1608,1609]],[[1610]],[[1611,712,1612,1613,1614]],[[1615]],[[1616]],[[1617,709,1618]],[[1619]],[[129,1620,131,1621,1622]],[[690,1623,1624,693,1625,695,1626,1627,698,1628,700,1629,705,1630]],[[117,1631,119,1632,1633,122,1634]],[[1635,702,1636]],[[681,1637,1638,1639,1640,686,1641,688,1642]],[[675,1643,1644,1645,1646,680,1647]],[[1648,670,1649,672,1650]],[[1651,663,1652,665,1653,1654,1655]],[[1656]],[[1657]],[[655,1658,1659,1660,1661]],[[1662]]],"type":"MultiPolygon","properties":{"ct":[-152.72,64.59],"gu":"USA"},"id":"AK"},{"arcs":[[1663,1664,1665,431,1666,1667,1668,1669,1670]],"type":"Polygon","properties":{"ct":[-86.83,32.8],"gu":"USA"},"id":"AL"},{"arcs":[[1671,1672,1673,1674,1675,1676]],"type":"Polygon","properties":{"ct":[-92.44,34.9],"gu":"USA"},"id":"AR"},{"arcs":[[1677,1678,1679,1680,1681,1682]],"type":"Polygon","properties":{"ct":[-111.66,34.3],"gu":"USA"},"id":"AZ"},{"arcs":[[-1679,1683,1684,1685,1686,1687,1688,1689,1690,1691,64,1692,66,1693,68,1694,1695,1696,1697,1698,1699,75,1700,1701,1702]],"type":"Polygon","properties":{"ct":[-119.6,37.25],"gu":"USA"},"id":"CA"},{"arcs":[[1703,1704,1705,1706,1707,1708]],"type":"Polygon","properties":{"ct":[-105.53,39],"gu":"USA"},"id":"CO"},{"arcs":[[1709,1710,1711,1712]],"type":"Polygon","properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"arcs":[[1713,1714]],"type":"Polygon","properties":{"ct":[-77.02,38.92],"gu":"USA"},"id":"DC"},{"arcs":[[1715,1716,1717,354,1718,356,1719]],"type":"Polygon","properties":{"ct":[-75.51,38.98],"gu":"USA"},"id":"DE"},{"arcs":[[[-1671,1720,1721,400,1722,1723,404,1724,1725,1726,1727,1728,412,1729,1730,415,1731,417,1732,419,1733,421,1734,1735,424,1736,426,1737,1738]],[[1739]],[[407,1740]],[[1741]],[[1742]],[[1743]]],"type":"MultiPolygon","properties":{"ct":[-82.5,28.67],"gu":"USA"},"id":"FL"},{"arcs":[[[-1670,1744,1745,1746,1747,-1721]],[[1748]]],"type":"MultiPolygon","properties":{"ct":[-83.46,32.66],"gu":"USA"},"id":"GA"},{"arcs":[[[1749,1750]],[[1751,788,616,1752]],[[1753]],[[1754,611,780,1755]],[[1756,1757,1758,600,1759,1760,1761]]],"type":"MultiPolygon","properties":{"ct":[-155.5,19.62],"gu":"USA"},"id":"HI"},{"arcs":[[1762,1763,1764,1765,1766,1767]],"type":"Polygon","properties":{"ct":[-93.5,42.09],"gu":"USA"},"id":"IA"},{"arcs":[[-1261,1768,1769,1770,1771,1772,1773]],"type":"Polygon","properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"arcs":[[-1768,1774,1775,-962,1776,1777,1778,1779]],"type":"Polygon","properties":{"ct":[-89.2,40.07],"gu":"USA"},"id":"IL"},{"arcs":[[-1778,1780,-960,1781,1782,1783,1784]],"type":"Polygon","properties":{"ct":[-86.28,39.91],"gu":"USA"},"id":"IN"},{"arcs":[[-1707,1785,1786,1787]],"type":"Polygon","properties":{"ct":[-98.37,38.49],"gu":"USA"},"id":"KS"},{"arcs":[[[-1779,-1785,1788,1789,1790,1791,1792]],[[1793,1794]]],"type":"MultiPolygon","properties":{"ct":[-85.28,37.53],"gu":"USA"},"id":"KY"},{"arcs":[[-1674,1795,1796,435,1797,437,1798,439,1799,441,1800,443,1801,1802,1803,447,1804,1805,450,1806,452,1807,1808]],"type":"Polygon","properties":{"ct":[-92.04,31.1],"gu":"USA"},"id":"LA"},{"arcs":[[-1713,1809,1810,1811,1812,1813,328,1814,330,1815,332,1816,334,1817,1818,337,1819,339,1820,1821]],"type":"Polygon","properties":{"ct":[-71.87,42.28],"gu":"USA"},"id":"MA"},{"arcs":[[[-1715,1822,1823,1824,-1716,1825,1826,1827,1828,362,1829,1830,365,1831,1832,368,1833,1834,1835,1836,373,1837]],[[1838,1839]]],"type":"MultiPolygon","properties":{"ct":[-76.82,39.07],"gu":"USA"},"id":"MD"},{"arcs":[[-1343,1840,881,1841,-1341,1842,-1339,1843,-1336,1844,-1333,1845,-1330,1846,1847,-1328,1848,-1066,1849,-1325,1850,889,1851,-1323,1852,891,1853,1854,1855,319,1856,321,1857,1858,1859,1860,-1407,1861,-1404,1862,875,1863,-1402,1864,-1399,1865,1866,-1396]],"type":"Polygon","properties":{"ct":[-69.24,45.41],"gu":"USA"},"id":"ME"},{"arcs":[[[-1360,1867,-952,1868,-949,-941,1869,1870,-1783,1871,-958,-990]],[[1872,1873,-972,1874,1875,-991,-966,1876]],[[-987]],[[-988]],[[-1003]],[[-969]],[[-968]],[[-1002]],[[-1004]],[[1877,-994]]],"type":"MultiPolygon","properties":{"ct":[-84.63,43.49],"gu":"USA"},"id":"MI"},{"arcs":[[-1319,1878,814,1879,-1390,1880,819,1881,-1387,1882,-1384,1883,1884,-1382,1885,1886,-1379,1887,1888,-1377,1889,1890,-1374,1891,1892,-1372,1893,1894,-1370,1895,834,1896,-1367,1897,-976,1898,1899,-1766,1900,1901]],"type":"Polygon","properties":{"ct":[-94.32,46.3],"gu":"USA"},"id":"MN"},{"arcs":[[-1677,1902,-1787,1903,-1763,-1780,-1793,1904,-1795,1905]],"type":"Polygon","properties":{"ct":[-92.49,38.38],"gu":"USA"},"id":"MO"},{"arcs":[[-1668,1906,1907,1908,-1796,-1673,1909]],"type":"Polygon","properties":{"ct":[-89.67,32.77],"gu":"USA"},"id":"MS"},{"arcs":[[-1256,-1420,1910,1911,1912,-1769,-1260]],"type":"Polygon","properties":{"ct":[-109.63,47.03],"gu":"USA"},"id":"MT"},{"arcs":[[[-1746,1913,1914,1915,1916,1917,392,1918,1919,1920,1921]],[[1922,1923,387,1924,1925]]],"type":"MultiPolygon","properties":{"ct":[-79.43,35.56],"gu":"USA"},"id":"NC"},{"arcs":[[-1320,-1902,1926,-1911,-1419]],"type":"Polygon","properties":{"ct":[-100.46,47.44],"gu":"USA"},"id":"ND"},{"arcs":[[-1706,1927,1928,-1764,-1904,-1786]],"type":"Polygon","properties":{"ct":[-99.79,41.53],"gu":"USA"},"id":"NE"},{"arcs":[[-1411,1929,871,1930,-1408,-1861,1931,325,1932,-1812,1933]],"type":"Polygon","properties":{"ct":[-71.58,43.68],"gu":"USA"},"id":"NH"},{"arcs":[[[1934,1935,1936,1937,1938,351,1939]],[[1940]]],"type":"MultiPolygon","properties":{"ct":[-74.66,40.21],"gu":"USA"},"id":"NJ"},{"arcs":[[-1682,-1709,1941,1942,1943,809,1944,1945]],"type":"Polygon","properties":{"ct":[-106.11,34.42],"gu":"USA"},"id":"NM"},{"arcs":[[-1680,-1703,1946,-1772,1947]],"type":"Polygon","properties":{"ct":[-116.65,39.36],"gu":"USA"},"id":"NV"},{"arcs":[[[-1355,1948,-942,1949,-1352,1950,-1349,1951,866,1952,-1346,-1415,1953,1954,1955,-1810,-1712,343,1956,-1936,1957,1958,-935,1959,1960]],[[1961,345,1962,1963]],[[1964,-932]]],"type":"MultiPolygon","properties":{"ct":[-75.59,43.02],"gu":"USA"},"id":"NY"},{"arcs":[[1965,1966,-1789,-1784,-1871,1967,-939,1968]],"type":"Polygon","properties":{"ct":[-82.79,40.3],"gu":"USA"},"id":"OH"},{"arcs":[[-1676,1969,-1942,-1708,-1788,-1903]],"type":"Polygon","properties":{"ct":[-97.51,35.59],"gu":"USA"},"id":"OK"},{"arcs":[[-1702,1970,1971,1972,1973,-1773,-1947]],"type":"Polygon","properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"arcs":[[-1958,-1935,1974,-1717,-1825,1975,-1966,1976,-937,1977]],"type":"Polygon","properties":{"ct":[-77.8,40.88],"gu":"USA"},"id":"PA"},{"arcs":[[[-1710,-1822,1978,1979]],[[1980]]],"type":"MultiPolygon","properties":{"ct":[-71.6,41.7],"gu":"USA"},"id":"RI"},{"arcs":[[-1747,-1922,1981,1982,397,1983,1984]],"type":"Polygon","properties":{"ct":[-80.9,33.92],"gu":"USA"},"id":"SC"},{"arcs":[[-1765,-1929,1985,-1912,-1927,-1901]],"type":"Polygon","properties":{"ct":[-100.22,44.44],"gu":"USA"},"id":"SD"},{"arcs":[[-1669,-1910,-1672,-1906,-1794,-1905,-1792,1986,-1914,-1745]],"type":"Polygon","properties":{"ct":[-86.34,35.85],"gu":"USA"},"id":"TN"},{"arcs":[[[-1675,-1809,1987,454,1988,1989,1990,1991,462,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,805,2003,807,2004,-1943,-1970]],[[2005]],[[458,2006,2007]],[[2008]]],"type":"MultiPolygon","properties":{"ct":[-99.36,31.51],"gu":"USA"},"id":"TX"},{"arcs":[[-1681,-1948,-1771,2009,-1704]],"type":"Polygon","properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"arcs":[[[-1714,2010,375,2011,377,2012,379,2013,381,2014,2015,384,2016,2017,-1923,2018,-1915,-1987,-1791,2019,-1823]],[[-1828,2020,360,2021]],[[-1839,2022,2023]]],"type":"MultiPolygon","properties":{"ct":[-78.9,37.53],"gu":"USA"},"id":"VA"},{"arcs":[[-1412,-1934,-1811,-1956,2024]],"type":"Polygon","properties":{"ct":[-72.67,44.08],"gu":"USA"},"id":"VT"},{"arcs":[[[-1262,-1774,-1974,2025,79,2026,81,2027,2028,2029,2030,2031,2032,2033,89,2034,2035,2036,2037,94,2038,96,2039,98,2040,100,2041,102,2042,104,2043,2044]],[[2045]],[[2046,2047]],[[2048]],[[2049]]],"type":"MultiPolygon","properties":{"ct":[-120.39,47.37],"gu":"USA"},"id":"WA"},{"arcs":[[[-1767,-1900,-974,2050,-1873,2051,-964,2052,-1775]],[[-986]],[[-985]],[[-984]],[[-971]],[[-970]]],"type":"MultiPolygon","properties":{"ct":[-90.03,44.64],"gu":"USA"},"id":"WI"},{"arcs":[[-1790,-1967,-1976,-1824,-2020]],"type":"Polygon","properties":{"ct":[-80.61,38.65],"gu":"USA"},"id":"WV"},{"arcs":[[-1705,-2010,-1770,-1913,-1986,-1928]],"type":"Polygon","properties":{"ct":[-107.54,43],"gu":"USA"},"id":"WY"}]}}} \ No newline at end of file diff --git a/topojson/dist/world_110m.json b/topojson/dist/world_110m.json new file mode 100644 index 00000000000..50696e6e63c --- /dev/null +++ b/topojson/dist/world_110m.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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],[461],[462,463],[464],[465],[466],[467],[468],[469],[470],[471],[472],[473],[474],[475],[476],[477],[478],[479],[480],[481],[482],[483],[484],[485],[486],[487],[488],[489],[490],[491,492,493,494],[495],[496],[497],[498],[499],[500],[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],[545],[546],[547],[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],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652],[653],[654],[655],[656],[657],[658],[659],[660],[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,709,710,711],[712,713,714],[715,716],[717],[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],[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],[792],[793],[794],[795],[796],[797],[798],[799],[800,801,802,803,804]]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[834,835,836,837,838,839,840]],"id":"AFG","properties":{"ct":[66.03,33.84]}},{"type":"MultiPolygon","arcs":[[[841,842,51,843]],[[53,844,845]]],"id":"AGO","properties":{"ct":[17.57,-12.34]}},{"type":"Polygon","arcs":[[110]],"id":"ALA","properties":{"ct":[19.96,60.22]}},{"type":"Polygon","arcs":[[846,847,848,89,849]],"id":"ALB","properties":{"ct":[20.07,41.13]}},{"type":"Polygon","arcs":[[850,851]],"id":"AND","properties":{"ct":[1.54,42.52]}},{"type":"Polygon","arcs":[[34,852,853,32,854]],"id":"ARE","properties":{"ct":[54.33,23.9]}},{"type":"MultiPolygon","arcs":[[[855,856,857,123,858,859]],[[860,125]]],"id":"ARG","properties":{"ct":[-65.15,-35.19]}},{"type":"Polygon","arcs":[[861,862,863,864,865]],"id":"ARM","properties":{"ct":[44.94,40.29]}},{"type":"Polygon","arcs":[[866,867,868,869,870,871,872]],"id":"AUT","properties":{"ct":[14.14,47.59]}},{"type":"MultiPolygon","arcs":[[[-866,873,874,800,875]],[[-863,876,877]]],"id":"AZE","properties":{"ct":[47.66,40.35]}},{"type":"Polygon","arcs":[[878,879,880]],"id":"BDI","properties":{"ct":[29.89,-3.37]}},{"type":"Polygon","arcs":[[881,882,883,101,884,103,885]],"id":"BEL","properties":{"ct":[4.66,50.64]}},{"type":"Polygon","arcs":[[127]],"id":"ATF","properties":{"ct":[69.49,-49.32]}},{"type":"Polygon","arcs":[[886,59,887,888,889]],"id":"BEN","properties":{"ct":[2.34,9.66]}},{"type":"Polygon","arcs":[[-889,890,891,892,893,894]],"id":"BFA","properties":{"ct":[-1.74,12.28]}},{"type":"Polygon","arcs":[[-873,895,896,897]],"id":"CZE","properties":{"ct":[15.32,49.74]}},{"type":"MultiPolygon","arcs":[[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]]],"id":"AUS","properties":{"ct":[134.35,-25.59]}},{"type":"MultiPolygon","arcs":[[[898,23,899]],[[139]]],"id":"BGD","properties":{"ct":[90.26,23.98]}},{"type":"Polygon","arcs":[[86,900,901,902,903,904]],"id":"BGR","properties":{"ct":[25.22,42.76]}},{"type":"MultiPolygon","arcs":[[[140]],[[141]],[[142]],[[143]]],"id":"BHS","properties":{"ct":[-78.05,24.69]}},{"type":"Polygon","arcs":[[905,906,907,92,908]],"id":"BIH","properties":{"ct":[17.78,44.18]}},{"type":"Polygon","arcs":[[909,910,911,912,913]],"id":"BLR","properties":{"ct":[28.06,53.55]}},{"type":"Polygon","arcs":[[914,915,144]],"id":"BLZ","properties":{"ct":[-88.7,17.21]}},{"type":"Polygon","arcs":[[-860,916,917,918,919]],"id":"BOL","properties":{"ct":[-64.66,-16.71]}},{"type":"MultiPolygon","arcs":[[[-857,920,-919,921,922,923,924,925,926,121,927]],[[348]],[[349]],[[350]],[[351]],[[352]]],"id":"BRA","properties":{"ct":[-53.09,-10.78]}},{"type":"MultiPolygon","arcs":[[[355,928]],[[929,357]]],"id":"BRN","properties":{"ct":[114.61,4.49]}},{"type":"Polygon","arcs":[[930,931,932]],"id":"BTN","properties":{"ct":[90.43,27.39]}},{"type":"Polygon","arcs":[[933,934,935]],"id":"BWA","properties":{"ct":[23.81,-22.19]}},{"type":"Polygon","arcs":[[936,937,938,939,940,941]],"id":"CAF","properties":{"ct":[20.49,6.58]}},{"type":"MultiPolygon","arcs":[[[270,942,181,943]],[[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]]],"id":"CAN","properties":{"ct":[-101.67,57.72]}},{"type":"Polygon","arcs":[[-871,944,945,946]],"id":"CHE","properties":{"ct":[8.23,46.8]}},{"type":"MultiPolygon","arcs":[[[-859,124,111,947,-917]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[-861,126]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]]],"id":"CHL","properties":{"ct":[-71.22,-35.19]}},{"type":"MultiPolygon","arcs":[[[-835,948,949,950,951,952,953,954,16,955,956,957,958,-933,959,960,961,962,963,964]],[[436]],[[437]]],"id":"CHN","properties":{"ct":[103.87,36.63]}},{"type":"Polygon","arcs":[[-893,965,62,966,967,968]],"id":"CIV","properties":{"ct":[-5.55,7.62]}},{"type":"Polygon","arcs":[[-941,969,970,971,57,972,973]],"id":"CMR","properties":{"ct":[12.74,5.69]}},{"type":"Polygon","arcs":[[438]],"id":"COM","properties":{"ct":[43.36,-11.65]}},{"type":"Polygon","arcs":[[-844,52,-846,974,-939,975,976,977,-880,978,979]],"id":"COD","properties":{"ct":[23.65,-2.88]}},{"type":"Polygon","arcs":[[-845,54,980,-970,-940,-975]],"id":"COG","properties":{"ct":[15.22,-0.84]}},{"type":"Polygon","arcs":[[-923,981,982,114,983,116,984]],"id":"COL","properties":{"ct":[-73.08,3.91]}},{"type":"Polygon","arcs":[[985,986]],"id":"MDA","properties":{"ct":[28.47,47.2]}},{"type":"MultiPolygon","arcs":[[[439]],[[440]],[[441]]],"id":"CPV","properties":{"ct":[-23.64,15.09]}},{"type":"Polygon","arcs":[[148,987,150,988]],"id":"CRI","properties":{"ct":[-84.2,9.97]}},{"type":"MultiPolygon","arcs":[[[442]],[[443]]],"id":"CUB","properties":{"ct":[-78.96,21.61]}},{"type":"Polygon","arcs":[[444]],"id":"CYP","properties":{"ct":[33.14,35.02]}},{"type":"MultiPolygon","arcs":[[[-872,-947,989,990,-882,991,105,992,107,993,-896]],[[445]]],"id":"DEU","properties":{"ct":[10.37,51.08]}},{"type":"Polygon","arcs":[[994,995,996,44]],"id":"DJI","properties":{"ct":[42.58,11.74]}},{"type":"Polygon","arcs":[[446]],"id":"DMA","properties":{"ct":[-61.35,15.42]}},{"type":"MultiPolygon","arcs":[[[-993,106]],[[447]],[[448]],[[449]],[[450]],[[451]]],"id":"DNK","properties":{"ct":[9.32,56.03]}},{"type":"Polygon","arcs":[[997,452]],"id":"DOM","properties":{"ct":[-70.5,18.9]}},{"type":"Polygon","arcs":[[998,999,1000,1001,1002,1003,1004,73]],"id":"DZA","properties":{"ct":[2.68,28.16]}},{"type":"Polygon","arcs":[[1005,1006,1007,76,1008,1009,40,1010]],"id":"EGY","properties":{"ct":[29.77,26.57]}},{"type":"Polygon","arcs":[[-997,1011,1012,43]],"id":"ERI","properties":{"ct":[38.8,15.4]}},{"type":"Polygon","arcs":[[-1004,1013,71,1014]],"id":"ESH","properties":{"ct":[-13.14,24.66]}},{"type":"MultiPolygon","arcs":[[[1015,1016,4]],[[454]],[[455]]],"id":"EST","properties":{"ct":[25.83,58.67]}},{"type":"Polygon","arcs":[[-996,1017,1018,1019,1020,-1012]],"id":"ETH","properties":{"ct":[39.63,8.63]}},{"type":"Polygon","arcs":[[6,1021,1022,1023]],"id":"FIN","properties":{"ct":[26.3,64.53]}},{"type":"MultiPolygon","arcs":[[[456]],[[457]]],"id":"FLK","properties":{"ct":[-58.75,-51.76]}},{"type":"MultiPolygon","arcs":[[[-852,1024,100,-884,1025,-990,-946,1026,96,1027]],[[458]]],"id":"FRA","properties":{"ct":[2.45,46.63]}},{"type":"Polygon","arcs":[[-927,1028,120]],"id":"GUF","properties":{"ct":[-53.23,3.92]}},{"type":"Polygon","arcs":[[459]],"id":"GUM","properties":{"ct":[144.8,13.45]}},{"type":"Polygon","arcs":[[-971,-981,55,1029]],"id":"GAB","properties":{"ct":[11.79,-0.6]}},{"type":"MultiPolygon","arcs":[[[460]],[[461]],[[1030,462]],[[464]],[[465]],[[466]]],"id":"GBR","properties":{"ct":[-2.53,53.95]}},{"type":"Polygon","arcs":[[-865,1031,82,1032,-874]],"id":"GEO","properties":{"ct":[43.5,42.18]}},{"type":"Polygon","arcs":[[-892,1033,61,-966]],"id":"GHA","properties":{"ct":[-1.2,7.97]}},{"type":"Polygon","arcs":[[-931,-959,1034,1035]],"id":"XAP","properties":{"ct":[94.39,28.13]}},{"type":"Polygon","arcs":[[-968,1036,1037,65,1038,1039,1040]],"id":"GIN","properties":{"ct":[-10.92,10.44]}},{"type":"Polygon","arcs":[[467]],"id":"GLP","properties":{"ct":[-61.59,16.19]}},{"type":"Polygon","arcs":[[68,1041]],"id":"GMB","properties":{"ct":[-15.48,13.45]}},{"type":"Polygon","arcs":[[-1039,66,1042]],"id":"GNB","properties":{"ct":[-14.93,12.05]}},{"type":"MultiPolygon","arcs":[[[-972,-1030,56]],[[468]]],"id":"GNQ","properties":{"ct":[10.46,1.57]}},{"type":"MultiPolygon","arcs":[[[-849,1043,-902,1044,88]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]]],"id":"GRC","properties":{"ct":[22.57,39.48]}},{"type":"MultiPolygon","arcs":[[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]]],"id":"GRL","properties":{"ct":[-41.33,74.78]}},{"type":"Polygon","arcs":[[-915,145,1045,1046,154,1047]],"id":"GTM","properties":{"ct":[-90.36,15.7]}},{"type":"Polygon","arcs":[[-925,1048,118,1049]],"id":"GUY","properties":{"ct":[-58.97,4.79]}},{"type":"Polygon","arcs":[[-1046,146,1050,152,1051]],"id":"HND","properties":{"ct":[-86.61,14.82]}},{"type":"MultiPolygon","arcs":[[[-909,93,1052,1053,1054]],[[-908,1055,91]]],"id":"HRV","properties":{"ct":[16.43,45.13]}},{"type":"MultiPolygon","arcs":[[[-998,453]],[[488]]],"id":"HTI","properties":{"ct":[-72.66,18.94]}},{"type":"Polygon","arcs":[[-868,1056,1057,1058,1059,-1054,1060]],"id":"HUN","properties":{"ct":[19.4,47.16]}},{"type":"MultiPolygon","arcs":[[[1061,359,353]],[[489]],[[490]],[[491,1062,493,1063]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[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]],[[1064,534]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]]],"id":"IDN","properties":{"ct":[114,-0.19]}},{"type":"Polygon","arcs":[[1065,27,1066,1067,1068,1069,1070]],"id":"IRQ","properties":{"ct":[43.76,33.05]}},{"type":"Polygon","arcs":[[554]],"id":"ISL","properties":{"ct":[-18.63,64.99]}},{"type":"MultiPolygon","arcs":[[[-900,24,1071,1072,-962,1073,-960,-932,-1036,1074]],[[555]],[[556]],[[557]],[[558]]],"id":"IND","properties":{"ct":[79.35,22.34]}},{"type":"Polygon","arcs":[[-1031,463]],"id":"IRL","properties":{"ct":[-8.13,53.18]}},{"type":"MultiPolygon","arcs":[[[-838,1075,26,-1066,1076,-877,-862,-876,801,1077]],[[559]]],"id":"IRN","properties":{"ct":[54.3,32.57]}},{"type":"Polygon","arcs":[[-1010,1078,78,1079,1080,1081,1082,1083,39]],"id":"ISR","properties":{"ct":[34.97,31.38]}},{"type":"MultiPolygon","arcs":[[[-870,1084,95,-1027,-945]],[[560]],[[561]]],"id":"ITA","properties":{"ct":[12.15,43.53]}},{"type":"Polygon","arcs":[[562]],"id":"JAM","properties":{"ct":[-77.28,18.15]}},{"type":"Polygon","arcs":[[-1069,1085,38,-1084,1086,-1082,1087]],"id":"JOR","properties":{"ct":[36.79,31.25]}},{"type":"MultiPolygon","arcs":[[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]]],"id":"JPN","properties":{"ct":[137.99,36.66]}},{"type":"Polygon","arcs":[[-1011,41,1088]],"id":"XHT","properties":{"ct":[35.49,22.36]}},{"type":"Polygon","arcs":[[-951,1089,1090,1091,803,1092]],"id":"KAZ","properties":{"ct":[67.29,48.16]}},{"type":"Polygon","arcs":[[-1019,1093,46,1094,1095,1096,1097,1098]],"id":"KEN","properties":{"ct":[37.86,0.54]}},{"type":"Polygon","arcs":[[-950,1099,1100,-1090]],"id":"KGZ","properties":{"ct":[74.53,41.46]}},{"type":"Polygon","arcs":[[1101,18,1102,1103]],"id":"KHM","properties":{"ct":[104.93,12.71]}},{"type":"MultiPolygon","arcs":[[[-1067,28,1104]],[[572]]],"id":"KWT","properties":{"ct":[47.57,29.33]}},{"type":"Polygon","arcs":[[-1005,-1015,72]],"id":"MAR","properties":{"ct":[-6.27,31.85]}},{"type":"MultiPolygon","arcs":[[[1105,14]],[[573]]],"id":"KOR","properties":{"ct":[127.86,36.48]}},{"type":"Polygon","arcs":[[-957,1106,-1104,1107,1108]],"id":"LAO","properties":{"ct":[103.76,18.51]}},{"type":"Polygon","arcs":[[-1080,79,1109]],"id":"LBN","properties":{"ct":[35.89,33.92]}},{"type":"Polygon","arcs":[[-967,63,1110,-1037]],"id":"LBR","properties":{"ct":[-9.3,6.43]}},{"type":"Polygon","arcs":[[-1000,1111,75,-1008,1112,1113,1114]],"id":"LBY","properties":{"ct":[18.03,27.04]}},{"type":"Polygon","arcs":[[574]],"id":"LKA","properties":{"ct":[80.71,7.61]}},{"type":"Polygon","arcs":[[1115]],"id":"LSO","properties":{"ct":[28.26,-29.58]}},{"type":"Polygon","arcs":[[-912,1116,1117,1,2,1118]],"id":"LTU","properties":{"ct":[23.88,55.34]}},{"type":"Polygon","arcs":[[-883,-991,-1026]],"id":"LUX","properties":{"ct":[6.08,49.77]}},{"type":"Polygon","arcs":[[-913,-1119,3,-1017,1119]],"id":"LVA","properties":{"ct":[24.94,56.85]}},{"type":"Polygon","arcs":[[575]],"id":"MDG","properties":{"ct":[46.69,-19.4]}},{"type":"MultiPolygon","arcs":[[[-916,-1048,155,1120,347]],[[576]],[[577]]],"id":"MEX","properties":{"ct":[-102.53,23.94]}},{"type":"Polygon","arcs":[[-848,1121,-903,-1044]],"id":"MKD","properties":{"ct":[21.69,41.61]}},{"type":"Polygon","arcs":[[-894,-969,-1041,1122,1123,-1002,1124]],"id":"MLI","properties":{"ct":[-3.53,17.36]}},{"type":"Polygon","arcs":[[-1006,1125]],"id":"XBT","properties":{"ct":[33.68,21.89]}},{"type":"MultiPolygon","arcs":[[[-899,-1075,-1035,-958,-1109,1126,22]],[[578]]],"id":"MMR","properties":{"ct":[96.52,21.25]}},{"type":"Polygon","arcs":[[-850,90,-1056,-907,1127]],"id":"MNE","properties":{"ct":[19.27,42.79]}},{"type":"Polygon","arcs":[[-953,1128]],"id":"MNG","properties":{"ct":[103.07,46.84]}},{"type":"MultiPolygon","arcs":[[[579]],[[580]]],"id":"WSM","properties":{"ct":[-172.43,-13.62]}},{"type":"Polygon","arcs":[[1129,1130,1131,1132,1133,1134,1135,48]],"id":"MOZ","properties":{"ct":[35.55,-17.25]}},{"type":"Polygon","arcs":[[-1003,-1124,1136,70,-1014]],"id":"MRT","properties":{"ct":[-10.34,20.26]}},{"type":"Polygon","arcs":[[581]],"id":"MTQ","properties":{"ct":[-61.02,14.65]}},{"type":"Polygon","arcs":[[-1135,1137,1138]],"id":"MWI","properties":{"ct":[34.31,-13.23]}},{"type":"Polygon","arcs":[[-964,1139]],"id":"XAC","properties":{"ct":[79.12,35.02]}},{"type":"MultiPolygon","arcs":[[[-929,356,-930,358,-1062,354]],[[20,1140]]],"id":"MYS","properties":{"ct":[114.72,3.61]}},{"type":"Polygon","arcs":[[-843,1141,-935,1142,50]],"id":"NAM","properties":{"ct":[17.22,-22.14]}},{"type":"MultiPolygon","arcs":[[[582]],[[583]],[[584]]],"id":"NCL","properties":{"ct":[165.5,-21.34]}},{"type":"Polygon","arcs":[[-1098,1143]],"id":"SSD","properties":{"ct":[35.09,4.76]}},{"type":"Polygon","arcs":[[-890,-895,-1125,-1001,-1115,1144,1145]],"id":"NER","properties":{"ct":[9.4,17.42]}},{"type":"Polygon","arcs":[[-887,-1146,1146,-973,58]],"id":"NGA","properties":{"ct":[8.1,9.59]}},{"type":"Polygon","arcs":[[-989,151,-1051,147]],"id":"NIC","properties":{"ct":[-85.03,12.84]}},{"type":"MultiPolygon","arcs":[[[-886,104,-992]],[[-885,102]]],"id":"NLD","properties":{"ct":[5.67,52.25]}},{"type":"MultiPolygon","arcs":[[[585]],[[586]],[[587]],[[588]]],"id":"NZL","properties":{"ct":[170.48,-43.98]}},{"type":"MultiPolygon","arcs":[[[-1023,1147,8,1148]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]]],"id":"NOR","properties":{"ct":[14.01,64.27]}},{"type":"Polygon","arcs":[[-961,-1074]],"id":"NPL","properties":{"ct":[83.93,28.26]}},{"type":"MultiPolygon","arcs":[[[-853,35,1149,1150]],[[-855,33]]],"id":"OMN","properties":{"ct":[56.1,20.58]}},{"type":"Polygon","arcs":[[-837,1151,-1072,25,-1076]],"id":"PAK","properties":{"ct":[68.8,29.38]}},{"type":"MultiPolygon","arcs":[[[-988,149]],[[597]],[[-984,115]]],"id":"PAN","properties":{"ct":[-81.25,8.45]}},{"type":"Polygon","arcs":[[-918,-948,112,1152,-982,-922]],"id":"PER","properties":{"ct":[-74.35,-9.18]}},{"type":"Polygon","arcs":[[598]],"id":"REU","properties":{"ct":[55.54,-21.13]}},{"type":"Polygon","arcs":[[-905,1153,-1059,1154,-986,1155,85]],"id":"ROU","properties":{"ct":[24.98,45.84]}},{"type":"MultiPolygon","arcs":[[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]]],"id":"PHL","properties":{"ct":[121.41,15.97]}},{"type":"Polygon","arcs":[[-881,-978,1156,1157]],"id":"RWA","properties":{"ct":[29.91,-2]}},{"type":"Polygon","arcs":[[-854,-1151,1158,37,-1086,-1068,-1105,29,1159,31]],"id":"SAU","properties":{"ct":[44.55,24.13]}},{"type":"MultiPolygon","arcs":[[[-1065,535]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]]],"id":"PNG","properties":{"ct":[144.24,-6.6]}},{"type":"Polygon","arcs":[[-897,-994,108,1160,-1117,-911,1161,1162]],"id":"POL","properties":{"ct":[19.41,52.12]}},{"type":"Polygon","arcs":[[626]],"id":"PRI","properties":{"ct":[-66.47,18.22]}},{"type":"Polygon","arcs":[[-955,13,-1106,15]],"id":"PRK","properties":{"ct":[127.18,40.14]}},{"type":"Polygon","arcs":[[-856,-920,-921]],"id":"PRY","properties":{"ct":[-58.39,-23.24]}},{"type":"Polygon","arcs":[[627]],"id":"PYF","properties":{"ct":[-149.39,-17.7]}},{"type":"Polygon","arcs":[[-1160,30]],"id":"QAT","properties":{"ct":[51.2,25.28]}},{"type":"Polygon","arcs":[[-937,1163,-1113,-1007,-1126,-1089,42,-1013,-1021,1164]],"id":"SDN","properties":{"ct":[29.95,16.01]}},{"type":"Polygon","arcs":[[-1040,-1043,67,-1042,69,-1137,-1123]],"id":"SEN","properties":{"ct":[-14.46,14.36]}},{"type":"Polygon","arcs":[[628]],"id":"SGS","properties":{"ct":[-36.64,-54.37]}},{"type":"MultiPolygon","arcs":[[[629]],[[630]],[[631]],[[632]],[[633]]],"id":"SJM","properties":{"ct":[15.78,78.62]}},{"type":"MultiPolygon","arcs":[[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]]],"id":"SLB","properties":{"ct":[160.15,-9.62]}},{"type":"Polygon","arcs":[[-1038,-1111,64]],"id":"SLE","properties":{"ct":[-11.77,8.58]}},{"type":"Polygon","arcs":[[-1047,-1052,153]],"id":"SLV","properties":{"ct":[-88.87,13.74]}},{"type":"Polygon","arcs":[[-995,45,-1094,-1018]],"id":"SOM","properties":{"ct":[45.87,6.05]}},{"type":"Polygon","arcs":[[-847,-1128,-906,-1055,-1060,-1154,-904,-1122]],"id":"SRB","properties":{"ct":[20.8,44.04]}},{"type":"Polygon","arcs":[[-938,-1165,-1020,-1099,-1144,-1097,1165,-976]],"id":"SSD","properties":{"ct":[30.31,7.31]}},{"type":"Polygon","arcs":[[643]],"id":"STP","properties":{"ct":[6.62,0.24]}},{"type":"Polygon","arcs":[[-926,-1050,119,-1029]],"id":"SUR","properties":{"ct":[-55.9,4.13]}},{"type":"Polygon","arcs":[[-867,-898,-1163,1166,-1057]],"id":"SVK","properties":{"ct":[19.49,48.71]}},{"type":"Polygon","arcs":[[-869,-1061,-1053,94,-1085]],"id":"SVN","properties":{"ct":[14.81,46.1]}},{"type":"Polygon","arcs":[[644]],"id":"TWN","properties":{"ct":[120.97,23.75]}},{"type":"MultiPolygon","arcs":[[[-1022,7,-1148]],[[645]],[[646]]],"id":"SWE","properties":{"ct":[16.73,62.85]}},{"type":"Polygon","arcs":[[-1131,1167]],"id":"SWZ","properties":{"ct":[31.5,-26.57]}},{"type":"Polygon","arcs":[[-1070,-1088,-1081,-1110,80,1168]],"id":"SYR","properties":{"ct":[38.5,35.02]}},{"type":"Polygon","arcs":[[-942,-974,-1147,-1145,-1114,-1164]],"id":"TCD","properties":{"ct":[18.66,15.36]}},{"type":"Polygon","arcs":[[-888,60,-1034,-891]],"id":"TGO","properties":{"ct":[0.98,8.52]}},{"type":"Polygon","arcs":[[-1103,19,-1141,21,-1127,-1108]],"id":"THA","properties":{"ct":[101.03,15.16]}},{"type":"Polygon","arcs":[[-841,1169,-1100,-949]],"id":"TJK","properties":{"ct":[71.01,38.52]}},{"type":"Polygon","arcs":[[-839,-1078,802,-1092,1170]],"id":"TKM","properties":{"ct":[59.4,39.11]}},{"type":"MultiPolygon","arcs":[[[-1064,494]],[[-1063,492]]],"id":"TLS","properties":{"ct":[125.89,-8.82]}},{"type":"Polygon","arcs":[[647]],"id":"TTO","properties":{"ct":[-61.27,10.41]}},{"type":"Polygon","arcs":[[-999,74,-1112]],"id":"TUN","properties":{"ct":[9.57,34.12]}},{"type":"MultiPolygon","arcs":[[[-864,-878,-1077,-1071,-1169,81,-1032]],[[-901,87,-1045]]],"id":"TUR","properties":{"ct":[35.45,38.99]}},{"type":"MultiPolygon","arcs":[[[-879,-1158,1171,-1095,47,-1136,-1139,1172,-979]],[[648]]],"id":"TZA","properties":{"ct":[34.8,-6.27]}},{"type":"Polygon","arcs":[[-977,-1166,-1096,-1172,-1157]],"id":"UGA","properties":{"ct":[32.39,1.28]}},{"type":"Polygon","arcs":[[-910,1173,84,-1156,-987,-1155,-1058,-1167,-1162]],"id":"UKR","properties":{"ct":[31.4,49.01]}},{"type":"Polygon","arcs":[[-858,-928,122]],"id":"URY","properties":{"ct":[-56.02,-32.79]}},{"type":"Polygon","arcs":[[-840,-1171,-1091,-1101,-1170]],"id":"UZB","properties":{"ct":[63.12,41.77]}},{"type":"MultiPolygon","arcs":[[[-924,-985,117,-1049]],[[649]]],"id":"VEN","properties":{"ct":[-66.17,7.13]}},{"type":"Polygon","arcs":[[-956,17,-1102,-1107]],"id":"VNM","properties":{"ct":[106.31,16.62]}},{"type":"MultiPolygon","arcs":[[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]]],"id":"VUT","properties":{"ct":[166.87,-15.22]}},{"type":"Polygon","arcs":[[-836,-965,-1140,-963,-1073,-1152]],"id":"XJK","properties":{"ct":[75.8,34.55]}},{"type":"MultiPolygon","arcs":[[[-1150,36,-1159]],[[657]]],"id":"YEM","properties":{"ct":[47.55,15.94]}},{"type":"Polygon","arcs":[[-934,1174,-1132,-1168,-1130,49,-1143],[-1116]],"id":"ZAF","properties":{"ct":[25.09,-28.99]}},{"type":"Polygon","arcs":[[-842,-980,-1173,-1138,-1134,1175,-1142]],"id":"ZMB","properties":{"ct":[27.79,-13.46]}},{"type":"Polygon","arcs":[[-936,-1176,-1133,-1175]],"id":"ZWE","properties":{"ct":[29.88,-18.99]}},{"type":"Polygon","arcs":[[-1009,77,-1079]],"id":"PSE","properties":{"ct":[34.33,31.38]}},{"type":"Polygon","arcs":[[-1083,-1087]],"id":"PSE","properties":{"ct":[35.27,31.95]}},{"type":"MultiPolygon","arcs":[[[-983,-1153,113]],[[658]]],"id":"ECU","properties":{"ct":[-78.37,-1.46]}},{"type":"MultiPolygon","arcs":[[[659]],[[660]],[[661]]],"id":"ECU","properties":{"ct":[-91.16,-0.57]}},{"type":"MultiPolygon","arcs":[[[-851,-1028,97,1176,99,-1025]],[[662]],[[663]],[[664]]],"id":"ESP","properties":{"ct":[-3.55,40.4]}},{"type":"MultiPolygon","arcs":[[[665]],[[666]],[[667]],[[668]]],"id":"ESP","properties":{"ct":[-16.54,28.28]}},{"type":"Polygon","arcs":[[669]],"id":"MUS","properties":{"ct":[57.57,-20.29]}},{"type":"Polygon","arcs":[[-1177,98]],"id":"PRT","properties":{"ct":[-7.96,39.7]}},{"type":"Polygon","arcs":[[670]],"id":"PRT","properties":{"ct":[-16.99,32.75]}},{"type":"MultiPolygon","arcs":[[[671,672,673,674,675,676,677]],[[678,679,680]],[[681]],[[682,683,684,685,686,687]],[[688,689,690]],[[691]],[[692]],[[-943,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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,-1121,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]],[[693]],[[694]],[[695]],[[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]],[[-944,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":"USA","properties":{"ct":[-99.11,39.52]}},{"type":"MultiPolygon","arcs":[[[728,1177,1178]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]]],"id":"ATA","properties":{"ct":[21.36,-80.47]}},{"type":"MultiPolygon","arcs":[[[758]],[[759]]],"id":"FJI","properties":{"ct":[177.95,-17.84]}},{"type":"MultiPolygon","arcs":[[[760]],[[761]],[[762]],[[763]],[[-1118,-1161,109,0]],[[764]],[[765]],[[766]],[[768]],[[769]],[[770]],[[771]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[767,1179,12,-954,-1129,-952,-1093,804,-875,-1033,83,-1174,-914,-1120,-1016,5,-1024,-1149,9,1180]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[799,798,1181,772,1182]]],"id":"RUS","properties":{"ct":[99.15,61.67]}}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[-130],[-131],[-132],[-733],[-586],[-588],[-531,-360,-359,-358,-357,-356,-355,-354],[-510],[-522],[-519],[-554],[-532],[-649],[-545],[-439],[-599],[-576],[-644],[-670],[-128],[-752],[-133],[-533],[-539],[-530],[-538],[-541],[-542],[-543],[-546],[-547],[-549],[-521],[-528],[-544],[-537],[-540],[-512],[-499],[-504],[-503],[-520],[-506],[-508],[-509],[-511],[-516],[-518],[-526],[-523],[-524],[-529],[-525],[-139],[-491],[-495,-494,-493,-492],[-496],[-498],[-501],[-138],[-490],[-500],[-517],[-502],[-515],[-514],[-513],[-507],[-497],[-638],[-759],[-653],[-652],[-635],[-636],[-639],[-637],[-760],[-584],[-585],[-583],[-589],[-134],[-135],[-129],[-643],[-640],[-617],[-618],[-655],[-641],[-622],[-621],[-620],[-619],[-137],[-136],[-654],[-656],[-657],[-651],[-603],[-608],[-604],[-612],[-460],[-553],[-625],[-550],[-626],[-534],[-642],[-527],[-623],[-536,-535],[-505],[-624],[-556],[-557],[-601],[-548],[-602],[-607],[-579],[-552],[-437],[-558],[-559],[-551],[-609],[-610],[-605],[-606],[-570],[-569],[-574],[-140],[-567],[-566],[-438],[-645],[-565],[-568],[-616],[-615],[-600],[-611],[-613],[-614],[-781],[-783],[-780],[-784],[-770],[-765],[-572],[-761],[-764],[-762],[-766],[-798],[-763],[-697],[-564],[-571],[-795],[-789],[-797],[-796],[-785],[-790],[-793],[-767],[-776],[-777],[-791],[-779],[-788],[-787],[-786],[-782],[-593],[-592],[-596],[-634],[-597],[-595],[-630],[-631],[-632],[-633],[-771],[-772],[-778],[-769],[-794],[-792],[-664],[-111],[-455],[-456],[-647],[-446],[-449],[-646],[-448],[-591],[-451],[-450],[-452],[-594],[-590],[-658],[-470],[-471],[-472],[-560],[-561],[-573],[-445],[-473],[-474],[-475],[-562],[-459],[-665],[-663],[-489],[-454,-453],[-627],[-563],[-142],[-444],[-443],[-650],[-598],[-648],[-353],[-440],[-441],[-442],[-575],[-469],[-464,-463],[-692],[-141],[-466],[-465],[-143],[-144],[-477],[-582],[-671],[-669],[-668],[-667],[-666],[-447],[-468],[-479],[-480],[-487],[-488],[-478],[-484],[-485],[-486],[-483],[-482],[-481],[-476],[-555],[-467],[-462],[-461],[-388],[-383],[-401],[-367],[-413],[-410],[-398],[-394],[-379],[-414],[-361],[-407],[-363],[-403],[-377],[-366],[-409],[-382],[-393],[-417,-371],[-378],[-364],[-384],[-392],[-380],[-389],[-693],[-405],[-408],[-411],[-396],[-415],[-399],[-376],[-406],[-397],[-369],[-385],[-381],[-391],[-362],[-372],[-416],[-370],[-375],[-387],[-703],[-721,-720],[-702,-701,-700],[-699],[-727,-726,-725,-724,-723,-722],[-386],[-390],[-698],[-412],[-395],[-365],[-374],[-368],[-373],[-404],[-402],[-400],[-694],[-682],[-712,-711,-710,-709,-708,-707],[-695],[-696],[-681,-680,-679],[-577],[-678,-677,-676,-675,-674,-673,-672],[-578],[-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145],[-705,-704],[-706],[-715,-714,-713],[-717,-716],[-719],[-718],[-432],[-436],[-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-426],[-349],[-350],[-351],[-352],[-659],[-628],[-661],[-580],[-581],[-660],[-662],[-688,-687,-686,-685,-684,-683],[-691,-690,-689],[-419],[-421],[-422],[-423],[-424],[-127,-126],[-420],[-428],[-429],[-430],[-431],[-418],[-435],[-434],[-433],[-747],[-744],[-748],[-749],[-751],[-753],[-754],[-758],[-756],[-757],[-458],[-457],[-629],[-755],[-427],[-425],[-587],[-731],[-739],[-740],[-734],[-737],[-736],[-735],[-746],[-732],[-745],[-738],[-741],[-742],[-743],[-750],[-1183,-773,-1182,-799,-800],[-1178,-729,-728,1183],[-10,-9,-8,-7,-6,-5,-4,-3,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-1180,-768,-1181]],[[-2,-1]],[[-805,-804,-803,-802,-801]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[1184]]},{"type":"Polygon","arcs":[[1185]]},{"type":"Polygon","arcs":[[1186]]},{"type":"Polygon","arcs":[[1187,1188]]},{"type":"Polygon","arcs":[[1189,1190,1191,1192,1193,1194,1195,1196]]},{"type":"Polygon","arcs":[[1197,1198,1199,1200,1201,1202]]},{"type":"Polygon","arcs":[[1203]]},{"type":"Polygon","arcs":[[1204]]},{"type":"Polygon","arcs":[[1205]]},{"type":"Polygon","arcs":[[1206]]},{"type":"Polygon","arcs":[[1207]]},{"type":"Polygon","arcs":[[1208]]},{"type":"Polygon","arcs":[[1209]]},{"type":"Polygon","arcs":[[1210]]},{"type":"Polygon","arcs":[[1211]]},{"type":"Polygon","arcs":[[1212]]},{"type":"Polygon","arcs":[[1213]]},{"type":"Polygon","arcs":[[1214]]},{"type":"Polygon","arcs":[[1215]]},{"type":"Polygon","arcs":[[1216]]},{"type":"Polygon","arcs":[[1217]]},{"type":"Polygon","arcs":[[1218]]},{"type":"Polygon","arcs":[[1219,1220,1221,1222]]},{"type":"Polygon","arcs":[[-1220,1223,1224,1225,1226,1227,1228,1229,1230]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[800,801,802,803,804],[767,1179,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,0,1,2,3,4,5,6,7,8,9,1180]],[[110]],[[123,124,111,112,113,114,115,116,117,118,119,120,121,122]],[[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,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,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]],[[355,356,357,358,359,353,354]],[[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]],[[461]],[[462,463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491,492,493,494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[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]],[[545]],[[546]],[[547]],[[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]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[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,709,710,711]],[[712,713,714]],[[715,716]],[[717]],[[718]],[[719,720]],[[721,722,723,724,725,726]],[[728,1177,1178]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[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]],[[768]],[[769]],[[770]],[[771]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[799,798,1181,772,1182]]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[805]},{"type":"LineString","arcs":[806]},{"type":"MultiLineString","arcs":[[807],[808]]},{"type":"LineString","arcs":[809]},{"type":"LineString","arcs":[810]},{"type":"LineString","arcs":[811]},{"type":"LineString","arcs":[812]},{"type":"LineString","arcs":[813]},{"type":"LineString","arcs":[814]},{"type":"LineString","arcs":[815]},{"type":"LineString","arcs":[816]},{"type":"LineString","arcs":[817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832]},{"type":"LineString","arcs":[833]}]},"subunits":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[1231,1232,1233,1234,1235,-1203,1236]],"properties":{"ct":[-94.3,46.32],"gu":"USA"},"id":"MN"},{"type":"Polygon","arcs":[[1237,1238,1239,1240,1241]],"properties":{"ct":[-109.66,47.05],"gu":"USA"},"id":"MT"},{"type":"Polygon","arcs":[[-1235,1242,-1239,1243]],"properties":{"ct":[-100.48,47.46],"gu":"USA"},"id":"ND"},{"type":"MultiPolygon","arcs":[[[1244,1245,676,1246,672,1247]],[[1248,1249]],[[1250]],[[686,1251,1252,684,1253]],[[689,1254]]],"properties":{"ct":[-155.5,19.61],"gu":"USA"},"id":"HI"},{"type":"Polygon","arcs":[[-1242,1255,1256,1257,1258,1259,1260]],"properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"type":"MultiPolygon","arcs":[[[-1260,1261,1262,173,1263,1264,176,1265,1266,179,1267]],[[1268]]],"properties":{"ct":[-120.36,47.37],"gu":"USA"},"id":"WA"},{"type":"Polygon","arcs":[[1269,1270,1271,1272,1273]],"properties":{"ct":[-111.66,34.3],"gu":"USA"},"id":"AZ"},{"type":"Polygon","arcs":[[-1272,1274,1275,158,1276,1277,1278,162,1279,164,1280,166,1281,1282,169,1283,171,1284,1285,1286]],"properties":{"ct":[-119.62,37.26],"gu":"USA"},"id":"CA"},{"type":"Polygon","arcs":[[1287,1288,1289,1290,1291,1292]],"properties":{"ct":[-105.55,39],"gu":"USA"},"id":"CO"},{"type":"Polygon","arcs":[[-1258,1293,-1273,-1287,1294]],"properties":{"ct":[-116.65,39.35],"gu":"USA"},"id":"NV"},{"type":"Polygon","arcs":[[-1270,-1290,1295,1296,1297]],"properties":{"ct":[-106.09,34.42],"gu":"USA"},"id":"NM"},{"type":"Polygon","arcs":[[-1259,-1295,-1286,1298,-1262]],"properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"type":"Polygon","arcs":[[-1257,1299,-1291,-1274,-1294]],"properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"type":"Polygon","arcs":[[-1241,1300,1301,-1292,-1300,-1256]],"properties":{"ct":[-107.55,43.03],"gu":"USA"},"id":"WY"},{"type":"Polygon","arcs":[[1302,1303,1304,1305,1306,1307,1308,1309]],"properties":{"ct":[-92.44,34.92],"gu":"USA"},"id":"AR"},{"type":"Polygon","arcs":[[-1233,1310,1311,1312,1313,1314]],"properties":{"ct":[-93.51,42.08],"gu":"USA"},"id":"IA"},{"type":"Polygon","arcs":[[-1288,1315,1316,1317,1318,1319]],"properties":{"ct":[-98.38,38.48],"gu":"USA"},"id":"KS"},{"type":"Polygon","arcs":[[-1310,1320,-1319,-1318,-1317,1321,-822,1322,-1313,1323,1324,1325,1326]],"properties":{"ct":[-92.48,38.38],"gu":"USA"},"id":"MO"},{"type":"Polygon","arcs":[[-1293,-1302,1327,1328,1329,1330,-1314,-1323,821,-1322,-1316]],"properties":{"ct":[-99.82,41.53],"gu":"USA"},"id":"NE"},{"type":"Polygon","arcs":[[-1289,-1320,-1321,-1309,1331,-1296]],"properties":{"ct":[-97.5,35.58],"gu":"USA"},"id":"OK"},{"type":"Polygon","arcs":[[-1234,-1315,-1331,-1330,-1329,-1328,-1301,-1240,-1243]],"properties":{"ct":[-100.23,44.45],"gu":"USA"},"id":"SD"},{"type":"Polygon","arcs":[[-1307,1332,1333,829,1334,1335,1336,1337,332,1338,334,1339,336,1340,338,1341,1342,1343]],"properties":{"ct":[-92.01,31.1],"gu":"USA"},"id":"LA"},{"type":"Polygon","arcs":[[-1297,-1332,-1308,-1344,1344,1345,342,1346,1347,345,1348,1349]],"properties":{"ct":[-99.35,31.48],"gu":"USA"},"id":"TX"},{"type":"Polygon","arcs":[[1350,1351,1352,282,1353,1354]],"properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"type":"Polygon","arcs":[[-1351,1355,1356,1357,1358,277,1359,1360,1361]],"properties":{"ct":[-71.86,42.27],"gu":"USA"},"id":"MA"},{"type":"Polygon","arcs":[[-1358,1362,1363,1364,1365,1366]],"properties":{"ct":[-71.56,43.69],"gu":"USA"},"id":"NH"},{"type":"Polygon","arcs":[[-1352,-1362,1367,280,1368]],"properties":{"ct":[-71.57,41.71],"gu":"USA"},"id":"RI"},{"type":"Polygon","arcs":[[-1357,1369,1370,-1363]],"properties":{"ct":[-72.66,44.07],"gu":"USA"},"id":"VT"},{"type":"Polygon","arcs":[[1371,1372,1373,1374,328,1375,1376]],"properties":{"ct":[-86.82,32.79],"gu":"USA"},"id":"AL"},{"type":"Polygon","arcs":[[-1374,1377,1378,310,1379,1380,1381,314,1382,316,1383,1384,319,1385,1386,322,1387,1388,325,1389,1390]],"properties":{"ct":[-82.5,28.65],"gu":"USA"},"id":"FL"},{"type":"Polygon","arcs":[[-1373,1391,1392,1393,1394,1395,1396,-1378]],"properties":{"ct":[-83.45,32.65],"gu":"USA"},"id":"GA"},{"type":"Polygon","arcs":[[-1306,-1305,1397,-1377,1398,330,1399,-1337,-1336,-1335,-830,-1334,-1333]],"properties":{"ct":[-89.67,32.78],"gu":"USA"},"id":"MS"},{"type":"Polygon","arcs":[[-1394,1400,1401,305,1402,1403]],"properties":{"ct":[-80.9,33.91],"gu":"USA"},"id":"SC"},{"type":"Polygon","arcs":[[-1312,1404,1405,-1227,1406,1407,1408,-1325,-1324]],"properties":{"ct":[-89.2,40.06],"gu":"USA"},"id":"IL"},{"type":"Polygon","arcs":[[-1408,1409,-1225,1410,1411,1412]],"properties":{"ct":[-86.28,39.9],"gu":"USA"},"id":"IN"},{"type":"Polygon","arcs":[[-1326,-1409,-1413,1413,1414,1415,1416,1417]],"properties":{"ct":[-85.28,37.51],"gu":"USA"},"id":"KY"},{"type":"Polygon","arcs":[[-1393,1418,1419,-1420,1420,1421,298,1422,300,1423,1424,303,1425,-1401]],"properties":{"ct":[-79.36,35.54],"gu":"USA"},"id":"NC"},{"type":"Polygon","arcs":[[-1412,1426,1427,-1195,1428,1429,1430,-1414]],"properties":{"ct":[-82.79,40.28],"gu":"USA"},"id":"OH"},{"type":"Polygon","arcs":[[-1304,-1303,-1327,-1418,-1417,1416,1431,-1420,-1419,-1392,-1372,-1398]],"properties":{"ct":[-86.32,35.84],"gu":"USA"},"id":"TN"},{"type":"MultiPolygon","arcs":[[[-1416,1432,1433,1434,1435,1436,296,1437,-1421,1419,-1432,-1417]],[[1438,1439,1440]]],"properties":{"ct":[-78.89,37.51],"gu":"USA"},"id":"VA"},{"type":"Polygon","arcs":[[-1232,1441,-1201,1442,1443,1444,-1229,1445,-1405,-1311]],"properties":{"ct":[-90,44.65],"gu":"USA"},"id":"WI"},{"type":"Polygon","arcs":[[-1415,-1431,1446,1447,-1433]],"properties":{"ct":[-80.61,38.64],"gu":"USA"},"id":"WV"},{"type":"Polygon","arcs":[[1448,1449,1450,1451,289,1452]],"properties":{"ct":[-75.51,38.99],"gu":"USA"},"id":"DE"},{"type":"Polygon","arcs":[[-1435,1453]],"properties":{"ct":[-77.02,38.9],"gu":"USA"},"id":"DC"},{"type":"Polygon","arcs":[[-1441,1454,1455,293,1456,1457,-1436,-1454,-1434,-1448,1458,-1449,1459]],"properties":{"ct":[-76.79,39.04],"gu":"USA"},"id":"MD"},{"type":"Polygon","arcs":[[-1451,1460,1461,1462,286,1463,1464]],"properties":{"ct":[-74.68,40.21],"gu":"USA"},"id":"NJ"},{"type":"Polygon","arcs":[[-1355,1465,284,1466,-1462,1467,1468,-1191,1469,-1188,1470,-1370,-1356]],"properties":{"ct":[-75.53,42.94],"gu":"USA"},"id":"NY"},{"type":"Polygon","arcs":[[-1430,1471,-1193,1472,-1468,-1461,-1450,-1459,-1447]],"properties":{"ct":[-77.81,40.87],"gu":"USA"},"id":"PA"},{"type":"Polygon","arcs":[[-1365,1473,272,1474,274,1475]],"properties":{"ct":[-69.24,45.4],"gu":"USA"},"id":"ME"},{"type":"MultiPolygon","arcs":[[[-1444,1476,-1199,1477,1478,-1221,-1231,1479]],[[-1427,-1411,-1224,-1223,1480,1481,-1197,1482]]],"properties":{"ct":[-84.61,43.48],"gu":"USA"},"id":"MI"},{"type":"MultiPolygon","arcs":[[[1483,708,1484,1485,1486]],[[719,1487]],[[1488,723,1489,1490,1491,1492]],[[1493,183,1494,1495,186,1496,1497,189,1498,191,1499,1500,1501,195,1502,197,1503,199,1504,201,1505,203,1506,205,1507,1508,208,1509,210,1510,212,1511,214,1512,1513,217,1514,219,1515,1516,222,1517,1518,1519,1520,1521,228,1522,230,1523,1524,1525,1526,235,1527,1528,1529,239,1530,241,1531,1532,244,1533,246,1534,248,1535,250,1536,252,1537,254,1538,256,1539,258,1540,1541,261,1542,263,1543,265,1544,267,1545,269,1546]],[[703,1547]],[[713,1548]],[[716,1549]],[[701,699,1550]]],"properties":{"ct":[-152.67,64.54],"gu":"USA"},"id":"AK"}]}},"arcs":[[[558244,832530],[-1217,-1882],[1333,-395],[675,451],[-180,1176],[654,520]],[[559509,832400],[-1265,130]],[[558244,832530],[368,1595],[-100,3075]],[[558512,837200],[-243,1529],[216,2818],[992,1989],[21,885],[735,1524],[2528,1153],[1781,-3716],[906,-822],[1017,180],[1308,1411],[-129,3729]],[[567644,847880],[365,1491],[-535,1397],[-633,-618],[-807,562],[-613,1242],[48,993],[-422,1727],[278,823],[2717,1702],[2507,215],[806,751],[1138,-109],[2921,-938],[1810,-246],[841,-589]],[[578065,856283],[-172,1028],[503,1396],[3089,1607],[2291,-700],[257,647],[-849,828],[-1160,424],[-1400,-5],[-762,821],[44,2364],[-1480,-1031],[-286,1116]],[[578140,864778],[-1475,-1419],[-1384,241],[-3021,-872],[-936,-44],[-2882,-1521],[-3484,-1099],[-1113,192],[155,2100],[-1248,-602],[-230,1124],[-2590,858],[-756,2628],[676,1443],[240,2187],[-522,1770],[-173,2127],[-719,2414],[821,1156],[746,1949],[941,-74],[951,592],[370,1601],[2466,2097],[3479,5382],[2165,679],[-194,2852],[-841,1119],[-2488,1164]],[[567094,894822],[-2663,-76],[-2295,346],[-307,-1293],[-2213,-1604],[284,-1143],[-1123,-2109],[434,-1392],[788,-904],[-859,-851],[-2000,-2922],[-2209,-1506],[-932,-110],[-879,-1449],[-1121,-73],[-3449,-5881],[-163,-3226],[-918,-931],[319,-1703],[68,-3479],[1420,-951],[759,92],[1535,-2540],[723,-98],[333,-1207],[-600,-1388],[-1111,-1169],[-1006,-147],[1328,-1601],[-1121,-717],[-1036,333],[-509,-1646],[-2085,-1280],[147,-2892],[-693,-1257],[61,-3318],[-658,-4052],[-711,-1969],[-780,-1015],[-2152,-4],[-1473,-703],[-596,-849],[-167,-1109],[432,-874],[-487,-1028],[-1316,282],[-1141,-515],[-1153,342],[-93,2731],[-596,2316],[661,1040],[-189,1333],[-1519,2459],[-367,1626],[-949,2407],[203,3428],[-1185,116],[-508,538],[-227,2894],[102,902]],[[531132,855026],[-1049,459],[-792,3069],[-848,-675],[439,-765],[-99,-1502],[-621,-944],[-1416,535],[-983,-2217],[-2503,-2978],[-2027,-1293],[-2270,366],[-93,946],[-1020,156],[-2127,1743],[-387,983],[1823,3093],[-895,1387],[-1466,-899],[-265,1016],[2028,1614],[-60,1039],[-1554,1267],[-274,1646],[1245,225],[79,1276],[-1011,161],[-829,1455],[589,534],[-858,1306],[565,411],[-412,2387],[1278,988],[-774,1039],[2029,779],[2086,1313],[282,1153],[1694,-353],[39,964],[-1265,-184],[-66,1251],[2785,216],[2157,1339],[-91,803],[2004,1047],[718,771],[685,-1052],[2538,-118],[138,1414],[1611,658],[-1565,665],[77,-972],[-2312,-1439],[-814,747],[-680,223],[182,1005],[871,412],[288,933],[1624,2288],[1197,696],[499,-1323],[1291,1455],[-68,1671],[1429,2045],[719,1799],[553,2375],[1647,1801],[-317,1093],[451,1683],[1023,714],[281,908],[1273,198],[1158,2678],[1576,838],[-797,884],[1816,1932],[1209,684],[1662,2683],[2348,1462],[513,1217],[813,301],[391,479],[196,1275],[2190,954],[562,829],[2021,171],[1481,673],[-524,-2572],[1186,496],[-171,1398],[1668,944],[2160,353],[-2183,1315],[2722,443],[3440,-1891],[-310,1702],[2108,1496],[1160,1360],[241,1075],[3697,-438],[-2312,-2034],[-284,-1630],[812,-791],[1116,2163],[2398,2742],[656,-623],[-661,-2587],[1181,573],[464,1201],[985,779],[-629,1259],[1390,272],[2314,-581],[-1498,-1894],[1126,-650],[934,1797],[1587,-749],[1804,-107],[2739,-1580],[299,-884],[-3704,-1259],[-513,-2205],[1455,134],[796,695],[1292,-323]],[[585618,918291],[1902,-713],[2519,1142],[1859,-702],[-643,-1069],[2786,-1549],[1424,-66],[2205,-681],[394,387],[2788,-978],[3724,-2264],[2245,-2118],[1430,-570],[1865,-1283],[815,157],[1785,-1682],[1100,-382],[339,-2338],[718,-1219],[-427,-1637],[-2300,-2597],[-1074,-755],[-3843,-1169],[-2034,172],[-2760,1145],[-3886,672],[-1141,804],[-3456,1341],[-1071,-76],[-1627,1360],[-430,-1290],[502,-1327],[2016,-382],[44,-968],[2654,-1487],[567,-2679],[-1161,-1253],[1197,-2357],[39,-2810],[1452,-1230],[840,453],[1640,-1584],[246,-761],[3157,-1145],[1732,1212],[-92,1976],[-554,617],[-1407,-512],[-2097,2235],[-383,1198],[1127,1317],[2048,-565],[1335,-1198],[329,-798],[2038,137],[1794,-1140],[2681,-111],[387,847],[-957,1904],[-1658,2064],[203,1492],[3488,2500],[1240,572],[1993,2367],[1117,-653],[1537,58],[1204,-724],[1240,-1459],[1216,3686],[-25,1565],[-874,1179],[-1098,377],[1058,3251],[195,3156],[-2297,1803],[6529,-689],[1923,-1880],[663,-1978],[-3529,-539],[-1203,-1438],[-162,-914],[985,-582],[2154,-2371],[1397,-17],[2860,518],[467,613],[399,2834],[432,810],[2298,299],[-172,978],[1994,569],[3616,2421],[3429,1108],[703,-1369],[1254,986],[-858,676],[2509,1739],[1593,-526],[-548,-3251],[1077,-791],[2247,972],[1211,1595],[3260,399],[2140,-486],[1425,1499],[2990,1161],[1154,-115],[-570,-3275],[1146,-430],[1082,468],[435,1551],[3136,998],[-2645,3833],[268,1001],[1148,-45],[380,1214],[1920,-545],[3959,-427],[3612,-1191],[1950,-1420],[4824,-2285],[1910,-1378],[2189,-2090],[888,-144],[1211,2529],[-335,1307],[-1044,375],[-976,1424],[-301,1684],[-3385,1236],[221,1519],[1526,408],[-474,969],[-104,1911],[470,1103],[-1629,1362],[1031,2183],[2143,1202],[1542,1894],[1212,4808],[1093,1748],[2030,-407],[4131,107],[3145,-1264],[284,-2107],[-1421,-3788],[-1141,-1515],[1811,-1567],[754,-1620],[-208,-2876],[-481,-1902],[220,-4395],[-378,-1384],[896,-1739],[1847,-1302],[-146,-1067],[-1054,-1879],[480,-1043],[-4179,-5970],[-3929,-827],[-3847,651],[628,-1486],[851,-723],[2616,-960],[2871,59],[1118,-601],[1194,90],[683,2020],[705,147],[3060,2145],[286,1383],[1206,1884],[937,804],[195,2128],[-1220,2306],[698,2050],[4103,1325],[1300,-9],[265,-880],[1703,-2154],[-166,-3227],[-268,-648],[1107,-1003],[335,-1730],[1674,1202],[1373,-386],[335,778],[-3855,723],[60,2158],[1423,1499],[-1068,3180],[-4521,2057],[-5250,-902],[-832,738],[-338,3601],[247,1524],[1419,2136],[125,831],[-1947,3438],[-1046,954],[688,2519],[3000,1373],[1202,1035],[197,1565],[-831,2117],[1910,-299],[363,-3027],[-549,-1226],[-416,-3514],[431,-833],[1393,-540],[5121,-488],[509,-931],[1331,-256],[-321,1798],[-2532,496],[-2643,1419],[-991,1950],[2281,1084],[1916,-1372],[1471,222],[-180,1348],[-1499,593],[2803,1112],[2803,-251],[3113,-1529],[1913,-1947],[931,-370],[3576,430],[1012,-586],[-910,-1317],[-2068,-1092],[-1,-3462],[-668,-1591],[799,-1469],[1036,-14],[2432,-2499],[1172,211],[-1777,1822],[-723,1506],[1329,57],[686,725],[-1633,4416],[1205,2601],[-908,1160],[-1793,442],[-1076,1976],[-2608,577],[-1550,918],[295,2559],[-1201,1996],[1050,1645],[3057,463],[5080,171],[4816,445],[757,518],[3277,269],[1052,1071],[-3948,1860],[1951,1172],[-2180,477],[884,1137],[2183,-863],[1462,2087],[2225,579],[2725,2064],[11654,2035],[-993,1296],[2606,-25],[4075,664],[1878,-365],[50,-880],[4007,233],[1453,924],[3044,1131],[165,748],[2877,-104],[2227,605],[169,2357],[2640,2424],[2937,1531],[2152,483],[5219,-792],[-939,-2867],[4991,-471],[10,-1044],[-2032,-1446],[2818,-443],[2368,1331],[8929,-173],[3215,-2260],[1810,-887],[1119,-2362],[-717,-1529],[167,-1138],[-2509,-2181],[-3068,-1541],[-3507,-1139],[-1475,-1738],[-2198,-881],[-2302,-2150],[-3274,-984],[-1469,-2111],[3664,24],[1517,783],[3632,811],[2451,1212],[-2372,193],[-417,935],[1025,1008],[3433,-215],[1658,-1339],[2329,-178],[1559,726],[854,-1901],[2067,557],[1782,4],[1195,594],[3649,-232],[1599,-383],[4201,-252],[-855,-849],[319,-1374],[2968,-900],[3420,-440],[6626,-313],[1197,1706],[-734,1168],[1122,1183],[1934,970],[1769,-474],[3707,-1884],[1548,948],[2411,-450],[373,-535],[3435,-1484],[438,-953],[-336,-1934],[817,-2761],[-2469,-477],[-274,-1016],[2065,-2192],[447,-1344],[2176,-1929],[2177,-1518],[1743,1286],[1567,4273],[885,1382],[1740,-1758],[1559,-954],[2529,-173],[2327,1276],[1459,114],[3464,-1298],[1143,-945],[1416,1918],[1779,350],[1691,-1161],[1701,486],[-1209,2461],[676,918],[-1650,1589],[944,771],[2425,-115],[2068,701],[-1310,1439],[1220,146],[1919,-743],[4611,-225],[5869,-902],[3367,-1061],[4411,-237],[2459,-700],[1538,-965],[439,-1227],[-1212,-505],[3198,-2277],[1193,59],[1505,-798],[882,-1452],[1261,-959],[3771,330],[2964,752],[3058,439],[3595,-74],[3796,-865],[2434,-1321],[847,-929],[635,-1684],[-1177,-2283],[1189,-975],[2364,-497],[149,-2274],[4090,2437],[4750,229],[1688,-781],[2572,55],[3394,-543],[1942,1563],[1068,-328],[501,-1714],[751,-1124],[2299,-725],[524,-1682],[2352,63],[1978,1658],[-1087,2830],[-645,150],[199,2967],[1673,-93],[3872,-857],[3873,-606],[6110,278],[2163,-1417],[5363,-1483],[1663,-964]],[[998387,914942],[1612,-1436]],[[999999,890146],[-1464,-1371]],[[998535,888775],[-1899,-982],[-2971,347],[-1179,796],[-2292,-64],[763,-1310],[1740,925],[358,-1979],[870,-948],[2246,-1212],[752,-3709],[1897,-3511],[40,-1242],[-1412,-2033],[-2782,1478],[-1437,190],[-1605,-233],[-4358,-2451],[-2170,-1561],[-2473,-805],[-1865,-1858],[-1597,-1172],[-1127,-1803],[-3865,-2801],[-751,-2586],[-449,-231],[-1043,1380],[-426,1370],[-1622,937],[-2178,264],[-3509,-1405],[-2329,-3216],[-513,-6],[698,3369],[-730,176],[-2137,-1677],[-190,-796],[-1168,-734],[-1009,1389],[-2422,-1275],[-806,-1781],[-674,-3474],[-1474,-1641],[-1086,-2317],[-346,-1896],[801,-1284],[1258,770],[1566,-1176],[-515,-1332],[-819,-720],[-71,-3047],[502,-974],[787,4],[287,-3020],[-852,-1061],[-1223,1312],[-1472,-883],[-846,-2581],[-142,-1408],[184,-1409],[836,-1746],[51,-716],[-1330,-1397],[-1249,391],[-919,-114],[-843,-622],[-1427,-1721],[-557,-2282],[402,-3125],[-1035,-11],[-1619,-1001],[-1163,-237],[-227,-812],[-178,-3778],[-1581,-3716],[-1841,-2447],[-1420,-1658],[-546,2301],[-27,3320],[-161,1391],[-960,5106],[-485,4878],[-721,4629],[-377,4665],[305,3045],[923,4634],[357,755],[1708,1822],[610,1349],[-164,2034],[478,621],[1212,74],[1785,1149],[2616,2512],[1808,2582],[276,1357],[1717,2055],[1271,1106],[2260,2761],[1558,2535],[2393,1457],[1638,414],[107,1926],[580,2879],[523,3608],[1107,1003],[1757,270],[-2087,1181],[-3231,-1001],[-400,-2657],[-856,-2106],[-1465,-794],[-3572,-3820],[-468,-880],[-1900,-814],[392,1509],[-1083,672],[-142,1433],[1137,1809],[364,1376],[-223,851],[-1464,-1386],[-1090,912],[-1482,78],[-1938,-603],[-1709,121],[-1527,-1049],[-1044,-1428],[-389,-1065],[-1588,-1884],[-38,-694],[-2945,-2611],[-1222,-1861],[-513,-1537],[666,-1203],[1240,-295],[642,-619],[-52,-1185],[-3424,-452],[-1444,729],[-1364,-1822],[-943,281],[-1509,-505],[-1803,-43],[-649,1325],[981,395],[1585,-104],[335,869],[-1088,388],[-855,1243],[-2264,-269],[-500,441],[-2459,951],[-1380,-792],[-336,-2012],[-1014,-219],[-548,773],[-1538,-12],[-860,-691],[-3025,1208],[-424,-1619],[-874,-235],[-399,1521],[-2995,-193],[-4442,-86],[-1937,-942],[-1295,-1310],[-1264,-2228],[-2143,-1784],[-697,-2064],[-2790,-3544],[-1235,-857],[-2510,-3545],[-88,-967],[-1160,-1654],[-3927,-4188],[-442,-928],[-1657,-1245],[-899,-1084],[132,-1077],[1213,-863],[3214,-106],[-524,-3785],[300,-925],[937,273],[975,1885],[680,-959],[-1117,-2562],[1483,205],[1160,883],[527,-1136],[556,1107],[340,3400],[1209,-643],[1115,400],[1636,-1289],[408,-1499],[3017,-3596],[-708,-975],[215,-2047],[-180,-848],[660,-2105],[-477,-1560],[-1435,-3219],[-686,-2845],[-158,-2173],[147,-1398],[-93,-4678],[-454,-3477],[-704,-3024],[-2078,-3222],[-480,-1481],[-1410,-2923],[-739,-2713],[-700,-2090],[-1054,-2402],[-1303,-2271],[-1313,-1968],[-1048,-2103],[-1362,-2200],[-715,-1562],[-400,-1484],[-707,-1079],[-350,-1277],[-3244,-3486],[-1647,-835],[-988,-291],[-1466,1147],[-397,1517],[-1623,702],[-940,-2127],[-564,-1880],[-899,142],[-529,-1994],[-177,723]],[[862886,756511],[-140,-656],[-357,108],[-1003,-1407],[-1117,-2568],[-124,-953],[247,-1417],[9,-1730],[-3937,-5421],[-1271,-616],[-1019,-1266],[-375,-2638],[497,-776],[2001,-2360],[260,-770]],[[856557,734041],[464,-1718],[2204,-6132],[391,-3601],[-251,-3809],[437,-766],[-313,-2528],[-477,-1451],[-817,-865],[-940,357],[-541,-500],[113,-924],[-709,-19],[-542,693],[-1187,-565],[-836,-1476],[-1426,-731],[-776,-963],[-388,1856],[162,929],[-215,1651],[395,2992],[738,2028],[-287,663],[-468,2869],[-878,859],[753,995],[-2,699],[1130,-197],[-750,3719],[380,1374]],[[851921,729480],[-1749,-77],[-930,608],[-420,-971],[-1063,590],[-172,1318],[-1258,261],[1440,3018],[-145,1360],[637,2115],[144,2054],[-2165,527],[-813,1770]],[[845427,742053],[-935,-980],[-960,259],[-1923,-1125],[-1915,-1782],[-1273,-2004],[-882,-1082],[-1032,-680],[-127,1199],[1647,1186],[452,1615],[-1060,260],[199,1384],[1225,2576],[837,2226],[-333,1001],[-991,1727],[-879,-348],[-793,199],[-549,-523],[-1368,-3010],[-1178,-1440],[-1581,-1223],[-498,-902],[-426,-2019],[-563,-1123],[-1425,-491],[-1226,703],[-834,-781],[-577,-2420],[487,-1861],[1092,-1388],[1124,-158],[835,581],[608,-1734],[86,-1355],[-268,-702],[73,-1646],[691,-676],[1336,-195],[1754,3229],[1147,858],[487,-228],[1789,-2176],[877,208],[1800,-394],[101,-843],[-164,-1951],[-548,-509],[-323,970],[-797,-204],[-466,-591],[-1327,-927],[-1096,-275],[-526,-3134],[-1064,-442],[-262,-686],[-1257,-1896],[-1506,-3339],[20,-1692],[2985,-2817],[466,-3177],[1468,-7150],[2045,-3054],[422,-1398],[-208,-551],[-1007,857],[-1563,588],[-1008,872],[-181,-638],[964,-605],[2530,-3460],[537,-2062],[-1372,-1036],[-2107,-2195],[-694,-72],[-227,-946],[1004,-778],[1046,882],[1205,-299],[1272,-1798],[-697,-1954],[686,-94],[-1281,-2598],[500,-1105],[-390,-1989],[207,-1728],[-595,-602],[-583,1212],[-602,-2353],[-619,1],[-359,-3565],[-386,-1261],[-583,-638],[-545,-1590],[-1329,-85],[420,-2804],[-412,-1390],[386,-433],[-547,-1750],[-528,-539],[-594,-1168],[594,-802],[-80,-554],[-875,-911],[-167,-799],[-571,-74],[-20,-1214],[-423,-786],[-709,241],[-401,570],[-810,-1473],[738,-914],[-949,-1599],[-1190,-1340],[-1236,-847],[-667,-1850],[-24,-606],[-828,-1726],[-2250,-1183],[-855,783],[-732,-973],[-1185,209],[-417,-803],[-537,-320],[-533,-220],[-572,502],[-865,2689],[-279,-1857],[343,-900],[169,-1342],[-200,-784],[-609,842],[-152,-1533],[-504,513],[-188,-1508],[-307,-437],[-1427,618],[-527,-1253],[-742,255],[-858,-1566],[-2346,-367],[-444,-914],[-561,-454],[-559,-994],[-63,-1224],[967,-2250],[-557,-1272],[-1105,96],[-470,2945],[-284,792],[306,2352],[-23,1104],[-428,585],[-356,-751],[-748,-320],[-417,1283],[-932,-51],[-250,676],[-1705,-1136]],[[800068,633177],[-1811,-1679],[-469,-1784],[-1230,98],[-533,-4116],[-894,-1345],[-832,-941],[-194,-748],[-566,-3975],[-67,-1234],[754,-2585],[1006,-1611],[563,-1512],[-71,-924],[558,-1908],[3102,-6295],[720,-393],[573,-1248],[889,-3095],[945,-2207],[1060,-7786],[-72,-2707],[421,-3307],[-135,-1073],[-453,-719],[147,-3492],[-94,-1517],[-890,-2296],[-3819,-4814],[-1170,-973],[-475,699],[-395,-171],[-46,-1176],[-555,-3005],[-1065,-1915],[-2100,-2272],[-467,-1533],[-431,-771],[-1071,-201],[177,1486],[142,4250],[135,1529],[541,663],[-782,1514],[-418,-263],[-571,1612]],[[790125,567437],[-678,787],[-965,252],[-277,-412],[-342,1232],[227,651],[-114,1234],[-630,254],[-68,-1086],[-814,-267],[-60,2516],[-541,2056]],[[785863,574654],[-53,622],[-687,2506],[-298,-409],[-566,526],[-1309,2638],[-525,245],[-969,-266],[-990,28],[-299,724],[307,4107],[-1096,335],[-850,-161],[-872,-1092],[284,-1838],[-389,-5566],[-750,-3041],[-593,-4115],[-572,-2211],[-253,-3873],[239,-3292],[474,-339],[846,733],[404,-263],[180,-1178],[140,-2780],[533,-1307],[478,-2290],[305,-2861],[274,-1415],[658,-1739],[595,-697],[958,332],[743,-827],[592,-1889],[783,-1276]],[[783585,542725],[891,-1160],[355,-1213],[1564,-2592],[721,-2803],[236,-1333],[105,-2124],[-377,-3169],[215,-1362],[48,-3947],[778,-1627],[543,-1685],[913,-4089],[91,-1753],[-476,138],[-412,1221],[-651,-830],[-138,-194],[-709,-194],[-1178,2116],[-4138,5532],[-458,1834],[-154,1668],[-646,1900],[-589,1098],[-560,2298],[-125,3664],[-285,690],[-196,2221],[-234,4403],[-605,2337]],[[778114,543770],[-891,2274],[-646,3120],[-670,952],[-729,2455],[-881,1745],[-333,1032],[-958,-841],[-184,2019],[127,2149],[280,745],[14,1245],[1072,6555]],[[774315,567220],[-362,-1557],[-297,860],[-171,2075],[707,1779],[36,2469],[377,2145],[-270,1072],[-158,2806],[26,2586],[-1300,5969],[-314,-1522],[-451,4970],[-15,1945],[-463,1230],[-456,7521],[359,1915],[-441,282],[-602,-340],[-426,1001],[-299,2238],[-697,661],[-77,-2049],[-697,-1768],[-546,-279],[-466,749],[-649,-1190],[-387,203],[-125,-1624],[-1013,-2550],[-500,378],[253,1240],[-143,1010],[-468,-57],[-451,-1925],[-205,1462],[-557,719],[-71,1323],[-1023,-2702],[-317,416],[140,2003],[299,1777],[664,5225],[-394,2495],[-221,2212],[-719,3017],[-129,2828],[-805,1348],[8,1654],[-733,724],[-283,987],[-657,232],[-257,1997],[-490,-2220],[-665,1247],[-777,2016],[-372,2016]],[[756265,630239],[-582,1051],[-171,2154],[-255,350],[82,3138],[165,1368],[-811,594],[-722,1526],[-891,-1794],[-1094,2737],[-207,2329],[-479,162],[-176,-2097],[88,-1401],[515,-2217],[-1117,-2391],[-456,1160],[-885,595],[-492,-160],[-345,1046],[-670,-1263],[-346,-115]],[[747416,637011],[-283,105],[-2080,-2581],[-398,1422],[-789,-1920],[-1709,-935],[-505,-692],[-474,-1656],[483,-2530],[-1612,-4240],[-615,-610],[-1432,-861],[-723,-718],[-1670,-2694],[-841,-2405],[-1052,-2491],[-2005,-2982],[-559,-1421],[-1730,-1857],[-737,-1256],[-213,-845],[282,-1242],[-116,-738],[-1483,-1503],[-723,131],[-796,-785],[-581,-2605],[-640,-67],[-409,616],[-1008,-1152],[-545,-2505],[-98,-1062],[164,-1913],[148,-4402],[429,-3202],[-13,-1795],[-161,-2207],[-262,-1849],[-771,-2499],[-331,-2549],[264,-3479],[61,-4104],[-970,-146],[-831,-1089],[-692,-2618],[171,-2220],[-1460,-1052],[-996,-2157],[-283,-2281],[-1432,-1807],[-597,267],[-859,1361],[-1328,3419],[-515,2623],[-325,3467],[-1396,8211],[-553,2031],[-872,1875],[-728,3107],[-428,2332],[-665,6000],[-612,3381],[-1113,3778],[-163,1132],[-1192,4566],[-309,2001],[-340,4963],[-906,6916],[-304,4937],[-338,3219],[366,2944],[274,1331],[-505,3321],[-259,-2],[19,2399],[303,541],[-510,975],[-134,980],[211,1375],[-666,351],[-321,-1919],[213,-1859],[-572,-2333],[-413,-608],[-2651,-2391],[-516,-91],[-1459,1511],[-593,1064],[-2439,5023],[-595,1380],[4,1092],[882,-736],[2131,1596],[1103,1754],[132,1548],[-787,-88],[-538,-1134],[-875,-949],[-1491,636],[-1406,1737],[-560,1526],[-87,899],[586,1411],[-402,1061]],[[690292,647494],[-1190,239],[-644,483],[-1035,136],[65,1621],[-180,2190],[-466,266],[-1500,186],[39,1783],[-702,2252],[-340,-365],[-4010,-784],[-776,-477],[-944,225],[-927,937],[-1352,-1136],[-425,-116],[-2366,158],[-1958,-980],[-421,512]],[[671160,654624],[-1217,-140],[-2161,1203],[-2031,219],[-2074,656],[-1790,414],[-2611,1231],[-569,2726],[-164,2328],[-456,2090],[-564,918],[-1242,136],[-1710,-1112],[-751,-1344],[-1656,-1502],[-1138,805],[-1287,497],[-1175,870],[-1234,1436],[-1189,1712],[-473,1412],[-1053,1104],[-1001,-19],[-1024,989],[-1332,6681],[-599,2062],[-1334,3154],[-780,1039],[-999,-827],[-732,914],[-161,1717],[-740,-428],[-104,-2396],[-578,-470],[-554,288]],[[634677,682987],[-1458,158]],[[633219,683145],[193,-1090],[-265,-2780],[493,-797],[896,-4018]],[[634536,674460],[1033,-4612],[1057,-1842],[473,-1628],[744,-660],[1058,-1799],[71,-1344],[454,-686],[101,-1110],[-268,-992],[36,-1849],[1088,-2776],[102,-1304],[658,-1796]],[[641143,652062],[163,300],[-268,2012],[-43,2154],[509,650],[161,2098],[704,1145],[957,-1443],[-322,-2294],[406,-1661],[-17,-1128],[-510,-2285],[-381,-961]],[[642502,650649],[230,-1243],[574,-269]],[[643306,649137],[369,-132],[314,-1427],[697,-218],[1631,1082],[1875,-165],[683,-354],[798,89],[1518,1338],[874,2957],[3414,6120],[318,1355]],[[655797,659782],[350,1159],[622,-123],[-201,-2353],[-261,-1193]],[[656307,657272],[249,-616],[40,-3199]],[[656596,653457],[625,-2778],[940,-2322],[592,-989],[1937,-1364],[1995,-548],[455,-668],[1806,-4929],[406,-722],[747,-184],[28,-1791],[-1088,-3876],[-1023,-1811],[-588,-1318],[-882,-3693],[-850,-130],[-371,974],[-680,-2581],[-348,-3179],[182,-2438],[-583,-1353],[-1473,-477],[-649,-655],[-475,-1244],[-220,-2278],[-536,-1286],[-1733,-198],[-837,-475],[-348,-1097],[-120,-2318],[-497,-1165],[-808,-596],[-768,521],[-1330,-277],[-2579,-1984]],[[647523,604228],[-1645,-1183],[-396,-533],[-473,-1346],[-328,-3338],[-1369,-1412],[-1023,-831],[-3614,-2063],[-1507,-1134],[-831,-843],[-683,-2041],[-414,-713],[-1069,-266],[-927,295],[-2117,-2654],[-1364,-951],[-1860,-104],[-1044,-412],[-1838,-3037],[-2097,-1230],[-933,6],[-977,603],[-859,2816],[-221,4328],[-386,2178],[-261,3568],[-454,1645],[-25,1478],[160,3927],[-157,1788]],[[618811,602769],[-139,1639],[-677,2166],[-445,1997],[-1315,2549],[-1000,2801],[-483,1720],[-555,3063],[-859,3466],[-792,1735],[-1123,1687],[-452,-25],[-916,1650],[-354,1292],[-493,980],[-561,2180],[115,1363],[-336,3138],[134,2927],[-464,2447],[-362,1096],[-997,3905],[-464,804],[-1381,1704],[-930,1510],[-446,2241],[-3,1317],[-524,2028],[-2114,6246],[-1800,5107],[-735,2515],[-597,1606],[-452,348],[-1039,-118],[-70,438],[449,2820],[478,4214]],[[597109,679325],[52,1096]],[[597161,680421],[-203,-294]],[[596958,680127],[-445,-1086],[-702,-4913],[-159,-2904],[-618,-1303],[-1106,1312],[-1218,2583],[-499,2279],[-731,2341],[-992,4516],[-273,-206],[-379,-2054],[868,-3039],[229,-1530],[1285,-3558],[1035,-2521],[70,-1586],[585,-1459],[401,-2509],[-42,-1060],[2068,-7075],[1467,-6058],[790,-1865],[122,-1068],[-112,-2498],[351,-2246]],[[598953,642620],[157,-1168],[455,-1104],[1397,-1789],[1513,-2338],[-29,-302]],[[602446,635919],[91,-2328],[547,-2350],[156,-2326],[90,-4668],[197,-3070],[390,-3725],[261,-955],[473,14],[807,-1138],[751,-1829],[914,-1325]],[[607123,612219],[1020,-3739],[582,-4484],[368,-3791],[1201,-4473],[280,1350],[551,-363],[416,-2249],[365,-573],[350,451],[784,-522],[265,-1096],[1105,-558],[923,-2533],[695,-1584],[1289,-2204],[717,-2152],[729,-1781],[642,-236],[391,-741]],[[619796,580941],[635,-1940],[172,-1547],[-129,-816],[-1664,-1459],[-711,-971],[261,-628],[507,672],[1005,59],[295,-760]],[[620167,573551],[495,-572],[705,-2500],[659,-1386],[996,-1625],[740,-297],[1252,381],[1944,2151],[1285,-204],[783,-557],[603,380],[1239,1591],[1235,918],[453,-443],[1076,173],[501,530],[1524,291],[329,-144],[1197,528],[1923,1059],[981,966],[353,1310],[575,463],[1382,-762],[-491,-3868],[209,-4547],[-753,-1748],[-207,-3740],[-1885,-7405],[-890,-2590],[-698,-3055],[-851,-2765],[-406,-1926],[-82,-1210],[-328,-1618],[-831,-2915],[-1424,-4290],[-515,-1856],[-3144,-7310],[-2242,-4648],[-421,-667],[-3356,-4135],[-3159,-5639],[-2244,-5065],[-2061,-4935],[-1162,-3891]],[[615456,495979],[-657,-1598],[-804,-647],[-1541,-2878],[-469,-454],[-387,-1051],[-187,-3049],[-1236,-4197],[-26,-744],[-514,-2263],[-730,-939]],[[608905,478159],[-285,-2296],[-893,-5837],[252,-1986],[1168,-2603],[427,-209],[-25,-1945],[-243,-765],[-318,-3062],[439,-441],[-368,-2296],[344,-3604],[330,-1490],[249,233],[428,-3387],[48,-1607],[1338,-1810],[454,-294],[-58,-1063]],[[612192,443697],[335,-466],[156,-2617],[-439,-1588],[161,-2862],[-19,-2814],[314,-2165],[-224,-1487],[316,-6095],[-128,-1429],[423,-1712],[334,-341],[9,-1638],[-265,-594],[-461,-3475],[-1214,-3162],[-651,-1422],[-480,-1634],[-1848,-2466],[-1946,-1517],[-805,-44],[-649,-1235],[-1091,-1133],[-1482,-1888],[-28,-523],[-773,-2415],[-973,-2148],[9,-609],[-790,-133],[-761,-1067],[-1019,-2478],[-1281,-2033],[-544,535],[-126,-3798],[48,-1038],[736,-655],[313,-1457],[222,-2668],[527,-3358],[407,-844],[206,-2142],[37,-2761],[-448,-5707],[310,-1138],[-971,-2937],[-964,-1010],[-3800,-2867],[-1142,-1215],[-535,-849],[-778,-2308],[1038,-2503],[-89,-2698]],[[591369,347089],[-1042,-8081],[-294,-1587],[-1063,-2207],[-520,-450],[-1400,-2620],[-2218,-7373],[-1466,-3908],[-1884,-3036],[-2188,-4528],[-1810,-2782],[-2224,-2858],[-1485,-1296],[-1978,144],[-655,-1233],[-2034,-1078],[-1179,-211],[-846,523],[-1413,466],[-750,-597],[-2236,514],[-1260,-856],[-524,-985],[-618,-516],[-2280,75],[-1262,-861],[-1039,-1601],[-1052,112],[-1572,2380],[-688,1325],[-1163,-227],[-370,908],[489,881],[-112,1036],[-1118,3836],[-409,214],[81,1814],[636,-257],[466,1278],[16,2019],[-280,2673],[-1184,3262],[-1393,4919],[-515,2739],[-476,3153],[-1085,3925],[-271,455]],[[545701,336592],[-2156,4069],[-767,2834],[-728,3674],[32,993],[-394,1902],[-469,4020],[7,2994],[-459,3081],[-483,2504],[12,3354],[-196,4163],[289,384],[-86,1820],[-321,1734],[-799,2173],[-1874,6047],[-501,2961],[-1587,6513],[-975,3216],[-903,1909],[-425,1718],[-312,3200],[44,1994]],[[532650,403849],[185,3282],[-58,3853],[708,4747],[640,3012],[197,2833],[515,4471],[518,1559],[601,2377],[712,1317],[789,758],[383,1174],[477,2764],[195,4671],[-244,1868],[-647,2009],[-900,3808],[-130,1906],[-430,1825],[901,1893],[189,809],[-222,2146],[-704,2855],[-552,2907],[-87,1025],[-1402,5184],[-75,753],[1336,413],[846,936]],[[536391,471004],[-224,186],[-1705,-761],[-586,1322]],[[533876,471751],[-143,724],[218,1030],[-239,1518],[-408,1247]],[[533304,476270],[-377,1054],[-89,1097],[-390,1093],[-1468,2897]],[[530980,482411],[-802,2200],[-1605,3535],[-1087,1770],[-678,1506],[-1102,3745],[-1162,5183],[-117,1124],[849,239],[541,1737],[270,3691],[422,395],[-646,1340],[481,844],[302,2073],[202,295]],[[526848,512088],[-696,240],[-60,838],[558,1950],[539,2629],[95,1954]],[[527284,519699],[2,1259],[289,2563],[-543,2860],[-207,2174],[-463,747],[-776,63],[-635,661],[-408,2989],[-391,-694],[-496,82],[29,1397]],[[523685,533800],[-1140,-1122],[-2908,-648],[-1009,-571],[-1708,-394],[-619,646],[-787,1599],[-625,2995],[-15,1366],[-1340,3691],[-1081,1843],[-1749,646],[-3180,-354]],[[507524,543497],[-1564,-264],[-1414,-559]],[[504546,542674],[-1218,-735]],[[503328,541939],[-565,-1240],[-1129,-733],[-1500,-593],[-2270,-2524],[-1858,-1109],[-1722,-1887],[-796,1100],[-2116,954]],[[491372,535907],[-2596,891],[-5780,-1439],[47,-188],[-3408,-3198],[-544,-374]],[[479091,531599],[-553,77],[-1790,1584],[-2386,2814],[-587,995],[-1733,3642],[-3613,5212],[-372,814]],[[468057,546737],[-161,425],[-2358,2570],[-190,1098],[-687,597],[-980,3047],[-581,1108],[467,1224],[-516,2434]],[[463051,559240],[-26,1270],[-850,1842],[-189,2167],[-961,1086],[-432,-188],[-1298,2270],[313,2061],[-564,-568],[-505,1965]],[[458539,571145],[-664,151],[-676,773],[-254,697],[267,1514],[-490,1604],[-1718,336],[-391,660],[39,814],[-1074,1027]],[[453578,578721],[-138,1204],[41,3104]],[[453481,583029],[-171,1586],[687,1581]],[[453997,586196],[-59,1440],[-1890,5106],[1791,5367],[241,1172],[62,1438]],[[454142,600719],[-20,1108],[208,2226],[947,4943],[193,2819],[-70,3065],[-337,2572],[-812,3145],[514,1878],[91,3225],[-667,2602],[-506,-186],[-668,2757],[-377,-2281]],[[452638,628592],[-115,500],[359,5437],[414,2216],[360,815],[528,203],[1535,7082],[301,2037],[1600,3174],[623,813],[412,1109],[148,1198],[27,2284],[1179,5584],[1219,1300],[1067,1468],[1125,5523]],[[463420,669335],[507,1236],[2499,1215],[1277,1047],[2229,3540],[875,1016],[826,1742],[1179,3238],[502,2898],[-609,1562],[-42,3011],[85,1770],[377,1496],[808,1824],[877,4230],[1580,3218],[3082,2666],[990,998],[839,1650],[1000,3406],[1102,5460],[351,843],[1295,667],[448,-2169],[1493,-2011],[1040,-218],[1068,435],[908,-66],[1792,528],[141,-1018],[695,-334],[580,253],[642,-290]],[[493856,713178],[1189,206],[1404,1438],[507,1573],[836,801],[1348,504],[592,-344],[831,1841],[2130,2074],[1017,519],[2976,376],[3649,1564],[711,163],[2279,-93],[775,-823],[1198,-357],[2070,1706],[885,231],[855,-624],[702,21],[951,807],[792,-938],[790,-77],[1662,396]],[[524005,724142],[1638,1638],[1391,748],[1247,-788],[286,-2509],[700,-172],[1033,1618],[446,78],[107,-1221],[-684,-1632],[-856,-1057],[-189,-1958],[440,-1357],[800,-934],[530,-2429],[-606,-2283],[-985,-2002],[-1194,-1279],[-284,-869],[273,-1604],[630,-1109],[1154,-1365],[831,841],[388,-2423],[1022,-243]],[[532123,701831],[2191,-2024],[1070,-176],[1844,529],[1723,-913],[1003,-894],[1949,-983],[735,-1934],[89,-1140],[407,-1697],[781,-1427],[967,-677],[1812,-299],[1488,-691],[2206,-1687],[1520,-2309],[977,-798],[614,61],[1016,837],[723,1303],[759,2415],[-26,1120],[-364,1062],[-247,2331],[47,809],[577,1641],[1405,2123],[1113,1030],[2012,934],[1062,-61],[2660,-1826],[-52,-1686],[375,-552],[2051,-930],[296,-303],[1731,57],[907,-674],[309,-1528]],[[569853,692874],[61,-663],[936,-130],[1619,464],[3304,-1342],[1041,-1112],[688,-393],[1749,-365],[1496,-1373],[1183,736],[1610,2107],[981,995],[328,-456],[1138,340],[449,443],[2030,-153],[-161,-1250],[681,-1204],[1272,201],[652,-512],[665,330],[2151,240],[1326,1166]],[[595052,690943],[758,1609]],[[595810,692552],[772,2953],[864,4839],[64,1067]],[[597510,701411],[1003,3989],[490,2588],[716,1537],[213,987]],[[599932,710512],[-512,5158],[104,2027],[247,467]],[[599771,718164],[168,533],[-545,1789],[1151,1686],[6,1105],[-534,809],[-795,-992],[-472,-1136],[-744,43],[-1346,1326],[-392,22],[-1134,-1464],[-826,-1740],[-3254,-1402],[-728,416],[-618,829],[-795,1809],[-1739,1423],[-1922,593],[-784,-3703],[-581,345],[-1507,-966],[-801,505],[-720,872],[-89,1742],[-575,98],[-1665,919],[-2227,-1146],[15,576],[863,259],[1504,1468],[-2757,-285],[617,753],[168,861],[-798,483],[-324,1309],[-20,2456],[-1059,973],[-848,82],[479,1030],[772,637],[-653,1234],[818,1632],[-539,634],[-198,1904],[482,1231],[-2212,-719],[-214,147],[429,3115],[1342,2151],[1579,573],[744,-977],[626,36],[705,835],[2881,-507],[-755,1030],[747,653],[1388,266],[-1216,1403],[-90,1227],[1056,347],[3994,-718],[1023,197],[880,1566],[2546,2507],[1666,865],[1267,310],[3028,-321],[1287,-317],[988,-1412],[844,130],[977,-973],[755,-1500],[592,541],[1166,-538],[1146,-1044],[2595,-969],[2839,1074],[2188,-1061],[2571,1973],[1221,1609]],[[615408,751215],[349,812],[88,2553],[-497,2619],[-661,1500],[-1151,1663],[-1425,546],[-351,930],[-626,396]],[[611134,762234],[-2149,3498],[-1264,1802],[-2944,2157],[-2465,2763],[-313,1400],[721,258],[1020,-406],[510,293],[457,1922],[563,1259],[703,555],[387,1514],[-1071,874],[-462,1603],[1718,-148],[1549,1760],[1089,631],[-190,1136],[-782,49],[-379,-528],[-1638,-322]],[[606194,784304],[-1589,-158],[-2470,-1991],[-2738,-892],[-1243,-1544],[-302,632],[-1088,-1429],[393,-2631],[799,-1887],[738,-956],[1672,1043],[1257,-130],[-359,-1985],[-599,-393],[-2376,-14],[-1203,-1128],[-1308,-691],[-429,-1013],[-975,-931],[-681,11],[-692,687],[382,2356],[-346,1451],[-1481,1108],[-861,-159],[-265,847],[1807,1775],[1551,971],[-344,903],[-1238,568],[-1804,-587],[-1802,1270],[-409,1181],[1565,400],[-1112,858],[-2130,-439],[-919,-416],[-184,-1079],[-1391,-2897],[-1316,-1604],[-235,-2434]],[[582469,772977],[-651,-2278],[-1027,-404],[-1051,-2236],[-195,-892],[-160,-2844]],[[579385,764323],[47,-1021],[-517,-1023],[-689,104],[-580,-1385],[-149,-1867],[-992,-1752],[1360,-3443]],[[577865,753936],[-145,-873],[335,-1197],[671,-964],[1936,-1261],[-9,-1181],[-1001,-533],[-1487,615],[-1733,-548],[-1071,-2145],[-1215,-971],[-1461,-2335],[291,1738],[902,893],[-99,669],[-1243,-89],[-213,787]],[[572323,746541],[-327,744],[-1137,133],[-1023,788],[-2376,-1174],[-1243,-126],[-369,-688],[594,-1802],[-315,-1012],[-1104,508],[-733,17],[-730,2088],[-714,-908],[-192,-1992],[117,-753],[1891,-4237],[-944,326],[-230,-1195],[589,-682],[-826,-985],[922,-1439],[1960,-1793],[694,-1096],[61,-2301],[-387,-470],[-949,2082],[-1553,-637],[343,-1791],[762,-672],[-671,-1137],[-203,827],[-959,818],[-87,-804],[420,-1643],[857,-4258],[-1037,1381],[-1304,27],[-656,1973],[-1233,-769],[-39,2132],[-829,2364],[-499,963],[145,881],[656,1271],[763,582],[969,-113],[1872,-1562],[997,406],[-316,884],[-1720,864],[-1949,-86],[-1613,487],[-653,1860],[61,1651],[-536,-97],[-980,1652],[-566,2077],[-416,307]],[[555578,740412],[-8,1060],[-445,1042],[-1043,990],[-331,1232],[297,4271],[369,2981],[-5,957],[-605,180]],[[553807,753125],[-353,388],[-1525,3518],[-472,-499]],[[551457,756532],[-2432,2768]],[[549025,759300],[-189,293]],[[548836,759593],[-2126,2750],[-948,582],[-992,-173],[-530,530],[-204,1331],[-1049,778],[-902,1648],[472,610],[-1183,2336],[-237,2520],[-1348,1345],[-430,-1974],[-789,-1217],[-759,1912],[-73,2035]],[[537738,774606],[381,686]],[[538119,775292],[-511,1166],[-885,-135],[-518,-819],[-920,-645],[-1170,-293],[-174,-1496],[322,-735],[81,-1722],[-345,-659],[424,-2821],[678,-1135],[2672,-2712],[982,-4588],[690,-1798],[1438,-2220],[1315,-1105],[2242,154],[-122,-2854],[3818,-3130],[1553,-1482],[1463,-2284],[280,-968],[-347,-1863],[-623,231],[-470,798],[-363,1703],[-631,137],[-1441,1275],[-609,-494],[-716,-1870],[-433,-2106],[114,-600],[820,-527],[807,-973],[160,-2208],[-1764,-1955],[-233,-2178],[-1091,-2424],[-823,-47],[-362,1593],[1288,3118],[308,1286],[-402,1367],[-755,4127],[-908,1036],[-1466,1158],[154,720],[-760,1852],[-682,147],[-1337,1589],[-729,1673],[-1032,251],[-678,-226],[-1496,1541],[-2410,4176],[-1456,1864],[-1631,2505],[-996,5429],[-342,733],[-2717,2149],[-1089,394],[-816,-820],[-788,-1917],[-710,-747],[-1061,-317]],[[520916,764591],[-252,-206],[-58,-145],[-704,-404],[-987,-1427],[-562,-1446],[-1283,-626],[-1101,443],[-2116,1534],[-931,-120],[-190,480],[-1251,387],[-795,-189],[-1427,-1273],[-614,-907],[-213,-921],[70,-2555],[316,-596]],[[508818,756620],[142,-2838],[-167,-520],[-2817,-3200],[-3251,-1690],[-755,-1374],[71,-1113],[-745,-915],[-1071,-2397],[-958,-2652],[-188,-1166],[273,-1623],[599,-1557],[649,-859],[-1882,-2218],[-1071,-3634],[317,-639],[-1607,-421],[-1361,-2007],[-345,-1698],[-594,-1171],[-1280,222],[-3924,-155],[-1179,-298],[-2057,-1664],[-488,-1503],[-700,-859],[-1288,1290],[-1005,3053],[260,555],[-1674,2191],[-1317,-1]],[[479405,725759],[-1263,-1205],[-1793,564],[-1331,-494],[540,2481],[-49,3679],[189,2802],[-1301,-713],[-118,1431],[-632,582],[674,3885],[486,1077],[485,2641],[30,1135],[667,3374],[-73,1960],[-515,3343],[151,1228]],[[475552,753529],[-239,796],[262,874],[145,2696],[-496,-188],[-924,1636],[-60,752],[862,1414],[1335,528],[526,1198],[1084,1230],[1024,-151],[822,-999],[3161,-32],[623,414],[3512,-1389],[1155,24],[1529,568],[1753,-673],[747,350],[850,-647],[1815,99]],[[495038,762029],[877,1530],[507,3944],[570,2177],[-433,858],[228,4068],[265,528],[24,2612],[-434,1619],[-1635,1203],[-711,1679],[-352,2754],[-985,371],[21,1321],[-659,636],[-737,-376],[-870,801],[-2310,1022],[-467,-236],[-711,1048],[820,1942],[-1310,-50],[117,1338],[1715,817],[470,-213],[1369,935],[882,268],[729,-1123],[916,-453],[804,272],[2338,142],[-1135,4427],[-214,1811],[1125,-285],[1025,-1839],[623,93],[1836,-597],[651,266],[552,2270],[1425,991],[1390,589],[1003,1431],[130,3887],[456,491],[2127,775]],[[507070,807773],[1476,1265],[798,395]],[[509344,809433],[2429,-124]],[[511773,809309],[10,148]],[[511783,809457],[-1916,442],[81,872],[1168,-120],[273,1487],[-238,799],[903,1118],[692,1909],[360,2527],[686,127],[907,-1099],[-589,-1440],[110,-960],[1215,1532],[312,1406],[-724,598],[-68,1053],[595,1167],[1212,595],[1692,276],[1577,-1298]],[[520031,820448],[-507,600],[22,1106],[578,859],[2131,253],[836,-1133],[1081,2120],[1050,73],[-1104,2248],[522,1693],[-1109,1891],[501,189]],[[524032,830347],[-72,3062],[-1431,1104],[310,2877],[-275,1647],[244,1474],[1083,-816],[707,1520],[1449,-1092],[-600,1911],[2380,1125],[726,-1014],[192,-1696],[1705,-1094],[-602,-1566],[-1436,-247],[-416,-1416],[-1134,-2122],[-68,-1397],[-626,-2720]],[[526168,829887],[1348,-208],[-103,-1180],[883,-1086],[1274,-428],[1189,211],[-348,-2391],[1351,-420],[368,1039],[1460,455],[1577,1452],[680,27],[1613,-1773],[749,-410],[180,-1136],[1242,-855]],[[539631,823184],[757,10],[724,1821],[1293,784],[1936,650],[1239,1268],[1920,1294],[2220,830],[1247,3],[612,-2215],[484,-450],[1855,-608],[1092,1015]],[[555010,827586],[661,735],[-250,715],[91,1634],[1293,-39],[1439,1899]],[[555350,862915],[929,-976],[-502,-1251],[-857,281],[-268,991],[698,955]],[[297135,193422],[-320,-1472],[-338,962],[351,2272],[-1101,-799],[61,2847],[1548,100],[508,1370],[798,-1394],[49,2489],[-638,1073],[-1065,1016],[-328,-322],[1852,-1590],[-1426,-654],[-623,-1898],[-901,1033],[362,1790],[-504,-17],[-781,1181],[694,365],[-172,1594],[-1320,688],[253,1683],[-421,1494],[443,349],[-485,1224],[-935,96],[917,2067],[-59,1488],[841,668],[221,1258],[-1173,-734],[-157,3092],[124,1472],[1051,608],[-14,817],[-1484,1924],[559,469],[864,-148],[1208,-909],[618,26],[-658,1828],[-387,1735],[-808,-1269],[-1907,440],[1545,741],[-882,794],[486,1563],[710,407],[-561,2146],[-1060,-104],[-1042,309],[-323,814],[-703,-760],[204,-751],[-688,-504],[-400,927],[494,1298],[1434,2024],[0,2036],[2531,335],[261,-1948],[948,-383],[483,4535],[757,928],[917,-1079],[207,576],[-1443,1031],[583,1540],[1052,1138],[205,1844],[-1665,1415],[360,933],[598,2571],[-141,1999],[464,2335],[-161,547],[428,1938],[503,1206],[-251,1206],[-670,666],[561,1095],[-493,1456],[-560,-141],[-1018,-1682],[-879,308],[-382,1947],[-237,2716],[548,2648],[-27,1351],[299,1976],[738,402],[474,3051],[-534,3178],[-697,7458],[-48,1210],[281,1084],[752,-334],[373,699],[149,2318],[311,-19],[489,3286],[721,3944],[850,2210],[446,2241],[290,3215],[817,2780],[-63,3099],[519,1719],[230,3410],[-158,2607],[-288,2848],[-300,4637],[179,2215],[643,423],[355,2185],[-60,2425],[-532,1642],[51,1701],[549,1277],[225,1197],[183,2826],[965,5775],[253,2257],[154,3151],[-135,1034],[313,2224],[365,858],[28,1010],[-381,2860],[321,5633],[-130,1717],[-220,302],[31,1818],[797,1419],[117,2950],[515,5578],[-366,3585],[197,4309],[-75,2093],[-357,2825],[-275,5336]],[[304506,397349],[-2596,3773],[-110,648],[-849,2263],[-3253,3790],[-2329,2106],[-1637,2085],[-1658,1857],[-939,1476],[-1420,2890],[-535,844],[-1011,3006],[-171,1464],[353,1744],[-35,1324],[-432,1249],[-1180,4328],[-429,1173],[-3348,12316],[-783,4744],[-227,678],[-1109,5193],[-1662,4885],[-636,2964],[-686,1816],[-664,1009],[-1427,1496],[-996,1430],[44,1658],[638,2],[9,980],[-517,1675],[-792,4011],[298,2561],[1423,3216],[1038,1527],[263,24]],[[277141,485554],[829,1523],[379,2557],[-108,2025],[-538,230],[-642,-2285],[-1361,2080],[-541,1020],[580,1961],[-15,3073],[-128,494],[164,2030],[826,2199],[542,2540],[484,1208],[130,2724],[-206,725],[159,992],[1022,1019],[1361,607],[614,1363],[470,456]],[[281162,514095],[-335,923],[399,1465],[535,-257],[77,902],[-376,509],[-120,966],[548,2150],[1996,881],[734,3297],[1136,2719],[62,1115],[-248,1099],[-652,-333],[-252,1573],[493,1356],[83,1014],[-214,4564],[132,6641],[-880,2439],[-650,1378]],[[283630,548496],[-808,1880],[-727,3091],[737,1694],[-527,274],[-570,1556],[-939,1548],[-684,537],[-919,-65],[-855,1108],[-35,900],[749,1757],[2298,-1159],[461,-43],[1751,-1901],[1007,-2321],[515,-262]],[[285084,557090],[1426,-3447],[253,1797],[-164,590],[1559,3059],[493,1897],[661,545],[681,1471],[64,3228],[188,2071],[1831,3002],[1471,-591],[298,521],[212,1565],[908,-417],[1465,108],[1428,2335],[864,605],[892,1967],[1326,2056],[1080,-713],[413,-1880],[-555,-1017]],[[301878,575842],[-305,-701],[-1392,-713],[23,-1674],[562,-1806],[356,-2188],[-157,-1259],[-819,-1953],[-426,-1501],[780,-3691],[323,-986],[583,-76],[741,679],[465,1242],[97,2005],[-138,721],[-1058,3259],[-253,2250],[515,1206],[3638,2786],[446,79],[-140,1295],[-805,-310],[-150,1786],[287,1085],[475,556],[332,-444],[884,-3937],[884,404],[1242,-668],[1114,-1435],[355,-1341],[-1,-1770],[431,-963],[576,-173],[2649,883],[2106,145],[820,-2079],[280,-344],[2050,-943],[649,119],[783,946],[1570,1188],[835,1192],[2621,594],[874,-121],[1592,173],[-238,-583],[-1731,-561],[-343,-975],[970,-3432],[407,1231],[497,-426],[568,-1138],[439,183],[717,-513],[507,-745],[524,-27],[675,-1446],[-489,-748],[-155,-2180],[267,-556],[-189,-969],[1210,-123],[559,572],[974,-599]],[[333341,556324],[2419,-3027],[1366,-2804],[462,-1587],[-35,-2907],[524,535],[701,-418],[1653,-2934],[579,-813],[269,-2213]],[[341279,540156],[543,1123],[1759,-578],[1074,-34],[905,497],[656,-133],[1520,179],[2196,-973],[42,-1204]],[[349974,539033],[496,887],[958,-1236],[1303,-580],[3031,-4923],[859,-2650]],[[356621,530531],[199,1270],[953,-1848],[230,-977],[311,-4792],[934,-5434],[555,-2177],[512,-20],[925,-829],[203,-1521],[-299,-2050],[-1225,-2258],[-306,-1147],[-855,-1844],[-988,-1415],[-602,-2108],[443,-520],[493,967],[528,1633],[638,355],[396,-985],[553,464],[808,-371],[3863,-440],[749,-919],[-291,-1887],[-940,-4031],[-607,-922],[-1566,-1053],[-1270,-6],[-1002,-723],[33,-560],[1787,247],[485,659],[853,442],[-290,-1694],[248,-448],[532,1898],[558,41],[1200,3351],[391,474],[63,863],[691,1652],[429,495],[649,90],[723,-1151],[473,395],[1084,-604],[471,-978],[1068,-389],[393,-1223],[511,620],[793,-1633],[703,-351],[221,-1667],[736,1649],[445,-468],[908,-2072],[-32,-1456],[581,-392],[114,-715],[-563,-1109],[-643,-4216],[145,-421],[683,1660],[506,3025],[575,607],[146,-885],[-779,-1290],[345,-458],[884,1405],[922,552],[348,1127],[673,-251],[2615,-2493],[599,321],[1267,-971],[748,-47],[2314,709],[1373,-305],[2188,-2537],[2140,-3052],[848,-2039],[1122,-2163],[1277,-1879],[1206,-1156],[709,-382],[1249,-16],[485,222],[977,-446],[478,-552],[541,-2219],[432,-3735],[674,-4628],[77,-1855],[-156,-4227],[-254,-1892],[-621,-3598],[-604,-1907],[-2068,-5057],[-1082,-2313],[-939,-1211],[-449,-1154],[-1114,-3622],[-680,-3061],[-878,-2832],[-938,-2295],[-443,-521],[-59,1638],[-581,672],[-167,-2169],[-374,-2882],[-481,-2367],[337,-611],[-302,-3983],[283,-5191],[127,-1107],[-825,-8423],[64,-2405],[-468,-2019],[-716,-1749],[-295,-1736],[-76,-1872],[164,-2910],[-180,-1403],[-1163,-3178],[-686,-3302],[-1071,-2075],[-735,-3077],[223,-2993],[-664,-809],[-993,-628],[-1091,-1824],[146,-1214],[-443,-1097],[-2806,-26],[187,1367],[-513,3],[178,-1314],[-1145,-594],[-755,826],[-664,-362],[-730,282],[-935,-825],[-173,-1815],[-400,131],[-2259,-2503],[-674,16],[-1535,-1564],[-2954,-4236],[-979,-2138],[-787,-1194],[-1535,-341],[133,-741],[718,-910],[-503,-2407],[-436,-885],[297,-905],[-80,-1882],[448,-2945],[-202,-1474],[20,-2868],[-469,-3366],[-252,-763],[-1389,-1920],[-1316,-3164],[-680,-2422],[-671,-3478],[-1624,-4629],[-1117,-2117],[-2054,-2995],[-96,1449],[1041,558],[898,1507],[616,1392],[1634,4837],[96,1141],[-346,455],[-1073,-950],[-673,353],[-32,-1650],[-469,-2797],[-1483,-2322],[-376,-1463],[-342,-2168],[277,-820],[-1315,-5468],[-387,-971],[-1655,-2684]],[[351752,306378],[-1128,-3615],[-1038,-1805],[-2197,-1759],[-1263,978],[-856,128],[-749,-499],[-2342,941],[-711,1148],[-2302,627],[-1409,2780],[-53,1990],[200,2307],[622,1023]],[[338526,310622],[-819,-810],[-352,-2962],[115,-1373],[350,-868],[-414,-2366],[628,-1354],[1165,-946],[1032,-1155],[901,-1667],[200,-843],[-671,-1752],[-40,-1312],[821,-1930],[955,-188],[182,-3401],[-2917,-7823],[-1319,-1281],[-2680,-1531],[-2033,-821],[-2598,-782],[-2712,-95],[-935,947],[-714,-25],[511,-2748],[425,-1225],[-443,-2078],[-283,-101],[-366,-2271],[791,-2041],[-399,-1559],[-2086,-1664],[-1933,-67],[-2724,2206],[-702,383],[-512,-1702],[250,-2368],[4,-3276],[147,-663],[1168,-2045],[1368,-32],[-193,1314],[1181,809],[360,-1125],[-2,-2984],[-1415,-635],[-463,1900],[-1015,245],[-858,-868],[-109,-733],[1670,-1043],[-1629,-1914],[-881,-2146],[-66,-677],[344,-3405],[-436,-1350],[-721,-654],[-248,-2155],[-1337,236],[-2035,-1587],[-915,-1779],[-824,-2427],[-95,-1621],[612,-1969],[1654,-2442],[1401,-503],[876,61],[714,-1571],[-360,-3557],[-1403,-2194],[-1719,-1745],[-1619,-2453],[-621,-5120],[-1013,-1282],[-876,0],[-1261,-1582],[-468,-1144],[-366,-2255],[608,-3655],[-312,-548],[802,-1048],[1284,-2851],[-204,-408]],[[309929,196168],[-1799,955],[-1152,-708],[-592,-1177],[-1057,-161],[-1921,-956],[-576,-3773],[36,-2386],[-894,-726],[-2349,1343],[-939,1637],[430,857],[1700,234],[991,596],[632,1286],[-1211,1981],[-2006,215],[-1535,-66],[-315,-1476],[-237,-421]],[[309425,194595],[589,-1187],[92,-972],[-519,-1105],[1400,-1657],[1427,-2610],[2709,-2793],[2148,-1519],[1867,-12],[-1164,-1642],[-1747,-282],[-3583,666],[-1995,268],[-1226,-369]],[[309423,181381],[-1192,-390],[-1731,845],[-1181,-159],[-2139,485],[-225,837],[-1671,442],[379,823],[2085,-11],[593,701],[1554,-684],[361,582],[-829,1192],[-262,2149],[2230,1403],[-58,785],[-1612,-96],[-802,-534],[-648,674],[164,2180],[2265,2142],[2185,276],[536,-428]],[[691809,215560],[1448,-1141],[760,222],[1311,1237],[572,-301],[29,-1169],[-573,-293],[-1421,49],[52,-1231],[795,240],[349,-1024],[-1062,-102],[-559,956],[-1640,28],[29,-899],[-906,182],[389,1287],[-406,2059],[565,2352],[413,-447],[-145,-2005]],[[895958,441352],[482,-350],[197,-792],[174,-2960],[487,-1996],[281,-2404],[408,-394],[369,-1569],[-144,-1150],[410,-513],[125,-4065],[156,-1575],[465,-2781],[701,-562],[1295,1761],[359,-1505],[1564,-2402],[614,-6503],[24,-2542],[303,-1278],[1103,-3001],[577,-3021],[-284,-3864],[438,-1085],[274,-2601],[545,-1219],[1790,-1907],[827,-65],[210,-1424],[448,-928],[1614,-1197],[1387,-1382],[-123,-2215],[419,-1286],[792,-900],[704,-2995],[580,-4590],[120,-1499],[1175,-663],[-400,1944],[347,1143],[384,-1281],[1199,-1643],[-210,1421],[311,211],[396,-1239],[84,-1108],[-119,-3346],[-198,-1700],[1126,-380],[202,-1201],[738,-1255],[831,353],[1248,-3955],[1698,-3420],[258,-2528],[648,-2200],[-208,-7152],[349,-1008],[1075,-5668],[47,-2771],[-849,-2886],[221,-956],[-488,-3879],[-399,-1797],[-128,-2081],[149,-1233],[-702,-3935],[-674,-1810],[-204,-2612],[-1206,-1926],[-1141,-1251],[-229,-1772],[-681,-1482],[-33,-1486],[-1035,-3106],[-483,-3229],[71,-1158],[-372,-579],[-1189,-3225],[-190,-1172],[-137,-2578],[-360,-2626],[39,-4188],[-848,-1087],[-779,-541],[-3113,-247],[-1592,-369],[16,-721],[-2393,-3574],[-1731,-553],[212,-1221],[488,-74],[-202,-1294],[-1062,1858],[-1147,866],[-455,816],[305,1135],[-809,725],[-262,-1035],[-776,-522],[663,2171],[-626,1711],[-1121,-1544],[36,-1076],[-1545,-1806],[-887,-1255],[-449,-155],[-3336,2688],[-914,468],[-1618,36],[-990,1240],[-1002,100],[-792,1049],[-1566,3624],[-286,1627],[471,1536],[-444,2485],[-961,2525],[-1253,1826],[-555,310],[-590,-702],[-861,-186],[-53,857],[779,1196],[336,2920],[-1290,4042],[-260,-576],[-707,-4769],[-423,-571],[-1860,-834],[-242,416],[464,1818],[859,-160],[450,2673],[65,2012],[306,1457],[545,1285],[501,3152],[-47,684],[-614,2285],[-445,-2181],[-724,-2686],[-961,-1437],[-1011,-1095],[-1997,-4135],[211,-873],[-88,-1593],[-2201,2599],[714,307],[-445,3143],[-611,1361],[-911,3390],[-1231,161],[-429,1665],[505,1059],[-273,1174],[-1428,2057],[-606,-172],[-3856,1556],[-1085,1374],[-1468,1255],[-1662,-741],[-1093,85],[-3073,-576],[-2688,-2266],[-2271,-1264],[-1599,-252],[-1502,398],[-469,-250],[-2810,-2863],[-1720,-1123],[-622,-1014],[-363,-1835],[-687,-1956],[-657,-891],[-980,-111],[-388,510],[-2510,-770],[-613,753],[-1508,268],[-1808,-457],[-1989,-258],[-977,-967],[-362,-1430],[-897,-850],[-1222,-533],[-1158,-1909],[-1326,-1129],[-1449,480],[-1932,-218],[-1856,1783],[-810,1559],[-641,784],[-1116,474],[-129,1867],[43,2496],[556,-719],[798,642],[509,1469],[-63,2326],[256,2942],[-7,3397],[-188,1103],[-1326,4857],[-362,1799],[-275,2625],[-28,2465],[-273,3237],[-721,2599],[-961,2751],[-354,3538],[-373,1864],[-1045,3306],[-923,1978],[-167,990],[460,694],[243,-1727],[500,-1591],[575,891],[18,1130],[-879,1720],[-423,1853],[200,991],[1090,-3045],[538,-2199],[464,783],[-101,2936],[-974,3369],[-616,2848],[-611,1643],[85,2713],[509,2317],[469,1016],[133,2473],[-427,2560],[890,4342],[420,-123],[-182,-1530],[115,-1852],[748,312],[697,3369],[2249,1989],[1182,2266],[2123,2458],[2338,-86],[812,349],[986,1747],[1840,544],[825,1715],[959,-148],[2110,579],[1387,1033],[1080,1085],[869,1786],[1296,4621],[1166,1740],[179,1189],[-388,542],[-198,2238],[90,1422],[391,1229],[1246,2048],[448,1808],[315,-1561],[669,-2165],[326,-1705],[493,-1174],[88,2275],[654,-68],[80,866],[-1028,2988],[567,436],[-316,967],[359,688],[488,-1562],[232,381],[1087,-608],[461,649],[-180,1343],[726,1729],[-758,5],[-183,732],[193,1128],[461,25],[218,863],[393,-65],[888,-860],[-293,1937],[1228,141],[-626,1170],[-331,1375],[566,845],[613,164],[198,992],[779,-1501],[454,2393],[1041,802],[284,-810],[467,1370],[17,1246],[541,350],[563,-1479],[489,407],[827,-1321],[887,-2402],[479,-1861],[-83,-1647],[-325,-2216],[880,941],[243,1623],[358,723],[-47,1049],[1314,-401],[614,-717],[828,217],[247,-697],[564,1263],[78,1821],[-753,-77],[-463,762],[388,2000],[698,932],[444,2440],[288,-104],[685,1158],[-267,889],[86,1570],[443,995],[442,242],[200,1778],[753,-345],[419,1567],[865,136],[312,-594],[644,-55],[2100,342],[463,699],[411,2926],[-563,1046],[-1057,-446],[-888,1366],[1477,719],[565,-1254],[724,-231],[684,-791],[511,-1126],[453,-294],[1285,-139],[832,-1950],[782,352],[966,82],[756,-1142],[711,31],[756,1031],[789,-621],[297,-1610],[829,284],[161,1068],[-470,374],[720,1241],[559,-1884],[642,226],[164,-821],[-585,-1090],[-340,-1168],[68,-1558],[-705,-1111],[-640,88],[-645,-503],[-159,-1088],[56,-1481],[410,111],[-395,-2873],[-436,-746],[-567,-1886],[-877,-834],[1150,-1728],[113,-893],[670,-76],[571,-826],[1691,-3059],[548,-146],[1740,-1557],[670,-837],[315,-881],[1179,-1723],[1940,-863],[922,-2836],[1826,-2018],[1398,436],[934,1173],[1289,5932],[270,2576],[93,2055],[402,2453],[151,1699],[-464,6440],[225,2141],[533,728],[-433,2268],[957,2382],[-938,204],[606,3004],[504,1684],[450,3648],[810,2559],[276,-1144]],[[911091,252126],[-33,-1369],[-516,-374],[-488,901],[1037,842]],[[902345,265018],[1165,-373],[2499,-2029],[545,-218],[1264,348],[488,815],[1103,-34],[1706,1462],[911,-1502],[-115,-1414],[-8,-4780],[-325,268],[-418,-1549],[-224,-2101],[-702,-1639],[-946,-332],[-257,-1377],[-524,-855],[-635,-1777],[-941,608],[-1316,408],[-61,773],[-1403,2157],[-545,2029],[-260,1865],[153,1019],[-1266,3863],[-529,2778],[641,1587]],[[911860,268091],[-653,148],[-708,2037],[489,704],[911,-1873],[-39,-1016]],[[900268,269172],[-529,-623],[-179,1529],[363,1728],[379,-468],[-34,-2166]],[[880889,292875],[-1154,-42],[-440,784],[110,894],[2203,946],[545,-813],[1208,-1018],[-2472,-751]],[[925902,358273],[-673,-4411],[-368,679],[388,2627],[653,1105]],[[888034,408486],[-325,-187],[-793,-1413],[-287,877],[372,762],[607,365],[426,-404]],[[880402,421377],[-881,27],[-657,570],[75,1360],[802,1417],[159,-1530],[502,-1844]],[[862469,436831],[35,-981],[-1070,52],[180,2434],[462,510],[393,-2015]],[[863002,438261],[1448,786],[258,556],[596,-1554],[-463,-1159],[-994,-1586],[-853,862],[-569,993],[-314,2218],[891,-1116]],[[752331,637514],[-449,-24],[-17,1480],[-410,1242],[365,262],[511,-2960]],[[282889,654737],[525,-916],[547,-1831],[-8,-1718],[-686,-821],[-798,1162],[-164,1053],[412,983],[172,2088]],[[297094,630711],[-350,-973],[-1348,-302],[20,1071],[673,624],[1005,-420]],[[290766,645826],[1322,-4097],[-789,1281],[-533,2816]],[[284916,664258],[1047,-1530],[-355,-3551],[-589,447],[472,1693],[221,1529],[-796,1412]],[[254678,615081],[532,-715],[-53,-2107],[-211,-1262],[-205,-2919],[185,-1889],[-292,-2045],[-445,-1728],[-713,-830],[-537,-1856]],[[252939,599730],[1150,-96],[823,-882]],[[254912,598752],[358,-106],[483,939],[527,270],[919,-572],[1595,-284],[1069,125],[1225,665],[3105,221],[1316,-704],[2982,-3974],[519,-891]],[[269010,594441],[-437,-1335],[192,-1636],[-672,-3986],[-236,-3289],[170,-4521],[-333,-781],[-244,-2257],[-59,-2469],[-370,-1130],[180,-1808],[391,-810]],[[267592,570419],[480,-2390],[340,-1147],[1578,-3757],[666,-733]],[[270656,562392],[527,-929],[44,-1233],[297,-1071],[495,-583],[1260,-186],[313,-587],[555,-107],[912,363],[1543,1768],[1052,895],[533,-940],[441,-154],[321,-767],[-523,-1060],[36,-1069],[-1181,-1671],[-491,-196],[-114,-1791],[940,-2108],[105,-1114],[-1163,-1255],[-761,-190],[-620,345],[-344,3651],[-394,-64],[-2,-1107],[-798,408],[-721,2604],[-1255,318],[-224,538],[-1019,-78],[-699,-1687]],[[269721,553335],[-751,3459],[-347,-520],[-26,-933],[-661,375],[-509,844],[329,1450],[-80,1296],[-881,1567],[-1313,1175],[-591,1316],[-240,1172],[-1453,1836],[308,-1486],[681,-1063],[-693,-1359],[-1134,1721],[-671,1360],[-204,1425],[330,1098],[149,3231]],[[261964,571299],[-2289,4192],[-670,2161],[-2118,3778],[125,931],[465,215]],[[257477,582576],[-213,717],[15,1675],[-1016,-216],[-194,306]],[[256069,585058],[77,-706],[-564,-737],[-1494,145],[-776,353],[-1335,1377],[-563,107],[-1050,700],[-738,758]],[[249626,587055],[-1280,1008],[-1312,-7],[-673,218],[-1269,1361],[-1290,2096]],[[243802,591731],[-2045,4310],[-1373,2532],[-1053,1504],[-1072,930],[-1357,617],[-1223,-216],[-1220,-1358],[-1859,-1533],[-641,-154],[-1097,594],[-894,969],[-1917,806],[-1320,1210],[-998,1460],[-1294,682],[-1102,343],[-749,848],[-3198,2555],[-1887,2969],[-1092,1307],[-650,-58],[-1092,530],[-2116,1547],[-610,1929],[-1134,1694],[-2531,2717],[-1308,3492],[-555,2335],[252,534],[768,234],[357,5451],[-702,1168],[-456,1744],[-179,2465],[-404,1819],[-1592,3127],[-1378,3876],[-894,1625],[-2050,2966],[-662,2029],[-709,1730],[-1773,1500],[-861,1014],[-154,1607],[526,2193],[-87,1307],[-777,885],[-2680,3522],[-185,523],[-42,2396],[-553,926],[-474,129],[-1045,1540],[-1241,2446],[-1867,5697],[-1553,5968],[-79,2465],[-1558,2529],[-941,748],[-559,-473],[-1057,1369],[-708,529],[-237,-3990],[371,-1124],[339,-2864],[-73,-1701],[756,-2191],[912,-1128],[1117,-1891],[276,-1793],[1755,-3135],[184,-663],[256,-2784],[170,-711],[1274,-2584],[675,-1729],[1138,-1881],[580,-2573],[211,-2888],[1345,-4388],[428,-4153],[330,-813],[489,-214],[672,369],[861,-1428],[945,-2549],[189,-1062],[-358,-1648],[-966,-1345],[-327,146],[-1148,4247],[-1674,2831],[-1396,1538],[-451,-44],[-1009,1110],[-524,1471],[372,3569],[29,2105],[-254,1418],[-394,1015],[-1990,2537],[-3452,3265],[-1036,2154],[-1016,1558],[1469,19],[552,588],[672,1985],[43,1536],[-303,897],[-1997,3936],[-2285,2838],[-917,5065],[-784,2933],[-668,1972],[-737,3112],[-625,1847],[-230,1436]],[[174657,698103],[-437,2825]],[[174220,700928],[-626,1896]],[[173594,702824],[-1526,2176],[-992,1079]],[[171076,706079],[-2346,1947]],[[168730,708026],[-999,1227]],[[167731,709253],[-2382,274],[-372,528],[-70,2816]],[[164907,712871],[-1077,2633]],[[163830,715504],[-2148,4457],[-551,4293]],[[161131,724254],[-451,129]],[[160680,724383],[-705,1379],[-301,2225]],[[159674,727987],[985,453],[-558,1406]],[[160101,729846],[-917,-24],[-742,1252],[-721,2279]],[[157721,733353],[-1341,2384],[-205,1913],[27,1975]],[[156202,739625],[-202,1394],[-669,1598]],[[155331,742617],[-785,1152],[-126,1077],[807,3227]],[[155227,748073],[45,3592]],[[155272,751665],[-1228,7246],[867,4370],[227,2060],[484,7280],[74,2495],[-161,4768]],[[155535,779884],[89,2024],[342,1480]],[[155966,783388],[-831,335],[-776,4286],[-670,1308],[-164,2415],[2474,-1302]],[[155999,790430],[2391,-354],[641,124],[274,-1496],[480,-696],[-155,-1729],[-824,-1896]],[[158806,784383],[432,-147]],[[159238,784236],[971,1422]],[[160209,785658],[-268,1345],[484,2708]],[[160425,789711],[-641,2565],[81,913]],[[159865,793189],[-1027,1870],[168,372]],[[159006,795431],[-921,0],[-395,1424],[325,397],[-253,1872],[-972,-1392],[-956,529],[-638,1788],[-857,-47],[-853,1476],[620,2205],[-1203,-379],[-1183,900],[-2072,-16],[-447,230],[581,1552],[-309,386],[-1690,697],[-708,-875],[-600,549],[-240,1665],[-594,863],[-859,1984],[7,1331],[339,276],[1051,1628],[648,537],[-241,1307],[-1736,-1941],[-684,2045],[-225,1737],[-877,467],[-160,1190],[-932,1187],[942,479],[-797,1402],[266,1615],[-1451,-1760],[-44,-1461],[-903,-926],[-1899,3571],[689,251],[-42,1632],[-1048,2409],[689,927],[534,1591],[-277,1326]],[[138631,832059],[-527,-1374],[-1266,-1290],[-574,399],[-330,2624]],[[135934,832418],[-472,831]],[[135462,833249],[-1224,-403],[-1421,1508],[-137,923],[1630,2695]],[[134310,837972],[-1483,-245],[159,-1215],[-1606,952],[430,1233],[879,548]],[[132689,839245],[-374,1062],[-1099,1401],[-260,1068],[-1495,714],[-771,2905],[114,1034],[-1272,2287],[-1500,802],[-1572,2188],[348,-2303],[-660,-366],[-472,1094],[-3486,-922],[-2393,1925],[-2070,2784],[-2711,1642],[-1508,1121],[1002,944],[-761,875],[-1541,-880],[-1528,268],[-2509,1376]],[[106171,860264],[-2556,719]],[[103615,860983],[-3088,-533],[-876,71],[-684,901]],[[98967,861422],[-1255,288],[-799,695],[-1744,745],[212,1179],[-2131,150],[-842,1380],[-1891,488],[-1915,-1559]],[[88602,864788],[306,-1941],[-437,-2206]],[[88471,860641],[-1460,-642],[-2115,605]],[[84896,860604],[-2513,-3507],[-1108,-115]],[[81275,856982],[-994,-1033],[-1793,-490],[-387,1187],[1615,1302]],[[79716,857948],[-1581,1126],[1671,4541]],[[79806,863615],[260,1433]],[[80066,865048],[2068,1435],[1412,-605]],[[83546,865878],[554,553],[-888,1381]],[[83212,867812],[-1781,92]],[[81431,867904],[-2210,-1489]],[[79221,866415],[-2259,-3548]],[[76962,862867],[-1240,-1088]],[[75722,861779],[-351,-2089],[-507,-1040],[-3012,-1923]],[[71852,856727],[-69,-2076],[1312,231]],[[73095,854882],[1091,-1194],[-461,-889],[-1532,-1283]],[[72193,851516],[-1089,-2155],[-1200,-640]],[[69904,848721],[-2933,-2796],[-1660,-1268]],[[65311,844657],[419,-846],[-620,-1014]],[[65110,842797],[-2230,-965]],[[62880,841832],[-1682,-2129],[-878,-77]],[[60320,839626],[-274,-1009],[-662,-633],[-314,-1338],[-2419,-981],[-598,276]],[[56053,835941],[-1716,-1670],[-2232,-1286],[-727,28]],[[51378,833013],[403,1476],[-635,55],[-807,-2261]],[[50339,832283],[-947,-1228],[-2324,-578]],[[47068,830477],[-896,-434],[219,1459],[1862,1537]],[[48253,833039],[896,1694],[1437,1442]],[[50586,836175],[1428,525],[1681,-1698]],[[53695,835002],[556,776],[-291,933]],[[53960,836711],[622,1755],[1339,1382],[2597,1836]],[[58518,841684],[657,650],[1294,2252],[1537,1438],[393,4193]],[[62399,850217],[343,1469],[978,1216]],[[63720,852902],[-546,664],[-2542,-1329],[-952,1393]],[[59680,853630],[-945,-733]],[[58735,852897],[428,-1409],[-1009,-368],[-1550,3012]],[[56604,854132],[-900,-774]],[[55704,853358],[-1588,1226]],[[54116,854584],[-3442,-2547],[-216,2733]],[[50458,854770],[-615,1353],[852,1605]],[[50695,857728],[-1730,3703],[-716,-1153]],[[48249,860278],[-1466,-761],[-1519,-298],[-1200,282],[-88,729],[-1512,1930]],[[42464,862160],[-1754,1690],[1322,1506],[-372,1318],[-1008,307]],[[40652,866981],[-1313,1188],[-637,1317]],[[38702,869486],[1042,3507],[1414,2102],[1091,634]],[[42249,875729],[-58,1905],[1111,1802],[1021,269],[1977,-1348]],[[46300,878357],[1859,1148]],[[48159,879505],[911,1373]],[[49070,880878],[3292,248]],[[52362,881126],[1057,1583]],[[53419,882709],[-516,2624],[-780,955]],[[52123,886288],[1233,1442]],[[53356,887730],[-996,1789]],[[52360,889519],[-2964,-1609]],[[49396,887910],[-1081,-1117]],[[48315,886793],[-2753,611]],[[45562,887404],[-1971,-13]],[[43591,887391],[-2194,-656],[-3010,747],[-1493,3143]],[[36894,890625],[911,1155],[-2466,550]],[[35339,892330],[-2130,1022],[360,1014],[5612,3333],[4149,1631],[1801,-194]],[[45131,899136],[-594,-2227]],[[44537,896909],[965,-676]],[[45502,896233],[2505,105],[2306,-288]],[[50313,896050],[1098,1387]],[[51411,897437],[1055,391],[-2147,2309],[481,1293],[-308,662],[-2296,-245],[-3034,844],[-341,1512],[-805,1274],[-3283,2379]],[[40733,907856],[-3600,1854]],[[37133,909710],[723,522],[502,2051]],[[38358,912283],[5422,937]],[[43780,913220],[1893,1165],[1021,1349]],[[46694,915734],[687,2916],[1322,1648],[1654,1177]],[[50357,921475],[1620,-187],[2677,1319]],[[54654,922607],[1877,1626],[1824,-179]],[[58355,924054],[3198,569]],[[61553,924623],[1166,684],[2368,2221],[2911,-1650]],[[67998,925878],[1246,470],[1375,-911],[234,-1025],[4028,496],[2040,-785]],[[76921,924123],[-142,-1051],[1750,-980],[1789,-178]],[[80318,921914],[4404,631],[2297,-616],[2269,-990]],[[89288,920939],[1769,-418]],[[91057,920521],[2592,56],[2470,-861]],[[96119,919716],[1969,-383],[2788,992]],[[100876,920325],[1529,-92],[4790,-2514]],[[107195,917719],[1137,-275]],[[108332,917444],[4478,-631],[2187,-1723],[4814,-2141],[2401,-174],[1001,290],[-989,1744],[2249,418],[425,1187],[1152,-87],[1036,645],[1652,-1104],[1384,90],[2092,1980],[762,-252],[3253,2212],[1118,310],[2725,-754],[-2649,-1320],[-1211,-1264],[55,-2592],[1799,3411],[2338,806],[1492,-1025],[1708,1716],[294,2442],[493,1267],[2186,-1716],[1510,-3204],[2076,-2010],[1093,-417],[1522,3175],[1720,856],[-331,-1680],[1076,-403],[-1142,-1459],[442,-414],[2357,188],[911,677],[243,1529],[989,377],[2913,-59],[1918,-774],[2038,-1551],[4732,-1226],[2027,-1196],[4617,-976],[1025,1023],[2409,-875],[2140,-1791],[470,-1831],[-2270,93],[-961,-400],[27,-2156],[4149,-771],[3020,-98],[4990,909],[1741,1057],[1211,-1689],[1787,37],[401,-1098],[2663,-1565],[248,-1108],[-845,-360],[114,-1140],[1141,-541],[94,1490],[1648,-913],[-453,1691],[-1112,1643],[-450,1470],[872,2385],[2209,488],[801,1163],[2050,601],[104,1169],[-1712,-435],[-1272,-1024],[-1811,-386],[-873,-879],[-1749,-268],[-1363,747],[1273,2039],[2795,548],[3088,1344],[1194,-238],[1044,-879],[-278,-1937],[1791,-1005],[1220,-1253],[2562,513],[1237,-1266],[2649,-1302],[1922,120],[3660,849],[2596,-760],[1939,382],[-148,646],[920,2513],[2481,1161],[684,-1355],[1819,-662],[1154,242],[-458,-2972],[-735,-1117],[846,-1714],[730,431],[1107,-905],[876,682],[-1186,3177],[553,1619],[1816,-114],[2015,2416],[1512,609],[-587,2479],[-1167,-1305],[-1416,93],[1227,1793],[-307,1444],[1635,-566],[922,900],[-361,735],[-2235,-368],[-871,1107],[-882,-280],[-2530,1125],[-1903,2132],[-127,903],[1010,2012],[-1030,909],[306,2848],[774,819],[1770,-598],[488,1271],[-1501,541],[1755,772],[300,1297],[1874,230],[4254,-3810],[195,-2731],[1654,-1479],[745,-1611],[1374,-1272],[-3650,-2580],[2864,-1296],[1283,313],[1968,-675],[-1589,-782],[1583,-1426],[434,-1700],[79,-2156],[990,-898],[825,1672],[167,2567],[1020,1505],[1032,165],[2630,-2455],[735,-2535],[-1427,-598],[-148,-1831],[630,-1810],[2940,-2848],[974,1168],[1820,3372],[518,545],[513,3395],[1759,1032],[438,934],[-1600,1941],[34,2239],[674,780],[1920,272],[3060,-1148],[2813,-198],[-433,-1023],[915,-1037],[2434,-490],[-76,-1906],[445,-1488],[-1952,-1260],[-1662,560],[1079,-2983],[2631,-3163],[-733,-2741],[-1431,-529],[-365,-748],[-3028,-2283],[-853,-101],[-1405,2330],[-642,-488],[1625,-2875],[-401,-428],[-1874,1550],[-489,-1107],[-1572,268],[-939,1795],[-3138,-235],[140,-1198],[2061,-758],[-811,-1482],[-2542,-3295],[-714,-421],[-1795,136],[-2178,2033],[-2937,1819],[-510,-1052],[1165,-834],[1700,-2073],[5396,-499],[367,-650],[-1002,-1922],[-1288,-1675],[-994,-2249],[-1223,-610],[-2538,-28],[-2047,-430],[347,-1198],[-445,-850],[-1785,-251],[-2385,1067],[898,-1504],[1090,-120],[710,-843],[267,-1798],[-1780,-1117],[-2969,40],[949,-1876],[-1637,457],[-317,-1811],[-1165,-1029],[-419,-2035],[-1174,-1149],[-1674,-1106],[665,-653],[-70,-905],[-1227,-3346],[-716,-3953],[268,-3195],[-631,-1635],[1297,-1951],[3225,28],[529,-1035],[907,-4457],[947,-2272],[51,-1130],[-421,-1174],[1154,-101],[3263,1307],[1170,-259],[1748,-1274],[2885,-925],[2636,-2292],[981,-2777],[2842,-1025],[1644,-897],[2460,-2158],[1117,-398],[2019,324],[4645,-1073],[261,-2043],[-266,-1260],[-18,-2606],[534,-1730],[-447,-5088],[1565,-2311],[529,-1513],[2407,-2989],[639,-2290],[1525,-1399],[1601,2931],[756,-974],[708,-175],[-527,1939],[1072,1722],[230,2240],[-760,1628],[141,530],[-585,1947],[-232,2214],[-177,3696],[-1084,1467],[-281,1758],[3300,1814],[1588,1419],[1966,2444],[1033,1996],[603,2476],[-170,4497],[-868,3150],[-822,1731],[-890,1157],[-1235,766],[-1589,1993],[1090,2982],[812,1521],[416,1396],[1029,866],[-840,2999],[23,2469],[-1263,256],[213,1147],[1219,2912],[-1286,1459],[-422,2527],[242,1233],[1870,1225],[1160,-215],[3099,-1212],[2479,-368],[943,-705],[2244,1877],[472,89],[1714,-1697],[712,-358],[1758,-2020],[1736,-1167],[-686,-357],[29,-1063],[720,-978],[3813,-1110],[666,-1180],[607,873],[671,-998],[-697,-564],[95,-2412],[-368,-1246],[527,-1650],[-374,-1787],[1347,-1886],[-79,-660],[-1616,-547],[331,-1890],[1056,1355],[2090,201],[718,-1260],[909,-884],[973,-2592],[707,1167],[2139,1312],[887,1886],[710,-474],[1467,2325],[544,1961],[-521,1335],[1087,1310],[859,2348],[1041,-676],[11,-1710],[799,-1399],[1244,-1033],[-293,-637],[1236,-876],[-86,-822],[1391,-1740],[-276,-1573],[1234,-405],[-128,-936],[493,-2019],[1176,-474],[277,-1729],[-1451,-783],[1519,-815],[835,-1100],[296,-1040],[-762,-1953],[-1158,-1193],[2301,-1677],[-123,-1214],[776,-727],[1226,-154],[526,-1093],[251,-1676],[1619,-146],[830,-1494],[1487,-466],[-8,-980],[2699,-394],[1564,-674],[-80,-1092],[-2182,-905],[-1316,-1065],[458,-670],[2174,360],[1066,472],[747,-1928],[-794,-1368],[2135,498],[1006,-560],[1007,-1107],[511,-1553],[-734,-680],[469,-1077],[-1155,-1748],[1417,-293],[321,-648],[-762,-2403],[-2545,-2821],[-2435,-390],[-1463,-1047],[-621,274],[-1485,-1776],[-295,-1146],[-1981,-2266],[-610,-1083],[-4332,-390],[-4084,704],[-2024,-57],[-4836,-33],[-2440,-329],[-1210,-1201],[-902,-1493],[-169,-1458],[-558,-1195],[-1921,-327],[-2522,-2915],[-1522,-3156],[-1017,-2837],[-754,-1400],[-825,-669],[-2164,-3931],[2239,1734],[1996,3635],[973,2200],[1214,1578],[1627,1535],[4517,3102],[1337,649],[2024,376],[1640,-268],[1191,-811],[847,-1165],[-76,-2234],[-1466,-1613],[-1312,-1201],[-615,-76],[-1230,1079],[-1718,-628],[1601,-954],[931,-1663],[1287,1106],[1202,-757],[-787,-2437],[392,-3213],[900,-3007],[1554,-273],[-83,-1077],[1769,-1185],[1781,-266],[656,-840],[1060,1022],[614,-734],[807,-52],[973,-777],[338,-1480],[-1534,-641],[-954,-881],[-1901,-1255],[-406,-535],[-1094,148],[-859,-603],[-47,-1034],[-845,180],[-141,851],[-954,-487],[-172,-1257],[-1754,-3452],[-982,-367],[-166,-838],[-688,-231],[-633,1745],[-762,-100],[-206,3654],[706,1188],[2738,2875],[1582,1154],[636,-632],[1127,771],[-52,523],[-1243,-34],[-1987,-388],[97,602],[1585,1876],[-542,552],[-1206,-1621],[-2447,-2064],[-1739,-582],[-1720,-272]],[[313626,772218],[346,-1588],[-2416,-1436]],[[311556,769194],[-430,-986],[-568,716],[-1001,-844],[-669,417],[-1344,-2874],[-398,85]],[[307146,765708],[-805,-1067],[-752,416]],[[305589,765057],[-535,-599]],[[305054,764458],[-1745,-5016]],[[303309,759442],[91,-1254],[-737,-2351]],[[302663,755837],[453,-145],[960,-2799],[827,-430],[824,458]],[[305727,752921],[-148,-1305],[-1798,359]],[[303781,751975],[-1476,-1096],[-154,1082]],[[302151,751961],[-430,546]],[[301721,752507],[-289,-2172],[-4081,-691]],[[297351,749644],[-1907,-1489]],[[295444,748155],[178,-543]],[[295622,747612],[3641,794]],[[299263,748406],[1017,-15],[-3093,-2148],[-2577,-739],[-683,541]],[[293927,746045],[-210,-1072],[540,-217]],[[294257,744756],[187,-1248],[-284,-2762],[-629,-1832],[-1161,-2230],[-504,-69]],[[291866,736615],[-1847,2526]],[[290019,739141],[803,-3338]],[[290822,735803],[589,-646],[104,-2299],[-522,-2291],[-1151,-3128],[-482,-1888],[-523,823],[323,1818],[616,1362]],[[289776,729554],[-395,550],[-383,2336]],[[288998,732440],[-516,-655],[-498,1383],[198,916]],[[288182,734084],[-33,3302],[-652,196],[-119,-2599]],[[287378,734983],[73,-1390]],[[287451,733593],[533,-2315],[40,-3030]],[[288024,728248],[-339,-244],[261,-2508],[-587,-518],[170,-1107],[668,354],[755,-559]],[[288952,723666],[364,-2649],[-305,-1261]],[[289011,719756],[-1148,-666],[-959,768],[-34,-1608],[2473,161]],[[289343,718411],[282,-787],[-43,-1326]],[[289582,716298],[-1127,-1627],[-905,-165],[-243,-1249],[711,-1015]],[[288018,712242],[-514,-1150],[-1707,-300]],[[285797,710792],[-1304,-1660]],[[284493,709132],[-1608,-2879],[-639,-85]],[[282246,706168],[-1059,-771]],[[281187,705397],[-867,-1684],[-240,-1113],[-976,-1536]],[[279104,701064],[-1009,-2072],[-1001,-878],[-1201,-1768]],[[275893,696346],[-1256,-3040]],[[274637,693306],[-845,-4185]],[[273792,689121],[-20,-2443],[523,-4873]],[[274295,681805],[799,-3717]],[[275094,678088],[628,-2047],[489,-2162]],[[276211,673879],[153,-2750]],[[276364,671129],[401,-1690],[752,-3936],[173,-1313],[-342,-6345],[-263,-56]],[[277085,657789],[-352,-2398],[-386,-519]],[[276347,654872],[-1569,-597],[-256,611]],[[274522,654886],[41,1255],[-617,1907],[-594,745],[-1605,5246]],[[271747,664039],[-260,-83],[-1173,4440]],[[270314,668396],[-451,2099],[546,4217]],[[270409,674712],[-466,3461]],[[269943,678173],[-743,320],[-1426,3645]],[[267774,682138],[-1175,1596]],[[266599,683734],[-615,-60],[-624,-996]],[[265360,682678],[-801,-808],[-1548,-595],[-248,1485]],[[262763,682760],[-1437,1769]],[[261326,684529],[-1087,760]],[[260239,685289],[-1180,160]],[[259059,685449],[-3277,-828],[233,639]],[[256015,685260],[-252,1699],[-239,214],[-635,-1833]],[[254889,685340],[-1683,270]],[[253206,685610],[-1228,-517]],[[251978,685093],[-1550,-1843]],[[250428,683250],[501,-937]],[[250929,682313],[804,257],[89,-732],[-941,-1097]],[[250881,680741],[435,-1059]],[[251316,679682],[905,-433],[371,-1499],[-865,-794],[-215,1391]],[[251512,678347],[-597,1173],[-864,283],[-351,-1023],[-965,379]],[[248735,679159],[-1208,-1175],[-741,669],[-497,1324],[-1388,2133]],[[244901,682110],[-920,-762]],[[243981,681348],[-435,-993],[-967,404],[-1609,1052],[-1068,-148]],[[239902,681663],[-1170,-483]],[[238732,681180],[-1411,-1121],[-429,1675]],[[236892,681734],[-779,-330]],[[236113,681404],[222,-2496],[-1312,-2476],[-2641,-2654]],[[232382,673778],[-389,-523],[-617,154]],[[231376,673409],[-845,-908],[-736,-1897],[-95,-1013],[-520,-2502],[46,-2838],[180,-1739]],[[229406,662512],[522,-2562],[-313,-883]],[[229615,659067],[533,157],[-103,-1646],[-894,-3583],[-475,-3346],[-165,-3094],[-75,-5195],[-259,-3794],[308,-2452],[621,-1872],[538,-4241],[371,-1835],[2036,-4967],[587,-3425],[971,-2494],[707,-730],[1570,-557],[823,-862],[518,-1780],[335,-260],[899,340],[1026,686],[1864,701],[1258,990],[1873,524],[788,-9],[1645,2022],[1038,1748],[787,3640],[-77,1529],[183,3560],[305,1297],[1336,1312],[3125,1161],[1000,619],[1300,126],[1738,-865],[863,224],[505,-2038],[-328,-1584],[-1066,-2243],[-620,-2355],[-44,-1575],[-689,-867],[416,-1536],[-249,-1175],[368,-532],[-862,-5469],[-516,3974],[-750,-2215]],[[362715,505160],[-779,-145],[262,1274],[610,-206],[-93,-923]],[[361585,506188],[-502,-537],[-554,434],[-83,1091],[1608,756],[152,-534],[-621,-1210]],[[360266,507486],[-642,-342],[317,1557],[325,-1215]],[[360432,507849],[-73,1509],[628,-433],[-555,-1076]],[[360343,517273],[-408,-528],[-272,1047],[507,747],[173,-1266]],[[804877,499882],[-926,665],[-119,1755],[-549,89],[-300,1754],[277,1941],[-486,1512],[-330,2571],[198,2807],[558,2330],[1359,2804]],[[804559,518110],[226,-1429],[456,-685],[1142,-408],[518,212],[1602,-1700],[-84,1623],[478,2798],[658,1319],[-38,1951],[575,789],[3286,1498],[557,498],[1481,3935],[581,1146],[488,1472],[379,1809]],[[816864,532938],[1031,444],[1145,1803],[436,-458]],[[819476,534727],[70,-553]],[[819546,534174],[328,671]],[[819874,534845],[566,-89],[535,1165],[-511,1711],[646,1125],[759,47],[608,2412],[1549,4971],[524,687],[14,-2183],[459,1227],[605,284],[188,-1314],[647,-116],[577,-963],[-55,-1071],[-353,-406],[7,-1609],[488,8],[750,629],[224,-1039],[340,13],[1076,-1181],[1745,-1656],[-246,-1477],[-1220,-973],[-556,-75],[-573,509],[-532,-819],[258,-993],[598,-1117],[-253,-1072],[-480,-256],[-1185,265],[-445,-981]],[[826628,530508],[-292,-601],[658,-1273],[-304,-1376],[-690,-1060],[314,-1959],[395,-767],[1062,-3664],[-505,-2106],[204,-999],[1504,-2682],[1354,-1903],[145,-771],[-427,-719],[-1334,94],[-774,467],[-951,-1185],[-539,-2466],[-137,-1144],[75,-3725],[-193,-1871],[-394,549],[-778,-2647],[-297,-411],[-494,1227],[-507,-2854],[-479,-1337],[-86,-2122],[731,-383],[-207,-2008],[-889,-2355],[-342,-385],[36,-1557],[-401,-2079],[-1905,-1680],[-1608,-1651],[-246,1598],[-271,3182],[-1178,271],[-571,-634],[-694,284],[-493,1150],[-675,472],[-625,-265],[-1346,-1541],[-1252,-231],[-575,634],[-16,1767],[-362,1318],[-599,-816],[-1531,-782],[-1749,648],[-213,690],[-591,6877],[176,2026],[-409,1442],[-476,687]],[[258897,925429],[2682,779],[1756,156],[1170,902],[698,2021],[-2084,200],[-1357,1668],[807,2873],[-578,1842],[224,1188],[1308,2036],[6724,2460],[3090,31],[1235,-2104],[1192,-1128],[1072,-2813],[-482,-1820],[-1180,-1817],[1614,-241],[1159,2091],[1652,21],[1292,-1028],[1709,2313],[2195,786],[2004,-188],[1209,-677],[3186,-743],[698,-1405],[-844,-786],[2717,-236],[59,-1456],[-2406,-761],[971,-1012],[1322,1199],[1819,-62],[-1415,-1533],[2842,-976],[1350,1919],[3090,-904],[969,-1188],[-888,-1150],[-1743,40],[-645,-1121],[716,-608],[2011,570],[1461,1366],[835,-1115],[-112,-1127],[3760,222],[2027,-983],[-57,-1371],[-3104,-961],[3588,-40],[724,728],[1261,-880],[1345,-2633],[-2160,283],[-1585,-1287],[1751,-565],[1694,-9],[1542,-1184],[-268,-747],[-1985,170],[-2321,790],[-324,-727],[1771,-793],[-730,-1456],[-3588,417],[1819,-1258],[3862,-1500],[1769,-1713],[1301,-663],[4116,-124],[1742,-2176],[210,-928],[-1318,-870],[1889,-452],[1473,-725],[629,-1037],[1471,-119],[1367,409],[1636,-1274],[-207,-2565],[-1204,-267],[-1412,581],[-429,-1036],[816,-2476],[-1008,-36],[61,-1254],[-1775,794],[-1149,-1400],[1002,-1381],[-494,-2092],[-1739,1987],[-1710,100],[-608,1835],[-1298,797],[341,1803],[-1463,-272],[-1358,1942],[-2288,1127],[-1086,-1559],[1116,-920],[-320,-705],[-2090,589],[851,-2285],[1240,-375],[268,-2262],[2603,-2439],[1901,-92],[-377,-1472],[1795,-195],[-997,-1250],[1690,-2032],[-242,-904],[1094,-556],[-284,-2078],[-1425,424],[1438,-2947],[-2145,-380],[-3086,1472],[-754,92],[-3049,3881],[-14,-1631],[-1789,1522],[-706,-1060],[1795,-2398],[676,-148],[1693,-1415],[797,-1349],[717,-61],[1832,-2517],[247,-2047],[-1409,130],[-619,592],[-2317,1026],[-2779,454],[-1913,1186],[-839,1454],[-934,868],[-854,-620],[-2318,1685],[-1755,667],[-293,1720],[1301,605],[-1522,1505],[-1770,92],[-1119,2143],[-1418,1036],[53,947],[-681,797],[-1120,-324],[-403,925],[-1393,-1802],[-1944,402],[-2872,-840],[-986,-605],[-2854,501],[-1123,1421],[50,2261],[1325,952],[691,2029],[4235,-1145],[1053,22],[4511,1535],[447,1393],[-1919,1820],[158,816],[1183,750],[2402,2243],[467,1057],[1913,2064],[-1559,3642],[-563,1787],[-1008,755],[-1158,99],[-80,1126],[-1912,497],[-873,2027],[-2008,132],[-2202,-1515],[-1005,174],[110,1615],[2848,455],[31,893],[-1651,1158],[-2801,1299],[1171,612],[-1349,798],[-1183,-319],[107,2051],[-589,531],[-3211,477],[978,-2146],[-417,-492],[-2233,-182],[-1076,890],[-3223,-127],[-622,-534],[-2621,-418],[-1967,1079],[-1912,-330],[-5361,900],[-627,-511],[-1725,1184],[-214,852],[-3737,-701],[-2801,2013],[-911,1084],[-233,1418],[1673,206],[2124,-671],[2208,532],[-2378,1255],[-4466,440],[-929,840],[321,4318],[-255,784],[1675,2627],[49,1410],[959,1652],[1997,1681],[1832,958],[2731,700],[3913,-177],[697,-932],[-2584,-1701],[-1952,-2831],[-8,-1692],[759,-1556],[-130,-1971],[1954,-2333],[2171,-1547],[-5287,-2123]],[[181754,934963],[2476,308],[1684,2040],[2813,-685],[2432,-1014],[-601,-1446],[2190,541],[1379,-501],[742,1408],[-1834,755],[1655,724],[3184,-2163],[534,-751],[911,-4419],[1133,-730],[1388,1888],[-1176,1540],[-174,1429],[-1154,4030],[613,1385],[3873,-746],[2998,-1847],[2379,-6394],[897,-1218],[66,-1459],[-583,-1846],[3098,-2730],[2299,-621],[2986,-2067],[1569,82],[83,-2838],[-2128,312],[-941,1102],[-1065,-668],[48,-1763],[1214,-214],[675,-1754],[-213,-990],[-2480,-557],[-821,-599],[-5917,523],[665,1078],[-2856,532],[-1094,525],[-778,1410],[-2240,-2931],[-3134,-633],[-1117,-845],[-2666,-726],[-7596,-805],[-1477,66],[-1356,1805],[101,2253],[-1627,530],[-2769,-154],[-1850,238],[-1655,644],[-2063,2023],[-584,1406],[1163,829],[6766,1169],[5090,-597],[3461,733],[-3239,1231],[-3765,956],[-1392,-389],[-4055,-359],[-891,290],[-3446,-217],[-1904,1472],[-358,1154],[1486,737],[4736,1190],[-76,356],[-3497,144],[-2176,-424],[-417,522],[1686,1155],[-3278,-227],[-634,1359],[2215,2048],[-607,1585],[3579,2690],[7252,2627],[1839,-1063],[109,-2177],[-1783,-1257]],[[315599,995717],[4347,102],[5207,-2408],[4487,-431],[325,-1175],[-7987,-2775],[-3243,-54],[-711,-1480],[2338,-684],[-11634,-4524],[-7073,-5229],[-3475,-369],[-1986,-1009],[-10267,-1349],[7218,-254],[-331,-1275],[-3169,-228],[2821,-1075],[-19,-1188],[-1597,-422],[812,-1118],[-2013,-687],[192,-1064],[-3905,-697],[-3939,335],[1697,-2395],[-1397,-1186],[-2611,-440],[842,-1105],[-1158,-1072],[1867,-600],[1864,1169],[802,-2184],[-2280,-698],[-3267,-1547],[-3293,-757],[620,1627],[-3700,567],[-534,-720],[-3870,175],[-1981,-631],[-2341,-170],[-2349,450],[-4296,-150],[-5197,1208],[-101,1813],[2836,1304],[4118,621],[-3284,2995],[263,833],[2298,453],[3541,-1066],[952,-1626],[2906,-366],[-1858,1753],[-368,1176],[-1537,1116],[-4311,427],[420,2048],[2380,1869],[4334,588],[2295,1680],[-2779,2720],[-3658,791],[-121,3061],[7363,-240],[6808,-3223],[-348,1438],[-2003,538],[-2648,1668],[7524,812],[4001,917],[-1225,1338],[-4050,-1130],[-6036,-671],[-8150,-65],[-5839,891],[-3511,1361],[-2402,1551],[118,1207],[2083,1456],[-5886,647],[3037,843],[3768,-84],[620,875],[5770,1181],[4241,393],[-1067,1082],[8625,-1058],[1285,2294],[1656,791],[6262,887],[5626,-472],[1114,1266],[6844,-375],[4857,393],[8521,78],[-201,-617],[9101,-645]],[[345433,810871],[526,-198],[-927,-2162],[-125,-1494],[-2243,-5013],[-772,-2172],[272,-767],[882,1566],[1117,1284],[1274,-753],[-944,-2794],[813,-601],[1433,89],[934,-844],[749,1520],[371,-1242],[1180,931],[1489,-1308],[-1306,-2184],[96,-1838],[672,-1097],[492,943],[1090,869],[283,-551],[-297,-1122],[-893,-795],[-1074,-460],[381,-994],[-438,-1383],[158,-978],[567,-627],[731,2827],[1126,519],[-690,-1791],[-283,-1300],[1695,-465],[-526,-1457],[-242,-1914],[-837,-1661],[-947,-148],[-241,590],[289,2376],[-1257,-1623],[-497,675],[951,2719],[-464,2265],[-658,548],[-560,-2340],[-480,-685],[-637,159],[-619,-1149],[-511,-1634],[-1565,-421],[-225,1120],[1623,1449],[1242,1483],[-1284,684],[-754,-853],[-920,293],[185,1432],[-1110,-1064],[-1779,-444],[-1230,395],[-2861,507],[-1056,-622],[-1054,-182],[-503,359],[-249,1683],[2687,3180],[-837,514],[1084,3009],[629,-266],[298,3247],[1947,6266],[947,1870],[940,2572],[1693,1199],[1049,254]],[[164131,945727],[2417,-933],[3292,-616],[2195,656],[1905,-337],[5031,-3360],[793,-1028],[-1476,-857],[-2406,-803],[-6748,-3304],[-565,-1518],[-2368,-1132],[-581,-2957],[-483,-1015],[-2137,-832],[-1830,-231],[-2458,-1527],[-1477,698],[-727,1788],[-1094,1141],[-4037,1638],[-548,1114],[1071,1881],[962,487],[-202,1636],[1681,621],[-961,1143],[2546,3360],[-910,1027],[-1053,2347],[1983,792],[7118,775],[1067,-654]],[[232503,961169],[1729,122],[3474,-864],[2211,-123],[1606,-1637],[1913,-147],[2531,556],[2364,-728],[-193,-678],[3836,-907],[-1276,-791],[-3065,63],[6230,-3012],[1154,-914],[2927,442],[1862,-1141],[863,658],[4930,1177],[1219,656],[3026,-232],[1475,366],[3412,-436],[350,-822],[1954,50],[1857,-1087],[364,-967],[-2128,-1324],[1965,-324],[-2061,-2507],[-4954,-546],[-4317,324],[-3609,-273],[-3736,95],[-4561,-260],[-1690,162],[228,1514],[-1921,-229],[-361,-804],[-2065,-287],[-2544,888],[-1646,-232],[-1374,719],[-1192,3881],[1139,1089],[-302,1082],[-2696,3403],[-1793,-531],[-2809,149],[-2956,578],[-1544,2160],[-1432,927],[1606,742]],[[263566,892779],[1085,-1048],[713,1067],[769,-1090],[2393,-1192],[1520,-1623],[1195,-292],[1743,-1773],[-400,-2311],[2550,253],[2113,-2002],[-2078,-1876],[-3781,1124],[-116,1167],[-1976,1165],[-1599,-128],[-135,-1571],[-1352,-827],[-1154,-1837],[-2062,-1178],[-832,455],[67,2458],[-351,879],[-3343,-1189],[-773,977],[740,1051],[2120,1154],[-480,1341],[-123,1634],[731,1917],[127,3428],[262,1330],[1095,1139],[1131,-574],[201,-2028]],[[198822,955420],[1778,-64],[285,-1027],[1721,-66],[1197,1061],[3096,-835],[456,-1409],[-1746,-3594],[-3392,-936],[-1254,433],[-2065,-397],[-1486,747],[-1855,-1083],[-2180,-234],[-546,-685],[-3390,-1302],[-2472,-474],[-2776,282],[-2027,1434],[4388,1704],[3249,63],[279,895],[-3066,141],[-1011,-437],[-3783,-56],[-1774,-711],[-1817,44],[-5487,1663],[2356,3256],[578,1875],[2233,757],[885,1243],[3751,38],[439,-1591],[2145,442],[1849,-427],[2665,-2130],[1086,-1883],[1934,284],[4018,-444],[680,706],[-998,879],[-2453,784],[2174,1239],[-3036,1222],[2406,2285],[2653,388],[63,-1862],[1197,-1269],[-947,-949]],[[239900,986501],[5103,-998],[3043,-3353],[4759,-844],[3852,-273],[178,-1932],[1672,-930],[883,-1519],[3049,-567],[1780,-1754],[-5594,-1507],[-1765,-2095],[-2921,-1789],[-648,-1217],[-2613,1307],[-1638,-1372],[-3362,216],[-2597,777],[-5036,3988],[4525,1585],[-4611,1002],[-1797,-918],[-2118,849],[120,760],[-2889,3247],[2546,2906],[4475,119],[-2169,987],[-652,1343],[5765,550],[-1340,1432]],[[222816,942518],[1783,-952],[4129,943],[1301,-198],[679,-1291],[-4156,-3765],[1708,250],[1522,-431],[530,-1121],[1419,-190],[857,-1937],[-794,-850],[198,-1890],[-678,-857],[-3677,-1617],[-1204,-1263],[-890,-48],[-1471,1124],[-1370,2098],[-2336,1971],[-3381,1003],[-2171,1942],[545,2021],[2002,-159],[1454,-1744],[2414,254],[891,779],[-1024,2251],[-1380,0],[-1973,1339],[1207,683],[633,1217],[3233,438]],[[148116,800534],[-353,296],[-973,-342],[84,1453],[-1610,173],[-1398,2348],[-507,1214],[926,807],[1790,-820],[169,-337],[2001,-1067],[2750,-790],[731,-982],[1608,-4230],[1666,-1006],[1212,-1765],[796,-2274],[447,-783],[-929,-1068],[-3051,1771],[-1159,1008],[812,1348],[-1364,-46],[-380,-488],[-862,871],[-589,2293],[-1414,-476],[237,1553],[-640,1339]],[[248395,941121],[-1974,-2361],[-1419,-2252],[-1417,-981],[-2211,448],[-2023,-450],[1085,-1528],[-1070,-941],[-585,-1425],[-3156,-410],[98,2820],[-1443,2049],[224,4824],[821,935],[-79,1207],[1818,644],[3291,519],[3279,-828],[3395,-152],[2116,-516],[-750,-1602]],[[226530,958469],[2188,-605],[490,-5887],[-1510,-1227],[1321,-821],[-1486,-670],[-4037,-335],[-2288,336],[-585,2014],[2410,1303],[-742,498],[-7074,-967],[-903,650],[3342,2093],[-1338,1628],[722,1158],[1514,-166],[2520,-2047],[991,499],[-929,1267],[-1638,722],[2278,862],[3426,-1038],[1328,733]],[[179443,962744],[-2738,-1016],[1254,-1419],[136,-1233],[-3157,-888],[322,-924],[-1687,-669],[-1369,801],[487,1743],[-2553,-1055],[626,-1104],[-2128,-1160],[-1184,-1504],[-1512,-410],[-2039,925],[-2942,358],[-1341,762],[-218,1058],[3293,844],[6554,4985],[3666,231],[1450,-451],[2542,1472],[2538,-1346]],[[229278,917545],[1973,-950],[2323,-2096],[416,-2409],[-1394,-1497],[-798,-159],[-2634,623],[-1983,1389],[-1724,578],[-1095,-206],[-666,1567],[1859,344],[823,645],[-198,1592],[1775,2019],[1323,-1440]],[[214060,974127],[1839,-1230],[1736,287],[1459,-1650],[2224,91],[1908,-1233],[-194,-1788],[2117,-1378],[-566,-1274],[-3057,-259],[-2109,2134],[-4948,1185],[-4619,-577],[-1517,1397],[4142,-25],[185,1659],[-3427,1392],[-1964,-87],[-224,1750],[4409,399],[2606,-793]],[[275493,941654],[905,154],[2916,-771],[3647,186],[2555,-911],[3231,-3573],[-880,-552],[-3690,507],[-1516,-49],[-2493,-833],[-2395,672],[-738,2213],[-1642,536],[100,2421]],[[331091,778147],[-987,-2172],[880,-266],[747,1346],[-539,408],[1247,1459],[101,692],[1284,-1228],[-102,-999],[-1049,-1354],[-1178,-753],[-660,280],[-1291,-252],[-527,2626],[428,169],[1278,3808],[880,1846],[852,-964],[-309,-3056],[-1055,-1590]],[[289190,903268],[-3106,16],[-579,1140],[-204,1690],[872,1992],[1004,1204],[1985,428],[2456,-1043],[-68,-3283],[-410,-1006],[-1950,-1138]],[[328208,795804],[-1019,-2],[-2461,951],[-1060,803],[-1567,2005],[-1174,1200],[875,228],[2122,-708],[2166,-1240],[1353,-1342],[612,-231],[634,-1281],[-481,-383]],[[240573,948515],[-871,-1531],[-2740,-45],[-5354,2106],[549,1245],[1936,1913],[2342,659],[1631,-306],[2268,-1981],[239,-2060]],[[131606,823111],[482,-550],[839,685],[328,1891],[991,724],[-705,-3993],[-795,-1645],[-781,-306],[-739,1078],[-25,873],[-973,1924],[184,2190],[2070,-351],[576,-1339],[-346,-600],[-1106,-581]],[[272256,877844],[62,-1394],[-2505,-2621],[-790,-547],[-1619,173],[-486,1098],[904,2530],[810,698],[885,-418],[945,478],[1794,3]],[[321948,782241],[678,-1586],[367,-164],[4827,-95],[-1070,-848],[-498,-1023],[137,-965],[-907,-93],[-207,1099],[-1930,361],[-1008,1121],[-414,1275],[25,918]],[[232511,969918],[2054,-70],[1997,-924],[-1121,-833],[354,-1581],[-5516,-858],[-947,1068],[1591,886],[-2917,909],[-1160,896],[-149,1877],[2091,304],[3894,-1056],[-171,-618]],[[192074,965788],[2313,-512],[-96,-1082],[-2046,-803],[-3402,-554],[-3205,1531],[76,1990],[6066,1008],[2778,120],[413,-1069],[-2897,-629]],[[209647,939209],[-1714,-2318],[-839,51],[-2811,2696],[-1468,369],[1366,1470],[3744,236],[1716,-895],[6,-1609]],[[278649,869959],[-470,-212],[-1007,1307],[-2,2018],[669,1228],[1033,403],[918,-1085],[-1141,-3659]],[[275841,817183],[-3465,1614],[313,1246],[1952,125],[845,-1138],[355,-1847]],[[196550,969542],[-469,-891],[-5479,-128],[-4419,929],[7217,1827],[3150,-1737]],[[234831,965723],[5032,-202],[1576,-731],[-1354,-1287],[-6281,128],[-1314,993],[2341,1099]],[[133970,820163],[-673,-859],[861,-2514],[1023,-1868],[-274,-399],[-1844,3167],[-732,969],[-71,995],[1421,790],[289,-281]],[[142969,819108],[-262,-2355],[-1060,541],[-356,851],[183,2087],[895,-40],[600,-1084]],[[296197,906465],[-2632,-138],[-1210,1040],[86,797],[3569,-528],[187,-1171]],[[171600,952637],[-921,-595],[-1821,1161],[3961,2463],[665,-775],[-1884,-2254]],[[280308,838460],[-1062,-1079],[-1064,-443],[1745,3106],[787,-955],[-406,-629]],[[250146,962205],[-1237,-118],[-2289,1130],[259,1303],[1940,142],[1716,-799],[-389,-1658]],[[283740,878725],[-1817,1713],[973,539],[1417,-400],[324,-1276],[-897,-576]],[[209812,961734],[-2199,256],[-2300,3216],[2471,-594],[2028,-2878]],[[214832,955681],[-1893,-465],[-2126,82],[-250,1010],[4116,560],[153,-1187]],[[259941,906507],[-1267,251],[-120,1659],[1478,507],[-91,-2417]],[[211004,949360],[-2332,409],[509,1127],[2418,350],[718,-1220],[-1313,-666]],[[280877,913087],[-1397,139],[2481,2736],[709,-636],[-1793,-2239]],[[212907,956968],[-2830,36],[-762,1518],[1509,453],[3125,-1374],[-1042,-633]],[[320334,868965],[-330,-569],[-1786,1295],[140,508],[1824,-14],[152,-1220]],[[222816,979517],[1992,-86],[1205,-2040],[-4235,640],[1038,1486]],[[278712,918477],[935,-644],[-1764,-912],[-2106,680],[2935,876]],[[311227,862271],[-1326,-283],[521,1831],[1131,-484],[-326,-1064]],[[145181,812941],[-350,1054],[1625,1742],[-56,-991],[-908,-750],[-311,-1055]],[[285413,882187],[1277,-434],[651,-937],[-1133,-291],[-795,1662]],[[304545,876517],[536,-866],[-1529,-128],[-129,1287],[1122,-293]],[[183714,965216],[-1153,-144],[-2234,1513],[2178,455],[2103,-1311],[-894,-513]],[[265130,893670],[-1500,729],[700,1186],[800,-1915]],[[286307,914519],[-923,0],[-234,1535],[1813,58],[-656,-1593]],[[219003,965800],[-2526,-873],[-1245,678],[2144,637],[1627,-442]],[[234461,917254],[755,-631],[-482,-981],[-1281,226],[174,1286],[834,100]],[[148116,800534],[184,-1579],[-1019,864],[835,715]],[[310172,180752],[-706,-922],[717,-1942],[-1138,174],[-249,1423],[-1094,209],[-1094,-913],[-648,937],[552,712],[2879,701],[781,-379]],[[313780,179921],[-482,-977],[-2626,686],[-224,1569],[2793,-82],[539,-1196]],[[307955,180937],[-1958,-472],[460,1100],[1498,-628]],[[302104,186245],[772,-946],[-521,-918],[-1220,1681],[969,183]],[[300252,187521],[720,-674],[-234,-1751],[-1355,1329],[869,1096]],[[304260,189171],[297,-2314],[-1430,-59],[1133,2373]],[[297398,189327],[181,-648],[1069,-155],[816,-992],[-717,-1197],[-826,-283],[-155,1464],[-669,276],[-680,1063],[981,472]],[[294592,192452],[1641,-1092],[-208,-613],[-1433,1705]],[[297135,193422],[1169,-7],[439,190],[915,968],[945,-205],[777,307],[228,-1140],[-1414,-1090],[-900,-161],[122,-858],[-894,-225],[-35,-1836],[-2004,2237],[1201,112],[-549,1708]],[[292432,218128],[456,-239],[289,-2241],[-58,-2410],[258,-1400],[-159,-1078],[-513,-848],[-1404,1202],[-598,2165],[66,1353],[1247,-567],[240,1538],[-498,1978],[674,547]],[[290783,218459],[-833,-408],[7,1394],[543,112],[283,-1098]],[[292687,220205],[68,-1393],[-761,-449],[226,2189],[467,-347]],[[291990,219823],[-748,361],[313,1335],[639,-894],[-204,-802]],[[291522,218525],[-1192,1503],[374,1079],[818,-2582]],[[295413,233409],[-737,242],[113,1050],[563,-85],[61,-1207]],[[295268,238357],[-1434,511],[126,780],[1103,201],[205,-1492]],[[294822,241756],[-1066,-779],[-420,1103],[1207,128],[279,-452]],[[297502,243157],[557,-540],[-511,-1339],[-918,-1039],[-676,1720],[1548,1198]],[[294768,258642],[749,26],[417,-1814],[-249,-1261],[-548,-620],[-101,-977],[630,-890],[-86,-809],[-858,-3019],[-1041,454],[-382,554],[685,2136],[-11,3559],[365,1194],[-33,1317],[463,150]],[[808066,624018],[-49,-2642],[-1114,-2263],[74,-2307],[-1589,-2147],[-547,-352],[-375,-967],[-2479,1788],[-172,1905],[-54,2683],[164,601],[1619,2111],[156,1090],[1097,495],[798,-414],[1119,795],[791,244],[561,-620]],[[838514,691959],[-265,-108],[-1113,876],[-405,1290],[1841,-1694],[-58,-364]],[[620399,438638],[192,-325],[272,-2716],[-614,202],[-170,650],[117,1900],[203,289]],[[434051,596481],[862,-2103],[-548,-414],[-409,1056],[95,1461]],[[436684,601692],[325,-440],[-322,-1011],[-434,215],[431,1236]],[[430397,607366],[179,-761],[-825,-845],[-112,1104],[758,502]],[[272961,642618],[493,-539],[762,376],[466,-574],[725,639],[1639,-1357],[739,28],[869,-871],[514,-1364],[729,-898],[1531,-42],[1466,-1487],[970,-1482],[1070,-1280],[53,538],[2413,-2751],[1138,-852],[1135,-27],[400,-704],[-285,-1634],[1804,-208],[674,-425],[693,-1257],[939,-641],[168,-644],[-458,-738],[-1524,-251],[-1241,-853],[-1195,445],[-1200,162],[-1604,-242],[-2604,-693],[126,1125],[628,1056],[588,520],[303,1060],[-733,1489],[-1925,-84],[-1203,1997],[-330,2463],[-447,1083],[-1511,-441],[-3953,2901],[-2718,885],[-1205,937],[1192,541],[95,720],[-571,610],[-2105,5],[-915,-879],[-997,-1642],[-1842,-1097],[-212,-878],[-815,-490],[-1058,210],[488,853],[472,1977],[503,1165],[906,1142],[2018,1421],[1852,663],[601,493],[1489,-179]],[[270679,633238],[-913,-719],[-578,2023],[407,926],[677,-310],[407,-1920]],[[594145,712482],[-532,65],[-314,-939],[-1614,-1033],[-848,-13],[-817,664],[-240,1886],[1853,1757],[1183,-232],[1555,-45],[87,-2015],[-313,-95]],[[537253,828842],[712,-799],[9,-1122],[-838,-445],[-588,710],[705,1656]],[[329380,598249],[495,-996],[-37,-1268],[-308,-259],[-279,1983],[129,540]],[[531870,829930],[951,-278],[63,-817],[-925,-96],[-1139,611],[472,1260],[578,-680]],[[542003,830969],[-1200,460],[230,1225],[1069,-1043],[-99,-642]],[[529090,834208],[778,-491],[235,-1110],[-253,-1317],[-711,-204],[-1407,787],[-667,2011],[1553,697],[472,-373]],[[534998,835567],[-801,-2306],[-441,-2208],[-1048,156],[-85,837],[-867,120],[-629,984],[-298,1479],[345,613],[1890,1495],[1279,690],[753,-444],[-98,-1416]],[[529325,844348],[-596,-1704],[-883,599],[-2581,-364],[-1026,-485],[-286,1018],[2148,205],[1879,2529],[1008,63],[337,-1861]],[[300671,622266],[517,1214],[1625,122],[1749,-1381],[1284,-721],[760,-1650],[1113,279],[4,-904],[-1046,194],[-86,-816],[1047,-368],[932,25],[587,-552],[1055,-1914],[-351,-1412],[-858,-768],[-513,1011],[-2184,294],[-889,-517],[-473,-834],[-754,-206],[-593,1285],[-770,-759],[-574,-1993],[-771,-1719],[-412,641],[-401,1570]],[[300669,612387],[-785,1188],[-1336,-83],[-1048,-382],[-1283,520],[-810,8],[-804,-766],[-1057,1020],[-436,764],[163,1194],[585,340],[1548,-1038],[2706,-279],[828,486],[139,878],[-1315,2044],[300,2500],[-978,1038],[-962,59],[-159,723],[730,920],[1025,212],[1339,-1063],[1612,-404]],[[563782,852230],[633,-808],[-952,-1045],[-2170,-1466],[-506,1650],[411,965],[1435,834],[1149,-130]],[[563719,854333],[47,-727],[-1347,-725],[-203,1268],[674,862],[829,-678]],[[336495,202647],[704,-353],[533,-960],[1329,882],[490,-994],[26,-955],[-2177,-1157],[-399,-1154],[-989,349],[-1220,-1656],[-687,1044],[618,1605],[822,765],[950,2584]],[[335044,202370],[384,-746],[-1459,-2229],[-1627,-1915],[-857,-197],[-532,765],[1811,1649],[-480,2113],[2363,-199],[397,759]],[[526314,759506],[244,-4339],[-851,-4468],[-432,-64],[-862,865],[-605,4579],[459,1378],[970,834],[510,-71],[567,1286]],[[902645,586200],[-526,-1870],[-336,374],[539,1516],[323,-20]],[[491382,852435],[-234,-1870],[-2282,-2374],[206,-619],[-373,-1613],[1605,880],[2554,-146],[1340,163],[836,-1326],[-1534,-4033],[-1264,-1851],[-32,-1704],[-1690,-1036],[887,-405],[1378,442],[964,-575],[1414,-1813],[1239,-5061],[407,-800],[1597,-871],[1152,-2240],[1293,-5957],[-845,-1186],[716,-508],[780,1001],[2125,-271],[1067,-1184],[167,-1522],[-486,-2284],[-1051,-1202],[-620,-272],[-1638,-2273],[1471,-632],[1461,231],[-107,-1068],[-1499,-1659],[-1594,-965],[-3305,426],[-2968,-673],[-268,-769],[-2335,874],[-1450,-714],[-177,-1305],[-585,-1079],[-1406,943],[-1273,-282],[-1092,-854],[-558,-895],[-870,149],[272,923],[1780,2291],[1704,3480],[3397,351],[1057,2162],[-1628,-1234],[-1022,87],[-2712,1931],[-1412,-711],[-435,1482],[361,829],[809,254],[1624,1220],[478,1529],[-277,2321],[-1030,-515],[-580,170],[1725,2245],[2989,1029],[44,3029],[370,1657],[-1028,-316],[-1048,2005],[763,2415],[-307,442],[-1082,-825],[-2072,-454],[-1535,592],[127,948],[1131,2471],[-244,3099],[-346,584],[-1387,-1079],[-323,-3012],[-778,141],[573,2229],[-82,896],[337,2899],[-1418,1400],[773,1232],[-34,1071],[427,1391],[-648,564],[167,2164],[896,844],[203,1190],[684,1211],[358,2028],[1751,-517],[3505,639]],[[488083,820004],[-823,704],[819,798],[679,-590],[-675,-912]],[[479844,831277],[2196,1067],[1185,-457],[667,-1903],[340,-3581],[-592,-694],[-1116,-79]],[[482524,825630],[-100,-1385],[543,-1719],[-241,-1466],[419,-2768],[-929,-3411],[-3237,-1423],[-1245,-1307],[-2019,-1501],[-2640,-439],[441,1398],[-1435,-849],[-652,1851],[912,1413],[360,1713],[986,764],[1128,249],[29,638],[-1665,-142],[1529,2642],[158,748],[-1577,-193],[17,821],[-1375,480],[530,1184],[826,762],[-231,695],[-1173,1471],[306,921],[1810,75],[612,-856],[589,722],[834,-325],[910,1420],[-897,841],[-122,884],[983,2061],[1447,606],[658,-1241],[436,2167],[1087,-681],[-692,-1173]],[[483089,834713],[-597,-377],[-616,641],[265,982],[846,372],[102,-1618]],[[483791,838655],[-1162,1063],[357,966],[1283,-1175],[-478,-854]],[[482707,849980],[-519,-1315],[-1884,16],[622,1048],[1693,1901],[88,-1650]],[[329301,603354],[165,-1668],[-514,-1297],[-349,-263],[-288,1893],[619,-7],[367,1342]],[[524772,527204],[-624,-2323],[-683,301],[-19,918],[528,1502],[672,461],[126,-859]],[[566764,715752],[1280,-880],[1524,54],[1520,-283],[675,-1193],[1156,861],[-11,-1311],[-2715,-484],[-1407,266],[-97,430],[-1420,608],[-1674,244],[-243,444],[152,1472],[1260,-228]],[[577405,718186],[-445,1384],[608,1067],[782,-187],[-420,-1440],[-525,-824]],[[557182,733070],[642,-1955],[-761,-99],[-550,451],[173,1031],[496,572]],[[572552,731803],[-805,1826],[888,-207],[-83,-1619]],[[568214,730291],[-674,243],[-471,1224],[-2365,3199],[-853,613],[917,1000],[469,-1239],[1377,-923],[650,-1945],[992,-1152],[-42,-1020]],[[573915,736406],[-1197,30],[-918,1003],[169,593],[1242,529],[704,-2155]],[[409922,999999],[7140,-194],[7051,-707],[4494,-995],[3813,-2437],[4940,-520],[3394,-1138],[-2601,-1335],[-7827,-1297],[-7059,251],[-6601,-599],[-4008,-1625],[10309,1290],[8849,-317],[-342,-1315],[-5180,-1276],[530,-725],[8516,1808],[415,1620],[5134,403],[766,-829],[-862,-2818],[-5327,-3467],[3344,701],[7009,3320],[5945,-1140],[3120,2320],[5735,345],[5683,-1057],[2274,-1020],[-5642,-2627],[-2736,4],[-145,-1485],[-3032,-861],[-3277,-2533],[-3455,-130],[-4196,534],[-2145,-1064],[2796,-319],[4103,370],[1494,-498],[-1452,-1407],[-3489,-173],[-1580,-2091],[1594,-757],[-2069,-1001],[-634,-1522],[-3239,-375],[345,-1481],[-1074,-2359],[888,-1071],[4887,-1208],[-3828,-188],[558,-1564],[2822,-1019],[2420,175],[849,-939],[-578,-2210],[-4370,968],[-1513,-135],[-2591,-1297],[-2457,825],[-189,-1498],[2067,-1846],[1932,312],[3462,-1029],[-956,-435],[1595,-1759],[506,-1795],[-703,-1836],[-2499,918],[-812,-3679],[3342,-186],[1710,-958],[-1110,-1229],[-2170,31],[-333,-700],[-4078,-595],[3522,-1030],[279,-2078],[-456,-490],[-2356,98],[-2178,-1227],[-2168,421],[-2982,1598],[-4066,-1207],[-965,-1381],[2143,-637],[-1138,-1313],[1996,-819],[561,-1634],[4716,-2577],[1248,-1190],[314,-2153],[1549,-44],[-425,-1996],[529,-379],[-122,-3484],[-4518,185],[-1612,990],[-1886,4162],[-1908,408],[-932,-1422],[-2385,-1095],[-2240,-170],[-1207,452],[-1659,-3090],[1180,-567],[3565,494],[1872,-1134],[1969,768],[3947,-1665],[2918,-322],[-995,-1761],[-1529,-237],[-1047,-1407],[-2827,-1659],[-369,-897],[-1438,-1166],[-2421,-1262],[-3596,-931],[-1189,-95],[-1931,-769],[-994,-836],[-1330,1193],[-669,-1141],[-2212,-985],[-1466,113],[-627,879],[-1761,734],[442,-1896],[-717,-881],[-2522,-1998],[-603,-2132],[-1196,-1335],[-961,-2094],[-1174,-1566],[-1413,-517],[-2396,-1944],[-2789,275],[-313,-1247],[-1321,1045],[298,1238],[897,1135],[-2067,-105],[67,-1232],[-524,-952],[-290,-1927],[-1029,-317],[-2004,809],[-471,-624],[-1365,-261],[326,-882],[-364,-1887],[-2679,-86],[-465,-644],[1082,-1353],[730,-1662],[-211,-451],[-2495,-173],[530,-1025],[1318,67],[739,-527],[-361,-1000],[94,-1512],[-1540,-1634],[-1535,880],[-439,-467],[1165,-1831],[-1063,-609],[315,-1286],[-2104,32],[-649,-918],[1276,-2260],[-140,-1737],[519,-301],[-846,-1552],[161,-1215],[-559,-1785],[-812,-1662],[78,-1810],[-1163,-449],[-284,-1020],[710,-1631],[-2146,526],[-382,813],[-2099,-1792],[-518,1105],[-123,1673],[-708,508],[-1126,-1],[-112,1644],[-1844,1469],[-891,-1321],[-725,566],[-1933,-249],[-617,1155],[-1916,735],[-1510,1787],[508,2217],[-1306,1649],[-2159,1229],[-321,633],[532,1245],[-274,1204],[-913,252],[224,1120],[-1395,54],[-404,802],[-98,1949],[-1688,3373],[1528,-77],[1262,1394],[212,1609],[-1015,552],[-741,-344],[-1197,-2553],[-821,43],[107,2537],[1751,1424],[-757,280],[-684,-1116],[-747,58],[95,2365],[-2078,2575],[-176,1233],[-861,4],[-305,1331],[-914,1697],[1198,1833],[1597,-79],[48,1036],[-2551,246],[-876,979],[366,2994],[1334,2168],[-75,1274],[2102,130],[1498,-765],[2505,-115],[-221,1482],[-3501,-280],[-1677,506],[1759,1416],[2279,-198],[1483,389],[243,854],[-614,1092],[249,1053],[2334,-252],[-573,1291],[-1327,-31],[1275,2223],[539,2010],[-2826,353],[-2052,-96],[-3211,1846],[-2335,420],[-1564,1473],[1322,992],[4514,-726],[1982,-1365],[1958,-227],[-932,1532],[482,2583],[-2355,-240],[-1216,723],[844,903],[-2112,313],[1417,1238],[-2539,1367],[-962,-859],[-424,-1616],[-2412,-507],[-1786,350],[-1318,1605],[1796,1420],[-932,688],[1819,1342],[870,3278],[-1837,2127],[225,1404],[-2073,1187],[495,1656],[-1404,825],[-768,2397],[863,274],[-2031,1629],[-338,869],[-2863,1003],[-1082,1525],[925,1101],[-659,976],[-1828,42],[-1969,1567],[-3296,1117],[-4181,543],[-2656,758],[-4370,-1240],[-5441,605],[-976,-581],[1263,-1257],[-3803,654],[-3954,1821],[2335,1026],[-991,735],[-4110,680],[-2083,1302],[568,689],[7372,1317],[3566,186],[2317,-498],[1045,1158],[-2688,1128],[-1670,-973],[-4610,-353],[-2042,491],[-86,816],[-6231,1792],[-1710,990],[796,2092],[9390,1837],[411,789],[4903,998],[3283,-83],[3516,2310],[-493,2841],[-5502,512],[-920,1672],[5034,1905],[4888,2527],[2143,610],[5092,-587],[612,2560],[-780,1665],[7169,1652],[11536,1568],[2492,-1478],[2916,-703],[7375,-747],[1153,325],[-3577,1592],[-1117,1825],[5017,-87],[4982,-1646],[3238,-637],[3410,-1892],[1047,1155],[540,885],[-467,768],[2326,958],[-5232,2071],[3164,487],[-2240,1476],[7696,1056],[5270,-1573],[4533,-201],[4116,1064],[-3418,526],[65,1102],[6865,766],[11148,295]],[[379906,860853],[-985,-973],[-944,505],[-511,1056],[2440,-588]],[[395935,894847],[360,-1009],[-1184,-604],[-681,790],[844,1301],[661,-478]],[[358318,919055],[634,-275],[-549,-1847],[-1159,827],[1074,1295]],[[355977,917412],[-1069,-1075],[-3723,-1228],[-1549,460],[-139,1331],[-1448,155],[-318,3791],[979,505],[3261,-635],[1548,-1621],[1712,-619],[746,-1064]],[[422573,922068],[-539,826],[1788,1194],[4821,1646],[909,-1290],[-206,-1130],[-6773,-1246]],[[439095,934198],[-1262,-2127],[-5408,2771],[-425,1535],[3209,-25],[3886,-2154]],[[438669,936869],[314,-1458],[-2062,363],[-1252,748],[-142,1133],[3142,-786]],[[433877,939382],[1628,-706],[552,-861],[-4334,-335],[-3234,956],[1247,1206],[1389,189],[2752,-449]],[[444291,947391],[-1681,588],[169,1006],[1437,156],[933,-935],[-858,-815]],[[450512,950919],[-188,-1256],[-1887,-739],[-985,348],[96,1666],[2964,-19]],[[357791,990404],[-5388,669],[1025,1188],[4363,-1857]],[[375837,991032],[-964,-243],[-2318,1051],[-2953,811],[-2240,1521],[4683,91],[4576,-1753],[-1964,-759],[1180,-719]],[[297761,616795],[-1196,422],[92,715],[1104,-1137]],[[841473,441306],[-312,797],[1624,1815],[-101,-1257],[-1211,-1355]],[[835073,445300],[-573,-315],[-591,241],[-930,1803],[-732,997],[-1180,188],[-695,1122],[741,1055],[802,41],[1208,438],[372,-787],[1471,-1967],[657,-1897],[-550,-919]],[[847464,449888],[-890,-2256],[-971,-1864],[-1681,-1114],[-902,-38],[529,4044],[151,582],[863,1394]],[[844563,450636],[739,811],[465,148]],[[845767,451595],[1313,1276]],[[847080,452871],[691,2052],[1158,448],[4546,898],[-697,-1765],[-847,-458],[-475,-697],[-1750,-1503],[-1379,-775],[-863,-1183]],[[844076,457257],[-994,-2077],[-791,81],[368,1448],[1417,548]],[[824250,456161],[-498,-2682],[-459,-491],[-599,198],[-255,971],[-2,1985],[842,1132],[783,-478],[188,-635]],[[845269,456753],[-453,-1397],[-622,520],[1075,877]],[[845897,457786],[361,-254],[1143,117],[93,-1159],[-1406,-486],[-636,420],[445,1362]],[[828893,456717],[1005,-38],[724,-1301],[0,-1296],[-1422,-680],[-348,622],[-3504,-1947],[-1061,531],[214,1118],[56,1558],[944,1060],[730,-271],[1013,-1853],[1255,400],[-64,613],[-860,675],[-631,1255],[101,520],[721,246],[1127,-1212]],[[841437,457879],[246,-1007],[-633,-870],[-10,-1075],[-1024,-759],[-1225,-505],[-942,-100],[-1522,-561],[-1309,731],[-1176,188],[-717,-406],[-330,485],[204,1693],[1074,1194],[424,83],[1545,-711],[1006,-1062],[1634,416],[690,-539],[904,212],[1075,1705],[86,888]],[[820456,457782],[948,-1360],[-242,-839],[-1315,-1048],[-1373,1598],[-612,1339],[53,508],[1063,-592],[952,794],[526,-400]],[[860500,458234],[-549,881],[252,688],[512,-659],[-215,-910]],[[851987,460563],[44,-544],[-813,-1153],[-808,278],[-997,-550],[116,920],[467,947],[513,-290],[1262,919],[216,-527]],[[884107,456158],[-1778,-126],[346,1892],[902,3008],[871,1062],[855,207],[512,-553],[466,-1055],[-94,-844],[-795,-2060],[-592,-1097],[-693,-434]],[[865629,460675],[-936,-2079],[-566,658],[287,1663],[931,2469],[376,314],[53,-1740],[-145,-1285]],[[817005,464556],[-1707,-1488],[-1461,158],[-782,351],[459,1510],[3117,79],[374,-610]],[[873455,467801],[197,-1013],[-885,-1866],[-405,953],[353,3238],[740,-1312]],[[874230,468638],[-293,-389],[-492,565],[-239,1316],[836,546],[335,-861],[-147,-1177]],[[797953,470598],[1015,-1636],[1568,-351],[283,310],[510,-1241],[325,-1831],[299,-309],[2060,-111],[1777,-358],[796,-470],[607,1187],[350,1920],[888,59],[891,-1574],[3268,-1009],[210,-274],[445,-2919],[-57,-686],[1451,-1448],[1966,759],[1350,-1111],[-343,-3530],[432,-1201],[-361,-527],[-1031,686],[-1818,1661],[-1040,-39],[-972,-542],[-2142,877],[-2170,143],[-1667,859],[-1554,1545],[-1525,794],[-1351,424],[-643,-259],[-545,-763],[-1685,589],[-1015,1152],[-1096,404],[-1377,198],[-566,816],[109,1870],[-1418,885],[-1020,-330],[-144,431],[556,1619],[650,2835],[517,539],[1679,-629],[902,100],[636,486]],[[873928,472013],[136,-1261],[-602,-294],[-411,497],[50,846],[440,1174],[387,-962]],[[839004,474019],[-270,-526],[-386,1100],[483,1106],[266,-781],[-93,-899]],[[840611,474811],[-283,-949],[-655,106],[203,2739],[265,1110],[806,550],[22,-1850],[-358,-1706]],[[842187,478283],[-433,-460],[-232,-2433],[760,-800],[-1118,-2384],[-457,-98],[-257,1233],[534,1472],[253,2516],[63,1782],[577,931],[310,-1759]],[[842368,481503],[-305,-793],[-517,650],[151,938],[671,-795]],[[856128,483640],[-770,-156],[209,1022],[772,642],[177,-821],[-388,-687]],[[822942,482609],[-588,-647],[-13,3049],[295,1317],[341,451],[67,-2251],[-102,-1919]],[[853384,484140],[-1532,-955],[-1310,1235],[-523,1596],[228,1461],[1664,285],[908,-589],[679,-1276],[-114,-1757]],[[779066,487334],[-203,-473],[-563,1516],[197,720],[511,-1056],[58,-707]],[[859991,489179],[1157,-1090],[615,92],[990,-952],[752,-2436],[-70,-1748],[-625,358],[-2011,2710],[-829,149],[-702,-621],[-1035,826],[-936,-946],[-626,59],[-580,1797],[-381,-887],[-400,-1679],[-196,2273],[355,413],[545,1394],[3977,288]],[[800799,488773],[-901,-1847],[-1004,120],[-110,1647],[201,1769],[482,367],[864,-643],[468,-1413]],[[778077,489036],[-314,-10],[-95,1602],[562,-452],[-153,-1140]],[[850077,492017],[-488,1526],[383,355],[105,-1881]],[[850684,494731],[-1906,-336],[-374,727],[2280,-391]],[[861853,493816],[-445,-107],[-1096,971],[812,796],[900,456],[270,-1673],[-441,-443]],[[846177,494085],[-600,-218],[-207,802],[206,1333],[698,123],[1761,-620],[82,-796],[-1258,-130],[-682,-494]],[[879540,494765],[-1149,-34],[-2035,1619],[3425,-763],[-241,-822]],[[794332,496636],[508,-1872],[45,-1364],[472,-2096],[972,-1325],[-260,-1462],[-492,-259],[-1273,993],[-456,3690],[-914,376],[-456,-170],[-438,1089],[607,1792],[569,665],[441,-275],[675,218]],[[855517,496886],[10,-1193],[-1390,-115],[-307,588],[139,1229],[590,525],[958,-1034]],[[842196,498298],[506,303],[485,-330],[-259,-1419],[-776,240],[-703,-722],[-373,864],[315,1563],[805,-499]],[[804877,499882],[55,-870],[-743,-900],[-256,305],[170,1627],[774,-162]],[[775614,495215],[-324,-142],[-635,725],[-780,2687],[328,1647],[621,-762],[939,-3418],[-149,-737]],[[863985,498723],[-190,-983],[-523,587],[-282,1821],[963,221],[32,-1646]],[[877541,501336],[1307,-2046],[-652,-664],[-905,589],[-293,1810],[-474,-430],[-489,1450],[1506,-709]],[[891720,451874],[-447,573],[-1737,3818],[-606,1798],[-522,-209],[-2218,-357],[-344,621],[616,2813],[-921,1769],[504,424],[1669,-170],[151,662],[-1529,-386],[-890,505],[-589,983],[1073,938],[-816,1264],[-678,1519],[-431,3788],[-1289,2442],[-583,725],[-148,991],[-916,-61],[-374,920],[-763,137],[-2629,1956],[-1329,311],[-1524,1122],[-435,932],[47,611],[-928,202],[-1225,1657],[-258,-162],[-410,1170],[-496,324],[-171,-2786],[-408,-888],[-1001,-168],[-489,2640],[432,933],[-174,907],[-1340,2227],[-934,389],[360,1186],[960,-57],[495,-506],[841,1095],[1031,816],[974,-1338],[981,1324],[103,646],[-269,1718],[-1293,-1012],[-3115,-249],[-1139,1765],[-255,1883],[-409,1285],[-1521,-405],[-707,447],[691,1260],[267,1746],[2460,2938],[609,375],[916,-41],[1563,-1457],[1477,-650],[734,-887],[581,-2820],[-441,-2623],[55,-2131],[214,-1405],[553,-2036],[701,686],[278,-2190],[312,-1500],[846,-682],[895,77],[2275,5653],[573,958],[1038,325],[988,666],[-78,1829],[1550,1642],[300,29],[5203,-5255],[695,13],[1420,-426],[586,-452],[-37,-782],[745,208]],[[891666,490424],[1247,-821],[3058,-2910],[2773,-1398],[1073,-1578],[1498,-1287],[2094,-2559],[314,-60],[1261,-2882],[-80,-3508],[804,-131],[1298,-916],[1381,-1646],[866,98],[709,-892],[734,-2266],[-162,-1423],[-1333,-280],[-928,43],[-85,-1420],[903,-3000],[651,-938],[520,-1405],[949,-1048],[472,-1469],[891,-4132],[650,-632],[1056,704],[503,-931],[-405,-1244],[146,-767],[686,-641],[1494,-234],[-44,-624],[-782,-623],[572,-1219],[1361,-1466],[-192,-552],[771,-1071],[-1073,-688],[-567,509],[225,1059],[-3092,994],[-625,744],[-1139,-284],[-1730,627],[-439,788],[-827,2578],[-551,512],[-350,1734],[-1033,835],[-220,1649],[-1170,3422],[-925,1060],[-2434,1256],[-354,1901],[-1145,-260],[-642,-1890],[-784,733],[232,-2043],[-456,-257],[-763,460],[184,-1604],[-1837,-515],[643,-763],[757,-1617],[110,-1407],[-2472,-1934],[-815,805],[-2698,-239],[-680,413]],[[790299,502218],[-472,-302],[-263,938],[645,880],[278,-653],[-188,-863]],[[854995,501707],[-396,-804],[-472,8],[-195,1174],[-3,1502],[407,323],[659,-2203]],[[863960,505582],[643,-665],[-14,-1349],[-1789,396],[-770,1274],[538,260],[1392,84]],[[791156,504638],[54,-720],[-818,333],[-197,612],[370,841],[591,-1066]],[[784776,512475],[1454,-1767],[-331,-322],[-1167,931],[44,1158]],[[786056,512241],[534,-1204],[-260,-353],[-910,1221],[636,336]],[[790737,511967],[-121,-882],[-564,495],[-21,1315],[470,171],[236,-1099]],[[784500,511201],[-370,467],[-196,1769],[213,712],[549,-1080],[-196,-1868]],[[771914,509550],[-583,-190],[-1386,4248],[455,1070],[465,-456],[1154,-2870],[-105,-1802]],[[784727,514453],[-1109,33],[-302,834],[1320,-550],[91,-317]],[[847366,513295],[-1078,-2631],[-485,-2069],[-767,-475],[-1669,-642],[-963,194],[-979,987],[-2169,15],[-1641,298],[-1128,-610],[-812,153],[-568,466],[-810,-507],[-565,-1448],[-382,-2328],[148,-2593],[142,-686],[1649,-3862],[1088,-155],[280,1116],[716,1928],[481,651],[217,-859],[651,-223],[568,623],[1259,622],[339,680],[1067,522],[736,-383],[210,-864],[-191,-1311],[-308,-272],[-579,1013],[-556,-268],[-1253,-3255],[-485,-729],[-1042,-598],[-231,-508],[-893,-360],[-236,-823],[996,-1293],[1853,-5513],[-308,-2040],[-240,-723],[1118,-2181],[231,-1092],[587,103],[-27,-1595],[-912,-57],[-1246,-665],[-284,-2151],[-781,268],[-640,955],[191,2541],[-312,1494],[-558,792],[-1007,1968],[560,3503],[-3,1349],[-891,528],[-543,-469],[-1047,-1564],[569,-2521],[21,-2293],[-154,-6241],[70,-4315],[-2054,-569],[-459,418],[-315,1050],[118,1651],[332,1522],[293,3447],[-34,1291],[-288,3020],[-556,828],[-1009,-834],[-420,2532],[-30,1639],[260,1052],[690,1196],[512,5597],[65,2103],[1302,3335],[-69,1868],[135,3183],[274,1480],[869,2319],[955,-622],[586,1543],[87,1351],[318,478],[1207,-569],[754,-1170],[1107,-15],[1186,-270],[1061,-1150],[704,761],[2094,-623],[1170,1006],[1782,3936],[563,57],[340,-954],[-534,-1484]],[[782452,518273],[297,-872],[-134,-1147],[-755,-276],[-186,1717],[778,578]],[[854863,510611],[476,329],[737,3067],[760,1004],[742,-57],[-98,-2713],[-1401,-1780],[316,-780],[519,-339],[622,-1837],[-1639,1049],[-461,102],[-225,-820],[102,-2401],[235,-1421],[585,-2362],[-604,304],[-847,3128],[-304,5195],[-496,1982],[370,2307],[78,1341],[832,2351],[585,507],[-232,-2522],[130,-1203],[-92,-1363],[-256,-867],[-719,-946],[285,-1255]],[[856976,518024],[-641,-175],[-204,1460],[390,1245],[594,898],[313,-1452],[-452,-1976]],[[767763,520508],[-223,-749],[-1371,1619],[-320,632],[268,1029],[1646,-2531]],[[800729,527439],[-670,1381],[-96,693],[663,1097],[480,-1812],[-377,-1359]],[[852520,531036],[-506,-993],[-111,1472],[307,1077],[310,-1556]],[[767205,536922],[824,-345],[582,235],[1886,-208],[530,-280],[780,-1532],[528,-2222],[673,-678],[-306,-1853],[909,-886],[3521,-4737],[628,-1356],[9,-637],[606,-589],[1001,-3332],[611,-207],[102,1010],[556,26],[662,-1232],[368,-2193],[423,-402],[573,166],[1116,-1913],[176,-2019],[496,-1098],[1782,-1695],[257,-848],[540,930],[1079,-1517],[140,-1751],[-452,-182],[-425,-1043],[387,-1248],[-501,-585],[-104,-1212],[1038,-1586],[1247,-394],[518,59],[253,-3476],[428,-1720],[776,-2244],[1772,-542],[1080,-3243],[114,-2092],[-458,-1938],[149,-2198],[67,-3756],[-285,-6809],[-171,-607],[-1053,2230],[-488,-518],[104,-928],[-1149,905],[-414,-652],[223,-1218],[-494,5],[-1791,4710],[-1649,2205],[-2813,4533],[-812,2774],[-1111,1679],[-640,2151],[-822,1872],[-733,2253],[-277,2682],[-928,4111],[-783,2503],[-1422,4043],[-682,892],[-589,1395],[-977,5819],[167,1145],[-196,666],[-1234,1677],[-1162,1296],[-692,1520],[-286,2229],[-683,1136],[-1193,3488],[-718,402],[-787,1005],[-2300,4650],[-815,3348],[35,1325],[561,971],[1243,-885],[508,-1195],[367,-245]],[[456560,897199],[2076,-1194],[198,-1293],[3065,-1459],[-275,-1445],[427,-953],[-120,-1403],[-972,-1196],[-1274,-677],[-129,-1082],[-3807,-1579],[-1623,-1526],[-3183,-973],[-1347,-1486],[-1758,-418],[-3333,821],[-3533,2035],[-3947,-431],[662,973],[1312,565],[593,808],[-771,1114],[-1095,2443],[-2062,30],[-1760,-493],[-137,1167],[3474,619],[234,913],[1609,1304],[-2131,1156],[-2753,-996],[-2090,340],[954,1863],[1415,627],[100,1302],[767,272],[1362,-1002],[945,2591],[3104,-2995],[-37,-1203],[-717,-564],[881,-937],[1055,689],[1608,160],[-269,2684],[872,218],[1446,-2206],[654,1955],[1180,662],[1035,-570],[789,496],[1448,-594],[2608,324],[1019,596],[107,1616],[1361,-91],[763,-1577]],[[760776,546021],[-569,1298],[1,812],[578,151],[126,-1354],[-136,-907]],[[757102,568237],[-459,-20],[-40,1165],[602,-270],[-103,-875]],[[757592,576176],[67,-1468],[-414,-351],[-255,1524],[602,295]],[[757928,582209],[264,-650],[33,-1942],[-723,-879],[-7,1605],[291,1707],[50,2451],[260,1229],[372,-692],[-540,-2829]],[[655493,663699],[-1027,-432],[463,1244],[1151,841],[264,-320],[-851,-1333]],[[543363,731922],[-1124,-3107],[-322,-1366],[19,-1045],[466,-1925],[-590,-1899],[-1466,639],[-782,1663],[-1522,681],[-2068,2298],[-545,44],[-770,1655],[214,1164],[649,392],[1634,174],[1181,-1025],[1558,227],[1938,674],[1396,972],[134,-216]],[[526735,748106],[326,-3626],[-306,-5595],[-313,-1888],[-802,666],[-592,-485],[14,-861],[-491,-731],[-639,230],[-569,1498],[-80,1282],[295,2030],[-32,3110],[-441,1841],[-429,857],[424,781],[708,-56],[544,485],[1081,1885],[918,-532],[384,-891]],[[287876,613186],[509,-1532],[-890,-289],[-701,474],[-880,-195],[-244,-876],[-1882,1121],[-1165,1536],[598,1464],[639,415],[2141,-623],[1875,-1495]],[[892890,750090],[-134,-2177],[164,-1905],[907,-1762],[509,-2372],[196,-1987],[-476,-3227],[-758,-998],[-253,-2485],[-1159,-554],[-351,-1285],[-76,-1300],[310,-2504],[-145,-2967],[-527,-829],[-641,-3559],[403,-2067],[-2,-1291],[-1336,-3468],[-807,-1209],[-454,257],[519,2933],[477,708],[-438,657],[-478,-369],[-637,-1975],[-546,159],[-619,-466],[-60,-2120],[-416,-1177],[-632,355],[4,2325],[-526,-175],[-890,-2128],[-493,-546],[-2461,114],[-530,984],[-275,1247],[-716,-352],[-308,-1671],[161,-557],[956,-945],[-1727,-1633],[-967,-3441],[-461,-737],[-1071,687],[-613,1473],[-164,2432],[922,1930],[-317,952],[-1379,-46],[-358,358],[-1331,-334],[-717,-1144],[-1263,-196],[-1934,-1079],[-1408,113],[-507,-2253],[-271,-291],[-824,929],[-1086,-591],[-1263,-139],[-1,1914],[178,978],[1245,-21],[619,1430],[784,657],[1328,2186],[691,1589],[1381,923],[801,-642],[2356,588],[2252,1006],[564,-355],[-4,-947],[819,-123],[1251,1105],[-106,1292],[724,2370],[745,1346],[635,1858],[-216,1957],[467,1341],[1176,779],[261,-503],[-1380,-2161],[558,-1646],[639,-251],[1028,1351],[1677,1212],[865,1245],[468,1171],[1944,3941],[1095,4227],[471,2273],[149,1906],[-318,1201],[-125,4438],[1162,2561],[901,512],[456,-1887],[978,256],[319,1576],[-379,488],[-906,-666],[256,2232],[1469,-1009]],[[854786,659973],[-188,501],[183,1582],[1223,1748],[317,-371],[-1178,-1607],[-58,-1410],[-299,-443]],[[860339,673968],[-944,-2028],[-456,906],[337,571],[1063,551]],[[861352,696185],[-305,140],[190,1571],[480,-634],[-365,-1077]],[[864195,704480],[887,-229],[733,370],[41,-1387],[486,-1098],[-10,-2673],[-504,-932],[-654,-4223],[3,-1424],[-234,-1083],[-731,-1239],[-1252,-1098],[432,3390],[-526,332],[-277,-1082],[261,-1486],[-323,-496],[-772,361],[-71,3462],[1128,4428],[-113,1572],[-533,1692],[-662,-315],[197,-2081],[-999,-157],[-589,1371],[110,940],[-275,1680],[1149,351],[884,869],[612,1733],[852,478],[750,-2026]],[[872565,709066],[1404,-1239],[79,-1986],[-1220,-2672],[-1305,829],[-1246,-849],[-694,-2122],[-216,-1686],[-915,150],[-380,864],[59,2276],[-498,1208],[1067,2328],[945,468],[1247,-65],[357,1302],[677,1060],[639,134]],[[874886,708344],[-824,-3],[378,1064],[446,-1061]],[[884280,729347],[-273,1552],[631,1402],[294,-1468],[-652,-1486]],[[900954,765652],[1251,-178],[938,1360],[266,-4920],[593,-877],[-1568,-1185],[-1055,-258],[-640,355],[-704,-458],[-966,-1360],[-879,-2072],[-505,-2136],[-3752,3708],[-662,86],[-1169,-1101],[-880,204],[-370,655],[-641,10],[-508,-1977],[1572,-1404],[930,-1236],[-597,-548],[-553,383],[-1641,-2218],[-566,1014],[250,1192],[-296,2087],[-536,793],[147,1881],[1154,1182],[791,1476],[-394,784],[400,1129],[893,-903],[877,-317],[688,1012],[-33,2965],[720,1429],[360,3285],[-378,2549],[111,2075],[751,650],[2153,-4386],[694,-1184],[1457,-1760],[2297,-1786]],[[634261,681124],[-452,-284],[-251,1235],[428,674],[390,-865],[-115,-760]],[[851642,702264],[-830,-212],[-365,775],[414,756],[1301,604],[429,-613],[-235,-799],[-714,-511]],[[725921,542517],[-2076,-1679],[-1091,697],[-437,1412],[-526,3904],[-127,4383],[-120,1204],[178,900],[278,4595],[425,1632],[236,2096],[499,688],[-925,576],[87,919],[613,-30],[282,-858],[1201,-2093],[835,-2820],[1043,-4601],[815,-2388],[272,-1765],[55,-1935],[-294,-2353],[-213,-821],[-1010,-1663]],[[636867,435169],[231,-1927],[557,-1543],[12,-733],[1025,-2459],[589,-4575],[118,-4137],[425,-2846],[388,-1292],[-72,-1241],[-605,-2948],[-594,595],[-338,2528],[-518,-70],[-261,-627],[649,-5187],[-413,-2579],[-320,-274],[-472,-2759],[188,-2567],[-407,-3346],[-1895,-11186],[-980,-6875],[-1213,-7096],[-752,-6631],[-771,-3693],[-540,-3280],[-896,-1091],[-1291,-371],[-737,-512],[-1521,-1764],[-1091,-32],[-1328,1619],[-826,453],[-872,1315],[-1031,3944],[-65,3272],[189,2265],[-1013,3676],[-331,2782],[38,1620],[603,3528],[636,947],[2205,7639],[-161,1644],[104,1547],[-615,2917],[-614,4964],[-239,3665],[1088,3844],[314,3824],[918,-48],[779,656],[1422,393],[338,1415],[597,98],[1076,-936],[113,1568],[1509,2532],[486,-506],[-293,-1639],[820,1048],[-392,1770],[626,1843],[457,-1646],[702,2607],[-117,1392],[227,992],[733,811],[-505,1947],[145,1087],[357,148],[690,-1427],[636,1552],[887,1605],[303,2641],[-245,1615],[928,2278],[226,1257]],[[188148,675913],[-836,608],[304,1830],[439,181],[262,-1107],[-169,-1512]],[[185815,677493],[-342,72],[-996,2066],[221,757],[805,-1470],[312,-1425]],[[761060,617967],[-109,-590],[-786,1053],[-528,1844],[1194,-989],[229,-1318]],[[21256,426425],[377,-811],[13,-1187],[-857,-166],[-570,1753],[1037,411]],[[22723,424300],[760,-639],[-609,-773],[-487,318],[336,1094]],[[330613,593142],[366,-1168],[-473,-615],[-571,1949],[678,-166]],[[956005,386205],[1147,-774],[1498,-2313],[1925,-3523],[1320,-1671],[1783,-2655],[255,-987],[-357,-795],[-1221,990],[-828,1069],[-227,709],[-1500,1282],[-747,865],[-2420,4682],[-394,1177],[-234,1944]],[[966856,379014],[97,-1040],[-697,255],[-115,1052],[715,-267]],[[964669,383316],[-30,-1132],[473,-920],[-290,-664],[-867,1425],[114,1386],[600,-95]],[[967021,228863],[66,-1233],[-562,-356],[-655,471],[28,1999],[684,-68],[439,-813]],[[9382,247529],[603,-2107],[-363,-298],[-468,1741],[228,664]],[[980264,266374],[-683,-847],[669,-1035],[591,-2710],[860,836],[1676,785],[802,74],[-750,-2808],[654,-1594],[-2244,-5176],[-637,-1975],[-744,-727],[-727,-1843],[398,-1313],[782,-767],[-393,-841],[-792,354],[-1094,-249],[-1857,-1487],[-1090,-1530],[-603,-4017],[-1352,-4787],[-664,-533],[-520,-1355],[-1396,-1731],[-115,-485],[-1387,-621],[-2001,782],[-416,800],[-1323,592],[-2725,522],[-762,1194],[-38,1143],[971,631],[-381,912],[355,1371],[1357,2706],[1631,1497],[339,1461],[969,1928],[1762,977],[2058,2152],[2434,3060],[1258,2011],[626,1969],[597,3386],[1086,850],[627,1998],[11,2256],[812,1292],[856,953],[513,-61]],[[981146,299692],[1481,-1177],[1087,-1489],[516,65],[712,-3095],[-715,36],[1202,-2846],[-192,-644],[277,-2201],[1427,-1802],[622,291],[-118,1861],[924,-620],[413,-4663],[588,-214],[2486,-1850],[228,-313],[1033,646],[1312,2240],[816,-55],[491,-506],[-404,-4393],[-832,-1709],[-344,-2301],[-1329,-10],[-1034,-774],[-433,-1712],[397,-982],[-402,-2494],[-1138,-2807],[-1198,-3515],[-1326,-2059],[-918,-680],[-960,2188],[-154,825],[622,1605],[462,2915],[-182,1314],[-678,1260],[-2687,2107],[-555,1517],[255,744],[927,929],[636,90],[546,1324],[477,3728],[367,310],[-223,1953],[-496,2799],[583,1277],[-1087,652],[-284,1250],[226,457],[-171,3033],[-403,24],[-645,-820],[-2326,5675],[-68,1964],[-964,2390],[589,-205],[564,-1533]],[[525563,881534],[-1850,-799],[154,1078],[1696,-279]],[[542098,910485],[-1191,-1226],[-837,797],[2028,429]],[[543823,911347],[2177,1229],[-122,-1500],[-779,-31],[-1495,-1297],[-1691,249],[1140,1550],[770,-200]],[[542586,912882],[214,-1117],[-1049,-618],[-836,1080],[1671,655]],[[549476,917019],[745,-827],[-204,-1404],[-1196,-219],[-1048,-595],[-843,454],[905,1956],[1641,635]],[[553764,918513],[-1806,595],[1445,910],[361,-1505]],[[565519,923045],[128,-887],[-1498,-939],[-680,682],[732,841],[1318,303]],[[563678,922690],[-2261,-125],[48,788],[2161,326],[52,-989]],[[273315,549292],[-380,-73],[-398,982],[415,694],[363,-1603]],[[654169,382389],[452,-216],[453,-1304],[-59,-1222],[-430,-236],[-893,702],[-273,1001],[180,1049],[570,226]],[[837799,614391],[806,-581],[648,666],[369,-1228],[-352,-2254],[296,-2506],[434,-486],[235,-1021],[-81,-1453],[-657,-3378],[-1357,-1433],[-424,-776],[-480,-3200],[579,-4176],[122,-1573],[332,-1728],[469,-772],[808,-524],[193,427],[-87,1532],[322,308],[1272,-17],[543,-1249],[4,-1728],[515,-277],[583,1120],[1349,-757],[-959,-414],[-144,-857],[1286,-2860],[486,-512],[-240,-2738],[-575,691],[-46,1260],[-1384,871],[-622,2627],[-1073,1998],[-878,714],[484,-2371],[-325,-718],[-423,1030],[-1635,2327],[-694,-674],[-509,-1370],[-575,31],[-404,853],[-805,154],[-168,2501],[1010,1538],[-387,1594],[-800,471],[164,-2048],[-599,-161],[-297,2145],[-623,912],[-329,2975],[-106,2277],[-415,523],[75,2168],[1032,-1663],[744,730],[-239,1153],[-62,1629],[334,2917],[-35,2429],[146,2958],[300,2439],[724,1191],[336,-476],[807,-31],[982,-1149]],[[836618,541485],[214,-883],[-934,38],[-68,670],[788,175]],[[839390,543970],[-582,-276],[-471,1216],[774,742],[559,-547],[-280,-1135]],[[850861,558638],[-432,-2424],[468,-1058],[102,-2670],[559,-1732],[92,-1825],[-411,-1658],[-452,-562],[-260,-3614],[-293,1308],[-283,2676],[-380,1931],[-553,-540],[-698,-2399],[-10,-1234],[542,-710],[323,-1601],[-113,-1653],[-693,-2125],[-332,64],[-294,1476],[-1024,366],[-1421,1397],[-699,1478],[-235,2342],[296,2183],[420,1588],[-609,1367],[-1205,1203],[-423,-231],[-353,-1750],[-518,1200],[-786,-1146],[-34,1284],[-770,-136],[-290,-792],[-773,-3986],[-602,329],[-98,1036],[653,2487],[-79,1181],[662,1635],[951,480],[832,790],[255,1567],[1128,746],[724,-283],[329,-2570],[575,188],[1189,2280],[672,-491],[99,2522],[686,-86],[1367,640],[-30,1469],[-324,2311],[278,804],[1122,-2178],[1153,-2874]],[[845158,562545],[-1113,228],[-41,1521],[465,410],[436,1109],[484,-150],[490,-1604],[-343,-1193],[-378,-321]],[[842137,559502],[-655,59],[-1403,3404],[257,1868],[478,34],[465,963],[272,3935],[687,1049],[826,-519],[81,-428],[-896,-4993],[-273,-2018],[544,-1834],[-383,-1520]],[[842650,561524],[45,2484],[1287,5309],[544,1196],[-4,-1943],[-573,-2246],[-568,-1486],[-428,-2486],[-303,-828]],[[831921,570185],[219,-1331],[376,-792],[-362,-816],[-706,-505],[-221,-668],[-902,-1285],[-446,-255],[-117,-1856],[-647,-1884],[-957,-911],[-358,-1494],[-1306,-1655],[-797,-1324],[120,1565],[914,2190],[718,1281],[401,74],[1077,2575],[1010,1961],[621,1994],[392,128],[793,2013],[-25,3287],[343,286],[-140,-2578]],[[847241,571673],[602,-4471],[-14,-824],[-541,-1148],[-744,812],[75,3453],[-521,1411],[-535,-8],[-323,3019],[754,-1123],[1131,-29],[116,-1092]],[[840927,569560],[-2260,-1739],[333,3864],[167,3282],[-210,1060],[2347,-2641],[733,-124],[-164,-1456],[-855,-1316],[-91,-930]],[[833077,578643],[713,-1186],[-301,-651],[-492,1129],[80,708]],[[844088,578048],[430,-1282],[116,-1676],[-779,1187],[-537,1269],[-899,132],[-15,1767],[251,142],[1433,-1539]],[[847695,580060],[338,-631],[468,-2107],[-46,-2808],[278,-1181],[-76,-1825],[-855,-2],[-600,1506],[-154,2272],[-1033,1844],[-642,1760],[4,1027],[882,-175],[807,377],[629,-57]],[[839311,580640],[-374,-2512],[-227,311],[203,1501],[398,700]],[[834575,585730],[802,-308],[644,195],[630,-454],[903,-2128],[-40,-3035],[-462,-1401],[-614,125],[-615,1907],[-594,2864],[-805,1488],[151,747]],[[839256,584961],[-290,-1135],[-473,582],[46,1565],[717,-1012]],[[845407,586175],[-391,-324],[-496,681],[283,2366],[176,174],[577,-1874],[-149,-1023]],[[927096,437113],[-612,-68],[-963,1427],[58,401],[1358,-1153],[159,-607]],[[918776,448418],[1075,-1678],[-398,-691],[-677,2369]],[[919259,448829],[-226,-222],[-1025,252],[40,1805],[732,-414],[479,-1421]],[[917736,450347],[-653,-176],[222,1294],[431,-1118]],[[924325,452550],[720,-870],[-520,-603],[-477,537],[277,936]],[[933239,466131],[-700,-908],[-525,164],[-958,1706],[-130,1682],[-484,660],[-634,1522],[51,2318],[859,-284],[321,-1361],[691,-1792],[565,-688],[760,-1703],[184,-1316]],[[921594,480947],[646,-540],[281,540],[717,-725],[33,-1959],[-128,-972],[-489,-939],[-293,-1398],[113,-1283],[-520,-570],[-1125,91],[-93,-984],[-843,-1594],[-1001,-391],[-1325,-1390],[-1795,-150],[-625,1123],[-1231,356],[-1687,1545],[-263,766],[297,1173],[2860,-648],[1157,187],[470,1330],[177,-1310],[508,-245],[1263,322],[760,848],[214,1236],[780,1392],[627,-281],[266,855],[-458,3711],[707,-96]],[[924708,477370],[-608,2352],[3,1456],[-1007,3180],[-520,843],[-1171,1221],[-1976,2886],[1609,-1273],[1425,-1784],[396,-928],[1493,-2475],[863,-1950],[-52,-2265],[-455,-1263]],[[917888,490338],[-987,175],[-311,619],[593,727],[714,-785],[-9,-736]],[[909223,493759],[-412,-983],[-1486,93],[-77,1114],[1321,175],[654,-399]],[[317113,612286],[-1007,-524],[-1420,364],[-1321,-258],[-105,2575],[452,796],[3249,-393],[660,-490],[123,-860],[-631,-1210]],[[85630,400137],[-1054,749],[-195,789],[459,681],[874,-1557],[-84,-662]],[[395411,186632],[2472,-599],[1393,-1225],[1114,-2532],[-556,-822],[-1448,2244],[-2699,2157],[-276,777]],[[545275,979015],[2870,-800],[3875,-2298],[500,-2204],[7238,-2068],[-4898,-1148],[-2148,-1012],[33,-1481],[-1695,-1053],[-453,-3091],[-1398,-11],[-2536,-5481],[-3424,1769],[-1402,1554],[-2028,678],[-1083,1659],[7675,2082],[-8026,-885],[61,2143],[3322,169],[1561,1104],[-1136,2493],[-1951,-354],[255,-1207],[-1970,-1491],[-2169,-21],[-1919,1983],[-2215,1206],[-2328,4805],[1680,1281],[2543,-259],[4371,779],[-1131,-2255],[4092,1499],[1849,-2661],[1170,-42],[-1054,3278],[1869,1340]],[[564485,967615],[959,-1448],[2138,-403],[-363,-1039],[-4214,-2397],[181,1507],[-5284,254],[1968,2192],[-2075,1011],[2527,794],[3405,138],[758,-609]],[[559634,970342],[1310,-94],[290,-1884],[-3409,-164],[-1416,1396],[3225,746]],[[592085,980425],[536,-919],[-4483,-579],[-264,857],[4211,641]],[[563888,981299],[327,-1789],[4031,1018],[7268,-1425],[-674,-1308],[-2282,-1034],[-1040,-1435],[-2925,-407],[-1808,-824],[-9076,910],[-3094,1084],[220,955],[-2805,-16],[-1687,1080],[-321,1274],[3681,265],[238,1637],[2401,-205],[1736,-1273],[4254,-825],[-207,2052],[1763,266]],[[943770,450986],[673,-887],[960,113],[642,-853],[696,-1739],[-1016,-257],[-1744,506],[-656,1846],[4,1130],[441,141]],[[948323,445578],[1791,-1620],[607,-1299],[111,-820],[-677,-33],[-803,481],[-720,1235],[-309,2056]],[[948304,450349],[396,-1351],[-404,-161],[8,1512]],[[938868,455394],[335,-415],[-218,-964],[-471,584],[354,795]],[[946455,456634],[794,-1961],[22,-1231],[639,-1739],[372,-2414],[-828,1462],[-896,2209],[-437,3026],[334,648]],[[937521,458756],[332,-1566],[400,-121],[295,-1121],[-195,-890],[-681,989],[-140,1005],[-661,-493],[-223,430],[562,1560],[311,207]],[[936343,459493],[252,-1572],[-503,68],[-110,1067],[361,437]],[[940141,461412],[778,-464],[971,-1790],[940,-653],[1209,-2108],[-718,-118],[-1650,1841],[-972,1741],[-558,1551]],[[934641,466816],[393,-342],[1382,-2050],[53,-540],[983,-1736],[-972,333],[-2001,3494],[162,841]],[[518542,508270],[221,-994],[-632,-1304],[-29,1797],[440,501]],[[835793,636816],[-494,-427],[-1288,3356],[-499,2259],[189,3065],[207,1345],[2070,6543],[1438,2209],[302,138],[799,-985],[147,-960],[-185,-2019],[-776,-4774],[-229,-2245],[-345,-1989],[-484,-1769],[-342,-632],[-510,-3115]],[[545797,838153],[-284,1557],[380,1466],[1391,2251],[-1487,-5274]],[[551051,842709],[-472,-47],[-199,2602],[197,978],[1467,1945],[279,-1121],[-35,-1778],[-1237,-2579]],[[330710,569861],[-164,-4111],[-416,-400],[-2022,-178],[901,1094],[265,628],[-11,1270],[-248,733],[451,593],[1244,371]],[[609904,467786],[-757,836],[-192,2329],[373,307],[188,-1704],[233,-267],[155,-1501]],[[322454,570233],[-376,-161],[-826,1033],[1079,340],[123,-1212]],[[962838,419247],[461,-1892],[757,-121],[307,-1561],[138,-1574],[-1242,-647],[-322,1570],[-314,3088],[215,1137]],[[970320,391643],[511,-1217],[-400,-637],[-374,1085],[263,769]],[[969751,395760],[646,-1914],[-189,-286],[-792,736],[17,1084],[318,380]],[[967767,402197],[504,-898],[-264,-786],[-772,525],[532,1159]],[[967188,407902],[652,-1213],[-527,-282],[-292,665],[167,830]],[[967196,410523],[322,-988],[-515,-453],[-537,902],[730,539]],[[964640,411895],[433,-1258],[908,-1418],[63,-986],[-989,106],[-122,1820],[-604,808],[311,928]],[[649277,580509],[1097,255],[998,-783],[-1104,-1144],[-1189,-297],[-943,1385],[618,1029],[523,-445]],[[277469,488137],[-404,-214],[101,1710],[513,370],[86,-858],[-296,-1008]],[[246277,506783],[1514,-5355],[-304,-1245],[-864,-540],[-609,243],[-173,858],[795,1101],[-539,3361],[-202,510],[382,1067]],[[249350,501486],[-456,-237],[-376,451],[84,976],[709,216],[39,-1406]],[[246142,503114],[-611,-139],[-136,1030],[555,266],[192,-1157]],[[504468,736487],[-572,-1061],[-296,1089],[868,-28]],[[508964,738445],[-366,-405],[-1714,1035],[-288,868],[1161,1428],[1139,576],[648,-1837],[-580,-1665]],[[511944,741605],[-84,-476],[-1217,660],[-26,773],[735,196],[592,-1153]],[[454023,671440],[-409,-82],[-579,1906],[925,373],[911,998],[297,-289],[-1145,-2906]],[[457065,670077],[-409,-341],[-501,572],[-103,1002],[336,838],[728,44],[182,-920],[-233,-1195]],[[461584,675440],[9,-926],[-321,-1877],[-894,-738],[624,2826],[582,715]],[[450569,674270],[-559,1410],[748,24],[-189,-1434]],[[659828,384523],[-611,344],[236,1570],[582,1273],[537,-1476],[-249,-1257],[-495,-454]],[[453182,698696],[-979,570],[48,802],[1285,-713],[-354,-659]],[[69944,620941],[-415,-737],[-1664,-1939],[-214,133]],[[67651,618398],[-754,468]],[[66897,618866],[-270,3058]],[[66627,621924],[478,2408]],[[67105,624332],[-162,944],[60,261],[926,-763]],[[67929,624774],[947,-933],[839,-2009],[239,-773]],[[69954,621059],[-10,-118]],[[64885,629984],[1114,-431],[686,-1126],[-9,-251],[-502,-505],[-600,-210]],[[65574,627461],[-361,707],[-429,1428]],[[64784,629596],[101,388]],[[63385,630419],[-341,75],[167,736],[1486,-361],[-435,-644],[-877,194]],[[61165,634134],[546,-1766]],[[61711,632368],[350,-703],[-135,-56]],[[61926,631609],[-1154,235]],[[60772,631844],[-443,1487]],[[60329,633331],[108,104]],[[60437,633435],[728,699]],[[57425,635681],[-234,-459],[-160,-117],[-618,478],[-265,370],[555,1180]],[[56703,637133],[293,22]],[[56996,637155],[252,18],[37,-42],[189,-276],[-49,-1174]],[[273118,650990],[-213,538],[863,942],[103,-1010],[-753,-470]],[[160127,789417],[-1155,1418],[349,1070],[806,-2488]],[[5798,810953],[-499,1717],[1062,-498],[-563,-1219]],[[10008,811572],[-1456,-739],[380,1702],[572,620],[504,-1583]],[[14573,813246],[1414,1532],[92,-1000],[-1506,-532]],[[981253,818731],[490,-671],[-1456,-409],[-763,1417],[1729,-337]],[[31852,819258],[-754,509],[1315,2131],[550,398],[814,-899],[-1925,-2139]],[[37118,824282],[1094,-37],[-193,-1185],[-990,-936],[-2226,-1342],[-609,568],[1670,837],[744,1238],[-695,281],[210,1012],[995,-436]],[[46085,830036],[559,-967],[-1658,-338],[-1466,-731]],[[43520,828000],[-342,-543],[-1036,-18],[-277,1051],[1030,1595],[1797,950],[1060,113]],[[45752,831148],[333,-1112]],[[130288,837113],[782,-237],[855,-1162],[708,-1689],[829,-4330],[-1083,-318],[-1075,2334],[-960,134],[-628,875],[596,663],[-971,1389],[298,992],[-809,1524],[-10,1623],[854,-157],[614,-1641]],[[130691,841954],[1133,-1683]],[[131824,840271],[-719,-550],[-1746,-231],[-1265,839],[58,-1434],[-265,-1564],[-809,260],[-43,2509],[-373,1023],[176,983],[817,124],[371,1055],[1652,-506],[1013,-825]],[[126014,838260],[-726,468],[-445,1456],[-923,1207],[284,1551],[-163,1208],[-764,745],[226,454],[4,354],[1598,-484],[355,-767],[590,-3721],[-36,-2471]],[[74286,848598],[1168,-659]],[[75454,847939],[1376,32],[-435,-961]],[[76395,847010],[144,-1727],[-1837,-860]],[[74702,844423],[414,-1005],[-789,-694],[-926,224]],[[73401,842948],[-1108,-1758],[-908,633],[-1303,2578],[466,1359],[1047,855],[680,-95]],[[72275,846520],[963,1397],[1048,681]],[[127219,849272],[-234,-1326],[968,-1686],[188,-1315],[-1727,-2085],[-412,932],[199,1690],[-849,4207]],[[125352,849689],[419,295]],[[125771,849984],[1448,-712]],[[123175,849960],[1962,-1117],[-124,-919],[400,-1784],[-658,-692],[-1328,1215],[38,-1265],[-429,-517],[-721,611],[-684,1717],[-936,863],[34,1115],[2106,1105]],[[122835,850292],[340,-332]],[[75668,848680],[-1667,166],[1474,1526],[238,937],[822,146],[1085,-1013],[-1952,-1762]],[[90163,859506],[191,1395],[1051,1660],[499,-378],[-1741,-2677]],[[39741,861939],[133,-1613],[-1565,-1226]],[[38309,859100],[-2524,1282],[-891,1234],[3480,1111],[1367,-788]],[[23480,882091],[1664,-550]],[[25144,881541],[1817,682],[663,-904]],[[27624,881319],[1577,-1023],[1156,-128],[197,-1112]],[[30554,879056],[-2151,-760],[-1828,1748]],[[26575,880044],[-1864,610]],[[24711,880654],[-826,-600],[-1221,998],[816,1039]],[[0,6821],[8114,616]],[[8114,7437],[5472,-829],[5827,-306],[12573,-1164],[9772,-2346],[5629,-330],[1420,-1331],[3898,-610],[17423,-31],[9105,-490],[3360,443],[5534,2099],[15536,-297],[5512,-541],[6209,242],[999,1368],[-7481,-236],[-14666,1051],[-10978,1812],[-5823,1799],[-3036,2428],[1032,861],[-845,2984],[-2815,2701],[24,3134],[-1941,1670],[-246,1782],[1138,1090],[3161,1453],[7370,1269],[13353,803],[1554,1236],[-6939,2110],[-5128,440],[-3967,-220],[-2479,2345],[-3247,578],[-2134,2090],[-3458,913],[-1825,1009],[-4032,1476],[-1119,958],[2029,1447],[652,1648],[-3070,500],[-875,801],[892,1544],[-327,2944],[1283,138],[2295,-1587],[1173,1485],[1163,277],[6973,-1099],[2566,-1287],[2524,626],[4335,-2202],[1610,-193],[2612,1627],[1665,265],[1028,366],[1965,909],[2575,-237],[-1461,1712],[2117,409],[167,1083],[-3765,1561],[-2903,287],[-1173,-471],[-3197,560],[3399,1947],[6864,-2207],[1042,686],[-2681,1738],[1148,900],[4647,525],[866,951],[3943,970],[2977,-655],[2515,457],[1299,1463],[1661,652],[5976,307],[1731,1093],[-872,1390],[2252,330],[2050,1048],[2630,-402],[1515,-1751],[5057,542],[6914,-618],[7991,1335],[2117,-752],[2852,508],[5137,95],[12297,869],[2909,1467],[1299,-1242],[2076,-337],[5109,489],[-563,2226],[1189,1011],[1416,387],[2171,-1904],[-1215,-1243],[2194,-901],[150,-1667],[3293,123],[373,461],[-555,2766],[3399,8],[2229,-2367],[1895,-767],[1777,816],[1719,238],[3043,-1163],[-767,-2731],[1715,-198],[2338,585],[664,2399],[566,557],[3579,-330],[4425,-1740],[242,-1104],[2166,83],[2232,586],[-595,998],[-2447,1923],[-471,1022],[1936,1022],[939,1119],[-945,1114],[-2923,270],[-723,1670],[2504,162],[2771,-403],[1030,562],[71,1058],[-2730,1296],[-1285,-918],[-3406,-685],[-1538,1249],[-809,1289],[1014,933],[2561,-196],[1251,-1472],[2937,530],[2048,-1125],[3171,1163],[2397,421],[1497,-1384],[3745,-1086],[1778,770],[1733,-196],[2293,1212],[1034,-955],[3324,175],[4282,-794],[3030,742],[1070,718],[65,2146],[669,498],[2039,-374],[806,-654],[-1380,-1478],[3054,-644],[2089,-1164],[2836,1507],[982,-2059],[1945,-625],[3069,11],[4088,-2249],[3371,785],[-542,1649],[187,1261],[2636,-214],[-456,1840],[2408,-658],[2989,-2954],[2464,550],[2281,-401],[-1082,-1179],[1771,-273],[3138,1082],[2952,-175],[1932,809],[6543,1560],[1663,-46],[3391,732],[4354,1760],[2240,3295],[-129,2625],[-1281,1522],[-626,1413],[447,2589],[-1269,3478],[-1374,1284],[12,2803],[-736,859],[317,786],[1314,345],[2137,-159],[1475,1695],[-934,682],[-74,2695],[457,1747],[-801,1259],[1149,404],[-796,2488],[-1232,-393],[320,2787],[1103,947],[887,-1639],[832,-346],[-350,3464],[1066,480],[1216,-561],[67,2144],[457,1355],[937,117],[3614,3007],[-377,959],[149,1617],[574,622],[1562,-687],[2310,3228],[596,-1001],[1458,1034],[3079,3498],[3295,1158],[1135,776],[454,855],[4191,1793],[740,-252],[766,-1663],[-1708,428],[-750,-958],[-1684,-597],[-1093,-1696],[-603,-1942],[133,-1034],[-2403,1035],[-1986,-1405],[-2024,-2344],[-2626,-1664],[-122,-736],[813,-928],[-1461,-1340],[-96,-925],[1387,-1424],[1453,1205],[2119,162],[-1026,-1945],[-1240,966],[-778,-1011],[-1959,573],[-1184,-245],[1062,-2490],[-811,11],[-1211,1877],[-1671,278],[-562,-1703],[270,-2155],[-1418,211],[-1992,-2643],[-633,-157],[-810,-2382],[-231,-2158],[1852,-516],[-938,-956],[1328,-1659],[1981,-716],[58,1099],[2655,-1357],[-1196,-716],[907,-1516],[2487,-1863],[-359,-1985],[1509,-1126],[364,-921],[-1629,-1018],[746,-953],[1958,-407],[-1712,-1744],[2258,-65],[731,-1888],[-1155,-1284],[1788,-1297],[-57,-687],[-2905,-648],[1007,-1174],[1959,472],[-337,-2766],[-1402,391],[177,-1606],[2282,108],[176,-1051],[1976,-609],[-247,-1702],[-2384,-1440],[-474,-3646],[-2183,-1231],[2599,-406],[-926,-887],[-1687,-6],[-1157,-804],[511,-815],[-2351,-1871],[-3787,-600],[2411,-1160],[-2180,-1232],[-10936,-3564],[-4369,-810],[-707,-760],[6032,-2318],[-11,-4385],[-2300,-2056],[-3189,-812],[-5837,380],[-6640,1640],[-4640,4067],[66,2589],[-14352,-1906],[189,-1196],[-1798,-1607],[-1359,1908],[-1946,-1026],[1980,-4476],[-242,-1719],[2789,-2132],[-851,-3155],[2506,-2953],[1313,968],[-984,1360],[903,552],[3696,-1219],[-855,-525],[4640,-2609],[-2067,-1062],[3260,-811],[3946,-1766],[2721,-569],[6040,-468],[15107,986],[11684,1621],[5094,482],[3215,889],[1808,2737],[8323,1124],[5111,1293],[2931,3345],[7724,3238],[2747,1886],[2861,439],[5402,-1362],[1449,-750],[2759,-2591],[-1324,-612],[-7760,-922],[856,-912],[6863,966],[3200,-453],[-224,-1734],[-5663,-608],[972,-1426],[5773,847],[2747,-167],[-113,-3180],[-1609,-415],[-2898,676],[-933,-768],[1858,-977],[-2041,-1496],[-2451,-667],[-8319,-1192],[-7166,114],[-3649,1452],[-4576,2770],[-4508,-626],[-6663,-2109],[-5510,-3065],[-2651,-647],[-5033,-432],[-14143,-433],[-6424,-401],[-3158,-848],[-813,-1674],[1356,-1195],[4857,-1683],[5413,-1184],[5661,-560],[7809,32],[7777,458],[3277,-1323],[-944,-1673],[3642,-185],[5260,3108],[5521,1670],[6965,1848],[3191,436],[9682,311],[4254,-16],[7057,1075],[13919,4106],[5722,2882],[3571,851],[7595,403],[-584,-1529],[3864,-164],[1630,2273],[-1914,2976],[2444,1033],[-2670,980],[-8347,181],[-1525,598],[-4287,773],[-1635,1376],[277,1836],[2207,2380],[7474,3566],[3413,860],[1019,667],[7398,3603],[198,1295],[5862,1371],[4843,1822],[3652,3149],[1420,2930],[1257,961],[2590,777],[8191,5003],[9718,4048],[3776,20],[4627,1899],[1845,1623],[884,1783],[-251,1119],[-1276,180],[-1480,1283],[-385,1226],[1969,418],[231,-1125],[1842,-987],[562,1509],[1574,1590],[-324,1172],[1562,111],[2169,-2336],[400,-2545],[769,-553],[2057,677],[693,2648],[-615,2351],[2001,1004],[2437,180],[739,-295],[5,-2433],[-1092,-1265],[1254,-535],[3353,746],[2674,-234],[180,4668],[725,1329],[1588,-582],[-1318,-1028],[977,-849],[2262,-497],[-1559,-923],[852,-2636],[1470,-44],[1190,794],[1281,-570],[-369,-1137],[1654,-459],[2508,2426],[3232,1213],[1703,916],[1969,2366],[2481,1121],[2503,263],[1254,-980],[3143,132],[1742,852],[2261,490],[4614,-96],[1792,-625],[2517,-1528],[1920,-351],[1981,1847],[4645,-93],[4806,628],[6823,-106],[4735,-1008],[3398,245],[5351,-909],[3148,238],[3761,1166],[3111,396],[6445,1874],[5335,734],[1997,851],[3437,-405],[1544,819],[-290,2476],[-641,763],[207,1500],[1281,887],[1961,-384],[566,-1353],[1323,-632],[2020,-2147],[2378,-986],[1393,-1457],[1491,687],[2308,-1839],[1154,288],[1326,1522],[895,173],[-35,3762],[632,780],[2463,1084],[459,712],[2858,1203],[2436,1718],[2518,163],[2057,682],[1405,1108],[3183,528],[104,1744],[1619,382],[1495,-521],[-430,-1498],[1544,-363],[3833,1843],[-2344,1741],[465,801],[1483,323],[2129,-815],[191,-854],[2203,-149],[-1011,2798],[-48,1151],[1074,1418],[1801,543],[2223,1466],[4598,632],[4033,-254],[1272,-602],[2345,-2284],[989,-128],[1215,-881],[147,-795],[-2136,-607],[120,-1011],[987,-624],[1157,198],[4108,-850],[293,-1291],[4387,101],[3014,-965],[1517,-75],[1510,-583],[2482,901],[6770,-1374],[7926,-1073],[1630,922],[887,-55],[824,-5053],[-1176,-1157],[397,-1006],[-401,-1896],[-2240,342],[-698,-389],[488,-2098],[1077,-988],[-2002,-152],[-908,-695],[-257,-1669],[772,-825],[2182,457],[349,-2713],[4613,-3100],[1429,-745],[1319,2037],[2746,3190],[999,685],[-1205,2022],[2682,1703],[1248,484],[3113,-254],[1845,759],[991,1435],[5083,2444],[-113,2202],[1003,994],[2592,1937],[2588,1041],[3162,715],[4086,1349],[2633,1403],[1731,1707],[1803,-67],[1574,-530],[4487,1799],[1872,1017],[1700,12],[3269,-721],[5503,2016],[2822,-852],[2349,71],[5238,697],[1015,-676],[1489,-108],[1012,440],[1707,-230],[4132,965],[-127,2001],[-580,1971],[2420,-388],[549,744],[2192,1648],[1270,-43],[439,-667],[-1643,-937],[-979,123],[-398,-921],[77,-1524],[2397,-985],[1611,1519],[2910,772],[3051,-778],[3474,-414],[2554,-899],[2328,-1088],[3527,-1097],[2285,-2002],[1050,214],[717,1683],[2292,-113],[997,1415],[-384,820],[1137,1199],[1721,732],[2581,261],[2007,1004],[605,-195],[1415,-1812],[781,-207],[917,-1720],[962,-596],[2163,664],[1545,-237],[2132,-2491],[1907,-965],[1599,-255],[1848,564],[1851,52],[3943,730],[368,-1385],[774,-82],[8052,2223],[5101,2347],[3593,-2001],[1325,-2435],[3849,-21],[1198,1556],[-186,1375],[939,1724],[-1338,1217],[609,619],[5333,-1687],[2593,155],[2245,521],[2034,-683],[1654,2058],[-736,1845],[216,1334],[838,291],[1659,-1749],[-577,-2383],[3078,-2145],[1575,106],[2169,-371],[1291,-746],[3020,-260],[2352,-1072],[4994,-344],[1760,-1420],[2395,1007],[1097,-462],[589,-889],[2250,6],[2072,1588],[2529,-162],[1033,-1018],[-597,-1292],[-3017,-1072],[-796,-1086],[2171,6],[2867,-1904],[2098,722],[1756,-65],[471,-2445],[-1542,-297],[944,-970],[1989,641],[1909,-782],[3336,930],[139,-1971],[895,-567],[1388,49],[1470,1460],[3937,856],[2422,-1453],[-674,-1334],[1154,-1323],[1584,688],[3780,-1761],[1304,507],[2741,-1080],[2150,-470],[1817,-1963],[2240,-1119],[302,-1187],[1221,-1098],[1798,-521],[2516,422],[1382,-1995],[1598,735],[4904,-757],[3405,26],[513,-473],[2387,-540],[1521,-2418],[1771,-596],[3485,-2197],[809,1223],[1377,-2207],[-2196,-1019],[-673,-1205],[760,-2339],[-1556,-2115],[-1577,-1101],[29,-1151],[-1621,-1302],[-1412,599],[-2093,-329],[-1513,-1087],[-5278,-2424],[1436,-2182],[-4566,-366],[-804,293],[-1840,-1949],[-331,-2322],[3715,-205],[2143,-826],[-228,-879],[-5004,581],[-797,-1391],[1035,-295],[-695,-1880],[-1077,-440],[1503,-1892],[-177,-2414],[2381,-3195],[-581,-1675],[2960,-471],[-427,-2049],[-2696,-1115],[1193,-528],[4334,856],[2278,-1842],[-5527,-354],[-3816,-1369],[-698,-1408],[-4464,31],[-1184,-655],[-1072,-2857],[643,-1683],[-628,-787],[2294,-3709],[-1224,-1235],[-66,-2638],[4277,-1887],[4922,-3082],[-7047,-924],[1284,-691],[8391,577],[2591,-1597],[3145,-906],[-589,-685],[4951,-759],[-1610,-1378],[6455,-1192],[4280,-257],[9808,-2535],[3961,-243],[7530,-1369]],[[998019,7770],[1980,-957]],[[54653,33599],[-1618,-35],[-6675,1755],[-2282,1365],[-644,1258],[1846,968],[896,1332],[1990,169],[3787,-796],[899,-1151],[3388,-1942],[1683,-1802],[-3270,-1121]],[[307504,37732],[-3207,205],[3387,2711],[3246,1241],[2795,625],[3322,-551],[-3445,-1223],[-6098,-3008]],[[963883,48432],[3626,-121],[2466,-506],[-2081,-1433],[-2106,419],[-1632,-566],[-2088,465],[-312,2186],[2127,-444]],[[89902,48030],[-1081,-12],[-2068,662],[431,1345],[2380,-627],[635,-1081],[-297,-287]],[[288509,45997],[1192,-1529],[-2535,-671],[-3987,-31],[-2855,797],[-1320,-308],[-3176,1681],[2315,1726],[550,1455],[3732,1179],[2210,168],[2022,-1022],[800,-2933],[1052,-512]],[[85773,49745],[-3106,294],[-792,869],[2293,366],[1605,-1529]],[[134179,66970],[1527,-546],[326,-1230],[-2430,526],[577,1250]],[[147071,64976],[-2259,1082],[100,1028],[2629,-922],[-470,-1188]],[[176328,67586],[-2647,617],[3569,1259],[-922,-1876]],[[166264,70232],[3457,-134],[195,-1221],[-3007,-1741],[-1903,-611],[-4915,251],[-789,882],[1012,1557],[-1630,798],[949,941],[6631,-722]],[[152527,72760],[1229,-1531],[-894,-1237],[2859,518],[1511,-1494],[-420,-1308],[-2316,203],[-1259,856],[-2448,801],[-1492,1968],[-1849,642],[810,1508],[2372,186],[1897,-1112]],[[250839,73943],[-1640,-129],[-188,1093],[2237,258],[-409,-1222]],[[292948,70550],[-3323,1250],[-1282,1614],[1428,841],[275,1101],[1711,20],[1871,-968],[-381,-1255],[143,-2014],[-442,-589]],[[285014,74703],[-2771,-1310],[-1225,49],[-150,1330],[1565,142],[469,1003],[2543,165],[-431,-1379]],[[247384,74435],[-2041,2246],[1836,453],[550,-906],[-345,-1793]],[[226905,80154],[933,1398],[1451,-947],[1699,1196],[1637,-161],[399,-878],[1705,-1144],[223,-1107],[-1750,-1380],[-3629,247],[-3250,-175],[-749,764],[-2999,31],[-5881,927],[-1176,695],[671,728],[4363,1123],[862,-1100],[2945,1211],[1227,870],[1348,-613],[-29,-1685]],[[292874,87220],[-2200,-201],[-354,1001],[4242,927],[191,-1013],[-1879,-714]],[[292529,94619],[574,-1424],[-470,-826],[-3403,133],[-598,1559],[3897,558]],[[327681,93743],[-552,331],[-1038,2741],[1049,241],[793,-1349],[-252,-1964]],[[307221,94533],[841,-3315],[1115,-1208],[688,-1523],[708,-5431],[-509,-3486],[-1970,-1360],[-89,-1037],[-1061,-647],[-2090,-345],[-4966,41],[-1788,1362],[1355,1239],[3758,-276],[491,555],[-586,1337],[-2511,1966],[-1753,424],[-230,-964],[-1870,-26],[317,-1266],[-1515,-1267],[-1858,622],[-3422,2228],[-591,1367],[2456,-368],[-735,1232],[4246,962],[1814,1024],[2926,74],[2319,1459],[-1485,983],[580,1629],[1008,986],[-2641,2015],[-13,1549],[569,1475],[-1152,1070],[1759,1006],[2522,801],[1258,-583],[262,-1370],[1843,-2934]],[[311030,107534],[-1635,-2163],[-960,99],[-547,1685],[1055,1094],[843,2541],[1642,168],[363,-2286],[-761,-1138]],[[840327,112080],[-2013,25],[-1545,3818],[-133,1399],[698,308],[972,-2261],[2035,-2205],[-14,-1084]],[[317028,116777],[-932,345],[692,1368],[799,-191],[-559,-1522]],[[324241,125125],[578,-732],[-1738,-1686],[-1624,702],[123,705],[1738,1763],[923,-752]],[[339425,128099],[1828,-1037],[-560,-1491],[-2361,-361],[-536,2350],[810,795],[819,-256]],[[347028,132163],[-728,-885],[-1196,435],[-1814,-838],[-25,1172],[2180,764],[1583,-648]],[[332504,136222],[-119,-1255],[-2504,919],[2623,336]],[[338749,139899],[1046,-659],[-2763,-1378],[-159,1316],[1876,721]],[[996132,399556],[-151,-724],[-580,-156],[-631,-795],[-658,-38],[-1499,851],[-190,1548],[1160,2524],[1366,593],[741,-1354],[442,-2449]],[[999916,410184],[-1128,-2305],[-45,-1135],[-460,-230],[-508,607],[-368,-1074],[-750,-463],[-813,785],[230,1048],[2137,1431],[341,695],[1364,641]],[[915790,775437],[-13,1342],[1496,1972],[243,-701],[-1726,-2613]],[[932995,802763],[-1368,-1227],[-282,1599],[990,429],[727,1870],[695,-667],[-762,-2004]],[[896742,826505],[166,-1814],[677,-3374],[-92,-1785],[621,-1807],[-628,-3642],[143,-2024],[890,-2680],[618,-4052],[603,-3253],[1543,-6673],[-906,1338],[-1097,509],[-1170,-83],[-939,-991],[-1194,-6259],[-44,-1662],[243,-1180],[1196,-3301],[1041,-1256],[448,-2528],[-1218,1255],[-1298,861],[-765,-990],[-592,-3036],[-733,-36],[-331,3098],[683,2933],[-254,3151],[636,2285],[-156,1940],[-268,785],[-198,2530],[448,3632],[92,3769],[-184,1646],[190,2977],[223,1318],[-661,2175],[-974,2303],[81,2956],[364,1108],[163,2985],[-351,1593],[1368,979],[547,-973],[590,796],[368,1348],[-1267,3246],[1378,-117]],[[883183,829388],[-610,-734],[-1349,805],[773,2162],[1181,-66],[534,-693],[-529,-1474]],[[962861,830040],[-1218,429],[-1115,2298],[476,314],[1857,-3041]],[[956201,853425],[-1830,-1413],[1120,2672],[1768,1154],[117,-2084],[-1175,-329]],[[698706,899572],[-1412,-196],[-275,1232],[1192,340],[495,-1376]],[[0,913503],[2748,-1139],[3472,-2528],[4413,-2714],[2440,-1745],[1475,-1792],[-380,-1559],[447,-2590],[752,-1175],[1709,-665],[-465,3984],[1007,793],[5608,-1098],[749,-1333],[3491,-2839],[717,-233],[-1961,-1873],[-64,-1442],[-1619,662],[-200,-1163],[-2800,-591],[424,-1956],[-817,-1016],[-1358,-306],[1,-996],[1296,-1009],[-506,-889],[-1373,-766],[-2429,1014],[-838,1379],[-3139,1007],[-1070,1449],[-337,2014],[-2844,1140],[-1656,-850],[-2024,-53],[-716,514],[-437,1485],[56,1493],[-1167,1220],[-1694,-499],[-297,-1077],[327,-1256],[1053,-1507],[-821,-1824],[-1173,-1028]],[[638062,912902],[-2869,-1016],[-1123,976],[-156,891],[565,1926],[2337,937],[2051,-1180],[676,-795],[-1481,-1739]],[[970159,917075],[-944,-179],[-2106,772],[-1062,748],[1654,1209],[3016,-1212],[-558,-1338]],[[664081,922228],[3851,-3291],[84,-1022],[-2446,-100],[-1507,864],[-1201,1206],[241,1692],[978,651]],[[647583,925134],[-2259,2337],[1388,264],[1093,-1476],[-222,-1125]],[[999997,925444],[-1154,-790],[-2246,-448],[-303,1837],[2043,1687]],[[998337,927730],[1662,837]],[[999999,925298],[-2,146]],[[715592,933070],[-1550,606],[1552,1242],[1532,-256],[419,-974],[-1953,-618]],[[720965,935731],[-2577,681],[1876,1418],[701,-2099]],[[653390,939342],[3126,-728],[-945,-2675],[-1660,-2027],[-243,-3031],[2437,-4337],[2019,-1758],[1819,-1083],[-886,-931],[-4642,917],[-1167,-931],[-2367,1214],[-2273,296],[746,763],[-69,1298],[-3056,2287],[-1540,-469],[-1208,414],[-598,1481],[378,1667],[2314,-83],[1486,2948],[-1440,1138],[409,651],[1993,315],[-321,1376],[690,557],[4998,731]],[[696935,937938],[-2713,-436],[459,2147],[2297,508],[999,-363],[1039,-1540],[-2081,-316]],[[898883,939956],[-84,-1279],[-863,-351],[-4513,675],[-2195,765],[-89,1178],[985,1439],[2659,262],[3195,-1673],[905,-1016]],[[890845,942653],[-1393,960],[587,1087],[1974,-324],[-151,-1092],[-1017,-631]],[[815177,945282],[-1772,-1629],[-3137,941],[892,1820],[3318,-299],[699,-833]],[[907669,951247],[2417,456],[1741,-237],[2031,-1051],[1129,232],[3649,-815],[-101,-1392],[-3117,-805],[-3676,123],[-1851,1166],[-3727,1583],[1505,740]],[[890611,953275],[838,-33],[387,2099],[2083,315],[2300,-1514],[4022,-324],[3182,-1305],[-1225,-1215],[-215,-1363],[-1661,-765],[-4437,-1253],[-798,1270],[-7508,-1661],[-970,-587],[-2329,649],[-2680,1861],[-1093,1226],[877,1314],[-335,1294],[1604,1717],[2334,1001],[3267,-1149],[2357,-1577]],[[691174,958074],[-1897,-1594],[-5286,-1710],[-11232,-3069],[-2526,-1003],[-2179,-1983],[-443,-1001],[-4894,-1885],[292,-1336],[-2204,-1898],[15,-786],[-3200,-3166],[-5021,1219],[-3428,1988],[2683,1022],[-189,420],[2476,1463],[719,968],[-347,1237],[2859,84],[-2405,2457],[2385,40],[1142,1751],[1824,-6],[1242,1712],[1451,699],[4890,1296],[1767,1557],[4378,-379],[5299,956],[3889,1340],[231,928],[4140,1457],[3450,-704],[119,-2074]],[[786505,974495],[3724,-2702],[2005,-281],[513,-1507],[-1544,-1357],[-5654,-796],[-4314,-67],[-4159,-1274],[-1,1405],[3285,3691],[1273,2303],[2734,1206],[2138,-621]],[[760187,977628],[-1486,-690],[-5055,735],[-198,1191],[5081,-94],[1658,-1142]],[[771340,979567],[1234,-636],[3331,1],[1932,-1125],[-578,-3482],[435,-2120],[-1533,-566],[-4868,-42],[-2052,1107],[-5777,434],[-1142,960],[-60,1477],[-3041,414],[3153,1387],[1425,1790],[7541,401]],[[658492,979012],[-3423,156],[341,1249],[2935,290],[536,-307],[-389,-1388]],[[649385,979728],[-3843,20],[1470,1117],[2373,-1137]],[[663766,981083],[-4462,-1542],[-177,1057],[-777,677],[5416,-192]],[[632401,983575],[571,-462],[-3872,-1522],[-890,981],[4191,1003]],[[672418,983687],[9,-1563],[-2655,-1348],[-4859,801],[641,1661],[6864,449]],[[641594,983862],[2299,-1011],[-1860,-761],[-3587,-598],[-2444,-1282],[-5605,-468],[-437,771],[4046,474],[3583,1430],[-984,932],[1742,651],[3247,-138]],[[659950,982772],[-8583,1733],[546,653],[5515,-894],[2522,-1492]],[[677048,982691],[-3380,557],[1863,920],[6093,-137],[-1128,-786],[-3448,-554]],[[771711,983295],[-1758,-911],[630,-2138],[-7445,-840],[-2519,-714],[-3295,680],[-1644,1740],[2319,341],[1139,2739],[4502,972],[2442,933],[2910,-2112],[2719,-690]],[[912630,773476],[-714,-514],[-2196,-2395],[-1468,-2143],[-92,845],[2919,4556],[853,-466],[811,1276],[868,135],[-144,-1053],[-837,-241]],[[6910,927012],[-1279,-1443],[-4203,-803],[-1428,530]],[[0,928567],[2519,356],[2310,-448],[2081,-1463]],[[634940,753124],[1217,-2440],[652,-2623],[768,-1917],[511,-495],[891,-21],[559,-494],[71,-958],[-830,112],[-1088,-812],[-396,-945],[-82,-1798],[-540,-4122],[-750,377],[-183,-2174],[5,-1790]],[[635745,733024],[208,-3197],[442,-1531],[938,-912],[1378,-214],[666,-343],[438,-1537],[1743,-2035],[714,-482],[1844,-740],[618,94],[3815,1686],[1134,-534],[404,911],[-340,2313]],[[649747,726503],[-292,3269],[102,3109],[241,2081],[-367,1604],[-601,1635],[-776,139],[2,1079],[733,-373],[466,316],[-675,2176],[-393,528],[-992,-4],[-699,460],[-47,2341],[540,3385],[337,-771],[1942,-1606],[1745,623],[949,904],[71,1355],[-1829,2196],[-489,3508],[-660,435],[-1416,-282],[-514,-599],[-402,-1754],[151,-1110],[-151,-1711],[-973,3369]],[[645750,752805],[-11,2347],[776,2732],[-540,931],[-1278,444],[-1859,1662],[-297,803],[-1287,5111],[-1578,973],[63,1921],[1704,-337],[636,-694],[695,756],[-1212,1449],[-43,607],[1402,2355],[3257,129],[339,1590],[934,2124],[349,4020],[-414,1212],[-537,374],[-1243,-11],[-496,-872],[-1278,599],[-702,895],[-925,353],[-610,-332],[-3921,-3126],[-951,-1093]],[[636723,779727],[-1649,-2566],[-1360,-1006],[-786,-141],[-795,-904],[-1254,-4128],[-955,-1027],[-165,-1575],[954,-631],[580,-1033],[835,-2712],[-220,-1349],[-58,-2616],[924,-2364],[1446,-3286],[720,-1265]],[[728889,685556],[896,-274],[2884,-3143],[849,-1301],[868,-702],[911,-1171],[1949,-130],[6254,-726],[357,675],[543,451],[1796,51],[6687,-202],[2937,-373],[3207,-1085],[993,229],[2079,1188],[1290,1375],[917,1584],[319,109],[197,-519],[101,-857],[-155,-1053],[-755,-1641],[-468,-1017],[-16,-803],[480,-1896],[123,-1738],[660,-974],[197,-292],[-37,-583],[-259,-688],[-1273,-1913],[-1212,-2493],[-1788,-1835],[-2982,-1045],[-988,-536],[-1775,-1475],[-1202,-187],[-1790,-14],[-756,-273],[-616,-622],[-520,-920],[-223,-838],[-158,-590],[-487,-4041],[282,-2150],[84,-4291],[726,-1180],[611,-1422],[449,-1765],[72,-431]],[[761344,701776],[1010,44],[1371,-438],[2498,-2701],[1108,-628],[1950,-3312],[621,-2819],[255,-2318],[1637,-4839],[1218,-3610],[943,-4159],[1122,-8551],[339,-2887],[63,-5919],[188,-2117],[419,-1912],[765,-1957],[694,-1062],[1066,-665],[336,-438],[184,-717],[90,-875],[-123,-1264],[-936,-4084],[-45,-957],[136,-1209],[2257,-7456],[95,-280],[367,309],[81,-2379],[2,-64],[-2225,-3619],[-139,-225],[-48,-179],[-544,-1998],[423,-642],[770,-1168],[10,-14],[28,-632],[28,-631],[78,-15],[1438,-241],[991,106],[1981,1056],[-836,-2918],[-331,-4925],[-757,-3320],[-17,-1125],[208,-850],[7,-32],[62,-59],[1466,1765],[832,-1042],[300,31],[1150,121],[177,18],[398,1465],[161,592],[24,-5],[2077,-401],[2113,-4800],[84,-2835],[63,-2111],[26,-887],[2240,-5131],[9,-20],[-2,-70],[-34,-1382],[23,-48],[548,-1159],[304,-2065],[-59,-3270],[180,-1453],[84,-677],[-43,-2998],[64,-4081],[-118,-1552],[-333,-652],[-443,-312],[-785,-1557],[-884,-981],[-274,-1262],[449,-3891],[140,-705],[125,-629],[996,-2600],[2031,-4532]],[[750903,787441],[-347,-1431],[-1297,-1451],[-935,-552],[-969,108],[-5846,3385],[-1509,1161],[-2370,613],[-778,201],[-2528,-1550],[-1448,1794],[-600,936],[-190,704],[-166,2751],[354,697],[693,762],[398,890],[-358,1006],[-1442,1759],[-2441,2462],[-958,720],[-997,412],[-3759,788],[-5229,2258],[-3618,6512],[-678,1543],[-1091,3324],[-773,1236],[-2051,2333],[-778,1181],[-532,1133],[-267,945],[0,3],[-78,811],[-1316,2303],[-344,294],[-757,647],[-758,647],[-349,295],[-255,281],[-465,522],[-249,281],[-818,2082],[93,452],[608,826],[892,826],[1628,1039],[641,671],[424,901],[238,1040],[-21,1236],[-203,1371],[-421,1271],[-551,995],[-1638,1346],[-2192,1128],[-3963,1255],[-3292,1699],[-4026,517],[-442,206],[-823,382],[-445,202],[59,485],[63,491],[654,1150],[272,1295],[532,1406],[487,2487],[448,861],[569,585],[1245,1319],[61,729],[-103,657],[194,885],[-92,1526],[-220,847],[-632,914],[-276,288],[-608,632],[-610,632],[-279,287],[-104,-103],[-99,-103],[-1049,695],[-507,1423],[-1614,1671],[-1145,1996],[-2645,2238],[-1644,1274],[-774,1093],[-297,1346],[345,1368],[727,1660],[401,2528],[236,591],[21,646],[-955,2854],[-199,1527],[-276,440],[-119,753],[1105,3754],[192,1165],[11,930],[1395,1691],[933,729],[988,227],[3222,-173],[2200,1213]],[[697206,899768],[1320,47]],[[153234,841264],[1765,-3034],[865,-914],[959,-261],[2260,318],[1412,-457],[689,-8],[1713,1004],[3090,-223],[2042,588],[891,-42],[1440,-1348],[900,-207],[1576,430],[758,599],[849,1519],[65,784],[-225,1831],[349,2519],[69,2205],[196,1626],[508,829],[494,342],[373,955],[608,485],[930,282],[2822,-53],[998,391],[345,214],[771,463],[799,440],[431,147],[514,200],[794,498],[413,280],[1393,1432],[902,168],[716,-251],[385,-650],[1432,186],[-91,3142],[-348,1840],[-2262,2208],[-305,550],[26,803],[-243,533],[-1636,1848],[-340,1894],[-492,407],[-340,9],[-339,10],[-374,60],[-826,131],[-825,130],[-376,59],[-4905,-1305],[-1012,189],[-2693,1102],[-1352,672],[-2544,-710],[-1938,194],[-1526,764],[-715,628],[-662,1249],[-2155,1139],[-3986,1587],[-640,630],[-115,952],[186,2109],[-254,1126],[-1761,4041],[-1061,1547],[-425,1303],[-756,1186],[-732,1585],[-764,673],[-2449,1437],[-2077,1432],[-3058,1874],[-1781,676],[-658,814],[-208,1000],[392,1730],[-510,786],[-2069,1632],[-759,883],[-837,1967],[-521,544],[-630,283],[-1248,597],[-4011,-954],[-1008,-3],[-991,393],[-1270,953],[-1001,1306],[-582,1839],[-21,765],[687,1581],[-235,1517],[-1643,1522],[-991,1815]],[[522832,789785],[927,-390],[2391,931],[3627,3017],[2677,859],[970,1379],[341,-158],[634,-289],[341,-143],[425,-310],[936,-704],[936,-707],[425,-323],[452,-275],[2923,-1780],[817,-124],[1774,955],[840,-125],[2615,-1074],[672,-713],[287,-304],[737,-782],[423,-266],[601,-378],[2331,724],[415,-309],[178,-133],[322,-815],[-257,-2910],[53,-2353],[-195,-2944],[-328,-1450],[46,-409],[84,-376],[9,-25],[200,-529],[3,-9],[338,-1091],[177,-592],[229,-434],[427,-795],[232,-394],[335,-84],[733,-244],[732,-255],[333,-118],[1061,-1930],[627,-340],[1645,487],[193,-117],[368,-224],[613,-650],[1007,-1067],[835,1269],[37,56],[251,-270],[371,-398],[63,-68],[-604,-937],[-40,-61],[509,-1030],[43,-131],[756,-2299],[505,203],[571,230],[2135,-922],[18,-1],[2626,-200],[1435,-110],[1378,1508],[192,81],[2560,1075],[518,218],[118,-136],[46,-116],[230,196],[601,406],[620,401],[285,181],[351,447],[-24,511],[-465,1468],[309,2803],[163,360],[308,689],[165,395],[17,39],[342,-204],[604,-495],[322,-278],[1306,951],[246,-198],[1014,-817]],[[347013,421185],[-992,-225],[-1912,-1960],[-595,-1002],[-163,-1240],[851,-4580],[424,-1392],[20,-807],[-199,-718],[-1196,-1865],[-308,-921],[-137,-1530],[-1085,-3118],[-541,-830],[-398,-1125],[-345,-3204],[-437,-2434],[730,-1959],[-139,-1079],[-193,-537],[-427,-1180],[-434,-1177],[-211,-528],[-244,-293],[-221,-303],[-435,-611],[822,-3286],[-39,-1665],[-12,-522],[-63,-2777],[-71,-3059],[-3,-12],[-101,-414],[395,-2293],[9,-1594],[1353,-5218],[392,-2012],[220,-1723],[-24,-1802],[-383,-1962],[-847,-1696],[-109,-662],[-50,-303],[5,-525],[-3,-535],[-182,-589],[-25,-83],[-510,-1668],[-660,-2165],[-277,-909],[-382,-1255],[-507,-1664],[-107,-351],[-89,-293],[-7,-22],[-644,-2879],[-119,-2092],[-502,-2268],[-427,-4195],[-469,-819],[-351,-1218],[-184,-1785],[-182,-5983],[-1136,-3264],[-881,-1549],[-585,-1477],[-292,-1593],[-84,-1675],[39,-1315],[197,-1345],[420,-1388],[670,-1324],[1057,-1506],[1856,-1857],[1477,-1071],[663,16]],[[572914,436413],[-864,528],[-829,2764],[198,2620],[-678,2171],[-52,1668],[149,3771],[402,1222],[768,878],[440,1971],[1000,2921],[807,651],[349,681],[171,768],[-86,1621],[337,3871],[21,2158],[-241,5981],[143,2116],[-98,1440],[-373,1548],[-1257,2435],[-620,1575],[-339,1922],[-60,922],[-132,2025],[-132,2022],[-60,909],[-22,848],[-51,2042],[-61,2442],[-50,2047],[-22,859],[-335,2023],[-359,1380],[-200,1417],[92,2865],[-289,2364],[-1322,1140],[-1781,1437],[-4326,6905],[-1077,1060],[-1763,69],[-4014,-1286],[-1000,-476],[-2124,-1591],[-1195,-2267],[-625,-1647],[-422,-1917],[-379,-2880],[-1377,-3657],[-289,-769],[-211,-560],[-1828,-2849],[-1273,-3044],[-491,-2336],[-110,-524],[-606,-2882],[93,-4862],[-702,-1892],[-1618,-2886],[-1464,-3318],[-170,-386],[-1074,-10],[-337,-286],[-690,-1403],[-601,-625],[-390,-2341],[-115,-100],[-146,-519],[-115,-83],[-859,-627],[-260,36]],[[799944,824995],[176,578],[-8,491],[-716,643],[-1670,-2202],[-440,-296],[-267,78],[-2277,6],[-1228,805],[-1049,2148],[-368,2931],[40,1020],[1538,4676],[173,2272],[1280,1514],[-162,470],[-572,510],[-334,648],[414,805],[872,670],[1340,597],[627,943],[1001,177],[844,812],[1068,1904],[1465,1684],[878,708],[1557,697],[1453,1657],[3035,1298],[2035,2126],[1433,934],[814,1441],[2411,2267],[2556,3339],[1426,1415],[1465,71],[1889,-812],[1974,-1488],[1683,-2022],[926,-785],[1433,-472],[951,454],[1953,1696],[371,147],[886,351],[1058,420],[888,353],[375,152],[396,285],[727,521],[390,279],[6543,18],[4010,981],[3693,1761],[5977,1380],[2054,1241],[1466,2425],[491,1392],[100,1597],[-274,1755],[-1327,4597],[-2996,649],[-961,690],[-3062,3002],[-3732,2693],[-1978,2000],[-754,1289],[-961,3664],[-1341,3819],[-1287,5065],[-244,1713],[104,1413],[1554,3090],[927,3334],[687,1229],[827,905],[1249,2595],[1149,1171],[1178,1502],[88,1182],[3226,1261],[651,643],[345,711],[-14,792],[-500,1933],[-460,2949],[-503,1416],[-664,1327],[-1882,209],[-3890,1902],[-5166,1507]],[[752207,708541],[991,121],[5115,-1304],[2346,1304],[884,1391],[648,576],[813,123],[895,-431],[1030,-1153],[1747,-3088],[1128,-1201],[1731,-2624],[1159,-2695],[1977,-2922],[593,-1636],[462,-1891],[646,-1951],[-210,-1234],[585,-2808],[209,-1968],[311,-6456],[377,-4829],[120,-471],[223,-879],[119,-484],[100,-630],[220,-1364],[220,-1361],[100,-617],[471,-1691],[506,-498],[444,974],[293,1479],[348,962],[275,-528],[116,-1234],[-198,-3320],[35,-2497],[144,-800],[305,-151],[1076,255],[1836,1605],[444,-2],[175,-704],[73,-1120],[234,-690],[1240,1021],[871,210],[391,477],[232,1176],[-64,3732],[187,886],[339,359],[899,2666],[202,1541],[684,1100],[155,892],[15,1093],[1319,-5],[1154,650],[1032,-61],[1207,671],[758,-21],[238,799],[1968,3172],[2750,2216],[793,1286],[1162,2590],[261,925],[483,731],[799,459],[1657,429],[2210,75],[1589,-597],[1076,-1139],[885,-2064],[1386,-165],[487,-777],[646,-2376],[431,-455],[517,16],[372,-201],[113,-940],[476,-521],[1472,2546],[770,1007],[-33,913],[354,493],[702,1721],[668,14],[678,-458],[1674,-2983],[802,-928],[825,-300],[798,197],[1200,1246],[719,2119],[1034,1694],[757,713],[773,1712],[1099,1638],[771,2593],[521,1190],[740,759],[909,321],[1151,-402],[2309,-3092],[955,-577],[1465,-337]],[[592241,507362],[-55,985],[-817,5220],[-254,326],[-491,621],[-319,385],[-410,414],[-337,349],[-190,97],[-37,254],[376,1213],[2,879],[-298,760],[-526,451],[-644,52],[-289,-153],[-536,-285],[-288,-152],[151,613],[150,613],[-49,814],[-48,812],[60,1624],[285,1621],[433,1244],[822,1055],[-51,157],[-744,2260],[-347,1892],[-3,2030],[394,4333],[-202,3018],[-1457,5317],[-995,2433],[-550,1790],[-371,1987],[-472,4094],[-68,1985],[183,1786],[526,1113],[758,363],[924,-167],[547,-168],[602,328],[682,1030],[1040,2400],[225,1067],[-178,1294],[67,770],[1071,3313],[287,2012],[169,3101],[31,1416],[51,2360],[-85,2136],[-272,2064],[-925,4608],[-176,1999],[657,6925],[192,1838],[398,1615],[690,1300],[1003,1204],[745,1356],[533,1753],[302,2288],[88,2118],[-98,1675],[-782,3591],[-600,3654],[-613,150],[-672,-284],[-757,-899],[-1533,-2687],[-1661,-3804],[-513,-654],[-460,-26],[-465,252],[-431,756],[-380,1190],[-530,3650],[-407,4712],[585,1561],[74,642],[-612,1975],[-54,721],[740,2388],[1330,3277],[953,2882],[88,192],[853,1865],[645,1023],[1241,660],[383,776],[433,1231],[318,1666],[104,1825],[-49,1938],[27,3400],[-133,1908],[-698,2609],[-185,1683],[559,1564],[68,753],[-235,476],[-1507,319],[-935,2080],[-1338,3594],[-605,1187],[-440,1304],[-207,1471],[-43,1588],[-183,1361],[76,1110],[1027,5005],[163,2067],[29,2768],[-173,5297],[-362,2794]],[[300920,415174],[465,3216],[-156,2987],[-283,1235],[-549,1042],[-777,960],[-1706,1492],[-1306,384],[-948,2389],[-823,3082],[-339,1760],[-454,4406],[-3,1035],[951,526],[186,939],[-146,1346],[-575,2410],[-153,1257],[122,1899],[-445,1057],[-858,3855],[21,1716],[363,1343],[-405,718],[-492,1898],[-689,1375],[-315,2216],[-539,1675],[21,547],[201,433],[-69,2870],[159,1703],[458,1019],[532,567],[1225,1952],[671,2967],[251,550],[465,428],[884,3118],[362,1604],[396,805],[212,2090],[290,762],[452,354],[1101,81],[953,361],[742,-94],[897,-1746],[769,-758],[1015,-594],[754,425],[732,-136],[700,-929],[449,-986],[229,-503],[570,287],[447,784],[668,3055],[861,1057],[2456,866],[302,472],[77,644],[761,1434],[776,934],[1479,285],[847,1022],[1510,-61],[658,-629],[391,-37],[503,-446],[2399,-4217],[1568,-2041],[2316,-1724],[1225,1060],[905,393],[1666,-389],[881,506],[2493,2475],[1866,856],[262,379],[478,110],[2692,-1295],[426,686],[610,85],[1526,3271],[807,963],[2149,96],[1619,2047],[826,700],[854,384],[1010,-1112],[958,-224],[781,-1565],[942,764],[1094,1966],[821,889],[2946,2348],[1800,2043],[2188,3558],[1025,2639]],[[192378,770163],[-515,-283],[-473,459],[-291,331],[-291,330],[-324,220],[-322,219],[-262,797],[-50,1372],[571,4225],[-12,1171],[-88,408],[-87,412],[-131,463],[-243,854],[-133,461],[-237,449],[-236,446],[-149,754],[184,987],[587,1088],[1317,1748],[1830,1925],[792,298],[1132,-929],[2447,-253],[324,-150],[713,-330],[712,-330],[319,-150],[238,-88],[448,-162],[243,-87],[2709,1219],[344,413],[640,766],[344,414],[479,66],[1140,158],[1361,188],[1141,157],[478,66],[2716,-595],[1478,385],[962,-200],[2094,-2414],[963,-573],[283,-72],[527,-135],[283,-72],[124,-467],[123,-468],[850,-1044],[164,-701],[305,-1302],[164,-702],[238,-642],[239,-642],[98,-2102],[597,-4671],[-42,-1568],[-247,-1033],[-501,-960],[29,-636],[200,-629],[227,-293],[227,-291],[341,-367],[633,-685],[341,-369],[819,-166],[188,-269],[349,-500],[188,-269],[-34,-449],[-63,-835],[-34,-449],[96,-608],[353,-497],[768,-1106],[748,-1139],[290,-596],[-34,-154],[50,-23],[717,-746]],[[226844,759211],[1022,-468],[240,267]],[[228106,759010],[660,-20],[991,58],[720,-759],[761,-496],[126,-489],[238,-286]],[[231602,757018],[466,-82],[125,-588],[177,-973],[-6,-489],[505,-1115],[174,-979],[21,-1365],[200,-190],[184,-707],[285,-1704],[61,-1020],[-77,-1060],[182,-1067],[55,-489]],[[233954,745190],[468,-935],[432,-757]],[[234854,743498],[360,-1264],[660,-788]],[[235874,741446],[362,12],[79,-855],[-390,-1097],[210,-563],[343,-1240]],[[236478,737703],[731,-561],[3953,1054],[525,-251],[411,-1431],[870,-925],[663,-1289],[682,-262],[1654,331],[1573,-210],[1258,945],[214,32],[393,30],[193,-65],[-106,-674],[-83,-564],[-258,-862],[-178,-1038],[394,-887],[549,-834],[314,-22],[728,-1300],[281,-175],[207,-1428],[-102,-890],[355,-1450]],[[251699,724977],[300,152],[493,-916],[-88,-592],[54,-930],[-441,-490],[-623,-622],[-72,-574],[-170,-842],[-216,-1440],[-59,0],[-9,0],[44,-246],[-6,-245],[-282,-832],[-486,-576]],[[250138,716824],[-108,-978],[-439,-776],[33,-1722],[-317,-551],[-52,-468]],[[249255,712329],[-495,-440],[-11,-857],[-372,-1582],[-321,-335],[-491,-803],[-293,-1223],[-607,-2061],[-64,-1401],[320,-1551],[-133,-1163],[199,-337],[-253,-853],[402,-1217]],[[247136,698506],[-114,-731],[358,-1018]],[[247380,696757],[-385,-603]],[[246995,696154],[-129,-1118],[-537,-921]],[[246329,694115],[-250,-1239],[-252,-1427],[-340,-660],[113,-1475]],[[245600,689314],[153,-1412],[524,-955],[607,-2227],[362,-805],[578,-478],[2048,-929],[259,-558],[181,-908],[1344,-2899]],[[822770,681655],[40,199]],[[708027,725879],[-1081,31],[177,-1232]],[[707123,724678],[-1204,-1032],[-1366,279]],[[704553,723925],[-2342,-326],[-1304,-562],[-1721,-1755],[-1283,-2009],[805,-2267],[312,-3006],[-380,-1455],[-994,-1539],[-361,-1547],[401,-698],[-242,-1539],[-601,-590],[-853,-154],[-1770,520],[119,-1561],[656,-921],[321,-1285],[-294,-899],[-780,-803],[-955,-73],[-932,-4055],[181,-2559],[-537,-1608],[-589,-673],[-516,666],[-796,306],[-1010,-346],[-1163,-1062],[332,-1187],[-1370,-718],[-673,652],[-565,-273],[-1269,-2223],[-265,-1910],[223,-3604],[-278,-588],[-3382,-1916],[-942,232],[-1458,-526],[-1140,-162],[-537,191],[-2118,-395],[-1854,385],[-3538,2205]],[[669091,682288],[2477,5573],[183,1052],[-145,1912],[-199,433],[-2368,704],[-244,6412],[-509,3248],[471,2442],[-563,737],[-81,2561],[1328,3267],[751,5067],[13,556]],[[670205,716252],[1693,-1006],[1138,-1317],[1265,282],[844,902],[364,1459],[30,1192],[1888,860],[1593,1406],[525,1170],[340,3879],[2461,1771],[332,829],[1483,-1240],[710,153]],[[684871,726592],[1520,-119],[1904,-959]],[[688295,725514],[654,-1475],[2042,2121],[385,232],[567,-727],[925,221],[-145,1144],[381,799],[909,235],[885,-436],[382,945],[-95,1572],[1235,2710],[678,372],[1161,-1308],[494,-3069],[-324,-3832],[359,-1858],[779,-542],[4002,4570],[1357,-167],[198,-1121],[1185,986],[1148,-43],[570,-964]],[[566664,441452],[95,-1822],[-137,-2546],[104,-4873],[-265,-2523],[-539,-685],[-4495,-17],[-307,-643],[-11,-17864],[624,-2596],[2505,-5169],[867,-1143]],[[565105,401571],[-5571,-2288],[-1520,154],[-1856,676],[-3673,407],[-734,1045],[-589,1472],[-11104,1],[-1207,-257],[-1211,1661],[-237,820],[-857,290],[-528,-180],[-1135,-1453],[-1052,332],[-1181,-402]],[[536391,471004],[2054,221],[2465,-159],[4821,174],[645,-1570],[167,-3193],[495,-2683],[1620,-5536],[306,-476],[1311,284],[472,473],[731,141],[2359,-141],[354,5004],[184,901],[2035,188],[744,-783],[-55,-1074],[3353,0],[217,-2008],[-61,-2631],[362,-2233],[-436,-5666],[291,-1517],[625,-1287],[549,-3121],[11,-1795],[-428,-992],[361,-2164],[1354,774],[909,6],[1549,614],[419,-122],[490,819]],[[533304,476270],[2094,3293],[995,-1437]],[[536393,478126],[-699,-451],[-880,-2294],[-115,-3476],[-823,-154]],[[555774,757332],[1236,-2035],[196,-1975]],[[557206,753322],[-337,-1881],[123,-1948],[521,-1420],[766,-792]],[[558279,747281],[122,-864],[-299,-1407],[-1035,-2390],[-695,-2077],[-794,-131]],[[553807,753125],[100,2778],[891,2048],[289,-1147],[687,528]],[[504793,757028],[-767,-390],[-19,977]],[[504007,757615],[786,-587]],[[656596,653457],[-816,-1402],[-333,1552],[-412,-562],[-54,-5165],[-815,-721],[-155,-2791],[-588,-1963],[-67,-2377]],[[653356,640028],[-625,-357],[-6109,1567],[-909,1025],[-2273,5791],[-134,1083]],[[655797,659782],[238,-750],[-48,-1400],[320,-360]],[[325985,374310],[671,-1156],[1100,-3189],[2597,-4233],[150,-416],[1766,-1421],[1111,-115],[1326,-1666],[580,-1175],[1627,-1678],[2094,-1633],[570,-725],[547,-1456],[-80,-762],[-1508,-3757],[-246,-1270],[-89,-1869],[-1057,-2225],[840,-855],[1299,-217],[2254,-1094],[1491,-219],[1780,811],[737,960],[2111,3260],[566,2568],[127,3781]],[[348349,354559],[516,-310],[616,651],[902,-753],[513,-4482],[-4,-2922],[-377,-1266],[-1109,-1419],[-1496,-1198],[-2769,-4193],[-1526,-3272],[-1905,-4784],[-1842,-3252]],[[339868,327359],[-464,-2898],[-935,-8198],[-57,-2844],[114,-2797]],[[309929,196168],[21,345],[-3814,1547],[-1302,354],[-4558,-45],[-1098,1989],[-272,920],[383,3575],[-96,1505],[-1340,238],[-1049,-937],[-564,1470],[-347,2163],[-78,3979],[246,1115],[1828,2253],[1440,3698],[-669,2034],[-66,1238],[588,1474],[976,1665],[458,2660],[92,2576],[-76,3462],[462,1391],[620,958],[-457,2039],[-720,469],[-550,919],[2216,128],[201,1633],[-805,478],[-1080,-118],[37,1279],[358,1723],[25,1133],[-726,3602],[-607,1178],[15,3379],[507,989],[452,1697],[-186,4268],[-278,2330],[562,1951],[205,3630],[539,1542],[250,2221],[-79,1517],[1616,1802],[-477,2168],[-411,3759],[21,4660],[399,2044],[1403,1888],[357,958],[32,1420],[-221,2067],[457,3967],[946,2746],[189,1815],[50,2593],[-312,1333],[-1030,8357],[-330,353],[-294,1450],[120,2377],[242,477],[845,4098],[717,1736],[-255,3838],[826,5769],[1573,3997],[669,3197],[545,898],[524,87],[560,1144],[-870,2452],[292,1504],[-34,3277],[-243,1577],[400,1742],[-345,2083],[841,2181],[2597,2172],[923,6112],[-528,1101]],[[313387,370981],[437,1300],[1048,2246],[1524,2334],[727,-1299],[1198,-292],[1072,8],[1024,-602],[798,-3153],[275,178],[667,3043],[336,1054],[2748,-1],[744,-1487]],[[309423,181381],[2,13214]],[[629260,735535],[-1083,-148]],[[628177,735387],[-917,4126],[-828,-119],[-1762,1311],[-318,-155]],[[624352,740550],[-595,1103],[-886,853],[-714,-125],[-869,494],[-174,1553],[400,1846],[-192,1448],[-561,1142]],[[620761,748864],[1546,390],[1993,180],[741,459]],[[625041,749893],[277,-1085],[907,-573],[450,-809],[-645,-1253],[219,-989],[1190,-1160],[-221,-2322],[862,-1386],[1111,-1166],[-80,-1947],[149,-1668]],[[547056,793153],[-258,-1581],[870,-2024]],[[547668,789548],[-223,-781],[-1286,-1474],[-448,-2764],[-951,-1704]],[[544760,782825],[-572,-934],[-1255,-451],[-1465,-95],[-1043,-1336],[-2331,769]],[[538094,780778],[-3164,779],[-1041,1384],[-81,792],[-2346,-192],[-674,-711],[-1706,-89]],[[529082,782741],[-2396,1217],[-212,1239],[86,1383]],[[526560,786580],[1121,152],[607,-1395],[738,1128],[2632,-109],[1034,726],[1579,634],[754,-135],[1085,-1230],[249,1103],[-894,2457],[2477,2793],[501,1365]],[[538443,794069],[790,-1055],[632,-165],[1008,498],[738,1751],[864,229],[1831,-1035],[1882,-169],[868,-970]],[[625041,749893],[806,1024],[652,-325],[1258,-1399],[1310,-589],[493,166],[50,1514],[-919,870],[-238,1478],[507,897]],[[628960,753529],[1149,-990],[866,-1224],[697,-1589],[1309,-308],[1959,3706]],[[635745,733024],[-766,-65],[-1586,2441],[968,3147],[-1023,1856],[-527,-195],[-2819,-3385],[-732,-1288]],[[628177,735387],[-1953,1043],[-820,1454],[-938,2147]],[[624466,740031],[-114,519]],[[584842,491553],[-345,-2728],[1083,-657],[80,-1582],[-1083,-1901],[-149,-916],[-656,-2273],[-426,-1018],[-876,-971],[-739,23]],[[581731,479530],[-410,3029],[-168,3394],[-231,2518],[-254,1128]],[[580668,489599],[147,896],[645,-357],[208,-986],[1367,428],[455,2189],[894,260],[458,-476]],[[516725,805787],[555,-733],[335,-1844],[-566,-1113]],[[517049,802097],[-454,262],[-562,-1321],[306,-1449],[-177,-942]],[[516162,798647],[-1167,406],[-1099,1043],[-454,942],[-1930,469],[18,1464],[-1329,687],[-1169,1653],[-1266,300],[-385,527],[-311,1635]],[[509344,809433],[48,-521],[1402,-495],[979,892]],[[511783,809457],[1408,718],[523,-556],[2470,-1395],[-515,-1912],[1056,-525]],[[509967,575030],[-306,-1640],[176,-1001],[503,-1028],[334,-2865],[-321,-1017],[-624,-3411],[-1704,-4598],[-294,-130],[-198,-6290],[137,-4533],[-146,-5020]],[[504546,542674],[463,339],[-563,3216],[89,1361],[-32,11678],[-719,3721],[-25,1932],[-1602,2254],[130,2167],[252,1494]],[[502539,570836],[633,1027],[683,1574],[1779,-32],[774,1517],[279,1220]],[[506687,576142],[-33,1245],[534,1067],[708,670],[2071,-4094]],[[502539,570836],[-791,-82],[-2125,894]],[[499623,571648],[-312,142],[-1140,-1108],[-849,150],[-5194,37],[-266,-2400],[365,-1917],[130,-1976],[-56,-2017],[234,-645]],[[492535,561914],[-266,-431],[-1046,2523],[-1345,606],[-1427,-789],[-863,-967],[-681,313],[-686,1363],[-493,2163],[-600,-47],[-443,817]],[[484685,567465],[463,4104],[408,1872],[-169,1724],[-277,579],[836,870],[934,270],[470,788],[803,3243],[-192,2602],[648,1242],[464,406],[961,-1329],[445,0],[473,1200],[1125,3552],[1050,1733],[795,-600],[1095,1691],[1820,1710],[1188,1838],[1291,-30],[1331,-955]],[[500647,593975],[-198,-2262],[609,-2850],[633,-1813],[1720,-2086],[-656,-100],[0,-1604],[2435,-2943],[667,699],[462,-1739],[-580,-422],[948,-2713]],[[538443,794069],[-760,1170],[-2483,2716],[-524,1560],[-266,1890],[-519,574],[-242,1222],[903,108],[1614,757],[2076,1606],[1506,892],[24,995],[1403,-1085]],[[541175,806474],[1284,438],[795,-980],[1831,-651],[174,-1746],[1196,-1584],[1202,1626],[1226,-649],[20,-588],[1068,-929],[1656,-974],[736,-1963]],[[552363,798474],[-529,-79],[-1205,-1236],[-1030,-2177],[-964,-628],[-876,325],[-703,-1526]],[[757240,635672],[-174,-3503],[-554,489],[-434,-1593],[187,-826]],[[747416,637011],[-228,913],[-254,3300],[-396,2663],[-526,1751],[63,1112],[474,816],[-214,1966],[-1048,534],[-797,1602],[359,1527],[836,884],[1015,525],[520,561],[-670,1424],[-847,691],[-961,1152],[193,1889],[476,753],[204,1806],[1222,-1907],[581,865],[191,-1204],[553,-1016],[552,-222],[635,859],[228,-1411],[-26,-2610],[145,-928],[1551,-878],[2251,348],[1521,-198],[702,98],[825,-806],[391,-1030],[-607,-971],[-310,-1635],[-886,-1362],[-466,-162],[-1097,-1154],[-331,-2158],[660,-3070],[550,-850],[600,887],[-107,741],[593,2713],[807,-112],[196,-2548],[421,-2983],[280,-4504]],[[577865,753936],[-933,-32],[-1135,711],[-498,-54],[-2052,-1574],[-32,-647]],[[573215,752340],[-680,-506],[212,-1105],[-634,-702],[-2048,-251],[-2112,1529],[-997,77],[-884,-785],[-1558,-468],[-828,8]],[[563686,750137],[176,2548],[-316,1227],[-1436,1978]],[[562110,755890],[552,1001],[-329,2027],[934,654],[639,1492],[-1315,1686],[-468,2082],[150,1074],[716,1235]],[[562989,767141],[1383,-2334],[634,186],[1517,-633],[2960,-165],[1032,-578],[1113,535],[1087,1644],[2421,903],[1584,-709],[1679,-1526],[986,-141]],[[552839,770923],[949,157],[-274,-1391],[-121,-2227],[999,-1207],[-996,-3182]],[[553396,763073],[-1455,-1576],[-594,-1919],[185,-1267],[-317,-975]],[[551215,757336],[-447,337],[-1310,1770],[-433,-143]],[[548836,759593],[149,913],[-3493,5836],[-1714,4731],[21,1714],[603,330],[1037,-1278],[738,1234],[1002,104],[746,-503],[3711,-366],[769,-1401],[434,16]],[[588282,813811],[-2368,-370],[-1076,-2239],[218,-1458],[-776,-318],[-488,789],[-2460,-265],[-1038,768],[-2047,256],[-900,-481],[-1298,350],[-1156,806],[-2794,1046],[-1767,121],[-2071,-292],[-2656,-2283]],[[565605,810241],[-206,1273],[391,1552],[-195,728],[-1210,1033],[812,1581],[1299,956],[-106,2740],[-685,2132],[-386,2476]],[[565319,824712],[699,-198],[1987,53],[2240,1960],[1059,352],[-127,769],[330,1893],[1362,1941],[1286,442],[-182,2979]],[[573973,834903],[2783,1123],[1441,1774]],[[578197,837800],[467,-659],[2287,-187],[854,-419],[322,-1343],[1136,834],[1501,-491],[916,-963],[422,-2888],[-24,-2632],[903,-2403],[1045,-1047],[314,-1491],[1697,-736],[933,-1556],[-7,-730],[-1663,-1536],[-2057,686],[-200,-1240],[432,-779],[324,-2314],[483,-2095]],[[252939,599730],[-759,6],[171,6595],[4,4781]],[[252355,611112],[53,907],[568,-230],[811,1678],[508,1597],[383,17]],[[313387,370981],[-1122,-491],[-827,410],[-280,4635],[-546,3621],[1,760],[-1408,4739],[-154,777],[347,3379],[547,2149],[-815,1555],[-610,1508],[-346,3584],[-690,2533],[-452,2257]],[[307032,402397],[-298,1220],[262,998],[1824,4514],[-1252,1422],[-378,2937],[722,2094],[-541,1686],[-31,1013],[629,1799],[766,1694],[-322,1991],[-69,1439],[373,1980],[102,2949],[480,1816],[-883,3428],[-1674,5745]],[[306742,441122],[935,-7],[1333,-534],[137,-640],[1295,1107],[378,1289],[1575,1490],[1593,1772],[986,1734],[1151,525],[1322,298],[782,496],[401,-953],[-41,-1532],[-220,-1746],[215,-2641],[-139,-2497],[350,-2474],[821,-1947],[347,-385],[1145,-2238],[1207,-464],[764,462],[1809,-1822],[643,-1208],[819,-672],[1107,-520],[665,-2035],[1756,-28],[892,-296],[1190,-1357],[268,-1094],[-179,-1791],[531,-2114],[72,-2712],[-458,-2],[584,-5037],[390,-1886],[4585,-245],[-175,-2844],[244,-2368],[854,-1561],[496,-15],[316,-749],[562,-3089],[45,-887],[-790,-5416],[-781,-3450],[433,-719],[-52,-1048],[-485,-679]],[[338420,386593],[-50,1909],[-181,493],[-2042,2535],[-487,276],[-1948,-24],[-2057,-963],[-2450,-864],[-935,-1505],[-979,-3423],[-241,-3672],[-1065,-7045]],[[348349,354559],[881,7079],[-19,1933],[-479,993],[-563,473],[-1092,-981],[-971,89],[-285,1980],[-406,4977],[25,1067],[-602,1953],[-1926,569],[-907,-491],[-1222,186],[-1636,662],[-254,581],[377,4210],[-114,3360],[-736,3394]],[[306742,441122],[-516,24],[-1109,-572],[-1286,230],[-1,6926],[291,2055],[-287,46],[-1678,-2937],[-446,-181],[-2002,-1],[-545,2761],[-307,305],[-1419,413],[-510,696],[439,1001],[-37,842],[-1504,3582],[-642,2942],[-384,1245],[68,1859],[241,2462],[357,1086],[1079,980],[381,984],[-212,951],[95,2312],[528,1720],[224,2353],[2648,3723],[2118,931],[1384,1326],[626,127],[1150,-1299],[216,819]],[[305702,480833],[1499,17295],[-57,1688],[-416,2066],[-973,2072],[-336,1054],[64,4124],[1677,767],[815,-312],[-150,1763],[-403,883],[-1439,-42],[2,3753],[688,208],[3857,-119],[1462,1331],[282,640],[640,339],[674,-2419],[119,-1156],[-59,-2053],[649,368]],[[314297,513083],[1404,-2666],[1126,583],[908,785],[605,-1296],[1351,2615],[1186,1333],[281,-90],[893,1535],[431,1674],[1427,984],[58,1621],[-1457,237],[-388,661],[-193,2300],[-95,3062],[-491,1335],[-1257,2163],[-70,1220],[2825,-2057],[1001,-36],[1357,-1734],[465,265],[68,2111],[1062,736],[671,-397],[1297,936],[896,1477],[1024,335],[1010,2207],[-405,1576]],[[331287,536558],[1474,407],[588,-1096],[-222,-2640],[281,-857],[750,-1041],[387,-2047],[-538,-1946],[-610,-4157],[-36,-1459],[231,-1742],[481,-1804],[186,-2061],[1097,-2028],[1050,-1040],[994,233],[562,1847],[517,-295],[1274,986],[674,1056],[1315,220],[573,-177],[803,400]],[[343118,517317],[1108,-550],[101,2119],[626,1477],[1470,317],[1344,-435],[639,-658]],[[348406,519587],[299,-708],[810,-423],[795,862],[1311,38],[1054,-691],[994,1158],[391,1144],[178,1240],[650,2767],[1733,5557]],[[351752,306378],[-449,368],[29,3138],[858,1765],[-277,1494],[-2057,4109],[-1233,2138],[-1561,1247],[-797,1497],[-1819,1186],[-491,1441],[-1685,3004],[-779,211],[-529,-1161],[-1094,544]],[[819476,534727],[-603,-902],[174,-2781],[-230,-936],[-442,-592],[-994,2912],[-517,510]],[[819874,534845],[500,-3609],[-655,740],[-173,2198]],[[754563,669892],[-224,-762],[241,-836],[1035,-157],[192,-946],[69,-2426]],[[755876,664765],[-1065,-448],[-2773,-274],[-385,179],[-2692,-354],[-1302,435],[-696,966],[-369,926],[409,1133]],[[747003,667328],[471,1669],[1143,2774],[770,880],[1369,-425],[833,-714],[1186,-81],[955,198],[833,-1737]],[[581597,374635],[-1007,-248],[-506,-1402],[-1363,-612],[-499,-896],[-1086,-2665],[-1711,-2059],[-355,-681],[-331,-2285],[-442,-1644],[-1270,-2085],[-1223,-804],[-16,-1029],[-726,-3929],[-745,-794],[-1941,-182],[-2154,1434],[-782,1160],[-599,456],[-816,-45],[-549,-1215],[-510,-3417],[-1962,-3468],[-935,-1191],[-1025,151],[-1531,-270],[-195,545],[-49,1988],[649,1976],[-178,1670],[-1065,4493],[-1122,1877]],[[555553,359464],[27,16329],[2750,-2],[1,20106],[551,1685],[1949,533],[3309,1306],[572,9],[762,-2760],[174,-134],[1005,1900],[997,1228],[1035,318],[669,571],[816,106]],[[570170,400659],[-44,-826],[840,-2831],[486,-1113],[752,-2551],[415,-2668],[1353,-2382],[872,-742],[984,-1781],[1071,-1052],[68,-2161],[195,-1833],[534,-1868],[731,-711],[890,-259],[1059,-752],[1221,-2494]],[[563543,570423],[392,-1322],[886,-1604],[935,-3171],[74,-1311],[-142,-1684],[-392,-1282],[34,-2005],[358,-560],[1617,-250],[-18,-340]],[[567287,556894],[-202,-1453],[565,-837],[1379,-484],[775,-1580],[304,-1605],[-102,-835],[537,-903],[1805,-2146],[707,-1590],[1,-1295],[462,-2398],[1071,-881],[929,-1212],[200,-755],[361,-2613],[184,-506],[-31,-319]],[[576232,535482],[-50,375],[-921,745],[-570,-713],[-1006,-183],[-581,551],[-1328,362],[-849,954],[-394,-243],[-207,-1756],[-854,-439],[-1827,278],[-2557,-2205],[-397,-2],[-856,1150],[-453,-614],[-534,-1373],[-252,-1704],[-669,-511],[-1393,986],[-804,-140],[-749,233],[-2173,1634],[-352,1126],[-1372,1927],[-845,302],[-440,-311],[-852,-1357],[-1178,-2963],[-132,-3558],[99,-1698]],[[551736,526335],[-455,913],[-484,-202],[-1241,43],[-1267,274],[-2004,-638],[-193,-420],[-368,-4352],[-747,-3014]],[[544977,518939],[-316,1483],[23,2090],[-2300,5186],[-514,1875],[46,1596],[-998,1956],[-395,4663],[-4,4647],[606,1130],[639,2219],[400,1836],[879,2714]],[[543043,550334],[752,-440],[660,262],[1718,1528],[495,-1211],[296,80],[1468,1810],[717,627],[2477,381],[747,1588],[673,2026],[-651,1153],[362,748],[499,245],[1476,48],[2096,902],[866,1378],[1424,3375],[874,1344],[683,3721],[1850,973],[1018,-449]],[[313626,772218],[-1085,1281],[-16,1830],[-874,997],[67,2229],[-37,5454],[-1385,1711],[-1702,-1045],[-381,1446],[-504,195],[-2146,-4517],[-631,-2381],[-257,-2578],[-1011,-2367],[-1071,-857],[-1435,-1764],[-6797,-100],[-2213,120],[-1250,-971],[-3229,-4477],[-541,-1484],[-1340,-1240],[-4373,-13],[-1417,-1067],[436,-1845],[240,-1880],[-2582,-2081],[-1127,-636],[-2648,-904],[-3143,-3082],[-775,-56],[-1091,1048],[-280,1105],[195,1583],[521,297],[1168,2341],[463,2806],[506,2135],[-1100,10328],[-2031,1947],[-511,1951],[-1059,698],[-900,1514],[-1813,1999],[-190,1054],[-4839,4293],[-4907,4079],[-862,-364],[-1578,-1374],[-1654,-84],[-944,668],[-1306,-44],[-519,808],[-1187,-949],[-734,-131],[-873,899],[-1267,470],[-1088,1504],[-1560,591],[-1543,-582],[-466,556],[-1694,468],[-715,3586],[-788,272],[-68,-2196],[-19444,5],[-57235,14]],[[138631,832059],[-67,2964],[301,1247],[-265,1246],[-1758,1275],[-2887,1559],[-771,1493],[-1235,3532],[-1752,3763],[-757,1946],[-3574,4718],[-946,2051],[-1251,1385],[-2351,-1231],[-697,-2459],[-1739,-884],[-843,-127],[-282,1425],[-3392,4073],[-1029,919],[345,1561],[-1717,-102],[-368,-415],[-1977,-251],[-1291,495],[4,55202]],[[529082,782741],[-78,-491],[-1254,-2686],[-838,-139],[-641,828],[-1008,-1820],[-709,-846],[-1472,2609],[-542,-1793],[-674,-1113],[-2124,-435],[-173,375]],[[519569,777230],[-622,2983],[-839,172],[-739,-567],[-216,-1195],[-588,229],[562,2444],[2818,4914],[618,-24],[517,899]],[[521080,787085],[2029,-83],[1097,1121],[1913,-891],[441,-652]],[[304506,397349],[1035,482],[403,596],[564,3055],[524,915]],[[708027,725879],[386,385],[73,1306],[-465,3011],[-559,2260],[-1095,1075],[-842,-410],[-503,638],[-196,1740],[-528,2129],[145,1016]],[[704443,739029],[738,132],[227,689],[-179,1564],[227,1042],[4230,3419],[550,-1149],[698,-499],[1137,114],[529,645],[547,2535],[1026,832],[1088,-234],[794,171],[1461,2143],[5005,3842],[185,1018]],[[722706,755293],[319,291],[-306,1938],[750,2220],[911,1035],[-63,1817],[-643,2221],[-426,3585],[103,1025],[-679,1269],[-698,657],[555,709],[2458,655],[1598,927],[1002,-492],[1508,-326],[190,1442],[-732,676],[153,2104],[842,2695],[1150,5189],[1593,-1058],[1395,-463],[1740,212],[620,-749],[1659,1235],[341,1768],[-465,3799],[716,2302],[932,110],[1279,614],[541,1157],[-143,1491],[321,621],[1233,135]],[[742460,796104],[1468,321]],[[743928,796425],[43,-1329],[438,-1956],[1673,-1825],[198,-809],[1040,-880],[1558,-324],[2156,-1892],[362,-1762],[1222,-2703],[359,-1919],[-466,-3742],[-526,-1207],[-124,-1421],[571,-1593],[1779,-739],[3082,-424],[749,124],[1753,-501],[1268,-1139],[1981,-2360],[870,-665],[1011,-154],[706,-2295],[900,-3743],[1424,-2799],[1760,285],[3396,-779],[3077,-447],[2473,683],[1472,-88],[2316,-929],[986,-1476],[2895,-1544],[958,-737],[1258,-469],[1796,133],[1342,-1424],[620,984],[4313,3201],[2027,915],[3854,-146],[1530,196],[2317,1574],[437,442],[1724,3314],[1197,781],[1259,1201],[-221,1465],[-859,1349],[-407,1119],[910,3485],[645,816],[1013,-121],[1448,-1324],[1955,-502],[1644,1401],[1066,2041],[963,337],[1530,82],[681,292],[1132,1316],[492,1666],[864,1882],[761,602],[1452,203],[752,790],[1871,1120],[1307,-180],[1408,-558],[1058,-63],[638,372],[15,1334],[-387,1279],[-3364,5224],[-2095,129],[-898,-1513],[-695,-159],[-1208,987],[-1495,-110],[-999,-1031],[-827,1162],[-95,1578],[3187,9909]],[[824204,800417],[778,-715],[1877,-960],[1136,364],[1407,1822],[1401,380],[574,855],[182,998],[-567,639],[1720,4334],[980,3094],[1618,1922],[157,1055],[-164,2220],[-1087,410],[-436,1115],[1213,1654],[1444,1158],[3235,1098],[1558,-90],[2044,467],[2127,-1436],[1469,-786],[816,227],[1281,-864],[1977,-4007],[1529,-6872],[1094,-2961],[625,-3741],[37,-1247],[824,-1642],[1528,-119],[3257,-1208],[1882,-2869],[1204,-335],[131,-3964],[709,-2151],[1684,-579],[2511,179],[1034,1379],[1190,931],[2464,1427],[1547,241],[-119,-1307],[289,-2472],[-1068,-1880],[-670,-2038],[-1142,-6009],[-797,-2221],[-738,-1235],[-198,-1564],[-465,-1207],[-2842,1694],[-540,-478],[-657,-1461],[-875,-269],[-312,-988],[649,-4286],[-210,-2692],[110,-1579],[-619,-2658],[-1046,-146],[-734,-719],[314,-843],[362,-971]],[[862886,756511],[-1548,3326],[-566,50],[-500,-3323],[-563,-100],[-1038,-1546],[-719,-736],[-2146,-5],[170,-1754],[435,-760],[-531,-1362],[-1371,299],[-1409,707],[-470,1508],[-950,-801],[-330,-1683],[-1593,-2888],[-2885,-2539],[-1451,-2182],[6,-669]],[[800068,633177],[-379,379],[-1106,-58],[-822,768],[-1340,2163],[-417,1570],[120,1263],[533,1413],[-726,740],[-788,-115],[-1283,511],[-443,413],[-860,1842],[-758,-864],[-1050,-2500],[-758,-746],[-1603,-411],[-698,306],[-703,732],[-647,-2085],[-1672,1959],[-936,-2247]],[[783732,638210],[-1111,578],[-484,-1737],[124,-1238],[439,-1060],[25,-3090],[-430,-579],[-1086,416],[-256,1765]],[[780953,633265],[-76,1212],[-635,-488],[-785,-1309],[-1332,277],[-444,2357],[-279,832],[-1194,327],[-503,1334],[281,1988],[471,1381],[-1702,1985],[-373,3221],[15,2067],[-1870,-238],[-1245,-1367],[130,1419],[-435,2268],[30,1442],[915,3006],[1967,3417],[328,2403],[141,2078],[-96,4591],[-218,1381],[-318,329],[-615,-699],[-458,2477],[10,849],[-458,1196],[-751,1213],[-595,-217],[-454,-1419]],[[770405,672578],[-1461,1705],[-536,1007],[-904,3054],[-435,841],[-841,54],[-784,-912],[-1124,-560],[-1147,1020],[-955,-488],[-483,-1502],[-1383,-1513],[-680,3],[-575,-681],[-1514,-3376],[-714,-982],[-1721,-398],[-585,42]],[[747003,667328],[-410,1274],[308,1837],[-168,988],[-588,531],[-1324,-1354]],[[744821,670604],[-2521,-332],[-1558,1626],[-293,4],[-1559,-1122],[-738,2442],[-894,-13],[-789,970],[-1077,771],[-1428,1927],[-161,1760],[-580,529],[-614,-504],[-830,371],[-770,1781],[-1219,1138],[-1568,2291],[-264,974],[-1678,305],[-636,-2350],[-527,1204]],[[725117,684376],[-1286,1506],[-1023,771],[-87,591],[-893,1641],[-854,-74],[-383,655],[-1595,1306],[-238,537],[-78,2623],[107,703],[-712,1515],[-292,1909]],[[717783,698059],[902,896],[221,-1382],[759,-383],[847,1984],[-290,2521],[-954,1447]],[[719268,703142],[45,2783],[560,903],[521,-49],[634,1306],[287,1367],[645,1424],[482,224],[352,1052],[410,3649],[-1071,136],[-738,560],[-354,1195],[-663,756],[-1410,-381],[-2223,-1957],[-290,-497]],[[716455,715613],[-702,-176],[-1270,330],[-1277,896],[-404,543],[-1290,524],[-458,1825],[204,505],[-312,2067],[-615,904],[-1877,1510],[-1331,137]],[[492535,561914],[91,-2879],[188,-1281],[261,-3443],[-732,-1617],[-457,-1890],[-903,-5702],[164,-1740],[459,-3222],[719,-1286],[105,-2673],[-1058,-274]],[[479091,531599],[-148,3254],[532,2712],[-138,2453],[-343,473],[-941,2408],[-1001,273],[-927,1066],[694,1586],[92,2515],[-442,2143]],[[476469,550482],[467,244],[574,1160],[299,1376],[-646,1196],[-15,1405],[732,207],[572,-577],[-126,3949],[-938,3162],[-58,1907],[500,1421]],[[477830,565932],[608,820],[959,220],[119,-476],[813,-509],[1148,1677],[240,929],[1018,558],[100,-1270],[-141,-1203],[682,-594],[612,1423],[697,-42]],[[544977,518939],[-265,-1961],[-487,-641],[-392,664],[-810,535],[-1049,59],[-2345,1060],[-2693,-1]],[[536936,518654],[-299,659],[-1499,-244],[-2771,426],[-706,-89],[-180,-751]],[[531481,518655],[-3682,0],[-515,1044]],[[523685,533800],[683,2210],[270,2211],[-43,1347],[277,1260],[1752,3309],[1141,2454],[1567,826],[761,-770],[735,-2296],[612,-89],[637,932],[1055,4534],[1041,5975],[458,1091],[393,-110],[416,903],[358,1847],[78,1188],[650,1565],[1060,5056],[175,1768],[460,1830],[564,1480],[987,436],[692,906],[246,3854],[-407,1169],[-850,1233],[-333,3223]],[[539120,583142],[1065,0],[1061,-3022],[635,-4223],[82,-2123],[-128,-512],[45,-3296],[324,-2054],[821,-2249],[-298,-1007],[-3173,301],[-669,-2238],[1355,-3301],[1577,-2294],[1483,-5460],[-257,-1330]],[[536393,478126],[267,148],[600,-1248],[808,960],[56,1277],[1897,1118],[-25,-3290],[802,-311],[335,448],[941,2497],[1637,2529],[616,1137],[548,2132],[153,5365],[-61,2006],[1138,2886],[694,2622],[1568,2154],[811,1833],[-14,2674],[339,2127],[141,2078],[-83,2285],[633,3310],[-30,3111],[111,1306],[682,2066],[793,3319],[-14,1670]],[[576232,535482],[698,-965],[507,-1818],[1371,-1474],[908,1103],[948,-43],[365,-605],[947,1784],[743,-627],[246,-1377],[1042,-2326],[1417,-1718],[306,-995]],[[585730,526421],[220,-36],[-392,-2804],[-21,-2113],[135,-1463],[642,-346],[670,-1333],[-2064,-4903],[-766,-696],[-913,-2874],[-688,-3856],[-360,-8386]],[[582193,497611],[-633,-695],[-613,-1855],[13,-1108],[-771,-2289],[88,-1581],[391,-484]],[[581731,479530],[-161,-1585],[568,-6715],[-208,-928],[154,-1692],[524,-2006],[905,-1248],[695,-1761],[983,-4558],[350,-2139]],[[585541,456898],[-3407,-600],[-1882,-581],[126,-1462],[-514,-1480],[-624,-1133],[323,-5021],[28,-3067],[-467,-3283],[-277,-2690],[155,-1480],[582,-919],[1031,-2307],[1324,-355],[170,1225],[709,266],[-43,-7657],[-1159,679],[-455,-512],[-586,-39],[-608,2746],[-1435,3195],[-1787,869],[-320,844],[-800,2939],[-572,-671],[-416,-1398],[-603,-49],[-1826,410],[-1377,1001],[-475,839],[18,2190],[-891,-65],[-1868,-699],[138,1573],[-1089,1246]],[[530980,482411],[270,1252],[649,1503],[466,-870],[689,-16],[147,1865],[-657,1287],[-359,1412],[-179,2916],[310,-182],[2444,-75],[-146,3204],[407,388],[497,-475],[754,-2601],[1170,-554],[688,1386],[486,-1753],[486,-42],[418,796],[324,2504],[233,893],[183,1967],[-52,1885],[121,2730],[-279,1164],[-1460,1431],[32,2857],[661,1826],[370,-87],[578,1712],[-27,649],[-527,2319],[-297,368],[-1017,194],[-660,-827],[-986,-32],[-238,1754],[120,1731],[337,1764]],[[305702,480833],[-297,744],[-1033,1587],[-530,1131],[1559,5213],[-24,432],[-2178,2549],[-809,-335],[-2010,277],[-205,-668],[-711,-348],[-2079,165],[-422,520],[-383,3249],[-703,978],[-550,2169],[-1630,1667],[-421,2667],[-1158,1715],[-712,799],[-458,-199]],[[290948,505145],[-1411,909],[-792,1715],[-579,505],[-452,-1073],[-1839,427],[-783,539],[-1242,2492],[-1199,1237],[-1489,2199]],[[283630,548496],[280,1535],[505,421],[679,1609],[561,851],[-523,2116],[-48,2062]],[[301878,575842],[-1779,-1196],[-487,-1809],[-989,-1537],[-1107,-3740],[-214,-3769],[-1044,-3498],[750,172],[912,-1357],[319,-2429],[626,-1389],[126,-2120],[-325,-484],[107,-2986],[1667,-2345],[1456,-40],[2034,289],[1222,-536],[1993,-5155],[575,-110],[771,553],[818,-294],[2048,705],[254,442],[931,-644],[62,-1589],[-1083,-4120],[82,-4459],[522,-4194],[542,-937],[358,-1496],[-1381,-3221],[623,-359],[914,-2058],[1035,-6035],[81,-1014]],[[578369,774541],[-217,635],[-51,3748],[339,2281],[-395,2266],[-804,1108],[-1501,3351],[-280,1310],[-979,1746],[-509,58]],[[573972,791044],[737,750],[2370,422],[1074,-1259],[1022,-680],[1866,-805],[173,-1458],[-249,-1387],[941,-962],[438,-2436],[932,-698],[-35,-807],[546,-1592],[-970,-135],[-1812,879],[-454,-354],[-251,-2883],[-1481,-2750],[-450,-348]],[[270656,562392],[-1029,-577],[0,-1624],[161,-2974],[-67,-3882]],[[261964,571299],[400,697],[1893,-1342],[519,673],[922,-796],[353,-742],[795,-665],[760,665],[-14,630]],[[521080,787085],[-170,714],[115,1937],[813,3618],[922,1793],[-1927,1044],[-2116,195],[-519,1543],[-512,265]],[[517686,798194],[202,1120],[-762,1843],[-77,940]],[[516725,805787],[485,4585],[-580,1234],[399,887],[768,-233],[824,337],[765,1809],[-227,2592],[455,280],[406,2003],[11,1167]],[[524032,830347],[1787,-639],[349,179]],[[539631,823184],[427,-2741],[-558,-1447],[1493,-5444],[-426,-1552],[978,-2030],[232,-1107],[-602,-2389]],[[620167,573551],[-812,-2737]],[[619355,570814],[-1831,-31],[-943,-426],[-484,355],[-48,2885],[197,1593],[313,486],[1230,3833]],[[617789,579509],[474,1],[1533,1431]],[[300669,612387],[-25,1991],[-665,1509],[748,580],[236,3003],[-292,2796]],[[524005,724142],[2,-519],[-875,-2481],[-84,-2404],[267,-4557],[-371,-3521],[-272,-638],[-1468,-2273],[-281,-658],[28,-1583],[674,-3028],[971,-1160],[1204,-4129],[1409,-1735],[1323,-10876]],[[526532,684580],[-381,-405],[1023,-4439],[342,-3923],[-46,-6802],[-294,-1556],[322,-2736],[-169,-2216],[-1151,-2047],[1672,-4904],[28,-2113],[600,-2196],[472,-755],[1031,341],[941,-844],[1327,-784],[1080,-4405]],[[533329,644796],[-6275,-7688],[-6334,-8102],[-3932,-7101],[-1536,-1534],[-3466,-1427]],[[511786,618944],[-2491,-974],[-610,877],[295,1853],[4,2382],[-3193,2353],[-1163,1062],[-1338,2620],[-80,1561],[-7924,11087],[-8712,11808]],[[486574,653573],[-5318,6971],[-5331,6700]],[[475925,667244],[0,2062]],[[475925,669306],[1,6215],[2424,3141],[1540,1392],[2825,556],[1386,-27],[1082,1155],[1233,2334],[1575,2174],[1862,977],[331,1891],[-659,817],[290,2798],[1609,733],[446,1632],[446,538],[2182,300],[1139,-439],[1146,101],[285,2081],[-952,1788],[-403,1146],[-286,2721],[-81,4399],[-185,3422],[-1305,2027]],[[594685,635863],[-2512,-11]],[[592173,635852],[-3650,3],[-1336,896],[-1407,-863],[-8168,133],[-8168,-179]],[[569444,635842],[-2,42850],[-800,5237],[598,2039],[255,1754],[-317,1850],[-77,1924],[752,1378]],[[595052,690943],[139,-605]],[[595191,690338],[1576,-8469],[191,-1742]],[[598953,642620],[-906,-1685],[-546,-262],[-850,-1757],[-997,-1571],[-764,-279],[-205,-1203]],[[617789,579509],[-2317,5612],[-2227,4561],[-2023,1846],[-2908,367],[-533,-558],[-933,-325],[-1512,2821],[-959,-3662],[-565,634],[-683,71],[-1573,-793]],[[601556,590083],[-93,422],[-236,4796],[526,2085],[575,3191],[280,2429],[10,1397],[369,2392],[904,-143],[269,1321],[362,543],[1223,954],[943,1529],[435,1220]],[[475925,667244],[0,-7761],[-9259,0],[0,-14388],[-1352,-1591],[-286,-104],[-1180,-1583],[-376,-1480],[195,-1417],[221,-7018],[-10992,0],[-313,-2610],[55,-700]],[[463420,669335],[12505,-29]],[[578065,856283],[-1879,-2817],[185,-3008],[483,-2096],[-878,-2599]],[[575976,845763],[-2817,369],[-1073,1584],[-2115,1367],[-2327,-1203]],[[619355,570814],[-736,-2136],[495,-2535],[731,-1859],[799,-2493],[1256,-2101],[705,-963],[8021,-5628],[2633,-77],[-7616,-16620],[-1345,-1461],[-2034,193],[-1612,-980],[-1085,-1315],[-586,-1782],[-852,-400],[-1219,-140],[-494,-1162]],[[616416,529355],[-1567,-206],[-1653,1942],[-1517,-1361],[-941,-1038],[-848,-2647],[-1499,600],[-2331,595],[-364,301],[-2632,3855],[-879,718],[-2046,44],[-285,964]],[[599854,533122],[-346,890],[105,3058],[-1063,709],[-503,25],[-787,2745],[-137,2408],[106,1114],[-1891,2874],[-1053,3155],[-863,1236],[-1558,513],[-175,949],[518,2695],[1171,347],[415,-596],[1039,1371],[-74,5341]],[[594758,561956],[306,2819],[185,3152],[506,1815],[326,463],[576,-1036],[468,1223],[320,4306],[225,1163],[1464,4721],[1145,369],[939,6126],[338,3006]],[[567094,894822],[-606,1786],[-792,1049],[888,2890],[-999,2876],[-339,2329],[197,1387],[-1375,2281],[-2935,1316],[-4049,3243]],[[557084,913979],[2030,1485],[1123,-430],[2162,-2996],[1814,-538],[2778,853],[2189,-1228],[2264,3157],[-36,845],[897,2770],[1274,1305],[1558,-175],[2324,1011],[1437,-1571],[2028,-732],[567,-1282],[-1406,-1505],[274,-1018]],[[580361,913930],[-1068,-981],[-310,-2048],[608,-2032],[2331,-1508],[1438,-1653],[-221,-817],[-2379,-3108],[142,-1238],[2220,-3903],[304,-2582],[-775,-474],[-401,-3551],[2038,-4148],[511,-1526],[-1545,-1724],[1365,-1625],[2153,-1556],[969,-1834],[-1011,-2415],[-5403,-7073],[-3187,-3356]],[[504007,757615],[-326,713],[-1415,666],[-535,-839],[-988,40],[-2583,990],[-2142,1449],[-980,1395]],[[516162,798647],[439,-492],[1085,39]],[[519569,777230],[-479,-492],[105,-1046],[761,-1506],[-1025,-1541],[-186,-1327],[483,-419],[-65,-2914],[276,-643],[1044,-771],[479,160],[-46,-2140]],[[508818,756620],[-423,213],[-1637,-532],[-1311,56],[-654,671]],[[348406,519587],[636,1235],[376,1399],[560,4079],[-51,1028],[-900,2386],[-336,4941],[144,1133],[1129,2715],[10,530]],[[526848,512088],[901,-495],[3736,129],[-4,6933]],[[482524,825630],[-933,-427],[-697,1801],[-808,-41],[-380,-1265],[-885,175],[-1537,1845],[1192,794],[963,2408],[405,357]],[[620761,748864],[-1856,2406],[-623,228],[-1955,-649],[-919,366]],[[611134,762234],[298,1089],[1662,-219],[2574,-1821],[2231,25],[1100,-306],[1558,-1656],[1140,-1764],[489,-184],[704,581],[1247,493],[1295,-240],[986,-1008],[278,-1933],[1008,-1038],[1256,-724]],[[499623,571648],[459,-967],[-270,-1909],[1029,-1670],[184,-614],[12,-4553],[533,-559],[-183,-2641],[-186,-912],[829,-2986],[-369,-1647],[-148,-2408],[188,-1168],[-195,-3446],[491,-1916],[1331,-2313]],[[770405,672578],[-111,-1804],[-674,-948]],[[769620,669826],[-269,680],[-1074,1121],[-2314,1609],[-400,-191],[-1560,-2900],[-1989,-1468],[-1467,-2891],[-879,-734],[-748,-172],[-2374,86],[-670,-201]],[[476469,550482],[-689,146],[-327,-1746],[-593,-421],[-1036,1236],[163,1790],[-397,3422],[-612,1223],[-1532,-169]],[[471446,555963],[-726,-1027],[-391,29],[489,2489],[-588,3700],[-1364,3765],[-1907,-1],[-1645,-896],[-531,-2412],[-795,-1570],[-937,-800]],[[458539,571145],[372,1583],[535,1066],[776,627],[1522,447],[-188,2407],[297,942],[154,1596],[-88,923]],[[461919,580736],[1618,-222],[878,-962],[1191,-784],[685,287],[1913,264],[197,-125]],[[468401,579194],[-331,-1352],[695,-1087],[2121,714],[483,576],[1015,-700],[728,1],[715,960],[152,1323],[575,-1],[562,-781],[366,-1889],[46,-1204],[922,-3439],[-66,-1426],[522,-1414],[580,-2130],[345,-451],[-1,-962]],[[453997,586196],[2329,3],[1216,1068],[1186,3],[1439,-1959],[1101,687],[393,-976],[-233,-496],[-1247,-489],[-2006,1876],[-1082,-1061],[-1782,-1215],[-1634,-2],[-196,-606]],[[453578,578721],[2200,638],[2993,1386],[3148,-9]],[[558279,747281],[2231,437],[341,862],[1240,357],[1595,1200]],[[573215,752340],[591,-597],[158,-1548],[-852,-1523],[-157,-1105],[-632,-1026]],[[254912,598752],[-1191,-2156],[-1367,-1739],[-200,-1055],[-80,-1892],[-285,-865]],[[251789,591045],[-620,-130],[-702,-1989],[-694,-1108],[-147,-763]],[[243802,591731],[219,696],[150,2109],[-312,1475],[1331,4806],[3582,1],[40,2074],[-1207,2295],[-1544,2340],[1195,249],[0,3336],[5099,0]],[[331287,536558],[-1706,4010],[578,2371],[-227,1825],[290,805],[1017,236],[1078,1192],[198,965],[-889,947],[-192,1020],[399,2080],[495,54],[1531,2619],[-518,1642]],[[341279,540156],[-261,-3997],[-198,-703],[-749,-90],[-930,-1274],[-57,-2042],[-334,-1700],[128,-991],[645,-2097],[1049,-1548],[511,-2510],[1209,-4681],[242,-688],[584,-518]],[[269010,594441],[-1062,-272],[-1095,-1095],[-1662,-692],[-790,1075],[-571,-713],[-479,-2204],[-1549,-2699],[-534,385],[-1736,-871],[-483,-1674],[-136,-1293],[-760,-1724],[-676,-88]],[[256069,585058],[261,225],[12,1938],[-986,1169],[-1214,-304],[-1387,2061],[-966,898]],[[537738,774606],[836,-295],[1533,497],[2193,-464],[232,1476],[877,878],[283,2294],[1485,1349],[924,159]],[[546101,780500],[521,-546],[1815,-2664],[1203,-934],[1252,-114],[1486,911]],[[552378,777153],[219,-1599],[669,-2178],[-427,-2453]],[[551215,757336],[242,-804]],[[547668,789548],[508,-120],[1240,-1455],[2276,106],[669,424],[509,1400],[1373,777],[1175,-291],[923,674],[717,1625],[769,239],[2241,-678],[536,-761],[938,408]],[[561542,791896],[264,40],[1793,-2699]],[[563599,789237],[-601,-975],[-997,-187],[-989,-2223],[-1887,-5351],[-707,-1287],[-2130,-780]],[[556288,778434],[-1911,301],[-1039,-1089],[-960,-493]],[[546101,780500],[-687,1492],[-654,833]],[[804559,518110],[-176,-766],[229,-1625],[474,-1322],[1210,-2371],[847,-1155],[1037,1022],[750,279],[645,-361],[846,-45],[838,730],[695,2115],[532,532],[1514,-90],[254,-929],[1362,-998],[1426,1358],[700,286],[459,-489],[831,2728],[-175,1433],[666,1388],[261,2776],[375,956],[723,378],[185,2349],[35,2472],[235,1608],[517,1286],[3729,-139],[1045,-1008]],[[844563,450636],[865,-879],[339,1838]],[[847080,452871],[384,-2983]],[[891666,490424],[0,-11357],[0,-10618],[-440,-1703],[436,-1664],[58,-3850],[0,-9358]],[[624400,725351],[501,-2259],[1355,-4532],[1324,-978],[635,-830],[-371,-3710],[-401,-340],[-565,-1738],[-480,-2175],[-243,-2146],[625,-1331],[866,-1207],[609,-1649],[296,-1777],[1388,-1396],[2035,-2650],[953,-3112],[-475,-2152],[-4,-2337],[686,-15],[278,-2198],[1265,-3832]],[[633219,683145],[-698,592],[-935,0],[-676,-820],[-644,-2773],[-953,-2332]],[[629313,677812],[-657,-180],[-3778,651],[-1125,859],[-6849,10552],[-2812,2772],[-1833,2171],[-3368,1220]],[[608891,695857],[-1131,7213]],[[607760,703070],[5129,5558],[654,342],[490,850],[459,1475],[7,2859],[451,2218],[-35,1285],[-293,1189],[54,1801],[322,1034],[1054,344],[1583,2758],[10,304]],[[617645,725087],[1318,1555],[806,53],[1004,-710],[1325,177],[1291,-1308],[563,742],[448,-245]],[[690292,647494],[688,0],[42,1616],[2231,235],[396,-581],[1018,259],[163,429],[1061,605],[139,-907],[907,27],[409,1053],[-44,2170],[-1231,5350],[-881,38],[-472,1340],[212,1837],[-3,1778],[-1072,288],[-778,876],[16,1546],[200,1012],[1222,2257],[351,1558],[637,1101],[481,78],[345,-892],[895,-741],[1781,753],[724,641],[1392,4711],[1547,1634],[880,2985],[183,1197],[1227,1749],[848,2994],[1333,3222],[35,1615],[-224,1850],[259,1009],[658,777],[1247,706],[143,1203]],[[709257,696872],[552,-28],[818,1019],[588,2448],[1240,1553],[754,-75],[697,-1136],[758,-744],[889,251],[2230,-2101]],[[725117,684376],[-274,34],[-1425,-2463],[-1034,-5226],[17,-467],[939,-1201],[789,-180],[948,-1064],[1327,-2101],[854,-969],[1454,-886],[995,-215],[114,-1276],[2943,-686],[730,388],[1561,-669],[176,-1150],[1427,-2208],[690,82],[1414,-901],[892,-86],[1587,-1034],[1927,-132],[1355,-312],[440,2259],[-187,1404],[-331,690],[157,2142],[380,1952],[-161,503]],[[769620,669826],[-467,-1032],[327,-1548],[-364,-318],[-477,666],[-1348,-562],[-554,-559],[-413,-963],[-1101,-1624],[-719,-469],[-379,-1052],[87,-1927],[-224,-2491],[-1011,-1746],[-225,-1482],[408,-1013],[-293,-1311],[-1508,-5403],[-1849,1015],[-187,-676],[199,-1642],[-177,-3228],[-660,-730],[-44,-2614],[241,-1645],[-791,-1805],[-851,5]],[[669091,682288],[948,-2181],[1101,-3726],[1392,-2137],[1896,-1603],[77,-2575],[-55,-2518],[1438,-1310],[-336,-2445],[-519,-500],[-763,-70],[-1048,-586],[-925,-1307],[-569,-2049],[-568,-4657]],[[624400,725351],[-511,2790],[-923,1480],[387,2041],[-407,3766],[-454,2520],[1434,2988],[540,-905]],[[649747,726503],[1284,100],[802,479],[550,1893],[1654,1916],[2437,421],[361,657],[1899,-81],[592,-1260],[658,-722],[2523,-1561],[862,221],[1355,-965],[674,-2246],[1528,-1126],[717,-1933],[2206,70],[107,-452],[19,-3668],[230,-1994]],[[595191,690338],[619,2214]],[[597510,701411],[615,-72],[831,948]],[[598956,702287],[132,-3258]],[[599088,699029],[-324,-1785]],[[598764,697244],[-898,910],[-393,-403],[-277,-1568],[-12,-1429],[655,-993],[-583,-817],[-214,-1869],[828,183],[674,691]],[[598544,691949],[-82,-1896],[-607,-3233],[-694,-6399]],[[538094,780778],[-751,-1758],[776,-3728]],[[608891,695857],[-596,-946],[-5515,-2921],[2681,-5717],[-1119,-2414],[-2465,-2192],[-476,-1498],[-1157,-1782],[-3135,938]],[[598544,691949],[129,1309],[91,3986]],[[599088,699029],[579,199],[1464,-2049],[1115,-367],[5514,6258]],[[602446,635919],[-7761,-56]],[[722706,755293],[-577,1214],[-1430,529],[-783,1405],[-1578,640],[-2885,467],[-2143,135],[-2795,-413],[-480,-396],[-1016,237],[-1300,832],[-1596,1399],[-1740,-1161],[-405,-2289],[-349,-1042],[-2468,1446],[-1626,701],[-1550,-508],[-792,-1528],[-129,-1356]],[[697064,755605],[-1076,-1243],[-828,-612],[-1100,-1401],[-1622,-1564],[-1743,-2671],[6,-2347],[-555,-35],[-1307,1286],[348,1318],[-1014,862],[-1568,-258],[-1302,29],[-485,4351],[-1488,353],[247,2478],[29,3443],[-505,-335],[-1432,2964],[-886,1391],[-890,274],[-643,-550],[-4006,298],[-1764,-565],[-1247,-125],[-1887,3394],[-680,1754],[-3002,3688],[-3916,3483],[-7198,-3485],[1,-21760]],[[655551,750020],[-1386,-396],[-1095,2263],[-490,1736],[-1984,2653],[-1790,-521],[-1627,-992],[-1429,-1958]],[[636723,779727],[-1358,1032],[-72,1284],[702,616],[-1069,2811],[-761,1521],[-867,1093],[-2193,0],[-308,1107],[88,1860],[-1737,1016],[793,3044],[693,839],[-658,1717],[414,2914],[1037,1662],[-60,748],[887,1079],[857,-1256],[863,-2180],[498,-370],[1357,1156],[-467,1464],[-329,2066],[1103,412],[979,929],[18,844],[573,755],[2196,1394],[1444,2146],[1374,-402],[725,-868],[995,1118],[893,451],[685,-1777],[2325,169],[2107,-2508],[845,-1810],[730,-782],[42,2324],[1434,-1714],[1247,-1035],[757,655],[1530,2327],[1704,182],[1005,-1251],[1198,1264],[1131,503],[1303,-2503],[1797,-1016],[876,-233],[1210,1266],[312,-499],[1409,-50],[1727,990],[488,2468],[-405,963],[-765,260],[-2201,1533],[-923,1649],[1895,1244],[768,781],[-773,1724],[823,2080],[575,265],[2395,-196],[-32,720],[-2618,1177],[448,1456],[-978,675],[380,1789],[544,606],[1107,-312],[1909,-115],[1393,661],[3238,1114],[2247,523],[982,18],[623,1356],[3198,655],[3233,881],[967,427],[280,995],[1927,1417],[2186,-90],[532,-517],[2526,19],[1237,-3894],[-387,-1692],[204,-1327],[2466,612],[563,700],[459,-1199],[1532,-190],[794,-836],[-58,-1784],[514,-1208],[1247,1202],[1624,-367],[919,1466],[437,-20],[1766,1634],[3699,2121],[-484,-1721],[-695,-770],[3927,-4486],[3546,-8062],[2356,-6689],[782,847],[976,2302],[1202,-699],[34,-760],[964,-1529],[676,-297],[1496,-37],[1346,605],[1230,906],[658,15],[1049,-727],[1178,-2037],[139,-1088],[2127,-2109],[480,-2040],[325,-386],[2357,-553],[1088,1280],[1755,-2739],[256,-797]],[[616416,529355],[-1460,-4449],[-1080,-2411],[0,-21290],[1363,-4232],[217,-994]],[[608905,478159],[-3949,5924],[-550,1394],[353,764],[-110,1481],[-9584,11572],[-817,636]],[[594248,499930],[0,2696],[189,4511],[269,1402],[1070,2800],[1423,4298],[25,1761],[-338,3606],[-636,1806],[-550,2111],[-74,1516],[-276,1397],[-681,1811],[-239,1159]],[[594430,530804],[1065,2318]],[[595495,533122],[3140,0]],[[598635,533122],[1219,0]],[[704443,739029],[-4095,-1124],[-1002,457],[-551,1330],[-1343,-653],[-2012,717],[-2810,-156],[-250,1742],[753,1603],[1587,389],[1273,-1210],[1194,1423]],[[697187,743547],[603,727],[1682,-911],[1218,1659],[1180,538],[991,1185],[-79,442],[-2746,1790],[-613,1765],[-386,210],[-744,-2031],[-1638,503],[-1526,1627],[109,753],[1044,1645],[1563,1443],[-781,713]],[[798766,592618],[-439,-4097],[640,-3013],[-140,-1486],[-72,-4961],[-465,-657],[-787,-454],[-1456,-1378],[-856,-1504],[-547,334],[-602,-1238],[149,-1866],[838,-1608],[-38,-1114],[-935,597],[-1018,352],[-1158,-1007],[-948,-1497],[-807,-584]],[[785863,574654],[-19,767],[-1535,8988],[1,1326],[725,541],[1012,3480],[473,685],[1245,570],[1170,-452],[2249,494],[402,-225],[165,-903],[471,660]],[[792222,590585],[480,-1421],[1166,-490],[852,-605],[238,825],[-517,1841],[927,429],[959,-59],[435,-750],[1157,1038],[847,1225]],[[634536,674460],[-1880,-54],[-800,2808],[-2543,598]],[[851921,729480],[5,663],[1183,2008],[749,223],[1921,-133],[553,716],[225,1084]],[[783732,638210],[122,-514],[1257,-2675],[759,-430],[-55,-2560],[86,-1147],[543,-1627],[401,-365],[1458,-278],[862,1164],[515,-361],[710,-1392],[209,-1471],[806,-1632],[43,-946],[-324,-1225],[-476,-940],[-1671,274],[-320,-1991],[3400,-4391],[-112,-899],[1451,-3028],[349,-1378],[900,-1900],[1271,-2322],[68,-1549],[375,-1607],[2011,-1844],[-272,-1505],[182,-2223],[499,-1886],[-163,-1485],[150,-1459]],[[792222,590585],[630,420],[305,879],[46,2854],[136,2545],[-126,1589],[-1511,2777],[-745,2460],[-12,1521],[157,3008],[-2439,5484],[-1475,703],[-322,-239],[-766,-2438],[-843,-957],[-1417,1915],[-1003,-581],[-1825,-3408],[-461,498],[502,4319],[326,4752],[-243,3000],[-789,125],[-468,-673],[-756,478],[-181,801],[409,2643],[-547,1063],[-545,-530],[-245,513]],[[778014,626106],[230,1523],[1951,4208],[758,1428]],[[599932,710512],[1232,-60],[549,-2537],[-1713,-3435],[51,-507],[-1095,-1686]],[[468057,546737],[203,103],[440,1722],[1292,2124],[1396,3613],[58,1664]],[[526532,684580],[861,596],[1144,2777],[31,1519],[-409,2433],[427,1208],[1152,1723],[1525,1829],[736,1846],[-75,1666],[199,1654]],[[569444,635842],[-27,-11833],[-2751,0],[0,-2943]],[[566666,621066],[-11163,12138],[-11059,11145],[-2778,-2610]],[[541666,641739],[-2228,-2066],[-1437,2506],[-555,673],[-4117,1944]],[[578402,325964],[-333,-1434],[-1014,433],[-1036,2244],[-960,3277],[781,873],[1458,3580],[1117,1258],[1099,707],[1911,-2961],[369,-1755],[-372,-996],[-419,-2214],[-943,-1040],[-1269,-425],[-389,-1547]],[[565319,824712],[-71,1112],[-1365,1416],[-572,-121]],[[563311,827119],[-182,1889],[428,761],[-959,1480],[-1128,-146],[-815,436],[-1146,861]],[[558512,837200],[1525,1510],[1114,582],[1647,-237],[2173,-28],[3014,-651],[1292,673],[651,-1229],[1405,-269],[1739,-2256],[901,-392]],[[575976,845763],[570,117],[520,-1063],[283,-2841],[807,-1939],[285,-1647],[-244,-590]],[[174657,698103],[6676,1089],[120,-1568],[4378,-2898],[5565,-3685],[7995,-36],[29,2468],[364,193],[4305,0],[409,-308],[919,-1984],[1407,-2430],[1766,-2382],[599,-2796],[98,-1296],[402,-1453],[1280,-1866],[1914,-1827],[508,-220],[777,1349],[257,1776],[387,1359],[1293,587],[1685,-397],[805,-868],[1729,-3045],[937,-4154],[1279,-3284],[724,-1268],[380,-1321],[118,-2303],[1090,-3675],[558,-222],[1757,-1508],[2448,-1063]],[[557206,753322],[371,-77],[311,1357],[593,465],[2443,977],[1186,-154]],[[468401,579194],[-21,3411],[-413,1596],[-608,668],[-221,-324],[-645,2244],[330,1365],[-223,2045],[-600,2887]],[[466000,593086],[546,-181],[657,925],[-105,1195],[374,2588],[523,394],[455,-293],[607,-1176],[973,-251],[311,750],[1273,277],[794,-139],[2616,255],[9571,-4],[154,293],[431,4579],[-776,1037],[-2700,50238],[4870,0]],[[511786,618944],[-10,-11547],[-445,-3890],[-8,-1233],[-474,-3192],[-1076,-2594],[-2044,94],[-4052,-545],[-1112,-1731],[-584,-112],[-1313,216],[-21,-435]],[[594685,635863],[-333,-1391],[-1119,-253],[-1060,1633]],[[778014,626106],[-367,655],[-1015,-715],[-927,-1351],[-614,-1366],[-1215,-997],[-563,-140],[-997,295],[-643,-2150],[-128,-3613],[-599,-1509],[1,-1239],[421,-2764],[390,-1124],[1513,-3449],[1169,-5652],[-589,-1672],[-107,-2795],[-701,-225],[-259,-595],[108,-1973],[1161,-3448],[862,-1445],[380,-1071],[262,-2273],[20,-1503],[-264,-826],[333,-1918],[520,-1484],[569,-3979],[-274,-1267],[-962,-3334],[-734,-1499],[-450,-2460]],[[553396,763073],[968,-1690],[2161,-2047],[-751,-2004]],[[743928,796425],[943,687],[151,1088],[2105,-41],[1304,1003],[723,903],[300,985],[2531,2061],[1410,840],[1203,1185],[2390,849],[2218,-1059],[2593,-139],[375,-1918],[626,-1277],[1757,-485],[1453,209],[3430,-642],[1326,-513],[1615,1364],[665,1680],[45,1047],[-893,1323],[-298,1287],[193,2258],[778,1677],[979,1167],[902,2062],[640,-708],[1950,-1312],[1732,-388],[1533,-922],[2473,-1028],[672,-755],[280,-2865],[1240,-2388],[1828,-1139],[1844,-308],[1355,979],[2083,744],[1656,-50],[2439,-686],[869,-1164],[2529,-1344],[369,-1772],[1032,-1378],[2698,-419],[600,-371],[2469,-217],[1187,204],[1218,767],[1302,132],[2109,813],[1366,1176],[613,1046],[2732,2326],[1465,-377],[1072,-1387],[1396,-581],[1513,789],[1188,-1026]],[[591369,347089],[-2105,93]],[[589264,347182],[-136,4919],[-309,329]],[[588819,352430],[163,4855],[-78,3574],[-328,2904],[-786,3001],[-116,2021],[-714,4533]],[[586960,373318],[200,222],[3026,6303],[-115,434],[186,2785],[257,1272],[336,346],[889,2991],[96,1222],[-585,1012],[-205,3467],[188,1464],[575,2315],[-155,1341],[119,3065],[-324,5570],[-1492,1397],[-1335,391],[-660,1207],[-914,866],[-620,290],[-1820,-22],[-107,2235]],[[584500,413491],[-158,451],[-356,3256],[2045,1458],[1220,665],[2069,1664],[3025,2086]],[[592345,423071],[575,-2091],[478,-1109],[2042,919],[421,-983],[224,-2351],[27,-1944],[-766,-2756],[-125,-1091],[573,-2136],[1622,-3160],[110,-1791],[555,43],[-10,1829],[-239,949],[205,2369],[1443,1281],[87,5788],[206,944],[-259,1647],[-1958,5191],[-1598,3124],[-359,6612],[667,3043],[843,17]],[[597109,437415],[886,11],[1314,590],[1210,-759],[263,-690],[747,-86],[660,662],[1776,-260],[895,681],[222,1366],[810,319],[1342,-304],[2276,1538],[1525,1411],[1157,1803]],[[466000,593086],[-1243,1963],[-1122,2602],[-525,1572],[-258,1430],[-523,534],[-850,13],[-816,2054],[-697,907],[-1906,-51],[-1483,-833],[-830,93],[-1054,-432],[-551,-2219]],[[592345,423071],[-761,354],[-445,859],[-237,1264],[338,378],[364,1601],[11,2141],[300,1705],[766,204],[307,1394],[-496,1789],[-109,3540],[202,2130],[268,1460],[730,1443],[-969,4380],[-315,1074],[-625,532],[-121,948]],[[591553,450267],[1622,-1220],[1136,18],[243,642],[814,-1643],[576,-1743],[265,-3364],[5,-2781],[702,-1562],[193,-1199]],[[719268,703142],[-565,1079],[-164,2696],[1029,1780],[-1984,1661],[-309,644],[-820,4611]],[[778114,543770],[123,883],[443,296],[2059,-2141],[136,-1727],[-166,-1338],[246,-752],[449,1162],[673,648],[467,-908],[546,451],[495,2381]],[[565105,401571],[2129,913],[1840,-268],[437,-365],[659,-1192]],[[555553,359464],[0,-21663],[-1018,-504],[-858,-1325],[-127,-797],[-768,-203],[-1191,293],[-1499,-10],[-1642,859],[-350,2880],[-596,1059],[-608,-348],[-747,-2416],[-448,-697]],[[595495,533122],[2534,2322],[400,-548],[206,-1774]],[[541666,641739],[739,-9165],[861,-3085],[39,-890],[1090,-2448],[-652,-2621],[-424,-6974],[-249,-10869],[-2691,-5994],[-855,-2128],[-920,-2656],[-293,-1607],[-870,-2023],[432,-4429]],[[537873,586850],[-695,2],[-1365,-1281],[-939,-1667],[-230,-880],[-861,236],[-771,847],[-1006,624],[-880,136],[-1490,-108],[-1284,-527],[-406,-380],[-1140,-2363],[-2133,351],[-660,519],[-1033,1407],[-1395,747],[-957,-1210],[-1367,-721],[-712,2168],[-732,1678],[-413,462],[-1339,508],[-2560,-134],[-1106,-609],[-804,-1210],[-222,-2932],[-444,-1361],[-732,-1245],[-73,-4205],[-157,-672]],[[537873,586850],[1247,-3708]],[[557084,913979],[-1358,-81],[757,-1441],[-1151,-2650],[-4188,1342],[-808,-222],[83,-2063],[-768,-1316],[-1657,843],[-1173,-976],[-1651,-2506],[-223,-3194],[-1939,-2629],[-118,-1005],[-1161,-1272],[-1315,-737],[-230,-4370],[-810,-1751],[-1446,-2452],[1277,-691],[122,-1583],[-509,-1061],[-2122,477],[-1454,-722],[-1467,-2330],[-249,-2441],[487,-6413],[-302,-2141],[1240,-915],[797,-1211],[-757,-1850],[-1033,-212],[994,-2721],[-372,-3026],[-1577,-1252],[-280,-1084],[119,-2400],[-377,-1664],[-1333,767]],[[585618,918291],[327,-1350],[-2212,439],[-574,-1349],[-1423,-518],[-510,-1222],[-865,-361]],[[647523,604228],[-3079,13883]],[[644444,618111],[7645,5436],[917,1954],[1623,10341],[-1273,4186]],[[704553,723925],[-321,-1065],[-1291,-510],[-1406,-2397],[-111,-1957],[439,-484],[1228,-239],[1691,-2071],[598,-1362],[497,-437],[-415,-1565],[-1362,-1688],[-210,-993],[496,-3774],[136,-3968],[2557,-2033],[411,-1549],[1151,-125],[616,-836]],[[277141,485554],[101,-1488],[-700,-3091],[11,-1485],[617,554],[1426,-650],[612,-932],[560,-1886],[800,-154],[769,2041],[256,1250],[759,5939],[1933,2812],[2844,2044],[1639,2751],[1294,3410],[472,3195],[493,892],[-225,2240],[-763,1709],[909,440]],[[562989,767141],[-572,1322],[645,971],[-792,588],[-515,-847],[-572,123],[-1668,1146],[103,1767],[-455,994],[-1361,1407],[-413,2067],[-1101,1755]],[[563599,789237],[599,683],[2742,-817],[1543,-105],[636,-1120],[881,718],[1870,713],[1078,641],[1024,1094]],[[578369,774541],[380,-871],[1003,-568],[1490,1247],[1116,-554],[111,-818]],[[582193,497611],[481,227],[442,-767],[688,796],[472,1470],[372,229]],[[584648,499566],[240,-1413],[501,-944],[260,-1307],[115,-2630],[-300,-1590],[-622,-129]],[[644444,618111],[-4555,-1498],[-3454,-767],[-2593,-2660],[-1620,-4236],[-327,-1735],[-1383,-1097],[-652,1847],[-998,-277],[-2552,523],[-709,641],[-2362,0],[-1067,-458],[-1530,1230],[-518,-527],[-212,-2269],[258,-1963],[-865,-2076],[-494,-20]],[[641143,652062],[523,-1444],[836,31]],[[555010,827586],[4549,-717],[3752,250]],[[565605,810241],[1089,-3468],[235,-1719],[-305,-1286],[-809,-316],[-849,-1158],[-2076,-3744],[456,-2339],[-664,-272]],[[562682,795939],[-1476,891],[-461,786],[-1407,417],[-844,-235],[-1911,14],[-715,-850],[-956,-144],[-76,989],[-737,1186],[-551,-423],[-1185,-96]],[[563543,570423],[235,1358],[-295,1514],[-830,1700],[-361,4850],[-639,1096],[-694,-513],[-349,1171],[296,1320],[610,839],[350,1293],[-547,2171],[1077,1804],[245,3343],[376,819],[880,2715],[-143,1967],[479,858],[1044,116],[1389,-171],[0,22393]],[[594758,561956],[-565,1],[22,1495],[210,1049],[-61,1249],[-1128,2491],[-843,1533],[-282,3839],[-9,1296],[303,3103],[-1418,117],[-113,-1703],[-1690,-12],[632,-1169],[164,-1084],[164,-3130],[-1474,-2988],[-465,-1538],[-1220,-2932],[-1216,-201],[-2445,3254],[-1272,-1224],[-2,-876],[-833,-1087],[-662,-490],[-3016,-334],[-2158,83],[-1185,-795],[-1103,868],[-1098,4557],[-185,185],[-1597,-572],[-681,-1027],[-460,-1690],[-530,-2641],[-512,-3581],[-743,-1108]],[[594430,530804],[-1105,-2319],[-1833,-4],[-1141,-492],[-898,-952],[-1490,765],[-1352,439],[-559,-569],[-322,-1251]],[[562682,795939],[-1099,-2970],[-41,-1073]],[[589264,347182],[-339,141],[-96,-2963],[-1347,14],[-953,673],[-966,2228],[78,2445],[801,2711],[518,1163],[346,167],[1217,-1608],[296,277]],[[599771,718164],[702,-245],[460,597],[778,2052],[-201,983],[374,1919],[1310,-940],[647,-94],[1126,597],[955,837],[820,-26],[1233,-1112],[949,-192],[1757,600],[945,642],[1595,1424],[1297,-286],[2053,541],[506,575],[568,-949]],[[688295,725514],[189,2090],[748,2141],[328,218],[449,1572],[-843,1460],[65,2244],[-646,1191],[-1172,1067],[-128,1989],[780,715],[1139,-579],[1216,-103],[832,1935],[426,2110],[554,-82],[392,2915],[637,170],[515,-514],[2196,1967],[681,-1491],[-1131,-2036],[513,-836],[1152,-110]],[[655551,750020],[2619,-359],[269,1084],[-106,2770],[770,1274],[879,129],[2238,3070],[1034,140],[1401,-1791],[1790,-629],[360,-664],[107,-1530],[-41,-2700],[999,-1242],[1809,-136],[1462,230],[1039,-1639],[1360,-6053],[3393,-4179],[3483,-3643],[1676,-2027],[1042,-132],[2118,-2091],[-410,-863],[29,-2447]],[[584648,499566],[1973,344],[1670,5],[5957,15]],[[591553,450267],[-3347,2895],[-488,991],[-1467,818],[-710,1927]],[[588282,813811],[449,-314],[1116,579],[775,819],[2057,390],[1316,-6],[1346,-2857],[-193,-1894],[131,-1312],[1020,-802],[1340,132],[623,-1255],[109,-2596],[591,-1285],[1221,586],[1717,-1187],[1876,1096],[792,-1547],[1149,-1478],[677,965],[1323,-1193],[1248,-368],[1989,-1404],[608,-1287],[-161,-938],[-866,-922],[-56,-2732],[574,-2152],[-446,-1632],[-878,-655],[-1849,111],[-1523,-2184],[-163,-2185]],[[581597,374635],[810,376],[896,-555],[1585,-596],[705,180],[978,-195],[389,-527]],[[584500,413491],[-197,-191],[-1323,245],[-790,-228],[-1041,-694],[-824,-1067],[-226,-1954],[-689,-1818],[-836,-734],[-1312,-1616],[-519,-1696],[-1671,-4053],[-722,-371],[-2532,524],[-1648,821]],[[479405,725759],[-247,1823],[260,1432],[1046,2478],[-805,1743],[749,3779],[-683,1253],[-386,1941],[1173,73],[311,1261],[323,2877],[-172,3272],[744,1861],[1087,1988],[-1538,2158],[-950,165],[-1428,-619],[-984,46],[-653,1555],[-812,-317],[-888,-999]],[[998019,7770],[-998019,-957]],[[0,6813],[0,7],[8114,617]],[[0,890146],[998535,-1371]],[[998387,914942],[-998387,-1436],[0,-3]],[[0,925296],[999997,148]],[[998337,927730],[-998337,837]],[[0,6821],[0,-8]],[[796055,817878],[-111,827],[1500,1419],[611,1182],[833,827],[1222,2010],[945,2364],[1868,4537],[391,3002],[871,1154],[1175,-106],[-639,-4332],[-111,-1536],[-500,-2246],[-444,-3074],[-278,-1182],[-611,946],[-1111,-2010],[555,-354],[-111,-1064],[-833,-355],[-778,-2009],[-1055,-1300],[-1334,-946],[-1888,-591],[-1501,-1655],[-999,-1655],[-1389,-1418],[-1167,-355],[-1445,237],[-1500,591],[-388,827],[666,709],[1500,0],[1833,828],[1167,1655],[1389,1418],[778,591],[889,1064]],[[225124,824555],[2770,2408],[425,-1642],[448,-3748],[3476,-11985],[429,-4175],[-1354,-1431],[-544,1804],[-873,4395],[-2682,4060],[-2877,6097],[782,4217]],[[180555,872089],[-2240,3365],[-700,1401],[599,-168],[3862,-1904],[3053,-2268],[4374,2359],[2052,2816],[2334,945],[2222,-1192],[861,-379],[-74,-717],[-2734,-1047],[-3264,-984],[-3763,-4665],[-2804,-2836],[-4725,-1202],[-3053,-98],[-4503,2671],[-795,292],[-104,944],[570,208],[3825,-1362],[3122,2163],[1885,1658]],[[288224,765744],[165,-2300],[-2084,-1950],[-2275,490],[-2183,219]],[[281847,762203],[-1448,-744],[-117,-42],[-731,-264],[-1108,561],[831,2021],[847,699],[1961,861],[2347,805],[1233,-1118],[775,1296],[881,819],[547,-402],[43,-31],[316,-920]],[[269111,754520],[1524,-372],[2061,1882],[1214,1653],[826,269],[1527,-595],[739,920],[1355,747],[2216,665],[204,61],[54,-580]],[[280831,759170],[-161,-239],[-60,-89]],[[280610,758842],[-2172,-3201]],[[278438,755641],[-2095,-1710]],[[276343,753931],[-1430,-797]],[[274913,753134],[-1645,-1635],[-2011,-786],[-1385,303],[-1713,1222]],[[268159,752238],[875,2098]],[[269034,754336],[77,184]],[[251111,789568],[1127,2337],[1577,928],[617,1441],[626,771],[2583,-1192],[1914,-142],[664,-790],[929,-3351],[3118,-888],[-490,-1681],[1099,-1735],[-473,-2245],[1166,-742],[-355,-1214],[-227,-779]],[[264986,780286],[-847,239],[-584,1655],[-2729,-516],[-2465,-1316],[-1956,2252],[-1575,754],[892,3116],[-2452,-1957],[-2229,-1914],[-2144,-1504]],[[248897,781095],[-1703,2031]],[[247194,783126],[-2783,-1232]],[[244411,781894],[9,868]],[[244420,782762],[1885,2491],[1973,2364],[2768,1906],[65,45]],[[594028,506574],[338,-1126],[456,-1519],[-174,-4311],[-2,-66],[-1370,-2637],[-911,-2671],[1099,-2027],[-1585,-1455],[-347,690],[-1607,-352],[-1241,-1327],[-773,2277],[522,4137],[84,3557],[-11,171],[-131,2116],[1271,3454],[1759,844],[1183,1408],[1440,-1163]],[[582879,867678],[2820,3245],[4653,-3886],[1159,-2807],[-357,-950],[-599,305],[-45,-1918],[-2457,157],[-527,-1863],[-1120,43],[7,1293],[-1597,2859],[-89,1259],[-1848,2263]],[[719418,782113],[707,-612],[-987,-1626],[-1236,-431],[-3441,582],[-4430,660],[-411,966],[-161,-1181],[-1373,-391],[-388,-1755],[-1371,-613],[-495,-6000],[-1842,3668],[9,1161],[826,1222],[-161,1007],[948,129],[205,1318],[2347,2299],[3511,-218],[2717,-807],[1885,26],[1214,-1060],[278,1118],[1649,538]],[[585572,455116],[-949,474],[147,1173],[137,1091],[-804,1576],[-362,3246],[-1696,3221],[-953,4233],[496,2492],[-750,3324],[418,7932],[80,1515],[1032,-5701],[-10,-181],[-136,-2634],[533,-854],[-93,-2518],[535,-2329],[-636,-2264],[2239,-4011],[211,-3659],[1482,-6406],[143,-616],[-464,-335],[-600,1231]],[[597944,421433],[-66,-732],[-986,2301],[-486,-1478],[-443,1267],[12,2220],[-640,1730],[25,2569],[-826,4351],[806,3283],[-174,7124],[-982,3818],[181,1321],[67,489],[65,-140],[1311,-2823],[92,-197],[3,-91],[229,-6117],[845,-2091],[70,-173],[-18,-150],[-60,-502],[-598,-5015],[399,-6241],[84,-1317],[523,-247],[567,-3159]],[[538831,855733],[14,-702],[-182,-1086],[-1767,-1736],[-1257,-589],[-1028,-17],[216,1594],[-44,617],[486,435],[917,234],[467,801],[1100,1226],[1078,-777]],[[275815,664146],[-628,203],[36,1452],[628,-203],[-36,-1452]],[[264290,571703],[-1207,167],[-1392,1972],[-261,2307],[888,238],[1468,-2475],[504,-2209]],[[603176,575856],[-358,1094],[637,1172],[762,-433],[-101,-1983],[-405,-661],[-535,811]],[[307203,410506],[-895,1167],[-707,1132],[296,398],[25,732],[-49,1134],[802,-333],[601,-997],[1093,-1813],[76,-161],[593,-2617],[-442,-890],[-175,-116],[-91,-60],[-249,440],[-254,359],[-191,1026],[-433,599]],[[223878,819804],[-402,-32],[-712,133],[-1741,835],[-487,1462],[756,1263],[-255,958],[61,223],[218,880],[251,806],[668,-86],[-146,-684],[-377,-1003],[868,-12],[-110,-633],[-405,-2234],[1086,-872],[757,-165],[-30,-839]],[[599207,873908],[943,-3332],[937,-2602],[-784,-1543],[-2107,-393],[-1344,992],[945,-12],[1031,-166],[-1162,1820],[-841,931],[-1029,1863],[-616,2081],[69,465],[1044,-402],[-110,1315],[582,-919],[680,-919],[378,308],[687,370],[-900,1370],[-1460,1624],[1059,-83],[662,-432],[1336,-2336]],[[188377,750154],[126,-1176],[-92,-1719],[-1408,1649],[-74,219],[-480,2722],[802,-1118],[512,-596],[517,535],[97,-516]],[[172891,897215],[-596,-2179],[-370,-520],[-4481,-190],[-71,-476],[225,-750],[-104,-942],[-4592,-2884],[53,677],[1086,2265],[-311,405],[-4187,-2454],[-1856,882],[147,822],[2371,2804],[-84,638],[-7215,871],[156,603],[15029,4835],[360,-556],[-2276,-2423],[7143,556],[-20,-824],[-407,-1160]],[[195407,854744],[-3980,-2822],[-315,741],[110,439],[5731,4673],[7088,-1364],[-5,-159],[-8629,-1508]],[[216958,848694],[976,-862],[-1187,-3070],[103,-698],[-3528,-5232],[-218,382],[372,1738],[195,40],[178,-861],[1215,2205],[-657,2062],[-1,1047],[1903,3279],[649,-30]],[[264083,776447],[490,795]],[[264573,777242],[93,-27],[2447,533],[-1382,2356]],[[265731,780104],[141,235],[381,634],[545,-1309],[2084,-734],[2112,-62],[2252,-603],[2485,-1145],[906,-1854],[1799,-4525],[-895,-1954],[-2257,814],[-1402,3655],[352,-3723],[-1325,-3283],[146,-2805],[-230,-1650],[-1671,-1818],[-126,-138]],[[271028,759839],[-139,2423],[-500,3428],[-1028,591],[-1722,-2600],[-552,49],[-143,1487],[1528,2365],[253,2693],[-225,2685],[-2056,2305],[-2361,1182]],[[264083,776447],[-389,-2246],[-612,-601],[-491,-2918],[-258,1982],[-1111,-1415],[-693,-1984],[-724,-2900],[-139,-2507],[921,-3656],[-76,-3899],[-1128,-2880],[-562,-817]],[[258821,752606],[-750,-650],[-944,-32]],[[257127,751924],[-256,400]],[[256871,752324],[-748,3107],[-22,1536]],[[256101,756967],[74,1459]],[[256175,758426],[-348,2894],[528,3345],[627,4118],[1441,4548],[-418,-20],[-2041,-3808],[-376,699],[1088,2130]],[[256676,772332],[1657,3819]],[[258333,776151],[1889,532],[2167,1182],[2184,-623]],[[244411,781895],[-730,-329],[28,-3315],[-89,6],[-686,-653],[-592,-567],[-397,-1088],[585,-1107],[-212,-1486],[-3,-1601],[-84,-1301],[810,-1135],[332,-53],[899,-842],[311,-400],[196,-635],[699,-1016],[940,-876],[89,-488],[8,-1423],[73,-666]],[[246588,762920],[-3644,109],[-4058,-37],[-3775,-78],[-3035,9]],[[232076,762923],[36,5520],[-336,5658],[-487,460],[-275,913],[150,800],[622,660],[49,860]],[[231835,777794],[1,1073],[-173,898],[-234,957],[-134,1201],[-34,1348],[-94,322],[-113,1732],[-12,795],[-54,707],[-138,1197],[-337,1214],[-322,1082],[-48,1073],[-36,1157],[95,754],[19,688],[-261,850],[-40,572],[-1,10]],[[229919,795424],[5751,-6],[7,2271],[941,31],[487,-3210],[5,-37],[2,-2],[773,-895],[89,-104],[889,-166],[1052,-196],[275,-92],[2560,-850],[326,-221],[1737,-1182],[114,-77],[518,-352],[2248,769],[3418,-1536],[1,0],[-1,-1]],[[244420,782762],[-9,-867]],[[177644,795421],[5624,4],[2678,2],[8302,10],[8302,9],[8303,6]],[[210853,795452],[0,-34],[43,-10806],[141,-7180]],[[211037,777432],[-143,-5414]],[[210894,772018],[-4633,62],[-5002,-31],[-4321,66],[-5470,-44],[12,-3002],[-50,-210]],[[191430,768859],[-303,325],[-270,829],[-302,163],[-395,-1173],[-637,-191],[-1568,369],[-74,-582],[-909,216],[-513,-819],[-493,1535],[-341,861],[-566,143],[-169,432],[-176,1545],[-493,738],[-317,1867],[-332,813],[-338,163],[-284,-832],[-548,-704],[-496,585],[-28,1514],[324,381],[-234,1520],[271,1555],[304,1310],[-837,57],[-715,856],[-774,1827],[-463,916],[-640,560],[-516,945],[1,1063],[-732,1570],[-223,6205]],[[231835,777794],[-5285,-322],[-4514,13],[-5694,-25],[-5305,-28]],[[210853,795452],[9619,-15],[9447,-13]],[[66627,621924],[346,1742],[110,221],[-30,184],[52,261]],[[67105,624332],[-156,913],[79,271],[901,-742]],[[69954,621059],[-10,-115],[-1,-3],[-186,-331],[-930,-1082],[-888,-923],[-126,-307],[-162,100]],[[66897,618866],[-23,259],[48,989],[-230,1079],[-65,731]],[[65574,627461],[-326,640],[-65,168],[-399,1327]],[[64784,629596],[37,142],[121,225],[309,-120],[701,-399],[473,-591],[232,-381],[-153,-470],[-271,-271],[-369,-168],[-290,-102]],[[64551,630905],[-43,-315],[-160,-238],[-1302,151],[164,723],[62,-11],[1279,-310]],[[60437,633435],[663,637],[169,-276],[442,-1428]],[[61711,632368],[318,-638],[-42,-96],[-61,-25]],[[60772,631844],[-261,878],[-105,396],[-39,87],[-38,126]],[[56996,637155],[75,6],[224,-44],[24,-36],[56,-1345],[-330,-586],[-827,953],[485,1030]],[[191430,768859],[98,-106],[-1,-14696]],[[191527,754057],[-8289,-51]],[[183238,754006],[-8317,41]],[[174921,754047],[40,10621],[243,1680],[-225,769],[-519,400],[6,945],[391,1342],[598,1169],[397,1908],[373,1523],[281,769],[-149,898],[-465,479],[-656,1138]],[[175236,777688],[23,1051],[-254,901],[-79,8231],[-13,7544]],[[174913,795415],[2731,6]],[[175236,777688],[-5731,-44],[-997,-616],[-708,260],[-543,-482],[-1030,-651],[-1254,79],[-632,-479],[-582,-209],[-437,309],[-992,254],[-630,-188],[-1075,-626],[-682,-18],[-642,225],[-206,829],[-74,991],[-516,1129],[-807,338],[-674,538],[-848,28],[-617,6]],[[155559,779361],[-12,190],[-12,333]],[[155966,783388],[-789,318],[-721,4149],[-810,2744],[271,927],[2082,-1096]],[[155999,790430],[896,-133],[1105,-552],[1189,-4482],[-383,-880]],[[159238,784236],[161,235],[81,-306],[526,1196],[203,297]],[[160209,785658],[-67,335],[-129,1411],[412,2307]],[[159865,793189],[-1012,1842],[-8,43],[156,345],[7658,5],[8254,-9]],[[160127,789417],[-336,413],[-68,743],[-45,229],[449,-1385]],[[197096,724495],[5,-33440]],[[197101,691055],[-3205,-25],[-2296,-18],[-43,28],[-6293,4135],[-3824,2620],[-370,254],[256,1142],[3,14]],[[181329,699205],[366,-27],[305,1182],[-489,813],[-99,886],[-144,1041],[541,1357],[221,2706],[842,1213],[-525,1135],[-360,1114],[-229,1035],[-153,801],[-56,528]],[[181549,712989],[171,1160],[-137,1158],[-57,1144],[1,1273],[-248,810],[189,729],[585,0],[532,-419],[380,-235],[183,901],[120,197],[-20,4754]],[[183248,724461],[4481,90],[5337,-12],[4030,-44]],[[181329,699205],[-721,-131],[-2806,-509],[-2753,-398],[-393,-57],[-436,2818]],[[174220,700928],[-21,63],[-21,137],[-64,119],[-520,1577]],[[171076,706079],[-171,142],[-127,708],[-943,180],[-1105,917]],[[168730,708026],[-35,42],[-470,757],[-178,40],[-316,388]],[[167731,709253],[-2155,248],[-606,816],[-63,2554]],[[163830,715504],[-1614,3350],[-312,687],[-309,1096],[-464,3617]],[[160680,724383],[-311,608],[-557,1980],[-138,1016]],[[160101,729846],[-850,-22],[-788,1255],[-83,191],[-659,2083]],[[157721,733353],[-1077,1915],[-283,654],[-148,1371],[-37,463],[26,1869]],[[155331,742617],[-647,950],[-153,334],[-50,425],[188,1514],[558,2233]],[[155272,751665],[-299,1765],[-12,614]],[[154961,754044],[11708,-41]],[[166669,754003],[-3,-17714],[5238,-7985],[4983,-7815],[4662,-7500]],[[216527,742231],[28,-9107],[-3,-8676]],[[216552,724448],[-2672,19]],[[213880,724467],[-3325,6],[-4721,7],[-4390,15],[-4348,0]],[[197096,724495],[-22,23654]],[[197074,748149],[2784,3],[2781,0],[5564,6],[2783,3]],[[210986,748161],[5547,0],[-6,-5739],[0,-191]],[[183238,754006],[10,-29545]],[[166669,754003],[8252,28],[0,16]],[[213880,724467],[4,-2930]],[[213884,721537],[0,-15482],[0,-11115],[-2578,0],[-5001,0],[-2500,0],[29,-503],[255,-772],[57,-173]],[[204146,693492],[-4683,4],[-130,0],[-5,-2440],[-2227,-1]],[[154961,754044],[-693,3547],[-179,1054],[1072,5499],[675,10727],[-277,4490]],[[191527,754057],[-12,-5755],[5559,-153]],[[210894,772018],[71,-12060]],[[210965,759958],[21,-11797]],[[250936,718722],[-29,-491],[-283,-832],[-486,-575]],[[250138,716824],[-107,-979],[-440,-776],[34,-1720],[-318,-551]],[[249307,712798],[-52,-469]],[[249255,712329],[-496,-441],[-10,-857],[-372,-1582],[-320,-335],[-491,-804],[-294,-1219],[-607,-2061],[-64,-1401],[321,-1552],[-134,-1163]],[[246788,700914],[-2347,200],[-3036,-197],[-2682,9]],[[238723,700926],[160,3356],[-643,22],[-539,-78],[-145,388]],[[237556,704614],[79,5169],[59,5749],[-551,6249]],[[237143,721781],[3377,-85],[3071,-15],[2932,-4],[3165,-362],[231,-732],[-313,-635],[-312,-638],[-170,-588],[1812,0]],[[246588,762920],[40,-322],[361,-938],[-248,-448],[9,-1241],[113,-529],[179,-938],[907,-566],[271,-904]],[[248220,757034],[161,-450],[328,-301],[132,-638],[437,-475],[287,-510],[-149,-1589],[-514,-1338],[-185,-426],[-635,-340],[-954,-291],[-249,-1017],[346,-459],[117,-917],[-363,-1023],[-185,-897],[-712,-879],[-55,-1079]],[[246027,744405],[-381,494],[-531,957],[-3037,-128],[-3195,-44],[-2490,-9],[-2495,3]],[[233898,745678],[-182,1069],[78,1058],[-60,1019],[-285,1705],[-186,707],[-199,190],[-21,1367],[-175,979],[-504,1113],[6,488],[-177,976],[-125,588]],[[232068,756937],[5,541],[-450,657],[223,969],[144,948],[67,641],[-355,785],[3,1442],[371,3]],[[216527,742231],[6,0],[4855,0],[3612,0],[6389,4],[3825,0]],[[235214,742235],[660,-789]],[[235874,741446],[362,13],[79,-857],[-391,-1095],[212,-563],[342,-1241]],[[236478,737703],[731,-560],[-30,-6330],[-20,-6318]],[[237159,724495],[-2437,-6],[-5000,-9],[-5000,-13],[-2778,-6],[-2777,-6],[-2615,-7]],[[237143,721781],[30,2714],[-14,0]],[[235214,742235],[-360,1263]],[[233954,745190],[-56,488]],[[246027,744405],[-243,-1470],[248,-1767],[461,-1217],[530,-1004],[640,-794],[255,-269],[233,-1126],[44,-988],[317,-247],[525,381],[529,-950],[-157,-1092],[-257,-860],[-180,-1038],[394,-888],[550,-835],[315,-22],[727,-1298],[281,-175],[207,-1430],[-103,-888],[356,-1451]],[[251699,724977],[300,153],[492,-916]],[[252491,724214],[-86,-594],[52,-929],[-441,-491],[-623,-623]],[[251393,721577],[-72,-572],[-169,-841],[-216,-1442]],[[210965,759958],[5424,0],[4167,0],[5571,0],[717,-747]],[[226844,759211],[1022,-469],[240,268]],[[228106,759010],[659,-21],[993,59],[718,-760],[762,-494],[126,-491],[238,-285]],[[231602,757018],[466,-81]],[[237556,704614],[-1196,1157],[-779,629],[-632,-401],[-976,63],[-577,-10],[-477,-481],[-464,-247],[-407,290],[-928,-319],[-420,986],[-434,-854],[-757,381],[-779,920],[-833,-591],[-365,1423],[-1293,-141],[-828,319],[-932,419],[-413,1226],[-730,-394],[-452,482],[-663,635],[0,5642],[0,5789],[-2779,0],[-2780,0],[-2778,0]],[[246788,700914],[198,-338],[-252,-854],[402,-1216]],[[247136,698506],[-114,-732],[358,-1017]],[[246995,696154],[-129,-1117],[-537,-922]],[[246329,694115],[-249,-1239],[-253,-1426],[-340,-660],[113,-1476]],[[245600,689314],[2451,-188],[2618,-12],[-80,-982],[-184,-970],[177,-747],[366,-685],[98,-979],[52,-585],[27,-87]],[[251125,684079],[-697,-829]],[[250929,682313],[688,220],[11,-34],[-17,-907],[-730,-851]],[[251316,679682],[632,-302],[225,-446],[-530,-776],[-117,99],[-14,90]],[[248735,679159],[-1104,-1074],[-76,7],[-1934,2912],[-720,1106]],[[243981,681348],[-298,-680],[-513,-156],[-425,178],[-1707,1156],[-252,-60],[-884,-123]],[[239902,681663],[-519,-214],[-73,-18]],[[239310,681431],[-195,640],[282,866],[416,782],[8,1179],[-203,394],[242,1410],[178,642],[268,2161],[-246,807],[-322,1344],[-236,1370],[-155,913],[-455,667],[-169,6320]],[[239310,681431],[-71,-41],[-507,-210]],[[238732,681180],[-443,-352],[-1012,-597],[-385,1503]],[[236113,681404],[219,-2463],[-1639,-2840],[-2311,-2323]],[[232382,673778],[-32,-43],[-486,-448],[-488,122]],[[229406,662512],[191,-940],[42,-847],[240,-914],[-264,-744]],[[229615,659067],[426,126],[85,-324],[-11,-163],[-1032,-170],[-1973,1301],[-2166,1833],[-49,173],[-729,2604],[-611,4138],[-1491,3063],[-148,305],[-73,264],[-887,3201],[-233,675],[-934,2714],[-227,658],[-464,559],[-1493,1796],[-2272,-115],[-1132,-3020],[-186,-498],[-432,-1152],[-160,124],[-1888,1452],[-257,198],[-164,204],[-341,424],[-931,1157],[-61,289],[-580,2726],[-50,235],[-922,3087],[-518,817],[-1132,1782],[-394,517],[-1026,1350],[-1013,2095]],[[295839,754369],[2127,-109],[2587,-135]],[[300553,754125],[22,-3230],[-142,-730]],[[300433,750165],[-3082,-521]],[[295444,748155],[74,-224],[-96,-71],[-1,9]],[[295421,747869],[1,1],[-24,179],[-100,722],[604,575],[-218,504],[155,4519]],[[295839,754369],[600,4072]],[[296439,758441],[2291,-97]],[[298730,758344],[3356,-53],[287,582],[589,400],[329,-112]],[[303291,759161],[-12,-1359],[-616,-1965]],[[305727,752921],[-118,-1041],[-379,-194],[-1449,289]],[[303781,751975],[-1243,-923],[-95,8]],[[302443,751060],[-76,904],[-437,679],[-206,1548],[-1171,-66]],[[298730,758344],[-223,613],[219,767],[67,1551],[86,369],[94,1398],[304,1179],[228,516],[330,1401],[64,951],[92,575],[537,285],[623,685],[109,735],[-206,847],[325,1608],[-5,3]],[[301374,771827],[73,380],[205,1077],[890,298]],[[302542,773582],[1,-28],[390,-10840],[-105,-582],[512,-876],[129,-826],[198,40]],[[303667,760470],[-358,-1028]],[[303309,759442],[14,-192],[-32,-89]],[[302443,751060],[-153,-77],[-139,978]],[[301721,752507],[-258,-1943],[-664,-337],[-366,-62]],[[296439,758441],[117,4873],[-398,44],[-52,225],[177,857],[-255,1545],[280,1223],[-153,900],[-66,1755],[110,760],[55,1157],[2,41]],[[296256,771821],[3020,3],[2098,3]],[[255092,712673],[3492,-3],[3567,-78]],[[262151,712592],[722,-7337],[656,-5874],[398,-1848],[243,-1057],[-459,-1038],[-154,-1880],[150,-1113],[-69,-1045],[-77,-970],[176,-753],[137,-698]],[[263874,688979],[-5668,-34],[-1587,-338],[-44,-450],[633,-1436],[-147,-1166],[-162,-652]],[[256899,684903],[-326,-82],[-655,173],[97,266]],[[254889,685340],[-494,79]],[[254395,685419],[-88,9005],[489,9445],[494,7660],[-198,1144]],[[263874,688979],[422,-1592],[2793,-272],[4505,-885],[206,-1032],[359,529],[7,2054],[335,201],[550,-435],[586,-110]],[[273637,687437],[491,-4103],[6,-31],[161,-1498]],[[275094,678088],[451,-1470],[200,-678],[466,-2061]],[[276211,673879],[90,-1611],[4,-728],[51,-264],[8,-147]],[[276364,671129],[105,-440],[1151,-6005],[-66,-3016],[-189,-3516],[-61,-316],[-219,-47]],[[276347,654872],[-1179,-449],[-579,303],[-67,160]],[[271747,664039],[-239,-76],[-309,1082],[-885,3351]],[[270314,668396],[-404,1880],[-44,243],[294,2271],[257,1765],[-19,77],[11,80]],[[269943,678173],[-574,247],[-1321,3017],[-274,701]],[[267774,682138],[-81,109],[-220,502],[-388,325],[-486,660]],[[265360,682678],[-133,-134],[-728,-697],[-1425,-548],[-102,209],[-209,1252]],[[262763,682760],[-1012,1246],[-10,20],[-20,17],[-395,486]],[[260239,685289],[-2,1],[-237,199],[-450,-107],[-491,67]],[[259059,685449],[-2160,-546]],[[262151,712592],[2142,-53],[1482,59]],[[265775,712598],[3457,-47]],[[269232,712551],[-304,-491],[-446,-1119],[750,-982],[482,-360],[518,-1870],[330,-1048],[967,-1401],[192,-735],[658,-963],[323,-1408],[888,-1191],[199,-1351],[164,-654],[-95,-435],[517,-647],[274,-1107],[-5,-1126],[254,-219],[477,-304]],[[275375,695140],[-192,-512],[-546,-1322]],[[274637,693306],[-61,-303],[-510,-1365],[-240,-2350],[-34,-167]],[[273792,689121],[-1,-179],[-154,-1505]],[[249307,712798],[2737,3],[3048,-128]],[[254395,685419],[-1189,191]],[[251978,685093],[-853,-1014]],[[269232,712551],[278,175],[1499,1014],[2562,-50],[1301,-272],[22,-523],[279,391],[435,-1001],[-7,-688],[3085,-59],[3108,-5592]],[[281794,705946],[-132,-203],[-475,-346]],[[279104,701064],[-487,-999],[-1677,-2110],[-205,-369],[-842,-1240]],[[275893,696346],[-440,-1065],[-78,-141]],[[248220,757034],[2835,0],[2899,-13],[2139,-53],[0,16],[9,0]],[[256102,756984],[-1,-17]],[[256871,752324],[1,0]],[[256872,752324],[-3,-6846],[-3,-6843],[-316,-1645],[228,-435],[147,-1010],[-23,-795],[-232,-359],[-201,-979],[-576,-1289],[-390,-1588],[-90,-1195]],[[255413,729340],[20,-441],[-315,-823],[238,-556],[-488,-432],[-629,-494],[107,-1292],[-364,-488],[-671,548],[-739,319],[-188,-573],[107,-894]],[[256872,752324],[255,-400]],[[258821,752606],[0,-1],[2989,-28],[2614,28],[1,-463]],[[264425,752142],[-8,-5348],[-22,-5751],[-17,-4097]],[[264378,736946],[-160,-278],[227,-1208],[-121,-437],[-467,-10],[-434,-522],[-657,213],[-60,-1136],[-391,-431],[-366,-1017],[-393,-184],[-611,-1761],[-563,507],[-175,725],[-484,-1179],[-307,-657],[-598,695],[-640,-563],[-210,-576],[-855,901],[-596,-648],[-716,460],[-27,-653],[-361,153]],[[264378,736946],[951,-138],[491,-569],[738,-1335],[590,-419],[427,-479],[662,166],[488,-341],[595,325],[526,100],[222,-829],[518,-566]],[[270586,732861],[53,-563],[-30,-1222],[331,-923],[134,-898],[405,-766],[278,-716],[541,-110]],[[272298,727663],[-285,-452],[-826,-1308],[-867,-691],[0,-1],[-68,-478],[-295,-622],[-717,-664],[-43,-40],[-29,-67],[-220,-509],[-422,-270]],[[268526,722561],[-149,-95],[-803,-335]],[[267574,722131],[-1880,-194],[-2447,253],[-800,-72],[-1593,166],[-1626,47],[-1497,31],[-1737,-165],[-90,269],[-551,-13],[9,-929],[-3969,53]],[[265775,712598],[62,1251],[587,372],[193,635],[394,717],[563,156],[653,272],[635,510],[274,522],[530,472],[-15,429],[698,800],[225,-519],[1026,1114],[479,-116],[428,991],[566,257],[-31,844],[71,741]],[[273113,722046],[-1085,-89]],[[273113,722046],[4686,-256],[5535,-28],[2940,50],[2633,28],[296,3]],[[289203,721843],[101,-733],[7,-114],[-300,-1240]],[[289343,718411],[170,-474],[82,-1236],[-13,-403]],[[288018,712242],[-377,-843],[-651,-397],[-1193,-210]],[[285797,710792],[-782,-996],[-9,-5],[-9,-17],[-504,-642]],[[282246,706168],[-216,-158],[-236,-64]],[[264425,752142],[1422,44],[1264,0],[1048,53],[0,1]],[[268159,752240],[0,-2]],[[274913,753134],[1429,796]],[[276342,753930],[-6,-7914]],[[276336,746016],[-385,-297],[118,-751],[-130,-1361],[-286,-1538],[-269,-1276],[-47,-610],[-756,-1348],[-320,-288],[-375,-166],[-337,132],[-619,-1017],[-113,-1066],[-87,-576],[-247,-234],[-35,660],[-376,144],[-391,-1283],[-44,-1310],[-362,-820],[-689,-150]],[[267574,722131],[4130,-200],[324,26]],[[272298,727663],[124,-1004],[248,-423],[65,-111],[422,-476],[639,521],[237,192],[333,-416],[869,415],[168,80],[37,323],[23,205],[314,-209],[326,408],[18,23],[387,-84],[441,456],[35,312],[25,229],[-45,695],[376,1023],[536,772],[137,873],[268,589],[209,461],[265,1286],[369,-457],[414,-422],[398,228],[134,538],[273,735],[192,521],[117,317],[201,-247],[412,763],[318,453],[225,320],[99,167],[247,421],[173,1240],[46,333],[1290,-1457],[128,-144],[312,1110]],[[284103,738222],[75,-37],[332,-163],[369,-444],[-160,-496],[-44,-139],[586,-357],[518,-660]],[[285779,735926],[230,-506],[-13,-348]],[[285996,735072],[-50,-478],[-108,-127],[-365,-430],[-316,-1316],[369,-322],[451,256],[128,-655],[34,-177]],[[286139,731823],[1862,-1853],[23,-1722]],[[288952,723666],[251,-1823]],[[290618,730497],[-1508,-4553],[-241,380],[494,2317],[413,913]],[[289776,729554],[-168,234],[53,246]],[[289661,730034],[311,372],[646,91]],[[244411,781895],[0,-1]],[[247194,783126],[1679,-2002]],[[248873,781124],[24,-30],[172,122],[3,-19],[437,-194],[223,-1063],[2431,-1057],[1603,-1064],[785,-9],[541,-75],[152,-973],[657,-375],[246,-829],[-169,-475],[-127,-960],[612,-53],[-206,-951],[371,-698],[3,10],[70,-42]],[[256701,772389],[-25,-57]],[[256175,758426],[-73,-1442]],[[276336,746016],[0,-5439],[2893,0]],[[279229,740577],[-24,-2999],[427,528],[476,682],[550,235],[371,619],[821,-238],[302,438],[535,447],[859,-469],[338,-844],[219,-754]],[[291506,733058],[-1825,4],[-203,7531]],[[289478,740593],[214,466],[249,265],[599,-306]],[[290540,741018],[-413,-616],[73,-1139]],[[290200,739263],[89,-492],[-270,370]],[[290822,735803],[487,-534],[104,-159],[93,-2052]],[[285779,735926],[225,285],[352,-613],[-360,-526]],[[289661,730034],[-363,577],[-300,1829]],[[288998,732440],[-472,-600],[-149,237],[-148,412],[-92,1388],[45,207]],[[287378,734983],[15,-281],[-12,-55],[22,-137],[48,-917]],[[287451,733593],[309,-1340],[214,-1355],[-1835,925]],[[279229,740577],[2577,-6],[880,9],[1971,25],[2376,-28],[2445,16]],[[291506,733058],[9,-197],[-1,-6],[-26,-113],[-870,-2245]],[[290540,741018],[569,541],[200,369],[658,782],[357,644],[-874,1530],[-49,625],[-301,185],[13,950],[325,723],[-149,769],[444,519],[485,1323],[340,260]],[[292558,750238],[2128,-2336],[-109,-1238]],[[294577,746664],[-415,-805],[-235,186]],[[294257,744756],[150,-1000],[-459,-3248],[-1706,-3842],[-376,-51]],[[291866,736615],[-35,48],[-111,815],[-610,306],[-910,1479]],[[295421,747869],[-171,-139],[306,83],[66,-201]],[[299263,748406],[392,-6],[216,-293],[-2149,-1492],[-1290,-588],[-270,-78],[-1668,-11],[83,726]],[[292558,750238],[-448,419],[-474,410],[-179,860],[73,650],[-330,535],[-604,929],[-3774,9],[-4046,-3],[-4332,0],[0,1602]],[[278444,755649],[2166,3193]],[[280831,759170],[-53,578],[0,4],[-247,1775],[1316,676]],[[288224,765744],[-284,827],[2842,4121],[1254,1088],[1532,15],[2688,26]],[[276342,753930],[1,1]],[[278438,755641],[6,8]],[[302542,773582],[287,223],[893,693],[290,790],[696,1897],[2,9],[834,4533],[11,58],[2119,4460],[1,-1],[908,-1529],[15,-24],[173,93],[1589,856],[100,54],[1201,-1660],[20,-28],[12,-16],[0,-1629],[-2,-4718],[-1,-1362],[0,-351],[843,-1550],[974,-1790],[81,-327],[234,-943],[148,-683],[-23,-22],[-2391,-1421]],[[307146,765708],[-777,-1030],[-46,-27],[-734,406]],[[305054,764458],[-1387,-3988]],[[248873,781124],[24,-29]],[[264986,780286],[171,586],[-171,-586]],[[264986,780286],[745,-182]],[[258333,776151],[-1632,-3762]],[[271028,759839],[0,1],[0,-1]],[[271028,759839],[-1307,-3249],[-153,-522],[-456,-1548],[-1,0]],[[269034,754336],[-875,-2096]],[[75454,847939],[801,18],[333,-520],[-193,-427]],[[74702,844423],[379,-922],[-99,-115],[-778,-632],[-803,194]],[[73401,842948],[-1092,-1733],[-24,-19],[-387,270],[-726,780],[-462,912],[-328,2118],[81,238],[1295,1078],[517,-72]],[[72275,846520],[758,1099],[1332,809],[361,-78],[728,-411]],[[38309,859100],[-936,475],[-841,510],[-1614,1538],[3074,982],[1027,-250],[722,-416]],[[25144,881541],[1506,565],[808,-561],[166,-226]],[[30554,879056],[-2001,-707],[-565,344],[-1413,1351]],[[26575,880044],[-482,158],[-180,182],[-264,-37],[-938,307]],[[24711,880654],[-747,-543],[-127,-18],[-1008,824],[28,381],[623,793]],[[23480,882091],[1107,-366],[95,-62],[46,15],[416,-137]],[[138631,832059],[-96,-250],[-830,-1531],[-407,-415],[-1276,1857],[-88,698]],[[135462,833249],[-905,-298],[-1133,871],[-327,2145],[1213,2005]],[[134310,837972],[-1481,-245],[-190,1250],[-121,162],[171,106]],[[106171,860264],[-1920,541],[-291,126],[-108,-14],[-237,66]],[[103615,860983],[-2336,-403],[-900,-118],[-401,32],[-493,245],[-518,683]],[[88602,864788],[35,-228],[-371,-151],[393,-2818],[-188,-950]],[[84896,860604],[-2162,-3017],[-637,-519],[-822,-86]],[[81275,856982],[-689,-716],[-1738,-708],[-287,-79],[-160,1408],[1315,1061]],[[79716,857948],[-1524,1086],[101,471],[1513,4110]],[[80066,865048],[934,648],[1218,751],[1328,-569]],[[83212,867812],[-1537,80],[-67,131],[-130,-121],[-47,2]],[[79221,866415],[-955,-1500],[-199,-185],[-253,-525],[-852,-1338]],[[75722,861779],[-296,-1766],[-2438,-2561],[-1136,-725]],[[73095,854882],[1087,-1190],[-653,-1058],[-1336,-1118]],[[69904,848721],[-2841,-2709],[-1253,-812],[-53,-202],[-446,-341]],[[65311,844657],[233,-470],[-314,-1193],[-120,-197]],[[62880,841832],[-1473,-1864],[-400,-281],[-687,-61]],[[56053,835941],[-1294,-1259],[-8,2],[-2593,-1648],[-70,-50],[-710,27]],[[50339,832283],[-937,-1215],[-22,-16],[-2312,-575]],[[48253,833039],[789,1492],[1078,1177],[466,467]],[[50586,836175],[17,7],[1614,313],[1478,-1493]],[[53960,836711],[70,199],[1330,2352],[895,822],[2263,1600]],[[62399,850217],[237,1017],[262,647],[822,1021]],[[63720,852902],[-274,333],[327,807],[-3165,-1770],[-928,1358]],[[58735,852897],[206,-678],[-763,-1091],[-11,-4],[-99,164],[-1464,2844]],[[56604,854132],[-169,-145],[-79,129],[-99,-283],[-553,-475]],[[55704,853358],[-793,612],[-342,972],[-436,-371],[-17,13]],[[54116,854584],[-2712,-2007],[-773,2],[-173,2191]],[[50458,854770],[-608,1340],[10,45],[835,1573]],[[48249,860278],[-23,-12],[-3177,-996],[-158,37],[-2286,2706],[-61,45],[-80,102]],[[40652,866981],[-571,517],[-968,1139],[-411,849]],[[38702,869486],[976,3284],[1673,2438],[898,521]],[[42249,875729],[-38,1244],[481,1474],[381,617],[1708,329],[1519,-1036]],[[46300,878357],[469,289],[266,-132],[454,577],[670,414]],[[49070,880878],[1646,124],[577,-145],[239,207],[830,62]],[[52362,881126],[1040,1558],[8,6],[-1,4],[10,15]],[[53419,882709],[-471,2394],[-55,287],[-82,56],[-688,842]],[[53356,887730],[-330,594],[369,410],[-585,-23],[-450,808]],[[49396,887910],[-411,-424],[-244,-107],[-286,-442],[-140,-144]],[[48315,886793],[-2596,576],[-15,9],[-13,-3],[-129,29]],[[43591,887391],[-2022,-605],[-3417,1190],[-1258,2649]],[[35339,892330],[-1300,624],[-722,704],[215,606],[2056,1302],[1755,1042],[5067,2360],[849,333],[333,0],[1539,-165]],[[44537,896909],[520,-364],[-25,-195],[287,11],[183,-128]],[[50313,896050],[414,523],[168,7],[-71,116],[587,741]],[[40733,907856],[-75,39],[-76,72],[-1286,629],[-2163,1114]],[[38358,912283],[4865,841],[25,1],[5,4],[527,91]],[[46694,915734],[11,46],[49,37],[660,2874],[12,15],[2455,2430],[476,339]],[[54654,922607],[1135,984],[1199,597],[1367,-134]],[[58355,924054],[2193,390],[230,-35],[138,101],[637,113]],[[67998,925878],[1206,455],[52,-15],[2010,-2668],[1010,937],[1128,139],[2427,-183],[1090,-420]],[[80318,921914],[4245,609],[4084,-1304],[641,-280]],[[91057,920521],[1309,28],[1940,-201],[1813,-632]],[[100876,920325],[615,-37],[3863,-1629],[104,-28],[1737,-912]],[[108332,917444],[40,-6],[-18,-21545],[-15,-33650],[2736,-175],[186,-112],[2519,-1524],[1940,-2588],[2467,-3884],[560,684],[2143,2619],[270,186],[2518,1728],[1475,-3057],[1872,-2419],[2100,-2201],[443,-464],[1736,-4240],[162,-383],[707,-1680],[1866,-4428],[106,-251],[4714,-3754],[8,-7],[77,-3728],[-302,-559],[-11,53]],[[131824,840271],[-98,-75],[-1758,2347],[723,-589]],[[125771,849984],[1115,-549],[-1527,219],[-7,35]],[[123175,849960],[342,-194],[-1586,52],[904,474]],[[43520,828000],[-159,-252],[-856,-303],[-278,-5],[-214,487],[-126,480],[2903,2638],[962,103]]],"bbox":[-180,-85.58276367299999,180,83.61441040088856],"transform":{"scale":[0.00036000036000036,0.00016919734327123183],"translate":[-180,-85.58276367299999]}} \ No newline at end of file diff --git a/topojson/dist/world_50m.json b/topojson/dist/world_50m.json new file mode 100644 index 00000000000..2abc3794e95 --- /dev/null +++ b/topojson/dist/world_50m.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","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,75,76,77,78,-79,79,80,-81,81,82,83,84,85],[86,87,88,-89,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,270,271,272,273,274,275,276,277,278,279,280],[281],[282,283],[284],[285],[286],[287],[288],[289],[290],[291],[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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641],[642,643,644,645,646,647],[648,649,650,651],[652,653],[654,655,656],[657,658,659,660,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],[709],[710],[711],[712],[713],[714],[715],[716],[717],[718],[719],[720],[721],[722],[723],[724],[725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,-741,-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,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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,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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,-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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,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,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,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,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,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,2547,2548,2549,2550,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,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,2960,2961],[2962,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],[3013],[3014],[3015],[3016],[3017],[3018],[3019],[3020],[3021],[3022],[3023],[3024],[3025],[3026],[3027],[3028],[3029],[3030],[3031],[3032],[3033],[3034],[3035],[3036],[3037],[3038],[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],[3068],[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],[3126],[3127],[3128],[3129],[3130],[3131],[3132],[3133],[3134],[3135],[3136],[3137],[3138],[3139],[3140],[3141],[3142],[3143],[3144,3145,3146,3147],[3148],[3149],[3150],[3151],[3152],[3153],[3154],[3155],[3156],[3157],[3158],[3159],[3160],[3161],[3162],[3163],[3164],[3165],[3166],[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],[3891],[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,4333],[4334,4335,4336,-4335]]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]],"id":"ABW","properties":{"ct":[-69.97,12.51]}},{"type":"Polygon","arcs":[[5705,5706,5707,5708,5709,5710,5711]],"id":"AFG","properties":{"ct":[66.03,33.84]}},{"type":"MultiPolygon","arcs":[[[5712,5713,1,5714]],[[3,5715,5716]]],"id":"AGO","properties":{"ct":[17.57,-12.34]}},{"type":"Polygon","arcs":[[131]],"id":"AIA","properties":{"ct":[-63.06,18.21]}},{"type":"MultiPolygon","arcs":[[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]]],"id":"ALA","properties":{"ct":[19.97,60.21]}},{"type":"Polygon","arcs":[[5717,5718,5719,39,5720]],"id":"ALB","properties":{"ct":[20.07,41.13]}},{"type":"Polygon","arcs":[[5721,5722]],"id":"AND","properties":{"ct":[1.57,42.54]}},{"type":"Polygon","arcs":[[114,5723,5724,112,5725]],"id":"ARE","properties":{"ct":[54.34,23.9]}},{"type":"MultiPolygon","arcs":[[[5726,5727,5728,143,5729,5730]],[[281]],[[5731,282]]],"id":"ARG","properties":{"ct":[-65.15,-35.19]}},{"type":"Polygon","arcs":[[5732,5733,5734,5735,5736]],"id":"ARM","properties":{"ct":[44.93,40.29]}},{"type":"MultiPolygon","arcs":[[[284]],[[285]]],"id":"ASM","properties":{"ct":[-170.72,-14.3]}},{"type":"Polygon","arcs":[[5737,5738,5739,5740,5741,5742,5743,5744,5745]],"id":"AUT","properties":{"ct":[14.15,47.59]}},{"type":"MultiPolygon","arcs":[[[-5737,5746,5747,4328,5748]],[[-5734,5749,5750]]],"id":"AZE","properties":{"ct":[47.66,40.35]}},{"type":"Polygon","arcs":[[5751,5752,5753]],"id":"BDI","properties":{"ct":[29.89,-3.37]}},{"type":"Polygon","arcs":[[5754,5755,5756,55,5757,57,5758]],"id":"BEL","properties":{"ct":[4.65,50.65]}},{"type":"MultiPolygon","arcs":[[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]]],"id":"ATF","properties":{"ct":[69.5,-49.31]}},{"type":"MultiPolygon","arcs":[[[301]],[[302]]],"id":"ATG","properties":{"ct":[-61.8,17.08]}},{"type":"Polygon","arcs":[[5759,9,5760,5761,5762]],"id":"BEN","properties":{"ct":[2.34,9.66]}},{"type":"Polygon","arcs":[[-5762,5763,5764,5765,5766,5767]],"id":"BFA","properties":{"ct":[-1.73,12.28]}},{"type":"Polygon","arcs":[[-5746,5768,5769,5770]],"id":"CZE","properties":{"ct":[15.32,49.74]}},{"type":"MultiPolygon","arcs":[[[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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641]],[[642,643,644,645,646,647]],[[648,649,650,651]],[[652,653]],[[654,655,656]],[[657,658,659,660,661]],[[662,663,664,665,666]],[[667]],[[668]],[[669,670,671,672,673]]],"id":"AUS","properties":{"ct":[134.35,-25.58]}},{"type":"MultiPolygon","arcs":[[[5771,103,5772]],[[674]]],"id":"BGD","properties":{"ct":[90.26,23.98]}},{"type":"Polygon","arcs":[[36,5773,5774,5775,5776,5777]],"id":"BGR","properties":{"ct":[25.22,42.76]}},{"type":"Polygon","arcs":[[675]],"id":"BHR","properties":{"ct":[50.55,26.04]}},{"type":"MultiPolygon","arcs":[[[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]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]]],"id":"BHS","properties":{"ct":[-78.04,24.68]}},{"type":"Polygon","arcs":[[5778,5779,5780,42,5781]],"id":"BIH","properties":{"ct":[17.78,44.18]}},{"type":"Polygon","arcs":[[5782,5783,5784,5785,5786]],"id":"BLR","properties":{"ct":[28.05,53.55]}},{"type":"Polygon","arcs":[[5787,5788,725]],"id":"BLZ","properties":{"ct":[-88.71,17.2]}},{"type":"Polygon","arcs":[[1675]],"id":"BMU","properties":{"ct":[-64.79,32.29]}},{"type":"Polygon","arcs":[[-5731,5789,5790,5791,5792]],"id":"BOL","properties":{"ct":[-64.66,-16.71]}},{"type":"Polygon","arcs":[[5793,1676]],"id":"MAF","properties":{"ct":[-63.06,18.08]}},{"type":"MultiPolygon","arcs":[[[-5728,5794,-5792,5795,5796,5797,5798,5799,5800,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,270,271,272,273,274,275,276,277,278,279,5801]],[[1678,1679,1680]],[[1681,1682,1683]],[[1684,1685,1686,1687]],[[1688,1689,1690]],[[1691]]],"id":"BRA","properties":{"ct":[-53.09,-10.78]}},{"type":"Polygon","arcs":[[1692]],"id":"BRB","properties":{"ct":[-59.55,13.17]}},{"type":"MultiPolygon","arcs":[[[1693,5802]],[[5803,1695]]],"id":"BRN","properties":{"ct":[114.63,4.5]}},{"type":"Polygon","arcs":[[5804,5805,5806]],"id":"BTN","properties":{"ct":[90.43,27.39]}},{"type":"Polygon","arcs":[[5807,5808,5809]],"id":"BWA","properties":{"ct":[23.82,-22.19]}},{"type":"Polygon","arcs":[[5810,5811,5812,5813,5814,5815,5816]],"id":"CAF","properties":{"ct":[20.49,6.58]}},{"type":"MultiPolygon","arcs":[[[5817,-1048,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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,5818,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840]],[[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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,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,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,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,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,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,2547,2548,2549,2550,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,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,2960,2961]],[[2962,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]]],"id":"CAN","properties":{"ct":[-101.68,57.72]}},{"type":"MultiPolygon","arcs":[[[2992]],[[2993]]],"id":"CCK","properties":{"ct":[96.83,-12.18]}},{"type":"Polygon","arcs":[[-5742,5819,5820,5821,-5744,5822]],"id":"CHE","properties":{"ct":[8.24,46.8]}},{"type":"MultiPolygon","arcs":[[[-5730,144,5823,-5790]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[-5732,283]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3013]],[[3014]],[[3015]],[[3016]],[[3017]]],"id":"CHL","properties":{"ct":[-71.21,-35.17]}},{"type":"MultiPolygon","arcs":[[[-5706,5824,5825,5826,5827,5828,5829,-89,5830,92,5831,94,5832,5833,5834,5835,-5807,5836,5837,5838,5839,5840,5841]],[[3018]],[[3019]]],"id":"CHN","properties":{"ct":[103.87,36.63]}},{"type":"Polygon","arcs":[[-5766,5842,12,5843,5844,5845]],"id":"CIV","properties":{"ct":[-5.55,7.62]}},{"type":"Polygon","arcs":[[-5816,5846,5847,5848,7,5849,5850]],"id":"CMR","properties":{"ct":[12.74,5.69]}},{"type":"MultiPolygon","arcs":[[[3020]],[[3021]],[[3022]]],"id":"COM","properties":{"ct":[43.36,-11.66]}},{"type":"Polygon","arcs":[[-5715,2,-5717,5851,-5814,-5813,5852,5853,5854,-5753,5855,5856]],"id":"COD","properties":{"ct":[23.65,-2.88]}},{"type":"Polygon","arcs":[[-5716,4,5857,-5847,-5815,-5852]],"id":"COG","properties":{"ct":[15.22,-0.84]}},{"type":"MultiPolygon","arcs":[[[3023]],[[3024]],[[3025]],[[3026]],[[3027]],[[3028]]],"id":"COK","properties":{"ct":[-159.77,-21.23]}},{"type":"Polygon","arcs":[[-5797,5858,5859,147,5860,150,5861]],"id":"COL","properties":{"ct":[-73.08,3.91]}},{"type":"Polygon","arcs":[[5862,5863]],"id":"MDA","properties":{"ct":[28.47,47.21]}},{"type":"MultiPolygon","arcs":[[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]]],"id":"CPV","properties":{"ct":[-23.63,15.09]}},{"type":"Polygon","arcs":[[729,5864,733,5865]],"id":"CRI","properties":{"ct":[-84.21,9.98]}},{"type":"MultiPolygon","arcs":[[[3039]],[[3040]],[[3041]]],"id":"CUB","properties":{"ct":[-78.95,21.61]}},{"type":"Polygon","arcs":[[3042]],"id":"CUW","properties":{"ct":[-68.97,12.2]}},{"type":"Polygon","arcs":[[3043]],"id":"CXR","properties":{"ct":[105.64,-10.48]}},{"type":"MultiPolygon","arcs":[[[3044]],[[3045]],[[3046]]],"id":"CYM","properties":{"ct":[-81.27,19.32]}},{"type":"Polygon","arcs":[[3047]],"id":"CYP","properties":{"ct":[33.21,35.05]}},{"type":"MultiPolygon","arcs":[[[-5745,-5822,5866,5867,-5755,5868,66,5869,68,5870,-5769]],[[3048]]],"id":"DEU","properties":{"ct":[10.38,51.08]}},{"type":"Polygon","arcs":[[5871,5872,5873,124]],"id":"DJI","properties":{"ct":[42.58,11.73]}},{"type":"Polygon","arcs":[[3049]],"id":"DMA","properties":{"ct":[-61.35,15.43]}},{"type":"MultiPolygon","arcs":[[[-5870,67]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]]],"id":"DNK","properties":{"ct":[9.33,56.04]}},{"type":"Polygon","arcs":[[5874,3055]],"id":"DOM","properties":{"ct":[-70.5,18.91]}},{"type":"Polygon","arcs":[[5875,5876,5877,5878,5879,5880,5881,23]],"id":"DZA","properties":{"ct":[2.68,28.16]}},{"type":"Polygon","arcs":[[5882,5883,5884,26,5885,5886,120,5887]],"id":"EGY","properties":{"ct":[29.77,26.57]}},{"type":"MultiPolygon","arcs":[[[-5874,5888,5889,123]],[[3057]]],"id":"ERI","properties":{"ct":[38.8,15.4]}},{"type":"Polygon","arcs":[[-5881,5890,21,5891]],"id":"ESH","properties":{"ct":[-13.14,24.66]}},{"type":"MultiPolygon","arcs":[[[5892,5893,77,78]],[[3058]],[[3059]]],"id":"EST","properties":{"ct":[25.83,58.68]}},{"type":"Polygon","arcs":[[-5873,5894,5895,5896,5897,-5889]],"id":"ETH","properties":{"ct":[39.63,8.63]}},{"type":"Polygon","arcs":[[-81,81,5898,5899,5900]],"id":"FIN","properties":{"ct":[26.3,64.54]}},{"type":"MultiPolygon","arcs":[[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3068]],[[3069]],[[3070]],[[3071]],[[3072]]],"id":"FRO","properties":{"ct":[-7,62.13]}},{"type":"MultiPolygon","arcs":[[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]]],"id":"FLK","properties":{"ct":[-58.78,-51.76]}},{"type":"MultiPolygon","arcs":[[[-5723,5901,54,-5757,5902,-5867,-5821,5903,46,5904,48,5905]],[[3095]]],"id":"FRA","properties":{"ct":[2.46,46.63]}},{"type":"Polygon","arcs":[[-5801,5906,154]],"id":"GUF","properties":{"ct":[-53.23,3.92]}},{"type":"Polygon","arcs":[[3096]],"id":"GUM","properties":{"ct":[144.78,13.43]}},{"type":"MultiPolygon","arcs":[[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]]],"id":"FSM","properties":{"ct":[158.23,6.88]}},{"type":"Polygon","arcs":[[-5848,-5858,5,5907]],"id":"GAB","properties":{"ct":[11.79,-0.61]}},{"type":"MultiPolygon","arcs":[[[3104]],[[3105]],[[5908,3106]],[[3108]],[[3109]],[[3110]],[[3111]]],"id":"GBR","properties":{"ct":[-2.52,53.95]}},{"type":"Polygon","arcs":[[-5736,5909,32,5910,-5747]],"id":"GEO","properties":{"ct":[43.5,42.18]}},{"type":"Polygon","arcs":[[-5765,5911,11,-5843]],"id":"GHA","properties":{"ct":[-1.21,7.97]}},{"type":"Polygon","arcs":[[50,5912]],"id":"GIB","properties":{"ct":[-5.35,36.14]}},{"type":"Polygon","arcs":[[-5805,-5836,5913,5914]],"id":"XAP","properties":{"ct":[94.39,28.13]}},{"type":"Polygon","arcs":[[-5845,5915,5916,15,5917,5918,5919]],"id":"GIN","properties":{"ct":[-10.92,10.44]}},{"type":"MultiPolygon","arcs":[[[3112]],[[3113]],[[3114]]],"id":"GLP","properties":{"ct":[-61.6,16.21]}},{"type":"Polygon","arcs":[[18,5920]],"id":"GMB","properties":{"ct":[-15.41,13.46]}},{"type":"Polygon","arcs":[[-5918,16,5921]],"id":"GNB","properties":{"ct":[-14.92,12.05]}},{"type":"MultiPolygon","arcs":[[[-5849,-5908,6]],[[3115]]],"id":"GNQ","properties":{"ct":[10.46,1.56]}},{"type":"MultiPolygon","arcs":[[[-5720,5922,-5775,5923,38]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]]],"id":"GRC","properties":{"ct":[22.58,39.49]}},{"type":"MultiPolygon","arcs":[[[3123]],[[3124]]],"id":"GRD","properties":{"ct":[-61.69,12.11]}},{"type":"MultiPolygon","arcs":[[[3125]],[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3135]],[[3136]],[[3137]],[[3138]],[[3139]]],"id":"GRL","properties":{"ct":[-41.39,74.77]}},{"type":"Polygon","arcs":[[-5788,726,5924,5925,737,5926]],"id":"GTM","properties":{"ct":[-90.36,15.7]}},{"type":"Polygon","arcs":[[-5799,5927,152,5928]],"id":"GUY","properties":{"ct":[-58.97,4.78]}},{"type":"Polygon","arcs":[[-5832,93]],"id":"HKG","properties":{"ct":[114.12,22.42]}},{"type":"Polygon","arcs":[[3140]],"id":"HMD","properties":{"ct":[73.53,-53.1]}},{"type":"Polygon","arcs":[[-5925,727,5929,735,5930]],"id":"HND","properties":{"ct":[-86.61,14.82]}},{"type":"MultiPolygon","arcs":[[[-5782,43,5931,5932,5933]],[[-5781,5934,41]]],"id":"HRV","properties":{"ct":[16.43,45.13]}},{"type":"MultiPolygon","arcs":[[[-5875,3056]],[[3141]]],"id":"HTI","properties":{"ct":[-72.66,18.94]}},{"type":"Polygon","arcs":[[-5739,5935,5936,5937,5938,-5933,5939]],"id":"HUN","properties":{"ct":[19.41,47.16]}},{"type":"MultiPolygon","arcs":[[[5940,1697]],[[3142]],[[3143]],[[3144,5941,3146,5942]],[[3148]],[[3149]],[[3150]],[[3151]],[[3152]],[[3153]],[[3154]],[[3155]],[[3156]],[[3157]],[[3158]],[[3159]],[[3160]],[[3161]],[[3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[5943,3191]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]]],"id":"IDN","properties":{"ct":[114,-0.19]}},{"type":"Polygon","arcs":[[5944,107,5945,5946,5947,5948,5949]],"id":"IRQ","properties":{"ct":[43.76,33.05]}},{"type":"Polygon","arcs":[[3211]],"id":"ISL","properties":{"ct":[-18.59,64.98]}},{"type":"MultiPolygon","arcs":[[[-5773,104,5950,5951,-5839,5952,-5837,-5806,-5915,5953]],[[3212]],[[3213]],[[3214]],[[3215]]],"id":"IND","properties":{"ct":[79.35,22.34]}},{"type":"Polygon","arcs":[[-5909,3107]],"id":"IRL","properties":{"ct":[-8.14,53.18]}},{"type":"MultiPolygon","arcs":[[[-5709,5954,106,-5945,5955,-5750,-5733,-5749,4329,5956]],[[3216]]],"id":"IRN","properties":{"ct":[54.3,32.57]}},{"type":"Polygon","arcs":[[-5887,5957,28,5958,5959,5960,5961,5962,119]],"id":"ISR","properties":{"ct":[34.97,31.37]}},{"type":"MultiPolygon","arcs":[[[-5741,5963,45,-5904,-5820]],[[3217]],[[3218]]],"id":"ITA","properties":{"ct":[12.15,43.53]}},{"type":"Polygon","arcs":[[3219]],"id":"JAM","properties":{"ct":[-77.28,18.15]}},{"type":"Polygon","arcs":[[-5948,5964,118,-5963,5965,-5961,5966]],"id":"JOR","properties":{"ct":[36.79,31.25]}},{"type":"MultiPolygon","arcs":[[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]]],"id":"JPN","properties":{"ct":[138,36.67]}},{"type":"Polygon","arcs":[[-5888,121,5967]],"id":"XHT","properties":{"ct":[35.49,22.36]}},{"type":"Polygon","arcs":[[-5827,5968,5969,5970,4331,4332,5971]],"id":"KAZ","properties":{"ct":[67.3,48.17]}},{"type":"Polygon","arcs":[[-5896,5972,126,5973,5974,5975,5976,5977]],"id":"KEN","properties":{"ct":[37.86,0.54]}},{"type":"Polygon","arcs":[[-5826,5978,5979,-5969]],"id":"KGZ","properties":{"ct":[74.52,41.46]}},{"type":"Polygon","arcs":[[5980,96,5981,5982]],"id":"KHM","properties":{"ct":[104.93,12.71]}},{"type":"MultiPolygon","arcs":[[[-5946,108,5983]],[[3230]]],"id":"KWT","properties":{"ct":[47.57,29.33]}},{"type":"Polygon","arcs":[[-5882,-5892,22]],"id":"MAR","properties":{"ct":[-6.27,31.85]}},{"type":"MultiPolygon","arcs":[[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]]],"id":"KIR","properties":{"ct":[-157.63,1.84]}},{"type":"MultiPolygon","arcs":[[[3255]],[[3256]]],"id":"KNA","properties":{"ct":[-62.76,17.34]}},{"type":"MultiPolygon","arcs":[[[5984,90]],[[3257]]],"id":"KOR","properties":{"ct":[127.86,36.47]}},{"type":"Polygon","arcs":[[-5905,47]],"id":"MCO","properties":{"ct":[7.42,43.74]}},{"type":"Polygon","arcs":[[-5834,5985,-5983,5986,5987]],"id":"LAO","properties":{"ct":[103.76,18.51]}},{"type":"Polygon","arcs":[[-5959,29,5988]],"id":"LBN","properties":{"ct":[35.9,33.92]}},{"type":"Polygon","arcs":[[-5844,13,5989,-5916]],"id":"LBR","properties":{"ct":[-9.29,6.44]}},{"type":"Polygon","arcs":[[-5877,5990,25,-5885,5991,5992,5993]],"id":"LBY","properties":{"ct":[18.03,27.04]}},{"type":"Polygon","arcs":[[3258]],"id":"LCA","properties":{"ct":[-60.97,13.89]}},{"type":"Polygon","arcs":[[-5743,-5823]],"id":"LIE","properties":{"ct":[9.55,47.14]}},{"type":"Polygon","arcs":[[3259]],"id":"LKA","properties":{"ct":[80.71,7.6]}},{"type":"Polygon","arcs":[[5994]],"id":"LSO","properties":{"ct":[28.25,-29.58]}},{"type":"Polygon","arcs":[[-5785,5995,5996,4334,4335,5997,-75,75,5998]],"id":"LTU","properties":{"ct":[23.88,55.34]}},{"type":"Polygon","arcs":[[-5756,-5868,-5903]],"id":"LUX","properties":{"ct":[6.08,49.78]}},{"type":"Polygon","arcs":[[-5786,-5999,76,-5894,5999]],"id":"LVA","properties":{"ct":[24.94,56.85]}},{"type":"Polygon","arcs":[[3260]],"id":"MAC","properties":{"ct":[113.56,22.14]}},{"type":"Polygon","arcs":[[3261]],"id":"MDG","properties":{"ct":[46.69,-19.41]}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"MDV","properties":{"ct":[73.54,4.21]}},{"type":"MultiPolygon","arcs":[[[-5789,-5927,738,739,740,6000,-1674,-1673,1674]],[[3471]],[[3472]]],"id":"MEX","properties":{"ct":[-102.53,23.94]}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"MHL","properties":{"ct":[171.1,7.12]}},{"type":"Polygon","arcs":[[-5719,6001,-5776,-5923]],"id":"MKD","properties":{"ct":[21.7,41.61]}},{"type":"Polygon","arcs":[[-5767,-5846,-5920,6002,6003,-5879,6004]],"id":"MLI","properties":{"ct":[-3.53,17.36]}},{"type":"MultiPolygon","arcs":[[[3665]],[[3666]]],"id":"MLT","properties":{"ct":[14.44,35.89]}},{"type":"Polygon","arcs":[[-5883,6005]],"id":"XBT","properties":{"ct":[33.69,21.89]}},{"type":"MultiPolygon","arcs":[[[-5772,-5954,-5914,-5835,-5988,6006,102]],[[3667]],[[3668]]],"id":"MMR","properties":{"ct":[96.52,21.25]}},{"type":"Polygon","arcs":[[-5721,40,-5935,-5780,6007]],"id":"MNE","properties":{"ct":[19.27,42.8]}},{"type":"Polygon","arcs":[[-5829,6008]],"id":"MNG","properties":{"ct":[103.07,46.84]}},{"type":"MultiPolygon","arcs":[[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]]],"id":"MNP","properties":{"ct":[145.76,15.19]}},{"type":"MultiPolygon","arcs":[[[3676]],[[3677]]],"id":"WSM","properties":{"ct":[-172.44,-13.62]}},{"type":"Polygon","arcs":[[6009,6010,6011,6012,6013,6014,6015,128]],"id":"MOZ","properties":{"ct":[35.55,-17.25]}},{"type":"Polygon","arcs":[[3678]],"id":"BLM","properties":{"ct":[-62.83,17.9]}},{"type":"Polygon","arcs":[[3679]],"id":"BVT","properties":{"ct":[3.41,-54.43]}},{"type":"Polygon","arcs":[[3680]],"id":"GGY","properties":{"ct":[-2.58,49.46]}},{"type":"Polygon","arcs":[[3681]],"id":"IMN","properties":{"ct":[-4.53,54.23]}},{"type":"Polygon","arcs":[[3682]],"id":"JEY","properties":{"ct":[-2.13,49.21]}},{"type":"Polygon","arcs":[[-5880,-6004,6016,20,-5891]],"id":"MRT","properties":{"ct":[-10.34,20.26]}},{"type":"Polygon","arcs":[[3683]],"id":"MSR","properties":{"ct":[-62.19,16.74]}},{"type":"Polygon","arcs":[[3684]],"id":"MTQ","properties":{"ct":[-61.02,14.65]}},{"type":"Polygon","arcs":[[-6015,6017,6018]],"id":"MWI","properties":{"ct":[34.31,-13.23]}},{"type":"Polygon","arcs":[[-5841,6019]],"id":"XAC","properties":{"ct":[79.12,35.02]}},{"type":"MultiPolygon","arcs":[[[-5803,1694,-5804,1696,-5941,1698]],[[98,6020,100,6021]]],"id":"MYS","properties":{"ct":[114.71,3.6]}},{"type":"MultiPolygon","arcs":[[[3685]],[[3686]]],"id":"MYT","properties":{"ct":[45.13,-12.83]}},{"type":"Polygon","arcs":[[-5714,6022,6023,-5809,6024,130]],"id":"NAM","properties":{"ct":[17.22,-22.14]}},{"type":"MultiPolygon","arcs":[[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]]],"id":"NCL","properties":{"ct":[165.5,-21.33]}},{"type":"Polygon","arcs":[[-5977,6025]],"id":"SSD","properties":{"ct":[35.08,4.76]}},{"type":"Polygon","arcs":[[-5763,-5768,-6005,-5878,-5994,6026,6027]],"id":"NER","properties":{"ct":[9.4,17.42]}},{"type":"Polygon","arcs":[[-5760,-6028,6028,-5850,8]],"id":"NGA","properties":{"ct":[8.1,9.59]}},{"type":"Polygon","arcs":[[-5866,734,-5930,728]],"id":"NIC","properties":{"ct":[-85.03,12.84]}},{"type":"Polygon","arcs":[[3703]],"id":"NIU","properties":{"ct":[-169.86,-19.05]}},{"type":"MultiPolygon","arcs":[[[-5759,58,59,60,61,62,63,64,65,-5869]],[[56,-5758]]],"id":"NLD","properties":{"ct":[5.68,52.25]}},{"type":"MultiPolygon","arcs":[[[3704]],[[3705]],[[3706]],[[3707]]],"id":"NZL","properties":{"ct":[170.47,-44]}},{"type":"MultiPolygon","arcs":[[[-5900,6029,83,6030]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]]],"id":"NOR","properties":{"ct":[14.03,64.25]}},{"type":"Polygon","arcs":[[-5838,-5953]],"id":"NPL","properties":{"ct":[83.94,28.26]}},{"type":"Polygon","arcs":[[3717]],"id":"NRU","properties":{"ct":[166.92,-0.53]}},{"type":"MultiPolygon","arcs":[[[-5724,115,6031,6032]],[[-5726,113]]],"id":"OMN","properties":{"ct":[56.1,20.58]}},{"type":"Polygon","arcs":[[-5708,6033,-5951,105,-5955]],"id":"PAK","properties":{"ct":[68.81,29.38]}},{"type":"MultiPolygon","arcs":[[[-5865,730,731,732]],[[3718]],[[-5861,148,149]]],"id":"PAN","properties":{"ct":[-81.25,8.45]}},{"type":"Polygon","arcs":[[3719]],"id":"PCN","properties":{"ct":[-128.32,-24.38]}},{"type":"Polygon","arcs":[[-5791,-5824,145,6034,-5859,-5796]],"id":"PER","properties":{"ct":[-74.35,-9.18]}},{"type":"Polygon","arcs":[[3720]],"id":"REU","properties":{"ct":[55.54,-21.13]}},{"type":"Polygon","arcs":[[-5778,6035,-5938,6036,-5863,6037,35]],"id":"ROU","properties":{"ct":[24.98,45.84]}},{"type":"MultiPolygon","arcs":[[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]]],"id":"PHL","properties":{"ct":[121.41,15.96]}},{"type":"MultiPolygon","arcs":[[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]]],"id":"PLW","properties":{"ct":[134.57,7.51]}},{"type":"Polygon","arcs":[[-5754,-5855,6038,6039]],"id":"RWA","properties":{"ct":[29.91,-2]}},{"type":"Polygon","arcs":[[-5725,-6033,6040,117,-5965,-5947,-5984,109,6041,111]],"id":"SAU","properties":{"ct":[44.55,24.13]}},{"type":"MultiPolygon","arcs":[[[-5944,3192]],[[3746]],[[3747]],[[3748]],[[3749]],[[3750]],[[3751]],[[3752]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]]],"id":"PNG","properties":{"ct":[144.25,-6.6]}},{"type":"Polygon","arcs":[[-5770,-5871,69,6042,-5996,-5784,6043,6044]],"id":"POL","properties":{"ct":[19.41,52.13]}},{"type":"Polygon","arcs":[[3758]],"id":"PRI","properties":{"ct":[-66.48,18.22]}},{"type":"Polygon","arcs":[[-5831,89,-5985,91]],"id":"PRK","properties":{"ct":[127.17,40.14]}},{"type":"Polygon","arcs":[[-5727,-5793,-5795]],"id":"PRY","properties":{"ct":[-58.39,-23.24]}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"PYF","properties":{"ct":[-149.39,-17.69]}},{"type":"Polygon","arcs":[[-6042,110]],"id":"QAT","properties":{"ct":[51.2,25.29]}},{"type":"Polygon","arcs":[[-5811,6045,-5992,-5884,-6006,-5968,122,-5890,-5898,6046]],"id":"SDN","properties":{"ct":[29.95,16.01]}},{"type":"Polygon","arcs":[[-5919,-5922,17,-5921,19,-6017,-6003]],"id":"SEN","properties":{"ct":[-14.46,14.36]}},{"type":"Polygon","arcs":[[99,-6021]],"id":"SGP","properties":{"ct":[103.78,1.38]}},{"type":"MultiPolygon","arcs":[[[3814]],[[3815]],[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]]],"id":"SGS","properties":{"ct":[-36.67,-54.38]}},{"type":"MultiPolygon","arcs":[[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]]],"id":"SJM","properties":{"ct":[15.84,78.61]}},{"type":"MultiPolygon","arcs":[[[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]],[[3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]]],"id":"SLB","properties":{"ct":[160.14,-9.62]}},{"type":"MultiPolygon","arcs":[[[-5917,-5990,14]],[[3903]]],"id":"SLE","properties":{"ct":[-11.77,8.58]}},{"type":"Polygon","arcs":[[-5926,-5931,736]],"id":"SLV","properties":{"ct":[-88.87,13.74]}},{"type":"MultiPolygon","arcs":[[[3904]],[[3905]],[[3906]]],"id":"TUV","properties":{"ct":[179.18,-8.5]}},{"type":"Polygon","arcs":[[-5872,125,-5973,-5895]],"id":"SOM","properties":{"ct":[45.87,6.06]}},{"type":"MultiPolygon","arcs":[[[3907]],[[3908]]],"id":"SPM","properties":{"ct":[-56.33,46.94]}},{"type":"Polygon","arcs":[[-5718,-6008,-5779,-5934,-5939,-6036,-5777,-6002]],"id":"SRB","properties":{"ct":[20.8,44.04]}},{"type":"Polygon","arcs":[[-5812,-6047,-5897,-5978,-6026,-5976,6047,-5853]],"id":"SSD","properties":{"ct":[30.31,7.31]}},{"type":"MultiPolygon","arcs":[[[3909]],[[3910]]],"id":"STP","properties":{"ct":[6.61,0.24]}},{"type":"Polygon","arcs":[[-5800,-5929,153,-5907]],"id":"SUR","properties":{"ct":[-55.9,4.13]}},{"type":"Polygon","arcs":[[-5738,-5771,-6045,6048,-5936]],"id":"SVK","properties":{"ct":[19.48,48.71]}},{"type":"Polygon","arcs":[[-5740,-5940,-5932,44,-5964]],"id":"SVN","properties":{"ct":[14.82,46.11]}},{"type":"Polygon","arcs":[[3911]],"id":"TWN","properties":{"ct":[120.97,23.75]}},{"type":"MultiPolygon","arcs":[[[-5899,82,-6030]],[[3912]],[[3913]]],"id":"SWE","properties":{"ct":[16.73,62.85]}},{"type":"Polygon","arcs":[[-6011,6049]],"id":"SWZ","properties":{"ct":[31.5,-26.56]}},{"type":"Polygon","arcs":[[-5794,1677]],"id":"SXM","properties":{"ct":[-63.07,18.04]}},{"type":"MultiPolygon","arcs":[[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]]],"id":"SYC","properties":{"ct":[55.47,-4.69]}},{"type":"Polygon","arcs":[[-5949,-5967,-5960,-5989,30,6050]],"id":"SYR","properties":{"ct":[38.5,35.02]}},{"type":"MultiPolygon","arcs":[[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[3930]]],"id":"TCA","properties":{"ct":[-72.25,21.8]}},{"type":"Polygon","arcs":[[-5817,-5851,-6029,-6027,-5993,-6046]],"id":"TCD","properties":{"ct":[18.66,15.36]}},{"type":"Polygon","arcs":[[-5761,10,-5912,-5764]],"id":"TGO","properties":{"ct":[0.98,8.53]}},{"type":"Polygon","arcs":[[-5982,97,-6022,101,-6007,-5987]],"id":"THA","properties":{"ct":[101.02,15.16]}},{"type":"Polygon","arcs":[[-5712,6051,-5979,-5825]],"id":"TJK","properties":{"ct":[71.01,38.52]}},{"type":"MultiPolygon","arcs":[[[3931]],[[3932]],[[3933]]],"id":"TKL","properties":{"ct":[-171.82,-9.17]}},{"type":"Polygon","arcs":[[-5710,-5957,4330,-5971,6052]],"id":"TKM","properties":{"ct":[59.39,39.12]}},{"type":"MultiPolygon","arcs":[[[-5943,3147]],[[-5942,3145]]],"id":"TLS","properties":{"ct":[125.91,-8.81]}},{"type":"MultiPolygon","arcs":[[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]]],"id":"TON","properties":{"ct":[-175.2,-21.17]}},{"type":"MultiPolygon","arcs":[[[3950]],[[3951]]],"id":"TTO","properties":{"ct":[-61.28,10.41]}},{"type":"MultiPolygon","arcs":[[[-5876,24,-5991]],[[3952]]],"id":"TUN","properties":{"ct":[9.57,34.11]}},{"type":"MultiPolygon","arcs":[[[-5735,-5751,-5956,-5950,-6051,31,-5910]],[[-5774,37,-5924]]],"id":"TUR","properties":{"ct":[35.45,38.99]}},{"type":"MultiPolygon","arcs":[[[-5752,-6040,6053,-5974,127,-6016,-6019,6054,-5856]],[[3953]],[[3954]],[[3955]]],"id":"TZA","properties":{"ct":[34.79,-6.26]}},{"type":"Polygon","arcs":[[-5854,-6048,-5975,-6054,-6039]],"id":"UGA","properties":{"ct":[32.39,1.28]}},{"type":"Polygon","arcs":[[-5783,6055,34,-6038,-5864,-6037,-5937,-6049,-6044]],"id":"UKR","properties":{"ct":[31.4,49.01]}},{"type":"Polygon","arcs":[[-5729,-5802,280]],"id":"URY","properties":{"ct":[-56.02,-32.8]}},{"type":"Polygon","arcs":[[-5711,-6053,-5970,-5980,-6052]],"id":"UZB","properties":{"ct":[63.12,41.78]}},{"type":"MultiPolygon","arcs":[[[3977]],[[3978]],[[3979]],[[3980]]],"id":"VCT","properties":{"ct":[-61.19,13.25]}},{"type":"MultiPolygon","arcs":[[[-5798,-5862,151,-5928]],[[3981]]],"id":"VEN","properties":{"ct":[-66.17,7.13]}},{"type":"MultiPolygon","arcs":[[[3982]],[[3983]],[[3984]],[[3985]]],"id":"VGB","properties":{"ct":[-64.63,18.42]}},{"type":"MultiPolygon","arcs":[[[3986]],[[3987]],[[3988]]],"id":"VIR","properties":{"ct":[-64.77,17.73]}},{"type":"MultiPolygon","arcs":[[[-5833,95,-5981,-5986]],[[3989]]],"id":"VNM","properties":{"ct":[106.31,16.63]}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"VUT","properties":{"ct":[166.86,-15.22]}},{"type":"Polygon","arcs":[[-5707,-5842,-6020,-5840,-5952,-6034]],"id":"XJK","properties":{"ct":[75.8,34.54]}},{"type":"MultiPolygon","arcs":[[[-6032,116,-6041]],[[4020]]],"id":"YEM","properties":{"ct":[47.55,15.94]}},{"type":"Polygon","arcs":[[-5808,6056,-6012,-6050,-6010,129,-6025],[-5995]],"id":"ZAF","properties":{"ct":[25.09,-28.99]}},{"type":"Polygon","arcs":[[-5713,-5857,-6055,-6018,-6014,6057,-6023]],"id":"ZMB","properties":{"ct":[27.79,-13.46]}},{"type":"Polygon","arcs":[[-5810,-6024,-6058,-6013,-6057]],"id":"ZWE","properties":{"ct":[29.88,-18.99]}},{"type":"Polygon","arcs":[[-5886,27,-5958]],"id":"PSE","properties":{"ct":[34.38,31.41]}},{"type":"Polygon","arcs":[[-5962,-5966]],"id":"PSE","properties":{"ct":[35.26,31.94]}},{"type":"Polygon","arcs":[[4021]],"id":"NFK","properties":{"ct":[167.95,-29.03]}},{"type":"Polygon","arcs":[[4022]],"id":"BES","properties":{"ct":[-68.26,12.16]}},{"type":"Polygon","arcs":[[4023]],"id":"BES","properties":{"ct":[-62.97,17.5]}},{"type":"Polygon","arcs":[[4024]],"id":"BES","properties":{"ct":[-63.23,17.64]}},{"type":"MultiPolygon","arcs":[[[-5860,-6035,146]],[[4025]]],"id":"ECU","properties":{"ct":[-78.37,-1.46]}},{"type":"MultiPolygon","arcs":[[[4026]],[[4027]],[[4028]],[[4029]],[[4030]]],"id":"ECU","properties":{"ct":[-91.18,-0.55]}},{"type":"MultiPolygon","arcs":[[[-5722,-5906,49,-5913,51,6058,53,-5902]],[[4031]],[[4032]],[[4033]]],"id":"ESP","properties":{"ct":[-3.55,40.39]}},{"type":"MultiPolygon","arcs":[[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]]],"id":"ESP","properties":{"ct":[-16.53,28.28]}},{"type":"MultiPolygon","arcs":[[[4043]],[[4044]],[[4045]]],"id":"MUS","properties":{"ct":[57.57,-20.28]}},{"type":"Polygon","arcs":[[4046]],"id":"MUS","properties":{"ct":[72.44,-7.35]}},{"type":"Polygon","arcs":[[-6059,52]],"id":"PRT","properties":{"ct":[-7.96,39.7]}},{"type":"MultiPolygon","arcs":[[[4047]],[[4048]],[[4049]]],"id":"PRT","properties":{"ct":[-17,32.75]}},{"type":"MultiPolygon","arcs":[[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]]],"id":"PRT","properties":{"ct":[-25.48,37.79]}},{"type":"MultiPolygon","arcs":[[[4059]],[[4060]],[[4061]],[[4062]],[[4063]]],"id":"SHN","properties":{"ct":[-5.7,-15.96]}},{"type":"MultiPolygon","arcs":[[[3961,3962,3963,3956,3957,3958,3959,3960]],[[3967,3964,3965,3966]],[[3969,3968]],[[3973,3970,3971,3972]],[[3975,3976,3974]],[[4064]],[[4065,4066,4067]],[[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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,-6001,-741,-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,-5819]],[[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]],[[841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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,-5818]]],"id":"USA","properties":{"ct":[-99.11,39.52]}},{"type":"MultiPolygon","arcs":[[[6059,4193,6060]],[[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]]],"id":"ATA","properties":{"ct":[21.35,-80.47]}},{"type":"MultiPolygon","arcs":[[[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]],[[4268,4266,6061]],[[4269]],[[4270]],[[4281,4279,6062,4274,4271,6063]],[[4283,4282,6064,4278,4275,6065]]],"id":"FJI","properties":{"ct":[177.95,-17.84]}},{"type":"MultiPolygon","arcs":[[[4284]],[[4285]],[[4286]],[[4287]],[[-6043,70,71,72,73,74,-5998,4336,-4335,-5997]],[[4288]],[[4289]],[[4290]],[[4293]],[[4294]],[[4295]],[[4296]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4291,4292,6066,87,88,-5830,-6009,-5828,-5972,-4333,4333,-5748,-5911,33,-6056,-5787,-6000,-5893,-79,79,80,-5901,-6031,84,6067,6068]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]],[[4327,4326,6069,4297,6070]]],"id":"RUS","properties":{"ct":[99.15,61.66]}}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[-296],[-3707],[-648,-647,-646,-645,-644,-643],[-3705],[-3680],[-4217],[-4198],[-4219],[-642,-641,-640,-639],[-615,-614,-613,-612],[-638,-637,-636,-635,-634,-633,-632,-631,-630,-629,-628,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616],[-4220],[-4044],[-4045],[-300],[-292],[-291],[-299],[-295],[-287],[-293],[-294],[-288],[-289],[-290],[-298],[-297],[-3141],[-3921],[-3923],[-3922],[-3915],[-3920],[-3956],[-3955],[-3954],[-3910],[-301],[-3023],[-3022],[-3021],[-3911],[-3262],[-3721],[-3288],[-3286],[-3278],[-3272],[-3275],[-3916],[-3686],[-3687],[-4047],[-3273],[-4046],[-3268],[-3271],[-3919],[-3917],[-3918],[-3296],[-3294],[-3300],[-3299],[-3308],[-3310],[-3309],[-3307],[-3306],[-3305],[-3304],[-3303],[-3302],[-3301],[-3293],[-3291],[-3292],[-3282],[-3281],[-3280],[-3279],[-3283],[-3284],[-3285],[-3287],[-3289],[-3290],[-3277],[-3276],[-3297],[-3295],[-3298],[-3177],[-3188],[-3189],[-3202],[-3211],[-3264],[-3265],[-3266],[-3267],[-3164],[-3179],[-3178],[-3175],[-3269],[-3270],[-3274],[-3190],[-3196],[-3182],[-3206],[-3195],[-3200],[-3199],[-3198],[-3187],[-3204],[-3201],[-1699,-1698,-1697,-1696,-1695,-1694],[-3203],[-3185],[-3194],[-3197],[-3149],[-3153],[-3158],[-3160],[-3163],[-3162],[-3157],[-3166],[-3176],[-3167],[-3172],[-3174],[-3180],[-3183],[-3181],[-3186],[-3152],[-3161],[-668],[-3151],[-3150],[-3156],[-3173],[-3155],[-3154],[-3143],[-3171],[-3168],[-3169],[-3144],[-3170],[-3165],[-3694],[-3690],[-3691],[-3689],[-654,-653],[-657,-656,-655],[-3708],[-4022],[-652,-651,-650,-649],[-2993],[-2994],[-674,-673,-672,-671,-670],[-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593,-592,-591,-590,-589,-588,-587,-586,-585,-584,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-524,-523,-522,-521,-520,-519,-518,-517,-516,-515,-514,-513,-512,-511,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,-488,-487,-486,-485,-484,-483,-482,-481,-480,-479,-478,-477,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,-404,-403,-402,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-389,-388,-387,-386,-385,-384,-383,-382,-381,-380,-379,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304],[-669],[-3044],[-3148,-3147,-3146,-3145],[-3993],[-3995],[-3992],[-3994],[-3695],[-3696],[-3697],[-3698],[-3699],[-3700],[-3701],[-3703],[-3702],[-3692],[-3693],[-3688],[-4263],[-4243],[-4265],[-4254],[-4245],[-4244],[-4242],[-4240],[-4238],[-4237],[-4247],[-4249],[-4251],[-4234],[-4228],[-4231],[-3854],[-4271],[-4017],[-4018],[-4019],[-4020],[-4252],[-3905],[-3907],[-4256],[-4257],[-4266],[-4262],[-4258],[-4259],[-4264],[-3867],[-3865],[-3873],[-3879],[-3861],[-3864],[-3862],[-3855],[-3860],[-3856],[-3858],[-3859],[-3850],[-3863],[-3857],[-3851],[-4014],[-4016],[-4015],[-3853],[-3852],[-3874],[-3849],[-3878],[-3876],[-3875],[-3869],[-3872],[-3868],[-3866],[-3871],[-3870],[-3999],[-4000],[-4002],[-4001],[-4007],[-4005],[-4004],[-4008],[-4003],[-4006],[-4009],[-4010],[-4011],[-3991],[-4012],[-4013],[-3889],[-3886],[-3882],[-3883],[-3884],[-3877],[-3751],[-3747],[-3748],[-3750],[-3749],[-3997],[-3998],[-3996],[-667,-666,-665,-664,-663],[-662,-661,-660,-659,-658],[-3191],[-3184],[-3754],[-3753],[-3193,-3192],[-3755],[-3756],[-3159],[-3903],[-3902],[-3901],[-3752],[-3900],[-3899],[-3888],[-3891],[-3906],[-3887],[-3881],[-3880],[-3885],[-3890],[-3898],[-3892],[-3896],[-3895],[-3894],[-3893],[-3897],[-3718],[-3757],[-3758],[-3501],[-3499],[-3496],[-3495],[-3504],[-3506],[-3247],[-3246],[-3245],[-3238],[-3244],[-3243],[-3242],[-3241],[-3240],[-3239],[-3489],[-3491],[-3487],[-3502],[-3498],[-3500],[-3485],[-3488],[-3490],[-3493],[-3494],[-3497],[-3505],[-3507],[-3508],[-3503],[-3476],[-3098],[-3099],[-3100],[-3475],[-3248],[-3250],[-3478],[-3484],[-3483],[-3486],[-3477],[-3251],[-3492],[-3482],[-3252],[-3559],[-3557],[-3549],[-3554],[-3541],[-3533],[-3529],[-3530],[-3531],[-3525],[-3536],[-3524],[-3523],[-3481],[-3480],[-3479],[-3581],[-3577],[-3579],[-3580],[-3562],[-3570],[-3571],[-3574],[-3576],[-3578],[-3573],[-3575],[-3586],[-3593],[-3550],[-3553],[-3657],[-3654],[-3655],[-3656],[-3585],[-3572],[-3565],[-3582],[-3566],[-3567],[-3568],[-3564],[-3588],[-3587],[-3589],[-3590],[-3634],[-3632],[-3636],[-3635],[-3631],[-3647],[-3646],[-3648],[-3645],[-3633],[-3616],[-3620],[-3621],[-3651],[-3652],[-3653],[-3623],[-3622],[-3625],[-3624],[-3600],[-3603],[-3643],[-3638],[-3649],[-3650],[-3644],[-3641],[-3640],[-3642],[-3639],[-3637],[-3609],[-3611],[-3612],[-3613],[-3608],[-3619],[-3617],[-3618],[-3615],[-3614],[-3610],[-3626],[-3629],[-3628],[-3627],[-3630],[-3583],[-3584],[-3591],[-3569],[-3594],[-3595],[-3596],[-3597],[-3598],[-3607],[-3604],[-3606],[-3605],[-3602],[-3601],[-3599],[-3544],[-3543],[-3552],[-3555],[-3556],[-3558],[-3542],[-3546],[-3551],[-3547],[-3548],[-3545],[-3560],[-3561],[-3563],[-3592],[-3534],[-3538],[-3535],[-3522],[-3528],[-3540],[-3527],[-3539],[-3514],[-3474],[-3518],[-3526],[-3520],[-3516],[-3519],[-3537],[-3664],[-3663],[-3662],[-3661],[-3660],[-3659],[-3658],[-3512],[-3513],[-3517],[-3510],[-3511],[-3509],[-3515],[-3521],[-3532],[-3742],[-3210],[-3097],[-3101],[-3102],[-3103],[-3104],[-3672],[-3671],[-3207],[-3676],[-3673],[-3670],[-3675],[-3674],[-3665],[-3723],[-3724],[-3729],[-3732],[-3728],[-3727],[-3725],[-3726],[-3735],[-3731],[-3730],[-3746],[-3741],[-3743],[-3744],[-3745],[-3734],[-3737],[-3736],[-3261],[-3733],[-3019],[-3669],[-3216],[-3990],[-3215],[-3214],[-3668],[-3213],[-3208],[-3205],[-3209],[-3258],[-675],[-3227],[-3228],[-3229],[-3912],[-3020],[-3224],[-3226],[-3225],[-3223],[-3222],[-3739],[-3740],[-3722],[-3738],[-4305],[-4306],[-4310],[-3230],[-4290],[-4289],[-4326],[-4286],[-4308],[-4288],[-4287],[-4295],[-4285],[-4086],[-4325],[-3221],[-4319],[-4317],[-4315],[-4324],[-4311],[-4304],[-4322],[-4291],[-4301],[-4302],[-4313],[-4314],[-4323],[-4307],[-4312],[-4309],[-4297],[-3843],[-3717],[-3716],[-4296],[-3831],[-3833],[-3841],[-3840],[-3834],[-4303],[-4294],[-4318],[-4321],[-4320],[-4316],[-3832],[-3835],[-3838],[-3842],[-3844],[-3845],[-3846],[-3847],[-3848],[-3830],[-3836],[-3837],[-3828],[-3827],[-3825],[-3829],[-3054],[-3055],[-3052],[-3051],[-3049],[-3913],[-3053],[-3715],[-3713],[-3712],[-3709],[-3710],[-3711],[-3839],[-3714],[-4033],[-4032],[-3059],[-134],[-3060],[-139],[-142],[-133],[-137],[-135],[-136],[-138],[-141],[-140],[-143],[-3914],[-3123],[-3117],[-3119],[-3122],[-3118],[-3048],[-3121],[-3953],[-3666],[-3667],[-3120],[-3218],[-3096],[-3219],[-4034],[-3316],[-3314],[-3311],[-3312],[-3313],[-3315],[-3260],[-3317],[-3469],[-3468],[-3470],[-3471],[-3217],[-4021],[-3231],[-676],[-3354],[-3349],[-3348],[-3347],[-3341],[-3340],[-3335],[-3332],[-3331],[-3334],[-3319],[-3320],[-3326],[-3318],[-3327],[-3321],[-3381],[-3382],[-3375],[-3378],[-3377],[-3371],[-3263],[-3368],[-3369],[-3370],[-3345],[-3365],[-3359],[-3342],[-3367],[-3353],[-3426],[-3430],[-3425],[-3429],[-3431],[-3437],[-3432],[-3439],[-3435],[-3436],[-3433],[-3467],[-3463],[-3459],[-3457],[-3464],[-3399],[-3405],[-3404],[-3409],[-3411],[-3407],[-3408],[-3417],[-3416],[-3415],[-3412],[-3420],[-3418],[-3422],[-3423],[-3427],[-3386],[-3387],[-3388],[-3389],[-3383],[-3391],[-3392],[-3393],[-3394],[-3395],[-3384],[-3385],[-3390],[-3403],[-3406],[-3400],[-3441],[-3442],[-3419],[-3421],[-3424],[-3428],[-3414],[-3438],[-3413],[-3410],[-3402],[-3434],[-3401],[-3398],[-3397],[-3396],[-3458],[-3456],[-3453],[-3455],[-3454],[-3452],[-3451],[-3450],[-3448],[-3444],[-3445],[-3446],[-3443],[-3447],[-3449],[-3440],[-3362],[-3361],[-3363],[-3366],[-3372],[-3364],[-3373],[-3374],[-3466],[-3376],[-3465],[-3379],[-3380],[-3460],[-3462],[-3461],[-3333],[-3338],[-3336],[-3337],[-3346],[-3344],[-3339],[-3351],[-3352],[-3350],[-3343],[-3355],[-3357],[-3356],[-3358],[-3360],[-3034],[-3035],[-3031],[-3030],[-3032],[-3033],[-3058],[-3904],[-3116],[-3323],[-3322],[-3324],[-3325],[-3328],[-3329],[-3330],[-3041],[-3045],[-3043],[-3046],[-3047],[-3719],[-3951],[-1],[-4023],[-3982],[-1692],[-3037],[-3952],[-3039],[-3036],[-3038],[-303],[-3930],[-3929],[-3924],[-3931],[-3925],[-679],[-3927],[-3928],[-3142],[-3926],[-3057,-3056],[-3220],[-3042],[-678],[-3040],[-3684],[-3257],[-3989],[-3987],[-3988],[-3679],[-3986],[-132],[-1678,-1677],[-3759],[-3984],[-3985],[-3983],[-3256],[-4024],[-4025],[-3115],[-3113],[-302],[-1676],[-680],[-3125],[-3685],[-1693],[-3114],[-3050],[-3979],[-3124],[-3980],[-3981],[-3978],[-3259],[-710],[-711],[-724],[-725],[-722],[-721],[-718],[-719],[-720],[-717],[-714],[-715],[-716],[-723],[-713],[-712],[-689],[-695],[-694],[-699],[-691],[-697],[-690],[-701],[-702],[-703],[-700],[-698],[-677],[-705],[-707],[-706],[-4057],[-709],[-681],[-682],[-684],[-683],[-4065],[-708],[-688],[-687],[-685],[-686],[-693],[-704],[-696],[-692],[-4035],[-4037],[-4036],[-4039],[-4042],[-4040],[-4041],[-4052],[-4043],[-4053],[-4058],[-4059],[-4054],[-4056],[-4055],[-4051],[-3063],[-3112],[-3105],[-3106],[-3682],[-3108,-3107],[-3109],[-3110],[-3111],[-3127],[-3681],[-4048],[-4049],[-4050],[-3683],[-4038],[-3137],[-3138],[-3212],[-3826],[-3061],[-3062],[-3065],[-3066],[-3067],[-3068],[-3069],[-3070],[-3071],[-3072],[-3073],[-3064],[-2916,-2915,-2914,-2913,-2912,-2911,-2910,-2909],[-2945,-2944,-2943,-2942,-2941,-2940],[-2254,-2253,-2252,-2251,-2250,-2249,-2248,-2247,-2246,-2245,-2244,-2243,-2242,-2241,-2240,-2239,-2238,-2237,-2236,-2235,-2234,-2233,-2232,-2231,-2230,-2229,-2228,-2227,-2226,-2225,-2224,-2223,-2222,-2221,-2220,-2219,-2218,-2217,-2216,-2215,-2214,-2213,-2212,-2211,-2210,-2209,-2208,-2207,-2206,-2205,-2204,-2203,-2202,-2201,-2200,-2199,-2198,-2197,-2196,-2195,-2194,-2193,-2192,-2191,-2190,-2189,-2188,-2187,-2186,-2185,-2184,-2183,-2182,-2181,-2180,-2179,-2178,-2177,-2176,-2175,-2174,-2173,-2172,-2171,-2170,-2169,-2168,-2167,-2166,-2165,-2164,-2163,-2162,-2161,-2160,-2159,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-2151,-2150,-2149,-2148,-2147,-2146,-2145,-2144,-2143,-2142,-2141,-2140,-2139,-2138,-2137,-2136,-2135,-2134,-2133,-2132,-2131,-2130,-2129,-2128,-2127,-2126,-2125,-2124,-2123,-2122,-2121,-2120,-2119,-2118,-2117,-2116,-2115,-2114,-2113,-2112,-2111,-2110,-2109,-2108,-2107,-2106,-2105,-2104,-2103,-2102,-2101,-2100,-2099,-2098,-2097,-2096,-2095,-2094,-2093,-2092,-2091,-2090,-2089,-2088,-2087,-2086,-2085,-2084,-2083,-2082,-2081,-2080,-2079,-2078,-2077,-2076,-2075,-2074,-2073,-2072,-2071],[-3129],[-3130],[-2412,-2411,-2410,-2409,-2408,-2407,-2406,-2405,-2404,-2403,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,-2391,-2390,-2389,-2388,-2387,-2386,-2385,-2384,-2383,-2382,-2381,-2380,-2379,-2378,-2377,-2376,-2375,-2374,-2373,-2372,-2371,-2370,-2369,-2368,-2367,-2366,-2365,-2364,-2363,-2362,-2361,-2360,-2359,-2358,-2357,-2356,-2355,-2354,-2353,-2352],[-3140],[-3139],[-3128],[-3131],[-3132],[-3133],[-3134],[-3135],[-3136],[-3126],[-2782,-2781,-2780,-2779],[-2948,-2947,-2946],[-2829,-2828,-2827,-2826,-2825,-2824],[-2442,-2441,-2440,-2439,-2438,-2437,-2436,-2435,-2434,-2433,-2432,-2431,-2430,-2429,-2428,-2427,-2426,-2425,-2424,-2423,-2422,-2421,-2420,-2419,-2418,-2417,-2416,-2415,-2414,-2413],[-2880,-2879,-2878,-2877,-2876,-2875,-2874,-2873,-2872,-2871],[-2969,-2968,-2967,-2966],[-2888,-2887,-2886,-2885],[-2903,-2902,-2901,-2900,-2899,-2898],[-2925,-2924,-2923,-2922,-2921],[-1996,-1995,-1994,-1993,-1992,-1991,-1990,-1989,-1988,-1987,-1986,-1985,-1984,-1983,-1982,-1981,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1958,-1957,-1956,-1955,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-1947,-1946,-1945,-1944,-1943,-1942,-1941,-1940,-1939,-1938,-1937,-1936,-1935,-1934,-1933,-1932,-1931,-1930,-1929,-1928,-1927,-1926,-1925,-1924,-1923,-1922,-1921,-1920,-1919,-1918,-1917,-1916,-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,-1907,-1906,-1905,-1904,-1903,-1902,-1901,-1900,-1899,-1898,-1897,-1896,-1895,-1894,-1893,-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,-1883,-1882,-1881,-1880,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,-1870,-1869,-1868,-1867,-1866,-1865,-1864,-1863,-1862,-1861,-1860,-1859,-1858,-1857,-1856,-1855,-1854,-1853,-1852,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,-1843,-1842,-1841,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,-1832,-1831,-1830,-1829,-1828,-1827,-1826,-1825,-1824,-1823,-1822,-1821,-1820,-1819,-1818,-1817,-1816,-1815,-1814,-1813,-1812,-1811,-1810,-1809,-1808,-1807,-1806,-1805,-1804,-1803,-1802,-1801,-1800,-1799,-1798,-1797,-1796,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-1787,-1786,-1785,-1784,-1783,-1782,-1781,-1780,-1779,-1778,-1777,-1776,-1775,-1774,-1773,-1772,-1771,-1770,-1769,-1768,-1767,-1766,-1765,-1764,-1763,-1762,-1761,-1760,-1759,-1758,-1757,-1756,-1755,-1754,-1753,-1752,-1751,-1750,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-1742,-1741,-1740,-1739,-1738,-1737,-1736,-1735,-1734,-1733,-1732,-1731,-1730,-1729,-1728,-1727,-1726,-1725,-1724,-1723,-1722,-1721,-1720,-1719,-1718,-1717,-1716,-1715,-1714,-1713,-1712,-1711,-1710,-1709,-1708,-1707,-1706,-1705,-1704,-1703,-1702,-1701,-1700],[-2867,-2866,-2865],[-2959,-2958,-2957],[-2734,-2733,-2732,-2731,-2730,-2729,-2728,-2727,-2726],[-2974],[-2973,-2972,-2971,-2970],[-2753,-2752,-2751,-2750,-2749,-2748],[-2954,-2953,-2952,-2951,-2950,-2949],[-4068,-4067,-4066],[-2956,-2955],[-2864,-2863,-2862,-2861,-2860,-2859,-2858],[-2992,-2991,-2990],[-2857,-2856,-2855,-2854,-2853,-2852,-2851,-2850,-2849,-2848,-2847,-2846],[-2611,-2610,-2609,-2608,-2607,-2606,-2605,-2604,-2603,-2602,-2601,-2600,-2599,-2598,-2597,-2596,-2595,-2594,-2593,-2592,-2591,-2590,-2589,-2588,-2587,-2586,-2585],[-2796,-2795,-2794,-2793,-2792,-2791,-2790,-2789,-2788,-2787,-2786,-2785,-2784,-2783],[-2832,-2831,-2830],[-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,-2314,-2313,-2312,-2311,-2310,-2309,-2308,-2307,-2306,-2305,-2304,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-2296,-2295,-2294,-2293,-2292,-2291,-2290,-2289,-2288,-2287,-2286,-2285,-2284,-2283,-2282,-2281,-2280,-2279,-2278,-2277,-2276,-2275,-2274,-2273,-2272,-2271,-2270,-2269,-2268,-2267,-2266,-2265,-2264,-2263,-2262,-2261,-2260,-2259,-2258,-2257,-2256,-2255],[-2760,-2759,-2758,-2757,-2756,-2755,-2754],[-2747,-2746,-2745,-2744,-2743,-2742,-2741,-2740,-2739,-2738,-2737,-2736,-2735],[-2962,-2961,-2960],[-3908],[-3909],[-2933,-2932,-2931,-2930,-2929,-2928],[-2981,-2980,-2979,-2978,-2977],[-2845,-2844,-2843,-2842,-2841,-2840],[-2807,-2806,-2805,-2804,-2803,-2802,-2801,-2800,-2799,-2798,-2797],[-2765,-2764,-2763,-2762,-2761],[-2927,-2926],[-2650,-2649,-2648,-2647,-2646,-2645,-2644,-2643,-2642,-2641,-2640,-2639,-2638,-2637,-2636,-2635,-2634,-2633,-2632,-2631,-2630,-2629,-2628,-2627],[-2626,-2625,-2624,-2623,-2622,-2621,-2620,-2619,-2618,-2617,-2616,-2615,-2614,-2613,-2612],[-2703,-2702,-2701,-2700,-2699,-2698,-2697,-2696,-2695,-2694,-2693,-2692,-2691,-2690,-2689,-2688,-2687,-2686,-2685,-2684],[-4154,-4153,-4152,-4151,-4150],[-4132,-4131,-4130,-4129,-4128,-4127],[-2778,-2777,-2776,-2775,-2774,-2773,-2772,-2771,-2770,-2769,-2768,-2767,-2766],[-2070,-2069,-2068,-2067,-2066,-2065,-2064,-2063,-2062,-2061,-2060,-2059,-2058,-2057,-2056,-2055,-2054,-2053,-2052,-2051,-2050,-2049,-2048,-2047,-2046,-2045,-2044,-2043,-2042,-2041,-2040,-2039,-2038,-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2030,-2029,-2028,-2027,-2026,-2025,-2024,-2023,-2022,-2021,-2020,-2019,-2018,-2017,-2016,-2015,-2014,-2013,-2012,-2011,-2010,-2009,-2008,-2007,-2006,-2005,-2004,-2003,-2002,-2001,-2000,-1999,-1998,-1997],[-4126,-4125,-4124,-4123,-4122,-4121,-4120,-4119,-4118,-4117,-4116,-4115,-4114,-4113,-4112,-4111,-4110],[-2823,-2822,-2821,-2820,-2819,-2818,-2817,-2816,-2815],[-2584,-2583,-2582,-2581,-2580,-2579,-2578,-2577,-2576,-2575,-2574,-2573,-2572,-2571,-2570,-2569,-2568,-2567,-2566,-2565,-2564,-2563,-2562,-2561,-2560,-2559,-2558,-2557],[-2986,-2985,-2984,-2983,-2982],[-2987],[-2989,-2988],[-2908,-2907,-2906,-2905,-2904],[-2870,-2869,-2868],[-2683,-2682,-2681,-2680,-2679,-2678,-2677,-2676,-2675,-2674,-2673,-2672,-2671,-2670,-2669,-2668,-2667,-2666,-2665,-2664,-2663,-2662,-2661,-2660,-2659,-2658,-2657,-2656,-2655,-2654,-2653,-2652,-2651],[-2487,-2486,-2485,-2484,-2483,-2482,-2481,-2480,-2479,-2478,-2477,-2476,-2475,-2474,-2473,-2472,-2471,-2470,-2469,-2468,-2467,-2466,-2465,-2464,-2463,-2462,-2461,-2460,-2459,-2458,-2457,-2456,-2455,-2454,-2453,-2452,-2451,-2450,-2449,-2448,-2447,-2446,-2445,-2444,-2443],[-2556,-2555,-2554,-2553,-2552,-2551,-2550,-2549,-2548,-2547,-2546,-2545,-2544,-2543,-2542,-2541,-2540,-2539,-2538,-2537,-2536,-2535,-2534,-2533,-2532,-2531,-2530,-2529,-2528,-2527,-2526,-2525,-2524,-2523,-2522,-2521,-2520,-2519,-2518,-2517,-2516,-2515,-2514,-2513,-2512,-2511,-2510,-2509,-2508,-2507,-2506,-2505,-2504,-2503,-2502,-2501,-2500,-2499,-2498,-2497,-2496,-2495,-2494,-2493,-2492,-2491,-2490,-2489,-2488],[-2725,-2724,-2723,-2722,-2721,-2720,-2719,-2718,-2717,-2716,-2715,-2714,-2713,-2712,-2711,-2710,-2709,-2708,-2707,-2706,-2705,-2704],[-2814,-2813,-2812,-2811,-2810,-2809,-2808],[-2839,-2838,-2837,-2836,-2835,-2834,-2833],[-2939,-2938,-2937,-2936,-2935,-2934],[-2920,-2919,-2918,-2917],[-2976,-2975],[-2884,-2883,-2882,-2881],[-2894,-2893,-2892,-2891,-2890,-2889],[-2897,-2896,-2895],[-4076,-4075,-4074],[-4077],[-4085,-4084,-4083,-4082,-4081,-4080,-4079,-4078],[-4149,-4148,-4147,-4146,-4145,-4144,-4143,-4142,-4141,-4140,-4139],[-4138,-4137,-4136,-4135,-4134,-4133],[-4162,-4161,-4160,-4159,-4158,-4157,-4156,-4155],[-4171,-4170,-4169,-4168],[-4092,-4091,-4090,-4089,-4088,-4087],[-4192,-4191,-4190,-4189,-4188,-4187,-4186,-4185],[-4184,-4183],[-4182,-4181,-4180,-4179,-4178,-4177,-4176,-4175,-4174,-4173,-4172],[-4167,-4166,-4165,-4164,-4163],[-4100,-4099,-4098,-4097,-4096,-4095,-4094,-4093],[-4109,-4108,-4107,-4106,-4105,-4104,-4103,-4102,-4101],[-2351,-2350,-2349,-2348,-2347,-2346,-2345,-2344,-2343,-2342,-2341,-2340,-2339,-2338,-2337,-2336,-2335,-2334,-2333,-2332,-2331,-2330,-2329,-2328,-2327,-2326,-2325,-2324],[-2965,-2964,-2963],[-3234],[-3254],[-3233],[-3249],[-3255],[-3237],[-3253],[-3968,-3967,-3966,-3965],[-3970,-3969],[-3974,-3973,-3972,-3971],[-1675,1672,1673,-1674,-1673,-1672,-1671,-1670,-1669,-1668,-1667,-1666,-1665,-1664,-1663,-1662,-1661,-1660,-1659,-1658,-1657,-1656,-1655,-1654,-1653,-1652,-1651,-1650,-1649,-1648,-1647,-1646,-1645,-1644,-1643,-1642,-1641,-1640,-1639,-1638,-1637,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,-1623,-1622,-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-1611,-1610,-1609,-1608,-1607,-1606,-1605,-1604,-1603,-1602,-1601,-1600,-1599,-1598,-1597,-1596,-1595,-1594,-1593,-1592,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,-1580,-1579,-1578,-1577,-1576,-1575,-1574,-1573,-1572,-1571,-1570,-1569,-1568,-1567,-1566,-1565,-1564,-1563,-1562,-1561,-1560,-1559,-1558,-1557,-1556,-1555,-1554,-1553,-1552,-1551,-1550,-1549,-1548,-1547,-1546,-1545,-1544,-1543,-1542,-1541,-1540,-1539,-1538,-1537,-1536,-1535,-1534,-1533,-1532,-1531,-1530,-1529,-1528,-1527,-1526,-1525,-1524,-1523,-1522,-1521,-1520,-1519,-1518,-1517,-1516,-1515,-1514,-1513,-1512,-1511,-1510,-1509,-1508,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1494,-1493,-1492,-1491,-1490,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,-1478,-1477,-1476,-1475,-1474,-1473,-1472,-1471,-1470,-1469,-1468,-1467,-1466,-1465,-1464,-1463,-1462,-1461,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,-1447,-1446,-1445,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-1432,-1431,-1430,-1429,-1428,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1416,-1415,-1414,-1413,-1412,-1411,-1410,-1409,-1408,-1407,-1406,-1405,-1404,-1403,-1402,-1401,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1393,-1392,-1391,-1390,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1373,-1372,-1371,-1370,-1369,-1368,-1367,-1366,-1365,-1364,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-1347,-1346,-1345,-1344,-1343,-1342,-1341,-1340,-1339,-1338,-1337,-1336,-1335,-1334,-1333,-1332,-1331,-1330,-1329,-1328,-1327,-1326,-1325,-1324,-1323,-1322,-1321,-1320,-1319,-1318,-1317,-1316,-1315,-1314,-1313,-1312,-1311,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-1303,-1302,-1301,-1300,-1299,-1298,-1297,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,-1263,-1262,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,-1246,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-1202,-1201,-1200,-1199,-1198,-1197,-1196,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,-1156,-1155,-1154,-1153,-1152,-1151,-1150,-1149,-1148,-1147,-1146,-1145,-1144,-1143,-1142,-1141,-1140,-1139,-1138,-1137,-1136,-1135,-1134,-1133,-1132,-1131,-1130,-1129,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,-1120,-1119,-1118,-1117,-1116,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,-1085,-1084,-1083,-1082,-1081,-1080,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,-1070,-1069,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052,-1051,-1050,-1049,1047,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,-1034,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1017,-1016,-1015,-1014,-1013,-1012,-1011,-1010,-1009,-1008,-1007,-1006,-1005,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-958,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,-919,-918,-917,-916,-915,-914,-913,-912,-911,-910,-909,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,-886,-885,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,-860,-859,-858,-857,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-817,-816,-815,-814,-813,-812,-811,-810,-809,-808,-807,-806,-805,-804,-803,-802,-801,-800,-799,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-746,-745,-744,-743,-742,739,740,-741,-740,-739,-738,-737,-736,-735,-734,-733,-732,-731,-730,-729,-728,-727,-726],[-3473],[-3977,-3976,-3975],[-3472],[-3964,-3963,-3962,-3961,-3960,-3959,-3958,-3957],[-4073,-4072,-4071,-4070,-4069],[-3808],[-3809],[-3805],[-3807],[-3801],[-3802],[-3804],[-3806],[-3810],[-3811],[-3232],[-3812],[-3813],[-3236],[-3235],[-3814],[-3790],[-3774],[-3773],[-3777],[-3796],[-3769],[-3770],[-3771],[-3772],[-3797],[-3775],[-3794],[-3793],[-3792],[-3798],[-3799],[-3789],[-3795],[-3788],[-3785],[-3782],[-3786],[-3779],[-3787],[-3791],[-3776],[-3784],[-3760],[-3778],[-3780],[-3783],[-3781],[-4253],[-4255],[-4261],[-285],[-4260],[-286],[-3949],[-3677],[-3678],[-3934],[-4270],[-3950],[-3932],[-3933],[-3803],[-3800],[-3937],[-3938],[-3941],[-4229],[-4232],[-3943],[-4235],[-4233],[-4241],[-4236],[-4230],[-3944],[-4250],[-4239],[-4248],[-4246],[-3704],[-3947],[-3761],[-3948],[-3024],[-3025],[-3027],[-3028],[-3029],[-3942],[-3945],[-3946],[-3940],[-3939],[-3936],[-3935],[-1681,-1680,-1679],[-4026],[-4027],[-3026],[-3720],[-3768],[-4028],[-4029],[-4030],[-4031],[-3765],[-3764],[-3767],[-3766],[-3763],[-3762],[-3012],[-3010],[-3009],[-3014],[-3015],[-3016],[-3017],[-3018],[-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144],[-4064],[-4063],[-4062],[-4060],[-1691,-1690,-1689],[-1688,-1687,-1686,-1685],[-1684,-1683,-1682],[-3007],[-3008],[-3005],[-3004],[-3000],[-3001],[-2999],[-2998],[-3003],[-3002],[-2995],[-2996],[-284,-283],[-2997],[-3013],[-3011],[-3080],[-3083],[-3082],[-3085],[-3088],[-3090],[-3089],[-3091],[-3095],[-3092],[-3093],[-3086],[-3094],[-3084],[-3087],[-3006],[-3822],[-3823],[-3817],[-3818],[-3819],[-3820],[-4061],[-3821],[-3081],[-282],[-3079],[-3078],[-3074],[-3075],[-3076],[-3077],[-4213],[-4212],[-4207],[-4221],[-4222],[-4218],[-4223],[-4224],[-4226],[-4227],[-4215],[-4214],[-4225],[-3816],[-3824],[-3815],[-4203],[-4202],[-4201],[-4206],[-4199],[-4205],[-4196],[-3706],[-4204],[-4211],[-4200],[-4210],[-4197],[-4209],[-4208],[-4216],[-6064,-4272,-4275,-6063,-4280,-4282],[-6066,-4276,-4279,-6065,-4283,-4284],[-4267,-4269,-6062],[-6071,-4298,-6070,-4327,-4328],[-6061,-4194,-4193,6071],[-6068,-85,-84,-83,-82,80,-81,-80,78,-79,-78,-77,-76,74,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,88,-89,-88,-6067,-4293,6072]],[[4334,-4337,-4336,-4335]],[[-4334,4332,-4333,-4332,-4331,-4330,-4329]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[6073]]},{"type":"Polygon","arcs":[[6074,6075,6076]]},{"type":"Polygon","arcs":[[6077,6078,6079]]},{"type":"Polygon","arcs":[[6080,6081,6082,6083,6084,6085,6086,6087,6088],[6089],[6090]]},{"type":"Polygon","arcs":[[6091]]},{"type":"Polygon","arcs":[[6092],[6093],[6094]]},{"type":"Polygon","arcs":[[6095,6096],[6097],[6098],[6099],[6100]]},{"type":"Polygon","arcs":[[6101,6102,6103],[6104]]},{"type":"Polygon","arcs":[[6105,6106],[6107],[6108]]},{"type":"Polygon","arcs":[[6109,6110],[6111]]},{"type":"Polygon","arcs":[[6112,6113,6114,6115],[6116],[6117],[6118],[6119]]},{"type":"Polygon","arcs":[[6120]]},{"type":"Polygon","arcs":[[-6081,6121,6122]]},{"type":"Polygon","arcs":[[6123]]},{"type":"Polygon","arcs":[[6124]]},{"type":"Polygon","arcs":[[6125,6126]]},{"type":"Polygon","arcs":[[6127,6128]]},{"type":"Polygon","arcs":[[6129]]},{"type":"Polygon","arcs":[[6130,6131]]},{"type":"Polygon","arcs":[[6132,6133],[6134]]},{"type":"Polygon","arcs":[[6135],[6136]]},{"type":"Polygon","arcs":[[6137,6138,6139,6140,6141,6142,6143,6144,6145,6146],[6147],[6148],[6149],[6150]]},{"type":"Polygon","arcs":[[6151,6152,6153,6154,6155,6156,6157,6158],[6159],[6160],[6161],[6162],[6163],[6164],[6165],[6166],[6167]]},{"type":"Polygon","arcs":[[6168,6169,-6147,6170,-6152],[6171],[6172],[6173],[6174],[6175],[6176],[6177],[6178],[6179]]},{"type":"Polygon","arcs":[[6180]]},{"type":"Polygon","arcs":[[6181]]},{"type":"Polygon","arcs":[[6182,6183,6184]]},{"type":"Polygon","arcs":[[6185]]},{"type":"MultiPolygon","arcs":[[[6186,62,6187]],[[59,6188]],[[64,6189]],[[6190]],[[6191]]]},{"type":"Polygon","arcs":[[6192,6193]]},{"type":"Polygon","arcs":[[6194]]},{"type":"Polygon","arcs":[[6195],[6196]]},{"type":"Polygon","arcs":[[6197],[6198],[6199]]},{"type":"Polygon","arcs":[[6200]]},{"type":"Polygon","arcs":[[6201]]},{"type":"Polygon","arcs":[[6202]]},{"type":"Polygon","arcs":[[6203]]},{"type":"Polygon","arcs":[[6204]]},{"type":"Polygon","arcs":[[6205]]},{"type":"Polygon","arcs":[[6206,6207]]},{"type":"Polygon","arcs":[[6208]]},{"type":"Polygon","arcs":[[6209]]},{"type":"Polygon","arcs":[[6210]]},{"type":"Polygon","arcs":[[6211,6212]]},{"type":"Polygon","arcs":[[6213]]},{"type":"MultiPolygon","arcs":[[[6214]],[[71,6215]]]},{"type":"MultiPolygon","arcs":[[[6216]],[[6217]],[[6218]]]},{"type":"Polygon","arcs":[[6219]]},{"type":"Polygon","arcs":[[6220]]},{"type":"Polygon","arcs":[[6221]]},{"type":"Polygon","arcs":[[6222]]},{"type":"Polygon","arcs":[[6223]]},{"type":"Polygon","arcs":[[6224]]},{"type":"Polygon","arcs":[[6225]]},{"type":"Polygon","arcs":[[6226]]},{"type":"Polygon","arcs":[[6227]]},{"type":"Polygon","arcs":[[6228]]},{"type":"Polygon","arcs":[[6229]]},{"type":"Polygon","arcs":[[6230]]},{"type":"Polygon","arcs":[[6231]]},{"type":"Polygon","arcs":[[6232]]},{"type":"Polygon","arcs":[[6233,6234]]},{"type":"Polygon","arcs":[[6235,6236]]},{"type":"Polygon","arcs":[[6237]]},{"type":"Polygon","arcs":[[6238]]},{"type":"Polygon","arcs":[[6239]]},{"type":"Polygon","arcs":[[6240]]},{"type":"Polygon","arcs":[[6241,6242]]},{"type":"Polygon","arcs":[[6243]]},{"type":"Polygon","arcs":[[6244]]},{"type":"Polygon","arcs":[[6245]]},{"type":"Polygon","arcs":[[6246]]},{"type":"Polygon","arcs":[[6247]]},{"type":"Polygon","arcs":[[6248]]},{"type":"Polygon","arcs":[[6249]]},{"type":"Polygon","arcs":[[6250]]},{"type":"Polygon","arcs":[[6251]]},{"type":"Polygon","arcs":[[6252]]},{"type":"Polygon","arcs":[[6253]]},{"type":"Polygon","arcs":[[6254]]},{"type":"Polygon","arcs":[[6255]]},{"type":"Polygon","arcs":[[6256]]},{"type":"Polygon","arcs":[[-6236,6257]]},{"type":"Polygon","arcs":[[6258]]},{"type":"Polygon","arcs":[[6259,6260]]},{"type":"Polygon","arcs":[[6261]]},{"type":"Polygon","arcs":[[6262]]},{"type":"Polygon","arcs":[[6263]]},{"type":"Polygon","arcs":[[6264,6265]]},{"type":"Polygon","arcs":[[6266,6267,6268]]},{"type":"Polygon","arcs":[[-6267,6269,6270]]},{"type":"Polygon","arcs":[[6271]]},{"type":"Polygon","arcs":[[6272]]},{"type":"Polygon","arcs":[[6273]]},{"type":"Polygon","arcs":[[6274]]},{"type":"Polygon","arcs":[[6275]]},{"type":"Polygon","arcs":[[6276]]},{"type":"Polygon","arcs":[[6277]]},{"type":"Polygon","arcs":[[6278]]},{"type":"Polygon","arcs":[[6279]]},{"type":"Polygon","arcs":[[6280]]},{"type":"Polygon","arcs":[[6281]]},{"type":"Polygon","arcs":[[6282]]},{"type":"Polygon","arcs":[[6283]]},{"type":"Polygon","arcs":[[6284]]},{"type":"Polygon","arcs":[[6285]]},{"type":"Polygon","arcs":[[6286]]},{"type":"Polygon","arcs":[[6287]]},{"type":"Polygon","arcs":[[6288]]},{"type":"Polygon","arcs":[[6289]]},{"type":"Polygon","arcs":[[6290]]},{"type":"Polygon","arcs":[[6291]]},{"type":"Polygon","arcs":[[6292]]},{"type":"Polygon","arcs":[[6293]]},{"type":"Polygon","arcs":[[6294]]},{"type":"Polygon","arcs":[[6295]]},{"type":"Polygon","arcs":[[6296]]},{"type":"Polygon","arcs":[[6297]]},{"type":"Polygon","arcs":[[6298]]},{"type":"Polygon","arcs":[[6299]]},{"type":"Polygon","arcs":[[6300]]},{"type":"Polygon","arcs":[[6301]]},{"type":"Polygon","arcs":[[6302]]},{"type":"Polygon","arcs":[[6303]]},{"type":"Polygon","arcs":[[6304]]},{"type":"Polygon","arcs":[[6305]]},{"type":"Polygon","arcs":[[6306,6307]]},{"type":"Polygon","arcs":[[6308]]},{"type":"Polygon","arcs":[[6309]]},{"type":"Polygon","arcs":[[6310]]},{"type":"Polygon","arcs":[[6311]]},{"type":"Polygon","arcs":[[6312]]},{"type":"Polygon","arcs":[[6313]]},{"type":"Polygon","arcs":[[6314,6315]]},{"type":"Polygon","arcs":[[6316]]},{"type":"Polygon","arcs":[[6317]]},{"type":"Polygon","arcs":[[6318]]},{"type":"Polygon","arcs":[[6319]]},{"type":"Polygon","arcs":[[6320]]},{"type":"Polygon","arcs":[[6321]]},{"type":"Polygon","arcs":[[6322]]},{"type":"Polygon","arcs":[[6323]]},{"type":"Polygon","arcs":[[6324]]},{"type":"Polygon","arcs":[[6325]]},{"type":"Polygon","arcs":[[6326]]},{"type":"Polygon","arcs":[[6327]]},{"type":"Polygon","arcs":[[6328]]},{"type":"Polygon","arcs":[[6329]]},{"type":"Polygon","arcs":[[6330]]},{"type":"Polygon","arcs":[[6331]]},{"type":"Polygon","arcs":[[6332]]},{"type":"Polygon","arcs":[[6333]]},{"type":"Polygon","arcs":[[6334]]},{"type":"Polygon","arcs":[[6335]]},{"type":"Polygon","arcs":[[6336]]},{"type":"Polygon","arcs":[[6337]]},{"type":"Polygon","arcs":[[6338]]},{"type":"Polygon","arcs":[[6339]]},{"type":"Polygon","arcs":[[6340]]},{"type":"Polygon","arcs":[[6341]]},{"type":"Polygon","arcs":[[6342]]},{"type":"Polygon","arcs":[[6343]]},{"type":"Polygon","arcs":[[6344]]},{"type":"Polygon","arcs":[[6345]]},{"type":"Polygon","arcs":[[6346]]},{"type":"Polygon","arcs":[[6347]]},{"type":"Polygon","arcs":[[6348]]},{"type":"Polygon","arcs":[[6349]]},{"type":"Polygon","arcs":[[6350]]},{"type":"Polygon","arcs":[[6351]]},{"type":"Polygon","arcs":[[6352]]},{"type":"Polygon","arcs":[[6353]]},{"type":"Polygon","arcs":[[6354]]},{"type":"Polygon","arcs":[[6355]]},{"type":"Polygon","arcs":[[6356]]},{"type":"Polygon","arcs":[[6357]]},{"type":"Polygon","arcs":[[6358]]},{"type":"Polygon","arcs":[[6359]]},{"type":"Polygon","arcs":[[6360]]},{"type":"Polygon","arcs":[[6361]]},{"type":"Polygon","arcs":[[6362]]},{"type":"Polygon","arcs":[[6363]]},{"type":"Polygon","arcs":[[6364]]},{"type":"Polygon","arcs":[[6365]]},{"type":"Polygon","arcs":[[6366]]},{"type":"Polygon","arcs":[[6367]]},{"type":"Polygon","arcs":[[6368]]},{"type":"Polygon","arcs":[[6369]]},{"type":"Polygon","arcs":[[6370]]},{"type":"Polygon","arcs":[[6371]]},{"type":"Polygon","arcs":[[6372]]},{"type":"Polygon","arcs":[[6373]]},{"type":"Polygon","arcs":[[6374]]},{"type":"Polygon","arcs":[[6375]]},{"type":"Polygon","arcs":[[6376]]},{"type":"Polygon","arcs":[[6377]]},{"type":"Polygon","arcs":[[6378]]},{"type":"Polygon","arcs":[[6379]]},{"type":"Polygon","arcs":[[6380]]},{"type":"Polygon","arcs":[[6381]]},{"type":"Polygon","arcs":[[6382]]},{"type":"Polygon","arcs":[[6383]]},{"type":"Polygon","arcs":[[6384]]},{"type":"Polygon","arcs":[[6385]]},{"type":"Polygon","arcs":[[6386]]},{"type":"Polygon","arcs":[[6387]]},{"type":"Polygon","arcs":[[6388]]},{"type":"Polygon","arcs":[[6389]]},{"type":"Polygon","arcs":[[6390]]},{"type":"Polygon","arcs":[[6391]]},{"type":"Polygon","arcs":[[6392]]},{"type":"Polygon","arcs":[[6393]]},{"type":"Polygon","arcs":[[6394]]},{"type":"Polygon","arcs":[[6395]]},{"type":"Polygon","arcs":[[6396]]},{"type":"Polygon","arcs":[[6397]]},{"type":"Polygon","arcs":[[6398]]},{"type":"Polygon","arcs":[[6399]]},{"type":"Polygon","arcs":[[6400]]},{"type":"Polygon","arcs":[[6401]]},{"type":"Polygon","arcs":[[6402]]},{"type":"Polygon","arcs":[[6403]]},{"type":"Polygon","arcs":[[6404]]},{"type":"Polygon","arcs":[[6405]]},{"type":"Polygon","arcs":[[6406]]},{"type":"Polygon","arcs":[[6407]]},{"type":"Polygon","arcs":[[6408]]},{"type":"Polygon","arcs":[[6409]]},{"type":"Polygon","arcs":[[6410]]},{"type":"Polygon","arcs":[[6411]]},{"type":"Polygon","arcs":[[6412]]},{"type":"Polygon","arcs":[[6413]]},{"type":"Polygon","arcs":[[6414]]},{"type":"Polygon","arcs":[[6415]]},{"type":"Polygon","arcs":[[6416]]},{"type":"Polygon","arcs":[[6417]]},{"type":"Polygon","arcs":[[6418]]},{"type":"Polygon","arcs":[[6419]]},{"type":"Polygon","arcs":[[6420,6421]]},{"type":"Polygon","arcs":[[6422,6423]]},{"type":"Polygon","arcs":[[6424,6425]]},{"type":"Polygon","arcs":[[6426,6427]]},{"type":"Polygon","arcs":[[6428,6429]]},{"type":"Polygon","arcs":[[6430,6431]]},{"type":"Polygon","arcs":[[6432,6433]]},{"type":"Polygon","arcs":[[6434]]},{"type":"Polygon","arcs":[[6435]]},{"type":"Polygon","arcs":[[6436,6437]]},{"type":"Polygon","arcs":[[6438]]},{"type":"Polygon","arcs":[[6439]]},{"type":"Polygon","arcs":[[6440]]},{"type":"Polygon","arcs":[[6441,6442]]},{"type":"Polygon","arcs":[[6443]]},{"type":"Polygon","arcs":[[6444]]},{"type":"Polygon","arcs":[[6445]]},{"type":"Polygon","arcs":[[6446]]},{"type":"Polygon","arcs":[[6447]]},{"type":"Polygon","arcs":[[6448,6449]]},{"type":"MultiPolygon","arcs":[[[6450]],[[731,6451]],[[6452]]]},{"type":"Polygon","arcs":[[6453,6454]]},{"type":"Polygon","arcs":[[6455,6456]]},{"type":"Polygon","arcs":[[6457,6458]]},{"type":"Polygon","arcs":[[6459,6460]]},{"type":"Polygon","arcs":[[6461]]},{"type":"Polygon","arcs":[[6462]]},{"type":"Polygon","arcs":[[6463,6464]]},{"type":"Polygon","arcs":[[6465,6466]]},{"type":"Polygon","arcs":[[6467,6468]]},{"type":"Polygon","arcs":[[6469]]},{"type":"Polygon","arcs":[[6470,6471]]},{"type":"Polygon","arcs":[[6472]]},{"type":"Polygon","arcs":[[6473]]},{"type":"Polygon","arcs":[[6474,6475],[6476]]},{"type":"Polygon","arcs":[[6477]]},{"type":"Polygon","arcs":[[6478]]},{"type":"Polygon","arcs":[[6479]]},{"type":"Polygon","arcs":[[6480]]},{"type":"Polygon","arcs":[[6481]]},{"type":"Polygon","arcs":[[6482,6483]]},{"type":"Polygon","arcs":[[6484]]},{"type":"Polygon","arcs":[[6485]]},{"type":"Polygon","arcs":[[6486],[6487]]},{"type":"Polygon","arcs":[[6488]]},{"type":"Polygon","arcs":[[6489],[6490],[6491],[6492],[6493],[6494]]},{"type":"Polygon","arcs":[[6206,6207]]},{"type":"Polygon","arcs":[[6495]]},{"type":"Polygon","arcs":[[6496]]},{"type":"Polygon","arcs":[[6497]]},{"type":"Polygon","arcs":[[6498]]},{"type":"Polygon","arcs":[[6499,6500]]},{"type":"Polygon","arcs":[[6501]]},{"type":"Polygon","arcs":[[6502,6503]]},{"type":"Polygon","arcs":[[6314,6315]]},{"type":"Polygon","arcs":[[6504,6505]]},{"type":"Polygon","arcs":[[6506]]},{"type":"Polygon","arcs":[[6507,6508],[6509]]},{"type":"Polygon","arcs":[[6510]]},{"type":"Polygon","arcs":[[6511]]},{"type":"Polygon","arcs":[[6512]]},{"type":"Polygon","arcs":[[6513]]},{"type":"Polygon","arcs":[[6514]]},{"type":"Polygon","arcs":[[6426,6427]]},{"type":"Polygon","arcs":[[6515,6516]]},{"type":"Polygon","arcs":[[6430,6431]]},{"type":"Polygon","arcs":[[6432,6433]]},{"type":"Polygon","arcs":[[6517,6518]]},{"type":"Polygon","arcs":[[6519]]},{"type":"Polygon","arcs":[[6520]]},{"type":"Polygon","arcs":[[6474,6475],[6476]]},{"type":"Polygon","arcs":[[6521,6522]]},{"type":"Polygon","arcs":[[6523]]},{"type":"Polygon","arcs":[[6524]]},{"type":"Polygon","arcs":[[6525]]},{"type":"Polygon","arcs":[[6526,6527]]},{"type":"Polygon","arcs":[[6528,-6528]]},{"type":"Polygon","arcs":[[6529]]},{"type":"Polygon","arcs":[[6530]]},{"type":"Polygon","arcs":[[6531]]},{"type":"Polygon","arcs":[[6532]]},{"type":"Polygon","arcs":[[6533,6534]]},{"type":"Polygon","arcs":[[6535,-6535]]},{"type":"Polygon","arcs":[[6536]]},{"type":"Polygon","arcs":[[6537]]},{"type":"Polygon","arcs":[[6538]]},{"type":"Polygon","arcs":[[6539]]},{"type":"Polygon","arcs":[[6540]]},{"type":"Polygon","arcs":[[6541]]},{"type":"Polygon","arcs":[[6542]]},{"type":"Polygon","arcs":[[6543]]},{"type":"Polygon","arcs":[[6544,6545]]},{"type":"Polygon","arcs":[[6546,6547]]},{"type":"Polygon","arcs":[[6548]]},{"type":"Polygon","arcs":[[6549]]},{"type":"Polygon","arcs":[[6550,6551]]},{"type":"Polygon","arcs":[[6552,6553]]},{"type":"Polygon","arcs":[[6554]]},{"type":"Polygon","arcs":[[6555]]},{"type":"Polygon","arcs":[[6556]]},{"type":"Polygon","arcs":[[6557,6558,6559,6560]]},{"type":"Polygon","arcs":[[6561]]},{"type":"Polygon","arcs":[[6562,6563]]},{"type":"Polygon","arcs":[[6564,6565,6566]]},{"type":"Polygon","arcs":[[6567]]},{"type":"Polygon","arcs":[[6568]]},{"type":"Polygon","arcs":[[4479,6569]]},{"type":"Polygon","arcs":[[6570]]},{"type":"Polygon","arcs":[[6571]]},{"type":"Polygon","arcs":[[6572]]},{"type":"Polygon","arcs":[[6573]]},{"type":"Polygon","arcs":[[6574]]},{"type":"Polygon","arcs":[[6575,6576]]},{"type":"Polygon","arcs":[[6577]]},{"type":"Polygon","arcs":[[6578]]},{"type":"Polygon","arcs":[[6579]]},{"type":"Polygon","arcs":[[6580]]},{"type":"Polygon","arcs":[[6581]]},{"type":"Polygon","arcs":[[6582]]},{"type":"Polygon","arcs":[[6583]]},{"type":"Polygon","arcs":[[6584]]},{"type":"Polygon","arcs":[[6585]]},{"type":"Polygon","arcs":[[6586]]},{"type":"Polygon","arcs":[[6587]]},{"type":"Polygon","arcs":[[6588]]},{"type":"Polygon","arcs":[[6589]]},{"type":"Polygon","arcs":[[6590,6591]]},{"type":"Polygon","arcs":[[6592]]},{"type":"Polygon","arcs":[[6593]]},{"type":"Polygon","arcs":[[6594]]},{"type":"Polygon","arcs":[[6595]]},{"type":"Polygon","arcs":[[6596]]},{"type":"Polygon","arcs":[[6597]]},{"type":"Polygon","arcs":[[6598]]},{"type":"Polygon","arcs":[[6599]]},{"type":"Polygon","arcs":[[6600]]},{"type":"Polygon","arcs":[[6601]]},{"type":"Polygon","arcs":[[6602]]},{"type":"Polygon","arcs":[[6603,6604]]},{"type":"Polygon","arcs":[[6605]]},{"type":"Polygon","arcs":[[6606]]},{"type":"Polygon","arcs":[[6607]]},{"type":"Polygon","arcs":[[6608,6609]]},{"type":"Polygon","arcs":[[6610,6611]]},{"type":"Polygon","arcs":[[6612,6613]]},{"type":"Polygon","arcs":[[6614,6615]]},{"type":"Polygon","arcs":[[6616]]},{"type":"Polygon","arcs":[[6617]]},{"type":"Polygon","arcs":[[6618]]},{"type":"Polygon","arcs":[[6619]]},{"type":"Polygon","arcs":[[6620]]},{"type":"Polygon","arcs":[[6621]]},{"type":"Polygon","arcs":[[6622]]},{"type":"Polygon","arcs":[[6623]]},{"type":"Polygon","arcs":[[6624,6625]]},{"type":"Polygon","arcs":[[6626]]},{"type":"Polygon","arcs":[[6627,6628]]},{"type":"Polygon","arcs":[[6629]]},{"type":"Polygon","arcs":[[6630]]},{"type":"Polygon","arcs":[[6631]]},{"type":"Polygon","arcs":[[6632,6633]]},{"type":"Polygon","arcs":[[6634]]},{"type":"Polygon","arcs":[[6635]]},{"type":"Polygon","arcs":[[6636]]},{"type":"Polygon","arcs":[[6637]]},{"type":"Polygon","arcs":[[6638]]},{"type":"Polygon","arcs":[[6639]]},{"type":"Polygon","arcs":[[6640]]},{"type":"Polygon","arcs":[[6641]]},{"type":"Polygon","arcs":[[6642]]},{"type":"Polygon","arcs":[[6643]]},{"type":"Polygon","arcs":[[6644]]},{"type":"Polygon","arcs":[[6645]]},{"type":"Polygon","arcs":[[6646]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[4328,4329,4330,4331,4332,-4333,4333],[4334,4335,4336,-4335],[4291,4292,6066,87,88,-89,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,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,75,76,77,78,-79,79,80,-81,81,82,83,84,6067,6068]],[[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,270,271,272,273,274,275,276,277,278,279,280]],[[281]],[[282,283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[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,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,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,545,546,547,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,639,640,641]],[[642,643,644,645,646,647]],[[648,649,650,651]],[[652,653]],[[654,655,656]],[[657,658,659,660,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]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,-741,-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,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,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,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,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,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,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,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,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,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,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,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,1444,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,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,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,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,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,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,-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,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,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,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,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,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,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,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,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,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,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,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,2547,2548,2549,2550,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,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,2960,2961]],[[2962,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]],[[3013]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]],[[3023]],[[3024]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]],[[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]],[[3068]],[[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]],[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3135]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]],[[3144,3145,3146,3147]],[[3148]],[[3149]],[[3150]],[[3151]],[[3152]],[[3153]],[[3154]],[[3155]],[[3156]],[[3157]],[[3158]],[[3159]],[[3160]],[[3161]],[[3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[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]],[[3891]],[[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]],[[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]],[[3961,3962,3963,3956,3957,3958,3959,3960]],[[3967,3964,3965,3966]],[[3969,3968]],[[3973,3970,3971,3972]],[[3975,3976,3974]],[[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]],[[6059,4193,6060]],[[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]],[[4268,4266,6061]],[[4269]],[[4270]],[[4281,4279,6062,4274,4271,6063]],[[4283,4282,6064,4278,4275,6065]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4293]],[[4294]],[[4295]],[[4296]],[[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]],[[4327,4326,6069,4297,6070]]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[4337]},{"type":"LineString","arcs":[4338]},{"type":"LineString","arcs":[4339,4340]},{"type":"LineString","arcs":[4341]},{"type":"MultiLineString","arcs":[[4342],[4343]]},{"type":"MultiLineString","arcs":[[4344],[4345],[4346],[4347],[4348]]},{"type":"LineString","arcs":[4349]},{"type":"MultiLineString","arcs":[[4350],[4351]]},{"type":"MultiLineString","arcs":[[4352],[4353],[4354]]},{"type":"LineString","arcs":[4355]},{"type":"MultiLineString","arcs":[[4356],[4357]]},{"type":"MultiLineString","arcs":[[4358],[4359],[4360],[4361]]},{"type":"LineString","arcs":[4362]},{"type":"MultiLineString","arcs":[[4363],[4364],[4365]]},{"type":"LineString","arcs":[4366]},{"type":"MultiLineString","arcs":[[4367],[4368],[4369,4370],[4371],[4372]]},{"type":"MultiLineString","arcs":[[4373],[4374],[4375],[4376],[4377]]},{"type":"MultiLineString","arcs":[[4378],[4379,4380]]},{"type":"MultiLineString","arcs":[[4381,4382],[4383],[4384],[4385]]},{"type":"LineString","arcs":[4386]},{"type":"MultiLineString","arcs":[[4387],[4388],[4389],[4390]]},{"type":"LineString","arcs":[4391,4392]},{"type":"LineString","arcs":[4393]},{"type":"LineString","arcs":[4394]},{"type":"LineString","arcs":[4395]},{"type":"LineString","arcs":[4396]},{"type":"MultiLineString","arcs":[[4397],[4398],[4399],[4400,4401],[4402]]},{"type":"LineString","arcs":[4403]},{"type":"MultiLineString","arcs":[[4404],[4405]]},{"type":"LineString","arcs":[4406]},{"type":"MultiLineString","arcs":[[4407],[4408]]},{"type":"LineString","arcs":[4409]},{"type":"LineString","arcs":[4410]},{"type":"LineString","arcs":[4411]},{"type":"MultiLineString","arcs":[[4412],[4413],[4414,4415]]},{"type":"LineString","arcs":[4416]},{"type":"LineString","arcs":[4417]},{"type":"LineString","arcs":[4418]},{"type":"MultiLineString","arcs":[[4419],[4420,4421]]},{"type":"MultiLineString","arcs":[[4422],[4423],[4424],[4425],[4426]]},{"type":"LineString","arcs":[4427]},{"type":"MultiLineString","arcs":[[4428,4429,4430],[4431]]},{"type":"LineString","arcs":[4432]},{"type":"LineString","arcs":[4433]},{"type":"MultiLineString","arcs":[[4434,4435],[4436],[4437],[4438],[4439]]},{"type":"LineString","arcs":[4440]},{"type":"MultiLineString","arcs":[[4441],[4442]]},{"type":"LineString","arcs":[4443]},{"type":"LineString","arcs":[4444]},{"type":"MultiLineString","arcs":[[4445],[4446]]},{"type":"LineString","arcs":[4447]},{"type":"LineString","arcs":[4448,4449]},{"type":"LineString","arcs":[4450]},{"type":"MultiLineString","arcs":[[4451,4452,4453,4454],[4455],[4456]]},{"type":"MultiLineString","arcs":[[4457,4458,4459,4460,4461],[4462,4463,4464,4465],[4466,4467]]},{"type":"MultiLineString","arcs":[[4468],[4469]]},{"type":"LineString","arcs":[4470]},{"type":"MultiLineString","arcs":[[4471],[4472],[4473],[4474]]},{"type":"MultiLineString","arcs":[[4475,4476,4477],[4478]]},{"type":"MultiLineString","arcs":[[4479],[4480]]},{"type":"LineString","arcs":[4481]},{"type":"MultiLineString","arcs":[[4482,4483],[4484],[4485],[4486]]},{"type":"MultiLineString","arcs":[[4487],[4488]]},{"type":"MultiLineString","arcs":[[4489],[4490],[4491]]},{"type":"LineString","arcs":[4492]},{"type":"LineString","arcs":[4493]},{"type":"LineString","arcs":[4494]},{"type":"MultiLineString","arcs":[[4495],[4496],[4497],[4498]]},{"type":"LineString","arcs":[4499]},{"type":"LineString","arcs":[4500]},{"type":"MultiLineString","arcs":[[4501],[4502,4503]]},{"type":"LineString","arcs":[4504]},{"type":"LineString","arcs":[4505]},{"type":"MultiLineString","arcs":[[4506],[4507],[4508]]},{"type":"LineString","arcs":[4509]},{"type":"LineString","arcs":[4510,4511]},{"type":"LineString","arcs":[4512]},{"type":"MultiLineString","arcs":[[4513],[4514]]},{"type":"LineString","arcs":[4515]},{"type":"MultiLineString","arcs":[[4516],[4517],[4518]]},{"type":"MultiLineString","arcs":[[4519],[4520]]},{"type":"MultiLineString","arcs":[[4521],[4522]]},{"type":"MultiLineString","arcs":[[4523],[4524,4525]]},{"type":"LineString","arcs":[4526]},{"type":"MultiLineString","arcs":[[4527],[4528,4529],[4530],[4531]]},{"type":"LineString","arcs":[4532]},{"type":"LineString","arcs":[4533]},{"type":"LineString","arcs":[4534]},{"type":"MultiLineString","arcs":[[4535],[4536,4537]]},{"type":"LineString","arcs":[4538]},{"type":"MultiLineString","arcs":[[4539],[4540],[4541]]},{"type":"LineString","arcs":[4542]},{"type":"LineString","arcs":[4543]},{"type":"MultiLineString","arcs":[[4544],[4545,4546],[4547],[4548,4549],[4550],[4551],[4552,4553]]},{"type":"LineString","arcs":[4554]},{"type":"MultiLineString","arcs":[[4555],[4556]]},{"type":"MultiLineString","arcs":[[4557],[4558]]},{"type":"LineString","arcs":[4559]},{"type":"MultiLineString","arcs":[[4560,4561],[4562,4563],[4564]]},{"type":"MultiLineString","arcs":[[4565],[4566]]},{"type":"MultiLineString","arcs":[[4567],[4568]]},{"type":"MultiLineString","arcs":[[4569],[4570],[4571]]},{"type":"MultiLineString","arcs":[[4572],[4573],[4574],[4575],[4576],[4577],[4578],[4579],[4580],[4581],[4582,4583]]},{"type":"LineString","arcs":[4584,4585]},{"type":"LineString","arcs":[4586,4587]},{"type":"MultiLineString","arcs":[[4588],[4589]]},{"type":"MultiLineString","arcs":[[4590],[4591],[4592]]},{"type":"MultiLineString","arcs":[[4593],[4594],[4595],[4596],[4597],[4598]]},{"type":"LineString","arcs":[4599]},{"type":"LineString","arcs":[4600]},{"type":"LineString","arcs":[4601]},{"type":"LineString","arcs":[4602,4603,4604,4605,4606,4607]},{"type":"LineString","arcs":[4608]},{"type":"MultiLineString","arcs":[[4609,4610],[4611],[4612]]},{"type":"LineString","arcs":[4613]},{"type":"MultiLineString","arcs":[[4614],[4615,4616],[4617],[4618],[4619],[4620],[4621],[4622]]},{"type":"LineString","arcs":[4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668]},{"type":"LineString","arcs":[4669]},{"type":"LineString","arcs":[4670]},{"type":"MultiLineString","arcs":[[4671],[4672]]},{"type":"MultiLineString","arcs":[[4673],[4674],[4675]]},{"type":"LineString","arcs":[4676,4677,4678,4679,4680]},{"type":"MultiLineString","arcs":[[4681,4682],[4683],[4684],[4685],[4686]]},{"type":"LineString","arcs":[4687]},{"type":"LineString","arcs":[4688]},{"type":"LineString","arcs":[4689]},{"type":"LineString","arcs":[4690]},{"type":"LineString","arcs":[4691]},{"type":"LineString","arcs":[4692]},{"type":"LineString","arcs":[4693,4694,4695,4696,4697,4698]},{"type":"LineString","arcs":[4699]},{"type":"LineString","arcs":[4700]},{"type":"LineString","arcs":[4701]},{"type":"LineString","arcs":[4702,4703]},{"type":"MultiLineString","arcs":[[4704,4705],[4706],[4707]]},{"type":"LineString","arcs":[4708]},{"type":"LineString","arcs":[4709,4710]},{"type":"LineString","arcs":[4711,4712]},{"type":"LineString","arcs":[4713,4714]},{"type":"LineString","arcs":[4715]},{"type":"LineString","arcs":[4716]},{"type":"LineString","arcs":[4717]},{"type":"LineString","arcs":[4718]},{"type":"LineString","arcs":[4719]},{"type":"LineString","arcs":[4720]},{"type":"LineString","arcs":[4721,4722]},{"type":"MultiLineString","arcs":[[4723,4724],[4725],[4726]]},{"type":"MultiLineString","arcs":[[4727],[4728,4729],[4730,4731],[4732]]},{"type":"LineString","arcs":[4733,4734]},{"type":"MultiLineString","arcs":[[4735,4736],[4737]]},{"type":"LineString","arcs":[4738]},{"type":"MultiLineString","arcs":[[4739],[4740]]},{"type":"LineString","arcs":[4741]},{"type":"MultiLineString","arcs":[[4742],[4743]]},{"type":"LineString","arcs":[4744]},{"type":"MultiLineString","arcs":[[4745],[4746],[4747],[4748,4749],[4750,4751,4752],[4753,4754,4755,4756],[4757],[4758],[4759],[4760],[4761]]},{"type":"MultiLineString","arcs":[[4762,4763],[4764,4765,4766],[4767,4768],[4769],[4770],[4771],[4772]]},{"type":"MultiLineString","arcs":[[4773],[4774,4775,4776,4777,4778]]},{"type":"LineString","arcs":[4779]},{"type":"MultiLineString","arcs":[[4780],[4781],[4782,4783]]},{"type":"LineString","arcs":[4784]},{"type":"LineString","arcs":[4785]},{"type":"LineString","arcs":[4786]},{"type":"LineString","arcs":[4787]},{"type":"MultiLineString","arcs":[[4788,4789],[4790],[4791],[4792],[4793]]},{"type":"LineString","arcs":[4794]},{"type":"LineString","arcs":[4795,4796,4797,4798,4799,4800,4801,4802]},{"type":"LineString","arcs":[4803]},{"type":"LineString","arcs":[4804]},{"type":"LineString","arcs":[4805]},{"type":"LineString","arcs":[4806]},{"type":"MultiLineString","arcs":[[4807],[4808],[4809],[4810]]},{"type":"LineString","arcs":[4811]},{"type":"LineString","arcs":[4812]},{"type":"MultiLineString","arcs":[[4813],[4814]]},{"type":"MultiLineString","arcs":[[4815],[4816],[4817],[4818],[4819]]},{"type":"MultiLineString","arcs":[[4820],[4821],[4822]]},{"type":"MultiLineString","arcs":[[4823],[4824]]},{"type":"LineString","arcs":[4825]},{"type":"LineString","arcs":[4826]},{"type":"LineString","arcs":[4827]},{"type":"LineString","arcs":[4828]},{"type":"LineString","arcs":[4829]},{"type":"MultiLineString","arcs":[[4830],[4831]]},{"type":"MultiLineString","arcs":[[4832],[4833],[4834]]},{"type":"MultiLineString","arcs":[[4835],[4836]]},{"type":"LineString","arcs":[4837]},{"type":"MultiLineString","arcs":[[4838,4839,4840],[4841]]},{"type":"LineString","arcs":[4842]},{"type":"LineString","arcs":[4843]},{"type":"MultiLineString","arcs":[[4844],[4845]]},{"type":"LineString","arcs":[4846]},{"type":"LineString","arcs":[4847]},{"type":"LineString","arcs":[4848]},{"type":"MultiLineString","arcs":[[4849],[4850],[4851],[4852],[4853],[4854],[4855],[4856],[4857],[4858],[4859],[4860]]},{"type":"LineString","arcs":[4861]},{"type":"LineString","arcs":[4862]},{"type":"LineString","arcs":[4863,4864]},{"type":"MultiLineString","arcs":[[4865],[4866]]},{"type":"LineString","arcs":[4867]},{"type":"MultiLineString","arcs":[[4868],[4869],[4870]]},{"type":"MultiLineString","arcs":[[4871],[4872],[4873],[4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891],[4892,4893,4894],[4895],[4896]]},{"type":"LineString","arcs":[4897]},{"type":"LineString","arcs":[4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908]},{"type":"LineString","arcs":[4909]},{"type":"LineString","arcs":[4910]},{"type":"MultiLineString","arcs":[[4911],[4912]]},{"type":"LineString","arcs":[4913]},{"type":"LineString","arcs":[4914]},{"type":"LineString","arcs":[4915]},{"type":"LineString","arcs":[4916]},{"type":"LineString","arcs":[4917]},{"type":"MultiLineString","arcs":[[4918],[4919],[4920]]},{"type":"LineString","arcs":[4921]},{"type":"LineString","arcs":[4922]},{"type":"LineString","arcs":[4923]},{"type":"LineString","arcs":[4924]},{"type":"MultiLineString","arcs":[[4925],[4926]]},{"type":"LineString","arcs":[4927]},{"type":"MultiLineString","arcs":[[4928],[4929],[4930,4931]]},{"type":"MultiLineString","arcs":[[4932,4933],[4934],[4935],[4936]]},{"type":"MultiLineString","arcs":[[4937],[4938],[4939]]},{"type":"LineString","arcs":[4940]},{"type":"LineString","arcs":[4941]},{"type":"LineString","arcs":[4942]},{"type":"LineString","arcs":[4943]},{"type":"MultiLineString","arcs":[[4944],[4945]]},{"type":"MultiLineString","arcs":[[4946],[4947],[4948]]},{"type":"LineString","arcs":[4949]},{"type":"LineString","arcs":[4950]},{"type":"LineString","arcs":[4951]},{"type":"LineString","arcs":[4952]},{"type":"LineString","arcs":[4953]},{"type":"LineString","arcs":[4954]},{"type":"LineString","arcs":[4955]},{"type":"LineString","arcs":[4956,4957]},{"type":"LineString","arcs":[4958]},{"type":"LineString","arcs":[4959]},{"type":"MultiLineString","arcs":[[4960],[4961],[4962],[4963]]},{"type":"MultiLineString","arcs":[[4964],[4965]]},{"type":"LineString","arcs":[4966]},{"type":"MultiLineString","arcs":[[4967],[4968]]},{"type":"LineString","arcs":[4969]},{"type":"MultiLineString","arcs":[[4970],[4971]]},{"type":"LineString","arcs":[4972]},{"type":"LineString","arcs":[4973]},{"type":"LineString","arcs":[4974]},{"type":"LineString","arcs":[4975]},{"type":"LineString","arcs":[4976]},{"type":"MultiLineString","arcs":[[4977],[4978]]},{"type":"LineString","arcs":[4979]},{"type":"LineString","arcs":[4980]},{"type":"LineString","arcs":[4981]},{"type":"MultiLineString","arcs":[[4982],[4983],[4984],[4985,4986]]},{"type":"LineString","arcs":[4987]},{"type":"LineString","arcs":[4988]},{"type":"MultiLineString","arcs":[[4989],[4990,4991]]},{"type":"LineString","arcs":[4992]},{"type":"LineString","arcs":[4993]},{"type":"LineString","arcs":[4994]},{"type":"LineString","arcs":[4995]},{"type":"MultiLineString","arcs":[[4996],[4997]]},{"type":"LineString","arcs":[4998]},{"type":"MultiLineString","arcs":[[4999],[5000]]},{"type":"MultiLineString","arcs":[[5001,5002,5003],[5004],[5005],[5006],[5007]]},{"type":"LineString","arcs":[5008,5009,5010,5011]},{"type":"MultiLineString","arcs":[[5012],[5013]]},{"type":"LineString","arcs":[5014]},{"type":"MultiLineString","arcs":[[5015],[5016]]},{"type":"MultiLineString","arcs":[[5017],[5018]]},{"type":"LineString","arcs":[5019]},{"type":"LineString","arcs":[5020]},{"type":"LineString","arcs":[5021]},{"type":"LineString","arcs":[5022]},{"type":"LineString","arcs":[5023]},{"type":"LineString","arcs":[5024]},{"type":"LineString","arcs":[5025]},{"type":"MultiLineString","arcs":[[5026],[5027,5028],[5029],[5030],[5031],[5032]]},{"type":"LineString","arcs":[5033]},{"type":"LineString","arcs":[5034]},{"type":"LineString","arcs":[5035]},{"type":"MultiLineString","arcs":[[5036],[5037],[5038],[5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079],[5080],[5081,5082]]},{"type":"MultiLineString","arcs":[[5083,5084,5085,5086,5087,5088,5089,5090,5091],[5092,5093],[5094],[5095],[5096]]},{"type":"LineString","arcs":[5097]},{"type":"LineString","arcs":[5098]},{"type":"MultiLineString","arcs":[[5099,5100,5101,5102,5103,5104],[5105,5106,5107],[5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130]]},{"type":"LineString","arcs":[5131]},{"type":"LineString","arcs":[5132]},{"type":"LineString","arcs":[5133]},{"type":"LineString","arcs":[5134]},{"type":"MultiLineString","arcs":[[5135],[5136,5137]]},{"type":"LineString","arcs":[5138]},{"type":"MultiLineString","arcs":[[5139],[5140,5141,5142]]},{"type":"MultiLineString","arcs":[[5143],[5144],[5145],[5146],[5147]]},{"type":"LineString","arcs":[5148]},{"type":"LineString","arcs":[5149]},{"type":"LineString","arcs":[5150]},{"type":"MultiLineString","arcs":[[5151],[5152],[5153],[5154],[5155],[5156,5157],[5158,5159],[5160],[5161],[5162],[5163],[5164]]},{"type":"MultiLineString","arcs":[[5165,5166],[5167]]},{"type":"LineString","arcs":[5168]},{"type":"MultiLineString","arcs":[[5169],[5170]]},{"type":"LineString","arcs":[5171]},{"type":"LineString","arcs":[5172]},{"type":"MultiLineString","arcs":[[5173],[5174,5175]]},{"type":"LineString","arcs":[5176]},{"type":"MultiLineString","arcs":[[5177],[5178],[5179],[5180]]},{"type":"LineString","arcs":[5181]},{"type":"MultiLineString","arcs":[[5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192],[5193,5194,5195,5196,5197,5198,5199,5200]]},{"type":"MultiLineString","arcs":[[5201],[5202],[5203],[5204],[5205],[5206],[5207],[5208]]},{"type":"LineString","arcs":[5209,5210]},{"type":"LineString","arcs":[5211]},{"type":"LineString","arcs":[5212]},{"type":"MultiLineString","arcs":[[5213],[5214],[5215]]},{"type":"MultiLineString","arcs":[[5216],[5217]]},{"type":"MultiLineString","arcs":[[5218,5219],[5220],[5221],[5222],[5223]]},{"type":"MultiLineString","arcs":[[5224,5225,5226],[5227],[5228],[5229],[5230],[5231]]},{"type":"LineString","arcs":[5232,5233]},{"type":"LineString","arcs":[5234]},{"type":"LineString","arcs":[5235]},{"type":"LineString","arcs":[5236]},{"type":"MultiLineString","arcs":[[5237],[5238]]},{"type":"MultiLineString","arcs":[[5239,5240],[5241],[5242,5243,5244,5245,5246]]},{"type":"MultiLineString","arcs":[[5247],[5248],[5249],[5250],[5251,5252],[5253],[5254,5255,5256],[5257,5258,5259],[5260,5261,5262,5263],[5264,5265,5266,5267,5268],[5269,5270,5271,5272,5273,5274]]},{"type":"MultiLineString","arcs":[[5275],[5276]]},{"type":"MultiLineString","arcs":[[5277],[5278],[5279],[5280],[5281]]},{"type":"LineString","arcs":[5282]},{"type":"LineString","arcs":[5283]},{"type":"LineString","arcs":[5284]},{"type":"LineString","arcs":[5285]},{"type":"MultiLineString","arcs":[[5286],[5287]]},{"type":"LineString","arcs":[5288,5289,5290,5291,5292]},{"type":"LineString","arcs":[5293]},{"type":"LineString","arcs":[5294]},{"type":"LineString","arcs":[5295]},{"type":"LineString","arcs":[5296]},{"type":"MultiLineString","arcs":[[5297],[5298],[5299],[5300],[5301]]},{"type":"MultiLineString","arcs":[[5302,5303],[5304],[5305]]},{"type":"MultiLineString","arcs":[[5306],[5307],[5308]]},{"type":"LineString","arcs":[5309]},{"type":"LineString","arcs":[5310,5311]},{"type":"MultiLineString","arcs":[[5312],[5313],[5314]]},{"type":"MultiLineString","arcs":[[5315],[5316],[5317],[5318],[5319],[5320,5321,5322,5323,5324,5325],[5326],[5327],[5328]]},{"type":"LineString","arcs":[5329,5330]},{"type":"LineString","arcs":[5331]},{"type":"MultiLineString","arcs":[[5332],[5333],[5334]]},{"type":"LineString","arcs":[5335]},{"type":"MultiLineString","arcs":[[5336],[5337],[5338],[5339]]},{"type":"LineString","arcs":[5340,5341]},{"type":"MultiLineString","arcs":[[5342],[5343]]},{"type":"LineString","arcs":[5344,5345,5346]},{"type":"LineString","arcs":[5347]},{"type":"LineString","arcs":[5348]},{"type":"MultiLineString","arcs":[[5349],[5350],[5351]]},{"type":"MultiLineString","arcs":[[5352],[5353],[5354]]},{"type":"LineString","arcs":[5355]},{"type":"LineString","arcs":[5356]},{"type":"LineString","arcs":[5357]},{"type":"MultiLineString","arcs":[[5358],[5359],[5360],[5361]]},{"type":"MultiLineString","arcs":[[5362],[5363],[5364]]},{"type":"MultiLineString","arcs":[[5365,5366,5367,5368],[5369]]},{"type":"LineString","arcs":[5370]},{"type":"MultiLineString","arcs":[[5371],[5372],[5373]]},{"type":"MultiLineString","arcs":[[5374],[5375]]},{"type":"LineString","arcs":[5376]},{"type":"LineString","arcs":[5377]},{"type":"LineString","arcs":[5378]},{"type":"MultiLineString","arcs":[[5379],[5380]]},{"type":"MultiLineString","arcs":[[5381],[5382]]},{"type":"LineString","arcs":[5383]},{"type":"LineString","arcs":[5384]},{"type":"MultiLineString","arcs":[[5385,5386,5387,5388,5389],[5390],[5391],[5392]]},{"type":"MultiLineString","arcs":[[5393],[5394]]},{"type":"LineString","arcs":[5395]},{"type":"MultiLineString","arcs":[[5396],[5397]]},{"type":"LineString","arcs":[5398]},{"type":"LineString","arcs":[5399]},{"type":"LineString","arcs":[5400,5401]},{"type":"LineString","arcs":[5402]},{"type":"MultiLineString","arcs":[[5403,5404],[5405,5406,5407]]},{"type":"MultiLineString","arcs":[[5408],[5409]]},{"type":"LineString","arcs":[5410]},{"type":"MultiLineString","arcs":[[5411],[5412],[5413]]},{"type":"LineString","arcs":[5414,5415]},{"type":"LineString","arcs":[5416]},{"type":"MultiLineString","arcs":[[5417],[5418],[5419]]},{"type":"MultiLineString","arcs":[[5420,5421,5422],[5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440]]},{"type":"LineString","arcs":[5441]},{"type":"MultiLineString","arcs":[[5442],[5443],[5444]]},{"type":"LineString","arcs":[5445]},{"type":"LineString","arcs":[5446,5447,5448,5449,5450,5451]},{"type":"LineString","arcs":[5452,5453]},{"type":"LineString","arcs":[5454]},{"type":"MultiLineString","arcs":[[5455],[5456]]},{"type":"LineString","arcs":[5457]},{"type":"MultiLineString","arcs":[[5458,5459],[5460],[5461]]},{"type":"MultiLineString","arcs":[[5462],[5463]]},{"type":"LineString","arcs":[5464]},{"type":"MultiLineString","arcs":[[5465],[5466],[5467],[5468],[5469]]},{"type":"LineString","arcs":[5470,5471,5472]},{"type":"LineString","arcs":[5473]},{"type":"MultiLineString","arcs":[[5474],[5475]]},{"type":"LineString","arcs":[5476]},{"type":"MultiLineString","arcs":[[5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489],[5490]]},{"type":"LineString","arcs":[5491]},{"type":"LineString","arcs":[5492]},{"type":"LineString","arcs":[5493]},{"type":"LineString","arcs":[5494]},{"type":"LineString","arcs":[5495]},{"type":"LineString","arcs":[5496]},{"type":"LineString","arcs":[5497]},{"type":"LineString","arcs":[5498]},{"type":"LineString","arcs":[5499]},{"type":"LineString","arcs":[5500,5501]},{"type":"MultiLineString","arcs":[[5502],[5503]]},{"type":"LineString","arcs":[5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556]},{"type":"MultiLineString","arcs":[[5557],[5558],[5559]]},{"type":"MultiLineString","arcs":[[5560],[5561],[5562,5563]]},{"type":"LineString","arcs":[5564]},{"type":"MultiLineString","arcs":[[5565],[5566]]},{"type":"MultiLineString","arcs":[[5567],[5568],[5569,5570,5571]]},{"type":"MultiLineString","arcs":[[5572],[5573]]},{"type":"MultiLineString","arcs":[[5574],[5575]]},{"type":"MultiLineString","arcs":[[5576],[5577],[5578],[5579],[5580,5581],[5582],[5583],[5584],[5585]]},{"type":"LineString","arcs":[5586]},{"type":"MultiLineString","arcs":[[5587],[5588],[5589]]},{"type":"MultiLineString","arcs":[[5590],[5591]]},{"type":"MultiLineString","arcs":[[5592],[5593]]},{"type":"LineString","arcs":[5594]},{"type":"LineString","arcs":[5595,5596]},{"type":"MultiLineString","arcs":[[5597],[5598]]},{"type":"LineString","arcs":[5599,5600,5601]},{"type":"LineString","arcs":[5602,5603,5604,5605,5606,5607,5608,5609]},{"type":"LineString","arcs":[5610]},{"type":"MultiLineString","arcs":[[5611],[5612,5613]]},{"type":"LineString","arcs":[5614]},{"type":"MultiLineString","arcs":[[5615],[5616],[5617],[5618],[5619],[5620]]},{"type":"LineString","arcs":[5621]},{"type":"MultiLineString","arcs":[[5622],[5623]]},{"type":"LineString","arcs":[5624]},{"type":"LineString","arcs":[5625]},{"type":"LineString","arcs":[5626]},{"type":"MultiLineString","arcs":[[5627,5628],[5629],[5630]]},{"type":"LineString","arcs":[5631]},{"type":"LineString","arcs":[5632]},{"type":"LineString","arcs":[5633]},{"type":"MultiLineString","arcs":[[5634],[5635],[5636]]},{"type":"MultiLineString","arcs":[[5637],[5638,5639],[5640],[5641],[5642,5643,5644],[5645],[5646]]},{"type":"LineString","arcs":[5647]},{"type":"MultiLineString","arcs":[[5648],[5649],[5650,5651],[5652,5653],[5654]]},{"type":"LineString","arcs":[5655]},{"type":"LineString","arcs":[5656]},{"type":"MultiLineString","arcs":[[5657],[5658],[5659]]},{"type":"LineString","arcs":[5660]},{"type":"LineString","arcs":[5661]},{"type":"LineString","arcs":[5662]},{"type":"LineString","arcs":[5663]},{"type":"MultiLineString","arcs":[[5664],[5665],[5666],[5667],[5668],[5669],[5670],[5671],[5672],[5673],[5674]]},{"type":"MultiLineString","arcs":[[5675],[5676],[5677]]},{"type":"LineString","arcs":[5678]},{"type":"LineString","arcs":[5679]},{"type":"MultiLineString","arcs":[[5680],[5681]]},{"type":"LineString","arcs":[5682,5683]},{"type":"LineString","arcs":[5684]},{"type":"LineString","arcs":[5685]},{"type":"LineString","arcs":[5686,5687]},{"type":"LineString","arcs":[5688]},{"type":"LineString","arcs":[5689]},{"type":"LineString","arcs":[5690]},{"type":"LineString","arcs":[5691,5692,5693]},{"type":"LineString","arcs":[5694]},{"type":"LineString","arcs":[5695]},{"type":"LineString","arcs":[5696]},{"type":"LineString","arcs":[5697]},{"type":"LineString","arcs":[5698]},{"type":"LineString","arcs":[5699]},{"type":"LineString","arcs":[5700]},{"type":"MultiLineString","arcs":[[5701,5702,5703],[5704]]}]},"subunits":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[6647]],[[6648,6649,432,6650,6651,435,6652,437,6653,6654,440,6655,442,6656,6657,6658,6659,6660,448,6661,6662,451,6663,6664,454,6665,456,6666,458,6667,460,6668,6669,463,6670,6671,466,6672,468,6673,6674,6675,472,6676,474,6677,6678,6679,6680,479,6681,481,6682,483,6683,485,6684,487,6685,489,6686,491,6687,493,6688,6689,496,6690,498,6691,6692,6693,502,6694,504,6695,6696,507,6697,509,6698,511,6699,513,6700,515,6701,517,6702,519,6703,6704,522,6705,6706,525,6707,6708,6709,529,6710,531,6711,533,6712,6713,6714]]],"properties":{"ct":[122.18,-25.49],"gu":"AUS"},"id":"WA"},{"type":"MultiPolygon","arcs":[[[-6715,6715,6716,537,6717,539,6718,541,6719,543,6720,545,6721,6722,6723,6724,549,6725,551,6726,553,6727,6728,556,6729,6730,559,6731,6732,6733,563,6734,565,6735,567,6736,6737,570,6738,6739,573,6740,575,6741,6742,6743,579,6744,581,6745,583,6746,585,6747,587,6748,6749,6750,6751,6752,6753]],[[6754,664,6755,6756]],[[6757]],[[669,6758,671,6759,6760]]],"properties":{"ct":[133.37,-19.51],"gu":"AUS"},"id":"NT"},{"type":"MultiPolygon","arcs":[[[-6649,-6754,6761,6762,5129,6763,6764,6765,399,6766,401,6767,403,6768,405,6769,407,6770,6771,6772,6773,6774,413,6775,415,6776,417,6777,6778,420,6779,6780,6781,424,6782,426,6783,6784,429,6785,6786]],[[6787,6788,6789,6790]]],"properties":{"ct":[135.83,-30.07],"gu":"AUS"},"id":"SA"},{"type":"MultiPolygon","arcs":[[[-6753,6791,592,6792,594,6793,6794,597,6795,599,6796,6797,602,6798,604,6799,606,6800,6801,6802,610,303,6803,6804,6805,6806,6807,309,6808,311,6809,313,6810,315,6811,6812,6813,6814,320,6815,322,6816,324,6817,326,6818,328,6819,330,6820,332,6821,334,6822,336,6823,338,6824,340,6825,342,6826,344,6827,6828,6829,6830,6831,5606,6832,5608,6833,4694,6834,4696,6835,6836,-6762]],[[6837,6838,6839]],[[658,6840,660,6841]]],"properties":{"ct":[144.52,-22.59],"gu":"AUS"},"id":"QL"},{"type":"MultiPolygon","arcs":[[[623,6842,625,6843,6844,628,6845,630,6846,6847,6848,634,6849,6850,6851,615,6852,617,6853,6854,6855,621,6856]],[[6857,613,6858]],[[6859,639,6860]],[[6861,6862,6863,6864,6865]]],"properties":{"ct":[146.57,-42],"gu":"AUS"},"id":"TS"},{"type":"Polygon","arcs":[[-6764,-5130,-5129,6866,-5127,6867,6868,6869,6870,-5122,6871,-5120,6872,6873,6874,-5116,6875,-5114,6876,6877,-5111,6878,6879,6880,4430,6881,6882,-5103,6883,-5101,6884,6885,6886,370,6887,372,6888,6889,375,6890,6891,6892,379,6893,381,6894,6895,384,6896,386,6897,388,6898,390,6899,6900,6901,394,6902,396,6903]],"properties":{"ct":[144.29,-36.84],"gu":"AUS"},"id":"VI"},{"type":"Polygon","arcs":[[6904]],"properties":{"ct":[149,-35.5],"gu":"AUS"},"id":"CT"},{"type":"Polygon","arcs":[[6905,6906,6907]],"properties":{"ct":[150.65,-35.15],"gu":"AUS"},"id":"JB"},{"type":"Polygon","arcs":[[-6763,-6837,-6836,-4697,-6835,-4695,-6834,-5609,-6833,-5607,-6832,-6831,-6830,-6829,6908,346,6909,348,6910,350,6911,352,6912,354,6913,356,6914,358,6915,360,6916,362,6917,364,6918,-6906,6919,367,6920,-6885,5100,-6884,5102,-6883,-6882,-4431,-6881,-6880,-6879,5110,-6878,-6877,5113,-6876,5115,-6875,-6874,-6873,5119,-6872,5121,-6871,-6870,-6869,-6868,5126,-6867,5128],[-6905]],"properties":{"ct":[147.01,-32.17],"gu":"AUS"},"id":"NS"},{"type":"Polygon","arcs":[[6921,6922,6923]],"properties":{"ct":[-70.47,-9.3],"gu":"BRA"},"id":"AC"},{"type":"Polygon","arcs":[[-6924,6924,6925,6926,4899,6927,4901,6928,6929,4904,6930,6931,4907,6932,6933,5010,6934]],"properties":{"ct":[-62.84,-10.92],"gu":"BRA"},"id":"RO"},{"type":"Polygon","arcs":[[6935,-5142,6936,6937,6938]],"properties":{"ct":[-61.41,2.07],"gu":"BRA"},"id":"RR"},{"type":"Polygon","arcs":[[-6923,6939,-6937,5141,-6936,6940,6941,6942,-5450,6943,6944,6945,-6925]],"properties":{"ct":[-64.72,-4.18],"gu":"BRA"},"id":"AM"},{"type":"MultiPolygon","arcs":[[[-6939,6946,6947,6948,6949,6950,171,6951,6952,174,6953,6954,177,6955,6956,180,6957,182,6958,6959,6960,-4667,6961,6962,-4664,6963,-4662,6964,-4660,6965,-4658,6966,-4656,6967,6968,-4653,6969,-4651,6970,6971,6972,6973,-4646,6974,6975,-6942,-6941]],[[6976]],[[6977]],[[167,6978]],[[6979,6980]],[[6981,1682,6982]],[[1685,6983,6984]],[[1689,6985]]],"properties":{"ct":[-53.27,-4.18],"gu":"BRA"},"id":"PA"},{"type":"Polygon","arcs":[[6986,6987,6988,5262,6989,6990,6991,6992,6993,6994,5258,6995,6996,6997,6998,-5273,6999,-5271,7000,7001]],"properties":{"ct":[-54.85,-20.33],"gu":"BRA"},"id":"MS"},{"type":"MultiPolygon","arcs":[[[-6948,7002,7003,157,7004,159,7005,7006,7007,163,7008,165,7009]],[[7010]]],"properties":{"ct":[-51.98,1.46],"gu":"BRA"},"id":"AP"},{"type":"Polygon","arcs":[[-6926,-6946,-6945,-6944,5449,-6943,-6976,7011,-4644,7012,-4642,7013,7014,-4639,7015,7016,7017,7018,7019,7020,-4633,7021,-4631,7022,-4629,7023,-4627,7024,7025,7026,-7001,5270,-7000,5272,-6999,7027]],"properties":{"ct":[-55.93,-12.96],"gu":"BRA"},"id":"MT"},{"type":"Polygon","arcs":[[-6997,-6996,-5259,-6995,7028,7029,7030,251,7031,253,7032,255,7033,7034,7035,4458,7036,7037,4461,7038]],"properties":{"ct":[-51.64,-24.63],"gu":"BRA"},"id":"PR"},{"type":"Polygon","arcs":[[7039]],"properties":{"ct":[-47.79,-15.77],"gu":"BRA"},"id":"DF"},{"type":"Polygon","arcs":[[-7002,-7027,-7026,-7025,4626,-7024,4628,-7023,4630,-7022,4632,-7021,-7020,-7019,-7018,-7017,7040,7041,7042,7043,7044,7045,7046,7047,5243,7048,7049,5246,-4455,7050,-4453,7051,5264,7052,7053,7054]],"properties":{"ct":[-49.61,-16.02],"gu":"BRA"},"id":"GO"},{"type":"Polygon","arcs":[[-6975,4645,-6974,-6973,-6972,-6971,4650,-6970,4652,-6969,-6968,4655,-6967,4657,-6966,4659,-6965,4661,-6964,4663,-6963,-6962,4666,-6961,7055,7056,-5488,7057,-5486,7058,7059,7060,-5482,7061,7062,-5479,7063,7064,7065,-7042,-7041,-7016,4638,-7015,-7014,4641,-7013,4643,-7012]],"properties":{"ct":[-48.33,-10.14],"gu":"BRA"},"id":"TO"},{"type":"Polygon","arcs":[[-6994,-6993,-6992,-6991,-6990,-5263,-6989,-6988,7066,-4893,7067,-4891,7068,7069,-4888,7070,-4886,7071,7072,-4883,7073,-4881,7074,-4879,7075,7076,-4876,7077,7078,7079,7080,246,7081,248,7082,-7029]],"properties":{"ct":[-48.74,-22.26],"gu":"BRA"},"id":"SP"},{"type":"Polygon","arcs":[[-6960,7083,184,7084,186,7085,7086,189,7087,7088,192,7089,194,7090,196,7091,198,7092,7093,-7064,5478,-7063,-7062,5481,-7061,-7060,-7059,5485,-7058,5487,-7057,-7056]],"properties":{"ct":[-45.3,-5.12],"gu":"BRA"},"id":"MA"},{"type":"MultiPolygon","arcs":[[[-7079,7094,7095,7096,232,7097,234,7098,236,7099,7100,242,7101,7102]],[[7103,239,7104]]],"properties":{"ct":[-42.65,-22.18],"gu":"BRA"},"id":"RJ"},{"type":"Polygon","arcs":[[-7065,-7094,7105,7106,7107,7108,7109]],"properties":{"ct":[-42.99,-7.41],"gu":"BRA"},"id":"PI"},{"type":"Polygon","arcs":[[-6987,-7055,-7054,-7053,-5265,-7052,4452,-7051,4454,-5247,-7050,-7049,-5244,-7048,-7047,-7046,-7044,7110,-5422,7111,7112,-7095,-7078,4875,-7077,-7076,4878,-7075,4880,-7074,4882,-7073,-7072,4885,-7071,4887,-7070,-7069,4890,-7068,4892,-7067]],"properties":{"ct":[-44.68,-18.45],"gu":"BRA"},"id":"MG"},{"type":"Polygon","arcs":[[-7096,-7113,7113,7114,7115,7116,7117]],"properties":{"ct":[-40.67,-19.57],"gu":"BRA"},"id":"ES"},{"type":"MultiPolygon","arcs":[[[-7043,-7066,-7110,7118,7119,7120,5426,7121,5428,7122,5430,7123,7124,5433,7125,7126,7127,7128,7129,219,7130,221,7131,223,7132,225,7133,227,7134,-7114,-7112,5421,-7111]],[[7135]],[[7136]]],"properties":{"ct":[-41.71,-12.47],"gu":"BRA"},"id":"BA"},{"type":"Polygon","arcs":[[-7108,7137,201,7138,7139,7140,205,7141,7142,7143,7144,7145]],"properties":{"ct":[-39.63,-5.1],"gu":"BRA"},"id":"CE"},{"type":"Polygon","arcs":[[-7129,7146,7147,5437,7148,5439,7149,7150,7151,7152,217,7153]],"properties":{"ct":[-37.45,-10.58],"gu":"BRA"},"id":"SE"},{"type":"Polygon","arcs":[[-7128,7154,7155,-7150,-5440,-7149,-5438,-7148,-7147]],"properties":{"ct":[-36.62,-9.51],"gu":"BRA"},"id":"AL"},{"type":"Polygon","arcs":[[-7144,7156,7157,7158,7159,7160,7161]],"properties":{"ct":[-36.68,-5.84],"gu":"BRA"},"id":"RN"},{"type":"Polygon","arcs":[[-7109,-7146,7162,7163,7164,7165,-7155,-7127,-7126,-5434,-7125,-7124,-5431,-7123,-5429,-7122,-5427,-7121,-7120,-7119]],"properties":{"ct":[-38,-8.33],"gu":"BRA"},"id":"PE"},{"type":"Polygon","arcs":[[-7145,-7162,7166,7167,-7163]],"properties":{"ct":[-36.83,-7.12],"gu":"BRA"},"id":"PB"},{"type":"Polygon","arcs":[[-7035,7168,257,7169,7170,260,7171,7172,7173,7174,7175,7176,5504,7177,7178,5507,7179,7180,7181,7182,5512,7183,5514,7184,5516,7185,7186,5519,7187,5521,7188,7189,5524,7190,7191,7192,5528,7193,7194]],"properties":{"ct":[-50.51,-27.25],"gu":"BRA"},"id":"SC"},{"type":"Polygon","arcs":[[-7194,-5529,-7193,-7192,-7191,-5525,-7190,-7189,-5522,-7188,-5520,-7187,-7186,-5517,-7185,-5515,-7184,-5513,-7183,-7182,-7181,-7180,-5508,-7179,-7178,-5505,-7177,7195,266,7196,268,7197,7198,7199,7200,273,7201,275,7202,7203,278,7204,-6484,7205,-5556,7206,7207,-5553,7208,7209,-5550,7210,-5548,7211,-5546,7212,7213,7214,-5542,7215,-5540,7216,-5538,7217,-5536,7218,-5534,7219,7220,-5531]],"properties":{"ct":[-53.33,-29.69],"gu":"BRA"},"id":"RS"},{"type":"Polygon","arcs":[[7221,7222,7223,7224]],"properties":{"ct":[-114.51,55.17],"gu":"CAN"},"id":"AB"},{"type":"MultiPolygon","arcs":[[[-7223,7225,7226,7227,7228,7229,793,7230,7231,7232,797,7233,799,7234,801,7235,803,7236,805,7237,807,7238,809,7239,7240,812,7241,814,7242,816,7243,7244,7245,7246,821,7247,7248,7249,7250,7251,827,7252,829,7253,831,7254,833,7255,7256,835,7257,837,7258,7259,7260,7261,7262,7263]],[[7264]],[[2955,7265]],[[7266,7267,844,7268]],[[7269,7270,7271]],[[7272,7273]],[[7274,7275,7276]],[[2765,7277,2767,7278,7279,2771,7280,2773,7281,7282]],[[2776,7283]],[[2950,7284,2952,7285,7286]],[[2858,7287,2860,7288,2862,7289]],[[2847,7290,2849,7291,7292,2852,7293,2854,7294,2856,2845,7295]],[[7296]],[[2587,7297,2589,7298,2591,7299,7300,7301,2595,7302,7303,7304,2599,7305,2601,7306,7307,7308,7309,2606,7310,7311,2609,7312,2585,7313]],[[2990,7314]]],"properties":{"ct":[-124.59,54.99],"gu":"CAN"},"id":"BC"},{"type":"Polygon","arcs":[[7315,7316,7317,7318,7319,7320,1302,7321,1304,7322,1306,7323,7324,1309,7325,1311,7326,7327,1313,7328]],"properties":{"ct":[-97.44,54.92],"gu":"CAN"},"id":"MB"},{"type":"Polygon","arcs":[[7329,7330,7331,7332,7333,7334,1522,7335,7336,7337,-6561,7338,7339,-5346,7340,7341,7342,1477,7343,1479,7344,7345,1482,7346,1484,7347,7348,1487,7349,1489,7350,1491,7351]],"properties":{"ct":[-66.4,46.63],"gu":"CAN"},"id":"NB"},{"type":"MultiPolygon","arcs":[[[7352,7353,1399,7354,1401,7355,7356,7357,1405,7358,7359,1408,7360,7361,1411,7362,1413,7363,7364,1416,7365,1418,7366,7367,7368,1422,7369,1424,7370,1426,7371,1428,7372,7373,7374,7375,1433,7376,1435,7377,7378,7379,1439,7380,1441,7381,1443,7382,1445,7383,7384,1448,7385]],[[2255,7386,7387,2258,7388,7389,7390,7391,2263,7392,2265,7393,2267,7394,2269,7395,7396,2272,7397,2274,7398,7399,2277,7400,7401,2280,7402,7403,2283,7404,2285,7405,2287,7406,7407,2290,7408,2292,7409,2294,7410,2296,7411,7412,2299,7413,7414,2302,7415,2304,7416,2306,7417,7418,7419,7420,2311,7421,2313,7422,2315,7423,7424,7425,2319,7426,7427,7428]]],"properties":{"ct":[-62,54.24],"gu":"CAN"},"id":"NL"},{"type":"MultiPolygon","arcs":[[[-7330,7429,1493,7430,1495,7431,1497,7432,1499,7433,1501,7434,7435,7436,1505,7437,7438,1508,7439,7440,7441,1512,7442,7443,1515,7444,1517,7445]],[[2737,7446,2739,7447,7448,2742,7449,2744,7450,7451,2735,7452]]],"properties":{"ct":[-63.98,44.91],"gu":"CAN"},"id":"NS"},{"type":"MultiPolygon","arcs":[[[-7224,-7264,7453,7454,1050,7455,1052,7456,7457,1055,7458,1057,7459,1059,7460,1061,7461,7462,7463,1064,7464,1066,7465,1068,7466,7467,1071,7468,1073,7469,1075,7470,7471,1078,7472,1080,7473,1082,7474,1086,7475,1088,7476,1090,7477,7478,7479]],[[1084,7480]],[[7481,7482,2833,7483,7484,7485,2837,7486]],[[7487,7488,2812,7489,7490,2809,7491,7492]],[[7493,7494]],[[2651,7495,2653,7496,7497,2656,7498,2658,7499,2660,7500,7501,7502,7503,2665,7504,2667,7505,2669,7506,7507,2672,7508,7509,2675,7510,2677,7511,2679,7512,2681,7513]],[[7514]],[[7515,7516,7517,7518,7519,7520,2454,7521,7522,2457,7523,2459,7524,7525,2462,7526,7527,2465,7528,2467,7529,7530,2470,7531,2472,7532,2474,7533]],[[7534,7535,7536]],[[7537,7538]],[[2325,7539,2327,7540,7541,7542,7543,2332,7544,7545,2335,7546,2337,7547,2339,7548,7549,2342,7550,7551,2345,7552,7553,2348,7554,7555,7556]],[[7557,7558,7559,7560]],[[7561,7562,7563]],[[7564,7565,2049,7566,7567,2052,7568,2054,7569,7570,7571,2058,7572,2060,7573,2062,7574,2064,7575,7576,7577,7578,2069,1996,7579,1998,7580,2000,7581,2002,7582]]],"properties":{"ct":[-119.6,64.36],"gu":"CAN"},"id":"NT"},{"type":"MultiPolygon","arcs":[[[-7320,-7479,7583,7584,7585,7586,1095,7587,1097,7588,7589,7590,7591,1101,7592,1103,7593,1105,7594,7595,1108,7596,7597,1111,7598,1113,7599,1115,7600,1117,7601,1119,7602,1121,7603,7604,1124,7605,1126,7606,7607,1129,7608,1131,7609,1133,7610,7611,7612,7613,1138,7614,1140,7615,1142,7616,7617,1145,7618,7619,1148,7620,1150,7621,1152,7622,7623,1154,7624,1156,7625,1158,7626,1160,7627,7628,1163,7629,1165,7630,1167,7631,7632,7633,7634,7635,7636,1174,7637,1176,7638,1178,7639,1180,7640,7641,7642,1184,7643,1186,7644,1188,7645,1190,7646,7647,1193,7648,1195,7649,1197,7650,7651,1200,7652,7653,1203,7654,1205,7655,1207,7656,7657,1210,7658,7659,1213,7660,1215,7661,1217,7662,7663,1220,7664,7665,1223,7666,7667,7668,1227,7669,7670,1230,7671,7672,1233,7673,1235,7674,1237,7675,1239,7676,7677,7678,1243,7679,1245,7680,7681,7682,1249,7683,1251,7684,1253,7685,7686,7687,7688,1258,7689,1260,7690,7691,7692,7693,7694,7695,1267,7696,7697,7698,1271,7699,1273,7700,1275,7701,7702,1278,7703,7704,1281,7705,1283,7706,7707,1286,7708,1288,7709,7710,1291,7711,1293,7712,1295,7713,1297,7714,1299,7715,7716]],[[-7482,7717]],[[-7488,7718]],[[-7516,7719,7720,2477,7721,2479,7722,7723,-7535,7724,2483,7725,7726,2486,2442,7727,7728,7729,2446,7730,7731,7732]],[[-7565,7733,7734,-7562,7735,2006,7736,-7558,7737,2010,7738,2012,7739,7740,7741,2016,7742,2018,7743,7744,7745,2022,7746,7747,7748,7749,2027,7750,2029,7751,7752,2032,7753,2034,7754,2036,7755,2038,7756,2040,7757,2042,7758,7759,2045,7760,2047,7761]],[[7762,2899,7763,2901,7764]],[[7765,7766]],[[7767,2922,7768,7769]],[[2966,7770,7771]],[[2414,7772,7773,2417,7774,2419,7775,2421,7776,7777,7778,7779,7780,2427,7781,7782,7783,7784,7785,7786,2434,7787,2436,7788,2438,7789,7790,7791,7792]],[[2957,7793]],[[7794,2886,7795]],[[2779,7796,7797]],[[2960,7798]],[[7799,2824,7800,2826,7801]],[[2928,7802,2930,7803,7804]],[[2946,7805]],[[1379,7806]],[[7807,7808,2873,7809,2875,7810,2877,7811,2879,7812]],[[2830,7813]],[[2071,7814,7815,7816,2075,7817,2077,7818,7819,2080,7820,7821,2083,7822,2085,7823,7824,2088,7825,7826,2091,7827,2093,7828,2095,7829,2097,7830,2099,7831,7832,7833,7834,2104,7835,2106,7836,7837,2109,7838,2111,7839,7840,7841,2115,7842,7843,2118,7844,2120,7845,2122,7846,7847,2125,7848,2127,7849,7850,7851,2131,7852,7853,2134,7854,2136,7855,2138,7856,2140,7857,2142,7858,2144,7859,2146,7860,2148,7861,2150,7862,2152,7863,2154,7864,7865,2157,7866,7867,2160,7868,2162,7869,2164,7870,2166,7871,2168,7872,2170,7873,2172,7874,7875,2175,7876,2177,7877,2179,7878,2181,7879,2183,7880,7881,2186,7882,2188,7883,2190,7884,2192,7885,2194,7886,7887,2197,7888,2199,7889,7890,2202,7891,7892,7893,2206,7894,2208,7895,2210,7896,7897,7898,7899,2215,7900,2217,7901,7902,2220,7903,2222,7904,2224,7905,2226,7906,7907,2229,7908,2231,7909,2233,7910,2235,7911,2237,7912,2239,7913,7914,2242,7915,7916,2245,7917,7918,2248,7919,2250,7920,2252,7921]],[[2490,7922,7923,2493,7924,7925,2496,7926,7927,7928,7929,2501,7930,2503,7931,2505,7932,2507,7933,2509,7934,7935,2512,7936,2514,7937,2516,7938,7939,7940,2520,7941,7942,2523,7943,2525,7944,2527,7945,7946,2530,7947,7948,2533,7949,2535,7950,2537,7951,7952,7953,7954,2542,7955,2544,7956,2546,7957,2548,7958,7959,2551,7960,2553,7961,2555,2487,7962,7963]],[[7964,7965,7966,2934,7967]],[[2704,7968,2706,7969,7970,2709,7971,7972,2712,7973,2714,7974,7975,7976,7977,2719,7978,2721,7979,2723,7980]],[[2798,7981,7982,7983,2802,7984,7985,2805,7986,2796,7987]],[[7988]],[[2840,7989,2842,7990,7991]],[[2889,7992,7993,2892,7994]],[[7995,2882,7996]],[[7997,2355,7998,2357,7999,2359,8000,2361,8001,8002,2364,8003,2366,8004,8005,2369,8006,2371,8007,8008,8009,8010,2376,8011,8012,2379,8013,2381,8014,8015,8016,8017,2386,8018,8019,8020,2390,8021,2392,8022,2394,8023,2396,8024,2398,8025,8026,2401,8027,2403,8028,2405,8029,2407,8030,8031,2410,8032,8033,8034]],[[8035,2978,8036,8037]],[[8038,2628,8039,2630,8040,8041,2633,8042,2635,8043,2637,8044,2639,8045,8046,2642,8047,8048,2645,8049,2647,8050,2649,8051]],[[2917,8052,8053]],[[8054]],[[2896,2894,8055]],[[2761,8056,2763,8057]],[[8058,2906,8059,8060]],[[8061,8062,2613,8063,2615,8064,2617,8065,2619,8066,2621,8067,2623,8068]],[[8069]],[[2556,8070,8071,2559,8072,8073,8074,8075,2564,8076,2566,8077,8078,2569,8079,8080,2572,8081,2574,8082,8083,8084,2578,8085,8086,2581,8087,8088]],[[1701,8089,8090,1704,8091,1706,8092,8093,1709,8094,1711,8095,1713,8096,8097,8098,1717,8099,8100,8101,8102,1722,8103,1724,8104,1726,8105,1728,8106,1730,8107,1732,8108,1734,8109,1736,8110,1738,8111,8112,1741,8113,1743,8114,8115,8116,8117,1748,8118,1750,8119,8120,1753,8121,1755,8122,1757,8123,1759,8124,1761,8125,1763,8126,1765,8127,8128,1768,8129,8130,1771,8131,8132,1774,8133,8134,1777,8135,8136,1780,8137,8138,8139,1784,8140,1786,8141,8142,1789,8143,1791,8144,1793,8145,1795,8146,1797,8147,1799,8148,1801,8149,1803,8150,1805,8151,1807,8152,8153,8154,8155,1812,8156,1814,8157,1816,8158,1818,8159,1820,8160,1822,8161,1824,8162,8163,8164,1828,8165,1830,8166,1832,8167,1834,8168,8169,8170,1838,8171,1840,8172,1842,8173,1844,8174,8175,8176,1848,8177,1850,8178,1852,8179,1854,8180,8181,1857,8182,8183,1860,8184,8185,1863,8186,8187,1866,8188,1868,8189,1870,8190,1872,8191,1874,8192,1876,8193,1878,8194,8195,1881,8196,8197,8198,1885,8199,1887,8200,8201,1890,8202,8203,1893,8204,1895,8205,1897,8206,8207,1900,8208,1902,8209,8210,1905,8211,1907,8212,1909,8213,1911,8214,1913,8215,1915,8216,1917,8217,1919,8218,1921,8219,1923,8220,1925,8221,1927,8222,8223,8224,1931,8225,8226,1934,8227,1936,8228,1938,8229,1940,8230,1942,8231,1944,8232,1946,8233,8234,8235,1950,8236,1952,8237,1954,8238,1956,8239,8240,1959,8241,1961,8242,1963,8243,8244,1966,8245,8246,1969,8247,1971,8248,1973,8249,8250,8251,1977,8252,8253,1980,8254,8255,1983,8256,1985,8257,8258,8259,1989,8260,8261,1992,8262,8263,1995,1699,8264]],[[8265,2729,8266,8267,8268,2733,2725,8269,8270]],[[8271,2818,8272,2820,8273,8274,2815,8275]],[[2684,8276,2686,8277,2688,8278,2690,8279,2692,8280,2694,8281,2696,8282,2698,8283,2700,8284,8285]],[[8286,2941,8287,2943,8288]],[[2982,8289,2984,8290]],[[2970,8291,8292]],[[8293,8294,8295,2912,8296,2914,8297]],[[8298]],[[8299,2748,8300,2750,8301]]],"properties":{"ct":[-98.62,65.9],"gu":"CAN"},"id":"NU"},{"type":"MultiPolygon","arcs":[[[-7316,8302,1315,8303,1317,8304,1319,8305,8306,8307,8308,8309,8310,1325,8311,8312,-4449,5231,5228,8313,8314,5225,8315,8316,5400,8317,8318,8319,-6115,8320,8321,5150,-6082,-6123,-5400,8322,-6169,-6159,8323,8324,-4477,5303,8325,-4562,8326]],[[8327,8328,8329]],[[-6168]],[[-6164]],[[-6167]],[[-6180]],[[-6119]],[[-6117]],[[-6091]],[[-6179]],[[-6178]],[[-6174]],[[-6172]]],"properties":{"ct":[-86.09,50.46],"gu":"CAN"},"id":"ON"},{"type":"Polygon","arcs":[[8330,8331,2786,8332,2788,8333,2790,8334,8335,2793,8336,8337,2782,8338]],"properties":{"ct":[-63.22,46.39],"gu":"CAN"},"id":"PE"},{"type":"MultiPolygon","arcs":[[[-7342,8339,8340,8341,8342,8343,1469,8344,8345,1472,8346,1474,8347,8348]],[[-7353,8349,1450,8350,1452,8351,8352,8353,8354,1457,8355,8356,8357,1461,8358,8359,8360,8361,8362,1467,8363,8364,-8316,-5226,-8315,-8314,-5229,-5232,4448,-8313,8365,-8330,8366,1328,8367,8368,1330,8369,1332,8370,1334,8371,1336,8372,1338,8373,8374,1340,8375,1342,8376,1344,8377,8378,1347,8379,1349,8380,1351,8381,8382,8383,1355,8384,1357,8385,1359,8386,8387,8388,1363,8389,8390,1366,8391,8392,1369,8393,8394,8395,1373,8396,1375,8397,8398,8399,1381,8400,8401,1384,8402,8403,8404,8405,8406,1391,8407,1393,8408,1395,8409,1397,8410]],[[8411]],[[8412,8413]],[[2754,8414,2756,8415,2758,8416]],[[8417]],[[8418]]],"properties":{"ct":[-71.94,53.73],"gu":"CAN"},"id":"QC"},{"type":"Polygon","arcs":[[-7225,-7480,-7319,8419,8420]],"properties":{"ct":[-105.9,54.42],"gu":"CAN"},"id":"SK"},{"type":"Polygon","arcs":[[-7263,8421,8422,1047,-1048,1048,8423,-7454]],"properties":{"ct":[-135.51,63.63],"gu":"CAN"},"id":"YT"},{"type":"MultiPolygon","arcs":[[[-7262,8424,842,8425,-7273,8426,-7267,8427,-7275,8428,8429,8430,8431,857,8432,859,8433,8434,866,8435,8436,869,8437,871,8438,8439,8440,875,8441,8442,8443,878,8444,880,8445,882,8446,8447,8448,8449,8450,887,8451,8452,890,8453,894,8454,896,8455,898,8456,8457,901,8458,903,8459,8460,906,8461,908,8462,8463,911,8464,913,8465,915,8466,917,8467,8468,8469,8470,921,8471,8472,8473,925,8474,8475,928,8476,8477,8478,932,8479,8480,8481,936,8482,938,8483,8484,8485,942,8486,8487,945,8488,8489,948,8490,950,8491,8492,953,8493,955,8494,957,8495,959,8496,961,8497,8498,964,8499,8500,8501,968,8502,970,8503,8504,8505,974,8506,976,8507,8508,978,8509,8510,8511,981,8512,983,8513,8514,8515,8516,987,8517,989,8518,991,8519,8520,994,8521,996,8522,8523,1000,8524,1002,8525,1004,8526,8527,1007,8528,1009,8529,8530,1012,8531,1014,8532,8533,8534,8535,1019,8536,8537,1022,8538,8539,8540,1026,8541,1028,8542,1030,8543,1032,8544,1034,8545,1036,8546,8547,8548,1040,8549,8550,8551,8552,1045,8553,-8422]],[[-7270,8554]],[[8555]],[[4185,8556,4187,8557,4189,8558,4191,8559]],[[8560]],[[892,8561]],[[8562]],[[4179,8563,4181,8564,4172,8565,8566,8567,8568,4177,8569]],[[4168,8570,8571]],[[8572]],[[8573]],[[4165,8574,4163,8575]],[[4150,8576,4152,8577]],[[8578]],[[8579,4156,8580,8581,4159,8582,8583]],[[4140,8584,4142,8585,8586,4145,8587,4147,8588,8589]],[[8590]],[[8591,4133,8592,8593,8594]],[[8595]],[[8596]],[[8597,4129,8598]],[[8599]],[[862,8600,864,8601,8602]],[[4109,8603,8604,4112,8605,4114,8606,8607,4117,8608,4119,8609,4124,8610]],[[850,8611,852,8612,8613,855,8614]],[[8615,4121,8616]],[[4100,8617,8618,8619,8620,4105,8621,4107,8622]],[[4094,8623,8624,8625,8626,4099,4092,8627]],[[8628,4088,8629,4090,8630]],[[8631,4079,8632,4081,8633,8634,8635]],[[8636]],[[8637]],[[4069,8638,8639,8640,8641]],[[8642]]],"properties":{"ct":[-152.72,64.59],"gu":"USA"},"id":"AK"},{"type":"Polygon","arcs":[[8643,8644,8645,8646,1639,8647,8648,8649,8650,8651,4731,8652,-4365,8653,4728,8654,8655]],"properties":{"ct":[-86.83,32.8],"gu":"USA"},"id":"AL"},{"type":"Polygon","arcs":[[8656,-5048,8657,8658,-5046,8659,-5044,-5043,8660,8661,8662,8663,8664]],"properties":{"ct":[-92.44,34.9],"gu":"USA"},"id":"AR"},{"type":"MultiPolygon","arcs":[[[8665,8666,8667,8668,8669,-4751,-4368,8670,-4757,8671,8672,8673,-4754,4368,-4758,4369,8674,8675,8676]],[[8677,8678,8679,-8668,-8667]]],"properties":{"ct":[-111.66,34.29],"gu":"USA"},"id":"AZ"},{"type":"MultiPolygon","arcs":[[[-8673,-8672,4756,-8671,4367,4750,-8670,-8669,8680,8681,8682,8683,8684,8685,8686,8687,8688,749,8689,751,8690,8691,8692,753,8693,8694,8695,8696,8697,8698,760,8699,8700,8701]],[[-8680,8702,-8681]]],"properties":{"ct":[-119.6,37.25],"gu":"USA"},"id":"CA"},{"type":"Polygon","arcs":[[8703,8704,8705,8706,8707,8708]],"properties":{"ct":[-105.53,39],"gu":"USA"},"id":"CO"},{"type":"Polygon","arcs":[[8709,8710,8711,8712]],"properties":{"ct":[-72.73,41.63],"gu":"USA"},"id":"CT"},{"type":"Polygon","arcs":[[-5293,8713,8714]],"properties":{"ct":[-77.02,38.92],"gu":"USA"},"id":"DC"},{"type":"Polygon","arcs":[[8715,8716,8717,1562,8718,1564,8719]],"properties":{"ct":[-75.51,38.98],"gu":"USA"},"id":"DE"},{"type":"MultiPolygon","arcs":[[[-8656,8720,4363,8721,8722,1608,8723,8724,1612,8725,8726,8727,8728,8729,1620,8730,8731,1623,8732,1625,8733,1627,8734,1629,8735,8736,8737,1632,8738,1634,8739,8740]],[[8741]],[[1615,8742]],[[8743]],[[8744]],[[8745]]],"properties":{"ct":[-82.5,28.67],"gu":"USA"},"id":"FL"},{"type":"MultiPolygon","arcs":[[[-8655,-4729,-8654,4364,-8653,-4732,-8652,8746,8747,8748,4734,5495,8749,4533,5369,8750,4500,5365,8751,5367,8752,8753,-8722,-4364,-8721]],[[8754]]],"properties":{"ct":[-83.46,32.66],"gu":"USA"},"id":"GA"},{"type":"MultiPolygon","arcs":[[[8755,8756]],[[8757,3971,8758]],[[8759]],[[8760,3967,3964,8761]],[[8762,8763,8764,3961,8765,8766,8767]]],"properties":{"ct":[-155.5,19.62],"gu":"USA"},"id":"HI"},{"type":"Polygon","arcs":[[8768,8769,-5087,8770,8771,8772,8773,-5075,8774,8775,-5073,8776,-5071]],"properties":{"ct":[-93.5,42.09],"gu":"USA"},"id":"IA"},{"type":"Polygon","arcs":[[-7227,8777,8778,8779,8780,8781,5386,8782,8783,5388,8784]],"properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID"},{"type":"Polygon","arcs":[[5070,-8777,5072,-8776,8785,8786,-6142,8787,8788,5596,5187,8789,5189,5190,8790,5192,5061,8791,5063,8792,5065,8793,5067,8794,5069]],"properties":{"ct":[-89.2,40.07],"gu":"USA"},"id":"IL"},{"type":"Polygon","arcs":[[-5597,-8789,8795,-6140,8796,8797,8798,8799,5200,5182,8800,5184,8801,5186]],"properties":{"ct":[-86.28,39.91],"gu":"USA"},"id":"IN"},{"type":"Polygon","arcs":[[-8707,8802,8803,5090,8804,8805]],"properties":{"ct":[-98.37,38.49],"gu":"USA"},"id":"KS"},{"type":"MultiPolygon","arcs":[[[-5193,-8791,-5191,-5190,-8790,-5188,-5187,-8802,-5185,-8801,-5183,-5201,-8800,8806,-5199,8807,-5197,8808,8809,8810,8811,8812,8813,5058,8814,5060]],[[8815,8816,8817,5054,8818]]],"properties":{"ct":[-85.28,37.53],"gu":"USA"},"id":"KY"},{"type":"Polygon","arcs":[[-8662,8819,-5041,8820,8821,1643,8822,1645,8823,1647,8824,8825,1649,8826,1651,8827,8828,8829,1655,8830,8831,1658,8832,1660,8833,8834]],"properties":{"ct":[-92.04,31.1],"gu":"USA"},"id":"LA"},{"type":"Polygon","arcs":[[-8713,8835,8836,8837,8838,8839,1536,8840,1538,8841,1540,8842,1542,8843,8844,1545,8845,1547,8846,8847]],"properties":{"ct":[-71.87,42.28],"gu":"USA"},"id":"MA"},{"type":"MultiPolygon","arcs":[[[-8715,8848,-5291,8849,8850,-5289,-5342,8851,8852,-8716,8853,8854,8855,8856,1570,8857,8858,1573,8859,8860,1576,8861,8862,8863,8864,1581,8865]],[[8866,8867]]],"properties":{"ct":[-76.82,39.07],"gu":"USA"},"id":"MD"},{"type":"Polygon","arcs":[[-7341,5345,-7340,8868,-6559,8869,-7337,8870,8871,8872,1527,8873,1529,8874,8875,8876,8877,-8340]],"properties":{"ct":[-69.25,45.41],"gu":"USA"},"id":"ME"},{"type":"MultiPolygon","arcs":[[[-8323,5399,-6122,-6089,8878,8879,-8798,8880,-6138,-6170]],[[8881,8882,-6153,-6171,-6146,8883]],[[-6165]],[[-6166]],[[-6175]],[[-6149]],[[-6148]],[[-6173]],[[-6177]],[[-6176]]],"properties":{"ct":[-84.63,43.49],"gu":"USA"},"id":"MI"},{"type":"Polygon","arcs":[[-7317,-8327,4561,-8326,-5304,4476,-8325,8884,-6157,8885,8886,-5079,8887,-5077,8888,-8773,8889,8890]],"properties":{"ct":[-94.31,46.31],"gu":"USA"},"id":"MN"},{"type":"Polygon","arcs":[[-8665,8891,-8805,-5091,-8804,8892,-5089,8893,-8769,-5070,-8795,-5068,-8794,-5066,-8793,-5064,-8792,-5062,-5061,-8815,-5059,-8814,8894,-5057,8895,-8819,-5055,-8818,-8817,8896,-5052,8897,-5050,8898]],"properties":{"ct":[-92.49,38.38],"gu":"USA"},"id":"MO"},{"type":"Polygon","arcs":[[-8649,8899,8900,8901,-8821,5040,-8820,-8661,5042,5043,-8660,5045,-8659,8902]],"properties":{"ct":[-89.67,32.77],"gu":"USA"},"id":"MS"},{"type":"Polygon","arcs":[[-7222,-8421,8903,8904,8905,-8778,-7226]],"properties":{"ct":[-109.63,47.03],"gu":"USA"},"id":"MT"},{"type":"MultiPolygon","arcs":[[[-8748,8906,8907,8908,8909,8910,1600,8911,8912,8913,8914]],[[8915,8916,1595,8917,8918]]],"properties":{"ct":[-79.43,35.56],"gu":"USA"},"id":"NC"},{"type":"Polygon","arcs":[[-7318,-8891,8919,-8904,-8420]],"properties":{"ct":[-100.46,47.44],"gu":"USA"},"id":"ND"},{"type":"Polygon","arcs":[[-8706,8920,8921,5084,8922,-8771,5086,-8770,-8894,5088,-8893,-8803]],"properties":{"ct":[-99.79,41.53],"gu":"USA"},"id":"NE"},{"type":"Polygon","arcs":[[-8341,-8878,8923,1533,8924,-8838,8925]],"properties":{"ct":[-71.58,43.69],"gu":"USA"},"id":"NH"},{"type":"MultiPolygon","arcs":[[[8926,8927,8928,8929,8930,1559,8931]],[[8932]]],"properties":{"ct":[-74.66,40.21],"gu":"USA"},"id":"NJ"},{"type":"Polygon","arcs":[[-8677,-8709,8933,8934,8935,8936]],"properties":{"ct":[-106.11,34.42],"gu":"USA"},"id":"NM"},{"type":"Polygon","arcs":[[-8675,-4370,4757,-4369,4753,-8674,-8702,8937,-8781,8938]],"properties":{"ct":[-116.65,39.36],"gu":"USA"},"id":"NV"},{"type":"MultiPolygon","arcs":[[[-5151,-8322,8939,-6113,8940,-8319,-8318,-5401,-8343,8941,-8836,-8712,8942,1551,8943,8944,-8928,8945,8946,-6083]],[[8947,1553,8948,8949]],[[-6090]]],"properties":{"ct":[-75.59,43.02],"gu":"USA"},"id":"NY"},{"type":"Polygon","arcs":[[8950,5194,8951,-8809,5196,-8808,5198,-8807,-8799,-8880,8952,-6087,8953]],"properties":{"ct":[-82.79,40.3],"gu":"USA"},"id":"OH"},{"type":"Polygon","arcs":[[-8664,8954,-8934,-8708,-8806,-8892]],"properties":{"ct":[-97.51,35.59],"gu":"USA"},"id":"OK"},{"type":"Polygon","arcs":[[-8701,8955,8956,8957,-4764,-4763,8958,-4767,8959,-8783,-5387,-8782,-8938]],"properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR"},{"type":"Polygon","arcs":[[-8946,-8927,8960,-8717,-8853,8961,-8951,8962,-6085,8963]],"properties":{"ct":[-77.8,40.88],"gu":"USA"},"id":"PA"},{"type":"MultiPolygon","arcs":[[[-8710,-8848,8964,8965]],[[8966]]],"properties":{"ct":[-71.6,41.7],"gu":"USA"},"id":"RI"},{"type":"Polygon","arcs":[[-8753,-5368,-8752,-5366,-4501,-8751,-5370,-4534,-8750,-5496,-4735,-8749,-8915,8967,8968,1605,8969,8970,8971]],"properties":{"ct":[-80.9,33.92],"gu":"USA"},"id":"SC"},{"type":"Polygon","arcs":[[-8772,-8923,-5085,-8922,8972,-8905,-8920,-8890]],"properties":{"ct":[-100.22,44.44],"gu":"USA"},"id":"SD"},{"type":"Polygon","arcs":[[-8651,-8650,-8903,-8658,5047,-8657,-8899,5049,-8898,5051,-8897,-8816,-8896,5056,-8895,-8813,-8812,8973,-8907,-8747]],"properties":{"ct":[-86.34,35.85],"gu":"USA"},"id":"TN"},{"type":"MultiPolygon","arcs":[[[-8663,-8835,8974,1662,8975,8976,8977,8978,8979,1670,8980,-5319,8981,8982,-5317,8983,-8984,-5316,8984,-4483,-5320,8985,4484,-5326,8986,-5324,8987,-5322,8988,-8936,-8935,-8955]],[[-5318,-8983,-8982]],[[8989]],[[1666,8990,8991]],[[8992]]],"properties":{"ct":[-99.36,31.51],"gu":"USA"},"id":"TX"},{"type":"Polygon","arcs":[[-8676,-8939,-8780,8993,-8704]],"properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT"},{"type":"MultiPolygon","arcs":[[[-8714,5292,8994,1583,8995,1585,8996,1587,8997,1589,8998,8999,1592,9000,9001,-8916,9002,-8908,-8974,-8811,9003,-8850,5290,-8849]],[[-8856,9004,1568,9005]],[[-8867,9006,9007]]],"properties":{"ct":[-78.9,37.53],"gu":"USA"},"id":"VA"},{"type":"Polygon","arcs":[[-8342,-8926,-8837,-8942]],"properties":{"ct":[-72.67,44.08],"gu":"USA"},"id":"VT"},{"type":"MultiPolygon","arcs":[[[-7228,-8785,-5389,-8784,-8960,4766,-8959,4762,4763,9008,764,9009,766,9010,9011,9012,9013,9014,9015,9016,774,9017,9018,9019,9020,779,9021,781,9022,783,9023,785,9024,787,9025,789,9026,9027]],[[9028]],[[9029,9030]],[[9031]],[[9032]]],"properties":{"ct":[-120.39,47.37],"gu":"USA"},"id":"WA"},{"type":"MultiPolygon","arcs":[[[-8775,5074,-8774,-8889,5076,-8888,5078,-8887,9033,-6155,9034,-8882,9035,-6144,9036,-8786]],[[-6163]],[[-6162]],[[-6161]],[[-6151]],[[-6150]]],"properties":{"ct":[-90.03,44.64],"gu":"USA"},"id":"WI"},{"type":"Polygon","arcs":[[-8810,-8952,-5195,-8962,-8852,5341,5288,-8851,-9004]],"properties":{"ct":[-80.61,38.65],"gu":"USA"},"id":"WV"},{"type":"Polygon","arcs":[[-8705,-8994,-8779,-8906,-8973,-8921]],"properties":{"ct":[-107.54,43],"gu":"USA"},"id":"WY"}]}},"arcs":[[[305414,580407],[0,-1],[7,-6],[7,-7],[48,-79],[200,-351],[29,-51],[9,-16],[3,-6],[6,-10],[13,-29],[11,-22],[72,-162],[11,-24],[30,-70],[18,-42],[17,-103],[15,-93],[2,-19],[4,-45],[1,-4],[2,-24],[0,-5],[1,-4],[1,-14],[0,-4],[1,-4],[0,-6],[1,-3],[0,-6],[-1,-5],[-1,-3],[-4,-16],[-2,-8],[-14,-9],[-4,-3],[-3,3],[-8,6],[-8,7],[-103,106],[-58,61],[-7,8],[-18,23],[-3,4],[-121,190],[-69,113],[-64,120],[-3,6],[-9,18],[-25,47],[-21,54],[10,356],[3,89],[1,7],[2,20],[1,7],[1,11],[7,-1],[4,0],[2,0],[2,-1],[3,0],[1,0]],[[532650,403841],[17,1671],[168,1611],[-58,3853],[708,4747],[640,3012],[197,2833],[515,4470],[518,1560],[601,2377],[712,1317],[301,53],[488,705],[383,1174],[394,1968],[83,796],[195,4671],[-244,1867],[-647,2009],[-900,3809],[-130,1905],[-53,307],[-42,156],[-335,1362],[901,1894],[189,808],[-77,984],[-145,1163],[-704,2854],[-552,2907],[-87,1025],[-1402,5184],[-75,753],[1336,413],[137,93],[709,843]],[[536391,470995],[-21,149],[-203,37],[-1705,-761],[-586,1322]],[[533876,471742],[-143,724],[104,540],[136,37],[-22,453],[-239,1518],[-408,1246]],[[533304,476260],[-377,1054],[-89,1098],[-390,1093],[-923,1975],[-545,922]],[[530980,482402],[-802,2200],[-942,2171],[-663,1364],[-1087,1769],[-678,1506],[-1102,3745],[-1162,5184],[-117,1124],[254,-71],[595,309],[541,1738],[270,3690],[319,-370],[708,-261],[393,304],[67,115],[-13,78],[-50,-44],[-1002,574],[-646,1339],[47,594],[434,251],[302,2072],[202,295]],[[526848,512078],[-234,-48],[-462,289],[-60,837],[558,1950],[539,2629],[7,1530],[88,424]],[[527284,519689],[2,1259],[289,2563],[-543,2860],[-207,2174],[-463,747],[-776,63],[-635,661],[-408,2989],[-305,-220],[-57,-152],[57,-214],[-86,-108],[-496,81],[-48,693],[77,705]],[[523685,533790],[-120,-262],[-1020,-860],[-2908,-648],[-1009,-571],[-1708,-395],[-619,647],[-474,790],[-313,809],[-625,2994],[-15,1367],[-1340,3690],[-1081,1843],[-368,262],[-1381,385],[-3180,-355]],[[507524,543486],[-1564,-263],[-1414,-559]],[[504546,542664],[-1218,-736]],[[503328,541928],[-332,-400],[-233,-839],[-1129,-734],[-1500,-593],[-2270,-2524],[-1858,-1109],[-1722,-1887],[-150,63],[-434,852],[-212,186],[-2116,954]],[[491372,535897],[-2596,890],[-5780,-1438],[47,-188],[-3408,-3199],[-544,-373]],[[479091,531589],[-553,77],[-1790,1584],[-2386,2814],[-587,995],[-1733,3641],[-3613,5212],[-372,815]],[[468057,546727],[-161,425],[-2358,2570],[-190,1098],[-20,792],[-287,-387],[-380,191],[-589,997],[-58,169],[152,169],[-485,1712],[-241,-174],[-340,1282],[-22,408],[248,-4],[201,-204],[561,651],[-521,373],[-153,1225],[112,79],[-475,1130]],[[463051,559229],[59,671],[-85,600],[-850,1841],[-189,2167],[-961,1087],[-48,218],[-99,-6],[-9,-280],[-276,-121],[-1298,2270],[-12,458],[325,1604],[-564,-568],[-181,603],[-20,631],[437,590],[-106,48],[-251,-381],[-168,-25],[-216,498]],[[458539,571134],[-6,-26],[-86,-359],[-21,-62],[-380,-97],[-171,695],[-676,773],[-254,697],[204,934],[551,807],[288,62],[-429,275],[-347,-564],[-371,542],[-28,241],[271,738],[825,261],[428,405],[-26,240],[-910,-195],[-679,-628],[-892,268],[-112,229],[-378,-230],[-336,69],[-391,660],[39,814],[-1074,1027]],[[453578,578710],[-138,1204],[41,3104]],[[453481,583018],[-171,1586],[362,895],[287,-149],[-88,-141],[113,-746],[307,-235],[282,33],[350,293],[309,566],[144,127],[-301,-78],[-345,-488],[-323,-112],[-172,193],[-238,1423]],[[453997,586185],[-59,1440],[-1890,5106],[1791,5367],[241,1172],[62,1437]],[[454142,600707],[-20,1109],[208,2225],[947,4943],[193,2819],[-70,3065],[-337,2572],[-812,3146],[180,1013],[334,864],[136,2365],[-45,860],[-667,2602],[-98,48],[-11,-1029],[-397,795],[-668,2757],[-246,-905],[-131,-1376]],[[452638,628580],[-115,500],[359,5437],[414,2216],[360,814],[195,-137],[333,341],[1535,7082],[301,2036],[1600,3175],[623,812],[412,1110],[148,1198],[-34,1649],[61,634],[1179,5584],[1219,1301],[1067,1467],[1125,5524]],[[463420,669323],[507,1235],[2499,1215],[1277,1047],[2229,3540],[875,1016],[826,1742],[1179,3238],[299,1171],[203,1727],[-302,1085],[-307,477],[-42,3011],[85,1770],[377,1496],[808,1823],[341,1064],[23,565],[513,2601],[1580,3218],[3082,2667],[990,998],[333,524],[506,1125],[1000,3406],[1102,5460],[351,843],[1295,667],[28,-183],[79,-62],[27,-926],[314,-998],[774,-1238],[719,-773],[1040,-217],[1068,434],[908,-66],[1792,528],[-40,-226],[107,-54],[74,-738],[244,-263],[451,-71],[580,254],[642,-290]],[[493856,713165],[652,-62],[537,267],[1177,1176],[227,262],[212,1053],[295,520],[836,801],[1348,504],[163,-235],[429,-109],[341,412],[490,1429],[379,474],[1751,1600],[1017,519],[2976,376],[3649,1564],[711,163],[2279,-93],[708,-598],[67,-224],[1198,-358],[2070,1706],[885,231],[855,-624],[702,21],[332,525],[8,176],[-217,297],[70,35],[758,-226],[792,-938],[790,-77],[1662,396]],[[524005,724128],[301,119],[1337,1519],[1391,748],[370,-83],[48,-327],[-296,-394],[119,-397],[282,153],[50,246],[-78,287],[752,-273],[110,-244],[-24,-1157],[200,-1108],[285,-409],[415,237],[1033,1618],[358,304],[88,-226],[107,-1221],[-684,-1632],[-856,-1057],[-174,-644],[-66,-789],[51,-525],[440,-1357],[800,-933],[348,-1057],[182,-1373],[-606,-2282],[-460,-1070],[-525,-933],[-1194,-1279],[-284,-868],[13,-281],[77,-723],[183,-600],[630,-1110],[1154,-1365],[436,306],[20,563],[228,96],[147,-124],[161,-429],[86,-1336],[-133,-165],[274,-493],[1022,-243]],[[532123,701817],[2191,-2023],[1070,-177],[1024,462],[820,67],[1723,-913],[1003,-893],[1949,-983],[735,-1934],[89,-1140],[407,-1697],[337,-877],[444,-551],[967,-676],[1812,-299],[1488,-691],[2206,-1687],[1520,-2309],[977,-798],[614,61],[1016,837],[723,1302],[489,1286],[270,1130],[39,672],[-65,448],[-364,1061],[-247,2332],[47,809],[577,1641],[642,1156],[763,967],[1113,1030],[1421,731],[591,203],[1062,-62],[2342,-1507],[318,-319],[31,-700],[-83,-986],[375,-551],[2051,-930],[296,-304],[1105,-115],[626,173],[660,-312],[247,-362],[309,-1528]],[[569853,692861],[61,-663],[297,-197],[639,67],[484,309],[1135,155],[3304,-1342],[1041,-1112],[688,-393],[1749,-365],[438,-279],[602,-741],[456,-353],[424,113],[759,623],[1610,2107],[981,995],[948,342],[-61,-208],[-535,-404],[-24,-186],[1138,340],[409,241],[40,202],[2030,-153],[-161,-1250],[681,-1205],[137,-54],[547,348],[588,-93],[652,-512],[665,331],[1217,15],[934,225],[886,585],[440,581]],[[595052,690930],[12,24],[746,1585]],[[595810,692539],[412,1303],[360,1650],[864,4839],[64,1066]],[[597510,701397],[1003,3990],[490,2588],[716,1537],[213,986]],[[599932,710498],[-204,1157],[-40,1421],[-268,2581],[104,2026],[247,468]],[[599771,718151],[168,532],[-545,1789],[413,814],[738,872],[54,325],[-48,781],[-224,523],[-310,285],[-795,-992],[-246,-888],[-226,-248],[-744,43],[-1346,1326],[-392,22],[-1134,-1464],[-358,-689],[-109,-524],[-359,-527],[-3254,-1401],[-728,415],[-286,350],[-332,479],[-795,1810],[-1739,1422],[-907,392],[-1015,201],[-201,-221],[-119,-295],[-55,-850],[-409,-2337],[-295,302],[-286,43],[-1048,-823],[-459,-143],[-801,505],[-720,872],[-89,1742],[-375,388],[-200,-290],[-1665,920],[-74,-123],[-13,-124],[40,-192],[-749,-986],[287,686],[-6,400],[-1313,-677],[-399,-130],[-266,154],[-32,143],[313,278],[863,259],[957,796],[543,542],[4,130],[-2757,-285],[617,753],[168,861],[-798,483],[-324,1309],[50,861],[-70,1595],[-1059,973],[-542,178],[-306,-96],[-747,582],[101,438],[259,-194],[343,578],[15,154],[-210,258],[539,-45],[179,-741],[1206,438],[118,194],[-552,5],[-653,1234],[19,440],[508,262],[279,457],[12,473],[-539,634],[-198,1904],[463,699],[19,532],[-933,-173],[-1279,-546],[-214,146],[429,3116],[1342,2151],[1579,573],[124,-121],[34,-182],[-62,-79],[68,-194],[580,-402],[626,37],[323,392],[-163,160],[545,283],[2881,-507],[267,437],[-191,243],[-456,-54],[-375,404],[747,652],[1388,267],[-1216,1402],[-238,627],[148,600],[1056,347],[3994,-717],[1023,196],[322,451],[62,460],[496,655],[2546,2508],[1666,864],[1267,310],[3028,-320],[476,124],[811,-441],[257,-653],[731,-760],[328,-96],[516,227],[977,-974],[335,-897],[420,-602],[306,17],[286,523],[1166,-537],[465,-645],[681,-399],[2595,-970],[443,30],[763,510],[1633,534],[2188,-1060],[2571,1972],[752,766],[469,844]],[[615408,751201],[349,811],[88,2554],[-497,2618],[-661,1501],[-739,1243],[-412,419],[-727,141],[-698,406],[-351,929],[-626,396]],[[611134,762219],[-1078,1755],[-1071,1744],[-540,770],[-724,1031],[-2944,2158],[-2465,2762],[-313,1401],[721,257],[432,-307],[30,-21],[22,-3],[536,-75],[94,54],[416,240],[153,275],[3,36],[38,503],[263,1107],[319,713],[244,546],[405,451],[146,163],[69,-27],[83,-32],[228,893],[159,622],[-524,769],[-325,60],[27,-161],[-3,-1],[-67,-23],[-74,95],[-105,134],[-416,1442],[-46,161],[1718,-148],[1549,1760],[950,550],[139,81],[-190,1136],[-101,176],[-254,29],[-182,-67],[-245,-89],[-46,-383],[-175,-76],[-158,-69],[-1638,-322]],[[606194,784289],[-268,-408],[-100,55],[-351,196],[-870,-2],[-2470,-1990],[-807,-265],[-784,-258],[-763,-63],[-258,-206],[-126,-100],[-406,-505],[-837,-1039],[-302,632],[-184,-242],[-904,-1187],[-29,-101],[-44,-155],[43,-343],[66,-523],[304,-1285],[53,-224],[799,-1887],[395,-614],[137,-213],[14,-9],[192,-120],[793,495],[879,548],[160,31],[249,49],[848,-210],[20,-39],[156,-322],[-47,-79],[-62,-104],[-233,4],[-101,-760],[-92,-685],[-157,-177],[-71,-80],[-371,-136],[-736,77],[-514,53],[-1126,-144],[-527,-494],[-676,-633],[-330,-76],[-279,-64],[-699,-552],[-278,-656],[-151,-356],[-586,-700],[-389,-232],[-681,11],[-692,687],[-151,244],[-123,200],[301,198],[355,1714],[-54,489],[-38,350],[-254,613],[-565,422],[-916,685],[-861,-159],[-392,195],[-37,19],[-8,45],[-26,159],[7,15],[191,414],[598,626],[299,312],[910,837],[1232,680],[319,291],[-29,188],[-315,715],[-756,347],[-482,221],[-1804,-587],[-527,371],[-1275,899],[-409,1181],[521,4],[1215,8],[-171,388],[-913,705],[-199,153],[-1416,-292],[-714,-147],[-437,-198],[-482,-218],[-140,-408],[-44,-670],[-237,-551],[-426,-988],[-548,-1023],[-180,-336],[-1316,-1604],[-106,69],[-153,476],[234,-1622],[-56,-1154],[-66,-87],[-88,-116]],[[582469,772962],[-33,-270],[-22,-172],[-582,-1794],[-14,-42],[-1027,-404],[-680,-1448],[-371,-788],[-95,-437],[-100,-455],[-58,-1039],[-102,-1804]],[[579385,764309],[47,-1022],[-517,-1023],[-689,104],[-25,-29],[-154,-178],[-401,-1177],[-149,-1867],[-458,-810],[-534,-943],[-6,-435],[-3,-214],[604,-715],[654,-1581],[51,-122],[27,-169],[33,-206]],[[577865,753922],[-145,-874],[335,-1196],[671,-964],[1512,-1142],[424,-120],[97,-465],[-106,-715],[-437,-485],[-564,-48],[-1487,615],[-1733,-549],[-1071,-2145],[-1215,-970],[-862,-1416],[-37,-422],[-502,-571],[-60,73],[291,1739],[902,892],[-99,669],[-1243,-88],[-124,167],[-89,620]],[[572323,746527],[-12,26],[-315,718],[-617,72],[-520,61],[-395,194],[-278,136],[-331,276],[54,112],[-61,59],[-12,11],[-2376,-1175],[-142,-14],[-1101,-111],[-206,-165],[-68,-54],[-95,-469],[363,-889],[855,-1367],[186,-298],[-810,751],[-509,-104],[-46,-170],[-45,-168],[92,-282],[105,-218],[88,-69],[-25,-706],[-375,896],[-287,130],[-417,188],[-192,-424],[380,-900],[-385,108],[-536,1233],[-730,2087],[-622,-791],[-92,-116],[-110,-1141],[-82,-851],[98,-631],[19,-122],[47,-104],[1844,-4133],[50,-165],[157,-525],[-132,-248],[-511,-339],[-100,20],[-70,14],[13,85],[36,236],[90,85],[9,-214],[265,133],[31,244],[-38,95],[-237,592],[-507,313],[-322,-519],[0,-96],[0,-209],[81,-327],[11,-44],[355,-324],[234,-358],[-6,-31],[-21,-106],[-211,-412],[-588,-436],[-208,22],[325,-558],[189,-212],[616,-691],[759,-611],[303,-244],[898,-938],[27,-43],[667,-1053],[49,-1843],[12,-458],[-114,-541],[-273,71],[-224,491],[-725,1591],[-12,0],[-393,-27],[-1010,-537],[-138,-73],[343,-1791],[309,-346],[132,-149],[78,62],[46,35],[-13,78],[-12,68],[222,-420],[-276,-468],[-395,-669],[-203,827],[-959,818],[-157,-166],[70,-638],[32,-124],[388,-1519],[857,-4258],[-522,695],[-515,686],[-1194,25],[-110,2],[-656,1973],[-260,5],[-281,-259],[33,-1027],[-725,513],[-29,1615],[-10,516],[-404,1151],[-425,1213],[-499,963],[145,881],[252,654],[404,617],[763,582],[969,-113],[1872,-1562],[336,-59],[210,-36],[451,501],[-280,783],[-36,101],[-1720,864],[-891,83],[-1058,-169],[-1613,487],[-279,1052],[-77,294],[-67,116],[-230,398],[85,681],[57,455],[-38,240],[-43,275],[-536,-97],[-423,713],[-557,939],[-566,2077],[-163,120],[-253,187]],[[555578,740398],[-8,1049],[0,10],[-445,1043],[-700,664],[-343,326],[-500,1236],[132,-3],[37,-1],[297,4271],[369,2981],[-5,957],[-191,158],[-231,190],[-183,-169]],[[553807,753110],[-242,266],[-111,122],[-988,2116],[-81,214],[-267,705],[-25,388],[-164,96],[-153,-162],[-319,-337]],[[551457,756518],[-1800,2084],[-759,438],[-1285,741],[399,-75],[465,-87],[548,-333]],[[549025,759286],[-139,215],[-50,77]],[[548836,759578],[-407,527],[-1719,2224],[-384,236],[-564,345],[-992,-173],[-402,245],[-128,286],[15,302],[20,387],[-234,630],[-5,12],[-165,52],[-396,124],[-488,602],[-445,813],[-457,834],[-25,115],[-39,178],[77,114],[459,204],[-777,1382],[-72,128],[-134,330],[-200,495],[-46,616],[69,610],[-260,1294],[-710,926],[-448,294],[-190,125],[-63,-153],[-59,-147],[-306,-1660],[-2,-14],[-505,-1142],[-284,-75],[-68,104],[-139,209],[-29,418],[-39,89],[-484,1092],[-325,2047],[-5,32],[26,67],[20,52],[211,-163]],[[537738,774591],[381,686]],[[538119,775277],[155,130],[-12,81],[-27,177],[-12,22],[-350,599],[-265,157],[-337,-52],[-548,-83],[-190,-300],[-328,-519],[-920,-645],[-631,-234],[123,361],[-47,151],[-615,-571],[-193,-1043],[8,-194],[11,-259],[257,-588],[65,-147],[81,-1722],[-130,235],[-100,-78],[-40,-31],[-75,-785],[153,-1440],[271,-1381],[622,-1042],[56,-93],[1403,-1497],[724,-588],[348,-282],[96,-169],[101,-175],[269,-1063],[201,-788],[512,-2737],[259,-848],[46,-150],[43,-89],[342,-712],[128,-198],[1310,-2021],[818,-688],[497,-417],[484,-103],[1703,248],[55,8],[-142,-1785],[-132,-312],[-15,-37],[136,-588],[31,-131],[1123,-921],[2695,-2210],[1419,-1354],[134,-127],[41,-64],[1422,-2220],[233,-806],[47,-162],[-347,-1863],[-60,-63],[-76,-79],[-263,201],[-224,172],[-366,515],[-104,282],[18,356],[17,338],[-208,528],[-190,482],[-631,137],[-1441,1275],[-291,-91],[-318,-403],[-716,-1870],[-98,-475],[-335,-1631],[52,-276],[62,-324],[357,-230],[463,-297],[807,-973],[70,-961],[90,-1247],[-1764,-1955],[-233,-2178],[-1091,-2424],[-248,-14],[-575,-33],[-239,225],[-122,377],[-1,424],[0,567],[1288,3118],[308,1286],[-402,1367],[-755,4127],[-706,806],[-202,230],[-577,290],[-338,330],[-551,537],[-19,75],[-26,104],[46,221],[18,87],[135,234],[-251,612],[-509,1240],[-248,53],[-434,93],[-1337,1590],[-433,1189],[-12,34],[-17,26],[-267,424],[-444,108],[-588,143],[-678,-227],[-997,1027],[-499,514],[-1643,2848],[-767,1328],[-1279,1638],[-177,226],[-55,85],[-1576,2421],[-673,3671],[-323,1758],[-342,732],[-909,719],[-1808,1430],[-1089,394],[-381,-384],[-435,-436],[-302,-586],[-99,-191],[-82,-244],[-305,-896],[-196,-292],[-54,-81],[-460,-373],[-1061,-318]],[[520916,764576],[-252,-206]],[[520664,764370],[-29,-103],[-29,-42]],[[520606,764225],[-704,-404],[-987,-1427],[-562,-1445],[-746,-364],[-537,-263],[-551,222],[-550,221],[-283,226],[-1182,944],[-346,194],[-305,171],[-931,-120],[-138,346],[-52,133],[-942,292],[-309,95],[-45,-10],[-750,-178],[-936,-836],[-491,-438],[-460,-680],[-154,-227],[-213,-921],[3,-113],[67,-2441],[316,-596]],[[508818,756606],[142,-2839],[-167,-519],[-2728,-3099],[-89,-101],[-3251,-1690],[-546,-995],[-209,-380],[119,-220],[-8,-139],[-40,-753],[-389,-477],[-356,-438],[-1071,-2398],[-288,-797],[-670,-1854],[-159,-636],[-29,-531],[139,-824],[134,-798],[267,-962],[332,-595],[42,-28],[529,-358],[78,-473],[-104,-137],[-638,-840],[-799,-635],[-92,-73],[-91,-194],[-158,-339],[-1071,-3634],[317,-639],[-963,-252],[-644,-169],[-279,-343],[-701,-862],[-201,-423],[-180,-379],[-243,-1195],[-102,-502],[-211,-493],[-207,-482],[-176,-197],[-1280,222],[-3924,-155],[-637,-161],[-542,-137],[-986,-797],[-1071,-867],[-451,-1503]],[[485166,719516],[-10,-280],[-11,115],[-16,165]],[[485129,719516],[-318,-613],[-382,-246],[-1148,1150],[-140,140],[-44,108],[-322,794],[-509,1713],[-130,438],[260,555],[-281,461],[-93,152],[-1300,1579],[-1317,-2]],[[479405,725745],[4,-61],[5,-100],[-1272,-1044],[-170,0],[-199,1],[-570,456],[-854,107],[-1100,-408],[-231,-86],[19,63],[225,749],[296,1669],[-24,1830],[-25,1849],[65,1791],[105,138],[130,172],[-27,245],[-29,265],[-19,66],[-36,125],[-475,-206],[-230,-243],[-167,-176],[-383,-79],[-46,-9],[-118,1431],[686,98],[448,2100],[-19,-8],[-211,-86],[-345,-952],[-201,-887],[-187,-14],[-722,-53],[-65,307],[-16,77],[217,1545],[110,787],[64,287],[283,1266],[416,921],[70,156],[485,2641],[19,718],[11,417],[379,2220],[31,178],[41,26],[58,35],[108,398],[50,517],[-5,135],[-68,1825],[-495,3214],[-20,129],[39,311],[112,917]],[[475552,753515],[-225,-182],[-14,977],[262,875],[145,2695],[-75,16],[-126,27],[-155,-121],[-140,-110],[-924,1637],[-96,247],[36,504],[46,100],[417,901],[384,398],[15,15],[461,183],[874,346],[166,244],[256,377],[93,517],[11,60],[1084,1229],[330,18],[339,19],[355,-188],[822,-999],[315,-51],[2846,20],[457,303],[166,110],[3512,-1389],[1155,24],[1529,569],[458,-294],[14,-10],[21,-6],[1260,-364],[361,314],[334,32],[52,4],[850,-646],[1124,-52],[88,-4],[603,154]],[[495038,762014],[512,517],[248,688],[117,325],[211,1645],[296,2300],[570,2176],[174,61],[-76,134],[-314,560],[-49,-117],[-103,-244],[-65,465],[92,1637],[136,2431],[66,217],[199,310],[552,-1038],[258,-935],[255,-925],[170,-324],[48,-46],[57,97],[-235,1024],[-308,1343],[-202,446],[-584,688],[-55,1823],[18,120],[50,340],[-321,1281],[-75,223],[-38,114],[-1635,1204],[-361,851],[-350,827],[-51,619],[-116,1396],[-127,507],[-58,232],[-64,67],[-59,62],[-207,-128],[-26,14],[-629,356],[13,813],[8,507],[-388,532],[-271,105],[-659,-336],[-78,-40],[-870,801],[-1086,544],[-453,227],[-771,251],[-467,-236],[-711,1048],[404,522],[416,1420],[-1310,-51],[-5,686],[-3,364],[125,289],[459,305],[389,258],[425,124],[442,130],[470,-213],[1369,935],[132,40],[750,228],[729,-1123],[64,-32],[852,-421],[415,140],[389,132],[2338,141],[-452,2005],[-683,2423],[-214,1811],[550,-140],[575,-146],[539,-515],[-21,-282],[507,-1041],[28,4],[595,89],[1361,-443],[475,-154],[651,266],[466,431],[334,307],[-458,81],[-134,263],[48,165],[296,1022],[1425,992],[890,259],[254,168],[246,162],[282,402],[721,1028],[5,2136],[2,576],[24,230],[99,946],[60,64],[396,427],[1753,638],[374,136]],[[507070,807757],[614,527],[862,739],[798,395]],[[509344,809418],[55,29],[389,206],[178,-101],[189,-107],[1618,-151]],[[511773,809294],[5,81],[5,66]],[[511783,809441],[-121,192],[-743,191],[-25,-75],[-57,-178],[-120,-22],[-124,-23],[-250,123],[-476,235],[-232,370],[-89,142],[402,360],[719,-74],[449,-47],[702,483],[-6,3],[-491,278],[-203,545],[713,-386],[225,-102],[397,-179],[436,151],[-232,18],[-292,22],[-542,364],[-434,291],[-238,798],[327,213],[576,906],[477,1149],[21,76],[194,684],[71,500],[289,2026],[226,226],[239,-51],[221,-47],[907,-1100]],[[514699,817503],[10,-297],[-599,-1143]],[[514110,816063],[-547,-490],[-96,75],[-9,1],[-207,31],[20,-148],[949,-429]],[[514220,815103],[1215,1533]],[[515435,816636],[123,311],[27,69]],[[515585,817016],[117,739],[45,287],[-724,598]],[[515023,818640],[-37,578]],[[514986,819218],[-31,474],[88,341],[81,313],[203,245],[223,268],[1212,595],[736,120],[956,156],[1577,-1297]],[[520031,820433],[134,551],[-641,48],[-45,109],[-40,100],[68,570],[39,327],[578,859],[826,98],[1305,156],[396,-762],[8,-113],[19,-243],[-168,-103],[-31,-19],[13,2],[599,105],[697,1367],[384,753],[832,57],[218,16],[-1008,2052],[-96,195],[522,1693],[-446,978],[-663,913],[501,189]],[[524032,830331],[82,1640],[-11,298],[-23,601],[-82,358],[-38,165],[-428,361],[-420,353],[-74,-94],[-135,-172],[-276,235],[-46,200],[-52,221],[37,288],[173,1313],[243,-235],[302,347],[-14,264],[-240,627],[-128,183],[-63,89],[-243,1151],[-9,44],[-23,453],[15,108],[208,1535],[19,-154],[2,-16],[310,-345],[547,-333],[226,-137],[439,943],[268,576],[265,308],[194,-10],[243,-93],[40,-127],[65,-204],[-38,-517],[-11,-150],[346,-394],[141,-162],[20,6],[160,41],[16,139],[8,72],[-67,223],[-173,573],[-241,401],[-65,387],[-54,326],[60,226],[428,476],[324,40],[122,15],[119,-82],[111,-78],[157,68],[1059,460],[564,-575],[162,-438],[192,-1696],[779,-598],[22,2],[548,48],[216,-332],[140,-215],[-41,-194],[-81,-384],[-480,-987],[-14,-4],[-601,-178],[-188,81],[-67,30],[22,288],[-194,-153],[-394,-312],[-312,-1060],[-104,-355],[-22,-41],[-1112,-2081],[-39,-801],[-29,-596],[-330,-830],[-76,-190],[-76,-416],[258,-153],[499,-295],[25,-96],[65,-240],[-15,-160],[-19,-213],[-462,121],[-121,31],[-374,-279]],[[526168,829871],[766,-118],[582,-90],[83,-796],[-186,-384],[96,-118],[787,-968],[1274,-428],[45,-1],[497,-20],[312,274],[177,-22],[158,-20],[24,-517],[17,-370],[-179,-256],[-371,-527],[161,-721],[1351,-419],[103,289],[265,749],[1460,456],[1251,1805],[122,-15],[750,-95],[-459,-52],[-126,-47],[-60,-23],[-581,-339],[-125,-546],[211,-113],[37,-19],[-73,285],[441,428],[189,182],[680,27],[1613,-1773],[749,-410],[301,-798],[-159,-237],[38,-101],[453,-312],[789,-543]],[[539631,823168],[205,119],[552,-109],[569,1407],[155,414],[-20,68],[-21,69],[978,474],[356,173],[1007,339],[929,312],[231,236],[1008,1031],[1920,1294],[1168,437],[1052,393],[931,2],[316,1],[1041,-832],[33,-36],[127,-135],[123,-184],[-24,-172],[-358,589],[-616,468],[-118,90],[-20,-69],[-55,-182],[93,-341],[386,-1411],[368,-342],[116,-108],[29,-7],[656,-162],[353,35],[388,37],[385,146],[231,88],[448,363],[18,-24],[4,-5],[4,-1],[-95,-105],[-52,-57],[-781,-433],[-250,-116],[158,-325],[359,-42],[1092,1015]],[[555010,827570],[599,666]],[[555609,828236],[62,69],[258,640]],[[555929,828945],[-318,47]],[[555611,828992],[-190,28],[-56,1049],[76,302],[71,283],[1293,-38],[212,214],[493,498],[698,1196]],[[558208,832524],[36,-10]],[[558208,832524],[285,845],[110,685],[9,55],[-20,625],[-80,2450]],[[558512,837184],[-178,685],[-46,178],[-7,222],[-12,444],[129,1682],[87,1136],[96,145],[247,371],[649,1473],[17,715],[4,169],[241,501],[494,1024],[2528,1153],[1781,-3717],[176,-159],[730,-662],[506,-45],[147,64],[364,160],[671,583],[587,763],[50,65],[-52,1501],[-77,2229]],[[567644,847864],[365,1490],[-379,989],[-156,408],[-633,-617],[-459,319],[-348,243],[-222,450],[-391,791],[48,994],[-27,110],[-395,1617],[132,389],[146,434],[150,192],[119,152],[519,302],[113,66],[655,-81],[-21,398],[1182,672],[759,131],[620,106],[133,-2],[995,-19],[518,483],[288,268],[1138,-109],[2921,-939],[928,-126],[882,-119],[417,92],[120,165],[132,182]],[[577893,857295],[465,-590],[-293,-439]],[[577893,857295],[52,292],[91,509],[360,594],[2239,1106],[63,32],[24,235],[8,76],[8,7],[225,176],[522,-24],[1354,-414],[937,-286],[63,36],[63,37],[110,482],[21,92],[-66,64],[-783,763],[-749,274],[-411,151],[-544,-132],[-530,78],[-326,48],[-673,726],[-89,95],[-508,924],[134,-112],[183,-153],[49,22],[52,23],[56,690],[78,970],[-16,33],[-134,271],[-733,-735],[-597,-599],[-888,-222],[-308,235]],[[577230,863659],[910,1103]],[[577230,863659],[-164,-92],[-401,-225],[-1384,242],[-3021,-872],[-275,-206],[-661,161],[-2882,-1520],[-1740,-549],[-1744,-550],[-391,-173],[-220,-98],[48,252],[96,500],[-372,-167],[-274,-123],[124,827],[31,1274],[-161,35],[-142,-83],[-945,-554],[-256,176],[21,290],[210,448],[-67,69],[-138,141],[-1233,534],[-545,236],[-264,-326],[116,229],[64,411],[49,313],[-777,-539],[-499,600],[237,299],[-359,892],[-78,486],[-57,351],[339,723],[337,720],[-86,255],[114,1239],[129,422],[83,270],[-129,436],[-393,1334],[-173,2127],[-676,1517],[-43,897],[117,519],[37,162],[217,373],[450,102],[746,1949],[941,-74],[722,450],[229,142],[119,1023],[251,578],[383,210],[501,275],[326,611],[-168,276],[-174,-10],[-89,-5],[-151,244],[367,99],[1471,397],[592,1051],[113,200],[1711,2549],[1063,1582],[19,12],[516,316],[612,154],[132,33],[399,-284],[487,448],[-174,935],[-133,520],[113,1397],[-289,576],[-359,353],[-193,190],[-1567,733],[-921,431]],[[567094,894805],[-2663,-76],[-992,242],[-110,27],[-406,252],[-767,-171],[-20,-5],[-337,-734],[30,-558],[-104,-123],[-209,-249],[-747,-398],[-270,-198],[-512,-375],[-371,-261],[8,-51],[22,-152],[82,-63],[43,-34],[129,-843],[-224,-430],[-356,-684],[-317,-359],[-226,-636],[42,-378],[39,-354],[353,-660],[539,-472],[184,-319],[65,-113],[-371,-368],[-488,-483],[-2000,-2922],[-2209,-1506],[-482,-227],[-450,117],[-487,-802],[-392,-647],[-1121,-73],[-149,-544],[-236,-231],[-491,-484],[-80,-189],[-56,-133],[216,-116],[213,-114],[-29,-115],[-59,-231],[-602,11],[-130,-163],[7,-148],[7,-133],[167,94],[38,21],[-172,-301],[-402,0],[-146,0],[-607,1302],[-133,568],[-106,102],[-255,246],[-81,4],[439,-744],[76,-128],[280,-944],[129,-706],[101,-549],[-43,-77],[-49,-88],[-19,-44],[-328,-781],[-273,-213],[-49,-38],[-473,194],[-97,161],[-168,278],[-137,-220],[-137,-218],[126,-766],[39,-67],[220,-377],[-163,-3226],[-65,-416],[-456,215],[-135,64],[-262,-793],[88,-176],[36,-69],[46,-343],[149,-1115],[-103,-2038],[-1,-16],[12,-102],[160,-1324],[1420,-951],[759,92],[682,-862],[199,-252],[-32,-218],[-9,-59],[11,-28],[52,-125],[632,-995],[124,115],[48,44],[156,-73],[395,-185],[333,-1207],[-184,-611],[-416,-776],[-1111,-1169],[-1006,-147],[264,-434],[837,-764],[227,-404],[-444,-234],[-175,-92],[-139,-108],[-363,-282],[-314,-691],[-128,-279],[-147,83],[-171,686],[39,458],[-186,143],[-129,-67],[-509,-1646],[-683,-506],[-492,-364],[-1202,-219],[-314,40],[-776,100],[-70,-200],[92,-72],[69,-54],[695,104],[176,26],[2,-1],[418,-135],[613,-743],[-534,-326],[-344,117],[-237,81],[494,-730],[250,-613],[41,-609],[-136,-68],[-222,-402],[-471,-856],[24,-130],[79,-437],[4,-787],[1,-296],[-117,-247],[70,-1420],[-253,-924],[-29,-1374],[-220,-1027],[-156,-727],[-549,-1522],[-162,-447],[-780,-1015],[-414,145],[-175,62],[-1563,-211],[-759,-362],[-714,-342],[-596,-848],[-141,-430],[-10,-270],[-16,-409],[432,-874],[-28,-241],[-178,-305],[-281,-482],[-123,2],[-230,4],[-299,251],[-80,67],[-584,-42],[-1141,-515],[-684,203],[-469,139],[-45,161],[158,515],[-206,2055],[-842,1909],[-286,649],[532,-242],[115,180],[546,860],[-189,1332],[-491,493],[-1028,1967],[-202,894],[-165,732],[-163,411],[-786,1996],[-7,115],[-56,863],[258,1337],[8,1113],[-321,374],[-153,177],[-280,23],[-367,-391],[-64,-68],[-201,69],[-307,470],[46,572],[31,389],[-123,1186],[-181,746],[102,903]],[[531132,855010],[-33,294],[-40,350],[-390,-356],[-586,171],[-233,566],[-2,6],[112,321],[-120,149],[-147,612],[-50,207],[-204,1406],[204,240],[136,160],[42,-250],[129,700],[16,86],[-10,28],[-65,173],[-620,-104],[-64,-195],[-70,-210],[154,-826],[-57,-78],[-288,-388],[-140,-58],[-363,-151],[276,-482],[163,-283],[-99,-1502],[-16,-35],[-323,-693],[-282,-217],[-794,-46],[-4,17],[-37,146],[-287,207],[-294,211],[-82,-222],[-361,-990],[-371,-257],[31,-70],[30,-67],[-120,-320],[-110,-291],[-429,-504],[-1088,-1278],[-804,-975],[-182,-220],[-2027,-1294],[-497,-3],[-1311,357],[-223,6],[-239,7],[-20,200],[-73,745],[-1020,157],[-600,365],[-445,272],[-186,549],[-292,-5],[-604,562],[-275,700],[-112,283],[166,1833],[228,-219],[267,-256],[578,-317],[587,-322],[-82,640],[-133,-95],[-249,325],[-343,448],[804,1055],[-50,184],[-182,664],[182,523],[-845,17],[-338,-276],[-311,-253],[-20,-404],[-141,-296],[-138,-37],[-60,42],[-458,325],[-83,229],[-46,129],[-77,185],[-34,274],[-25,199],[215,682],[625,531],[45,-399],[32,-279],[541,381],[1635,1151],[73,109],[-724,-531],[-414,-32],[-765,472],[287,424],[418,144],[546,958],[-128,430],[70,160],[1192,1253],[289,-238],[20,-267],[359,576],[171,274],[-247,-31],[-335,-42],[-1103,-596],[-606,-684],[-279,-548],[-1,-350],[0,-134],[-420,-6],[-143,-2],[-155,666],[-81,344],[-568,-525],[-109,23],[-26,5],[-139,599],[-170,735],[35,313],[774,-126],[216,91],[163,68],[92,191],[79,1276],[-109,101],[-103,95],[-349,-188],[-80,-444],[-382,-277],[-306,-222],[-122,120],[-209,750],[-70,252],[162,-54],[427,-142],[78,103],[52,68],[-153,268],[-676,1186],[218,198],[371,336],[1377,373],[979,-38],[265,-122],[197,-91],[390,225],[452,260],[198,-47],[160,-39],[568,-415],[136,-100],[1124,403],[180,253],[78,111],[-324,363],[-156,177],[-6,-280],[17,-34],[136,-290],[-70,-58],[-101,-84],[-662,-121],[-537,139],[-511,134],[-1156,-44],[-1327,-49],[-1178,-552],[-291,201],[-410,283],[-386,563],[0,186],[475,191],[516,207],[768,118],[-1194,-106],[-185,402],[76,341],[42,186],[508,370],[20,64],[99,310],[-813,-24],[-159,739],[406,277],[359,246],[1160,64],[882,-219],[1293,-27],[648,341],[-1536,-94],[-751,155],[-1183,244],[-602,203],[89,130],[176,258],[-148,151],[-289,297],[191,401],[364,98],[225,61],[956,-332],[252,-87],[41,638],[570,442],[504,390],[435,207],[577,275],[237,-93],[316,-122],[180,-791],[156,-689],[13,32],[294,748],[-329,406],[-421,518],[-706,361],[-11,70],[-59,363],[204,255],[283,66],[125,29],[1116,-233],[578,-121],[860,745],[-418,112],[-403,108],[-1265,-185],[16,312],[11,197],[144,92],[69,44],[47,-16],[68,-22],[174,-40],[163,-38],[-297,233],[-365,-27],[-85,202],[-49,117],[25,130],[13,67],[371,306],[70,58],[529,54],[382,-414],[247,17],[129,9],[1057,187],[579,-898],[107,-165],[656,-508],[274,-212],[-41,368],[-1606,1636],[-160,-54],[-39,-13],[4,67],[6,101],[130,208],[170,273],[298,85],[372,-656],[32,-98],[244,-732],[292,-19],[291,-19],[-29,544],[-861,507],[-116,430],[-24,92],[101,1],[982,10],[495,390],[-42,371],[-49,432],[102,108],[261,151],[352,204],[638,144],[651,440],[312,581],[406,190],[435,-668],[250,-384],[446,-337],[464,-351],[95,253],[141,378],[1392,-60],[168,193],[0,3],[20,687],[-784,-254],[201,336],[533,448],[717,293],[894,365],[-126,115],[-380,346],[202,471],[190,441],[-569,261],[-671,-737],[-211,-232],[283,-81],[136,-253],[-252,-471],[-90,-167],[-2312,-1439],[-191,19],[-291,30],[-332,698],[13,394],[-333,-82],[-360,-89],[-32,303],[-3,25],[2,351],[0,8],[215,318],[756,358],[115,55],[288,932],[1080,1469],[186,416],[358,403],[552,250],[285,129],[2,5],[66,180],[-166,215],[138,193],[7,-6],[313,-270],[357,-947],[142,-376],[1291,1455],[-667,7],[-344,-568],[-25,-42],[-246,88],[-151,53],[-484,544],[0,3],[33,227],[122,65],[52,28],[703,-555],[94,411],[1107,863],[-262,547],[-1000,-645],[-94,450],[-22,104],[479,485],[840,671],[1226,980],[265,-298],[11,-62],[40,-208],[-533,-394],[844,201],[895,697],[397,475],[149,178],[-45,94],[-1571,-893],[10,44],[113,476],[-396,126],[-249,-108],[-435,-187],[361,637],[476,841],[224,104],[163,76],[553,2375],[503,331],[5,-3],[567,-366],[52,124],[-259,659],[-44,112],[-771,-125],[-20,112],[-3,20],[198,160],[250,203],[711,279],[746,293],[1222,-85],[719,626],[-944,-355],[-725,-104],[-560,-81],[-317,1094],[68,490],[67,481],[84,189],[232,523],[1023,713],[51,361],[31,74],[199,474],[522,280],[751,-82],[340,1226],[307,126],[62,26],[322,-74],[1443,41],[162,-54],[637,-209],[-13,-265],[-8,-145],[145,-74],[33,240],[32,243],[-348,306],[-508,446],[-954,-120],[-1060,-134],[566,1098],[1190,550],[223,102],[836,-859],[399,-410],[250,268],[-573,750],[-456,266],[-293,171],[576,941],[11,18],[89,2],[451,12],[575,-441],[57,115],[1,2],[-419,330],[-65,51],[-719,320],[-1078,-843],[-255,-78],[-273,-84],[-158,80],[-105,54],[504,397],[11,9],[728,915],[1162,309],[785,-162],[230,422],[-99,157],[-35,54],[-955,237],[-136,-6],[-37,-2],[-130,-64],[-223,-111],[110,-110],[-75,-132],[-193,84],[-153,67],[0,2],[-26,182],[154,187],[278,339],[650,247],[144,-384],[-38,-59],[-29,-47],[544,186],[80,67],[289,238],[621,-1754],[755,-439],[-314,287],[-122,111],[53,651],[17,207],[398,333],[-190,366],[-92,176],[-227,279],[-192,873],[1251,275],[1108,-165],[22,-4],[1664,247],[431,-74],[-185,52],[-1305,372],[-273,13],[-879,43],[-106,-106],[-95,-95],[-435,-58],[-519,-69],[-18,266],[74,357],[64,308],[86,127],[70,104],[2433,1085],[618,275],[95,-12],[275,-36],[-93,94],[-297,301],[-683,-245],[-60,99],[39,173],[61,269],[473,676],[392,145],[421,155],[343,421],[48,59],[38,249],[158,1025],[241,227],[210,-86],[153,-62],[68,-127],[412,-772],[945,151],[-647,187],[-291,336],[-236,273],[-6,189],[107,116],[309,67],[392,85],[553,-624],[462,-521],[10,66],[12,92],[-151,93],[-246,497],[-107,767],[175,259],[387,570],[1302,363],[301,-1544],[297,462],[-153,352],[153,299],[121,239],[1041,1111],[54,58],[136,-68],[84,-42],[58,-135],[108,-251],[-146,-717],[-378,-1854],[1186,496],[-171,1397],[833,453],[244,-441],[117,21],[291,325],[201,224],[-18,363],[256,27],[760,81],[1209,-1319],[438,78],[-241,711],[-262,774],[-1416,631],[-537,479],[-230,205],[655,347],[504,-137],[261,-71],[617,144],[685,161],[825,-210],[604,-379],[579,-364],[750,-1015],[682,77],[-178,975],[-132,726],[1380,1227],[728,269],[386,426],[77,93],[697,841],[-126,614],[367,461],[331,56],[397,67],[666,-226],[547,-500],[321,596],[732,-75],[571,-60],[73,-164],[59,-132],[-2312,-2033],[56,-96],[60,-102],[93,9],[90,8],[78,-397],[5,-26],[-180,-363],[-251,-504],[-146,-99],[-89,-61],[-81,-854],[77,-92],[119,-141],[448,113],[249,183],[682,1027],[-9,151],[-5,99],[448,887],[1148,1524],[857,835],[393,382],[392,179],[107,48],[152,-339],[1,-129],[4,-382],[-223,-546],[-438,-2041],[21,-53],[36,-96],[769,494],[355,228],[187,292],[277,909],[250,198],[735,582],[-182,277],[-108,166],[-162,18],[-303,33],[-187,183],[127,235],[186,346],[1390,272],[745,-70],[785,-73],[367,-205],[417,-233],[-165,-465],[-235,-247],[-300,-315],[-936,-555],[-900,-533],[1038,221],[122,-939],[1157,-242],[-30,247],[-18,152],[-97,122],[-8,10],[205,581],[223,635],[506,581],[556,180],[139,-36],[528,-139],[155,-202],[136,-176],[60,-309],[13,-67],[1804,-107],[501,-364],[451,-327],[1695,-843],[92,-45],[248,-448],[51,-437],[-1969,-793],[-1735,-466],[-1566,284],[-1679,304],[64,-107],[208,-346],[1449,-365],[1378,-347],[62,-166],[91,-244],[-456,-1068],[-64,-150],[1455,135],[344,300],[452,395],[1292,-324]],[[585618,918273],[750,-169],[413,-93],[233,-105],[283,-128],[2,-255],[53,9],[168,29],[1210,746],[-57,316],[-58,325],[570,-98],[854,-148],[1859,-702],[40,-57],[52,-75],[-72,-454],[-557,-406],[-106,-77],[-1662,345],[-210,311],[-12,17],[-85,-333],[-49,-189],[677,-456],[298,-200],[443,-199],[1010,-452],[587,190],[305,99],[142,11],[171,12],[93,-81],[99,-86],[-41,-258],[-20,-122],[-222,-177],[79,-304],[54,-209],[-599,-611],[-314,-321],[273,50],[632,114],[416,622],[-51,229],[-32,148],[299,112],[505,190],[1424,-67],[941,-290],[1264,-390],[124,22],[87,16],[-34,135],[-14,57],[231,157],[2613,-917],[175,-61],[3724,-2264],[1208,-1140],[1037,-979],[1430,-570],[1865,-1283],[501,97],[314,61],[97,-92],[1688,-1591],[319,52],[781,-434],[49,-108],[141,-315],[-75,-1004],[113,-458],[111,-452],[536,-612],[110,-126],[72,-481],[-278,-1065],[-149,-572],[-706,-796],[-1594,-1801],[-638,-449],[-436,-307],[-3843,-1168],[-896,-45],[-669,127],[-469,89],[-2760,1146],[-1425,121],[-2461,551],[-1141,804],[-1687,654],[-1769,687],[-356,18],[-272,14],[4,-219],[-119,-22],[-44,-8],[-88,44],[-196,97],[-1145,957],[-482,403],[-180,337],[114,280],[-596,147],[-881,217],[-451,-14],[-777,-23],[370,-142],[366,-141],[167,89],[36,19],[270,-226],[743,-622],[161,-374],[191,-442],[7,-71],[30,-324],[672,-332],[10,-289],[14,-428],[-194,-278],[1214,-352],[464,-17],[338,-13],[47,-199],[-39,-232],[-60,-358],[-425,-102],[-953,-227],[-89,-47],[-129,-66],[1692,263],[671,-351],[77,-111],[73,-106],[686,-46],[971,-739],[176,-134],[520,-912],[-44,-204],[-60,-280],[-40,-30],[-181,-137],[372,-1116],[-191,-522],[-466,-352],[-504,-379],[200,-340],[352,-598],[645,-1420],[38,-2773],[1,-36],[400,-339],[1052,-891],[750,405],[90,48],[121,-73],[402,-241],[1117,-1270],[96,-572],[150,-189],[1100,-399],[2057,-746],[1197,624],[232,255],[303,333],[-92,1976],[-554,617],[-111,-10],[-405,-39],[-891,-462],[-496,284],[-1601,1950],[-193,457],[-176,418],[-6,125],[-8,198],[403,471],[724,846],[560,89],[1488,-654],[1335,-1198],[329,-798],[533,163],[593,181],[551,-125],[361,-82],[489,-311],[1305,-829],[605,181],[1780,-297],[128,2],[168,3],[387,847],[-569,591],[-388,1312],[-467,316],[-1132,1662],[-59,87],[-5,377],[-7,538],[111,298],[104,279],[2906,2082],[582,418],[1240,572],[1296,1389],[90,193],[291,620],[316,164],[198,-77],[673,-263],[221,-281],[25,-31],[496,18],[1041,40],[840,-505],[364,-219],[206,-276],[55,-370],[24,-20],[955,-793],[27,211],[64,481],[614,1894],[511,1100],[27,702],[12,322],[-64,540],[-488,659],[-386,520],[-366,199],[-251,-49],[-177,-35],[-196,169],[-108,94],[47,436],[51,479],[730,1776],[230,560],[138,1262],[40,369],[17,1524],[-255,283],[-332,367],[-1710,1153],[-198,190],[-179,172],[-5,167],[241,2],[282,2],[844,-396],[1691,-365],[224,-49],[2167,-66],[1462,-346],[462,-182],[290,-114],[-149,53],[-172,62],[-36,-45],[-51,-64],[1579,-1590],[704,-1536],[-41,-441],[-3529,-539],[-98,-63],[-184,-118],[-921,-1257],[-176,-604],[8,-184],[6,-126],[985,-582],[568,-564],[395,-394],[79,-135],[505,-868],[376,-254],[231,-157],[1397,-16],[2860,518],[467,612],[18,387],[18,381],[363,2066],[82,155],[350,655],[2298,300],[-111,628],[-61,349],[330,15],[648,29],[1016,526],[1376,921],[2240,1500],[3429,1107],[128,-16],[181,-24],[89,-149],[76,-126],[98,-471],[-38,-33],[-248,-212],[193,-156],[224,-181],[726,433],[365,218],[92,188],[71,147],[-858,676],[-97,-52],[-97,-52],[-280,121],[696,401],[2287,1320],[442,141],[987,314],[1581,193],[194,-49],[186,-46],[-2627,-487],[-59,-163],[-3,-10],[69,-60],[73,-63],[538,-213],[212,-83],[-268,-2522],[-1055,-133],[-373,-48],[-26,-38],[-413,-599],[-20,-91],[-103,-473],[55,21],[265,102],[-17,111],[-14,88],[152,211],[595,56],[674,64],[387,-284],[690,-506],[2247,972],[-30,191],[-31,202],[26,47],[172,310],[512,402],[562,442],[657,175],[727,194],[752,12],[1124,19],[1000,-397],[400,-159],[86,8],[654,61],[431,343],[430,755],[564,402],[359,139],[2631,1022],[1154,-115],[-169,-1684],[-236,-97],[-54,-163],[-171,-522],[56,-762],[4,-48],[1146,-429],[166,18],[237,26],[265,165],[414,259],[69,175],[27,70],[-76,263],[135,340],[280,702],[339,86],[1174,295],[939,598],[755,-311],[-56,261],[-15,70],[-940,1236],[-296,389],[-16,25],[-1393,2183],[-99,266],[-67,183],[77,313],[153,102],[204,136],[638,-64],[160,-172],[147,-45],[113,-36],[101,36],[81,29],[-82,185],[-10,22],[-67,601],[-34,303],[481,310],[1920,-544],[3959,-427],[2550,-841],[1062,-351],[1950,-1420],[749,-374],[2395,-721],[-1235,201],[-168,28],[3083,-1418],[1910,-1378],[379,-362],[1810,-1729],[2,-360],[100,-144],[112,-161],[221,171],[453,350],[1041,2176],[170,354],[-335,1307],[-373,40],[-193,21],[-478,314],[-323,472],[-653,952],[-14,339],[-28,655],[-259,689],[-2651,1133],[-176,-133],[-367,-277],[27,-178],[9,-56],[253,-245],[63,-61],[-65,-41],[-123,-76],[-220,266],[-79,527],[-56,378],[55,839],[166,679],[190,373],[71,-22],[141,-44],[-211,-92],[33,-199],[411,-110],[357,76],[534,426],[-59,120],[-415,849],[-114,1059],[10,853],[470,1103],[-325,689],[-13,27],[-615,-39],[-676,684],[173,685],[40,156],[818,1343],[1348,755],[795,446],[336,305],[468,423],[564,822],[125,247],[49,97],[121,445],[310,1146],[312,1283],[469,1934],[397,634],[696,1114],[1109,44],[1,-2],[97,-158],[-110,-29],[-118,-31],[1051,-231],[4131,107],[3524,-1136],[-379,-127],[284,-2108],[-288,-1020],[-1133,-2768],[-404,-567],[-356,-148],[-213,-89],[-264,-340],[96,-370],[696,-925],[466,-396],[649,-247],[288,-619],[466,-1001],[-208,-2876],[-352,-1395],[-129,-507],[180,-958],[40,-3437],[-311,-716],[-8,-85],[-59,-582],[183,-682],[84,-310],[547,-650],[82,-97],[1847,-1303],[266,-369],[27,-139],[59,-299],[-67,-216],[-54,187],[-180,-110],[-197,-121],[-422,-589],[-438,-610],[-194,-679],[480,-1043],[-37,-369],[-440,-792],[-810,-606],[-2320,-3558],[-108,-122],[-464,-524],[-713,361],[-577,-499],[-2061,-538],[-578,-150],[-2158,534],[-566,39],[-1123,77],[628,-1485],[528,-448],[323,-276],[281,-102],[2335,-857],[1135,23],[1736,35],[516,-154],[327,-99],[110,-138],[165,-209],[761,-61],[122,43],[311,108],[166,201],[278,339],[8,75],[15,145],[-147,529],[363,730],[370,78],[335,70],[1295,793],[964,591],[801,761],[196,950],[90,432],[1206,1884],[937,804],[142,442],[53,1687],[-98,278],[-183,521],[-600,962],[-339,544],[134,860],[98,631],[12,26],[106,227],[176,154],[172,153],[1895,710],[1530,425],[678,189],[509,-3],[791,-6],[43,-143],[222,-737],[1703,-2153],[-109,-2123],[-57,-1104],[-268,-648],[1107,-1003],[136,-705],[199,-1025],[691,336],[-4,59],[-25,339],[204,113],[342,190],[466,164],[787,-127],[208,-92],[378,-167],[450,-533],[151,-178],[702,-464],[1258,-832],[853,52],[-1007,116],[-675,446],[-1240,821],[-5,8],[-423,624],[4,18],[71,319],[1110,-413],[903,-1045],[-25,60],[-110,261],[-430,474],[-314,347],[-459,342],[-479,356],[-2097,305],[-1238,181],[-239,109],[-281,128],[40,1411],[20,747],[234,280],[198,238],[585,174],[265,526],[141,280],[-943,3052],[-125,129],[-4521,2056],[-248,14],[-1042,57],[-764,-497],[-1794,-267],[-1402,-208],[-832,738],[-338,3600],[126,779],[121,746],[1419,2135],[125,831],[-91,275],[-29,87],[-320,399],[-238,423],[-1269,2254],[-525,596],[-521,358],[141,1206],[171,410],[376,903],[737,403],[673,366],[1081,411],[509,193],[1202,1035],[98,306],[122,377],[-23,882],[-178,766],[-98,423],[-240,547],[-176,213],[-139,168],[231,223],[185,178],[240,17],[912,-522],[342,-195],[256,-1269],[18,-283],[89,-1475],[-13,-30],[-536,-1196],[-276,-2333],[-140,-1181],[-96,-91],[107,-234],[112,-244],[217,-186],[91,-78],[1393,-540],[2313,-220],[2808,-268],[166,-115],[169,-117],[174,-699],[204,-39],[1127,-217],[129,302],[-8,43],[-27,158],[-333,1041],[-82,255],[-866,323],[-470,175],[-128,-70],[-173,-94],[-474,85],[-421,76],[-2643,1419],[-340,433],[-65,150],[-586,1367],[82,194],[1054,694],[1145,196],[1916,-1371],[703,-68],[768,289],[139,187],[256,346],[-56,195],[-27,94],[-398,426],[-94,100],[-846,56],[-226,-97],[-361,-156],[-148,28],[-169,32],[-44,232],[225,381],[70,117],[1003,557],[659,366],[493,1],[227,-182],[624,-308],[56,58],[7,8],[-40,107],[-35,25],[-455,211],[171,175],[93,94],[2803,-250],[719,-467],[1127,-500],[1267,-563],[1913,-1947],[627,-249],[304,-121],[1604,69],[1660,304],[312,57],[750,-264],[73,-90],[189,-232],[-910,-1316],[-931,-492],[-1137,-601],[-42,-1561],[128,-431],[70,-235],[-12,-89],[-145,-1146],[-301,-427],[-129,-183],[-238,-981],[114,-137],[390,-471],[14,-338],[47,-1091],[39,8],[41,8],[-17,221],[-11,152],[182,179],[490,111],[27,7],[519,-131],[783,-566],[114,-83],[-57,-235],[-23,-95],[1615,-1521],[906,-450],[978,-485],[280,-2],[265,-1],[387,272],[-85,69],[-409,334],[-531,219],[-619,255],[-770,790],[-1007,1033],[-723,1505],[671,-114],[614,159],[44,12],[180,190],[506,535],[-951,3058],[-557,744],[-125,614],[555,1243],[67,88],[288,377],[295,893],[-624,964],[-284,196],[-1793,442],[-680,877],[-22,130],[-22,132],[133,143],[-485,694],[-1081,393],[-401,48],[-1126,136],[-782,336],[-527,226],[-33,49],[-208,307],[-38,1123],[-10,313],[152,155],[127,128],[36,478],[28,362],[-606,1189],[-159,312],[-270,307],[-166,188],[1050,1645],[3057,463],[2800,94],[2280,77],[1536,273],[774,138],[2506,34],[322,220],[435,298],[797,115],[1873,273],[607,-119],[1052,1071],[15,145],[-1053,-63],[-495,285],[-36,211],[23,89],[45,170],[-282,250],[-1989,381],[-198,182],[12,113],[10,97],[582,325],[188,105],[1036,262],[910,-767],[11,-92],[14,-108],[276,-119],[1075,391],[42,78],[-188,392],[-19,10],[-33,18],[-103,-43],[13,-226],[-1172,141],[-316,373],[-365,432],[-889,345],[-627,64],[-664,68],[27,146],[64,350],[793,641],[117,-75],[1281,-818],[409,16],[376,14],[597,1030],[66,113],[122,120],[275,268],[509,196],[-107,360],[-1428,116],[-158,179],[14,138],[425,120],[365,103],[1340,-147],[835,-92],[258,50],[574,112],[1857,1591],[868,473],[305,85],[-25,-89],[-39,-140],[86,-38],[214,-95],[718,-1],[824,358],[-63,239],[197,139],[789,152],[1710,329],[1330,-42],[479,-15],[300,188],[457,287],[4372,678],[534,159],[1581,473],[-4,6],[-96,124],[-1877,-266],[-1166,-166],[-104,23],[-192,42],[-78,132],[-77,133],[230,543],[55,20],[201,73],[1233,-12],[1373,-14],[79,42],[-152,75],[92,145],[99,155],[2103,-16],[1854,264],[874,-170],[1004,-195],[3,-5],[57,-100],[-159,-228],[-193,-278],[342,-270],[1153,-30],[1088,-28],[931,154],[835,137],[830,392],[623,533],[2130,618],[1532,-943],[413,-28],[66,-4],[416,373],[-1312,967],[-201,148],[165,748],[2877,-104],[433,83],[987,190],[807,331],[546,924],[-187,229],[-4,28],[-186,1177],[260,72],[132,37],[106,530],[-204,-24],[12,11],[337,334],[1997,1464],[918,291],[632,586],[879,414],[508,239],[2152,484],[1056,39],[265,-187],[301,-83],[1333,-364],[1123,-98],[1141,-99],[259,-213],[413,-686],[-16,-91],[-27,-159],[-684,-9],[-580,-7],[-14,-624],[-352,-216],[-190,-117],[-2134,-328],[-1043,-343],[9,-36],[38,-10],[275,-69],[2347,31],[760,10],[10,-12],[253,-316],[199,12],[1252,75],[3037,-213],[240,-17],[57,-98],[178,-305],[-225,-641],[-2032,-1446],[-120,-13],[-254,-27],[363,-448],[74,-91],[1942,96],[813,40],[93,67],[1048,752],[397,165],[830,347],[1241,88],[811,57],[1387,-71],[223,-12],[178,-1],[1168,-10],[578,117],[563,115],[1126,-168],[1654,-289],[157,-259],[125,-206],[931,-687],[560,-413],[235,-16],[158,-11],[160,-101],[889,-566],[-462,-1471],[-95,-70],[821,9],[674,331],[397,194],[-329,245],[-135,16],[-287,35],[-152,240],[646,85],[259,35],[214,-242],[259,-295],[169,-805],[141,-668],[31,3],[786,83],[128,-298],[-113,-561],[-23,-115],[-94,-184],[-343,-675],[-413,-347],[-123,-104],[-352,-1],[19,137],[-127,185],[-369,537],[-1299,657],[-160,-50],[-232,-73],[205,-229],[888,-993],[1683,-389],[221,-731],[-54,-407],[-453,-597],[-1380,-1063],[-676,-521],[-952,-231],[-2116,-1310],[-3507,-1140],[-652,-588],[-198,-179],[-389,-88],[-1628,-368],[467,73],[1009,159],[67,-174],[36,-93],[-38,-98],[-149,-382],[-444,-295],[-315,-210],[-1073,-280],[-366,-95],[-298,-279],[-2004,-1871],[-1205,-236],[-749,-146],[-193,15],[-3447,270],[-287,-93],[145,-92],[235,-150],[1275,22],[899,-327],[42,-196],[11,-51],[-184,-306],[-406,-676],[-851,-287],[-402,19],[-390,17],[-225,-164],[-162,-118],[-477,-827],[-139,-718],[-1812,-1269],[173,-226],[604,-17],[995,648],[1192,1195],[615,618],[1076,-166],[885,65],[1703,125],[470,-56],[468,-56],[275,-176],[218,-140],[330,-9],[-135,624],[-50,232],[-650,88],[591,276],[1769,395],[1863,416],[2451,1211],[-73,180],[-198,488],[-919,-330],[-22,-3],[-1160,-142],[-173,388],[-244,548],[324,318],[701,690],[688,100],[194,28],[2551,-343],[274,-630],[405,-306],[170,-70],[809,-333],[1032,-171],[1297,-7],[548,134],[198,48],[245,354],[-263,523],[-11,22],[41,94],[77,175],[724,-624],[31,-46],[563,-848],[59,-247],[61,-260],[-21,-14],[-397,-267],[-285,-587],[229,-242],[753,-795],[999,249],[65,16],[68,233],[-170,-17],[-132,-13],[-704,457],[-265,480],[2067,557],[123,-16],[665,-90],[439,49],[555,61],[707,352],[488,242],[1639,-30],[2010,-202],[1129,-270],[470,-113],[4201,-252],[476,-399],[217,-180],[-547,-167],[-233,102],[-238,103],[-296,-146],[-130,-64],[-104,-98],[-89,-656],[77,-431],[331,-287],[2279,-691],[689,-209],[590,-118],[2830,-322],[540,-20],[4253,-157],[398,80],[257,52],[460,-105],[718,-163],[584,399],[396,606],[116,178],[101,523],[-734,1168],[193,1590],[382,43],[46,-38],[501,-412],[458,96],[441,403],[246,225],[441,138],[348,108],[1769,-474],[31,-55],[201,-360],[126,-480],[694,114],[229,-163],[302,-215],[513,-85],[158,-26],[490,267],[597,325],[268,-235],[27,-86],[70,-228],[-202,-454],[203,-203],[1258,148],[290,800],[2411,-450],[223,-179],[111,-262],[39,-94],[3435,-1484],[601,-478],[188,-150],[146,-195],[-497,-130],[-75,-225],[-154,-455],[-173,-648],[10,-92],[56,-514],[-1114,-146],[-142,-120],[10,-81],[32,-266],[153,-70],[140,-64],[1384,-262],[223,-512],[34,-323],[97,-917],[-428,-308],[-391,-95],[-173,-42],[-392,-8],[-1085,-24],[-127,-184],[-152,-221],[3,-339],[2,-272],[185,-277],[369,-551],[624,-100],[290,96],[121,41],[326,384],[-261,368],[-148,700],[11,-17],[775,-1246],[-22,-175],[-20,-155],[-1032,-218],[-275,-58],[-145,-260],[101,-350],[216,16],[303,21],[647,-411],[78,-236],[369,-1107],[2176,-1929],[2177,-1519],[376,70],[256,174],[291,197],[820,845],[610,1663],[957,2610],[6,10],[879,1372],[288,204],[281,200],[525,48],[502,47],[521,-475],[22,-87],[33,-131],[-764,612],[-399,-107],[-364,-98],[-125,-703],[35,-99],[29,-81],[1156,-1087],[878,-538],[681,-417],[1425,-336],[1104,163],[851,651],[692,294],[784,332],[1459,113],[562,-148],[635,-167],[249,-178],[1145,-456],[873,-349],[318,-209],[388,-256],[437,-480],[553,-115],[544,-114],[292,165],[-7,55],[-20,166],[-560,694],[416,942],[198,125],[1779,351],[350,-135],[473,-180],[57,-749],[811,-97],[1541,289],[75,91],[85,105],[-625,978],[-178,278],[-406,1205],[676,918],[298,104],[601,210],[99,80],[151,123],[-5,16],[-34,114],[-837,94],[-691,78],[-154,-27],[-131,-24],[-288,-230],[-255,-205],[-577,177],[-19,6],[-22,34],[-69,109],[-1,272],[-1,189],[285,469],[944,771],[2425,-115],[2068,701],[-588,645],[-722,794],[-43,116],[-48,131],[425,56],[886,-157],[736,-285],[1183,-458],[4611,-224],[1616,-224],[1137,-158],[3116,-521],[2647,-834],[720,-227],[1529,-198],[1263,-17],[1619,-22],[2459,-700],[387,-243],[1151,-722],[356,-448],[46,-58],[157,-541],[-120,-180],[-560,-233],[-652,-272],[-61,140],[-280,638],[-268,19],[-198,14],[-297,-373],[-337,-778],[-14,-33],[1071,-187],[1135,122],[482,-442],[423,-390],[1542,-1007],[676,34],[517,25],[150,-47],[376,-120],[799,-515],[180,-116],[882,-1452],[-453,-7],[-294,-5],[173,-202],[5,-6],[1830,-739],[3771,330],[1577,400],[1387,352],[1002,144],[2056,295],[3595,-73],[1827,-417],[1969,-449],[892,-395],[289,-129],[371,-236],[882,-561],[847,-929],[159,-331],[271,-565],[205,-788],[-168,-404],[-323,-779],[-394,-631],[-292,-469],[171,-191],[353,-394],[665,-390],[729,-153],[1635,-344],[121,-682],[-38,-922],[66,-670],[36,-15],[176,-73],[157,186],[130,152],[-276,535],[-63,122],[12,294],[106,111],[16,17],[33,18],[699,384],[80,-217],[-259,-605],[98,-175],[345,6],[1116,677],[1684,1020],[1608,152],[885,83],[2257,-6],[278,-201],[476,-346],[934,-234],[2572,55],[426,-131],[398,-122],[1451,-163],[1119,-126],[1942,1562],[399,146],[587,-415],[82,-58],[94,-216],[200,-461],[79,-395],[128,-643],[751,-1124],[2299,-725],[103,-340],[229,-758],[-10,-211],[160,-295],[42,-77],[511,-184],[118,-43],[1723,289],[1398,863],[559,580],[3,36],[18,180],[-1087,2829],[-645,150],[112,1680],[87,1288],[404,-23],[1269,-70],[3872,-857],[3873,-607],[6110,278],[381,-371],[476,-463],[1306,-583],[3169,-876],[2194,-606],[1645,-954],[18,-11],[305,-271]],[[998692,914653],[1307,-1165]],[[999999,890128],[-917,-858]],[[999082,889270],[-547,-512],[-1282,-503],[-402,-312],[-215,-167],[-2971,347],[-243,314],[-174,223],[-762,259],[-332,-9],[-1960,-55],[-272,207],[-257,194],[-417,14],[-476,16],[-735,-468],[-326,-208],[-1031,-277],[1595,79],[449,314],[94,228],[109,265],[185,-11],[404,-24],[579,-955],[97,-438],[454,-146],[311,-100],[1740,925],[413,-55],[36,-125],[3,-8],[-242,-737],[-68,-209],[18,-428],[198,-416],[870,-949],[1036,-381],[135,592],[144,632],[931,-2055],[202,-669],[216,-1096],[72,-369],[47,-879],[51,-166],[164,-530],[690,-1033],[1207,-2478],[147,-848],[-5,-17],[-102,-377],[-807,-1162],[-605,-871],[-2782,1478],[-1437,190],[-777,-113],[-828,-120],[-2470,-1389],[-1888,-1062],[-2170,-1560],[-618,-104],[-393,-65],[-1462,-636],[-1865,-1859],[-143,-105],[-1454,-1067],[-373,-432],[-399,-982],[-355,-388],[-800,-515],[-699,-450],[-2366,-1837],[-339,-741],[-108,-395],[-206,-752],[-62,-437],[-36,-260],[-191,-137],[-113,-81],[-21,-2],[-124,-12],[-719,784],[-259,478],[-65,119],[-64,205],[-362,1164],[-887,694],[-428,141],[-307,102],[-1731,210],[-447,54],[-1428,-572],[-2081,-832],[-581,-803],[-1748,-2413],[-513,-6],[698,3368],[-605,146],[-125,31],[-2137,-1678],[-83,-348],[-107,-447],[-468,-294],[-700,-440],[-152,454],[-78,235],[-105,94],[-674,605],[-280,-112],[-290,-558],[-722,172],[-1130,-776],[-547,-1048],[-259,-734],[-556,-2431],[-118,-1043],[-503,-559],[-971,-1081],[-177,-317],[-323,-577],[-586,-1423],[-310,-1171],[-17,-342],[-19,-383],[232,-793],[569,-491],[424,-87],[203,-42],[-14,247],[-10,169],[292,216],[363,267],[557,-284],[724,-369],[137,-252],[148,-272],[-273,-891],[-99,-180],[-143,-260],[-375,-330],[-444,-391],[-109,-227],[-40,-495],[78,-2324],[502,-974],[239,186],[80,62],[359,0],[43,-96],[66,-148],[230,-1944],[42,-354],[15,-722],[-494,-616],[-358,-445],[-388,193],[-258,129],[-577,990],[-508,-214],[-474,-200],[-212,-203],[-278,-266],[-542,-1653],[-304,-928],[-101,-486],[-41,-922],[184,-1409],[191,-585],[645,-1161],[9,-120],[42,-596],[-911,-1087],[-419,-310],[-782,-107],[-418,446],[-49,52],[-88,22],[-118,29],[-285,-66],[-428,-98],[-394,-292],[-449,-331],[-1427,-1721],[-105,-233],[-68,-151],[-100,-498],[-284,-1400],[402,-3125],[-451,-109],[-167,-40],[-417,138],[-1619,-1001],[-1163,-236],[-227,-812],[-96,-1752],[34,-816],[10,-255],[-126,-955],[-992,-2578],[-542,-1049],[-47,-90],[-1841,-2447],[-1413,-1649],[-7,-8],[-257,1085],[-289,1216],[-125,1442],[98,1878],[-161,1390],[-960,5106],[-485,4879],[-721,4628],[-77,745],[-287,2762],[-13,1158],[305,3045],[923,4633],[357,756],[1114,1067],[594,755],[610,1349],[158,603],[-24,407],[-194,663],[-104,361],[-95,93],[-109,110],[198,121],[484,296],[1212,74],[1785,1150],[1280,1228],[1336,1283],[783,1119],[1025,1464],[66,466],[-48,168],[-3,12],[161,439],[100,272],[1717,2055],[1271,1106],[2260,2761],[593,1212],[965,1322],[2393,1457],[1296,328],[342,87],[47,148],[85,272],[-25,1506],[128,634],[452,2245],[523,3607],[1107,1003],[254,40],[223,35],[1097,-268],[183,464],[-1434,971],[-180,123],[-473,86],[-918,-285],[-2313,-716],[-186,-480],[-50,-511],[-164,-1666],[-332,-1188],[-95,-342],[706,-443],[51,-556],[-263,-384],[-134,-196],[-278,-173],[-292,498],[26,85],[58,189],[-44,165],[-136,125],[-123,114],[-598,-324],[-867,-470],[-3572,-3819],[-468,-880],[-832,-453],[-576,-313],[-219,-22],[-273,-27],[392,1510],[-638,577],[-334,71],[-111,23],[-28,280],[-114,1153],[779,1239],[358,570],[364,1376],[-24,490],[-120,218],[-79,143],[-413,-299],[-173,-124],[-878,-962],[-323,-112],[-435,139],[-48,129],[-284,755],[-1414,74],[-68,4],[-1938,-603],[-1545,110],[-164,12],[-38,-13],[-275,-92],[-1214,-944],[-1044,-1429],[-389,-1065],[-1588,-1884],[-38,-693],[-2945,-2611],[-769,-1172],[-453,-689],[-513,-1537],[-104,-782],[37,-951],[609,-4],[268,-2],[-27,99],[-117,437],[1240,-295],[115,-111],[527,-509],[141,-456],[-55,-656],[-2,-21],[-89,-33],[-47,-18],[-3424,-452],[-1444,728],[-1047,-1398],[-317,-423],[-943,281],[-76,-12],[-1005,-162],[-60,-167],[-3,-8],[-365,-156],[-469,-41],[-1127,-99],[-62,28],[-145,68],[-267,546],[-382,779],[633,256],[348,140],[1106,-73],[479,-31],[724,313],[11,33],[36,115],[-411,385],[-25,23],[-331,118],[-757,270],[-155,294],[-186,355],[-305,353],[-209,240],[-883,67],[-160,12],[-418,-147],[-75,-177],[-728,-23],[-2,153],[-498,288],[-760,293],[-1699,657],[-534,-116],[-846,-676],[-398,-996],[-32,-144],[-60,-269],[143,-42],[51,-15],[-21,-289],[-19,-256],[-70,-89],[-114,-144],[-830,14],[-446,286],[-102,487],[-538,185],[-1000,-198],[-372,-507],[-488,-184],[-3025,1209],[-406,-433],[23,-290],[55,-673],[-16,-37],[-80,-186],[-874,-236],[-299,417],[21,527],[-121,578],[-173,15],[-529,49],[-2293,-257],[-4442,-87],[-1937,-941],[-703,-592],[-74,-63],[-518,-655],[-739,-1522],[-135,-182],[-390,-524],[-974,-773],[-417,-155],[-137,-156],[-615,-701],[-331,-793],[-366,-1270],[-2790,-3544],[-811,-563],[-424,-294],[-1599,-2130],[-911,-1415],[-20,-213],[-68,-754],[-959,-1366],[-201,-288],[-1058,-1128],[-2869,-3060],[-442,-928],[-336,-314],[-294,-275],[-1027,-656],[-554,-668],[-345,-416],[-102,-243],[-23,-55],[26,-338],[175,-335],[56,-106],[567,-403],[646,-459],[431,10],[1611,39],[1068,287],[104,-443],[-127,-920],[-397,-2864],[89,-674],[8,-61],[96,-90],[107,-101],[691,201],[246,72],[9,10],[185,205],[155,594],[120,460],[-166,47],[-217,62],[-112,333],[-71,211],[58,124],[43,92],[623,483],[427,331],[368,43],[279,33],[-445,-701],[-281,-442],[680,-958],[34,1],[355,17],[-638,-872],[-640,-874],[-185,-121],[-166,-107],[-149,-270],[70,-86],[202,-251],[1483,205],[1160,883],[20,42],[134,280],[94,-158],[166,-281],[-150,-301],[-276,-558],[-1,-80],[-1,-118],[90,6],[451,32],[219,283],[146,357],[191,468],[68,412],[154,933],[118,2054],[380,-202],[829,-441],[598,215],[517,185],[592,-346],[629,-568],[415,-375],[18,-32],[163,-289],[31,-164],[196,-1014],[531,-749],[1781,-1969],[284,-42],[177,-25],[70,-232],[174,-579],[-708,-975],[-123,5],[-123,5],[-779,786],[-211,3],[-20,-152],[1257,-1602],[214,-1092],[1,-360],[-59,-159],[-122,-328],[388,-1525],[272,-580],[-332,-1086],[-145,-475],[-1435,-3218],[-686,-2845],[-79,-585],[-58,-426],[-21,-1163],[147,-1398],[-93,-4677],[-181,-1189],[-224,-1477],[-28,-464],[-21,-347],[-461,-1981],[-243,-1043],[-997,-1414],[-1081,-1808],[-461,-1423],[-19,-58],[-142,-321],[-774,-1752],[-494,-850],[-553,-1691],[-186,-1022],[-700,-2090],[-255,-583],[-799,-1819],[-1303,-2271],[-621,-930],[-692,-1038],[-760,-1526],[-288,-577],[-1362,-2200],[-494,-1078],[-221,-483],[-320,-1189],[-80,-296],[-390,-595],[-317,-484],[-163,220],[-28,-1],[-45,-3],[-56,-733],[-58,-760],[-1866,-2005],[-1378,-1481],[-1647,-835],[-988,-290],[-367,383],[-23,23],[-486,380],[-347,211],[-243,149],[-319,-125],[-66,1381],[-12,261],[-29,9],[-1040,311],[43,481],[-345,-57],[-252,-41],[-401,-907],[-539,-1221],[-167,-556],[-397,-1324],[-760,120],[-139,22],[-351,-88],[-101,-25],[130,-206],[238,-376],[-445,-1298],[-149,229],[-28,493]],[[862886,756496],[-362,972]],[[862886,756496],[-140,-655],[-357,107],[-1003,-1406],[-1117,-2568],[-124,-954],[247,-1417],[9,-1730],[-3937,-5420],[-1271,-616],[-809,-747],[-210,-519],[-331,-1840],[-44,-798],[497,-776],[2001,-2360],[239,-341],[21,-429]],[[856557,734027],[464,-1718],[2204,-6132],[366,-2771],[25,-829],[-235,-2776],[-16,-1034],[239,-219],[130,219],[68,-766],[-313,-2528],[-477,-1450],[-338,-608],[-479,-258],[-721,144],[-219,213],[-348,-228],[-193,-272],[113,-924],[-285,-183],[-424,165],[-542,692],[-1187,-565],[62,-382],[99,-182],[78,81],[142,-682],[-378,260],[-244,579],[-191,-192],[-144,-549],[149,-1107],[-246,-643],[-456,482],[293,859],[-1426,-730],[-425,-952],[-351,-12],[-270,976],[-118,881],[115,153],[47,775],[-215,1652],[90,241],[305,2751],[293,804],[20,37],[0,-10],[425,1196],[-287,663],[-468,2870],[-878,858],[753,995],[-254,609],[252,90],[1039,-440],[91,243],[-750,3719],[380,1374]],[[851921,729466],[-1749,-77],[-930,608],[-420,-971],[-658,-495],[-72,158],[125,378],[229,326],[117,-47],[-294,182],[-510,88],[-172,1318],[-1258,261],[535,1277],[905,1741],[82,466],[-237,422],[10,472],[637,2115],[193,1919],[-49,135],[-2165,526],[-813,1771]],[[845427,742039],[-151,-20],[-37,-22],[-12,-191],[-155,-58],[-179,-464],[-401,-226],[-960,260],[-1923,-1125],[-1915,-1782],[-1273,-2004],[-882,-1082],[-1032,-680],[-127,1199],[1647,1186],[435,1411],[17,204],[-1060,260],[-72,253],[245,390],[26,740],[1225,2577],[837,2225],[-333,1001],[-991,1727],[-879,-348],[-793,200],[-549,-523],[-1368,-3010],[-1178,-1440],[-1581,-1223],[-498,-902],[-426,-2019],[-563,-1123],[-1425,-491],[-803,260],[-132,291],[-291,152],[-496,-226],[-338,-555],[-577,-2420],[487,-1861],[361,-626],[731,-762],[1124,-158],[835,581],[400,-859],[208,-875],[86,-1355],[-268,-701],[73,-1647],[691,-676],[1336,-195],[478,541],[69,388],[1207,2300],[1147,858],[290,-24],[197,-204],[1789,-2176],[877,208],[1800,-394],[101,-843],[-125,-1691],[-39,-259],[-312,-348],[-236,-162],[-383,68],[60,902],[-797,-204],[-466,-591],[-1327,-927],[-1096,-274],[-179,-195],[-99,-161],[111,-732],[-359,-2047],[-1064,-442],[192,658],[-126,627],[-555,-413],[-116,-443],[425,-837],[-82,-277],[-1257,-1896],[-1506,-3340],[-103,-988],[123,-704],[2985,-2816],[466,-3178],[1468,-7150],[2045,-3054],[422,-1397],[19,-482],[-227,-69],[-584,328],[-423,529],[-1563,588],[-253,461],[-537,349],[-218,62],[-301,-232],[-280,-462],[22,-159],[330,118],[48,97],[964,-605],[1204,-1529],[1326,-1932],[414,-1344],[123,-717],[-135,-493],[-246,35],[-991,-578],[-2107,-2195],[-694,-72],[-376,-657],[149,-289],[1004,-778],[453,224],[593,658],[1205,-299],[1272,-1798],[-232,-927],[-465,-1027],[-597,-100],[-150,-516],[20,-194],[210,6],[680,823],[523,-113],[34,-2039],[-243,-162],[-139,303],[39,153],[-27,408],[-13,139],[-121,194],[-811,-1594],[500,-1105],[-390,-1989],[207,-1728],[-595,-602],[-343,982],[-240,230],[-602,-2353],[-800,355],[-65,-85],[246,-269],[-359,-3564],[-386,-1262],[-583,-638],[-345,-805],[-115,-716],[88,-69],[-12,-931],[-506,-404],[-25,285],[350,747],[20,304],[-1329,-85],[-81,-359],[-2,-536],[255,-160],[195,-890],[53,-859],[-276,-347],[-136,-1043],[386,-434],[-282,-1271],[-265,-478],[-19,-892],[211,-659],[-149,2],[-571,1009],[-594,-1167],[133,-345],[248,-272],[123,42],[90,-228],[-80,-553],[-402,-357],[-284,58],[-34,695],[-428,-138],[-33,-683],[306,-486],[-4,-161],[-163,-638],[-571,-74],[-83,-532],[63,-682],[-105,-446],[-318,-340],[-709,241],[-401,570],[-810,-1473],[80,-219],[285,35],[273,-285],[100,-446],[-949,-1598],[-1190,-1341],[-969,-802],[-267,-44],[-667,-1850],[-24,-607],[-376,-957],[-452,-768],[-2250,-1184],[-855,784],[-364,-320],[-368,-653],[-668,334],[23,403],[-540,-528],[-417,-803],[-537,-320]],[[817294,639046],[-17,-842],[139,-155],[71,-722],[-479,588],[-499,56],[-72,315],[324,539]],[[816761,638825],[-572,502],[-865,2690],[-114,232],[-120,42],[57,-1757],[-102,-374],[343,-900],[169,-1343],[-74,-689],[-114,-133],[-12,39],[-609,842],[-152,-1534],[-408,632],[-114,1319],[-184,407],[-104,12],[78,-317],[172,-234],[56,-1306],[-188,-1507],[-238,-478],[-69,41],[-168,854],[-246,-541],[-668,172],[-45,171],[-300,-38],[-527,-1253],[-742,255],[-395,-557],[-18,-404],[-445,-605],[-2346,-367],[-423,-616],[-21,-298],[-561,-454],[-559,-994],[-141,-511],[78,-713],[434,-1203],[174,-362],[241,-214],[118,-471],[-193,-710],[-364,-562],[-1105,96],[-159,481],[-311,2464],[-82,215],[-41,-55],[-105,249],[-56,383],[46,1143],[260,1209],[244,263],[-267,841],[-428,584],[-356,-750],[-748,-320],[-267,409],[-150,874],[-606,1015],[-86,66],[-96,13],[227,-1043],[-371,-102],[-250,676],[-336,-81],[-229,-363],[-271,370],[-56,-433],[-462,-497],[-351,-133]],[[800068,633164],[64,-383],[-143,-141],[-210,71],[-454,-264],[-1068,-961],[-1,-482],[-468,-1302],[-872,29],[-279,181],[-79,-113],[-533,-4115],[-894,-1345],[-832,-941],[-194,-748],[-566,-3975],[-67,-1234],[754,-2585],[501,-1045],[505,-565],[563,-1513],[-116,-437],[45,-487],[558,-1908],[3102,-6295],[105,-519],[194,-91],[102,268],[319,-50],[271,-569],[302,-680],[889,-3094],[945,-2207],[1060,-7786],[-72,-2707],[421,-3307],[69,-1190],[-11,-616],[-193,733],[-453,-719],[147,-3492],[-94,-1517],[-218,-794],[-672,-1502],[-3819,-4814],[-1170,-973],[-475,699],[-395,-171],[-46,-1176],[-555,-3005],[-1065,-1915],[-2100,-2272],[-467,-1533],[-431,-771],[-478,-308],[-330,-89],[-263,197],[-32,181],[85,77],[124,1227],[142,4251],[135,1528],[541,663],[-308,932],[-474,582],[-418,-263],[-524,1296],[-47,316]],[[790125,567426],[-678,788],[-965,251],[-277,-412],[-342,1232],[227,651],[-114,1234],[-340,636],[-126,-4],[-164,-378],[-68,-1086],[-200,-201],[-614,-66],[-68,246],[8,2270],[-541,2056]],[[785863,574643],[-53,622],[-687,2506],[-194,141],[-104,-550],[-566,526],[-607,1423],[-702,1215],[-525,245],[-969,-266],[-990,28],[-299,724],[90,1609],[257,2029],[-40,469],[-1096,335],[-850,-162],[-359,-269],[-278,-290],[-235,-532],[284,-1838],[-389,-5566],[-750,-3041],[-593,-4115],[-572,-2211],[-115,-1186],[-138,-2687],[239,-3292],[106,-226],[368,-113],[282,175],[145,325],[419,233],[404,-263],[180,-1178],[140,-2780],[355,-1154],[178,-153],[478,-2290],[305,-2860],[274,-1416],[658,-1738],[595,-698],[560,8],[398,325],[743,-828],[592,-1888],[783,-1276]],[[783585,542715],[352,-312],[539,-848],[355,-1214],[829,-1536],[354,-313],[381,-742],[721,-2804],[236,-1332],[105,-2125],[-377,-3169],[215,-1361],[48,-3947],[262,-856],[265,-546],[251,-225],[543,-1685],[913,-4089],[133,-1316],[-42,-437],[-476,138],[-194,960],[-218,261],[-633,-822],[-18,-8]],[[788129,514387],[237,103],[9,3],[9,4],[4,1],[3,2],[7,2],[69,-65],[7,-8],[9,-14],[2,-7],[3,-8],[2,-8],[12,-61],[332,-314],[-633,-496],[-248,-79],[-20,63],[-41,125],[-3,8],[-3,8],[0,7],[-3,24],[9,44],[76,377],[23,95]],[[787991,514193],[-48,-62],[-661,-132],[-1178,2117],[-4138,5531],[-458,1834],[37,519],[-191,1149],[-646,1900],[-589,1098],[-560,2297],[-104,1470],[-21,2195],[-285,690],[-196,2220],[-234,4404],[-605,2337]],[[778114,543760],[-142,624],[-749,1649],[-646,3120],[-163,-164],[-507,1117],[-729,2454],[-881,1745],[-105,616],[-228,416],[-391,-379],[-81,-184],[-3,-46],[-58,-680],[-175,-59],[-250,507],[-184,2019],[127,2149],[280,745],[14,1245],[1072,6555]],[[774315,567209],[-362,-1557],[-297,861],[-171,2074],[154,629],[553,1150],[36,2469],[377,2144],[-115,820],[-155,253],[-31,470],[-127,2336],[-31,2170],[57,416],[-417,2453],[-122,153],[-761,3363],[-14,636],[-25,268],[-35,123],[-41,-68],[-65,-886],[-37,-1546],[-97,-49],[-451,4970],[-15,1945],[-147,851],[-58,-404],[11,-243],[-269,1026],[-456,7521],[9,582],[350,1332],[91,-85],[45,7],[82,186],[-625,641],[-20,-192],[-14,-275],[-602,-339],[-426,1001],[-299,2238],[-504,1223],[-140,144],[-53,-707],[43,-1249],[-120,-800],[-449,-1310],[-248,-458],[-384,-299],[-162,21],[-466,749],[-649,-1191],[-387,204],[-125,-1624],[-474,-1419],[-539,-1132],[-410,-140],[-90,519],[73,445],[99,269],[81,526],[69,1378],[-212,-368],[-220,-1547],[-123,662],[79,505],[-204,323],[-230,-643],[-221,-1282],[-264,932],[59,530],[-158,315],[-247,-5],[-152,408],[83,888],[-154,435],[-456,-859],[8,-502],[-210,-641],[-365,-700],[-197,-113],[-120,530],[140,2002],[299,1778],[664,5224],[-394,2496],[-221,2212],[-521,2452],[-132,378],[8,60],[-38,23],[-36,103],[-129,2828],[-805,1348],[84,727],[-76,927],[-733,724],[-283,987],[-541,73],[-116,159],[-257,1997],[-148,-512],[-30,-362],[-312,-1346],[-343,595],[-124,1891],[-286,734],[14,-152],[138,-507],[40,-109],[69,-1185],[-173,-20],[-777,2016],[-346,1939],[-26,77]],[[756265,630227],[-13,-163],[53,-620],[46,-124],[-119,-52],[-549,2009],[-192,1123],[114,1141],[-21,57],[-52,24],[-20,-190],[-255,350],[82,3138],[165,1368],[-811,594],[-722,1526],[-434,-199],[-47,-309],[59,-497],[-276,-846],[-193,57],[-834,1872],[-260,864],[-143,2060],[-64,269],[-479,163],[-176,-2097],[88,-1402],[195,-1030],[221,-969],[99,-218],[-1117,-2390],[-185,-12],[-271,1172],[-885,594],[-207,521],[-119,-36],[-166,-644],[-236,887],[-109,159],[-670,-1263],[-346,-115]],[[747416,636999],[-283,105],[-1525,-1825],[-222,-936],[-333,180],[-154,600],[172,1204],[-53,173],[-363,-555],[-441,-1287],[-348,-633],[-1709,-935],[-505,-692],[-378,-941],[-96,-715],[405,-1723],[78,-807],[-1612,-4240],[-615,-610],[-1432,-861],[-723,-718],[-1264,-1880],[-406,-814],[-841,-2405],[-1052,-2491],[-2005,-2981],[-559,-1421],[-1730,-1857],[-737,-1256],[-213,-846],[26,-215],[172,-205],[65,-432],[19,-389],[-116,-738],[-1483,-1504],[-723,131],[-575,-297],[-221,-488],[-581,-2605],[-640,-66],[26,454],[-435,161],[-612,-458],[-396,-693],[-545,-2505],[-98,-1063],[164,-1912],[148,-4402],[429,-3202],[-13,-1795],[-161,-2207],[-262,-1849],[-771,-2499],[-331,-2549],[264,-3479],[61,-4104],[-970,-146],[-831,-1089],[-692,-2617],[171,-2221],[-1460,-1052],[-996,-2156],[-88,-1575],[-195,-707],[-787,-1119],[-645,-688],[-597,268],[-859,1361],[-1328,3419],[-515,2622],[-325,3468],[-293,1908],[-1103,6302],[-553,2031],[-872,1875],[-728,3107],[-428,2332],[-665,5999],[-612,3382],[-327,1315],[-786,2462],[-163,1132],[-1192,4567],[-309,2000],[-340,4963],[-906,6916],[-107,1307],[16,500],[91,134],[-12,1154],[-191,128],[-127,1242],[26,472],[305,-58],[-64,197],[-58,62],[-293,655],[-228,2363],[366,2944],[274,1331],[-505,3321],[-65,118],[-28,5],[-50,-51],[-14,-117],[-102,42],[19,2400],[303,541],[259,181],[-481,90],[-288,704],[-134,980],[211,1375],[166,109],[310,-195],[264,403],[-73,110],[-1333,-76],[-321,-1919],[213,-1859],[-572,-2333],[-413,-609],[-2651,-2390],[-516,-91],[-581,461],[-878,1050],[-593,1064],[-2439,5023],[-595,1379],[-111,523],[115,569],[249,445],[45,-522],[205,-442],[383,-216],[2131,1595],[421,466],[682,1288],[40,208],[92,1341],[-582,6],[-205,-94],[-538,-1134],[-875,-949],[-1491,636],[-1406,1736],[-240,453],[-320,1073],[-87,900],[246,794],[340,616],[-402,1061]],[[690292,647481],[-343,137],[-847,102],[-644,484],[-1035,136],[45,328],[20,1293],[-180,2190],[-73,113],[-393,153],[-1500,186],[-121,233],[160,1550],[-457,1673],[-245,579],[-562,512],[-386,-421],[-130,-347],[326,107],[412,-216],[-4010,-784],[-776,-477],[-944,225],[-596,432],[-34,180],[240,81],[56,424],[-593,-181],[-1352,-1136],[-425,-115],[-2366,157],[-1958,-979],[-421,511]],[[671160,654611],[-352,-201],[-865,61],[-2161,1203],[-2031,220],[-1474,358],[-600,298],[-1790,413],[-2611,1231],[-105,178],[-464,2549],[-168,1399],[4,928],[-151,994],[-305,1096],[-323,740],[-241,179],[-1242,135],[-1710,-1111],[-751,-1345],[-1656,-1502],[-498,153],[-640,653],[-1287,496],[-1175,871],[-1234,1436],[-1189,1711],[-473,1412],[-1053,1105],[-1001,-19],[-1024,988],[-1151,5774],[12,556],[-193,351],[-599,2061],[-1334,3155],[-780,1039],[-999,-828],[-732,915],[-180,898],[107,-12],[126,460],[-214,371],[-740,-428],[-166,-360],[-27,-240],[250,-807],[-37,-704],[-124,-285],[-578,-470],[-554,288]],[[634677,682974],[254,-234],[-24,-128],[-344,-3],[-462,469],[-900,386],[18,-332]],[[633219,683132],[193,-1090],[-31,-1447],[-438,-379],[-434,-810],[344,-285],[294,141],[493,-797],[697,-2809],[199,-1209]],[[634536,674447],[180,-338],[320,-1880],[533,-2394],[1057,-1842],[-136,-203],[609,-1425],[433,-264],[311,-396],[1058,-1799],[-36,-345],[107,-998],[123,-380],[331,-306],[112,-434],[-11,-676],[-268,-993],[-60,-814],[96,-1035],[1088,-2776],[102,-1303],[476,-1520],[182,-276]],[[641143,652050],[163,300],[-268,2011],[-43,2154],[291,525],[133,-246],[85,371],[161,2099],[297,655],[407,490],[957,-1444],[-94,-1099],[-228,-1195],[406,-1661],[-17,-1127],[-177,-904],[-333,-1381],[-381,-961]],[[642502,650637],[164,212],[332,65],[-266,-1521],[574,-269]],[[643306,649124],[33,401],[336,-532],[162,-649],[42,-591],[110,-187],[697,-219],[646,273],[556,624],[429,186],[1875,-165],[683,-355],[798,90],[628,452],[890,885],[531,1628],[112,789],[231,541],[3414,6120],[318,1355]],[[655797,659770],[350,1158],[543,647],[258,12],[-179,-782],[-201,-2353],[-261,-1193]],[[656307,657259],[202,-174],[47,-442],[40,-3199]],[[656596,653444],[302,-1656],[323,-1121],[940,-2322],[592,-990],[1937,-1364],[1051,-399],[944,-148],[455,-669],[1806,-4928],[406,-722],[747,-185],[113,-605],[-85,-1185],[-1088,-3876],[-1023,-1811],[-588,-1318],[-573,-2148],[-309,-1545],[-231,-382],[-619,252],[-44,208],[228,854],[-238,244],[-317,-332],[-680,-2581],[-275,-1901],[-73,-1278],[182,-2437],[-583,-1354],[-741,-97],[-732,-380],[-649,-654],[-475,-1245],[7,-586],[-227,-1692],[-536,-1286],[-1733,-198],[-837,-474],[-348,-1098],[-115,-1103],[85,-504],[-90,-711],[-497,-1164],[-386,-392],[-422,-205],[-288,185],[-87,268],[-393,68],[-1330,-277],[-2579,-1983]],[[647523,604217],[-1645,-1183],[-396,-534],[-473,-1345],[-152,-994],[42,-692],[-218,-1652],[-1369,-1413],[-1023,-831],[-3614,-2062],[-1507,-1135],[-831,-842],[-683,-2041],[-414,-714],[-1069,-265],[-379,72],[-274,244],[-274,-21],[-2117,-2655],[-1364,-950],[-1860,-104],[-1044,-412],[-1838,-3037],[-2097,-1230],[-933,5],[-977,603],[-859,2817],[-79,463],[63,776],[-205,3089],[-386,2178],[-261,3567],[-252,1376],[-202,269],[-25,1479],[160,3927],[-157,1787]],[[618811,602757],[-139,1639],[-677,2166],[-445,1997],[-1315,2549],[-1000,2802],[-483,1719],[-555,3063],[-859,3467],[-792,1734],[-1123,1687],[-452,-25],[-916,1650],[-354,1292],[-493,980],[-275,969],[-286,1211],[115,1363],[-336,3137],[136,1343],[-2,1585],[-464,2447],[-362,1096],[-997,3904],[-464,804],[-1381,1705],[-930,1510],[-446,2240],[-3,1318],[-524,2028],[-1227,3682],[-887,2563],[-1800,5107],[-735,2515],[-597,1606],[-452,348],[-1039,-118],[-70,438],[449,2820],[220,2455],[258,1759]],[[597109,679312],[52,1096]],[[597161,680408],[-203,-294]],[[596958,680114],[-126,-124],[-319,-962],[-702,-4913],[-156,-1668],[-3,-1235],[-618,-1303],[-283,180],[-823,1131],[-1218,2583],[-499,2279],[-731,2341],[-992,4516],[-273,-206],[-379,-2055],[868,-3038],[229,-1530],[1285,-3558],[1035,-2521],[-166,-125],[236,-1461],[243,-862],[342,-597],[225,-1311],[176,-1198],[-42,-1059],[2068,-7075],[1467,-6059],[790,-1864],[122,-1069],[-109,-991],[-3,-1507],[219,-1732],[132,-513]],[[598953,642608],[157,-1169],[119,-379],[336,-724],[1397,-1789],[799,-1300],[714,-1038],[-29,-302]],[[602446,635907],[-4,-47],[-6,-1241],[101,-1040],[547,-2350],[156,-2326],[90,-4668],[197,-3069],[390,-3726],[261,-954],[473,13],[197,-236],[610,-902],[751,-1829],[914,-1325]],[[607123,612207],[683,-2249],[337,-1490],[582,-4483],[368,-3791],[1201,-4473],[265,205],[-64,226],[30,660],[49,259],[201,218],[350,-581],[176,-531],[-112,-284],[34,-201],[318,-1233],[169,-342],[196,-231],[350,451],[399,-75],[385,-447],[111,-310],[-8,-352],[162,-434],[348,-24],[757,-534],[923,-2533],[695,-1584],[1289,-2204],[717,-2152],[729,-1782],[412,-531],[230,296],[296,-354],[95,-387]],[[619796,580930],[635,-1940],[172,-1547],[-129,-817],[-1664,-1458],[-711,-971],[92,-382],[169,-246],[201,67],[-56,315],[362,290],[1005,59],[148,-475],[147,-285]],[[620167,573540],[495,-572],[133,-358],[97,-710],[475,-1432],[659,-1386],[996,-1624],[740,-298],[1252,382],[1944,2150],[1285,-203],[492,-505],[291,-53],[603,380],[1239,1591],[1235,918],[453,-442],[1076,172],[501,530],[1524,291],[329,-144],[1197,528],[1923,1059],[981,966],[267,702],[86,608],[199,277],[376,186],[1382,-762],[27,-314],[-518,-3554],[209,-4547],[-753,-1748],[-207,-3740],[-1885,-7405],[-332,-706],[-558,-1884],[-698,-3055],[-851,-2765],[-406,-1926],[-82,-1210],[-328,-1617],[-831,-2915],[-1424,-4291],[-515,-1856],[-3144,-7309],[-2242,-4648],[-421,-667],[-3356,-4135],[-3159,-5639],[-2244,-5064],[-2061,-4936],[-1162,-3890]],[[615456,495970],[-657,-1599],[-804,-646],[-1541,-2878],[-469,-454],[-238,-478],[-149,-574],[-187,-3048],[-1236,-4198],[-200,-172],[174,-571],[-514,-2264],[-81,-8],[-649,-931]],[[608905,478149],[-348,-2249],[63,-46],[-893,-5837],[252,-1986],[1168,-2603],[427,-209],[-25,-1945],[-243,-765],[-318,-3061],[19,-215],[107,-170],[18,-6],[138,132],[157,-183],[-211,-1975],[-153,-41],[-4,-279],[344,-3604],[330,-1491],[249,233],[428,-3387],[48,-1606],[1338,-1811],[454,-294],[77,-225],[-22,-544],[-113,-293]],[[612192,443689],[249,167],[159,-89],[26,-317],[-99,-12],[-30,-15],[-66,-48],[42,-147],[54,-6],[156,-2616],[-439,-1589],[161,-2861],[-19,-2814],[0,-6],[80,-680],[234,-1479],[-224,-1488],[-212,-182],[-30,-246],[96,-425],[145,-151],[67,334],[250,-5424],[-128,-1430],[423,-1711],[334,-341],[9,-1638],[-66,-345],[-199,-249],[-211,-1281],[-41,-480],[65,-593],[-274,-1121],[-1214,-3162],[-651,-1422],[-346,-233],[34,-405],[108,-389],[-276,-606],[-1848,-2466],[-1946,-1517],[-805,-45],[-649,-1235],[-1091,-1133],[-1482,-1888],[-13,120],[-102,121],[-24,-4],[-111,-124],[222,-636],[-773,-2415],[-973,-2148],[125,-177],[-116,-432],[-790,-133],[-761,-1067],[-1019,-2477],[-1281,-2033],[-159,26],[-26,333],[-372,568],[-81,-134],[3,-83],[74,-158],[17,-17],[-126,-3798],[48,-1039],[49,-190],[-8,106],[695,-570],[313,-1457],[222,-2668],[527,-3358],[407,-845],[206,-2141],[37,-2761],[-448,-5707],[281,422],[151,-407],[-122,-1153],[-307,-1142],[-664,-1795],[-177,-248],[-787,-761],[-3800,-2868],[-1142,-1214],[-535,-849],[-778,-2309],[431,-1235],[309,-560],[165,13],[133,-721],[-89,-2697]],[[591369,347083],[-1042,-8081],[-294,-1587],[-382,-946],[-681,-1261],[-520,-450],[-1400,-2621],[-584,-1590],[-248,-1148],[-1386,-4634],[-1466,-3908],[-1884,-3036],[-2188,-4528],[-1810,-2782],[-2224,-2858],[-1485,-1296],[-828,-16],[-585,262],[-565,-101],[-477,-532],[-178,-702],[-2034,-1078],[-1179,-211],[-846,523],[-1413,466],[-585,-172],[-165,-424],[-2236,513],[-709,-326],[-551,-529],[-524,-986],[-618,-516],[-2280,75],[-621,-402],[-641,-459],[-1039,-1600],[-1052,111],[-147,144],[-1425,2236],[-688,1325],[-1163,-227],[146,-978],[-247,270],[-269,1617],[313,788],[69,-95],[107,187],[-112,1036],[-1118,3836],[-265,338],[-144,-124],[-78,1096],[159,718],[115,63],[282,-421],[239,101],[284,570],[182,708],[16,2019],[-280,2673],[-1184,3262],[-1393,4919],[-515,2739],[-476,3152],[-326,1420],[-759,2506],[-271,455]],[[545701,336586],[-2156,4069],[-767,2833],[-728,3674],[32,994],[-394,1901],[-469,4020],[-57,1645],[64,1349],[-459,3081],[-202,710],[-281,1794],[-57,1667],[77,205],[-8,1482],[-196,4163],[113,-182],[176,566],[-86,1820],[-321,1733],[-799,2174],[-1874,6047],[-501,2961],[-1587,6513],[-975,3215],[-903,1910],[-425,1718],[-312,3199],[44,1994]],[[325053,613655],[1,-6],[0,-2],[2,-24],[-25,-82],[-10,-17],[-4,-6],[-239,-279],[-67,-36],[-48,-19],[-75,-29],[-30,-8],[-23,-5],[17,66],[263,394],[10,11],[5,6],[22,25],[65,71],[4,4],[133,62],[-1,-126]],[[555350,862899],[6,-10],[17,-32],[53,-171],[21,-101],[157,-15],[38,-36],[637,-611],[14,-232],[-188,-204],[-14,-16],[-68,-173],[-246,-627],[-508,167],[-349,114],[-26,19],[-7,4],[-1,1],[-15,38],[-28,72],[-4,14],[-1,7],[-2,8],[-1,3],[-1,4],[-107,444],[-31,154],[-44,223],[153,108],[124,88],[50,-49],[-14,-235],[35,-174],[25,-72],[5,-15],[4,-1],[7,-2],[14,-3],[8,-2],[13,8],[15,10],[103,224],[20,50],[43,105],[88,310],[-3,14],[-17,80],[-65,46],[-176,108],[-30,18],[-49,61],[6,49],[3,30],[42,100],[37,31],[87,65],[32,23],[8,2],[14,4],[18,4],[8,-3],[46,-13],[40,-12],[4,-1]],[[558154,859877],[-2,-1],[-1,-2],[-5,-5],[-1,-2],[-1,-1],[-2,-2],[-15,1],[-28,1],[-4,0],[-76,55],[-1,1],[-3,2],[-1,1],[-2,2],[-4,3],[-20,15],[-10,15],[-35,51],[-2,3],[-1,2],[-4,5],[19,15],[24,18],[94,68],[4,-1],[4,-2],[4,-1],[22,-84],[47,-157]],[[556766,860482],[13,-5],[13,-5],[4,-3],[4,-4],[2,-2],[2,-2],[39,-36],[-7,-30],[-7,-29],[-8,-4],[-3,-2],[-4,-2],[-285,-3],[-36,0],[-20,17],[-62,55],[71,55],[51,38],[10,8],[223,-46]],[[557161,860734],[15,-14],[68,-64],[2,-3],[5,-8],[5,-9],[11,-18],[1,-3],[2,-3],[-15,-35],[-21,-47],[-37,-46],[-161,-52],[-4,2],[-14,9],[-20,12],[-30,49],[-6,9],[8,18],[3,7],[3,6],[2,5],[1,1],[68,144],[11,14],[7,8],[14,17],[8,6],[16,12],[16,12],[2,2],[2,1],[37,-31],[1,-1]],[[557070,860773],[-22,-42],[-68,-125],[-33,-39],[-26,-32],[-29,-33],[-12,-13],[-2,0],[-6,-1],[-17,-3],[-17,6],[-3,11],[-3,9],[-2,6],[11,59],[26,143],[4,5],[7,9],[15,18],[3,5],[34,8],[27,6],[8,2],[48,10],[17,1],[9,1],[3,0],[24,2],[2,-7],[2,-6]],[[556833,860601],[-3,-4],[-4,-5],[-26,-34],[-2,-2],[-9,-12],[-146,-25],[4,50],[0,2],[13,20],[77,122],[74,84],[13,15],[22,-9],[2,-1],[2,-1],[10,-4],[17,-7],[-15,-64],[-29,-125]],[[556282,861195],[5,164],[2,7],[2,6],[0,1],[3,-1],[1,0],[5,0],[1,-1],[11,-4],[3,-1],[9,-3],[52,-55],[13,-59],[7,-32],[3,-85],[2,-49],[-57,-198],[-56,-78],[-9,-13],[-14,19],[-107,149],[0,8],[-1,9],[0,13],[-1,14],[25,146],[23,137],[6,38],[4,21],[2,7],[5,19],[6,1],[3,1],[3,0],[1,0],[7,-5],[7,-5],[4,-3],[11,-12],[3,-4],[2,-3],[5,-5],[1,-2],[2,-2],[2,-2],[2,-2],[2,-136]],[[557467,861785],[27,-36],[1,-1],[7,-11],[39,-58],[3,-12],[21,-69],[-9,-26],[0,-2],[-5,-13],[-1,-3],[-1,-4],[-2,-1],[-2,-1],[-10,-7],[-21,-7],[-43,-14],[-66,86],[-1,17],[0,9],[-1,17],[17,67],[6,12],[10,18],[9,16],[8,15],[2,3],[1,3],[4,1],[7,1]],[[556701,861954],[14,-15],[59,-63],[-5,-36],[-14,-40],[-5,-15],[-3,-8],[-4,-11],[-3,-6],[-78,-168],[-1,-2],[-18,-12],[-14,-10],[-8,-5],[-4,-3],[-4,-2],[-122,224],[-12,73],[0,41],[3,171],[2,6],[0,1],[0,2],[2,6],[8,-1],[42,-3],[4,0],[1,0],[4,-3],[34,-19],[3,-2],[1,0],[8,-4],[110,-96]],[[554538,862071],[-21,-570],[-32,-154],[2,-8],[2,-9],[-2,-4],[-1,-2],[-4,-13],[-4,-2],[-33,-21],[-4,-2],[-5,-1],[-26,-7],[-99,6],[-3,6],[-16,29],[-43,103],[-3,77],[0,45],[-1,89],[134,368],[44,98],[40,90],[26,28],[4,4],[45,-150]],[[557647,862256],[-11,1],[-7,0],[-7,73],[-4,40],[2,7],[2,9],[17,73],[3,7],[6,16],[2,4],[2,4],[4,9],[11,11],[8,8],[4,4],[11,11],[45,34],[12,3],[8,1],[3,-6],[20,-46],[2,-5],[4,-7],[1,-26],[0,-3],[0,-6],[0,-4],[1,-4],[-8,-24],[-10,-32],[-10,-30],[0,-1],[-2,-7],[-3,-8],[-35,-41],[-4,-5],[-67,-60]],[[338526,310616],[-358,-285],[-461,-525],[-272,-1720],[-41,-636],[-39,-606],[115,-1373],[350,-868],[19,-178],[18,-175],[-43,-274],[-95,-605],[-122,-47],[-118,-45],[-3,-9],[-73,-214],[1,-416],[2,-403],[628,-1354],[440,-482],[725,-463],[1032,-1156],[210,-319],[265,-403],[214,-474],[212,-471],[200,-843],[-301,-785],[-370,-966],[-58,-392],[-18,-128],[36,-792],[132,-440],[202,-675],[206,-345],[281,-471],[476,-306],[194,35],[124,23],[32,250],[129,-190],[67,-352],[63,-329],[52,-2719],[-2417,-6520],[-28,-597],[-472,-706],[-1319,-1281],[-2680,-1531],[-2033,-821],[-2598,-783],[-943,-33],[-1769,-61],[-665,325],[-126,291],[-144,331],[-552,384],[-7,-16],[-155,-393],[511,-2748],[-229,8],[4,-28],[33,-211],[19,-9],[153,-75],[326,-666],[119,-244],[-79,-505],[-71,-462],[-293,-1111],[-142,-51],[-141,-50],[-126,-783],[-240,-1488],[352,-1012],[255,-732],[134,-215],[50,-82],[-399,-1559],[-201,-242],[-297,-223],[-1588,-1199],[-1933,-67],[-83,39],[-277,134],[-2364,2033],[-146,265],[-41,73],[-515,45],[-337,-641],[-97,-587],[-78,-474],[250,-2368],[2,-1983],[2,-1293],[64,-290],[83,-373],[1168,-2045],[158,-42],[220,-58],[268,18],[722,50],[178,297],[7,300],[4,168],[-75,187],[-38,94],[-362,44],[93,224],[755,681],[223,67],[203,62],[122,-381],[238,-744],[99,-1811],[-101,-1174],[-197,-208],[-83,-88],[-12,-3],[-1123,-336],[-311,670],[79,618],[-32,84],[-199,528],[-705,349],[-310,-104],[-810,-819],[-48,-49],[-134,-432],[25,-301],[558,-423],[343,-262],[769,-357],[-1629,-1915],[-881,-2146],[-66,-676],[133,-917],[34,-234],[87,-1106],[90,-1149],[-14,-125],[-21,-179],[-401,-1045],[-721,-654],[-228,-852],[43,-212],[20,-100],[499,-373],[-226,-537],[-267,-61],[-89,-21],[-1337,237],[-612,-478],[-1423,-1109],[-55,-71],[-195,-246],[-665,-1462],[-372,-1097],[-452,-1331],[-115,-602],[-28,-143],[48,-875],[612,-1969],[893,-1319],[761,-1123],[1401,-503],[329,23],[547,38],[151,-90],[123,-74],[120,-260],[199,-430],[118,-696],[3,-21],[-360,-3558],[-416,-944],[-135,-44],[-161,-51],[-691,-1155],[-695,-705],[-1024,-1039],[-1056,-1601],[-563,-852],[-268,-1040],[28,-1130],[-207,-2135],[-51,-238],[-123,-577],[-419,-736],[-594,-546],[-159,-35],[-336,-73],[-189,53],[-192,55],[-1261,-1582],[-260,-635],[-208,-509],[-366,-2255],[608,-3655],[-143,-85],[-272,-161],[-93,-195],[-143,-300],[320,182],[19,11],[235,-307],[567,-741],[1115,-2475],[169,-376],[-204,-408]],[[309929,196164],[-77,85],[-214,238],[-767,321],[-741,311],[-1152,-708],[-592,-1177],[-644,-98],[-413,-62],[-455,-227],[-1466,-730],[-576,-3773],[58,-413],[136,-983],[-82,-515],[-76,-475],[-64,-66],[-489,-500],[-201,-94],[-140,-65],[-2349,1342],[-588,806],[-259,613],[-92,218],[11,36],[170,536],[249,285],[414,39],[742,70],[248,-305],[123,-913],[-197,-212],[-166,-179],[-465,-238],[114,-91],[67,-53],[223,136],[401,245],[36,123],[67,233],[-82,816],[68,220],[107,343],[991,597],[426,867],[206,418],[-62,273],[-16,69],[-531,769],[-602,870],[-2006,216],[-1070,-46],[-465,-20],[-212,-282],[-66,-339],[-53,-265],[16,-591],[-153,-272],[-84,-148],[-320,-1473],[-11,4],[-101,30],[-226,928],[-538,820],[470,4],[83,0],[336,1449],[-911,-662],[-190,-138],[-143,63],[-156,70],[298,1037],[-67,548],[-38,308],[167,821],[93,-49],[378,-197],[147,101],[117,80],[19,79],[22,89],[986,-490],[260,1010],[-112,-253],[-192,-438],[-158,157],[-12,11],[0,438],[0,263],[245,642],[263,27],[627,-1495],[-97,-426],[-19,-84],[-197,-294],[-705,-604],[614,145],[112,26],[218,332],[159,242],[73,642],[13,123],[11,525],[38,1963],[-638,1073],[-1065,1016],[-14,235],[-6,94],[-308,-651],[1852,-1590],[-256,-485],[-52,-13],[-206,-49],[-1012,835],[-97,-168],[197,-774],[-250,-763],[-373,-1135],[-372,183],[-374,602],[-155,249],[-89,525],[-62,370],[67,86],[82,105],[123,-318],[37,-96],[48,261],[156,856],[-504,-17],[-403,485],[-155,186],[-223,510],[-30,494],[108,280],[501,-607],[115,199],[-47,1304],[-125,289],[-415,176],[-300,127],[-40,-172],[-345,303],[-220,254],[-82,512],[38,283],[183,250],[182,9],[561,27],[305,928],[342,133],[424,166],[-542,539],[-102,101],[-48,-278],[-149,-864],[-392,-572],[-133,-23],[-66,-11],[-147,266],[-121,217],[-95,337],[-326,1157],[193,94],[108,53],[245,-161],[261,-172],[219,25],[-65,57],[-518,453],[-485,1224],[-935,96],[226,1021],[154,112],[169,124],[623,-772],[196,545],[120,334],[-60,367],[-511,336],[-91,516],[25,767],[7,205],[138,125],[472,427],[336,-121],[-72,162],[-33,74],[221,1259],[-63,675],[-203,446],[-293,-1296],[-33,-142],[-30,-433],[-38,-537],[-418,450],[-95,103],[-51,298],[-31,181],[-75,2613],[29,340],[95,1132],[1051,608],[-14,817],[-1484,1923],[197,166],[362,304],[497,-85],[367,-63],[1208,-910],[333,15],[285,12],[-658,1828],[27,268],[16,166],[-148,446],[-282,854],[-808,-1268],[-816,197],[-199,48],[-42,-14],[-337,-111],[-187,116],[-326,204],[-12,54],[-26,121],[271,673],[272,374],[374,-172],[44,-328],[-127,-415],[95,55],[654,379],[-504,454],[-378,340],[-7,412],[-3,126],[496,1024],[117,8],[268,17],[168,197],[157,185],[-227,866],[-334,1281],[-478,90],[-582,-194],[46,-184],[27,-106],[248,-79],[425,-134],[-31,-69],[-49,-107],[-412,28],[-1179,873],[-117,87],[-168,437],[9,169],[8,130],[-172,78],[-844,-258],[-247,-76],[-8,-56],[-26,-178],[422,-192],[204,-751],[-17,-62],[-57,-211],[-288,-255],[-54,-47],[-272,71],[-400,926],[74,921],[111,334],[43,6],[266,38],[992,1400],[442,624],[567,477],[31,26],[141,762],[-345,-448],[-165,-215],[-149,42],[-265,75],[18,766],[167,550],[1419,188],[1112,147],[269,-1139],[17,-76],[-25,-733],[403,-62],[307,-485],[-45,-303],[-66,-449],[-138,-310],[-153,-342],[196,-243],[57,-71],[1033,2597],[3,149],[2,139],[-143,-299],[-383,-802],[-125,99],[166,1687],[163,565],[564,865],[159,24],[348,51],[-480,293],[-179,-313],[-221,-384],[-282,-262],[171,1397],[74,611],[757,928],[141,-139],[143,-477],[171,-149],[129,-114],[294,-176],[39,-24],[222,242],[-11,254],[-4,80],[-444,249],[-462,258],[-413,404],[-124,121],[290,765],[293,774],[869,940],[183,198],[221,930],[106,442],[-16,59],[-106,414],[-685,582],[-980,832],[360,934],[598,2570],[-97,1366],[-44,633],[192,969],[272,1366],[-116,394],[-45,153],[52,351],[266,1122],[110,465],[99,238],[404,968],[167,-217],[28,621],[55,1190],[-91,9],[-85,9],[-75,-264],[-36,-130],[-90,-5],[-124,-7],[-333,240],[-181,129],[-65,123],[-91,174],[561,1095],[577,164],[270,309],[166,915],[-829,-480],[-292,-169],[-233,433],[-152,284],[-305,110],[-255,-251],[-304,-502],[-714,-1180],[-213,75],[-666,233],[-198,1010],[-184,937],[-169,1554],[-68,1162],[136,658],[412,1989],[-22,1109],[-5,243],[164,1547],[100,318],[35,111],[89,77],[348,302],[223,-174],[28,71],[50,125],[474,3052],[-241,1800],[-125,587],[-168,791],[-697,7457],[-48,1210],[281,1085],[349,-337],[251,1],[152,1],[373,700],[149,2317],[311,-18],[479,3219],[10,67],[721,3944],[105,333],[309,980],[206,424],[230,473],[305,1533],[141,708],[290,3214],[817,2780],[-63,3099],[117,870],[308,446],[5,8],[89,395],[198,1965],[32,1445],[-82,1362],[-76,1245],[-174,1721],[-114,1127],[-107,1647],[-193,2990],[179,2215],[47,143],[9,28],[30,-135],[24,-109],[316,156],[27,13],[190,327],[232,1429],[123,756],[-60,2424],[-67,456],[-77,141],[-185,341],[-203,704],[-25,929],[76,772],[549,1278],[225,1197],[158,2434],[25,392],[965,5775],[140,1249],[113,1008],[45,918],[109,2232],[-135,1034],[313,2224],[365,858],[17,629],[11,381],[-235,1764],[-146,1096],[62,1084],[259,4549],[-130,1717],[-220,302],[-28,720],[59,1098],[102,182],[695,1236],[-17,400],[-10,251],[144,2300],[268,2895],[247,2682],[-33,882],[-333,2703],[197,4309],[-37,1011],[-38,1083],[-357,2824],[-100,1462],[-97,1426],[39,1227],[-117,1222]],[[304506,397342],[-2596,3772],[-80,474],[-30,175],[-253,674],[-596,1588],[-3253,3791],[-984,889],[-1345,1216],[-1102,1403],[-535,682],[-1658,1857],[-438,689],[-501,787],[-697,1418],[-723,1472],[-535,844],[-1011,3006],[-171,1464],[31,266],[40,340],[105,-233],[177,1371],[-35,1324],[-432,1249],[-233,854],[-947,3474],[-258,705],[-171,468],[-3348,12316],[-783,4743],[-182,543],[-45,135],[-1109,5193],[-1662,4885],[-636,2964],[-686,1816],[-664,1009],[-387,406],[-1040,1091],[-790,1134],[-206,295],[-139,569],[38,618],[145,471],[380,-306],[258,308],[4,427],[5,552],[-120,600],[-60,295],[-337,781],[-524,2653],[-268,1358],[98,1068],[85,924],[38,186],[77,383],[1423,3216],[259,380],[779,1146],[157,15],[106,9]],[[277141,485544],[52,193],[86,318],[144,44],[22,7],[145,264],[380,697],[141,569],[100,835],[138,1154],[51,1200],[-52,269],[-107,555],[-295,126],[-243,104],[-642,-2285],[-1361,2081],[-541,1020],[230,776],[350,1184],[-15,3073],[-128,494],[164,2031],[826,2198],[542,2540],[484,1208],[39,812],[91,1912],[-206,726],[87,541],[72,450],[1022,1019],[1361,607],[614,1363],[189,726],[125,-120],[156,-150]],[[281162,514085],[-335,924],[26,95],[373,1369],[535,-257],[45,527],[32,375],[-103,140],[-273,369],[-60,481],[-60,485],[195,1014],[273,878],[80,258],[1996,881],[279,958],[38,129],[50,529],[55,591],[241,844],[71,246],[1136,2718],[72,583],[-6,327],[-4,206],[-90,401],[-158,698],[-45,60],[-102,137],[-177,-417],[-328,-113],[-275,610],[-25,404],[18,217],[30,342],[216,272],[277,1084],[83,1014],[-214,4564],[44,2237],[88,4403],[-880,2439],[-276,584],[-374,795]],[[283630,548486],[-742,1726],[-66,153],[-662,2578],[-65,514],[144,425],[239,711],[354,557],[104,-127],[1013,-1238],[-192,494],[-1048,1989],[-281,-588],[-123,-256],[-87,192],[-348,762],[-61,274],[-74,329],[-469,772],[-470,775],[-684,537],[-221,33],[-323,49],[-375,-147],[-855,1108],[-17,440]],[[278321,560548],[-18,460],[-366,-318],[-38,50],[-138,183],[1291,1843],[2298,-1160],[461,-43],[713,-688],[276,-266],[762,-946],[1007,-2322],[215,-109],[300,-152]],[[285084,557080],[369,-894],[1057,-2554],[-1,-94],[0,-78],[-106,-113],[-81,-85],[-6,-630],[18,-12],[173,-114],[143,83],[92,53],[75,680],[1,9],[-55,2098],[-8,32],[-156,559],[562,1102],[997,1956],[481,1851],[12,47],[145,172],[336,401],[180,-29],[127,274],[554,1197],[44,2226],[20,1002],[52,245],[139,653],[-2,847],[-1,326],[1559,2556],[272,446],[747,-444],[136,-80],[55,-6],[533,-61],[96,167],[202,354],[-43,932],[66,164],[189,469],[247,23],[184,16],[314,-300],[163,-156],[840,-26],[189,-6],[436,141],[493,806],[935,1528],[864,605],[892,1967],[1326,2056],[761,-503],[319,-210],[431,-1414],[-18,-466],[-4,-7],[-551,-1010]],[[301878,575831],[-26,-169],[-21,-137],[-32,-50],[-226,-345],[-1392,-713],[-45,-252],[-52,-290],[55,-514],[65,-618],[562,-1806],[189,-1161],[167,-1027],[-118,-946],[-39,-313],[-819,-1953],[-349,-1227],[-77,-274],[780,-3691],[180,-548],[143,-437],[125,-80],[458,3],[421,266],[320,413],[465,1242],[89,1845],[8,160],[-38,199],[-100,522],[-1058,3259],[-30,264],[-223,1986],[108,372],[153,525],[254,309],[3638,2786],[140,25],[306,54],[-140,1295],[-661,-368],[-144,58],[-163,1464],[13,322],[287,1085],[475,556],[162,-218],[170,-226],[884,-3937],[469,214],[415,190],[72,-38],[1170,-629],[1114,-1436],[243,-916],[112,-425],[-121,-776],[117,-971],[3,-23],[59,-180],[151,-465],[221,-318],[362,-108],[214,-65],[2429,809],[220,74],[294,20],[1812,125],[290,-258],[-5,-251],[0,-1],[230,-673],[305,-896],[280,-344],[1409,-648],[641,-295],[649,119],[645,780],[138,166],[1570,1188],[815,135],[-330,490],[-535,175],[-219,7],[-105,3],[-160,-170],[-68,-73],[-19,617],[1456,9],[2621,593],[874,-121],[1592,173],[-67,-271],[-39,-156],[-132,-156],[-1273,-413],[-458,-148],[-343,-975],[970,-3432],[29,13],[45,21],[333,1197],[327,-280],[170,-146],[568,-1138],[439,183],[717,-513],[153,-323],[354,-422],[524,-27],[372,-571],[62,-96],[154,-496],[87,-283],[-489,-748],[-155,-2179],[236,-492],[31,-65],[-248,-506],[-55,-112],[45,-139],[69,-212],[1184,-120],[26,-3],[559,572],[479,-220],[357,-163],[138,-216]],[[333341,556313],[543,-963],[92,82],[31,27],[194,-162],[1,-1],[1558,-2010],[1366,-2803],[205,-628],[83,-254],[174,-706],[6,-982],[-27,-479],[-10,-185],[-175,-330],[-62,-435],[-62,-436],[-76,-2305],[102,232],[6,50],[263,1963],[43,98],[147,333],[315,99],[19,6],[701,-418],[1653,-2934],[579,-813],[243,-1054],[26,-1159]],[[341279,540146],[153,602],[56,221],[236,211],[98,88],[1759,-577],[762,-25],[312,-10],[269,338],[636,160],[600,-122],[56,-12],[714,-478],[36,107],[-185,462],[398,148],[240,-25],[317,-35],[1385,-504],[811,-469],[67,-345],[-25,-859]],[[349974,539022],[199,766],[297,121],[958,-1235],[1271,-566],[32,-14],[524,-850],[2507,-4073],[859,-2650]],[[356621,530521],[182,1161],[17,109],[953,-1848],[104,-443],[126,-534],[311,-4792]],[[358314,524174],[934,-5433],[555,-2178]],[[359803,516563],[122,-107],[46,-40]],[[359971,516416],[344,127],[925,-829],[24,-179],[179,-1342],[-55,-581]],[[361388,513612],[-50,-526]],[[361338,513086],[-194,-943],[-712,-1130]],[[360432,511013],[-513,-1128]],[[359919,509885],[-241,-904],[-65,-243],[-124,-267]],[[359489,508471],[-731,-1576]],[[358758,506895],[-170,-183],[-215,-230]],[[358373,506482],[-262,-435],[-341,-568]],[[357770,505479],[-602,-2108],[28,-165],[137,-268],[278,-87],[403,789],[90,178],[43,206],[97,466]],[[358244,504490],[323,800]],[[358567,505290],[65,161],[200,142],[300,214],[138,0],[135,-554],[-397,-1866],[-198,-404],[-401,-822],[327,0],[137,0],[263,530],[213,857]],[[359349,503548],[317,1273],[219,184],[334,280],[808,-371],[351,-40],[3512,-400],[749,-919],[-274,-1774],[-17,-113],[-940,-4030],[-607,-923],[-1076,-560],[-389,-390],[-101,-102],[-1270,-7],[-1002,-723],[16,-272],[17,-288],[1787,247],[485,660],[18,9],[835,432],[0,-311],[1,-167],[-50,-209],[-241,-1007],[-88,-888],[83,-91],[54,115],[199,416],[532,1898],[249,586],[315,446],[-32,-516],[-3,-34],[-126,-271],[11,-40],[53,-183],[91,53]],[[364169,495518],[793,2257],[32,-24],[190,-143],[-5,-230],[-6,-241],[116,-506],[22,13],[6,3],[286,212]],[[365603,496859],[24,18],[5,5],[149,188],[-2,173],[-37,-10]],[[365742,497233],[-198,-59],[-115,362]],[[365429,497536],[-126,393],[66,940],[391,475]],[[365760,499344],[15,-52],[21,-70],[67,13],[30,5],[-70,967]],[[365823,500207],[457,1092],[234,559],[72,-183],[26,-67],[185,416],[146,329],[177,59],[290,96],[182,-64],[216,-337],[232,-363],[50,-251],[31,-160]],[[368121,501333],[194,-41]],[[368315,501292],[113,94],[360,302],[202,-113]],[[368990,501575],[882,-492]],[[369872,501083],[416,-489],[39,-137]],[[370327,500457],[57,-198],[-40,-148],[-1,-5],[420,-369]],[[370763,499737],[628,-20],[20,-1],[219,-361],[174,-862]],[[371804,498493],[69,58]],[[371873,498551],[146,123]],[[372019,498674],[92,137]],[[372111,498811],[204,303],[785,-1617]],[[373100,497497],[8,-16],[365,-66],[100,-85],[238,-201],[28,-109],[97,-373],[96,-1184],[188,18],[93,200],[65,141],[-68,265],[310,694],[148,331]],[[374768,497112],[182,-191],[263,-277],[391,-1154]],[[375604,495490],[95,-179],[130,-247]],[[375829,495064],[56,-41],[94,-68],[142,-383],[-22,-968]],[[376099,493604],[-10,-488],[-263,-847],[102,-227],[222,606],[148,406],[150,121],[222,-452],[42,-265],[72,-449],[-33,-129],[-88,-354],[-250,120]],[[376413,491646],[-161,-625]],[[376252,491021],[-31,-122]],[[376221,490899],[-643,-4215]],[[375578,486684],[16,-213],[19,-241],[99,30],[11,3],[683,1660]],[[376406,487923],[288,1717],[218,1308],[491,518],[84,88],[44,8],[167,27],[-34,-471],[-31,-448],[-96,-196],[-310,-634]],[[377227,489840],[-373,-460],[345,-458],[89,90],[132,306],[157,366],[506,643],[173,103],[749,449],[148,-47],[202,-64],[106,575]],[[379461,491343],[-242,374],[134,289],[486,-182],[187,-70],[2069,-1973],[546,-520]],[[382641,489261],[288,-20]],[[382929,489241],[311,342],[1267,-972]],[[384507,488611],[748,-47],[2314,710]],[[387569,489274],[740,-164]],[[388309,489110],[633,-141],[2188,-2538],[102,-145],[2038,-2906]],[[393270,483380],[848,-2039]],[[394118,481341],[953,-1838]],[[395071,479503],[169,-325]],[[395240,479178],[1277,-1879]],[[396517,477299],[1206,-1156]],[[397723,476143],[528,-285],[181,-97],[1185,-16],[64,0]],[[399681,475745],[485,222],[977,-446]],[[401143,475521],[297,-220],[128,-234],[53,-98],[151,-618]],[[401772,474351],[390,-1601],[264,-2286],[168,-1449],[252,-1727]],[[402846,467288],[422,-2901],[77,-1855],[-139,-3764]],[[403206,458768],[-17,-463],[-47,-347],[-207,-1545],[-531,-2871]],[[402404,453542],[-90,-727],[-604,-1906],[-2068,-5058],[-173,-369],[-909,-1944]],[[398560,443538],[-939,-1211]],[[397621,442327],[-217,-502],[-229,-644]],[[397175,441181],[-3,-8],[-117,-379]],[[397055,440794],[-997,-3242],[-680,-3061],[-878,-2832],[-938,-2295],[-443,-522],[-44,10],[-109,24],[28,148],[124,669]],[[393118,429693],[-58,787],[-122,216],[-294,519]],[[392644,431215],[-165,-62]],[[392479,431153],[-86,-345],[-13,-53],[-7,-51]],[[392373,430704],[-86,-648],[15,-660],[10,-413],[-374,-2881],[-355,-1745],[-126,-622]],[[391457,423735],[0,-112],[1,-172]],[[391458,423451],[159,-241],[87,-133],[90,47],[-152,-2002]],[[391642,421122],[-150,-1981]],[[391492,419141],[283,-5191]],[[391775,413950],[3,-32],[17,-260],[107,-815],[-572,-5839],[-253,-2584],[-24,-757],[-6,-194],[94,-1454]],[[391141,402015],[-468,-2018],[-165,-218],[-132,-175],[-419,-1357],[-141,-832],[-154,-903]],[[389662,396512],[-76,-1873]],[[389586,394639],[66,-1166],[98,-1743],[-180,-1403],[-1163,-3179]],[[388407,387148],[-241,-1160],[-445,-2142],[-86,-137],[-598,-944],[-359,-921],[-28,-72],[-330,-1381],[-405,-1697]],[[385915,378694],[51,-484]],[[385966,378210],[205,-1939],[-33,-570],[-352,-428],[-312,-380],[-738,-467],[-255,-161],[-481,-593]],[[384000,373672],[-135,-273],[-475,-958],[-67,-515],[23,-75]],[[383346,371851],[190,-624],[-424,-1051],[-19,-46],[-599,-6],[-2207,-20],[-71,312],[258,1055]],[[380474,371471],[-5,143],[-3,74],[-103,56],[-40,22],[-189,-153],[-173,-140],[-92,-205],[-112,-250],[21,-36],[63,-112]],[[379841,370870],[191,26],[104,-721],[3,-15],[-144,-229],[-37,-16],[-997,-414],[-655,-92]],[[378306,369409],[-333,-46],[147,200]],[[378120,369563],[326,1]],[[378446,369564],[548,2],[-362,397],[-393,429]],[[378239,370392],[-664,-362],[-467,72]],[[377108,370102],[-174,27],[-89,183],[-935,-826]],[[375910,369486],[-91,-996]],[[375819,368490],[404,-20],[50,-161],[56,-185],[-16,-37],[-83,-190],[-493,-225],[-60,19],[-340,112]],[[375337,367803],[-2259,-2503],[-528,13]],[[372550,365313],[-146,3],[-182,-162],[-354,-314],[-999,-1088]],[[370869,363752],[-1871,-2683]],[[368998,361069],[-1083,-1553]],[[367915,359516],[-979,-2138],[-787,-1193]],[[366149,356185],[-405,309]],[[365744,356494],[-224,172]],[[365520,356666],[-107,-654]],[[365413,356012],[-1,-9]],[[365412,356003],[-798,-160]],[[364614,355843],[7,-39],[126,-702],[28,-15],[249,-135],[212,-365]],[[365236,354587],[229,-395],[-503,-2406]],[[364962,351786],[-436,-886],[-11,-508],[168,-217]],[[364683,350175],[140,-180],[-80,-1882]],[[364743,348113],[448,-2944],[-134,-981]],[[365057,344188],[-68,-494]],[[364989,343694],[-36,-2338]],[[364953,341356],[56,-530],[-469,-3366],[-252,-763],[-282,-323],[-375,-430]],[[363631,335944],[-352,-561],[-380,-605]],[[362899,334778],[-613,-1308]],[[362286,333470],[-703,-1857]],[[361583,331613],[-299,-1067]],[[361284,330546],[-381,-1355]],[[360903,329191],[-404,-2095]],[[360499,327096],[-267,-1382],[-655,-1978],[-461,-1389],[-293,-728],[-215,-534],[-1117,-2117],[-2054,-2995],[-96,1449],[437,83]],[[355778,317505],[178,140],[426,334]],[[356382,317979],[898,1508],[616,1392]],[[357896,320879],[1328,3930]],[[359224,324809],[306,907],[30,359],[66,782],[-108,287],[-80,210],[-119,-31],[-39,-11],[-505,-647],[-54,-69]],[[358721,326596],[-514,-234],[-290,681],[-352,-302]],[[357565,326741],[-31,-27],[-4,-214],[-28,-1435]],[[357502,325065],[-427,-2548],[-42,-249]],[[357033,322268],[-711,-1316],[-261,-340],[-511,-666]],[[355550,319946],[-376,-1463],[-342,-2168],[163,-482]],[[354995,315833],[114,-338],[-1016,-4224],[-299,-1244],[-387,-971],[-1655,-2684]],[[351752,306372],[-1128,-3615],[-129,-225],[-909,-1580],[-1501,-1237],[-554,-457],[-52,-23],[-90,-42],[-292,171],[-689,403],[-282,405],[-856,127],[-749,-499],[-265,83],[-801,250],[-282,214],[-41,31],[-953,363],[-429,692],[-282,456],[-922,178],[-645,125],[-658,290],[-77,34],[-1409,2780],[-53,1991],[200,2307],[169,496],[332,-22],[191,266],[54,183],[26,86],[24,128],[45,235],[34,328],[-253,-678]],[[321277,182362],[45,-65],[513,23],[923,41],[-77,-156],[-105,-210],[-1035,0],[-458,-287],[-655,-411],[-116,30],[-196,398],[197,343],[403,98],[329,81],[106,-79],[69,-51],[57,245]],[[309425,194591],[94,-189],[495,-997],[176,-518],[164,-482],[-76,8],[-172,19],[-306,-489],[-153,-245],[-60,-371],[25,-88],[58,-205],[208,-226],[393,-114],[31,-9],[685,-1015],[1427,-2610],[96,-119],[464,-578],[2149,-2096],[2148,-1518],[1867,-13],[-292,-703],[-872,-939],[-1747,-282],[-1555,49],[-79,86],[-123,134],[-508,135],[-1318,263],[-1614,217],[-381,51],[-262,-44],[-644,-109],[-179,-121],[-141,-95]],[[309423,181378],[-322,-162],[-377,-188],[-493,-41],[-1731,846],[-754,-102],[-427,-57],[-1504,222],[-635,262],[-217,807],[-8,30],[-1179,202],[-340,-293],[-117,-101],[-292,151],[-321,166],[-349,-69],[-343,466],[-80,108],[81,97],[64,76],[183,-98],[265,-143],[328,-52],[429,-68],[-41,441],[236,215],[184,168],[1328,142],[757,-153],[1148,-925],[64,132],[78,163],[-831,969],[-510,288],[-307,174],[-295,347],[-70,417],[-16,96],[1332,-960],[1554,-684],[361,581],[891,-329],[132,-110],[455,-382],[-16,-469],[595,268],[-175,413],[-1906,1267],[-805,535],[-375,1600],[12,354],[0,7],[101,187],[1457,780],[773,624],[33,199],[22,130],[-113,455],[-330,78],[-312,73],[-166,-43],[-804,-204],[-802,-534],[-168,175],[-480,499],[13,488],[36,1306],[115,386],[338,375],[635,707],[1292,1061],[674,84],[1511,191],[536,-428]],[[25912,421620],[23,-6],[214,-52],[-425,-640],[-38,-23],[-25,-14],[-5,5],[-32,35],[-16,19],[-156,200],[-12,17],[-5,9],[6,13],[45,87],[3,6],[5,9],[1,3],[3,3],[32,37],[8,8],[374,284]],[[29376,421802],[16,-28],[0,-9],[0,-4],[0,-4],[0,-17],[-7,-129],[-3,-44],[-1,-10],[-1,-3],[0,-1],[-1,-2],[-1,-3],[-5,-4],[-160,-77],[-40,49],[-43,147],[-4,13],[-1,6],[-3,16],[-7,44],[-1,9],[0,5],[0,3],[0,2],[3,5],[28,21],[10,7],[22,2],[189,19],[1,0],[2,-1],[2,-4],[5,-8]],[[691809,215556],[426,-115],[79,10],[285,156],[373,248],[166,481],[191,-397],[92,-450],[-463,-40],[-220,-350],[519,-684],[9,-2],[97,-19],[216,-38],[53,-2],[28,11],[231,131],[126,141],[639,859],[672,378],[212,-36],[165,-75],[146,-114],[22,-23],[8,-8],[19,-45],[88,-565],[0,-9],[0,-9],[1,-19],[3,-74],[1,-37],[0,-116],[-27,-164],[-37,-176],[-97,-200],[-147,-239],[-71,-1],[-258,147],[-1376,55],[-45,-6],[-335,-436],[274,-636],[113,-159],[262,-152],[432,-250],[-134,221],[-4,3],[-15,20],[-4,4],[-10,25],[-3,7],[-1,8],[-30,148],[-3,17],[1,7],[3,12],[16,11],[30,18],[12,8],[243,133],[151,-38],[218,-92],[131,-87],[3,-4],[4,-4],[10,-12],[34,-82],[2,-6],[6,-14],[1,-10],[0,-9],[-89,-311],[-122,-355],[-7,-9],[-14,-19],[-4,-4],[-36,-41],[-431,-168],[-570,138],[-203,461],[-3,8],[-11,41],[-18,66],[-2,8],[-5,15],[-11,39],[-11,40],[-10,131],[26,87],[-28,138],[-90,139],[-53,56],[-11,9],[-7,7],[-92,63],[-30,-351],[-1000,-104],[-308,304],[-332,-172],[-4,-3],[-11,-8],[-28,-57],[8,-218],[22,-95],[27,-85],[28,-87],[13,-32],[2,-19],[7,-73],[1,-9],[-19,-147],[-17,-66],[-69,-52],[-82,-57],[-73,-49],[-53,-31],[-480,-61],[-19,1],[-73,4],[-8,19],[-52,242],[3,166],[102,508],[158,618],[93,81],[36,80],[-28,194],[-283,1377],[-95,487],[363,582],[-169,566],[46,369],[325,836],[178,184],[13,-1],[42,-4],[8,-1],[8,-5],[13,-6],[4,-2],[40,-40],[2,-12],[1,-6],[-73,-281],[177,-273],[-204,-1379],[-47,-79],[-16,-59],[-11,-90],[7,-48],[34,-184],[34,-65],[58,-101]],[[694422,212748],[-7,0],[-27,23],[-8,6],[-4,3],[-3,3],[-289,263],[53,133],[37,-5],[45,-44],[125,-130],[3,-6],[26,-37],[57,-84],[8,-11],[4,-11],[2,-5],[13,-35],[8,-21],[5,-13],[-4,-3],[-11,-9],[-11,-8],[-7,-6],[-4,-2],[-11,-1]],[[694175,213311],[-11,-12],[-167,156],[-7,14],[-23,46],[-45,116],[11,62],[50,45],[84,-122],[34,-116],[39,-34],[8,-7],[3,-4],[6,-9],[7,-9],[3,-5],[8,-18],[2,-6],[3,-6],[5,-57],[0,-15],[1,-7],[-8,-8],[-3,-4]],[[694301,213911],[-29,-38],[-3,2],[-15,9],[-8,5],[-121,98],[-7,7],[-16,14],[-4,4],[7,10],[4,5],[15,21],[133,-16],[4,-3],[7,-6],[4,-3],[42,-64],[-13,-45]],[[693418,214932],[-8,-7],[-95,11],[-9,4],[-13,5],[-5,2],[-4,2],[-56,23],[-53,22],[-21,11],[-29,15],[-4,2],[-3,5],[-7,11],[2,14],[1,7],[3,6],[7,12],[6,12],[213,171],[8,6],[8,6],[68,46],[13,9],[4,3],[39,-4],[4,-1],[9,-1],[32,-22],[4,-3],[-47,-267],[-27,-53],[-32,-40],[-4,-4],[-4,-3]],[[692469,215603],[-166,-57],[-46,145],[-33,515],[90,206],[275,409],[4,4],[30,30],[4,4],[7,8],[8,2],[8,2],[4,1],[38,-49],[8,-10],[4,-5],[1,-8],[2,-9],[5,-34],[3,-17],[-2,-7],[-6,-13],[81,-117],[-153,-884],[-32,-33],[-53,-48],[-21,-10],[-47,-20],[-4,-2],[-9,-3]],[[692085,216281],[-9,-1],[-4,9],[-3,5],[23,288],[13,58],[37,160],[84,214],[5,14],[3,7],[4,4],[10,10],[7,7],[4,1],[16,2],[8,2],[15,-238],[-6,-211],[-4,-15],[-2,-8],[-2,-7],[-36,-97],[-74,-148],[-18,-25],[-3,-4],[-8,-10],[-3,-2],[-16,-7],[-12,-6],[-29,-2]],[[692949,216815],[-15,-9],[-3,2],[-10,7],[-105,167],[-2,8],[-8,21],[-27,73],[-1,8],[-1,8],[-4,33],[5,13],[9,26],[3,7],[7,5],[3,2],[4,3],[87,39],[4,-1],[8,-2],[8,-2],[4,-4],[4,-4],[8,-8],[134,-160],[4,-13],[7,-19],[-5,-50],[-6,-11],[-5,-11],[-100,-123],[-7,-5]],[[690691,218245],[-8,0],[-76,27],[-24,51],[12,26],[58,50],[63,0],[1,8],[64,-8],[9,-1],[1,-6],[2,-14],[-24,-59],[-6,-11],[-12,-21],[-3,-6],[-4,-3],[-13,-11],[-4,-4],[-20,-17],[-4,0],[-12,-1]],[[644948,231621],[160,-23],[8,4],[9,3],[8,0],[12,1],[4,1],[29,-14],[9,-4],[88,-116],[19,-25],[9,-14],[14,-42],[6,-94],[-3,-29],[-36,-58],[-27,-34],[-34,-30],[-4,-4],[-45,-37],[-9,-7],[-234,51],[-127,108],[-24,29],[-48,65],[-3,7],[-10,27],[-6,13],[2,19],[0,9],[4,46],[6,10],[3,5],[9,15],[211,118]],[[643967,231150],[-30,-26],[-254,113],[-73,71],[-54,87],[-36,82],[-13,50],[-12,53],[14,62],[121,124],[99,93],[42,24],[48,-29],[35,-36],[28,-31],[236,-327],[3,-6],[2,-5],[-28,-127],[-42,-78],[-47,-58],[-39,-36]],[[639641,233094],[-25,-24],[-15,12],[-149,122],[-57,76],[-10,19],[-3,6],[-3,6],[-4,17],[-8,33],[0,8],[-4,33],[-2,16],[3,7],[2,8],[8,23],[13,39],[6,15],[14,17],[26,31],[7,8],[4,5],[8,3],[35,11],[5,1],[127,15],[7,-2],[12,-4],[3,-1],[3,-5],[7,-9],[9,-14],[39,-102],[20,-73],[7,-97],[-1,-24],[-25,-91],[-6,-12],[-6,-12],[-47,-61]],[[715380,276860],[-4,-1],[-5,1],[-13,3],[-4,1],[-21,6],[-7,5],[-11,7],[-25,121],[1,9],[1,8],[2,18],[4,25],[2,9],[25,13],[8,-6],[21,-15],[4,-3],[41,-90],[4,-4],[4,-13],[5,-13],[2,-7],[3,-16],[3,-17],[1,-9],[-3,-5],[-7,-9],[-6,-10],[-17,-5],[-8,-3]],[[715446,281960],[-7,-5],[-17,0],[-4,0],[-9,0],[-8,4],[-4,3],[-4,2],[-3,4],[-3,5],[-63,134],[-8,59],[-2,27],[0,9],[1,9],[1,10],[7,64],[40,129],[39,28],[4,2],[16,11],[4,3],[4,0],[4,-1],[13,0],[37,-20],[6,-6],[10,-10],[3,-7],[12,-27],[2,-7],[13,-34],[5,-13],[2,-18],[3,-18],[2,-18],[1,-9],[6,-48],[3,-105],[-3,-7],[-4,-15],[-4,-14],[-2,-7],[-25,-53],[-45,-43],[-23,-18]],[[612134,373414],[-4,-3],[-4,2],[-15,6],[-8,3],[-4,4],[-11,13],[-7,8],[-48,96],[-10,29],[-2,7],[-5,15],[9,118],[1,7],[1,13],[6,12],[5,13],[5,3],[4,3],[16,12],[114,21],[3,-1],[3,-1],[3,-3],[2,-4],[2,-8],[4,-17],[11,-50],[4,-17],[1,-8],[15,-94],[-18,-48],[-2,-7],[-46,-106],[-16,-12],[-9,-6]],[[328348,607239],[165,-265],[79,-126],[93,-189],[1,-6],[1,-3],[0,-3],[-9,-71],[-6,-33],[-2,-12],[-11,-21],[-14,-26],[-12,-19],[-3,-5],[-29,-25],[-78,-71],[-107,-66],[-128,28],[-35,13],[-20,8],[-69,36],[-74,37],[-5,8],[-1,1],[-1,2],[-4,6],[-2,8],[-3,17],[-6,26],[-3,14],[0,2],[-1,5],[0,4],[0,3],[-1,6],[0,9],[-3,35],[-2,122],[-3,174],[35,116],[21,71],[83,198],[3,5],[22,32],[2,3],[12,18],[7,4],[108,-70]],[[328342,610443],[3,-8],[3,-5],[12,-26],[9,-19],[51,-122],[21,-52],[26,-67],[20,-50],[1,-9],[1,-1],[9,-49],[1,-6],[3,-11],[1,-11],[0,-7],[13,-138],[1,-9],[-2,-81],[-5,-229],[-27,-13],[-45,12],[-7,4],[-19,11],[-139,196],[-103,145],[-32,383],[53,80],[151,82]],[[895958,441343],[365,-409]],[[896323,440934],[113,57],[4,3],[197,-793],[92,-1554]],[[896729,438647],[82,-1405],[438,-1792],[49,-204]],[[897298,435246],[281,-2404]],[[897579,432842],[408,-394],[299,-1268]],[[898286,431180],[70,-301],[-144,-1150]],[[898212,429729],[268,-336]],[[898480,429393],[142,-177],[93,-3026]],[[898715,426190],[32,-1039]],[[898747,425151],[156,-1575]],[[898903,423576],[134,-802]],[[899037,422774],[331,-1979]],[[899368,420795],[268,-531],[183,-13],[250,-18],[363,494]],[[900432,420727],[932,1267],[89,-17],[21,-4],[181,-460],[68,-1024]],[[901723,420489],[443,-761],[471,-808]],[[902637,418920],[431,-553],[219,-280],[614,-6502],[24,-2543]],[[903925,409042],[271,-1144]],[[904196,407898],[32,-134]],[[904228,407764],[659,-1611],[444,-1390],[577,-3020],[-7,-102],[-149,-2190],[-70,-391]],[[905682,399060],[-109,-611],[51,-570]],[[905624,397879],[204,-506],[234,-579],[103,-973]],[[906165,395821],[171,-1628],[532,-1190],[13,-29],[1079,-1203],[144,-143],[567,-562],[653,-51],[174,-13],[210,-1425],[175,-361],[273,-567],[1614,-1197]],[[911770,387452],[1387,-1381],[67,-132],[171,-336],[290,-1165],[-77,-55],[-6,-4],[-84,89],[-488,514]],[[913030,384982],[-91,-79],[95,-1047],[419,-1287],[472,-535]],[[913925,382034],[320,-364],[141,-571]],[[914386,381099],[68,-273]],[[914454,380826],[495,-2151],[580,-4591]],[[915529,374084],[120,-1498],[743,-419],[432,-244]],[[916824,371923],[-400,1944],[67,471],[45,320],[119,178],[116,174],[384,-1281]],[[917155,373729],[1199,-1643],[66,344],[30,158]],[[918450,372588],[-242,332],[-23,210],[-41,377],[88,375],[223,-164],[396,-1240],[84,-1108],[-119,-3345]],[[918816,368025],[-274,-874],[-196,263],[-149,201],[3,-10],[368,-1172],[50,-108],[638,-457]],[[919256,365868],[318,231],[170,-154],[92,-547],[110,-654]],[[919946,364744],[738,-1255],[149,-27],[493,-91],[-13,297]],[[921313,363668],[-93,215],[295,-41],[179,-549]],[[921694,363293],[462,-1419],[172,-861],[435,-1126]],[[922763,359887],[1698,-3419],[29,-207],[199,-1439]],[[924689,354822],[30,-883],[29,-71]],[[924748,353868],[398,-959],[107,-569]],[[925253,352340],[114,-601]],[[925367,351739],[-150,-4950]],[[925217,346789],[-66,-241],[3,-835],[5,-1126],[262,-756],[87,-251],[487,-2365],[122,-695]],[[926117,340520],[301,-1702]],[[926418,338818],[-68,-132],[14,-2],[50,-8],[169,-764]],[[926583,337912],[45,-726],[75,-1214],[-45,-512]],[[926658,335460],[-28,-319]],[[926630,335141],[-486,-1882],[-363,-1004]],[[925781,332255],[12,-216],[32,-36]],[[925825,332003],[197,-226],[-19,-466],[-1,-13],[-488,-3879],[-399,-1796]],[[925115,325623],[-132,-1211],[3,-580],[1,-291],[38,-153],[27,-107],[57,-25]],[[925109,323256],[66,-28],[-8,-184],[-31,-735],[-72,-497],[-184,-1261]],[[924880,320551],[-446,-2177],[-164,-440],[-510,-1370],[-94,-466],[-23,-114],[-17,-298],[26,-72]],[[923652,315614],[114,-325],[-98,-626],[-112,-711],[-136,-180],[-529,-700]],[[922891,313072],[-550,-338],[-217,31],[-50,-92],[2,-227],[129,-197],[145,-223]],[[922350,312026],[-767,-842]],[[921583,311184],[-374,-409],[-226,-991]],[[920983,309784],[-3,-781],[-80,-276],[-306,-1063]],[[920594,307664],[-78,-38],[-217,-105],[-413,445],[-11,-156],[-9,-146],[336,-744],[38,-29],[35,-27]],[[920275,306864],[44,203],[-14,-270]],[[920305,306797],[-39,-762],[-80,-169],[-279,14],[-279,14],[362,-246],[197,28]],[[920187,305676],[-200,-678],[-157,-534]],[[919830,304464],[-562,-1440],[-37,-95],[-483,-3229],[29,-464]],[[918777,299236],[42,-694],[-372,-579]],[[918447,297963],[-1189,-3225]],[[917258,294738],[-190,-1171],[-137,-2578],[-360,-2627]],[[916571,288362],[-25,-1859],[97,-650],[26,-179],[-19,-485],[-40,-1015],[-128,-163],[-720,-923],[-779,-541]],[[914983,282547],[-1623,-129],[-1490,-118]],[[911870,282300],[-1592,-370],[-354,-710],[-95,-192],[162,63],[303,119]],[[910294,281210],[-2393,-3574]],[[907901,277636],[-1731,-553],[-51,-348]],[[906119,276735],[263,-873]],[[906382,275862],[105,126],[159,190]],[[906646,276178],[166,-289],[58,-102],[4,-218],[11,-559],[-155,-369],[-62,-147]],[[906668,274494],[-140,54],[-65,178],[-16,45],[1,10],[4,29],[-411,748],[-435,793]],[[905606,276351],[-1147,866],[-455,817]],[[904004,278034],[-32,474],[337,660]],[[904309,279168],[-157,432]],[[904152,279600],[-113,312]],[[904039,279912],[-462,52],[-77,-70]],[[903500,279894],[-262,-1035],[-461,-509],[-146,-6]],[[902631,278344],[-169,-7],[-325,641],[21,82]],[[902158,279060],[6,27],[150,-58],[31,-11],[379,264]],[[902724,279282],[244,746]],[[902968,280028],[157,479]],[[903125,280507],[-69,523]],[[903056,281030],[-433,1075],[-124,114]],[[902499,282219],[-1121,-1544],[25,-757]],[[901403,279918],[11,-319]],[[901414,279599],[-892,-1042],[-653,-764]],[[899869,277793],[-154,-310],[-135,-272],[-598,-674],[-215,-74]],[[898767,276463],[-234,-80],[-1550,1249],[-1786,1439]],[[895197,279071],[-914,468]],[[894283,279539],[-484,-86],[-462,-83]],[[893337,279370],[-463,141],[-209,64],[-358,610],[-280,279],[-352,350]],[[891675,280814],[-1002,100],[-463,614],[-329,436],[-1003,2321],[-563,1302],[-35,200]],[[888280,285787],[-251,1428],[407,819]],[[888436,288034],[64,716]],[[888500,288750],[-163,1243]],[[888337,289993],[-251,1110],[-30,132],[-14,44],[-457,1418],[-312,678],[-178,386],[-398,580]],[[886697,294341],[-855,1246],[129,-80],[152,-94]],[[886123,295413],[882,-1434],[415,-841],[164,-332],[424,-1193],[-203,726],[-242,870],[-1195,1853]],[[886368,295062],[-340,528],[-741,307]],[[885287,295897],[-347,-413],[-243,-290],[-67,-14]],[[884630,295180],[-794,-172],[-54,50],[-196,181],[103,326],[94,300],[367,325]],[[884150,296190],[405,855],[7,17],[264,2293],[72,626],[-771,2414],[-519,1628],[-93,-9],[-85,-287],[-82,-279]],[[883348,303448],[-707,-4769],[-423,-571]],[[882218,298108],[-263,-118],[-1597,-716],[-242,416],[163,639],[301,1178],[102,-19],[757,-141]],[[881439,299347],[450,2673]],[[881889,302020],[65,2012],[262,1248],[44,209],[271,639],[274,646],[113,714],[388,2438]],[[883306,309926],[-24,342],[-23,342],[-595,3283]],[[882664,313893],[-4,-237],[-15,-761],[-445,-2181]],[[882200,310714],[-724,-2686]],[[881476,308028],[-364,-544],[-597,-893],[-152,166],[-859,-1261]],[[879504,305496],[-1997,-4135]],[[877507,301361],[-279,-1183],[254,161]],[[877482,300339],[236,150],[46,-1454],[-67,-71],[-67,-68],[-1474,1741]],[[876156,300637],[-727,858]],[[875429,301495],[127,141]],[[875556,301636],[172,191],[415,-26],[-445,3143]],[[875698,304944],[-311,693],[-300,668]],[[875087,306305],[-911,3390]],[[874176,309695],[-293,221],[-317,-20]],[[873566,309896],[-621,-40],[-132,513],[-297,1152],[-28,674],[131,-91]],[[872619,312104],[196,-138],[206,614],[-65,689],[-208,485],[-197,247],[-606,761],[-183,307],[-442,742],[-544,234],[-35,-231],[-27,-175]],[[870714,315639],[-3856,1556]],[[866858,317195],[-1085,1374],[-1468,1255]],[[864305,319824],[-1088,-485],[-574,-256],[-1093,85]],[[861550,319168],[-1013,-190],[-2060,-386]],[[858477,318592],[-1259,-1061]],[[857218,317531],[-1429,-1205]],[[855789,316326],[-2271,-1264],[-650,-102]],[[852868,314960],[-949,-150],[-1091,289]],[[850828,315099],[-411,109]],[[850417,315208],[-421,-225],[-48,-25],[-448,-457],[-2362,-2406],[-737,-571]],[[846401,311524],[-463,-358]],[[845938,311166],[-520,-194]],[[845418,310972],[-147,-159],[-165,-180],[-310,-675],[-363,-1835],[-404,-1152],[-283,-803],[-136,-186],[-521,-706],[-170,-57],[-408,-136],[-260,53]],[[842251,305136],[-142,29],[-388,510]],[[841721,305675],[-813,-249],[-1697,-521],[-131,161],[-482,593],[-809,143]],[[837789,305802],[-699,124]],[[837090,305926],[-1808,-456],[-1989,-259]],[[833293,305211],[-287,-206],[-255,-182]],[[832751,304823],[-435,-578],[-307,-809]],[[832009,303436],[-55,-622],[-897,-849],[-174,-76],[-1048,-458]],[[829835,301431],[-1158,-1909],[-256,-218],[-1070,-910],[-138,4],[-450,12],[-350,189]],[[826413,298599],[-511,274]],[[825902,298873],[-1932,-218],[-1856,1783]],[[822114,300438],[-709,1365],[-101,194]],[[821304,301997],[-199,244],[-442,540]],[[820663,302781],[-444,258],[-132,-85],[-176,-113],[-123,48]],[[819788,302889],[-53,21],[-20,37],[-168,308]],[[819547,303255],[-107,1561],[-22,306],[43,2496]],[[819461,307618],[98,-63],[47,-31],[145,-388]],[[819751,307136],[25,-67],[211,-149],[30,-21],[41,6],[401,59],[214,347],[142,230]],[[820815,307541],[509,1469]],[[821324,309010],[38,987]],[[821362,309997],[-101,1339],[256,2942]],[[821517,314278],[-7,3397],[-109,643]],[[821401,318318],[-79,460]],[[821322,318778],[-1326,4857]],[[819996,323635],[-362,1798]],[[819634,325433],[-275,2626],[-28,2465]],[[819331,330524],[-273,3236]],[[819058,333760],[-721,2599]],[[818337,336359],[-679,1944],[-282,807],[-305,3050]],[[817071,342160],[-49,488]],[[817022,342648],[-373,1865]],[[816649,344513],[-1045,3306]],[[815604,347819],[-923,1978],[-167,989]],[[814514,350786],[21,63]],[[814535,350849],[134,386],[305,245]],[[814974,351480],[252,-1300],[-9,-427],[500,-1591],[98,-16],[352,516],[46,145],[79,246],[18,1130]],[[816310,350183],[-879,1721],[-335,1470],[-88,383],[58,564]],[[815066,354321],[57,171],[85,255],[245,-633]],[[815453,354114],[488,-1261],[357,-1151]],[[816298,351702],[337,-1743]],[[816635,349959],[201,-455],[249,263],[127,134],[88,385]],[[817300,350286],[-101,2937]],[[817199,353223],[-974,3368],[-271,1255],[-345,1593]],[[815609,359439],[-611,1643],[-28,448],[77,1554],[36,711],[509,2317],[392,629]],[[815984,366741],[77,387],[133,2472]],[[816194,369600],[-327,1962],[-100,599],[890,4342],[301,420],[192,64],[54,-122],[-127,-485],[-131,-1103]],[[816946,375277],[-51,-427],[115,-1852],[96,-317],[41,12],[41,12],[526,558],[44,47],[494,2387]],[[818252,375697],[203,982],[1006,889]],[[819461,377568],[1243,1100]],[[820704,378668],[1182,2265],[2123,2458]],[[824009,383391],[630,-23],[1708,-63],[600,205],[114,77],[98,67],[295,525],[156,278]],[[827610,384457],[60,303],[475,641],[890,264]],[[829035,385665],[950,281]],[[829985,385946],[825,1714],[393,151],[85,-45],[481,-253],[999,274]],[[832768,387787],[1111,304]],[[833879,388091],[1387,1033]],[[835266,389124],[631,635],[449,450]],[[836346,390209],[153,250],[264,427],[256,628],[196,482]],[[837215,391996],[830,2958]],[[838045,394954],[466,1662],[368,410],[296,493],[502,837]],[[839677,398356],[179,1189]],[[839856,399545],[-388,543],[-198,2237],[90,1422],[391,1230],[766,1259],[480,788],[-25,117],[-22,103],[16,98],[60,383],[419,1107],[298,113],[58,-353],[-88,-60],[15,-394],[32,-867]],[[841760,407271],[669,-2165],[296,-1244],[4,-61],[26,-400]],[[842755,403401],[264,-629]],[[843019,402772],[229,-544]],[[843248,402228],[127,1610],[-17,298],[-22,366],[654,-68],[26,284],[54,583]],[[844070,405301],[-1028,2987]],[[843042,408288],[430,331]],[[843472,408619],[137,106],[7,260],[6,230]],[[843622,409215],[-205,155],[-43,33],[-73,259],[-8,29],[89,567],[124,56],[146,65],[126,-168],[147,-194],[-39,-147],[-52,-194],[-118,45]],[[843716,409721],[-67,26],[122,-231],[369,-698],[58,94],[174,286],[573,-321],[514,-287],[1185,134],[269,30]],[[846913,408754],[-546,416],[-447,69],[-77,572]],[[845843,409811],[-103,771]],[[845740,410582],[726,1729]],[[846466,412311],[175,709],[-155,295],[-281,-831],[-234,-79],[-263,-89]],[[845708,412316],[-76,-221],[-50,-145],[-57,1098]],[[845525,413048],[85,498],[108,630],[461,25],[164,259],[54,604],[393,-65],[551,-724],[39,-16],[298,-120],[-98,649],[-195,1288],[-140,146],[-234,244],[1602,-249],[-301,716]],[[848312,416933],[-85,200]],[[848227,417133],[-240,254],[-67,214]],[[847920,417601],[-186,588],[-78,573],[566,845]],[[848222,419607],[92,-108],[97,-114],[424,386],[29,382],[27,364],[142,246]],[[849033,420763],[523,-952]],[[849556,419811],[184,-586]],[[849740,419225],[28,14],[44,23]],[[849812,419262],[454,2393]],[[850266,421655],[-72,957],[185,456]],[[850379,423068],[232,-1368],[16,-91],[335,324],[-119,236],[464,288],[131,-374],[153,-436],[183,330],[284,1040]],[[852058,423017],[106,813]],[[852164,423830],[-59,286],[-30,146],[324,211]],[[852399,424473],[217,140],[365,-766]],[[852981,423847],[198,-713],[77,132],[158,273]],[[853414,423539],[75,0],[179,2],[827,-1321],[887,-2402]],[[855382,419818],[141,-167],[190,-951],[148,-743],[-46,-927]],[[855815,417030],[-37,-720],[-325,-2216]],[[855453,414094],[-275,-350],[-57,-161],[15,-57],[57,-216],[917,1388],[223,337],[243,1623],[244,215],[114,508],[-79,446],[-33,62]],[[856822,417889],[-174,330],[159,140],[80,70],[93,3]],[[856980,418432],[416,13],[381,-197],[424,-219],[228,-267]],[[858429,417762],[386,-450],[255,428]],[[859070,417740],[291,-34],[44,-5],[129,-93]],[[859534,417608],[109,-79],[247,-697]],[[859890,416832],[2,3]],[[859892,416835],[176,230],[386,1030],[40,924]],[[860494,419019],[38,897]],[[860532,419916],[-308,-230],[-445,153],[-115,190],[-348,572],[49,521],[267,1164],[72,315],[646,862]],[[860350,423463],[52,70]],[[860402,423533],[444,2440],[131,-48]],[[860977,425925],[157,-57],[254,309],[59,70]],[[861447,426247],[372,780]],[[861819,427027],[-155,516],[-112,372],[50,924]],[[861602,428839],[36,647],[158,355],[285,640],[442,242]],[[862523,430723],[247,-39],[429,-67]],[[863199,430617],[-553,636],[77,1248],[24,20],[103,82],[328,-231],[330,-954]],[[863508,431418],[292,-514],[-29,470],[-20,315]],[[863751,431689],[-275,467],[419,1567],[865,135]],[[864760,433858],[14,-26]],[[864774,433832],[298,-568]],[[865072,433264],[474,-40]],[[865546,433224],[170,-14]],[[865716,433210],[2100,342],[173,259]],[[867989,433811],[290,439],[411,2927]],[[868690,437177],[-515,957],[-48,89],[-244,-42],[-510,-89],[-50,-52]],[[867323,438040],[-253,-264],[-888,1366]],[[866182,439142],[31,264],[7,64],[379,593],[79,-164],[133,-276],[358,100],[490,138],[517,-1148],[48,-106],[155,-49],[569,-181],[684,-792]],[[869632,437585],[240,-528],[271,-597]],[[870143,436460],[453,-295]],[[870596,436165],[1285,-139],[161,-250]],[[872042,435776],[152,-237],[482,-1153],[-17,-170],[54,-139],[561,253],[221,99],[263,22],[703,60],[68,-242],[53,-187],[635,-714],[69,-33],[304,-150],[33,20],[305,194],[193,415],[-98,2],[258,386],[403,229]],[[876684,434431],[571,-450],[218,-171]],[[877473,433810],[297,-1610],[557,-77],[95,125]],[[878422,432248],[177,236]],[[878599,432484],[161,1067]],[[878760,433551],[-53,77],[-49,70]],[[878658,433698],[-253,-75],[-90,236],[-25,67],[212,365],[508,876]],[[879010,435167],[183,117],[156,100],[-163,-235],[-14,-235]],[[879172,434914],[286,-1173],[111,-458],[258,-20],[25,98],[32,126]],[[879884,433487],[-205,241],[163,119],[100,73],[269,-412],[159,-529]],[[880370,432979],[3,-176]],[[880373,432803],[2,-115],[-585,-1090]],[[879790,431598],[-296,-1018],[-44,-150],[-102,-998]],[[879348,429432],[170,-560],[-86,-210],[-171,-416],[-448,-485],[-525,72],[-115,16]],[[878173,427849],[-133,-51],[-278,-105],[-234,-347],[-159,-1088],[56,-1482],[41,-46],[152,-169]],[[877618,424561],[130,196],[87,131],[-395,-2873],[-436,-746]],[[877004,421269],[-346,-1008],[-157,-456]],[[876501,419805],[-64,-422],[-1317,-845]],[[875120,418538],[-206,-132],[17,-54],[16,-50],[146,-103],[467,350],[596,-679]],[[876156,417870],[554,-1049]],[[876710,416821],[71,-564],[42,-329],[670,-76]],[[877493,415852],[323,-468]],[[877816,415384],[248,-358]],[[878064,415026],[872,-1578],[819,-1481]],[[879755,411967],[548,-146]],[[880303,411821],[1740,-1557],[670,-837],[315,-881]],[[883028,408546],[865,-1449]],[[883893,407097],[258,-225],[56,-49]],[[884207,406823],[1940,-863],[650,-2000],[272,-835]],[[887069,403125],[1053,-1164],[773,-855],[121,-21],[194,-34],[630,286],[453,205],[248,311],[686,862],[479,2208]],[[891706,404923],[810,3725]],[[892516,408648],[251,2391],[19,184],[-48,531],[52,561],[89,963],[287,1751]],[[893166,415029],[115,702]],[[893281,415731],[151,1699]],[[893432,417430],[-236,3268]],[[893196,420698],[-228,3172],[150,1426]],[[893118,425296],[75,715],[254,718]],[[893447,426729],[139,-33],[2,-422],[114,383],[24,82],[-193,1013]],[[893533,427752],[-240,1255],[591,1629],[267,-140],[14,-71],[23,-121],[129,302]],[[894317,430606],[-24,275],[-43,507]],[[894250,431388],[-603,418],[-196,-343],[-139,130],[606,3003],[89,246],[110,301],[36,-8],[31,-7],[217,1053],[21,100],[39,314],[411,3333]],[[894872,439928],[564,1558]],[[895436,441486],[246,1002],[140,27]],[[895822,442515],[121,24],[53,-72]],[[895996,442467],[59,-82],[-60,-640]],[[895995,441745],[-37,-402]],[[911091,252121],[-21,-885],[-12,-484],[-34,-25]],[[911024,250727],[-482,-349],[-183,116],[-167,429],[-138,356],[-8,294],[-1,55],[204,387],[182,-611]],[[910431,251404],[135,-29],[104,-22],[59,111],[50,95],[-71,480],[-39,264],[188,252]],[[910857,252555],[89,-85],[74,-71],[49,-191],[22,-87]],[[902345,265013],[479,-254],[397,-211],[122,39],[167,53]],[[903510,264640],[2499,-2029]],[[906009,262611],[426,-171],[119,-47],[154,43]],[[906708,262436],[1110,305],[-5,30],[-56,319],[232,197],[317,269],[1103,-34]],[[909409,263522],[1706,1462],[572,-597],[339,-905],[-40,-486],[-75,-928]],[[911911,262068],[-5,-2941]],[[911906,259127],[-3,-1839],[-154,384]],[[911749,257672],[-171,-116]],[[911578,257556],[-126,-370]],[[911452,257186],[-292,-1179]],[[911160,256007],[-79,-737]],[[911081,255270],[-145,-1363],[-445,-1040]],[[910491,252867],[-257,-600],[-946,-332],[-257,-1377],[-312,-393],[-359,318],[-77,68]],[[908283,250551],[145,716],[9,52],[7,44],[-13,-9],[-18,-13],[-174,-596],[-2,-121],[-1,-91],[48,-146]],[[908284,250387],[223,-683],[-15,-52],[-401,-1350],[-219,-376],[-941,608],[-507,157]],[[906424,248691],[-809,251]],[[905615,248942],[-200,433],[-16,35],[62,121],[93,184],[-555,615]],[[904999,250330],[-848,1542],[-545,2029],[-82,584]],[[903524,254485],[-178,1281],[127,158]],[[903473,255924],[349,-518]],[[903822,255406],[198,-295],[32,44],[235,325]],[[904287,255480],[-788,1305]],[[903499,256785],[-879,2439],[-79,289],[-308,1135],[-529,2778],[-10,336],[-2,45],[327,1670],[326,-464]],[[911860,268085],[-39,-17],[-182,-81],[-432,247],[-571,1644],[-137,393],[489,703],[795,-1633]],[[911783,269341],[116,-239]],[[911899,269102],[16,-150],[52,-494]],[[911967,268458],[-107,-373]],[[900268,269167],[-225,-265]],[[900043,268902],[-304,-358],[-54,177],[-74,245],[-44,953]],[[899567,269919],[-7,154],[127,1098]],[[899687,271171],[122,240],[-9,224],[-6,146],[34,5],[95,15]],[[899923,271801],[379,-468],[42,-802],[39,-767],[-89,-466]],[[900294,269298],[-26,-131]],[[880889,292870],[-865,-52]],[[880024,292818],[-47,2],[-242,7],[-95,131],[-256,354],[-89,299],[110,894],[2203,946],[340,66],[261,50],[58,-121],[-114,-808]],[[882153,294638],[1208,-1017]],[[883361,293621],[-2472,-751]],[[814500,351712],[-2,-23],[-31,-496],[-675,2244]],[[813792,353437],[-151,1052],[18,371],[130,210],[711,-3358]],[[925902,358266],[-673,-4411],[-368,679],[388,2627],[418,1055]],[[925667,358216],[-45,417],[-231,510],[370,468]],[[925761,359611],[115,-1098],[26,-247]],[[888034,408478],[56,-312],[-178,-80],[-68,-31],[-62,108]],[[887782,408163],[-73,128],[-373,-665]],[[887336,407626],[-420,-748],[-131,172]],[[886785,407050],[-173,227],[17,478]],[[886629,407755],[163,494],[209,268],[607,365],[426,-404]],[[880402,421369],[-125,-140],[-756,167],[-657,570]],[[878864,421966],[75,1360]],[[878939,423326],[156,417],[124,330],[318,234],[0,40],[-1,411],[122,132]],[[879658,424890],[66,-116],[17,-31],[159,-1530]],[[879900,423213],[413,-1168],[117,-104],[-28,-572]],[[841585,433238],[-6,-6],[-4,3],[-10,9],[-1,7],[-2,12],[-1,9],[3,12],[1,5],[1,4],[1,4],[2,-1],[2,0],[8,-3],[7,-2],[4,-1],[3,-15],[2,-7],[-3,-14],[-1,-9],[-3,-3],[-3,-4]],[[862469,436822],[35,-980],[-1070,52],[180,2434],[251,483],[211,27],[23,-119],[370,-1897]],[[863002,438252],[158,-22],[289,291],[319,322]],[[863768,438843],[203,65],[33,11],[382,-559]],[[864386,438360],[189,-278],[-11,86],[-114,871]],[[864450,439039],[258,555],[108,-169],[300,-474],[188,-910]],[[865304,438041],[-463,-1160],[-994,-1585],[-853,862],[-569,992],[-198,1396],[-116,822],[30,471],[80,10],[781,-1597]],[[752331,637502],[-282,-1370],[-167,1345],[18,304],[-35,1177],[-268,936],[-77,140],[-65,165],[101,348],[264,-85],[260,-1333],[251,-1627]],[[640585,658618],[-104,-310],[-240,728],[-90,1642],[123,162],[227,-158],[-36,-107],[183,-416],[4,-505],[-67,-1036]],[[282889,654724],[525,-916],[180,-1074],[7,-36],[11,-51],[10,-32],[9,-27],[3,-7],[8,5],[2,1],[4,2],[313,-612],[7,-15],[16,-40],[3,-6],[3,-7],[4,-17],[5,-16],[12,-49],[4,-13],[5,-20],[2,-8],[15,-156],[8,-80],[15,-388],[16,-428],[-22,-84],[-101,-391],[-227,-113],[-3,-81],[-4,-94],[-78,-150],[-18,-27],[-63,-100],[-2,-2],[-59,-65],[-6,-5],[-187,-152],[-39,-31],[-105,111],[-87,132],[-606,919],[-164,1052],[116,274],[63,148],[233,561],[118,473],[16,171],[29,332],[8,119],[3,48],[-10,157],[-21,124],[-25,107],[26,272],[28,285]],[[297094,630698],[-220,-636],[-58,-167],[-15,-37],[-57,-132],[-542,-140],[-237,-48],[-569,-114],[-1,0],[-3,1],[-30,8],[-11,11],[-3,4],[-11,24],[-3,5],[-3,7],[-2,5],[-18,96],[-10,83],[-32,268],[147,559],[55,65],[365,435],[253,124],[52,-51],[90,-87],[6,-15],[1,-4],[19,-59],[2,-4],[1,-4],[3,-7],[15,-35],[6,-14],[16,-20],[4,-4],[156,-108],[1,0],[2,-1],[7,-3],[3,-2],[28,11],[198,142],[5,4],[15,14],[16,14],[7,7],[13,12],[27,25],[4,3],[4,4],[6,7],[21,24],[4,5],[14,31],[8,19],[3,6],[59,241],[125,504],[1,3],[1,3],[2,4],[1,3],[2,4],[4,9],[8,7],[31,28],[26,23],[13,11],[2,3],[2,1],[8,3],[28,11],[3,1],[5,2],[5,-1],[2,0],[3,-1],[4,0],[0,-1],[3,-4],[4,-5],[3,-4],[3,-5],[2,-7],[2,-10],[0,-4],[10,-48],[1,-8],[1,-5],[0,-4],[1,-21],[2,-16],[0,-7],[1,-11],[-4,-141],[-4,-129],[-13,-175],[-12,-155],[0,-4],[-1,-5],[0,-4],[-1,-5],[-9,-77],[-5,-25],[-4,-14],[-67,-296]],[[297272,633158],[136,-224],[1,-228],[-255,-179],[-71,4],[-22,125],[-34,199],[12,29],[45,107],[99,125],[26,29],[37,35],[4,1],[3,0],[1,1],[2,0],[2,0],[2,1],[0,-2],[6,-11],[3,-5],[3,-7]],[[296995,638401],[545,-215],[140,-79],[75,-70],[164,-155],[23,-36],[18,-28],[12,-42],[-15,-110],[-22,-48],[-66,-93],[-15,-21],[-15,-2],[-2,-1],[-2,0],[-4,5],[-56,76],[-11,14],[0,1],[-3,7],[-49,94],[-39,72],[-9,18],[-4,7],[-3,5],[-3,7],[-7,12],[-45,84],[-5,11],[-2,2],[-2,4],[-19,18],[-4,4],[-7,7],[-46,13],[-4,1],[-4,1],[-250,21],[-105,-25],[-123,-87],[-156,137],[-54,77],[-27,38],[15,75],[63,328],[123,-127]],[[293418,639020],[-13,-15],[-1,-2],[-1,1],[-7,3],[-5,14],[-3,7],[-2,6],[-2,4],[-3,10],[0,4],[-1,6],[0,22],[-1,16],[0,8],[0,11],[1,7],[1,11],[7,63],[4,35],[1,9],[22,61],[2,7],[220,451],[6,10],[2,3],[1,3],[2,-1],[1,-1],[3,-2],[3,-2],[2,-8],[0,-2],[2,-7],[-5,-22],[-7,-34],[-2,-10],[-4,-14],[-11,-47],[-1,-4],[-3,-12],[-93,-273],[-46,-128],[-69,-188]],[[294823,639997],[51,-895],[-5,-49],[-2,-22],[-9,-40],[-32,-155],[-53,-203],[-264,-716],[-26,-57],[-19,-40],[-3,-6],[-28,-47],[-475,-558],[-96,-7],[-193,-13],[407,613],[539,786],[-15,391],[-13,361],[-87,484],[159,219],[97,54],[32,19],[3,-9],[32,-110]],[[293721,640682],[516,-448],[111,-97],[55,-60],[-171,-283],[-242,41],[-80,27],[-211,73],[-60,66],[-129,528],[-13,80],[-27,157],[3,13],[15,15],[4,4],[7,1],[18,4],[2,1],[2,0],[12,-2],[88,-18],[46,-46],[54,-56]],[[295320,642364],[51,-38],[19,-31],[-5,-13],[-138,-69],[-50,-25],[-31,-10],[-17,-2],[-60,0],[-1,0],[-3,0],[-11,2],[-128,138],[0,4],[0,7],[30,16],[23,12],[84,7],[204,6],[33,-4]],[[289974,644426],[114,-69],[0,-1],[4,-3],[5,-3],[3,-3],[8,-6],[4,-3],[3,-3],[1,-1],[64,-70],[13,-14],[4,-4],[1,-1],[6,-7],[5,-13],[1,-1],[3,-8],[19,-49],[11,-29],[-2,-5],[-1,-1],[-2,-7],[-2,0],[-3,0],[-117,63],[-148,80],[-65,68],[-34,91],[-4,38],[2,9],[3,12],[0,1],[2,6],[5,4],[1,1],[3,3],[77,-63],[16,-12]],[[290766,645814],[1,-2],[2,-4],[27,-49],[6,-12],[14,-25],[13,-30],[70,-167],[160,-530],[834,-2763],[62,-149],[18,-42],[70,-176],[45,-149],[35,-370],[12,-129],[0,-5],[0,-4],[5,-53],[13,-148],[-2,-9],[-4,-25],[-1,-3],[-2,-4],[-6,-15],[-5,-14],[-61,-67],[-335,921],[-438,1207],[-113,1065],[-213,729],[-150,556],[-70,258],[-6,65],[-11,114],[2,3],[1,3],[10,18],[7,12],[6,-5],[4,-2]],[[288958,645756],[417,-743],[42,-77],[-56,-113],[-533,467],[28,158],[12,69],[90,239]],[[292180,645998],[40,-21],[4,-3],[4,-4],[15,-13],[1,-2],[2,-1],[1,-3],[1,-6],[5,-24],[7,-34],[2,-10],[1,-7],[1,-18],[1,-9],[1,-8],[-13,-107],[-11,-94],[-56,-57],[-9,-9],[-46,-13],[-302,55],[-5,11],[-2,5],[-5,33],[-10,59],[-1,8],[3,21],[1,7],[1,4],[1,1],[4,10],[34,32],[27,25],[16,15],[20,19],[13,9],[15,10],[67,38],[34,19],[102,50],[36,12]],[[288791,645773],[-1,-1],[-3,-2],[-19,-14],[-5,-3],[-4,-3],[-28,-20],[-8,-6],[-3,2],[-1,1],[-11,11],[-4,33],[-1,8],[2,68],[3,94],[17,47],[8,25],[51,-118],[7,-58],[5,-45],[-1,-6],[-4,-13]],[[284172,645783],[-6,-4],[-3,-1],[-44,46],[24,239],[1,-2],[6,-5],[5,-5],[1,-2],[4,-3],[34,-60],[20,-35],[-14,-96],[-8,-20],[-20,-52]],[[284561,646580],[-191,-423],[-40,-12],[-64,71],[-57,64],[17,7],[41,15],[29,52],[1,7],[2,22],[-9,45],[80,98],[82,65],[37,27],[25,7],[12,3],[35,-48]],[[287991,647522],[-57,148],[-2,3],[-170,462],[63,-5],[26,-2],[93,-349],[46,-175],[2,-9],[4,-17],[5,-23],[6,-29],[-16,-4]],[[293206,648382],[16,-86],[2,-17],[6,-33],[34,-233],[-17,-77],[-23,-108],[-100,-396],[-12,-48],[-1,-2],[-2,-2],[-5,-5],[-1,-2],[-7,0],[-2,0],[-71,2],[-3,0],[-1,0],[-92,5],[-16,51],[45,590],[14,148],[0,8],[2,7],[2,6],[2,10],[6,22],[2,8],[2,6],[3,8],[5,16],[14,42],[3,7],[2,7],[28,48],[5,3],[3,2],[7,4],[72,31],[48,21],[6,1],[5,0],[6,-14],[13,-30]],[[284439,648917],[3,-4],[1,-1],[16,-21],[7,-9],[3,-12],[2,-7],[84,-426],[41,-214],[91,-971],[10,-106],[5,-68],[-9,-255],[-12,-74],[-13,-76],[-6,-36],[-9,-50],[-17,-31],[-16,15],[-12,12],[-41,59],[-10,17],[-11,20],[0,18],[2,29],[0,8],[1,9],[-3,14],[0,1],[-3,15],[-3,1],[-3,2],[-46,10],[-183,-177],[-139,225],[-48,959],[152,645],[92,387],[17,37],[12,25],[35,27],[3,1],[3,1],[2,1],[2,0]],[[283833,649203],[1,-1],[2,-4],[11,-15],[4,-5],[7,-10],[1,0],[0,-1],[10,-14],[7,-9],[4,-14],[2,-6],[-2,-8],[-5,-16],[-5,-13],[-187,-390],[-96,-62],[-120,-77],[-5,0],[-3,0],[-20,0],[-4,0],[-4,10],[-22,50],[-13,29],[-1,3],[-2,7],[-23,74],[-1,8],[-3,21],[-2,10],[-2,16],[3,17],[0,1],[3,17],[4,3],[6,5],[4,-2],[8,-6],[5,-4],[8,-5],[155,32],[66,30],[4,4],[2,3],[6,6],[1,7],[2,21],[11,149],[104,125],[14,5],[17,6],[48,3]],[[287479,649108],[47,-73],[7,-13],[11,-20],[31,-73],[8,-19],[5,-17],[4,-29],[0,-4],[-2,-11],[-4,0],[-7,-2],[-29,17],[-4,2],[-32,27],[-24,59],[-80,192],[2,20],[1,5],[1,8],[4,35],[2,17],[3,1],[1,1],[2,0],[7,3],[2,-5],[0,-1],[3,-7],[41,-113]],[[283492,649308],[19,-16],[30,-29],[3,-3],[1,-1],[25,-32],[-35,-220],[-9,-21],[-5,-12],[-8,-13],[-24,-36],[-48,-15],[-43,-12],[-28,6],[-96,140],[-11,21],[35,35],[3,1],[1,1],[12,6],[17,18],[124,134],[8,10],[26,33],[2,3],[1,2]],[[283443,649354],[1,-4],[1,-3],[0,-3],[1,-4],[-1,-6],[-3,-13],[-1,-2],[-36,-76],[-5,-6],[-2,-3],[-1,-1],[-3,-3],[-113,-120],[-20,-6],[-2,-1],[-2,0],[-3,-1],[-4,-1],[-1,1],[-2,5],[-23,53],[-6,13],[-2,8],[-7,33],[-4,17],[3,27],[0,1],[1,8],[234,87]],[[284225,648390],[-91,-376],[-199,-220],[-285,669],[305,644],[177,227],[2,2],[2,2],[7,7],[4,4],[28,28],[4,3],[68,49],[4,3],[2,-5],[3,-9],[8,-21],[2,-6],[0,-1],[0,-1],[10,-65],[-30,-546],[-21,-388]],[[283824,649715],[12,-14],[-9,-40],[-14,-59],[-2,-4],[0,-1],[-5,-10],[-1,-2],[-2,-3],[-78,-68],[-16,7],[0,1],[-3,5],[-5,12],[-7,28],[-12,48],[-4,55],[-1,16],[4,13],[1,4],[1,2],[1,2],[1,4],[7,3],[3,1],[65,6],[26,2],[23,-5],[15,-3]],[[283761,649895],[-7,-3],[0,-1],[-11,-6],[-8,-7],[-39,-36],[-1,-1],[-3,-2],[-18,-25],[-9,-11],[0,-11],[1,-10],[2,-32],[2,-20],[-10,-30],[-6,-8],[-7,-9],[-69,-75],[-56,-40],[-3,-1],[-5,-2],[-8,-2],[-11,8],[-2,1],[-2,2],[0,3],[0,5],[0,14],[0,10],[25,25],[74,74],[93,152],[5,5],[63,54],[4,-10],[6,-11]],[[284101,649691],[-34,-18],[-56,-29],[-34,127],[41,132],[25,84],[55,19],[3,-315]],[[282140,651613],[24,1],[6,-99],[-2,-12],[-1,-2],[0,-4],[-3,-4],[-6,-7],[-70,-55],[-1,0],[-3,1],[-15,0],[-8,1],[-6,3],[-9,5],[-3,2],[-1,0],[-3,2],[-1,0],[-2,3],[-4,5],[-10,11],[0,1],[-1,8],[-3,16],[-1,9],[7,64],[1,2],[1,2],[2,4],[58,29],[16,7],[4,1],[34,6]],[[289808,651668],[13,-25],[58,-113],[596,-1739],[179,-522],[48,-156],[76,-250],[3,-17],[2,-9],[2,-6],[0,-2],[44,-210],[11,-52],[3,-20],[3,-13],[5,-45],[1,-9],[2,-18],[2,-9],[-1,0],[-3,-2],[-5,-3],[-3,-2],[-205,-53],[-251,-66],[-86,35],[-1,0],[-6,5],[-4,2],[-2,2],[-2,3],[-27,29],[-6,6],[-2,2],[-56,101],[-1,4],[-2,9],[-3,14],[2,6],[2,7],[2,5],[0,1],[2,4],[1,2],[34,33],[137,131],[63,50],[-78,757],[-459,1573],[-11,30],[-4,11],[-5,13],[-1,4],[-2,3],[-46,97],[-11,23],[-1,3],[-13,16],[-101,134],[-43,13],[-12,3],[-12,4],[-17,44],[-20,52],[-4,83],[98,105],[27,4],[22,-18],[39,-31],[8,-6],[4,-3],[2,-3],[1,-2],[3,-4],[4,-6],[6,-7],[1,-2]],[[285109,654029],[35,-8],[44,-12],[12,-3],[61,-21],[114,-156],[3,-6],[19,-39],[6,-13],[1,-6],[2,-6],[0,-1],[0,-2],[-1,-4],[-2,-5],[-45,-93],[-78,-49],[-194,-121],[-67,-27],[-30,-12],[-2,-1],[-81,-8],[-67,1],[-59,2],[-190,105],[-15,25],[-1,2],[-2,8],[-16,52],[28,73],[3,8],[0,1],[9,21],[67,73],[49,53],[85,75],[48,32],[48,32],[7,3],[13,5],[78,9],[87,10],[3,0],[2,0],[23,2],[3,1]],[[286550,655460],[-10,-15],[-7,-10],[0,-1],[-3,-4],[-4,2],[-4,3],[8,50],[1,7],[1,2],[0,1],[1,7],[2,12],[1,5],[4,15],[2,8],[7,24],[4,15],[2,4],[1,3],[5,15],[36,101],[33,94],[43,117],[5,12],[3,3],[0,1],[6,7],[5,-9],[2,-3],[1,-2],[1,-2],[1,-3],[1,-6],[0,-1],[1,-7],[1,-7],[1,-8],[-43,-154],[-49,-126],[-59,-150]],[[286992,656801],[-36,-18],[-38,-105],[10,-125],[2,-24],[6,-47],[20,-35],[441,-555],[425,-342],[685,-1082],[6,-13],[7,-14],[1,-4],[3,-6],[44,-150],[4,-150],[4,-175],[0,-189],[-100,-1243],[-90,-696],[-103,28],[-87,286],[-8,158],[194,594],[111,706],[5,62],[2,37],[7,219],[0,9],[0,19],[0,31],[0,26],[0,9],[-3,67],[0,9],[0,6],[0,4],[-13,58],[-26,125],[-36,87],[-349,588],[-40,67],[-253,316],[-534,667],[-423,3],[-95,1],[136,770],[42,7],[79,14]],[[279743,657802],[61,-41],[16,-11],[7,-9],[30,-35],[18,-22],[-1,-3],[-1,-3],[-1,-2],[-4,-10],[-5,-5],[-2,-2],[-3,-3],[-7,-8],[-1,1],[-7,1],[-4,1],[-3,0],[-127,24],[-2,6],[-1,3],[1,6],[0,3],[5,32],[1,4],[30,73]],[[279860,658170],[14,-175],[7,-86],[-12,-7],[-21,-12],[-124,-49],[-4,14],[1,6],[2,11],[7,32],[3,17],[37,118],[1,3],[4,13],[26,71],[14,37],[3,5],[5,7],[6,9],[7,11],[3,1],[1,1],[4,1],[4,1],[3,2],[3,-5],[3,-5],[2,-14],[1,-7]],[[283679,658266],[1,-6],[1,-3],[1,-8],[2,-10],[7,-35],[4,-12],[1,-4],[1,-3],[1,-3],[1,-3],[6,-21],[29,-75],[20,-51],[25,-65],[5,-12],[36,-69],[17,29],[4,-1],[3,-1],[0,-3],[1,-7],[14,-147],[6,-73],[-1,-5],[0,-1],[-1,-3],[-1,-4],[-2,-6],[-11,7],[-18,11],[-18,24],[-50,104],[-52,162],[-10,57],[-16,90],[-2,-8],[-2,-8],[-33,13],[-20,137],[14,0],[1,-5],[0,-3],[3,-3],[7,-6],[0,5],[0,5],[1,7],[0,11],[1,19],[1,13],[1,15],[0,2],[0,7],[-1,21],[0,8],[-9,16],[1,14],[0,3],[2,0],[1,0],[8,-9],[4,-4],[4,-4],[3,-56],[5,-31],[4,-12]],[[284625,661251],[-1,-8],[-1,-6],[-3,-12],[-13,-69],[-1,-6],[-2,-11],[-52,-139],[-15,73],[-24,194],[-7,53],[36,28],[23,17],[58,-89],[2,-17],[0,-5],[0,-3]],[[285330,661489],[1,-15],[1,-9],[1,-8],[0,-5],[1,-11],[-1,-9],[0,-6],[-1,-3],[-10,-98],[-3,-27],[-3,4],[-4,6],[-14,22],[-77,186],[0,2],[-2,16],[64,52],[6,1],[7,1],[2,0],[2,1],[7,1],[1,0],[13,-62],[9,-39]],[[285436,661804],[15,-10],[8,-19],[34,-78],[0,-8],[1,-8],[2,-20],[1,-13],[-4,-16],[-21,-90],[-9,-39],[-1,-4],[-1,-4],[-7,-2],[-25,-10],[-13,27],[-3,5],[-3,46],[-3,59],[-6,136],[-2,51],[9,14],[18,-11],[10,-6]],[[285447,662275],[-18,-72],[-23,-93],[-30,-61],[-6,-13],[4,-33],[-35,-38],[-15,-17],[30,206],[5,33],[-1,5],[-2,34],[13,23],[24,43],[20,30],[3,5],[18,-31],[13,-21]],[[285466,662645],[-29,-129],[-30,-113],[-18,-68],[-19,-37],[-3,-3],[-6,-5],[-1,-1],[-4,1],[-11,5],[-69,116],[2,25],[2,25],[2,8],[1,10],[1,9],[1,9],[29,55],[1,0],[4,1],[7,3],[9,2],[4,2],[2,-2],[5,-4],[1,-7],[1,-8],[0,-5],[0,-8],[18,10],[28,15],[10,36],[20,70],[42,-12]],[[286157,662046],[-8,32],[-3,12],[-1,4],[-1,3],[-1,5],[-2,38],[-1,5],[0,4],[0,8],[-8,126],[13,90],[3,15],[0,2],[1,6],[3,17],[7,34],[8,43],[7,42],[7,35],[6,28],[34,175],[7,-6],[4,-3],[1,-4],[1,-3],[2,-11],[3,-13],[-1,-8],[0,-1],[-3,-32],[-40,-328],[-38,-315]],[[285586,662816],[52,-216],[-11,-51],[-18,-76],[-50,-101],[-18,-37],[-6,-2],[-1,0],[-3,-1],[-17,75],[-11,43],[48,335],[6,9],[7,9],[3,4],[9,11],[6,-1],[4,-1]],[[283813,662958],[1,-5],[0,-3],[2,-12],[2,-18],[-10,-97],[-2,-10],[0,-1],[-1,-7],[0,-6],[-1,-2],[-2,-16],[-1,-8],[-4,-24],[-7,-45],[-19,-71],[-3,-10],[-1,-2],[-1,-6],[-3,-1],[-1,0],[-4,-1],[-2,4],[-4,8],[-7,13],[-5,11],[-9,19],[-3,7],[-4,14],[-8,25],[69,221],[3,5],[2,3],[3,4],[20,11]],[[283784,663110],[17,-1],[2,-2],[6,-7],[0,-3],[1,-4],[1,-3],[2,-11],[-1,-1],[-2,-7],[-1,-4],[-8,-27],[-3,-10],[-1,-5],[-74,-250],[-9,-1],[-7,-1],[-48,131],[-3,14],[-1,1],[0,3],[-6,21],[0,3],[-2,5],[-13,74],[2,13],[20,1],[14,8],[110,60],[2,2],[2,1]],[[283739,663335],[0,-1],[0,-6],[0,-1],[0,-5],[-51,-96],[-22,-34],[-27,-26],[-21,-21],[-27,-9],[-3,0],[-5,2],[-9,2],[-10,18],[-29,55],[-1,1],[-5,11],[2,12],[175,154],[6,0],[8,0],[17,-48],[2,-8]],[[285867,663384],[8,-23],[7,-21],[-8,-4],[-4,-1],[-12,9],[-12,10],[-2,1],[-2,2],[-16,16],[-16,15],[-96,120],[-69,84],[-5,14],[0,11],[1,5],[0,1],[4,3],[9,9],[19,19],[7,6],[1,2],[186,-278]],[[281840,663790],[478,-236],[57,-20],[99,20],[32,8],[563,137],[341,-366],[-611,-264],[-1161,-500],[-71,525],[29,101],[132,448],[21,28],[91,119]],[[284916,664246],[833,-1218],[214,-313],[4,-11],[7,-25],[9,-248],[-10,-84],[-30,-275],[-178,-1544],[-157,-1363],[-162,-124],[-81,-62],[-346,633],[472,1692],[105,559],[124,661],[-3,130],[-5,180],[-602,818],[-222,429],[-53,101],[-71,204],[34,-31],[118,-109]],[[284316,664753],[-18,-29],[-50,-81],[-460,225],[40,-9],[488,-106]],[[282844,665488],[-15,-35],[-30,-62],[-50,-105],[-8,-6],[-10,-7],[-60,-23],[-2,14],[-1,1],[2,4],[0,3],[8,27],[3,6],[5,11],[4,8],[15,30],[6,14],[34,41],[88,108],[13,5],[3,1],[-5,-35]],[[254678,615069],[-34,-96],[-163,-479],[729,-140],[-53,-2107],[-151,-905],[-60,-356],[-114,-1628],[-91,-1292],[185,-1889],[-106,-746],[-186,-1299],[-445,-1728],[-129,-277],[-114,-250],[-119,36],[-99,30],[-252,-369],[-508,-1489],[-14,-173],[-15,-193]],[[252939,599719],[284,-125],[126,-55],[324,36],[416,47],[220,-137],[85,-53],[160,-213],[358,-478]],[[254912,598741],[358,-107],[483,939],[527,271],[580,-362],[339,-211],[1595,-284],[1069,126],[1225,665],[3105,220],[975,-521],[341,-182],[2982,-3975],[519,-890]],[[269010,594430],[-221,-187],[-50,-267],[-166,-882],[192,-1636],[-672,-3985],[-196,-2183],[-36,-1009],[-4,-98],[22,-593],[148,-3927],[-104,-458],[-44,-192],[-185,-131],[-108,-654],[-136,-1603],[-43,-1765],[-16,-704],[-370,-1130],[15,-529],[7,-239],[158,-1040],[198,-649],[67,-57],[126,-104]],[[267592,570408],[13,-64],[467,-2326],[289,-974],[51,-173],[1578,-3757],[666,-733]],[[270656,562381],[289,-510],[238,-419],[44,-1232],[297,-1071],[495,-583],[408,39],[316,30],[536,-256],[313,-586],[36,-7],[519,-100],[492,195],[420,167],[1543,1768],[481,409],[571,486],[291,-514]],[[277945,560197],[242,-426],[441,-154]],[[278628,559617],[103,-245],[218,-521],[47,-434],[-237,-33],[-171,-24],[-58,-205],[-104,-365],[14,-428],[22,-641],[-1181,-1671],[-29,-30],[-147,-151],[-257,-12],[-58,-3],[-114,-1791],[940,-2107],[123,-557],[52,-235],[-70,-323],[-1163,-1255],[-490,-122],[-271,-67],[-177,26],[-314,48],[-114,241],[-15,30],[-253,2680],[-91,970],[-152,212],[-57,-65],[-185,-211],[-1,-649],[-1,-458],[-798,409],[-336,1211],[-385,1392],[-421,-60],[-443,169],[-148,56],[-243,154],[-14,205],[-58,92],[-152,241],[-813,-63],[-206,-16],[-173,-417],[-526,-1269]],[[269721,553325],[-751,3458],[-488,649],[-23,-5],[-262,-62],[-75,-168],[222,-617],[279,-317],[49,-886],[-75,-47],[-47,27],[-614,348],[-372,616],[-137,228],[25,443],[4,74],[202,368],[58,333],[40,233],[-64,1039],[-16,256],[-881,1567],[-807,918],[-170,87],[-336,170],[-591,1316],[-123,599],[-117,573],[-1337,1689],[-116,147],[46,-783],[6,-111],[256,-592],[153,-160],[321,-166],[207,-737],[-526,-1207],[-167,-152],[-55,85],[-1079,1636],[-311,213],[-276,879],[-84,268],[-204,1425],[330,1098],[149,3231]],[[261964,571288],[-2289,4192],[-215,693],[-455,1468],[-784,1398],[-1334,2380],[125,931],[465,215]],[[257477,582565],[-188,634],[-25,82],[4,378],[11,1297],[-244,102],[-292,-274],[-480,-44],[-194,306]],[[256069,585046],[-68,237],[-84,-311],[0,-180],[134,-264],[95,-187],[-358,-608],[-206,-129],[-734,71],[-760,74],[-776,353],[-1335,1377],[-177,34],[-386,73],[-1050,700],[-117,119],[-621,639]],[[249626,587044],[-618,486],[-662,522],[-1312,-7],[-656,212],[-17,6],[-8,7],[-627,541],[-348,445],[-286,367],[-1290,2097]],[[243802,591720],[-2045,4310],[-1373,2532],[-431,616],[-622,888],[-1072,930],[-383,243],[-321,204],[-220,57],[-433,113],[-1223,-216],[-682,-760],[-538,-599],[-583,-425],[-815,-593],[-341,-381],[-120,-133],[-641,-154],[-1097,594],[-894,969],[-909,265],[-447,240],[-561,300],[-1320,1211],[-484,575],[-241,287],[-273,598],[-1294,682],[-574,178],[-528,165],[-309,350],[-440,497],[-2609,2085],[-589,470],[-1887,2969],[-503,602],[-589,705],[-464,-41],[-186,-17],[-635,308],[-457,222],[-2116,1547],[-610,1929],[-31,59],[-339,643],[-522,677],[-242,315],[-2531,2717],[2,22],[5,49],[-75,322],[-109,463],[-216,367],[-272,463],[-643,1806],[-494,2081],[-61,254],[-12,148],[68,99],[196,287],[768,234],[201,328],[21,168],[27,220],[-204,494],[95,1800],[67,208],[53,164],[97,2069],[-150,481],[-381,475],[-171,212],[-456,1744],[-179,2465],[-228,1027],[-176,792],[-1402,2753],[-190,374],[-1378,3875],[-127,258],[-138,278],[-629,1090],[-2050,2966],[-662,2029],[-23,60],[-445,1182],[-216,440],[-8,15],[-17,32],[-1773,1500],[-648,763],[-213,252],[-41,430],[-113,1177],[293,1218],[233,974],[8,668],[1,101],[-96,538],[-338,699],[-120,51],[-319,136],[-2680,3521],[-185,523],[-48,1698],[2,222],[4,476],[189,332],[-742,594],[-64,18],[-410,111],[-939,1383],[-106,157],[-23,39],[-690,1211],[-311,706],[-217,490],[-1027,3134],[-840,2563],[-739,2840],[-814,3128],[-79,2465],[-743,1399],[-815,1130],[-785,623],[-156,124],[-153,-478],[-103,2],[-303,4],[-782,1013],[-275,355],[-225,201],[-371,328],[-15,6],[-33,11],[-59,-15],[-5,-1],[-42,-715],[-195,-3275],[159,-728],[117,-218],[95,-178],[161,-1149],[178,-1715],[-42,-988],[-31,-713],[128,-482],[134,-506],[494,-1203],[912,-1128],[1117,-1891],[132,-859],[144,-934],[127,-252],[113,-224],[1184,-2079],[331,-580],[184,-663],[118,-1286],[138,-1498],[70,-292],[100,-419],[1274,-2584],[293,-751],[382,-978],[-12,-428],[275,-618],[46,34],[157,119],[359,-528],[313,-459],[580,-2574],[145,-1038],[-27,-349],[-39,-506],[132,-994],[1089,-3553],[256,-835],[271,-2264],[-6,-483],[-4,-347],[84,-529],[83,-530],[159,-494],[34,-65],[137,-255],[489,-213],[117,29],[89,22],[12,180],[454,138],[348,-577],[513,-851],[566,-1528],[379,-1022],[153,-861],[36,-200],[-128,-1127],[-127,-289],[-103,-232],[-966,-1346],[-327,147],[-1148,4247],[-1674,2831],[-562,710],[-246,244],[-588,584],[-286,-28],[-165,-17],[-1009,1110],[-524,1472],[-5,712],[377,2857],[13,959],[16,1145],[-244,1360],[-10,58],[-394,1015],[-588,750],[-1402,1787],[-3452,3265],[-59,105],[-475,842],[-258,621],[-244,586],[-1016,1559],[-126,434],[1595,-416],[552,588],[309,912],[363,1073],[9,298],[34,1238],[-303,897],[-1735,3418],[-262,518],[-2285,2838],[-552,3048],[-365,2017],[-784,2933],[-355,1048],[-313,924],[-240,1014],[-497,2098],[-294,868],[-331,979],[-196,1222],[-34,214]],[[174657,698090],[6676,1089]],[[181333,699179],[120,-1569]],[[174657,698090],[-437,2824]],[[174220,700914],[-227,923]],[[173993,701837],[-399,974]],[[173594,702811],[-1509,2152],[-17,24],[-810,880]],[[171258,705867],[-182,198],[-53,44],[-2293,1903],[-346,425],[-653,803]],[[167731,709240],[-1907,219],[-475,55],[-134,189],[-238,338],[-70,2816]],[[164907,712857],[-1033,2524],[-44,109],[-392,814],[-1756,3644],[-551,4292],[-83,-24],[-128,-37],[-240,190],[-705,1379],[-301,2225],[8,1124],[43,58],[79,106],[201,-18],[33,-154]],[[160038,729089],[60,-282],[-72,-137]],[[160026,728670],[86,-686]],[[160112,727984],[566,-540],[203,2]],[[160881,727446],[-222,980]],[[160659,728426],[-558,1406],[-917,-24],[-163,169],[-568,585],[-4,167]],[[158449,730729],[-7,331]],[[158442,731060],[-721,2279],[-1341,2384],[-205,1912],[-11,519]],[[156164,738154],[-24,1112],[62,345]],[[156202,739611],[-202,1394]],[[156000,741005],[-348,832],[-321,766]],[[155331,742603],[-785,1152],[-126,1077],[807,3227]],[[155227,748059],[45,3592]],[[155272,751651],[-282,2033]],[[154990,753684],[-206,620],[-104,774]],[[154680,755078],[-267,1989],[-242,1346],[-13,47],[-114,436],[559,3126],[308,1245],[227,2059],[484,7280]],[[155622,772606],[74,2495],[-69,3570],[821,162],[90,68],[177,135],[62,131],[35,76],[-635,75],[-99,12],[-90,90]],[[155988,779420],[-453,449]],[[155535,779869],[89,2024],[292,1354]],[[155916,783247],[87,64]],[[156003,783311],[-37,62],[-831,335]],[[155135,783708],[-563,3110],[-213,1176]],[[154359,787994],[-368,575],[-158,246],[-144,486],[-77,1144]],[[153612,790445],[-87,1272],[571,-161],[1903,-1141]],[[155999,790415],[2391,-354],[641,124],[274,-1496],[-297,-652],[-36,-77],[-118,-122],[-41,35],[-122,105]],[[158691,787978],[-227,-588],[-441,-1145],[-6,-26],[-123,-530]],[[157894,785689],[260,0],[131,0]],[[158285,785689],[66,56],[331,284]],[[158682,786029],[-492,-294],[-59,36],[-122,74],[269,748]],[[158278,786593],[124,345],[271,452],[731,1222],[238,-387]],[[159642,788225],[143,-233],[-128,-1434],[-27,-294],[-307,-765]],[[159323,785499],[-102,-255],[-160,76]],[[159061,785320],[-149,71],[-102,587]],[[158810,785978],[-117,-780],[113,-830]],[[158806,784368],[150,-51]],[[158956,784317],[282,-96]],[[159238,784221],[971,1422]],[[160209,785643],[-137,685],[-131,660],[74,1159],[61,250]],[[160076,788397],[141,583],[135,210],[37,58],[19,228]],[[160408,789476],[17,220]],[[160425,789696],[-295,915],[-122,379]],[[160008,790990],[-99,561]],[[159909,791551],[-125,710],[77,877],[4,35],[-160,623]],[[159705,793796],[-400,246]],[[159305,794042],[-467,1001],[95,211],[73,162]],[[159006,795416],[-359,0],[-412,0],[-39,0]],[[158196,795416],[-33,0],[-78,0]],[[158085,795416],[-243,484],[-152,940],[64,77]],[[157754,796917],[261,320],[-108,799]],[[157907,798036],[-145,1073],[-147,57]],[[157615,799166],[-272,-321],[-157,-185]],[[157186,798660],[-396,-943],[-956,529],[-482,953],[105,570],[108,96],[78,69],[97,-92],[129,-122],[33,-102],[102,-312],[-115,2871],[-160,-1456],[-1,-11],[-497,-633],[-35,-44],[-857,-46],[-777,1033],[-76,443]],[[153486,801463],[620,2205],[-1203,-379],[-106,698]],[[152797,803987],[-37,247],[439,1202]],[[153199,805436],[55,377],[106,735],[-55,169],[-33,102],[-28,2],[-54,4],[-279,-587],[-2,-263],[0,-81]],[[152909,805894],[113,-355],[7,-22],[-78,-723],[-65,-120],[-456,-839],[-154,-103],[-7,-5],[-315,264],[-234,197],[-1131,-8],[-941,-7],[-447,230],[840,507]],[[150041,804910],[685,414],[351,512],[23,76],[270,897],[-101,754],[-134,184],[-96,-1],[-42,-1],[29,-99],[201,-698],[-439,-1272],[-165,-188]],[[150623,805488],[-1120,-222],[-33,258]],[[149470,805524],[109,150],[203,281],[-93,116],[-216,269]],[[149473,806340],[-1690,697]],[[147783,807037],[-446,-437]],[[147337,806600],[78,-15],[87,-17],[-81,-174],[-346,-231],[-600,549],[-69,317]],[[146406,807029],[-84,392],[685,91],[844,112],[-41,18],[-181,79],[-658,-106],[-677,-109],[-585,436],[903,23],[-377,412],[-49,-29],[-556,-324],[-47,554],[-19,224],[262,13],[195,10],[516,245],[459,218],[-76,68],[-59,52],[-181,-268],[-373,-142],[-533,193],[-133,48],[-42,132]],[[145599,809371],[-131,412],[98,237],[391,944],[502,232],[61,27],[1465,-31]],[[147985,811192],[-2126,91]],[[145859,811283],[-577,-883],[-124,204]],[[145158,810604],[-376,620],[5,1076],[2,255],[339,275]],[[145128,812830],[1051,1628],[170,141]],[[146349,814599],[478,397],[426,-151],[343,-737],[554,-1193]],[[148150,812915],[-10,208],[-12,238]],[[148128,813361],[-1542,2941],[-1736,-1940],[-525,1625],[49,97],[70,137],[-79,53],[-199,133]],[[144166,816407],[-364,-1383],[-160,-353],[-108,22],[-74,16],[-18,81],[-17,76],[259,653],[432,2178]],[[144116,817697],[-52,604],[-43,-56],[-80,-102],[-363,194]],[[143578,818337],[-514,273],[-160,1191],[-163,207],[-769,979],[-87,684]],[[141885,821671],[1029,-205]],[[142914,821466],[421,225],[198,106],[442,-59],[834,-1285]],[[144809,820453],[-241,456],[-343,648]],[[144225,821557],[-320,295],[-406,111]],[[143499,821963],[-306,-215],[-249,-174],[-121,146],[-526,636],[-180,512],[90,571],[286,535],[31,16],[137,67],[-95,146],[-183,281]],[[142383,824484],[-1345,-1633]],[[141038,822851],[-106,-128],[-22,-713]],[[140910,822010],[-22,-748],[-116,-14],[-302,385]],[[140470,821633],[-599,761],[119,-182],[205,-312],[159,-695]],[[140354,821205],[-49,-841],[-80,-7],[-240,-21],[-714,1361],[-59,587]],[[139212,822284],[-21,206],[-170,-21],[-260,305],[-550,923]],[[138211,823697],[-125,210],[5,268],[256,249],[887,-1009]],[[139234,823415],[226,-371],[197,-324],[213,-325],[-723,1165],[-372,598]],[[138775,824158],[-42,1632],[-188,439]],[[138545,826229],[-373,868]],[[138172,827097],[-327,-247],[-65,33],[-177,90],[-15,108],[-58,410],[155,708],[689,927]],[[138374,829126],[27,84],[507,1507],[793,29],[132,5],[588,471],[532,738],[-166,-10],[-39,-28],[-75,-52],[-520,-718],[-51,-71],[-370,-286],[-321,-13],[-323,-14],[-27,20],[-180,134],[1,9]],[[138882,830931],[73,380],[380,885],[461,1074],[321,177]],[[140117,833447],[-106,75],[-539,388],[-2,-439],[-2,-294],[-150,-765],[-534,-1401],[-202,-221],[-154,589],[185,520],[37,103],[-54,1874]],[[138596,833876],[-32,1131],[301,1247]],[[138865,836254],[-244,-525]],[[138621,835729],[-156,-336],[9,-170]],[[138474,835223],[157,-3180]],[[138631,832043],[-327,-852]],[[138304,831191],[-200,-522]],[[138104,830669],[-794,-1033]],[[137310,829636],[-472,-257],[-326,70],[-248,329],[-194,1084],[0,34],[-10,497],[304,1250],[91,721],[94,758]],[[136549,834122],[-209,951],[-102,466]],[[136238,835539],[-719,1171],[-94,-145],[481,-790],[245,-674],[151,-792],[-258,-1340],[-110,-567],[-125,-133],[-265,-282],[-48,46],[-268,262],[216,267]],[[135444,832562],[113,367],[20,65],[-115,239]],[[135462,833233],[-1161,-343]],[[134301,832890],[-41,-39],[-22,-21]],[[134238,832830],[-127,-1095],[0,-2],[-4,-28],[-78,-58],[-38,-28],[-191,410],[-63,1313],[145,96]],[[133882,833438],[395,866],[88,371]],[[134365,834675],[287,1199]],[[134652,835874],[-73,156],[-181,388]],[[134398,836418],[-341,-182],[-494,-266]],[[133563,835970],[383,-521],[-85,-397],[-51,-239],[-391,-1012],[-545,487],[-57,50],[-137,923],[768,1492]],[[133448,836753],[5,9]],[[133453,836762],[797,1109],[60,85],[-90,22],[-629,158],[-353,-196],[-411,-229]],[[132827,837711],[159,-1215],[-105,-170],[-21,-35],[-414,-175],[-134,195],[-114,167],[-196,715]],[[132002,837193],[-95,2],[-175,2]],[[131732,837197],[-87,-359],[-110,254],[-155,356],[-15,331],[-11,256],[456,646],[166,104]],[[131976,838785],[109,67],[110,-157],[142,-202],[158,330]],[[132495,838823],[194,406],[-33,193],[-35,213],[-296,635],[-10,21],[-1099,1401],[-260,1068],[-1495,714],[-26,25],[-337,340],[155,303],[119,233]],[[129372,844375],[430,16],[225,216]],[[130027,844607],[-773,380],[-564,1392],[9,81],[42,369],[133,70],[73,38],[902,-639],[-424,579],[-543,469],[-78,67],[-774,1046],[-498,1241],[-1500,801],[-24,33],[-343,464],[-507,1370],[-609,1645],[-383,1875]],[[124166,855888],[-159,781],[-24,-79],[-315,-1036]],[[123668,855554],[304,-1454]],[[123972,854100],[488,-1410],[348,-2303]],[[124808,850387],[-53,-217],[-27,-113],[-13,-21]],[[124715,850036],[-127,-204],[-246,106],[-194,83],[-472,1094]],[[123676,851115],[-517,-122],[-539,-126],[-367,599],[-6,9],[52,202],[157,622],[-563,1692],[12,-115],[17,-158],[-88,-429],[-35,-168],[-196,-76],[-33,-13],[-620,437],[-91,228],[-80,201],[-74,83],[-276,308]],[[120429,854289],[-914,364],[-115,-716],[1141,-354],[408,-378],[304,-550],[-343,-343]],[[120910,852312],[-126,-126],[150,-22],[75,56]],[[121009,852220],[259,194],[61,151],[116,-87],[375,-598],[285,-997],[-179,-256],[-1279,-438]],[[120647,850189],[-457,4],[-2393,1925],[-2070,2784],[-2711,1642],[-1399,1040],[-109,81],[43,142],[100,-43],[203,54]],[[111854,857818],[246,66],[410,724]],[[112510,858608],[6,1745],[-182,309]],[[112334,860662],[-288,-579]],[[112046,860083],[-297,-599],[-1541,-881],[-729,128],[-799,140],[-1589,866],[-106,235],[553,87]],[[107538,860059],[42,269],[106,682],[-196,91],[-582,273],[-15,-230]],[[106893,861144],[-722,-896],[-2556,719]],[[103615,860967],[-3088,-534],[-581,48]],[[99946,860481],[-295,24],[-273,359],[-411,541],[-1255,288],[-243,379],[289,1073]],[[97758,863145],[-684,-363],[-27,-68],[-134,-326],[-675,68],[-1069,678],[-25,103]],[[95144,863237],[-88,350],[366,612],[-11,30],[-30,84],[-730,242],[-168,-11]],[[94483,864544],[-1233,-82],[-111,222]],[[93139,864684],[-298,593],[-285,230],[-148,336],[22,242],[11,112],[228,407],[125,222],[-1907,-670]],[[90887,866156],[-370,175]],[[90517,866331],[-1046,-827],[-424,-335],[-252,-131],[-307,88],[124,616]],[[88612,865742],[17,83]],[[88629,865825],[127,259],[386,783],[434,565]],[[89576,867432],[367,246],[-210,182],[-96,84]],[[89637,867944],[-1108,-1285],[-117,-136],[-427,-1163],[-973,-354]],[[87012,865006],[155,-180],[106,-124],[132,5],[446,15]],[[87851,864722],[400,209],[183,-83],[168,-76],[14,-169],[24,-280],[-131,-223],[-460,-442],[-18,-16],[-430,-32],[227,-178]],[[87828,863432],[208,-164],[184,39]],[[88220,863307],[180,384],[73,157],[175,98],[322,-671]],[[88970,863275],[-20,-137],[-42,-308],[-1031,-922]],[[87877,861908],[-185,-378],[504,23]],[[88196,861553],[574,26],[-299,-955],[-1460,-642],[-986,152],[-1129,454]],[[84896,860588],[-360,-792],[-118,-67],[-86,-49],[-50,190],[-59,223],[-63,16],[-92,24],[-5,-36]],[[84063,860097],[-92,-682],[-1588,-2334],[-98,-3],[-76,-2],[-63,152],[-74,179],[-170,-95],[-627,-346]],[[81275,856966],[-994,-1033],[-470,19]],[[79811,855952],[-328,14]],[[79483,855966],[-665,-490],[-330,-33],[-181,164],[-472,427],[-18,244],[171,348],[52,10]],[[78040,856636],[30,-3],[31,-3]],[[78101,856630],[1615,1301],[1041,1263]],[[80757,859194],[-498,-71],[-1012,-931],[-229,84],[-351,128],[-268,233],[-130,114],[-58,132],[-76,175],[490,1576],[131,199],[58,88],[145,391],[847,2287]],[[79806,863599],[209,1155],[51,278]],[[80066,865032],[2068,1435],[1412,-606]],[[83546,865861],[759,-68],[953,-85]],[[85258,865708],[17,35],[100,209],[-1275,462],[-452,408],[-384,346],[82,302]],[[83346,867470],[10,35]],[[83356,867505],[212,271],[377,481]],[[83945,868257],[995,754]],[[84940,869011],[-270,130],[-225,108]],[[84445,869249],[-743,-620]],[[83702,868629],[-138,-571],[-130,-97],[-222,-166],[-1781,93],[-691,-339]],[[80740,867549],[-1519,-1151]],[[79221,866398],[-284,-398],[-1004,-1410]],[[77933,864590],[-906,-1624],[-65,-115]],[[76962,862851],[-1240,-1088],[11,-292],[-362,-1797],[-85,-38],[-481,-214],[185,-107],[34,-20],[-160,-662],[-433,-243],[-368,-206],[-129,391],[-642,-783],[-15,-19],[-1425,-1062]],[[71852,856711],[-301,-1492],[155,-461],[70,-112],[7,-11],[73,34],[508,235],[364,-19]],[[72728,854885],[367,-20],[339,-246],[384,-278],[368,-670],[-402,-776],[-59,-112],[-542,-523],[-272,-58],[-134,-28],[-584,-675],[-1089,-2154],[-151,118]],[[70953,849463],[-1049,-758],[-2933,-2797],[-325,-167],[-564,-291]],[[66082,845450],[-269,-283]],[[65813,845167],[-502,-526]],[[65311,844641],[432,-434],[-13,-412],[-378,-618],[-242,-396],[-573,-42]],[[64537,842739],[-128,-114]],[[64409,842625],[-198,-174],[-597,-285],[-734,-351],[-176,29],[-29,5],[-202,-554]],[[62473,841295],[-1275,-1608],[-530,-46],[-348,-31]],[[60320,839610],[-140,-515],[-134,-494],[184,-481]],[[60230,838120],[134,-352],[-402,-800],[-67,341],[-110,558]],[[59785,837867],[-401,101]],[[59384,837968],[-53,-481],[-56,-506],[-205,-351],[-1677,-571]],[[57393,836059],[-324,82],[-115,-114],[-92,-91],[-343,-1146]],[[56519,834790],[-82,-275],[214,1134]],[[56651,835649],[-598,276]],[[56053,835925],[-1024,-996],[-692,-674],[-2232,-1286],[-727,28],[-32,163],[33,151],[84,373],[41,102],[277,687],[-239,123]],[[51542,834596],[-28,13],[-80,-17],[-288,-64]],[[51146,834528],[-284,-563]],[[50862,833965],[-31,-532],[-200,-474],[-292,-692],[-947,-1227],[-1301,979]],[[48091,832019],[131,-226]],[[48222,831793],[112,-193],[8,-77],[96,-856],[-352,-105],[-403,-119],[-615,18],[-838,-715],[-58,281],[219,1459],[272,184]],[[46663,831670],[956,645]],[[47619,832315],[634,708]],[[48253,833023],[316,774],[21,32],[559,888],[808,811],[629,631],[1148,422]],[[51734,836581],[280,103]],[[52014,836684],[1030,-183]],[[53044,836501],[-185,-186],[-147,-149]],[[52712,836166],[496,-804],[243,-187],[244,-189]],[[53695,834986],[556,776],[12,318],[7,203],[-197,263],[-113,149],[622,1755],[703,725]],[[55285,839175],[636,657]],[[55921,839832],[2201,1556]],[[58122,841388],[396,280]],[[58518,841668],[117,115],[540,535],[1286,2238]],[[60461,844556],[8,14]],[[60469,844570],[1537,1438],[2,694]],[[62008,846702],[1,477]],[[62009,847179],[92,795],[86,746]],[[62187,848720],[212,1480],[154,658]],[[62553,850858],[189,812],[392,488]],[[63134,852158],[586,728],[365,1464],[-239,-35]],[[63846,854315],[-672,-765],[-28,-14],[-2514,-1316],[-407,242],[-168,325],[-210,408],[-152,380],[-15,39],[-51,865],[-253,-326],[-310,-400],[-331,-872],[60,-529]],[[58795,852352],[322,-771],[46,-109],[-194,-325],[-82,-138],[-185,-61],[-91,-30],[-175,71],[-282,115],[-468,1005],[-489,1051]],[[57197,853160],[-593,955],[-323,-79]],[[56281,854036],[-128,-550],[-13,-57],[-305,-61],[-131,-26],[-166,184],[-753,834],[-371,115],[-298,92]],[[54116,854567],[-1145,-794]],[[52971,853773],[-790,-547],[-120,-169],[-328,-458]],[[51733,852599],[-633,-421],[-48,-31],[-11,-4],[-367,-122],[-712,260],[447,290]],[[50409,852571],[177,518],[100,294],[-228,1371],[-277,429]],[[50181,855183],[-128,198]],[[50053,855381],[-210,726],[371,685],[282,281]],[[50496,857073],[196,196],[3,442]],[[50695,857711],[-1097,2519],[-57,106],[-576,1079],[-31,4],[-188,27],[-134,-271],[34,-414],[-397,-500],[-1466,-761],[-392,-77],[-1127,-220],[-1200,281],[-14,36],[-217,528],[143,166],[-373,522],[-568,701],[-571,707],[-1157,835],[-338,484],[-259,370],[853,636]],[[41563,864469],[303,564],[166,307]],[[42032,865340],[-372,1317],[-827,739]],[[40833,867396],[-174,-416],[-7,-16],[-360,292]],[[40292,867256],[-386,313]],[[39906,867569],[-449,463],[-118,121],[-86,177],[-551,1139]],[[38702,869469],[118,577]],[[38820,870046],[109,530],[513,1511],[302,889],[589,875]],[[40333,873851],[825,1228],[566,471],[31,10],[494,152]],[[42249,875712],[-155,1224],[49,343],[48,338],[356,648],[216,33]],[[42763,878298],[197,31]],[[42960,878329],[18,61],[17,60],[-140,154],[11,143],[20,248],[413,420],[3,4],[45,12],[976,257],[930,-435],[667,-582]],[[45920,878671],[380,-331],[649,106],[357,307],[853,735],[639,963],[272,410],[532,-33],[675,-41],[1088,111],[665,68],[332,143],[616,825],[441,758],[3,316],[0,75],[-519,2233]],[[52903,885316],[-780,955],[-54,751]],[[52069,887022],[656,-13],[199,221],[432,483],[24,587],[-238,386],[-137,222]],[[53005,888908],[-281,259],[-364,335],[-2964,-1609],[-1081,-1117],[-2068,270]],[[46247,887046],[-685,341],[-645,68],[-636,-38],[-690,-43],[-1235,-573],[-140,-12],[-819,-71],[-1889,468],[-1121,279],[-264,494]],[[38123,887959],[-454,853]],[[37669,888812],[-775,1796]],[[36894,890608],[472,65],[213,353]],[[37579,891026],[345,573],[-62,86],[-57,78],[-1599,357],[-867,193],[-660,316]],[[34679,892629],[-1470,706],[-212,411],[572,603],[1965,1167],[3647,2166]],[[39181,897682],[2064,967],[2085,663]],[[43330,899312],[1504,69]],[[44834,899381],[506,-147],[205,-59],[-414,-57],[-594,-2227]],[[44537,896891],[965,-675]],[[45502,896216],[2505,105],[2306,-288]],[[50313,896033],[285,206],[19,14],[794,1167],[1111,-377],[191,-64],[59,184],[28,88],[-33,54]],[[52767,897305],[-301,506],[-2099,864]],[[50367,898675],[-920,880],[-843,806],[-303,512],[103,347],[198,57]],[[48602,901277],[441,125]],[[49043,901402],[586,-733],[181,-613]],[[49810,900056],[-2,-310],[0,-54],[400,-535],[50,-67],[912,-615],[712,247]],[[51882,898722],[85,106],[32,38],[-36,95],[-354,139],[-331,129],[-444,412],[-515,479],[31,123],[116,463]],[[50466,900706],[334,707],[627,24]],[[51427,901437],[-82,255],[-348,156],[-505,227]],[[50492,902075],[-1035,-240],[-1261,-5],[-2420,471],[-614,373],[-55,611]],[[45107,903285],[-286,901]],[[44821,904186],[-469,895]],[[44352,905081],[-336,378]],[[44016,905459],[-474,275],[-549,319],[-1915,1513],[-345,273],[-1972,1015]],[[38761,908854],[-1628,838]],[[37133,909692],[161,116]],[[37294,909808],[562,406]],[[37856,910214],[289,1180],[213,872]],[[38358,912266],[860,533],[696,-21],[704,-21],[3162,446],[285,123],[454,197],[885,648],[269,196],[1021,1349]],[[46694,915716],[85,280],[23,78],[6,548],[4,353],[248,723],[321,935],[1322,1648],[329,303],[211,196],[705,428],[409,249],[1083,-124],[537,-62],[984,349],[320,113],[1373,856]],[[54654,922589],[1877,1627],[558,202]],[[57089,924418],[663,241],[1048,214],[-515,-131],[-74,-18],[-461,-249]],[[57750,924475],[-375,-202],[-2,-139],[33,-35]],[[57406,924099],[95,-102],[483,22]],[[57984,924019],[371,17]],[[58355,924036],[2752,490],[446,79]],[[61553,924605],[1166,685],[724,781],[975,1051],[669,389]],[[65087,927511],[245,-203],[421,-348]],[[65753,926960],[833,-342]],[[66586,926618],[1261,-218],[99,-355],[52,-184],[-419,-331],[-423,-333],[-241,-31],[-265,-34],[184,-623],[106,-37],[168,-58]],[[67108,924414],[945,160]],[[68053,924574],[1118,1649],[73,108],[830,-550],[545,-362],[201,-883],[33,-142]],[[70853,924394],[864,-336],[493,288],[76,122],[75,120],[865,149]],[[73226,924737],[1655,153],[135,-32],[587,-139],[1318,-614],[-142,-1051]],[[76779,923054],[989,-553]],[[77768,922501],[761,-427]],[[78529,922074],[1205,-119],[584,-58]],[[80318,921897],[4404,631],[1290,-346]],[[86012,922182],[1007,-270]],[[87019,921912],[2269,-990]],[[89288,920922],[1769,-418]],[[91057,920504],[1354,29],[1238,26],[1461,-297],[1009,-564],[1169,-373],[800,-9],[809,348]],[[98897,919664],[714,307],[1265,337],[1529,-93],[1268,-553],[2131,-1186],[1391,-774],[188,-46],[949,-230]],[[108332,917426],[-4,-55200]],[[108332,917426],[1293,-289],[1061,-114],[2124,-227],[677,-295],[297,-236],[643,-511],[154,-185],[416,-497],[2004,-967],[546,-263],[2264,-910]],[[119811,912932],[1025,99],[587,-117]],[[121423,912914],[789,-157]],[[122212,912757],[2189,-1148]],[[124401,911609],[-3,23],[-16,143]],[[124382,911775],[-744,810],[-425,462]],[[123213,913047],[-701,1046],[-147,356],[-141,342],[187,262],[225,70],[407,128]],[[123043,915251],[376,-268],[803,172],[251,54]],[[124473,915209],[-211,496],[-101,239],[103,196],[634,256]],[[124898,916396],[418,-31],[734,-55]],[[126050,916310],[180,215],[153,184],[112,1007],[251,76],[340,-838]],[[127086,916954],[407,-122]],[[127493,916832],[621,-188],[-249,-766],[-665,-765]],[[127200,915113],[18,-1]],[[127218,915112],[458,-5]],[[127676,915107],[1062,744],[1384,90]],[[130122,915941],[37,27],[382,281],[97,422],[610,414],[402,273]],[[131650,917358],[564,562]],[[132214,917920],[762,-252],[1839,1246],[48,32],[199,-75],[485,-182],[198,169],[436,772]],[[136181,919630],[21,109],[27,142],[385,157],[733,152]],[[137347,920190],[575,-94],[32,-41],[114,-150],[515,-26],[518,-26],[369,576]],[[139470,920429],[362,564],[801,-880],[-151,-358],[-170,-132],[-240,-187],[-1979,-986],[-670,-333]],[[137423,918117],[-541,-565],[-670,-699],[-214,-2502]],[[135998,914351],[269,-91],[908,1858],[-44,87],[82,276],[617,861]],[[137830,917342],[236,329],[2338,807]],[[140404,918478],[508,67],[471,63],[-181,-121],[18,-721],[422,-196],[254,-118],[50,47],[177,500],[210,232]],[[142333,918231],[357,397],[914,540]],[[143604,919168],[-47,290],[-19,120]],[[143538,919578],[482,848],[1163,222]],[[145183,920648],[-84,332],[-1201,630],[-25,222],[140,578]],[[144013,922410],[378,467],[1443,-966],[554,-559],[189,-190],[828,-1441],[194,-337],[120,-467],[73,-289],[295,-670],[968,-1093],[518,-428],[590,-489],[678,-259],[415,-158],[127,9],[306,23],[523,255],[163,79],[30,175],[32,183]],[[152437,916255],[-410,10],[-337,8],[129,229],[274,485]],[[152093,916987],[212,660],[80,249],[393,810],[858,600],[-1,3],[-94,178],[-218,51],[-186,44]],[[153137,919582],[-571,-165],[454,348]],[[153020,919765],[392,-18]],[[153412,919747],[991,-46],[-85,88],[-332,346]],[[153986,920135],[-239,-50]],[[153747,920085],[-252,-54],[-17,231],[-25,341],[64,1],[286,6],[568,-249],[127,-800],[-145,-734],[-186,-945]],[[154167,917882],[681,-135]],[[154848,917747],[395,-269],[-185,-236],[-957,-1223]],[[154101,916019],[442,-414],[319,-18],[277,-15],[1270,160],[491,62],[62,46],[849,631],[109,685],[134,844],[442,168],[547,208]],[[159043,918376],[2913,-58],[500,-120],[208,-49],[1210,-605]],[[163874,917544],[657,-501]],[[164531,917043],[1381,-1051]],[[165912,915992],[4732,-1225],[167,-131],[527,-413],[884,-433],[449,-220]],[[172671,913570],[4617,-975]],[[177288,912595],[-82,247],[-138,420],[1245,356],[483,-106],[22,-5],[446,-179],[1458,-586],[514,-391],[847,-644],[779,-756],[652,-1069],[-182,-762],[-1076,45],[-1194,49]],[[181062,909214],[-426,-178],[-535,-222]],[[180101,908814],[73,-1137],[-1348,-495]],[[178826,907182],[582,-234],[720,-291]],[[180128,906657],[4149,-770]],[[184277,905887],[3020,-99]],[[187297,905788],[189,46],[1477,354],[860,-44]],[[189823,906144],[269,47],[1146,201]],[[191238,906392],[940,274]],[[192178,906666],[109,31]],[[192287,906697],[1741,1058],[288,-4],[219,-293],[45,-61],[-98,-431]],[[194482,906966],[81,-200],[514,-532],[162,-168],[405,-153],[66,-25],[134,113]],[[195844,906001],[260,220],[637,-82],[285,-36],[243,-349],[22,-104],[136,-645],[1417,-833]],[[198844,904172],[701,-232],[248,-227],[297,-273],[160,-444],[56,-154],[32,-510],[-464,-198],[-381,-162],[73,-778],[26,-288]],[[199592,900906],[9,-42],[6,-32],[381,-244]],[[199988,900588],[247,-159],[640,-823],[1114,-1434]],[[201989,898172],[-37,424]],[[201952,898596],[-3,35],[-450,622]],[[201499,899253],[-751,1038],[94,1490],[82,211],[100,256],[241,-197],[113,-92],[25,-123],[104,-525]],[[201507,901311],[-464,137],[-136,40],[113,-139],[458,-567],[42,-11],[58,-16],[23,97],[54,230],[364,-94],[471,-121],[-213,795],[-240,897],[-485,717]],[[201552,903276],[-627,926],[-419,1369]],[[200506,905571],[-31,100],[369,1408]],[[200844,907079],[503,977],[2209,489]],[[203556,908545],[289,261]],[[203845,908806],[352,320],[160,582],[818,256]],[[205175,909964],[524,164],[292,11],[290,11],[126,158],[38,425],[66,745],[-311,-1],[-273,-1]],[[205927,911476],[-482,-185],[-646,-248],[-1242,-1000]],[[203557,910043],[-30,-24],[-93,80],[-69,61],[-211,-7],[-267,-8],[-1171,-512],[-349,87],[-271,68],[-385,-53],[-247,-35],[-37,-72],[-67,-337],[-15,-78],[273,-95]],[[200618,909118],[225,-365],[-801,-122],[-948,-146],[-353,372],[-366,386]],[[198375,909243],[-429,-174],[-215,164],[1273,2039],[303,166],[2492,381]],[[201799,911819],[662,288]],[[202461,912107],[2426,1056],[1194,-238],[935,-787],[109,-92],[-130,-206],[-15,-23],[-98,-1263]],[[206882,910554],[-35,-445],[1674,-938],[117,-66],[52,-40]],[[208690,909065],[678,-522],[183,-258],[307,-433]],[[209858,907852],[635,42],[491,33],[2,-278]],[[210986,907649],[2,-244],[-110,-351],[686,682],[140,138],[187,128]],[[211891,908002],[529,363],[666,-681]],[[213086,907684],[571,-585],[1251,-615],[1398,-688],[778,339],[110,-89],[88,-72],[330,-41]],[[217612,905933],[375,-47]],[[217987,905886],[227,29],[14,2],[1529,420],[707,-51],[27,-139],[7,-40],[330,455],[856,164]],[[221684,906726],[204,39],[107,-12],[1427,-171],[1062,-576]],[[224484,906006],[1939,382]],[[226423,906388],[-148,646]],[[226275,907034],[105,979],[76,-68],[53,-47],[120,125]],[[226629,908023],[278,289],[-25,202],[-45,374],[-295,274]],[[226542,909162],[-596,551],[-84,398],[213,5],[452,13],[351,-306],[317,-276]],[[227195,909547],[89,12],[113,15],[1185,340],[-10,14],[-201,278],[-332,312]],[[228039,910518],[-158,148],[-102,152],[19,46],[27,68],[604,-36],[236,-13],[186,-165],[4,-57],[8,-118],[52,-29]],[[228915,910514],[46,-26]],[[228961,910488],[137,285],[578,-65],[863,-933],[-10,-77],[-15,-116],[-59,1],[-20,0],[-75,-231]],[[230360,909352],[1384,-546]],[[231744,908806],[-551,-467],[23,-403],[120,-114],[247,83],[281,95]],[[231864,908000],[58,383],[257,308],[1323,575],[108,47],[-277,-381]],[[233333,908932],[-362,-1397]],[[232971,907535],[-177,-683]],[[232794,906852],[81,-891],[-656,-805]],[[232219,905156],[-53,-66],[-14,-127],[-12,-119],[325,-655],[263,-530],[-12,-59],[-34,-183],[304,-287],[497,293],[233,138]],[[233716,903561],[536,-301],[247,-261]],[[234499,902999],[324,-344]],[[234823,902655],[439,150]],[[235262,902805],[437,532],[-131,477],[-368,1333],[-439,533],[-151,508],[-97,327],[203,678]],[[234716,907193],[238,795],[112,146],[1816,-114]],[[236882,908020],[878,892]],[[237760,908912],[621,818],[7,73],[18,183],[491,450],[384,160]],[[239281,910596],[490,204],[385,126],[191,63],[62,55],[-63,130]],[[240346,911174],[-87,178],[-92,710]],[[240167,912062],[-100,773],[-245,688],[-640,155],[-442,-639],[1,-46],[6,-216],[46,-30],[95,-63]],[[238888,912684],[550,306],[-690,-680],[-93,-91],[-849,-155],[-43,-7],[-164,80]],[[237599,912137],[-360,175],[332,863]],[[237571,913175],[64,166],[142,2],[689,762]],[[238466,914105],[-13,58],[-53,240],[-330,200],[71,754],[18,192],[1612,530],[-145,-369]],[[239626,915710],[-78,-198],[-13,-15],[-260,-318],[46,-567],[473,370],[922,900],[-361,736],[-191,148],[-30,24],[-23,-5],[-351,-73]],[[239760,916712],[-423,-375],[-1023,-74],[-194,-14],[-628,799]],[[237492,917048],[-243,309]],[[237249,917357],[-267,-85],[-615,-195],[-2530,1124],[-303,298]],[[233534,918499],[-1001,987],[-599,847],[-127,904]],[[231807,921237],[176,523],[32,46],[764,1098],[767,9]],[[233546,922913],[-325,459],[-404,-124],[-400,353]],[[232417,923601],[-630,556],[-24,544],[195,846],[216,934]],[[232174,926481],[-81,524],[173,184],[601,636],[271,98],[162,59],[339,-92],[187,-288],[105,-162]],[[233931,927440],[94,-65],[285,-198],[327,49],[346,902],[142,369],[-64,-15]],[[235061,928482],[-443,-106],[-652,98]],[[233966,928474],[-218,213]],[[233748,928687],[-164,160],[40,191],[984,575]],[[234608,929613],[771,197],[90,204],[178,401],[-155,191]],[[235492,930606],[80,417],[107,85],[1874,229],[202,-459],[13,-31],[-127,-349],[-103,12]],[[237538,930510],[-189,22],[-172,-179],[-22,-23],[114,-412]],[[237269,929918],[1215,264],[554,-199],[265,-95]],[[239303,929888],[2504,-2360],[294,-1247],[-66,-988],[-33,-496],[-230,-122]],[[241772,924675],[1067,-917],[221,-190],[596,-251],[745,-1611],[74,-366],[98,-169]],[[244573,921171],[18,-32]],[[244591,921139],[170,294],[-20,273],[208,44],[141,-123],[222,-195],[501,-773],[-23,-136],[-15,-88],[-1270,-147],[-538,391]],[[243967,920679],[-269,195]],[[243698,920874],[-669,-769]],[[243029,920105],[82,-194]],[[243111,919911],[929,225],[362,-146],[193,-309],[-2470,-1827]],[[242125,917854],[4,-40]],[[242129,917814],[14,-150],[1011,-284]],[[243154,917380],[715,-202],[823,-456]],[[244692,916722],[297,-164],[145,142]],[[245134,916700],[869,856],[670,-90],[-42,-130]],[[246631,917336],[-49,-149]],[[246582,917187],[-253,-258],[-57,-58],[-753,-172]],[[245519,916699],[46,-20],[94,-40],[1238,32],[208,-70],[555,-186]],[[247660,916415],[549,411],[405,-231],[415,-237],[-123,-137],[-586,-22],[-80,-3],[-490,-597]],[[247750,915599],[-947,-159]],[[246803,915440],[-152,-25]],[[246651,915415],[964,-869],[619,-558],[301,-828],[31,-199]],[[248566,912961],[102,-673],[71,-1948],[8,-207],[247,-448]],[[248994,909685],[296,-537],[447,86],[825,1673],[172,743]],[[250734,911650],[-4,1433],[-1,390],[435,642],[585,863],[221,172],[57,44],[455,89],[299,-140],[2630,-2455],[129,-271],[255,-533],[351,-1730],[27,-483],[-136,-497],[-211,-110],[-111,-58],[-594,424]],[[255121,909430],[-36,529],[-184,-204],[-182,-200]],[[254719,909555],[-129,-1597]],[[254590,907958],[-19,-234],[28,-133],[43,-205],[166,-439]],[[254808,906947],[393,-1032]],[[255201,905915],[1792,-1918],[102,-251],[140,-346],[-58,-326],[-15,-83]],[[257162,902991],[15,-197],[389,-221],[575,494]],[[258141,903067],[199,833],[463,200]],[[258803,904100],[312,135],[564,-444]],[[259679,903791],[133,866],[-22,836],[-1,17],[1146,2096],[268,283],[250,263],[260,1041],[192,770],[61,1584]],[[261966,911547],[240,544],[203,116],[110,63],[2125,-180]],[[264644,912090],[17,231],[-254,231]],[[264407,912552],[-682,26],[57,447]],[[263782,913025],[10,82]],[[263792,913107],[371,406],[743,306]],[[264906,913819],[-808,402],[-659,329],[-362,39],[-162,273],[-352,591],[34,2240]],[[262597,917693],[142,204],[36,52],[9,9]],[[262784,917958],[487,515],[818,116],[1102,156],[649,-77],[826,-540]],[[266666,918128],[944,-316],[641,-216]],[[268251,917596],[1281,53],[598,24],[585,-172],[349,-103],[-349,-431]],[[270715,916967],[-84,-592],[896,-362],[60,-79],[-41,-596]],[[271546,915338],[398,-125],[303,-96]],[[272247,915117],[926,50],[322,-127],[485,-192],[91,-309],[105,-357],[-1570,-1159],[1298,-80],[273,-163],[286,-511],[-114,-815],[-668,-431],[-1284,-828],[-994,335],[-668,225]],[[270735,910755],[-56,-171]],[[270679,910584],[23,-502]],[[270702,910082],[348,-157],[357,-1342]],[[271407,908583],[277,-552],[130,-259]],[[271814,907772],[631,-760],[2000,-2403],[-170,-739],[-256,-1118],[-307,-884],[-791,-149]],[[272921,901719],[-243,-144],[-397,-237],[-298,-609],[-67,-138],[-3028,-2283],[-853,-101]],[[268035,898207],[-138,288],[-220,459],[-222,143],[-593,1033],[119,975],[-121,-197],[-230,-371],[-382,120]],[[266248,900657],[-551,174],[-326,805]],[[265371,901636],[-30,74],[-1096,374]],[[264245,902084],[-808,-1032]],[[263437,901052],[286,-153],[66,-35],[567,284],[-38,48],[-73,94],[317,-39]],[[264562,901251],[365,-45],[435,-475],[626,-683],[862,-1523],[763,-1351],[-5,-118],[-4,-68],[-269,-167],[-123,-76],[-301,249],[-1573,1302]],[[265338,898296],[-382,-394],[-30,-199],[-77,-514]],[[264849,897189],[-1572,268],[-137,350],[-28,206],[-64,469]],[[263048,898482],[-710,770]],[[262338,899252],[-1704,-303],[-117,55]],[[260517,899004],[-259,122],[-45,6],[-27,4],[-986,-119]],[[259200,899017],[-166,-319]],[[259034,898698],[-89,-170]],[[258945,898528],[395,-709]],[[259340,897819],[2061,-759],[122,-225],[-294,-670],[-41,-94],[-218,-179],[-380,-313]],[[260590,895579],[-1212,-1667],[-299,-412],[-304,-358],[-727,-858],[-286,-169],[-428,-252],[-1795,135],[-272,172],[-174,109],[-173,215],[-429,534]],[[254491,893028],[-443,393]],[[254048,893421],[-687,611]],[[253361,894032],[-641,321],[-401,201]],[[252319,894554],[-1895,1297]],[[250424,895851],[15,-285]],[[250439,895566],[-441,-333]],[[249998,895233],[-84,-434],[1165,-834],[1700,-2074]],[[252779,891891],[2604,-300]],[[255383,891591],[1004,72],[431,30],[99,-22],[1258,-278],[136,-241],[231,-409],[-207,-547],[-536,-927],[-259,-448],[-993,-1292]],[[256547,887529],[-295,-383]],[[256252,887146],[-334,-670],[-468,-938]],[[255450,885538],[27,-59]],[[255477,885479],[55,-123],[-274,-458],[-1141,-570],[-82,-41],[-250,-28]],[[253785,884259],[-980,-111],[-681,58]],[[252124,884206],[-627,53]],[[251497,884259],[-883,574],[-17,11],[-52,149],[-59,167]],[[250486,885160],[-612,-285],[579,-897],[13,-348],[-193,-12],[-179,-10],[-205,306]],[[249889,883914],[-290,-56],[-149,-29]],[[249450,883829],[274,-946],[73,-252]],[[249797,882631],[-445,-850],[-264,80],[-763,230]],[[248325,882091],[147,-401],[-905,-160],[-116,25],[-691,235],[-298,101],[-252,182],[-467,336],[-561,189]],[[245182,882598],[-926,-74],[-775,182],[-502,269],[-894,480],[-1449,550],[-380,-9],[-466,-11]],[[239790,883985],[-240,-107],[-518,-232],[913,-278]],[[239945,883368],[837,-255],[243,120]],[[241025,883233],[274,134]],[[241299,883367],[1202,-486],[346,46],[1209,-773],[-896,-730]],[[243160,881424],[-37,-30],[-109,57],[-191,-16],[-74,-102],[382,-55]],[[243131,881278],[525,232],[180,80]],[[243836,881590],[371,349],[295,277],[275,60],[399,86],[123,-123],[206,-206],[17,-212]],[[245522,881821],[-80,4],[-66,3],[23,-142],[681,-593]],[[246080,881093],[1090,-120],[401,-360],[309,-483]],[[247880,880130],[312,-1534],[-31,-181],[-14,-83],[-1117,-701],[-663,-416]],[[246367,877215],[-1155,-90]],[[245212,877125],[-1047,218]],[[244165,877343],[-767,-88],[-135,-256],[-22,-40]],[[243241,876959],[313,-477]],[[243554,876482],[61,-41],[30,-20],[1206,-526],[-504,-515],[-350,82],[-103,208],[-34,21],[-108,67]],[[243752,875758],[-401,30],[-641,48],[25,-94]],[[242735,875742],[227,-834],[357,-203],[814,11],[-126,-181],[-73,-106],[-52,6],[-367,43],[-180,65],[-466,168],[57,175],[2,4],[-172,203]],[[242756,875093],[-18,21],[-3,0],[-336,-25],[-56,-96],[-61,-107]],[[242282,874886],[138,-287],[121,-251],[-67,-145],[-81,-178]],[[242393,874025],[-809,-651]],[[241584,873374],[-706,-78],[74,-62],[276,-238],[-70,-427]],[[241158,872569],[-98,-594],[-73,0],[-1430,-11]],[[239557,871964],[94,-161],[254,-432],[581,-329],[95,-55]],[[240581,870987],[228,-25],[-1167,-1143],[-7,-7]],[[239635,869812],[-1674,-1105],[160,-312],[94,-182],[188,306],[101,165],[331,-36]],[[238835,868648],[424,-46],[94,-224],[15,-36],[-289,-290],[-243,66],[-260,71]],[[238576,868189],[23,-61],[27,-75],[-61,-796],[-9,-108],[-1227,-3346]],[[237329,863803],[-216,-333],[-285,105]],[[236828,863575],[-135,50],[-284,-227],[10,-93],[467,-108],[51,-12]],[[236937,863185],[153,-482],[-379,-1886]],[[236711,860817],[-65,-646]],[[236646,860171],[-33,-321],[15,-2034]],[[236628,857816],[213,-674],[40,-487],[-631,-1635]],[[236250,855020],[-196,-149],[-23,-17],[56,-98],[464,-144]],[[236551,854612],[420,-651],[576,-893]],[[237547,853068],[304,-133],[116,-51]],[[237967,852884],[1443,332],[386,-34],[976,-86],[529,-1034]],[[241301,852062],[432,-2120]],[[241733,849942],[475,-2338],[119,-143],[117,-141]],[[242444,847320],[711,-1988],[80,-576],[9,-62],[-38,-491],[-226,-629]],[[242980,843574],[-195,-545]],[[242785,843029],[1154,-101],[3263,1306],[559,-123]],[[247761,844111],[611,-135],[1748,-1274]],[[250120,842702],[2885,-925],[2139,-1978],[497,-314],[459,-1039],[333,-752]],[[256433,837694],[27,-97],[154,-541],[8,-348],[2596,-937],[246,-88],[1644,-897],[1184,-1039]],[[262292,833747],[1276,-1119],[921,-328]],[[264489,832300],[196,-70],[516,83],[1503,241]],[[266704,832554],[4645,-1073],[60,-103],[106,-181],[42,-779],[53,-980],[-266,-1260],[-18,-2606]],[[271326,825572],[233,-448]],[[271559,825124],[301,-1281],[-159,-2180]],[[271701,821663],[-106,-1432],[-157,-581]],[[271438,819650],[-5,-205],[-20,-690]],[[271413,818755],[882,-1093],[683,-1219],[529,-1513],[2407,-2988],[160,-367],[260,-1043]],[[276334,810532],[219,-880],[385,-557]],[[276938,809095],[717,-530],[423,-313]],[[278078,808252],[259,-39],[294,540]],[[278631,808753],[91,893],[389,893],[141,161],[427,483],[380,-489],[376,-484],[45,-316],[206,-1449]],[[280686,808445],[234,-239]],[[280920,808206],[223,1829],[-83,659],[-187,334],[-257,945],[96,154],[976,1568]],[[281688,813695],[155,596]],[[281843,814291],[75,1644]],[[281918,815935],[-13,16],[-172,225],[-295,711]],[[281438,816887],[-280,677],[52,52]],[[281210,817616],[113,113],[-24,364]],[[281299,818093],[-378,1009]],[[280921,819102],[-125,567]],[[280796,819669],[-82,371],[19,936]],[[280733,820976],[4,173],[-255,1105],[-58,653],[-54,622]],[[280370,823529],[4,1972]],[[280374,825501],[-69,449],[-635,468],[-5,4],[-444,996],[-29,425],[-41,598],[-181,219]],[[278970,828660],[-419,98],[389,417]],[[278940,829175],[1257,576],[2043,1238],[775,692],[813,727],[715,812],[138,157],[112,148],[1001,1327],[1033,1995]],[[286827,836847],[277,917],[268,887]],[[287372,838651],[58,673]],[[287430,839324],[-87,2300],[-83,2197],[-303,1418],[-125,385],[-440,1347],[-282,593],[-540,1138],[-481,626],[-409,531]],[[284680,849859],[-1235,766],[-566,809]],[[282879,851434],[-547,781],[-114,31],[-181,50]],[[282037,852296],[20,-267],[-44,131],[-157,458],[130,1282],[284,27]],[[282270,853927],[138,235],[543,922],[30,66],[26,59],[-5,30]],[[283002,855239],[-56,360],[213,194],[1055,962]],[[284214,856755],[-56,81],[-90,128],[-160,29]],[[283908,856993],[-150,127],[416,1397],[132,48],[262,94],[635,723]],[[285203,859382],[-414,1477]],[[284789,860859],[-426,1523],[-178,1288],[124,728]],[[284309,864398],[77,453]],[[284386,864851],[-274,185],[-627,45],[-362,26],[213,1146],[545,1433],[357,938]],[[284238,868624],[188,320],[129,221]],[[284555,869165],[-287,636],[-296,391],[-127,169],[-183,4],[-229,4],[-7,11],[-157,245],[-350,1718],[-72,808],[33,374],[22,258],[4,12],[183,590],[437,165]],[[283526,874550],[924,807]],[[284450,875357],[509,252],[1160,-214],[2741,-1073],[358,-140],[575,-733]],[[289793,873449],[592,576],[491,-2],[821,-208],[755,-565],[188,-141],[2244,1877],[232,44],[240,46],[1714,-1698]],[[297070,873378],[486,-370],[152,8],[74,4],[802,-920],[956,-1099],[-110,-127]],[[299430,870874],[-59,-67],[239,-308]],[[299610,870499],[349,-452],[332,451],[454,-198],[180,-79],[351,-388],[-88,-112],[-74,-94],[-524,-150]],[[300590,869477],[-117,-509],[146,-554]],[[300619,868414],[175,-238],[545,-740]],[[301339,867436],[3390,-987]],[[304729,866449],[423,-124],[136,-701],[369,-334]],[[305657,865290],[161,-145],[282,406]],[[306100,865551],[325,468],[98,358]],[[306523,866377],[110,406],[288,-43],[189,-688]],[[307110,866052],[-12,-896],[-2,-135],[-697,-565]],[[306399,864456],[-163,-824],[1,-36]],[[306237,863596],[11,-596],[168,-653],[78,-303],[-351,-1189]],[[306143,860855],[-17,-57],[9,-104]],[[306135,860694],[63,-706]],[[306198,859988],[455,-840],[-374,-1786]],[[306279,857362],[126,-325],[180,-465],[1041,-1096],[-63,-530]],[[307563,854946],[-16,-131]],[[307547,854815],[-558,-64]],[[306989,854751],[-318,-418],[-235,-308],[-4,20],[-75,369],[-330,403],[-34,41],[-52,-49],[-10,-9],[0,-287],[0,-244]],[[305931,854269],[70,-714],[-194,-60],[-772,-241]],[[305035,853254],[668,-476]],[[305703,852778],[559,-399],[107,188],[204,360]],[[306573,852927],[662,716],[83,90],[116,40],[490,169],[1484,-7],[468,-421],[82,-75],[168,-764],[909,-884],[272,-725],[-13,-719]],[[311294,850347],[-6,-320],[10,24],[308,674],[373,337],[2,-152],[27,-1711],[707,1167],[1691,1037]],[[314406,851403],[448,275]],[[314854,851678],[229,546]],[[315083,852224],[325,779],[5,503],[145,62],[183,-4],[1099,-1257]],[[316840,852307],[-20,-371],[-1,-8],[-205,-571],[-218,-607]],[[316396,850750],[71,-261],[52,-31],[85,-51],[493,1699],[-88,133]],[[317009,852239],[-558,851],[740,1363],[97,112],[240,277],[352,-220],[780,129]],[[318660,854751],[-319,155]],[[318341,854906],[-236,115],[-270,415]],[[317835,855436],[49,-13],[34,-9],[17,615],[8,253],[649,-353],[-315,989]],[[318277,856918],[185,458],[-410,1051],[-111,284],[34,197],[2,14],[656,551],[625,-425],[-170,716]],[[319088,859764],[-60,256],[514,1292],[116,292],[23,299]],[[319681,861903],[11,156],[182,289],[13,20],[121,25],[350,72],[537,-374],[285,-198],[-104,-1],[-102,-1],[-31,-138]],[[320943,861753],[-15,-61]],[[320928,861692],[11,-1710]],[[320939,859982],[250,296],[171,202],[133,-226],[89,-152],[-112,-950],[73,-238],[162,-274],[33,-56],[730,-443]],[[322468,858141],[176,-203],[338,-388],[-120,-440],[-4,-4],[-169,-192],[641,-455]],[[323330,856459],[595,-421],[81,-364],[-47,-128],[-120,-331],[-383,-256],[548,-299]],[[324004,854660],[447,-244],[779,-941],[112,-661],[-388,-911],[-955,-397]],[[323999,851506],[-83,-34],[-9,-40]],[[323907,851432],[-124,-562],[1663,575],[742,53],[32,-54],[12,-21],[-172,-861],[74,-582],[-634,-258],[-524,-214]],[[324976,849508],[-262,-316],[-57,-70],[138,-93],[510,353],[423,40],[475,44]],[[326203,849466],[350,-923],[254,-164],[346,-223],[396,-60],[180,-27],[26,-182]],[[327755,847887],[123,-879],[164,-316],[-36,-353],[-163,-88],[-1288,-694]],[[326555,845557],[975,-523]],[[327530,845034],[544,-292],[-409,-525]],[[327665,844217],[856,-568]],[[328521,843649],[388,-7],[296,-1040],[-109,-91],[-123,-103],[-560,-1169],[62,-62],[150,-150]],[[328625,841027],[-182,-378],[-559,-14],[-1488,594]],[[326396,841229],[1635,-990]],[[328031,840239],[-119,-286],[-60,-145],[-268,-118],[-336,-147],[10,-24],[27,-63],[661,-323],[330,-161],[158,-123]],[[328434,838849],[520,-403],[-630,-141]],[[328324,838305],[-182,165],[-9,9],[-494,37],[-95,8],[43,-116],[84,-228],[1250,-248],[188,61]],[[329109,837993],[310,99],[72,-134]],[[329491,837958],[95,-179],[-17,-170]],[[329569,837609],[-106,-1044]],[[329463,836565],[776,-727],[331,-9],[742,-20],[133,-108],[20,-17],[24,-605],[16,-396],[486,-92],[229,-965],[18,-595],[4,-116],[-369,-710],[-68,-131],[-403,-1301],[32,12],[15,5],[803,1015]],[[332252,831805],[264,434],[90,148],[500,12],[-137,-392]],[[332969,832007],[-173,-500],[-179,-239],[-117,-158],[-25,-235],[16,27],[620,1021]],[[333111,831923],[750,846],[176,-186]],[[334037,832583],[64,-68],[-38,-331],[-615,-636],[419,-30],[271,166],[460,281],[111,-76]],[[334709,831889],[189,-129],[-50,-116],[-157,-368],[-594,-623]],[[334097,830653],[-542,-1213],[51,34],[255,169],[1008,1377],[157,214],[61,43],[342,243],[-2,-244],[-1,-84],[752,-383],[-8,-980],[1519,-359],[81,28],[374,128]],[[338144,829626],[293,417]],[[338437,830043],[390,264],[390,-439],[-61,-279],[-287,-154]],[[338869,829435],[1564,-674],[214,-433],[19,-38],[-54,-318],[-259,-303],[-807,-463],[-401,-129],[-974,-313]],[[338171,826764],[-13,-182],[-1012,-649]],[[337146,825933],[-314,-102],[-2356,-765],[553,-134],[1826,767],[176,-163]],[[337031,825536],[243,-226],[39,-281],[386,64]],[[337699,825093],[1788,296],[-207,207],[-665,153]],[[338615,825749],[-878,-22],[125,414],[2,6],[95,27],[543,152],[1738,-217],[272,-216]],[[340512,825893],[41,-32],[288,-743]],[[340841,825118],[459,-1185],[1,-426],[-87,-196],[-599,-631],[-109,-115],[91,-148],[324,-536]],[[340921,821881],[356,354]],[[341277,822235],[202,688],[520,193]],[[341999,823116],[576,213],[49,-194],[17,-72],[1006,-560],[36,-89],[80,-194],[891,-823]],[[344654,821397],[253,-682],[251,-678],[3,-102],[4,-92],[-538,-499]],[[344627,819344],[-196,-181],[222,-213],[103,-98]],[[344756,818852],[173,-422],[2,-4],[-31,-340],[-370,-263]],[[344530,817823],[-588,257],[475,-717],[-100,-307],[-11,-35],[-246,-66]],[[344060,816955],[-315,-617],[1417,-293],[162,-146],[179,-161],[-20,-341],[-409,-18]],[[345074,815379],[-512,-23],[699,-762]],[[345261,814594],[-13,-37]],[[345248,814557],[-527,-1562],[-1304,-1446],[-1241,-1376],[-1524,-244],[-911,-146],[-87,476]],[[339654,810259],[-43,-102]],[[339611,810157],[-223,-530],[-686,-689],[-424,-201],[-513,226],[-108,48],[-228,-203],[-369,-329]],[[337060,808479],[-888,-1245]],[[336172,807234],[-295,-1146],[-185,-284],[-171,-147],[-549,-472]],[[334972,805185],[-36,-279],[-116,-185],[-335,-536],[-572,-352],[-17,-10],[-189,-434]],[[333707,803389],[106,-66],[-527,-583],[-281,-75],[-228,278]],[[332777,802943],[-718,-231],[-3105,-362]],[[328954,802350],[-34,77],[-768,162]],[[328152,802589],[-1730,245],[-1552,220]],[[324870,803054],[-362,-203],[-1430,125],[-232,21],[-865,-6],[-3971,-28],[-902,-121],[-1538,-207]],[[315570,802635],[-606,-602],[-604,-599],[-694,-1037]],[[313666,800397],[-40,-60],[-168,-397]],[[313458,799940],[-169,-1457],[-143,-307]],[[313146,798176],[-415,-888],[-800,-137],[-1121,-191]],[[310810,796960],[-2522,-2914]],[[308288,794046],[-999,-2071]],[[307289,791975],[-523,-1086],[-238,-662],[-779,-2174],[-754,-1400],[-825,-669]],[[304170,785984],[-789,-1476]],[[303381,784508],[-443,-829],[-749,-1095],[-183,-531]],[[302006,782053],[1658,1285],[581,449],[1044,1901]],[[305289,785688],[952,1734]],[[306241,787422],[973,2200],[1214,1578],[832,785],[795,750]],[[310055,792735],[4517,3101],[1337,649],[2024,377],[1640,-268],[285,-194],[906,-618],[847,-1164],[20,-294]],[[321631,794324],[15,-211],[-139,-381],[-37,-102]],[[321470,793630],[50,-146]],[[321520,793484],[122,-354],[-44,-304],[-63,-442],[-1466,-1613],[-1312,-1201],[-615,-76],[-605,531],[-625,548]],[[316912,790573],[-1262,-461],[-456,-167],[-533,-347]],[[314661,789598],[-37,-155],[1277,-12],[894,-440],[257,-326],[399,-507],[87,-362],[88,-365],[100,-103]],[[317726,787328],[584,502]],[[318310,787830],[703,603]],[[319013,788433],[466,61],[558,-404],[4,-10],[174,-403],[-111,-384],[-399,-1386]],[[319705,785907],[-277,-667],[-635,-751]],[[318793,784489],[-241,-286]],[[318552,784203],[250,-279]],[[318802,783924],[46,-52]],[[318848,783872],[730,151]],[[319578,784023],[242,-1996]],[[319820,782027],[511,-1709]],[[320331,780318],[389,-1298]],[[320720,779020],[800,-140]],[[321520,778880],[754,-133],[400,-208],[158,-265],[-113,-84],[-293,-217],[-168,10]],[[322258,777983],[-45,3]],[[322213,777986],[-19,-267],[-3,-49]],[[322191,777670],[472,-396]],[[322663,777274],[473,-397],[707,-336]],[[323843,776541],[117,-56]],[[323960,776485],[744,14],[47,-12],[990,-267],[149,-192],[507,-649]],[[326397,775379],[184,178]],[[326581,775557],[876,844],[600,-479]],[[328057,775922],[14,-255],[425,-122],[161,-46],[143,-2],[1,2],[77,116]],[[328878,775615],[973,-777],[338,-1480]],[[330189,773358],[-1534,-641],[-495,-457],[-459,-423],[-1082,-715],[-819,-541]],[[325800,770581],[-207,-272],[-199,-263],[-1094,149]],[[324300,770195],[-859,-604],[39,-265],[76,-511],[-83,-132],[-79,-126],[-88,18],[-757,162],[-141,851]],[[322408,769588],[-688,-352],[-266,-135],[-105,-283]],[[321349,768818],[-117,-313],[50,-661]],[[321282,767844],[-1427,-2809],[-327,-643],[-13,-17],[-249,-348],[-378,-1],[-342,0]],[[318546,764026],[-166,-838],[-688,-231],[-162,447]],[[317530,763404],[-471,1297]],[[317059,764701],[-762,-100],[-125,1234],[-57,562],[202,1430],[-40,47],[-179,209],[-6,147],[-1,26],[274,545],[226,337]],[[316591,769138],[206,305],[2738,2875],[432,315]],[[319967,772633],[1150,839]],[[321117,773472],[35,-797]],[[321152,772675],[223,61],[378,105],[971,664],[156,106],[757,14]],[[323637,773625],[237,281],[-842,184]],[[323032,774090],[-204,44]],[[322828,774134],[-1243,-34],[-1987,-388],[42,259],[55,343],[1585,1876]],[[321280,776190],[-56,109]],[[321224,776299],[-146,280],[-340,163],[-625,-840]],[[320113,775902],[-581,-781],[-2385,-2011],[-62,-53],[-391,-130],[-1348,-452]],[[315346,772475],[-1111,14]],[[314235,772489],[-260,258]],[[313975,772747],[-115,-42],[-83,-31]],[[313777,772674],[-151,-470]],[[313626,772204],[265,-1220],[81,-369],[-675,-984],[-207,-90],[-33,92],[-44,123],[19,278]],[[313032,770034],[-671,-509],[-805,-346],[-246,-754],[-184,-232],[-348,294],[-220,422]],[[310558,768909],[-1001,-844]],[[309557,768065],[-341,213]],[[309216,768278],[-328,205],[-47,167],[-29,102],[-420,-616]],[[308392,768136],[-101,-536],[-70,-366]],[[308221,767234],[-677,-1626],[-4,3],[-181,144],[-213,-62]],[[307146,765693],[-805,-1067],[-752,417]],[[305589,765043],[-264,-296],[-271,-303],[-151,-381],[-1594,-4636]],[[303309,759427],[-9,-131]],[[303300,759296],[-16,-236],[116,-886]],[[303400,758174],[-737,-2351]],[[302663,755823],[243,-278],[182,115]],[[303088,755660],[28,17],[778,-1953]],[[303894,753724],[182,-845],[333,-357]],[[304409,752522],[494,-73]],[[304903,752449],[364,205],[225,128]],[[305492,752782],[24,281],[23,272]],[[305539,753335],[-249,892],[-48,49],[-118,125]],[[305124,754401],[-66,-82],[-75,-93],[41,4],[68,7],[-67,-86],[-151,258],[155,110]],[[305029,754519],[364,-248],[68,-182]],[[305461,754089],[133,-354]],[[305594,753735],[133,-828],[22,-695],[-170,-610],[-1159,110],[-521,203]],[[303899,751915],[-118,46],[-3,43],[-25,362],[-134,66]],[[303619,752432],[-177,-308],[-466,-811],[-544,-363],[-127,-85],[-411,140]],[[301894,751005],[257,942],[-21,130],[-13,74],[-396,341]],[[301721,752492],[-129,-1658],[-160,-514],[-4081,-690],[-1258,-982],[-649,-507]],[[295444,748141],[-40,-73]],[[295404,748068],[-450,-811],[112,-349]],[[295066,746908],[48,-150],[18,136]],[[295132,746894],[43,329],[447,374]],[[295622,747597],[2387,521],[1254,273],[498,63],[346,44],[118,-83],[55,-38],[-3093,-2148],[-277,-118],[-539,-230],[-1761,-391],[-253,299],[50,320]],[[294407,746109],[39,242],[-65,41],[-30,18],[-104,-92],[-320,-287],[-122,-376],[-54,-166],[-18,-281],[-16,-249]],[[293717,744959],[286,-115],[254,-102]],[[294257,744742],[56,107],[77,148],[29,-808]],[[294419,744189],[25,-695]],[[294444,743494],[-284,-2763],[-319,-928]],[[293841,739803],[-310,-903],[-1161,-2230],[-504,-69],[-574,833],[-649,941],[-288,2545]],[[290355,740920],[-74,-232]],[[290281,740688],[-291,-905]],[[289990,739783],[29,-656],[453,-1885],[350,-1453],[142,-257],[261,-470],[43,19]],[[291268,735081],[143,62],[104,-2299]],[[291515,732844],[-522,-2291]],[[290993,730553],[-1151,-3128],[-482,-1888],[-95,-183],[-91,-174],[-137,-32],[-67,-16],[-133,1228],[323,1818],[82,181],[534,1181]],[[289776,729540],[55,468]],[[289831,730008],[21,183]],[[289852,730191],[-47,20],[-125,52]],[[289680,730263],[-299,-173],[-88,756],[-84,727]],[[289209,731573],[15,459],[10,326],[-182,53]],[[289052,732411],[-54,15]],[[288998,732426],[-516,-655],[-127,354],[-371,1029],[141,655],[57,261],[25,391],[19,278],[1,1314]],[[288227,736053],[-86,1103],[4,94],[4,121],[144,445],[152,471],[14,22],[118,182],[214,-29]],[[288791,738462],[19,-2]],[[288810,738460],[176,1308]],[[288986,739768],[-233,-188],[-121,-98]],[[288632,739482],[-486,-820]],[[288146,738662],[-649,-1094],[-52,-1129],[-67,-1470]],[[287378,734969],[20,-384],[53,-1006]],[[287451,733579],[533,-2315],[-99,-520],[-867,1033],[-863,789],[-453,109],[-34,-188]],[[285668,732487],[-9,-50]],[[285659,732437],[896,-818],[378,-345],[1000,-1193]],[[287933,730081],[171,-788]],[[288104,729293],[-69,-906],[-11,-153],[-273,-8],[-245,80],[-892,1742],[-87,171],[-170,12]],[[286357,730231],[205,-397],[428,-828]],[[286990,729006],[415,-606],[280,-410]],[[287685,727990],[50,-483]],[[287735,727507],[211,-2025],[-587,-518],[-33,29],[-282,255]],[[287044,725248],[380,-1089]],[[287424,724159],[105,-302]],[[287529,723857],[283,31],[385,323],[565,-162],[190,-397]],[[288952,723652],[814,-4735]],[[289766,718917],[-97,225]],[[289669,719142],[-82,192],[-271,1669]],[[289316,721003],[-513,753]],[[288803,721756],[208,-2014],[-1148,-666],[-959,768]],[[286904,719844],[-97,-495]],[[286807,719349],[1,-11],[62,-1102]],[[286870,718236],[944,62],[1529,99],[175,-488]],[[289518,717909],[107,-299],[-18,-568],[-25,-758],[-1127,-1627],[-190,50],[-973,252],[34,-149],[50,-220],[174,-98],[-3,-46],[-28,-450],[-212,-752],[-657,-780],[1215,402],[153,-637],[-514,-1151],[-1206,-94]],[[286298,710984],[-501,-205],[-577,-734],[-727,-926],[-106,-191],[-1502,-2688],[-223,-30],[-416,-55],[-512,-374],[-547,-398]],[[281187,705383],[-867,-1683]],[[280320,703700],[-25,-116]],[[280295,703584],[-215,-997],[-976,-1537]],[[279104,701050],[-106,-218],[-903,-1853],[-1001,-879],[-1201,-1768],[-1256,-3040],[-344,-1705],[-501,-2479],[-20,-2443],[206,-1918],[317,-2955]],[[274295,681792],[799,-3717],[170,-554],[458,-1493],[489,-2162]],[[276211,673866],[153,-2750]],[[276364,671116],[401,-1689]],[[276765,669427],[752,-3937],[173,-1313],[-342,-6345],[-103,116],[-29,33],[-70,-109]],[[277146,657872],[-61,-96]],[[277085,657776],[-251,-1713]],[[276834,656063],[-101,-684],[18,-38],[104,-226]],[[276855,655115],[-177,-578],[-104,-339]],[[276574,654198],[-26,495],[-201,166],[-1345,-565],[-224,-32],[-132,217],[-69,218],[-55,177],[63,497],[26,205],[-16,180],[-32,372],[-238,933],[-241,693],[-2,6],[-36,74],[-100,201],[-594,746],[-538,1758]],[[272814,660539],[-1067,3487],[-27,-9],[-233,-74],[-726,2747]],[[270761,666690],[-447,1693]],[[270314,668383],[714,1575],[96,342]],[[271124,670300],[-20,297],[-36,72],[-127,256],[-258,171]],[[270683,671096],[-175,-274],[-58,-91],[142,-506],[-106,-514],[-323,-330],[-33,121],[-267,980],[14,202],[42,634],[461,3185],[29,197]],[[270409,674700],[-161,1765],[-305,1695]],[[269943,678160],[-36,0]],[[269907,678160],[-462,6],[-151,194],[-94,120],[-875,2060],[-390,1121]],[[267935,681661],[-161,463]],[[267774,682124],[-163,291],[-220,396]],[[267391,682811],[-792,910]],[[266599,683721],[-413,-40]],[[266186,683681],[-202,-20]],[[265984,683661],[-624,-996]],[[265360,682665],[-490,-494],[-311,-314],[-548,-292],[-256,-137],[-176,-40],[-568,-126]],[[263011,681262],[3,65],[34,654]],[[263048,681981],[-180,484]],[[262868,682465],[-105,282]],[[262763,682747],[-1437,1769],[-1087,760]],[[260239,685276],[-969,131],[-211,29],[-982,-248],[-2295,-580]],[[255782,684608],[233,639],[-252,1699]],[[255763,686946],[-239,214],[-110,-318],[-525,-1515]],[[254889,685327],[-143,66],[-189,87]],[[254557,685480],[-1351,116]],[[253206,685596],[-995,-418]],[[252211,685178],[-233,-98],[-1550,-1844]],[[250428,683236],[20,-445],[481,-491],[521,167],[283,90]],[[251733,682557],[82,104],[134,169],[107,-127],[12,-14],[-6,-117],[-8,-145],[-232,-602],[-941,-1097],[10,-223],[6,-126]],[[250897,680379],[419,-710]],[[251316,679669],[905,-433],[399,-863]],[[252620,678373],[48,-372]],[[252668,678001],[-18,-63],[-58,-201],[-553,-508],[-312,-286],[-215,1391],[-367,722]],[[251145,679056],[-230,451],[-458,367]],[[250457,679874],[-406,-84],[-351,-1023]],[[249700,678767],[-555,34],[-410,345],[-82,-59],[-132,-95]],[[248521,678992],[-146,-275],[-132,-249]],[[248243,678468],[-716,-497],[-741,669],[-125,333]],[[246661,678973],[-372,991],[-1388,2133]],[[244901,682097],[-22,7],[-107,34]],[[244772,682138],[-214,-61]],[[244558,682077],[-325,-418],[-252,-324]],[[243981,681335],[116,-208],[143,-259]],[[244240,680868],[-694,-526],[-861,360],[-106,44]],[[242579,680746],[-163,136]],[[242416,680882],[-699,583],[-671,299],[-76,34],[-1068,-148],[-1170,-483],[-1411,-1121],[-429,1675]],[[236892,681721],[-51,48],[-54,50],[-674,-428]],[[236113,681391],[-14,-419],[-12,-387]],[[236087,680585],[135,-388],[113,-1302],[-752,-1547],[-165,-273],[-395,-656],[-2641,-2654],[-659,-950]],[[231723,672815],[-479,-690],[-193,-362],[-390,-733],[453,1033],[151,345]],[[231265,672408],[728,834]],[[231993,673242],[-188,231],[-429,-77],[-845,-908]],[[230531,672488],[-736,-1897]],[[229795,670591],[-90,-960],[-5,-52],[-520,-2503],[46,-2838],[11,-103],[169,-1635],[522,-2562]],[[229928,659938],[108,-356]],[[230036,659582],[112,-370]],[[230148,659212],[-533,-158]],[[229615,659054],[-1933,740],[-515,323]],[[230148,659212],[-37,-592],[-66,-1054],[-504,-2018],[-390,-1566],[-475,-3346],[-106,-1989],[-59,-1105],[-14,-955],[-61,-4239],[-175,-1976],[-78,-874],[-6,-945],[308,-2451],[77,-230],[544,-1642],[538,-4241],[371,-1835],[2036,-4967],[145,-989],[248,-1693],[71,-270],[123,-472],[971,-2494],[707,-731],[788,-149],[782,-408],[488,-507],[46,-48],[38,-40],[251,-267],[296,-1016],[222,-764],[129,-100],[206,-159],[570,215],[329,124],[1026,686],[830,312],[1034,389],[1258,990],[256,108],[207,88],[659,153],[751,175],[45,-73],[144,-232],[425,210],[174,86],[816,1003],[829,1019],[122,206],[916,1542],[705,3264],[82,376],[-19,391],[-51,1110],[-3,19],[-4,9],[183,3560],[15,97],[121,782],[93,232],[76,186],[304,381],[282,351],[750,580],[1438,534],[1687,627],[1000,619],[1300,126],[1121,-558],[617,-307],[336,220],[31,21],[-2,224],[-4,341],[84,137],[135,-233],[283,-486],[505,-2038],[-311,-1504],[-17,-80],[-126,-309],[-506,-1239],[-434,-695],[-278,-877],[-189,-595],[-153,-883],[111,-968],[-98,-385],[-57,-222],[-378,-608],[-311,-259],[5,-239],[5,-217],[234,-623],[172,-457],[-124,-193],[-125,-982],[368,-532],[-243,-1416],[-262,-1524],[-113,-886],[-211,-1656],[-22,-33],[-11,47],[-516,3973],[-5,6],[-1,1],[-12,-30],[-284,-667],[-175,-717],[-185,-765],[-88,-43]],[[320258,696982],[9,-12],[42,-54],[-9,-13],[-52,-81],[-199,-295],[-13,-15],[-80,-91],[-13,-8],[-4,-2],[-4,-3],[-21,-10],[-13,-7],[-11,0],[-52,-3],[-12,11],[-5,3],[-4,4],[-4,6],[-2,3],[-4,5],[-3,4],[-4,4],[-5,14],[-1,2],[-5,11],[-2,5],[-1,2],[-11,46],[-16,64],[31,128],[81,119],[19,29],[-9,-29],[-20,-64],[-8,-14],[-7,-10],[-6,-13],[-4,-6],[-5,-13],[-13,-31],[-4,-12],[-2,-4],[0,-2],[-1,-4],[-8,-60],[-1,-6],[0,-3],[0,-3],[-1,-6],[18,-67],[5,-19],[5,-11],[4,-9],[4,-7],[1,-2],[2,-2],[9,-11],[6,1],[19,3],[1,0],[8,2],[2,0],[2,0],[4,4],[7,8],[14,14],[63,79],[28,35],[-24,40],[141,155],[45,29],[47,30],[16,17],[4,4],[8,8],[7,17],[5,11],[5,12],[1,2],[-6,13],[-1,4],[-4,8],[-8,19],[-3,7],[-11,-9],[-3,-3],[-4,-3],[-2,-2],[-1,-1],[-10,-10],[-3,-5],[0,-1],[-6,-12],[-19,31],[0,1],[53,94],[1,-1],[6,-8],[3,-5],[3,-4],[4,-5],[1,-3],[1,-4],[4,-15],[5,-15]],[[324616,612501],[297,418],[4,6],[48,-418]],[[324965,612507],[-84,-286],[-265,280]],[[362715,505150],[-115,-93],[-64,-51],[-600,0]],[[361936,505006],[-356,212],[225,589],[393,473],[164,10],[281,-136]],[[362643,506154],[165,-80],[49,-94],[91,-173],[-5,-89],[-6,-90],[-67,-146],[-155,-332]],[[361585,506179],[-502,-538],[-25,166]],[[361058,505807],[-37,52],[-35,49],[-115,101],[-234,45],[-108,21],[-83,1091]],[[360446,507166],[1608,756],[144,-274],[4,-139],[4,-120],[-621,-1210]],[[360266,507476],[-170,-266]],[[360096,507210],[-237,-369],[-235,293]],[[359624,507134],[317,1557]],[[359941,508691],[263,51],[27,-548],[35,-718]],[[360432,507839],[-130,-16],[-11,300],[-21,596],[45,323],[44,306],[633,-96]],[[360992,509252],[-3,-225],[-2,-112],[-252,-611]],[[360735,508304],[-283,-435],[-20,-30]],[[360343,517263],[-223,-289],[-185,-239],[-272,1047],[70,626],[335,345],[102,-224],[173,-1266]],[[334442,584566],[3,-3],[2,-2],[13,-12],[3,-3],[1,-1],[8,-16],[5,-10],[457,-968],[6,-34],[2,-14],[0,-4],[1,-4],[-3,-33],[0,-8],[-1,-5],[0,-4],[-2,-8],[-3,-15],[-3,-18],[-3,-16],[-3,-17],[-2,-4],[-1,-4],[-11,-38],[-7,-25],[-7,-24],[-3,-7],[-33,-111],[-44,-81],[-95,-175],[-7,-4],[-6,-3],[-18,-10],[-3,-2],[-5,-2],[-4,-3],[-3,0],[-1,0],[-9,-1],[-19,-3],[-86,77],[-117,104],[-10,18],[-18,33],[-36,75],[-1,6],[-5,20],[-36,285],[-25,655],[-5,119],[3,126],[6,36],[5,29],[2,8],[0,2],[3,5],[15,36],[13,30],[3,8],[2,5],[2,2],[2,2],[13,16],[13,0],[19,2],[16,-4],[3,0],[1,0],[5,-1],[4,-1],[4,-1]],[[816864,532927],[452,41],[579,403],[1145,1804],[556,461],[166,-14],[-286,-905]],[[819476,534717],[70,-554]],[[819546,534163],[168,567],[160,105]],[[819874,534835],[566,-89],[535,1164],[79,830],[-251,-139],[-344,509],[5,512],[646,1125],[374,-254],[385,301],[608,2411],[1549,4971],[262,1209],[262,-522],[48,-567],[-79,-665],[-196,-634],[-14,-262],[40,-94],[42,-43],[31,-17],[142,99],[459,1228],[605,283],[188,-1313],[497,-323],[150,206],[577,-962],[-55,-1072],[-205,3],[-148,-409],[7,-1608],[488,7],[443,558],[307,72],[224,-1040],[-210,-236],[-371,-16],[16,-318],[164,-377],[389,52],[126,521],[226,387],[508,-365],[568,-815],[1326,-1246],[193,77],[226,-487],[25,-888],[-271,-589],[-1220,-974],[-556,-75],[-573,510],[-532,-820],[258,-992],[598,-1117],[-253,-1073],[-480,-255],[-1185,265],[-356,-117],[-89,-864]],[[826628,530498],[-267,-395],[-25,-207],[658,-1272],[-304,-1376],[-644,83],[-655,2],[-185,-23],[-110,-132],[-33,-142],[1311,-251],[347,-317],[-9,-139],[-608,-26],[-104,-115],[314,-1959],[395,-767],[1062,-3664],[-263,-1345],[-242,-761],[204,-999],[1504,-2682],[916,-1330],[438,-572],[111,-69],[99,-358],[-65,-344],[-427,-719],[-1334,93],[-774,467],[-184,520],[-34,392],[-262,346],[-15,-1721],[-341,-383],[-115,-338],[-539,-2466],[-137,-1145],[75,-3725],[-22,-451],[-129,-374],[87,-278],[175,-112],[-304,-656],[-394,549],[-778,-2646],[-297,-411],[-259,-40],[-12,457],[-202,867],[-21,-57],[-507,-2854],[-479,-1337],[-86,-2123],[143,-467],[546,238],[42,-153],[-207,-2008],[-889,-2355],[-198,560],[-144,-945],[36,-1557],[-219,-947],[-16,-104],[-166,-1028],[-1905,-1680],[-1608,-1651],[-239,57],[-7,1540],[-178,3343],[-93,-161],[-1178,272],[-571,-635],[-694,285],[-493,1149],[-675,472],[-625,-264],[-1346,-1541],[-1252,-232],[-575,635],[-16,1767],[-362,1318],[-599,-816],[-1531,-782],[-1749,648],[-213,690],[-591,6877],[176,2025],[-409,1442],[-448,684],[-954,669],[-158,1073],[526,-257],[-331,760],[-156,178],[-549,90],[-300,1753],[25,425],[115,256],[137,1260],[-172,1016],[-314,496],[-330,2571],[198,2807],[246,1281],[312,1049],[1359,2804]],[[804559,518100],[16,-613],[210,-816],[456,-685],[1142,-408],[16,266],[121,141],[381,-195],[1602,-1700],[711,-453],[-62,429],[-262,68],[-471,1579],[420,2136],[58,663],[410,1108],[248,210],[-138,1122],[100,829],[575,789],[3286,1498],[557,498],[1481,3935],[581,1146],[488,1472],[157,1057],[222,751]],[[258897,925411],[527,-33]],[[259424,925378],[346,-22]],[[259770,925356],[380,126],[616,203]],[[260766,925685],[444,276],[369,229],[1756,156],[338,-127]],[[263673,926219],[287,-108],[-268,-94]],[[263692,926017],[-144,-50],[525,-760],[523,445]],[[264596,925652],[-91,1596],[436,923]],[[264941,928171],[247,525],[15,573],[-454,237],[-335,-119]],[[264414,929387],[-293,-103],[-1002,186]],[[263119,929470],[-600,576],[-757,1091]],[[261762,931137],[17,236],[13,173]],[[261792,931546],[695,1245],[518,-61],[1324,-155],[1087,-761]],[[265416,931814],[64,-45]],[[265480,931769],[55,3],[128,8],[-13,190]],[[265650,931970],[-22,89],[-17,66]],[[265611,932125],[-1220,750],[-130,80],[-74,430],[-1618,625],[-386,507],[-106,395],[-86,940],[27,568],[11,219],[186,401],[816,65],[3826,-1301]],[[266857,935804],[-2873,1317]],[[263984,937121],[-1612,337],[145,229],[256,404],[4995,-918]],[[267768,937173],[-360,183],[-498,253],[-319,64],[-1387,275],[-931,321],[-858,296]],[[263415,938565],[108,511],[731,386],[1953,634],[520,-138],[587,-155]],[[267314,939803],[-292,201],[-380,262],[3605,1270],[1945,20]],[[272192,941556],[1145,11],[452,-280],[166,-236],[474,-673],[143,-915],[793,-751],[399,-377],[1072,-2813],[-204,-181],[-1516,-1349]],[[275116,933992],[-539,-610],[-487,-551]],[[274090,932831],[236,-26]],[[274326,932805],[1181,1169],[894,386],[26,-99],[58,-215],[-106,-278],[-25,-66],[-172,-265],[-1008,-1552]],[[275174,931885],[-404,-261]],[[274770,931624],[751,-606],[53,26],[1214,600]],[[276788,931644],[77,94],[30,36],[-62,167]],[[276833,931941],[244,768],[42,49],[828,977]],[[277947,933735],[830,-543],[36,-23]],[[278813,933169],[479,157],[307,430],[1070,-876],[24,-414],[-104,-281],[-178,-484]],[[280411,931701],[-27,-165],[-59,-370]],[[280325,931166],[1127,-322],[-697,628],[20,55],[302,818]],[[281077,932345],[914,-410],[273,-651],[720,-573],[1087,-864],[2,40],[17,404],[-353,321],[-619,563],[-597,417]],[[282521,931592],[-1630,1136],[322,589],[241,98],[213,87],[777,-282],[1680,-609],[1954,-468]],[[286078,932143],[128,-30],[-868,423]],[[285338,932536],[-948,150],[-1971,813],[-452,310],[-161,110],[41,444],[284,376],[224,144],[245,158],[2195,786],[2004,-188],[66,-60],[247,-227],[896,-390],[506,-126],[352,-88],[298,38],[285,37],[1213,-419],[532,-184],[448,-903],[250,-502],[-499,-465],[-345,-322],[-396,70]],[[290652,932098],[-645,113],[-1282,-472],[-953,-1275],[189,196],[983,1018],[511,187],[583,213]],[[290038,932078],[1043,-301],[-672,-420],[-472,-294]],[[289937,931063],[-1035,-1407]],[[288902,929656],[1639,1701],[1435,653],[1789,-218],[252,-441],[77,-136],[-17,-95],[-87,-500],[-103,-176],[-63,-108],[-1854,-587]],[[291970,929749],[-552,-174],[-104,-164]],[[291314,929411],[-576,-904],[1364,749]],[[292102,929256],[157,-507],[77,-1178],[-579,-596],[-332,-341]],[[291425,926634],[131,-146],[57,55],[1004,976],[-52,439],[-18,147]],[[292547,928105],[-94,62],[-63,41],[0,210],[-1,145],[1322,1199],[1024,178]],[[294735,929940],[445,77],[403,-98],[-36,-148],[-17,-71],[-1415,-1532]],[[294115,928168],[-25,-108],[-13,-57],[215,-814]],[[294292,927189],[1252,1327],[-30,-706]],[[295514,927810],[-11,-268],[235,-518],[456,465]],[[296194,927489],[409,-160],[354,-138]],[[296957,927191],[-145,-524],[-60,-215]],[[296752,926452],[1555,2658],[327,142],[1588,-464],[1175,-581]],[[301397,928207],[969,-1189],[-888,-1150],[-493,102]],[[300985,925970],[-659,135],[-587,-196],[-4,-1]],[[299735,925908],[-645,-1121],[-37,-484]],[[299053,924303],[-47,-607],[800,483],[1267,359],[744,211],[136,201]],[[301953,924950],[453,673],[872,492],[595,-357],[42,-134],[198,-624],[-647,-936],[-1099,-934],[-557,-46],[-698,-59]],[[301112,923025],[-145,-231],[-273,-436]],[[300694,922358],[-227,-802]],[[300467,921556],[-77,-272]],[[300390,921284],[1005,1591],[414,-63],[438,-67],[-128,-898],[-89,-630],[-769,-1402]],[[301261,919815],[16,-155],[617,809]],[[301894,920469],[788,2486],[1319,918]],[[304001,923873],[724,334]],[[304725,924207],[1129,519],[186,-86],[162,-74],[-383,-474]],[[305819,924092],[-246,-306],[-664,-380],[-174,-99],[-114,-620],[2316,1444],[460,-20]],[[307397,924111],[364,-16],[2027,-983],[-57,-1371],[-3104,-960]],[[306627,920781],[-1103,-782],[-371,-641]],[[305153,919358],[-869,-722],[502,84],[975,813]],[[305761,919533],[342,284],[9,29],[78,242],[542,325],[1388,246]],[[308120,920659],[687,122],[410,-22],[75,-222],[-86,-142],[-396,-656],[-522,-347]],[[308288,919392],[-893,-593],[-621,-235],[-867,-792],[886,548]],[[306793,918320],[2146,923],[1446,864]],[[310385,920107],[189,206]],[[310574,920313],[-176,72]],[[310398,920385],[-195,80],[12,275],[532,669],[192,60],[1261,-880],[505,-561],[559,-987],[104,-402],[177,-684],[-786,-93],[-25,-3],[-287,81],[-1062,298]],[[311385,918238],[-3165,-1201],[-332,-58]],[[307888,916979],[-772,-134],[-859,110],[-567,-87],[-271,-41],[107,-63],[220,-130],[1680,197]],[[307426,916831],[1224,144],[1150,-23]],[[309800,916952],[1751,-566]],[[311551,916386],[782,-4]],[[312333,916382],[912,-5],[1038,-590],[504,-593],[-8,-301]],[[314779,914893],[-4,-170],[-256,-276],[-982,84],[-1003,85]],[[312534,914616],[-1367,466]],[[311167,915082],[-954,324],[-800,124],[-1216,188],[-624,-504],[986,305],[88,27],[1411,-357]],[[310058,915189],[44,-249],[-827,-100]],[[309275,914840],[-301,-37]],[[308974,914803],[-320,-434],[361,-55],[874,365],[830,-275]],[[310719,914404],[140,-47],[801,-470]],[[311660,913887],[-40,-102],[-47,-120],[-250,-67],[-182,-48],[-870,-28],[449,-387],[415,-357],[-163,-277]],[[310972,912501],[-42,-71],[-1359,158],[-2229,259]],[[307342,912847],[68,-314]],[[307410,912533],[3055,-602],[110,-58],[129,-66],[150,-279],[23,-43],[-962,59]],[[309915,911544],[-754,46],[-583,-283],[85,-53],[76,-47],[336,5],[1107,16],[681,-290],[199,-85]],[[311062,910853],[574,-144]],[[311636,910709],[1676,-422]],[[313312,910287],[1114,246],[88,-54],[209,-129],[-646,-252]],[[314077,910098],[-625,-5],[-429,-4],[-1257,-337],[-330,-248],[3,-172],[1,-50],[478,180],[344,130],[1273,17],[238,4],[395,-615]],[[314168,908998],[194,-302],[159,-118],[271,-201],[550,-47]],[[315342,908330],[417,-36]],[[315759,908294],[334,-580],[-145,-192],[-383,-503],[-176,-121],[-133,-92],[1197,723]],[[316453,907529],[329,198]],[[316782,907727],[-66,-639]],[[316716,907088],[-63,-624],[167,-399],[489,1303]],[[317309,907368],[266,314],[161,-32],[457,-92],[-11,-68],[-55,-355],[-252,-541]],[[317875,906594],[48,-187]],[[317923,906407],[1287,1545],[397,-5],[602,-357],[-650,-415],[-182,-241],[-294,-388]],[[319083,906546],[-60,-589],[908,338]],[[319931,906295],[129,217],[72,121],[423,-32]],[[320555,906601],[225,-16],[53,-53],[1118,-1118]],[[321951,905414],[210,-928],[-941,-621]],[[321220,903865],[-377,-249],[10,-306]],[[320853,903310],[0,-22]],[[320853,903288],[450,41],[452,41],[21,-75]],[[321776,903295],[72,-265],[-1348,-426],[-194,-234],[-7,-59],[-55,-475],[440,310],[913,641],[559,186],[576,191],[971,-68],[212,-15],[106,186],[181,316]],[[324202,903583],[583,154],[83,-87],[159,-166],[96,-414],[-316,-402],[-238,-7],[-201,-84]],[[324368,902577],[-163,-138],[-614,-1068],[-156,-271]],[[323435,901100],[96,-249]],[[323531,900851],[34,-90],[761,384],[508,257],[1471,-119]],[[326305,901283],[1367,408]],[[327672,901691],[185,-168]],[[327857,901523],[1451,-1105],[481,-876],[-383,-436],[-39,-44],[-271,-68],[-23,-6],[-137,95],[-602,423],[757,-1204],[46,-73],[15,-47],[68,-210],[-28,-28],[-91,-91],[-1204,-268],[-1412,582],[-200,-484]],[[326285,897683],[-229,-552],[218,-86],[225,-89],[1003,-838]],[[327502,896118],[-825,-257],[-34,-176],[-4,-18],[149,-647],[84,-366],[-590,-21]],[[326282,894633],[-418,-14],[83,-320]],[[325947,894299],[136,-524],[-158,-410],[-910,407]],[[325015,893772],[-865,386],[-507,820]],[[323643,894978],[-177,-1036],[251,-925]],[[323717,893017],[-32,-69],[-81,-177],[-603,-12],[360,-373],[356,-370]],[[323717,892016],[286,-638],[-178,-306]],[[323825,891072],[-176,-44],[82,-243]],[[323731,890785],[-190,-1283],[-32,-216],[-346,139],[-200,387],[-129,248],[-255,203],[-397,314],[-412,696]],[[321770,891273],[-341,92]],[[321429,891365],[-338,91],[-653,-590],[-125,167],[-253,340],[-99,451]],[[319961,891824],[-21,96],[36,91],[63,161],[260,171],[218,142],[-461,-24],[-177,-9],[-662,491],[100,114],[135,151]],[[319452,893208],[-686,421],[-612,375],[-94,390],[37,85],[369,862],[937,463]],[[319403,895804],[746,1203],[-285,-388],[-1369,-811],[-309,-58],[-1154,-214],[-221,134],[-47,455],[252,320],[25,148],[14,91],[-370,-148],[-192,77],[-227,92],[-592,773]],[[315674,897478],[-1110,694],[-208,801],[-67,256],[-1281,93]],[[313008,899322],[-339,153],[-154,70],[-249,-181],[-174,-128]],[[312092,899236],[992,-229],[262,-349],[40,-53],[25,-56],[199,-462],[-182,-59],[-78,112]],[[313350,898140],[-114,163],[-452,100]],[[312784,898403],[503,-747],[-62,-99],[-13,-21],[-323,54],[-932,1061]],[[311957,898651],[-406,161]],[[311551,898812],[-91,-76]],[[311460,898736],[-81,-67]],[[311379,898669],[544,-1110],[193,-263],[184,-250]],[[312300,897046],[1116,-920],[-320,-706],[-1241,245]],[[311855,895665],[-5,-98],[-8,-169],[-836,611],[-584,-93]],[[310422,895916],[-157,-25],[-46,-455],[311,-481],[160,-248],[365,-141],[213,82]],[[311268,894648],[189,73],[17,-642],[-206,-679],[26,-220]],[[311294,893180],[14,-119]],[[311308,893061],[395,477],[154,187],[553,133],[368,89],[394,-180],[9,-76],[19,-157],[-103,-184],[-270,-131]],[[312827,893219],[-230,-112],[182,-181],[267,-267]],[[313046,892659],[714,29],[-26,-315],[-2,-35],[-144,-295],[-479,-46],[256,-909]],[[313365,891088],[85,-107],[366,-457]],[[313816,890524],[201,41],[206,41],[220,-329],[167,-1061]],[[314610,889216],[211,227]],[[314821,889443],[120,130],[202,-11],[249,-14],[279,-109]],[[315671,889439],[265,-104],[25,-534],[7,-152],[-182,-73]],[[315786,888576],[699,-133]],[[316485,888443],[367,-69],[-22,681],[-5,174]],[[316825,889229],[280,42],[219,-204]],[[317324,889067],[545,-510],[89,-265],[-40,-254]],[[317918,888038],[-32,-197],[-408,-329],[11,-334],[3,-93],[1016,-110]],[[318508,886975],[779,-85],[-24,-421],[-973,-829],[625,-939]],[[318915,884701],[310,-466],[433,-217]],[[319658,884018],[87,-44],[235,-366],[-367,-434],[-29,-154],[-10,-55],[87,-138],[77,-123],[462,-114]],[[320200,882590],[632,-442],[-37,-734],[-202,-889]],[[320593,880525],[-23,-100],[-8,-137],[-14,-218],[50,-128],[33,-86],[-79,74],[-447,415]],[[320105,880345],[-452,1330]],[[319653,881675],[-542,1020],[-16,29],[-242,145],[-185,110],[-44,-127]],[[318624,882852],[745,-1354],[-157,-639]],[[319212,880859],[-89,-365]],[[319123,880494],[397,-942],[375,-891],[413,-691],[253,-423],[-109,-29],[-568,-152],[-496,381]],[[319388,877747],[-72,110],[-207,319],[-167,-177],[-82,-87],[213,-681],[15,-46],[30,-40]],[[319118,877145],[489,-653],[8,-76],[31,-295],[-120,-258],[-13,-27],[-317,-153],[-253,-122],[-349,730],[-24,49],[-59,315],[-95,512]],[[318416,877167],[-395,188]],[[318021,877355],[-2691,1285],[-754,92],[-3049,3880]],[[311527,882612],[-39,8],[-45,10]],[[311443,882630],[280,-1091],[217,-476],[128,-280],[-555,198]],[[311513,880981],[-1789,1523]],[[309724,882504],[-547,165],[-780,-91],[608,-1111],[13,-24]],[[309018,881443],[642,-679],[423,-629]],[[310083,880135],[730,-1090]],[[310813,879045],[676,-147],[639,-757],[219,-259]],[[312347,877882],[252,-121]],[[312599,877761],[583,-279],[448,-482],[213,-661]],[[313843,876339],[10,-28],[126,-178]],[[313979,876133],[717,-60],[112,-143],[223,-287],[700,-1198],[797,-890]],[[316528,873555],[-128,-792],[221,-740],[154,-514],[-230,-21],[-566,-51],[-613,201],[-619,592]],[[314747,872230],[-2317,1026]],[[312430,873256],[-2779,454],[-1620,1004]],[[308031,874714],[-293,182],[-489,703],[-342,732],[-8,19],[0,10],[-1,376]],[[306898,876736],[-370,191],[-563,291],[-108,-157],[-103,-151]],[[305754,876910],[-538,-261],[-105,-51],[-621,514]],[[304490,877112],[-79,36]],[[304411,877148],[-743,337],[-1040,773]],[[302628,878258],[36,6],[129,20],[349,443],[3,181],[3,201],[-51,-20],[-203,-79]],[[302894,879010],[-582,-747],[-209,-57],[-306,170],[-102,417]],[[301695,878793],[-409,97],[-248,60],[-310,832]],[[300728,879782],[6,346],[11,542]],[[300745,880670],[1301,606]],[[302046,881276],[168,363],[-898,246],[-100,470],[-692,425],[-139,-86],[-207,-127]],[[300178,882567],[-51,-568],[-106,93],[-111,98],[-400,417]],[[299510,882607],[-128,1182]],[[299382,883789],[-245,616],[-36,-51],[-94,-134],[-1,-1028]],[[299006,883192],[0,-174],[-17,-10],[-235,-136],[-210,456]],[[298544,883328],[-345,749]],[[298199,884077],[-171,4],[-251,6],[-135,103],[-100,76],[-101,333],[61,131]],[[297502,884730],[133,285],[-594,503]],[[297041,885518],[-222,72],[-273,88],[-329,373],[14,254]],[[296231,886305],[39,693],[101,-3],[181,223],[128,157],[7,270],[-195,178]],[[296492,887823],[-609,-937],[-28,-76],[-178,-479],[-320,713],[297,159],[446,238],[-511,354]],[[295589,887795],[-246,-147]],[[295343,887648],[-433,-259],[-257,-479],[-150,-354],[-351,-236],[317,1151]],[[294469,887471],[-147,671],[-193,192],[-63,62]],[[294066,888396],[-752,-919],[-736,784],[-43,110],[350,601]],[[292885,888972],[28,49],[-151,61],[-237,95],[-280,-184],[-365,-239],[13,-81]],[[291893,888673],[23,-148]],[[291916,888525],[263,-329]],[[292179,888196],[155,-78],[158,-80],[124,-405],[93,-300],[-30,-626],[-6,-113],[-1852,383]],[[290821,886977],[-92,19]],[[290729,886996],[-1318,705]],[[289411,887701],[3,-155],[5,-254],[57,-153],[86,-225],[-84,-450],[-536,-102]],[[288942,886362],[-1085,-206]],[[287857,886156],[78,-82]],[[287935,886074],[104,-110],[-830,-93]],[[287209,885871],[-261,-29],[-92,-90],[15,-201],[-1773,311]],[[285098,885862],[-1081,190],[-1123,1421],[-155,717],[205,1544],[1325,952],[607,893],[-51,89],[-142,249],[277,798],[1673,-312]],[[286633,892403],[2562,-833],[32,1],[1021,21]],[[290248,891592],[1139,376],[1024,338],[255,-439]],[[292666,891867],[184,16],[123,11],[170,187]],[[293143,892081],[627,685]],[[293770,892766],[526,336],[241,13],[222,12],[182,-86],[216,-103],[193,-251]],[[295350,892687],[59,-77],[114,-19],[303,-51],[-5,136],[-4,98],[-611,1746]],[[295206,894520],[-563,262],[-500,529],[-278,334],[-578,695],[-57,229],[-57,229],[272,358],[776,492]],[[294221,897648],[407,258],[818,764]],[[295446,898670],[1584,1478],[197,447],[270,611]],[[297497,901206],[1011,1058],[581,170],[44,114],[277,721]],[[299410,903269],[-878,2262]],[[298532,905531],[-681,1381],[-461,1234],[-102,553]],[[297288,908699],[-1008,754],[-455,-141],[-413,-127],[-290,368],[-54,762]],[[295068,910315],[-26,364],[176,121],[51,777]],[[295269,911577],[-548,326]],[[294721,911903],[-764,142],[-63,-40],[20,-41],[55,-112]],[[293969,911852],[430,-460],[368,-394],[-88,-238],[-145,-86],[-56,-34],[-1057,288],[-164,140],[-127,108],[-322,660]],[[292808,911836],[-227,465],[66,38],[564,325],[-507,72]],[[292704,912736],[-447,466]],[[292257,913202],[-2008,133],[-595,-596],[-1607,-919],[-342,-84],[-231,-55],[-157,46],[-176,52],[-99,215],[70,1256],[40,358],[76,98],[87,110],[335,83],[238,59],[458,-124],[283,-77]],[[288629,913757],[544,122]],[[289173,913879],[827,184],[80,521],[8,55],[-57,317],[-383,423]],[[289648,915379],[-690,432]],[[288958,915811],[-157,98],[-43,21],[-378,184]],[[288380,916114],[-576,-7],[-555,536],[-166,160],[26,247],[9,87],[303,279],[93,86],[-441,-396],[-191,-171],[-169,62],[-1134,416],[140,173],[68,85],[206,73],[255,89],[56,-66]],[[286304,917767],[19,-23],[-51,-118],[170,49],[116,33],[192,317],[-29,103],[-109,392],[-1211,303],[-425,-189]],[[284976,918634],[-257,-115],[6,-13],[68,-158],[-45,-85],[-37,-73],[-354,-137],[-76,247],[-63,204],[-15,1144],[122,907]],[[284325,920555],[-71,170],[-294,205],[-224,156],[-417,-3],[-455,-5],[-25,-74]],[[282839,921004],[84,-215],[-259,-64],[-482,245],[-211,228],[-125,136],[234,418]],[[282080,921752],[-1692,652],[-29,291],[696,310]],[[281055,923005],[316,-250],[-281,488],[-129,224],[-159,128],[-125,102],[-145,1]],[[280532,923698],[-408,-1679],[-455,186],[60,376]],[[279729,922581],[-260,26],[-212,21],[-235,-284],[-66,-353],[-14,-75],[393,-174],[518,-228]],[[279853,921514],[672,50],[209,-141],[442,-692],[86,-345],[241,-969],[-417,-491],[-2233,-183],[-520,248],[-48,55],[-508,588]],[[277777,919634],[-2863,418],[-1715,250],[31,-141]],[[273230,920161],[43,-194]],[[273273,919967],[240,-119],[318,-158],[244,51],[111,23],[368,-257],[527,-590],[648,-726],[-119,-78],[-316,-207],[-1071,839]],[[274223,918745],[-291,228],[-388,243],[-1654,1036],[-1148,470],[-850,348],[303,-266],[50,-44],[642,-297],[1138,-525],[984,-772]],[[273009,919166],[-359,-418],[-29,-33],[-243,-46],[-54,58],[-139,148]],[[272185,918875],[-259,-310],[-293,-5],[-322,-5],[-1137,495],[-830,583]],[[269344,919633],[-1912,-329],[-691,83],[-1574,190],[-485,231],[-357,170],[-434,66],[-349,52]],[[263542,920096],[-1471,107]],[[262071,920203],[-572,-135],[4,-19],[55,-224],[194,60],[477,147]],[[262229,920032],[1050,-538],[-725,56],[-480,38],[-260,43],[-370,61],[-1027,539],[-698,645],[-146,580],[-68,272],[-277,22],[-527,41],[-199,512]],[[258502,922303],[-221,-82],[-272,-100]],[[258009,922121],[-86,-208],[-227,-552]],[[257696,921361],[-739,-97],[-346,-45],[-77,-43],[-297,-162],[-469,13],[-737,398],[-177,96],[34,4],[374,39]],[[255262,921564],[-807,519],[-1488,957]],[[252967,923040],[-387,461]],[[252580,923501],[-524,623],[-235,916],[2,502]],[[251823,925542],[372,355],[596,-68],[705,-81],[1126,-386]],[[254622,925362],[19,-42],[55,-119],[607,-82],[317,-42]],[[255620,925077],[1819,197]],[[257439,925274],[488,201],[-99,134]],[[257828,925609],[-759,434],[-1069,611],[-320,122],[-230,88],[-2099,207]],[[253351,927071],[-2367,233],[-666,289],[-263,551],[2,725],[176,525],[135,2898],[8,170],[-100,192],[-102,198],[-34,248],[-19,146],[106,244],[426,979],[411,614],[282,8]],[[251346,935091],[303,526],[147,256]],[[251796,935873],[33,947],[16,463],[959,1652],[1519,1278],[478,403],[1832,958]],[[256633,941574],[2731,699],[823,11]],[[260187,942284],[677,9],[2413,-196],[478,-124],[172,-45],[398,-305],[-101,-132],[-250,-326],[-2584,-1701]],[[261390,939464],[-292,-321],[-348,-382],[-1312,-2128]],[[259438,936633],[-8,-1692]],[[259430,934941],[759,-1556],[-169,-268]],[[260020,933117],[-73,-117],[-33,-240],[-35,-259],[180,-1087],[669,-1058]],[[260728,930356],[150,-150],[1135,-1124],[666,-475],[1505,-1073],[-139,-180],[-156,-205],[-993,-185]],[[262896,926964],[-2852,-1108]],[[260044,925856],[-1147,-445]],[[181754,934945],[2,-241],[1,-36],[1099,260],[1374,325]],[[184230,935253],[312,745],[564,710]],[[185106,936708],[574,415]],[[185680,937123],[234,170],[2813,-685],[870,-362],[1562,-652],[8,-234],[10,-331],[-391,-557],[-228,-324],[-743,-416],[-597,-335]],[[189218,933397],[144,-101],[391,-275]],[[189753,933021],[1179,588],[1113,554]],[[192045,934163],[236,177],[467,349],[593,-215],[786,-286]],[[194127,934188],[999,-6]],[[195126,934182],[-721,902]],[[194405,935084],[340,79]],[[194745,935163],[268,63],[-8,21],[-136,349]],[[194869,935596],[-1834,755],[-164,186]],[[192871,936537],[-415,472],[143,211]],[[192599,937220],[253,58],[1838,-203],[742,-480],[21,-59]],[[195453,936536],[71,-193]],[[195524,936343],[2350,-1431],[408,-573],[126,-178],[275,-1803],[72,-207],[201,-580],[217,-1093]],[[199173,930478],[146,-736],[1133,-730],[48,18],[241,91],[653,756]],[[201394,929877],[249,289],[197,735]],[[201840,930901],[-752,829],[-424,710],[-174,1429],[-100,348]],[[200390,934217],[-1054,3682],[451,880],[-19,72],[-36,138],[75,103]],[[199807,939092],[142,192],[637,-86]],[[200586,939198],[550,-75],[1422,-497],[524,-37]],[[203082,938589],[740,-51],[202,-125]],[[204024,938413],[2796,-1722],[283,-410],[40,-438]],[[207143,935843],[23,-254]],[[207166,935589],[2033,-5292],[471,-492],[184,-314],[242,-412],[39,-862],[27,-597],[-256,-652],[-571,-732]],[[209335,926236],[244,-462],[238,-209]],[[209817,925565],[2860,-2521]],[[212677,923044],[1249,-277]],[[213926,922767],[-263,193],[-70,216],[-23,72],[23,197],[19,165],[51,-6],[188,-20],[1125,-1160],[1932,-1222],[856,-687],[198,-158],[138,9],[717,48],[316,322],[154,-115],[244,-183],[18,-86],[273,-1341],[19,-358],[13,-232],[-131,-669],[-60,-84],[-49,-68],[-467,-14]],[[219147,917586],[-417,-12],[-82,46],[-54,30],[-196,467]],[[218398,918117],[-100,589],[-186,41],[-626,-835],[-941,1102],[-193,7],[-354,14],[-20,-26],[-498,-663]],[[215480,918346],[-91,-248],[-99,-269],[56,-81],[-12,-231],[-27,-517],[-265,-151],[-379,61]],[[214663,916910],[-681,111],[-817,660],[-235,51],[-483,107],[108,-272]],[[212555,917567],[107,-267]],[[212662,917300],[441,-436]],[[213103,916864],[443,-437]],[[213546,916427],[35,85],[132,321],[181,-251],[80,-518],[-102,-857],[-2,-14],[-548,-395]],[[213322,914798],[11,-333],[103,-68]],[[213436,914397],[1308,1601],[19,14],[765,571],[301,46],[538,-153],[375,-107],[62,-129],[98,-205],[-586,-745]],[[216316,915290],[75,-52]],[[216391,915238],[231,-159],[361,169],[434,-632],[-130,-920],[-50,-42],[-33,-28],[-678,-153]],[[216526,913473],[-1802,-405],[-409,-298]],[[214315,912770],[-412,-300],[-2911,302],[-767,277],[-113,275]],[[210112,913324],[-213,-11]],[[209899,913313],[-80,-279],[-225,-240],[-981,122],[-627,77],[-347,391],[371,172]],[[208010,913556],[463,215],[178,299],[-1326,247],[-1530,286],[-1094,525],[35,37],[122,134],[-121,340],[-90,253],[-387,345],[-337,300],[-748,-737],[-19,-18],[-243,-397],[-205,-650]],[[202708,914735],[-619,-681],[-406,-447],[-1635,-331],[-1499,-303],[-1117,-844],[-257,-97],[-459,-174],[-1950,-456],[-3233,-227],[-1994,-264]],[[189539,910911],[-2369,-314]],[[187170,910597],[-1423,64]],[[185747,910661],[-54,3],[-1356,1804],[101,2253]],[[184438,914721],[-350,174],[-419,210],[-858,147]],[[182811,915252],[-2769,-155],[-1850,239],[-362,141],[-1293,503],[-168,115],[-314,213],[-192,445],[-112,261],[-1277,988],[-263,466],[-321,940],[246,441],[917,388],[2272,509],[4494,660],[502,2],[478,2],[4110,-601]],[[186909,920809],[483,53],[3143,348],[-75,152],[-90,180],[-3239,1231]],[[187131,922773],[-3765,956]],[[183366,923729],[-1392,-389],[-2031,-265],[-2024,-94],[-237,77]],[[177682,923058],[-654,213],[-1718,-108]],[[175310,923163],[-1728,-108],[-241,300]],[[173341,923355],[-271,338],[-837,501]],[[172233,924194],[-555,333],[-593,735],[4,75],[4,81],[144,166],[83,96],[1486,737],[976,191],[1224,239]],[[175006,926847],[2536,761],[1081,96]],[[178623,927704],[-1157,259],[903,406],[158,14],[302,27],[238,-130],[96,-35],[210,-74]],[[179373,928171],[127,5],[136,6],[415,200],[395,190],[-1285,90]],[[179161,928662],[-2022,-339],[-1957,-329],[-1085,101]],[[174097,928095],[-128,12],[-490,245],[-243,-129],[35,-81],[26,-60],[-89,-253]],[[173208,927829],[-45,-128],[-413,-6],[-957,-11],[-238,98],[-21,9],[-158,414],[632,450],[433,80],[697,128]],[[173138,928863],[-76,497]],[[173062,929360],[-909,-63],[-2369,-164],[-69,-234],[-119,111],[-293,270],[-29,116],[-122,498],[-2,598],[371,548],[201,298]],[[169722,931338],[712,724],[375,193],[556,285]],[[171365,932540],[14,394],[16,451]],[[171395,933385],[-567,179],[-78,150],[-31,58],[12,106],[27,247],[950,874],[26,23],[2603,1793],[4017,1455]],[[178354,938270],[3235,1172]],[[181589,939442],[169,6],[193,7],[914,-355],[437,-559],[126,-162],[117,-521],[-8,-1656],[-586,-132],[-658,-618]],[[182293,935452],[-539,-507]],[[315599,995698],[-1429,-467],[-4872,-1018]],[[309298,994213],[169,-96]],[[309467,994117],[3687,359]],[[313154,994476],[4238,977],[901,-82],[402,-316]],[[318695,995055],[12,456],[1,19],[94,131],[1144,139],[228,-34],[255,-38],[-299,-191]],[[320130,995537],[227,-302],[532,-250]],[[320889,994985],[1247,383],[673,0],[612,0],[340,-196],[16,-150],[10,-86],[-99,-59],[-501,-300]],[[323187,994577],[1128,-680]],[[324315,993897],[838,-505],[2076,148],[1328,-216]],[[328557,993324],[1083,-363],[175,-135],[363,-282],[2,-166],[1,-77],[-111,-265],[-105,-250],[-1286,-540],[-1169,-490],[-4367,-1377],[-1165,-368],[-824,-14]],[[321154,988997],[-2419,-40],[-1595,-242],[-776,-117]],[[316364,988598],[2123,-10],[-813,-200]],[[317674,988388],[-592,-145],[-7263,-242]],[[309819,988001],[-1310,-232],[278,-65],[709,-164],[1932,158],[2053,168]],[[313481,987866],[1514,-284],[-9314,-2035]],[[305681,985547],[-11,-517],[2025,718],[867,145]],[[308562,985893],[9462,1584]],[[318024,987477],[2697,287],[325,-322],[-219,-327],[-465,-322],[-179,-60],[-2407,-804],[-852,-46]],[[316924,985883],[-114,-6],[-582,-310]],[[316228,985567],[-897,-478],[-6603,-2820]],[[308728,982269],[-417,-284]],[[308311,981985],[-244,-167]],[[308067,981818],[-588,-760],[-270,-122],[-298,-136],[-1978,-169],[-71,112],[219,376]],[[305081,981119],[-745,413],[-466,258],[-581,66],[487,-462],[568,-540]],[[304344,980854],[691,-330],[798,-382],[-224,-153],[-391,-266],[-1185,52],[-118,5],[-2256,-398],[-2202,280]],[[299457,979662],[-342,-667],[890,6],[1560,10],[886,162]],[[302451,979173],[1185,217],[648,-235],[-564,-607],[-920,-160],[-1140,-199]],[[301660,978189],[-107,-135],[-51,-65]],[[301502,977989],[980,129],[211,-60],[492,-141],[-390,-322],[-217,-180],[-562,-228],[-361,-147],[-1910,-344],[-119,-2],[-1446,-22],[-376,106],[-227,64],[-150,161],[-267,284]],[[297160,977287],[-637,235],[-104,38],[-1902,359],[-914,15],[-706,-105],[-922,-138],[732,-315]],[[292707,977376],[1788,7],[421,-62],[984,-146]],[[295900,977175],[316,-112],[24,-22],[544,-507],[175,-570],[-456,-180],[-309,-122],[-3521,-383],[-397,-109],[-212,-59],[-88,-187],[-541,-32],[-4450,862]],[[286985,975754],[-248,-200]],[[286737,975554],[1137,-88],[101,-8],[1308,-702],[-3107,130]],[[286176,974886],[-2231,-81],[-751,-27],[2733,-465],[2819,-99]],[[288746,974214],[4399,-154],[103,-40],[4,-786],[1,-155],[-16,-42],[-56,-156],[-367,-96],[-2506,261],[-952,240],[-87,55],[89,183]],[[289358,973524],[12,24],[-4,10],[-35,79],[-807,259],[-1731,16],[-3045,29],[-1089,-230],[4207,-91]],[[286866,973620],[1900,-323],[-69,-27],[-320,-127],[-2040,-38],[-2217,-42]],[[284120,973063],[-1777,143]],[[282343,973206],[-1434,-124]],[[280909,973082],[2905,-53],[462,-220],[-899,-555]],[[283377,972254],[-517,-448],[-153,-133],[-97,-233],[-27,-65],[250,-53],[167,199],[478,571]],[[283478,972092],[802,447],[2593,307],[1406,-147]],[[288279,972699],[1366,-143],[90,-99],[-410,-182],[1,-28],[2,-245]],[[289328,972002],[1632,47],[1301,-331],[205,-236],[-12,-738]],[[292454,970744],[-7,-451]],[[292447,970293],[-1597,-421],[-1239,-105],[-606,85],[-223,31],[-20,-38],[-101,-197]],[[288661,969648],[2147,-447],[854,-448],[-37,-29],[-26,-21],[-1167,-532],[-783,-104]],[[289649,968067],[-2066,178],[-627,-79],[-719,-90],[25,-59],[28,-66],[465,-107],[631,-144]],[[287386,967700],[2681,-150],[14,-141],[-11,-20],[-229,-387],[-282,-181],[-247,-159],[-381,34],[-222,20],[-2773,-411],[-657,56],[-3282,280]],[[281997,966641],[-5,-10],[-115,-207],[424,-411],[723,-241]],[[283024,965772],[100,-115],[295,-336],[93,-365],[182,-711],[-1397,-1186],[-344,-109],[-452,-143],[-1815,-187],[-430,1],[-2627,7],[-1790,593],[-475,157],[-952,563]],[[273412,963941],[-563,660],[-237,279],[-134,29],[-134,30],[11,-337],[638,-1222],[322,-143],[319,-141]],[[273634,963096],[751,-24],[122,-153],[71,-90],[-1393,-176],[-329,-42],[-845,133]],[[272011,962744],[115,-308]],[[272126,962436],[5,-4],[643,-624]],[[272774,961808],[2057,761],[921,-174],[1599,-301],[533,105],[769,150],[570,-77],[556,-75],[163,-76],[273,-125],[313,-481],[-611,-484],[-390,-308]],[[279527,960723],[-67,-118],[-90,-162],[750,-242],[1117,-359],[440,194],[101,276]],[[281778,960312],[106,291],[416,312],[667,80],[134,16],[81,-81],[432,-431],[358,-770],[-69,-901],[-979,-679],[-681,-473],[-427,31],[-80,176],[-113,246]],[[281623,958129],[-1259,-731],[-437,-177]],[[279927,957221],[-1571,-638],[-1900,-437],[-1393,-320],[-78,119],[-163,248],[49,61],[789,992]],[[275660,957246],[23,207]],[[275683,957453],[-917,421],[-525,241]],[[274241,958115],[-622,-369],[-296,0],[-411,1],[-929,273],[-13,101],[-72,563],[-1708,1174]],[[270190,959858],[-116,-126],[65,-78],[548,-650]],[[270687,959004],[874,-491],[147,-279],[126,-663],[-142,-100],[-243,-171],[-1330,-58],[-120,-6],[-124,59],[-422,202],[-418,483]],[[269035,957980],[-407,469],[186,-514]],[[268814,957935],[161,-449],[-444,-4],[-952,-8],[-1063,651],[-86,216],[14,104]],[[266444,958445],[28,207],[-55,20]],[[266417,958672],[-554,195]],[[265863,958867],[-193,-53]],[[265670,958814],[564,-979],[-236,-187],[-14,-12],[-268,-30]],[[265716,957606],[-703,-79],[-411,190],[-320,426],[-373,497],[-511,227],[-132,-74],[612,-1165],[1189,-542]],[[265067,957086],[531,-242],[-446,-33],[-1895,-137],[-2349,450],[-1095,789],[-574,-867],[-505,60],[-592,124],[-5,1],[-676,414]],[[257461,957645],[-257,453],[-283,498],[-88,-11],[-93,-12],[-5,-250],[-3,-218]],[[256732,958105],[347,-734],[-314,-267],[-153,-130],[-1425,336],[-751,177]],[[254436,957487],[-210,2092]],[[254226,959579],[-258,-438]],[[253968,959141],[-355,-605]],[[253613,958536],[-278,-906],[-183,-179],[-67,-66],[-358,19],[-206,122],[-1106,656]],[[251415,958182],[-44,203],[-75,345]],[[251296,958730],[18,1265],[2645,1216]],[[253959,961211],[191,88]],[[254150,961299],[-35,127],[1872,234]],[[255987,961660],[30,4],[1090,-72]],[[257107,961592],[1161,328],[-581,610],[-280,294],[-1076,623],[-115,67],[-1232,1400],[124,644],[94,129],[45,60],[2298,454],[789,-128]],[[258334,966073],[1405,-228],[824,-291],[294,-235],[229,-184],[535,-1021]],[[261621,964114],[141,-271],[276,-334],[3177,-751],[-164,234]],[[265051,962992],[-107,151],[997,17],[831,15]],[[266772,963175],[1707,863]],[[268479,964038],[1194,1109],[1729,2101],[-769,-35],[-328,-165],[-188,-95],[-41,-51],[-40,-50],[45,-228],[-136,-189],[-223,-306]],[[269722,966129],[-1448,-1657],[-1290,-649],[-2694,265]],[[264290,964088],[-97,101],[-259,272],[-848,435]],[[263086,964896],[-30,355],[228,212]],[[263284,965463],[304,282],[-205,-43],[-391,-83],[-20,14]],[[262972,965633],[-217,148],[59,39]],[[262814,965820],[484,316],[2306,47],[-438,101],[-388,89],[-2060,-302]],[[262718,966071],[-212,97],[-533,242],[980,437],[589,261],[949,-145]],[[264491,966963],[711,308],[-757,-158]],[[264445,967113],[-696,352],[127,249],[30,13],[287,118],[1033,125],[-498,78],[-197,31],[-49,141],[-133,384]],[[264349,968604],[-9,240],[-6,153]],[[264334,968997],[-332,-190],[-1188,-1235],[-1633,-385],[-443,-55],[-411,160],[89,158],[182,323],[577,361]],[[261175,968134],[416,777],[89,166],[-64,-12],[-138,-27]],[[261478,969038],[-576,-632],[-600,-312],[-1092,-568],[-1160,-114],[-576,99],[-604,104],[420,2047],[2380,1869],[4334,589]],[[264004,972120],[3093,-336],[1156,-450]],[[268253,971334],[3001,-1172],[358,105],[-318,499],[-228,356],[-1198,68]],[[269868,971190],[-1168,510],[544,184],[3004,2]],[[272248,971886],[524,1],[170,254],[478,714],[-118,175],[-1028,-493]],[[272274,972537],[-1592,-424],[-3071,236],[-2896,472],[-160,230],[-46,65],[759,479],[1211,-288],[154,-241]],[[266633,973066],[143,-56],[172,-68],[1157,-101],[386,171],[-1406,505]],[[267085,973517],[-786,282],[-2779,2721]],[[263520,976520],[-572,185],[-512,166]],[[262436,976871],[-2574,439],[-88,183],[111,748]],[[259885,978241],[101,181],[292,-23],[1615,-126],[844,-229],[277,79],[125,35],[-902,266],[-121,15],[-2337,280],[-128,198]],[[259651,978917],[-281,437],[360,986],[11,31],[1152,135],[499,59],[1015,-146],[1501,-215]],[[263908,980204],[3196,-73],[310,-98],[346,-108],[3670,-1900],[1638,-1618]],[[273068,976407],[908,-70],[2003,-153],[2111,368],[128,81],[326,206],[-140,-14]],[[278404,976825],[-2595,-272],[-1897,356],[-408,306],[-206,508],[-100,244],[422,176]],[[273620,978143],[74,31],[-89,118],[-41,54],[-1188,186],[-815,353]],[[271561,978885],[-2648,1667],[7524,812]],[[276437,981364],[1170,344],[195,58],[5462,151],[113,59],[113,59],[-3052,246],[-1858,-25]],[[278580,982256],[-775,-10],[1886,535],[3164,580],[2322,130]],[[285177,983491],[2475,140],[-76,171],[-35,81],[-217,70],[-3485,42]],[[283839,983995],[-1307,-155],[-1589,-189],[-238,125],[44,138],[199,621],[2826,1609],[1872,586],[1257,393]],[[286903,987123],[-175,39],[-219,48],[-1557,-397]],[[284952,986813],[-2406,-613]],[[282546,986200],[-2506,-1287],[-68,-244],[-161,-579],[-132,-104],[-466,-367],[-3049,-851],[-1001,-279],[-1836,-317],[-1099,-93],[-3101,-261],[-113,122],[-9,10],[207,415],[1324,265],[1141,229]],[[271677,982859],[483,214],[644,286],[-425,193],[-6,3]],[[272373,983555],[-1883,-583],[-1095,-195],[-768,-137],[-759,337]],[[267868,982977],[577,110],[129,25],[634,357],[-320,55],[-94,16],[-1142,-488],[-75,-340]],[[267577,982712],[-57,-257],[77,-126],[-303,-493],[-3606,-200],[-2711,117],[-886,194],[-955,209],[187,279],[137,205],[842,531]],[[260302,983171],[1823,1150],[1891,346],[1719,172]],[[265735,984839],[5170,516],[144,152],[51,54]],[[271100,985561],[-8882,-752]],[[262218,984809],[-1847,-693],[-1564,-987],[-918,-765],[-167,-12],[-706,-52],[-1878,345],[-3153,1023],[-193,182],[-165,155],[1996,312]],[[253623,984317],[1469,229],[1999,-159]],[[257091,984387],[1236,79],[696,44]],[[259023,984510],[5198,1520]],[[264221,986030],[605,176],[-560,141]],[[264266,986347],[-822,-121],[-730,-108],[-1379,-263],[-879,-454],[-2045,-317],[-1086,-168],[-1080,2],[-1314,3],[-4129,-344],[-64,16],[-1106,268],[-112,90],[-67,53],[-148,359],[-80,193],[960,395],[247,-30],[1176,-143]],[[251608,985778],[98,12],[1399,164],[-1176,165]],[[251929,986119],[-1237,174],[-14,281],[916,194]],[[251594,986768],[1799,715],[939,79],[1370,115],[2027,-255]],[[257729,987422],[-3079,458]],[[254650,987880],[-1931,-268],[-3376,-849],[-1616,361],[1884,558]],[[249611,987682],[1815,537],[-910,146],[-920,148],[-1376,-48]],[[248220,988465],[-737,-330],[-417,-500],[-786,93],[-90,11],[-58,20],[-427,148],[14,7],[130,58],[-671,122],[-19,3],[-139,48],[11,184],[5,89],[443,394],[61,54],[3037,843],[273,12]],[[248850,989721],[2095,93],[360,-209],[479,-277],[484,256],[77,41],[146,213],[226,333]],[[252717,990171],[-9,182],[150,86],[107,61],[2505,509],[900,-81]],[[256370,990928],[1023,-92],[920,-699]],[[258313,990137],[32,223]],[[258345,990360],[32,220],[328,151],[1666,-19],[273,-78],[510,-145],[1257,-32],[823,-21],[614,-266]],[[263848,990170],[956,-414],[348,-16],[117,-5],[-341,539],[-398,221]],[[264530,990495],[-2175,276],[-2978,378],[-136,55],[-194,79],[-127,162],[-185,236],[1794,74]],[[260529,991755],[1766,74],[355,127],[326,118]],[[262976,992074],[-690,812],[-341,52],[-315,47],[196,120],[83,51],[1277,97],[803,-37],[737,-34],[-90,-48],[-161,-85],[6,-41]],[[264481,993008],[19,-130]],[[264500,992878],[2314,-284],[793,-98],[382,-183],[628,-302],[1572,-1130]],[[270189,990881],[1305,-53]],[[271494,990828],[584,-24]],[[272078,990804],[-1674,376],[-139,85],[-806,490],[5,54],[18,204],[146,126],[328,-15],[578,-26],[1557,-525],[1264,-426]],[[273355,991147],[2299,-612],[208,-26]],[[275862,990509],[1051,-134],[1071,-409]],[[277984,989966],[639,-244]],[[278623,989722],[172,9],[559,28]],[[279354,989759],[-772,409],[-828,439]],[[277754,990607],[-2439,384],[-4693,1506],[-275,272],[297,366],[193,238],[816,1],[2141,3]],[[273794,993377],[-701,109]],[[273093,993486],[-569,89],[-673,231],[-634,218],[242,299],[39,8],[321,61],[2183,-270],[462,-208]],[[274464,993914],[1795,-811],[600,51],[119,10],[-87,66],[-929,700]],[[275962,993930],[-2487,1253],[148,45],[1058,-40],[1923,-71],[1203,-611]],[[277807,994506],[3120,-28],[-1917,276],[-866,125],[-550,475],[-411,120],[-368,107],[5,121],[1,27],[556,138],[683,170],[694,14],[983,19],[3394,-690]],[[283131,995380],[4,257],[1,45]],[[283136,995682],[462,166],[241,87],[1524,-337],[1403,-764],[976,-531]],[[287742,994303],[749,-589],[202,-159]],[[288693,993555],[693,87],[820,344]],[[290206,993986],[-1101,378],[-946,702]],[[288159,995066],[-3095,1147],[-345,339],[1758,312],[6844,-375],[608,-139],[2942,-1453]],[[296871,994897],[1205,-872],[222,-58],[83,-21],[586,570],[-591,344]],[[298376,994860],[-1065,251],[-605,143],[-1181,673],[450,162],[2203,793],[2961,70],[78,-41],[78,-40],[-571,-405]],[[300724,996466],[-64,-46],[884,-433],[1866,-316],[-1773,772]],[[301637,996443],[1828,508],[2625,55],[609,-46],[-61,-73],[-272,-325]],[[306366,996562],[64,-106],[68,-113]],[[306498,996343],[9235,-451],[-92,-132],[-42,-62]],[[345433,810856],[526,-198],[-147,-1091],[-32,-230],[-341,-318],[-1078,436]],[[344361,809455],[-61,-34],[-84,-47],[-1,-4],[-54,-258],[74,-409],[32,-177],[133,-224],[147,-164]],[[344547,808138],[-45,254],[153,30],[377,74],[157,-196],[29,-37],[-18,-279],[-1,-23],[-52,-172],[-240,-787],[-1478,-3304],[-765,-1709]],[[342664,801989],[-577,-1622]],[[342087,800367],[-195,-551]],[[341892,799816],[272,-767],[882,1566],[1117,1285],[665,-611]],[[344828,801289],[163,-38],[446,-104]],[[345437,801147],[-810,-2167]],[[344627,798980],[-97,-454],[-37,-173],[813,-602]],[[345306,797751],[162,123]],[[345468,797874],[326,247],[160,-260]],[[345954,797861],[105,-170]],[[346059,797691],[350,77],[330,73],[-303,-1214],[728,561],[461,-47]],[[347625,797141],[25,-76],[23,-69]],[[347673,796996],[749,1521],[136,139],[48,50],[36,-26],[74,-53],[77,-1353]],[[348793,797274],[486,535]],[[349279,797809],[270,296],[156,37],[268,63],[795,-698]],[[350768,797507],[694,-609],[-659,-1303],[-360,-38]],[[350443,795557],[-6,-1],[-281,-842]],[[350156,794714],[-3,-854],[97,-132],[69,-93],[-40,-448]],[[350279,793187],[-27,-311],[-46,-146]],[[350206,792730],[-222,-696],[15,-59],[21,-82]],[[350020,791893],[577,428],[238,-169]],[[350835,792152],[89,-373]],[[350924,791779],[480,919],[12,24],[402,320],[688,548],[113,-219]],[[352619,793371],[170,-331],[-22,-309],[-275,-814],[-893,-795],[-1074,-459]],[[350525,790663],[-181,88],[-246,119],[98,-921]],[[350196,789949],[710,-280],[-39,-652],[-113,-387],[-6,-20],[-280,-324],[-60,30],[-37,19]],[[350371,788335],[64,-508]],[[350435,787827],[191,-519],[254,-281],[313,-346],[274,1433]],[[351467,788114],[86,451],[371,943],[762,747],[183,179],[106,-239]],[[352975,790195],[75,-168]],[[353050,790027],[-690,-1791]],[[352360,788236],[-268,-1228],[-15,-72],[372,-873],[523,716]],[[352972,786779],[384,1582],[87,-225],[246,-636],[83,-1029],[-526,-1457]],[[353246,785014],[-242,-1914]],[[353004,783100],[-505,-1001]],[[352499,782099],[-332,-660],[-284,-44],[-663,-104],[-85,89],[-80,84],[-76,417],[18,149],[271,2227]],[[351268,784257],[-23,616],[-762,-1382]],[[350483,783491],[-472,-857],[-174,-217],[-289,139],[-84,41],[9,123],[41,589],[226,837],[190,702],[371,819]],[[350301,785667],[164,361],[-327,1594],[-137,671],[-100,83],[-558,465],[-560,-2340],[-152,-217]],[[348631,786284],[-328,-468],[-65,95],[-99,145]],[[348139,786056],[-473,-82],[-575,-1067],[-44,-81]],[[347047,784826],[-204,-939]],[[346843,783887],[-307,-695],[-213,-181],[-189,-159],[-555,-39],[-608,-42],[-439,271],[-50,251],[-7,36],[271,562],[1623,1449]],[[346369,785340],[100,119],[1142,1364],[282,473],[164,275]],[[348057,787571],[-343,-171],[-575,-286],[-229,111],[-583,282]],[[346327,787507],[-30,-47],[-232,-371]],[[346065,787089],[-492,-435],[-78,79],[-59,60],[-106,-9],[-374,-36],[-241,159],[-62,40]],[[344653,786947],[301,1221]],[[344954,788168],[100,983]],[[345054,789151],[-216,-772],[-669,-642],[-441,-422],[-400,-100],[-1379,-344],[-570,183],[-660,211]],[[340719,787265],[-251,57],[-312,69],[-1344,255]],[[338812,787646],[-954,127],[-1056,-622],[-1054,-182],[-310,222],[-193,137],[-249,1683],[2687,3180]],[[337683,792191],[96,328],[-446,89]],[[337333,792608],[-487,97]],[[336846,792705],[-1097,-345],[-386,-121],[151,488],[777,826]],[[336291,793553],[82,87]],[[336373,793640],[185,-71],[446,-170],[878,2540]],[[337882,795939],[33,-153],[15,-73],[520,-219],[109,-46]],[[338559,795448],[134,398]],[[338693,795846],[76,224],[14,174]],[[338783,796244],[-195,463],[107,790]],[[338695,797497],[162,1198],[931,3216],[959,2877]],[[340747,804788],[57,172],[947,1870]],[[341751,806830],[175,564]],[[341926,807394],[338,1169],[21,201],[153,241],[253,397],[257,182],[1436,1018],[400,85],[-29,-227],[-34,-276]],[[344721,810184],[494,-71],[178,-25]],[[345393,810088],[-172,301],[-69,119],[209,258],[72,90]],[[164131,945709],[1445,-558],[972,-375],[692,-1034]],[[167240,943742],[503,158]],[[167743,943900],[39,48]],[[167782,943948],[447,548],[977,-98],[180,-554],[-36,-109],[-39,-120],[-117,-56],[-54,-26],[-20,-90],[-59,-258]],[[169061,943185],[97,-36],[490,61],[360,403],[-11,240],[-5,103]],[[169992,943956],[-152,204],[674,336]],[[170514,944496],[1521,319],[1085,-191]],[[173120,944624],[820,-145],[863,-548]],[[174803,943931],[1413,-898],[1004,-789],[663,-521],[1088,-604],[708,-699],[46,-180],[39,-149],[-1476,-857],[-2406,-803],[-6748,-3304]],[[169134,935127],[-43,-41],[-75,-73]],[[169016,935013],[-308,-968],[-139,-436],[-291,-212],[-835,-610],[-682,-170],[-560,-140],[-429,-1097]],[[165772,931380],[-96,-1172],[-56,-688],[-321,-852],[-162,-163],[-2137,-832],[-643,161],[-1187,-391],[-2458,-1528],[-780,9],[-697,689],[-428,1053]],[[156807,927666],[-299,735]],[[156508,928401],[-1094,1141]],[[155414,929542],[-1372,557]],[[154042,930099],[-2665,1081]],[[151377,931180],[-548,431],[-74,414]],[[150755,932025],[74,269],[1071,1881],[962,487]],[[152862,934662],[-195,1581],[-7,55],[1681,621]],[[154341,936919],[-108,110],[-162,165]],[[154071,937194],[-449,118],[-242,750],[899,1404]],[[154279,939466],[1162,1256]],[[155441,940722],[457,660],[28,40]],[[155926,941422],[-216,637],[-65,192]],[[155645,942251],[-629,198],[-676,1267],[-48,89],[-50,475]],[[154242,944280],[-190,352],[-89,164]],[[153963,944796],[-304,204],[-259,174],[2546,414],[4344,380]],[[160290,945968],[1477,424],[1297,-29],[1067,-654]],[[232503,961151],[840,59]],[[233343,961210],[889,63],[3474,-864]],[[237706,960409],[896,-50],[1315,-73],[1170,-852],[-639,-1739]],[[240448,957695],[1075,954],[1759,-136]],[[243282,958513],[154,-11],[164,55]],[[243600,958557],[1072,365],[1295,136],[1234,-218],[985,-444],[145,-66],[16,-24],[350,-538],[-559,-116],[-2142,396]],[[245996,958048],[-476,-144]],[[245520,957904],[6076,-1092]],[[251596,956812],[378,-68],[94,-124]],[[252068,956620],[164,-220],[-447,-299],[-74,-10],[-1013,-138],[-2586,54],[-479,10],[-2163,523]],[[245470,956540],[756,-406]],[[246226,956134],[307,-166],[580,-150]],[[247113,955818],[1152,-299],[-28,-123]],[[248237,955396],[-55,-249],[-753,-27],[-340,-12],[-84,-176],[-4,-6],[442,-232],[750,83],[1533,170]],[[249726,954947],[1136,-556],[1451,-709],[49,-101],[-281,-820],[-215,-20],[-433,-41],[1541,-1108]],[[252974,951592],[418,30],[64,140],[35,79]],[[253491,951841],[-395,683],[254,460],[66,119],[447,-99],[1154,-913]],[[255017,952091],[1431,358],[1496,83],[808,-392],[490,-238],[484,-438]],[[259726,951464],[80,-73],[184,17]],[[259990,951408],[1336,121]],[[261326,951529],[99,155]],[[261425,951684],[-756,366],[4930,1177]],[[265599,953227],[820,441],[399,214],[1285,-254]],[[268103,953628],[454,6],[1287,17]],[[269844,953651],[1475,366],[1231,-112],[529,-48],[884,-148],[768,-128],[-652,-416]],[[274079,953165],[76,-165],[44,-95],[411,-68],[471,-78]],[[275081,952759],[1262,176],[692,-126],[742,-620],[-200,-71],[-511,-179],[542,-65],[1284,-152],[49,-130],[315,-837],[-376,-401]],[[278880,950354],[-239,-254],[-1513,-669],[300,-411],[129,-176]],[[277557,948844],[85,82]],[[277642,948926],[166,160],[431,84],[103,20],[751,-83],[239,-334],[265,-370],[-1483,-453],[-661,215],[-322,105],[-100,-335]],[[277031,947935],[109,-305],[44,-124]],[[277184,947506],[12,-644],[-164,-262],[-1632,-180],[-3322,-366]],[[272078,946054],[-349,38],[-1701,184],[-115,55],[-284,137],[-338,416]],[[269291,946884],[-154,191],[-27,78],[-33,98],[37,233],[31,192],[-789,588],[-323,241]],[[268033,948505],[-166,-188]],[[267867,948317],[455,-477]],[[268322,947840],[119,-420],[-90,-239]],[[268351,947181],[-232,-616],[-358,-187],[-2684,-227],[-456,-23],[-469,-23],[-145,336],[-256,4],[-1235,17],[-138,-195],[-116,-165],[-1157,-101],[-109,-10],[-580,209],[-3547,-203]],[[256869,945997],[-1014,-58],[-1690,163],[-116,44],[-86,376],[430,1093],[-117,450]],[[254276,948065],[-18,5],[-103,30]],[[254155,948100],[-1683,-714],[-34,-523],[-160,-137],[-167,-143],[-2065,-287],[-335,117],[-2209,771],[123,600]],[[247625,947784],[238,271],[-12,334],[-71,-7],[-146,-16],[-767,-842]],[[246867,947524],[10,-223],[17,-370],[-181,4],[-857,17],[-667,349],[-707,370],[-230,321],[-42,202],[-155,760],[-411,910],[-573,480],[123,677],[96,531],[542,719]],[[243832,952271],[597,370],[-8,160],[-11,199],[-149,381],[-134,341]],[[244127,953722],[-435,658]],[[243692,954380],[-733,890],[-1528,1856]],[[241431,957126],[-312,8],[-396,9]],[[240723,957143],[-1085,-548]],[[239638,956595],[-2809,149]],[[236829,956744],[-810,-441],[-819,71],[-24,182],[-33,242]],[[235143,956798],[1349,130]],[[236492,956928],[-2619,394],[-522,254],[-346,413],[91,54],[125,74],[399,-49]],[[233620,958068],[215,-27]],[[233835,958041],[611,543]],[[234446,958584],[-331,-182]],[[234115,958402],[-322,-177],[-777,172],[-1670,712],[50,378]],[[231396,959487],[1,8]],[[231397,959495],[932,-13]],[[232329,959482],[-1432,927],[16,84],[38,195],[50,34],[104,70],[877,-93]],[[231982,960699],[489,141],[1,127]],[[232472,960967],[1,20],[-159,88],[189,76]],[[263566,892762],[477,-1105]],[[264043,891657],[309,29],[299,28]],[[264651,891714],[177,419]],[[264828,892133],[242,576],[294,72],[84,-89],[527,-555],[158,-446]],[[266133,891691],[485,-346],[601,-428]],[[267219,890917],[906,-290]],[[268125,890627],[401,-128],[678,-986]],[[269204,889513],[842,-637]],[[270046,888876],[977,-354],[33,10],[185,52],[1375,-1191],[56,-49],[312,-533],[-51,-813]],[[272933,885998],[-349,-1498],[-384,-444],[54,-150],[1863,548]],[[274117,884454],[1017,300],[508,-548]],[[275642,884206],[683,-737],[922,-718],[-7,-24],[-97,-339],[-759,-172]],[[276384,882216],[-796,-756]],[[275588,881460],[-419,-585],[-598,137]],[[274571,881012],[-601,138],[-1324,615],[-591,110],[-667,124],[-14,137],[-102,1030]],[[271272,883166],[-78,213],[-21,56],[-126,130]],[[271047,883565],[-186,101],[-247,133],[-454,51],[-306,35],[-315,252]],[[269539,884137],[-243,194],[-109,474],[-60,260]],[[269127,885065],[-580,-237],[-606,-247]],[[267941,884581],[-244,-378]],[[267697,884203],[-135,-1571],[-581,-355],[-771,-472]],[[266210,881805],[-1154,-1837],[-1167,-865],[-895,-313],[-397,26],[-141,10],[-294,419],[-113,1203],[180,1255]],[[262229,881703],[-130,512],[-89,147],[-132,220],[-546,-194]],[[261332,882388],[-2797,-995],[-673,172],[-115,242],[15,563],[513,729]],[[258275,883099],[227,322],[2120,1154],[-17,344],[-7,121]],[[260598,885040],[-244,284],[-212,592],[-30,392],[-93,1242],[731,1917]],[[260750,889467],[-13,1005],[68,1170],[72,1253],[98,496]],[[260975,893391],[164,834],[107,180],[777,753]],[[262023,895158],[211,206],[330,34],[185,-376],[84,-172]],[[262833,894850],[401,-45],[131,-15],[116,-249],[64,-198],[121,-369],[-100,-1212]],[[198822,955402],[31,-57],[17,-30]],[[198870,955315],[1130,15]],[[200000,955330],[600,8],[572,-392],[-131,-290],[-156,-346],[1721,-65],[253,-673]],[[202859,953572],[65,-27],[134,-55]],[[203058,953490],[104,3],[84,3],[6,12],[135,244]],[[203387,953752],[-56,87],[-150,230],[-39,532],[19,56],[46,140],[472,403],[124,106],[1408,-75],[38,-2],[1650,-758],[147,-214],[128,-187],[181,-1008],[-1179,-2235],[-567,-1359],[-2621,-837],[-771,-99],[-1254,433]],[[200963,948965],[-2065,-398],[-1208,608],[-278,140]],[[197412,949315],[-805,-543],[-465,-313],[-585,-227],[-1629,-175],[-551,-59]],[[193377,947998],[-581,-403],[27,-220],[8,-62],[-1421,-604],[-1573,-558],[-396,-140],[-2472,-474],[-562,14],[-1135,30],[-477,105]],[[184795,945686],[-602,132],[-926,509]],[[183267,946327],[-613,337],[-173,134],[-234,180],[-22,74],[-59,201],[933,527],[2050,698],[1405,479],[1287,109]],[[187841,949066],[842,71],[547,-57]],[[189230,949080],[573,-60],[1098,611],[949,772],[-189,187],[-499,48]],[[191162,950638],[-327,-405],[-389,-164],[-364,-155],[-3066,142],[-1011,-437],[-1083,-102],[-1322,-124],[-95,159],[40,298],[51,375],[284,729],[337,271],[289,233],[-1109,374]],[[183397,951832],[-878,-1324],[30,-461],[-327,-484],[-1774,-711],[-72,38],[-312,165],[-291,813]],[[179773,949868],[-288,3],[-486,5],[-43,-64],[-56,-81]],[[178900,949731],[200,-403],[26,-52],[-19,-129],[-476,-251],[-1562,572],[98,78]],[[177167,949546],[-65,258],[-29,114],[-227,382],[-561,-100]],[[176285,950200],[-296,-329],[-708,39],[-1485,285],[-246,138]],[[173550,950333],[-406,226],[58,253],[334,447],[730,606],[2851,65],[2618,825]],[[179735,952755],[86,63]],[[179821,952818],[495,368]],[[180316,953186],[-3575,-773],[-2354,101],[53,152],[126,361],[184,197],[437,470],[313,121],[5054,349]],[[180554,954164],[113,267]],[[180667,954431],[-3267,-197],[-1658,180],[83,477],[69,391],[94,209],[90,198],[372,154],[739,305],[1620,-68],[2748,-116]],[[181557,955964],[63,44]],[[181620,956008],[-1211,160],[-2098,279],[-279,256],[65,345],[1099,641],[1091,143]],[[180287,957832],[1099,143],[1129,-179],[432,-68],[64,-71],[154,-171],[-95,-370],[-84,-323]],[[182986,956793],[313,-513],[87,-143],[329,20],[481,30]],[[184196,956187],[1335,391],[341,-4],[181,-2],[1327,-420],[752,-569],[831,-628],[55,-618]],[[189018,954337],[-573,-203],[-197,-236],[-4,-4]],[[188244,953894],[1801,128],[251,-89],[87,-31],[384,-696],[-63,-204],[-69,-221]],[[190635,952781],[156,-440],[277,-164],[63,-38],[1126,165]],[[192257,952304],[808,118],[4018,-444]],[[197083,951978],[291,302]],[[197374,952280],[389,404],[-297,497],[-701,382]],[[196765,953563],[-2042,533],[-316,194],[-95,58],[395,148],[1311,490]],[[196018,954986],[277,355],[191,246],[-361,202],[-628,351]],[[195497,956140],[-788,257]],[[194709,956397],[-1259,412],[1,398],[1,326],[373,38],[389,41]],[[194214,957612],[878,328]],[[195092,957940],[764,1154],[670,337]],[[196526,959431],[756,381],[517,85],[495,-169],[215,-247],[-21,-550]],[[198488,958931],[-23,-579],[107,-733],[865,-568],[246,-311],[86,-390],[-358,-180]],[[199411,956170],[-369,-186],[-220,-582]],[[239900,986482],[156,49]],[[240056,986531],[594,186],[2903,-638]],[[243553,986079],[1450,-595],[898,-1271],[542,-572]],[[246443,983641],[427,-452]],[[246870,983189],[942,-321],[234,-737]],[[248046,982131],[1366,-223],[1085,-178],[1248,85],[847,-328],[69,-65],[144,-135],[-583,-915],[53,-160],[208,-248]],[[252483,979964],[110,-131],[1074,-490],[553,-132],[282,-68]],[[254502,979143],[540,147]],[[255042,979290],[-218,160],[-1008,741],[74,415]],[[253890,980606],[58,326]],[[253948,980932],[679,288],[2030,-206],[72,-342],[70,-333],[5,-199],[11,-449],[-1301,-283]],[[255514,979408],[1321,-326],[981,-546]],[[257816,978536],[691,-384],[-552,-1593],[-174,-104],[-260,-156]],[[257521,976299],[123,-442]],[[257644,975857],[147,65]],[[257791,975922],[1599,712],[781,-84],[73,-8],[154,-87],[630,-353],[-16,-356],[-170,-251]],[[260842,975495],[-96,-7],[-115,-8],[162,-183],[34,3],[244,20],[416,497]],[[261487,975817],[952,249],[927,-793],[524,-449],[155,-241],[174,-271],[-38,-13],[-1556,-568],[-1313,-282]],[[261312,973449],[-773,-166],[-360,-228]],[[260179,973055],[-669,-425],[-658,130]],[[258852,972760],[-227,45],[-726,-1028]],[[257899,971777],[-288,-296],[-751,-770],[-272,-113],[-613,333],[-141,77],[-266,438],[15,207],[54,739],[55,103],[274,516]],[[255966,973011],[-766,-308],[-133,-54],[-183,-813]],[[254884,971836],[70,-1079],[610,-104],[370,-390],[-33,-145],[-4,-16],[-115,-129],[-277,-311],[-485,-184],[-379,288],[-432,328],[-567,-394]],[[253642,969700],[297,-779],[-469,-1028],[-126,-133],[-53,-56],[-901,309],[-1193,1239]],[[251197,969252],[-1142,1186]],[[250055,970438],[-249,-137]],[[249806,970301],[-133,-73],[66,-184],[138,-388],[435,-350]],[[250312,969306],[366,-294],[832,-1299],[-226,-31],[-115,-16],[-1008,752]],[[250161,968418],[-219,163],[-662,202],[-1100,-54],[-294,-14],[540,-252]],[[248426,968463],[353,-17],[371,-18],[54,-310],[37,-214],[-64,-85],[-137,-180],[-1355,-3],[-349,-1],[-754,100],[-904,121],[-1329,397],[-1268,379],[-372,202],[-848,460],[-112,242],[-29,63],[2301,273]],[[244021,969872],[556,308]],[[244577,970180],[-3729,64],[-1470,1130],[356,43],[296,36],[654,-155]],[[240684,971298],[593,-140],[210,12],[142,8],[-3,74],[-3,53],[-499,148]],[[241124,971453],[-749,223]],[[240375,971676],[-909,37],[-1421,908],[1128,448],[1179,468],[4693,174]],[[245045,973711],[4026,433],[-386,5],[-1657,24],[-1026,-82],[-2053,-164],[-599,96],[-311,73]],[[243039,974096],[-469,109],[228,153],[255,171],[691,-21],[559,-17]],[[244303,974491],[1507,163],[815,88],[279,249]],[[246904,974991],[-1069,-105],[-1633,-160],[-1126,156],[27,116],[16,68],[-368,124],[-278,94],[-2196,-496],[-588,-362],[-428,-108],[-346,-87],[-77,25],[-439,144],[45,207],[26,122],[296,248],[-807,231]],[[237959,975208],[-510,-20],[53,-128],[35,-85]],[[237537,974975],[-698,-348],[-677,-337],[-310,59],[-284,55],[-122,217],[-35,62],[-678,309]],[[234733,974992],[-649,138],[-40,8],[3,219],[2,198],[22,64],[93,280],[205,76],[2450,314]],[[236819,976289],[1113,363],[143,174],[-65,385],[-557,-132]],[[237453,977079],[-835,-469],[-1458,-112],[-568,-43],[-989,111],[-723,524],[-306,391]],[[232574,977481],[-1299,1665],[204,297],[26,38],[456,-14],[411,-12],[940,-302],[735,-236]],[[234047,978917],[590,-41],[1127,-79],[967,73]],[[236731,978870],[49,212],[11,4],[1468,530]],[[238259,979616],[418,3]],[[238677,979619],[-1065,281]],[[237612,979900],[-16,-7]],[[237596,979893],[-738,-317],[-1009,-154],[-656,-100],[-2894,879],[-560,396],[-131,93],[342,47],[949,130],[322,-25]],[[233221,980842],[1296,-102]],[[234517,980740],[6,216]],[[234523,980956],[-884,415],[-13,41]],[[233626,981412],[-60,186],[35,281],[4,3],[216,169],[894,41],[1278,58]],[[235993,982150],[1977,-267]],[[237970,981883],[1148,-154]],[[239118,981729],[-501,269],[-321,172],[-328,582]],[[237968,982752],[-287,158]],[[237681,982910],[-1554,248],[-643,680]],[[235484,983838],[-613,8]],[[234871,983846],[-9,113],[74,66],[539,475]],[[235475,984500],[974,371],[944,-125],[100,-60]],[[237493,984686],[58,-35],[27,-147],[195,-91],[192,-89],[551,194],[388,136]],[[238904,984654],[-477,511],[2121,-247]],[[240548,984918],[337,65],[355,67],[136,173],[156,198],[-9,46],[-36,179],[-441,150]],[[241046,985796],[-1269,-50],[-654,-25],[-158,16],[-570,59],[-535,324],[330,440],[285,93],[30,10],[703,-91]],[[239208,986572],[692,-90]],[[222816,942500],[238,-231],[100,-47],[1445,-674]],[[224599,941548],[2222,507],[1907,436]],[[228728,942491],[781,-119],[520,-79],[694,-650],[26,-106],[46,-193],[-87,-342],[-275,-175],[-295,-187],[-1524,-189]],[[228614,940451],[29,-85],[83,-240]],[[228726,940126],[835,-21],[272,-6],[331,-579],[-10,-173],[-826,-138],[-644,-106]],[[228684,939103],[-2132,-1866]],[[226552,937237],[31,-175],[50,-282]],[[226633,936780],[859,542],[661,142],[107,23],[1522,-430],[194,-205],[263,-716],[73,-200],[18,-473],[-132,-119],[-134,-121]],[[230064,935223],[45,-359],[1101,598]],[[231210,935462],[521,283],[857,-1937],[-794,-849],[-105,-1460],[303,-430],[-678,-858],[-90,118]],[[231224,930329],[-355,-92]],[[230869,930237],[-356,-416],[-171,-199],[-466,-214]],[[229876,929408],[-626,-288],[-1659,162],[-130,13],[-14,37]],[[227447,929332],[-414,1090],[61,120],[108,214],[-151,72],[-387,-523],[-160,-215],[-80,-332]],[[226424,929758],[747,-717],[466,-447],[-162,-321],[-519,-469]],[[226956,927804],[-523,-473],[-662,-123],[-122,40],[-106,36],[-278,365]],[[225265,927649],[-127,165],[-40,-8],[-159,-34],[-867,636]],[[224072,928408],[-716,1095]],[[223356,929503],[-654,1002],[-1795,1375],[-112,123],[-429,473]],[[220366,932476],[-2406,714]],[[217960,933190],[-975,289],[-155,157],[-1110,1129]],[[215720,934765],[-906,656],[-191,452],[66,338],[88,160],[582,1071],[492,241],[188,91],[492,-48],[830,-443],[1454,-1744]],[[218815,935539],[37,-5],[992,-126],[377,105],[1008,280],[133,220],[29,49],[-71,431],[-5,31],[805,48],[-283,978],[-258,332],[-81,104]],[[221498,937986],[-266,6],[-189,-296],[-206,19],[-16,33],[-119,246],[40,321]],[[220742,938315],[354,508],[184,34],[231,42],[-467,243],[-290,-126],[-315,-137],[-723,-56],[-1973,1339],[1207,683],[898,-118],[508,-662]],[[220356,940065],[376,-151],[95,-38],[60,36],[-188,836]],[[220699,940748],[-974,234],[-523,529],[221,454],[160,97],[904,195],[396,-32]],[[220883,942225],[955,-78],[-327,57],[-93,191],[129,274],[418,132],[668,-60],[218,-19],[-30,-38],[-40,-50],[21,-79],[14,-55]],[[146075,805648],[169,-338]],[[146244,805310],[1051,-652],[462,-201],[488,-213],[1866,-592]],[[150111,803652],[519,-116],[365,-82],[90,-121]],[[151085,803333],[641,-862]],[[151726,802471],[817,-2148]],[[152543,800323],[791,-2082],[630,-593],[501,-199]],[[154465,797449],[535,-213],[677,-688],[535,-1077],[779,-2225],[17,-49],[215,77]],[[157223,793274],[232,-860],[-195,-419]],[[157260,791995],[-389,-343]],[[156871,791652],[-345,-306],[-1000,581]],[[155526,791927],[-2051,1190],[-1159,1008],[-9,183],[262,372],[559,793],[-703,-24]],[[152425,795449],[-661,-23]],[[151764,795426],[-380,-488],[-862,872],[-64,282],[24,-3],[244,-34]],[[150726,796055],[371,647]],[[151097,796702],[-625,191],[-246,75]],[[150226,796968],[-23,38]],[[150203,797006],[-189,318],[-57,549]],[[149957,797873],[-24,230]],[[149933,798103],[-1414,-476],[-57,117],[-59,122],[15,225],[53,778],[285,310],[401,11],[241,54],[263,59]],[[149661,799303],[-660,224]],[[149001,799527],[-378,128],[-507,864],[-353,295]],[[147763,800814],[-368,-88],[-80,-146],[-83,-151],[-442,43],[-144,370],[-105,267],[124,164]],[[146665,801273],[133,176],[38,236],[38,241]],[[146874,801926],[-1610,173],[-774,1289],[93,390],[27,112],[701,212]],[[145311,804102],[292,89],[133,405],[-94,96],[-120,124],[-844,194]],[[144678,805010],[403,-178]],[[145081,804832],[583,-257],[-1152,-505],[-342,68],[-304,309],[-247,593],[-260,620],[206,403],[526,295],[194,109],[504,-28],[787,-441],[106,-59],[40,-30],[353,-261]],[[248395,941103],[-103,-97],[-600,-565],[-948,-1268],[-323,-431],[-768,-1220],[-651,-1032],[-246,-247],[-463,-466],[-708,-268],[-2211,448]],[[241374,935957],[-3287,-70]],[[238087,935887],[-23,-93],[-42,-167],[66,-80],[738,-24]],[[238826,935523],[525,-16],[917,-948],[107,-369],[61,-211],[-367,-465],[-32,-41],[-671,-434]],[[239366,933039],[-244,-373],[-246,-376],[-65,-468],[-30,-209],[-274,-35]],[[238507,931578],[-2882,-375],[-40,211],[-3,14],[42,155]],[[235624,931583],[79,285],[20,2155],[-266,527],[-159,316]],[[235298,934866],[-613,812],[-222,216],[-183,178],[224,4824]],[[234504,940896],[-123,82],[-56,37]],[[234325,941015],[-16,218],[-21,288],[357,188],[230,121],[442,1],[8,0],[76,-62],[616,-504]],[[236017,941265],[581,-184],[609,26],[24,94]],[[237231,941201],[-950,333],[-599,560],[-362,339],[-130,269],[24,144],[32,192],[371,132],[1447,512]],[[237064,943682],[787,124]],[[237851,943806],[2504,395],[1218,-190]],[[241573,944011],[1160,-181],[901,-457],[3395,-152],[2116,-516],[21,-152],[48,-348],[-121,-163],[-698,-939]],[[226530,958451],[2188,-605],[139,-1558]],[[228857,956288],[80,-896],[-36,-214],[-83,-497],[57,-230],[302,-1226],[17,-715]],[[229194,952510],[14,-552],[-721,391],[-288,-147],[-135,-69],[-163,-622],[-203,-780],[237,-27]],[[227935,950704],[250,-29],[834,-764],[-1486,-670],[-20,-3],[-1072,-171],[-1009,39],[-222,8],[-1714,-208],[-1538,88],[-750,248],[-325,737],[-85,191],[415,136]],[[221213,950306],[311,102]],[[221524,950408],[-34,214],[-8,54]],[[221482,950676],[-604,111],[-165,303]],[[220713,951090],[-90,165],[447,427]],[[221070,951682],[1063,347]],[[222133,952029],[900,530],[-52,223]],[[222981,952782],[-51,223],[-639,52],[-4429,-605],[-2645,-362],[-340,52],[-54,57],[-509,541],[555,293],[338,178],[555,459],[-84,209],[50,56],[78,87],[470,237],[746,121],[218,-99],[724,-327],[324,-395]],[[218288,953559],[45,-5],[462,-62]],[[218795,953492],[-313,600]],[[218482,954092],[-271,243]],[[218211,954335],[-555,498],[-1192,1450],[-146,177],[301,904],[421,255],[473,-52]],[[217513,957567],[1041,-114],[654,-447],[245,-393],[152,-245],[1469,-962],[866,-869]],[[221940,954537],[655,-139],[778,258]],[[223373,954656],[-597,29],[-270,13],[-387,434],[-549,613],[495,160],[-929,1267],[-516,13],[-374,10],[-493,460],[-255,238],[1542,732],[481,86],[255,45],[1477,-275]],[[223253,958481],[384,-72],[622,-439],[124,-413]],[[224383,957557],[244,-215],[575,376]],[[225202,957718],[565,875]],[[225767,958593],[374,205]],[[226141,958798],[-756,138],[1054,80],[273,-126],[238,-327],[-92,-25]],[[226858,958538],[-328,-87]],[[179443,962726],[-517,-272],[-1653,-404]],[[177273,962050],[-568,-340],[432,-537],[93,-34],[270,-103]],[[177500,961036],[459,-745],[67,-608],[69,-625],[-270,-235],[-233,-201],[-295,-86],[-294,-85],[-1355,-185]],[[175648,958266],[-710,-97],[-2,-89],[-4,-165]],[[174932,957915],[264,-537],[64,-133],[-14,-61],[-39,-162],[-412,-281],[-237,-84],[-417,-148],[-568,67],[-441,259]],[[173132,956835],[-928,542],[88,558]],[[172292,957935],[251,746],[148,439]],[[172691,959120],[-23,140],[-92,541]],[[172576,959801],[-66,-17],[-885,-217]],[[171625,959567],[-168,-420],[-132,-327],[-965,-614]],[[170360,958206],[-222,-141],[-377,46],[-176,-185]],[[169585,957926],[833,-281],[346,-684],[-1232,-1238],[-665,-99],[-231,178],[-499,1127]],[[168137,956929],[-340,-70]],[[167797,956859],[-186,-380]],[[167611,956479],[343,-1689],[-261,-256],[-241,-237],[-591,-210],[-921,-200],[-785,1004],[-316,1057]],[[164839,955948],[-462,108]],[[164377,956056],[-81,-8]],[[164296,956048],[-268,-26],[-106,-157],[-97,-347],[-19,-68],[41,-272]],[[163847,955178],[54,-365],[-897,-45],[-297,-15],[-208,182]],[[162499,954935],[-256,90],[-546,191],[-17,6],[-29,10],[-692,-61]],[[160959,955171],[-697,-705],[22,-240],[-106,-62],[-83,27],[-851,273],[48,227],[34,164],[195,317]],[[159521,955172],[97,761]],[[159618,955933],[-280,90]],[[159338,956023],[-928,-368],[990,1336],[211,105],[559,281],[2523,457]],[[162693,957834],[991,1152],[1238,588],[736,348]],[[165658,959922],[50,146],[56,161]],[[165764,960229],[3483,2591],[826,190],[2032,97]],[[172105,963107],[214,-15]],[[172319,963092],[594,-41],[909,-283],[541,-168]],[[174363,962600],[218,34],[470,75],[135,151]],[[175186,962860],[276,310],[2,187]],[[175464,963357],[3,395]],[[175467,963752],[189,286],[1249,33],[2369,-1059],[169,-286]],[[229278,917527],[210,-440]],[[229488,917087],[177,310],[481,-277]],[[230146,917120],[900,-518],[58,-7],[147,-18],[627,-453],[985,-713],[38,-158],[20,-85],[-120,-1256]],[[232801,913912],[112,-29],[154,-40],[20,45],[35,79],[-73,25],[-43,15],[-19,243],[-1,16]],[[232986,914266],[65,551],[76,106],[65,91],[60,-36],[94,-55],[218,-423],[10,-19],[14,-117],[17,-147],[-83,-290],[223,-535],[215,-514]],[[233960,912878],[367,-224]],[[234327,912654],[429,92]],[[234756,912746],[-30,-354]],[[234726,912392],[-34,-396],[-33,212]],[[234659,912208],[-30,16],[-120,61],[-519,-212]],[[233990,912073],[-795,-855],[-599,-643],[-798,-159],[-2634,624]],[[229164,911040],[-1983,1389],[-40,181],[-22,102],[-239,66],[-187,51],[-59,-211],[-539,178],[-638,210],[57,282],[-394,146],[-70,26]],[[225050,913460],[-231,-391],[50,-245],[-231,-11]],[[224638,912813],[-276,-13],[-254,149],[-316,185],[-323,616]],[[223469,913750],[227,618],[539,218],[354,-88],[966,213]],[[225555,914711],[182,143],[641,502]],[[226378,915356],[102,584]],[[226480,915940],[-135,332]],[[226345,916272],[-109,270],[-29,211],[-27,196],[98,207],[132,-6],[561,-294],[-103,321],[-33,103],[92,542],[214,423],[45,90],[269,111]],[[227455,918446],[94,158],[199,335],[207,28],[1516,-932],[63,-194],[-256,-314]],[[214060,974108],[615,-671]],[[214675,973437],[47,-254]],[[214722,973183],[138,-759]],[[214860,972424],[42,-134],[90,-289],[132,-82],[285,259],[200,182]],[[215609,972360],[290,518],[255,75],[990,290],[491,-77],[1129,-582],[231,-119]],[[218995,972465],[99,-950]],[[219094,971515],[347,-130],[1699,201]],[[221140,971586],[178,21],[679,-327],[298,-143],[46,-38],[885,-725],[-361,-911],[-80,-203],[127,-348],[120,-326],[2117,-1378],[-214,-1061],[-278,-168],[-74,-45],[-2361,-317]],[[222222,965617],[-696,57],[-908,455],[-521,479],[-191,528],[84,200]],[[219990,967336],[17,40],[-338,248],[-252,184]],[[219417,967808],[-2395,590]],[[217022,968398],[-361,88]],[[216661,968486],[-1350,-214],[-276,237]],[[215035,968509],[-566,485]],[[214469,968994],[-2202,-296],[-635,-166]],[[211632,968532],[-283,-291],[-620,73],[-879,103],[-953,577]],[[208897,968994],[-367,370],[-110,251]],[[208420,969615],[-87,199],[730,422],[1749,-230],[1663,-218]],[[212475,969788],[153,60],[168,289],[79,136],[-404,169],[57,326],[440,295],[89,60],[-387,316],[-10,8],[-1305,-126],[212,838]],[[211567,972159],[-778,448],[-663,-153],[-344,-215],[-107,-159],[-171,-251],[-555,-290],[-216,-22],[-306,-32],[-76,62],[-58,47],[704,732]],[[208997,972326],[252,335],[-7,81],[-9,97]],[[209233,972839],[-381,90],[-168,39],[-804,-122],[-611,-94],[-40,8],[-377,71],[-184,120],[-58,606],[85,183],[350,762],[4409,399],[2007,-439],[120,-27],[479,-327]],[[275493,941636],[407,69]],[[275900,941705],[498,85],[2916,-771]],[[279314,941019],[3647,185],[1404,-499],[1151,-411],[2513,-2938]],[[288029,937356],[718,-635],[-190,-354],[-468,-134],[-222,-64],[-1458,200]],[[286409,936369],[-2232,307],[-911,-29],[-605,-20]],[[282661,936627],[-989,-331],[-1504,-502],[-564,-82],[-360,80],[-357,79],[-665,355],[-449,240],[-409,1006],[17,282],[29,502]],[[277410,938256],[-194,219],[-181,204]],[[277035,938679],[-625,97],[-748,117],[-269,322],[-22,632],[202,1230]],[[275573,941077],[-51,358],[-29,201]],[[331091,778132],[-265,-191],[-643,-463]],[[330183,777478],[3,-228],[88,37]],[[330274,777287],[79,33],[369,410],[111,-504],[-52,-42],[-382,-310]],[[330399,776874],[-160,-380],[-108,-256],[-27,-278],[140,-42],[740,-224],[144,127],[127,111],[144,335]],[[331399,776267],[332,773],[-397,39],[-142,369],[1058,1238]],[[332250,778686],[189,221],[77,260],[-198,-96],[-122,-59]],[[332196,779012],[-532,-810],[-86,-44],[-97,-49],[649,1127],[200,346],[137,11],[73,6],[529,-358],[141,-96],[155,-196],[459,-578],[-102,-999]],[[333722,777372],[-214,-277],[-835,-1077],[-1178,-753],[-214,-42],[-224,162]],[[331057,775385],[-222,160],[-708,-206],[-67,-19]],[[330060,775320],[-292,-207],[-182,146],[-42,34],[-163,384],[-102,237],[-262,2005],[204,223],[125,-97]],[[329346,778045],[34,-31],[31,35],[34,39]],[[329445,778088],[1278,3808]],[[330723,781896],[528,1109],[352,737],[79,-3],[145,-5],[239,-104],[389,-852],[-15,-102],[-290,-1979],[-4,-975],[-1055,-1590]],[[289190,903250],[-1135,-90],[-1134,-90],[-837,197],[-579,1139],[-204,1690]],[[285301,906096],[239,776]],[[285540,906872],[633,1217],[571,685]],[[286744,908774],[433,519]],[[287177,909293],[1985,427],[2105,-625],[192,-228],[159,-189],[-17,-852],[-51,-2432],[-410,-1005],[-483,-343]],[[290657,904046],[-475,-338],[-992,-458]],[[328208,795789],[-573,-1],[-446,-2],[-2461,951],[-1060,804],[-215,369]],[[323453,797910],[-151,260]],[[323302,798170],[-1201,1375],[-560,252],[-771,668],[139,247],[18,33],[875,228],[806,-424]],[[322608,800549],[860,-185],[456,-99],[1236,-576],[508,-362]],[[325668,799327],[422,-301],[847,-840]],[[326937,798186],[506,-502],[276,-105]],[[327719,797579],[336,-126],[634,-1281],[-156,-268],[-325,-115]],[[240573,948497],[-155,-1145],[-120,-205],[-596,-182],[-2740,-44],[-111,33],[-513,153],[-577,478]],[[235761,947585],[-343,284]],[[235418,947869],[-353,-52],[-438,-64],[-1803,761],[-1216,513],[59,459],[490,786],[432,205],[811,757]],[[233400,951234],[475,651]],[[233875,951885],[218,300],[586,164],[1756,494],[600,-81],[77,-10],[954,-214],[1620,-1258],[171,-191],[477,-532],[104,-900],[135,-1160]],[[131606,823096],[353,-403],[129,-148]],[[132088,822545],[839,686]],[[132927,823231],[103,593],[225,1297]],[[133255,825121],[326,238],[665,487],[-88,-503]],[[134158,825343],[-617,-3491],[-746,-1544],[-49,-100],[180,-90],[48,-24],[-227,-187]],[[132747,819907],[-459,-49],[-157,21],[-166,22],[-739,1078],[91,125],[95,132],[462,-64],[60,-78]],[[131934,821094],[198,-257],[39,207]],[[132171,821044],[-197,265]],[[131974,821309],[-132,176]],[[131842,821485],[-641,368],[-973,1923],[-34,795],[129,829],[89,567],[66,12],[37,7],[579,-285]],[[131094,825701],[1388,-86],[367,-544],[209,-795]],[[133058,824276],[-41,-219]],[[133017,824057],[-305,-381],[-141,-74],[-965,-506]],[[272256,877827],[204,-357],[-142,-1037],[-2505,-2621],[-585,-448],[-205,-98],[-1057,112],[-562,60],[-486,1098],[904,2530],[510,558],[168,78],[132,62],[837,-395]],[[269469,877369],[48,-23]],[[269517,877346],[945,479],[928,164],[353,63],[203,-89]],[[271946,877963],[310,-136]],[[321948,782226],[584,-1366]],[[322532,780860],[94,-220],[367,-164]],[[322993,780476],[4827,-94],[-421,-491]],[[327399,779891],[-152,-177],[-134,-49]],[[327113,779665],[-363,-132]],[[326750,779533],[-340,-592],[-17,-46],[-141,-385]],[[326252,778510],[8,-88],[6,-60]],[[326266,778362],[92,-17],[20,-4],[70,-314],[52,-231],[-111,-251],[-907,-93],[-253,388],[-14,211],[-10,172]],[[325205,778223],[126,247],[-56,81]],[[325275,778551],[-541,288],[-317,-244],[-1072,317],[-1008,1121],[-414,1275]],[[321923,781308],[-791,-9],[-30,104],[-38,134],[20,378],[0,5],[500,1061],[558,775]],[[322142,783756],[51,-105],[38,-80]],[[322231,783571],[-2,-263]],[[322229,783308],[-2,-494],[-191,-404],[-88,-184]],[[232511,969900],[1045,-273]],[[233556,969627],[604,230],[405,-28]],[[234565,969829],[792,-314]],[[235357,969515],[1005,-397],[153,-162],[47,-51],[-771,-573],[-350,-259],[391,-262]],[[235832,967811],[576,-385],[-384,-586],[-229,-349],[-4358,-577]],[[231437,965914],[-204,-174],[-227,-193],[-727,87],[-947,1068],[301,449]],[[229633,967151],[68,102],[1137,17],[85,318]],[[230923,967588],[-2917,908]],[[228006,968496],[-1160,896],[-149,1878],[586,336],[9,6],[82,-2],[1414,-37],[1597,-461]],[[230385,971112],[962,-277]],[[231347,970835],[1335,-318],[-171,-617]],[[192074,965769],[227,-136],[395,-237]],[[192696,965396],[1312,131],[314,-87],[65,-182],[-80,-903],[-16,-180],[-378,-265],[-183,-129],[-1485,-409],[-3402,-554],[-1193,254],[-1398,671]],[[186252,963743],[-124,123],[-490,484]],[[185638,964350],[-282,1002],[-64,229],[54,376],[290,301]],[[185636,966258],[78,81],[6066,1009],[585,25],[2193,94],[259,-27],[661,-71],[192,-128],[3,-45],[8,-140],[-175,-294],[-120,-202],[-415,-162],[-1613,-227]],[[193358,966171],[-1379,-194]],[[191979,965977],[95,-208]],[[209647,939191],[-704,-952],[-1010,-1366],[-480,29]],[[207453,936902],[-359,22],[-1136,1134]],[[205958,938058],[-1053,1052],[-622,510]],[[204283,939620],[-1468,369],[83,170],[127,258]],[[203025,940417],[394,355]],[[203419,940772],[762,687],[2301,122]],[[206482,941581],[277,94]],[[206759,941675],[362,122],[422,-54]],[[207543,941743],[382,-48],[622,-325],[1094,-570],[237,-391],[-231,-1218]],[[278649,869942],[-470,-212],[-209,416],[-273,545]],[[277697,870691],[-237,297],[-142,24],[-146,25],[-106,388],[-51,187],[-4,334],[-3,219],[44,242],[118,649],[231,533],[438,694],[362,266]],[[278201,874549],[273,56],[398,81],[401,-230]],[[279273,874456],[259,-428]],[[279532,874028],[258,-427],[-240,-1083]],[[279550,872518],[-901,-2576]],[[275841,817167],[-42,-93],[-634,317],[-2789,1390],[-305,311],[370,702]],[[272441,819794],[248,233],[1324,284],[628,-159]],[[274641,820152],[845,-1137],[413,-1164],[10,-30],[-68,-654]],[[196550,969523],[-119,-577],[-350,-313],[-2338,-155],[-611,125]],[[193132,968603],[-1110,227]],[[192022,968830],[-1032,-237],[-388,-89],[-2159,501]],[[188443,969005],[-2514,-553],[-308,-68],[-374,400],[356,372],[580,277],[1648,496],[253,77],[61,5],[1067,89]],[[189212,970100],[2739,932]],[[191951,971032],[626,213],[119,2]],[[192696,971247],[704,13],[2864,-1205],[286,-532]],[[234831,965704],[124,-151],[16,-20],[64,-291]],[[235035,965242],[500,95],[439,83]],[[235974,965420],[3889,82],[1175,-292],[261,-285],[140,-153],[-1029,-978],[-325,-309],[-3555,256]],[[236530,963741],[-59,-2]],[[236471,963739],[-2667,-127],[-715,249],[-337,274],[-71,58],[-75,162],[-116,250],[132,311],[427,205]],[[233049,965121],[484,232],[859,232],[439,119]],[[133970,820148],[103,-156],[208,-316]],[[134281,819676],[79,-280],[53,-189],[-99,41]],[[134314,819248],[-437,185],[-514,-74],[-50,-54],[-16,-17],[105,-399]],[[133402,818889],[122,-469],[634,-1646]],[[134158,816774],[283,-517],[740,-1351]],[[135181,814906],[602,-284],[90,-43],[-6,-32],[-84,-450],[-312,-39],[-564,450],[-446,765],[-1398,2401]],[[133063,817674],[-690,913],[-42,57],[148,36],[654,158]],[[133133,818838],[-62,101],[-39,62]],[[133032,819001],[-325,75],[-518,118],[71,444]],[[132260,819638],[769,268]],[[133029,819906],[652,522],[171,-165]],[[133852,820263],[118,-115]],[[142969,819092],[28,-631],[-244,-1450]],[[142753,817011],[-46,-273],[-255,-23],[-9,-1],[-72,536]],[[142371,817250],[-35,267],[144,693]],[[142480,818210],[44,75],[97,167],[11,225],[5,120],[-23,74],[-2,5],[-69,-62],[-9,-9]],[[142534,818805],[-318,-1488],[-96,-191],[-53,-105],[-216,133],[-204,125],[-233,558],[-123,292],[14,162],[169,1926]],[[141474,820217],[284,-13]],[[141758,820204],[611,-27],[380,-325],[64,-221],[156,-539]],[[296197,906447],[-196,-177],[-2436,40],[-392,187],[-375,179],[-443,674],[-76,423],[162,373],[516,308],[527,315],[404,-248],[-104,-467]],[[293784,908054],[1683,-329]],[[295467,907725],[543,-107],[39,-61],[76,-119],[147,-703],[-57,-217],[-18,-71]],[[171600,952619],[-921,-595],[-954,224]],[[169725,952248],[-900,213],[33,724]],[[168858,953185],[1041,794],[784,599],[1022,512],[1114,557],[349,76],[478,-141],[137,-41],[-104,-234],[-195,-435],[-1041,-1245],[-843,-1008]],[[280308,838444],[-605,-1401],[-436,-1009],[-636,-238],[615,1569]],[[279246,837365],[-144,190]],[[279102,837555],[-126,-124],[-666,-1145],[-279,-481],[-126,321]],[[277905,836126],[138,396],[139,400],[642,1152],[288,516]],[[279112,838590],[-136,-1041]],[[278976,837549],[438,493]],[[279414,838042],[279,1480],[234,506]],[[279927,840028],[180,-269],[158,-236]],[[280265,839523],[433,-198],[13,-193],[3,-59],[-93,-144]],[[280621,838929],[-313,-485]],[[250146,962186],[-373,-35]],[[249773,962151],[-864,-82],[-2289,1129],[22,457],[14,292],[128,319]],[[246784,964266],[95,235],[932,207]],[[247811,964708],[1008,-65],[1178,-548],[538,-251],[256,-307],[109,-312],[92,-261],[-10,-124],[-10,-126],[-618,-395],[-208,-133]],[[283740,878708],[-82,-3],[-184,-6],[-763,847]],[[282711,879546],[-788,875],[-91,259],[566,149]],[[282398,880829],[498,131],[1003,-283]],[[283899,880677],[414,-117],[152,-296],[246,-481],[-45,-306],[-29,-193],[-773,-497],[-124,-79]],[[209812,961715],[-777,-157],[-101,-20],[-1085,356],[-236,78],[-627,665],[-150,282]],[[206836,962919],[-296,562]],[[206540,963481],[-1227,1706],[213,95],[257,114],[686,-83],[662,-362]],[[207131,964951],[653,-357],[430,-473],[385,-824]],[[208599,963297],[509,-158],[174,-54],[43,-31]],[[209325,963054],[717,-528],[84,-321],[28,-106],[-162,-182],[-180,-202]],[[214832,955663],[-1893,-466],[-2126,83],[-583,174]],[[210230,955454],[-204,61],[-251,368],[788,407],[1634,285],[1474,257],[1008,18],[141,-75],[107,-57],[345,-482],[-237,-438]],[[215035,955798],[-161,-107],[-42,-28]],[[259941,906490],[-451,-379],[-246,120]],[[259244,906231],[-287,140],[-283,370]],[[258674,906741],[-53,329]],[[258621,907070],[-39,244],[65,262],[90,369]],[[258737,907945],[-183,455],[412,607]],[[258966,909007],[322,474],[521,-270],[178,-244],[45,-60],[10,-108],[129,-1322],[-47,-339],[-37,-271],[-68,-176],[-78,-201]],[[211004,949341],[-378,-32]],[[210626,949309],[-572,-48],[-799,283]],[[209255,949544],[-583,207],[200,442]],[[208872,950193],[309,685],[364,364],[237,236]],[[209782,951478],[690,159],[1127,-409],[718,-1221],[-660,-499],[-126,-95],[-167,-23],[-360,-49]],[[280877,913069],[-383,-156],[-591,-240],[-247,138]],[[279656,912811],[-171,96],[0,14],[-5,288]],[[279480,913209],[467,931],[664,108]],[[280611,914248],[861,1090]],[[281472,915338],[-9,64]],[[281463,915402],[-36,265],[534,277],[137,-36],[155,-41]],[[282253,915867],[195,-37]],[[282448,915830],[131,-26],[77,-192],[44,-113],[-30,-190],[-1793,-2240]],[[212907,956950],[-848,-156],[-1373,58],[-609,134],[-4,678]],[[210073,957664],[-74,31]],[[209999,957695],[-351,143],[-53,67],[-303,381],[23,218],[352,166]],[[209667,958670],[464,218],[693,68],[3125,-1373],[-219,-292],[-823,-341]],[[268649,893782],[-293,-63]],[[268356,893719],[-207,83],[-185,74],[-280,33],[-486,283],[-349,203],[-406,490]],[[266443,894885],[-69,281],[-137,553]],[[266237,895719],[-319,80],[-281,70],[-109,354]],[[265528,896223],[-115,368],[212,139],[166,-98],[199,-117],[330,-124],[292,-108],[937,-780],[54,-86],[52,-82],[-122,-397],[1432,-773],[-316,-383]],[[226711,942259],[-1024,-98],[-923,-88],[-359,156],[-449,195],[-130,200],[2081,753],[1734,400]],[[227641,943777],[992,79],[140,-132],[28,-26],[-1,-224],[-39,-45],[-275,-325],[-734,-481],[-119,-78],[-210,-65],[-712,-221]],[[320334,868948],[-330,-569],[-158,133]],[[319846,868512],[-159,133]],[[319687,868645],[-1061,740],[-408,289],[-76,261],[125,144]],[[318267,870079],[91,103]],[[318358,870182],[1086,201],[339,-99]],[[319783,870284],[399,-115],[148,-285],[109,-212],[-66,-455],[-39,-269]],[[222816,979499],[86,0],[541,1],[253,-200]],[[223696,979300],[49,-38],[310,43]],[[224055,979305],[753,107],[504,-260],[11,-6],[199,-251],[207,-259],[81,-361],[203,-903],[-170,-336],[-11,-22],[-481,-225],[-749,296],[-461,474]],[[224141,977559],[-1037,435]],[[223104,977994],[-999,-101],[-327,119],[15,346],[15,324],[25,39],[262,403]],[[222095,979124],[721,375]],[[278712,918459],[580,-58],[355,-586],[-670,-493],[-35,-13],[-1059,-406],[-1098,355]],[[276785,917258],[-1008,325]],[[275777,917583],[263,252]],[[276040,917835],[552,531],[338,6],[405,8],[162,-370],[509,-6]],[[278006,918004],[341,82]],[[278347,918086],[228,233],[137,140]],[[311227,862255],[-602,-388],[-415,-268],[-247,62],[-24,121],[-38,190],[210,739],[311,1091],[451,121],[646,-574],[34,-30],[29,-254]],[[311582,863065],[-163,-372]],[[311419,862693],[-192,-438]],[[139567,820243],[-120,-233],[-8,-16],[-398,183]],[[139041,820177],[-117,54],[-841,1408]],[[138083,821639],[-245,410],[-151,34]],[[137687,822083],[-157,35],[-160,325],[56,308],[91,15],[110,18],[711,-606]],[[138338,822178],[597,-510],[500,-944],[98,-359]],[[139533,820365],[34,-122]],[[145181,812925],[-311,-119],[-135,-52],[-21,461],[117,764],[207,420],[98,198],[292,110],[446,440],[582,574],[122,-95],[2,-2],[87,-383],[-267,-510]],[[146400,814731],[-394,-172],[-273,-307],[-241,-271],[-311,-1056]],[[285413,882170],[261,2],[332,-16],[684,-420],[201,-250],[280,-348],[-110,-133]],[[287061,881005],[-131,-160],[8,-1]],[[286938,880844],[403,-45],[-266,-291],[-194,-213],[-332,105],[-341,108],[-1321,1386],[228,274],[12,0],[282,2],[2,-4],[1,2],[1,2]],[[304545,876500],[536,-865],[-548,-315],[-981,187],[-59,173],[-189,552]],[[303304,876232],[119,561],[-241,104],[-587,255],[-79,235]],[[302516,877387],[-29,88],[1690,-670],[209,-173],[159,-132]],[[183714,965197],[-1153,-143],[-1306,736]],[[181255,965790],[-928,777],[1732,555]],[[182059,967122],[446,-101],[992,-618],[1111,-693],[-894,-513]],[[265130,893653],[-478,-462],[-128,134],[-123,129]],[[264401,893454],[-60,223],[-63,232]],[[264278,893909],[-648,473],[-143,1503]],[[263487,895885],[318,184],[525,-501],[89,-180],[358,-722],[229,-656],[124,-357]],[[286307,914501],[-504,-136],[-419,137],[-173,393]],[[285211,914895],[-110,248],[13,243]],[[285114,915386],[36,650],[302,120],[340,134],[438,-73],[733,-122],[-60,-223]],[[286903,915872],[-161,-595],[-435,-776]],[[291718,911618],[19,-41],[397,-828],[18,-501],[18,-525],[-499,37],[-160,144],[-979,882],[65,674],[141,243],[159,273],[224,-76],[401,-138],[99,-73],[97,-71]],[[219003,965782],[718,-565],[-3244,-308],[-569,309]],[[215908,965218],[-676,369],[25,165],[22,147],[302,218],[1795,106],[1001,-206],[270,-102],[356,-133]],[[250458,957851],[-189,-32],[-272,-48],[-264,136],[-296,152],[-825,978],[-289,343],[201,181]],[[248524,959561],[158,144],[1125,245],[414,-87]],[[250221,959863],[345,-253],[156,-115],[92,-267]],[[250814,959228],[41,-121],[-234,-1009]],[[250621,958098],[-163,-247]],[[234461,917237],[523,-438],[232,-193],[-242,-674],[-9,-12],[-231,-295],[-529,-22]],[[234205,915603],[-3,141],[-3,168]],[[234199,915912],[-233,340],[-33,-96],[-137,-396],[-343,90]],[[233453,915850],[96,709]],[[233549,916559],[78,578],[117,98],[187,155],[310,-89],[220,-64]],[[184452,959173],[-135,-14],[-142,-16],[-3186,388],[10,20],[130,250],[544,265],[1590,202],[175,-8],[637,-30],[416,-198],[364,-174],[19,-301],[-148,-135],[-274,-249]],[[215050,953623],[-1731,-148],[-457,137],[1202,863]],[[214064,954475],[2252,492],[466,-309],[-225,-115],[-148,-76],[-1359,-844]],[[148300,798940],[-73,-44],[-101,-60],[-100,55],[-152,85],[-403,562],[-190,266],[252,209]],[[147533,800013],[110,92],[-40,109],[-67,183]],[[147536,800397],[214,184],[261,-74],[53,-23],[64,-28],[68,-593],[104,-923]],[[768976,433938],[48,-122],[29,-75],[1,-4],[2,-10],[0,-5],[1,-3],[-4,-4],[-4,-4],[-15,-18],[-10,-9],[-12,-10],[-1,-1],[-3,-2],[-5,-4],[-2,-1],[-3,-2],[-1,-1],[-4,3],[-7,5],[-2,1],[-4,3],[-3,4],[-5,5],[-1,2],[-11,38],[-16,58],[-6,22],[-1,101],[-2,92],[14,6],[7,2],[3,-9],[17,-58]],[[769236,433755],[-2,-6],[-5,-12],[-4,-12],[-5,-10],[-2,-3],[0,-2],[-3,-5],[-6,-7],[-36,-38],[-11,-6],[-2,0],[-5,-3],[-4,2],[-5,2],[-4,2],[-4,2],[-4,9],[-5,8],[-1,3],[-4,24],[1,4],[0,10],[0,4],[0,4],[63,131],[32,67],[1,1],[1,1],[2,2],[5,-8],[5,-9],[0,-1],[1,-2],[2,-8],[1,-5],[1,-3],[3,-17],[3,-20],[1,-11],[1,-3],[0,-8],[0,-2],[1,-3],[0,-19],[-12,-53]],[[310172,180749],[67,-183],[-16,-86],[-31,-163],[-686,-464],[-40,-27],[-429,102],[-728,653],[-26,-128],[-16,-76],[589,-584],[70,-35],[210,-30],[568,-80],[200,-206],[401,-413],[-33,-88],[-91,-251],[375,-597],[279,-444],[98,-116],[263,-313],[-59,-438],[-161,-276],[-176,92],[-313,979],[-304,307],[-613,94],[-525,81],[-38,-183],[-8,-35],[-211,391],[-135,248],[84,587],[59,415],[-628,119],[-466,89],[-225,-121],[-406,-218],[427,-907],[203,-433],[-8,-8],[-170,-165],[-915,939],[-146,373],[8,52],[22,146],[-493,181],[-30,11],[-3,66],[-6,109],[382,493],[170,219],[2879,700],[493,-10],[288,-368]],[[313780,179917],[-482,-977],[-566,45],[-29,55],[-76,146],[-818,191],[-552,129],[-161,-100],[-95,-59],[-80,27],[-154,53],[-95,199],[-144,1003],[-80,566],[488,119],[411,-36],[1894,-165],[179,-222],[49,-61],[147,-327],[133,-297],[31,-289]],[[307955,180933],[-1958,-472],[-150,27],[-120,388],[-9,30],[41,477],[698,179],[1292,-424],[177,-175],[29,-30]],[[302104,186242],[46,-314],[37,-253],[367,588],[165,-83],[28,-15],[10,-16],[63,-105],[38,-507],[18,-241],[-30,-205],[-18,-132],[-211,-392],[-58,-42],[-204,-148],[-164,136],[-321,265],[-167,368],[-145,321],[-423,592],[-51,143],[-5,14],[-66,455],[80,232],[141,35],[870,-696]],[[300252,187518],[720,-675],[-26,-95],[-183,-675],[-480,451],[-6,-6],[-102,-103],[362,-850],[201,-472],[-357,-452],[-145,39],[-132,35],[259,581],[-686,536],[-294,589],[-99,484],[71,243],[442,-300],[280,412],[175,258]],[[304260,189167],[228,-1774],[69,-539],[-445,67],[-319,48],[257,-1358],[76,-402],[-907,734],[-42,388],[-50,464],[494,764],[463,1660],[22,3],[85,14],[60,-60],[9,-9]],[[297398,189323],[181,-648],[1069,-154],[21,-337],[163,154],[29,27],[603,-837],[-363,-607],[-354,-590],[-826,-283],[-868,154],[259,140],[327,177],[23,67],[223,644],[-20,47],[-99,235],[-669,277],[-168,-744],[120,-187],[88,-138],[-63,-184],[-142,-106],[-502,287],[-2,506],[-1,490],[62,301],[73,356],[-599,-92],[-292,-45],[43,419],[40,386],[206,146],[457,-332],[405,492],[83,101],[-68,216],[-115,364],[107,114],[156,164],[3,-3],[126,-138],[202,-364],[106,-190],[-10,-114],[-14,-171]],[[294592,192448],[1049,-697],[592,-394],[691,-882],[-196,-118],[-301,165],[-402,221],[-1194,1350],[-405,-74],[-669,158],[-256,60],[-500,570],[-531,912],[-109,186],[176,172],[40,39],[9,-11],[728,-811],[-21,-257],[497,-225],[802,-364]],[[301380,194671],[72,-134],[132,-243],[76,-541],[-52,-221],[-985,-760],[-429,-331],[-666,-119],[-234,-41],[-7,2],[-257,100],[-472,-272],[-46,-26],[503,-76],[97,-87],[237,-214],[55,-233],[12,-53],[-386,-97],[-508,-128],[66,-998],[111,-252],[160,-362],[-32,-243],[-340,20],[-2004,2237],[196,-37],[945,-178],[60,326],[-515,1757],[390,178],[610,-191],[135,-43],[327,142],[112,48],[269,285],[646,684],[945,-206],[611,242],[166,65]],[[290928,206448],[-39,-648],[-13,-220],[-334,44],[-172,357],[-65,473],[132,597],[-53,146],[155,315],[13,26],[575,-154],[369,-99],[-251,-369],[-317,-468]],[[293847,206066],[-27,-498],[-58,243],[-168,-271],[-403,268],[-189,246],[-101,395],[-32,125],[270,245],[318,287],[-793,230],[-65,18],[355,455],[339,-338],[39,-74],[169,-319],[163,-479],[183,-533]],[[291847,208849],[-702,-993],[-164,-233],[-59,62],[-127,131],[3,542],[31,118],[105,401],[232,-226],[119,92],[4,4],[23,440],[-37,141],[-504,186],[-209,562],[339,107],[-22,-271],[-2,-24],[950,-636],[4,-82],[16,-321]],[[290684,212639],[180,-381],[368,-1399],[-257,7],[-135,204],[-203,306],[2,259],[2,214],[-555,-657],[-30,1152],[93,126],[65,87],[317,-22],[6,-4],[43,-23],[87,109],[17,22]],[[292432,218124],[33,-34],[218,-226],[113,12],[92,9],[135,-882],[154,-1359],[-58,-2410],[-38,-78],[-25,-52],[-7,-158],[-18,-430],[167,-1],[151,-575],[28,-106],[-159,-1078],[-513,-848],[-470,169],[-189,316],[-3,6],[124,682],[112,10],[-55,309],[-28,161],[-106,33],[-125,40],[-23,325],[-7,99],[50,510],[79,255],[137,437],[194,209],[144,154],[1,18],[18,321],[-501,-333],[-266,-176],[-180,-1489],[41,-274],[6,-39],[135,243],[5,-10],[100,-180],[-174,-681],[-170,35],[-253,52],[-359,1250],[83,553],[-322,362],[21,434],[45,919],[543,-101],[388,-257],[316,-209],[240,1538],[-394,1004],[-28,264],[-76,710],[394,320],[280,227]],[[290783,218455],[-451,-512],[-53,-61],[-263,131],[-66,33],[208,221],[-179,64],[-86,30],[-47,275],[-16,96],[23,328],[13,175],[91,206],[89,18],[454,93],[196,-108],[86,-351],[1,-638]],[[292687,220201],[68,-1393],[135,-275],[100,-203],[-441,13],[-555,16],[202,1222],[151,-11],[85,-7],[-212,985],[206,775],[128,-310],[7,-17],[126,-795]],[[291990,219819],[-324,-438],[-424,798],[16,134],[13,116],[-314,1168],[517,-71],[81,-11],[108,-95],[119,-104],[184,-241],[29,-302],[4,-47],[195,-105],[-55,-395],[-3,-7],[-146,-400]],[[291522,218521],[-368,-490],[-115,-153],[-158,677],[15,905],[-166,349],[-240,129],[-160,86],[-301,1434],[85,150],[76,133],[448,296],[99,-172],[-13,-95],[-13,-101],[-54,-170],[-4,-13],[40,-302],[11,-81],[755,-2054],[63,-528]],[[293901,223281],[15,-8],[769,-411],[187,122],[162,-106],[11,-8],[-9,-41],[-77,-371],[-63,-44],[-45,-32],[-1363,-38],[-384,307],[-49,39],[208,259],[235,294],[303,29],[100,9]],[[295413,233404],[-241,-721],[-174,124],[-198,483],[-27,67],[-97,289],[-26,463],[-6,101],[40,134],[105,353],[183,49],[88,24],[102,178],[93,159],[97,-496],[-11,-602],[-8,-463],[3,-4],[77,-138]],[[295268,238352],[-83,-72],[-93,-81],[-132,250],[-481,177],[-645,238],[-19,262],[-17,232],[73,128],[89,157],[669,122],[434,79],[251,-876],[-46,-616]],[[294822,241751],[-716,-523],[-350,-256],[-258,179],[-143,488],[-54,185],[35,251],[800,158],[145,-10],[262,-20],[279,-452]],[[297502,243152],[-3,-11],[-4,-15],[18,-15],[2,-2],[0,19],[0,22],[30,-6],[257,-44],[257,-487],[-403,-1056],[-108,-284],[-495,-740],[-423,-299],[-89,25],[-75,20],[-252,446],[-260,1229],[101,278],[30,51],[48,81],[32,-38],[45,-53],[566,44],[76,6],[37,192],[-55,39],[-110,80],[138,631],[428,-76],[212,-37]],[[294768,258637],[-50,-217],[429,131],[370,112],[292,-521],[148,-752],[-9,-207],[-14,-334],[-193,-978],[-56,-283],[-548,-620],[-69,-320],[-67,-313],[35,-344],[630,-890],[-86,-809],[-388,-1216],[-81,-254],[13,-354],[-102,-502],[-54,-267],[-240,-416],[-6,-10],[-193,85],[-848,369],[-300,267],[-66,60],[-8,118],[-8,109],[661,2059],[24,77],[79,997],[-137,1708],[47,854],[365,1194],[-22,857],[-11,460],[183,317],[5,8],[63,28],[151,66],[31,-138],[30,-131]],[[808066,624006],[-49,-2641],[-1114,-2263],[79,-240],[-5,-2068],[-1589,-2146],[-547,-353],[-160,-716],[-215,-251],[-2479,1788],[-172,1906],[-54,2682],[164,601],[1619,2111],[112,317],[-226,-135],[270,908],[1097,495],[383,-347],[415,-67],[1119,795],[445,-531],[6,286],[340,489],[561,-620]],[[838514,691946],[-102,-163],[-163,55],[-1113,876],[-271,398],[-139,514],[-142,84],[147,294],[421,-113],[29,-343],[1391,-1238],[-58,-364]],[[620399,438629],[14,-1],[29,-7],[64,-20],[8,-6],[17,-10],[4,-3],[5,-15],[5,-26],[35,-178],[11,-58],[272,-2717],[-208,-256],[-399,450],[-7,9],[-7,10],[-14,28],[-6,13],[-9,18],[-3,6],[-6,20],[-93,317],[-32,238],[0,7],[2,20],[2,16],[97,1636],[4,75],[12,146],[19,97],[3,8],[2,8],[12,24],[36,54],[25,33],[106,64]],[[621271,433412],[122,-89],[67,-53],[53,-59],[249,-280],[55,-80],[8,-21],[28,-89],[8,-73],[-3,-82],[-516,160],[-55,50],[-72,233],[-40,162],[-1,13],[5,73],[4,45],[4,12],[11,33],[69,45],[4,0]],[[623609,434016],[33,-180],[24,-149],[35,-262],[2,-83],[2,-532],[-7,-110],[-4,-24],[-9,-36],[-9,-14],[-4,-3],[-8,-7],[-7,-2],[-3,0],[-10,-2],[-4,-1],[-53,50],[-431,814],[-88,248],[136,49],[56,28],[4,3],[3,3],[112,156],[3,7],[4,10],[6,39],[15,113],[10,94],[171,45],[21,-254]],[[56194,380540],[40,1],[1,0],[3,-1],[5,-1],[2,0],[12,-3],[11,-10],[2,-2],[1,-1],[6,-5],[1,-1],[1,-2],[2,-2],[1,-1],[5,-6],[2,-7],[3,-9],[41,-134],[0,-4],[3,-13],[2,-15],[2,-10],[-5,-36],[-10,-82],[-10,-43],[-15,-15],[-7,-8],[-7,-7],[-1,-1],[-123,51],[-8,3],[-1,1],[-68,40],[-15,16],[-2,5],[0,1],[-5,13],[-5,12],[-8,92],[-8,87],[2,16],[4,27],[1,6],[12,25],[14,28],[28,13],[28,13],[63,-31]],[[61463,376187],[-7,-27],[0,-1],[-2,-6],[-61,-14],[-114,-26],[-11,8],[-3,2],[-1,1],[-48,58],[-11,12],[-4,17],[-3,16],[0,8],[-1,34],[0,17],[3,18],[1,5],[8,49],[3,17],[2,18],[2,9],[3,6],[17,34],[13,27],[3,6],[15,7],[11,6],[13,7],[4,2],[18,9],[15,7],[8,0],[4,-1],[1,0],[14,-1],[27,-69],[74,-195],[1,-10],[1,-7],[2,-22],[2,-12],[1,-9]],[[62993,386544],[-4,-3],[-10,-7],[-5,-4],[-16,13],[-2,2],[-2,2],[-3,2],[-5,4],[-2,5],[-5,9],[-1,1],[-3,6],[-12,25],[-5,42],[-1,9],[0,8],[-1,4],[0,4],[-1,4],[0,14],[-3,53],[1,8],[2,9],[6,34],[1,9],[4,3],[11,6],[9,6],[8,5],[2,-1],[18,-14],[25,-17],[7,-12],[2,-3],[4,-8],[3,-5],[0,-1],[2,-18],[1,-23],[2,-13],[0,-6],[1,-13],[0,-5],[1,-4],[-3,-17],[-8,-44],[-4,-23],[-1,-3],[0,-3],[-1,-6],[-5,-13],[-5,-14],[-1,-5],[-1,-2]],[[60758,387806],[36,-19],[13,-9],[21,-14],[12,-18],[36,-55],[5,-13],[4,-14],[2,-5],[0,-2],[19,-66],[-22,-52],[-3,-7],[-30,-42],[-7,-9],[-8,-9],[-16,-17],[-9,-10],[-3,4],[0,1],[-1,1],[-5,10],[-10,16],[-3,4],[-8,23],[-2,7],[-3,9],[-16,47],[-2,6],[-1,3],[-7,20],[-2,8],[-7,20],[-2,6],[0,7],[-3,40],[0,8],[2,10],[2,21],[2,24],[1,9],[13,49],[0,1],[2,7]],[[61929,388475],[-10,-23],[-2,-6],[-2,3],[-1,3],[-7,10],[-55,230],[-2,18],[-2,11],[-1,6],[0,4],[-1,5],[2,19],[0,3],[1,6],[1,9],[61,239],[4,1],[7,2],[3,-7],[5,-12],[1,-2],[0,-61],[0,-59],[1,-268],[-1,-37],[-1,-29],[0,-9],[0,-1],[0,-8],[0,-9],[0,-9],[0,-1],[-1,-28]],[[56174,394253],[-1,-18],[0,-9],[0,-10],[-4,-7],[-3,-6],[-9,-19],[-3,-7],[-3,-6],[-3,-5],[-11,-23],[-6,-4],[-3,-1],[-5,5],[-1,3],[-28,123],[-2,48],[0,5],[17,91],[4,14],[4,13],[2,7],[3,6],[3,6],[3,7],[11,23],[3,6],[25,35],[3,5],[4,5],[12,-9],[4,-3],[-6,-100],[-10,-175]],[[434051,596469],[65,-43],[91,-175],[440,-943],[39,-99],[188,-506],[22,-122],[13,-97],[5,-49],[3,-52],[-2,-8],[-2,-8],[-146,-450],[-82,-38],[-67,12],[-253,62],[-140,177],[-56,100],[-54,118],[-99,357],[-60,303],[22,1177],[6,80],[12,70],[13,55],[15,37],[19,39],[4,2],[4,1]],[[431441,593854],[34,-213],[1,-9],[3,-18],[-1,-91],[-5,-33],[-13,-63],[-16,-45],[-37,-53],[-17,-21],[-15,1],[-37,27],[-19,21],[-65,143],[4,94],[8,78],[24,77],[47,43],[99,78],[2,-8],[3,-8]],[[432343,594746],[16,-2],[32,-17],[10,-5],[10,-6],[58,-91],[24,-61],[3,-8],[4,-17],[30,-221],[5,-38],[24,-486],[0,-32],[-12,-75],[-10,-38],[-16,-49],[-6,-13],[-16,-33],[-7,-13],[-3,-7],[-3,-5],[-6,-10],[-13,-21],[-47,-59],[-8,-9],[-8,-8],[-37,-36],[-48,-31],[-17,-6],[-4,1],[-3,1],[-3,0],[-75,16],[-23,15],[-15,12],[-21,21],[-11,14],[-3,5],[-6,9],[-190,322],[-3,9],[-3,34],[-3,23],[-2,176],[6,97],[2,21],[3,25],[39,186],[30,63],[59,114],[52,66],[45,27],[82,85],[32,48],[21,26],[35,-19]],[[435779,596325],[6,-6],[3,-3],[3,-3],[15,-43],[2,-8],[2,-9],[2,-8],[7,-31],[9,-96],[20,-306],[14,-277],[0,-25],[-2,-29],[-3,-34],[-32,-95],[-21,-43],[-10,-15],[-98,-131],[-4,-4],[-7,-6],[-12,-6],[-21,3],[-49,10],[-14,5],[-34,28],[-13,11],[-56,109],[-13,27],[-9,57],[-1,8],[-3,22],[9,164],[10,148],[37,392],[83,259],[20,3],[160,-68]],[[436684,601681],[31,14],[151,-104],[58,-119],[85,-232],[8,-40],[4,-39],[4,-195],[3,-127],[-32,-150],[-36,-77],[-273,-383],[-53,-7],[-155,0],[-200,195],[-15,16],[-3,4],[-4,4],[-4,4],[-3,6],[-7,13],[-18,41],[-3,12],[-2,6],[-11,79],[1,31],[17,217],[117,549],[340,282]],[[432423,604347],[9,-3],[9,-2],[695,-359],[16,-10],[14,-11],[37,-31],[66,-101],[34,-61],[2,-5],[6,-30],[-2,-11],[-19,-78],[-6,-12],[-9,-15],[-5,-3],[-4,0],[-157,11],[-566,-1],[-337,262],[-30,43],[-19,54],[-8,36],[-3,32],[-1,18],[2,79],[1,10],[2,28],[5,15],[5,16],[9,20],[80,74],[8,6],[9,6],[13,6],[81,28],[63,-11]],[[431220,605088],[208,-249],[3,-4],[3,-5],[1,-5],[1,-5],[-1,-20],[-3,-10],[-16,-42],[-26,-15],[-52,-14],[-10,-2],[-10,0],[-41,3],[-12,19],[-112,169],[-4,9],[-11,60],[-1,18],[1,10],[21,80],[15,49],[2,1],[3,-3],[41,-44]],[[436364,605340],[47,-310],[44,-658],[3,-61],[-45,-375],[-21,-46],[-53,-40],[-29,16],[-156,690],[-26,497],[1,90],[19,95],[8,20],[13,23],[160,141],[7,5],[17,-29],[2,-8],[2,-7],[7,-43]],[[430791,605815],[5,-9],[6,-14],[3,-7],[4,-8],[14,-41],[82,-270],[-4,-316],[-275,-170],[-61,30],[-122,113],[-109,141],[-2,76],[24,98],[49,116],[9,21],[5,3],[325,227],[13,9],[20,8],[3,-1],[2,-2],[9,-4]],[[430397,607355],[107,-125],[144,-278],[1,-9],[3,-19],[0,-7],[0,-8],[1,-23],[4,-82],[-2,-8],[-3,-7],[-11,-32],[-49,-134],[-16,-30],[-520,-787],[-6,-5],[-51,-36],[-36,-10],[-212,-7],[-74,206],[-120,560],[-3,16],[-1,8],[-1,8],[2,42],[7,42],[12,48],[44,134],[4,12],[18,28],[594,563],[164,-60]],[[272961,642606],[390,-427],[103,-112],[998,715],[-236,-339],[199,-361],[109,-199],[158,-14],[725,639],[1580,-1308],[59,-49],[217,156],[350,-86],[172,-42],[869,-871],[205,-544],[309,-820],[396,-646],[333,-252],[23,4],[705,108],[803,-154],[1466,-1487],[970,-1483],[1070,-1279],[245,-109],[-9,32],[-183,615],[-685,829],[-28,106],[-10,34],[27,48],[83,153],[1741,-2458],[563,-640],[722,-823],[1138,-852],[1135,-27],[275,-319],[15,-47],[110,-338],[-138,-788],[-147,-846],[389,10],[442,12],[973,-230],[674,-425],[430,-781],[263,-476],[688,-597],[251,-44],[143,-285],[7,-102],[18,-256],[-69,-150],[-206,-446],[-91,-72],[-92,-71],[-609,-100],[-915,-151],[-1241,-853],[-557,6],[-307,212],[-331,227],[-1076,145],[-124,17],[-1604,-242],[-2604,-693],[-154,87],[-22,13],[-8,219],[310,806],[628,1056],[255,225],[333,295],[191,407],[16,34],[57,369],[39,250],[-431,1119],[-302,370],[-565,-25],[-1360,-59],[-178,219],[-103,126],[-922,1652],[-330,2463],[-447,1083],[-1049,-481],[-462,40],[-3953,2901],[-2572,837],[-146,48],[-1205,937],[1192,541],[146,227],[-51,493],[-571,610],[-1078,2],[-1027,3],[-433,-295],[-482,-585],[-430,-708],[-567,-933],[-1655,-986],[-187,-112],[-212,-878],[-815,-489],[-1058,210],[-146,128],[-87,77],[69,62],[652,586],[366,1117],[106,860],[27,62],[476,1103],[906,1142],[2018,1420],[1031,370],[821,293],[354,291],[247,203],[526,40],[108,9],[73,-20],[782,-208]],[[270679,633226],[-70,-99],[-114,-160],[-729,-460],[-50,26],[-536,279],[-145,272],[-118,548],[262,-469],[219,-25],[106,142],[49,67],[-131,423],[-234,760],[99,401],[308,524],[132,-60],[545,-249],[153,-497],[161,-519],[14,-289],[7,-131],[101,-328],[-29,-156]],[[282208,639106],[192,-200],[719,-1174],[174,-285],[510,-912],[391,-303],[53,-41],[-94,-299],[-107,-341],[-205,191],[-288,665],[-139,531],[-129,494],[-167,154],[-842,773],[-185,78],[-449,189],[-30,160],[-30,156],[626,164]],[[308724,577778],[5,-4],[3,-3],[6,-7],[1,-1],[1,-2],[6,-6],[7,-11],[4,-5],[71,-107],[1,-2],[3,-3],[2,-5],[1,-2],[7,-13],[8,-17],[6,-13],[99,-272],[104,-284],[-3,-4],[0,-1],[-13,-21],[-5,-1],[-17,-3],[-149,-4],[-1,0],[-27,1],[-382,394],[-40,48],[-78,119],[-253,457],[-78,192],[-59,148],[-54,154],[-11,332],[-5,151],[17,16],[29,28],[144,-163],[8,-8],[16,-19],[3,-2],[0,-1],[3,-4],[3,-4],[0,-1],[9,-16],[6,-10],[47,-142],[4,-11],[1,-10],[4,-56],[2,-17],[0,-1],[0,-2],[-1,-17],[0,-19],[545,-746]],[[793634,444223],[19,-106],[0,-24],[0,-4],[0,-4],[1,-6],[0,-3],[-2,-173],[-30,-93],[-77,-242],[-97,-39],[-235,155],[-11,16],[-22,34],[54,188],[32,77],[280,232],[88,-8]],[[273986,620368],[247,-327],[144,117],[73,6],[168,14],[95,2],[23,1],[4,-2],[2,-1],[2,0],[8,-4],[1,-4],[1,-1],[1,-1],[1,-4],[1,-8],[2,-9],[1,-8],[0,-4],[1,-4],[8,-53],[3,-23],[-2,-20],[-3,-42],[-1,-16],[-2,-20],[-1,-14],[0,-4],[-1,-4],[0,-5],[-2,-3],[-1,-3],[-23,-51],[-3,-5],[-3,-8],[-2,-3],[-4,-10],[-5,-4],[-3,-2],[-11,-10],[-3,-4],[-2,-1],[-2,-2],[-12,-4],[-519,-159],[-55,17],[-111,37],[-85,100],[-93,500],[4,15],[5,18],[3,13],[1,4],[0,3],[6,10],[13,24],[4,5],[1,2],[2,4],[33,27],[20,18],[14,-3],[8,-8],[39,-42],[4,-4],[1,-8],[3,-16],[0,-1],[2,-8]],[[277861,622271],[0,-2],[-2,-4],[-6,-19],[-2,-1],[-2,-2],[-1,-1],[-3,-3],[-309,-226],[-5,1],[-3,0],[-1,0],[-43,5],[-4,15],[-1,3],[-2,4],[2,8],[2,9],[1,4],[2,13],[69,94],[40,54],[58,26],[29,12],[68,39],[65,36],[1,1],[3,2],[4,3],[16,-3],[5,0],[3,-1],[1,0],[3,-1],[3,-4],[1,-1],[6,-8],[0,-2],[3,-15],[0,-2],[1,-6],[0,-13],[-1,-3],[0,-3],[-1,-9]],[[278207,622222],[-60,43],[-5,4],[219,238],[85,92],[4,1],[12,0],[8,1],[5,0],[3,0],[50,-40],[2,-10],[1,-4],[4,-14],[-2,-9],[-1,-8],[-1,-5],[-1,-3],[-115,-149],[-102,-68],[-106,-69]],[[594145,712468],[-150,-59],[-248,143],[-10,-15],[-11,17],[-113,-20],[-176,-541],[-138,-398],[-290,-250],[-333,-269],[-88,-48],[-177,-95],[-28,-12],[-34,-2],[-664,-357],[61,-485],[-761,523],[-22,-14],[-92,-42],[-23,-1],[-11,5],[-107,68],[-116,74],[-338,230],[-64,58],[-192,234],[-178,656],[-84,473],[-69,458],[91,300],[625,537],[1072,1087],[156,132],[436,-76],[433,-91],[91,-21],[85,-25],[138,-18],[4,-1],[7,0],[32,1],[110,5],[102,29],[367,116],[751,423],[94,59],[165,110],[311,252],[352,358],[298,336],[138,110],[437,323],[4,2],[5,2],[1,1],[63,13],[14,-11],[-30,-175],[-53,-120],[-899,-1061],[-718,-817],[58,-1495],[29,-521],[-313,-95]],[[537253,828826],[145,-497],[298,-159],[269,-143],[4,-545],[5,-577],[-277,41],[-185,28],[-376,-514],[-226,274],[-362,436],[268,573],[136,-58],[630,-267],[53,336],[-132,375],[-38,109],[-288,189],[-618,-165],[293,632],[325,88],[30,8],[29,-104],[17,-60]],[[329380,598238],[252,-255],[80,-81],[129,-402],[34,-258],[3,-875],[-7,-75],[-7,-73],[-26,-245],[-5,-18],[-2,-7],[-6,-15],[-4,-7],[-15,-23],[-75,-80],[-95,-100],[-15,-13],[-6,-4],[-35,-19],[-1,0],[-23,-1],[-3,3],[-2,1],[-14,12],[-1,2],[-1,2],[-5,8],[-279,1983],[9,394],[0,10],[1,17],[1,18],[0,2],[1,6],[3,24],[1,5],[0,3],[2,8],[0,3],[4,22],[6,14],[1,3],[2,5],[21,2],[29,4],[40,0],[3,0],[1,0],[4,0]],[[531870,829914],[151,-53],[98,-35],[8,1],[85,5],[62,232],[55,203],[129,-166],[363,-465],[99,-377],[-27,-331],[-9,-109],[-248,-25],[-677,-70],[-1139,610],[-101,152],[-138,205],[107,79],[162,120],[-235,265],[40,217],[290,182],[108,67],[105,-12],[134,-15],[578,-680]],[[542003,830953],[-102,-158],[-2,-2],[-1096,620],[46,467],[37,377],[47,120],[100,261],[404,-414],[204,-210],[173,-157],[288,-262],[-99,-642]],[[529090,834192],[-102,-716],[508,411],[-20,587],[392,-773],[42,-200],[193,-910],[-253,-1317],[-711,-204],[-731,316],[-252,411],[-95,156],[-329,-96],[-667,2011],[645,289],[908,408],[345,-221],[127,-152]],[[534998,835551],[-434,-1029],[-307,-1071],[-60,-206],[-441,-2208],[-546,81],[-502,75],[-68,665],[-17,172],[-113,48],[-36,14],[-718,58],[-629,984],[-245,1216],[-53,263],[345,613],[265,204],[1083,836],[57,-456],[130,-1028],[88,23],[22,6],[55,158],[80,228],[240,-190],[317,-251],[67,192],[68,196],[-131,888],[-9,65],[-71,144],[-162,331],[-53,37],[-156,112],[413,342],[304,252],[369,62],[193,34],[267,-118],[486,-326],[-23,-328],[-75,-1088]],[[529325,844331],[-514,-1467],[-82,-236],[-277,14],[-42,3],[-564,582],[-2581,-365],[-1026,-484],[-274,-312],[-302,-692],[-208,-476],[160,-94],[71,-42],[-27,-223],[-22,-190],[-777,735],[16,211],[16,224],[286,731],[775,1146],[1765,168],[383,37],[555,601],[445,919],[879,1009],[1018,693],[248,169],[14,-103],[18,-136],[-22,-43],[-268,-517],[21,-151],[28,-202],[162,-263],[97,-158],[29,-1088]],[[300671,622254],[-18,409],[273,560],[35,71],[141,109],[86,65],[1625,122],[512,-337],[1237,-1044],[1284,-721],[760,-1650],[1113,279],[23,-81],[116,-408],[-135,-415],[-1046,194],[-81,-116],[-2,-321],[-3,-379],[574,-202],[473,-166],[932,25],[207,-194],[380,-358],[988,-1792],[67,-122],[-351,-1412],[-858,-768],[-59,198],[-174,595],[-186,145],[-94,73],[-564,76],[-1620,218],[-889,-516],[-228,-403],[-245,-432],[-754,-206],[-234,668],[-149,256],[-210,361],[-475,-468],[-295,-291],[-574,-1992],[-450,-1198],[-169,-274],[-152,-247],[-408,635],[-4,6],[-28,238],[-84,710],[-117,253],[-172,369]],[[300669,612376],[-393,799],[-48,99],[-344,290],[-152,-10],[-1184,-74],[-689,-359],[-341,-22],[-18,-1],[-180,73],[-1103,447],[-810,9],[-52,-50],[-752,-717],[-1057,1021],[-256,448],[-180,315],[43,313],[120,881],[585,341],[1360,-775],[33,-46],[155,-218],[1420,-192],[60,-8],[194,-13],[1032,-66],[828,486],[44,116],[72,191],[16,399],[7,172],[-731,984],[-216,393],[-368,667],[33,1036],[3,96],[296,1154],[-20,134],[-12,81],[-978,1037],[-962,59],[-147,272],[-13,23],[0,11],[1,417],[114,223],[139,271],[477,426],[482,100],[543,112],[304,-149],[331,-162],[704,-752],[1612,-404]],[[611552,598159],[245,-67],[118,206],[-215,163],[278,31],[262,-339],[34,-400],[-1188,222],[-182,544],[234,205],[67,539],[-246,393],[179,-11],[233,-302],[181,-1184]],[[563782,852214],[65,-57],[962,-842],[-65,-153],[-249,184],[-80,59],[-500,-548],[-452,-496],[-2170,-1466],[-506,1650],[180,548],[86,156],[145,261],[559,325],[876,509],[43,-35],[88,-73],[1018,-22]],[[563719,854316],[377,-763],[-101,11],[-229,26],[-666,-490],[-167,-57],[-514,-179],[-629,1252],[271,11],[155,6],[393,518],[133,392],[92,-30],[56,-18],[829,-679]],[[480207,874019],[158,-250],[46,-96],[124,-254],[26,-47],[12,-20],[354,-417],[301,-413],[12,-42],[16,-53],[51,-314],[13,-171],[-3,-3],[-1,-1],[-30,-31],[-13,-13],[-40,9],[-15,3],[-6,3],[-10,6],[-19,16],[-40,34],[-65,61],[-184,203],[-249,318],[-68,85],[-291,320],[-88,9],[-240,237],[-53,72],[-36,49],[5,52],[3,37],[34,413],[8,73],[12,98],[5,19],[1,5],[5,7],[25,33],[103,15],[137,-52]],[[480959,869921],[156,-93],[75,-45],[282,-1001],[-1,-8],[-11,-88],[-4,-26],[-31,13],[-30,17],[-52,31],[-78,45],[-307,356],[-3,4],[-40,66],[-162,366],[-148,333],[-14,52],[-25,94],[-2,15],[0,2],[51,109],[3,4],[5,6],[2,3],[1,2],[5,1],[37,8],[8,1],[9,2],[2,1],[2,0],[38,8],[43,9],[10,2],[8,1],[4,-3],[20,-15],[32,-25],[7,-5],[1,-1],[93,-210],[14,-31]],[[480975,871006],[48,-13],[24,-8],[11,-3],[9,-3],[3,-3],[4,-4],[10,-11],[4,-3],[4,-4],[1,-4],[1,-4],[3,-5],[0,-2],[15,-41],[10,-27],[10,-31],[1,-2],[1,-5],[2,-9],[5,-22],[3,-13],[0,-2],[-71,-15],[-6,-1],[-3,-1],[-5,-1],[-4,5],[-83,91],[-8,9],[-1,18],[-2,54],[-1,9],[2,6],[3,9],[4,15],[4,14],[1,3],[1,4]],[[480832,871721],[119,-31],[116,-30],[2,0],[1,-1],[6,-2],[6,-2],[4,-2],[3,-1],[132,-91],[172,-117],[98,-144],[22,-31],[4,-176],[6,-223],[-54,-70],[-8,-1],[-7,0],[-8,0],[-4,3],[-7,7],[-1,0],[-3,3],[-221,210],[-251,240],[-92,175],[-71,137],[-62,133],[98,14]],[[481517,872266],[7,-8],[31,-35],[1,-2],[2,-2],[78,-181],[0,-10],[1,-9],[1,-12],[0,-6],[-1,-5],[-5,-14],[-2,-5],[0,-2],[-1,-2],[-1,-4],[-4,-3],[-2,-2],[-1,-2],[-3,-3],[-11,-10],[-4,4],[-30,27],[-3,4],[0,1],[-2,2],[-8,11],[-78,124],[-4,127],[8,75],[27,-50],[4,-8]],[[478946,872952],[58,-52],[29,-26],[10,-69],[-125,22],[-57,8],[-52,7],[-43,-3],[-53,-3],[-20,20],[148,75],[34,14],[22,9],[18,-1],[22,-1],[2,0],[3,0],[4,0]],[[480329,872835],[15,-8],[2,-1],[9,-5],[10,-23],[11,-26],[3,-7],[9,-22],[6,-14],[2,-7],[2,-8],[0,-4],[1,-4],[-49,-123],[-12,-29],[-123,-65],[-99,-52],[-119,-44],[-49,-1],[-26,-1],[-151,81],[-196,104],[-41,59],[-157,228],[-43,69],[-33,54],[-12,38],[-5,81],[2,5],[4,5],[5,9],[25,1],[17,2],[557,41],[216,-165],[219,-168]],[[482486,874002],[-7,-87],[-24,-193],[-1,-13],[-33,-36],[-36,-12],[-82,-28],[-32,58],[-67,135],[0,1],[-4,24],[0,4],[-1,5],[1,4],[10,22],[2,4],[0,2],[11,12],[4,4],[4,4],[8,2],[4,1],[142,117],[7,9],[4,1],[4,2],[10,3],[11,4],[8,3],[4,1],[2,1],[2,1],[39,-44],[10,-11]],[[480675,874264],[184,-173],[265,-249],[53,-68],[180,-230],[236,-449],[13,-24],[-62,-201],[-100,-254],[-4,-5],[-8,-8],[-4,-5],[-2,1],[-2,0],[-21,1],[-4,1],[-4,0],[-101,197],[-544,422],[-141,164],[-30,46],[-7,12],[-132,235],[-98,319],[3,63],[2,46],[153,98],[46,29],[42,21],[26,12],[4,0],[26,0],[16,-1],[6,0],[9,0]],[[482596,874293],[4,-10],[1,-5],[2,-5],[1,-3],[7,-19],[3,-11],[-1,-9],[-1,-9],[-3,-27],[-3,-5],[-1,-4],[-3,-7],[-22,-16],[-26,-18],[-5,-4],[-2,-1],[-3,-1],[-5,-3],[-61,-8],[-17,-2],[-4,-1],[-23,40],[-19,32],[-2,3],[-1,3],[0,6],[0,3],[4,57],[0,15],[0,2],[1,15],[3,6],[10,18],[2,4],[6,11],[56,-6],[1,0],[3,0],[4,0],[0,-1],[94,-40]],[[481698,873754],[-4,-3],[-8,-5],[-16,-11],[-4,1],[-9,2],[-9,2],[-61,14],[-9,1],[-80,156],[-88,191],[-26,126],[2,69],[2,63],[2,4],[7,14],[6,12],[14,28],[1,2],[1,0],[3,-1],[2,0],[2,0],[11,-3],[9,-2],[9,-1],[3,-1],[39,-24],[4,-16],[4,-18],[3,-18],[1,-2],[1,-6],[25,-90],[19,-66],[101,-229],[42,-117],[0,-9],[0,-18],[0,-9],[1,-31],[0,-5]],[[481501,873584],[-13,-6],[-7,-3],[-20,-10],[-6,3],[-15,8],[-5,2],[-7,4],[-4,2],[-1,0],[-12,10],[-27,22],[-21,18],[-2,2],[-2,1],[-1,2],[-2,4],[-3,6],[-10,19],[-103,262],[-132,336],[79,-65],[72,-59],[222,-401],[14,-25],[1,-5],[2,-13],[3,-17],[8,-44],[1,-6],[1,-3],[-1,-4],[-1,-3],[-5,-25],[-3,-12]],[[482091,874136],[-2,-667],[-46,-43],[-200,-186],[-4,1],[-3,1],[-16,4],[-72,93],[-32,49],[-85,129],[-17,51],[-6,33],[-9,52],[1,6],[0,2],[1,3],[2,12],[37,0],[34,0],[0,-2],[1,-6],[2,-10],[1,-6],[2,-15],[1,-1],[32,1],[11,101],[-3,733],[195,-39],[135,-227],[40,-69]],[[336495,202643],[311,-177],[219,-98],[174,-78],[450,-632],[83,-328],[478,-745],[96,-88],[42,78],[-28,347],[-71,231],[-13,45],[-74,16],[-67,14],[-139,38],[-79,21],[-2,1],[-2,2],[-7,4],[-1,1],[-1,1],[-2,5],[2,79],[1,46],[1,42],[22,38],[7,12],[85,144],[143,241],[205,144],[733,165],[108,-81],[77,-157],[20,-41],[185,-460],[78,-199],[15,-38],[1,-2],[4,-10],[2,-6],[-1,-10],[-1,-7],[-2,-24],[0,-6],[0,-3],[-2,-3],[-1,-1],[-2,-3],[-2,-2],[-2,-1],[-8,-6],[-100,-33],[-4,0],[-26,-2],[-5,0],[-3,0],[-16,2],[-333,61],[-3,1],[-4,1],[-4,2],[-7,2],[-30,21],[-6,5],[-2,1],[-2,2],[-13,10],[-3,6],[-10,15],[-176,41],[-239,-118],[0,-18],[-3,-106],[174,-137],[192,-58],[113,6],[156,-47],[305,-106],[3,-2],[5,-2],[15,-6],[2,-1],[2,-1],[136,-127],[-67,-301],[-66,-55],[-118,-100],[-245,-135],[-102,-30],[-71,-21],[-161,-38],[-126,-31],[-210,-100],[-330,-157],[-355,-233],[-393,-257],[-396,-54],[-147,18],[-42,4],[-122,79],[-260,167],[-41,30],[507,-533],[61,-64],[6,-4],[143,-96],[137,-199],[27,-40],[-119,-307],[-47,-121],[-106,-34],[-214,75],[-775,274],[-212,-20],[-206,-20],[129,-391],[47,-143],[-451,-244],[-211,-628],[41,-93],[107,-243],[-161,-153],[-303,279],[-687,1044],[-4,26],[-2,17],[1,26],[3,90],[0,8],[0,14],[1,4],[0,4],[0,13],[52,4],[11,0],[315,532],[19,277],[21,287],[123,186],[78,118],[822,764],[429,1112],[91,456],[214,1075],[20,78],[18,69],[28,-32],[150,-174]],[[334282,196304],[-90,-159],[-2,-2],[-1,-2],[-3,-3],[-1,-1],[-13,-5],[-4,-2],[-28,-4],[-45,7],[-4,4],[-7,10],[-19,26],[-6,9],[-1,10],[-1,5],[16,56],[86,51],[109,64],[5,-6],[5,-5],[2,-18],[2,-35]],[[334062,196343],[0,-1],[0,-14],[0,-7],[-4,-15],[-5,-19],[-2,-8],[-3,-6],[-19,-41],[-10,-14],[-7,-10],[-4,-5],[-2,-3],[-1,-2],[-4,-5],[-2,0],[-6,1],[-4,0],[-11,8],[-34,27],[-74,68],[-18,17],[51,90],[22,38],[62,88],[64,85],[148,45],[-75,-173],[-62,-144]],[[334000,197435],[94,22],[80,8],[2,-2],[2,-1],[2,-3],[5,-4],[7,-6],[3,-3],[1,-2],[2,-4],[4,-8],[1,-3],[2,-8],[5,-22],[4,-17],[21,-155],[14,-102],[-22,-77],[-28,-60],[-127,-241],[-51,248],[5,6],[34,36],[2,131],[0,90],[-2,15],[-11,70],[-7,12],[-2,5],[-10,19],[-3,6],[-1,0],[-3,6],[-3,2],[-2,1],[-5,4],[-1,1],[-2,1],[-6,-1],[-6,-1],[-8,-2],[-4,-3],[-1,-1],[-53,-17],[-27,68],[-3,6],[-8,45],[51,136],[7,4],[3,2],[4,2],[3,-9],[0,-3],[2,-5],[15,-76],[21,-110]],[[336598,197259],[-1,-12],[-1,-12],[-20,-21],[-53,-56],[-1,-1],[-3,-2],[-20,-16],[-23,-18],[-27,-21],[-132,-55],[-11,-3],[-44,-10],[-24,-5],[-78,-2],[-1,0],[-6,32],[-2,36],[-1,46],[236,193],[223,182],[-8,-181],[-3,-74]],[[337655,198481],[41,-21],[42,-21],[-26,-334],[-77,-204],[-6,-16],[-162,274],[-76,129],[-3,6],[-2,5],[-2,5],[-3,6],[-1,4],[0,4],[5,10],[3,6],[5,10],[175,185],[29,-12],[52,-22],[1,-3],[5,-11]],[[330977,198548],[4,-40],[7,-79],[-48,-42],[-83,21],[-116,71],[168,186],[1,0],[2,0],[7,0],[16,-11],[20,-14],[4,-3],[1,-3],[2,-3],[2,-4],[7,-18],[4,-33],[2,-28]],[[334128,198591],[-3,4],[-4,6],[0,3],[-2,12],[-2,8],[0,1],[-1,6],[22,151],[2,18],[6,12],[3,7],[12,24],[16,10],[3,3],[3,1],[1,1],[3,-1],[1,0],[4,-1],[7,-1],[3,-7],[9,-16],[4,-9],[7,-13],[1,-3],[2,-3],[30,-118],[9,-37],[1,-71],[-1,-2],[-1,-4],[-5,-12],[-1,-2],[-1,-4],[-51,-27],[-77,64]],[[329966,199544],[15,-245],[0,-7],[-1,-10],[-1,-5],[0,-4],[-7,-6],[-33,-29],[-59,-41],[-63,28],[-15,7],[-39,34],[-40,36],[-88,90],[-24,26],[-2,2],[-13,14],[4,14],[2,8],[2,7],[3,6],[3,6],[2,6],[3,5],[0,1],[2,4],[1,2],[4,3],[165,89],[142,76],[26,-63],[11,-54]],[[330901,199817],[50,4],[3,-13],[6,-31],[13,-81],[3,-42],[-4,-61],[-32,-600],[-2,-17],[-1,-7],[0,-1],[-1,-5],[-3,-21],[-52,-114],[-253,-254],[-48,-39],[-1,0],[-2,0],[-10,1],[-130,166],[-94,125],[-80,107],[-25,55],[-40,88],[-29,131],[-31,142],[63,101],[74,118],[125,103],[95,77],[12,-2],[8,-1],[1,0],[3,-1],[56,-11],[31,-6],[40,-18],[100,-115],[27,44],[51,86],[1,7],[0,1],[0,2],[0,13],[0,4],[1,11],[0,1],[2,4],[1,5],[72,44]],[[334576,199752],[-11,-50],[-18,-87],[-128,-13],[14,72],[11,55],[113,79],[11,6],[22,12],[-14,-74]],[[329843,200342],[72,-84],[2,-3],[-117,-318],[-28,-76],[-24,-13],[-20,6],[-31,56],[-6,13],[-4,10],[-1,4],[-9,142],[-6,102],[15,41],[4,11],[131,108],[3,2],[7,2],[3,-1],[5,-1],[2,0],[2,-1]],[[334126,202058],[37,-6],[34,-5],[1,-2],[2,-3],[2,-6],[5,-16],[16,-58],[-1,-8],[-1,-9],[-23,-23],[-31,-33],[-3,-3],[-1,-1],[-2,-1],[-10,-10],[-13,-11],[-2,-1],[-2,0],[-19,-5],[-4,0],[-3,5],[-4,5],[-1,2],[-2,4],[-33,90],[9,25],[23,50],[0,1],[3,4],[5,5],[2,3],[8,4],[8,3]],[[335044,202366],[192,-164],[213,-183],[-21,-399],[-292,-480],[-311,-497],[-25,-38],[-198,-76],[-633,-1138],[-1528,-1801],[-7,-9],[-92,-105],[-118,-33],[-268,-75],[-471,-89],[-44,185],[-65,235],[-8,15],[-31,60],[-169,53],[-81,25],[-11,2],[-21,3],[-19,-14],[-24,-17],[-3,-2],[-1,-1],[-4,-3],[-2,-4],[-3,-5],[-16,84],[-30,150],[1022,815],[333,351],[456,482],[19,46],[53,151],[4,147],[2,117],[-1,7],[-2,14],[-4,4],[-4,5],[-3,3],[-2,3],[-8,9],[-6,2],[-2,1],[-9,4],[-35,0],[-129,-1],[-202,-45],[-849,226],[496,-78],[120,-19],[177,30],[423,73],[5,24],[13,61],[-101,144],[-32,45],[-52,71],[-262,318],[-565,685],[284,40],[192,26],[1799,-160],[564,-39],[59,10],[109,18],[243,135],[3,8],[2,5],[1,3],[2,4],[-18,45],[-4,4],[-3,5],[-21,26],[-8,6],[-29,22],[-36,26],[-39,29],[-12,173],[-2,20],[24,72],[46,136],[30,8],[25,6],[4,0],[21,-2]],[[331342,202424],[92,-74],[1,-1],[31,-53],[6,-38],[-36,-97],[-13,-11],[-25,-22],[-3,0],[-1,1],[-12,1],[-1,4],[-1,3],[-9,28],[-4,14],[-24,83],[-32,108],[1,7],[0,2],[0,6],[1,22],[1,11],[1,7],[7,3],[2,1],[1,1],[4,-1],[5,-2],[4,-1],[4,-2]],[[334050,202433],[144,-220],[-116,-54],[-194,74],[65,209],[7,2],[8,3],[3,1],[30,0],[27,0],[26,-15]],[[333553,202517],[-5,-185],[-3,-24],[-7,-48],[0,-2],[-8,-4],[-16,-6],[-12,-4],[-5,-1],[-3,-1],[-7,0],[-8,1],[-12,10],[-62,51],[-16,15],[-56,51],[-37,48],[-64,82],[-4,16],[-9,30],[0,14],[0,7],[2,6],[2,4],[1,3],[4,2],[17,10],[73,28],[116,44],[71,-88],[48,-59]],[[332973,202539],[6,3],[9,4],[4,2],[12,5],[4,1],[55,10],[1,1],[7,1],[7,1],[10,1],[4,1],[48,-59],[38,-117],[-11,-98],[-16,-40],[-61,-151],[-32,-77],[-18,-44],[-3,-1],[-19,-8],[-15,-3],[-23,-6],[-217,-38],[-72,-12],[-188,148],[39,64],[124,208],[3,5],[4,5],[2,3],[1,2],[14,19],[283,170]],[[334719,202731],[11,-2],[4,-1],[8,-2],[3,-3],[17,-14],[13,-10],[7,-9],[3,-4],[3,-4],[7,-9],[35,-91],[37,-95],[-62,-127],[-18,-36],[-190,-10],[-25,3],[-22,2],[-8,1],[-13,4],[-17,5],[-22,6],[-622,371],[-31,27],[-2,2],[-2,2],[-7,6],[-8,8],[-12,11],[-1,4],[-1,2],[-1,2],[-4,11],[-4,13],[41,50],[90,32],[33,11],[4,1],[4,1],[2,1],[2,1],[9,1],[7,2],[4,0],[3,1],[2,0],[2,1],[2,-1],[2,0],[12,-2],[8,-2],[6,-9],[1,-2],[495,-107],[195,-42]],[[331883,202683],[8,-22],[22,-62],[2,-7],[1,-1],[2,-7],[-3,-16],[-21,-54],[-4,-9],[-4,-2],[-2,0],[-133,133],[-55,82],[-21,52],[0,5],[0,4],[1,9],[0,8],[3,41],[5,65],[15,9],[58,-61],[117,-150],[3,-6],[5,-7],[1,-4]],[[330387,203960],[0,-1],[11,-15],[3,-5],[6,-12],[2,-4],[3,-7],[-4,-16],[-2,0],[-5,-1],[-26,9],[-30,9],[-123,57],[-7,70],[-6,59],[-10,117],[5,5],[2,2],[1,1],[3,2],[3,-1],[8,-2],[7,-1],[19,-20],[21,-21],[24,-37],[3,-4],[92,-184]],[[330094,204047],[-4,-2],[-7,-5],[-13,-9],[-4,0],[-4,0],[-3,1],[-7,0],[-5,3],[-3,2],[-6,4],[-9,6],[-4,2],[-37,37],[-128,136],[-4,5],[-2,2],[-2,4],[1,18],[1,8],[5,25],[3,17],[2,-1],[6,-4],[21,-12],[23,-13],[4,-2],[140,-150],[2,-3],[2,-2],[7,-10],[21,-32],[6,-8],[1,-2],[0,-1],[4,-5],[-3,-4],[-4,-5]],[[526314,759491],[244,-4339],[-537,-2820],[-314,-1648],[-200,-29],[-232,-34],[-541,542],[-321,322],[3,136],[5,257],[-313,1805],[-200,1156],[-41,504],[-59,721],[258,1034],[165,283],[36,62],[10,8],[960,826],[211,-30],[299,-41],[107,287],[102,272],[0,20],[-10,1161],[157,88],[62,34],[149,-577]],[[902645,586189],[-81,-480],[-445,-1391],[-8,-18],[-8,-21],[-69,-146],[-15,-30],[-31,-5],[-27,-4],[-14,4],[-4,3],[-62,42],[-3,7],[-6,13],[-8,21],[-11,27],[-14,44],[-48,375],[-4,33],[-4,30],[-5,446],[42,177],[17,69],[120,33],[101,48],[93,62],[17,42],[63,163],[63,303],[28,172],[61,19],[127,39],[135,-77]],[[939391,547080],[21,-2],[29,-23],[90,-73],[129,-142],[2,-43],[1,-13],[0,-4],[2,-14],[1,-7],[0,-2],[4,-7],[1,-3],[4,-6],[2,-3],[45,-43],[22,56],[10,-16],[26,-44],[10,-79],[9,-82],[-7,-158],[-6,-129],[-54,-214],[-9,-37],[-186,-61],[-21,-7],[-33,17],[-25,12],[-57,32],[-26,15],[-44,25],[-3,14],[-2,8],[-27,148],[-59,339],[82,311],[10,39],[59,196]],[[952681,536997],[1,-5],[1,-3],[1,-3],[-3,-6],[-5,-13],[-16,-13],[-9,-7],[-2,-2],[-1,-1],[-3,-3],[-4,-2],[-8,-3],[-5,-3],[-52,15],[-11,6],[-20,11],[-14,11],[-6,22],[-1,3],[-3,11],[-5,21],[-3,11],[-4,16],[-4,16],[-2,14],[-1,7],[0,1],[0,5],[-2,25],[2,0],[1,1],[71,-53],[107,-79]],[[952853,537261],[-84,-196],[-33,-78],[-21,29],[-15,11],[-18,12],[-1,-1],[-2,-1],[-2,-1],[-4,-4],[163,353],[4,-27],[2,-13],[-1,0],[-4,1],[3,-18],[6,-11],[7,-56]],[[921801,549096],[-6,-38],[-3,-20],[-1,-10],[-1,-6],[-1,0],[-3,2],[-17,7],[-4,1],[-5,2],[-63,269],[2,12],[2,10],[0,4],[1,4],[3,1],[7,3],[3,2],[7,-3],[4,-1],[3,-2],[2,-1],[2,-2],[2,-2],[2,-1],[10,-10],[31,-34],[1,-2],[3,-4],[3,-5],[6,-9],[5,-85],[5,-82]],[[921161,549405],[26,-15],[3,-3],[4,-3],[7,-5],[1,-1],[1,-8],[2,-8],[3,-15],[-4,-230],[-1,-2],[-1,-3],[-4,-9],[-62,-39],[-3,0],[-2,0],[-2,0],[-2,0],[-62,7],[-14,12],[-60,55],[-1,7],[0,1],[-1,8],[15,105],[14,97],[5,14],[6,21],[2,4],[3,12],[5,15],[1,3],[2,4],[7,8],[44,43],[61,-66],[7,-9]],[[921809,549898],[30,-10],[77,-54],[2,-1],[1,-2],[3,-3],[1,-1],[-1,-2],[-2,-4],[-4,-11],[0,-2],[-124,-182],[-8,-8],[-2,-3],[-2,-1],[-8,19],[-3,7],[-4,28],[-2,19],[-1,5],[0,3],[0,14],[-1,24],[0,9],[-1,19],[0,2],[0,6],[0,17],[-1,33],[2,16],[0,2],[3,38],[1,9],[3,2],[1,0],[7,5],[7,5],[5,0],[4,1],[3,0],[10,1],[4,0]],[[883793,562616],[33,-117],[47,-209],[-8,-50],[-12,-80],[-21,-51],[-242,-390],[-81,-130],[-2,0],[-5,2],[-8,3],[-1,0],[-3,1],[-3,13],[0,3],[-8,32],[1,11],[0,7],[5,69],[1,9],[19,144],[67,278],[65,235],[8,29],[27,35],[121,156]],[[491382,852419],[109,-1200],[-343,-670],[-120,-125],[-2162,-2249],[107,-322],[99,-297],[-373,-1613],[837,459],[768,421],[363,43],[271,32],[1920,-221],[1340,163],[234,-98],[224,-93],[255,-404],[3,-15],[120,-716],[-940,-2471],[-594,-1562],[-311,-625],[-26,-51],[-927,-1175],[-16,-844],[-16,-860],[-1103,-676],[-587,-360],[-838,236],[-195,251],[-37,49],[-167,2],[433,-477],[599,-165],[1092,-301],[524,362],[103,71],[390,5],[361,4],[964,-575],[652,-836],[762,-977],[407,-1324],[258,-1543],[18,-107],[556,-2087],[348,-684],[59,-116],[605,-330],[992,-541],[1152,-2239],[557,-2230],[161,-817],[575,-2911],[-845,-1186],[716,-508],[303,-4],[206,229],[47,233],[74,362],[150,181],[513,-23],[880,-39],[531,-151],[201,-58],[523,-581],[544,-603],[144,-591],[23,-931],[-486,-2283],[-667,-664],[-85,-84],[-299,-455],[-620,-272],[-261,-210],[-531,-428],[128,-137],[47,-51],[-1,-76],[-23,-910],[-536,105],[-461,-565],[605,-398],[771,-208],[95,-26],[1461,230],[-107,-1068],[-390,-598],[-518,-496],[-591,-565],[-939,-568],[-655,-396],[-3305,426],[-2814,-639],[-154,-35],[-40,-40],[-118,-116],[172,-82],[56,-27],[-28,-444],[-183,-35],[-127,-24],[-1110,310],[-441,123],[-103,58],[-681,382],[-1450,-714],[-108,-304],[-243,-688],[-1,-229],[175,-83],[-585,-1080],[-340,32],[-905,774],[-161,137],[-682,-114],[-481,-136],[-110,-31],[-379,-297],[-713,-558],[-83,-534],[-475,-360],[-870,149],[181,612],[91,311],[554,611],[558,618],[436,693],[232,369],[1704,3480],[3397,350],[1057,2162],[-825,-625],[-803,-609],[-523,-112],[-499,199],[-911,763],[-276,231],[-1525,937],[-880,-724],[-155,-127],[-59,22],[-318,118],[-163,440],[-42,116],[-99,396],[-131,530],[48,228],[51,238],[262,363],[437,137],[372,117],[1624,1221],[227,456],[251,1073],[-38,530],[-50,699],[-189,1091],[-149,-14],[-377,-38],[-390,-218],[-114,-245],[-725,-186],[145,356],[717,934],[1008,1311],[703,345],[1481,312],[304,-208],[300,-207],[201,787],[-11,488],[-21,911],[76,1630],[252,190],[111,84],[171,975],[-106,263],[-58,145],[-1028,-316],[-111,213],[-937,1792],[-29,178],[65,292],[83,371],[260,635],[384,939],[650,461],[-957,-19],[-742,-566],[-340,-259],[-253,-26],[-772,-78],[-511,-171],[-536,-179],[-463,128],[-558,154],[-42,-694],[-472,1004],[-113,561],[4,23],[50,255],[90,53],[96,56],[668,1458],[463,1013],[-172,1142],[-72,1957],[-17,29],[-329,555],[-428,-361],[-362,-307],[-147,-289],[98,1483],[-525,-576],[-110,-121],[-15,-145],[-23,-221],[74,-321],[51,-221],[-323,-3012],[-230,-341],[-562,-40],[14,522],[507,1971],[66,258],[-16,176],[-66,720],[114,563],[211,1037],[3,285],[9,1014],[752,2026],[-1238,-1463],[-386,176],[-258,119],[-288,542],[130,14],[186,19],[691,160],[274,64],[-641,109],[-275,230],[408,636],[-23,732],[-11,339],[427,1391],[-71,338],[-47,229],[-197,-54],[-221,-61],[-112,112],[-62,407],[-63,411],[292,1345],[172,247],[97,139],[627,459],[889,17],[-153,295],[-89,171],[-444,707],[82,350],[138,587],[403,238],[61,36],[-27,763],[85,552],[30,197],[270,516],[1751,-517],[1691,233],[585,151],[163,43],[312,362],[6,-9],[58,-95],[137,-9],[553,-37]],[[488083,819988],[-349,-81],[-274,453],[-200,333],[80,773],[371,120],[368,-96],[526,-457],[153,-133],[-675,-912]],[[479844,831261],[28,-5],[547,-93],[168,375],[414,324],[568,255],[471,212],[335,-47],[568,-79],[282,-332],[667,-1903],[1011,-2127],[-121,-598],[-50,-54],[-92,-99],[-94,136],[-48,70],[108,225],[8,16],[-54,511],[-243,246],[-114,116],[-64,-224],[15,-248],[48,-773],[81,-27],[-51,-751],[-276,-324],[-316,-370],[-844,-234],[-136,78],[-136,78]],[[482524,825615],[509,-654],[-118,-93],[-50,-40],[-306,115],[-135,-714],[59,-271],[129,-595],[289,-695],[66,-158],[-19,-435],[-33,-745],[-189,-286],[419,-2768],[-582,-2138],[-347,-1273],[-671,-535],[-496,76],[-989,-461],[-1081,-503],[-825,-865],[-420,-441],[-643,-218],[-307,-460],[-388,-299],[-681,-524],[-715,-94],[-927,-122],[-998,-224],[-173,121],[-183,128],[1010,873],[2,99],[1,34],[-216,143],[-954,-496],[-136,-70],[-345,-283],[-131,65],[-156,77],[76,81],[926,989],[-174,61],[-100,36],[-152,-55],[-648,-231],[-436,218],[-86,124],[-81,117],[13,197],[256,148],[41,24],[912,1414],[-1368,-299],[-59,505],[817,653],[373,-205],[186,-102],[542,209],[-177,201],[27,434],[19,317],[51,49],[353,345],[582,369],[407,90],[721,160],[645,385],[-4,9],[-302,651],[-96,-126],[-214,-282],[-879,-312],[-761,-271],[-25,442],[673,1163],[856,1478],[265,121],[167,77],[68,170],[20,53],[-168,152],[-194,175],[-1153,-141],[-424,-52],[17,821],[-193,103],[-531,285],[-78,-72],[-55,-50],[-377,156],[-141,58],[-120,537],[477,49],[173,598],[826,762],[147,416],[-65,263],[-313,16],[-787,987],[-386,484],[74,631],[50,63],[182,227],[746,164],[1064,-89],[263,-368],[349,-487],[106,266],[101,254],[227,119],[155,82],[834,-325],[410,220],[-12,48],[-61,243],[267,423],[306,486],[-58,208],[-167,595],[-336,19],[-336,19],[-343,190],[-109,61],[-22,94],[-29,130],[231,248],[150,161],[431,201],[483,226],[-29,191],[-7,50],[-19,30],[-221,344],[87,470],[109,233],[149,316],[1447,606],[83,-156],[575,-1085],[239,216],[35,5],[32,5],[-34,429],[-114,246],[278,1267],[80,41],[45,-20],[462,-208],[500,-495],[-74,-374],[-16,-81],[-602,-718]],[[483089,834697],[-198,-125],[-399,-252],[-616,641],[265,982],[72,32],[774,340],[277,-1390],[-61,-80],[-114,-148]],[[483791,838639],[-1387,-239],[-33,77],[-48,111],[647,365],[294,166],[56,401],[24,174],[-715,8],[-3,5],[-87,188],[50,522],[397,251],[226,-241],[23,-25],[10,-17],[32,-55],[165,-147],[367,-328],[207,-163],[253,-199],[-11,-359],[-124,-132],[-343,-363]],[[482856,845177],[125,-428],[55,-188],[315,-222],[315,-222],[44,-73],[223,-366],[-340,-622],[-48,-88],[-265,-155],[-57,169],[80,511],[34,217],[-592,42],[-795,1331],[-192,-243],[-71,846],[231,159],[308,211],[19,268],[20,280],[194,277],[259,-405],[197,-310],[20,-563],[3,-89],[-30,-122],[-52,-215]],[[482707,849964],[-167,-423],[-352,-892],[-729,229],[-69,-74],[-168,-178],[84,-714],[-94,-360],[-652,-444],[-303,376],[733,551],[18,13],[-353,309],[-351,308],[-85,761],[199,543],[176,-13],[90,-7],[242,-236],[1693,1901],[164,-195],[55,-363],[-107,-889],[-24,-203]],[[329301,603343],[158,-425],[7,-1243],[-263,-664],[-251,-633],[-110,-174],[-17,-18],[-11,-12],[-6,-4],[-121,-70],[-84,14],[-73,188],[-33,85],[-64,321],[-92,1009],[-26,290],[31,227],[14,60],[23,102],[11,25],[16,36],[1,1],[2,3],[27,33],[7,9],[51,36],[2,1],[1,1],[5,2],[5,2],[211,-261],[7,-14],[102,-231],[52,-37],[13,-8],[6,-5],[5,-1],[8,-2],[3,-1],[1,-1],[15,16],[33,50],[95,145],[50,136],[33,91],[-6,247],[-3,6],[-8,11],[-2,3],[-5,8],[-15,22],[-1,2],[-1,5],[-3,8],[-3,7],[-3,10],[-2,5],[-1,5],[-1,4],[-3,16],[-8,41],[-14,103],[-9,68],[2,9],[2,8],[15,76],[3,7],[2,7],[6,15],[18,29],[46,75],[125,166],[25,-42]],[[329806,600429],[87,-122],[123,-246],[1,-7],[0,-2],[0,-5],[3,-31],[0,-9],[1,-9],[2,-18],[3,-36],[-1,-6],[0,-3],[-2,-17],[-4,-39],[-1,-19],[-2,-19],[-76,-160],[-2,-3],[-1,-2],[-10,-12],[-33,-47],[-7,-9],[-67,-12],[-5,-1],[-2,0],[-33,3],[-46,24],[-2,2],[-2,3],[-11,14],[-4,6],[-37,48],[-8,10],[-7,20],[-6,16],[-3,9],[-2,6],[-3,7],[0,8],[-2,30],[-7,158],[24,108],[25,100],[25,101],[40,133],[3,4],[0,1],[5,6],[3,4],[3,5],[16,6],[13,5],[2,-1],[1,0],[2,-1],[4,-1]],[[330536,602343],[-50,-64],[-98,-101],[-80,-68],[-12,0],[-3,0],[-2,0],[-1,7],[-1,3],[-3,10],[8,64],[21,40],[3,6],[194,215],[26,-17],[2,-3],[11,-17],[2,-6],[0,-1],[1,-2],[1,-5],[0,-1],[0,-7],[0,-3],[0,-6],[0,-8],[0,-2],[0,-7],[-19,-27]],[[524772,527194],[-624,-2323],[-683,301],[-68,490],[49,428],[528,1502],[672,461],[126,-859]],[[566764,715738],[449,-308],[831,-572],[1524,54],[1520,-283],[394,-395],[19,-19],[262,-778],[415,384],[216,201],[241,127],[284,148],[85,-295],[64,-219],[-160,-796],[-320,-313],[-140,30],[-535,114],[-1720,-316],[-776,147],[-631,120],[-97,429],[-1420,608],[-1496,218],[-178,26],[-243,445],[68,662],[84,809],[448,-81],[812,-147]],[[577405,718172],[-258,-228],[-36,-33],[-151,1646],[318,558],[290,508],[826,655],[50,-134],[-86,-652],[-8,-55],[-39,-136],[-381,-1305],[-308,-483],[-217,-341]],[[575189,728722],[-259,-163],[-250,-159],[-824,81],[-51,328],[478,487],[609,-156],[233,-40],[30,-177],[34,-201]],[[557182,733056],[642,-1955],[-14,-67],[-53,-263],[-235,78],[-459,153],[-550,451],[173,1031],[20,-3],[85,-17],[278,420],[113,172]],[[572552,731789],[-295,-489],[-398,553],[89,262],[162,81],[22,11],[73,491],[-127,255],[-331,662],[100,191],[45,88],[368,63],[321,-277],[25,-127],[29,-145],[-83,-1619]],[[568214,730277],[-123,-112],[-51,-48],[-258,208],[-242,195],[-471,1224],[-2365,3199],[-501,360],[-352,253],[-58,182],[182,250],[285,391],[508,177],[164,-292],[305,-947],[289,-360],[341,-253],[332,-247],[415,-63],[650,-1945],[841,-977],[151,-175],[44,-623],[-86,-397]],[[573915,736392],[-243,-234],[-527,21],[-427,243],[-918,1002],[40,418],[129,176],[743,522],[480,7],[19,0],[168,-454],[498,-1354],[18,-168],[20,-179]],[[328839,578065],[5,-2],[11,-2],[4,-14],[1,-3],[2,-5],[27,-277],[-19,-257],[-35,-266],[-12,-73],[-25,-154],[-34,-67],[-42,-83],[-58,-57],[-79,-76],[-75,5],[-31,2],[-120,47],[117,682],[10,60],[10,46],[31,139],[4,16],[28,112],[2,8],[88,166],[73,93],[4,-1],[8,-3],[8,-3],[97,-33]],[[329364,579535],[-8,-24],[-34,-98],[-140,-110],[1,83],[11,96],[5,50],[122,308],[1,2],[1,3],[3,4],[0,1],[4,1],[4,1],[8,3],[3,1],[4,-5],[3,-6],[16,-63],[16,-67],[2,-6],[1,-7],[1,-8],[2,-9],[-1,-2],[0,-7],[-5,-72],[0,-5],[-1,-4],[-19,-60]],[[409922,999980],[3284,-287],[1712,199],[2144,-107],[2400,-464],[833,-456],[451,-32],[398,-29],[897,115],[-1068,148],[2414,9],[726,2],[159,-23],[2716,-398],[1619,-573],[-789,-283],[-665,-238],[-1796,-292],[-329,-53],[-1177,37],[-5351,168],[-1626,-42],[-1188,-32],[-1893,-293],[-2393,-372],[-4414,577],[-388,-43],[2128,-263],[205,-25],[60,-25],[620,-259],[-1865,-257],[-2024,-278],[-3771,-219],[-563,-33],[34,-456],[1382,410],[2226,-14],[1141,-8],[210,96],[391,178],[1359,126],[2253,89],[1416,-150],[1947,559],[885,136],[1631,251],[769,32],[1148,47],[7493,-473],[390,90],[1085,250],[2687,307],[377,-54],[319,-46],[189,-249],[485,-644],[-1144,-899],[-378,-151],[-291,-115],[-1451,-174],[365,-15],[586,-24],[1092,284],[1547,402],[631,2],[258,1],[3247,-400],[1693,-120],[3394,-1138],[-18,-29],[-121,-189],[-2462,-1117],[-1902,-483],[-1922,8],[-4003,-822],[-5166,183],[-1893,68],[-6069,-331],[-532,-268],[-7468,-1556],[-256,-156],[-108,-278],[129,-174],[377,-511],[878,61],[582,41],[45,123],[75,205],[1738,620],[2504,354],[4777,675],[3028,261],[8083,-289],[766,-28],[-31,-500],[-38,-603],[-273,-212],[-3127,-770],[-2053,-506],[-469,-194],[-79,-263],[-6,-21],[100,-76],[7,-6],[317,-53],[660,-112],[1062,267],[4703,1181],[2119,167],[632,193],[-60,618],[37,242],[72,475],[95,197],[98,32],[173,56],[5134,403],[315,-214],[155,-213],[296,-402],[12,-240],[15,-305],[-23,-188],[-76,-635],[-468,-1001],[-322,-449],[-964,-817],[-249,-81],[-376,-120],[-1402,-885],[-1471,-927],[-865,-637],[-70,-121],[-446,-782],[-521,-148],[-518,-147],[-236,-211],[-297,-265],[30,-99],[1824,587],[1647,1262],[111,85],[376,112],[1444,428],[461,402],[178,89],[1047,521],[1414,442],[1334,980],[1121,507],[1454,379],[798,117],[432,63],[-20,-16],[-557,-443],[-445,-539],[-263,-319],[976,103],[851,436],[1155,247],[1267,-331],[1751,-458],[588,144],[381,343],[141,127],[103,331],[40,125],[1867,1250],[2041,409],[3694,-64],[1983,-253],[3700,-804],[1216,-545],[1058,-475],[-700,-471],[-1990,-590],[-2952,-1566],[-2736,4],[-515,-250],[780,-428],[323,-176],[39,-174],[-587,-347],[-185,-110],[-1201,-176],[-1831,-685],[-1240,62],[-4024,199],[-2058,-579],[-233,-65],[-3594,593],[-407,-150],[-1170,-431],[-1347,-33],[507,-293],[116,-67],[101,4],[290,10],[1166,380],[1074,351],[1828,-373],[2148,-437],[3018,290],[369,35],[27,-6],[1831,-404],[-155,-809],[-720,-588],[-804,-221],[-3455,-131],[-1520,193],[-2676,341],[-2145,-1064],[-81,-408],[-126,-640],[165,-460],[52,-74],[314,-449],[113,-39],[107,-37],[1208,473],[-317,-36],[-765,-86],[25,325],[560,611],[1201,391],[340,110],[4103,370],[451,-71],[445,-70],[58,-35],[540,-322],[-704,-682],[-748,-724],[-475,-222],[-226,-105],[-221,-52],[-559,-131],[-1182,198],[-826,138],[-697,-229],[-77,-81],[-382,-402],[-325,-852],[-99,-526],[-9,-827],[35,-58],[27,-44],[313,356],[1007,-66],[112,-60],[109,-59],[-43,-498],[-12,-149],[-487,-87],[76,195],[63,164],[92,84],[131,120],[-878,-247],[-1011,-583],[-77,-127],[-315,-513],[254,-425],[-41,-171],[-447,-281],[-8,-5],[-197,8],[-1659,69],[-599,-196],[-784,-255],[505,-509],[-91,-549],[-69,-424],[-486,-1067],[-588,-1291],[-846,-1101],[-202,-262],[-133,-412],[-66,-1010],[38,-1],[1104,-52],[-58,157],[-7,20],[95,470],[25,123],[938,997],[574,283],[296,-137],[410,-190],[-155,-165],[-26,-27],[1209,-447],[2579,-525],[872,-776],[-84,-26],[-1036,-323],[-905,402],[-921,410],[-949,67],[-805,57],[-413,-267],[-305,-196],[738,-188],[197,-50],[16,-303],[-56,-182],[-34,-111],[415,-266],[30,-94],[60,-193],[-516,70],[-518,-184],[773,-34],[1383,-61],[893,-290],[717,-233],[121,-14],[802,-93],[43,36],[448,383],[1006,-137],[647,-422],[116,-298],[86,-219],[18,-1133],[-72,-327],[-379,-543],[-145,-208],[-4370,969],[-5025,203],[-384,186],[156,141],[-77,46],[-209,-42],[-272,-56],[308,-293],[3513,-167],[477,-154],[-657,-367],[-915,226],[-1120,-25],[-424,-10],[663,-87],[558,-74],[210,-100],[521,-250],[-1208,-515],[-219,-94],[-1184,346],[-85,94],[-437,482],[-171,40],[-166,39],[-141,-60],[-273,-117],[-559,-954],[370,-543],[1538,18],[173,2],[91,-264],[78,-223],[-1047,-283],[515,-157],[452,-591],[267,-348],[346,-186],[525,24],[344,16],[459,287],[-43,116],[99,18],[202,37],[1519,-546],[564,111],[706,138],[275,-98],[398,-634],[-46,-404],[-228,-8],[-682,-23],[-1740,-349],[-1785,2],[-1275,2],[249,-65],[520,-135],[743,32],[854,36],[930,-105],[698,-78],[1142,-23],[300,-132],[215,-96],[371,-422],[373,-426],[361,-1280],[145,-515],[-119,-1113],[-186,-346],[-229,-217],[-169,-160],[-827,26],[-285,138],[-52,175],[-31,106],[-1304,473],[-465,25],[-219,11],[-1224,631],[-154,327],[-160,120],[-509,383],[-1921,712],[-82,-96],[-51,-61],[834,-317],[408,-155],[1056,-651],[-2025,147],[1110,-220],[994,-198],[872,-521],[1288,-769],[248,-315],[-567,-165],[-432,78],[-373,67],[-350,-147],[-766,-321],[-888,2],[-438,2],[-660,424],[-569,116],[-387,79],[1942,-1218],[939,210],[763,525],[942,-115],[315,-190],[135,-82],[-152,-432],[-154,-439],[-112,-1126],[1712,-95],[1630,-91],[1710,-958],[-577,-808],[-533,-421],[-362,-105],[-385,-112],[-1423,248],[-268,559],[-51,104],[-442,352],[-200,4],[-2502,49],[-1283,221],[346,-289],[264,-221],[388,83],[820,175],[1097,-184],[675,-113],[179,-236],[618,-815],[17,-248],[9,-141],[-2788,-391],[-1147,433],[-788,297],[-63,193],[-173,90],[-410,216],[73,-141],[210,-406],[-506,-478],[-284,-268],[1538,-1374],[-275,955],[535,278],[2751,-984],[324,-19],[447,-27],[279,-2077],[-106,-285],[-350,-205],[-2356,98],[-1012,-570],[-1166,-657],[-737,-6],[-34,0],[-166,51],[-1231,376],[-1824,866],[-1158,732],[-142,286],[-58,116],[103,255],[37,92],[940,-82],[2573,-899],[-2097,1016],[-1827,393],[-544,-77],[-300,-464],[18,-144],[57,-463],[-60,-302],[-9,-43],[-592,210],[-853,303],[-713,778],[-770,841],[-196,119],[-294,179],[-202,-171],[1180,-1063],[1108,-773],[728,-508],[-2153,-806],[-171,-370],[-19,-42],[-126,-94],[-417,-314],[-664,-121],[-244,16],[-266,19],[-365,157],[-749,321],[-968,502],[-1079,560],[-316,-253],[1704,-984],[453,-24],[607,-32],[144,-181],[78,-97],[-603,-310],[-533,-274],[-843,276],[-44,-8],[-1751,-313],[2221,-119],[586,176],[539,163],[925,-17],[936,-18],[2143,-637],[170,-330],[6,-11],[-321,-267],[-77,-65],[-2157,-767],[-1506,52],[-471,203],[-237,103],[-1057,-370],[911,183],[206,-76],[120,-45],[322,-191],[-94,-190],[47,-160],[641,-566],[737,498],[1622,686],[543,-223],[1453,-596],[185,-653],[91,-323],[-157,-173],[-1239,-366],[-1748,-23],[-744,-188],[-315,-79],[467,38],[1259,101],[597,-692],[509,453],[558,228],[140,57],[958,-14],[3412,-1864],[1304,-713],[104,-310],[200,-599],[-411,-923],[1355,642],[1,-132],[1,-79],[-485,-1027],[159,165],[580,602],[755,125],[380,63],[-69,-93],[-460,-624],[-762,-145],[-128,-24],[-288,-204],[-101,-517],[197,-1154],[534,891],[555,456],[298,9],[324,10],[247,-345],[125,-174],[-425,-1996],[411,-295],[118,-84],[-18,-127],[-163,-1155],[118,-739],[90,-566],[315,-100],[286,-90],[-493,-603],[-257,-103],[-1823,209],[-63,503],[-63,508],[27,1267],[-208,102],[-206,-220],[-235,-741],[305,-750],[-188,-753],[-1289,-77],[-775,136],[-1311,805],[-301,185],[-362,458],[-142,431],[-216,660],[-34,465],[-455,1032],[-16,37],[-661,1079],[-1908,408],[-1013,841],[-1021,179],[-927,161],[-602,-270],[-255,30],[-467,54],[-927,694],[-1148,1262],[-344,181],[-652,341],[-841,249],[-703,207],[-102,-187],[58,-152],[132,-352],[1881,-407],[410,-582],[572,-812],[-923,-179],[-396,-77],[2749,-315],[3247,-371],[163,-149],[794,-732],[-34,-342],[-583,-694],[-2385,-1094],[-867,-66],[-1373,-105],[-468,45],[-309,170],[-430,238],[-714,-91],[-203,-26],[-327,-261],[727,-367],[48,-151],[7,-20],[-167,-383],[-196,-452],[-574,-730],[-633,-300],[-274,-130],[-1881,-380],[87,-210],[70,-171],[139,-40],[1680,468],[552,154],[1180,-568],[3565,495],[173,-25],[154,-22],[515,-609],[-786,-322],[-217,-89],[-85,5],[-332,19],[-636,-269],[-1032,-436],[-1598,-356],[-455,166],[-589,-141],[-541,-128],[47,-114],[93,-230],[176,-2],[2017,-23],[424,-242],[167,-95],[1274,1282],[472,294],[377,-43],[497,-56],[1757,301],[1894,739],[75,29],[2385,-1125],[1562,-539],[2918,-323],[1841,451],[61,-55],[68,-60],[-661,-872],[-980,-226],[-1110,-255],[-110,-93],[-99,-83],[0,-41],[-5,-527],[-1529,-236],[-340,-1348],[-393,-33],[-314,-27],[-985,-577],[-1842,-1081],[-369,-897],[-522,-340],[-438,-286],[-411,-464],[-67,-77],[-56,-32],[-1444,-828],[-921,-401],[-3596,-932],[-492,-39],[-697,-55],[-629,-463],[-1302,-307],[-529,-445],[-465,-391],[-1330,1194],[-439,-415],[-181,-172],[-48,-143],[-60,-180],[41,-160],[18,-71],[-808,-555],[-774,-237],[-630,-193],[-604,46],[-862,66],[-627,880],[-346,109],[-342,108],[-630,672],[-339,438],[-197,255],[-269,696],[-292,24],[-41,-266],[-68,-445],[17,-71],[31,-128],[209,-414],[506,-244],[442,-1896],[-717,-881],[-1144,-772],[-597,-402],[-781,-824],[-488,-1362],[-115,-771],[-1196,-1335],[-226,-688],[-735,-1406],[-209,-191],[-429,-392],[-260,-477],[-276,-505],[-1413,-517],[-280,81],[-504,146],[-535,549],[-168,-136],[384,-1408],[-265,-120],[-377,-170],[-651,-886],[-1227,326],[-1562,-51],[-99,-70],[-48,-34],[-21,-624],[-11,-325],[-134,-194],[-563,445],[-758,600],[137,572],[161,666],[579,621],[231,249],[28,85],[59,180],[-1591,169],[-110,-63],[-366,-211],[51,-184],[128,-462],[-112,-586],[-295,-536],[-229,-416],[-904,429],[68,-645],[728,-521],[130,-251],[56,-108],[-254,-573],[-114,-258],[-691,148],[-390,-122],[20,-134],[32,-209],[-2004,809],[-471,-625],[-1365,-260],[-498,-293],[-26,-15],[5,-181],[845,-393],[10,-738],[-76,-441],[-127,-151],[-299,-354],[128,-203],[-719,-365],[-67,-34],[-256,164],[-417,267],[-1220,-118],[-465,-644],[214,-415],[868,-938],[291,-600],[260,-537],[179,-525],[-43,-93],[-168,-358],[-2495,-173],[-149,-108],[-31,-156],[-27,-133],[375,-320],[362,-307],[644,-159],[674,225],[617,-341],[122,-186],[-287,-587],[-74,-413],[128,-841],[64,-133],[74,-158],[135,36],[44,-238],[12,-65],[-363,-113],[-893,107],[-1092,478],[-30,61],[-120,244],[-177,91],[-65,34],[-112,-136],[-108,-130],[69,-257],[9,-37],[1331,-427],[752,-608],[-131,-131],[-237,-238],[-259,-42],[-204,-34],[-55,-282],[-32,-167],[-186,-160],[-62,26],[-721,304],[-752,550],[-68,-72],[-371,-395],[42,-92],[177,-387],[835,-881],[111,-470],[-500,-287],[-563,-322],[-13,-220],[328,-1067],[-252,-148],[-308,163],[-175,92],[-463,-25],[-906,-50],[-12,-376],[-171,-413],[-466,-129],[-571,131],[-195,45],[-45,-177],[1017,-433],[584,-739],[214,-425],[-1631,613],[-39,-139],[14,-88],[14,-84],[948,-724],[966,-240],[25,-119],[42,-208],[-32,-317],[-11,-101],[-40,-100],[-180,-443],[16,-130],[40,-319],[309,-179],[210,-121],[-332,-1032],[-11,-36],[-147,-141],[-356,-343],[74,-82],[81,-90],[-49,-578],[-236,-70],[-252,-75],[-896,158],[109,-242],[907,-327],[219,47],[204,43],[-280,-794],[-173,-157],[-174,-157],[-410,29],[53,-80],[425,-625],[-1165,-466],[-603,-45],[1018,-214],[414,-88],[-207,-535],[-241,-281],[-28,-34],[-91,-33],[-295,-109],[303,-576],[56,-379],[105,-712],[-125,-124],[-272,-268],[-547,-41],[-219,-17],[-1507,206],[1019,-464],[365,-167],[-6,-93],[-6,-90],[-756,-636],[-20,-16],[60,23],[567,218],[660,-158],[219,-409],[-60,-51],[-78,-66],[-69,25],[-187,70],[-260,-220],[232,-27],[130,-138],[147,-157],[29,-78],[59,-162],[-59,-137],[-53,-124],[-1400,343],[-746,183],[-267,568],[-115,245],[-522,-403],[-568,-440],[-185,-543],[-46,-134],[-629,-322],[-149,51],[-18,55],[-198,612],[188,992],[-490,-555],[-612,-335],[-12,378],[44,52],[642,771],[577,1674],[-226,-77],[-14,-4],[-522,-786],[-125,-35],[-531,-150],[-47,619],[-5,74],[-437,0],[-689,-1],[-112,562],[89,89],[83,84],[589,1245],[184,389],[-405,-311],[-540,-414],[-578,69],[-186,-499],[-132,63],[-422,203],[840,693],[226,18],[221,18],[696,336],[254,296],[313,363],[-21,160],[-18,131],[-176,-31],[-188,-33],[-627,-844],[-1000,-526],[-76,35],[-49,22],[-172,322],[978,543],[273,547],[-384,788],[-777,-211],[230,-145],[392,-247],[117,-344],[-338,-253],[-501,-375],[-739,371],[-515,-446],[-376,-875],[-86,-66],[-403,-304],[-379,155],[117,294],[88,219],[120,73],[-182,195],[-1933,-249],[-475,-231],[-87,-43],[336,29],[521,45],[15,-130],[18,-161],[-400,-118],[-28,8],[-566,156],[-150,-2],[-121,-1],[78,234],[81,246],[442,300],[268,182],[-69,79],[-432,-20],[-95,-5],[-173,-57],[-479,-159],[-741,43],[9,35],[39,140],[1513,85],[5,32],[20,120],[-65,154],[-81,193],[-1057,488],[-643,-123],[-137,235],[-79,135],[271,445],[164,268],[-144,85],[-457,270],[-709,-159],[-41,-9],[-97,20],[-346,72],[1270,575],[21,10],[59,201],[-907,-356],[-304,-119],[-290,484],[508,2217],[-657,-525],[-130,-21],[-300,-48],[394,969],[-6,201],[-124,-17],[-856,-120],[-207,481],[368,188],[212,541],[-456,288],[-1029,650],[-204,-54],[-470,345],[-18,33],[-231,412],[-36,95],[-36,93],[77,320],[132,556],[323,370],[96,153],[551,891],[-684,-688],[-237,847],[-415,115],[-498,138],[-62,303],[92,443],[23,46],[171,327],[795,388],[-361,84],[-953,-121],[-187,-24],[-38,-15],[-651,-258],[-393,779],[-11,23],[17,84],[38,191],[837,212],[-327,-36],[-694,550],[-59,47],[47,468],[43,433],[-669,-64],[-480,473],[4,279],[106,99],[301,102],[339,115],[721,524],[344,250],[-901,-367],[-254,109],[-213,91],[-252,373],[-129,501],[474,81],[1399,240],[756,374],[41,69],[95,160],[-426,10],[-60,2],[-86,-44],[-848,-439],[-486,-101],[-645,-134],[-501,193],[-271,406],[-47,71],[818,162],[379,-264],[331,25],[686,412],[576,982],[872,-146],[249,-42],[430,302],[-47,275],[-247,-176],[-417,162],[-389,151],[-630,453],[391,630],[425,95],[51,-18],[499,-179],[127,-103],[12,-39],[211,-695],[192,-315],[625,-434],[584,-407],[277,43],[-2022,2318],[-681,157],[-481,1160],[-186,450],[-85,466],[171,265],[-461,111],[-19,-3],[-89,-17],[157,-509],[589,-1914],[-300,-261],[-520,-452],[-38,347],[-53,486],[-404,-58],[-71,-10],[-164,-171],[-102,-105],[-600,-1280],[-597,-1273],[-626,33],[-195,10],[-77,1143],[184,1394],[877,710],[194,156],[58,40],[336,229],[170,172],[116,117],[-757,280],[-501,-711],[-24,-55],[-159,-350],[-645,-237],[-76,221],[-26,74],[237,721],[-217,274],[23,426],[52,944],[-5,11],[-196,456],[-57,3],[-87,4],[-776,-543],[-63,188],[-124,367],[449,441],[396,224],[1554,881],[-247,58],[-237,55],[-14,77],[-25,133],[264,165],[413,257],[392,149],[330,125],[765,54],[299,21],[376,-243],[412,-265],[485,24],[12,1],[15,182],[-371,206],[-95,53],[-204,44],[-1198,258],[-841,-376],[-1196,-534],[75,-380],[7,-37],[-407,-486],[-987,-459],[-481,219],[21,432],[-324,525],[-408,285],[-499,139],[-406,112],[62,298],[21,101],[421,380],[225,203],[572,124],[269,58],[101,-20],[867,-173],[1322,492],[-56,472],[-1687,-407],[-2249,-542],[-247,870],[515,666],[1207,1007],[716,604],[1336,1126],[667,472],[766,542],[515,201],[722,281],[482,513],[350,373],[-627,-120],[-28,-5],[-188,-118],[-1409,-886],[-3934,-3510],[-1148,-686],[-412,-59],[-486,84],[303,677],[-197,616],[-122,380],[151,694],[1272,17],[1786,23],[226,160],[-1137,163],[-1168,-149],[-449,267],[-185,111],[121,208],[282,164],[299,175],[687,-184],[910,105],[120,149],[85,105],[-105,216],[-173,357],[-909,-333],[-115,-42],[-115,72],[5,67],[14,185],[152,110],[77,55],[792,74],[220,21],[667,-225],[396,59],[-87,403],[-47,112],[-1523,-168],[-1957,65],[-876,979],[-204,67],[406,566],[4683,1092],[1699,-229],[608,-1031],[159,-112],[92,-64],[84,-2],[120,-1],[796,318],[-240,-82],[-178,-60],[-1551,1254],[-1422,54],[-1636,-183],[-1272,-225],[-349,-62],[-551,-196],[-990,-352],[-134,119],[-116,102],[54,612],[81,225],[76,211],[430,364],[251,121],[982,475],[465,446],[458,440],[400,129],[387,52],[539,72],[1607,-872],[1128,334],[2225,-1039],[-365,325],[-310,275],[162,92],[156,89],[1106,161],[1137,166],[-502,181],[-381,138],[-510,-268],[-550,-288],[-1103,-171],[-657,532],[1330,390],[860,253],[-80,259],[-773,-15],[6,-44],[39,-257],[-535,-165],[-595,-183],[-62,54],[-127,109],[-173,471],[284,237],[14,12],[360,-77],[128,-28],[86,221],[-168,257],[-35,54],[-518,-128],[-554,-137],[60,-106],[332,-585],[-409,-459],[-55,-61],[-950,-73],[-191,57],[-1016,304],[-161,155],[-133,128],[286,224],[184,143],[504,4],[325,2],[917,490],[-58,13],[-86,19],[-3730,-1223],[-787,-824],[-490,-345],[-557,-391],[-132,-14],[-110,-11],[-134,488],[44,60],[509,693],[781,1415],[531,203],[472,181],[297,-152],[529,-270],[1070,-93],[304,167],[-250,9],[-1018,38],[-823,288],[-227,195],[-332,287],[-327,220],[-301,202],[2102,129],[119,-61],[1379,-703],[1452,13],[406,3],[171,-34],[476,-97],[1475,-754],[649,120],[-2311,1163],[-113,468],[61,374],[18,110],[383,1001],[-1186,-339],[-129,-712],[-608,-117],[-547,-106],[-658,-3],[-756,-3],[-853,257],[-824,248],[713,414],[790,457],[20,280],[-454,35],[168,56],[522,174],[1225,-106],[1054,-91],[345,68],[877,175],[185,103],[76,43],[243,853],[-520,725],[-11,41],[-83,327],[249,1053],[201,200],[612,-45],[139,-308],[770,-643],[612,543],[-457,438],[224,190],[313,265],[-653,398],[-455,-215],[-744,-351],[-621,133],[-63,13],[25,32],[247,318],[220,30],[64,9],[728,1260],[-452,77],[-40,774],[198,106],[718,-176],[123,183],[539,2009],[-2826,354],[-405,-194],[-364,-174],[-1283,271],[-1389,762],[-386,326],[-258,219],[-1178,539],[-2335,420],[-973,917],[-591,556],[80,316],[1242,677],[3208,-358],[897,-253],[409,-115],[1982,-1365],[639,-283],[669,-180],[1710,-460],[253,32],[160,20],[131,1059],[-74,47],[-97,62],[-561,-661],[-872,136],[-134,153],[-235,269],[36,398],[6,72],[595,-100],[527,-89],[453,357],[-357,217],[-275,167],[-1548,88],[-49,114],[-68,159],[331,113],[160,54],[1647,-156],[-620,444],[-295,213],[-1145,264],[-1382,707],[80,233],[93,37],[94,37],[642,-262],[805,-329],[589,293],[-400,662],[-1088,-111],[-1267,-129],[-205,75],[-248,90],[588,454],[243,189],[974,101],[230,296],[-397,350],[-357,-96],[-1670,-1140],[-439,123],[65,281],[210,225],[634,679],[1556,475],[266,-27],[436,-45],[163,177],[-56,112],[-1059,54],[-1924,-706],[-580,-14],[-914,286],[327,252],[420,323],[1230,236],[1211,232],[192,200],[256,268],[69,213],[-83,72],[-84,74],[-260,-40],[-223,-403],[-756,-290],[-338,39],[-544,62],[-1023,517],[-733,370],[319,584],[-1102,-104],[-583,-520],[-379,-339],[-1021,64],[140,-651],[257,-138],[302,-160],[-102,-731],[-696,-228],[-646,-211],[-1070,-67],[-544,106],[-1242,243],[-903,1100],[-415,505],[352,405],[229,61],[363,95],[1777,923],[-925,-64],[-493,211],[-540,230],[19,47],[82,200],[1819,1342],[16,367],[-132,447],[-858,-170],[-649,66],[-401,342],[356,311],[178,157],[1007,-140],[804,-112],[84,156],[-88,857],[262,862],[166,77],[125,58],[-129,220],[-345,587],[-199,195],[-118,116],[-625,90],[-1352,195],[50,253],[8,37],[514,255],[359,179],[-45,307],[435,706],[-165,391],[-566,324],[-1507,863],[-13,243],[-19,387],[171,343],[413,236],[-57,447],[-1404,825],[7,624],[-7,12],[-246,416],[-697,-394],[-1190,-190],[-790,-126],[498,375],[341,1],[517,131],[500,126],[752,403],[-225,507],[-228,512],[863,274],[-58,233],[-863,660],[-632,231],[-457,482],[-21,23],[-253,649],[-85,220],[-1072,246],[-1791,757],[-698,1115],[-335,357],[-49,52],[200,379],[725,723],[-219,324],[-440,652],[-914,161],[-644,-84],[-270,-35],[-95,135],[-164,232],[38,402],[-969,37],[-199,7],[-580,754],[-907,337],[-2038,337],[-351,442],[-2473,321],[-1708,222],[-1699,486],[-957,273],[-163,-100],[-34,-363],[-781,-864],[-500,-17],[-485,-17],[-131,403],[-74,225],[-558,-59],[-352,-38],[-519,-165],[-773,-246],[-1287,-867],[-489,26],[-710,421],[725,739],[252,69],[-97,43],[-414,181],[-1343,-160],[-213,-239],[-128,-143],[-83,-262],[-659,318],[-995,479],[-228,-61],[-242,-65],[-506,-455],[1543,-866],[-125,-173],[-155,-218],[-1413,243],[-2390,411],[-1136,457],[-170,69],[-391,191],[-2257,1105],[226,341],[2109,684],[1484,157],[209,627],[-701,-109],[-212,-33],[-641,34],[-1130,60],[-2410,529],[-106,153],[-49,70],[44,91],[38,78],[-217,-32],[-1410,-210],[-2083,1303],[109,310],[459,378],[1220,455],[756,104],[791,108],[3985,-351],[1043,-92],[887,95],[-24,36],[-76,112],[-505,3],[-553,3],[-1765,375],[854,249],[759,221],[1358,71],[2208,114],[2317,-497],[537,749],[13,3],[415,80],[80,326],[-472,555],[-497,229],[-468,215],[-1251,128],[-395,-126],[-110,-341],[-52,-160],[-1113,-346],[-1827,-38],[-975,-20],[-493,-81],[-1315,-214],[-2042,491],[-86,816],[-493,184],[-1158,431],[-1581,-150],[-44,-4],[-88,23],[-494,127],[427,334],[-263,193],[-1225,150],[-1312,504],[-1220,707],[-490,283],[234,382],[37,60],[525,1650],[133,49],[4946,872],[2138,664],[299,34],[1874,218],[514,199],[19,173],[13,115],[-366,110],[231,192],[1104,363],[539,177],[2459,346],[801,113],[3283,-83],[164,79],[985,476],[2189,1623],[178,131],[113,193],[13,21],[-2,459],[-200,165],[-383,833],[-122,267],[88,903],[1694,247],[1669,579],[-377,271],[-195,139],[-830,-715],[-3602,-399],[-3861,390],[-199,166],[-771,645],[-69,648],[119,213],[805,259],[1044,335],[586,495],[161,135],[2438,681],[485,224],[581,269],[393,207],[353,186],[416,418],[1683,774],[977,449],[1103,-216],[495,-847],[1044,-897],[55,-14],[329,-89],[-50,172],[-621,514],[-534,441],[-593,1133],[360,163],[555,250],[1008,-54],[847,-45],[1331,-469],[647,-227],[1259,208],[95,189],[174,343],[81,974],[27,328],[235,726],[-482,344],[-626,446],[-275,391],[209,285],[177,90],[217,109],[949,206],[1863,405],[1755,-184],[1675,-175],[251,-98],[239,-92],[31,-65],[148,-308],[-126,-383],[124,-108],[1502,-378],[903,-228],[912,-414],[1455,-660],[1374,-425],[187,39],[30,6],[-3092,1589],[-45,15],[-729,248],[-431,57],[-363,105],[-661,423],[-21,28],[-528,727],[-1758,438],[-901,225],[1395,379],[1031,280],[6624,861],[1030,134],[314,-58],[1127,-205],[-8,15],[-182,382],[2631,439],[1090,-378],[1402,-1100],[89,-721],[91,-738],[-59,-118],[-103,-203],[-255,-150],[-258,-152],[-171,-497],[128,-775],[501,-201],[39,-16],[290,-20],[314,1274],[718,781],[508,552],[480,125],[604,156],[2863,-527],[63,-12],[155,-45],[1562,-453],[2168,-1188],[790,18],[207,5],[-1592,753],[-2288,1083],[132,33],[262,65],[3053,-479],[1153,325],[-3577,1592],[-978,1387],[-79,247],[-60,191],[1379,60],[1371,60],[2267,-207],[4608,-1522],[374,-124],[3238,-637],[377,-165],[409,-179],[711,-602],[1913,-946],[1555,-23],[752,173],[86,160],[-350,320],[-899,349],[-97,176],[251,411],[289,474],[-562,367],[95,401],[733,191],[626,163],[4127,-697],[700,86],[300,36],[-1072,361],[-1535,35],[-931,178],[-430,82],[-129,155],[-100,122],[68,8],[-20,156],[-11,82],[-4865,1811],[-367,259],[8523,84],[329,-28],[1473,-124],[449,-1097],[438,-572],[12,-15],[125,21],[118,19],[101,179],[54,97],[-177,576],[-71,110],[-117,182],[-269,139],[-374,193],[491,146],[678,-117],[636,-109],[1739,-575],[918,-303],[1090,-1213],[379,-18],[48,109],[66,151],[-434,1585],[-518,286],[-5755,802],[-6788,-20],[-1191,433],[512,262],[1754,-270],[1044,3],[1113,3],[-4119,459],[-1276,552],[-77,34],[107,145],[103,138],[2903,88],[329,-37],[3633,-410],[74,18],[67,17],[-1406,458],[-531,-14],[-312,286],[464,82],[306,54],[372,175],[1386,49],[201,7],[436,-121],[-49,-109],[32,-16],[62,-32],[1026,29],[512,-128],[537,-135],[355,-255],[111,-79],[2248,-727],[2172,-309],[898,4],[579,2],[401,-142],[586,-206],[627,-410],[562,-367],[120,8],[102,6],[182,318],[-758,280],[-938,615],[339,173],[168,86],[3514,56],[-1679,71],[-1340,58],[870,256],[1450,136],[715,68],[79,160],[-2966,337],[-117,49],[-335,140],[65,1102],[251,-23],[1702,-157],[220,245],[263,292],[947,96],[3373,-873],[73,16],[83,17],[-528,390],[-678,271],[-306,123],[696,175],[769,193],[2091,-52],[1659,53],[2103,67],[2315,247],[1547,-10],[1433,-9]],[[379906,860836],[-20,-102],[-52,-272],[-621,199],[-182,-498],[-110,-300],[-465,249],[-479,256],[-150,371],[-186,116],[-212,132],[37,438],[91,-18],[164,-32],[2185,-539]],[[395935,894829],[225,-504],[125,-282],[5,-112],[5,-110],[-185,-94],[-999,-510],[-248,178],[-283,202],[-150,410],[84,582],[7,49],[56,-7],[173,-21],[524,698],[48,-16],[226,-72],[387,-391]],[[358318,919038],[634,-276],[-342,-1149],[-207,-698],[-441,-302],[-324,126],[-104,265],[-290,738],[1047,1126],[-550,-293],[-485,77],[74,48],[349,220],[639,118]],[[355977,917394],[-327,-401],[-284,-349],[-458,-324],[-2697,-890],[-1026,-338],[-610,54],[-378,163],[-561,243],[-318,313],[-130,128],[87,137],[106,170],[1216,-183],[437,60],[245,34],[129,77],[-61,620],[-362,-188],[-649,-338],[-839,500],[-1448,155],[-346,187],[-311,351],[-152,172],[27,52],[115,224],[388,223],[10,6],[9,1542],[-110,216],[-41,645],[57,105],[36,68],[569,294],[410,211],[436,-48],[743,-83],[1199,-290],[883,-213],[659,-493],[595,-755],[294,-373],[1712,-619],[447,-403],[85,-76],[214,-586]],[[422573,922050],[-521,-4],[-80,60],[-163,124],[161,464],[64,182],[466,311],[1322,883],[4821,1646],[278,-452],[225,-298],[406,-539],[101,-392],[-296,-713],[-11,-26],[-946,-311],[-348,-114],[-292,-5],[-1126,-20],[-2533,-496],[-1528,-300]],[[353757,926491],[-323,-62],[-581,-109],[-403,288],[-220,654],[57,93],[97,160],[395,150],[545,-54],[508,-70],[431,-60],[61,-474],[-567,-516]],[[439095,934180],[-11,-338],[-102,-50],[-204,-101],[-798,243],[-733,138],[-175,33],[-251,-116],[3,-75],[9,-187],[170,-216],[1687,-568],[-71,-296],[-73,-303],[-301,-266],[-225,-14],[-187,-11],[-883,302],[-1304,1002],[-1513,526],[-1091,602],[-617,339],[-199,231],[-69,81],[-102,413],[-112,457],[57,353],[794,207],[2415,-232],[634,-441],[436,-303],[2631,-1249],[53,-47],[132,-114]],[[438669,936851],[86,-188],[486,-1078],[-258,-192],[-2062,363],[-417,430],[-139,143],[-696,175],[-1523,113],[-1469,109],[-822,-107],[-44,110],[-117,288],[101,155],[3732,465],[1055,-205],[1153,-224],[934,-357]],[[433877,939364],[1081,-469],[547,-237],[-1047,-99],[-4547,625],[3234,-499],[2658,-410],[515,-208],[-261,-270],[-4334,-335],[-503,96],[-1844,351],[-598,242],[-72,30],[-94,103],[-123,134],[700,445],[299,191],[203,468],[45,102],[516,71],[873,118],[851,-138],[1901,-311]],[[444291,947373],[-404,-47],[-752,183],[-525,452],[169,1006],[321,254],[1116,-98],[933,-935],[-635,-603],[-223,-212]],[[450512,950901],[-948,-575],[760,-681],[418,-172],[47,-19],[48,24],[337,168],[65,163],[31,77],[352,84],[42,10],[222,-178],[-150,-372],[-157,-391],[-518,-385],[-24,-17],[-111,11],[20,20],[187,194],[-9,44],[-19,94],[-262,84],[-347,112],[-357,6],[-333,5],[-829,-182],[-540,-119],[-306,55],[-596,106],[-83,187],[25,432],[71,1234],[938,323],[546,-377],[333,18],[178,116],[120,79],[-61,192],[21,72],[30,105],[152,108],[21,15],[500,-370],[73,-117],[113,-183]],[[447959,958533],[-110,-545],[54,-235],[96,-417],[731,-1890],[-10,-804],[-43,-9],[-91,-19],[-1852,3294],[250,418],[390,-64],[207,-34],[170,102],[-78,53],[-105,71],[-5,-1],[-305,-77],[-141,36],[-76,19],[-315,763],[215,15],[298,21],[323,-250],[302,-235],[47,-104],[48,-108]],[[357791,990385],[-1285,-95],[-334,-25],[-3769,789],[-334,126],[-453,629],[307,256],[363,302],[1142,-125],[1719,-848],[956,-332],[649,-225],[344,-150],[695,-302]],[[375837,991013],[-964,-243],[-2318,1051],[-1732,476],[-1221,335],[-546,431],[-677,534],[-1017,556],[1337,131],[1192,116],[1309,-95],[845,-61],[2087,-569],[868,-236],[244,-112],[1287,-588],[90,-248],[-534,-152],[-975,-280],[-455,-327],[1180,-719]],[[703943,192437],[65,16],[189,48],[44,-5],[25,-4],[11,-2],[24,-6],[29,-7],[26,-6],[171,-102],[368,-482],[-382,-385],[-11,-9],[-5,-5],[-4,-3],[-2,-2],[-3,-2],[-63,-36],[-9,-5],[-8,-5],[-4,0],[-24,-1],[-221,10],[-4,0],[-30,2],[-3,0],[-6,1],[-4,4],[-42,47],[-3,3],[-4,5],[-15,20],[-11,14],[-4,5],[-26,34],[-3,5],[-1,1],[-3,4],[-193,423],[-200,439],[164,114],[103,-77],[69,-51]],[[297761,616784],[0,-428],[-796,565],[-400,285],[-187,453],[117,226],[78,17],[84,18],[975,-801],[129,-335]],[[841473,441298],[-198,-109],[-106,236],[-8,669],[1624,1816],[-120,-439],[58,-304],[-39,-514],[-1211,-1355]],[[835073,445291],[-573,-315],[-591,242],[-930,1803],[-732,997],[-1180,188],[-411,389],[-284,732],[236,672],[505,383],[802,41],[1208,439],[372,-788],[1471,-1966],[526,-1134],[126,-378],[5,-385],[-253,-567],[-297,-353]],[[847464,449879],[-890,-2256],[-971,-1864],[-1681,-1114],[-902,-38],[-51,199],[92,588],[140,316],[348,2941],[151,583],[671,1240],[192,154]],[[844563,450628],[739,810],[465,148]],[[845767,451586],[1313,1276]],[[847080,452862],[395,1289],[92,591],[204,172],[1158,448],[4546,899],[127,-300],[-824,-1466],[-366,-345],[-481,-113],[-67,-36],[-235,-216],[-173,-444],[-1750,-1504],[-1379,-775],[-863,-1183]],[[842474,456207],[-827,-130],[100,619],[268,374],[276,8],[282,-153],[-99,-718]],[[844076,457248],[-994,-2077],[-791,82],[-49,236],[417,1211],[937,505],[480,43]],[[824250,456152],[-498,-2682],[-459,-491],[-599,198],[-766,855],[143,-78],[306,6],[62,188],[-52,1393],[50,593],[536,910],[306,221],[783,-478],[177,-352],[11,-283]],[[845269,456744],[-453,-1397],[-228,-64],[-394,584],[176,674],[203,243],[166,-457],[461,1153],[109,-139],[-40,-597]],[[845897,457777],[361,-254],[1143,117],[159,-391],[27,-616],[-93,-152],[-1406,-486],[-636,420],[72,721],[373,641]],[[828893,456709],[760,-189],[245,150],[724,-1301],[48,-718],[257,126],[-305,-704],[-669,-430],[-753,-250],[-348,622],[-317,-55],[-779,-597],[-2408,-1295],[-351,-3],[-710,535],[-8,627],[222,491],[-112,507],[20,656],[148,394],[944,1060],[730,-270],[506,-766],[507,-1088],[1255,400],[76,222],[-140,391],[-860,676],[-631,1254],[101,520],[445,287],[276,-41],[1127,-1211]],[[841437,457871],[246,-1008],[-360,-730],[-273,-139],[-10,-1076],[-1024,-759],[-1225,-505],[-942,-99],[-1522,-562],[-500,103],[-809,628],[-1176,188],[-717,-406],[-330,485],[-1,981],[205,712],[401,279],[470,605],[203,310],[424,83],[1545,-711],[1006,-1062],[1634,416],[690,-538],[904,211],[1075,1706],[77,329],[-81,154],[-218,-89],[-58,-171],[-161,60],[175,676],[221,135],[131,-206]],[[820456,457773],[522,-597],[426,-763],[34,-254],[-276,-585],[-1315,-1048],[-1373,1598],[-158,8],[-454,1332],[53,507],[1063,-592],[419,85],[533,709],[526,-400]],[[860500,458225],[-179,-24],[-370,905],[13,448],[239,241],[360,-158],[140,-185],[12,-317],[-215,-910]],[[851987,460554],[44,-544],[-813,-1152],[-808,277],[-997,-549],[116,919],[274,816],[193,131],[513,-290],[1262,919],[216,-527]],[[884107,456149],[-1778,-126],[346,1892],[383,1420],[519,1588],[383,636],[488,426],[686,221],[169,-14],[512,-553],[295,-499],[171,-556],[-94,-844],[-795,-2060],[-592,-1097],[-693,-434]],[[865629,460666],[-936,-2079],[-501,10],[-65,649],[287,1662],[703,1685],[228,784],[376,314],[75,-572],[-22,-1168],[-145,-1285]],[[817005,464547],[-1707,-1488],[-659,80],[-363,206],[-127,315],[-47,-228],[77,-203],[-342,-11],[-782,350],[25,620],[434,890],[3117,79],[331,-350],[43,-260]],[[873455,467792],[197,-1013],[-454,-1174],[-431,-692],[-280,473],[-125,480],[175,1863],[173,-300],[155,-645],[-102,928],[-229,400],[12,852],[85,258],[84,-118],[380,-987],[360,-325]],[[874230,468629],[-293,-389],[-146,38],[-346,527],[-239,1316],[675,541],[161,5],[335,-861],[-147,-1177]],[[797953,470589],[1015,-1636],[1568,-351],[44,291],[239,19],[510,-1241],[325,-1831],[299,-309],[2060,-111],[1777,-358],[796,-470],[312,277],[295,910],[350,1920],[546,299],[342,-240],[891,-1574],[3268,-1009],[210,-274],[284,-1774],[161,-1144],[-71,-128],[14,-558],[393,-506],[1058,-942],[1966,758],[1277,-844],[73,-267],[-343,-3530],[36,-485],[396,-716],[-361,-526],[-1031,685],[-1818,1661],[-1040,-38],[-291,-400],[-681,-143],[-1089,537],[-1053,340],[-2170,143],[-1667,859],[-1554,1545],[-1525,794],[-1351,424],[-643,-259],[-382,-356],[-22,-245],[-141,-162],[-338,29],[-1347,560],[-1015,1152],[-1096,404],[-1377,198],[-464,285],[-102,531],[109,1870],[-1418,885],[-1020,-330],[-727,262],[-49,391],[101,257],[387,-559],[144,80],[556,1619],[650,2835],[517,539],[342,-261],[1337,-368],[902,100],[-86,216],[52,537],[670,-267]],[[834887,469929],[-228,-2533],[-109,1937],[23,1852],[103,520],[77,-421],[134,-1355]],[[873928,472004],[136,-1261],[-398,114],[-204,-408],[-411,497],[50,846],[293,968],[147,206],[387,-962]],[[869250,471028],[-247,-669],[260,1709],[237,597],[277,1883],[129,59],[92,-231],[-144,-941],[-604,-2407]],[[839004,474010],[-36,-545],[-234,18],[-386,1101],[40,674],[321,391],[122,41],[266,-781],[-72,-511],[-21,-388]],[[840611,474802],[-283,-949],[-655,105],[-38,474],[241,2266],[265,1109],[608,792],[82,-51],[116,-191],[51,-1382],[-29,-467],[-358,-1706]],[[842187,478274],[-61,-661],[-147,455],[-225,-255],[-232,-2432],[93,-155],[256,61],[411,-706],[-1118,-2384],[-457,-98],[-257,1233],[57,160],[74,73],[112,251],[291,988],[253,2516],[-27,863],[90,919],[332,744],[245,187],[320,-1490],[-10,-269]],[[842368,481494],[-305,-793],[-234,41],[-283,609],[-31,490],[182,448],[470,-161],[205,-308],[-4,-326]],[[856128,483631],[-770,-156],[-58,511],[267,511],[772,641],[113,-66],[64,-754],[-388,-687]],[[822942,482600],[-463,-793],[-125,146],[-13,3049],[295,1317],[341,451],[67,-2251],[-102,-1919]],[[853384,484131],[-1277,-961],[-255,6],[-1310,1234],[-415,1089],[-108,507],[11,962],[217,500],[1664,285],[327,-51],[581,-538],[679,-1276],[-15,-1268],[-99,-489]],[[779066,487325],[-203,-473],[-563,1515],[-16,547],[213,174],[511,-1057],[58,-706]],[[859991,489169],[1157,-1089],[615,92],[990,-952],[752,-2436],[-70,-1748],[-625,358],[-2011,2710],[-829,149],[-702,-621],[-486,247],[-549,579],[-936,-946],[-476,-128],[-150,187],[-580,1796],[-381,-886],[-400,-1679],[-196,2273],[355,413],[362,741],[183,653],[3977,287]],[[800799,488764],[-901,-1847],[-323,806],[-106,-152],[85,-206],[-48,-257],[-483,-388],[-129,317],[-110,1647],[95,430],[106,1339],[482,366],[234,-253],[630,-390],[188,-278],[194,-460],[86,-674]],[[778077,489027],[-314,-10],[-95,1601],[6,336],[73,48],[483,-835],[141,-796],[-294,-344]],[[776930,493437],[311,-1638],[-604,598],[-120,296],[-78,339],[162,718],[107,53],[222,-366]],[[850077,492008],[-231,-226],[-257,1752],[160,626],[223,-271],[105,-1881]],[[850684,494722],[-1906,-336],[-339,190],[-71,144],[36,393],[2567,-45],[-287,-346]],[[861853,493806],[-445,-107],[-394,194],[-354,266],[-348,511],[812,796],[567,115],[113,83],[220,258],[301,-935],[-31,-738],[-441,-443]],[[846177,494075],[-600,-218],[-207,802],[85,1043],[121,290],[318,106],[380,18],[1761,-620],[82,-797],[-1258,-130],[-682,-494]],[[879540,494756],[-1149,-34],[-659,355],[-141,254],[-459,312],[-806,302],[-100,373],[130,22],[3425,-762],[515,-350],[-756,-472]],[[794332,496626],[508,-1871],[45,-1365],[209,-1376],[263,-719],[972,-1325],[-260,-1463],[41,-198],[276,-268],[-809,207],[-1273,993],[-174,916],[30,325],[-312,2450],[-84,160],[-830,216],[-456,-171],[-467,404],[29,686],[607,1791],[321,545],[248,120],[357,-655],[84,380],[519,505],[156,-287]],[[855517,496876],[229,-421],[72,24],[-291,-796],[-1390,-114],[-277,378],[-30,210],[139,1228],[590,525],[958,-1034]],[[842196,498288],[-15,-313],[150,-437],[371,1054],[485,-331],[-59,-847],[-200,-571],[-937,-292],[161,531],[-80,1031],[-623,-1752],[-188,64],[-185,800],[111,990],[204,573],[629,-32],[176,-468]],[[804932,499003],[-743,-900],[-256,304],[69,1379],[101,248],[603,-98],[171,-63],[55,-870]],[[775614,495206],[-324,-142],[-635,724],[-780,2687],[151,1060],[177,588],[607,-381],[14,-381],[456,-1807],[483,-1611],[-31,-497],[-118,-240]],[[863985,498713],[-190,-982],[-255,130],[-268,456],[-321,1507],[39,315],[647,338],[316,-118],[32,-1646]],[[877541,501326],[1307,-2046],[-211,-371],[-441,-292],[-641,163],[-264,426],[-293,1809],[-474,-430],[-404,914],[-85,537],[462,-194],[1044,-516]],[[891720,451865],[-447,573],[-1737,3818],[-606,1798],[139,345],[-31,767],[-630,-1321],[-2218,-357],[-344,621],[616,2813],[-921,1770],[504,423],[1669,-170],[255,-163],[13,10],[-60,689],[-57,126],[-1529,-385],[-890,504],[-589,983],[-10,249],[75,121],[509,17],[504,265],[-5,286],[-816,1264],[-678,1519],[-431,3788],[-1289,2442],[-583,725],[92,767],[263,195],[-159,520],[-344,-491],[-404,85],[56,444],[-234,-420],[-334,-171],[-303,406],[46,318],[-95,344],[-22,-147],[-666,0],[-97,137],[-855,642],[-1774,1314],[-1329,311],[-1524,1121],[-186,247],[-249,686],[47,611],[329,166],[222,-187],[214,49],[13,302],[-1706,-128],[-366,646],[-859,1011],[-258,-162],[-220,438],[-190,732],[82,1527],[99,422],[515,518],[-111,924],[-528,-1144],[-553,-1923],[-171,-2786],[-408,-888],[-709,-301],[-292,133],[-243,879],[-246,1761],[220,17],[212,916],[-174,907],[-1340,2226],[-338,120],[-286,-114],[-248,231],[-62,153],[104,796],[256,390],[480,53],[480,-110],[495,-507],[841,1096],[1031,815],[170,-292],[804,-1046],[360,258],[621,1066],[95,503],[8,144],[-269,1718],[-1293,-1012],[-3115,-249],[-1139,1764],[-255,1883],[-409,1286],[-127,181],[-172,-30],[-294,-412],[-928,-145],[-707,447],[206,269],[485,992],[185,793],[82,952],[2460,2938],[609,375],[916,-41],[1019,-828],[544,-629],[1477,-649],[734,-888],[581,-2819],[-441,-2623],[55,-2132],[214,-1404],[553,-2037],[206,526],[495,161],[278,-2191],[312,-1500],[363,-492],[483,-190],[895,77],[2275,5654],[573,958],[1038,324],[988,666],[42,793],[-120,1036],[1550,1643],[300,28],[5203,-5255],[695,14],[1420,-426],[586,-453],[40,-181],[-60,71],[-119,-531],[102,-140],[745,208]],[[891666,490415],[442,-155],[46,-16],[759,-650],[3058,-2911],[2773,-1398],[1073,-1577],[711,-619],[69,-59],[92,39],[234,102],[392,-751],[1116,-1429],[801,-925],[177,-204],[314,-60],[96,-214],[897,-1990],[268,-678],[7,-1907],[-89,-605],[-84,-575],[86,-421],[518,-84],[286,-47],[281,-190],[430,-293],[438,-323],[149,-110],[184,-257],[420,-587],[777,-802],[440,-131],[352,189],[74,40],[709,-892],[294,-737],[225,-564],[173,-776],[42,-189],[15,-1153],[-177,-270],[-617,-219],[-176,-15],[-540,-46],[-109,38],[-463,163],[-147,-65],[-209,-93],[-44,-185],[-26,-111],[-6,-493],[-9,-631],[543,-2008],[132,-363],[228,-629],[114,-165],[537,-772],[520,-1406],[385,-425],[564,-623],[472,-1468],[203,-944],[688,-3189],[78,-176],[118,-267],[200,-83],[254,-106],[520,346],[536,358],[224,-78],[210,-72],[69,-781],[-232,-505],[-173,-739],[146,-766],[46,-44],[640,-597],[1494,-234],[66,-148],[55,-122],[-68,-146],[-97,-208],[-548,-222],[-155,-267],[-79,-135],[572,-1218],[723,-472],[1320,-863],[607,314],[-727,-721],[-165,81],[-397,194],[-187,-177],[-5,-375],[188,-261],[583,-810],[-482,-462],[-278,-107],[-313,-119],[-247,222],[-320,287],[161,547],[75,253],[-1,28],[-10,231],[-1881,605],[-1211,390],[-625,744],[-1139,-285],[-1730,628],[-439,788],[-358,1331],[-469,1246],[-189,206],[-234,256],[-78,30],[-50,20],[-350,1734],[43,251],[42,245],[-43,82],[-8,15],[-187,-490],[-742,475],[-138,257],[-75,408],[-37,201],[40,151],[-148,889],[-586,1859],[-286,910],[-298,654],[-925,1059],[-1927,1078],[-450,158],[-57,20],[-290,865],[-29,479],[-35,557],[-539,5],[-10,18],[-1,1],[0,-6],[1,-13],[-9,0],[-12,1],[-448,-207],[-127,-58],[-452,-920],[85,-252],[54,-162],[-129,-364],[-89,-86],[-111,-107],[-605,462],[-111,167],[-68,104],[-167,759],[-61,80],[-52,8],[-45,-13],[-37,-11],[133,-572],[386,-1662],[75,-631],[-27,-53],[-110,-208],[-277,3],[-42,0],[-208,126],[-555,334],[-124,352],[-2,4],[-33,-10],[-105,-29],[44,-418],[183,-482],[78,-118],[349,-527],[123,-28],[58,-13],[-63,-54],[-324,-281],[-1716,-481],[-121,-34],[-9,-336],[74,-105],[107,-154],[471,-168],[421,-717],[136,-365],[200,-535],[110,-1407],[-42,-66],[-179,-287],[-223,-40],[-193,-35],[-113,-115],[-560,-569],[-739,-522],[-423,-299],[-415,409],[-400,396],[-2698,-239],[-128,-83],[-220,-142],[-298,572],[-34,65]],[[790299,502209],[-360,-392],[-112,89],[-263,939],[202,520],[443,360],[154,-199],[124,-454],[-20,-265],[-168,-598]],[[854995,501698],[-396,-805],[-472,9],[-195,1174],[-3,1501],[286,398],[121,-74],[335,-802],[324,-1401]],[[863960,505573],[643,-666],[141,-366],[39,-564],[-194,-419],[-831,106],[-822,1682],[-119,-252],[338,-1041],[-129,-84],[-226,-15],[-678,409],[197,252],[-83,263],[-149,87],[-53,-121],[-4,384],[538,260],[1168,54],[224,31]],[[791156,504628],[54,-720],[-818,333],[-197,613],[155,858],[69,120],[146,-138],[367,-858],[224,-208]],[[784776,512465],[423,-786],[273,57],[758,-1038],[59,-304],[-81,-553],[-103,7],[-206,528],[-1167,931],[-115,821],[73,346],[86,-9]],[[786056,512232],[334,-729],[200,-476],[-104,-369],[-156,16],[-910,1222],[-298,-45],[189,634],[152,153],[593,-406]],[[790737,511957],[-121,-882],[-564,495],[-24,341],[3,974],[470,171],[236,-1099]],[[784500,511191],[-102,-9],[-268,476],[-104,463],[-92,1306],[65,685],[148,27],[549,-1080],[-131,-1013],[130,-694],[-195,-161]],[[771914,509540],[-232,-483],[-351,294],[-1386,4247],[75,502],[380,568],[157,-9],[308,-447],[718,-1613],[436,-1257],[-105,-1802]],[[784727,514443],[24,-1299],[-595,1092],[-538,240],[-302,834],[654,-252],[666,-298],[91,-317]],[[847366,513285],[-1078,-2630],[-485,-2070],[-767,-475],[-1669,-641],[-963,193],[-979,987],[-1044,116],[-1125,-101],[-1641,299],[-467,-384],[-661,-227],[-812,154],[-568,465],[-237,-34],[-573,-473],[-565,-1448],[-382,-2328],[148,-2592],[142,-687],[1649,-3861],[1088,-156],[280,1117],[716,1928],[481,650],[79,-59],[-37,-546],[175,-253],[651,-223],[420,202],[148,421],[1259,622],[339,679],[1067,523],[234,0],[502,-383],[210,-864],[-191,-1312],[-143,-300],[-165,29],[-323,539],[-8,356],[-248,118],[-556,-269],[-186,-297],[-203,-837],[-864,-2120],[-485,-729],[-1042,-599],[-231,-508],[-893,-360],[-355,401],[-102,-377],[143,-969],[78,122],[358,-338],[638,-954],[1853,-5513],[-308,-2040],[-239,-438],[-1,-286],[1118,-2180],[231,-1092],[435,54],[-210,489],[237,-1],[125,-439],[-27,-1595],[-104,-146],[-808,89],[-1246,-665],[-190,-713],[-10,-427],[216,-529],[-300,-482],[-781,267],[-509,490],[-131,465],[191,2542],[-312,1493],[-558,793],[-1007,1968],[-44,639],[366,1081],[158,951],[80,831],[-3,1349],[-199,363],[-692,165],[-543,-468],[-1047,-1564],[569,-2522],[97,-1748],[-76,-544],[-154,-6241],[70,-4315],[-2054,-569],[-459,418],[-315,1050],[-2,404],[120,1247],[332,1522],[293,3446],[-34,1292],[-288,3020],[-177,553],[-379,275],[-1009,-834],[-53,82],[-367,2450],[-30,1639],[174,1264],[86,-213],[299,314],[391,883],[512,5596],[-37,1553],[102,550],[1302,3336],[-69,1867],[135,3183],[274,1481],[869,2319],[291,316],[-23,-480],[167,-253],[520,-205],[586,1542],[87,1351],[318,478],[1207,-569],[754,-1169],[854,-59],[253,43],[1186,-270],[1061,-1150],[293,715],[411,46],[2094,-623],[1170,1007],[1782,3935],[258,156],[305,-99],[340,-954],[-42,-296],[-85,-113],[-407,-1075]],[[782452,518263],[297,-872],[-134,-1147],[-338,-468],[-417,192],[-227,1147],[41,570],[200,307],[105,-101],[388,436],[85,-64]],[[854863,510602],[251,-62],[225,390],[407,1528],[68,923],[262,616],[760,1004],[573,248],[141,-102],[28,-203],[-98,-2713],[-733,-954],[-216,-96],[-452,-730],[316,-780],[519,-339],[802,-1665],[-180,-172],[-1639,1049],[-461,102],[-164,-258],[-61,-562],[102,-2400],[235,-1422],[585,-2361],[300,-617],[-275,-198],[-629,1118],[-847,3128],[-304,5195],[150,323],[5,259],[-275,185],[-127,264],[-249,951],[112,1183],[258,1124],[78,1341],[412,1418],[420,933],[397,517],[188,-10],[-232,-2521],[91,-319],[39,-885],[-92,-1363],[-256,-866],[-719,-947],[-71,-278],[108,-589],[248,-387]],[[856976,518014],[-641,-175],[-204,1460],[390,1245],[266,517],[328,381],[128,-349],[185,-475],[0,-628],[-294,-1729],[-158,-247]],[[767763,520498],[-223,-749],[-1371,1619],[-320,632],[56,498],[212,531],[42,-77],[835,-1267],[638,-857],[131,-330]],[[800729,527429],[-252,-107],[-208,314],[121,345],[-331,829],[-96,693],[663,1097],[149,-640],[331,-1172],[-86,-604],[-291,-755]],[[852520,531025],[-260,-1363],[-246,371],[-111,1472],[107,1062],[55,131],[145,-117],[310,-1556]],[[767205,536911],[824,-344],[582,235],[1060,-69],[826,-139],[530,-280],[780,-1532],[528,-2222],[320,-96],[353,-582],[-86,-1227],[-274,-251],[54,-375],[909,-886],[3521,-4738],[628,-1355],[9,-637],[366,-1699],[10,900],[80,210],[150,0],[1001,-3332],[992,-1801],[45,67],[0,87],[-173,947],[-253,493],[-75,632],[177,378],[556,26],[662,-1232],[256,-1791],[112,-402],[423,-402],[573,166],[1116,-1913],[176,-2019],[496,-1097],[1782,-1696],[-974,-1708],[3,-147],[456,180],[772,827],[67,102],[235,556],[238,272],[226,-108],[853,-1409],[138,-535],[64,-969],[-62,-246],[-452,-182],[-403,-801],[-22,-243],[387,-1248],[-501,-584],[-104,-1212],[1038,-1587],[1247,-393],[428,197],[90,-138],[253,-3476],[428,-1721],[581,-1803],[195,-441],[1772,-541],[1080,-3244],[114,-2091],[-304,-847],[-154,-1091],[149,-2198],[67,-3756],[-96,-2985],[-189,-3824],[-171,-607],[-1053,2230],[-277,301],[-211,-819],[104,-928],[-1149,905],[-414,-652],[223,-1218],[-494,5],[-1791,4710],[-1649,2205],[-2813,4533],[-812,2773],[-1111,1680],[-640,2151],[-428,1136],[-394,735],[-589,1632],[-144,621],[-277,2683],[-928,4111],[-783,2502],[-1422,4043],[-682,892],[-589,1395],[-977,5819],[-13,576],[180,569],[-196,666],[-1234,1677],[-1162,1296],[-692,1520],[-286,2229],[-683,1136],[-1193,3488],[-718,402],[-787,1005],[-2300,4650],[-375,1290],[-440,2058],[35,1325],[150,410],[411,561],[516,-204],[727,-681],[75,-454],[433,-741],[367,-246]],[[456560,897182],[125,-73],[443,-258],[1430,1220],[753,-124],[-243,-149],[-683,-418],[-371,-716],[-6,-253],[143,-242],[28,-48],[457,-133],[198,-1293],[830,-395],[2235,-1064],[-111,-586],[-164,-859],[45,-625],[226,-195],[156,-133],[298,-12],[-299,-318],[-429,-457],[310,-616],[-149,-236],[-263,-414],[-399,-389],[-161,-157],[-697,-27],[-577,-650],[-20,-168],[-109,-914],[-975,-669],[-595,-41],[-236,-16],[-2001,-853],[-832,-782],[-791,-743],[-1665,-622],[-288,-18],[-362,-23],[-551,-197],[-317,-114],[-348,-315],[-236,-486],[-113,-232],[-650,-452],[-496,-118],[-1262,-301],[-1259,163],[-1840,584],[-234,74],[-32,17],[-1456,781],[-452,327],[-754,543],[-839,367],[-904,-98],[-3043,-332],[-108,150],[-7,9],[-47,381],[-54,435],[56,226],[100,404],[371,-295],[91,-316],[184,-16],[76,-6],[874,377],[438,188],[593,809],[-147,810],[-607,295],[-17,8],[-777,1464],[-152,286],[-90,375],[-76,318],[-2062,30],[-1760,-493],[-342,156],[-138,319],[-190,437],[314,151],[219,104],[1456,260],[2018,359],[2192,-43],[261,802],[-39,224],[-180,29],[-73,11],[-54,-207],[-282,-221],[-188,-62],[-209,-70],[-1194,450],[121,319],[1488,985],[-245,218],[-291,261],[-1595,677],[-2753,-996],[-2090,340],[-66,252],[475,620],[1044,-633],[14,19],[65,86],[-567,1067],[-54,229],[-21,88],[64,135],[1385,-668],[33,-70],[113,-238],[467,-49],[44,99],[30,70],[-23,71],[-160,498],[-773,120],[-24,21],[-300,268],[-78,176],[-75,167],[24,33],[138,195],[614,-66],[250,613],[23,57],[-82,299],[-91,333],[-108,105],[-21,20],[350,257],[242,-49],[304,-61],[1362,-1002],[798,-266],[210,-207],[-12,-283],[-438,-569],[286,161],[359,552],[-360,1008],[-431,222],[62,186],[170,507],[286,214],[-713,432],[-482,-122],[-494,138],[-356,100],[101,93],[545,508],[1414,-83],[300,-289],[2804,-2706],[137,-258],[-174,-945],[-77,-75],[-221,-214],[-413,94],[-3,-178],[-3,-191],[881,-937],[457,-1645],[67,-239],[277,1772],[44,281],[72,179],[138,340],[363,295],[253,206],[121,-77],[9,-182],[11,-250],[851,169],[60,220],[99,367],[-3,28],[-27,283],[-374,1339],[-3,58],[-21,388],[405,102],[467,117],[874,-1333],[572,-874],[310,-45],[132,72],[76,41],[44,185],[56,238],[-208,556],[244,909],[1180,662],[552,-172],[240,-197],[243,-201],[1101,-1945],[16,811],[2,98],[-268,403],[-210,789],[148,340],[1023,-240],[425,-354],[1220,152],[1388,172],[904,529],[115,67],[107,1616],[1136,75],[225,-166],[624,-1290],[139,-287]],[[760776,546011],[-151,-273],[-206,1187],[-212,384],[-16,254],[17,558],[76,166],[335,292],[68,23],[-3,-141],[102,-190],[126,-1353],[-136,-907]],[[757102,568226],[-154,-298],[-305,278],[-40,1165],[403,837],[105,-211],[94,-896],[-103,-875]],[[757592,576165],[67,-1468],[-121,-974],[-113,84],[-180,539],[-255,1524],[122,483],[92,-222],[47,263],[145,1616],[129,-136],[81,-684],[-14,-1025]],[[757928,582197],[46,-192],[110,69],[108,-526],[33,-1942],[-155,-372],[-181,-8],[53,-1060],[-285,-55],[58,363],[-153,36],[-60,217],[-7,1605],[291,1707],[50,2451],[260,1229],[314,337],[58,-1030],[-78,-317],[-121,-15],[101,-371],[-442,-2126]],[[655493,663686],[-1027,-432],[-389,275],[768,579],[58,80],[26,310],[656,598],[495,244],[264,-321],[-851,-1333]],[[543363,731908],[-607,-1677],[-517,-1430],[-151,-640],[-171,-726],[19,-1024],[0,-21],[269,-510],[210,-765],[-13,-650],[-134,-431],[-456,-1468],[-629,191],[-394,120],[-443,329],[-87,223],[-362,926],[-296,456],[-37,58],[-454,260],[-197,-21],[-138,-14],[-733,455],[-1352,1503],[-716,795],[-194,16],[-351,28],[-770,1655],[-41,266],[57,294],[77,390],[105,184],[16,30],[649,392],[1634,174],[1181,-1025],[1558,227],[1938,674],[1384,963],[12,9],[134,-216]],[[526735,748091],[164,-1332],[70,-990],[92,-1303],[-306,-5596],[-163,-1547],[-99,-225],[-51,-115],[-320,266],[-482,400],[-374,-79],[-218,-406],[31,-254],[29,-235],[-46,-373],[-58,-95],[-258,-419],[-118,-146],[-57,-70],[-397,94],[-124,30],[-38,34],[-80,72],[-336,884],[-233,614],[-80,1282],[295,2030],[-1,91],[-31,3019],[-409,1709],[-32,132],[-277,176],[-16,36],[-85,198],[-26,232],[-25,215],[110,1110],[5,52],[309,-381],[409,-148],[138,42],[161,49],[98,88],[446,398],[1081,1884],[233,58],[685,-590],[182,-393],[135,-331],[67,-167]],[[287876,613174],[509,-1531],[-372,-243],[-296,-26],[-222,-20],[-398,269],[-303,204],[-743,-164],[-137,-31],[-212,-212],[-110,-499],[43,-89],[35,-75],[-1076,640],[-806,480],[-571,753],[-594,783],[598,1465],[639,414],[2141,-623],[518,-392],[1357,-1103]],[[892890,750075],[-118,-1074],[-16,-1102],[164,-1905],[161,-577],[206,-6],[540,-1179],[509,-2372],[196,-1987],[-476,-3227],[-373,-243],[-385,-755],[-281,-1844],[28,-641],[-1159,-554],[-351,-1285],[-93,-735],[17,-565],[235,-1124],[75,-1380],[-145,-2967],[-527,-829],[-641,-3559],[149,-1133],[254,-934],[-2,-1291],[-1336,-3468],[-807,-1209],[-247,-47],[-207,304],[148,1201],[371,1732],[477,709],[-73,213],[-365,443],[-478,-368],[-359,-828],[-278,-1148],[-546,159],[-339,-136],[-280,-330],[-158,-723],[98,-1397],[-416,-1177],[-374,-432],[-174,227],[-84,561],[40,1320],[384,509],[-420,495],[-526,-174],[-890,-2129],[-493,-546],[-2461,114],[-530,984],[-275,1247],[28,179],[-443,-160],[-301,-371],[-308,-1671],[161,-557],[409,-474],[547,-471],[-91,-1019],[-119,-172],[-214,81],[-51,80],[126,23],[26,158],[-288,114],[-1116,-898],[-967,-3440],[-461,-738],[-768,368],[-303,319],[-613,1474],[-120,1006],[-44,1425],[184,560],[471,695],[219,478],[48,197],[-39,705],[-278,248],[-1379,-47],[-358,358],[-581,-69],[-750,-265],[-717,-1143],[-672,-250],[-591,54],[-1934,-1079],[-912,115],[-240,230],[-43,-8],[-213,-224],[-252,-636],[-255,-1618],[-271,-291],[-824,930],[-1086,-591],[-1263,-140],[-1,1914],[178,979],[669,-193],[41,-154],[535,326],[619,1430],[784,656],[1328,2186],[691,1589],[490,485],[891,438],[352,-95],[449,-547],[2356,588],[2252,1006],[564,-354],[-271,-733],[267,-215],[819,-122],[710,433],[541,671],[-106,1292],[724,2370],[745,1346],[414,1028],[221,830],[42,737],[-258,1220],[139,917],[328,424],[1176,779],[245,-164],[16,-339],[-845,-1392],[-282,114],[-119,-211],[-134,-672],[339,-1213],[219,-433],[639,-251],[266,291],[75,366],[687,694],[1677,1212],[865,1245],[468,1171],[1944,3941],[587,2568],[508,1659],[471,2273],[149,1906],[-83,714],[-235,487],[-125,4438],[1162,2560],[901,513],[456,-1887],[978,256],[141,364],[178,1211],[-258,741],[-121,-252],[-906,-666],[-139,122],[169,1402],[226,708],[151,71],[187,-192],[1131,-889]],[[854786,659960],[-167,-23],[-21,524],[183,1583],[1223,1748],[254,618],[132,50],[78,-505],[-147,-535],[-1178,-1606],[-81,-581],[23,-829],[-299,-444]],[[860339,673955],[-944,-2028],[-221,219],[-235,687],[337,571],[986,798],[77,-247]],[[863831,685402],[-300,-271],[-41,548],[422,2018],[155,296],[34,-817],[-270,-1774]],[[861352,696172],[-231,-127],[-74,267],[190,1570],[130,140],[303,-87],[47,-686],[-110,-500],[-255,-577]],[[864195,704467],[639,-258],[248,28],[229,568],[187,81],[317,-279],[149,-492],[-18,-516],[-90,-378],[-212,-193],[698,-906],[98,-1646],[-108,-1027],[-504,-932],[-654,-4222],[-45,-481],[80,-391],[-32,-552],[-234,-1083],[-731,-1239],[-1252,-1098],[432,3390],[-72,264],[-301,185],[-153,-117],[-277,-1082],[-5,-619],[107,-584],[159,-283],[-323,-496],[-772,360],[-71,3463],[449,1852],[572,1861],[107,715],[-113,1572],[-533,1692],[-422,287],[-240,-603],[76,-1074],[192,-213],[-71,-793],[-711,188],[-288,-345],[-457,831],[-132,540],[110,939],[122,-117],[219,-750],[52,681],[-619,851],[-80,738],[31,278],[1149,350],[884,870],[312,579],[90,754],[210,400],[852,477],[-28,-245],[214,-91],[564,-1689]],[[872565,709052],[193,-358],[1211,-881],[79,-1985],[-1220,-2672],[-1305,829],[-432,-117],[-814,-732],[-694,-2122],[-111,-1458],[-105,-228],[-915,149],[-380,865],[-88,1065],[211,775],[-64,436],[-498,1208],[1067,2327],[945,468],[1247,-64],[314,514],[43,787],[80,194],[597,866],[299,-86],[340,220]],[[874886,708331],[-612,-445],[-212,441],[378,1064],[586,938],[61,-202],[-202,-533],[-147,-327],[-18,-420],[166,-516]],[[884280,729333],[-338,-69],[65,1621],[631,1402],[150,6],[-31,-391],[175,-1083],[-185,-862],[-467,-624]],[[900954,765637],[678,-252],[573,74],[938,1360],[266,-4920],[237,-353],[541,-114],[77,335],[316,442],[477,-20],[-1055,-1167],[-1568,-1184],[-1055,-259],[-411,348],[-229,8],[-704,-458],[-966,-1361],[-505,-994],[-374,-1077],[-505,-2136],[-3752,3707],[-662,87],[-406,-267],[-763,-834],[-880,203],[-370,655],[-641,10],[-241,-409],[-241,-786],[-26,-781],[1572,-1404],[794,-912],[136,-324],[-597,-549],[-553,384],[-1641,-2219],[-299,125],[-139,231],[-128,658],[62,623],[188,570],[-296,2086],[-536,794],[147,1880],[395,667],[507,517],[252,-2],[643,1125],[148,352],[-394,783],[400,1129],[893,-902],[877,-317],[303,265],[385,746],[-33,2965],[720,1429],[360,3285],[-106,1338],[-272,1211],[111,2075],[751,650],[938,-1757],[1215,-2628],[694,-1185],[1457,-1760],[2297,-1786]],[[634261,681111],[-304,-502],[-148,218],[-251,1234],[110,222],[70,437],[248,16],[390,-865],[19,-228],[-134,-532]],[[67021,472496],[-3,-3],[-31,-30],[-101,109],[1,18],[2,32],[76,39],[97,2],[4,-5],[11,-13],[7,-9],[1,-3],[1,-4],[3,-7],[3,-5],[0,-8],[1,-19],[0,-6],[0,-3],[1,-13],[-57,-57],[-16,-15]],[[15291,478054],[-4,0],[-3,4],[-8,9],[-49,62],[-3,4],[-4,5],[-58,110],[-4,8],[-6,25],[-2,8],[-1,4],[-1,4],[3,15],[2,8],[4,-2],[7,-3],[5,-2],[58,-73],[5,-6],[4,-5],[15,-19],[7,-10],[14,-20],[0,-1],[1,-1],[3,-5],[2,-4],[3,-8],[8,-18],[2,-5],[1,-1],[0,-2],[2,-5],[7,-24],[1,-2],[0,-9],[1,-18],[0,-10],[-2,-6],[-1,-4],[-1,-3],[-8,0]],[[21697,478983],[-14,-11],[-1,0],[-11,3],[-3,1],[-31,26],[-30,25],[-2,8],[-9,32],[-6,21],[-4,15],[-1,6],[-1,12],[0,1],[0,7],[1,5],[0,8],[2,8],[4,15],[3,11],[1,5],[8,4],[2,1],[2,2],[5,-2],[8,-4],[111,-120],[3,-1],[-2,-17],[-6,-11],[-10,-18],[-6,-12],[-3,-6],[-6,-11],[-4,-3]],[[24328,479398],[-3,-1],[-5,-1],[-4,1],[-5,2],[-10,4],[-3,0],[-3,1],[-6,2],[-3,5],[-4,5],[-3,4],[-1,2],[-1,6],[-4,14],[-2,8],[-1,6],[0,4],[-1,38],[0,18],[1,4],[1,5],[3,16],[10,18],[3,6],[2,6],[1,0],[8,8],[11,11],[4,-1],[7,-2],[1,-1],[3,-4],[7,-10],[10,-14],[1,-3],[1,-4],[2,-6],[3,-9],[10,-34],[3,-9],[2,-9],[1,-11],[1,-6],[5,-34],[-2,-9],[-1,-8],[0,-1],[-6,-6],[-11,-4],[-14,-4],[-8,-3]],[[69676,481891],[-13,-6],[-26,-14],[-7,10],[-13,20],[-6,13],[-8,17],[-13,29],[-3,7],[-59,180],[0,3],[1,5],[1,10],[1,6],[1,2],[1,6],[5,17],[4,16],[2,3],[1,2],[8,13],[50,-15],[45,-14],[43,-10],[47,-11],[-46,-261],[-2,-6],[-1,-4],[-1,-2],[-1,-4],[-3,-7],[-5,-3],[-3,-2]],[[23279,488838],[-2,-4],[-2,1],[-5,4],[-4,3],[-227,208],[-2,4],[-1,2],[-8,18],[-5,12],[-5,31],[-1,7],[-1,0],[-2,16],[-3,20],[-13,105],[0,9],[0,56],[0,4],[-1,33],[2,15],[1,2],[1,12],[6,49],[0,5],[1,4],[24,13],[3,-2],[1,0],[1,0],[7,-2],[6,-2],[12,-4],[1,-2],[2,-2],[16,-17],[8,-9],[4,-4],[7,-9],[4,-4],[136,-208],[1,-5],[1,-4],[2,-8],[25,-147],[18,-98],[3,-17],[1,-9],[0,-8],[-2,-35],[-3,-16],[-2,-7],[-2,-5],[-3,-5]],[[987725,494247],[-1,0],[-3,0],[-4,2],[0,1],[-3,2],[-2,13],[-65,466],[1,15],[1,19],[4,-1],[3,-5],[4,-5],[2,-2],[6,-7],[43,-80],[22,-42],[12,-44],[15,-69],[7,-40],[5,-88],[1,-23],[2,-59],[-2,-5],[-2,-5],[-4,-5],[-3,-4],[-8,-8],[-18,-20],[-3,-2],[-6,-4],[-3,0],[-1,0]],[[990229,497659],[-18,-59],[-176,377],[-3,5],[0,1],[-1,0],[-5,10],[-9,21],[0,8],[0,9],[3,7],[2,2],[4,4],[2,-1],[1,-1],[4,-1],[17,-8],[12,-2],[7,-2],[6,-1],[11,-3],[4,-1],[9,-3],[26,-56],[5,-10],[5,-12],[94,-284]],[[988942,497649],[-6,-2],[-6,8],[-3,4],[-7,9],[-59,96],[-44,139],[-90,284],[1,77],[0,16],[0,9],[6,-5],[11,-8],[7,-6],[23,-35],[9,-18],[23,-43],[12,-25],[7,-18],[5,-12],[2,-7],[20,-64],[11,-36],[39,-147],[2,-8],[2,-8],[2,-7],[10,-40],[8,-37],[10,-41],[5,-33],[3,-17],[1,-8],[-1,-8],[0,-7],[-1,-1],[-2,-1]],[[985491,498491],[-3,-6],[-12,11],[-89,120],[-36,47],[-27,64],[-128,291],[-5,73],[2,22],[1,1],[1,2],[2,3],[4,-4],[1,-2],[5,-8],[2,-2],[2,-2],[205,-427],[70,-145],[3,-6],[2,-6],[1,-2],[2,-4],[2,-5],[-2,-10],[-3,-5]],[[984654,501200],[1,-66],[-6,4],[-3,1],[-37,256],[-8,87],[-8,77],[-1,49],[0,29],[-1,24],[-2,74],[0,5],[0,4],[-1,19],[-2,16],[-5,32],[-1,8],[-2,11],[-2,12],[-2,8],[-1,3],[-2,13],[-5,23],[-1,4],[-1,3],[-4,10],[-2,5],[-63,147],[-38,68],[-42,73],[-13,20],[-20,37],[-2,2],[2,2],[4,4],[3,3],[6,-4],[18,-14],[3,-3],[1,-2],[2,-3],[3,-4],[4,-7],[1,-2],[2,-3],[3,-5],[6,-10],[3,-5],[3,-4],[45,-98],[21,-46],[13,-25],[15,-29],[22,-50],[27,-61],[1,-9],[1,-7],[2,-11],[1,-9],[0,-4],[3,-24],[1,-9],[1,-10],[1,-7],[0,-2],[56,-600]],[[982201,506454],[-4,0],[-3,2],[-4,2],[-2,1],[-1,1],[46,301],[22,139],[1,0],[3,1],[1,0],[4,2],[5,-4],[3,-2],[2,-7],[3,-7],[0,-3],[2,-4],[2,-7],[0,-2],[1,-7],[7,-35],[0,-18],[0,-35],[1,-3],[0,-6],[-2,-29],[0,-7],[0,-2],[-30,-167],[-6,-38],[-3,-7],[-1,-5],[-3,-8],[0,-1],[-4,-12],[-37,-33],[-3,0]],[[983118,508182],[-2,0],[-228,258],[-76,86],[-2,5],[-1,3],[-7,22],[1,4],[1,3],[1,3],[1,4],[33,110],[4,4],[7,8],[8,9],[5,6],[2,3],[7,1],[9,2],[4,1],[13,-7],[8,-5],[11,-12],[11,-11],[3,-4],[2,-2],[2,-4],[10,-18],[17,-29],[10,-20],[127,-244],[12,-46],[6,-24],[10,-93],[-2,-2],[-1,-2],[-5,-7],[-1,-2]],[[980551,510718],[-4,-1],[-5,-3],[1,4],[32,157],[3,15],[63,283],[63,145],[4,4],[4,3],[3,5],[3,5],[13,20],[1,2],[7,14],[4,7],[2,3],[7,23],[0,2],[2,6],[2,8],[4,17],[2,17],[2,18],[-2,16],[-1,8],[-1,7],[-3,10],[-2,6],[-2,8],[-2,8],[-1,3],[-2,5],[-3,7],[-2,5],[-12,25],[-3,6],[-65,135],[-20,37],[-18,32],[14,-13],[19,-17],[43,-52],[2,-2],[1,-2],[12,-11],[9,-13],[2,-2],[2,-3],[4,-6],[2,-3],[24,-55],[18,-41],[0,-37],[1,-9],[0,-18],[0,-10],[0,-16],[-1,-2],[0,-5],[-1,-15],[0,-4],[0,-4],[-2,-7],[-5,-31],[-2,-8],[-1,-6],[-1,-2],[-4,-16],[-133,-438],[-45,-147],[-4,-14],[-3,-7],[-9,-27],[-3,-6],[-13,-23]],[[981024,513784],[-2,0],[-11,-6],[-280,4],[-1,0],[-2,2],[-3,1],[-1,1],[-1,0],[-6,4],[0,4],[1,4],[3,18],[159,114],[82,59],[23,-13],[4,-2],[36,-35],[1,-3],[1,-4],[5,-12],[0,-2],[1,-1],[1,-7],[4,-25],[1,-2],[5,-47],[0,-6],[-1,-10],[-1,-8],[-3,-5],[-3,-5],[-8,-15],[-4,-3]],[[980575,515894],[-12,-3],[-3,3],[-6,3],[-1,1],[-3,2],[-3,2],[-1,1],[-1,1],[-3,2],[-5,10],[-3,5],[0,7],[1,6],[0,9],[92,400],[30,131],[8,-6],[16,-12],[6,-13],[10,-21],[2,-7],[0,-1],[1,-2],[4,-13],[13,-39],[0,-19],[0,-19],[0,-5],[-1,-5],[0,-10],[0,-6],[-1,-23],[-1,-11],[0,-3],[0,-5],[0,-3],[-1,-5],[-4,-35],[0,-1],[-5,-43],[-1,-9],[-1,-12],[-3,-16],[-3,-24],[-3,-21],[-2,-18],[-2,-7],[-2,-6],[-12,-30],[-33,-82],[-4,-6],[-12,-25],[-9,-4],[-6,-3],[-8,-3],[-2,0],[-2,-1],[-4,-1],[-4,-1],[-16,-4]],[[981385,517399],[-3,0],[-22,9],[-3,1],[-2,1],[-3,1],[-5,2],[-27,14],[-13,7],[-4,2],[-4,3],[-4,4],[-9,7],[-7,6],[-2,4],[-1,3],[-6,14],[0,5],[-2,23],[-2,37],[1,17],[0,3],[0,6],[1,3],[1,2],[4,11],[4,1],[5,2],[35,-6],[92,-16],[30,-83],[0,-15],[-1,-13],[-1,-2],[-2,-10],[-2,-6],[-2,-3],[-1,-1],[-3,-5],[-2,-4],[-4,-5],[-8,-9],[-4,-3],[-4,-3],[-4,-3],[-5,0],[-3,0],[-6,-1],[-2,0]],[[62009,517639],[544,-1336],[14,-50],[0,-3],[2,-5],[1,-5],[1,-3],[4,-15],[1,-5],[2,-12],[2,-8],[1,-3],[1,-5],[2,-18],[1,-10],[1,-9],[3,-20],[1,-17],[1,-3],[0,-6],[1,-24],[3,-51],[0,-4],[0,-4],[0,-17],[1,-9],[0,-13],[-1,-55],[-1,-2],[-3,-8],[-2,-4],[0,-2],[-7,-5],[-3,-3],[-63,-20],[-42,-13],[-33,19],[-19,11],[-2,2],[-2,1],[-4,4],[-4,2],[-1,2],[-10,8],[-825,860],[74,398],[16,-66],[31,-130],[120,-229],[71,-4],[4,0],[4,1],[2,1],[2,1],[4,1],[4,1],[1,2],[1,4],[31,263],[6,52],[3,339],[-7,68],[-5,15],[-2,6],[-22,67],[-4,11],[-17,32],[-89,168],[-60,82],[-2,2],[120,-28],[149,-199]],[[981399,517588],[-17,-12],[-110,211],[-1,6],[0,2],[0,8],[0,10],[1,6],[0,4],[0,5],[1,9],[0,9],[3,28],[0,9],[2,8],[0,3],[1,5],[3,14],[1,9],[3,12],[4,19],[8,17],[0,1],[1,1],[2,5],[4,1],[3,0],[2,0],[5,1],[4,-2],[4,-2],[4,-2],[7,-6],[4,-4],[0,-1],[3,-2],[1,-2],[2,-4],[8,-16],[1,-2],[5,-12],[8,-26],[2,-8],[1,-1],[1,-5],[5,-34],[0,-3],[1,-5],[2,-17],[25,-235],[-2,-1],[-2,-1]],[[979902,523788],[-23,-11],[2,82],[2,9],[9,40],[69,72],[56,59],[44,42],[7,5],[24,15],[4,2],[10,4],[3,2],[6,2],[11,5],[9,4],[34,8],[4,1],[84,21],[10,-13],[-17,-53],[-348,-296]],[[980436,524485],[-156,-264],[-1,1],[-2,0],[-7,4],[-3,1],[-5,2],[20,63],[7,16],[1,4],[3,7],[161,270],[2,-8],[5,-15],[1,-1],[5,-14],[-31,-66]],[[56556,528245],[-23,-1],[-15,0],[-4,1],[-38,8],[-3,0],[-6,2],[-2,1],[-4,5],[-7,6],[-4,3],[-2,3],[-5,8],[-8,14],[-2,3],[-1,1],[-3,5],[-27,60],[-13,29],[-1,4],[-1,5],[-2,8],[-2,9],[-5,16],[-3,17],[-6,24],[-2,9],[-2,9],[-1,7],[-4,17],[-1,25],[0,7],[-1,6],[0,2],[1,1],[4,10],[2,4],[0,1],[276,-19],[27,-1],[6,-9],[21,-28],[0,-6],[1,-7],[0,-6],[-1,-17],[0,-9],[-2,-26],[-1,-9],[-1,-3],[-1,-5],[-4,-22],[-3,-15],[0,-1],[-2,-5],[-5,-10],[-4,-7],[-84,-116],[-3,-1],[-1,0],[-4,-2],[-16,-5],[-8,0]],[[56671,528669],[11,-32],[-36,2],[-6,0],[-9,1],[-44,8],[-17,9],[-9,8],[-1,2],[-6,6],[-26,30],[-5,6],[-3,3],[-3,5],[-26,38],[-4,5],[-4,9],[-2,2],[-14,36],[-1,3],[-10,47],[-12,108],[-11,90],[0,7],[0,3],[4,-1],[4,-2],[4,-1],[1,-1],[2,0],[125,-220],[98,-171]],[[56318,528716],[-5,-25],[-3,-11],[-1,4],[-4,10],[-3,7],[0,1],[-4,14],[-2,8],[-2,8],[-2,8],[-2,10],[-3,10],[-1,3],[-1,4],[-4,26],[-1,9],[-1,4],[-1,5],[-3,25],[0,4],[-1,5],[1,5],[1,10],[2,15],[1,7],[10,56],[14,58],[56,80],[4,5],[4,5],[3,5],[5,0],[9,1],[8,-2],[4,-1],[7,-4],[4,-2],[4,-3],[2,-2],[6,-4],[0,-1],[0,-3],[1,-3],[0,-2],[0,-2],[-1,-5],[-2,-5],[-99,-337]],[[325529,608754],[84,-92],[80,-118],[46,-80],[69,-155],[75,-207],[118,-329],[-12,-11],[-49,-46],[-373,376],[-29,48],[-58,96],[-42,74],[-16,27],[-47,121],[-7,44],[-2,10],[7,56],[3,25],[14,46],[22,48],[7,10],[23,33],[71,32],[4,-2],[4,-2],[4,-2],[4,-2]],[[326173,607501],[18,-24],[31,-41],[2,-6],[6,-13],[6,-13],[11,-26],[1,-6],[0,-2],[1,-8],[4,-32],[5,-28],[1,-9],[1,-9],[0,-3],[1,-5],[2,-9],[0,-8],[0,-10],[0,-5],[0,-4],[2,-39],[0,-7],[1,-17],[2,-74],[0,-8],[0,-1],[0,-5],[-2,-26],[0,-14],[-3,-18],[-14,-88],[-4,-26],[-7,-7],[-11,-11],[-114,-57],[-3,1],[-5,1],[-2,0],[-1,0],[-4,4],[-28,25],[-7,10],[-7,11],[-3,5],[-4,16],[-23,89],[-4,12],[-3,12],[-2,36],[-2,24],[0,8],[0,11],[1,3],[0,16],[3,59],[1,18],[1,8],[0,11],[3,57],[1,10],[0,18],[47,170],[6,7],[13,16],[23,15],[9,-2],[2,0],[2,-1],[12,-3],[34,-8]],[[851642,702250],[-830,-212],[-362,494],[-3,281],[414,756],[1301,604],[276,-205],[153,-408],[-235,-798],[-714,-512]],[[330877,588659],[27,-241],[1,-169],[-9,-507],[-1,-9],[-1,-10],[-1,-8],[0,-1],[-6,-56],[-5,-47],[-12,-120],[-15,-133],[-10,-83],[-1,-7],[0,-1],[-1,-1],[-2,-14],[-2,-10],[-1,-6],[-28,-108],[-87,-236],[-43,11],[-30,8],[-99,83],[-65,54],[-4,6],[-10,13],[-3,5],[-2,3],[-1,3],[-30,58],[-10,20],[-3,6],[-16,33],[-28,58],[-7,16],[-3,6],[-7,36],[-7,43],[-3,32],[0,4],[-1,13],[-2,350],[0,28],[0,6],[0,3],[17,121],[17,128],[2,6],[2,9],[12,43],[121,404],[54,188],[49,172],[62,237],[1,4],[3,10],[6,21],[2,8],[1,4],[1,3],[4,3],[7,5],[2,1],[2,2],[5,0],[4,-1],[4,0],[26,-1],[2,0],[7,0],[2,-3],[1,-2],[7,-10],[8,-10],[0,-3],[0,-5],[1,-5],[0,-9],[-2,-12],[0,-2],[-1,-6],[-1,-7],[53,-172],[38,-124],[2,-19],[7,-109]],[[725921,542507],[-2076,-1679],[-610,268],[-481,429],[-234,480],[-203,931],[-526,3904],[-127,4383],[-120,1205],[178,899],[278,4595],[425,1633],[84,478],[47,294],[105,1323],[454,56],[115,64],[86,99],[-3,167],[-153,302],[-107,145],[-154,191],[-94,102],[-112,101],[-458,37],[-206,376],[-37,297],[330,246],[613,-30],[282,-857],[1201,-2094],[835,-2819],[1043,-4601],[815,-2388],[272,-1765],[55,-1935],[-294,-2353],[-213,-822],[-1010,-1662]],[[815530,636582],[-111,-98],[-25,308],[104,-4],[-22,-136],[54,-70]],[[636867,435161],[229,-1326],[-148,-189],[-148,361],[-69,-189],[-4,-342],[227,-417],[99,-7],[45,182],[557,-1543],[12,-734],[1025,-2459],[589,-4574],[118,-4137],[110,-1052],[315,-1794],[388,-1292],[-72,-1241],[-358,-2047],[-247,-900],[-233,-34],[-361,628],[-338,2528],[-86,106],[-432,-176],[-261,-626],[403,-3607],[248,-481],[-2,-1100],[-413,-2579],[-320,-274],[-472,-2758],[170,-1082],[18,-1486],[-407,-3345],[-1895,-11187],[-980,-6874],[-1213,-7096],[-752,-6631],[-771,-3693],[-540,-3279],[-896,-1091],[-581,-344],[-261,99],[-449,-127],[-737,-512],[-1521,-1764],[-1091,-32],[-1328,1619],[-826,453],[-687,846],[-185,469],[-1031,3944],[-65,3272],[170,1117],[19,1148],[-1013,3676],[-331,2782],[38,1620],[603,3528],[636,947],[2205,7639],[7,240],[-50,704],[-118,700],[135,934],[-31,613],[-615,2916],[-614,4964],[-254,3000],[15,665],[1088,3845],[314,3824],[918,-49],[779,657],[918,339],[504,53],[130,-230],[-2,1189],[210,456],[597,98],[153,-123],[29,-431],[223,-50],[61,313],[610,-645],[272,-575],[386,268],[-81,239],[-476,802],[-70,498],[82,336],[433,872],[489,573],[-9,-84],[22,-39],[56,-20],[-20,356],[538,874],[237,168],[249,-674],[-407,-1691],[114,52],[773,907],[47,142],[-392,1769],[626,1843],[398,792],[144,-850],[-319,-1025],[-8,-690],[115,-59],[127,186],[702,2607],[-117,1392],[227,992],[601,401],[-99,-798],[61,-384],[37,99],[133,1493],[-214,965],[-206,312],[-85,670],[145,1086],[206,277],[151,-128],[382,-1174],[167,-302],[141,49],[636,1551],[441,560],[446,1046],[303,2641],[-245,1614],[230,351],[508,1339],[190,588],[-37,843],[263,415]],[[704253,530490],[-3,0],[-6,-1],[-1,8],[-3,33],[-2,16],[0,9],[1,74],[1,18],[6,48],[1,8],[3,15],[5,32],[9,43],[2,9],[3,17],[2,7],[5,22],[4,14],[7,7],[3,3],[4,0],[3,0],[4,0],[4,0],[3,-6],[3,-7],[-1,-8],[-1,-8],[-1,-15],[-4,-27],[-15,-98],[-1,-9],[-2,-9],[-1,-8],[-1,-8],[-9,-72],[-1,-9],[-1,-14],[-1,-7],[-2,-7],[-15,-62],[-2,-8]],[[703248,501730],[-4,-3],[-12,-9],[-9,-5],[-23,35],[-7,10],[-2,6],[-10,24],[5,-1],[18,-2],[8,-2],[5,-1],[24,-11],[4,-2],[4,-4],[7,-10],[8,-9],[-8,-8],[-8,-8]],[[703334,501812],[-4,-4],[-31,-32],[-11,-13],[-3,17],[-1,8],[35,88],[2,-6],[11,-24],[6,-12],[-2,-8],[-2,-14]],[[703130,501873],[-1,-7],[-3,-14],[-9,6],[-4,3],[-10,19],[-2,8],[-3,17],[-3,17],[5,14],[2,7],[7,-11],[4,-5],[3,-6],[3,-8],[4,-16],[5,-16],[2,-8]],[[703408,502079],[-2,-6],[-1,8],[-4,32],[11,21],[2,6],[3,5],[3,5],[14,19],[1,-4],[1,-5],[-2,-17],[-3,-25],[-23,-39]],[[703089,502036],[-1,-8],[-2,-16],[-1,-9],[-3,2],[-3,1],[-4,2],[-51,175],[-5,16],[-16,62],[0,8],[1,33],[4,15],[7,31],[2,8],[6,11],[8,16],[3,5],[1,-8],[8,-60],[1,-9],[17,-125],[4,-17],[2,-8],[22,-125]],[[703450,502206],[-3,-5],[-3,-4],[-5,25],[-3,17],[-2,8],[-22,110],[8,17],[21,28],[6,1],[4,1],[6,-12],[2,-6],[3,-7],[-1,-7],[-3,-16],[-8,-106],[0,-44]],[[704009,504012],[-2,-5],[-6,-11],[-3,-6],[-3,1],[-11,4],[-38,109],[15,19],[7,10],[8,10],[4,-4],[4,-3],[2,-9],[8,-34],[4,-17],[2,-8],[3,-16],[6,-40]],[[703009,507135],[-3,-7],[-6,3],[-3,1],[-10,16],[-6,11],[0,9],[4,2],[3,1],[19,-21],[1,-7],[1,-8]],[[703071,507162],[15,-32],[0,-9],[1,-9],[-4,-14],[-6,-21],[-8,-1],[-9,27],[-5,14],[-2,18],[-1,9],[-1,8],[5,10],[2,5],[8,3],[4,1],[1,-4],[0,-5]],[[702984,507208],[-1,-5],[-7,-5],[-17,7],[4,12],[2,6],[4,0],[9,1],[2,-3],[2,-3],[1,-5],[1,-5]],[[703398,507217],[-2,-7],[-2,-7],[-6,-22],[-31,-8],[-6,7],[-4,3],[2,9],[2,18],[17,30],[7,-3],[16,-5],[3,-2],[2,-6],[2,-7]],[[702848,507453],[-2,-5],[-7,1],[-3,1],[-3,3],[-10,7],[0,15],[4,0],[8,-2],[3,-4],[8,-9],[2,-7]],[[703814,507438],[-8,-4],[-4,-2],[-3,6],[0,9],[-1,16],[1,5],[0,6],[3,6],[17,38],[6,12],[4,3],[4,3],[3,-1],[2,-2],[3,-5],[4,-11],[-31,-79]],[[703909,507563],[-9,-4],[-4,-2],[-3,12],[2,7],[5,14],[4,2],[8,3],[0,-5],[1,-5],[-3,-15],[-1,-7]],[[702762,507587],[-5,-6],[-3,-2],[-27,28],[-4,4],[0,17],[8,0],[28,-30],[3,-11]],[[703945,507659],[-3,-7],[-2,-7],[-4,4],[-1,18],[2,17],[6,9],[5,9],[4,-2],[0,-9],[1,-9],[-8,-23]],[[703976,507755],[-4,-2],[-8,-5],[-1,7],[-1,16],[0,8],[0,9],[8,5],[3,3],[15,9],[5,-7],[-1,-7],[-1,-6],[-15,-30]],[[704017,507773],[-7,-2],[-5,8],[-1,12],[2,8],[8,33],[5,-1],[5,-39],[-1,-8],[-6,-11]],[[704043,507825],[-4,-5],[-4,-5],[-3,4],[-1,8],[0,17],[7,11],[17,30],[4,6],[3,-3],[3,-3],[0,-4],[1,-5],[-20,-45],[-3,-6]],[[704132,507901],[-4,-3],[-7,-6],[-4,-3],[-2,8],[-2,8],[3,11],[1,5],[8,10],[4,5],[3,0],[2,1],[3,-7],[0,-12],[-2,-6],[-3,-11]],[[704157,507973],[-6,-12],[-3,-6],[-2,26],[0,9],[5,13],[3,6],[3,7],[3,-3],[2,-10],[-1,-8],[-3,-15],[-1,-7]],[[704177,508044],[-7,-4],[-3,-2],[0,17],[1,35],[9,19],[3,7],[4,1],[1,-5],[1,-6],[0,-17],[-1,-8],[-5,-23],[-2,-7],[-1,-7]],[[702688,508163],[-1,-5],[-1,-5],[-9,2],[-8,2],[-3,6],[-9,23],[0,7],[-1,7],[3,4],[21,-20],[3,-5],[2,-6],[3,-10]],[[704198,508314],[-2,-3],[-2,-2],[-6,7],[-3,4],[-1,24],[-1,8],[2,8],[4,-3],[4,-17],[2,-8],[2,-8],[1,-5],[0,-5]],[[702654,508464],[-5,-36],[-2,9],[-6,25],[-1,15],[3,13],[2,6],[2,3],[2,2],[3,-6],[3,-6],[1,-13],[-1,-6],[-1,-6]],[[704187,508474],[-3,-13],[-2,7],[-4,13],[1,16],[1,8],[1,5],[2,-3],[2,-2],[1,-16],[1,-15]],[[704171,508655],[-2,-3],[-2,-3],[-8,19],[-3,7],[-3,6],[0,6],[0,5],[9,2],[5,-13],[3,-6],[1,-7],[1,-7],[-1,-6]],[[702630,508680],[-2,-6],[-9,5],[-4,3],[-5,35],[-2,18],[-1,9],[1,5],[1,4],[8,3],[9,2],[2,-18],[3,-28],[2,-9],[-1,-8],[-2,-15]],[[704157,508756],[-3,-1],[-2,-1],[-3,3],[-7,6],[-2,8],[-2,8],[-8,30],[-2,18],[4,2],[17,-29],[7,-11],[6,-11],[0,-7],[0,-7],[-5,-8]],[[702627,508926],[-3,-3],[-6,-5],[-7,8],[15,49],[6,-8],[0,-7],[0,-7],[-3,-13],[-1,-7],[-1,-7]],[[703877,509536],[-3,0],[-3,0],[-16,32],[-3,17],[3,14],[6,1],[3,-5],[13,-22],[1,-9],[1,-17],[-1,-6],[-1,-5]],[[703204,509837],[-11,-8],[-3,-3],[-4,-3],[-1,7],[-1,13],[3,5],[8,8],[6,0],[3,0],[0,-19]],[[703864,509870],[-3,-13],[-8,7],[-3,3],[-1,9],[-1,8],[-3,34],[3,12],[1,6],[8,-1],[2,-5],[2,-6],[1,-27],[2,-27]],[[703851,509973],[-3,-3],[-2,-3],[-4,7],[2,16],[2,17],[1,8],[2,5],[4,10],[3,0],[1,-6],[3,-13],[-1,-9],[-3,-17],[-2,-6],[-3,-6]],[[703837,510108],[-4,-3],[-4,-3],[-6,8],[0,18],[6,14],[11,28],[2,-2],[2,-2],[2,-7],[2,-7],[-2,-8],[-9,-36]],[[703848,510232],[-5,-10],[-3,-4],[-3,2],[-3,2],[-1,8],[-1,33],[-1,17],[2,3],[2,4],[6,-4],[3,-16],[5,-25],[-1,-5],[0,-5]],[[703771,510764],[-5,-9],[-2,6],[-7,20],[0,17],[1,17],[6,7],[3,-5],[3,-5],[0,-7],[2,-22],[0,-12],[-1,-7]],[[703829,516367],[-15,-36],[-6,-10],[-31,3],[-1,15],[3,16],[3,1],[3,2],[42,20],[2,-11]],[[703726,516405],[1,-8],[1,-16],[-9,-11],[-3,-3],[-17,7],[-5,5],[-1,6],[-1,6],[1,9],[33,5]],[[703877,516429],[-4,-5],[-3,-4],[-14,-19],[-6,-9],[-3,0],[-3,0],[-11,7],[-4,4],[0,7],[23,41],[8,3],[7,-4],[3,-2],[3,-2],[6,-4],[-1,-7],[-1,-6]],[[703612,516435],[-12,-2],[-3,-1],[-7,10],[-1,15],[8,5],[12,6],[4,0],[4,0],[1,-7],[0,-7],[-2,-6],[-4,-13]],[[703909,516530],[-4,0],[-4,0],[-3,11],[-2,6],[-3,12],[2,8],[3,-4],[6,-7],[5,-9],[2,-4],[-2,-13]],[[703867,516537],[-1,-9],[-7,4],[-4,7],[-1,9],[-1,8],[0,9],[2,7],[2,7],[10,-42]],[[703878,516577],[-5,-11],[-3,6],[-3,6],[4,14],[4,1],[4,0],[-1,-8],[0,-8]],[[704037,516551],[0,-5],[-4,-5],[-3,-4],[-9,2],[-8,3],[0,7],[-2,23],[24,16],[9,-6],[-7,-31]],[[703561,516556],[-3,0],[-3,-1],[-31,40],[-2,11],[5,7],[2,4],[4,-1],[13,-3],[8,-2],[2,-7],[5,-16],[3,-7],[1,-10],[-2,-8],[-2,-7]],[[704168,516616],[-3,-5],[-25,-44],[-5,1],[-7,7],[-1,13],[69,146],[1,-9],[1,-9],[-1,-7],[-2,-14],[-2,-8],[-6,-22],[-9,-29],[-3,-6],[-3,-7],[-4,-7]],[[704236,516787],[-9,-36],[-8,3],[-9,3],[2,9],[14,75],[3,17],[4,-4],[4,-5],[-1,-62]],[[703482,516955],[-9,-2],[-8,-1],[-5,8],[-2,4],[1,15],[3,3],[12,16],[5,10],[3,-3],[6,-6],[2,-5],[3,-12],[-3,-6],[-8,-21]],[[704256,516928],[-10,5],[28,332],[3,13],[1,6],[7,11],[4,-4],[6,-7],[3,-4],[3,-7],[5,-14],[2,-7],[3,-36],[1,-9],[0,-9],[-1,-8],[-2,-8],[-3,-16],[-6,-33],[-2,-8],[-3,-17],[-34,-160],[-5,-20]],[[703547,517349],[-9,-5],[-4,7],[-1,17],[2,12],[2,7],[3,3],[3,4],[2,-1],[2,0],[2,-6],[1,-13],[0,-6],[-2,-13],[-1,-6]],[[704289,517416],[-5,-4],[-7,34],[-2,8],[-4,17],[6,9],[2,-6],[6,-12],[2,-6],[2,-32],[0,-8]],[[703690,517523],[-2,-6],[-4,2],[-12,3],[-2,6],[-3,5],[0,13],[1,7],[4,13],[3,3],[7,7],[3,1],[3,0],[1,-8],[1,-46]],[[704271,517672],[0,-8],[-1,-16],[-5,1],[-2,5],[-2,6],[-2,6],[-3,5],[0,13],[0,7],[8,6],[3,3],[2,-14],[1,-7],[1,-7]],[[704267,517897],[-2,-1],[-2,-2],[-2,8],[-2,9],[0,15],[0,8],[4,20],[4,-1],[2,-12],[1,-6],[-2,-19],[-1,-19]],[[704280,518011],[-4,-3],[-8,-4],[3,17],[4,27],[2,6],[2,0],[3,0],[1,-4],[2,-4],[-1,-9],[0,-19],[-4,-7]],[[704305,518096],[-8,-7],[-4,-4],[-2,6],[-4,12],[14,91],[4,14],[3,-3],[3,-3],[1,-16],[-1,-8],[-3,-27],[0,-43],[-3,-12]],[[704344,518218],[-6,-7],[-4,1],[-4,0],[-10,1],[-2,6],[-2,12],[5,26],[8,43],[60,15],[6,-3],[7,-3],[5,-9],[3,-5],[-3,-6],[-4,-11],[-2,-5],[-7,-8],[-7,-8],[-43,-39]],[[702876,518618],[-7,-5],[-11,7],[-5,6],[-3,2],[0,9],[1,10],[3,0],[4,0],[15,2],[2,-8],[2,-8],[0,-8],[-1,-7]],[[702991,518621],[-7,-1],[-3,0],[-2,4],[-5,9],[-1,18],[7,10],[6,-12],[4,-6],[3,-6],[-1,-8],[-1,-8]],[[703059,518691],[-4,-1],[-9,-4],[-2,5],[-4,10],[0,13],[3,22],[2,15],[4,-3],[3,-4],[5,-12],[2,-13],[1,-7],[-1,-14],[0,-7]],[[702713,518766],[0,-12],[-3,1],[-7,2],[-3,7],[-7,22],[6,7],[3,3],[3,-6],[4,-12],[4,-12]],[[703124,518757],[-6,-7],[-7,0],[-8,1],[-6,9],[-6,10],[-3,4],[-2,14],[-1,7],[1,8],[0,8],[2,0],[3,1],[7,-8],[22,-24],[4,-4],[0,-10],[0,-9]],[[703199,518840],[-3,-1],[-3,-1],[-7,9],[-3,20],[1,7],[1,8],[5,2],[2,-6],[2,-6],[2,-7],[3,-6],[2,-7],[-1,-6],[-1,-6]],[[702629,519239],[-1,-25],[-1,-9],[-6,13],[-9,19],[-1,13],[3,2],[3,1],[3,-1],[3,-1],[3,-6],[3,-6]],[[702654,519338],[-1,-6],[-2,-7],[-15,4],[-1,6],[-2,13],[8,23],[6,0],[7,-33]],[[702593,519501],[-2,-2],[-8,5],[-1,8],[-4,23],[-3,16],[-2,15],[-2,7],[1,9],[0,9],[3,-5],[6,-8],[3,-4],[6,-42],[1,-7],[1,-16],[1,-8]],[[703734,519631],[-3,-5],[-6,-9],[-7,5],[-1,12],[3,35],[4,13],[4,-2],[4,-2],[7,-3],[0,-8],[-1,-9],[-1,-11],[-3,-16]],[[703768,519742],[-6,-3],[-1,6],[2,13],[6,13],[10,34],[1,7],[4,0],[0,-9],[-2,-17],[-4,-15],[-8,-22],[-2,-7]],[[702557,519780],[-3,-13],[-3,7],[-14,49],[2,6],[3,7],[4,1],[4,1],[1,-8],[2,-17],[4,-33]],[[703792,519908],[-5,-6],[-6,5],[-16,239],[26,-56],[12,-80],[-8,-80],[-2,-14],[-1,-8]],[[703656,520586],[-6,-6],[-3,-2],[-2,6],[-7,20],[-2,26],[-1,8],[3,12],[7,3],[4,1],[3,-3],[1,-9],[2,-24],[2,-17],[-1,-15]],[[702524,521624],[-4,-3],[-4,-3],[-1,7],[-2,7],[-5,21],[1,8],[2,14],[7,-1],[4,-1],[3,-33],[0,-8],[-1,-8]],[[702434,521704],[-2,-4],[-6,-9],[-4,3],[-8,6],[-2,7],[-3,7],[-1,18],[-2,19],[0,9],[4,7],[7,-11],[4,-5],[4,-16],[7,-23],[2,-8]],[[702390,521778],[-2,-4],[-7,5],[1,15],[2,15],[0,8],[3,0],[2,0],[3,-5],[5,-11],[1,-8],[1,-8],[-9,-7]],[[702855,522013],[-8,0],[-4,14],[-2,7],[0,8],[28,45],[5,0],[0,-8],[0,-9],[-2,-7],[-3,-7],[-2,-7],[-12,-36]],[[703899,522183],[-5,-1],[1,25],[0,8],[0,8],[0,8],[3,1],[3,1],[3,-15],[2,-7],[-2,-7],[-2,-7],[-1,-7],[-2,-7]],[[703802,522205],[-3,-12],[-4,1],[-4,1],[-35,32],[-5,13],[-2,6],[1,8],[0,7],[4,-4],[28,-21],[7,-4],[3,-2],[5,-13],[5,-12]],[[703996,522495],[-9,-9],[-3,3],[-7,5],[2,13],[6,7],[2,3],[4,1],[8,1],[2,-10],[-5,-14]],[[702810,522648],[-2,-6],[-4,-13],[-5,7],[-3,3],[-1,15],[0,7],[2,6],[1,5],[5,6],[3,-11],[3,-13],[1,-6]],[[702404,522771],[1,-17],[-32,-5],[3,6],[2,6],[7,18],[5,10],[7,8],[4,4],[3,4],[0,-34]],[[704315,522871],[-7,-6],[-3,-3],[-5,5],[1,9],[2,6],[5,13],[3,2],[3,2],[2,-6],[2,-6],[-2,-8],[-1,-8]],[[702366,522906],[0,-6],[0,-5],[-9,2],[-5,7],[-3,4],[1,14],[0,8],[5,1],[4,2],[2,-4],[2,-4],[1,-7],[2,-12]],[[704321,522944],[-5,-11],[-2,-6],[-3,1],[-7,4],[0,7],[0,8],[3,13],[3,1],[3,2],[3,-1],[4,-2],[0,-8],[1,-8]],[[704327,523000],[-2,-7],[-1,-7],[-3,1],[-11,1],[-1,12],[4,9],[6,3],[3,2],[2,-7],[3,-7]],[[704335,523038],[-3,-3],[-6,-7],[-6,27],[0,8],[2,16],[1,16],[3,7],[4,6],[5,-10],[3,-4],[-3,-56]],[[702495,523097],[-9,-2],[-4,-1],[-4,14],[1,16],[8,2],[4,1],[5,-8],[1,-7],[1,-6],[-1,-4],[-2,-5]],[[702522,523139],[-4,0],[-8,0],[-7,10],[2,7],[2,7],[7,6],[4,-2],[3,-1],[1,-8],[0,-9],[0,-10]],[[702816,523228],[-2,-9],[-3,-16],[-10,4],[-3,2],[-3,6],[-8,19],[4,3],[7,6],[4,2],[4,3],[6,4],[4,-24]],[[704357,523220],[-5,-9],[-2,-4],[-7,2],[-6,13],[-6,12],[-1,16],[6,6],[4,-2],[7,-3],[4,-2],[1,-7],[5,-22]],[[704399,523257],[-2,-4],[-6,-9],[-5,10],[3,46],[1,16],[1,16],[1,9],[3,0],[7,0],[1,-2],[0,-9],[-1,-8],[-3,-65]],[[702866,523425],[-3,-2],[-6,-6],[-6,12],[-3,7],[1,14],[0,7],[4,3],[4,3],[4,-4],[4,-4],[0,-7],[0,-8],[1,-15]],[[702514,523972],[-1,-8],[-1,-8],[-1,-8],[-1,-8],[-9,2],[0,8],[-1,15],[0,8],[1,8],[2,23],[3,0],[8,0],[0,-24],[0,-8]],[[702725,524128],[-4,-2],[-8,-5],[-5,-3],[-4,-2],[-5,7],[-2,4],[2,6],[2,6],[9,5],[8,5],[6,0],[2,-7],[2,-7],[-2,-3],[-1,-4]],[[702756,525004],[-7,-1],[-3,6],[-6,12],[1,8],[1,9],[7,4],[3,3],[4,-14],[2,-8],[1,-8],[-2,-6],[-1,-5]],[[704251,526266],[-5,-3],[-6,12],[1,8],[4,5],[7,10],[4,1],[8,3],[1,-5],[2,-4],[-1,-8],[-15,-19]],[[702320,526335],[-8,-5],[-9,5],[-4,2],[0,9],[-2,28],[4,-1],[4,0],[12,-1],[4,-1],[5,-1],[0,-7],[0,-8],[-4,-13],[-2,-7]],[[702236,526398],[-2,-15],[-1,-7],[-36,-4],[4,21],[1,6],[12,14],[8,9],[7,-12],[7,-12]],[[702182,526413],[-7,-2],[-8,-2],[-1,16],[3,11],[3,0],[8,0],[3,-7],[-1,-8],[0,-8]],[[702549,526548],[-4,-1],[-9,-1],[-1,4],[-1,5],[2,7],[5,22],[36,82],[3,3],[7,6],[4,-11],[2,-5],[-2,-17],[-2,-17],[-3,-6],[-22,-42],[-6,-12],[-3,-6],[-6,-11]],[[702156,527314],[-8,0],[-4,13],[-4,42],[4,6],[5,-7],[3,-4],[1,-7],[1,-15],[1,-8],[1,-13],[0,-7]],[[703894,527572],[-12,-5],[-4,-1],[-1,7],[-3,22],[11,4],[4,2],[8,-5],[7,-5],[0,-6],[-1,-6],[-3,-3],[-6,-4]],[[701953,527777],[-17,-3],[-5,10],[-2,4],[-3,37],[-1,10],[8,-6],[11,-8],[4,-3],[2,-6],[5,-13],[-1,-15],[-1,-7]],[[703995,528539],[-2,-8],[-2,-8],[-3,2],[-2,2],[-1,8],[-1,36],[3,3],[2,2],[3,-1],[2,0],[1,-7],[1,-7],[-1,-15],[0,-7]],[[704004,528600],[-3,-1],[-3,-1],[-6,14],[1,11],[4,1],[7,2],[3,-2],[3,-3],[2,-7],[-3,-5],[-5,-9]],[[704017,528652],[-5,-4],[-9,17],[1,15],[3,2],[3,2],[3,-3],[4,-4],[0,-9],[1,-8],[-1,-8]],[[704047,528813],[-4,-16],[-2,6],[-2,6],[-4,60],[6,0],[4,0],[3,-19],[0,-10],[-1,-18],[0,-9]],[[704096,529063],[-8,-2],[-8,-2],[-3,5],[-5,11],[4,5],[7,10],[10,15],[6,9],[6,-1],[3,0],[0,-7],[-1,-13],[-2,-8],[-9,-22]],[[701977,529417],[-8,-3],[-4,-2],[-4,2],[-3,1],[-12,5],[-1,14],[-1,7],[4,0],[4,0],[25,2],[5,1],[-3,-18],[-2,-9]],[[702624,529654],[-3,-3],[-3,-3],[-7,2],[-1,8],[8,45],[7,8],[3,-45],[-2,-6],[-2,-6]],[[701997,529774],[-2,-5],[-5,-10],[-8,2],[-12,3],[-4,1],[-2,6],[-2,6],[5,7],[2,3],[5,0],[17,1],[5,0],[0,-7],[1,-7]],[[704203,530016],[-5,-13],[-4,1],[-9,1],[-1,8],[-1,17],[-1,8],[-1,8],[3,16],[6,-10],[3,-6],[2,-7],[6,-15],[2,-8]],[[702599,530061],[-5,0],[-3,12],[5,27],[1,8],[5,0],[4,1],[1,-10],[1,-9],[-5,-14],[-4,-15]],[[704179,530448],[-13,18],[2,18],[4,14],[2,7],[15,9],[3,2],[26,-18],[0,-8],[0,-14],[-2,-13],[-1,-6],[-7,-4],[-3,-3],[-26,-2]],[[704033,530501],[-4,-1],[-7,-3],[-32,46],[-1,6],[-1,7],[17,-3],[9,-2],[4,-1],[3,-6],[4,-6],[6,-12],[2,-17],[0,-8]],[[702393,530749],[3,-14],[2,-7],[-4,1],[-14,6],[-7,11],[-3,5],[1,8],[1,16],[4,-4],[6,-9],[11,-13]],[[702708,530976],[-10,-1],[-16,11],[-4,3],[-3,3],[-4,3],[-2,16],[4,0],[13,-2],[15,-9],[4,-2],[2,-7],[2,-7],[-1,-8]],[[703758,531258],[-3,-7],[-12,1],[-8,0],[0,11],[4,2],[15,7],[2,-3],[2,-4],[0,-7]],[[704596,531636],[-4,0],[-16,-2],[-1,15],[-1,8],[3,23],[1,7],[3,2],[3,2],[2,-4],[2,-3],[2,-7],[7,-30],[-1,-5],[0,-6]],[[702657,531949],[-7,-3],[-3,-1],[-4,14],[0,9],[1,8],[1,26],[1,7],[1,7],[6,5],[3,2],[8,-43],[0,-5],[0,-5],[-2,-7],[-5,-14]],[[704749,532039],[-1,16],[3,5],[6,11],[6,11],[3,-3],[5,-6],[0,-8],[0,-8],[-5,-9],[-3,-5],[-14,-4]],[[703911,532878],[-7,-6],[-4,1],[-7,3],[-4,15],[1,9],[1,9],[9,4],[2,-6],[3,-6],[5,-12],[1,-11]],[[704323,533124],[-12,-3],[-12,-3],[-1,7],[0,12],[11,3],[4,1],[8,2],[2,-3],[3,-2],[-3,-14]],[[702792,534633],[0,-6],[-1,-6],[-32,-65],[-3,0],[-4,46],[3,29],[16,23],[4,-2],[7,-4],[8,-4],[2,-11]],[[702700,534648],[-4,-11],[-13,5],[-4,2],[-3,4],[-17,20],[3,3],[3,3],[3,-1],[4,0],[11,-1],[3,-5],[4,-4],[10,-15]],[[702613,534660],[-7,-7],[-3,-3],[-8,2],[-31,8],[0,4],[-1,5],[11,8],[4,3],[3,3],[4,-1],[20,-7],[8,-2],[0,-13]],[[704074,535055],[-4,-1],[-17,-4],[-8,-2],[-3,2],[-2,2],[-1,15],[0,8],[17,10],[8,7],[15,17],[1,-9],[1,-9],[-6,-29],[-1,-7]],[[702512,535492],[-1,-7],[-2,-7],[-6,9],[-3,5],[-2,7],[-4,16],[-2,8],[-1,8],[4,4],[3,3],[2,-6],[5,-13],[2,-7],[2,-6],[2,-7],[1,-7]],[[702562,535496],[-3,-4],[-2,-4],[-7,7],[-6,7],[-3,15],[-1,8],[1,9],[1,9],[7,6],[4,3],[1,-7],[2,-14],[1,-7],[4,-21],[1,-7]],[[702586,535534],[-8,-2],[-6,11],[-3,6],[-3,6],[0,9],[-1,9],[3,3],[3,-3],[3,-2],[3,-5],[3,-6],[3,-6],[3,-6],[0,-7],[0,-7]],[[702893,535997],[-17,0],[-6,9],[-4,4],[2,12],[3,2],[3,3],[19,-18],[0,-6],[0,-6]],[[702938,536093],[0,-7],[-1,-7],[-9,4],[-4,2],[-16,10],[-4,16],[-2,8],[-2,8],[3,5],[4,6],[4,-4],[7,-6],[20,-35]],[[703030,536258],[-14,0],[-3,2],[-3,2],[-5,9],[3,4],[3,3],[6,1],[18,-11],[-3,-5],[-2,-5]],[[703084,536344],[-4,-4],[-3,-3],[-4,1],[-5,2],[-8,3],[-3,5],[-7,9],[4,7],[8,0],[12,0],[5,1],[2,-6],[3,-6],[0,-9]],[[703059,536685],[-7,-5],[-4,12],[-3,12],[-1,6],[6,14],[3,-3],[4,-3],[2,-16],[1,-8],[-1,-9]],[[703165,536905],[-8,-7],[-3,14],[6,25],[1,8],[5,0],[2,-17],[1,-9],[-2,-7],[-2,-7]],[[704415,536996],[-8,-29],[-1,-7],[-13,7],[-4,3],[-8,5],[6,14],[6,14],[2,7],[24,57],[-1,-18],[-2,-35],[-1,-18]],[[702839,537059],[-8,-10],[-12,5],[-2,4],[-1,5],[2,5],[3,4],[5,10],[8,-9],[3,-5],[1,-4],[1,-5]],[[703081,537063],[-7,0],[0,7],[-2,14],[1,14],[2,5],[1,6],[4,-1],[3,-1],[4,-2],[3,-7],[2,-8],[1,-8],[-3,-16],[-9,-3]],[[704545,537321],[-4,-21],[-1,-6],[-1,6],[-2,6],[-2,6],[0,36],[0,9],[0,18],[4,1],[4,2],[0,-10],[1,-28],[1,-19]],[[703689,537473],[-4,0],[-16,-1],[-4,0],[-18,1],[-9,0],[2,14],[1,7],[4,9],[5,0],[25,3],[9,1],[1,-9],[1,-8],[3,-17]],[[703900,537464],[-3,-3],[-3,-3],[-3,6],[-23,36],[-7,11],[5,3],[4,3],[6,-10],[13,-20],[7,-10],[4,-13]],[[704554,537501],[-1,-26],[0,-18],[-4,2],[-12,55],[2,6],[1,6],[4,3],[3,2],[7,-30]],[[704511,537812],[29,-39],[-4,-140],[-9,-28],[-5,-5],[-4,2],[-14,190],[7,20]],[[703728,537866],[-3,-36],[0,-9],[-6,2],[-8,49],[0,9],[4,2],[4,1],[3,-2],[2,-2],[2,-7],[2,-7]],[[703743,537936],[-1,-8],[-2,-15],[-5,6],[0,9],[-1,8],[-1,32],[0,10],[4,0],[6,2],[2,-12],[0,-6],[0,-9],[-2,-17]],[[702778,538067],[29,-1],[3,-4],[8,-6],[-4,-5],[-6,-9],[-4,-5],[-16,-2],[-4,-1],[-4,0],[-2,33]],[[703759,538038],[-6,-31],[-2,-8],[-4,9],[-2,5],[-1,7],[-2,22],[2,8],[2,15],[7,6],[3,4],[2,-19],[1,-9],[0,-9]],[[704296,538082],[-1,-7],[-1,-13],[-3,1],[-11,5],[-12,20],[-9,15],[4,2],[8,3],[14,-15],[7,-7],[4,-4]],[[702794,538117],[-3,-3],[-5,10],[2,6],[7,18],[4,0],[16,3],[1,-8],[1,-7],[-23,-19]],[[702822,539063],[-10,-17],[-3,25],[-1,8],[4,22],[2,7],[3,5],[7,12],[2,-24],[0,-8],[0,-7],[-1,-8],[-3,-15]],[[703748,539426],[-7,-1],[-3,0],[-4,0],[-5,10],[-3,5],[33,26],[0,-18],[0,-10],[-7,-8],[-4,-4]],[[703852,539564],[-17,-63],[-2,-8],[1,9],[0,17],[1,33],[7,92],[8,7],[2,-7],[1,-7],[3,-14],[0,-8],[-2,-17],[-2,-34]],[[703861,539718],[-4,-24],[-3,-17],[-1,15],[-7,50],[-1,9],[7,0],[3,0],[2,-8],[1,-8],[3,-17]],[[703716,539722],[-3,-2],[-4,-1],[-2,6],[-5,14],[-8,20],[-3,7],[7,8],[3,4],[3,-8],[3,-7],[6,-14],[2,-18],[1,-9]],[[702744,539839],[-4,15],[-17,61],[5,11],[3,6],[3,-4],[6,-6],[3,-4],[3,-21],[1,-7],[-3,-51]],[[703840,539920],[-4,-1],[-12,-4],[-2,18],[-3,44],[-1,8],[9,-2],[24,-6],[4,-1],[2,-9],[3,-16],[-7,-10],[-10,-16],[-3,-5]],[[702715,540110],[-5,0],[-6,24],[-2,7],[-2,8],[-1,19],[-1,9],[4,2],[7,3],[4,-12],[3,-13],[0,-8],[-1,-24],[0,-15]],[[703151,540142],[-3,6],[-5,13],[4,34],[4,3],[3,2],[14,2],[4,0],[5,1],[6,-13],[4,-6],[3,-6],[-39,-36]],[[703997,540261],[-4,-4],[-3,-5],[-12,-18],[-4,2],[-12,4],[56,143],[4,0],[7,0],[-1,-9],[-4,-66],[-24,-41],[-3,-6]],[[702684,540379],[-1,-14],[0,-7],[-4,4],[-6,7],[-12,72],[4,17],[3,2],[3,2],[3,-4],[3,-5],[0,-9],[7,-65]],[[703978,540704],[-8,-4],[-12,-6],[-6,21],[-1,35],[0,9],[10,-10],[7,-7],[3,-4],[2,-8],[2,-9],[3,-17]],[[703870,541035],[-7,-3],[-35,52],[-1,7],[-2,13],[7,4],[3,2],[4,-2],[3,-2],[7,-4],[21,-53],[0,-7],[0,-7]],[[703319,541274],[4,-13],[2,-7],[2,-6],[-5,-9],[-26,-8],[-4,2],[-7,4],[4,17],[5,25],[4,-1],[9,-1],[12,-3]],[[702933,541414],[-7,-3],[-27,36],[-4,5],[0,5],[-1,5],[5,5],[7,-8],[25,-28],[4,-4],[0,-8],[-2,-5]],[[703493,541710],[-9,-23],[-7,9],[-1,17],[-1,17],[2,7],[5,15],[7,-8],[3,-3],[4,-4],[-2,-18],[-1,-9]],[[703274,541800],[-3,-3],[-6,-5],[-5,14],[-2,7],[-6,30],[6,8],[4,4],[4,-1],[8,-2],[0,-8],[1,-8],[0,-25],[0,-5],[-1,-6]],[[703505,542222],[11,-26],[3,-6],[2,-6],[4,-11],[-4,-16],[-3,-17],[-2,-8],[-2,-5],[-5,-12],[-6,22],[-1,7],[-2,7],[0,18],[-1,36],[4,11],[2,6]],[[703533,542406],[-8,-9],[-15,-3],[-4,21],[3,48],[3,0],[6,1],[9,-34],[4,-16],[2,-8]],[[703455,542631],[-15,-14],[-4,6],[-7,11],[5,13],[4,12],[2,6],[5,-1],[8,-2],[5,-1],[-2,-15],[0,-8],[-1,-7]],[[702755,542923],[-4,-4],[-16,-16],[-8,-7],[3,25],[2,16],[2,6],[7,16],[6,-14],[8,-22]],[[703387,542911],[-2,-8],[-3,-8],[-3,3],[-8,6],[-9,93],[6,7],[3,4],[4,-5],[10,-14],[0,-18],[2,-60]],[[703350,543147],[-2,-17],[-1,-8],[-4,-3],[-8,-6],[-17,26],[3,28],[15,22],[3,-4],[7,-7],[1,-8],[2,-15],[1,-8]],[[703133,543147],[-8,-10],[-8,-10],[-1,15],[-1,16],[-1,8],[5,13],[5,13],[3,7],[8,-4],[4,-2],[-2,-15],[-3,-23],[-1,-8]],[[702652,543195],[-5,-1],[-17,-2],[16,70],[4,1],[9,2],[2,-16],[0,-8],[-1,-8],[-2,-8],[-6,-30]],[[703303,543325],[-8,-33],[-2,-8],[-1,-8],[-2,-8],[-4,5],[-7,9],[-2,9],[-7,24],[16,37],[3,-5],[4,-6],[10,-16]],[[701915,543642],[-6,-7],[-3,-4],[-7,4],[0,8],[1,7],[10,44],[4,2],[3,1],[4,2],[2,-13],[1,-6],[-5,-23],[-4,-15]],[[702541,543749],[-13,-8],[-8,-6],[-7,2],[-7,2],[21,33],[8,4],[5,1],[6,-5],[3,-3],[-3,-7],[-5,-13]],[[702490,543792],[-4,0],[-7,0],[-1,15],[0,8],[3,4],[6,10],[3,5],[4,0],[7,1],[4,1],[2,-5],[3,-5],[2,-4],[-4,-13],[-3,-12],[-11,-3],[-4,-2]],[[702873,544315],[-2,-6],[-3,-14],[-3,1],[-7,3],[-14,39],[4,15],[2,4],[4,9],[21,-24],[-1,-9],[-1,-18]],[[702667,544470],[-8,0],[-8,-1],[-7,9],[17,31],[3,2],[6,2],[1,-7],[2,-13],[-4,-15],[-2,-8]],[[702613,544538],[-8,-8],[-7,-7],[-4,-3],[-4,1],[-11,3],[9,16],[3,5],[3,4],[9,11],[3,-6],[7,-16]],[[702869,544607],[-4,-4],[-8,-9],[-2,8],[-2,7],[1,9],[0,9],[0,36],[3,5],[6,9],[4,5],[4,-12],[2,-6],[-4,-57]],[[702757,544781],[-8,-3],[-4,-1],[-5,26],[-2,9],[-1,8],[-1,17],[0,9],[8,5],[4,2],[2,-6],[3,-7],[2,-6],[1,-44],[1,-9]],[[702916,544903],[-6,-31],[-5,10],[-3,6],[-17,82],[-1,19],[0,9],[-1,27],[4,-1],[8,-1],[6,-10],[9,-16],[2,-8],[1,-8],[3,-15],[0,-18],[0,-18],[0,-18],[0,-9]],[[702490,545023],[-8,4],[-4,1],[-4,16],[2,8],[4,22],[4,1],[5,1],[9,2],[-8,-55]],[[702792,545108],[-8,-3],[-3,-2],[-1,6],[-1,14],[4,30],[1,8],[3,3],[3,2],[7,6],[2,-14],[2,-15],[-6,-21],[-2,-7],[-1,-7]],[[702490,545199],[-27,-27],[-13,-8],[-3,5],[-10,14],[-3,16],[-2,8],[-1,8],[3,1],[6,1],[29,1],[8,-1],[4,0],[3,-6],[6,-12]],[[702958,545145],[-8,4],[-1,7],[-3,24],[-2,16],[3,25],[1,8],[1,8],[7,2],[7,1],[2,-7],[4,-15],[-11,-73]],[[702576,545450],[-5,-3],[-4,-3],[-3,16],[-5,23],[1,23],[1,8],[4,1],[7,1],[1,-9],[0,-18],[2,-32],[1,-7]],[[703066,545419],[-14,-32],[-2,-6],[-11,2],[-4,1],[21,158],[2,-7],[6,-21],[3,-14],[0,-18],[0,-18],[0,-18],[-1,-18],[0,-9]],[[702539,545610],[-4,-1],[-5,-1],[1,8],[1,41],[0,17],[2,7],[3,8],[4,-4],[7,-9],[5,-7],[3,-3],[-1,-7],[-2,-7],[-3,-15],[-2,-7],[-3,-7],[-6,-13]],[[702884,545660],[-12,-29],[-15,84],[3,6],[3,6],[7,-8],[6,-7],[3,-7],[6,-13],[-1,-8],[0,-8],[0,-8],[0,-8]],[[703170,545606],[-6,-10],[-7,-11],[-4,4],[-4,3],[-14,14],[79,283],[4,5],[11,15],[3,-15],[5,-23],[-1,-7],[-4,-39],[-33,-141],[-29,-78]],[[703084,545887],[-6,-2],[-4,-1],[-3,5],[-6,12],[3,25],[1,8],[1,9],[4,4],[3,5],[3,-6],[4,-12],[-1,-15],[0,-8],[0,-16],[1,-8]],[[703294,546172],[35,3],[2,-7],[4,-14],[-2,-16],[-4,-24],[-11,-6],[-4,-2],[-4,0],[-21,3],[-1,8],[-4,24],[2,34],[4,-1],[4,-2]],[[702879,546261],[-8,4],[-5,22],[-3,15],[-1,16],[-2,33],[3,4],[3,5],[13,-99]],[[702681,546377],[-5,-25],[-4,6],[0,25],[0,8],[-1,8],[7,12],[1,-8],[1,-17],[1,-9]],[[703052,546511],[-6,-15],[-4,3],[-7,7],[-2,8],[-7,23],[-7,23],[-1,7],[-2,21],[2,9],[2,17],[4,-5],[7,-9],[21,-89]],[[703154,546608],[-13,-5],[-5,-1],[24,60],[4,-1],[4,-1],[0,-16],[0,-8],[-1,-8],[-3,-5],[-3,-5],[-7,-10]],[[703373,546563],[-3,-7],[-21,-67],[-5,-15],[-8,23],[-6,32],[13,206],[3,4],[6,9],[3,4],[2,-7],[3,-7],[3,-7],[3,-6],[3,-7],[6,-50],[2,-17],[1,-8],[0,-9],[-5,-71]],[[702533,546911],[-9,-2],[-9,2],[-4,1],[-4,36],[4,5],[9,14],[3,-6],[3,-5],[5,-12],[1,-16],[0,-9],[1,-8]],[[702481,546955],[0,-8],[2,-16],[-4,1],[-8,1],[-3,15],[-1,8],[-4,24],[2,8],[2,15],[7,-24],[4,-16],[3,-8]],[[703332,546877],[-10,-2],[-4,0],[-5,9],[-3,5],[2,77],[6,87],[12,-6],[7,-4],[1,-9],[8,-49],[-14,-108]],[[702456,547078],[-4,-2],[-5,-2],[-2,7],[-6,22],[-3,22],[-3,16],[4,-2],[5,-2],[8,-27],[2,-7],[3,-17],[1,-8]],[[702738,547257],[-8,-7],[-9,10],[-15,93],[3,1],[7,3],[4,-14],[5,-13],[1,-8],[12,-65]],[[702218,547644],[-5,-6],[-3,9],[8,23],[2,8],[4,3],[8,5],[4,3],[0,-6],[-1,-13],[-14,-21],[-3,-5]],[[702547,547662],[-9,-8],[-4,14],[-15,85],[8,6],[2,-3],[3,-3],[20,-46],[0,-9],[1,-8],[-3,-14],[-3,-14]],[[188148,675900],[-103,-154],[-370,255],[-49,34],[-314,473],[304,1830],[331,136],[108,45],[152,-641],[110,-466],[-169,-1512]],[[185815,677480],[-25,-230],[-317,302],[-996,2066],[76,771],[145,-14],[172,-315],[633,-1155],[236,-1075],[76,-350]],[[975560,547554],[-178,139],[-181,142],[-2,2],[-6,8],[-18,26],[-5,7],[-6,9],[-4,5],[-51,106],[-9,20],[-9,21],[2,18],[1,9],[3,18],[3,18],[17,52],[2,2],[1,0],[1,1],[3,2],[174,-224],[310,-397],[-22,7],[-26,9]],[[968708,532883],[-4,-4],[-6,-6],[-19,-17],[-16,-7],[-3,-1],[-5,-3],[-6,0],[-6,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,1],[-1,0],[-7,2],[-5,0],[-12,13],[-4,5],[-3,4],[-3,6],[-10,20],[-1,5],[-3,8],[-2,7],[-1,13],[0,6],[0,15],[148,30],[42,8],[-15,-30],[-10,-18],[-2,-5],[-6,-10],[-3,-5],[-22,-37]],[[968537,533057],[-3,-2],[-7,-2],[-2,4],[-5,9],[-2,7],[-1,6],[-1,1],[-2,12],[-1,7],[1,4],[1,5],[1,1],[2,1],[1,0],[1,1],[3,-4],[2,-4],[3,-4],[1,-4],[1,-4],[1,-2],[1,-5],[2,-9],[1,-5],[2,-13]],[[968809,533245],[2,-1],[7,-1],[0,-9],[0,-9],[0,-14],[-1,-14],[0,-5],[0,-3],[-2,-23],[-1,-23],[0,-7],[-4,-14],[-3,-2],[-2,-3],[-3,2],[-1,13],[-1,6],[-1,21],[-2,47],[1,7],[3,14],[1,6],[2,6],[2,6],[3,0]],[[968502,533167],[-4,-3],[-3,-3],[-6,8],[-3,4],[-2,6],[-7,18],[-9,26],[-3,12],[1,2],[2,5],[4,7],[2,6],[16,18],[4,-15],[3,-15],[1,-8],[1,-9],[1,-5],[5,-41],[-2,-7],[-1,-5],[0,-1]],[[968530,533386],[-6,-11],[-1,3],[-1,1],[-1,4],[-1,7],[0,10],[1,6],[0,13],[1,4],[2,4],[2,2],[1,2],[2,1],[10,5],[-1,-8],[-1,-24],[-2,-6],[-5,-13]],[[967031,539102],[0,-8],[-1,-26],[-1,-34],[-6,-44],[0,-5],[-1,-4],[-1,-9],[0,-4],[-1,-5],[-1,-8],[0,-1],[-1,-8],[-4,-16],[-7,-30],[-2,-8],[-2,-8],[-4,-16],[-7,-17],[-2,-4],[-3,-5],[-7,-7],[-4,-4],[-18,-1],[-7,14],[-2,4],[0,2],[-4,11],[-1,4],[-2,9],[-2,6],[-6,45],[0,5],[-1,9],[-1,4],[0,3],[0,4],[0,6],[88,206],[1,-1],[2,-1],[3,-2],[1,-9],[1,-13],[3,-34]],[[966936,539107],[-3,-1],[-2,-1],[-2,0],[-1,1],[-1,3],[-6,9],[-1,2],[-2,3],[-5,9],[0,1],[-3,6],[-3,6],[-3,5],[-1,7],[1,8],[1,9],[2,-2],[5,-7],[16,-14],[2,-1],[2,-2],[2,-3],[5,-7],[2,-2],[2,-3],[0,-8],[1,-5],[0,-3],[-7,-9],[-1,-1]],[[969756,539118],[-6,0],[-1,15],[2,7],[3,12],[2,10],[3,11],[1,3],[4,14],[4,14],[1,4],[1,2],[7,10],[3,0],[5,0],[5,-5],[1,-1],[2,-2],[1,-8],[3,-16],[-3,-7],[-5,-14],[-5,-9],[-3,-5],[-2,-4],[0,-1],[-3,-5],[-1,-2],[-5,-9],[-3,-5],[-2,-2],[-3,-3],[-3,-2],[-2,-2],[-1,0]],[[970991,540237],[-1,-12],[-1,2],[-2,3],[-2,6],[-4,11],[-1,10],[-1,6],[-1,6],[-1,2],[0,4],[-3,22],[2,-4],[3,-4],[11,-38],[1,-4],[0,-3],[0,-7]],[[970941,540307],[-3,-1],[-6,15],[-1,6],[-2,4],[-2,7],[-5,22],[-2,7],[-1,9],[-1,7],[4,7],[2,0],[3,0],[2,-6],[0,-1],[5,-14],[5,-14],[10,-27],[0,-4],[-1,-9],[-3,-5],[-1,-1],[-1,0],[-2,-2]],[[978225,540607],[0,-10],[1,-13],[0,-2],[1,-5],[-5,1],[-1,2],[-2,2],[-2,4],[-3,4],[-6,15],[-2,5],[0,2],[-7,24],[-2,8],[-1,2],[-3,21],[-1,7],[8,-6],[4,-3],[2,-2],[1,-1],[2,-2],[1,-2],[3,-6],[3,-6],[4,-18],[3,-14],[2,-7]],[[971160,540042],[-3,-7],[-6,-14],[-2,-8],[-7,-7],[-5,-5],[-4,-4],[-3,1],[-7,4],[-4,1],[-1,2],[-3,4],[-13,21],[-7,11],[-34,61],[-2,7],[-4,13],[-1,0],[44,106],[111,264],[-36,-356],[-2,-16],[-2,-17],[-2,-17],[-1,-9],[-2,-7],[0,-1],[-3,-18],[-1,-8],[0,-1]],[[971263,540794],[-1,-1],[-3,-2],[-12,18],[-2,8],[-4,13],[-1,5],[-1,2],[10,-11],[4,-4],[1,-2],[1,-2],[5,-8],[3,-16]],[[978159,540773],[-3,-4],[-3,5],[-1,2],[-8,36],[-6,26],[1,-1],[10,-5],[11,-46],[-1,-6],[0,-7]],[[970693,540950],[-1,-4],[-1,-1],[-1,-5],[-4,4],[-1,1],[-2,3],[-31,20],[-1,0],[-5,0],[-2,3],[-1,1],[-2,2],[0,1],[-2,12],[0,8],[0,10],[2,11],[6,0],[1,0],[3,-1],[4,0],[0,-1],[2,-3],[3,-4],[2,-4],[4,-6],[3,-6],[4,-6],[3,-6],[5,-9],[12,-20]],[[978107,541086],[-2,-1],[-1,0],[-3,-1],[-3,4],[-5,6],[-2,3],[-1,1],[-4,9],[-2,9],[-2,6],[-3,14],[7,-4],[2,-1],[1,0],[3,-2],[4,-2],[4,-8],[3,-3],[4,-30]],[[971261,540870],[-6,-2],[-2,0],[-1,-1],[-2,11],[-1,4],[82,145],[19,32],[0,1],[3,5],[4,5],[35,33],[35,32],[12,11],[-22,-46],[-138,-209],[-7,-8],[-8,-9],[-2,-2],[-1,-2]],[[971464,541270],[-2,-17],[-4,2],[-3,2],[-1,0],[-16,81],[-9,44],[4,1],[5,1],[2,-2],[1,-2],[2,-2],[1,-1],[4,-4],[3,-3],[6,-12],[1,-2],[5,-10],[0,-3],[1,-5],[3,-15],[0,-3],[0,-5],[0,-3],[0,-4],[-1,-15],[0,-5],[-1,-3],[-1,-15]],[[977668,541501],[19,13],[27,13],[23,12],[3,-1],[2,0],[7,-3],[10,-4],[56,-34],[3,-3],[3,-3],[4,-3],[3,-3],[3,-4],[4,-4],[7,-8],[76,-89],[9,-11],[-6,-8],[-1,-2],[-2,0],[-9,-3],[-3,-1],[-14,8],[-22,22],[-68,41],[-100,62],[-34,13]],[[971327,541575],[3,-6],[18,-47],[4,-8],[2,-5],[-5,4],[-4,3],[-8,6],[-4,3],[0,1],[-6,13],[-3,7],[-8,21],[-4,16],[-3,12],[0,4],[-1,3],[-1,4],[4,-3],[1,-2],[3,-2],[4,-3],[1,-4],[2,-3],[5,-14]],[[977293,541569],[-1,-4],[-1,-4],[-3,-11],[-1,-6],[-1,-3],[-1,-5],[-2,-2],[-1,-1],[-3,-4],[-4,-4],[-6,-7],[-2,0],[-2,-1],[-11,-4],[-5,-2],[-6,1],[-6,0],[-3,0],[-4,1],[-7,8],[-13,17],[-4,4],[-10,14],[-5,6],[-12,14],[-48,80],[-1,2],[-2,4],[-6,12],[-1,2],[-1,4],[0,2],[-1,4],[2,1],[172,-118]],[[977488,541691],[1,-3],[10,-20],[2,-5],[-76,2],[-4,2],[-2,1],[-1,0],[-3,1],[0,6],[0,2],[-1,4],[2,6],[2,5],[2,0],[3,1],[21,3],[21,-2],[19,-2],[3,-1],[1,0]],[[971168,541670],[-2,-1],[-2,-2],[-3,3],[-5,4],[-3,5],[-10,15],[2,4],[1,4],[4,-2],[3,-2],[3,-2],[4,-2],[1,-3],[1,-2],[3,-7],[2,-4],[0,-3],[1,-5]],[[971098,541842],[2,-9],[7,-39],[4,-22],[2,-7],[2,-10],[-4,1],[-9,2],[-2,17],[-2,8],[-1,5],[0,4],[-7,43],[2,2],[6,5]],[[977053,541744],[3,-3],[3,-5],[4,-5],[2,-2],[4,-5],[3,-4],[1,-6],[-6,2],[-1,0],[-2,1],[-39,16],[-28,21],[12,102],[13,7],[31,-119]],[[971086,541882],[1,-8],[0,-9],[-6,2],[-11,41],[-6,18],[9,5],[2,-4],[2,-5],[2,-4],[2,-6],[1,-7],[2,-4],[0,-2],[1,-5],[0,-3],[1,-9]],[[977020,542007],[-3,6],[-6,11],[-1,7],[0,11],[-1,5],[0,10],[0,9],[0,8],[1,8],[1,8],[0,-2],[1,-6],[2,-16],[1,-8],[2,-17],[3,-34]],[[971008,542002],[-1,0],[-2,0],[-1,2],[-1,2],[-4,5],[-1,2],[-15,95],[-21,141],[4,0],[2,-1],[2,0],[2,-8],[13,-50],[4,-16],[7,-35],[3,-17],[4,-56],[5,-64]],[[977012,542183],[-4,1],[-3,0],[0,3],[-3,13],[-3,18],[-6,31],[1,7],[0,6],[0,6],[3,11],[6,28],[2,-26],[1,-2],[0,-6],[1,-9],[0,-2],[1,-6],[0,-3],[1,-5],[2,-24],[0,-6],[1,-35]],[[976988,542414],[-6,8],[-1,1],[-1,1],[-2,3],[-1,16],[-1,9],[-1,13],[0,5],[0,5],[2,24],[0,3],[1,8],[3,17],[4,3],[7,8],[4,3],[6,6],[1,-7],[1,-6],[-16,-120]],[[970902,542516],[0,-6],[0,-3],[0,-3],[-2,1],[-2,1],[-14,62],[-6,24],[2,1],[1,1],[3,1],[0,-1],[5,-14],[5,-14],[1,-1],[0,-2],[3,-13],[4,-15],[0,-4],[0,-5],[0,-10]],[[977460,542677],[-4,-3],[-4,-4],[-8,-6],[-6,-4],[-3,-2],[-2,-2],[-2,-1],[0,3],[0,12],[-1,7],[0,1],[13,9],[4,3],[4,2],[4,4],[1,-1],[6,-3],[2,-8],[-4,-7]],[[970875,542625],[-3,2],[-6,3],[-13,52],[0,7],[0,8],[7,2],[3,-10],[1,-3],[0,-3],[1,-4],[10,-54]],[[970604,542915],[-1,0],[-1,0],[-4,5],[-1,5],[-1,5],[1,4],[1,4],[8,3],[1,-7],[-3,-19]],[[976788,547163],[15,-18],[-13,-6],[-3,-2],[-1,0],[-4,-2],[0,-1],[-10,-4],[-34,-16],[-10,-3],[-16,-3],[-9,-2],[-4,-1],[-4,-1],[-7,7],[-3,2],[-8,9],[-4,3],[-3,5],[-9,13],[-8,12],[-2,6],[-1,2],[-4,15],[-13,41],[-18,77],[-16,72],[4,-3],[4,-5],[7,-5],[174,-192]],[[977125,547342],[31,80],[58,150],[8,3],[3,1],[1,0],[2,-3],[1,-3],[1,-1],[3,-5],[-47,-136],[-28,-56],[-36,-57],[2,14],[1,13]],[[976556,547517],[11,-51],[2,-8],[2,-9],[-4,5],[-25,25],[-10,12],[-2,2],[-4,13],[0,3],[-2,4],[-2,14],[0,2],[17,77],[5,-2],[3,-1],[1,-7],[8,-79]],[[977436,547687],[1,-2],[2,-2],[-3,-4],[-3,-5],[-32,-33],[-10,-11],[-8,-7],[-5,-5],[-6,-6],[-4,-3],[-24,-12],[-3,-2],[-5,0],[-3,16],[85,89],[4,-3],[2,-1],[2,-1],[3,-3],[1,0],[6,-5]],[[977378,547682],[-1,-2],[0,-3],[-4,0],[-8,0],[-9,0],[-8,1],[-17,4],[-1,0],[-3,1],[-6,2],[-1,1],[-4,1],[-2,4],[-1,1],[3,9],[13,4],[5,1],[3,0],[1,1],[6,0],[7,1],[4,-3],[3,-1],[1,-1],[7,-5],[4,-4],[1,0],[3,-4],[2,-4],[1,-1],[1,-3]],[[975780,547528],[-30,-2],[-2,0],[-2,0],[-1,0],[-3,0],[-13,-1],[-7,5],[0,1],[-1,0],[-3,3],[122,70],[131,74],[-105,-98],[-31,-29],[-17,-7],[-25,-11],[-6,-2],[-3,-2],[-4,-1]],[[976574,547827],[-1,16],[0,9],[-2,25],[0,7],[0,4],[3,3],[6,5],[1,0],[8,-6],[-15,-63]],[[976028,547884],[2,-7],[-6,1],[-17,27],[-12,17],[1,7],[0,8],[1,0],[3,1],[1,1],[2,1],[7,-4],[1,-1],[2,-1],[4,-2],[2,-5],[4,-9],[1,-9],[1,-3],[2,-13],[0,-5],[1,-4]],[[977580,547917],[5,-15],[2,-8],[-3,-12],[-37,-98],[-2,-3],[-22,-48],[-23,-27],[-1,-1],[-28,6],[0,9],[1,4],[0,2],[0,4],[64,199],[6,12],[6,2],[2,1],[1,0],[8,-3],[5,-3],[3,-1],[3,-5],[3,-5],[3,-5],[4,-5]],[[975893,547902],[-2,0],[-2,0],[-2,0],[-2,0],[-2,8],[-4,13],[-1,3],[-1,5],[-16,51],[3,5],[0,1],[3,6],[4,-16],[4,-16],[13,-46],[2,-7],[1,-2],[2,-5]],[[975176,548461],[-3,-1],[-4,-2],[1,6],[2,11],[1,8],[13,13],[5,5],[2,0],[1,0],[3,0],[3,-11],[1,-2],[-4,-5],[-3,-4],[-7,-7],[-11,-11]],[[975233,548444],[-21,38],[1,13],[0,7],[9,-6],[4,-3],[3,-5],[3,-3],[3,-4],[3,-4],[1,-1],[2,-13],[2,-7],[0,-1],[-1,-7],[-9,-4]],[[976768,548456],[-1,-4],[-1,-3],[-2,1],[-3,1],[-2,4],[-2,4],[0,1],[0,10],[0,1],[-1,27],[0,131],[0,24],[0,8],[3,2],[2,1],[3,-2],[5,-3],[19,-14],[-20,-189]],[[968621,548974],[17,-2],[23,-2],[16,-3],[42,-9],[226,-89],[-4,-13],[-14,-46],[-112,27],[-37,9],[-163,103],[0,1],[6,24]],[[968567,549017],[-3,-13],[0,-5],[-4,4],[-2,1],[-2,2],[-12,9],[-7,9],[-8,9],[-2,3],[-6,10],[-3,4],[-5,13],[-2,6],[-5,16],[1,5],[1,6],[7,5],[52,-84]],[[968435,549213],[-3,0],[-1,0],[-5,0],[-6,2],[-2,1],[-12,4],[-30,9],[-2,1],[-2,0],[-3,2],[-5,3],[-4,2],[-11,9],[-3,3],[0,15],[4,2],[3,2],[12,-5],[6,-3],[46,-22],[6,-4],[1,0],[4,-2],[4,-4],[3,-4],[0,-2],[0,-3],[0,-3],[0,-3]],[[968241,549436],[-6,13],[-12,26],[-2,18],[-5,27],[0,5],[-1,4],[-15,142],[-10,94],[-1,5],[0,5],[-1,20],[-1,7],[0,3],[-1,16],[5,34],[1,3],[1,3],[2,7],[2,6],[1,5],[1,2],[6,15],[1,3],[0,2],[2,4],[0,1],[3,3],[3,3],[2,-3],[1,-1],[2,-5],[22,-467]],[[969272,550056],[-4,-4],[-7,-7],[0,19],[-1,19],[0,1],[3,13],[2,7],[2,5],[2,3],[1,2],[3,1],[1,0],[1,0],[1,-8],[0,-3],[0,-5],[0,-15],[0,-19],[-4,-9]],[[969282,550253],[-8,0],[-2,2],[-2,3],[-1,3],[0,5],[0,16],[0,7],[1,14],[2,9],[0,1],[1,7],[3,11],[4,4],[3,-1],[1,0],[1,-1],[1,-4],[1,-3],[0,-10],[-5,-63]],[[969333,550719],[1,-1],[2,-2],[4,-4],[5,-6],[1,-2],[1,-1],[3,-3],[6,-8],[3,-4],[4,-11],[0,-1],[2,-5],[1,-5],[3,-11],[1,-3],[1,-4],[0,-6],[0,-3],[1,-18],[-7,-38],[-5,-30],[-1,-4],[-2,-3],[-4,-14],[-4,-10],[0,-1],[-1,-4],[-3,-3],[-1,-2],[-8,-9],[-8,-5],[-3,4],[-66,211],[-1,3],[0,5],[4,5],[38,4],[2,-1],[5,-1],[11,-2],[4,-2],[3,-2],[3,0],[1,-1],[3,-1],[1,-1]],[[967359,551606],[-4,-4],[-14,-17],[-4,-4],[-10,1],[-1,0],[-1,0],[-6,0],[-7,8],[-3,3],[-7,8],[-2,2],[-2,2],[-15,20],[-3,5],[-1,0],[-5,10],[-2,5],[-3,11],[3,11],[103,-28],[-6,-13],[-10,-20]],[[967489,552017],[-1,-2],[-2,-3],[-2,-3],[-1,-1],[-3,8],[-3,33],[-3,28],[0,22],[0,4],[1,2],[2,6],[4,-16],[3,-16],[1,-7],[2,-10],[1,-6],[0,-3],[1,-7],[1,-9],[0,-6],[1,-2],[-2,-12]],[[967130,553510],[-1,-5],[-1,-3],[-1,-3],[-6,2],[-3,13],[0,1],[-1,14],[0,-1],[3,-3],[5,-5],[1,0],[1,-1],[2,-4],[0,-1],[1,-4]],[[975497,553933],[-4,-10],[-1,2],[-4,10],[-2,6],[-5,13],[0,1],[-4,14],[-3,8],[-1,7],[-2,7],[1,3],[1,2],[1,2],[3,7],[3,-5],[8,-14],[2,-7],[2,-7],[2,-8],[2,-6],[0,-16],[0,-9],[1,0]],[[967148,554041],[7,-12],[7,-13],[1,0],[2,-5],[7,-20],[4,-13],[0,-3],[0,-5],[1,-17],[-1,-5],[-1,-4],[-1,-9],[-40,90],[-2,4],[-1,5],[1,6],[0,1],[1,8],[4,-3],[3,-1],[8,-4]],[[975487,554127],[-3,-15],[-2,1],[-2,0],[-2,10],[-1,13],[0,4],[1,13],[3,1],[2,0],[1,0],[1,-4],[2,-5],[0,-9],[0,-7],[0,-2]],[[975325,554137],[-1,-18],[0,-6],[0,-2],[0,-6],[-4,0],[-7,0],[-4,18],[-3,11],[1,4],[1,3],[2,10],[2,10],[5,-9],[1,-3],[3,-6],[3,-5],[1,-1]],[[966621,554165],[-5,-3],[-2,-1],[-3,4],[-6,8],[-1,2],[-1,4],[-3,12],[-4,16],[0,11],[0,6],[3,0],[4,-1],[18,-44],[0,-8],[0,-6]],[[975471,554227],[-3,-16],[-1,-4],[-1,-4],[-2,4],[-4,10],[-1,2],[-2,5],[-1,9],[-1,3],[0,6],[8,2],[1,-2],[2,-4],[3,-7],[2,-4]],[[975187,554267],[-2,-4],[-3,-3],[-2,1],[-1,1],[-3,2],[-1,3],[0,1],[-1,5],[0,2],[2,5],[2,7],[0,1],[3,-3],[2,-1],[1,-1],[3,-16]],[[975434,554369],[-1,-3],[0,-2],[-1,-3],[-1,-2],[-3,12],[0,1],[-2,6],[0,4],[0,4],[0,9],[0,5],[3,1],[1,0],[4,1],[1,-8],[2,-8],[-3,-17]],[[975049,554433],[-3,-1],[-3,-1],[-4,7],[2,16],[0,4],[0,5],[6,1],[2,1],[2,-10],[2,-5],[-2,-8],[-2,-9]],[[965026,554921],[-5,-4],[-3,4],[-3,5],[-1,4],[-1,3],[-1,8],[2,0],[5,-1],[7,-1],[1,0],[0,-5],[0,-3],[-1,-10]],[[975453,554910],[-1,-2],[-1,-1],[-3,-4],[-3,-4],[-3,7],[-13,46],[2,2],[1,1],[3,3],[4,-2],[9,-2],[3,-7],[7,-12],[-3,-16],[-2,-9]],[[975393,555025],[-4,-6],[-7,2],[0,16],[0,3],[0,4],[3,1],[3,1],[2,-4],[3,-4],[0,-1],[0,-3],[0,-3],[0,-6]],[[975124,555246],[-6,-6],[-1,-2],[-2,6],[-2,8],[-1,6],[0,6],[2,9],[2,6],[1,4],[1,4],[2,-5],[3,-6],[2,-5],[-1,-17],[0,-8]],[[975512,555968],[-6,-7],[-8,8],[1,8],[1,6],[1,3],[1,-1],[2,0],[5,-2],[2,-8],[0,-4],[1,-3]],[[975537,556010],[-3,-1],[-3,-3],[-3,-2],[-1,8],[0,1],[-1,4],[0,5],[1,7],[0,8],[2,6],[5,14],[2,7],[6,-2],[4,-2],[1,-15],[1,-1],[0,-6],[-6,-14],[-1,-3],[-4,-11]],[[975066,556686],[-2,-1],[-4,-2],[-1,2],[-2,4],[-3,6],[-2,6],[-1,6],[0,1],[-1,14],[7,-4],[3,-2],[2,-6],[2,-5],[1,-9],[0,-4],[0,-2],[1,-4]],[[975648,557246],[-1,-2],[-2,-2],[-5,-5],[-3,-3],[-3,6],[-1,4],[-1,14],[-1,6],[0,1],[0,3],[0,14],[2,2],[2,3],[9,18],[3,6],[2,6],[3,-3],[5,-6],[2,-7],[2,-13],[0,-2],[-2,-12],[-1,-7],[-6,-14],[-3,-6],[-1,-1]],[[965946,557377],[-3,-31],[-2,-23],[-1,-6],[0,-3],[-3,-3],[-4,-3],[-6,-6],[-5,-4],[-3,-3],[-12,1],[-3,1],[-1,0],[-4,0],[-2,4],[-4,10],[-2,5],[-3,9],[-2,5],[-1,1],[-3,17],[-1,9],[-1,8],[-1,5],[-1,4],[0,4],[0,3],[0,11],[-1,11],[4,3],[3,3],[19,10],[29,16],[5,-3],[5,-4],[4,-2],[0,-8],[0,-8],[0,-4],[0,-4],[0,-8],[0,-2],[0,-7],[0,-8]],[[965811,557509],[0,-2],[0,-3],[0,-6],[-4,3],[-2,1],[-1,1],[-12,15],[-6,8],[-1,6],[-1,4],[-1,9],[3,-2],[1,0],[2,-1],[7,-3],[2,-3],[2,-2],[7,-9],[1,-4],[1,-4],[1,-4],[1,-4]],[[974699,557502],[-4,-5],[-2,4],[0,1],[0,1],[-5,10],[-1,17],[0,6],[0,2],[3,13],[1,4],[1,3],[1,-7],[2,-7],[3,-12],[2,-9],[0,-7],[0,-4],[-1,-10]],[[975504,557648],[0,-5],[1,-3],[1,-9],[-2,1],[-1,0],[-3,1],[-5,3],[-4,3],[-4,14],[-2,7],[6,4],[3,1],[4,-6],[3,-5],[1,-2],[2,-4]],[[965952,557682],[-4,-7],[-2,-3],[-2,12],[-1,1],[-1,4],[0,3],[-1,6],[-1,13],[0,15],[1,3],[0,4],[1,6],[2,1],[1,0],[2,0],[0,-2],[1,-4],[2,-7],[0,-7],[2,-15],[1,-8],[-1,-15]],[[965630,557791],[-8,-5],[-15,17],[-4,4],[-6,8],[1,8],[1,7],[15,-12],[17,-13],[0,-7],[-1,-7]],[[975274,558040],[-2,-5],[-1,-5],[-5,5],[-3,5],[-3,4],[-2,5],[1,1],[5,3],[4,2],[0,-1],[3,-6],[3,-8]],[[974629,558035],[-6,-5],[-1,16],[2,10],[1,5],[2,-3],[3,-6],[3,-4],[-4,-13]],[[965960,558105],[-2,-5],[0,-1],[-1,-6],[-5,1],[1,9],[1,8],[0,7],[0,2],[2,7],[2,5],[1,7],[4,3],[2,2],[2,1],[0,-5],[0,-6],[-3,-8],[-3,-15],[-1,-6]],[[975188,558200],[0,-6],[-1,-9],[-2,1],[-1,1],[-1,1],[-3,1],[-5,13],[-3,6],[8,9],[1,-2],[5,-10],[2,-5]],[[965985,558191],[-3,-9],[-3,2],[-4,3],[0,2],[1,4],[0,1],[2,10],[3,5],[4,7],[1,2],[1,0],[2,-1],[2,-1],[0,-3],[0,-7],[-6,-15]],[[974958,558337],[-5,-1],[-1,2],[-2,5],[-4,12],[4,0],[1,1],[6,0],[3,-4],[0,-1],[1,-1],[3,-4],[-3,-4],[-3,-5]],[[974596,558434],[0,-7],[1,-8],[1,-13],[0,-2],[-14,-32],[-15,-34],[-3,-4],[-9,-14],[-7,8],[1,9],[0,6],[1,6],[0,2],[3,17],[2,15],[1,3],[7,35],[3,6],[3,7],[25,0]],[[966035,558313],[-8,4],[3,110],[5,11],[2,-6],[2,-6],[1,-15],[0,-14],[1,-15],[0,-7],[1,-16],[-1,-8],[0,-3],[-1,-6],[-1,-8],[-3,-14],[0,-3],[-1,-4]],[[974837,558430],[-6,-8],[-4,-4],[-3,4],[-1,6],[0,4],[3,9],[1,0],[1,0],[3,0],[1,-2],[2,-3],[2,-3],[1,-3]],[[961724,558504],[-4,-1],[-1,0],[-4,8],[0,10],[0,3],[3,6],[4,-4],[0,-3],[0,-4],[2,-15]],[[961852,558504],[-17,-9],[-3,1],[-6,1],[-4,3],[-1,0],[-4,2],[1,4],[0,2],[1,5],[0,1],[36,54],[4,-12],[2,-7],[2,-5],[0,-2],[1,-5],[1,-11],[0,-4],[-3,-4],[-5,-6],[-5,-8]],[[960474,558567],[-4,-3],[-2,-2],[-5,-4],[-10,2],[-2,3],[-3,8],[-2,5],[0,1],[-2,6],[2,6],[2,4],[2,4],[0,1],[7,-7],[13,-13],[1,-4],[1,-2],[2,-4],[0,-1]],[[961830,558652],[-3,-6],[-3,5],[1,7],[1,7],[0,1],[3,-2],[1,-12]],[[961751,558741],[-3,-4],[-9,-10],[-2,15],[1,4],[1,3],[2,7],[3,-2],[3,-2],[2,-6],[2,-5]],[[972354,559123],[-3,-1],[-6,-2],[-2,5],[-3,7],[-1,3],[0,3],[-2,12],[3,-1],[8,-3],[1,-1],[3,-3],[1,-2],[1,-2],[2,-4],[-2,-11]],[[965468,559125],[-1,-5],[-1,-6],[-3,6],[-4,5],[0,3],[-3,10],[-2,7],[-1,6],[-1,5],[0,4],[-1,7],[6,6],[0,1],[3,2],[2,-6],[1,-4],[1,-3],[2,-20],[2,-18]],[[965299,559393],[-1,-4],[-1,-4],[-2,3],[-1,2],[-5,6],[-2,4],[-2,4],[2,9],[1,6],[2,8],[1,-3],[2,-2],[2,-4],[0,-1],[1,-3],[0,-5],[3,-16]],[[960239,559448],[-2,-7],[0,-1],[-1,-6],[-3,4],[-3,4],[-1,13],[-1,2],[1,2],[3,11],[1,-1],[1,-1],[3,-2],[1,-4],[1,0],[1,-5],[-1,-9]],[[965260,559463],[-2,-5],[-1,-6],[-3,1],[-1,0],[-3,0],[-3,6],[2,13],[0,1],[0,3],[2,11],[6,-8],[1,-8],[2,-8]],[[964677,559567],[-6,-3],[-2,6],[5,8],[1,1],[5,6],[1,0],[1,0],[3,-2],[-1,-9],[-4,-3],[-3,-4]],[[964823,559638],[18,2],[3,-1],[1,-1],[2,-1],[-1,-5],[-1,-2],[-1,-3],[-1,-1],[-5,-2],[-2,-1],[-1,-1],[-2,1],[-1,0],[-5,2],[-1,1],[-1,0],[-13,5],[-2,12],[8,-3],[3,-1],[2,-1]],[[964601,559618],[2,-6],[-8,1],[-2,1],[-1,0],[-4,1],[-3,2],[-7,6],[-3,3],[-3,15],[3,16],[9,-11],[17,-28]],[[964763,559631],[-2,0],[-2,0],[-1,2],[-4,4],[-3,3],[3,4],[3,5],[3,2],[5,3],[2,1],[7,2],[3,-7],[-1,-2],[-3,-7],[-3,-4],[-7,-6]],[[965058,559658],[0,-1],[-1,-9],[-2,0],[-2,0],[-5,4],[-1,3],[-4,12],[2,4],[1,2],[1,2],[3,-2],[3,-1],[3,-7],[2,-7]],[[964561,559673],[-4,-2],[-3,-2],[-1,0],[-3,-2],[-1,1],[-2,1],[-7,2],[0,1],[-2,9],[2,5],[1,3],[0,1],[3,-2],[11,-8],[1,0],[2,-4],[3,-3]],[[964491,559764],[-2,-9],[-4,5],[-7,8],[0,1],[-4,6],[-6,11],[0,1],[-2,16],[0,4],[-1,4],[7,-3],[2,-1],[1,-1],[2,-3],[1,-1],[1,-2],[2,-3],[1,-3],[3,-5],[0,-2],[1,-4],[2,-7],[1,-5],[2,-7]],[[964442,559811],[-5,-3],[-6,1],[-2,1],[-1,0],[-1,1],[-5,4],[5,3],[6,3],[4,1],[2,-5],[2,-4],[1,-2]],[[960153,559813],[-3,-5],[-1,-3],[-1,-3],[-2,2],[-5,7],[-6,8],[-1,2],[-5,9],[3,6],[3,7],[4,-2],[6,-4],[2,-1],[1,-4],[1,-4],[2,-8],[2,-7]],[[972087,559942],[-7,-2],[-4,9],[1,14],[3,-2],[4,-1],[1,-1],[2,0],[3,-5],[0,-1],[-1,-6],[-1,-3],[-1,-2]],[[971978,560102],[-1,-1],[-4,-5],[-6,10],[-1,17],[4,-1],[7,-3],[0,-8],[1,-4],[0,-5]],[[959818,560224],[-4,-1],[-3,-1],[-13,26],[-1,6],[-3,10],[-1,5],[-1,3],[-1,4],[-1,4],[1,8],[0,8],[3,-1],[3,-2],[7,-3],[4,-11],[4,-13],[3,-12],[1,-6],[2,-14],[0,-2],[0,-8]],[[964844,560727],[-4,0],[-1,5],[-1,6],[1,2],[1,3],[0,2],[1,4],[4,0],[7,0],[-1,-2],[0,-2],[-2,-8],[-5,-10]],[[963548,560835],[-4,-6],[-5,7],[-9,14],[3,8],[2,0],[1,1],[4,2],[3,-3],[3,-3],[0,-2],[2,-7],[0,-11]],[[963481,560883],[0,-1],[0,-5],[-1,-3],[0,-2],[-8,0],[-5,5],[-2,1],[0,1],[-2,3],[2,15],[1,0],[2,-1],[6,-2],[5,-7],[2,-4]],[[963422,560910],[-2,-5],[-1,-2],[-10,7],[-16,10],[-4,3],[-4,3],[-3,7],[0,3],[1,11],[1,7],[4,2],[4,2],[11,-6],[2,-1],[2,-1],[0,-1],[3,-4],[6,-10],[3,-5],[1,-6],[2,-14]],[[964056,560978],[-5,-2],[-3,-1],[-6,8],[2,3],[1,1],[1,1],[2,3],[18,15],[8,-2],[1,-1],[2,-1],[1,-4],[0,-2],[1,-3],[0,-4],[-2,-2],[-6,-4],[-2,-1],[-2,-2],[-1,0],[-10,-2]],[[972378,561194],[-7,0],[-3,0],[-1,-1],[4,12],[0,2],[2,4],[7,9],[4,4],[3,-2],[3,-1],[-1,-3],[-1,-3],[-1,-7],[-9,-14]],[[972781,561279],[-6,-11],[0,1],[-4,2],[-1,8],[-1,6],[9,19],[3,8],[1,0],[3,3],[1,2],[5,5],[1,-4],[1,-5],[-2,-6],[-4,-11],[0,-1],[-1,-1],[-1,-5],[-4,-9],[0,-1]],[[965246,561337],[1,-7],[0,-7],[1,-9],[0,-5],[-1,-17],[0,-5],[-1,-12],[-31,-9],[-28,-7],[-3,-1],[-1,0],[-6,-1],[-6,-2],[-5,-1],[-2,0],[-3,12],[-1,6],[1,4],[2,13],[2,9],[2,14],[4,20],[6,10],[3,6],[5,10],[3,5],[14,13],[2,2],[1,1],[4,-2],[0,-1],[8,-5],[3,-2],[12,-8],[2,-2],[2,-1],[5,-10],[3,-6],[2,-5]],[[972837,561369],[-8,-7],[-6,1],[-1,0],[-3,1],[6,12],[2,3],[1,4],[6,10],[1,3],[2,2],[3,0],[3,-1],[0,-2],[0,-6],[0,-8],[-1,-1],[-2,-5],[-2,-3],[-1,-3]],[[972896,561632],[-4,-4],[-8,-8],[-2,9],[-1,2],[0,18],[3,134],[8,0],[4,0],[1,-1],[4,0],[1,-6],[5,-19],[1,-3],[1,-5],[2,-8],[0,-4],[0,-14],[0,-8],[0,-10],[0,-5],[0,-4],[-5,-33],[0,-2],[-1,-6],[-5,-12],[-4,-11]],[[972866,561831],[-1,-12],[-6,12],[-6,14],[0,5],[-1,9],[5,1],[3,-5],[1,-4],[1,-1],[3,-13],[1,-5],[0,-1]],[[972784,562050],[-1,-5],[-1,-2],[-1,-3],[-2,5],[-4,8],[-1,2],[-3,13],[2,4],[1,4],[3,0],[2,0],[1,-3],[1,-4],[1,-6],[1,-1],[0,-6],[1,-4],[0,-2]],[[972160,562081],[0,-2],[-1,-8],[-4,8],[-1,0],[-2,7],[-1,1],[-2,6],[4,4],[4,3],[2,-3],[1,-2],[1,-1],[-1,-13]],[[972107,562108],[-9,-4],[-4,-2],[5,13],[4,10],[2,3],[1,1],[6,4],[4,2],[2,-4],[3,-5],[0,-1],[-1,-3],[-2,-4],[-11,-10]],[[972746,562131],[1,-12],[0,-3],[-2,3],[-1,2],[-3,5],[-3,11],[2,6],[1,-1],[1,0],[2,-2],[0,-1],[1,-3],[1,-5]],[[971906,562155],[1,-5],[2,-6],[-4,-5],[-19,13],[-1,0],[-3,2],[-8,5],[4,6],[3,5],[0,1],[1,0],[3,1],[3,0],[1,-1],[2,-1],[6,-4],[9,-11]],[[971794,562173],[-1,-2],[-1,-2],[-2,-3],[0,-1],[-3,5],[-2,3],[1,2],[1,3],[3,6],[1,4],[4,-3],[-1,-12]],[[972670,562290],[-3,-7],[-3,-1],[-14,-6],[-4,12],[1,4],[3,10],[3,4],[5,5],[4,-3],[2,-1],[2,-2],[4,-15]],[[969940,563748],[-1,-1],[-3,-4],[-4,-5],[-4,-5],[-21,-4],[-17,-4],[-13,2],[-1,0],[-4,0],[3,10],[27,19],[46,32],[0,-3],[-1,-3],[0,-4],[0,-3],[-1,-4],[-1,-3],[-3,-13],[-1,-3],[-1,-4]],[[970325,563864],[-12,-9],[-3,-2],[-5,-3],[-11,-7],[-3,-2],[-1,0],[-2,-1],[-1,0],[-4,-2],[-7,-3],[-5,2],[-3,1],[-3,0],[-2,1],[0,6],[0,1],[0,15],[16,11],[33,21],[3,-1],[4,-1],[4,-1],[7,-3],[1,-2],[1,-2],[3,-4],[-7,-10],[-2,-4],[-1,-1]],[[970061,563876],[-3,-1],[-4,-2],[-2,0],[-2,-1],[-6,5],[-3,2],[0,10],[5,3],[4,2],[3,1],[6,3],[3,2],[1,1],[1,1],[6,5],[-1,-8],[0,-6],[-1,-9],[-4,-4],[-3,-4]],[[970115,563899],[-4,-1],[-7,0],[-5,2],[-3,1],[-3,5],[0,3],[-1,4],[0,8],[1,7],[31,-14],[3,-9],[-1,0],[-7,-4],[-4,-2]],[[970328,563981],[0,-3],[0,-3],[0,-3],[0,-2],[-5,2],[-7,12],[-16,27],[3,3],[3,2],[3,-4],[6,-8],[3,-4],[3,-7],[3,-5],[4,-7]],[[970274,564044],[-5,-2],[-2,11],[0,4],[-2,7],[6,7],[3,-2],[2,-2],[1,-7],[0,-3],[0,-4],[-3,-9]],[[969643,564166],[-6,-8],[-8,10],[0,3],[0,4],[1,15],[4,1],[4,1],[1,-4],[2,-4],[1,-9],[0,-6],[1,-3]],[[970222,564269],[1,-7],[3,-14],[-16,21],[-5,7],[6,8],[7,-10],[4,-5]],[[970185,564296],[-6,7],[1,15],[2,1],[2,1],[4,3],[3,-2],[1,-1],[3,-3],[0,-7],[-5,-7],[-5,-7]],[[970166,564336],[-6,-12],[-4,2],[-2,1],[1,9],[1,18],[3,0],[0,-1],[7,0],[0,-9],[0,-8]],[[969504,564382],[-3,-10],[-5,5],[-1,0],[-1,1],[-2,2],[-4,7],[0,2],[-3,4],[0,15],[1,4],[3,10],[2,6],[6,-4],[4,-2],[0,-4],[0,-4],[2,-24],[1,-8]],[[970098,564413],[-5,-9],[-3,-4],[-3,5],[-1,1],[-1,9],[2,6],[1,5],[1,1],[2,1],[3,3],[3,-4],[1,-1],[1,-2],[-1,-2],[0,-4],[0,-5]],[[961212,565076],[-3,0],[-4,-1],[-2,-1],[-6,4],[-10,6],[2,6],[2,9],[4,3],[3,3],[1,1],[3,2],[7,5],[2,2],[1,1],[2,-6],[0,-2],[1,-3],[1,-5],[-1,-6],[0,-2],[-2,-10],[-1,-6]],[[969496,565083],[-8,-5],[-6,7],[-2,4],[-2,4],[-2,15],[0,2],[-1,8],[3,0],[0,-1],[6,0],[3,-1],[4,-1],[7,-2],[2,-4],[6,-7],[-1,-2],[-2,-8],[-7,-9]],[[969461,565143],[-1,-3],[-1,-4],[-2,-4],[-1,-3],[-7,12],[-4,11],[-5,11],[-2,5],[0,3],[-4,15],[-1,2],[5,12],[2,-1],[1,-1],[4,-3],[1,-1],[2,-2],[1,-2],[2,-1],[1,-2],[2,-1],[5,-7],[2,-7],[1,-2],[2,-5],[-1,-7],[-1,-7],[0,-4],[-1,-4]],[[970914,565381],[-2,-4],[-2,-4],[-4,7],[-4,6],[2,6],[1,7],[4,2],[2,1],[0,-1],[2,-3],[1,-2],[1,-2],[0,-3],[-1,-10]],[[961175,565987],[6,-10],[0,-1],[3,-5],[1,-2],[1,-3],[1,-9],[1,-15],[0,-2],[0,-9],[-1,-8],[-1,-6],[-1,-12],[-4,1],[-1,1],[-6,2],[-20,32],[-14,22],[-6,26],[2,6],[4,11],[1,2],[2,4],[5,9],[4,-4],[23,-30]],[[960935,565992],[-5,-13],[-3,1],[-2,1],[-1,1],[-4,16],[0,8],[-1,8],[2,17],[0,1],[3,-5],[3,-6],[0,-1],[3,-6],[3,-7],[1,-7],[1,-8]],[[972190,566155],[-1,-1],[-3,-4],[-2,-4],[-1,-1],[-4,10],[0,2],[1,6],[1,15],[5,9],[2,5],[5,-3],[0,-2],[1,-3],[1,-5],[0,-7],[0,-5],[0,-1],[-3,-5],[-1,-3],[-1,-3]],[[971859,566584],[0,-6],[-1,-1],[0,-4],[-2,1],[-7,8],[0,7],[0,2],[-1,10],[0,6],[2,-1],[2,0],[3,-1],[2,-4],[2,-4],[0,-6],[0,-6],[0,-1]],[[974696,566621],[-1,-13],[-4,-44],[0,-1],[-1,-5],[-1,-2],[-2,-10],[-3,-5],[-1,-3],[-12,-13],[-3,-4],[-4,-2],[-7,-3],[-2,6],[9,99],[1,4],[0,3],[1,5],[3,11],[0,1],[2,3],[3,8],[1,2],[4,2],[2,1],[3,1],[3,-2],[3,-1],[1,-1],[4,-4],[3,-2],[1,-1],[0,-6],[0,-1],[-1,-12],[-1,-6],[-1,-5]],[[972159,566713],[-4,-2],[-1,4],[-2,4],[-1,16],[2,1],[1,0],[3,2],[3,-7],[1,-9],[-2,-9]],[[972164,566968],[-1,-2],[-1,-1],[-2,-2],[-4,7],[0,2],[0,4],[0,13],[3,6],[1,1],[3,5],[1,-7],[1,-3],[0,-4],[0,-5],[1,-1],[-1,-7],[-1,-5],[0,-1]],[[972145,567359],[-3,-2],[-4,-2],[-1,4],[-2,4],[1,7],[1,7],[5,15],[5,-9],[0,-5],[1,-2],[0,-7],[-1,-1],[-1,-4],[-1,-5]],[[972128,567492],[-2,-7],[-7,3],[-4,11],[0,7],[-2,13],[1,6],[3,14],[4,-16],[2,-7],[2,-10],[2,-7],[1,-7]],[[972109,567564],[-1,-1],[-2,0],[-3,-1],[-2,5],[-1,0],[-1,4],[-1,2],[-1,16],[2,-2],[2,0],[3,-2],[3,-2],[4,-2],[-1,-6],[0,-3],[-1,-8]],[[972095,567612],[-3,-3],[-4,-3],[-1,-1],[-2,-2],[-6,7],[-2,2],[-1,1],[0,3],[0,13],[0,5],[0,3],[5,14],[3,-3],[6,-7],[1,-1],[1,-2],[2,-4],[3,-7],[1,-1],[-1,-4],[-1,-3],[-1,-7]],[[962460,571487],[-1,-1],[-2,-1],[-4,-2],[-2,-1],[-6,1],[-3,1],[-2,1],[-3,15],[2,0],[1,1],[7,1],[5,0],[4,0],[2,-2],[2,-3],[0,-5],[0,-2],[0,-3]],[[962580,571495],[-1,-4],[-2,-11],[-1,1],[-5,3],[-2,7],[-2,14],[4,-3],[3,-2],[1,-2],[5,-3]],[[962228,571498],[-2,0],[-2,-1],[-8,-1],[1,5],[2,8],[2,7],[14,10],[1,0],[2,-1],[7,-2],[3,-1],[0,-2],[0,-4],[-1,-7],[-3,-2],[-3,-3],[-2,-2],[-2,-1],[-2,-1],[-3,-1],[-4,-1]],[[962275,571520],[-3,0],[-3,-1],[1,12],[0,3],[9,9],[1,2],[1,0],[4,2],[4,1],[0,-1],[0,-8],[-1,-10],[-13,-9]],[[962119,571538],[-3,-3],[-4,-5],[-3,0],[-3,0],[-1,3],[-2,3],[3,16],[4,1],[5,0],[1,-3],[1,-1],[2,-4],[0,-6],[0,-1]],[[962080,571534],[-6,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-3,1],[-3,0],[-4,1],[-8,2],[-5,5],[-2,3],[-1,6],[0,3],[0,2],[2,0],[2,1],[7,1],[4,0],[7,-1],[2,-1],[5,-1],[2,-1],[4,-1],[1,-7],[1,-7],[0,-1]],[[961923,571624],[-4,-4],[-3,1],[-3,1],[-2,1],[-1,1],[-6,5],[1,8],[2,6],[2,6],[6,-4],[0,-1],[3,-4],[5,-8],[0,-5],[0,-3]],[[971326,571615],[-3,0],[-3,-1],[-4,12],[2,14],[3,5],[1,1],[3,5],[3,-4],[1,-1],[2,-4],[-2,-13],[-1,-6],[-2,-8]],[[961923,571757],[-5,-12],[-1,-1],[-2,-5],[-2,-6],[0,2],[-1,5],[-1,14],[1,6],[1,3],[1,10],[4,14],[1,3],[3,-2],[4,-2],[0,-5],[0,-2],[0,-7],[-2,-8],[-1,-7]],[[963274,571773],[-2,-6],[-1,-3],[-4,-10],[-4,-2],[-9,-4],[-3,-1],[-3,-1],[-5,-1],[-5,-2],[-7,7],[-2,7],[-3,14],[3,2],[1,2],[1,1],[47,33],[0,-2],[-1,-7],[-3,-27]],[[963583,571697],[-66,-3],[40,34],[43,37],[10,5],[-27,-73]],[[963015,572019],[-8,-3],[1,7],[0,11],[16,39],[3,6],[5,-12],[0,-1],[3,-6],[0,-2],[-1,-5],[0,-15],[-2,-3],[-3,-8],[-3,-3],[-3,-2],[-1,-1],[-3,-1],[-4,-1]],[[971606,572079],[-7,-5],[0,1],[-3,2],[-10,8],[-4,12],[-2,6],[1,4],[1,13],[9,-4],[4,-2],[2,-5],[0,-1],[1,-4],[2,-6],[1,-1],[1,-5],[4,-13]],[[971846,572241],[7,-1],[6,-1],[6,-10],[-3,-14],[-1,-8],[-8,-7],[-2,-2],[-2,-2],[-38,-33],[0,5],[-1,19],[21,47],[2,3],[1,2],[2,2],[1,3],[5,-1],[4,-2]],[[965199,572546],[-4,1],[-1,7],[1,3],[2,7],[7,6],[2,2],[2,1],[14,6],[10,4],[0,-3],[-1,-2],[-4,-11],[-3,-3],[-6,-5],[-1,-1],[-3,-2],[-15,-10]],[[965346,573057],[1,-13],[-3,-8],[-6,-7],[-2,-3],[0,-1],[-8,-3],[0,2],[-3,9],[-1,2],[-1,3],[-1,10],[-1,5],[-1,6],[1,5],[2,6],[23,-13]],[[965319,573101],[-1,0],[-3,-4],[0,1],[-3,2],[-4,3],[0,20],[3,0],[1,0],[4,-1],[3,-3],[6,-6],[-1,-2],[-2,-4],[-3,-6]],[[965243,573184],[-7,-1],[-2,0],[-2,0],[1,7],[1,7],[2,8],[2,3],[1,1],[3,5],[2,-4],[2,-3],[1,-2],[-2,-16],[-2,-5]],[[964062,573408],[-4,-4],[-1,-2],[-4,1],[-1,0],[-4,2],[0,2],[0,3],[-1,2],[0,3],[3,30],[0,1],[3,1],[7,1],[2,1],[2,0],[1,-7],[1,-7],[1,-6],[-2,-6],[0,-1],[-3,-14]],[[963019,573530],[-3,-1],[-4,-2],[-1,-1],[-2,0],[2,16],[1,1],[1,5],[1,2],[2,4],[0,1],[2,3],[2,4],[1,-3],[2,-2],[2,-5],[0,-6],[0,-4],[0,-1],[-6,-11]],[[959314,573746],[-3,-3],[-1,-1],[-3,-5],[-2,1],[-1,2],[-4,3],[-3,1],[-2,3],[-3,6],[-2,5],[-2,6],[-2,5],[-1,4],[0,4],[-2,6],[-1,9],[3,3],[3,3],[7,-11],[5,-6],[12,-16],[4,-4],[-2,-15]],[[959381,573790],[-2,-2],[-1,-2],[-16,6],[3,2],[5,4],[3,4],[7,1],[1,-4],[0,-2],[0,-7]],[[959493,573835],[-6,-3],[-4,13],[1,2],[2,4],[2,5],[9,11],[3,-2],[3,-1],[1,-7],[0,-1],[1,-7],[-12,-14]],[[959900,573863],[-7,13],[12,89],[2,7],[2,4],[0,2],[4,-2],[3,-2],[0,-4],[0,-4],[0,-5],[0,-10],[0,-7],[0,-1],[-1,-17],[0,-4],[-1,-4],[0,-14],[-1,-2],[0,-8],[-1,-4],[0,-4],[-1,-5],[-1,-3],[-7,-10],[-1,-1],[-2,-4]],[[959879,574442],[-5,-8],[-46,142],[12,12],[15,-5],[1,-2],[2,-3],[3,-4],[0,-1],[7,-11],[3,-5],[1,-7],[1,-1],[0,-4],[3,-11],[1,-6],[2,-10],[1,-8],[2,-16],[1,-8],[2,-16],[-2,-7],[-1,-7],[-2,-6],[-1,-8]],[[959065,574916],[-3,-4],[0,-1],[-7,-10],[0,6],[0,3],[0,3],[0,4],[0,2],[1,5],[1,2],[2,2],[3,4],[2,-5],[0,-2],[1,-2],[0,-7]],[[959153,575003],[-1,-8],[-3,-15],[-23,9],[7,9],[6,7],[2,2],[3,4],[4,5],[2,1],[2,3],[3,3],[1,1],[-1,-7],[-1,-8],[-1,-6]],[[972543,577873],[-2,-3],[0,-2],[-1,-4],[-1,-2],[-7,6],[-4,16],[1,11],[0,2],[4,3],[0,-1],[3,-5],[2,-6],[2,-7],[1,-3],[2,-5]],[[972620,578235],[-1,0],[-5,-3],[-1,1],[-2,4],[3,11],[7,6],[2,-5],[3,-6],[-6,-8]],[[969293,591840],[-7,-7],[-4,3],[1,4],[1,1],[3,10],[1,2],[2,4],[1,1],[1,3],[2,0],[1,1],[2,1],[1,0],[2,0],[2,-1],[3,-1],[1,0],[-13,-21]],[[969335,591899],[-6,-11],[-8,2],[1,3],[1,4],[1,8],[2,7],[2,5],[4,12],[15,34],[0,2],[4,8],[4,-2],[-1,-8],[0,-3],[0,-5],[-4,-8],[-2,-4],[-3,-7],[-3,-12],[-1,-2],[-1,-4],[-1,-7],[-1,-1],[-3,-11]],[[969377,591983],[-3,-2],[-5,-3],[0,15],[15,18],[4,3],[3,1],[1,-5],[1,-2],[0,-3],[-5,-10],[-2,-3],[-4,-4],[-5,-5]],[[969409,592017],[-9,-5],[-4,1],[2,4],[1,4],[3,7],[85,170],[1,-2],[8,-12],[-12,-66],[-11,-25],[-1,-2],[-2,-4],[-5,-11],[0,-2],[-25,-26],[-11,-12],[-4,-4],[-11,-10],[-5,-5]],[[969501,592246],[-3,-2],[-7,11],[1,7],[0,2],[0,2],[0,7],[1,12],[1,6],[3,3],[7,5],[1,-7],[0,-7],[-1,-8],[-1,-16],[-2,-15]],[[969502,592351],[-2,-14],[-1,-9],[-1,-5],[-4,3],[-3,4],[-1,2],[-2,2],[-2,18],[-4,29],[2,14],[0,4],[0,1],[1,8],[5,8],[3,5],[3,0],[2,-3],[1,-2],[1,-1],[3,-13],[-1,-8],[0,-5],[0,-15],[0,-5],[0,-3],[0,-15]],[[540127,718302],[85,-69],[129,-172],[97,-128],[4,-8],[2,-4],[31,-59],[15,-29],[3,-7],[-3,-144],[-1,-24],[-17,-59],[-5,-9],[-68,-126],[-19,-11],[-4,-2],[-17,2],[-8,1],[-2,0],[-6,1],[-4,0],[-2,0],[-3,1],[-1,0],[-3,0],[-6,3],[-2,1],[-13,5],[-51,20],[-162,67],[-31,33],[-82,87],[-21,23],[-103,141],[-16,41],[-9,55],[-5,34],[-18,191],[-23,245],[18,54],[8,26],[28,18],[37,22],[28,17],[179,-193],[41,-44]],[[539535,719048],[4,0],[13,1],[25,2],[1,-1],[3,-2],[16,-9],[8,-5],[19,-13],[123,-89],[4,-3],[15,-12],[36,-54],[3,-6],[6,-12],[18,-37],[1,-2],[2,-4],[1,-7],[1,-4],[2,-10],[-4,-17],[-1,-3],[-1,-5],[-5,-4],[-1,-1],[-1,-1],[-2,-2],[-176,-73],[-13,2],[-13,2],[-60,29],[-29,15],[-32,24],[-36,28],[-13,10],[-19,83],[-9,100],[0,16],[0,8],[0,3],[0,4],[0,8],[4,3],[4,3],[13,9],[39,27],[2,1],[2,0],[6,2],[5,2],[7,2],[4,-1],[8,-2],[11,-3],[9,-2]],[[773468,579360],[-309,-790],[-88,117],[-29,1855],[30,242],[142,-99],[338,-564],[-84,-761]],[[761060,617955],[-109,-590],[-533,570],[-253,483],[-528,1844],[77,342],[171,1],[288,-771],[658,-561],[144,-384],[85,-934]],[[905049,596149],[8,-20],[25,-56],[1,-5],[0,-5],[1,-9],[-3,-34],[-113,-518],[-104,-473],[-15,3],[-69,49],[-39,28],[-42,51],[0,13],[-1,5],[1,11],[2,24],[4,37],[16,106],[3,15],[44,267],[42,129],[11,35],[202,365],[3,4],[0,1],[1,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[16,-22]],[[903566,589513],[-35,-58],[-168,-222],[-23,-6],[-19,-3],[-22,2],[-22,1],[-19,4],[-11,2],[-66,48],[-53,39],[15,35],[41,96],[48,66],[17,24],[183,179],[3,3],[6,6],[3,2],[1,0],[2,1],[8,0],[4,0],[2,1],[2,0],[41,-8],[35,-16],[17,-9],[12,-6],[3,-3],[2,-1],[5,-5],[2,-4],[0,-2],[1,-2],[1,-6],[1,-1],[0,-1],[0,-1],[1,-5],[-1,-3],[0,-2],[0,-8],[-17,-137]],[[904649,594497],[-1,-6],[0,-1],[0,-4],[-9,-90],[-27,-240],[-14,-44],[-29,-89],[-2,-4],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-3,-4],[-2,-2],[-2,-1],[-2,-2],[-3,0],[-4,0],[-4,0],[-1,2],[-1,1],[-4,6],[-2,5],[-132,428],[-6,129],[5,28],[9,54],[27,95],[15,54],[46,109],[56,117],[3,7],[2,4],[5,11],[2,1],[1,1],[2,2],[1,1],[2,-6],[1,-2],[4,-8],[2,-5],[1,-1],[1,-3],[3,-10],[10,-26],[2,-5],[2,-7],[2,-8],[2,-14],[1,-6],[47,-459]],[[904620,602558],[4,0],[103,-4],[4,0],[2,-1],[4,-2],[8,-6],[6,-4],[29,-35],[1,-2],[2,-4],[1,-1],[0,-2],[1,-2],[0,-3],[3,-26],[0,-6],[0,-4],[0,-4],[0,-4],[0,-3],[-14,-55],[-10,-28],[-2,-1],[-8,-7],[-15,-10],[-9,-7],[-158,5],[-20,47],[-2,4],[-2,8],[-8,36],[-3,29],[-1,8],[0,10],[-3,38],[0,8],[1,8],[7,12],[1,2],[5,3],[73,3]],[[905108,609704],[-4,-3],[-26,2],[-2,1],[-2,1],[-4,4],[-3,4],[-22,57],[-2,6],[-2,39],[-1,12],[0,2],[0,8],[0,6],[1,6],[0,3],[1,3],[0,2],[1,4],[12,44],[3,13],[0,2],[1,5],[2,7],[4,3],[3,3],[0,1],[16,7],[1,0],[2,1],[2,0],[2,0],[5,1],[3,-1],[5,-2],[1,-2],[2,-2],[21,-50],[3,-7],[2,-8],[5,-24],[2,-8],[0,-1],[1,-7],[0,-5],[1,-3],[1,-17],[-1,-1],[0,-7],[-3,-27],[-2,-7],[0,-1],[-2,-6],[-25,-54],[-2,-4]],[[904984,613172],[3,-3],[5,-3],[1,-1],[3,-3],[3,-5],[3,-4],[3,-4],[10,-25],[2,-6],[1,-8],[3,-27],[2,-27],[2,-41],[0,-40],[0,-4],[0,-4],[-2,-11],[-14,-61],[-10,-43],[-7,-27],[-151,-258],[-2,69],[-3,75],[24,242],[16,159],[5,13],[2,4],[1,3],[5,11],[1,4],[13,16],[10,13],[4,3],[3,4],[3,2],[2,0],[2,2],[3,0],[5,2],[6,1],[26,-11],[17,-7]],[[904626,616971],[4,-2],[5,-1],[8,-6],[26,-22],[31,-53],[3,-6],[6,-13],[3,-13],[3,-49],[3,-36],[3,-62],[0,-9],[0,-9],[-2,-11],[-26,-89],[-12,-42],[-50,-74],[-38,54],[-4,13],[-4,11],[-21,73],[-11,62],[-4,31],[-6,55],[0,6],[0,7],[1,4],[0,2],[2,18],[2,12],[15,77],[9,31],[7,23],[3,7],[2,7],[7,14],[7,7],[3,4],[8,1],[2,0],[2,0],[2,-1],[1,0],[5,-2],[2,-1],[2,-8],[0,-5],[1,-5]],[[21256,426417],[65,-36],[83,-156],[38,-94],[59,-143],[132,-382],[11,-47],[95,-424],[2,-94],[0,-11],[-45,-294],[-50,-317],[-113,8],[-93,7],[-191,-23],[-3,-1],[-275,-108],[-39,-11],[-143,-38],[-27,22],[-48,39],[-44,94],[-22,48],[-155,382],[-288,710],[14,458],[1005,404],[15,3],[17,4]],[[22723,424292],[760,-639],[319,-432],[12,-36],[23,-65],[4,-63],[1,-9],[1,-18],[0,-2],[0,-7],[2,-27],[-1,-5],[0,-4],[-8,-39],[-2,-13],[-1,-6],[-2,-11],[-1,-2],[-2,-6],[-3,-11],[-1,-4],[-8,-31],[-11,-39],[-669,22],[-78,4],[-55,4],[-129,27],[-292,171],[-54,31],[-141,116],[-270,490],[-16,33],[-3,6],[-25,123],[-1,26],[0,8],[50,111],[9,14],[7,13],[3,6],[4,5],[20,34],[6,12],[1,0],[3,4],[18,18],[2,3],[1,1],[7,7],[106,66],[175,109],[3,2],[1,0],[7,3],[4,2],[34,10],[19,5],[124,10],[47,-27]],[[325369,611717],[6,2],[7,2],[127,-12],[7,-1],[0,-1],[8,-1],[1,0],[2,-1],[36,-36],[18,-18],[3,-15],[-2,-9],[-1,-7],[-5,-33],[-1,-8],[-1,-8],[-12,-12],[-31,-35],[-55,-41],[-19,-7],[-2,-1],[-3,1],[-3,1],[-3,0],[-7,13],[-5,11],[-6,12],[-10,25],[-44,117],[-5,62]],[[509460,184277],[60,-7],[25,-14],[12,-6],[4,-2],[49,-27],[9,-7],[17,-14],[3,-3],[4,-4],[2,-1],[2,-2],[4,-3],[4,-4],[4,-4],[3,-6],[2,-6],[3,-6],[11,-28],[4,-12],[6,-23],[-27,-102],[-2,-5],[-2,-5],[-2,-4],[-3,-4],[-4,-3],[-2,-3],[-2,-1],[-5,-4],[-4,-3],[-2,-2],[-3,-1],[-2,0],[-15,-4],[-30,-7],[-9,-2],[-103,-13],[-68,-9],[-2,0],[-2,1],[-12,3],[-1,0],[-7,2],[-33,28],[-20,27],[-21,33],[-12,31],[-13,30],[-2,7],[-7,28],[-4,50],[-2,24],[0,1],[3,5],[6,13],[22,32],[164,36]],[[493032,798405],[2,-108],[-68,-350],[-22,-32],[-146,-36],[-28,4],[-51,7],[-122,23],[-3,4],[-8,11],[-17,22],[1,8],[0,11],[0,6],[0,3],[0,4],[1,5],[211,253],[88,105],[65,44],[12,5],[14,7],[17,3],[18,3],[36,-2]],[[488008,826705],[-68,-180],[-144,-378],[-119,-202],[-8,-9],[-275,-316],[-241,-255],[-371,-51],[4,173],[3,112],[53,299],[46,242],[7,39],[51,114],[234,434],[196,364],[3,4],[1,0],[63,76],[2,2],[6,7],[154,138],[200,83],[8,3],[17,7],[4,1],[5,2],[30,11],[4,1],[5,-2],[2,-1],[1,-1],[3,-1],[91,-525],[33,-191]],[[494063,796894],[4,1],[34,3],[69,2],[152,-86],[57,-40],[1,-7],[2,-10],[1,-4],[1,-4],[4,-24],[-4,-51],[-22,-251],[-11,-6],[-36,-17],[-59,-13],[-269,15],[-53,3],[-73,42],[-63,62],[-24,151],[-28,170],[-12,27],[0,7],[1,8],[2,15],[8,17],[3,6],[6,11],[6,3],[1,0],[1,0],[6,2],[31,5],[47,-27],[11,-14],[24,-30],[4,1],[4,1],[1,0],[21,5],[32,7],[5,2],[9,2],[3,5],[9,17],[29,10],[40,12],[22,-25],[3,-3]],[[327274,605159],[28,-139],[32,-157],[37,-393],[-2,-7],[0,-3],[-3,-13],[-1,-4],[-1,-4],[-1,-3],[-1,-3],[-12,-33],[-5,-13],[-2,-4],[-1,-2],[-2,-4],[-1,-1],[-3,-4],[-4,-5],[-9,-13],[-2,-1],[-2,-2],[-9,-6],[-3,-2],[-8,-5],[-20,-3],[-26,9],[-8,3],[-4,5],[-8,9],[0,1],[-23,27],[-11,13],[-2,2],[-2,2],[-3,6],[-23,44],[-47,145],[-4,86],[-2,48],[-1,36],[43,193],[48,210],[7,19],[1,4],[1,2],[3,-2],[2,0],[15,-11],[31,-21],[4,-3],[4,-3]],[[330613,593131],[51,-132],[72,-186],[166,-659],[28,-69],[49,-122],[38,-210],[46,-301],[8,-86],[1,-10],[1,-110],[-22,-78],[-59,-203],[-41,-54],[-10,-9],[-3,-4],[-4,-3],[-4,2],[-4,1],[-22,7],[-4,2],[-2,0],[-3,1],[-50,57],[-339,382],[-417,1191],[-1,5],[-3,12],[-4,16],[-22,81],[0,3],[-2,5],[-2,9],[-4,16],[-8,32],[-108,580],[-1,9],[-3,20],[-2,16],[-1,6],[-2,11],[0,28],[0,1],[0,8],[0,7],[1,3],[0,7],[0,1],[9,86],[1,4],[1,4],[7,28],[3,11],[4,15],[4,15],[5,14],[3,8],[7,19],[5,13],[3,6],[16,27],[6,9],[1,1],[2,3],[13,11],[10,8],[2,2],[4,3],[99,66],[5,1],[3,0],[4,1],[14,2],[4,-3],[3,-2],[1,0],[1,-1],[14,-9],[8,-5],[174,-193],[123,-209],[127,-218]],[[625285,431044],[146,-473],[121,-750],[-13,-692],[-116,-115],[-74,1],[-52,41],[-85,415],[60,3],[-139,955],[-7,11],[-14,23],[-3,6],[1,24],[1,7],[0,8],[38,251],[99,243],[28,47],[3,0],[3,1],[3,-6]],[[625806,430303],[3,-5],[3,-15],[1,-7],[-1,-18],[0,-18],[-2,-44],[-1,-9],[-4,-9],[-28,-41],[-18,-11],[-17,82],[-10,80],[10,30],[38,97],[4,-3],[4,-4],[16,-85],[2,-20]],[[956005,386197],[45,-69],[191,-272],[113,-116],[75,-76],[25,21],[4,3],[1,6],[0,2],[3,32],[-1,6],[0,3],[-3,17],[-4,31],[-1,2],[-1,6],[-1,11],[701,-381],[839,-1295],[659,-1017],[1925,-3524],[671,-782],[256,-350],[393,-538],[1678,-2489],[27,-42],[78,-124],[255,-987],[-24,-258],[-70,-284],[-105,-155],[-61,-38],[-97,-60],[-305,160],[-135,71],[-781,759],[-828,1069],[-26,341],[-5,63],[-1,6],[-7,27],[-2,8],[-2,9],[-2,7],[-2,9],[-25,33],[-37,51],[-70,92],[-48,63],[-1126,1025],[-59,54],[-315,203],[-52,53],[-10,10],[-47,55],[-638,747],[-253,435],[-901,1864],[-55,114],[-774,1469],[-437,800],[-68,204],[-326,972],[-119,449],[-144,543],[-401,1569],[430,-617]],[[965418,371832],[-14,-77],[-9,-52],[-2,-7],[0,-2],[-3,-6],[-2,-6],[-3,-7],[-3,-6],[-4,-3],[0,-1],[-8,-7],[-38,7],[-44,7],[-5,10],[0,1],[-6,11],[2,18],[12,97],[42,111],[33,-4],[31,-40],[16,-19],[0,-4],[3,-13],[2,-8]],[[965303,372346],[52,-51],[2,-4],[1,0],[2,-5],[6,-8],[11,-34],[9,-27],[4,-15],[1,-5],[1,-3],[9,-38],[2,-8],[1,-7],[1,-8],[4,-24],[0,-4],[2,-12],[-6,-77],[-5,-77],[-3,-5],[-1,-2],[-2,-3],[-6,9],[-3,5],[-46,-18],[-23,-8],[-2,-7],[-3,-7],[-46,-87],[-5,-10],[-1,-2],[-1,-2],[-12,-23],[-2,-1],[-2,0],[-10,-2],[-8,-2],[-17,-4],[-1,0],[-3,1],[-17,6],[-8,4],[-9,3],[-73,48],[-46,92],[-14,99],[-1,69],[-1,60],[3,56],[4,86],[81,16],[181,36]],[[963349,373439],[67,-30],[2,-3],[4,-11],[8,-21],[1,-9],[1,-10],[1,-7],[3,-36],[-5,-76],[0,-7],[-1,-3],[-1,-4],[-1,-4],[-1,-4],[-33,-132],[-1,-3],[-1,-4],[-17,-39],[-4,-9],[-6,-14],[-2,-2],[-2,-2],[-12,-12],[-8,-8],[-77,39],[-2,3],[-1,2],[-3,4],[-4,4],[-12,89],[-2,15],[17,152],[34,64],[35,68],[8,8],[3,5],[4,-1],[7,-1],[1,-1]],[[961260,375284],[-3,0],[-4,0],[-4,0],[-4,0],[-10,7],[-7,5],[-4,3],[-4,3],[-4,3],[-3,6],[-7,10],[-1,2],[-2,3],[-31,116],[-1,6],[-1,1],[-2,16],[-3,15],[2,16],[0,8],[44,77],[2,-2],[5,-6],[4,-4],[4,-4],[7,-18],[1,-2],[2,-4],[9,-85],[17,-161],[0,-4],[-2,-7]],[[961262,375790],[3,-4],[3,-5],[3,-4],[2,-2],[1,-2],[5,-21],[0,-4],[2,-6],[0,-2],[-1,-4],[0,-2],[-1,-5],[-19,-31],[-36,-56],[-20,-30],[-43,34],[-10,72],[-14,100],[8,20],[2,3],[1,4],[114,-55]],[[966856,379007],[137,-189],[-4,-208],[-9,-537],[-26,-101],[-1,-5],[-236,-170],[-10,1],[-111,11],[-28,30],[-263,315],[-22,31],[-27,37],[-115,1052],[45,54],[82,99],[305,97],[283,-517]],[[966194,380872],[-6,-16],[-2,-5],[-12,-27],[-3,-7],[0,1],[-7,7],[-22,24],[-29,39],[-17,23],[-3,6],[-7,13],[-6,12],[-3,15],[-2,15],[-1,9],[-1,8],[1,32],[0,5],[1,9],[1,5],[1,3],[4,16],[3,3],[3,3],[3,3],[4,-1],[3,-2],[3,-1],[6,-6],[2,-2],[4,-4],[4,-4],[2,-3],[1,-3],[13,-24],[3,-4],[4,-8],[27,-58],[26,-56],[2,-13],[0,-7]],[[964669,383309],[-15,-187],[-10,-246],[-7,-215],[-6,-226],[-2,-92],[4,-60],[6,-107],[300,-305],[36,-128],[137,-486],[-21,-130],[-65,-395],[-1,-4],[-2,-3],[-2,-7],[-3,-7],[-3,-4],[-7,-7],[-4,-3],[-28,-26],[-49,-47],[-44,-30],[-25,-16],[-20,8],[-8,3],[-8,3],[-134,149],[-406,448],[-21,29],[-14,19],[-38,71],[-62,113],[-89,278],[-103,318],[71,862],[43,525],[133,84],[202,128],[9,1],[2,0],[2,1],[6,0],[7,1],[45,-33],[22,-16],[16,-11],[4,-3],[3,-5],[1,-1],[55,-77],[2,-4],[5,-6],[28,-50],[58,-104]],[[962803,385271],[106,-289],[-69,-682],[-38,-376],[-82,-311],[-76,-138],[-4,-9],[-27,-23],[-75,-68],[-5,-1],[-73,-23],[-5,10],[-3,5],[58,154],[3,10],[146,482],[66,475],[32,225],[0,4],[0,4],[2,15],[3,24],[6,90],[4,54],[0,4],[-1,5],[-1,19],[-1,16],[-1,12],[0,5],[-2,6],[-2,11],[-4,16],[-40,157],[-12,44],[-37,-39],[8,77],[81,65],[3,1],[4,1],[12,2],[4,-2],[3,-3],[3,-2],[11,-21],[3,-6]],[[956176,386728],[-10,-11],[-13,-12],[-15,-2],[-17,-1],[-7,2],[-8,2],[-3,6],[-3,7],[-81,166],[-48,161],[18,123],[25,27],[113,-302],[23,-63],[26,-103]],[[955060,387096],[-3,-5],[-4,-7],[-2,-2],[-7,7],[-10,10],[-12,12],[-2,2],[-1,1],[-33,70],[-29,61],[-1,4],[-1,4],[-2,9],[-2,7],[-1,22],[0,7],[2,6],[0,2],[7,22],[6,13],[3,5],[4,7],[8,8],[2,1],[10,11],[5,2],[2,0],[2,0],[2,1],[2,1],[2,0],[5,0],[3,0],[9,0],[1,-2],[2,-2],[2,-1],[5,-5],[4,-4],[3,-7],[15,-34],[7,-20],[3,-6],[1,-5],[1,-2],[0,-3],[-1,-4],[-6,-160],[-1,-9],[0,-7],[0,-10]],[[955478,387461],[51,-209],[1,-14],[9,-85],[-8,-19],[-5,-15],[-1,-1],[-2,-6],[-8,-20],[-1,-3],[-1,-2],[-2,-5],[-2,-5],[-6,1],[-6,1],[-6,0],[-2,1],[-31,13],[-20,9],[-24,60],[-11,27],[4,192],[2,105],[1,9],[1,8],[1,10],[2,15],[1,8],[3,4],[0,1],[2,3],[3,5],[3,0],[5,0],[4,0],[3,-3],[4,-4],[3,-4],[3,-4],[2,-4],[1,-2],[4,-7],[10,-18],[3,-6],[4,-14],[3,-14],[1,-1],[2,-7]],[[954702,389093],[4,-35],[9,-69],[1,-10],[6,-44],[-76,-77],[-38,88],[-4,9],[-2,7],[-12,37],[-31,135],[-28,126],[-37,499],[1,5],[1,10],[3,1],[1,0],[8,1],[3,-6],[9,-20],[3,-7],[3,-6],[3,-5],[4,-9],[2,-7],[8,-23],[55,-162],[1,-2],[5,-15],[3,-7],[12,-37],[3,-7],[80,-370]],[[954469,389939],[-41,-34],[-11,1],[-4,0],[-3,0],[-1,0],[-2,6],[-4,8],[-11,28],[-32,177],[10,21],[20,42],[36,-102],[43,-120],[1,-5],[0,-1],[2,-7],[-2,-7],[-1,-6],[0,-1]],[[944279,391560],[-6,-9],[-1,-1],[-10,-16],[-15,2],[-11,15],[-4,5],[-1,1],[-1,6],[-8,29],[-4,14],[-6,34],[-2,10],[-1,7],[0,3],[-1,5],[-2,133],[-3,233],[3,268],[1,19],[20,244],[1,3],[0,6],[1,9],[17,165],[9,91],[2,13],[0,5],[3,6],[10,23],[11,8],[4,3],[2,2],[5,4],[4,-1],[3,-1],[4,-1],[1,-2],[2,-2],[1,-2],[1,-3],[6,-8],[2,-8],[2,-8],[2,-8],[1,-9],[7,-54],[5,-36],[0,-9],[1,-19],[15,-240],[0,-9],[0,-10],[-7,-204],[0,-1],[0,-18],[-1,-19],[0,-4],[0,-5],[-1,-27],[-1,-30],[-1,-38],[-21,-311],[-1,-10],[0,-1],[-1,-8],[-6,-65],[-1,-10],[0,-2],[-2,-26],[-5,-29],[-4,-25],[-2,-14],[-2,-13],[-2,-6],[0,-2],[-6,-22],[-2,-6],[-4,-14]],[[28266,393787],[37,-28],[5,-3],[2,-8],[5,-15],[1,-6],[1,-2],[74,-521],[-41,-235],[-100,-214],[-31,-67],[-20,-20],[-9,-10],[-66,-35],[-19,8],[-12,6],[-69,64],[-4,7],[-19,41],[-49,254],[39,350],[14,109],[10,80],[44,129],[6,17],[4,9],[4,11],[12,27],[8,15],[3,5],[1,2],[2,3],[6,5],[4,4],[3,3],[31,12],[48,19],[5,0],[12,0],[15,0],[6,0],[3,0],[1,-1],[3,-1],[8,-4],[9,-4],[13,-6]],[[967021,228858],[14,-177],[-291,-74],[3,8],[8,19],[-97,148],[-153,-444],[369,-256],[44,-7],[44,-7],[52,9],[73,-451],[-562,-356],[-695,-137],[-89,-68],[-308,-394],[-4,-10],[-6,-13],[55,506],[90,135],[302,452],[137,696],[10,54],[0,202],[-49,179],[-111,406],[38,427],[3,34],[245,63],[197,50],[87,-65],[155,-115],[439,-814]],[[9382,247524],[478,-298],[35,-22],[-236,60],[-82,20],[-15,-114],[-9,-72],[0,-6],[2,-22],[187,-621],[147,-486],[154,-308],[20,-39],[-78,-199],[-363,-298],[-121,453],[-347,1289],[192,558],[36,105]],[[980264,266369],[236,-102],[60,-76],[38,-47],[-131,97],[-120,58],[-93,32],[-203,10],[-184,8],[-196,-567],[-90,-260],[98,-353],[20,-74],[39,-81],[89,-184],[279,-344],[34,0],[110,1],[307,-1366],[22,-453],[262,-891],[253,-246],[607,1082],[598,471],[600,472],[-131,-334],[-128,-328],[338,-893],[561,358],[-138,122],[-154,137],[20,116],[110,664],[802,74],[-217,-685],[-148,-464],[-567,-243],[-127,-207],[658,-74],[63,-7],[-181,-111],[-174,-480],[-6,-58],[-51,-479],[57,-366],[10,-29],[15,-47],[108,-217],[464,-935],[-2244,-5176],[-447,-1595],[-190,-380],[-744,-727],[-727,-1843],[-120,-1549],[518,236],[493,-217],[219,-416],[70,-134],[-103,-488],[-18,-87],[-47,-45],[-225,-221],[-792,354],[-357,-81],[-737,-167],[-1857,-1487],[-287,-349],[-563,-682],[-122,-254],[-118,-245],[-273,-1820],[-330,-2197],[-1202,-4021],[-150,-767],[217,131],[77,46],[53,-183],[-574,-299],[-437,-228],[-223,-435],[-297,-920],[-1396,-1730],[21,-26],[21,-25],[149,35],[23,9],[13,4],[-342,-483],[-270,-120],[-1117,-500],[-577,59],[-921,467],[-503,255],[-416,801],[-252,113],[-1071,479],[-1246,239],[-1479,283],[-254,499],[15,39],[221,589],[-336,198],[-332,-107],[-76,-24],[-14,118],[-89,771],[22,85],[43,169],[365,237],[606,394],[-180,777],[-75,-12],[-81,-12],[-45,158],[355,1371],[186,228],[320,-274],[162,-140],[-186,908],[-5,25],[25,282],[389,764],[466,913],[761,892],[1015,192],[-145,413],[339,1462],[969,1927],[1089,604],[673,374],[2058,2152],[1529,1992],[-15,26],[-36,63],[-56,-12],[-36,-67],[-17,-30],[182,409],[517,397],[366,281],[726,947],[189,379],[343,685],[356,978],[32,116],[238,875],[328,1858],[269,1528],[507,131],[124,32],[455,687],[102,260],[388,988],[123,672],[14,78],[11,2256],[32,77],[149,353],[631,862],[218,243],[638,710],[513,-61]],[[981146,299686],[53,-655],[12,-145],[85,12],[103,15],[138,74],[179,96],[557,-351],[354,-223],[321,59],[186,35],[239,-361],[-99,-428],[-34,-145],[464,-636],[10,-13],[172,161],[-17,34],[-48,101],[160,114],[64,-89],[185,-256],[74,-449],[45,-272],[593,-2373],[-377,336],[-286,256],[-33,-344],[-19,-213],[1202,-2846],[-1,-296],[-1,-164],[-179,-173],[-11,-11],[80,-658],[197,-1543],[-15,-162],[-182,-10],[-13,-1],[-34,53],[-150,240],[87,-700],[-6,150],[55,-13],[9,-2],[199,175],[164,-14],[133,-13],[24,-55],[147,-186],[169,-213],[367,-459],[473,-592],[622,292],[-118,1861],[-142,428],[-284,851],[16,43],[94,256],[71,-75],[386,-405],[213,-1219],[191,-168],[379,-332],[199,-1101],[-58,-1024],[176,-2181],[61,-228],[35,-128],[299,-109],[289,-105],[-23,-291],[4,-28],[1,-6],[187,70],[334,-195],[319,-186],[924,-674],[740,-540],[-9,-86],[-10,-106],[247,-121],[81,36],[637,280],[112,117],[203,212],[725,1454],[301,404],[286,382],[347,-23],[469,-32],[395,-407],[96,-98],[-8,-173],[-36,-860],[-80,-743],[-280,-2617],[-832,-1709],[-123,-824],[-221,-1477],[-680,-5],[-649,-5],[-1034,-775],[-343,-847],[-82,-784],[-8,-80],[169,-418],[228,-564],[-402,-2495],[-1138,-2806],[-166,-489],[-1032,-3027],[-168,-361],[-124,-267],[-852,-1178],[-182,-252],[-688,-694],[-187,11],[-43,3],[-960,2188],[-137,35],[-84,-147],[-94,-165],[7,52],[154,1050],[622,1605],[143,613],[221,953],[98,1348],[-116,836],[-66,478],[-335,623],[-343,638],[-2687,2107],[-29,50],[-416,721],[-7,46],[-103,699],[3,14],[108,495],[143,234],[1,1],[248,249],[679,681],[636,90],[147,254],[252,436],[94,330],[18,63],[35,241],[384,3002],[93,726],[215,-75],[152,385],[-72,327],[-255,1153],[104,472],[-496,2799],[6,162],[39,1040],[178,-507],[360,583],[-234,270],[-87,101],[53,102],[54,107],[0,5],[-1,10],[106,15],[30,129],[-1008,-88],[-137,676],[-69,338],[-78,237],[-5,95],[-29,551],[260,-189],[-61,1824],[-84,48],[0,-3],[-52,-244],[-145,332],[-7,16],[178,1059],[-403,25],[-466,-592],[-179,-229],[-1698,4143],[-73,254],[161,589],[46,74],[69,111],[35,-43],[132,-162],[66,135],[124,364],[13,180],[-83,0],[-92,0],[-283,-572],[-260,-528],[-483,1130],[-69,416],[-68,409],[28,76],[124,335],[-83,728],[-138,378],[-279,764],[-416,950],[-131,299],[425,847],[34,70],[12,-302],[10,-234],[-64,-396],[172,-191],[377,-1023],[187,-510]],[[525563,881517],[-111,-83],[-325,-243],[-1414,-473],[-295,-14],[-89,-5],[-269,316],[486,452],[701,0],[-344,161],[-107,27],[-67,24],[109,92],[29,25],[740,174],[353,-91],[54,-139],[24,-63],[473,-144],[52,-16]],[[542098,910468],[-330,-556],[-162,-126],[-699,-544],[-667,-217],[-802,-260],[19,338],[613,936],[129,41],[747,240],[42,-9],[223,-48],[7,-151],[880,356]],[[543823,911329],[-116,-362],[-35,-107],[1233,1193],[40,64],[78,127],[-43,463],[-11,123],[279,210],[383,-245],[369,-237],[56,-532],[31,-291],[-23,-76],[-186,-601],[-542,-21],[-237,-10],[-163,-86],[-144,-77],[-650,-494],[-538,-640],[-731,378],[-724,-476],[-236,348],[834,1295],[306,255],[135,1263],[146,345],[19,46],[320,265],[392,-12],[62,-17],[73,-21],[75,-211],[64,-179],[-4,-152],[-13,-429],[-220,-661],[-68,-202],[-24,-28],[-187,-208]],[[542586,912865],[170,-612],[66,-237],[-22,-268],[-631,-372],[-418,-246],[-310,37],[-287,221],[-83,64],[509,421],[-827,-220],[-408,-380],[-108,17],[-131,21],[-103,246],[-35,85],[83,312],[173,246],[238,340],[384,-85],[62,-218],[7,-27],[509,231],[556,253],[-266,546],[-15,29],[-9,331],[412,166],[78,-53],[113,-569],[293,-279]],[[549476,917001],[368,-409],[377,-418],[-204,-1404],[-454,-207],[-282,-4],[-460,-8],[-144,55],[-84,32],[106,142],[-119,76],[-807,-900],[-848,-11],[5,465],[433,935],[472,1022],[-24,74],[-44,137],[730,413],[240,-10],[488,-18],[135,20],[116,18]],[[552609,917769],[-493,-143],[-73,-254],[73,-21],[-218,-454],[-525,-87],[-780,-129],[-577,274],[23,63],[58,161],[781,673],[1200,-164],[-50,651],[-227,311],[124,164],[322,-18],[464,-315],[206,-340],[-181,-218],[-127,-154]],[[553764,918495],[-681,-231],[-570,419],[-555,407],[273,272],[339,337],[464,168],[369,133],[66,-68],[393,-408],[149,-633],[-183,-294],[-64,-102]],[[565519,923027],[142,-572],[6,-23],[-9,-130],[-11,-161],[-356,-343],[-447,-430],[-281,-130],[-205,-95],[-209,58],[-680,682],[104,256],[49,122],[579,464],[354,-127],[254,75],[410,121],[14,128],[-223,189],[47,25],[179,96],[39,-28],[244,-177]],[[563678,922672],[-2261,-125],[19,311],[29,477],[1062,160],[1099,166],[634,529],[484,402],[198,-118],[58,-35],[86,-110],[164,-205],[-328,-303],[-1244,-1149]],[[963721,502811],[6,-9],[1,-3],[6,-11],[0,-9],[1,-17],[1,-18],[-2,-18],[-1,-3],[-3,-25],[-27,-117],[-6,-10],[-1,-3],[-2,-3],[-11,-14],[-4,-5],[-4,-1],[-10,-2],[-2,-1],[-5,2],[-2,0],[-10,4],[-10,12],[-3,4],[-5,8],[-4,5],[-3,5],[-2,5],[-5,11],[-3,8],[-1,5],[-2,6],[-1,0],[1,9],[2,27],[4,16],[2,7],[2,7],[3,16],[1,2],[2,4],[20,48],[34,69],[6,1],[3,1],[2,0],[6,1],[2,1],[2,0],[4,-2],[4,-3],[11,-7],[2,-2],[1,-1]],[[273315,549281],[-19,-208],[-142,53],[-219,82],[-333,618],[-65,365],[187,405],[160,346],[26,-23],[42,-35],[363,-1603]],[[143605,361865],[3,-23],[9,-59],[9,-74],[1,-9],[1,-15],[0,-13],[3,-46],[1,-19],[0,-20],[1,-18],[0,-7],[1,-3],[0,-6],[0,-3],[-1,-9],[-2,-35],[-2,-6],[-1,-5],[-2,-6],[-3,-5],[-2,-4],[-1,-1],[-7,2],[-2,1],[-1,0],[-26,16],[-54,33],[-15,16],[-3,5],[-4,4],[-47,160],[-3,17],[-5,41],[0,1],[-4,25],[1,7],[1,10],[1,7],[4,28],[1,9],[7,22],[15,49],[27,42],[95,26],[4,-135]],[[654169,382382],[151,-35],[8,-2],[9,-2],[8,-2],[73,-19],[4,-1],[118,-91],[60,-48],[4,-3],[5,-3],[4,-4],[8,-6],[6,-14],[48,-113],[3,-7],[396,-1170],[1,-7],[2,-8],[4,-21],[13,-100],[7,-77],[-71,-912],[-11,-70],[-3,-18],[-1,-9],[-11,-16],[-21,-32],[-4,-5],[-4,-5],[-4,-3],[-71,-45],[-8,-6],[-307,-125],[-83,13],[-47,15],[-208,112],[-131,82],[-148,141],[-207,250],[-69,90],[-96,205],[-37,128],[-140,668],[28,491],[152,558],[206,179],[241,106],[123,-59]],[[837799,614379],[806,-581],[315,95],[333,571],[2,23],[367,-1251],[-352,-2254],[151,-1647],[145,-858],[434,-486],[235,-1022],[-81,-1452],[-657,-3378],[-417,-590],[-940,-843],[-424,-777],[-480,-3199],[579,-4176],[122,-1573],[332,-1729],[469,-771],[808,-525],[193,428],[12,282],[-99,1250],[322,308],[724,-15],[98,90],[-7,283],[457,-375],[543,-1249],[137,-1010],[-133,-718],[132,-186],[383,-91],[226,329],[149,1326],[208,-535],[1349,-757],[115,-474],[-1074,60],[-144,-857],[1286,-2860],[486,-513],[-76,-1824],[-164,-914],[-251,13],[-324,679],[-76,489],[30,771],[102,-70],[142,-63],[203,158],[36,518],[-1046,-344],[-821,672],[-622,2627],[-1073,1997],[-601,823],[-277,-109],[172,-1118],[312,-1252],[-237,-1270],[-88,551],[-423,1031],[-1635,2327],[-694,-675],[-138,-916],[-371,-453],[-575,31],[-404,853],[-805,154],[-158,826],[-10,1675],[1010,1537],[30,93],[5,204],[-84,611],[-338,687],[-800,471],[-31,-131],[-9,-422],[204,-1496],[-123,-356],[-295,38],[-181,158],[-225,1034],[-72,1111],[-623,912],[-329,2974],[61,201],[-167,2077],[-138,605],[-227,-283],[-50,201],[75,2168],[86,237],[252,155],[42,-804],[652,-1252],[447,155],[297,575],[-239,1153],[-62,1630],[334,2916],[67,1697],[-41,676],[-10,62],[-17,35],[-19,3],[-15,-44],[19,1295],[127,1663],[300,2439],[179,533],[545,659],[336,-477],[807,-31],[982,-1149]],[[836618,541474],[135,-185],[367,10],[-288,-707],[-934,37],[-123,188],[55,482],[323,436],[240,61],[225,-322]],[[839390,543960],[-582,-277],[-471,1216],[774,743],[559,-548],[-280,-1134]],[[850861,558627],[54,-578],[-413,-879],[-73,-967],[468,-1058],[102,-2669],[298,-708],[261,-1024],[92,-1825],[-411,-1658],[-452,-562],[-214,207],[-143,-285],[179,-585],[35,-783],[-117,-2168],[-293,1308],[-10,502],[-273,2173],[-380,1931],[-553,-539],[-698,-2399],[-47,-670],[37,-564],[242,-111],[300,-600],[323,-1601],[-6,-997],[-107,-656],[-693,-2124],[-332,64],[-294,1476],[-276,245],[-152,-134],[-596,254],[-1421,1398],[-316,443],[-383,1035],[-235,2342],[296,2183],[243,318],[200,846],[-23,423],[-609,1367],[-876,975],[-329,228],[-423,-230],[-116,-1252],[-237,-499],[-277,453],[-24,135],[-217,612],[-797,-1179],[11,33],[-34,1285],[-283,241],[-238,-46],[-249,-332],[-290,-791],[-511,-2364],[3,-480],[-265,-1142],[-129,-127],[-473,455],[-98,1036],[653,2487],[-79,1182],[327,1177],[335,458],[951,479],[832,790],[255,1568],[1128,745],[210,-375],[65,441],[271,-85],[178,-263],[288,-1528],[41,-1043],[-410,-669],[214,86],[771,771],[1189,2281],[496,-601],[176,109],[99,2522],[686,-86],[1100,402],[267,238],[-30,1469],[-324,2311],[34,669],[99,243],[145,-108],[490,-1136],[632,-1042],[1153,-2874]],[[845158,562535],[-561,-54],[-552,281],[-203,739],[162,782],[465,410],[436,1109],[332,106],[152,-227],[-1,-15],[1,-14],[490,-1604],[198,-251],[-541,-942],[-378,-320]],[[842137,559491],[-453,-236],[-202,295],[-1403,3404],[257,1868],[478,34],[365,422],[100,541],[120,2636],[152,1299],[489,897],[198,152],[826,-519],[81,-428],[-896,-4993],[-273,-2018],[193,-883],[351,-951],[-39,-633],[-344,-887]],[[842650,561513],[-146,-52],[191,2536],[1287,5309],[326,2029],[236,-801],[-18,-32],[-4,-1943],[-573,-2246],[-568,-1486],[-428,-2486],[-303,-828]],[[831921,570174],[219,-1331],[104,6],[272,-798],[-31,-219],[-331,-597],[-333,-110],[-373,-395],[-221,-668],[-902,-1285],[-446,-255],[-117,-1856],[-647,-1884],[-276,-451],[-681,-460],[-358,-1494],[-596,-919],[-710,-736],[-797,-1324],[-91,-238],[-81,261],[74,638],[218,904],[914,2190],[718,1282],[401,73],[1077,2575],[1010,1961],[621,1994],[310,314],[82,-186],[506,1366],[51,553],[236,94],[38,718],[-87,1108],[24,1461],[343,286],[-140,-2578]],[[847241,571662],[602,-4471],[-14,-824],[-541,-1147],[8,-231],[-624,691],[-128,351],[19,2224],[108,606],[-52,624],[-521,1410],[-142,-263],[-393,256],[-323,3018],[102,197],[652,-1320],[1131,-29],[116,-1092]],[[846075,573637],[-347,-59],[-195,544],[4,163],[-166,531],[268,168],[296,-200],[230,-806],[-90,-341]],[[840927,569549],[-2260,-1739],[333,3864],[167,3282],[-98,235],[-582,213],[133,742],[130,169],[207,-299],[2347,-2641],[45,-28],[688,-96],[-164,-1456],[-167,-235],[-688,-1081],[54,-490],[-145,-440]],[[833077,578632],[713,-1186],[119,63],[31,323],[112,-349],[-267,-596],[-296,-92],[-492,1129],[-42,614],[122,94]],[[844088,578037],[430,-1282],[116,-1676],[-779,1187],[-537,1269],[-474,343],[-425,-211],[-15,1767],[131,695],[96,-149],[24,-404],[775,-688],[658,-851]],[[847695,580049],[338,-631],[69,-336],[-61,-552],[259,-184],[201,-1035],[-69,-1494],[23,-1314],[278,-1181],[-4,-1384],[-72,-441],[-855,-2],[-600,1506],[-154,2272],[-687,1481],[-346,363],[-642,1760],[-76,488],[80,539],[882,-175],[454,132],[182,214],[171,31],[233,-243],[331,298],[65,-112]],[[839311,580629],[-361,-3134],[-172,264],[15,295],[29,-163],[40,-45],[75,271],[-227,311],[203,1501],[139,467],[259,233]],[[834575,585719],[802,-308],[644,195],[630,-454],[814,-1645],[89,-484],[-43,-1951],[3,-1083],[-462,-1401],[-143,-153],[-511,109],[34,46],[6,123],[-615,1907],[-594,2864],[-805,1488],[-128,-74],[-104,258],[101,461],[282,102]],[[839256,584950],[-290,-1135],[-473,582],[-100,367],[-15,472],[161,726],[634,-754],[83,-258]],[[845407,586164],[-391,-324],[-399,345],[-97,336],[283,2366],[176,174],[332,-1110],[245,-765],[-149,-1022]],[[838981,592809],[-260,-558],[-78,117],[-226,1786],[75,517],[237,93],[219,-150],[-20,-423],[-136,-353],[86,-380],[64,-85],[39,-564]],[[874013,550471],[-57,-473],[-81,-514],[-29,-177],[-87,-171],[-19,-5],[-4,-1],[-5,15],[-22,61],[-18,53],[-71,287],[-42,170],[22,199],[24,221],[105,481],[23,99],[7,30],[207,572],[21,-38],[32,-58],[-6,-751]],[[872629,546723],[2,-1],[6,-3],[2,-1],[1,-1],[8,-20],[11,-29],[0,-7],[1,-9],[0,-9],[-2,-12],[-4,-19],[-1,-3],[-1,-3],[0,-2],[-2,-4],[-38,-85],[-9,-4],[-4,-1],[-7,-2],[-6,-1],[-4,-1],[-4,0],[-5,-1],[-7,3],[-2,13],[0,6],[3,13],[0,1],[1,5],[9,51],[11,64],[4,26],[5,35],[19,3],[4,1],[3,-1],[6,-2]],[[872950,547181],[-68,-147],[-7,-9],[-2,2],[-1,3],[-3,26],[-2,15],[-1,48],[-1,52],[0,3],[0,5],[0,17],[0,4],[1,5],[1,9],[1,9],[4,16],[0,2],[2,7],[27,67],[50,123],[26,27],[3,0],[2,1],[4,1],[1,-4],[0,-6],[0,-11],[-4,-33],[-33,-232]],[[873304,548167],[-1,-34],[-5,-113],[-8,-13],[-38,4],[-35,5],[-7,2],[-4,2],[-1,4],[-3,9],[-1,3],[-1,4],[-5,19],[-2,7],[0,6],[0,2],[-1,11],[-4,79],[1,8],[0,5],[2,12],[6,5],[3,3],[1,0],[2,2],[40,17],[41,17],[8,1],[2,0],[7,-29],[1,-17],[1,-13],[1,-7],[0,-1]],[[873496,548973],[0,-17],[0,-18],[-16,-156],[-3,-21],[-170,-273],[-9,-1],[-9,5],[-8,5],[-6,10],[-37,85],[-19,42],[-21,56],[3,-1],[1,0],[2,-1],[3,-1],[1,0],[3,-1],[3,-1],[1,-1],[5,-7],[3,-3],[3,-5],[7,-9],[17,-32],[3,-4],[3,-6],[12,-28],[16,-8],[19,-8],[41,76],[59,128],[43,92],[23,94],[-1,15],[-2,10],[-1,6],[0,6],[-1,2],[-2,8],[-3,6],[-2,8],[-3,6],[-6,10],[0,1],[-1,1],[-2,4],[-2,5],[-2,4],[-6,30],[51,-71],[4,-16],[2,-8],[2,-6],[1,-4],[1,-8]],[[873542,549257],[68,-14],[13,-119],[8,-75],[-66,84],[-57,74],[-9,13],[-5,7],[-20,35],[-5,9],[-2,4],[-3,7],[-1,3],[-1,7],[-2,14],[7,-3],[4,-1],[3,-2],[5,-2],[32,-18],[4,-2],[3,-3],[8,-4],[4,-3],[1,-1],[2,-1],[3,-3],[1,-1],[5,-5]],[[927096,437105],[-612,-68],[-34,113],[-18,62],[-73,85],[-59,69],[-638,899],[-141,199],[-22,189],[-12,101],[92,111],[1358,-1154],[124,-279],[75,-168],[-40,-159]],[[918776,448409],[1075,-1678],[110,335],[243,129],[45,-456],[-201,-1014],[-319,169],[-276,146],[-421,1569],[-157,291],[-86,-55],[-2,101],[-11,463]],[[919259,448821],[-20,-19],[-206,-204],[-1025,253],[-73,997],[113,807],[359,-351],[286,-48],[87,-15],[339,-605],[140,-815]],[[917736,450338],[-5,-31],[-118,-772],[-530,628],[-147,467],[22,185],[30,244],[139,290],[178,107],[107,-120],[32,-36],[151,-272],[108,-531],[33,-159]],[[924325,452541],[720,-870],[-170,-459],[-350,-143],[-195,220],[-282,317],[88,495],[-557,370],[-92,-47],[-84,-42],[1,-143],[0,-39],[-2,13],[-92,468],[168,124],[79,58],[579,-243],[189,-79]],[[933239,466122],[-18,-65],[-122,-448],[-31,322],[-263,-134],[-266,-583],[-53,17],[-472,147],[-28,36],[-461,596],[-343,785],[-126,289],[-17,212],[-113,1470],[-107,146],[-377,514],[-634,1522],[-78,1012],[129,1306],[271,-63],[588,-221],[151,-637],[170,-724],[691,-1792],[565,-688],[526,-977],[65,-202],[169,-524],[127,-912],[57,-404]],[[911346,472506],[-178,-1143],[-178,285],[-467,1895],[321,-293],[284,-259],[218,-485]],[[929518,476234],[209,-971],[-45,-1261],[-132,-332],[-56,-139],[-172,1101],[39,979],[-150,-73],[179,406],[128,290]],[[921594,480938],[441,-369],[205,-171],[259,498],[22,42],[329,-83],[388,-642],[18,-1095],[15,-865],[-128,-971],[-257,-751],[-232,-188],[-293,-1398],[144,-378],[79,-206],[-30,-454],[-80,-245],[-520,-570],[-332,27],[-793,64],[-42,-440],[-51,-544],[-305,-707],[-62,-143],[-186,-291],[-290,-453],[-407,-254],[-120,-76],[-44,-5],[-430,-56],[-721,-881],[-604,-509],[-524,-18],[-458,-15],[-123,-33],[-182,-49],[-247,-17],[-261,-18],[-352,302],[-273,821],[-344,222],[-70,11],[-817,123],[-232,212],[-1455,1333],[-224,452],[-5,35],[-34,279],[101,878],[109,164],[87,131],[2860,-648],[1157,187],[249,779],[212,2135],[125,107],[77,65],[159,-210],[98,-129],[-241,-365],[-209,-1052],[177,-1310],[508,-245],[1263,322],[760,848],[214,1236],[780,1392],[627,-281],[25,32],[149,194],[92,629],[-160,1849],[-182,537],[-42,124],[-125,881],[-30,210],[63,85],[18,25],[247,-34],[460,-62]],[[924708,477361],[-16,-22],[-36,-48],[-556,2422],[3,1456],[-443,1643],[-564,1537],[-384,622],[-136,221],[-475,495],[-696,726],[-1463,2136],[-513,750],[-465,847],[167,147],[814,-1155],[218,-310],[875,-802],[1168,-1463],[257,-321],[62,-145],[334,-783],[1461,-2422],[32,-53],[736,-1712],[127,-238],[69,-1025],[-54,-556],[-67,-684],[-455,-1263]],[[917888,490329],[-294,-203],[-693,378],[-277,550],[-34,68],[418,512],[175,216],[285,-297],[265,-278],[105,-134],[59,-76],[14,-92],[35,-234],[-58,-410]],[[909223,493750],[2,-32],[7,-99],[-67,2],[-9,1],[-345,-856],[-856,54],[-630,40],[-37,120],[-77,241],[37,752],[862,195],[459,-19],[293,-179],[361,-220]],[[317113,612274],[-573,-298],[-434,-226],[-1420,364],[-1321,-258],[-68,297],[-33,1977],[-4,301],[175,651],[88,46],[189,99],[1490,-180],[1759,-212],[437,-325],[223,-166],[54,-376],[69,-484],[-305,-585],[-326,-625]],[[85630,400129],[-4,-1],[-13,3],[-9,2],[-20,8],[-14,5],[-162,117],[-832,616],[-74,58],[-8,22],[-3,7],[-3,16],[-2,8],[-1,7],[-94,604],[-10,67],[2,344],[23,33],[41,56],[28,38],[35,48],[90,68],[33,19],[149,87],[17,-4],[41,-9],[341,-348],[62,-64],[314,-763],[157,-382],[5,-13],[1,-2],[1,-5],[2,-3],[1,-3],[18,-56],[2,-6],[1,-6],[2,-7],[1,-7],[1,-3],[0,-4],[1,-7],[2,-14],[1,-124],[-1,-45],[-7,-101],[-14,-72],[-3,-14],[-23,-100],[-3,-8],[-2,-7],[-5,-16],[-3,-6],[-2,-2],[-5,-10],[-3,-2],[-4,-3],[-6,-3],[-12,-4],[-22,-6],[-8,-3]],[[99117,342410],[-33,-19],[-2,-2],[-96,124],[-25,55],[-10,44],[2,111],[1,24],[2,41],[4,14],[2,5],[20,12],[21,11],[25,6],[34,8],[18,-6],[15,-7],[39,-18],[22,-52],[1,-204],[-1,-10],[0,-11],[-5,-38],[-5,-46],[-29,-42]],[[89811,364654],[-3,-1],[-4,-2],[-4,2],[-9,6],[-1,1],[-54,38],[6,24],[4,15],[34,47],[12,13],[6,6],[42,33],[21,7],[24,8],[4,-2],[1,0],[16,-6],[8,-4],[8,-3],[4,-2],[4,-2],[8,-4],[4,-2],[4,-3],[0,-9],[0,-10],[-5,-7],[-1,-2],[-3,-4],[-1,-1],[-33,-38],[-81,-95],[-11,-3]],[[84876,367476],[-103,-31],[-8,-3],[-2,2],[-4,4],[-17,32],[-22,50],[-11,27],[-1,8],[0,24],[1,4],[0,2],[2,14],[1,2],[3,13],[3,12],[1,2],[6,10],[12,21],[3,5],[1,1],[2,4],[3,5],[3,4],[2,3],[2,2],[7,8],[1,1],[6,3],[12,7],[1,0],[3,2],[57,31],[8,2],[12,2],[5,0],[13,-2],[9,0],[4,-1],[15,-4],[26,-42],[6,-9],[0,-2],[3,-13],[4,-15],[0,-2],[1,-7],[0,-2],[0,-6],[2,-27],[0,-8],[-1,-15],[-1,-17],[-1,-4],[-1,-3],[-2,-7],[-2,-7],[-1,-6],[-26,-37],[-7,-8],[-8,-9],[-3,-3],[-4,-4],[-1,-1],[-3,-2],[-11,-10]],[[125067,369095],[-6,-1],[-1,0],[-1,0],[-3,1],[-3,2],[-1,0],[-11,4],[-4,3],[-2,1],[-2,2],[-15,13],[-43,55],[-3,14],[-1,8],[-1,23],[0,8],[159,169],[19,20],[10,5],[33,15],[-8,-65],[-4,-30],[-82,-221],[-15,-17],[-4,-4],[-4,-4],[-5,-1],[-2,0]],[[75432,371945],[-44,-24],[-11,16],[-3,4],[-15,21],[-13,42],[-3,10],[-1,5],[-1,3],[29,85],[4,6],[9,17],[3,5],[2,4],[1,2],[3,6],[3,1],[11,4],[37,-33],[3,-3],[1,-3],[1,-3],[2,-4],[3,-7],[4,-13],[2,-7],[1,-5],[2,-28],[0,-4],[0,-6],[1,-19],[-2,-6],[-8,-20],[-5,-13],[-1,-1],[-2,-6],[-5,-10],[-2,-3],[-6,-13]],[[79628,372705],[-3,-4],[-6,-9],[-17,51],[-13,40],[-58,263],[0,9],[-2,32],[-1,17],[0,22],[-1,11],[0,9],[1,13],[0,4],[0,3],[3,10],[2,7],[3,6],[3,4],[3,5],[3,4],[5,8],[0,1],[1,-1],[16,-4],[2,0],[2,-1],[4,-1],[4,-1],[2,-1],[6,-6],[8,-8],[3,-3],[2,-2],[5,-5],[40,-58],[31,-43],[8,-100],[-4,-48],[-7,-96],[-12,-43],[-3,-12],[-13,-31],[-8,-20],[-2,-6],[-3,-5],[-3,-6],[-1,-5]],[[109405,377398],[-13,-8],[-9,2],[-16,4],[-4,2],[-1,0],[-3,1],[-5,1],[-3,1],[-8,2],[-8,3],[-22,12],[-15,7],[-1,1],[-3,2],[-3,2],[-1,1],[-12,9],[-8,22],[-2,5],[-4,9],[-2,7],[-3,8],[-9,30],[-1,4],[-1,3],[-7,45],[-14,89],[1,16],[1,19],[2,18],[3,19],[2,7],[3,13],[4,21],[1,8],[1,1],[5,10],[1,2],[14,25],[2,5],[1,1],[4,5],[12,14],[3,4],[7,4],[12,6],[6,2],[3,1],[8,3],[3,0],[2,1],[2,-3],[9,-11],[3,-4],[114,-333],[-1,-16],[-4,-48],[-21,-27],[-17,-21],[-3,-2],[-1,-1],[-1,-1],[-3,-2]],[[109958,389610],[-4,0],[-1,6],[-1,2],[-2,10],[-1,6],[-2,148],[-1,123],[0,7],[0,9],[1,5],[1,3],[2,8],[2,2],[2,1],[2,1],[2,1],[3,-4],[2,-3],[5,-6],[9,-12],[4,-6],[3,-3],[1,-1],[0,-1],[3,-4],[10,-12],[18,-25],[7,-9],[6,-12],[14,-30],[3,-6],[2,-7],[1,-3],[6,-18],[1,-4],[1,-3],[2,-16],[2,-16],[0,-8],[0,-24],[-4,-7],[-15,-34],[-3,-2],[-12,-13],[-2,-2],[-1,-1],[-3,-3],[-1,-1],[-2,-2],[-2,-2],[-8,-8],[-8,-8],[-4,-2],[-31,-13],[-5,-1],[-2,0]],[[121225,396401],[112,-328],[-152,234],[-235,363],[26,22],[163,-190],[86,-101]],[[119537,397284],[-3,0],[-13,19],[-255,474],[-6,13],[-4,9],[-8,16],[-4,6],[2,8],[2,8],[4,15],[2,0],[5,0],[4,0],[4,0],[3,0],[3,-1],[4,0],[4,-2],[0,-1],[8,-3],[14,-11],[4,-3],[12,-13],[6,-7],[4,-3],[5,-9],[1,-1],[5,-6],[5,-8],[3,-6],[2,-2],[17,-31],[3,-6],[5,-9],[7,-16],[1,-3],[2,-3],[2,-4],[4,-9],[35,-77],[11,-22],[42,-92],[9,-24],[47,-117],[2,-7],[7,-20],[2,-6],[0,-14],[-1,-4],[0,-7],[-1,-11],[0,-9],[-7,-1]],[[108850,398149],[-1,-3],[-1,-1],[-6,4],[-159,354],[-38,101],[-97,263],[59,-79],[213,-507],[4,-9],[2,-5],[8,-20],[3,-7],[1,-8],[3,-12],[0,-4],[7,-32],[1,-8],[0,-1],[1,-8],[0,-18]],[[102602,400196],[-8,-6],[-87,67],[0,8],[0,7],[-1,14],[0,1],[11,61],[1,3],[3,9],[2,6],[3,4],[2,4],[3,5],[2,4],[0,1],[3,4],[7,10],[4,5],[1,2],[2,1],[7,6],[4,0],[5,0],[1,-3],[2,-2],[1,-3],[4,-8],[3,-5],[11,-22],[1,-10],[1,-8],[3,-18],[10,-83],[0,-8],[0,-24],[0,-1],[0,-7],[0,-4],[-1,-10]],[[108903,400660],[-4,-4],[-5,14],[7,26],[37,105],[6,11],[3,6],[12,22],[3,6],[16,30],[6,12],[3,5],[4,5],[21,32],[2,3],[2,2],[9,13],[1,2],[7,10],[225,265],[8,7],[18,16],[4,3],[2,-4],[1,-1],[3,-5],[-2,-15],[0,-5],[-1,-2],[-1,-2],[-2,-5],[-8,-20],[-7,-10],[-6,-11],[-6,-10],[-7,-9],[-1,-1],[-19,-25],[-4,-5],[-3,-4],[-12,-15],[-20,-27],[-4,-5],[-4,-4],[-4,-3],[-2,-3],[-5,-5],[-12,-12],[-31,-32],[-3,-2],[-1,-1],[-13,-13],[-11,-11],[-4,-4],[-184,-302],[-3,-7],[-11,-11]],[[109410,401254],[5,-21],[1,-3],[1,-4],[0,-3],[2,-30],[0,-7],[0,-1],[0,-24],[0,-7],[1,-1],[0,-17],[-5,-36],[-3,-18],[-1,-9],[-8,-39],[-12,-61],[-2,-4],[-1,-3],[-5,-14],[-5,-12],[-30,-76],[-14,-32],[-9,-20],[-38,-58],[-69,-106],[-241,-372],[-24,-20],[-37,-32],[-51,-22],[-7,-3],[-17,-5],[-1,0],[-3,-1],[-8,-2],[-8,4],[-7,4],[-5,3],[-4,2],[-5,14],[0,1],[-3,8],[0,8],[-1,24],[0,5],[0,5],[0,12],[1,7],[0,23],[1,6],[11,70],[1,8],[2,9],[10,42],[4,16],[2,8],[3,15],[2,7],[4,15],[1,5],[1,2],[2,7],[2,6],[3,12],[2,4],[0,2],[5,11],[2,5],[4,3],[0,1],[3,2],[2,-4],[1,-1],[5,-9],[0,-4],[-1,-4],[-1,-14],[-2,-9],[-1,-8],[-3,-12],[-1,-5],[-27,-97],[-21,-74],[-2,-5],[-3,-9],[-1,-19],[0,-29],[2,-5],[3,-7],[2,-4],[6,-9],[3,-4],[3,-3],[4,-3],[1,-1],[2,-2],[15,1],[3,0],[4,0],[5,0],[4,1],[9,4],[1,1],[12,6],[4,2],[3,2],[9,7],[11,8],[5,4],[4,3],[9,6],[5,4],[3,3],[3,2],[1,1],[25,31],[32,40],[310,472],[45,122],[41,111],[1,4],[0,5],[4,27],[1,10],[0,8],[1,15],[1,11],[1,9],[-1,19],[-2,18],[-1,8],[-6,24],[-1,4],[-4,10],[-2,6],[-1,1],[-4,1],[-2,1],[-2,0],[-5,1],[-6,2],[-4,-1],[-6,-1],[-2,0],[-3,-1],[-8,-1],[-4,1],[-11,3],[-5,1],[-3,3],[-4,3],[-3,2],[-1,1],[0,4],[1,5],[0,4],[0,5],[7,4],[4,2],[5,0],[4,0],[4,0],[15,-1],[3,0],[17,-4],[4,-2],[2,0],[7,-2],[3,-2],[8,-4],[11,-6],[1,0]],[[104036,401750],[-6,-10],[-8,6],[-4,3],[-233,382],[-1,19],[2,2],[1,1],[3,2],[1,1],[3,-2],[5,-2],[33,-12],[5,-2],[4,-3],[3,-4],[23,-20],[2,-1],[2,-2],[4,-4],[14,-15],[22,-23],[14,-25],[16,-31],[68,-143],[4,-8],[4,-12],[3,-7],[3,-7],[2,-7],[2,-6],[1,-2],[4,-13],[0,-1],[5,-17],[1,-4],[1,-4],[0,-8],[0,-10],[0,-6],[-3,-5]],[[83876,401868],[-17,-26],[-17,2],[-13,1],[-20,2],[-17,3],[-16,13],[-8,8],[-11,10],[-23,37],[-125,237],[-10,25],[-4,9],[-24,90],[-1,1],[-3,16],[-5,24],[0,2],[-1,15],[-2,32],[-1,9],[2,8],[5,24],[3,6],[1,4],[4,10],[16,22],[137,27],[121,24],[68,-45],[83,-55],[-28,-120],[-13,-57],[-61,-297],[-9,-33],[-11,-28]],[[107128,403042],[-2,-2],[-1,-2],[-3,1],[-3,1],[-34,76],[-73,168],[1,1],[16,20],[21,-3],[20,-4],[15,-9],[6,-4],[2,-1],[4,-2],[6,-12],[2,-2],[5,-10],[5,-12],[5,-12],[2,-6],[4,-18],[1,-7],[1,-4],[1,-4],[1,-9],[1,-8],[3,-18],[0,-12],[0,-5],[1,-26],[0,-8],[0,-10],[0,-18],[0,-7],[-1,-12],[-2,-15],[-4,-5]],[[95662,403022],[-8,-6],[-2,1],[-2,1],[-17,8],[-2,1],[-3,4],[-4,5],[-6,10],[-1,2],[-2,2],[-25,98],[-21,86],[-1,11],[-1,23],[0,8],[0,5],[0,4],[2,18],[4,37],[2,7],[2,6],[2,7],[8,1],[8,2],[5,-10],[0,-2],[3,-6],[31,-125],[41,-169],[-1,-5],[-1,-3],[-2,-16],[-4,-3],[-5,-2]],[[80600,406400],[-11,-16],[-101,191],[-2,9],[-1,1],[-1,7],[-2,11],[-2,17],[3,10],[7,16],[13,19],[3,5],[3,4],[63,76],[34,41],[1,1],[5,5],[4,3],[3,-2],[4,-1],[41,-68],[1,-83],[-23,-91],[-1,-1],[0,-2],[-41,-152]],[[79343,405888],[-43,-56],[-7,4],[-12,6],[-39,42],[-25,290],[-34,397],[1,115],[5,76],[11,105],[1,4],[0,3],[2,16],[1,5],[3,12],[3,10],[1,3],[1,2],[1,5],[4,13],[1,3],[6,7],[23,27],[2,2],[1,1],[7,6],[3,2],[4,0],[1,0],[2,0],[4,0],[4,-1],[3,-2],[1,-1],[3,-1],[28,-39],[29,-39],[49,-232],[56,-259],[-60,-427],[-32,-84],[-3,-5],[-6,-10]],[[99865,406790],[-3,-13],[-114,78],[-60,41],[0,4],[-1,4],[-1,15],[-1,7],[1,16],[0,2],[0,1],[1,17],[7,19],[0,1],[2,7],[3,6],[2,5],[1,2],[3,8],[5,12],[8,3],[17,7],[4,2],[9,-1],[4,-1],[13,-3],[1,0],[4,-2],[4,-2],[5,-3],[20,-11],[4,-6],[20,-31],[6,-10],[7,-16],[21,-50],[4,-13],[4,-11],[0,-1],[4,-30],[1,-4],[0,-4],[0,-8],[-1,-16],[-1,-8],[-1,-7],[-1,-3],[-1,-3]],[[80477,406701],[-9,-7],[-22,-18],[-6,1],[-3,0],[-3,3],[0,1],[-2,4],[-4,6],[-3,14],[-2,13],[-6,35],[0,7],[0,8],[0,7],[0,8],[3,51],[2,24],[6,71],[13,140],[3,25],[1,9],[11,63],[9,19],[3,7],[3,3],[5,6],[7,8],[4,5],[41,2],[8,1],[8,-1],[4,0],[1,0],[3,0],[2,0],[2,0],[4,-1],[8,-7],[2,-2],[2,-2],[2,-2],[1,-2],[3,-3],[1,-1],[19,-34],[5,-14],[1,-1],[2,-7],[2,-4],[1,-3],[0,-5],[1,-8],[0,-2],[1,-4],[0,-9],[1,-11],[0,-6],[-6,-177],[-36,-96],[-93,-114]],[[101561,407532],[15,-13],[5,-7],[2,-4],[25,-39],[89,-162],[2,-5],[1,-1],[0,-1],[3,-6],[20,-40],[2,-3],[4,-14],[4,-13],[2,-7],[1,-17],[0,-9],[0,-8],[-1,-2],[-4,-5],[-2,-4],[-1,0],[-5,10],[-3,5],[-2,4],[-2,7],[-2,6],[-15,41],[-19,37],[-12,26],[-37,72],[-40,67],[-10,15],[-7,11],[-15,20],[-15,22],[-4,2],[-7,4],[-9,5],[-3,0],[-2,0],[-8,2],[-9,1],[-7,1],[-1,0],[-3,0],[-2,-1],[-2,0],[-6,-2],[-3,-1],[-4,-3],[-3,-2],[-8,-5],[-29,-18],[-43,-23],[-7,-4],[-52,-26],[-4,0],[-3,0],[-18,-1],[-8,-1],[-10,2],[-8,2],[-4,0],[-4,1],[-15,4],[-5,2],[-4,1],[-5,1],[-3,1],[-6,12],[4,10],[1,5],[5,8],[3,5],[1,0],[3,0],[12,2],[8,1],[5,0],[9,1],[2,0],[2,0],[5,1],[2,0],[2,0],[6,0],[12,1],[4,1],[9,1],[26,3],[21,4],[4,0],[1,1],[3,0],[8,2],[9,4],[33,17],[2,1],[3,2],[10,7],[18,11],[9,5],[1,2],[2,2],[12,11],[2,2],[5,-1],[16,-2],[3,-3],[4,-3],[4,-3],[6,-6],[13,-13],[16,-16]],[[100973,407674],[205,-168],[16,-13],[2,2],[1,0],[2,3],[3,-2],[4,-2],[2,-1],[2,-5],[4,-11],[0,-8],[1,-15],[-2,-5],[0,-2],[-2,-4],[-1,-3],[-4,-9],[-9,-17],[-3,0],[-4,-1],[-8,-1],[-8,2],[-26,4],[-4,0],[-14,9],[-37,23],[-4,3],[-18,14],[-2,1],[-12,13],[-33,34],[-158,188],[-80,95],[187,-124]],[[79255,407207],[-22,-1],[-12,-1],[-4,3],[-6,6],[-136,200],[-25,37],[-17,33],[-1,4],[-1,3],[-2,15],[-1,56],[3,16],[12,64],[3,13],[21,102],[16,22],[30,41],[3,3],[5,7],[2,0],[3,0],[9,-1],[4,-1],[5,-1],[4,0],[10,-7],[4,-2],[3,-2],[5,-1],[37,-8],[44,-31],[9,-8],[9,-9],[20,-31],[8,-12],[30,-51],[12,-30],[12,-30],[1,-9],[1,-6],[-1,-22],[-1,-13],[-2,-17],[-35,-205],[-25,-100],[-3,-4],[-1,-1],[-5,-7],[-3,-4],[-3,-2],[-10,-4],[-3,-1],[-1,-1],[-5,-2]],[[78507,408071],[-11,-14],[-23,20],[-1,12],[-49,352],[3,16],[3,3],[3,3],[2,3],[1,0],[32,10],[11,1],[33,-39],[25,-30],[3,-16],[9,-46],[-1,-103],[0,-68],[-7,-39],[-33,-65]],[[100491,408357],[-3,-9],[-8,0],[-2,1],[-2,0],[-195,156],[-7,34],[-4,15],[88,-28],[4,-2],[4,-3],[8,-5],[7,-4],[4,-2],[7,-8],[24,-24],[3,-4],[1,-1],[3,-4],[22,-26],[8,-9],[15,-19],[19,-23],[2,-12],[2,-7],[0,-8],[0,-6],[0,-2]],[[78340,409776],[-24,-13],[-98,-49],[-4,2],[-3,1],[-2,17],[-6,53],[1,14],[0,7],[2,13],[1,13],[1,4],[0,4],[3,14],[2,7],[1,2],[2,3],[6,9],[6,10],[1,1],[2,2],[6,7],[1,1],[4,2],[9,4],[2,-1],[2,-1],[8,-3],[2,-1],[2,-1],[62,-67],[15,-17],[5,-15],[1,-4],[0,-4],[0,-8],[-3,-2],[-6,-4],[-1,0]],[[93512,410052],[-28,-11],[-33,-14],[-8,3],[-16,4],[-4,2],[-8,5],[-4,2],[-12,8],[-1,1],[-3,2],[-3,5],[-17,27],[-6,11],[-47,148],[-4,38],[-3,24],[-1,9],[-1,9],[8,27],[1,5],[0,2],[2,6],[3,6],[1,1],[5,10],[8,14],[4,8],[1,1],[2,5],[4,4],[12,16],[5,7],[1,1],[6,8],[7,9],[4,2],[6,4],[2,1],[24,12],[2,1],[2,1],[5,0],[4,-1],[2,0],[3,-1],[27,-5],[2,-2],[6,-5],[16,-15],[2,-1],[3,-2],[4,-4],[2,-6],[7,-16],[7,-18],[5,-12],[0,-1],[6,-14],[27,-95],[4,-13],[11,-45],[8,-54],[4,-28],[0,-1],[-2,-14],[-2,-9],[0,-6],[-7,-13],[-3,-7],[-10,-8],[-1,-1],[-10,-7],[-27,-17],[-4,-3]],[[104085,410289],[-1,0],[-2,0],[-6,13],[3,17],[2,17],[21,156],[10,53],[15,89],[12,55],[5,23],[42,138],[26,85],[3,2],[7,5],[3,-9],[1,-5],[1,-6],[-1,-26],[-1,-5],[0,-2],[0,-5],[-2,-8],[-1,-7],[-3,-15],[-117,-537],[-5,-14],[-3,-11],[-2,-3],[-7,0]],[[95508,410929],[322,-1416],[1,-6],[0,-2],[1,-8],[2,-11],[2,-13],[1,-8],[1,-6],[1,-12],[1,-7],[0,-8],[1,-6],[0,-5],[0,-2],[0,-3],[-1,-5],[0,-3],[-1,-4],[-1,0],[-6,0],[-2,4],[-1,1],[-97,197],[-29,68],[-9,44],[-25,126],[-98,603],[-38,49],[-253,320],[-6,-8],[-7,-9],[-3,0],[-1,0],[-6,0],[0,7],[1,12],[6,16],[5,13],[3,6],[3,8],[3,8],[6,6],[9,11],[4,4],[1,0],[3,4],[19,17],[19,18],[45,37],[16,13],[7,2],[1,1],[7,2],[8,3],[13,3],[4,1],[13,3],[7,1],[9,-3],[8,-2],[4,-2],[24,-52],[3,-7]],[[110821,411262],[-114,-54],[-22,8],[-7,3],[-3,6],[-33,64],[-3,6],[-4,13],[-2,10],[-1,2],[0,9],[0,28],[1,8],[2,17],[0,6],[1,3],[2,14],[1,12],[1,1],[9,13],[3,5],[3,5],[4,3],[7,6],[3,4],[24,14],[31,18],[3,1],[0,1],[13,7],[2,1],[73,-3],[4,-1],[1,0],[8,-2],[5,-1],[3,0],[5,-1],[3,-4],[4,-4],[11,-11],[1,-7],[0,-1],[0,-2],[2,-13],[0,-8],[1,-19],[1,-18],[-1,-7],[-6,-20],[-1,-6],[-27,-86],[-5,-13],[-2,-4],[-1,-3]],[[104471,411465],[-49,-72],[-36,-54],[-5,10],[-1,2],[0,1],[1,6],[1,7],[2,8],[3,9],[2,6],[37,113],[2,7],[3,8],[98,131],[2,3],[17,8],[0,-4],[1,-4],[1,-3],[1,-5],[-2,-25],[-1,-8],[0,-4],[-1,-5],[-1,-9],[-2,-5],[-3,-6],[-70,-115]],[[104741,411458],[-4,-3],[-16,26],[-89,143],[0,9],[0,9],[0,19],[0,9],[6,10],[3,5],[5,8],[34,-7],[17,-4],[3,-3],[4,-3],[4,-2],[1,-1],[3,-2],[4,-3],[3,-2],[1,-1],[2,-2],[1,-3],[3,-5],[6,-23],[26,-100],[-7,-42],[-1,-9],[-1,-9],[-2,-8],[-3,-3],[-3,-3]],[[88203,412048],[-3,-3],[-8,-7],[-4,2],[-2,1],[-2,1],[-4,2],[-14,7],[-2,1],[-4,4],[-7,9],[-8,9],[-6,6],[-21,24],[-5,16],[-12,49],[-2,8],[-1,9],[-3,28],[0,4],[26,200],[13,-17],[36,-48],[86,-202],[-1,-4],[0,-3],[-1,-6],[-1,-1],[-2,-15],[-9,-20],[-7,-14],[-2,-5],[-1,-1],[-6,-14],[-4,-3],[-13,-12],[-6,-5]],[[96954,412457],[115,-656],[-272,779],[3,3],[35,31],[5,1],[4,1],[3,1],[1,0],[8,-2],[8,-3],[2,-1],[5,-1],[4,-4],[23,-17],[34,-28],[16,-78],[4,-18],[2,-8]],[[98239,412703],[-7,-9],[-2,2],[-1,2],[-8,7],[-27,25],[-4,16],[-6,28],[-4,20],[0,9],[0,19],[1,5],[0,5],[0,9],[1,3],[1,4],[5,15],[5,15],[1,1],[3,3],[3,4],[3,3],[8,10],[4,1],[3,1],[1,0],[8,2],[3,-1],[1,-1],[8,-5],[7,-5],[4,-5],[6,-10],[3,-5],[2,-8],[1,-5],[2,-12],[5,-26],[1,-9],[2,-7],[0,-2],[0,-9],[0,-18],[0,-5],[0,-4],[-15,-32],[-5,-12],[-2,-3],[-1,-3],[-3,-3],[-1,-1],[-1,-2],[-5,-7]],[[95952,414347],[22,-25],[-72,10],[-52,8],[-23,6],[-24,7],[-4,3],[-6,3],[-51,33],[-3,4],[-6,5],[-8,7],[-11,20],[-30,52],[-4,8],[-1,4],[4,14],[1,3],[1,3],[8,3],[259,-168]],[[93880,414892],[0,-1],[-2,-8],[-57,388],[3,2],[1,0],[15,8],[8,4],[55,-40],[7,-10],[3,-4],[4,-5],[2,-8],[1,-4],[0,-3],[-5,-72],[-7,-93],[-13,-73],[-10,-56],[-4,-17],[-1,-8]],[[87112,417783],[-4,-2],[-11,-6],[-11,2],[-3,0],[-68,113],[-70,115],[-4,10],[0,1],[5,15],[3,5],[0,2],[4,7],[4,0],[9,-1],[1,0],[8,0],[7,0],[11,-1],[50,-27],[1,-1],[2,-1],[11,-6],[25,-14],[1,0],[12,-7],[7,-9],[7,-9],[3,-4],[11,-14],[2,-7],[4,-17],[3,-13],[4,-15],[-2,-37],[-1,-17],[0,-1],[0,-10],[-1,-5],[-1,-2],[-1,-5],[-3,-11],[-2,-7],[-2,-8],[-3,-4],[-2,-3],[-3,-4],[-1,-1],[-2,-1]],[[96557,418872],[-4,-1],[0,-1],[-44,58],[-1,8],[-7,50],[-2,17],[0,4],[1,5],[2,48],[2,42],[1,8],[0,10],[67,208],[21,67],[44,36],[2,1],[-15,-149],[-33,-341],[-1,-9],[-1,-3],[-1,-6],[-6,-11],[-18,-34],[-3,-6],[-2,0],[-2,-1]],[[96833,419523],[-80,-2],[-57,-2],[-10,12],[2,15],[1,4],[1,12],[1,7],[3,7],[2,6],[3,8],[1,3],[2,4],[56,43],[8,0],[14,1],[11,1],[5,0],[14,-10],[3,-3],[21,-74],[-1,-32]],[[93832,420397],[-3,0],[-6,0],[-117,148],[-3,6],[-4,11],[5,6],[5,4],[7,7],[5,1],[4,2],[9,2],[4,1],[4,2],[4,1],[4,1],[4,-2],[7,-2],[1,0],[47,-16],[12,-24],[5,-12],[6,-12],[1,-3],[2,-3],[0,-46],[1,-34],[0,-3],[-1,-5],[-2,-15],[-1,-15]],[[97576,420644],[-104,-133],[-74,-96],[32,286],[55,38],[30,22],[27,13],[38,18],[6,-1],[5,-1],[6,-1],[2,0],[5,-35],[1,-6],[-2,-18],[-3,-27],[-4,-9],[-3,-11],[-2,-6],[-3,-7],[-10,-23],[-2,-3]],[[94882,420931],[-4,-3],[-158,151],[13,24],[38,28],[8,1],[5,1],[5,1],[18,3],[4,1],[3,-1],[6,-2],[1,0],[3,-1],[1,0],[50,-50],[1,-7],[2,-9],[5,-25],[1,-8],[11,-58],[-1,-5],[-2,-11],[-2,-10],[-2,-13],[-6,-7]],[[114961,443591],[-7,-6],[-52,-55],[-9,9],[-11,10],[-49,53],[-17,23],[-8,18],[-6,14],[-4,25],[-3,10],[6,540],[1,7],[1,4],[2,10],[1,7],[6,8],[7,4],[8,4],[1,0],[10,3],[27,-15],[21,-22],[29,-30],[29,-43],[29,-42],[4,-11],[36,-114],[5,-134],[-1,-9],[-1,-5],[0,-3],[0,-4],[-10,-78],[-1,-12],[-39,-150],[-1,-2],[-2,-6],[-1,-5],[-1,-3]],[[114421,446600],[-5,-5],[-7,3],[-3,2],[-13,16],[-18,22],[-2,7],[-1,4],[-6,18],[-8,27],[-5,19],[-18,78],[-2,9],[-1,3],[-3,14],[-1,9],[0,1],[-1,6],[-1,19],[0,3],[10,91],[6,10],[5,9],[17,19],[3,3],[2,0],[1,-1],[1,0],[1,-4],[0,-3],[0,-6],[0,-17],[41,-236],[14,-104],[-4,-10],[-2,-6]],[[113744,446980],[-147,-302],[-32,118],[-20,75],[14,146],[14,153],[1,13],[1,4],[0,3],[1,7],[0,2],[14,27],[24,49],[39,47],[43,23],[4,-2],[4,-1],[4,-2],[2,-3],[2,-4],[0,-5],[1,-3],[0,-2],[14,-38],[20,-53],[-2,-158],[-1,-94]],[[114087,447828],[-355,-306],[-130,69],[-22,23],[-11,17],[-62,97],[-38,178],[-9,80],[-6,61],[12,35],[9,25],[31,38],[22,27],[172,146],[1,3],[4,10],[3,4],[5,5],[5,7],[5,7],[3,2],[0,1],[41,48],[21,24],[72,2],[3,8],[2,8],[3,5],[1,2],[1,2],[6,8],[3,3],[2,2],[13,-1],[51,-7],[13,-16],[64,-71],[196,-221],[-66,-162],[-65,-163]],[[111018,449916],[-56,-88],[-41,48],[-31,44],[-5,11],[-15,29],[-41,100],[-30,74],[-15,37],[-8,19],[-17,123],[86,216],[11,15],[16,22],[34,25],[8,6],[1,-1],[20,-13],[9,-16],[9,-14],[58,-71],[25,-109],[15,-68],[-8,-108],[-22,-271],[-1,-5],[-1,-3],[-1,-2]],[[112291,452874],[-8,-1],[-4,4],[-15,14],[-3,4],[-4,5],[-7,10],[-6,7],[-38,64],[-9,18],[-3,7],[-1,8],[0,10],[0,23],[0,23],[0,7],[0,2],[2,16],[2,32],[1,1],[0,8],[1,3],[0,5],[1,8],[0,2],[1,7],[5,41],[38,96],[10,25],[35,32],[17,4],[46,9],[3,0],[1,0],[4,0],[3,-2],[4,-3],[4,-3],[26,-16],[12,-7],[43,-36],[38,-32],[11,-33],[28,-151],[4,-27],[1,-9],[-4,-56],[-1,-21],[-7,-27],[-5,-9],[-2,-4],[0,-1],[-95,-24],[-129,-33]],[[111093,452974],[-445,-249],[-4,3],[-4,3],[-9,13],[-2,3],[-1,2],[-34,85],[-37,90],[-24,141],[-30,176],[-1,8],[-6,41],[-2,16],[-6,46],[-1,9],[-3,28],[-1,4],[0,5],[-1,9],[-1,16],[-2,21],[1,9],[1,16],[1,11],[15,144],[19,49],[6,15],[44,41],[21,15],[21,15],[67,37],[6,2],[1,0],[0,1],[3,1],[8,-4],[2,-5],[2,-7],[1,-3],[1,-4],[281,-226],[6,-32],[107,-545]],[[109187,458228],[-14,-18],[-10,2],[-14,2],[-2,3],[-2,2],[-13,18],[-9,24],[-3,8],[-2,16],[-3,25],[-4,61],[0,8],[-3,31],[27,231],[11,21],[6,13],[29,20],[62,44],[59,41],[4,3],[4,2],[4,-2],[4,-2],[3,-7],[3,-7],[11,-31],[5,-13],[0,-50],[-138,-401],[-9,-27],[-6,-17]],[[109508,458910],[-38,-17],[-2,2],[-6,7],[-3,4],[-14,18],[-6,9],[2,5],[5,12],[5,9],[0,1],[2,3],[64,91],[29,41],[2,0],[3,-1],[2,0],[2,0],[1,-1],[12,-19],[8,-16],[4,-7],[1,-7],[-2,-8],[-2,-7],[-23,-48],[-23,-49],[-2,-3],[-1,-2],[-4,-6],[-2,-2],[-14,-9]],[[395411,186628],[156,-37],[147,-35],[2037,-495],[132,-32],[54,-62],[432,-500],[570,-480],[32,-17],[305,-165],[486,-893],[333,-611],[40,-118],[53,-156],[202,-754],[-45,-150],[-143,-480],[-1,-4],[-1,-3],[-11,-27],[-71,-61],[-160,-55],[-124,-43],[-134,129],[-13,13],[-319,316],[-226,513],[-756,1274],[-601,542],[-406,366],[-912,513],[-732,690],[-48,45],[-26,36],[-397,533],[-89,-10],[-686,-82],[-3,-16],[-1,0],[-1,-7],[-21,-16],[-19,-15],[-4,-3],[-8,-6],[-4,-1],[-2,-1],[-3,-1],[-1,1],[-6,8],[-20,67],[8,48],[1,6],[4,20],[24,117],[7,26],[11,45],[116,38],[105,35],[10,3],[11,2],[3,1],[2,0],[12,3],[2,1],[3,0],[696,-55]],[[424477,154467],[37,-6],[25,-4],[6,-1],[14,-3],[17,-11],[-7,-101],[-9,-75],[-9,-12],[-6,-8],[-5,0],[-7,0],[-3,1],[-5,0],[-7,0],[-11,1],[-5,0],[-4,1],[-131,36],[-63,19],[1,98],[0,16],[1,16],[0,8],[12,10],[8,7],[4,3],[1,1],[3,3],[7,6],[26,5],[4,0],[8,1],[9,2],[5,-1],[4,0],[32,-4],[48,-8]],[[424042,154566],[2,-1],[3,-2],[42,-26],[38,-260],[-53,15],[-44,12],[-98,45],[-12,16],[-3,4],[-8,10],[-68,90],[-2,3],[-2,3],[-1,24],[0,5],[62,32],[39,21],[12,1],[41,3],[4,1],[48,4]],[[426209,156655],[-33,-20],[-4,-2],[-4,-3],[-56,24],[-19,7],[-36,22],[-25,28],[-4,5],[-1,3],[-96,165],[20,41],[157,145],[38,-8],[23,-5],[136,-104],[3,-3],[1,-1],[61,-66],[-1,-18],[-1,-5],[0,-13],[-3,-36],[-108,-128],[-3,-2],[-6,-3],[-34,-21],[-1,0],[-4,-2]],[[426677,160713],[212,-9],[47,-2],[88,-11],[89,-79],[3,-12],[1,-6],[0,-13],[0,-4],[1,-27],[0,-5],[0,-4],[-7,-302],[-45,-149],[-180,65],[-18,6],[-13,7],[-39,21],[-52,30],[-86,50],[-68,43],[-2,2],[-47,62],[-5,19],[-25,85],[48,199],[25,14],[4,2],[5,3],[6,3],[2,2],[4,2],[20,3],[32,5]],[[426803,164246],[-1,-8],[-1,-8],[-4,-5],[-14,-19],[-14,-19],[-7,-9],[-109,-53],[-27,-10],[-2,-1],[-71,-6],[-68,37],[-24,14],[-4,3],[-5,3],[-4,3],[-33,23],[-15,9],[-2,2],[-13,40],[-3,8],[-15,53],[-12,58],[48,67],[79,106],[3,2],[6,4],[4,-3],[69,-44],[23,-15],[216,-232]],[[425907,168567],[2,-2],[2,-2],[4,-3],[4,-3],[21,-24],[1,-1],[2,-4],[17,-34],[5,-15],[5,-15],[2,-8],[11,-42],[-1,-12],[-3,-23],[-1,-9],[-102,-18],[-115,134],[-3,4],[0,2],[0,6],[1,13],[0,2],[14,51],[3,1],[1,0],[33,10],[97,-8]],[[424575,170486],[-96,36],[-20,20],[-11,11],[-10,102],[0,2],[2,5],[3,13],[7,10],[15,22],[10,16],[3,5],[74,51],[1,1],[2,0],[2,0],[24,-1],[3,0],[2,0],[2,-1],[1,-1],[16,-7],[16,-9],[67,-35],[4,-2],[9,-7],[24,-19],[3,-2],[2,-1],[3,-6],[26,-42],[14,-24],[1,-3],[5,-18],[4,-14],[-1,-1],[-3,-3],[-4,-4],[-5,-4],[-16,-14],[-33,-29],[-146,-47]],[[423512,173136],[2,-1],[2,-2],[3,-6],[10,-20],[4,-9],[6,-12],[0,-10],[1,-7],[0,-4],[0,-4],[-1,-2],[-2,-4],[-7,-18],[-82,-132],[-10,-14],[-2,-3],[-1,-1],[-9,1],[-9,2],[-14,2],[-8,1],[-86,156],[4,7],[40,70],[30,37],[7,5],[18,15],[63,28],[41,-75]],[[397011,183876],[65,-44],[10,-11],[5,-4],[7,-8],[4,-4],[46,-66],[14,-19],[1,-6],[1,-5],[1,-7],[-1,-3],[-1,-3],[-6,-13],[-72,-47],[-10,-7],[-7,-4],[-1,0],[-10,-6],[-7,0],[-6,0],[-10,0],[-8,4],[-16,5],[-19,7],[-1,1],[-3,1],[-8,9],[-88,148],[3,12],[1,5],[1,5],[9,35],[1,5],[1,4],[5,1],[78,21],[4,-1],[4,-1],[12,-3],[1,-1]],[[545275,978996],[441,-71],[172,-28],[300,-510],[368,-64],[405,-69],[31,15],[42,21],[106,45],[95,23],[41,10],[203,-20],[9,-1],[657,-151],[397,-155],[390,-154],[195,-116],[196,-117],[4,-2],[9,-6],[195,-131],[7,-4],[2,-1],[418,-338],[6,-5],[2,-2],[8,-7],[60,-55],[78,-70],[4,-3],[8,-21],[3,-7],[2,-6],[4,-8],[3,-9],[5,-12],[17,-42],[-4,-4],[-112,-105],[-8,-8],[-13,-7],[-1,-1],[-3,-1],[-4,-2],[0,-1],[-61,-34],[-17,-9],[-646,-440],[-218,-194],[-140,-124],[6,-39],[126,-878],[89,-168],[440,194],[162,102],[13,8],[73,84],[160,183],[95,317],[44,258],[22,130],[2,10],[328,189],[17,10],[12,4],[61,20],[2,1],[6,2],[5,0],[8,0],[123,4],[2,0],[3,-1],[69,-16],[32,-8],[7,-2],[2,0],[820,-295],[8,-3],[10,-4],[153,-64],[4,-2],[4,-1],[5,-2],[4,-3],[36,-27],[56,-41],[80,-59],[350,-617],[71,-215],[14,-44],[-150,-431],[-57,-151],[-4,-2],[-37,-22],[-30,-17],[-9,-5],[-7,-4],[-35,-13],[-35,-13],[-101,-37],[-4,-1],[90,-169],[394,-411],[2,-3],[2,-1],[30,-32],[16,-15],[4,-2],[9,-4],[104,-47],[517,-53],[5,1],[4,1],[2,0],[2,1],[257,56],[7,1],[1,0],[26,6],[4,4],[5,5],[3,3],[40,41],[5,5],[3,3],[2,7],[507,17],[745,-116],[176,-76],[209,-489],[108,-252],[631,-175],[1063,-295],[2074,-463],[5,0],[31,2],[7,1],[10,0],[9,1],[4,-1],[13,-2],[96,-14],[5,0],[3,-1],[1,0],[125,-18],[80,-12],[156,-60],[59,-22],[121,-122],[-45,-219],[-40,-193],[-246,-288],[-26,-31],[-777,-195],[-4,0],[-47,-5],[-4,-1],[-4,0],[-9,-1],[-4,1],[-31,9],[-4,1],[-57,16],[-57,23],[-55,22],[-153,62],[-89,37],[-379,126],[-802,-115],[-201,-35],[-175,-31],[-1689,-331],[-244,-79],[-297,-97],[-747,-606],[-539,-81],[-321,-149],[12,-1081],[21,-400],[-915,-864],[-124,25],[-6,1],[-3,0],[-9,0],[-50,1],[-75,1],[-3,0],[-1,0],[-398,-76],[-111,-140],[-3,-133],[-7,-361],[-4,-390],[59,-922],[-241,-1051],[-257,-234],[-578,14],[-265,17],[-455,-21],[-22,-1],[-5,-1],[-73,-19],[-111,-193],[-19,-32],[-179,-317],[-169,-298],[-67,-132],[-141,-280],[-503,-1090],[-127,-276],[-241,-577],[-253,-608],[-106,-469],[147,-62],[7,-3],[1,-1],[9,-4],[74,-67],[192,-175],[5,-5],[3,-4],[2,-2],[5,-6],[4,-4],[0,-18],[0,-9],[0,-11],[1,-16],[-8,-10],[-28,-43],[-4,-6],[-228,-259],[-282,-300],[-350,-148],[-12,-5],[-38,-14],[-120,-37],[-6,-1],[-3,-1],[-14,-2],[-151,-22],[-41,-6],[-5,-1],[-4,0],[-7,1],[-2,0],[-13,0],[-4,1],[-8,0],[-48,3],[-150,11],[-53,5],[-46,5],[-9,1],[-5,0],[-517,142],[-173,321],[-361,425],[-917,451],[-887,436],[-68,12],[-40,7],[-5,0],[-29,24],[-2,2],[-2,2],[3,8],[17,56],[20,63],[12,10],[46,43],[9,3],[96,42],[5,2],[615,186],[58,17],[39,10],[307,76],[282,68],[8,2],[19,3],[83,18],[5,1],[4,0],[30,2],[5,0],[98,-5],[5,-1],[4,-1],[34,-9],[55,-15],[2,-1],[2,0],[5,-1],[0,-1],[4,-2],[78,-51],[39,-25],[3,-5],[7,-15],[8,-16],[15,-30],[636,201],[-264,163],[-28,17],[-13,4],[-827,237],[-311,-141],[-173,-79],[-627,-79],[-164,-8],[-350,-9],[-158,0],[-94,9],[-77,18],[-237,57],[-100,37],[-4,1],[-4,2],[-5,2],[-21,7],[-1,1],[-4,1],[-52,19],[-37,14],[-89,33],[-22,76],[-16,52],[-182,338],[-54,101],[-723,260],[-8,3],[-220,63],[-6,1],[-3,1],[-4,2],[-18,2],[-5,0],[-3,1],[-1,0],[-4,0],[-3,1],[-2,0],[-48,5],[-71,9],[-5,0],[-4,0],[-101,-4],[-4,0],[-9,-1],[-192,-42],[-24,-6],[-570,384],[-569,655],[-176,202],[-49,86],[-305,534],[16,181],[6,3],[3,2],[88,43],[126,62],[5,2],[4,1],[13,4],[12,4],[4,1],[575,164],[11,4],[15,4],[9,1],[8,1],[1,0],[58,6],[107,10],[4,1],[4,-1],[1,0],[137,-6],[6,0],[3,0],[349,-52],[1508,-85],[1691,-129],[549,-221],[693,-279],[107,-38],[9,-3],[227,-65],[4,1],[3,0],[16,2],[2,8],[4,13],[3,7],[2,8],[56,214],[1,5],[-64,40],[-788,401],[-478,144],[-1160,149],[-186,18],[-222,21],[-169,-2],[-308,-4],[-270,52],[-148,29],[-232,140],[-66,64],[-37,36],[67,20],[247,75],[744,175],[345,81],[308,54],[121,22],[354,47],[2055,276],[736,49],[802,54],[106,123],[238,399],[132,222],[-2,0],[-3,0],[-217,-2],[-4,0],[-5,0],[-22,-4],[-45,-6],[-9,-1],[-9,-2],[-304,-94],[-4,-2],[-60,-26],[-9,-4],[-3,-1],[-6,-3],[-3,-1],[-1,-1],[-114,-76],[-1,0],[-20,-14],[-9,-6],[-7,-13],[-6,-13],[-10,-19],[-3,-7],[-1080,-147],[-31,-5],[-1084,-147],[-4,0],[-101,-1],[-9,1],[-324,30],[-3,0],[-2,0],[-25,7],[-147,40],[-5,1],[-4,2],[-13,6],[-987,-155],[-1122,-176],[-572,-86],[-786,-119],[-1368,-167],[-6,-1],[-353,33],[-167,429],[-305,786],[-6,34],[-1,9],[-9,46],[-5,31],[-3,18],[6,214],[7,228],[27,144],[8,46],[164,51],[190,59],[155,48],[1,0],[3,0],[84,7],[96,7],[6,1],[2,0],[9,0],[9,1],[17,-1],[10,0],[62,-4],[119,-6],[4,0],[1,0],[1,0],[8,-1],[20,-4],[11,-2],[40,-8],[503,17],[1151,45],[807,31],[358,85],[638,466],[374,274],[549,364],[17,7],[5,2],[4,2],[504,200],[20,8],[11,4],[2,0],[2,1],[132,18],[9,1],[615,74],[9,1],[7,0],[11,1],[18,2],[9,1],[41,3],[17,2],[5,0],[3,0],[5,-1],[5,-1],[4,-1],[4,0],[1,0],[1,-1],[3,0],[53,-8],[47,-7],[45,-7],[13,-4],[117,-21],[176,-31],[288,-36],[224,-25],[204,-13],[276,-17],[17,1],[1,0],[6,1],[384,26],[3,0],[1,0],[5,0],[22,4],[110,16],[837,301],[439,157],[-183,152],[-4,0],[-57,-2],[-55,-2],[-112,-28],[-488,-122],[-474,-98],[-183,-38],[-608,154],[-323,81],[-243,102],[677,744],[318,219],[299,137],[111,50],[37,175],[-753,271],[-4,1],[-9,1],[-30,3],[-24,3],[-18,-8],[-59,-24],[-13,-6],[-9,-3],[-7,-8],[-7,-7],[-85,-86],[-20,-20],[-4,-4],[-87,-149],[-124,-214],[-19,-109],[-18,-105],[-150,-153],[-35,-36],[-64,-60],[-75,-41],[-574,-262],[-298,-136],[-923,-151],[-367,-7],[-2,0],[-2,1],[-34,7],[-99,20],[-3,0],[-6,1],[-151,95],[-187,117],[-4,3],[0,1],[-38,40],[-8,8],[-198,455],[123,157],[43,2],[6,1],[21,1],[6,1],[2,0],[247,28],[14,2],[8,1],[186,88],[58,165],[26,77],[50,365],[-73,358],[-37,183],[-5,8],[-2,3],[-18,27],[-6,9],[-5,7],[-3,5],[-80,27],[-123,42],[-69,4],[-5,0],[-2,0],[-6,-1],[-9,-1],[-6,-1],[-4,-1],[-4,0],[-41,-23],[-76,-44],[-67,-101],[-186,-284],[-27,-181],[-8,-53],[-976,-381],[3,14],[7,32],[8,109],[3,38],[-47,176],[0,2],[-38,21],[-21,12],[-63,35],[-4,2],[0,1],[-106,-23],[-67,-15],[-526,-274],[-124,-103],[50,-246],[102,-493],[79,-360],[24,-108],[-578,-443],[-1392,-1048],[-7,-4],[-1,0],[-13,-6],[-22,-11],[-4,-3],[-18,-3],[-271,-49],[-4,-1],[-9,-1],[-230,-13],[-1590,71],[-1424,1107],[-229,206],[-107,97],[-189,217],[-2,25],[0,4],[0,5],[52,20],[21,8],[5,3],[7,2],[6,3],[5,2],[4,0],[8,1],[6,0],[141,15],[69,7],[4,0],[5,1],[4,0],[357,14],[36,2],[5,-1],[161,-10],[22,-1],[5,-1],[4,0],[9,-1],[9,-1],[300,169],[-890,66],[-323,24],[-283,122],[-434,188],[-811,403],[-669,462],[-18,31],[-2,734],[-628,419],[-29,45],[-7,12],[-46,74],[3,8],[2,6],[2,6],[6,15],[176,13],[200,14],[4,0],[5,0],[87,-1],[1,0],[4,0],[4,0],[9,-1],[4,0],[41,-6],[4,0],[81,-11],[40,-5],[103,-13],[81,-11],[382,-83],[150,-47],[70,-21],[329,-109],[437,-99],[355,-80],[78,4],[9,1],[1,0],[141,8],[5,0],[314,72],[5,20],[16,69],[-20,108],[-35,190],[-4,3],[-45,37],[-28,23],[-8,7],[-8,6],[-34,28],[-5,5],[-9,7],[-7,6],[-1,0],[-3,3],[-3,1],[-2,0],[-84,18],[-10,2],[-9,2],[-3,0],[-5,0],[-186,8],[-4,0],[-6,-2],[-8,-2],[-76,-25],[-24,-8],[-18,-6],[-7,-13],[-1,-4],[-1,-1],[-5,-11],[-677,26],[-463,251],[-422,228],[490,454],[539,311],[33,99],[60,299],[-183,142],[-224,-17],[-593,-47],[-245,-79],[-93,-30],[43,-42],[94,-96],[121,-152],[3,-5],[2,-6],[3,-10],[11,-47],[6,-19],[2,-9],[-18,-45],[-34,-84],[-8,-15],[-15,-26],[-2,-3],[-2,-3],[-7,-12],[-3,-5],[-3,-5],[-4,-7],[-175,-100],[-81,-45],[-381,-166],[-9,-1],[-9,-1],[-19,-3],[-50,-8],[-3,0],[-1,-1],[-2,0],[-2,0],[-211,-10],[-18,-1],[-9,1],[-164,6],[-3,0],[-2,0],[-97,20],[-79,15],[-7,8],[-12,12],[-3,3],[-3,3],[-1,1],[-490,995],[-625,1269],[-61,346],[970,469],[710,812],[548,194],[314,100],[122,26],[202,42],[13,-1],[124,-10],[9,-12],[6,-10],[29,-43],[18,-27],[18,-26],[3,-7],[77,-115],[408,-616],[506,-193],[23,-1],[168,-7],[5,0],[3,0],[6,0],[8,2],[4,2],[34,10],[10,3],[12,4],[2,2],[2,1],[5,4],[11,8],[8,6],[6,15],[27,69],[17,45],[6,14],[1,5],[1,3],[-7,9],[-202,241],[-4,5],[211,47],[476,108],[495,107],[1650,360],[1234,200],[1,0],[7,0],[3,1],[13,1],[2,0],[2,0],[2,0],[2,0],[3,1],[2,0],[72,6],[10,1],[12,-4],[174,-49],[38,-31],[129,-105],[37,-58],[66,-102],[31,-103],[2,-120],[0,-31],[-213,-227],[-189,-102],[-290,-155],[-127,-6],[-759,58],[-302,23],[-4,0],[-4,0],[-9,-1],[-19,0],[-2,0],[-4,0],[-45,-2],[-4,0],[-482,-54],[-1437,-641],[568,-152],[305,59],[475,93],[151,20],[229,31],[3,0],[2,0],[4,0],[9,0],[214,1],[20,1],[3,0],[176,-37],[359,-73],[8,-3],[20,-7],[28,-9],[14,-4],[0,-32],[0,-16],[0,-4],[0,-5],[-132,-461],[58,-28],[992,-489],[97,130],[246,330],[292,756],[119,115],[391,378],[381,358],[119,103],[1,2],[7,6],[8,7],[9,7],[8,7],[151,131],[8,7],[85,34],[5,2],[12,5],[6,1],[3,0],[71,8],[16,2],[4,0],[313,-54],[1,0],[8,-2],[4,-1],[5,-1],[27,-7],[127,-32],[7,-1],[4,-1],[6,-3],[7,-3],[1,-1],[3,-1],[5,-2],[190,-84],[28,-13],[11,-4],[0,-1],[4,-2],[6,-4],[3,-2],[111,-71],[2,-1],[6,-4],[17,-11],[68,-44],[5,-2],[2,-2],[32,-20],[2,-3],[2,-1],[25,-24],[19,-18],[8,-8],[70,-70],[87,-86],[224,-233],[243,-251],[1169,-1967],[1184,-1366],[449,-518],[291,-215],[70,-52],[26,-12],[9,-4],[21,-9],[118,-55],[3,-1],[2,-1],[12,-5],[25,-10],[9,-3],[13,-5],[3,-2],[1,0],[1,0],[4,0],[110,7],[44,3],[9,1],[198,22],[1,1],[3,0],[-6,16],[-2,5],[-8,18],[-26,64],[-1,2],[-1,5],[-609,775],[-783,1297],[-214,587],[-640,1761],[-83,260],[-40,124],[-17,91],[-18,92],[-13,81],[-29,283],[15,43],[44,110],[121,53],[5,2],[18,1],[129,7],[48,34],[441,318],[129,366],[9,27],[8,8],[4,4],[4,4],[50,50],[2,3],[2,1],[118,70],[227,121],[173,92],[132,33],[96,15],[3,-1],[1,0],[4,-1],[1,0],[38,-6],[15,-5],[32,-10]],[[477738,926395],[58,-3],[66,-4],[2,-7],[54,-165],[-31,-274],[-33,-296],[-4,-17],[-18,-75],[-1,-3],[-1,-5],[-75,-46],[-65,-40],[-13,-8],[-4,-2],[-990,-181],[-556,-282],[-668,-339],[559,642],[1133,922],[414,155],[48,18],[1,0],[4,0],[6,0],[7,1],[36,3],[62,5],[5,1],[4,0]],[[553196,946234],[51,-24],[24,-17],[11,-8],[101,-76],[170,-128],[-52,-291],[-49,-67],[-173,-242],[-32,-43],[-32,-32],[-90,-62],[-29,-19],[-78,-24],[-4,1],[-38,11],[-18,5],[-2,1],[-6,2],[-358,304],[-116,99],[-149,153],[-184,247],[41,45],[61,65],[5,2],[17,9],[30,15],[6,3],[2,1],[86,18],[312,24],[41,4],[162,17],[54,8],[79,13],[4,1],[0,1],[2,0],[7,0],[117,6],[27,-22]],[[570096,958334],[-313,-310],[-137,-202],[-118,-173],[14,-35],[1,-2],[-104,-56],[-58,3],[-4,1],[-18,5],[-61,19],[-2,6],[-1,2],[-2,8],[-2,8],[49,102],[3,6],[26,51],[79,151],[268,283],[1003,869],[4,3],[117,76],[8,5],[96,38],[9,4],[12,5],[5,2],[5,0],[51,5],[38,3],[9,1],[2,-7],[0,-1],[0,-1],[2,-6],[4,-13],[0,-2],[-985,-848]],[[564485,967596],[-82,-40],[-4,-2],[-3,-2],[-5,-4],[-36,-25],[-29,-21],[-6,-5],[-6,-4],[-2,-2],[-2,-3],[-66,-96],[0,-9],[0,-4],[0,-5],[0,-10],[0,-25],[1,-21],[6,-80],[7,-93],[47,-47],[423,-420],[126,-96],[183,-140],[169,-122],[238,-172],[376,-183],[140,-68],[42,11],[312,86],[12,5],[15,5],[4,1],[1,0],[8,3],[9,2],[9,1],[153,25],[26,4],[5,1],[9,1],[196,26],[17,2],[4,1],[4,-1],[127,-30],[9,-2],[289,-82],[255,-73],[44,-52],[72,-86],[-363,-1038],[-2458,-1439],[-373,-215],[-734,-422],[-649,-321],[-5,1],[-4,2],[-7,2],[-2,1],[-58,19],[-159,54],[-5,2],[-18,18],[-21,21],[-67,66],[-3,7],[-2,5],[-2,5],[-1,1],[-5,11],[-2,5],[2,17],[8,60],[17,22],[17,22],[47,37],[33,26],[22,13],[38,23],[182,453],[176,614],[-58,109],[-176,330],[-74,63],[-318,189],[-212,15],[-510,-226],[-669,-297],[-2502,-471],[-59,-4],[-198,-13],[-330,-3],[-27,-1],[-111,258],[-40,304],[34,53],[96,146],[28,42],[33,50],[100,28],[4,2],[9,-1],[13,0],[5,0],[189,108],[446,256],[1011,1509],[-2,9],[0,4],[-1,4],[-7,35],[0,2],[-5,14],[-9,32],[-5,17],[-10,4],[-7,4],[-9,5],[-4,2],[-4,2],[-13,7],[-54,27],[-82,42],[-3,2],[-1,1],[-1,0],[-3,2],[-8,2],[-10,3],[-8,3],[-1,0],[-105,34],[-5,2],[-691,196],[-168,91],[-859,465],[1,8],[14,76],[10,41],[7,31],[9,21],[10,23],[4,4],[3,3],[24,21],[1,1],[3,2],[15,14],[199,57],[60,17],[153,44],[297,83],[753,176],[542,97],[422,74],[2387,92],[232,51],[368,80],[182,-33],[201,-36],[23,-11],[12,-4],[758,-610]],[[559634,970323],[41,41],[29,29],[330,62],[74,14],[5,0],[143,4],[9,0],[437,-149],[131,-45],[7,-3],[1,-1],[3,-1],[40,-18],[56,-25],[3,-2],[1,0],[2,-2],[6,-6],[149,-135],[3,-3],[1,0],[205,-322],[186,-290],[134,-290],[3,-7],[6,-15],[2,-7],[7,-16],[18,-48],[3,-6],[0,-1],[2,-19],[13,-120],[1,-3],[0,-6],[-24,-87],[-2,-7],[-1,0],[-180,-369],[-159,-89],[-55,-23],[-9,-4],[-8,-3],[-12,-5],[-1,-1],[-2928,-287],[-121,31],[-360,92],[-242,290],[-147,174],[-292,266],[-735,667],[1452,474],[418,149],[342,122],[765,31],[131,-16],[117,-15]],[[574873,970936],[46,-26],[43,-24],[-107,-139],[-3,-3],[-5,-4],[-28,-22],[-30,-24],[-9,-7],[-12,-9],[-4,-3],[-2,-1],[-2,-1],[-30,-15],[-48,-24],[-57,-14],[-311,-30],[-79,-8],[-386,210],[-260,141],[-69,83],[-50,72],[-59,85],[-7,13],[-16,34],[-41,85],[-3,6],[0,1],[-6,47],[-6,47],[-1,4],[0,4],[2,4],[4,10],[23,52],[16,34],[242,115],[2,-1],[2,0],[14,-1],[48,-3],[35,-2],[22,-2],[160,-62],[201,-263],[771,-359]],[[530444,971376],[60,-15],[246,-423],[85,-144],[463,-550],[7,-9],[248,-176],[748,-533],[8,-4],[61,-26],[57,-25],[4,-2],[318,-28],[12,-1],[15,-2],[313,-364],[112,-130],[78,-98],[169,-212],[303,-490],[-20,-56],[-1,-2],[-16,-24],[-20,-29],[-126,15],[-447,82],[-129,36],[-2,0],[-3,1],[-4,3],[-41,29],[-16,10],[-17,12],[-164,210],[-1613,1002],[-687,667],[-14,14],[-1158,1267],[-90,144],[-21,505],[40,16],[164,63],[440,-63],[121,-33],[215,-59],[4,-2],[2,-1],[3,-1],[3,-2],[1,-1],[126,-64],[135,-70],[155,-79],[2,-1],[7,-4],[13,-7],[22,-11],[-14,-15],[-1,-1],[-15,-17],[-4,-4],[-11,-1],[-7,0],[-3,0],[-1,0],[-105,-36],[-12,-6],[-52,-26],[-80,-63],[-17,-12],[20,-23],[72,-81],[47,-40],[12,-10]],[[579247,972443],[1,0],[8,5],[170,16],[162,15],[734,-51],[12,-1],[1764,-243],[-9,-137],[-629,-244],[-366,52],[-35,7],[-123,23],[-18,4],[-5,1],[-13,2],[-9,2],[-4,1],[-60,20],[-69,23],[-109,62],[-20,11],[-129,81],[-22,14],[-47,30],[-65,17],[-4,2],[-17,4],[-1,0],[-4,0],[-26,1],[-245,9],[-57,2],[-13,-2],[-5,0],[-94,-10],[-13,-1],[-397,-50],[-284,-36],[-937,-286],[34,92],[116,314],[810,246],[18,5]],[[583982,972734],[62,1],[13,0],[49,1],[8,-2],[13,-2],[42,-9],[9,-2],[98,-55],[-10,-12],[-2,-1],[-2,-2],[-354,-138],[-3,0],[-1,0],[-27,0],[-94,3],[-63,18],[-41,26],[-135,142],[2,7],[6,21],[4,14],[8,0],[302,-7],[116,-3]],[[556714,973384],[66,-5],[80,-6],[410,-97],[136,-33],[26,-8],[306,-96],[7,-2],[2,-1],[2,-1],[2,-3],[15,-18],[16,-18],[2,-3],[1,-2],[-3,-4],[-4,-4],[-33,-35],[-14,-15],[-11,-13],[-109,-54],[-149,-74],[-121,-24],[-23,-4],[-648,-115],[-26,-4],[-9,-1],[-273,-10],[-4,-1],[-379,132],[-165,97],[-49,224],[36,142],[21,84],[7,6],[19,16],[1,1],[3,2],[3,0],[1,0],[109,5],[749,-58]],[[555669,974506],[30,-17],[99,-60],[31,-19],[46,-56],[15,-18],[3,-5],[18,-34],[3,-6],[1,-2],[2,-3],[-5,-15],[0,-1],[-2,-6],[-7,-22],[-69,-83],[-295,-97],[-24,5],[-24,4],[-43,9],[-27,5],[-13,2],[-17,3],[-3,1],[-2,0],[-8,9],[-24,26],[-4,4],[-4,4],[-4,5],[54,108],[103,204],[32,30],[5,5],[11,3],[4,2],[4,1],[3,1],[1,0],[9,3],[21,6],[9,3],[2,0],[11,0],[6,0],[43,1],[9,0]],[[555036,975070],[343,-91],[4,-2],[5,-2],[8,-3],[137,-50],[16,-5],[6,-3],[8,-3],[19,-6],[49,-19],[4,-1],[151,-73],[187,-91],[3,-4],[14,-20],[4,-5],[-7,-10],[-32,-49],[-2,-3],[-1,-2],[-5,-1],[-4,0],[-16,-3],[-25,-5],[-2,0],[-3,1],[-77,21],[-8,2],[-1,0],[-8,2],[-882,81],[-14,-3],[-12,-3],[-25,-5],[-2,-1],[-1,0],[-8,-2],[-4,-1],[-4,0],[-9,-1],[-35,-2],[-26,-2],[-17,-1],[-4,0],[-5,1],[-71,9],[-10,2],[-4,0],[-6,4],[-12,5],[-4,3],[-30,15],[-50,74],[-12,31],[-32,199],[-1,38],[15,16],[37,40],[7,0],[6,1],[73,6],[4,0],[3,0],[2,0],[17,-2],[1,0],[3,0],[38,-5],[35,-4],[102,-25],[170,-43]],[[530191,976983],[95,-7],[116,-8],[122,-70],[220,-125],[-34,-133],[-432,-99],[-125,0],[-81,1],[-46,5],[-57,6],[-66,51],[-12,10],[-7,36],[6,42],[9,61],[39,93],[42,100],[211,37]],[[529979,977338],[200,-54],[54,-15],[343,-173],[11,-58],[-510,37],[-43,3],[-10,1],[-138,13],[-3,1],[-1,0],[-9,1],[-2,0],[-3,1],[-2,0],[-2,1],[-169,43],[-18,4],[-22,9],[-30,12],[-9,4],[-1,0],[-3,2],[1,1],[11,8],[104,77],[8,6],[139,56],[4,0],[5,1],[78,16],[17,3]],[[577898,978881],[-216,60],[-153,42],[-280,154],[-199,317],[-98,158],[-1,10],[-1,19],[-1,18],[0,6],[-1,12],[6,7],[2,2],[53,64],[4,5],[7,4],[6,4],[26,17],[4,3],[9,6],[197,69],[29,10],[422,-65],[258,-96],[426,-170],[185,-73],[16,-10],[66,-37],[4,-3],[9,-5],[54,-31],[13,-7],[4,-3],[5,-2],[6,-17],[8,-19],[11,-29],[45,-116],[5,-15],[-5,-12],[-12,-24],[-7,-2],[-2,-1],[-7,-3],[-27,-9],[-7,-2],[-10,-4],[-4,-1],[-5,-1],[-8,-2],[-164,-31],[-216,-54],[-266,-113],[-58,-9],[-132,-21]],[[592085,980406],[2,-1],[3,-1],[2,0],[7,-3],[8,-3],[264,-97],[1,0],[3,-1],[13,-5],[21,-8],[576,-261],[2,-2],[2,-2],[1,-1],[3,-3],[11,-12],[12,-11],[15,-16],[-43,-162],[-38,-92],[-17,-40],[-154,-131],[-45,-39],[-113,-28],[-1409,-138],[-428,-61],[-1718,-241],[-20,-4],[-20,-3],[-183,-35],[-92,-17],[-2,0],[-2,-1],[-2,0],[-3,-1],[-604,-77],[-23,-1],[-185,-4],[-7,0],[-2,0],[-43,12],[-195,53],[-2,1],[-2,2],[-4,2],[-13,9],[-192,155],[-70,56],[-11,37],[-7,24],[49,176],[2,4],[2,2],[27,40],[25,36],[18,27],[3,4],[4,7],[17,12],[34,25],[6,5],[7,5],[1,0],[3,3],[13,9],[8,6],[5,4],[15,11],[106,62],[81,47],[5,2],[8,3],[6,2],[21,8],[26,10],[916,226],[196,68],[70,24],[124,62],[190,95],[624,135],[14,2],[87,13],[5,0],[4,1],[459,65],[652,76],[18,1],[22,1],[1,0],[4,0],[4,0],[17,1],[32,2],[4,-1],[131,-6],[26,-1],[3,-1],[2,0],[80,-10],[9,-1],[9,-1],[8,-2],[325,-70],[171,-37],[4,-1]],[[550950,980823],[44,-3],[130,-12],[201,-61],[36,-12],[116,-41],[54,-71],[14,-19],[-27,-30],[-126,-142],[308,-5],[230,-3],[-31,-90],[-231,-150],[-9,-7],[-2,0],[-11,-4],[-69,-22],[-9,-2],[-84,-11],[-6,-1],[-12,-2],[-18,-2],[-4,-1],[-22,-3],[-227,-26],[-110,-11],[-15,-2],[-787,219],[-28,71],[-28,71],[7,177],[2,16],[1,8],[2,1],[2,1],[70,39],[157,87],[393,71],[2,0],[2,0],[21,2],[64,-30]],[[567609,980873],[-122,-56],[-9,-4],[-4,-2],[-12,3],[-17,3],[-4,1],[-303,65],[-9,1],[-9,2],[-132,16],[-1,1],[-3,1],[-44,13],[-21,6],[-3,1],[-6,2],[-8,2],[-7,8],[-14,15],[-2,2],[-2,2],[206,224],[5,2],[59,29],[8,4],[10,2],[8,2],[45,11],[3,1],[1,0],[1,0],[4,-1],[79,-9],[6,-1],[3,-1],[41,-14],[62,-20],[2,-1],[2,0],[5,-2],[233,-209],[-2,-5],[-1,-1],[-6,-13],[-27,-51],[-15,-29]],[[563888,981280],[94,21],[48,11],[164,-6],[62,-2],[3,0],[6,-1],[9,-2],[346,-54],[3,-1],[2,0],[1,-1],[3,-2],[4,-3],[91,-58],[37,-24],[6,-3],[7,-5],[2,-4],[1,-3],[11,-25],[1,-1],[6,-14],[1,-3],[2,-4],[-1,-1],[-2,-6],[-1,-1],[-2,-6],[-190,-463],[-203,-492],[-104,-359],[-80,-277],[540,-69],[539,-69],[1218,877],[1290,231],[106,11],[338,38],[764,-176],[6,-1],[1962,-473],[854,-164],[414,-79],[109,53],[13,6],[29,2],[48,3],[11,1],[70,5],[36,3],[9,0],[459,-11],[285,-15],[772,-70],[220,-20],[4,-1],[9,-1],[51,-7],[80,-12],[2,0],[2,0],[4,-1],[27,-6],[4,-1],[5,-1],[105,-23],[1,0],[4,-1],[8,-3],[51,-19],[43,-15],[4,-2],[238,-117],[565,-280],[-134,-276],[-265,-545],[-134,-236],[-141,-251],[-1708,-822],[-224,-82],[-350,-129],[-340,-462],[-514,-699],[-165,-243],[-21,-32],[-17,-7],[-397,-174],[-315,-109],[-25,-8],[-47,-16],[-917,-310],[-63,-5],[-9,-1],[-42,4],[-432,43],[-4,1],[-96,27],[-13,4],[-9,2],[-9,2],[-3,6],[-5,7],[-2,4],[-11,17],[-509,106],[-1357,-475],[-451,-349],[-732,-37],[-401,-20],[-874,141],[-715,145],[-304,67],[-230,51],[-4,2],[-282,113],[-7,3],[-1,0],[-139,80],[-166,94],[-2,22],[-1,5],[-1,9],[-5,44],[13,11],[99,88],[4,4],[2,2],[2,2],[6,3],[7,3],[73,37],[151,74],[5,3],[3,1],[-25,17],[-75,53],[-917,-56],[-439,-27],[-13,-3],[-178,-30],[-4,-1],[-1,0],[-4,0],[-671,-150],[-64,0],[-517,4],[-736,21],[-714,20],[-1219,116],[-1871,464],[-206,86],[-909,468],[-5,3],[-16,9],[-31,20],[-52,31],[-4,3],[-3,6],[-79,136],[-4,6],[-3,7],[-14,34],[-4,7],[-8,18],[-1,2],[56,39],[4,3],[7,5],[6,3],[5,3],[3,1],[91,42],[2,1],[11,5],[5,2],[870,65],[270,-18],[98,-6],[1,0],[3,0],[91,-13],[35,-4],[9,-2],[2,0],[2,-1],[9,-2],[2,0],[3,-1],[195,-44],[10,-2],[12,-3],[2,-5],[1,-2],[1,-1],[5,-12],[6,-14],[265,-82],[526,-163],[1370,-163],[74,1],[77,2],[176,30],[69,12],[35,7],[48,10],[87,18],[-11,6],[-10,6],[-45,28],[-30,18],[-4,2],[-8,6],[-447,105],[-172,41],[-73,14],[-361,70],[-289,37],[-200,7],[-81,-19],[-211,130],[-101,93],[-66,62],[-15,25],[-32,55],[172,20],[115,14],[119,14],[171,20],[119,13],[494,55],[823,46],[113,6],[83,4],[203,-29],[3,-1],[15,-5],[17,-7],[4,-1],[5,-1],[123,-21],[153,-27],[9,-1],[4,0],[5,0],[4,0],[107,0],[33,8],[64,16],[5,2],[4,1],[3,1],[1,0],[3,1],[10,5],[3,1],[1,1],[20,10],[203,503],[16,59],[21,78],[-1,3],[-10,25],[-100,38],[-3,1],[-92,11],[-313,31],[-2063,-213],[-2718,-340],[-1782,-31],[-691,-12],[-332,28],[-742,388],[-285,182],[-143,108],[-146,110],[-371,291],[149,71],[73,35],[207,72],[1358,168],[98,-3],[32,-1],[-36,397],[-653,36],[-1487,479],[-62,20],[-686,37],[-26,-10],[-25,-10],[-5,-1],[-3,0],[-10,1],[-13,1],[-85,6],[-5,0],[0,4],[1,5],[3,25],[151,69],[116,53],[520,126],[46,6],[85,10],[172,12],[168,11],[789,48],[787,29],[925,-340],[776,184],[131,714],[522,-170],[623,-204],[-28,166],[-57,337],[-131,144],[-262,289],[-151,-9],[-160,-8],[-4,0],[-43,3],[-13,1],[-3,2],[-1,0],[-47,19],[-9,3],[-98,117],[-28,33],[0,1],[-4,4],[-11,24],[-1,2],[-4,10],[-33,70],[-3,7],[2,3],[3,5],[11,16],[30,47],[7,10],[9,4],[133,63],[13,6],[8,4],[4,2],[89,38],[471,206],[350,-111],[1324,-417],[215,-161],[1218,-907],[59,-81],[21,-29],[14,-16],[15,-16],[2,-3],[5,-5],[3,-1],[1,0],[67,-24],[62,-21],[4,-1],[4,-2],[7,-2],[2,-1],[2,0],[27,-2],[4,0],[4,0],[500,55],[114,25],[181,40],[419,166],[261,48],[710,89],[124,-272],[116,-255],[265,-297],[904,-659],[498,177],[162,58],[78,1494],[-48,13],[-2,1],[-3,1],[-4,1],[-4,1],[-69,49],[-160,115],[-8,8],[-23,25],[-27,30],[-4,5],[-1,3],[-2,4],[-9,29],[-20,59],[-5,14],[2,8],[4,10],[4,14],[9,30],[6,19],[3,7],[7,11],[13,19],[52,76],[4,5],[9,3],[30,10],[16,5],[45,14],[116,27],[27,6],[31,7],[4,1],[125,17],[15,1],[52,7],[97,-2],[67,-1],[13,0],[14,-2],[3,-1],[7,-1],[27,-3],[4,-1],[7,-1],[2,0],[4,0],[8,-5],[1,0],[45,-27],[4,-2],[0,-5],[0,-4],[0,-10],[0,-2],[2,-119],[-1,-9],[-2,-23],[0,-3],[394,203],[408,210],[71,-9],[118,-15]],[[555411,981434],[-43,-4],[-4,-1],[-4,1],[-2,0],[-12,2],[-22,4],[-9,1],[-92,34],[-86,31],[-4,1],[-2,2],[-2,2],[-15,12],[-18,15],[-5,4],[-4,3],[1,5],[1,3],[7,58],[1,11],[1,5],[1,13],[4,1],[3,2],[3,1],[4,1],[3,2],[1,0],[20,9],[369,151],[3,0],[1,0],[9,1],[24,2],[8,1],[38,-9],[21,-5],[124,-78],[107,-68],[7,-7],[10,-12],[4,-3],[-1,-4],[-2,-3],[-1,-4],[-1,-3],[-3,-8],[-4,-11],[-57,-27],[-34,-15],[-80,-37],[-16,-7],[-21,-10],[-21,-9],[-1,-1],[-1,0],[-12,-6],[-175,-44],[-21,-2]],[[557393,982560],[137,-9],[116,-8],[68,-30],[114,-50],[-313,-207],[-364,122],[-35,11],[-1,1],[-7,4],[-124,63],[-2,1],[-11,6],[-2,2],[-2,2],[-19,20],[-25,26],[-8,8],[8,8],[12,12],[22,25],[9,2],[4,2],[5,1],[5,2],[12,3],[3,1],[1,1],[65,0],[180,1],[8,0],[1,0],[99,-3],[7,0],[6,0],[4,-2],[27,-15]],[[559272,982722],[-20,-63],[-22,-14],[-74,-48],[-225,-64],[-189,-53],[-4,-1],[-3,-1],[-32,-6],[-6,-1],[-3,-1],[-24,5],[-6,1],[-5,1],[-1,1],[-7,5],[-14,11],[-3,3],[-20,16],[-97,76],[-16,41],[-16,41],[-2,5],[-1,2],[1,1],[3,2],[8,5],[6,5],[9,7],[27,6],[215,48],[18,4],[4,1],[4,1],[3,-1],[6,0],[115,14],[175,22],[5,0],[28,4],[18,2],[5,1],[4,0],[9,-2],[127,-76]],[[558069,982879],[70,-1],[110,0],[244,-68],[0,-7],[0,-15],[-36,-12],[-7,-3],[-9,-3],[-99,-34],[-5,-2],[-63,-15],[-298,-71],[-227,48],[-379,114],[-164,111],[-146,98],[-13,14],[-1,1],[-7,7],[2,3],[8,10],[3,5],[4,4],[4,2],[124,38],[9,2],[4,1],[91,14],[8,1],[9,1],[4,-1],[9,-1],[3,-1],[1,0],[39,-6],[20,-4],[2,0],[24,-8],[662,-222]],[[943770,450977],[320,-585],[170,-145],[183,-157],[162,21],[217,28],[581,64],[63,-43],[65,-45],[503,-747],[11,-18],[603,-1433],[8,-46],[9,-56],[1,-5],[1,-3],[22,-86],[7,-29],[5,-17],[8,-18],[2,-6],[4,-5],[4,-5],[7,-10],[11,-15],[4,-4],[0,-1],[-1016,-256],[-1744,505],[-8,5],[-1,0],[-17,11],[-3,2],[-1,1],[-15,23],[-45,68],[-170,346],[-175,408],[-23,94],[-11,48],[-187,841],[-22,809],[2,87],[3,109],[1,7],[1,2],[9,56],[7,42],[3,18],[1,1],[5,11],[2,6],[23,45],[14,28],[21,30],[179,197],[125,-72],[47,-70],[24,-36]],[[963851,437125],[8,-38],[3,-13],[1,-7],[-6,-23],[-1,-4],[-1,-4],[-2,-8],[-24,-33],[-9,-13],[-70,-99],[-4,-6],[-4,-5],[-4,-1],[-7,-3],[-4,3],[-8,8],[-2,18],[-2,12],[-3,24],[0,23],[0,18],[0,2],[0,6],[25,97],[4,16],[14,53],[50,37],[2,-1],[2,-1],[6,-3],[3,-1],[33,-54]],[[963440,437255],[232,-171],[43,-210],[15,-74],[59,5],[9,-9],[3,-3],[3,-8],[2,-6],[6,-14],[3,-8],[2,-5],[0,-2],[1,-2],[1,-6],[13,-65],[2,-12],[1,-4],[-3,-17],[-2,-9],[-8,-11],[-6,-8],[-7,-9],[-8,-5],[-42,-27],[-4,-3],[-221,-64],[-17,15],[-67,56],[-52,90],[-33,58],[-67,306],[1,48],[2,89],[17,54],[23,73],[99,-42]],[[944769,437742],[74,-89],[553,-661],[31,-251],[66,-532],[-986,1029],[-7,8],[-34,40],[-30,66],[-56,132],[-25,61],[-5,13],[-16,50],[-34,109],[-2,69],[0,19],[2,17],[2,9],[32,82],[6,13],[3,7],[60,107],[3,5],[0,1],[4,4],[4,4],[7,8],[7,9],[2,-1],[2,0],[3,-1],[1,0],[4,-1],[4,-1],[4,-1],[16,-5],[305,-319]],[[943823,439182],[64,-47],[15,-13],[4,-3],[3,-3],[8,-6],[72,-114],[3,-6],[3,-6],[1,-3],[5,-9],[8,-33],[2,-11],[-6,-13],[0,-2],[-3,-5],[-8,1],[-48,16],[-9,4],[-24,10],[-32,14],[-5,1],[-4,8],[-5,10],[-3,4],[0,2],[-7,12],[-9,17],[-27,54],[-33,68],[-3,6],[-3,7],[-5,12],[-6,12],[3,4],[9,10],[0,1],[18,0],[21,1],[1,0]],[[962517,439475],[30,-4],[3,-5],[4,-6],[13,-28],[11,-24],[19,-110],[-23,-195],[-10,-42],[-20,-80],[-91,-56],[-2,0],[-1,-1],[-2,0],[-2,0],[-43,63],[-1,1],[-7,11],[-51,139],[-6,42],[0,4],[0,35],[1,74],[13,67],[46,135],[18,14],[13,11],[66,-34],[22,-11]],[[951286,441633],[-4,-1],[-8,9],[-22,25],[-4,21],[-1,6],[-2,9],[20,138],[1,10],[1,0],[2,6],[2,6],[0,1],[6,14],[2,5],[3,3],[5,5],[14,11],[14,-7],[1,0],[3,-1],[7,-9],[10,-12],[1,-4],[3,-10],[7,-21],[2,-7],[2,-9],[4,-25],[3,-17],[0,-12],[0,-2],[0,-1],[-1,-6],[-1,-9],[-17,-74],[-3,-16],[-4,-4],[-12,-10],[-4,-4],[-30,-8]],[[961206,441972],[1,-9],[0,-9],[1,-18],[1,-9],[-2,-8],[-5,-25],[-1,-9],[-4,-16],[-5,-15],[-12,-31],[-10,-28],[-3,-8],[-21,-30],[-4,-5],[-2,-3],[-2,-2],[-1,-1],[-3,-2],[-37,-27],[-8,-6],[-26,30],[-29,33],[1,13],[0,5],[4,8],[1,3],[2,5],[2,3],[1,2],[3,5],[4,6],[7,11],[12,18],[16,24],[70,95],[16,9],[1,1],[7,3],[4,3],[3,-3],[18,-13]],[[960376,442447],[-2,0],[-2,0],[-8,0],[-6,11],[-1,1],[-2,5],[7,34],[6,31],[1,2],[1,6],[1,6],[1,2],[7,27],[23,93],[2,6],[4,14],[1,3],[2,4],[13,15],[3,3],[0,1],[7,-10],[6,-10],[3,-5],[15,-56],[1,-2],[0,-1],[2,-8],[0,-7],[1,-3],[0,-4],[1,-7],[-8,-41],[-2,-9],[-6,-11],[-1,-3],[-8,-14],[-3,-6],[-21,-24],[-38,-43]],[[961113,442739],[40,-7],[153,-27],[8,-5],[4,-3],[3,-2],[6,-4],[14,-10],[3,-2],[1,0],[3,-6],[2,-4],[10,-19],[2,-5],[1,-1],[-4,-30],[-7,-57],[-51,-138],[-28,-77],[-43,-87],[-136,-276],[-29,-18],[-55,30],[-43,-29],[-531,-354],[-9,0],[-10,0],[-3,0],[-5,1],[-8,2],[-52,11],[-2,0],[-7,1],[-3,5],[-11,16],[-8,34],[-42,172],[-1,5],[0,3],[-1,8],[-2,10],[-1,8],[-1,9],[2,33],[4,54],[12,100],[4,31],[4,15],[5,14],[2,7],[3,8],[94,196],[176,229],[85,111],[361,57],[91,-9]],[[960382,444188],[-9,1],[-4,1],[-11,22],[-6,11],[-1,8],[-1,8],[-1,4],[-3,20],[1,7],[1,12],[2,20],[1,7],[2,19],[4,36],[4,13],[3,10],[1,3],[30,32],[4,4],[4,-3],[0,-1],[4,-3],[1,-4],[4,-9],[21,-45],[3,-7],[1,-8],[3,-15],[2,-16],[0,-3],[0,-6],[-4,-46],[-2,-19],[-2,-6],[-6,-13],[-25,-19],[-21,-15]],[[961861,444987],[-5,-2],[-37,-16],[-8,-4],[-17,-7],[-1,0],[-2,1],[-6,3],[-2,9],[2,81],[0,21],[4,6],[6,11],[4,5],[4,3],[4,3],[2,1],[3,2],[8,6],[28,20],[6,4],[42,10],[4,1],[4,1],[4,1],[5,1],[6,2],[2,0],[3,-6],[7,-12],[3,-6],[0,-8],[1,-15],[-1,-4],[-5,-16],[-1,-4],[-1,-2],[-3,-5],[-3,-6],[-3,-4],[-57,-75]],[[949366,445265],[2,-5],[1,0],[1,-16],[0,-6],[0,-2],[2,-25],[-1,-9],[-7,-41],[-2,-9],[-6,-33],[-4,-11],[-1,-4],[-2,-6],[-18,-53],[-26,-51],[-13,-25],[-1,-2],[-2,-5],[-4,-6],[-8,6],[-3,3],[-3,2],[-5,5],[-3,2],[-1,0],[-18,15],[-1,4],[-7,25],[-34,182],[-12,65],[3,27],[3,31],[14,116],[4,36],[2,3],[2,3],[6,11],[13,22],[10,2],[11,2],[8,2],[4,0],[26,-34],[3,-7],[6,-14],[7,-17],[10,-24],[14,-35],[11,-48],[19,-76]],[[948323,445569],[202,-232],[225,-257],[1364,-1130],[273,-476],[38,-66],[166,-424],[130,-334],[30,-221],[81,-598],[-179,-11],[-218,-10],[-280,-12],[-342,172],[-107,58],[-47,31],[-70,46],[-92,67],[-145,106],[-115,172],[-204,339],[-157,261],[-166,316],[-78,148],[-2,462],[-51,477],[-15,64],[-15,17],[-35,37],[-95,87],[-90,57],[-32,21],[-45,24],[-54,11],[0,-1],[-4,-2],[-15,-11],[-1,0],[-7,-5],[-5,-15],[-8,-23],[-3,-7],[-2,-8],[-5,-2],[-3,-1],[-7,-3],[-1,-1],[-4,-2],[-43,11],[-86,40],[-40,20],[-4,3],[-11,12],[-2,8],[-2,17],[0,3],[-4,23],[-1,11],[-1,6],[-5,149],[33,491],[1,8],[1,17],[3,34],[6,17],[3,9],[2,7],[2,2],[5,5],[4,4],[3,4],[116,71],[35,22],[15,-9],[50,-30],[77,-52],[10,-8],[23,-16]],[[964528,446868],[-5,-12],[-3,-6],[-3,2],[-3,1],[-3,2],[-16,34],[-9,29],[-6,19],[-12,41],[-7,25],[-4,15],[-16,73],[1,9],[2,7],[1,9],[18,3],[3,-3],[5,-4],[3,-3],[5,-4],[15,-18],[3,-4],[8,-9],[2,-4],[0,-2],[2,-3],[6,-15],[4,-8],[1,-4],[6,-41],[7,-46],[1,-9],[3,-17],[-2,-8],[0,-1],[-4,-32],[-1,-5],[-2,-11]],[[949920,448305],[21,-629],[-8,-41],[-2,-8],[-32,-80],[-8,4],[-33,101],[0,1],[-2,8],[-19,89],[-7,31],[-3,17],[-16,102],[-3,24],[-20,150],[-2,28],[-6,104],[12,171],[1,1],[1,6],[7,31],[4,16],[3,5],[5,9],[3,5],[4,0],[2,0],[2,0],[18,1],[8,1],[4,-4],[66,-143]],[[948304,450341],[47,-115],[11,-29],[62,-158],[6,-17],[1,-5],[1,-1],[2,-6],[1,-4],[1,-3],[67,-243],[141,-513],[28,-131],[28,-127],[39,-327],[46,-391],[0,-12],[1,-6],[1,-83],[0,-2],[0,-7],[-1,-9],[-4,-35],[0,-4],[-2,-14],[-7,-63],[-2,-8],[-22,-89],[-5,-16],[0,-1],[-3,-3],[-4,-3],[-7,-7],[-3,-4],[-273,331],[-158,593],[2,8],[4,19],[2,15],[4,17],[1,8],[2,9],[6,108],[-2,476],[-1,475],[-46,136],[-67,220],[-12,75],[-26,156],[141,-210]],[[943936,451655],[-3,0],[-5,0],[-4,0],[-1,0],[-1,2],[-2,3],[-12,15],[-1,2],[-6,8],[-3,7],[-11,25],[-27,65],[-6,13],[-2,9],[-2,8],[-1,9],[-4,17],[-1,19],[0,9],[12,96],[0,1],[1,8],[5,15],[3,11],[2,3],[2,3],[3,5],[3,5],[3,3],[1,1],[1,1],[3,2],[34,28],[8,7],[4,2],[4,1],[7,2],[2,-1],[1,-2],[6,-8],[29,-54],[6,-13],[15,-32],[0,-1],[0,-1],[9,-19],[2,-14],[1,-6],[1,-7],[-2,-19],[-11,-111],[-1,-10],[-2,-5],[0,-1],[-5,-12],[-1,-4],[-1,-2],[-7,-6],[-5,-5],[-34,-59],[-7,-13]],[[945445,451942],[2,1],[2,2],[8,7],[12,11],[18,1],[9,0],[13,-5],[16,-6],[5,-2],[4,-2],[19,-19],[26,-27],[10,-46],[9,-36],[0,-14],[1,-7],[-25,-54],[-59,-129],[-35,-43],[-31,-30],[-12,-5],[-14,-5],[-19,-1],[-15,-1],[-167,1],[-32,39],[-74,91],[25,-14],[21,29],[6,9],[28,54],[29,58],[10,23],[6,14],[7,16],[27,94],[27,95],[5,31],[8,42],[0,9],[48,-49],[61,-62],[21,-70]],[[942306,452450],[10,-379],[-1,-6],[0,-2],[-3,-17],[-2,-8],[-37,-136],[-10,-15],[-17,-25],[-7,-10],[-3,-1],[-4,-2],[-4,-2],[-3,-1],[-20,1],[-51,2],[-19,7],[-32,11],[-1,6],[-2,6],[-1,7],[1,7],[2,14],[43,193],[40,140],[102,240],[17,-28],[2,-2]],[[941976,452613],[52,9],[185,-194],[-106,-378],[-34,-94],[-11,-11],[-1,-1],[-2,-2],[-68,17],[-44,11],[-15,7],[-33,16],[-96,78],[-53,138],[1,2],[0,6],[1,9],[5,43],[3,25],[110,167],[2,3],[3,4],[26,28],[52,-69],[-1,51],[-3,60],[-1,0],[-3,0],[-6,12],[-34,60],[-2,3],[-11,21],[-2,2],[-2,4],[4,1],[9,2],[43,-2],[32,-28]],[[945089,452579],[5,1],[7,1],[7,1],[1,0],[7,-3],[8,-5],[2,0],[6,-3],[3,-5],[4,-6],[4,-6],[116,-206],[5,-10],[1,-3],[3,-7],[3,-7],[23,-85],[2,-18],[1,-7],[1,-2],[1,-11],[2,-15],[0,-3],[2,-32],[0,-7],[0,-11],[0,-5],[1,-4],[-1,-6],[-1,-9],[-3,-21],[0,-1],[0,-1],[-2,-8],[-3,-13],[-1,-4],[-9,-24],[-70,-176],[-40,-37],[-56,-17],[-290,308],[-186,272],[157,230],[17,-2],[273,-33]],[[944703,452907],[0,-2],[2,-7],[33,-291],[-69,-99],[-13,-18],[-13,98],[-11,90],[-15,138],[-5,43],[8,36],[5,23],[7,12],[3,5],[0,1],[27,-9],[27,-8],[3,-3],[2,-2],[5,-4],[3,-2],[1,-1]],[[944472,453317],[45,10],[4,-2],[8,-3],[4,-1],[2,-4],[1,-2],[4,-5],[4,-8],[2,-4],[2,-7],[9,-31],[3,-15],[2,-15],[0,-45],[0,-3],[0,-7],[0,-6],[0,-3],[0,-27],[-2,-7],[-6,-13],[-15,8],[-2,1],[-5,3],[-2,0],[-2,2],[-3,1],[-1,1],[-3,7],[-17,54],[-57,44],[-7,-85],[-5,-57],[-24,45],[11,78],[1,5],[3,11],[7,30],[9,36],[1,8],[2,3],[4,6],[3,5],[2,-1],[18,-7]],[[947337,454110],[4,-4],[2,-1],[2,-3],[12,-11],[3,-5],[6,-11],[1,0],[6,-11],[7,-23],[1,-2],[6,-20],[1,-17],[1,-8],[-6,-12],[-76,-25],[-1,1],[-2,2],[-3,2],[-69,106],[-3,5],[-1,3],[-3,8],[3,4],[9,15],[6,10],[2,1],[3,1],[6,4],[7,4],[5,2],[3,2],[4,1],[9,0],[9,1],[4,1],[4,-2],[3,-2],[1,0],[34,-16]],[[937781,454244],[119,-267],[3,-11],[6,-28],[0,-28],[0,-61],[-16,-49],[-14,2],[-40,6],[-6,1],[-2,1],[-1,0],[-88,70],[-293,233],[-22,22],[-49,60],[-29,45],[-44,65],[-1,4],[-4,11],[-8,23],[2,7],[17,11],[33,21],[266,36],[135,-138],[36,-36]],[[939406,453646],[-55,-23],[-7,5],[-2,1],[-2,1],[-5,12],[-1,2],[-1,3],[-8,17],[-2,3],[-2,3],[-51,141],[-3,35],[-5,62],[0,2],[-2,24],[5,52],[3,33],[2,7],[0,1],[12,38],[160,332],[114,-524],[-150,-227]],[[938868,455385],[53,12],[120,26],[159,-445],[3,-8],[-31,-455],[-6,-48],[-1,-7],[-4,-18],[-7,-29],[-169,-407],[-6,-8],[-6,-9],[-33,-32],[-33,-11],[-93,54],[-71,41],[-88,139],[-5,9],[-1,2],[-2,2],[-87,209],[-16,38],[-2,8],[-11,48],[-3,12],[-1,5],[-13,78],[34,431],[11,143],[229,163],[80,57]],[[937060,456120],[1,0],[3,0],[8,0],[3,0],[2,-1],[33,-12],[8,-2],[1,0],[4,-4],[1,-1],[7,-5],[15,-12],[9,-7],[7,-22],[13,-36],[12,-48],[41,-248],[0,-5],[5,-101],[-75,-570],[-82,-627],[-140,67],[-113,228],[-152,308],[-27,70],[-8,56],[3,16],[3,14],[44,124],[187,427],[81,256],[15,39],[18,45],[42,71],[31,-20]],[[943416,456197],[217,-790],[-26,-165],[-18,-38],[-17,-34],[-6,-1],[-30,-5],[-48,6],[-28,4],[-4,2],[-5,3],[-2,1],[-2,1],[-124,224],[-138,249],[-4,23],[-2,13],[-1,6],[-1,3],[-1,9],[-2,9],[-6,41],[-5,30],[-1,18],[-1,17],[0,1],[0,1],[-2,18],[0,4],[0,5],[-2,30],[-1,18],[-1,4],[0,5],[0,27],[-1,18],[2,9],[0,3],[1,5],[4,22],[3,12],[5,26],[9,18],[68,139],[11,7],[14,9],[35,19],[4,2],[9,3],[10,4],[6,2],[2,1],[2,0],[2,1],[2,1],[4,1],[7,1],[1,0],[2,0],[6,1],[2,-1],[6,-3],[7,-4],[9,-9],[29,-26]],[[946455,456625],[5,1],[20,2],[3,-3],[2,-1],[2,-1],[8,-5],[3,-2],[3,-5],[13,-22],[0,-1],[3,-5],[109,-213],[24,-48],[28,-57],[5,-11],[5,-9],[3,-6],[2,-4],[1,-3],[19,-50],[406,-1085],[108,-306],[7,-34],[9,-35],[3,-33],[0,-4],[1,-4],[2,-17],[0,-4],[-1,-21],[-1,-17],[-3,-16],[-2,-5],[0,-3],[-2,-5],[-4,-8],[-32,-72],[-1,-2],[-2,-4],[-39,-40],[-11,-11],[112,-955],[8,-68],[98,-97],[44,-63],[24,-34],[53,-87],[73,-171],[30,-74],[22,-73],[30,-97],[157,-618],[108,-424],[308,-1972],[64,-443],[2,-24],[7,-124],[6,-131],[-9,-133],[-4,-16],[-3,-3],[-1,-1],[-4,-4],[-20,-20],[-3,1],[-8,4],[-2,1],[-1,1],[-17,31],[-142,275],[-79,249],[-79,263],[-42,139],[-31,138],[-40,175],[-38,120],[-140,269],[-3,6],[-3,5],[-4,7],[-6,11],[-1,2],[-16,28],[-135,178],[-12,15],[-896,2209],[-14,189],[-24,307],[-399,2531],[55,296],[30,162],[135,-126],[40,-16],[41,5],[1,2],[2,1],[2,4],[2,8],[2,9],[2,8],[4,17],[2,106],[0,1],[-6,32],[-40,150],[62,-12]],[[946680,456701],[9,-47],[9,-47],[3,-13],[1,-4],[-5,-65],[-3,-51],[-7,-10],[-101,198],[-20,40],[-8,17],[48,48],[5,4],[3,0],[1,0],[4,-1],[4,0],[4,-1],[4,-4],[19,-20],[15,-16],[7,-8],[3,-7],[3,-6],[1,-3],[1,-4]],[[937503,456748],[0,3],[1,5],[2,3],[1,4],[6,13],[17,9],[13,7],[37,-17],[2,-1],[2,-2],[3,-2],[8,-6],[3,-6],[14,-29],[19,-40],[4,-7],[2,-5],[33,-214],[2,-14],[1,-7],[-3,-17],[-1,-9],[0,-2],[-1,-6],[-7,8],[-4,5],[-4,36],[-1,8],[-3,22],[-9,67],[-173,52],[-49,12],[-4,2],[-7,6],[-8,5],[-5,11],[-6,13],[0,8],[-3,31],[-3,63],[-2,66],[3,4],[8,11],[6,7],[106,-97]],[[936195,457433],[33,0],[44,0],[62,-92],[26,-39],[3,-5],[3,-5],[0,-1],[2,-10],[4,-25],[1,-9],[5,-27],[10,-114],[23,-304],[6,-71],[-22,45],[-207,433],[7,224]],[[936608,457214],[8,-150],[4,-54],[-158,125],[2,17],[1,8],[0,1],[0,8],[-1,8],[-3,5],[-2,6],[-5,-1],[-4,-1],[-12,19],[-7,10],[-23,46],[-10,22],[-7,22],[-25,77],[-23,121],[32,89],[10,26],[62,10],[36,5],[97,-325],[28,-94]],[[935568,458291],[66,-213],[16,-65],[20,-82],[-21,-36],[-3,-6],[-9,-3],[-31,-11],[-2,0],[-1,1],[-57,64],[-43,50],[-42,107],[1,19],[2,58],[1,15],[2,55],[0,10],[2,3],[4,11],[9,21],[1,4],[1,3],[76,2],[8,-7]],[[937521,458747],[78,-246],[191,-607],[34,-436],[29,-276],[70,-29],[37,7],[26,42],[27,55],[23,48],[29,11],[19,-8],[15,-6],[117,-155],[1,-1],[25,-57],[8,-21],[3,-8],[160,-582],[71,-256],[17,-76],[47,-206],[16,-230],[12,-168],[-34,-197],[-15,-87],[-29,-122],[-145,-86],[-382,455],[-124,168],[-20,42],[-155,324],[-12,56],[-22,109],[-2,9],[-3,16],[-2,9],[-4,24],[8,61],[4,30],[1,5],[1,4],[0,3],[1,6],[6,22],[4,3],[3,2],[1,1],[4,3],[0,-6],[0,-2],[2,-17],[1,-11],[0,-6],[0,-3],[1,-5],[29,-2],[129,-10],[-161,508],[-129,195],[-163,-45],[-191,-85],[-83,-37],[-88,-151],[-2,-7],[-1,-1],[-9,-27],[-17,-24],[-59,-83],[-48,-33],[-64,17],[-77,182],[-45,125],[-29,82],[-8,24],[-1,12],[-7,93],[9,140],[43,178],[6,7],[6,5],[1,1],[38,8],[21,1],[10,0],[178,471],[142,378],[8,28],[15,50],[2,8],[3,10],[2,6],[7,15],[79,149],[80,106],[107,122],[4,4],[11,13],[7,8],[20,21],[4,0],[16,1],[55,-38],[7,-30]],[[934842,458871],[32,-70],[5,-10],[4,-17],[27,-91],[13,-55],[21,-164],[21,-164],[69,-620],[-5,-40],[-13,-90],[-17,-19],[-40,-39],[-37,2],[-93,450],[-89,859],[3,12],[4,19],[18,36],[3,5],[1,2],[5,9],[2,5],[1,1],[4,2],[5,1],[4,2],[19,-10],[33,-16]],[[946204,459110],[10,-67],[-2,-18],[-1,-15],[0,-2],[-1,-3],[-1,-4],[-3,-7],[-2,-1],[-4,-3],[-24,1],[-8,3],[-5,1],[-14,17],[-29,113],[-15,60],[-1,15],[16,66],[4,12],[16,0],[8,-1],[2,0],[3,0],[4,-1],[3,-1],[3,-1],[2,0],[2,-1],[3,-1],[8,-28],[9,-31],[16,-98],[1,-5]],[[936343,459484],[23,0],[4,0],[13,-1],[25,-13],[88,-167],[81,-176],[4,-12],[1,-4],[0,-3],[3,-12],[1,-3],[1,-4],[1,-7],[2,-7],[1,-7],[2,-8],[15,-88],[16,-142],[4,-37],[1,-14],[3,-46],[4,-97],[1,-392],[-14,-157],[-19,-140],[-9,-34],[-38,-103],[-28,-71],[-13,-9],[-14,-11],[-21,5],[-22,4],[-152,85],[-80,45],[-47,35],[-15,11],[-16,13],[-27,22],[-3,4],[-5,7],[-4,5],[-18,25],[-18,40],[-11,24],[-26,57],[-8,21],[-11,26],[-22,83],[-14,58],[-20,79],[-8,55],[-4,34],[-15,177],[-1,56],[7,82],[2,18],[22,186],[13,53],[4,19],[12,26],[42,95],[21,44],[60,115],[22,41],[37,35],[35,31],[4,4],[1,0],[3,3],[11,9],[17,10],[48,27],[4,2],[13,3],[11,2],[3,0],[1,0],[3,1],[4,-3],[0,-1],[6,-5],[1,-1],[2,-2]],[[934836,459695],[5,-4],[5,-4],[4,-3],[4,-3],[4,-3],[10,-7],[2,-1],[2,-8],[5,-17],[5,-52],[5,-44],[-1,-23],[-2,-20],[-3,-15],[0,-2],[-1,-5],[-1,-4],[-1,-3],[-2,-3],[-5,-7],[-1,-1],[-24,-32],[-3,-5],[-8,1],[-11,2],[-4,0],[-46,28],[-5,2],[-2,7],[-3,8],[-28,81],[1,7],[0,7],[0,6],[52,130],[6,11],[7,10],[4,6],[7,3],[7,4],[5,-2],[8,-2],[1,-6],[1,-6],[1,-22],[0,-9]],[[940407,460652],[31,-145],[-1,-26],[-1,-29],[-5,-13],[-10,-30],[-3,-6],[-1,-1],[-2,-5],[-8,-4],[-4,4],[-3,4],[-3,3],[-1,1],[-1,1],[-2,3],[-6,6],[-1,1],[-5,6],[-1,1],[-58,66],[5,24],[9,44],[44,84],[20,18],[3,-3],[1,-1],[3,-3]],[[934973,461083],[18,-17],[365,-789],[55,-612],[-153,-888],[-61,60],[-40,39],[-105,396],[-6,26],[-55,229],[5,61],[4,64],[0,5],[1,4],[0,16],[1,3],[0,5],[2,61],[-8,23],[-10,29],[-3,8],[-1,5],[-1,2],[-91,177],[-93,162],[-56,102],[0,2],[-4,12],[-3,9],[-4,12],[-14,90],[-3,110],[-3,110],[8,104],[1,21],[5,19],[11,45],[2,8],[11,27],[30,69],[22,37],[141,132],[22,16],[10,6]],[[939919,461150],[111,-88],[75,-60],[67,-271],[-276,75],[-74,110],[-62,92],[-59,95],[2,8],[2,8],[3,5],[1,3],[3,0],[2,0],[9,-1],[11,-1],[10,-3],[101,2],[38,13],[36,13]],[[940141,461403],[335,-200],[443,-264],[160,-298],[436,-819],[197,-370],[178,-302],[505,-476],[69,-17],[66,-17],[144,-3],[13,-7],[39,-23],[104,-110],[283,-435],[36,-59],[559,-906],[272,-529],[19,-58],[40,-121],[-30,-57],[-71,-134],[-76,-86],[-87,-32],[-131,-48],[-149,183],[-1,0],[-3,4],[-4,4],[-3,4],[-1,1],[-3,3],[-5,6],[-14,15],[-19,22],[-11,12],[-9,1],[-13,2],[-4,1],[-5,0],[-8,2],[-5,0],[-5,-1],[-3,0],[-37,-8],[-5,-1],[-4,-3],[-12,-9],[-450,478],[-257,274],[-272,314],[-671,775],[-241,357],[-235,443],[-227,429],[-76,145],[-193,367],[-195,499],[-39,127],[-61,199],[-5,11],[-5,11],[0,1],[-49,81],[-91,137],[-25,38],[-3,4],[-64,89],[-16,14],[-3,2],[0,83],[-2,255]],[[939599,461808],[26,-11],[81,-69],[210,-176],[-25,-200],[-10,-85],[-289,353],[-15,56],[-5,36],[-1,9],[6,67],[0,1],[11,18],[6,0],[5,1]],[[939551,462113],[14,-5],[51,-33],[15,-69],[-51,-182],[-131,170],[93,119],[7,0],[2,0]],[[938234,462183],[32,-7],[25,-52],[11,-23],[54,-139],[25,-182],[-2,-74],[0,-2],[-4,-15],[-5,-12],[-2,-6],[-11,-11],[-8,-8],[-152,10],[-1,1],[-9,6],[-11,11],[-15,17],[-8,14],[-5,8],[-6,11],[-1,3],[-2,3],[-32,62],[-3,7],[-2,9],[-11,41],[-1,16],[-1,4],[0,4],[2,59],[2,76],[19,31],[2,3],[68,77],[52,58]],[[939476,462187],[39,-29],[-1,-26],[-30,-72],[-12,-30],[-5,-7],[-9,13],[-36,50],[-29,71],[-1,5],[-1,5],[0,4],[-1,5],[1,6],[0,4],[21,35],[6,4],[30,-20],[28,-18]],[[937585,462210],[58,-32],[83,-45],[110,-223],[-9,-37],[-72,-37],[-53,-3],[-21,-2],[0,4],[3,50],[-40,55],[-29,38],[-125,64],[-2,8],[0,7],[-1,3],[0,5],[11,59],[13,76],[25,37],[5,5],[6,6],[3,-1],[3,-2],[2,-1],[1,-1],[19,-21],[10,-12]],[[932195,462119],[-3,-5],[-10,-13],[-11,-15],[-6,-10],[-4,-2],[-4,-2],[-13,-6],[-60,4],[-9,0],[-38,20],[-22,11],[-30,16],[-2,7],[-3,7],[-2,8],[-4,35],[-3,32],[-1,13],[-2,18],[0,6],[-1,3],[1,3],[3,14],[12,67],[1,4],[1,4],[3,9],[5,14],[1,4],[1,4],[1,5],[2,3],[2,5],[12,23],[3,6],[8,8],[31,34],[2,2],[2,2],[3,1],[1,0],[29,8],[13,4],[4,1],[4,1],[6,0],[7,-1],[16,-1],[4,0],[1,0],[3,0],[4,0],[4,-2],[13,-7],[20,-10],[16,-9],[12,-35],[50,-148],[-2,-5],[-33,-74],[-38,-61]],[[932904,463753],[-7,-32],[-1,-8],[-3,-3],[-1,-1],[-7,-8],[-3,0],[-6,1],[-5,0],[-39,4],[-22,1],[-2,1],[-6,3],[-30,14],[-2,1],[-2,1],[-3,5],[-2,4],[-4,7],[-6,11],[0,9],[-1,18],[4,13],[2,6],[34,48],[8,9],[3,3],[1,1],[15,16],[79,-86],[4,-30],[2,-8]],[[932612,464539],[58,-199],[133,-454],[-8,-9],[-24,-29],[-114,-73],[-218,122],[-25,14],[7,142],[15,91],[15,96],[80,385],[4,12],[0,1],[2,6],[7,6],[0,1],[7,6],[36,-2],[5,0],[4,0],[3,-5],[3,-3],[4,-7],[3,-5],[3,-96]],[[933371,465764],[51,-1],[2,-3],[1,-2],[4,-4],[3,-5],[4,-5],[1,-6],[2,-8],[1,-7],[-66,-170],[-15,-15],[-22,-23],[-25,-15],[-6,-4],[-6,-3],[-1,5],[0,4],[-1,9],[-1,5],[0,4],[-6,52],[-6,49],[0,9],[1,10],[0,8],[1,14],[0,4],[2,3],[1,3],[3,7],[3,6],[3,6],[2,6],[4,4],[7,7],[4,5],[8,8],[25,23],[22,20]],[[934641,466807],[22,-16],[297,-261],[74,-65],[588,-817],[222,-309],[50,-81],[522,-843],[8,-141],[3,-69],[4,-41],[4,-50],[28,-197],[6,-42],[2,-3],[66,-153],[129,-245],[42,-70],[245,-389],[164,-261],[51,-40],[159,-125],[205,188],[23,-501],[-38,-50],[-65,-87],[-972,333],[-370,528],[-793,1512],[-251,451],[-218,393],[-108,171],[-179,284],[-82,155],[-81,459],[171,268],[72,114]],[[465285,550448],[-108,-752],[-1108,837],[193,295],[779,115],[244,-495]],[[997742,455375],[-1,-1],[-3,-4],[-2,-1],[-2,-3],[-11,-12],[-4,-4],[-4,16],[-10,346],[-3,106],[8,-4],[14,-67],[16,-68],[7,-85],[1,-10],[5,-104],[2,-29],[1,-19],[0,-8],[-1,-15],[-1,-7],[0,-2],[-2,-3],[-10,-22]],[[996290,461778],[40,-63],[38,-60],[4,-9],[7,-23],[3,-13],[4,-13],[0,-6],[0,-6],[0,-1],[-5,-13],[-3,-9],[-2,-6],[-7,-20],[-5,-15],[-3,-7],[-5,1],[-11,1],[-48,140],[-18,53],[-3,13],[-4,21],[0,2],[-2,14],[1,5],[1,5],[3,7],[1,5],[1,3],[3,-1],[4,0],[2,-1],[1,0],[3,-4]],[[999524,450516],[3,-8],[7,-24],[5,-15],[1,-8],[2,-8],[1,-8],[3,-15],[1,-8],[0,-41],[-5,3],[-4,2],[-49,119],[11,24],[2,5],[6,-5],[5,-4],[7,-6],[4,-3]],[[343359,784027],[25,95],[4,15],[23,34],[25,7],[13,3],[7,-5],[1,-1],[15,-11],[12,-9],[2,-2],[2,-1],[181,-160],[3,-5],[7,-10],[15,-21],[15,-115],[18,-598],[13,-434],[0,-9],[1,-37],[0,-1],[0,-19],[-1,-6],[0,-2],[-2,-7],[-2,-9],[-2,-7],[-2,-9],[-3,-6],[-1,-2],[-24,-45],[-85,-108],[-131,-167],[-28,-31],[-10,-11],[-81,50],[-14,19],[-74,149],[-1,9],[0,9],[-2,20],[-1,15],[0,12],[-1,15],[2,5],[1,1],[4,9],[8,16],[2,5],[1,1],[2,4],[19,38],[10,16],[3,4],[4,6],[13,21],[3,5],[4,3],[32,25],[-25,1237]],[[343979,782244],[2,-5],[2,-6],[-1,-3],[-1,-3],[-1,-4],[-2,-10],[0,-4],[-1,-2],[-16,-10],[-4,-2],[-1,-1],[-3,-2],[-153,-32],[-14,9],[-14,8],[-23,49],[-3,6],[84,194],[16,27],[7,10],[3,5],[3,6],[4,5],[5,5],[9,8],[4,3],[3,3],[4,3],[8,3],[7,2],[19,5],[1,0],[3,1],[3,-1],[1,0],[15,-3],[1,0],[8,-1],[6,-12],[2,-5],[4,-20],[3,-20],[6,-115],[-1,-1],[-3,-5],[-3,-10],[3,-6],[4,-6],[1,0],[2,-27],[1,-36]],[[518542,508261],[47,-42],[33,-57],[33,-64],[25,-65],[50,-159],[37,-198],[8,-157],[-12,-252],[-2,-16],[-3,-16],[-10,-30],[-2,-8],[-30,-89],[-5,-13],[-3,-6],[-28,-67],[-308,-725],[-162,-280],[-79,-54],[-156,1016],[0,272],[12,124],[4,27],[2,9],[1,9],[55,217],[53,122],[61,100],[48,77],[152,241],[55,63],[109,24],[7,-1],[8,-2]],[[520553,515856],[115,-38],[49,-104],[-29,-340],[-54,-351],[-3,-4],[-2,-4],[-54,-99],[-11,-13],[-31,17],[-24,22],[-88,103],[-29,98],[-16,115],[122,513],[44,77],[11,8]],[[835793,636804],[-494,-427],[-1288,3356],[-499,2259],[160,1653],[29,1412],[207,1345],[2070,6543],[1438,2208],[302,139],[799,-985],[147,-960],[-185,-2019],[-776,-4774],[-229,-2245],[-345,-1990],[-484,-1768],[-342,-633],[-510,-3114]],[[545797,838137],[-214,-223],[-70,1780],[66,409],[166,558],[148,499],[1273,3274],[282,410],[29,-68],[59,-137],[-163,-795],[-89,-433],[-455,-1513],[-375,-1249],[-514,-2056],[-143,-456]],[[551051,842693],[-472,-47],[-199,2602],[197,978],[826,1324],[29,48],[369,369],[89,75],[154,129],[444,-29],[323,-66],[196,-472],[-333,-449],[-351,-106],[-43,-180],[-77,-324],[-32,-419],[-33,-447],[150,-407],[-1237,-2579]],[[654061,478727],[122,-513],[47,-292],[20,-426],[-96,44],[-67,136],[-178,584],[10,259],[142,208]],[[642179,446114],[7,-24],[2,-8],[3,-9],[1,-8],[7,-77],[1,-8],[-1,-35],[-1,-17],[0,-8],[-4,-15],[-4,-15],[-26,-24],[-8,8],[-36,173],[2,8],[12,44],[4,15],[13,19],[7,9],[7,-9],[14,-19]],[[629158,450507],[15,-15],[11,-12],[3,-4],[3,-4],[4,-3],[9,-11],[6,-12],[6,-11],[1,-9],[6,-35],[3,-18],[-6,-55],[-2,-19],[-4,-12],[-2,-5],[-5,-15],[-15,-43],[-3,-8],[-11,-17],[-7,-11],[-70,-96],[-514,-216],[-134,201],[45,-43],[4,0],[8,-2],[8,-2],[7,-1],[8,-2],[8,1],[13,2],[4,1],[43,7],[76,33],[163,97],[217,139],[13,46],[-70,195],[1,15],[0,8],[5,5],[4,-2],[72,-25],[77,-42]],[[628445,450468],[-94,-84],[-3,2],[-3,2],[-3,2],[-3,14],[-4,17],[-2,37],[-2,19],[-1,9],[1,7],[2,12],[21,37],[6,12],[11,19],[3,3],[3,4],[10,10],[31,13],[8,-3],[4,-1],[1,-6],[3,-12],[11,-113]],[[628690,450600],[70,4],[83,4],[52,-11],[88,-20],[3,-8],[2,-7],[-1,-16],[-5,-9],[-16,-12],[-3,-3],[-52,-23],[-299,39],[10,75],[68,-13]],[[656235,463359],[-7,-9],[-4,-5],[-6,2],[-3,1],[-4,15],[-2,7],[1,9],[0,10],[1,19],[2,16],[4,31],[75,358],[3,6],[2,7],[6,4],[3,2],[7,2],[7,2],[6,-13],[2,-8],[3,-8],[0,-9],[0,-18],[-5,-108],[-6,-65],[-78,-228],[-5,-13],[-2,-7]],[[653489,479315],[8,-41],[-7,-75],[-5,-23],[-13,-31],[-6,-4],[-4,-1],[-4,0],[-8,4],[-1,1],[-27,23],[-17,31],[-35,79],[-11,29],[-3,6],[-4,14],[-3,17],[-2,12],[5,30],[2,8],[9,22],[5,10],[4,2],[4,1],[8,1],[4,0],[17,2],[8,-1],[8,-1],[7,-2],[11,-2],[9,-4],[4,-2],[4,-3],[7,-6],[3,-6],[3,-7],[2,-6],[2,-6],[2,-7],[14,-64]],[[655147,480028],[-45,-84],[-8,4],[-30,87],[-3,16],[-1,9],[-3,17],[0,9],[-1,17],[10,87],[2,5],[2,5],[3,3],[3,4],[3,0],[2,0],[26,-36],[3,-4],[5,-7],[12,-29],[21,-79],[0,-6],[1,-14],[-2,-4]],[[654748,480451],[161,-126],[47,-118],[-39,-104],[-25,-52],[-9,-3],[-6,3],[-79,49],[-106,176],[-3,6],[-6,18],[-4,17],[-3,12],[-8,98],[0,7],[2,23],[49,32],[3,0],[3,0],[4,-3],[4,-2],[15,-33]],[[299588,634799],[26,-53],[14,-27],[-4,-47],[-33,-87],[-26,-71],[-282,-192],[-25,6],[-32,8],[-63,72],[-66,75],[-43,256],[2,22],[21,175],[252,-68],[259,-69]],[[300813,634845],[91,-96],[-2,-206],[-373,-92],[-27,-6],[-36,514],[347,-114]],[[302393,632419],[-4,0],[-10,-2],[-1,4],[-6,14],[-2,6],[-1,10],[-13,120],[-1,10],[-1,9],[6,128],[7,126],[6,41],[22,31],[1,1],[6,9],[3,4],[1,2],[6,3],[3,2],[1,0],[3,2],[3,-5],[1,-1],[2,-5],[4,-25],[1,-8],[2,-8],[2,-392],[-1,-4],[-3,-9],[-3,-12],[-1,-2],[-6,-8],[-2,-4],[-1,-1],[-24,-36]],[[301412,632962],[-1,-27],[-1,-33],[-2,-48],[0,-9],[-3,-8],[-2,-8],[-3,-8],[-2,-8],[-15,-22],[-54,-5],[-5,0],[-4,0],[-4,0],[-4,0],[-4,0],[-5,0],[-5,8],[-2,3],[-5,24],[-21,90],[-2,8],[-1,2],[-1,6],[1,5],[0,3],[2,17],[1,5],[0,4],[21,56],[77,87],[35,40],[4,-89],[4,-75],[1,-18]],[[301337,633452],[-1,-1],[-2,-4],[-3,-5],[-3,-6],[-4,4],[-3,4],[-4,4],[-3,13],[-9,49],[-4,42],[9,163],[5,81],[2,16],[2,16],[1,16],[1,6],[0,2],[4,5],[3,3],[5,6],[18,20],[2,2],[3,1],[5,2],[19,7],[1,0],[4,1],[1,-9],[2,-18],[-30,-296],[-5,-56],[-16,-68]],[[298792,634117],[17,-4],[14,-3],[-25,-164],[-28,-177],[-3,-17],[-1,-8],[-5,-26],[-6,-13],[-16,-33],[-14,-31],[-3,-6],[-9,-19],[-4,-5],[-16,-19],[-3,-4],[-1,-2],[-7,-8],[-10,-5],[-1,0],[-3,-2],[-1,0],[-3,-2],[-3,5],[-5,11],[2,8],[2,8],[2,8],[22,145],[15,99],[2,35],[0,6],[0,3],[1,7],[1,11],[2,18],[2,9],[0,5],[1,3],[1,11],[7,56],[2,10],[0,7],[5,10],[1,3],[2,3],[2,5],[46,53],[15,7],[3,2]],[[301366,634183],[58,-272],[20,-95],[-189,283],[-65,260],[57,-57],[119,-119]],[[300220,635345],[99,-439],[-137,124],[-199,179],[-62,89],[-8,12],[-10,35],[-23,82],[-1,6],[-1,1],[-1,6],[-7,30],[3,17],[1,9],[11,20],[25,49],[3,6],[4,3],[3,2],[27,18],[2,0],[3,0],[33,4],[19,3],[9,1],[11,1],[2,0],[2,1],[8,0],[8,0],[3,-1],[4,0],[114,-53],[22,-16],[13,-9],[3,-24],[17,-156]],[[22820,451967],[1,-9],[2,-17],[4,-49],[38,-402],[2,-30],[1,-7],[0,-9],[3,-49],[0,-3],[-1,-6],[-9,-99],[-5,-47],[-4,0],[-5,0],[-4,0],[-5,0],[-4,0],[-5,0],[-4,0],[-5,0],[-4,0],[-118,22],[-15,31],[-57,122],[-3,7],[-9,30],[-6,21],[-1,3],[0,3],[-3,12],[-1,26],[-3,53],[-1,5],[0,4],[0,9],[0,18],[1,10],[0,9],[10,294],[9,39],[184,45],[3,-3],[4,-3],[3,-3],[0,-1],[2,-6],[4,-13],[1,-4],[0,-3]],[[24415,450711],[45,-90],[9,-17],[11,-22],[3,-7],[3,-6],[1,-2],[2,-4],[2,-13],[2,-14],[2,-8],[5,-31],[1,-5],[-1,-4],[-3,-13],[-6,-35],[-44,-235],[-17,-87],[-2,-4],[-1,-1],[-6,-11],[-3,-5],[-3,3],[-10,10],[-14,25],[-24,46],[-98,183],[-8,16],[-5,9],[-3,7],[-3,5],[0,7],[1,20],[0,18],[4,3],[153,251],[4,5],[3,6]],[[20922,455085],[-4,-3],[-60,-31],[-8,-4],[0,-1],[-8,-4],[-6,-3],[-3,-1],[-8,-5],[-3,8],[-10,30],[-5,16],[-1,9],[-24,202],[-2,11],[0,7],[-3,33],[2,8],[1,5],[3,11],[1,4],[2,12],[5,1],[11,2],[23,6],[14,3],[3,1],[3,1],[6,1],[3,-4],[6,-9],[68,-160],[0,-9],[0,-9],[0,-5],[0,-4],[0,-3],[0,-6],[0,-9],[0,-4],[0,-5],[0,-4],[0,-4],[0,-9],[0,-9],[0,-4],[0,-5],[0,-4],[0,-5],[0,-9],[-3,-16],[0,-2],[-2,-13],[-1,-8]],[[13306,380808],[-48,-73],[-3,-6],[-3,-6],[-1,-4],[-1,-3],[-2,-5],[0,-2],[-2,-8],[-1,-4],[-2,-7],[0,-7],[0,-6],[2,-7],[3,-7],[14,-18],[151,-113],[1,0],[2,-1],[3,-2],[1,0],[5,-1],[13,-5],[1,0],[1,0],[4,1],[21,7],[1,1],[46,36],[29,34],[34,77],[0,5],[-2,16],[-2,18],[-8,31],[-7,28],[-11,-11],[-7,51],[15,114],[55,44],[8,7],[3,1],[5,1],[8,2],[1,0],[9,-5],[46,-27],[40,-25],[22,-15],[3,-2],[3,-4],[3,-4],[4,-5],[3,-6],[2,-2],[1,-1],[1,-3],[8,-16],[9,-18],[1,-2],[1,-2],[2,-6],[3,-5],[2,-5],[1,-3],[2,-7],[0,-4],[1,-4],[0,-8],[-1,-11],[0,-5],[-1,-2],[-1,-6],[0,-2],[-2,-6],[-183,-540],[-223,-25],[-194,240],[-82,101],[-114,153],[-35,48],[-1,0],[-2,4],[-2,3],[-2,5],[-1,1],[-2,3],[-4,9],[-6,14],[-1,4],[-2,4],[-2,11],[-1,1],[-9,68],[-5,39],[-22,196],[26,92],[27,67],[18,-6],[3,-1],[330,-458]],[[14149,378998],[-7,-11],[-1,1],[-6,9],[-105,182],[-8,15],[-46,106],[-4,13],[-12,76],[0,3],[-1,3],[-1,17],[-1,15],[7,93],[3,15],[2,8],[2,14],[2,8],[5,23],[2,8],[11,42],[2,8],[88,316],[2,2],[3,6],[10,22],[1,2],[6,12],[5,7],[2,4],[4,0],[3,0],[4,0],[3,0],[8,-38],[4,-88],[10,-200],[5,-105],[3,-84],[11,-401],[-2,-25],[-2,-33],[-12,-45]],[[14518,386190],[0,-4],[0,-2],[-2,-24],[-11,-81],[-6,-47],[-4,-8],[-8,-16],[-64,83],[-1,2],[-1,4],[-1,4],[0,3],[-1,7],[0,6],[0,9],[1,13],[8,24],[34,8],[29,9],[1,0],[14,12],[12,-2]],[[15567,388249],[4,2],[2,-6],[3,-7],[0,-2],[2,-4],[0,-7],[0,-14],[0,-2],[-2,-6],[-4,-13],[-1,-3],[-40,-107],[-4,-8],[-3,-5],[-26,15],[-1,11],[7,20],[2,4],[0,2],[4,5],[2,3],[1,2],[1,0],[3,6],[3,9],[2,8],[3,9],[0,5],[3,44],[1,11],[0,11],[0,41],[0,3],[6,-1],[6,-1],[21,-20],[5,-5]],[[15722,388761],[-104,-121],[36,126],[49,170],[28,-88],[-9,-87]],[[15882,389087],[-1,-7],[-1,-10],[-3,-10],[-2,-7],[-4,-14],[-3,-5],[-3,-6],[-5,-5],[-3,-2],[-6,-3],[-3,0],[-2,-1],[-1,0],[-88,-10],[-25,4],[-1,0],[3,13],[1,6],[2,7],[9,16],[7,13],[25,43],[12,22],[67,84],[34,-43],[2,-1],[-11,-84]],[[13662,389332],[79,-33],[7,-3],[1,-1],[2,-1],[1,-1],[3,-6],[2,-8],[3,-7],[0,-1],[36,-122],[1,-9],[3,-15],[3,-21],[2,-10],[1,-7],[1,-9],[4,-47],[-2,-12],[-4,-30],[-5,-33],[-3,-16],[-2,-10],[-1,-6],[-4,-18],[-14,-33],[-6,-5],[-4,-3],[-29,-5],[-27,-5],[-31,8],[-4,4],[-2,1],[-11,27],[-49,114],[-8,140],[1,28],[2,18],[2,16],[14,55],[21,51],[17,15]],[[15924,389507],[2,-12],[5,-38],[0,-20],[0,-23],[-1,-4],[-1,-4],[-3,-4],[-2,-1],[-1,-2],[-4,-2],[-1,0],[-6,1],[-3,0],[-3,6],[-2,6],[-30,103],[-25,86],[-8,41],[-1,55],[8,0],[8,0],[1,0],[3,0],[32,-94],[32,-94]],[[13824,389435],[-3,-3],[-9,6],[-11,34],[0,14],[1,74],[2,19],[1,9],[0,6],[1,3],[17,61],[3,10],[1,5],[9,20],[4,2],[3,1],[1,0],[3,1],[3,1],[17,-19],[23,-87],[0,-1],[0,-6],[0,-7],[1,-6],[-1,-8],[-2,-9],[-1,-8],[-1,-10],[-5,-14],[-5,-15],[-2,-5],[-1,-2],[-11,-18],[-6,-10],[-6,-8],[-3,-5],[-5,-6],[-18,-19]],[[14870,394802],[35,-44],[9,-11],[3,-5],[8,-9],[4,-5],[5,-12],[9,-17],[3,-6],[-28,-106],[-6,-25],[-1,-3],[-1,-5],[-25,-15],[-17,1],[-6,0],[-2,0],[-3,5],[-4,4],[-3,5],[-11,14],[-3,4],[-1,4],[-31,106],[5,27],[2,9],[9,32],[3,8],[0,1],[2,7],[5,16],[4,3],[4,4],[4,3],[4,4],[24,6]],[[16615,395275],[3,-20],[-3,-38],[-4,-59],[-2,-15],[-1,-15],[-4,-4],[-1,0],[-3,4],[-3,3],[-17,23],[-3,7],[-4,7],[-3,5],[-2,8],[-4,21],[-1,9],[0,1],[-5,131],[23,1],[14,-21],[6,-10],[3,-3],[2,-4],[7,-23],[2,-8]],[[16404,395463],[-2,-29],[-12,-16],[-53,-75],[-13,-9],[-13,11],[-14,11],[13,41],[11,34],[3,4],[6,8],[32,23],[42,-3]],[[16714,395274],[-4,-20],[-2,-8],[-7,4],[-40,20],[-34,150],[7,31],[3,10],[9,35],[8,25],[2,4],[1,4],[24,35],[3,0],[0,-1],[14,-62],[10,-139],[6,-88]],[[16828,396036],[51,-99],[52,-169],[1,-11],[6,-46],[-5,-54],[-2,-7],[-37,-49],[-20,-27],[-4,65],[-76,32],[-45,-4],[-49,-4],[-25,-31],[-60,-80],[-48,-89],[-6,-2],[-5,-2],[-2,0],[0,-1],[-1,0],[-17,-3],[-22,-5],[-3,8],[-2,6],[-1,3],[-24,141],[-6,61],[-1,12],[-1,11],[7,24],[3,13],[5,12],[97,151],[79,123],[59,60],[10,6],[1,0],[2,0],[2,-1],[1,0],[86,-44]],[[17369,411589],[0,-7],[0,-5],[0,-2],[-4,-13],[-5,-21],[-68,-158],[-4,-9],[0,-1],[-14,-24],[-6,-1],[-2,2],[-12,10],[-14,18],[-6,14],[-7,15],[-1,3],[0,1],[-1,5],[-1,5],[-6,31],[-1,9],[-1,6],[11,58],[3,12],[0,2],[81,75],[34,32],[3,1],[11,3],[4,-16],[5,-21],[1,-16],[0,-4],[0,-4]],[[12128,413379],[-2,-1],[-1,-1],[-7,-4],[-3,-2],[-1,0],[-7,1],[-15,3],[-2,1],[-2,2],[-21,19],[-2,2],[-16,32],[-17,35],[-3,7],[-2,7],[-16,41],[-3,9],[-1,2],[-2,5],[-1,8],[-1,12],[-1,14],[-1,9],[0,8],[1,8],[2,11],[1,6],[1,4],[1,4],[19,91],[24,33],[8,9],[4,4],[3,3],[9,8],[3,2],[4,3],[23,17],[9,7],[8,3],[2,0],[5,2],[4,2],[1,0],[3,0],[7,1],[3,1],[4,-4],[2,-2],[5,-4],[4,-5],[8,-8],[2,-1],[5,-5],[13,-21],[1,-2],[2,-3],[6,-10],[7,-17],[9,-20],[0,-3],[1,-5],[2,-12],[2,-12],[1,-15],[1,-14],[0,-3],[-3,-61],[-8,-65],[-2,-8],[-2,-7],[-5,-17],[-3,-12],[-2,-4],[0,-1],[-13,-30],[-9,-19],[-24,-20],[-22,-18]],[[330710,569850],[42,0],[50,-11],[0,-4],[1,-11],[1,-15],[-6,-40],[-2,-8],[-1,-8],[-1,-7],[-85,-301],[-148,-3480],[-15,-226],[-140,-143],[-16,-17],[-53,-53],[-96,-91],[-32,-31],[-16,-13],[-63,-52],[-134,-21],[-1888,-157],[-50,213],[112,118],[102,109],[346,318],[114,104],[277,232],[265,629],[-6,639],[-5,631],[-45,293],[-31,142],[-25,115],[-82,102],[-65,81],[451,592],[452,158],[311,109],[481,104]],[[331894,572686],[-4,-37],[-15,-136],[-12,-77],[-24,-156],[-119,-131],[-53,-59],[-91,-87],[-80,-77],[-373,-320],[-112,32],[12,88],[11,76],[357,660],[435,347],[4,1],[15,5],[1,0],[8,3],[7,-3],[5,-2],[6,-2],[6,-2],[2,-5],[3,-6],[1,-4],[7,-30],[1,-17],[1,-35],[1,-18],[0,-8]],[[530719,705497],[-420,-663],[-338,212],[-158,324],[37,703],[562,34],[322,-398],[-5,-212]],[[610412,458665],[-285,-105],[-127,212],[848,1888],[-15,-621],[-165,-948],[-256,-426]],[[609904,467777],[-162,-260],[-413,1029],[-182,67],[-192,2329],[373,307],[188,-1704],[233,-267],[195,-1198],[-40,-303]],[[610572,474069],[-228,-608],[-203,227],[-50,240],[232,1405],[-84,142],[-20,1029],[36,361],[85,-75],[259,-239],[32,-949],[103,-86],[-162,-1447]],[[69944,620929],[-415,-737],[-1664,-1939],[-214,133]],[[67651,618386],[-754,468],[-270,3058],[192,1231]],[[66819,623143],[314,759]],[[67133,623902],[25,271]],[[67158,624173],[-53,147],[-117,320],[-57,535],[12,89],[34,235],[26,26],[76,73],[850,-836]],[[67929,624762],[947,-933]],[[68876,623829],[839,-2009],[253,-607]],[[69968,621213],[-14,-166],[-10,-118]],[[64885,629972],[132,130]],[[65017,630102],[641,-583]],[[65658,629519],[341,22],[666,-854],[20,-272],[16,-220],[-25,-31],[-341,-430],[-161,-75],[-546,-252],[-54,42],[-91,70],[-270,637],[-456,1077],[27,351]],[[64784,629584],[25,313],[76,75]],[[63385,630407],[-341,75],[167,736]],[[63211,631218],[1486,-361],[-227,-511],[-208,-134],[-877,195]],[[61165,634122],[287,-802]],[[61452,633320],[92,-621],[167,-343],[58,151]],[[61769,632507],[292,-854],[-135,-56]],[[61926,631597],[-191,-79],[-956,312],[-7,2],[-443,1487],[108,103],[728,700]],[[57425,635669],[-8,-75],[-226,-384],[-83,-142],[-77,25],[-357,114],[-261,364],[-265,370],[151,682],[404,498]],[[56703,637121],[293,22],[252,18],[37,-43]],[[57285,637118],[181,-206],[8,-69],[41,-358],[-90,-816]],[[330076,584871],[71,-28],[26,-60],[8,-18],[1,-6],[36,-188],[1,-8],[2,-18],[3,-27],[10,-79],[0,-5],[1,-4],[0,-5],[0,-4],[3,-84],[1,-19],[-17,-300],[-37,-255],[-32,-227],[-2,-9],[-1,-8],[-2,-9],[-2,-16],[-2,-11],[-70,-129],[-4,-2],[-5,-2],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-3,-1],[-2,-1],[-4,-1],[-3,0],[-2,0],[-10,-2],[-2,2],[-10,10],[-4,4],[-25,33],[-25,33],[-38,55],[-56,83],[-39,98],[-7,20],[-13,47],[-18,65],[-4,220],[2,12],[1,6],[2,19],[8,52],[1,4],[0,5],[24,141],[3,15],[6,31],[2,8],[117,365],[25,77],[0,1],[5,12],[3,7],[3,7],[8,20],[32,48],[3,2],[1,2],[6,6],[3,2],[7,6],[9,9],[4,4],[9,1],[4,1],[4,0]],[[329322,580162],[-7,1],[-3,1],[-4,4],[-3,5],[-14,20],[-1,3],[-1,3],[-1,4],[-3,8],[-4,12],[-1,6],[11,105],[3,5],[3,4],[4,1],[18,5],[12,3],[14,3],[9,2],[55,-62],[1,-1],[2,-6],[5,-12],[0,-1],[-4,-10],[-2,-4],[-12,-27],[-3,-6],[-69,-61],[-5,-5]],[[329696,581083],[0,-10],[1,-7],[0,-17],[1,-17],[1,-18],[0,-2],[0,-7],[-2,-12],[0,-2],[-1,-7],[-12,-45],[-31,-105],[-37,-21],[-4,1],[-3,1],[-32,46],[-3,15],[2,14],[1,7],[29,75],[45,112],[33,18],[4,0],[3,0],[3,-13],[1,-2],[1,-4]],[[329959,582690],[-4,-13],[-4,-9],[-21,-63],[-12,-36],[-2,-4],[-1,-3],[-8,-6],[-35,-27],[-13,1],[-3,1],[-1,0],[-3,0],[-3,0],[-1,0],[-1,1],[-2,0],[-24,10],[-32,12],[-16,37],[9,14],[133,220],[69,79],[2,2],[2,-18],[1,-3],[0,-5],[-1,-9],[0,-4],[0,-5],[-1,-7],[0,-2],[-4,-36],[-5,-30],[-19,-97]],[[322454,570223],[-106,-46],[-270,-116],[-546,317],[-440,256],[70,201],[90,259],[1079,340],[211,299],[21,30],[5,-12],[92,-230],[147,-895],[-353,-403]],[[320676,614843],[1,-7],[0,-2],[6,-36],[1,-9],[2,-9],[-3,-15],[-24,-66],[-1,-2],[-2,-4],[-5,-12],[-7,-14],[-5,-13],[-15,-15],[-4,-4],[-2,-2],[-2,-2],[-119,-84],[-68,-47],[-39,-24],[-1,-1],[-17,-2],[-22,-2],[-80,6],[-8,3],[-13,4],[-4,2],[-2,6],[-1,6],[4,13],[1,2],[2,4],[188,316],[14,24],[203,32],[3,-5],[0,-1],[19,-40]],[[320222,614811],[1,-9],[0,-6],[1,-15],[-2,-8],[-1,-5],[-1,-2],[-40,-14],[-5,1],[-8,0],[-4,1],[-14,6],[-71,33],[2,12],[5,30],[19,34],[19,35],[4,0],[7,-1],[4,0],[17,-11],[26,-16],[28,-40],[12,-23],[1,-2]],[[321333,615167],[-29,-44],[-1,0],[-3,-5],[-266,-391],[-46,-24],[-1,3],[0,4],[-1,6],[-1,7],[11,158],[12,32],[1,3],[3,7],[61,154],[89,41],[132,57],[17,4],[3,1],[2,0],[13,3],[4,-16]],[[321299,616616],[31,-36],[4,-4],[1,-1],[3,-4],[4,-5],[12,-13],[4,-7],[2,-5],[23,-41],[32,-56],[2,-4],[1,-2],[4,-6],[37,-95],[1,-5],[1,-11],[2,-22],[1,-2],[-2,-8],[-1,-8],[-2,-5],[-6,-10],[-4,-1],[-8,-2],[-4,2],[-15,8],[-94,71],[-160,119],[10,61],[10,65],[47,16],[45,14],[6,-1],[6,-1],[7,-1]],[[320107,610895],[5,-8],[17,-23],[98,-135],[13,-18],[12,-17],[1,0],[1,0],[1,-1],[12,-3],[9,-2],[28,51],[36,34],[16,5],[12,1],[26,2],[204,-13],[3,-47],[1,-31],[-166,-137],[-79,-61],[-65,-44],[-47,-22],[-157,-42],[-146,-40],[-71,-5],[-98,-8],[-10,15],[-19,27],[0,40],[0,235],[42,106],[28,69],[249,86],[44,-14]],[[320181,614356],[58,-7],[16,-2],[7,-4],[25,-16],[76,-79],[8,-9],[14,-17],[1,-1],[1,-1],[0,-2],[-6,-39],[0,-1],[0,-1],[-17,-32],[-4,-4],[-29,-10],[-275,-94],[-12,-4],[-8,7],[-9,7],[-15,48],[-1,3],[0,2],[-2,5],[0,3],[-1,2],[-1,4],[0,1],[-2,14],[-1,9],[0,8],[0,1],[0,6],[0,6],[0,5],[1,9],[0,3],[1,6],[48,72],[6,9],[121,93]],[[319738,614331],[12,-7],[35,-38],[24,-25],[10,-15],[28,-42],[10,-16],[44,-91],[-10,-44],[-22,-16],[-24,-9],[-42,-18],[-12,0],[-19,-1],[-43,21],[-34,21],[-32,27],[-2,7],[-1,6],[-3,24],[-3,24],[-28,37],[-11,16],[-182,39],[-17,-11],[-44,-16],[-2,2],[-3,3],[-2,2],[-22,36],[0,1],[-6,24],[-2,12],[9,13],[9,11],[25,17],[2,1],[87,44],[22,7],[27,9],[61,15],[8,-1],[59,-27],[49,-21],[23,-11],[22,-10]],[[789111,566428],[-147,-1075],[-117,120],[-223,1164],[40,395],[224,539],[220,-473],[3,-670]],[[962838,419239],[153,-526],[123,-423],[122,-622],[63,-321],[524,-85],[21,-4],[212,-32],[110,-558],[197,-1003],[166,-1336],[-28,-238],[-483,-418],[-32,22],[-22,16],[-168,6],[-4,-2],[-3,0],[-4,-1],[-3,-1],[-36,-10],[-1,0],[-1,0],[-66,-22],[-1,-1],[-3,-2],[-1,-1],[-3,-2],[-4,-3],[-5,-3],[-7,-8],[0,-1],[-9,-9],[-1,-1],[-1,-1],[-26,-39],[-143,-322],[-215,156],[-100,433],[-79,342],[-143,795],[-165,1615],[-141,1388],[-8,85],[3,54],[21,429],[53,458],[0,1],[0,1],[1,7],[3,14],[3,7],[6,12],[26,40],[2,3],[97,111]],[[971732,386806],[23,0],[8,-2],[3,-1],[1,-1],[8,-2],[125,-132],[5,-6],[1,0],[8,-11],[3,-3],[6,-10],[1,-6],[3,-9],[2,-7],[2,-7],[15,-71],[1,-5],[4,-23],[4,-34],[-2,-19],[-7,-46],[-7,-48],[-3,-19],[-1,-6],[-17,-62],[-4,-14],[-3,-7],[-2,-7],[-5,-13],[-3,-7],[-1,-2],[-1,-4],[-1,-2],[-2,-4],[-19,-48],[-5,-8],[-7,-12],[-43,-31],[-80,37],[-124,54],[-16,6],[-16,6],[-1,1],[0,1],[-2,4],[0,1],[-2,5],[-2,2],[0,1],[-2,4],[-40,130],[-12,44],[-18,99],[1,52],[2,48],[2,48],[2,5],[1,2],[9,28],[17,38],[13,17],[26,20],[49,25],[46,7],[57,4]],[[972882,390503],[1,-3],[0,-10],[0,-9],[-14,-144],[-22,-54],[-7,-3],[-30,6],[-3,1],[-10,32],[-2,7],[-2,7],[-13,47],[-5,34],[-7,57],[107,35],[6,-1],[1,-2]],[[970320,391636],[61,-1],[28,-8],[29,-10],[3,-2],[2,-3],[1,-6],[1,-4],[1,-2],[1,-10],[3,-19],[-5,-51],[169,-658],[64,-246],[153,-198],[-90,-563],[-10,-56],[-2,-12],[-1,-2],[-5,-20],[-26,-72],[-10,-30],[-16,-20],[-1,-1],[-7,-3],[-1,0],[-16,2],[-12,1],[-7,4],[-3,2],[-22,14],[-95,58],[-20,15],[-56,47],[-34,54],[-3,6],[-2,4],[-3,5],[-109,235],[-121,303],[-49,169],[-13,62],[-28,125],[-6,41],[-6,45],[0,3],[-1,14],[0,6],[0,4],[1,6],[0,3],[75,582],[16,41],[30,35],[11,14],[21,23],[9,9],[75,61],[26,4]],[[969751,395753],[82,-62],[6,-6],[1,-1],[2,-2],[9,-12],[4,-5],[3,-8],[21,-50],[46,-145],[364,-1139],[17,-27],[7,-13],[52,-152],[4,-12],[19,-99],[7,-65],[2,-39],[0,-78],[-11,-39],[-40,-99],[-5,-11],[-7,-15],[-11,-24],[0,-1],[-3,-5],[-6,-11],[-3,-6],[-3,-4],[-10,-14],[-54,-69],[-2,-1],[-4,-2],[-1,0],[-2,-1],[-4,3],[-3,1],[-1,1],[-4,2],[-15,10],[-449,343],[-21,18],[-29,28],[-62,59],[-192,201],[-5,6],[-3,4],[-20,32],[-1,3],[-4,15],[0,1],[-1,4],[-1,0],[0,4],[-1,3],[-2,9],[-1,6],[-3,119],[4,650],[11,220],[5,95],[1,8],[1,8],[1,1],[0,1],[9,50],[6,20],[1,4],[7,21],[15,44],[27,59],[40,81],[5,9],[16,23],[16,19],[4,2],[4,3],[147,27],[10,1],[1,-1],[5,0],[2,0]],[[967767,402189],[239,-305],[265,-593],[-6,-158],[-3,-85],[-38,-303],[-1,-7],[-1,-5],[-5,-37],[-1,-6],[-1,-4],[-2,-5],[-2,-9],[-9,-20],[-4,-8],[-13,-18],[-7,-9],[-2,-3],[-125,-107],[-3,-2],[-7,-6],[-7,0],[-1,0],[-2,0],[-2,0],[-7,2],[-15,4],[-469,450],[-149,37],[-154,38],[-2,-10],[-2,-9],[-3,-9],[-2,-7],[-16,-30],[-3,-3],[-1,-1],[-4,-3],[-1,-1],[-2,-2],[-3,-3],[-1,-1],[-1,0],[-7,-6],[-7,-7],[-2,0],[-1,1],[-2,0],[-2,0],[-2,1],[-18,35],[-11,23],[-3,223],[47,232],[4,17],[14,57],[21,51],[5,11],[1,3],[2,3],[292,636],[242,-42]],[[967472,402346],[1,-1],[2,-1],[5,-10],[2,-3],[13,-35],[5,-13],[2,-5],[1,-2],[2,-8],[2,-6],[8,-27],[0,-1],[1,-7],[0,-5],[-7,-8],[-7,-8],[-128,-119],[-63,-58],[-10,6],[-23,13],[19,136],[19,25],[39,53],[46,44],[35,34],[6,3],[19,11],[2,-2],[6,-4],[3,-2]],[[967743,402484],[-5,-8],[-1,0],[0,-1],[-4,-1],[-1,0],[-1,-1],[-3,-1],[-3,0],[-2,0],[-1,0],[-5,0],[-27,9],[-17,5],[-20,23],[-25,31],[-2,5],[-1,3],[-3,9],[-1,4],[-2,8],[-10,37],[-8,27],[-35,142],[3,23],[5,48],[16,29],[2,3],[5,6],[3,3],[1,2],[1,1],[7,4],[11,6],[1,0],[3,2],[2,-1],[3,-1],[2,-3],[6,-6],[1,-1],[1,-1],[3,-9],[2,-6],[34,-124],[56,-202],[3,-14],[4,-17],[3,-20],[0,-3],[-1,-10]],[[967680,404770],[-2,-2],[-1,-1],[-7,-8],[-10,-5],[-2,-1],[-4,-2],[-1,-1],[-2,-1],[-9,1],[-8,1],[-3,4],[-39,39],[-1,25],[0,12],[-1,44],[1,7],[1,4],[0,3],[132,212],[3,4],[1,1],[5,8],[7,7],[9,9],[4,2],[4,1],[10,-1],[3,-1],[1,0],[6,-1],[38,-26],[42,-61],[3,-4],[0,-1],[2,-3],[5,-7],[1,-3],[1,-3],[0,-7],[-1,-11],[-1,-3],[0,-1],[-2,-4],[-1,-2],[-2,-3],[-11,-17],[-171,-204]],[[968302,406090],[3,-3],[0,-1],[3,-3],[6,-16],[5,-24],[2,-10],[0,-16],[-2,-68],[-2,-9],[-1,-4],[-4,-8],[-64,-163],[-2,-4],[-1,-3],[0,-1],[-50,-42],[-9,-4],[-4,-2],[-2,0],[-15,3],[-26,10],[-3,19],[-1,7],[-1,27],[-1,22],[0,21],[0,68],[0,23],[1,14],[1,32],[5,48],[3,34],[3,8],[1,3],[23,24],[37,39],[43,1],[16,1],[36,-23]],[[967188,407894],[14,-9],[10,-23],[26,-62],[602,-1119],[-131,-147],[-396,-135],[-38,28],[-121,87],[-25,62],[-16,39],[-6,21],[-13,44],[-51,268],[-22,116],[42,446],[20,104],[29,154],[34,86],[4,10],[4,7],[11,18],[23,5]],[[967626,408381],[5,-1],[12,-2],[4,-8],[3,-7],[4,-9],[5,-11],[4,-13],[8,-24],[11,-56],[9,-52],[1,-7],[1,-6],[0,-6],[0,-2],[0,-4],[0,-13],[-2,-34],[-2,-3],[-3,-7],[-13,-22],[-1,-1],[-12,-10],[-37,-2],[-3,0],[-25,15],[-29,23],[-9,15],[-5,13],[-5,12],[-27,96],[-1,36],[5,54],[3,16],[4,10],[1,4],[3,7],[3,3],[2,1],[25,11],[2,1],[1,0],[2,1],[2,0],[7,-1],[2,-1],[2,0],[4,-1],[39,-15]],[[967360,408691],[6,-17],[23,-56],[-12,-295],[-1,-17],[0,-8],[-5,-21],[-2,-9],[-3,-9],[-4,-9],[-8,-6],[-8,-7],[-10,-6],[-3,-2],[-6,-2],[-20,-5],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-12,7],[-6,3],[-3,3],[-7,11],[-4,6],[-10,28],[-2,7],[0,5],[-1,1],[0,1],[0,3],[-1,2],[1,3],[0,3],[0,5],[0,1],[7,62],[13,118],[8,52],[18,91],[28,69],[33,-10]],[[967196,410515],[322,-988],[2,-10],[3,-14],[16,-85],[0,-14],[-1,-14],[-4,-31],[-7,-44],[-12,-33],[-8,-25],[-8,-18],[-7,-16],[-33,-53],[-19,-13],[-9,-5],[-2,-2],[-39,-14],[-3,-1],[-14,-5],[-26,-6],[-192,-28],[-65,-10],[-75,-10],[-12,-2],[-30,26],[-99,86],[-137,123],[-47,42],[-71,67],[-174,251],[-3,4],[-1,3],[-1,6],[-19,155],[0,39],[-1,31],[0,2],[0,7],[2,8],[7,12],[9,17],[6,5],[7,5],[12,11],[3,2],[730,539]],[[964640,411887],[91,-104],[66,-131],[195,-687],[16,-114],[65,-222],[52,-84],[51,-84],[119,-150],[119,-150],[520,-871],[47,-78],[140,-460],[-16,-157],[-25,-251],[-36,-119],[-159,-17],[-189,4],[-196,4],[-445,115],[-99,1507],[-23,313],[-40,120],[-71,216],[-122,-27],[-371,499],[21,346],[25,430],[3,38],[6,33],[1,4],[3,12],[13,26],[3,7],[9,17],[51,52],[29,29],[6,3],[6,2],[3,1],[3,1],[3,-1],[5,-1],[23,-10],[22,-10],[54,-36],[22,-15]],[[964350,413455],[26,-10],[111,-41],[77,-134],[20,-35],[-2,-144],[-2,-185],[-6,-54],[-5,-25],[-6,-27],[-16,-45],[-3,-4],[-5,-6],[-12,-12],[-22,-20],[-13,-10],[-6,-5],[-5,-1],[-7,-2],[-25,17],[-4,3],[-1,1],[-11,9],[-2,1],[-1,1],[-4,3],[-2,2],[-6,4],[-15,16],[-1,0],[0,1],[-8,8],[-4,5],[-4,3],[-4,4],[-6,7],[-161,176],[-7,9],[-15,16],[0,1],[-2,3],[-1,2],[-1,2],[-5,9],[-6,12],[-2,2],[-2,3],[-25,57],[-10,24],[-10,30],[-4,16],[0,1],[-1,14],[0,6],[0,29],[0,19],[0,2],[2,20],[10,107],[13,42],[4,8],[0,2],[45,42],[13,6],[13,5],[34,4],[59,6],[4,1],[4,0],[4,0],[9,0],[4,1],[5,-1],[3,-1]],[[964641,413653],[-1,0],[-4,-1],[-5,1],[-4,1],[-4,6],[-4,5],[-3,8],[-1,2],[-1,4],[-1,1],[-1,2],[-1,2],[-1,3],[-2,6],[0,1],[0,1],[-5,11],[-4,16],[-1,4],[2,12],[2,10],[59,170],[15,43],[2,1],[1,1],[4,2],[3,-2],[3,-2],[2,-3],[1,-2],[2,-4],[1,-3],[1,-3],[3,-14],[2,-7],[2,-7],[1,-8],[1,-5],[0,-2],[3,-19],[2,-16],[3,-31],[0,-3],[1,-8],[0,-14],[0,-5],[0,-1],[-1,-6],[0,-1],[-2,-15],[-2,-11],[0,-2],[-1,-3],[-1,-2],[-9,-22],[-2,-5],[-7,-17],[-2,-6],[-17,-31],[-7,-8],[-1,-1],[-2,-3],[-3,-3],[-10,-10],[-1,-2],[-2,-1],[-1,-1],[-2,-3]],[[964492,413980],[24,-190],[7,-50],[1,-35],[0,-16],[-1,-13],[-1,-1],[0,-6],[-3,-14],[-6,-38],[-2,-4],[-1,-3],[-2,-7],[-6,-15],[-9,-16],[-2,-2],[-1,-2],[-1,-1],[-3,-3],[-12,-8],[-2,-1],[-1,-1],[-2,-1],[-6,-3],[-2,-1],[-2,0],[-26,-12],[-114,18],[-10,1],[-20,11],[-37,19],[-7,5],[-1,3],[-4,5],[-3,5],[-3,6],[-1,6],[1,9],[6,28],[4,18],[1,4],[1,5],[2,7],[5,13],[0,1],[0,1],[74,165],[2,4],[55,96],[24,30],[3,4],[21,21],[4,2],[3,0],[3,-1],[1,0],[3,-1],[4,-2],[17,-8],[8,-4],[4,-2],[1,0],[0,-1],[3,-4],[1,-1],[1,-1],[1,-2],[3,-6],[2,-5],[0,-2],[1,-4]],[[967127,414493],[3,-3],[0,-1],[4,-5],[2,-8],[2,-8],[65,-388],[11,-242],[111,-986],[75,-673],[-167,-606],[-56,-203],[-84,881],[-56,599],[-5,993],[14,310],[14,298],[4,17],[4,7],[7,16],[13,11],[18,-1],[13,-1],[1,0],[7,-7]],[[966567,415526],[12,-4],[37,-13],[6,-89],[4,-65],[-156,-546],[-2,-4],[-3,-7],[-5,-10],[-1,-2],[-64,-131],[-59,-122],[-61,-117],[-26,-41],[-3,-4],[-28,-24],[-2,-1],[-4,-2],[-13,-6],[-299,35],[-24,5],[-16,3],[-1,1],[-3,1],[-12,13],[-74,104],[-7,15],[-6,14],[2,52],[6,48],[6,40],[69,138],[47,83],[33,58],[17,24],[18,26],[218,285],[7,6],[229,175],[133,64],[8,2],[3,1],[1,0],[2,0],[3,0],[8,-5]],[[966839,417751],[57,-61],[23,-125],[7,-36],[28,-197],[43,-306],[65,-501],[95,-736],[23,-501],[1,-15],[-12,-259],[-25,-141],[-1,-7],[-1,-10],[-2,-2],[-1,-1],[-27,-15],[-9,-5],[-5,-2],[-21,5],[-14,14],[-26,27],[-23,210],[-9,76],[-21,204],[-1,13],[-4,74],[-2,28],[0,7],[-1,9],[0,8],[0,4],[2,21],[0,5],[1,3],[-27,488],[-18,334],[-140,1216],[-18,108],[-5,39],[3,16],[2,9],[0,3],[12,32],[1,2],[1,1],[2,1],[2,0],[1,1],[44,-38]],[[966796,420466],[50,-25],[4,-3],[3,-1],[1,-1],[0,-8],[1,-4],[0,-5],[-3,-20],[-2,-22],[-1,-10],[-2,-9],[-12,-74],[-2,-7],[-1,-4],[-1,-4],[-3,-5],[-2,-6],[-6,-12],[-7,-15],[-3,-1],[-11,-5],[-29,-9],[-4,0],[-2,1],[-17,21],[-4,7],[-4,9],[-2,5],[-3,5],[-1,6],[-3,21],[-8,69],[1,12],[0,7],[2,18],[1,6],[1,2],[2,7],[0,1],[4,15],[2,6],[3,7],[1,4],[6,9],[3,4],[3,3],[1,0],[4,4],[4,1],[9,4],[3,1],[24,-5]],[[965403,421863],[16,-10],[94,-60],[3,-2],[8,-16],[12,-27],[14,-48],[6,-19],[6,-25],[21,-157],[1,-13],[0,-6],[0,-1],[0,-3],[0,-13],[-1,-2],[0,-6],[-18,-97],[-1,-5],[-2,-10],[-61,-317],[-11,-44],[-2,-4],[-6,-13],[-20,-33],[-17,-29],[-1,-1],[-6,-9],[-1,-1],[-2,-1],[-3,-3],[-4,-3],[-3,-3],[-19,-13],[-15,-4],[-14,1],[-280,34],[-39,135],[2,484],[3,32],[25,144],[10,14],[11,15],[92,91],[54,11],[35,28],[9,8],[17,14],[27,23],[3,2],[3,2],[1,-1],[7,-4],[4,-3],[20,-15],[22,-17]],[[965286,424678],[6,-10],[6,-12],[3,-6],[0,-1],[2,-6],[21,-53],[6,-14],[50,-224],[11,-62],[33,-169],[38,-256],[3,-18],[-96,-206],[-129,-192],[-53,-23],[-68,-28],[-162,529],[-3,8],[0,2],[-2,6],[-1,4],[-2,9],[-7,89],[6,126],[10,214],[11,40],[7,27],[8,30],[11,42],[6,20],[10,21],[35,58],[33,53],[15,21],[7,11],[6,5],[62,40],[33,15],[4,-1],[6,-2],[74,-87]],[[965870,425121],[7,-51],[0,-3],[1,-12],[0,-7],[1,-1],[0,-15],[-1,-26],[0,-11],[0,-16],[-3,-12],[-1,-2],[-3,-4],[-15,-10],[-153,-102],[-18,20],[-26,29],[32,95],[20,59],[74,65],[38,15],[32,13],[15,-24]],[[964798,426000],[17,-3],[12,-4],[7,-3],[15,-11],[36,-36],[1,-5],[2,-14],[5,-34],[4,-34],[9,-43],[3,-12],[0,-5],[0,-1],[4,-31],[4,-37],[-3,-9],[-16,-32],[-2,-4],[-1,-2],[-3,-5],[-8,-13],[-6,-10],[0,-2],[-4,-3],[-9,-11],[-22,-9],[-18,-7],[-20,-5],[-2,-1],[-8,-1],[-12,9],[-2,1],[-7,5],[0,1],[-3,2],[-5,5],[-13,11],[-21,27],[-11,14],[-3,9],[0,1],[-2,5],[-9,33],[-6,23],[-1,6],[-4,22],[0,10],[0,8],[0,10],[6,34],[4,19],[1,5],[1,4],[2,8],[3,17],[6,14],[10,23],[12,20],[5,8],[13,21],[31,13],[4,0],[2,-1],[2,0]],[[963056,426645],[4,-3],[3,-3],[3,-3],[4,-2],[2,-3],[0,-1],[6,-7],[2,-5],[0,-1],[0,-1],[2,-6],[2,-6],[2,-11],[1,-2],[1,-5],[6,-58],[0,-8],[1,-5],[-5,-35],[-15,-75],[-7,-37],[0,-2],[-3,-13],[-1,-3],[-2,-4],[-3,-4],[-3,-6],[-16,-5],[-5,0],[-2,1],[-2,2],[-2,2],[-5,7],[-2,2],[-2,5],[-6,14],[-2,5],[-31,142],[-3,28],[-3,33],[-1,3],[0,5],[2,5],[5,12],[1,1],[2,4],[2,3],[48,51],[4,0],[3,0],[7,-5],[1,-1],[5,-3],[0,-1],[2,-1]],[[962884,427070],[9,-13],[18,-24],[9,-38],[18,-80],[9,-40],[0,-5],[0,-4],[0,-18],[0,-2],[0,-2],[-5,-33],[-2,-14],[-1,-4],[-1,-1],[-1,-4],[-10,-27],[-1,-2],[-1,-1],[-3,-4],[-1,-1],[-3,0],[-18,28],[-60,150],[0,2],[-2,5],[-5,14],[-1,3],[-2,18],[-3,47],[4,17],[4,16],[24,37],[3,-1],[2,-1],[1,0],[3,-1],[11,-12],[5,-5]],[[962905,427683],[5,-3],[8,-3],[3,-4],[7,-6],[1,-3],[2,-3],[1,-2],[1,-3],[15,-96],[0,-2],[1,-8],[3,-54],[0,-12],[0,-17],[-2,-5],[0,-1],[-48,-59],[-62,-34],[-30,7],[-35,66],[-14,65],[-4,52],[1,60],[29,71],[1,1],[2,3],[2,2],[1,1],[2,1],[110,-14]],[[962655,428537],[16,-8],[34,-29],[4,-7],[8,-17],[3,-10],[8,-28],[6,-18],[2,-6],[2,-107],[2,-59],[1,-89],[2,-132],[-9,-118],[-3,-33],[-1,-14],[-2,-19],[0,-6],[-1,-5],[-1,-4],[-1,-1],[-1,-2],[-22,17],[-18,14],[-31,44],[-4,6],[-13,20],[-3,7],[-2,6],[-3,10],[-7,21],[0,40],[0,102],[5,41],[8,62],[29,96],[1,6],[1,12],[1,4],[0,3],[0,5],[-5,26],[-4,26],[-6,12],[-6,14],[-7,21],[-4,11],[-7,23],[0,3],[-1,5],[-1,7],[-1,14],[0,32],[0,6],[1,2],[1,2],[1,3],[1,2],[2,1],[1,0],[2,-1],[1,-1],[1,-1],[17,-9],[3,-2]],[[649277,580498],[346,-81],[751,336],[998,-783],[-251,-485],[-853,-659],[-1189,-297],[-306,205],[-637,1180],[286,789],[332,239],[162,-79],[361,-365]],[[966623,334091],[-1,-3],[-2,-3],[-3,-7],[-3,-6],[-25,-15],[-22,-13],[-39,11],[-30,8],[-10,8],[-13,10],[-17,16],[-9,8],[-8,40],[-4,27],[0,29],[0,27],[0,9],[0,112],[0,15],[18,65],[64,-34],[8,-8],[7,-6],[22,-19],[2,-2],[2,-2],[72,-85],[2,-122],[-5,-26],[-6,-34]],[[310440,576888],[-17,-9],[-5,10],[-1,1],[-4,9],[-3,5],[-1,1],[-2,5],[-4,6],[-3,5],[-12,24],[-5,8],[-2,3],[-2,8],[-13,37],[-23,113],[-5,23],[-17,188],[-1,174],[6,13],[6,14],[3,6],[1,5],[1,4],[0,3],[1,6],[4,25],[-3,27],[-3,28],[-16,74],[-11,46],[-4,15],[-1,2],[-30,98],[-1,4],[-1,3],[-6,15],[-5,11],[-6,13],[0,1],[-3,6],[-28,35],[-29,37],[-2,2],[-2,2],[-41,26],[-9,5],[34,95],[55,160],[234,-208],[85,-137],[3,-4],[15,-372],[-33,-230],[-42,-295],[-4,-13],[0,-4],[-15,-56],[-2,-8],[-2,-7],[0,-1],[-3,-6],[-7,-21],[-3,-7],[-3,-4],[-1,-2],[-5,-8],[-7,-9]],[[325082,609065],[-4,-1],[-26,35],[-4,5],[-24,76],[-10,34],[-1,4],[-2,4],[-16,56],[-3,8],[-2,8],[9,89],[2,14],[39,2],[3,-6],[85,-141],[13,-24],[6,-13],[1,-1],[2,-5],[1,-2],[2,-4],[1,-5],[0,-3],[2,-18],[-11,-47],[-1,-8],[-1,-2],[-1,-6],[-1,-4],[-1,-4],[-25,-20],[-14,-12],[-2,-1],[-2,-2],[-4,-3],[-4,-1],[-4,-1],[-3,-1]],[[324398,609984],[-2,0],[-41,-21],[-9,-4],[-4,4],[-13,5],[-11,5],[-9,-1],[-3,0],[-1,0],[-1,2],[-1,4],[-5,12],[0,3],[1,6],[0,4],[1,4],[1,18],[2,17],[3,29],[3,32],[5,14],[6,20],[10,5],[7,4],[10,5],[11,6],[15,-7],[30,-13],[2,-7],[1,-4],[1,-3],[4,-31],[1,-10],[2,-13],[1,-7],[-2,-9],[-1,-5],[0,-3],[-10,-59],[-4,-2]],[[277469,488127],[-204,-263],[-25,-32],[-172,80],[-3,1],[-6,364],[-9,505],[116,841],[165,119],[348,252],[368,-374],[-8,-91],[-12,-123],[-107,-111],[-155,-160],[-134,-456],[-162,-552]],[[246277,506773],[146,-426],[223,-651],[445,-1925],[700,-2353],[-144,-927],[-160,-317],[-503,-315],[-361,-226],[-609,244],[-215,570],[42,288],[450,841],[345,260],[-539,3360],[-202,510],[-205,-187],[-68,127],[-51,94],[706,1033]],[[251525,500267],[-236,-102],[-97,80],[-158,133],[157,328],[178,347],[127,247],[106,199],[202,250],[122,-24],[114,-22],[60,-180],[-368,-804],[-207,-452]],[[249350,501476],[-456,-236],[-376,451],[-35,389],[69,337],[50,249],[709,217],[181,-394],[38,-82],[-70,-684],[-23,-52],[-87,-195]],[[246142,503104],[-69,-71],[-185,-192],[-143,50],[-214,74],[-121,921],[-15,109],[555,266],[213,-511],[-21,-646]],[[248465,503904],[-77,-249],[-459,40],[-126,132],[-112,118],[-34,178],[-49,259],[203,558],[147,-135],[407,-373],[54,-283],[46,-245]],[[504468,736473],[-572,-1061],[-35,10],[-454,133],[-15,471],[62,142],[146,333],[527,431],[86,70],[82,-74],[7,-6],[85,-229],[81,-220]],[[508964,738431],[-366,-405],[-1714,1034],[-298,473],[-57,91],[67,304],[1161,1428],[599,419],[218,63],[322,94],[270,-765],[378,-1071],[-103,-298],[-477,-1367]],[[511944,741591],[-84,-477],[-1217,660],[-103,530],[8,23],[69,221],[735,196],[247,-322],[223,-291],[56,-249],[66,-291]],[[454023,671427],[-262,-134],[-67,24],[-80,28],[-233,686],[-8,24],[-12,40],[-326,1157],[5,49],[9,86],[68,53],[75,58],[65,3],[31,2],[283,0],[389,121],[219,162],[27,36],[24,33],[25,40],[8,13],[47,98],[34,69],[527,547],[180,93],[71,37],[6,-4],[2,-2],[3,-3],[1,0],[3,-2],[11,-12],[25,-28],[21,-31],[2,-2],[5,-26],[5,-21],[-38,-288],[-811,-2252],[-28,-66],[-82,-191],[-2,-4],[-4,-8],[-6,-13],[-3,-6],[-18,-39],[0,-1],[-3,-5],[-5,-12],[-9,-17],[-3,-6],[-38,-75],[-33,-65],[-12,-18],[-34,-57],[-36,-47],[-18,-24]],[[450092,669383],[-26,-26],[-109,-110],[-293,259],[-9,127],[-19,295],[373,289],[291,-155],[-62,-202],[-146,-477]],[[457065,670064],[-409,-341],[-41,23],[-137,77],[-88,126],[-74,106],[-31,45],[-69,102],[-4,6],[-6,9],[-1,2],[-29,43],[-14,22],[-7,11],[-10,26],[-6,17],[-6,15],[-2,7],[-9,33],[-3,11],[-2,6],[-72,302],[-10,70],[-4,27],[7,269],[13,203],[1,16],[336,838],[378,23],[350,21],[19,-39],[17,-37],[21,-181],[52,-468],[18,-26],[3,-4],[1,-1],[3,-6],[7,-11],[2,-5],[4,-7],[6,-11],[1,-1],[3,-6],[4,-9],[9,-25],[2,-5],[1,-1],[2,-18],[3,-24],[1,-7],[0,-2],[2,-17],[1,-9],[-12,-219],[-3,-70],[-47,-543],[-85,-220],[-56,-93],[-30,-50]],[[452224,671398],[-108,-24],[-51,28],[-6,3],[-18,14],[-123,204],[-10,25],[-6,14],[-38,115],[-1,3],[-1,5],[-4,15],[-3,9],[-6,21],[-1,10],[-5,36],[-1,8],[-1,10],[0,9],[1,63],[7,81],[13,146],[1,5],[1,3],[2,9],[4,25],[6,34],[3,17],[17,64],[14,52],[13,21],[2,3],[112,71],[182,-49],[12,-11],[13,-14],[21,-21],[2,-2],[1,-2],[76,-92],[120,-146],[3,-6],[1,-1],[5,-10],[3,-7],[11,-39],[8,-28],[9,-34],[10,-42],[7,-79],[0,-18],[0,-6],[-3,-30],[-4,-62],[-27,-83],[-4,-11],[-1,-3],[-6,-14],[-2,-4],[-1,-2],[-6,-9],[-96,-141],[-44,-51],[-45,-51],[-58,-31]],[[461584,675427],[6,-98],[1,-8],[17,-361],[0,-48],[0,-95],[-2,-72],[-1,-30],[-4,-100],[-8,-113],[-47,-538],[-14,-161],[-66,-447],[-60,-399],[0,-2],[-2,-5],[-4,-15],[-3,-13],[-6,-18],[-30,-87],[-32,-94],[-54,-93],[-3,-6],[-14,-12],[-1,-1],[-24,-19],[-855,-706],[-474,-18],[-26,-1],[651,820],[172,737],[301,1288],[84,472],[1,8],[0,1],[5,43],[1,8],[1,10],[-1,9],[-8,98],[-2,6],[-1,7],[-2,4],[-3,0],[-4,-1],[0,9],[-2,16],[-2,33],[0,8],[4,38],[6,7],[4,6],[29,32],[23,26],[115,108],[55,38],[6,4],[37,14],[90,35],[61,-76],[52,-96],[15,-59],[6,-21],[9,-55],[3,-17]],[[450569,674257],[-106,-322],[-5,0],[-13,1],[-2,4],[-1,1],[-22,33],[-14,20],[-17,26],[-9,28],[-6,17],[-9,31],[-12,37],[-2,8],[-341,1526],[-13,79],[-2,11],[-3,16],[1,2],[2,14],[3,25],[1,8],[1,2],[1,6],[3,15],[1,2],[16,57],[2,8],[15,53],[15,55],[14,44],[31,63],[1,2],[2,3],[4,7],[1,2],[37,45],[99,121],[324,-49],[22,-3],[12,-14],[4,-4],[8,-9],[37,-111],[9,-34],[100,-392],[-64,-891],[-1,-9],[-20,-165],[-1,-11],[-1,-5],[-1,-14],[-41,-137],[-60,-202]],[[462339,676916],[-630,-662],[-158,97],[-59,212],[105,680],[2,7],[3,8],[28,90],[3,9],[4,14],[70,132],[31,46],[57,75],[278,219],[281,257],[99,92],[132,-67],[106,-53],[-68,-481],[-15,-153],[-16,-168],[-49,-121],[-19,-33],[-185,-200]],[[462498,678497],[-40,-24],[-41,-25],[-14,7],[-23,11],[-1,4],[-2,4],[-7,22],[0,2],[3,20],[2,8],[92,328],[6,12],[4,7],[3,1],[6,1],[48,-46],[19,-69],[12,-44],[-64,-212],[-3,-7]],[[462445,679411],[-4,0],[-4,1],[-3,2],[-1,0],[-7,3],[-6,29],[-2,7],[0,8],[1,34],[0,17],[1,5],[1,3],[2,11],[3,13],[3,16],[2,5],[9,17],[16,21],[18,25],[5,2],[4,2],[6,-5],[2,-2],[9,-7],[35,-32],[3,-3],[1,-1],[1,-2],[1,-5],[4,-14],[-5,-24],[-2,-9],[-1,-5],[-3,-11],[-1,-5],[0,-3],[-2,-8],[-19,-36],[-4,-8],[-4,-4],[-14,-15],[-25,-14],[-9,-5],[-3,-1],[-8,-2]],[[659828,384516],[-40,-7],[-304,78],[-136,128],[-34,34],[-97,111],[17,165],[121,947],[70,348],[28,110],[329,849],[25,56],[66,147],[80,145],[35,46],[34,28],[13,1],[22,-16],[114,-94],[57,-71],[344,-1294],[-96,-592],[-17,-92],[-136,-573],[-125,-199],[-43,-43],[-184,-141],[-143,-71]],[[676300,389132],[-261,-152],[-12,2],[-5,0],[-12,11],[-8,8],[-105,163],[26,84],[252,280],[8,7],[33,30],[4,3],[46,4],[75,-61],[17,-14],[27,-32],[3,-131],[-2,-15],[-1,-7],[-42,-96],[-12,-26],[-22,-47],[-6,-8],[-3,-3]],[[657472,443805],[-8,-3],[-6,7],[-4,3],[-137,371],[-40,108],[-16,49],[-2,7],[-77,264],[-1,7],[0,7],[0,7],[5,78],[2,2],[3,3],[6,-7],[7,-9],[3,-5],[4,-6],[6,-12],[2,-8],[260,-662],[3,-5],[11,-21],[5,-11],[2,-6],[2,-6],[11,-66],[-3,-18],[-2,-9],[-2,-8],[-2,-6],[-4,-13],[-25,-30],[-3,-2]],[[701319,462131],[-104,-256],[-6,-15],[-4,-3],[-8,-5],[-8,-5],[-6,12],[-7,12],[-4,6],[-137,808],[152,-599],[-1,-10],[-1,-55],[0,-28],[0,-9],[0,-10],[0,-46],[0,-9],[0,-9],[1,-9],[0,-9],[6,-9],[11,15],[3,5],[4,5],[86,226],[30,85],[15,400],[-31,158],[-54,111],[-54,146],[8,6],[12,8],[13,-15],[4,-4],[117,-279],[-14,-513],[-23,-106]],[[453182,698683],[-255,-11],[-77,46],[-154,93],[-185,135],[-99,99],[-209,207],[-73,164],[-30,109],[-39,164],[2,33],[0,21],[1,1],[75,149],[25,41],[35,58],[52,63],[22,11],[13,7],[3,0],[15,0],[2,-2],[0,-1],[3,-2],[7,-7],[7,-7],[4,-3],[522,-225],[322,-168],[365,-316],[-33,-85],[-104,-269],[-92,-215],[-40,-57],[-6,-9],[-21,-14],[-5,-3],[-40,-7],[-6,0],[-7,0]],[[454201,697794],[-10,-86],[-126,436],[-3,55],[-4,62],[3,18],[3,14],[6,-8],[0,-1],[0,-1],[3,-3],[4,-5],[2,-7],[2,-5],[3,-9],[14,-37],[10,-27],[78,-271],[15,-125]],[[454756,701174],[-239,-225],[-4,0],[-7,1],[-29,71],[0,16],[0,13],[0,24],[31,102],[17,57],[7,15],[28,63],[14,28],[2,4],[4,4],[4,5],[11,13],[23,25],[11,13],[12,13],[1,1],[3,2],[6,5],[1,2],[19,15],[32,-12],[20,-12],[21,-13],[16,-29],[1,-4],[-2,-99],[-3,-98]],[[428941,729287],[41,-3],[21,1],[7,1],[261,40],[280,114],[202,92],[81,2],[188,4],[26,-4],[8,-2],[8,-1],[9,-2],[4,-1],[2,-1],[2,-1],[4,-3],[32,-21],[12,-8],[5,-8],[1,-1],[4,-5],[3,-4],[1,-9],[24,-143],[0,-4],[3,-14],[0,-4],[0,-6],[-2,-92],[-7,-162],[-1,-23],[-2,-31],[-1,-6],[0,-2],[-1,-5],[0,-2],[-2,-7],[-7,-16],[-1,-4],[-16,-39],[-2,-3],[-10,-11],[-19,-24],[0,-1],[-7,-8],[-87,-41],[-104,-30],[-407,-115],[-132,-10],[-217,-16],[-346,96],[-161,44],[-31,32],[-20,20],[-4,4],[-2,2],[-2,2],[-8,8],[-6,6],[-3,3],[-8,9],[-28,28],[-140,201],[-71,104],[-46,71],[-44,68],[-12,19],[-2,5],[-1,1],[-1,3],[-4,10],[-14,40],[-1,9],[-2,8],[0,1],[0,3],[-6,33],[-1,9],[0,8],[-1,5],[0,4],[-1,19],[-2,24],[83,188],[33,31],[85,-52],[233,-145],[77,-176],[113,-49],[102,-46],[19,-5],[19,-6]],[[430505,724060],[-1,-8],[-56,1],[-53,1],[-95,21],[-196,44],[-2,2],[-1,2],[-17,22],[-11,13],[-22,97],[-29,132],[0,5],[-1,3],[-1,15],[3,6],[7,20],[2,6],[2,6],[7,6],[7,6],[50,26],[52,23],[6,3],[128,43],[21,5],[9,2],[38,-9],[9,-2],[35,-81],[95,-237],[2,-10],[3,-10],[15,-102],[-5,-46],[-1,-5]],[[421981,732762],[-194,-15],[-292,-23],[-309,112],[-149,55],[-86,41],[-61,28],[-4,4],[-80,68],[-8,7],[-4,4],[-2,3],[-5,6],[-18,21],[-38,132],[-4,17],[-2,8],[-2,9],[-2,12],[-7,31],[-1,4],[0,4],[-3,15],[-3,20],[-6,86],[2,37],[2,18],[4,39],[2,14],[1,9],[3,7],[9,20],[10,15],[35,50],[4,5],[2,4],[12,16],[7,9],[23,20],[4,3],[5,2],[30,15],[38,18],[61,3],[124,6],[4,-1],[22,-7],[4,-2],[35,-12],[51,-25],[143,-113],[679,-529],[32,-27],[19,-15],[56,-60],[6,-9],[3,-4],[0,-5],[1,-4],[4,-32],[1,-7],[1,-9],[0,-4],[1,-2],[-2,-8],[-3,-16],[-1,-5],[-1,-3],[-24,-15],[-3,-1],[-1,-1],[-10,-6],[-3,-1],[-5,-3],[-61,-26],[-25,-4],[-12,-2],[-4,0],[-3,-1],[-2,0]],[[420460,733501],[-97,-20],[-142,-29],[-25,7],[-56,23],[-110,265],[-17,266],[70,58],[112,92],[181,-46],[29,-30],[75,-77],[28,-76],[30,-82],[-6,-118],[-3,-63],[-6,-70],[-24,-50],[-14,-29],[-25,-21]],[[422844,733565],[-135,-37],[-4,1],[-3,1],[-1,0],[-2,1],[-545,431],[-372,294],[-144,129],[-27,25],[-142,219],[-4,5],[-32,51],[-35,55],[-57,109],[-1,7],[-1,9],[-1,5],[2,2],[1,2],[3,4],[9,2],[105,-48],[86,-63],[333,-245],[170,-124],[303,-233],[128,-113],[286,-252],[4,-4],[67,-67],[28,-28],[8,-8],[3,-6],[27,-48],[2,-3],[4,-9],[-10,-16],[-3,-6],[-10,-15],[-7,-12],[-3,-2],[-1,0],[-1,-1],[-2,-1],[-4,-2],[-4,-2],[-11,-4],[-4,-1],[-3,-1],[0,-1]],[[424794,734235],[-41,-52],[-351,43],[-50,6],[-36,11],[-154,45],[-26,29],[-94,102],[-15,21],[0,1],[-1,2],[-21,30],[-4,5],[-4,6],[-12,23],[-5,9],[-11,21],[-17,91],[0,5],[-1,4],[-1,10],[-8,82],[-2,19],[-1,17],[0,9],[0,6],[1,13],[1,36],[9,56],[3,22],[20,85],[10,37],[1,1],[2,1],[3,3],[81,57],[23,17],[2,0],[5,1],[18,5],[4,1],[4,1],[37,9],[55,14],[4,0],[20,-1],[26,-1],[8,0],[18,0],[8,0],[38,-16],[367,-85],[3,-3],[5,-4],[14,-14],[13,-13],[4,-3],[62,-84],[13,-19],[7,-29],[2,-5],[2,-9],[20,-88],[17,-106],[19,-126],[-2,-17],[-4,-23],[-1,-6],[0,-2],[-1,-4],[-2,-11],[-55,-154],[-29,-81]],[[422311,736347],[-2,-1],[-1,0],[-6,0],[-16,1],[-46,20],[-4,2],[-1,0],[-3,2],[-4,1],[-2,1],[-6,5],[-12,9],[-3,3],[-19,11],[-54,33],[-9,2],[0,1],[-7,10],[-22,38],[-16,27],[-3,5],[-31,109],[-4,16],[-21,86],[37,95],[10,26],[4,2],[17,6],[14,5],[5,2],[4,2],[1,0],[7,3],[9,-2],[16,-3],[4,-1],[4,-1],[32,-21],[21,-15],[15,-17],[44,-48],[32,-84],[43,-114],[7,-22],[7,-22],[4,-24],[12,-65],[-2,-7],[-2,-8],[-2,-8],[-3,-15],[-4,-17],[-1,-4],[-1,-4],[-4,-3],[-4,-2],[-14,-11],[-8,-2],[-12,-2]],[[413416,738539],[-61,-18],[-37,1],[-69,2],[-7,2],[-7,2],[-2,1],[-2,0],[-10,3],[-16,5],[-7,3],[-1,1],[-19,94],[-4,16],[0,1],[-2,8],[-16,174],[-1,15],[-1,21],[0,8],[0,10],[-1,47],[-1,36],[26,223],[30,91],[32,97],[13,17],[17,23],[48,20],[6,-9],[4,-4],[3,-5],[113,-130],[96,-238],[-10,-89],[-2,-22],[-46,-229],[-6,-28],[-5,-20],[-13,-53],[-42,-76]],[[413574,740265],[-9,-2],[-3,4],[-6,10],[-13,151],[-1,16],[-2,25],[0,5],[0,3],[1,17],[1,7],[0,4],[1,12],[10,68],[5,39],[8,1],[5,1],[16,3],[2,-1],[1,-1],[7,-3],[3,-1],[40,-20],[4,-7],[3,-4],[3,-5],[2,-8],[4,-15],[9,-37],[2,-17],[3,-32],[0,-3],[1,-8],[1,-9],[-4,-26],[-3,-18],[-5,-25],[-5,-28],[0,-3],[-1,-3],[-3,-8],[-1,-4],[-25,-32],[-17,-21],[-3,-3],[-2,-1],[-6,-6],[-14,-13],[-6,-1],[-3,-1]],[[484243,411224],[-171,-90],[-62,9],[-60,90],[6,133],[32,148],[1,3],[3,5],[4,10],[1,2],[155,270],[12,6],[4,0],[3,0],[3,-1],[2,0],[87,-39],[40,-53],[52,-187],[-12,-100],[-9,-28],[-22,-54],[-3,-8],[-6,-14],[-5,-12],[-55,-90]],[[472422,267780],[47,-73],[108,-275],[3,-6],[5,-14],[2,-7],[0,-6],[0,-25],[-32,-130],[-9,-13],[-88,38],[-9,4],[-7,10],[1,8],[-35,88],[-83,121],[-67,56],[-9,2],[-4,1],[-4,1],[-4,2],[-7,2],[-8,62],[19,114],[42,33],[10,-8],[28,10],[101,5]],[[464772,285241],[-22,-19],[-36,33],[-11,15],[-4,6],[-3,5],[-2,67],[0,9],[1,8],[3,21],[1,5],[45,48],[36,23],[79,-56],[22,-34],[1,-14],[1,-8],[-3,-5],[-5,-10],[-103,-94]],[[465894,286133],[-3,-1],[-24,5],[-92,69],[-62,156],[-10,36],[-7,26],[-2,18],[18,95],[9,43],[3,9],[56,151],[46,18],[79,2],[41,-8],[33,-33],[13,-25],[26,-49],[3,-6],[3,-7],[3,-6],[3,-8],[2,-8],[27,-103],[1,-8],[4,-33],[1,-17],[1,-7],[-3,-7],[-6,-14],[-5,-14],[-127,-243],[-3,-6],[-4,-7],[-6,-9],[-3,-4],[-2,-1],[-3,-1],[-10,-3]],[[460145,458638],[-125,-70],[-26,17],[-24,50],[-6,13],[-5,12],[-2,27],[-3,136],[12,147],[22,107],[43,74],[24,11],[17,-2],[28,-15],[3,-2],[7,-4],[3,-2],[65,-102],[47,-77],[37,-90],[15,-88],[-57,-86],[-75,-56]],[[273118,650977],[-375,-103],[134,534],[28,108],[461,503],[402,438],[216,-260],[-113,-750],[-237,0],[-45,0],[-23,-23],[-448,-447]],[[160127,789402],[-60,-439],[-84,15],[-69,12],[-336,653]],[[159578,789643],[-606,1177],[349,1070],[132,1],[35,-636]],[[159488,791255],[520,-1509],[119,-344]],[[5798,810937],[-111,-56],[-11,-5],[-143,115],[-191,154],[-5,24],[-38,218],[354,83]],[[5653,811470],[11,218],[5,101]],[[5669,811789],[-474,370],[-278,217],[114,217],[268,61],[148,-69]],[[5447,812585],[914,-429],[-9,-112]],[[6352,812044],[-554,-1107]],[[10008,811556],[-1456,-738],[38,373]],[[8590,811191],[55,555],[287,774],[572,620],[354,-546],[158,-244],[-2,-219]],[[10014,812131],[-6,-575]],[[19484,813640],[-639,-143],[-762,-170],[-584,31],[-389,22],[-487,352],[6,19],[41,123],[1347,161],[385,-268],[1082,-127]],[[14573,813231],[-936,-61]],[[13637,813170],[-93,307],[1610,534]],[[15154,814011],[317,226]],[[15471,814237],[199,142],[317,384]],[[15987,814763],[-144,95],[-267,175]],[[15576,815033],[405,465],[191,58]],[[16172,815556],[96,30],[340,-312],[89,-370],[-477,-881]],[[16220,814023],[-141,-261],[-1506,-531]],[[981253,818715],[388,-532],[102,-139],[-435,-122],[-1021,-286],[-194,120],[-68,43],[-29,47],[-99,156],[-16,204],[-9,114],[-107,96],[-209,188],[-82,-28],[-272,-92],[-142,129],[-1,1],[465,438],[327,56],[1001,-104],[213,-153],[188,-136]],[[31852,819242],[-378,-316]],[[31474,818926],[-633,-530],[-127,89]],[[30714,818485],[-45,31]],[[30669,818516],[303,875],[126,361],[1315,2130],[550,398],[259,-7]],[[33222,822273],[206,-6]],[[33428,822267],[455,-141],[-82,-578],[-24,-166],[-1925,-2140]],[[37118,824266],[133,-253],[14,-28]],[[37265,823985],[638,927],[169,-153],[223,-201],[-29,-116],[-54,-213],[-75,-97],[-619,-799],[501,-289],[-132,-124],[-858,-812],[-1019,-614],[-1207,-728],[-543,-214],[-120,75],[-397,246],[451,461],[1372,688],[298,149]],[[35864,822171],[95,127]],[[35959,822298],[547,731],[145,-65]],[[36651,822964],[-43,445],[-695,281]],[[35913,823690],[-117,157],[-63,84],[-2,224],[392,547],[813,269]],[[36936,824971],[150,50],[139,-323],[-51,-77],[-83,-124]],[[37091,824497],[9,-73],[18,-158]],[[46085,830021],[10,-27]],[[46095,829994],[211,-589]],[[46306,829405],[313,65],[59,13],[-19,-241]],[[46659,829242],[-15,-188],[-1658,-339]],[[44986,828715],[-964,-480],[-502,-251]],[[43520,827984],[-12,-93]],[[43508,827891],[-16,-135],[-96,-96],[-218,-219],[-568,-164],[-468,146],[-289,647],[9,304],[3,100],[439,679],[591,916],[1797,950]],[[44692,831019],[851,100]],[[45543,831119],[101,6],[108,7],[235,-437],[77,-527],[21,-147]],[[130288,837097],[46,-47],[34,-36],[234,76]],[[130602,837090],[33,11],[99,-55],[336,-186],[491,-667]],[[131561,836193],[364,-495],[708,-1689]],[[132633,834009],[-95,-30]],[[132538,833979],[-148,-46],[-354,218],[-247,153]],[[131789,834304],[1,-33]],[[131790,834271],[21,-400],[743,-381],[167,-329],[58,-113],[53,-218]],[[132832,832830],[131,-541],[157,-1345]],[[133120,830944],[92,30]],[[133212,830974],[169,55],[81,-1350],[-72,-249],[-98,-340],[-370,-53],[-543,324],[-719,1560],[-356,774]],[[131304,831695],[-247,132]],[[131057,831827],[-328,174],[-134,190],[-155,223],[-82,-4],[-84,-4],[41,-342],[29,-235]],[[130344,831829],[430,-1366],[559,-1018]],[[131333,829445],[83,-332],[47,-193],[-72,19],[-359,97],[-665,1205],[-251,455],[-108,544],[-292,1464]],[[129716,832704],[596,663],[-78,256],[-123,406],[-388,366],[-382,361],[-1,17],[-53,753]],[[129287,835526],[229,23],[95,154],[28,45]],[[129639,835748],[-49,317],[-371,667],[-111,-54],[-94,-46],[-184,640],[-79,1446],[69,177],[64,-16],[65,-16],[583,-100],[142,-25],[614,-1641]],[[130691,841938],[831,-1235]],[[131522,840703],[302,-448],[-461,-352],[-258,-198],[-1526,-202],[-220,-29],[-739,607],[-526,232]],[[128094,840313],[58,-1434],[-53,-379],[-123,-882],[-49,-166],[-40,-137],[-490,-532],[-163,404],[-156,388],[-82,896],[44,511],[35,403],[-8,134],[-32,564],[-373,1024],[-55,633],[45,69],[186,281],[441,191],[174,75],[169,-119],[33,-23],[128,-416]],[[127783,841798],[191,-624]],[[127974,841174],[330,225],[-13,301],[-206,655],[-171,190],[-239,265],[14,235],[55,37],[282,187],[552,-160],[1100,-346],[685,-557]],[[130363,842206],[328,-268]],[[126014,838244],[-101,-505],[-625,973],[-246,675],[-178,486],[-11,161],[-10,134],[-355,567],[-314,501],[-254,139],[284,1551],[-163,1208]],[[124041,844134],[-300,32],[-73,113]],[[123668,844279],[-391,600],[226,454]],[[123503,845333],[5,230],[0,5],[0,9],[-1,110],[191,227],[58,69],[121,4],[45,1],[261,-334]],[[124183,845654],[922,-451],[130,-280],[225,-487],[590,-3721]],[[126050,840715],[-19,-1330],[-17,-1141]],[[74286,848581],[571,-322]],[[74857,848259],[597,-337],[824,20],[552,12],[-310,-684]],[[76520,847270],[-125,-276]],[[76395,846994],[123,-208],[235,-397]],[[76753,846389],[-80,-418]],[[76673,845971],[-134,-704],[-1837,-860]],[[74702,844407],[247,-599],[167,-406],[-789,-694],[-91,-29],[-105,-33],[-95,214],[-96,215],[-1,47],[-3,191],[302,596],[-251,-160],[-586,-817],[-466,-1012],[-424,-492],[-218,-254],[-479,12],[351,756],[715,1539]],[[72880,843481],[-26,62],[-29,72]],[[72825,843615],[-692,-868],[-748,-940],[-492,973],[-811,1605],[9,222],[10,206],[447,931],[1047,855],[680,-95],[963,1397],[1451,-207]],[[74689,847694],[26,116],[5,19],[-43,51]],[[74677,847880],[-525,634],[109,55],[25,12]],[[127219,849255],[572,-1264]],[[127791,847991],[135,-298],[70,-246]],[[127996,847447],[283,-996],[-80,-225],[-6,-19],[-310,537],[-380,1050],[-282,778],[-294,220],[-27,20]],[[126900,848812],[41,-426],[44,-456]],[[126985,847930],[968,-1686],[27,-129],[145,-701],[10,-310],[6,-175],[-230,-385],[-162,-74],[-237,-109],[-1098,-1517],[-329,-26],[-83,958],[199,1689],[-849,4208],[419,294],[1448,-712]],[[123175,849944],[129,-982],[746,260]],[[124050,849222],[1087,-395],[50,-177],[34,-117],[-9,-395],[-199,-231]],[[125013,847907],[-584,304]],[[124429,848211],[766,-1051],[218,-1036],[30,-414],[-44,-158],[-35,-122],[-609,2],[-1081,989],[-247,226]],[[123427,846647],[-227,-228]],[[123200,846419],[-22,-21]],[[123178,846398],[137,-107],[150,-909],[-429,-517],[-398,166],[-323,445],[-278,697],[-406,1020]],[[121631,847193],[-126,-67],[-373,429],[-437,500],[-52,703],[86,413],[2068,1085],[38,20],[340,-332]],[[75668,848664],[-320,-51],[-510,-81],[-204,73],[-633,225],[263,510]],[[74264,849340],[38,74],[363,396]],[[74665,849810],[802,540],[8,5],[238,938],[1053,1014],[65,63],[15,-10],[36,-22],[-141,-539],[-206,-361],[506,-472],[579,-540],[-44,-64]],[[77576,850362],[-377,-541]],[[77199,849821],[-1288,-973],[-243,-184]],[[90163,859490],[-229,-123],[-597,-318],[-252,89],[117,463],[655,730]],[[89857,860331],[497,553]],[[90354,860884],[1051,1661],[33,-117]],[[91438,862428],[466,-261],[-1741,-2677]],[[39741,861922],[133,-1612]],[[39874,860310],[-228,-252],[-253,-279]],[[39393,859779],[-362,-233],[-722,-463],[-1515,770],[-1009,513],[-409,360],[-185,163],[-291,696],[-6,14],[118,64]],[[35012,861663],[232,126],[516,-31]],[[35760,861758],[761,345],[525,238]],[[37046,862341],[1219,339]],[[38265,862680],[109,30],[19,39]],[[38393,862749],[85,170],[128,-423]],[[38606,862496],[34,-113]],[[38640,862383],[464,-10]],[[39104,862373],[211,-149],[426,-302]],[[30699,879090],[-142,-50],[-1,495]],[[30556,879535],[143,-445]],[[23480,882074],[914,-302],[750,-248]],[[25144,881524],[7,4],[1172,670]],[[26323,882198],[581,7],[57,1],[548,-453],[115,-451],[665,-571]],[[28289,880731],[546,-271]],[[28835,880460],[366,-180],[1156,-128]],[[30357,880152],[198,-615]],[[30555,879537],[-1,-498],[-2140,-756],[-11,-4],[-1828,1748],[-1163,555],[-701,55],[-385,-280],[-441,-320],[-178,8],[-182,9],[-544,258],[-131,188],[-61,87],[-48,172],[-77,276],[2,26],[32,488],[189,642],[32,111],[19,48],[54,138],[230,48],[16,-301]],[[23238,882235],[160,-107],[82,-54]],[[0,6821],[4734,462]],[[4734,7283],[-2215,533],[73,41],[1670,-127],[3852,-294],[5472,-828],[3436,-181],[2391,-125],[11132,-1031],[1441,-133],[623,-178],[627,-179],[1071,-126],[849,-100],[1308,-684],[3429,-580],[1865,-499],[3353,-16],[57,-21],[87,-31],[-468,-103],[-521,-115],[567,-92],[468,-76],[1692,101],[394,23],[384,-188],[817,-402],[215,-725],[4,-16],[1716,-344],[244,85],[1246,431],[2166,-185],[-148,-127],[-264,-227],[-553,-127],[-509,-116],[5388,-146],[2386,-64],[-453,179],[-53,21],[-557,469],[290,27],[314,28],[1696,-373],[394,-87],[783,-28],[3795,-137],[3440,80],[47,-4],[2758,-232],[298,-210],[2002,-15],[4000,-29],[181,193],[124,132],[1181,218],[92,17],[208,-13],[1574,-104],[2246,855],[1468,955],[1708,271],[112,18],[362,-7],[15174,-290],[3598,-353],[1914,-188],[2524,19],[1223,10],[2462,213],[1263,492],[1558,607],[-1463,216],[-359,53],[-7481,-236],[-521,18],[-2652,90],[-11493,943],[-3408,562],[-7570,1250],[-3055,731],[-981,379],[-1787,689],[-2373,1585],[-367,389],[-239,254],[-57,199],[789,523],[243,339],[-30,799],[-28,745],[-334,832],[-212,285],[-241,323],[-2077,1993],[-738,707],[-74,731],[-2,20],[160,1023],[20,66],[164,532],[-244,763],[-1941,1669],[-430,857],[-62,123],[-9,322],[28,54],[227,427],[1138,1090],[1462,735],[1111,560],[588,157],[6097,1050],[1273,219],[2303,139],[11050,665],[801,163],[549,111],[565,319],[113,323],[-474,319],[-1816,457],[-1302,328],[-3821,1326],[-5128,439],[-1071,-142],[-1370,-182],[-1526,105],[-1857,1312],[-317,488],[-110,392],[-109,86],[-86,67],[-3247,577],[-241,177],[-525,386],[-1368,1527],[-1890,499],[-1568,414],[-1825,1010],[-4032,1475],[-676,377],[-27,35],[-416,546],[-51,275],[31,118],[55,217],[659,477],[1335,360],[346,874],[306,774],[-3050,497],[-20,3],[-129,-55],[-1151,-493],[223,743],[182,606],[892,1544],[-74,1266],[-6,106],[-255,350],[-7,101],[-7,103],[22,1018],[304,213],[534,-41],[445,-34],[135,-236],[125,-219],[544,-445],[1491,-687],[356,186],[604,316],[143,435],[-138,236],[208,312],[1163,277],[2240,-302],[3187,-430],[1546,-367],[300,-168],[266,-150],[213,-296],[-1839,-330],[358,-146],[936,-56],[2332,-141],[523,589],[546,205],[128,47],[662,-107],[665,-108],[4335,-2202],[901,-220],[207,8],[502,19],[1067,473],[-408,120],[-1250,370],[945,252],[908,-297],[566,-185],[344,178],[100,52],[-6,152],[-7,184],[115,107],[238,221],[1213,193],[452,72],[1028,366],[1090,859],[568,194],[307,-144],[206,-201],[721,-704],[112,-32],[173,-49],[835,192],[528,557],[-1163,1362],[-298,350],[742,92],[1730,-398],[-355,715],[-1678,459],[615,88],[1326,188],[3,133],[2,94],[-93,111],[-8,10],[-1306,542],[-2459,1019],[-2903,287],[-63,-26],[-1110,-445],[-817,81],[-20,2],[-12,3],[-2348,474],[-64,490],[226,191],[21,18],[914,45],[307,15],[197,44],[1290,288],[34,33],[19,18],[-520,196],[-79,30],[531,481],[523,98],[2520,-755],[425,-128],[1540,-638],[2379,-686],[506,24],[305,133],[234,103],[-3,426],[-683,272],[-904,359],[-416,329],[-498,394],[-180,384],[141,144],[488,495],[189,95],[330,166],[1506,-4],[2762,391],[379,138],[866,951],[1176,272],[737,170],[204,-33],[394,-62],[771,336],[661,287],[834,-308],[745,-275],[886,-46],[512,-26],[1000,182],[1515,274],[697,609],[602,855],[551,216],[1110,436],[3208,123],[1026,339],[1391,-124],[351,-31],[180,114],[1551,979],[-461,435],[-238,225],[-164,691],[-9,39],[1178,284],[261,11],[813,34],[2050,1049],[2630,-402],[478,-441],[361,-332],[318,-863],[358,-115],[3013,461],[2044,81],[6914,-618],[3862,645],[4129,690],[516,-90],[406,-71],[683,-469],[512,-122],[406,31],[658,49],[1788,427],[2213,41],[2924,54],[12297,870],[2909,1467],[1299,-1242],[549,-176],[92,-30],[1435,-131],[1435,170],[1102,130],[1003,-84],[1569,273],[54,360],[-49,292],[-653,1087],[85,487],[638,676],[551,335],[539,147],[877,240],[821,-243],[93,-110],[54,-64],[-29,-77],[-41,-109],[-449,-221],[-272,-623],[199,98],[697,344],[196,5],[550,14],[101,-45],[103,-46],[309,-496],[-161,-331],[-835,-513],[-227,-437],[-153,-293],[317,-212],[626,26],[632,25],[262,-313],[357,-427],[166,-814],[-14,-755],[-2,-98],[998,-95],[1126,107],[1169,111],[271,335],[102,126],[-408,1094],[-59,160],[-53,904],[-35,608],[168,217],[498,51],[197,21],[2536,-281],[2229,-2367],[991,277],[290,-201],[312,-216],[-384,-418],[417,-127],[269,-82],[1795,-10],[107,71],[42,28],[-35,151],[-132,576],[419,58],[1300,179],[3043,-1162],[81,-134],[-223,-1118],[-101,-505],[-524,-974],[325,-175],[847,-14],[543,-9],[1092,273],[1246,312],[331,213],[21,79],[15,58],[-189,570],[77,457],[7,38],[62,151],[340,832],[269,401],[297,157],[1488,-137],[2091,-193],[522,-146],[564,-158],[-52,-35],[-45,-32],[3436,-1369],[186,-275],[76,-356],[-18,-435],[-2,-38],[490,-139],[298,39],[1378,183],[854,224],[1378,362],[-321,539],[-274,459],[-2447,1923],[-612,763],[80,146],[61,113],[988,521],[948,500],[559,-5],[466,-4],[-86,1129],[-843,994],[-102,119],[-91,50],[-209,113],[-987,150],[-1636,-43],[-30,38],[-261,327],[-417,1064],[-15,242],[761,119],[515,81],[456,-14],[772,-25],[1092,-234],[874,-187],[805,19],[108,59],[922,503],[71,1057],[-2730,1296],[-582,-126],[-489,-551],[-214,-241],[-3406,-685],[-214,93],[-201,87],[-1123,1070],[-809,1289],[22,115],[69,356],[108,118],[56,63],[759,280],[1181,-90],[1380,-105],[191,-120],[132,-83],[124,-396],[-182,-252],[218,-301],[70,-97],[698,-223],[1503,271],[1434,259],[476,-182],[289,-110],[903,-586],[380,-247],[3171,1163],[2397,421],[71,-43],[578,-344],[588,-693],[260,-305],[938,-330],[1125,-396],[632,-135],[1050,-224],[321,25],[350,27],[304,500],[803,218],[656,-74],[1077,-122],[1102,481],[17,65],[94,361],[-270,904],[136,158],[1099,-686],[115,-71],[120,-287],[914,-669],[3324,176],[1376,-255],[2906,-539],[425,44],[399,275],[2206,422],[945,591],[125,128],[260,1039],[-5,183],[-5,206],[-140,543],[-45,174],[-253,118],[-346,161],[787,136],[481,84],[893,-164],[1146,-210],[364,-171],[176,-83],[266,-400],[-21,-216],[-3,-28],[-166,-227],[-1190,-1007],[42,-216],[766,-192],[424,-106],[822,145],[633,-174],[367,-101],[511,-371],[870,-633],[708,-160],[315,134],[1042,445],[1479,927],[169,-354],[813,-1704],[631,-203],[1314,-423],[1005,4],[2064,8],[713,-304],[60,-26],[384,-289],[687,-516],[1002,-498],[1242,-616],[731,-47],[1350,283],[903,384],[387,165],[202,682],[-744,967],[-30,976],[217,285],[996,10],[762,-615],[212,-2],[635,-7],[31,399],[-287,540],[-328,376],[-135,155],[2,385],[292,385],[830,-227],[1578,-432],[854,-714],[2135,-2239],[2464,550],[525,5],[1224,11],[463,-363],[69,-54],[-63,-185],[-49,-142],[-346,-409],[-624,-444],[279,-248],[146,-130],[1339,106],[7,0],[3138,1082],[855,-153],[914,-163],[1183,140],[292,123],[1640,686],[3986,951],[2557,609],[1663,-46],[3391,733],[4354,1760],[1164,1711],[1076,1584],[-129,2625],[-532,944],[-749,578],[-464,690],[-23,102],[-139,620],[498,1101],[84,664],[-58,352],[-77,472],[-1269,3478],[-414,593],[-960,691],[-26,183],[-107,755],[38,163],[48,211],[120,195],[108,175],[-55,659],[-114,463],[-621,724],[-115,134],[317,786],[366,101],[294,81],[500,124],[154,39],[558,-232],[1579,73],[841,967],[634,729],[-53,311],[-279,117],[-602,254],[-164,821],[61,1263],[29,610],[273,829],[590,739],[31,40],[-437,139],[-801,1259],[466,163],[683,241],[32,142],[139,616],[-357,43],[-121,15],[-10,556],[188,235],[194,242],[486,107],[212,469],[-799,32],[-760,31],[-701,-223],[-531,-170],[-109,610],[322,671],[-145,892],[137,335],[115,279],[123,106],[980,841],[387,-12],[140,-285],[-25,-190],[-50,-376],[322,-575],[113,-201],[609,-491],[223,145],[-350,3464],[38,169],[4,17],[447,256],[244,16],[333,22],[299,-218],[319,-233],[267,-49],[331,-61],[92,1141],[-25,1003],[446,1322],[11,32],[551,69],[386,49],[353,599],[353,306],[215,-30],[293,-40],[945,855],[1455,1317],[411,613],[-768,337],[-20,9],[-58,872],[207,745],[574,622],[676,-298],[886,-390],[245,392],[851,1359],[543,590],[151,413],[187,511],[333,-36],[290,-587],[-86,-318],[210,-52],[182,-45],[250,272],[486,527],[722,236],[3079,3497],[3295,1159],[1135,775],[96,514],[358,341],[2040,729],[504,490],[1647,574],[300,-38],[440,-213],[766,-1664],[-1,-298],[-195,-335],[-237,7],[-575,15],[-107,270],[-11,29],[95,208],[44,94],[-70,419],[-651,20],[-537,-686],[-213,-273],[-334,-100],[-551,-165],[-278,83],[-306,-243],[-215,-171],[-353,-547],[-740,-1149],[-452,-1145],[-94,-499],[-57,-299],[16,-208],[7,-89],[219,-68],[-51,-308],[-58,-361],[-280,23],[-165,14],[-303,150],[-633,313],[-294,519],[-540,12],[-188,4],[-897,-425],[-635,-571],[-454,-408],[-2024,-2344],[-1229,-779],[-1397,-885],[-148,-439],[3,-30],[23,-268],[33,-30],[616,-575],[91,-180],[73,-142],[-1016,-931],[-445,-409],[-47,-211],[-51,-228],[2,-487],[1387,-1423],[1453,1205],[2119,162],[30,-225],[-85,-344],[-6,-24],[-484,-679],[-481,-674],[-635,-51],[-252,575],[-129,293],[-224,149],[-417,-541],[-361,-469],[-452,-91],[-39,119],[-70,212],[-238,196],[-284,54],[-185,35],[-691,48],[-570,-118],[-614,-128],[-210,-264],[-9,-11],[593,-431],[688,-1783],[-811,11],[-191,543],[-77,219],[-449,531],[-494,584],[-50,37],[-1062,769],[-133,-83],[-164,-102],[-262,-343],[6,-309],[-223,-706],[-201,-402],[-144,-286],[166,-1205],[323,-6],[275,-562],[-7,-26],[-22,-81],[-394,-233],[-71,-42],[-1418,211],[-1301,-370],[-82,-145],[-180,-319],[449,-205],[87,-39],[-105,-265],[-107,-269],[-753,-1031],[-397,-258],[-236,101],[-181,-429],[-295,-698],[-334,-1255],[-26,-575],[-52,-1158],[-61,-168],[-92,-257],[1212,-209],[557,447],[67,-615],[16,-139],[-938,-956],[354,-685],[974,-974],[1981,-716],[438,155],[-307,343],[-73,601],[1073,843],[1019,175],[1219,-113],[39,-40],[91,-94],[-174,-274],[-256,-108],[-311,136],[-176,77],[-656,-164],[-310,-192],[-291,-181],[-446,-527],[1302,-509],[532,-386],[-1196,-716],[90,-284],[105,-338],[317,-512],[298,-288],[97,-93],[1788,-1080],[379,-426],[320,-358],[99,-643],[-11,-242],[-9,-225],[-99,-276],[-213,-57],[-181,-49],[55,-493],[589,-796],[920,-330],[104,-156],[169,-252],[91,-513],[-64,-84],[-57,-76],[-619,-464],[-405,-114],[-302,-85],[-182,-195],[177,-511],[67,-52],[502,-390],[1912,301],[143,-69],[124,-61],[48,-546],[-269,-32],[-1266,-875],[-295,-309],[-54,-123],[-115,-261],[17,-164],[1,-12],[143,-66],[166,-77],[258,8],[259,8],[182,193],[1250,-131],[532,-1373],[199,-514],[-64,-364],[-81,-455],[-809,-374],[-201,-92],[456,-606],[391,-18],[113,-6],[184,-148],[644,-519],[136,-429],[-90,-120],[-103,-138],[-333,-116],[-600,-209],[-1233,-202],[-739,-121],[-191,-231],[7,-244],[3,-136],[305,-316],[14,-15],[869,-231],[1959,471],[19,-84],[125,-561],[-219,-1029],[283,-309],[265,-290],[-308,-187],[-502,-306],[-1402,391],[-41,-31],[-58,-44],[-117,-560],[393,-970],[1207,-105],[692,397],[383,-184],[192,-674],[-16,-377],[-446,-566],[-125,-58],[-185,-84],[-208,-257],[-80,-98],[52,-71],[596,52],[1569,754],[429,206],[125,-53],[111,-48],[138,-387],[-247,-1702],[-56,-88],[-45,-69],[-500,-142],[-498,-141],[-99,70],[-104,72],[-148,326],[-546,39],[-388,-1506],[-243,-1491],[-233,-1422],[2,-733],[-1648,-929],[-535,-302],[110,-51],[449,-209],[857,211],[1058,262],[337,-144],[-48,-107],[-164,-369],[-657,-629],[-269,-258],[-137,-21],[-593,-94],[-728,83],[-229,26],[-696,-327],[-461,-476],[319,-375],[156,-357],[36,-83],[-96,-231],[-53,-127],[-238,-236],[-287,-286],[-1677,-991],[-3787,-600],[-746,-289],[-139,-185],[-57,-75],[358,-184],[2838,139],[482,-120],[-325,-446],[-2180,-1232],[-8716,-2840],[-2220,-724],[-4369,-810],[-902,-405],[-44,-52],[-40,-46],[279,-257],[5222,-1888],[810,-430],[16,-175],[229,-2529],[-12,-1074],[-197,-489],[-47,-118],[-1245,-1113],[-1055,-943],[-1636,-652],[-1462,-150],[-91,-9],[-5837,379],[-638,127],[-2340,465],[-1003,287],[-2659,761],[-1588,1091],[-1939,1891],[-1113,1085],[66,2589],[-9897,-1314],[-4455,-592],[-43,-401],[-27,-260],[282,-375],[-9,-62],[-14,-98],[-987,-1413],[-201,-175],[-215,-186],[-235,100],[-160,67],[-615,864],[-744,1044],[-55,21],[-273,105],[-3073,-319],[1455,-833],[390,-744],[581,-1108],[1009,-2623],[-131,-937],[-111,-783],[1930,-1135],[824,-721],[35,-276],[-426,-1031],[-268,-649],[-157,-1475],[92,-183],[479,-952],[1172,-1101],[763,-716],[255,-42],[109,-18],[882,549],[38,271],[29,207],[-984,1360],[-61,130],[54,105],[451,157],[459,160],[676,-165],[1048,-256],[1049,-424],[923,-374],[-211,-67],[-683,-216],[39,-242],[2005,-1000],[1393,-695],[1242,-914],[-264,-96],[-414,-151],[-651,-36],[-503,-28],[-2842,330],[-1886,219],[-977,-106],[47,-85],[5423,-1109],[381,-22],[2851,-168],[28,-620],[1177,-608],[692,-358],[2077,-800],[715,-150],[2006,-419],[6040,-468],[7500,342],[7607,643],[8934,1240],[2750,381],[5094,482],[2272,456],[337,155],[606,279],[586,1551],[67,178],[544,616],[371,238],[240,153],[8323,1124],[1589,334],[1677,353],[1845,606],[522,342],[496,548],[336,372],[1577,2083],[4075,1574],[1300,502],[395,196],[1954,966],[2747,1887],[1416,515],[1445,-77],[2300,-580],[3102,-782],[950,-491],[499,-258],[518,-565],[477,-520],[1481,-1069],[230,-356],[53,-82],[-138,-104],[-338,-256],[-848,-251],[-7760,-923],[-967,-538],[165,-291],[1658,-83],[6863,966],[1323,-90],[1122,-77],[351,-133],[404,-153],[306,-754],[174,-429],[-13,-77],[-8,-46],[-184,-115],[-499,-313],[-5663,-607],[-339,-127],[-44,-71],[-89,-143],[469,-806],[975,-279],[2667,391],[3106,455],[1273,0],[965,0],[509,-166],[90,-285],[58,-185],[9,-290],[-135,-316],[-5,-11],[-130,-2094],[-75,-43],[-467,-268],[-860,-84],[-207,-20],[-1780,297],[-1118,379],[-871,-102],[-160,-204],[-77,-99],[175,-362],[1349,-383],[345,-242],[160,-189],[2,-94],[2,-69],[-1935,-1418],[-106,-78],[-2451,-667],[-4518,-648],[-3801,-544],[-4444,-95],[-2722,208],[-1500,429],[-128,37],[-2021,986],[-1144,704],[-529,518],[-758,449],[-1005,595],[-696,308],[-444,196],[-1051,71],[-3457,-697],[-6663,-2109],[-772,-326],[-98,-42],[-4640,-2697],[-982,-359],[-171,-29],[-1498,-259],[-1707,-146],[-3326,-286],[-14143,-432],[-440,-28],[-5984,-374],[-1902,-511],[-1256,-337],[-599,-533],[-304,-766],[90,-374],[707,-623],[649,-573],[1359,-618],[3498,-1065],[5413,-1183],[5661,-560],[2197,-42],[5612,74],[3045,179],[4732,279],[2094,-635],[937,-545],[246,-143],[-12,-119],[-7,-67],[-477,-561],[-160,-188],[-288,-738],[187,-310],[595,-206],[1756,36],[213,56],[891,238],[2375,1403],[2885,1705],[291,113],[916,357],[4314,1201],[2124,397],[1009,189],[1399,461],[2433,801],[1477,314],[1714,122],[9682,311],[2545,-10],[1709,-7],[7057,1076],[2569,670],[3255,849],[8095,2587],[3343,1440],[1172,710],[1207,731],[3571,851],[6006,454],[222,46],[999,212],[294,-247],[74,-62],[-605,-1380],[-4,-8],[25,-141],[1579,-276],[69,-12],[2216,125],[646,1073],[503,271],[288,360],[46,58],[50,174],[97,336],[-134,465],[-1752,2296],[-2,11],[-26,204],[1028,435],[1416,599],[21,130],[-52,84],[-168,266],[-729,303],[-1742,196],[-4913,107],[-3434,74],[-1525,598],[-4287,774],[-1097,608],[-538,767],[29,278],[95,599],[153,959],[161,261],[846,600],[123,88],[1077,1431],[1496,1052],[502,121],[978,235],[2070,1147],[2428,1011],[1945,490],[1468,370],[612,452],[68,50],[339,165],[7398,3603],[728,518],[-530,777],[709,177],[2554,638],[502,190],[420,159],[141,332],[1259,-103],[277,-22],[858,232],[3985,1590],[2068,1492],[1584,1657],[643,1049],[40,64],[208,784],[529,1033],[613,604],[644,357],[2590,776],[4231,2474],[1726,1102],[2234,1427],[5269,2195],[4449,1854],[1010,226],[1383,-363],[828,94],[555,63],[1513,621],[3114,1278],[922,662],[200,144],[318,359],[405,457],[884,1784],[54,575],[-172,446],[-133,97],[-1276,181],[-600,420],[-389,273],[-491,589],[-161,514],[-224,712],[575,252],[764,335],[187,2],[250,2],[94,-84],[99,-89],[118,-577],[113,-548],[678,-629],[473,-439],[691,82],[235,861],[9,18],[318,629],[1133,1145],[441,445],[-17,305],[-861,258],[-184,285],[329,144],[409,180],[734,52],[828,59],[378,-160],[6,-198],[641,-822],[106,-66],[358,-226],[680,-863],[255,-668],[2,-4],[62,-1641],[81,-233],[106,-76],[663,-477],[293,96],[1764,581],[89,340],[604,2308],[-98,1079],[-60,659],[-394,373],[-26,98],[-37,143],[815,600],[1186,403],[1279,95],[1158,85],[344,-55],[168,-27],[51,-48],[176,-164],[243,-1127],[-43,-234],[-195,-1072],[-637,-738],[-455,-528],[560,-396],[148,-105],[546,-34],[1291,288],[2062,459],[1075,19],[969,18],[101,-90],[194,-172],[88,-2],[247,-8],[937,247],[598,157],[39,119],[-114,124],[-673,229],[-605,206],[-61,2920],[59,666],[187,435],[227,530],[311,364],[416,97],[349,82],[633,-148],[206,-376],[-16,-237],[-26,-32],[-321,-389],[-971,-607],[-24,-344],[1001,-504],[1135,-250],[1127,-248],[-51,-198],[-1256,-416],[-118,-145],[-134,-164],[11,-747],[58,-243],[51,-211],[403,-789],[329,-646],[1470,-43],[467,311],[723,483],[771,28],[58,-35],[227,-139],[225,-424],[-369,-1137],[838,-303],[585,-212],[143,34],[88,22],[258,323],[798,999],[1032,784],[420,319],[3232,1213],[774,417],[929,500],[544,558],[154,157],[794,1261],[155,126],[322,263],[2481,1121],[1469,341],[1034,-77],[976,-763],[278,-217],[1139,-190],[1026,165],[978,156],[923,452],[819,401],[2261,490],[928,35],[1183,46],[1354,-96],[1149,-82],[1792,-625],[2517,-1527],[750,-138],[1170,-214],[1207,1424],[432,236],[342,187],[1503,-30],[3142,-62],[2917,226],[1403,298],[486,104],[1020,26],[1125,28],[4678,-160],[4735,-1008],[3398,245],[967,-165],[4384,-745],[1200,91],[1948,147],[2437,756],[1324,410],[943,40],[427,18],[1741,338],[2561,745],[3884,1130],[3009,413],[2326,320],[1096,585],[901,266],[917,10],[710,8],[582,-136],[1228,-287],[541,116],[320,69],[571,298],[34,104],[78,232],[-290,2476],[-434,516],[-207,247],[2,202],[5,417],[200,881],[778,671],[87,37],[416,180],[765,54],[116,9],[61,-3],[362,-16],[384,-250],[273,-179],[566,-1353],[1323,-632],[748,-688],[462,-425],[148,-377],[662,-657],[1163,-667],[593,-156],[622,-163],[1393,-1457],[540,-63],[607,479],[344,271],[220,1],[292,-194],[505,-336],[474,-481],[817,-829],[1154,288],[992,1138],[334,384],[208,19],[626,60],[61,94],[57,2653],[-92,1109],[632,781],[2118,931],[345,152],[459,712],[2858,1203],[776,532],[702,481],[141,151],[261,280],[306,151],[250,123],[2518,163],[2057,682],[427,337],[978,771],[3183,528],[128,653],[55,279],[-22,224],[-57,588],[443,283],[130,83],[1046,16],[523,-182],[972,-339],[217,-184],[-578,-590],[-32,-336],[-37,-388],[724,-299],[820,-64],[3833,1843],[315,231],[434,316],[78,254],[8,28],[-684,545],[-533,-120],[-565,-420],[-435,-31],[-196,89],[-303,137],[-235,272],[-139,160],[-21,68],[-68,212],[19,130],[61,418],[156,103],[229,150],[1483,323],[1116,-270],[44,-25],[969,-520],[69,-307],[122,-547],[537,-193],[1666,44],[274,102],[206,78],[462,252],[-1181,423],[-242,546],[19,106],[21,117],[576,640],[-199,318],[-805,184],[-142,32],[-68,390],[-41,239],[2,20],[59,502],[290,663],[784,755],[1760,530],[41,13],[746,620],[486,404],[197,88],[794,354],[1891,260],[2707,372],[1973,-125],[2060,-129],[1272,-603],[2345,-2283],[989,-128],[815,-591],[400,-291],[59,-90],[129,-201],[-7,-83],[-34,-420],[-2136,-607],[61,-510],[59,-501],[987,-624],[505,86],[652,112],[2119,-439],[1989,-411],[141,-101],[150,-107],[335,-526],[-101,-40],[-246,-97],[-882,240],[-132,-243],[26,-24],[178,-171],[824,-223],[2518,-63],[1869,165],[1766,-669],[628,-149],[620,-147],[1004,-50],[513,-25],[542,-209],[968,-374],[1250,679],[1232,222],[6770,-1374],[7926,-1073],[990,216],[304,439],[54,77],[282,190],[439,73],[121,20],[132,-59],[195,-89],[281,-1473],[306,-1610],[106,-877],[131,-1093],[-40,-307],[-10,-75],[-222,-283],[-167,-91],[-737,-401],[-901,-145],[-389,-342],[-320,-282],[184,-105],[118,27],[1270,297],[506,17],[398,13],[-469,-486],[-854,-398],[-22,-442],[168,-5],[225,-5],[236,-161],[187,-128],[77,-375],[-418,-382],[-154,-7],[-892,-43],[-1194,392],[-137,-50],[-506,-188],[-16,-44],[-39,-107],[488,-2097],[128,-36],[600,-170],[125,-175],[199,-278],[25,-330],[-48,-25],[-861,-458],[-586,4],[-507,327],[-311,-109],[-115,-41],[-243,-275],[-239,-270],[-52,-334],[-205,-1334],[772,-826],[1589,333],[593,124],[221,-436],[115,-642],[-40,-469],[-35,-399],[65,-565],[23,-201],[1600,-1076],[3013,-2025],[859,-448],[570,-296],[227,189],[227,385],[865,1462],[1020,1216],[489,583],[464,522],[773,869],[999,685],[19,67],[32,108],[-117,335],[-1095,961],[-17,213],[-27,338],[2682,1703],[1248,484],[1297,34],[734,20],[190,-107],[226,-128],[666,-72],[344,60],[710,124],[202,146],[589,428],[224,460],[46,94],[721,881],[1686,634],[413,206],[1501,750],[556,46],[588,49],[243,544],[96,215],[67,1404],[-63,283],[-117,515],[378,374],[625,620],[2592,1937],[2588,1041],[3162,715],[4086,1349],[1117,595],[1516,808],[1304,1286],[427,421],[228,-9],[1575,-58],[20,-22],[570,-617],[250,27],[734,82],[2519,1010],[1968,789],[1872,1016],[1700,13],[1792,-541],[778,-95],[699,-85],[1619,423],[731,378],[471,243],[1027,372],[1655,600],[2822,-852],[2349,71],[3484,464],[1754,233],[739,-491],[276,-185],[1489,-109],[1012,441],[1707,-230],[845,260],[837,258],[1552,245],[180,-56],[259,-82],[390,289],[69,50],[-19,745],[-83,963],[-25,294],[-307,679],[-96,331],[-208,712],[17,139],[14,110],[1192,-191],[1228,-197],[397,539],[152,205],[1053,624],[245,145],[894,879],[162,58],[249,91],[661,-148],[198,-44],[25,-25],[314,-306],[100,-336],[-1643,-938],[-979,123],[-398,-920],[43,-853],[34,-671],[563,-417],[539,30],[205,458],[611,574],[216,-155],[-138,-373],[-86,-231],[-432,-588],[919,-283],[572,540],[1039,979],[2910,771],[1304,-168],[1747,-609],[3474,-414],[2554,-899],[2328,-1088],[1666,-601],[1412,-509],[115,4],[334,9],[2285,-2002],[516,105],[534,109],[23,34],[59,84],[20,539],[334,704],[281,322],[459,98],[550,117],[375,-373],[908,45],[578,609],[171,329],[248,477],[-122,76],[-266,164],[-50,186],[54,393],[1137,1200],[1103,469],[618,262],[1084,110],[1497,152],[2007,1004],[342,-110],[263,-85],[1415,-1812],[781,-207],[293,-339],[449,-522],[125,-251],[53,-106],[-1,-150],[-2,-352],[359,-223],[603,-373],[602,6],[287,292],[1274,366],[1209,-73],[7,0],[329,-164],[862,-901],[690,-721],[580,-869],[640,-433],[1267,-532],[1249,-200],[350,-56],[1848,565],[916,25],[935,27],[1423,263],[2520,467],[110,-415],[258,-970],[774,-82],[8052,2223],[1035,60],[149,89],[215,129],[223,270],[181,222],[2730,1448],[255,58],[313,71],[2229,-1241],[1364,-760],[1058,-1943],[267,-492],[578,-48],[559,-47],[647,33],[274,281],[929,18],[734,-220],[128,-38],[480,151],[375,426],[275,787],[68,192],[-125,517],[-5,20],[-39,583],[-17,255],[131,240],[808,1484],[-498,452],[-840,765],[-177,303],[0,1],[95,200],[691,115],[5333,-1687],[1380,82],[1213,73],[993,230],[1252,291],[1152,-85],[237,-319],[59,-80],[586,-199],[342,384],[772,867],[540,806],[-210,1000],[-526,845],[112,689],[104,646],[271,212],[567,79],[1659,-1750],[80,-632],[-657,-1750],[292,-203],[2786,-1942],[834,-159],[741,265],[916,-157],[1253,-214],[848,-490],[443,-256],[1616,-283],[769,13],[635,10],[2352,-1072],[2631,-182],[2363,-162],[317,-131],[165,-67],[341,-295],[134,-380],[175,-174],[176,-174],[240,-106],[212,-93],[875,205],[878,603],[642,199],[747,-191],[140,-108],[210,-163],[471,-712],[118,-177],[2250,6],[2072,1588],[758,67],[1771,-229],[404,-398],[629,-620],[-38,-312],[-18,-148],[-541,-832],[-1502,-534],[-1515,-538],[-445,-464],[-248,-259],[-5,-19],[-98,-345],[177,-27],[1066,-169],[130,28],[798,175],[2800,-1859],[67,-45],[66,16],[1165,283],[867,423],[895,-33],[861,-32],[54,-78],[69,-99],[348,-2268],[-8,-101],[-16,-224],[-509,-278],[-571,173],[-438,133],[-623,-209],[-202,-68],[32,-53],[260,-423],[1477,-217],[1989,641],[694,-129],[503,-94],[712,-559],[1721,480],[1615,451],[95,-65],[128,-794],[-207,-506],[50,-250],[73,-357],[895,-567],[584,21],[804,28],[258,90],[207,73],[395,306],[610,991],[660,355],[885,-51],[190,-10],[97,35],[1428,528],[677,-1],[2422,-1452],[16,-40],[197,-477],[-887,-818],[411,-471],[743,-852],[399,-33],[232,441],[152,291],[801,-11],[1438,-570],[923,-366],[1419,-825],[420,48],[363,41],[521,418],[1125,-443],[1616,-637],[2150,-470],[1817,-1963],[1060,-332],[155,-103],[1025,-684],[219,-465],[-106,-70],[-67,-45],[256,-606],[534,-592],[279,-309],[408,-197],[1323,237],[260,-225],[134,-117],[24,-127],[57,-290],[153,-10],[65,-4],[894,46],[597,410],[71,49],[736,-69],[442,-725],[387,-636],[361,-414],[192,-219],[259,-71],[825,-225],[618,255],[-41,44],[-147,158],[39,263],[45,310],[4904,-757],[3130,24],[275,2],[295,-118],[85,-138],[133,-217],[-672,3],[-733,2],[595,-482],[1520,66],[853,37],[824,-166],[178,-203],[362,-414],[-79,-375],[678,-911],[382,-515],[532,-179],[1239,-417],[3485,-2197],[86,26],[145,43],[44,301],[59,401],[475,453],[1320,-2117],[57,-90],[-329,-427],[-493,-332],[-1374,-261],[-303,-249],[-212,-548],[-158,-408],[-16,-703],[286,-80],[114,-32],[376,-1523],[-482,-325],[-327,-222],[-728,-1528],[-19,-41],[-785,-547],[-792,-553],[14,-559],[15,-593],[-564,-711],[-36,-46],[-266,-142],[-755,-403],[-663,282],[-749,318],[-2093,-329],[-564,-254],[-428,-375],[-521,-458],[-1173,-498],[-1799,-763],[978,-261],[810,-216],[68,-64],[-73,-488],[-782,28],[-621,21],[-367,147],[-534,212],[-1785,-542],[7,-281],[164,-387],[1265,-1515],[-221,-511],[-872,-49],[-87,-5],[-1349,241],[-910,-1293],[-77,-184],[-159,-378],[-385,-326],[-324,523],[45,329],[52,383],[-206,670],[-73,234],[-508,376],[-296,-83],[-1265,-1180],[-575,-768],[-101,-281],[-568,-1568],[338,-474],[1311,-72],[2404,-133],[961,-258],[107,-28],[1075,-540],[-51,-379],[-60,-445],[-117,-54],[-5004,581],[-797,-1391],[24,-7],[1011,-289],[-1,-276],[-198,-668],[-55,-186],[-61,-103],[-380,-646],[-746,-305],[-331,-135],[460,-668],[174,-45],[319,-83],[550,-1096],[-46,-620],[-131,-1794],[-684,-161],[-564,-719],[30,-183],[1135,-87],[1031,-80],[446,-612],[987,-1353],[84,-945],[-665,-730],[205,-192],[285,-17],[416,-26],[698,147],[668,139],[383,-290],[305,-232],[48,-657],[21,-295],[-111,-477],[-385,-620],[-1487,-647],[-871,-120],[-220,-93],[-118,-255],[1193,-528],[972,155],[1571,252],[1004,340],[234,308],[-115,107],[6,74],[5,73],[793,817],[372,-257],[60,-199],[-7,-53],[-23,-169],[-559,-372],[2,-15],[19,-205],[707,-810],[269,-309],[344,-194],[1566,-271],[136,-23],[1557,-65],[414,-412],[130,-485],[-920,-165],[161,143],[67,59],[-25,104],[-85,66],[-216,169],[-1533,295],[-294,57],[-2832,-430],[-212,6],[-2483,69],[-1369,-491],[-2447,-878],[-166,-178],[-93,-101],[-114,-880],[-106,-81],[-219,-168],[-2306,16],[-2158,15],[-952,-527],[-232,-128],[-1072,-2856],[643,-1684],[-628,-786],[580,-1064],[818,-791],[239,-231],[294,-439],[-3089,-833],[1058,-245],[95,-22],[176,45],[1351,350],[946,-240],[-174,-240],[-936,-346],[-820,-303],[59,-65],[473,-520],[5,-2191],[-28,-178],[-43,-269],[859,-229],[1011,-269],[-15,-364],[-14,-351],[2436,-674],[2012,-1260],[2910,-1822],[-35,-83],[-56,-136],[-188,-78],[-248,-104],[-2339,0],[-974,1],[-1137,-186],[-2070,-338],[437,-236],[847,-456],[1314,-127],[1219,-119],[332,-257],[488,-378],[426,-56],[385,-51],[473,604],[-304,230],[-353,267],[50,28],[70,39],[4291,398],[887,-295],[885,-294],[-161,-195],[-116,-140],[-1336,-622],[91,-45],[934,-205],[595,84],[812,114],[1052,-186],[836,-149],[1027,-466],[230,-104],[-335,-457],[-437,-17],[52,-60],[131,-151],[2054,-461],[2308,-132],[589,-167],[79,-87],[574,-628],[-430,-297],[-273,-189],[-1560,-176],[-317,-494],[-191,-298],[352,-308],[1180,-110],[1075,554],[1556,177],[55,6],[140,-37],[2605,-682],[2410,-145],[1870,-112],[545,-244],[331,-148],[-849,-949],[-375,-137],[397,-261],[1058,449],[401,170],[1703,30],[1989,-454],[-1592,-646],[1250,-118],[2826,349],[1269,-18],[285,-94],[422,-139],[141,-309],[7,-16],[3961,-244],[46,-12],[3646,-975],[3545,-352],[293,-29]],[[998019,7770],[1980,-949]],[[54653,33599],[-736,-16],[-882,-19],[-691,107],[-461,71],[-2398,550],[-311,72],[-2814,955],[-2282,1364],[-197,384],[-447,874],[21,186],[343,303],[1225,396],[257,83],[76,107],[133,185],[56,661],[631,379],[1990,169],[2189,-353],[590,-95],[205,-71],[803,-277],[589,-754],[310,-397],[2422,-1388],[966,-554],[5,-8],[734,-1123],[516,-367],[428,-304],[-241,-328],[-210,-84],[-155,-63],[-2664,-645]],[[307504,37731],[-907,-63],[-2300,269],[-507,252],[1669,819],[2225,1639],[1286,491],[1960,750],[1430,320],[1365,305],[2267,106],[391,-2],[750,-4],[-86,-650],[-461,-164],[-2984,-1060],[-2875,-1418],[-3223,-1590]],[[963883,48431],[1446,-426],[1485,208],[695,97],[210,-43],[2256,-463],[247,-364],[-231,-242],[-79,-82],[-762,-281],[-1256,-464],[-2106,419],[-280,-22],[-248,-19],[-1043,-495],[-61,-29],[-220,-3],[-635,-7],[-1233,474],[-90,629],[-222,1557],[824,562],[634,-37],[206,-12],[76,-64],[387,-328],[21,-46],[34,-74],[-103,-233],[31,-135],[17,-77]],[[89902,48029],[-1081,-12],[-2068,663],[-144,99],[-169,117],[26,453],[3,47],[238,326],[53,73],[424,229],[1231,-191],[276,-105],[873,-331],[254,-261],[167,-173],[163,-493],[51,-154],[-78,-199],[-219,-88]],[[288509,45996],[310,-397],[882,-1132],[-1000,-265],[-1535,-406],[-1219,-62],[-1192,-60],[-1576,91],[-295,83],[-2560,714],[-308,-6],[-347,-6],[-330,-147],[-335,-149],[-1425,615],[-232,101],[-1175,697],[-184,143],[-160,125],[-121,314],[254,313],[2182,1099],[54,329],[70,423],[426,703],[243,132],[746,270],[1047,377],[1696,400],[543,41],[1667,127],[981,-360],[1041,-662],[368,-1832],[399,-1017],[33,-83],[982,-479],[70,-34]],[[85773,49744],[-812,-42],[-2294,336],[-697,413],[-385,229],[128,100],[162,127],[2293,366],[982,-576],[402,-413],[389,-401],[-125,-104],[-43,-35]],[[134179,66969],[1527,-547],[719,97],[162,6],[47,1],[214,-512],[-205,-505],[-32,-79],[-579,-238],[-2430,527],[-47,49],[-47,50],[-41,447],[78,330],[15,62],[619,312]],[[147071,64975],[-132,-26],[-391,-76],[-779,262],[-557,452],[-273,222],[-36,71],[-91,177],[-18,889],[13,16],[105,123],[233,-45],[812,-158],[722,-328],[862,-391],[-23,-227],[-67,-663],[-303,-238],[-77,-60]],[[176328,67585],[-274,-73],[-448,-120],[-2611,39],[686,771],[3569,1259],[413,-31],[91,-58],[355,-226],[-720,-399],[-454,-583],[-241,-355],[-228,-140],[-138,-84]],[[166264,70230],[872,-281],[1781,102],[804,45],[582,-203],[81,-113],[89,-125],[0,-6],[-11,-172],[-325,-359],[-221,-243],[-3007,-1740],[-1903,-612],[-1688,-24],[-1121,-16],[-2106,291],[-683,288],[-132,419],[26,176],[670,1181],[168,184],[174,192],[3,23],[31,220],[-175,206],[-701,164],[-788,185],[458,782],[491,159],[1209,-99],[1136,-93],[1863,-399],[2423,-132]],[[152527,72758],[1229,-1531],[-169,-195],[-190,-218],[-921,-464],[386,-359],[1283,232],[1576,286],[802,-793],[709,-701],[24,-241],[16,-164],[-202,-669],[-49,-160],[-209,-74],[-2316,203],[-577,392],[-682,464],[-1701,556],[-747,244],[-217,352],[-575,935],[-700,682],[-237,-381],[-378,-296],[-184,57],[-398,122],[-340,595],[-312,545],[-3,514],[98,295],[55,166],[341,274],[319,259],[2372,185],[822,-273],[312,-103],[327,-316],[436,-420]],[[250839,73941],[-231,-181],[-1008,38],[-401,15],[-138,255],[-171,316],[-3,138],[-2,111],[126,273],[1001,334],[465,154],[771,-231],[58,-89],[56,-86],[-43,-169],[-12,-45],[-209,-372],[-259,-461]],[[292948,70549],[-287,-45],[-70,-11],[-2966,1305],[-379,277],[-640,468],[-263,870],[169,209],[143,176],[17,2],[373,30],[643,375],[83,49],[-430,296],[705,804],[1012,76],[699,-56],[254,-98],[694,-269],[433,-282],[490,-319],[8,-511],[-389,-744],[143,-2014],[-377,-501],[-65,-87]],[[285014,74702],[-1251,-328],[-731,-473],[-789,-509],[-547,-178],[-241,81],[-437,146],[-672,771],[159,330],[136,86],[227,143],[350,15],[253,11],[232,-144],[39,-24],[208,85],[483,199],[322,388],[152,184],[-3,218],[-2,213],[1376,390],[849,-122],[151,-49],[167,-54],[-111,-626],[-320,-753]],[[247384,74434],[-443,-494],[-511,-568],[-501,83],[-130,219],[544,782],[8,59],[43,330],[-122,704],[-322,595],[-607,535],[190,197],[937,251],[207,56],[502,-51],[442,-728],[108,-178],[-62,-588],[-31,-294],[-62,-226],[-190,-684]],[[226905,80153],[503,-44],[314,-28],[116,712],[-82,376],[-38,177],[61,104],[59,100],[1004,-288],[447,-659],[-732,-541],[763,-742],[729,1530],[939,950],[1637,-162],[277,-155],[173,-96],[-51,-627],[-1090,-679],[-455,-168],[-1163,-428],[831,-242],[1022,212],[774,160],[593,228],[14,20],[294,424],[203,11],[214,13],[160,-85],[27,-14],[73,-155],[208,-440],[-524,-367],[-117,-81],[-446,11],[-954,24],[-648,-277],[2912,-417],[-16,-48],[-37,-117],[-307,-157],[-217,-112],[-1217,-126],[45,-166],[298,-91],[-33,-133],[-81,-337],[-50,-25],[-135,-68],[-1246,-25],[-1240,-25],[-1143,297],[-831,-45],[-2419,-131],[-875,160],[-384,71],[414,254],[15,9],[81,271],[-2999,31],[-5881,926],[-549,325],[-627,370],[47,314],[157,180],[78,90],[389,144],[4363,1123],[390,-311],[256,-204],[-553,-173],[-18,-57],[-103,-337],[890,-17],[368,190],[469,242],[628,152],[285,69],[285,-122],[1928,-828],[209,8],[51,2],[17,86],[11,55],[-313,460],[-829,514],[-80,185],[-84,198],[422,407],[349,337],[456,126],[1348,-613],[-244,-334],[-20,-27],[-20,-356],[-16,-284],[62,-158],[209,-526]],[[292874,87218],[-570,-102],[-654,-117],[-976,18],[-556,740],[202,261],[1611,354],[550,5],[270,3],[554,217],[506,533],[751,-185],[484,-476],[117,-181],[-410,-356],[-1029,-391],[-850,-323]],[[292529,94618],[251,-460],[289,-530],[34,-434],[-74,-131],[-396,-696],[-2844,-62],[-559,195],[-598,1559],[77,151],[594,198],[1455,-35],[372,483],[877,3],[522,-241]],[[299723,94831],[-426,-131],[-88,14],[-918,142],[-655,453],[34,138],[41,165],[380,448],[567,104],[121,-77],[175,-110],[769,-1146]],[[327681,93741],[-44,-7],[-138,-23],[-370,361],[-626,1654],[-412,1087],[240,224],[84,78],[725,-61],[793,-1348],[61,-222],[43,-156],[13,-534],[-149,-758],[-93,-125],[-127,-170]],[[307221,94531],[841,-3315],[581,-828],[279,-198],[255,-182],[369,-703],[156,-297],[28,-89],[135,-434],[465,-2889],[243,-2542],[-130,-1692],[-42,-541],[-337,-1252],[-834,-883],[-231,-3],[-413,-5],[-225,-214],[-267,-255],[-1,-6],[-90,-615],[89,-9],[103,-9],[-190,-398],[-1061,-647],[-416,-107],[-409,-105],[-1265,-134],[-3490,166],[-1476,-125],[-570,434],[-1218,929],[504,588],[298,348],[229,126],[324,176],[1240,19],[2518,-294],[135,32],[383,93],[168,251],[-122,111],[-73,68],[-586,1336],[-2511,1966],[-847,369],[-515,31],[-391,24],[-112,-115],[-118,-848],[-480,-241],[-137,-68],[-521,230],[-353,25],[-379,28],[-470,-136],[-140,-40],[-84,-108],[62,-179],[499,-192],[147,-56],[252,-462],[51,-93],[-972,-1035],[-2,-1],[-541,-232],[-1702,570],[-156,52],[-2457,1396],[-480,414],[-485,418],[-591,1367],[-2,58],[-4,132],[93,135],[99,143],[433,179],[462,-334],[514,-788],[861,108],[-594,834],[-141,398],[25,88],[39,136],[232,209],[597,95],[798,-209],[677,-682],[353,-355],[1650,-765],[93,42],[169,77],[139,163],[-10,155],[-183,194],[-198,211],[-552,223],[-1058,428],[-80,158],[-118,234],[118,188],[66,105],[333,133],[283,33],[873,100],[734,-275],[233,-206],[783,-693],[600,229],[407,156],[-20,284],[-1130,207],[-689,545],[-62,401],[672,264],[286,112],[2926,75],[690,450],[782,510],[501,-22],[269,-206],[149,-115],[186,-805],[296,87],[269,80],[208,482],[-14,14],[-1017,984],[-1485,982],[-17,112],[-88,563],[158,364],[121,280],[173,132],[233,178],[832,133],[274,44],[719,-13],[1561,-28],[308,157],[-141,218],[-44,68],[-170,53],[-548,170],[-611,-204],[-159,-53],[-391,112],[-622,329],[-2641,2016],[0,66],[-13,1482],[148,289],[140,274],[281,912],[-609,370],[-653,398],[18,49],[92,253],[309,176],[1450,830],[1614,337],[503,257],[405,207],[218,-39],[229,-41],[811,-503],[204,-434],[50,-799],[8,-137],[999,-1306],[844,-1628]],[[739705,109960],[-142,-156],[-103,-115],[-159,52],[-445,144],[-1082,1093],[-107,309],[37,104],[27,76],[260,8],[1084,-388],[493,-510],[212,-220],[-71,-375],[-4,-22]],[[311030,107532],[-1635,-2163],[-389,40],[-571,59],[-419,507],[-87,191],[-118,259],[77,728],[644,667],[411,427],[843,2541],[154,151],[362,355],[698,383],[725,398],[143,-41],[112,-32],[72,-299],[4,-14],[-262,-305],[-366,-428],[139,-1426],[169,-651],[55,-209],[-761,-1138]],[[769415,114752],[-909,-387],[-689,13],[-437,282],[240,695],[182,153],[1227,-127],[218,-176],[68,-56],[100,-397]],[[840327,112078],[-76,-164],[-40,-85],[-1897,274],[-560,480],[-174,1124],[-811,2214],[-125,633],[-8,765],[44,108],[54,134],[343,266],[130,-100],[127,-100],[362,-673],[228,-458],[58,-116],[324,-1013],[2035,-2205],[43,-425],[33,-327],[-90,-332]],[[317028,116775],[-847,-294],[-139,80],[14,148],[40,410],[265,374],[427,995],[227,92],[179,73],[315,-74],[30,-110],[48,-172],[-45,-270],[-38,-220],[-104,-73],[-7,-5],[-365,-954]],[[324241,125122],[54,-67],[524,-664],[371,129],[199,-187],[7,-7],[-651,-456],[-1664,-1165],[-1624,702],[123,705],[1738,1762],[619,183],[44,-20],[285,-128],[-44,-332],[-23,-170],[42,-285]],[[327154,125501],[-181,-189],[-583,-610],[-427,-30],[-479,-34],[86,179],[23,-1],[171,-7],[520,1202],[84,316],[-140,559],[52,216],[58,239],[35,15],[377,156],[80,-23],[74,-21],[505,-669],[88,-118],[-251,-865],[-92,-315]],[[339425,128096],[103,-311],[140,-421],[121,94],[443,341],[704,-510],[317,-230],[65,-218],[59,-200],[-370,-580],[-314,-493],[-750,-227],[-980,-297],[-631,163],[-46,119],[-101,261],[-96,548],[-93,531],[-320,64],[-50,100],[-36,72],[83,263],[123,392],[801,786],[9,10],[279,180],[555,358],[-35,-311],[20,-484]],[[347028,132161],[96,-370],[40,-152],[-372,-288],[-191,-29],[-301,-46],[-480,174],[-716,261],[-1814,-838],[-183,164],[-214,193],[37,291],[251,392],[84,131],[105,68],[682,444],[1393,252],[436,-210],[983,-279],[57,-55],[107,-103]],[[332504,136219],[420,-195],[549,-254],[235,14],[119,7],[-563,-477],[-879,-350],[-194,206],[-993,234],[-117,28],[-137,7],[-865,46],[-198,398],[2623,336]],[[338749,139896],[348,-32],[399,-36],[342,25],[-15,-216],[-28,-400],[-370,-149],[-1006,-405],[-1039,-745],[-269,-61],[-79,-17],[-968,317],[809,998],[594,346],[483,141],[799,234]],[[999327,392373],[-4,-1],[-1,0],[-2,1],[-11,8],[-14,10],[-29,20],[-1,1],[-14,58],[22,57],[8,21],[13,87],[-2,7],[-14,52],[0,55],[0,6],[0,5],[18,21],[9,2],[2,0],[34,5],[14,-19],[1,0],[9,-8],[8,-9],[16,-24],[1,-10],[1,-4],[17,-217],[-39,-80],[0,-1],[-13,-13],[-25,-26],[-4,-4]],[[4407,392497],[-3,0],[0,1],[-1,3],[-1,39],[0,53],[4,106],[0,18],[1,6],[3,38],[6,20],[15,34],[2,4],[1,2],[4,2],[1,0],[2,-1],[3,-1],[4,-4],[2,-5],[1,-2],[1,-3],[3,-9],[2,-6],[1,-4],[1,-4],[1,-18],[1,-21],[-6,-120],[-1,-24],[0,-1],[0,-7],[-1,-5],[0,-2],[-2,-7],[0,-1],[-1,-6],[-2,-9],[-1,-2],[-9,-32],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[-2,-4],[-2,-2],[-1,-1],[-2,-3],[-12,-9],[-4,-2],[-4,-2]],[[3999,392586],[-57,-1],[-62,-2],[-3,4],[-4,5],[-1,1],[-2,4],[-2,2],[-1,2],[-2,7],[-2,6],[-2,11],[-1,1],[-1,23],[-2,53],[0,14],[0,7],[5,37],[15,45],[29,89],[13,11],[16,14],[16,-7],[11,-5],[37,-321]],[[995790,393521],[-89,-245],[-2,-3],[-3,-3],[-110,-52],[-8,-3],[-38,-6],[-115,-16],[-55,16],[-36,91],[-25,64],[3,66],[-99,-7],[-95,-8],[-210,-198],[-18,-123],[-1,-4],[-2,320],[257,328],[87,63],[135,96],[48,-12],[58,-20],[71,-31],[44,-18],[56,-26],[44,-20],[68,-120],[25,-86],[10,-43]],[[350,393520],[-20,-15],[-2,4],[0,1],[-6,11],[-1,3],[-1,4],[-2,5],[0,5],[0,3],[0,2],[8,152],[3,52],[9,86],[23,99],[9,41],[5,22],[4,2],[5,4],[126,-57],[-10,-150],[-28,-51],[-99,-184],[-23,-39]],[[2921,393560],[-20,-7],[-4,6],[-1,0],[-23,49],[-1,2],[-4,7],[-12,37],[-14,51],[-2,7],[-5,22],[0,8],[-1,12],[-2,12],[0,22],[0,10],[2,50],[1,24],[13,41],[1,2],[1,3],[2,4],[13,18],[46,65],[2,2],[4,5],[3,-1],[1,0],[2,-1],[3,-4],[1,-2],[2,-3],[12,-33],[7,-20],[2,-6],[0,-2],[1,-8],[10,-56],[5,-30],[6,-37],[0,-28],[1,-34],[0,-4],[0,-2],[0,-4],[0,-8],[0,-3],[0,-3],[-8,-60],[-1,-5],[-1,-2],[-1,-3],[-29,-75],[-7,-10],[-5,-8]],[[995832,394268],[7,-21],[13,8],[4,2],[2,1],[2,1],[11,-2],[2,-1],[4,-1],[21,-155],[-1,-25],[0,-8],[-9,-37],[-68,-156],[-9,0],[-3,0],[-8,-1],[-11,14],[-2,4],[-44,85],[-12,24],[-8,45],[-3,37],[0,9],[5,40],[2,18],[0,1],[17,47],[57,57],[31,14]],[[3894,394378],[-37,-26],[-93,18],[-51,13],[-15,9],[-2,7],[-1,4],[-3,27],[2,6],[2,6],[8,11],[3,1],[2,1],[82,-6],[46,-4],[54,-19],[1,-1],[1,-1],[2,-1],[3,-4],[1,-6],[0,-3],[0,-1],[0,-4],[0,-2],[1,-3],[-3,-14],[-3,-8]],[[4163,395453],[-2,-1],[-2,-1],[-5,1],[-2,2],[-1,0],[-2,2],[-30,49],[-14,28],[0,7],[-1,13],[-2,50],[1,8],[0,4],[3,23],[4,11],[4,7],[1,2],[1,2],[1,2],[3,4],[3,3],[1,1],[3,3],[7,6],[6,4],[1,1],[7,4],[2,0],[1,-1],[3,0],[2,-2],[2,-1],[11,-18],[18,-31],[10,-55],[0,-4],[0,-8],[-1,-10],[-3,-12],[-2,-7],[-2,-5],[0,-2],[-1,-2],[-18,-62],[-2,-4],[-1,-4],[-2,-3],[-2,-4]],[[999712,395515],[-11,-7],[-6,-4],[-25,14],[-126,323],[-11,34],[-6,23],[-2,10],[-2,11],[2,15],[3,9],[3,8],[46,49],[45,48],[8,7],[12,6],[124,52],[27,10],[6,2],[31,-5],[9,-3],[4,-2],[12,-12],[6,-7],[3,-3],[1,-3],[1,-1],[1,-6],[1,-16],[0,-6],[0,-6],[0,-3],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-6],[0,-4],[-1,-5],[-148,-495],[-5,-15],[-1,-4]],[[993475,395876],[-2,-1],[-1,0],[-1,1],[-3,1],[-19,34],[-3,8],[-2,7],[-103,432],[1,36],[1,15],[6,13],[46,96],[2,2],[1,1],[1,2],[2,2],[1,1],[2,1],[3,2],[3,2],[3,1],[3,0],[2,0],[5,-6],[1,-4],[1,-3],[1,-2],[8,-29],[16,-53],[2,-8],[1,-3],[7,-31],[35,-464],[-3,-21],[-2,-10],[-3,-12],[-2,-2],[-2,-3],[-2,-2],[-4,-3],[-1,0],[-1,0]],[[3374,397973],[-11,-2],[-39,-5],[-1,1],[-59,88],[-11,44],[-21,85],[10,111],[3,14],[23,32],[20,27],[15,6],[1,0],[5,1],[23,4],[5,0],[11,1],[2,0],[1,-1],[11,-5],[18,-8],[67,-33],[3,-2],[13,-19],[8,-13],[4,-10],[5,-10],[1,-1],[2,-6],[20,-58],[2,-6],[2,-5],[1,-5],[2,-8],[1,-4],[0,-2],[0,-5],[-1,-31],[-2,-3],[-73,-112],[-36,-36],[-25,-24]],[[996011,398528],[-2,-1],[-14,-5],[-88,53],[-2,3],[-6,6],[13,49],[21,76],[5,13],[2,7],[2,7],[3,5],[27,51],[27,24],[30,-66],[29,-129],[0,-1],[1,-5],[1,-6],[0,-6],[-1,-7],[-2,-6],[-1,-5],[-2,-6],[-3,-6],[-2,-5],[-5,-10],[-3,-3],[-30,-27]],[[2666,399407],[-3,0],[-14,1],[-8,0],[-9,4],[0,1],[-3,2],[-8,10],[-42,97],[-14,51],[-2,9],[-1,6],[-1,5],[0,1],[-1,6],[1,7],[1,6],[1,3],[0,4],[2,9],[1,4],[2,6],[0,1],[0,1],[3,6],[0,2],[4,9],[7,16],[4,8],[11,19],[2,2],[2,2],[1,-1],[2,-2],[21,-16],[0,-1],[20,-23],[9,-10],[10,-13],[10,-13],[3,-8],[5,-15],[1,-3],[1,-3],[1,-5],[8,-38],[1,-6],[0,-3],[1,-3],[0,-12],[0,-49],[0,-2],[-1,-7],[-1,-9],[-1,-15],[-3,-21],[-1,-6],[-1,-2],[-1,-1],[-2,-2],[-8,-5],[-3,-3],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0]],[[998177,398726],[-1,0],[-3,0],[-4,0],[-2,0],[-5,3],[-27,14],[-4,3],[-3,6],[-154,310],[-75,152],[-15,43],[0,136],[10,112],[12,125],[28,50],[30,52],[10,15],[13,20],[2,3],[11,14],[6,3],[12,5],[17,-2],[8,0],[3,0],[1,0],[1,-1],[3,-2],[3,-2],[3,-4],[3,-4],[2,-3],[1,-1],[2,-2],[2,-4],[2,-3],[14,-42],[11,-31],[2,-6],[2,-6],[72,-255],[23,-88],[1,-2],[0,-5],[15,-121],[24,-194],[3,-62],[3,-50],[0,-5],[0,-3],[-1,-27],[-2,-29],[-36,-94],[-3,-7],[-4,-6],[-5,-4],[-7,0],[-4,-1]],[[998329,400742],[21,-11],[21,-11],[34,2],[4,-2],[4,-2],[35,-29],[2,-3],[6,-8],[0,-1],[-26,-246],[-1,-6],[-3,-15],[-2,-7],[0,-3],[-2,-5],[-1,-7],[-9,-34],[-2,-6],[0,-2],[-5,-8],[-3,-5],[0,-1],[-5,-3],[-3,1],[-3,1],[-7,5],[-7,4],[-1,1],[-2,2],[-2,4],[-53,144],[-6,59],[-9,87],[25,105]],[[997687,400595],[-28,-2],[-16,26],[-19,31],[-8,25],[-13,38],[-1,6],[0,2],[0,41],[25,25],[7,5],[21,-4],[1,0],[2,-2],[2,-3],[1,-1],[3,-3],[3,-3],[0,-1],[3,-4],[1,-3],[1,-2],[1,-1],[33,-64],[2,-8],[1,-6],[0,-6],[1,-12],[-1,-8],[-1,-4],[-1,-4],[-1,-2],[-10,-36],[-3,-8],[-1,-3],[-1,-5],[-2,-1],[-2,-3]],[[992180,400842],[-34,-17],[-27,2],[-6,0],[-15,30],[-6,12],[-21,74],[0,3],[-1,1],[0,5],[0,3],[17,22],[17,7],[1,1],[34,12],[12,-2],[1,0],[3,-2],[1,-1],[5,-5],[2,-2],[1,-1],[2,-2],[3,-7],[1,-5],[4,-19],[10,-61],[4,-29],[-8,-19]],[[1938,400734],[-9,0],[-75,37],[-14,12],[-7,7],[-2,3],[-7,13],[-2,5],[-2,6],[-1,4],[-2,7],[0,3],[0,3],[-1,7],[0,5],[-1,1],[1,2],[0,4],[5,48],[7,65],[5,32],[2,12],[1,5],[1,2],[2,4],[1,3],[1,2],[3,4],[1,2],[1,1],[2,3],[6,8],[8,10],[8,9],[2,2],[1,1],[2,2],[8,5],[2,1],[1,1],[3,1],[4,1],[6,1],[38,-7],[6,-2],[3,-2],[3,-3],[3,-2],[3,-4],[1,0],[2,-3],[28,-31],[4,-5],[2,-7],[1,-3],[0,-3],[1,-4],[0,-1],[1,-5],[0,-3],[1,-4],[1,-9],[1,-6],[0,-3],[1,-6],[0,-7],[0,-2],[1,-4],[0,-4],[0,-3],[0,-5],[1,-9],[1,-16],[0,-34],[0,-6],[0,-2],[0,-4],[0,-5],[0,-4],[-2,-8],[0,-4],[-1,-4],[-2,-8],[-2,-6],[-1,-4],[0,-2],[-6,-19],[-4,-11],[0,-1],[-1,-3],[-1,-3],[-1,-1],[-3,-5],[-10,-13],[-21,-26],[-5,-5],[-2,-2],[-2,-1]],[[996557,400678],[-1,-1],[-3,-2],[-4,1],[-24,32],[-26,37],[-3,8],[-9,29],[-3,9],[-8,32],[-9,37],[-36,166],[-6,60],[0,4],[0,3],[1,9],[1,8],[1,9],[1,3],[1,5],[2,5],[7,6],[1,0],[2,2],[72,-175],[65,-159],[11,-25],[-1,-41],[-2,-8],[0,-1],[-1,-5],[-1,-2],[-1,-4],[-2,-5],[-1,-3],[-11,-16],[-10,-14],[-3,-4]],[[3328,401213],[-12,-7],[-7,4],[-15,9],[-2,1],[-6,5],[-3,3],[-20,42],[-31,62],[-1,4],[-1,3],[-1,1],[-2,9],[-3,16],[-1,15],[-1,25],[2,22],[3,8],[3,7],[5,12],[1,1],[3,7],[3,4],[3,1],[1,1],[10,2],[4,0],[3,0],[23,-2],[11,-18],[15,-26],[2,-6],[1,-6],[1,-1],[21,-146],[0,-3],[0,-2],[0,-4],[0,-1],[0,-9],[-2,-7],[-5,-20],[-2,-4],[0,-2]],[[996688,400977],[-56,-14],[-34,17],[-40,19],[-1,1],[-2,3],[-3,6],[0,1],[-3,8],[-2,7],[-11,40],[-2,7],[-2,8],[-16,120],[-6,39],[-8,100],[-2,30],[0,66],[17,59],[31,104],[12,17],[35,38],[7,7],[12,11],[15,1],[18,1],[17,-4],[7,-2],[3,-3],[5,-4],[5,-5],[19,-20],[5,-9],[24,-101],[11,-51],[1,-9],[25,-196],[1,-10],[0,-12],[-6,-52],[-5,-50],[-6,-33],[-5,-25],[-7,-24],[-7,-24],[-3,-8],[-3,-6],[-8,-10],[-14,-17],[-15,-18],[-3,-3]],[[2341,402546],[-2,0],[-1,0],[-16,6],[-5,2],[-1,1],[-7,3],[-3,3],[-4,4],[-8,10],[-2,3],[0,1],[-5,6],[-1,3],[-2,4],[-2,6],[-7,19],[-6,19],[-1,6],[0,1],[-1,4],[0,16],[0,20],[0,2],[0,1],[3,22],[3,25],[6,26],[16,46],[11,10],[30,19],[9,3],[2,0],[4,-1],[1,0],[2,-2],[3,-1],[1,-1],[1,-1],[3,-5],[1,-5],[2,-5],[32,-72],[7,-16],[2,-9],[2,-24],[1,-8],[0,-13],[0,-10],[0,-3],[0,-5],[-1,-8],[-1,-6],[0,-4],[0,-2],[-1,-6],[-5,-18],[-2,-8],[-6,-12],[-15,-31],[-2,-1],[-2,-4],[-3,-3],[-12,-5],[-5,0],[-11,-2],[-2,0]],[[996132,399549],[-103,-791],[-28,63],[-2,4],[-1,1],[-1,0],[-2,0],[-14,-2],[-290,-56],[-180,-34],[-34,-21],[-76,-45],[-183,-185],[-100,-122],[-111,-134],[-58,-139],[-63,-162],[-4,-2],[-112,-50],[-116,-11],[-166,-14],[-90,-6],[-154,-4],[-132,-4],[-1499,851],[-115,284],[-75,309],[-52,211],[-18,194],[14,383],[6,26],[10,41],[32,80],[8,20],[1160,2524],[1366,593],[153,-277],[62,-111],[160,-377],[60,-143],[290,-422],[16,-23],[292,-1120],[147,-1303],[3,-26]],[[992030,403457],[-71,-15],[-3,1],[-9,64],[1,20],[11,139],[4,34],[5,42],[18,5],[58,17],[31,-17],[2,-37],[1,-12],[1,-4],[2,-10],[3,-44],[0,-5],[-1,-4],[-1,-4],[-14,-55],[-16,-63],[-12,-28],[-10,-24]],[[2387,403665],[-2,-2],[-1,-1],[-32,9],[-25,26],[-5,10],[-6,11],[-2,7],[0,3],[-1,5],[-1,5],[-2,15],[-3,19],[-1,6],[0,1],[0,3],[1,28],[0,1],[1,6],[0,4],[2,18],[2,5],[0,4],[1,0],[1,4],[1,4],[1,2],[3,5],[0,1],[2,4],[3,5],[4,3],[3,0],[3,0],[4,0],[9,-2],[8,-2],[6,-3],[6,-2],[3,-1],[2,-1],[3,-2],[1,0],[1,-2],[15,-23],[1,-1],[1,-2],[2,-2],[0,-1],[6,-10],[2,-5],[2,-4],[3,-9],[0,-3],[1,-1],[0,-7],[2,-47],[1,-25],[-2,-8],[-2,-4],[-1,-3],[-1,-2],[-2,-6],[-1,-3],[-1,-3],[-3,-5],[0,-1],[-3,-5],[-10,-16]],[[998277,402991],[-24,-12],[-4,17],[-55,786],[6,8],[3,5],[15,15],[33,33],[35,16],[9,5],[106,36],[5,-3],[9,-4],[2,-2],[1,-2],[2,-8],[1,-5],[3,-11],[3,-12],[1,-8],[4,-16],[1,-4],[0,-3],[16,-367],[-37,-163],[-26,-115],[-19,-60],[-6,-16],[-64,-91],[-20,-19]],[[2874,404195],[33,-273],[15,-120],[-37,28],[-52,39],[-16,67],[-73,306],[-56,124],[12,14],[26,-21],[148,-164]],[[992321,404505],[-68,-87],[-1,2],[-35,56],[88,338],[149,100],[23,-89],[-8,-33],[-13,-49],[-3,-12],[-3,-9],[-19,-36],[-5,-10],[-105,-171]],[[992623,405439],[-2,-1],[-8,5],[-2,2],[-1,1],[-2,3],[-17,22],[-5,9],[-6,10],[-10,47],[22,111],[32,27],[1,0],[18,3],[1,2],[0,1],[2,2],[7,-1],[1,-1],[1,0],[3,-12],[4,-14],[1,-2],[0,-1],[2,-19],[2,-25],[0,-7],[0,-6],[-4,-27],[-1,-6],[-25,-106],[-1,-2],[0,-3],[-13,-12]],[[992872,405909],[-82,-167],[-4,1],[-3,1],[-45,51],[-3,35],[7,82],[3,14],[2,8],[9,26],[6,15],[87,185],[9,14],[19,33],[3,0],[2,0],[4,-10],[1,-5],[15,-182],[-30,-101]],[[995350,406398],[-9,-83],[-57,26],[-20,19],[-25,24],[-13,16],[-3,17],[-26,145],[2,2],[4,5],[3,-1],[18,-14],[48,-37],[14,-3],[30,-5],[22,-40],[4,-7],[4,-31],[4,-33]],[[781,406627],[-139,-89],[-40,-25],[-3,1],[-2,0],[-2,2],[-36,42],[-5,10],[0,1],[-1,5],[-1,9],[9,199],[16,34],[6,6],[8,9],[55,28],[7,3],[3,1],[135,-10],[4,-12],[14,-46],[-8,-79],[-8,-80],[-12,-9]],[[858,406604],[-19,-11],[-4,2],[0,1],[-2,3],[-1,48],[0,2],[3,37],[10,166],[22,17],[24,19],[7,3],[16,-4],[5,-6],[1,-6],[3,-9],[4,-12],[4,-22],[4,-16],[0,-6],[0,-1],[-31,-122],[-5,-20],[-1,-4],[-6,-24],[-5,-7],[-29,-28]],[[993185,406729],[-165,-365],[-15,-23],[-14,-22],[-42,-53],[-32,-9],[-9,-3],[-19,34],[-9,14],[3,97],[0,3],[0,9],[1,8],[1,3],[0,2],[7,17],[8,17],[4,1],[3,-4],[3,-15],[215,426],[121,238],[-4,37],[10,-2],[8,-7],[30,-30],[16,-44],[-4,-14],[-3,-15],[-10,-34],[-12,-42],[-92,-224]],[[999703,407257],[-10,0],[-1,0],[-2,0],[-14,5],[-13,5],[-4,5],[-4,6],[-1,2],[-4,9],[-1,3],[1,4],[0,2],[64,171],[86,122],[19,26],[8,-6],[4,-51],[-4,-69],[-4,-50],[-3,-8],[-13,-38],[-2,-7],[-1,-3],[-3,-8],[-14,-36],[-20,-44],[-2,-5],[-9,-15],[-2,-2],[-51,-18]],[[996699,408144],[-30,-35],[-32,-38],[-10,25],[-17,44],[43,228],[2,7],[2,0],[2,-1],[3,0],[64,-26],[5,-8],[2,-4],[0,-13],[0,-1],[1,-6],[-8,-99],[-2,-6],[-1,-6],[-4,-14],[-1,-6],[-4,-16],[-7,-12],[0,-1],[-8,-12]],[[998231,409156],[-31,-3],[-55,-4],[-3,6],[-15,48],[-1,4],[-1,6],[2,8],[3,5],[2,3],[1,1],[1,1],[30,26],[91,33],[16,1],[1,-14],[2,-21],[0,-5],[0,-1],[1,-7],[-1,-6],[-3,-8],[-8,-23],[-3,-7],[-1,-1],[-2,-6],[-4,-9],[-1,-1],[0,-1],[-2,-4],[-7,-12],[-3,-3],[-4,-4],[-5,-2]],[[999916,410176],[-285,-487],[-95,-164],[-173,-382],[-575,-1272],[-242,-748],[-9,-307],[-1,-69],[20,-10],[36,-19],[151,18],[175,190],[303,242],[350,279],[24,-77],[64,-206],[-74,-225],[-42,-128],[-1260,-304],[-17,24],[-90,128],[9,11],[1,3],[15,30],[13,32],[2,7],[1,6],[4,110],[1,5],[0,3],[0,2],[-1,12],[-2,3],[-2,4],[-3,4],[-2,4],[-189,194],[-3,2],[-1,0],[0,1],[-4,2],[-1,1],[-1,1],[-2,1],[-1,0],[-60,23],[-121,-5],[-54,-2],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-27,-36],[-102,-173],[-229,-389],[-1,-423],[0,-48],[-254,-160],[-496,-303],[-191,166],[-295,257],[-327,362],[-44,125],[-7,49],[-20,157],[-6,64],[24,88],[26,91],[6,19],[17,50],[157,280],[31,50],[46,75],[308,-112],[330,471],[615,440],[884,632],[114,283],[17,41],[7,14],[203,357],[263,221],[459,220],[253,-119],[31,3],[358,316]],[[51,410307],[-51,-57]],[[0,410382],[0,22]],[[0,410404],[1,16],[17,17],[2,2],[4,3],[8,6],[54,26],[42,32],[1,1],[2,2],[1,1],[0,-1],[0,-1],[3,-8],[0,-2],[0,-5],[0,-3],[0,-2],[0,-1],[0,-4],[0,-5],[-14,-42],[-4,-12],[-8,-14],[-1,-2],[-57,-101]],[[262,412675],[-4,0],[-1,0],[-1,1],[-3,1],[-146,152],[-27,28],[-2,3],[-2,3],[-8,19],[-6,19],[-17,54],[1,4],[5,-2],[144,-89],[7,-5],[2,-2],[3,-1],[2,-2],[23,-23],[57,-83],[3,-6],[10,-19],[1,-3],[1,-2],[1,-3],[1,-2],[2,-7],[1,-4],[2,-3],[1,-5],[1,-3],[0,-2],[2,-6],[-1,-1],[-1,-3],[-3,-1],[-3,-1],[-25,-4],[-13,-2],[-4,0],[-3,0]],[[992036,431804],[-6,-5],[-42,2],[-139,8],[-95,10],[-36,24],[-3,2],[-3,3],[-17,18],[-2,5],[-1,3],[-1,2],[-4,16],[-1,6],[-2,13],[-1,7],[0,1],[0,11],[0,8],[0,1],[2,8],[1,2],[1,5],[2,4],[0,1],[3,6],[3,4],[149,70],[166,-35],[12,-15],[8,-9],[5,-7],[0,-1],[2,-3],[5,-8],[0,-1],[2,-3],[2,-5],[2,-4],[2,-7],[2,-8],[2,-9],[0,-12],[-4,-59],[-2,-20],[0,-5],[-3,-8],[-4,-7],[-2,-5],[-3,-4]],[[999915,406290],[1,-1],[80,-85]],[[999996,406204],[3,325]],[[999999,405514],[-9,-27]],[[999990,405487],[-28,-54],[-42,-48],[-6,-7],[-105,-77],[-12,-9],[-34,39],[-27,32],[-28,97],[-16,53],[-6,100],[10,44],[219,633]],[[999931,408194],[16,51],[25,78],[24,68]],[[999996,408391],[3,6]],[[999999,408126],[-42,-59]],[[999957,408067],[-33,13],[7,114]],[[195,407001],[31,44],[59,84],[24,33],[21,28],[38,-59],[32,-194],[51,-355],[-95,-295],[-11,-35],[-110,-253],[-224,-452]],[[11,405547],[-11,-33]],[[0,406532],[195,469]],[[24,408073],[-7,15],[-17,38]],[[0,408397],[36,86],[65,73],[98,92],[34,-4],[-62,-507],[-147,-64]],[[915790,775422],[-189,-123],[-249,-164],[-70,31],[-192,84],[598,1318],[89,196],[730,962],[766,1010],[136,80],[285,168],[517,-70],[-562,-710],[-133,-169],[-828,-1450],[-898,-1163]],[[932995,802748],[-1368,-1227],[-58,15],[-352,89],[-55,1092],[105,232],[78,171],[741,320],[249,108],[335,553],[201,675],[191,643],[187,234],[179,223],[245,-70],[25,-7],[27,-489],[32,-559],[-762,-2003]],[[896742,826489],[48,-523],[118,-1290],[377,-2186],[300,-1188],[41,-41],[74,-72],[119,-552],[77,-359],[160,-1496],[48,-448],[-6,-92],[-4,-73],[-304,2092],[-111,767],[-3,12],[-46,151],[-160,-98],[-125,-439],[57,-439],[91,-699],[192,-722],[171,-647],[70,49],[49,438],[43,-96],[3,-7],[27,-236],[66,-586],[-51,-1010],[-37,-737],[-117,-504],[-202,-377],[27,213],[24,183],[77,148],[127,244],[23,634],[5,155],[-34,23],[-7,4],[-335,-1213],[-9,-95],[-119,-1309],[36,-509],[107,-1516],[110,-331],[780,-2348],[618,-4052],[603,-3253],[627,-2711],[916,-3962],[-906,1337],[-313,145],[-784,365],[-953,-68],[-217,-16],[-551,-403],[-256,-387],[-132,-200],[-865,-4535],[-329,-1724],[-20,-765],[-24,-897],[243,-1180],[220,-499],[157,-356],[819,-2446],[219,-265],[822,-991],[97,-365],[96,-366],[219,-1545],[36,-252],[-457,-2036],[-30,-136],[-8,80],[-37,399],[31,225],[25,185],[-217,1684],[-26,72],[-79,222],[-219,291],[-201,269],[-1298,861],[-264,-184],[-210,-217],[-83,-85],[-208,-504],[-383,-1967],[-209,-1069],[-59,-194],[-257,-850],[-417,1009],[-172,1609],[-159,1488],[411,1765],[272,1168],[-10,333],[-9,327],[-30,107],[-176,641],[-29,1743],[128,460],[508,1825],[-156,1940],[-268,785],[-198,2529],[448,3633],[62,2547],[30,1221],[-184,1647],[90,1403],[100,1573],[207,655],[5,191],[11,472],[-661,2175],[-93,150],[-151,239],[-649,1701],[-81,213],[-7,689],[-12,1323],[100,944],[364,1108],[50,909],[113,2076],[-258,920],[-9,32],[-19,145],[-65,496],[437,472],[931,507],[15,-16],[33,-37],[-107,-664],[96,-293],[510,37],[590,797],[17,62],[351,1285],[-142,582],[-504,1193],[-621,1472],[467,-150],[331,213],[-20,170],[191,572],[91,-29],[157,-457],[126,-343],[35,-94]],[[883183,829372],[-610,-734],[-794,474],[-555,331],[24,100],[169,716],[580,1346],[556,179],[78,-50],[81,-52],[343,-105],[123,-38],[104,-85],[373,-305],[51,-270],[6,-33],[-479,-1334],[-50,-140]],[[962861,830024],[52,-586],[50,-555],[-1320,1570],[-187,457],[-156,381],[-5,56],[-20,221],[-361,657],[-132,95],[-193,140],[-28,130],[-33,161],[221,235],[94,100],[15,-2],[146,-19],[686,-954],[341,-609],[830,-1478]],[[956201,853409],[-1830,-1413],[452,1076],[668,1595],[833,418],[113,56],[122,154],[222,279],[478,247],[254,-830],[36,-117],[1,-334],[2,-491],[-79,-139],[-97,-172],[-571,-50],[-604,-279]],[[698706,899555],[-1346,-187],[-66,-10],[-796,445],[3,223],[518,564],[1192,341],[389,-148],[188,-460],[54,-133],[7,-8],[103,-120],[-32,-262],[-6,-45],[-89,-87],[-119,-113]],[[0,913486],[949,-494]],[[949,912992],[425,97],[773,-418],[601,-325],[3472,-2527],[1808,-1112],[2605,-1602],[790,-346],[1650,-1399],[1475,-1792],[-294,-189],[-86,-1370],[447,-2590],[704,-1100],[48,-76],[98,0],[723,-7],[349,-463],[104,-137],[194,-26],[241,-31],[395,396],[82,430],[-114,100],[-485,425],[-88,1557],[-105,443],[-150,632],[-485,510],[-649,-48],[-379,-28],[-160,133],[2680,227],[5608,-1098],[439,-781],[310,-552],[1529,-1244],[1962,-1596],[168,-54],[549,-178],[-23,-131],[-101,-580],[-306,-75],[-391,-96],[-1140,-991],[203,-281],[-55,-858],[-212,-303],[-444,89],[-288,57],[-504,293],[-383,222],[-99,-577],[-101,-585],[-1456,-177],[-347,183],[-1847,973],[-827,113],[-35,-55],[-23,-35],[426,-193],[591,-267],[405,-556],[31,-42],[282,-535],[424,-1956],[-98,-253],[-15,-40],[-346,-356],[-358,-367],[-708,-160],[-650,-146],[-68,-63],[-112,-102],[181,-831],[451,-579],[421,-214],[424,-216],[368,-583],[-21,-140],[-413,-81],[-440,-85],[-344,150],[-137,-132],[-132,-126],[-33,-145],[-42,-185],[-685,-328],[-359,133],[-413,153],[-173,471],[-558,-270],[-926,527],[-211,558],[-627,821],[-1940,818],[-1199,189],[-55,49],[-667,596],[-167,385],[-181,419],[-311,1860],[-26,154],[-142,83],[-318,187],[-1531,559],[-853,311],[-482,-51],[-588,-629],[-586,-170],[-2024,-54],[-192,138],[-524,377],[-437,1485],[42,1121],[14,372],[461,644],[102,1183],[-30,94],[-51,158],[-66,-13],[-72,-14],[-84,-173],[-498,-1030],[-261,-153],[-35,-20],[-350,40],[-283,504],[-357,-105],[-1337,-394],[-297,-1077],[14,-304],[8,-178],[67,-170],[238,-604],[38,-34],[716,-640],[299,-834],[-821,-1823],[-1065,-934],[-108,-94]],[[638062,912885],[-521,-289],[-196,-108],[-316,-91],[-1836,-528],[-228,86],[-224,84],[-482,579],[-189,227],[-21,-9],[-97,-42],[26,-125],[52,-252],[428,-420],[-436,283],[-83,298],[-11,530],[-14,627],[188,1170],[377,756],[714,595],[668,283],[955,59],[818,-473],[561,-324],[672,-383],[676,-794],[-854,-1003],[-627,-736]],[[970159,917057],[-141,-138],[-56,-55],[-238,5],[-509,9],[-1358,435],[-144,65],[-604,272],[-482,340],[-580,408],[320,414],[248,322],[780,459],[306,15],[2407,-713],[116,-47],[375,-155],[60,-152],[58,-146],[-558,-1338]],[[664081,922211],[3851,-3291],[270,-603],[-79,-179],[-107,-240],[-383,-139],[-374,-135],[-1689,173],[-65,252],[47,210],[324,-43],[-467,385],[-330,272],[-185,32],[-588,100],[-26,-170],[54,-98],[45,-82],[-316,6],[-766,769],[-435,438],[-91,350],[-70,272],[402,1069],[270,262],[215,209],[493,181]],[[647583,925116],[-236,-44],[-602,838],[-847,735],[-54,46],[-364,116],[-180,57],[-191,273],[215,316],[394,139],[309,110],[563,12],[122,3],[717,-662],[250,-541],[126,-273],[-114,-576],[-108,-549]],[[999997,925426],[-1153,-789],[-1,-1],[-389,-103],[-729,140],[-142,-61],[-986,-424],[-124,353],[-250,713],[71,772],[585,634],[1458,1052]],[[998337,927712],[1662,837]],[[999999,925280],[-2,146]],[[715592,933052],[-872,-37],[-669,-28],[-9,671],[368,362],[425,418],[759,462],[1386,-232],[146,-24],[100,-80],[234,-187],[52,-109],[100,-212],[-67,-386],[-1953,-618]],[[720965,935713],[-115,-40],[-488,-174],[-636,106],[-341,57],[-382,143],[-463,174],[-183,249],[31,166],[714,696],[565,552],[597,170],[522,-1059],[179,-1040]],[[653390,939324],[637,-149],[2489,-579],[364,-208],[65,-37],[181,-314],[-64,-168],[-2,-5],[-427,-186],[-317,-137],[-745,-1620],[-466,-141],[-175,-52],[-226,-622],[-165,-455],[-399,-481],[-229,-276],[96,-1762],[-339,-1269],[2437,-4336],[2019,-1759],[1406,-596],[413,-487],[-344,-334],[-302,-292],[-937,228],[-756,183],[511,-318],[607,-41],[335,-357],[-851,225],[-865,228],[-269,511],[-892,113],[-55,-593],[249,13],[348,19],[14,-392],[-166,79],[-712,339],[-828,206],[-244,-115],[-135,-63],[-165,241],[-71,106],[-542,-87],[-248,-40],[39,-474],[-128,-101],[-288,-229],[-713,366],[-1654,848],[-2273,297],[-64,48],[-255,193],[706,160],[359,361],[-375,464],[44,355],[938,3],[450,1],[7,29],[34,144],[-170,477],[-98,-17],[-899,-158],[-251,123],[-260,127],[-639,842],[-110,552],[40,471],[12,137],[-832,-225],[44,-525],[-162,-158],[-34,-33],[-416,289],[-448,688],[-514,-5],[-430,-195],[-596,-270],[-622,95],[-586,319],[-208,353],[-318,919],[-72,209],[1,49],[6,317],[158,672],[64,275],[149,354],[217,149],[444,230],[1653,-462],[706,1688],[319,514],[461,746],[-212,63],[-322,96],[-86,188],[-43,94],[595,184],[1573,-155],[584,110],[-3122,95],[-226,257],[-181,206],[224,358],[185,293],[390,129],[475,157],[1001,-169],[722,-6],[-69,23],[-526,181],[-115,147],[-345,445],[119,673],[20,111],[286,231],[404,326],[1284,372],[88,-42],[145,-69],[566,85],[629,95],[295,318],[32,36],[1044,369],[409,-193],[506,-240]],[[696935,937920],[-2286,-673],[-207,28],[-175,24],[-22,90],[-23,95],[152,874],[152,876],[149,380],[6,16],[616,283],[1681,226],[578,-210],[421,-153],[230,-297],[171,-220],[347,-429],[235,-289],[21,-115],[35,-190],[-2081,-316]],[[898883,939938],[-34,-524],[-50,-755],[-476,-193],[-387,-158],[-3309,495],[-1204,180],[-1013,353],[-1182,412],[-1023,-22],[-415,-135],[-1010,-329],[-237,82],[-124,182],[-76,112],[117,92],[146,115],[1318,11],[312,194],[375,234],[528,642],[122,329],[73,197],[476,698],[314,215],[2659,262],[945,-350],[739,-435],[1511,-888],[235,-210],[296,-266],[288,-415],[86,-125]],[[890845,942635],[-50,-30],[-54,-32],[-401,113],[-311,87],[-78,111],[-499,711],[3,39],[43,656],[179,257],[362,135],[568,45],[654,52],[402,-122],[192,-58],[158,-242],[-151,-1091],[-360,-165],[-366,-168],[-190,-90],[-178,-85],[10,-15],[67,-108]],[[815177,945264],[-1772,-1629],[-1493,269],[-1644,672],[39,326],[51,428],[415,552],[387,514],[1323,-136],[1748,-143],[247,-20],[516,-269],[88,-272],[95,-292]],[[907669,951229],[736,-261],[395,5],[160,69],[259,111],[-70,9],[-125,17],[228,273],[834,232],[1741,-237],[663,-343],[1368,-708],[497,103],[632,129],[1777,-396],[1872,-418],[160,57],[171,61],[432,-122],[-864,-1389],[-3117,-805],[-983,-78],[-632,-50],[-941,115],[-1120,137],[-1851,1166],[-35,9],[-1425,383],[-1362,601],[-905,590],[340,1203],[166,591],[26,30],[214,250],[550,-228],[209,-255],[-173,-577],[25,-40],[148,-234]],[[877450,951275],[-84,0],[-861,-4],[-4,37],[-36,298],[535,2570],[496,-653],[431,-568],[-163,-932],[116,-313],[-35,-74],[-87,-188],[-308,-173]],[[890611,953257],[838,-34],[13,330],[45,1100],[329,670],[697,-28],[780,-253],[165,-53],[-529,792],[72,83],[30,34],[868,-261],[1146,-754],[1154,-759],[1368,-329],[658,129],[718,-45],[1278,-79],[1945,-798],[1237,-507],[257,-252],[246,-241],[-637,30],[-758,-396],[-100,-53],[-233,-303],[21,-52],[167,-424],[-31,-138],[-25,-115],[-347,-635],[-1661,-764],[-1430,-404],[-3007,-849],[-1016,476],[-424,200],[39,85],[93,198],[524,-31],[-10,226],[-4,116],[-5895,-1226],[-122,-26],[18,20],[70,78],[-116,335],[-31,89],[-278,133],[-703,338],[-411,-319],[-1,-151],[-1,-190],[272,-122],[-76,-150],[-234,-470],[-535,-441],[-61,-20],[-374,-126],[-893,249],[-1436,400],[-2603,1808],[-77,53],[-44,50],[-1049,1176],[-74,289],[-28,109],[481,215],[29,42],[469,659],[-82,488],[-370,232],[117,573],[786,252],[62,62],[322,321],[434,1082],[1257,319],[644,408],[433,275],[1334,136],[-34,-134],[-17,-67],[148,-294],[1836,-791],[1206,-1025],[1151,-551]],[[691174,958055],[-345,-289],[-1552,-1304],[-5286,-1711],[-7642,-1975],[-3590,-1093],[-1463,-752],[-52,-13],[-1011,-238],[-648,-489],[-195,-147],[-402,-545],[-1771,-575],[422,-115],[415,-112],[40,-533],[2,-39],[-485,-430],[-2406,-906],[-963,385],[26,-773],[-902,-523],[-649,-68],[119,-300],[137,-345],[23,-433],[13,-257],[-512,-491],[-486,-210],[-321,-139],[17,-190],[28,-332],[-333,-85],[-743,261],[-296,104],[-117,167],[-409,584],[-165,122],[-45,-22],[-156,-78],[96,-595],[1238,-994],[15,-786],[-241,-196],[-416,-125],[-295,546],[-415,149],[-766,79],[-805,82],[557,-138],[720,-180],[555,-336],[332,-772],[-794,-483],[-670,188],[-289,82],[-857,650],[343,-467],[1170,-757],[38,-179],[-854,-817],[-513,-492],[-1265,128],[-39,4],[-566,303],[-945,235],[-2206,549],[-414,-107],[-758,-195],[-928,-450],[-372,158],[-47,118],[-20,53],[477,561],[509,599],[2486,834],[396,-125],[503,-159],[-588,242],[-393,162],[-1984,-215],[-527,-306],[-421,-245],[-173,29],[-171,29],[-638,455],[-208,148],[-157,402],[1503,573],[1180,449],[-34,192],[-1,10],[-67,30],[-113,50],[26,138],[1126,731],[472,97],[1120,-323],[756,-219],[11,158],[5,88],[-304,120],[-1326,526],[616,285],[-38,81],[-176,368],[933,519],[1376,323],[-1556,253],[-185,113],[-146,90],[97,269],[67,189],[553,275],[2306,-191],[864,149],[-1207,605],[-1368,-118],[-437,148],[12,31],[51,135],[753,348],[1539,373],[-945,424],[-103,47],[-80,-26],[-751,-237],[-119,94],[-614,484],[114,305],[28,74],[211,170],[178,143],[220,-45],[616,-125],[183,-189],[401,-415],[434,122],[686,724],[-427,512],[171,151],[200,178],[512,186],[486,-106],[496,-108],[842,208],[206,406],[301,593],[293,283],[442,430],[874,421],[577,278],[1540,406],[1857,489],[634,722],[150,92],[235,145],[1506,103],[-313,-200],[-719,-461],[54,-48],[123,-109],[367,39],[377,40],[604,374],[527,326],[-6,10],[-117,177],[-567,34],[137,555],[268,159],[1899,65],[2028,-363],[451,-81],[1293,129],[673,255],[919,349],[1404,-10],[997,229],[13,3],[1353,730],[534,93],[1284,222],[718,296],[231,928],[530,230],[1274,552],[2336,675],[938,39],[347,-15],[321,-13],[1322,-390],[522,-325],[453,-682],[145,-498],[-479,-895]],[[786505,974477],[-1239,-1889],[-770,-1172],[409,22],[1883,1479],[77,61],[167,67],[497,200],[101,200],[211,27],[738,93],[111,-41],[299,-112],[67,-509],[1173,-1129],[636,-105],[71,-12],[370,148],[763,-256],[165,-56],[300,-421],[213,-1086],[-642,-755],[-679,-453],[-223,-149],[-1591,6],[-4063,-801],[-46,7],[-1105,162],[-1158,-37],[-1175,-38],[-399,-77],[-431,-84],[-2469,-999],[-1690,-275],[-1,361],[0,1044],[2268,2375],[-102,20],[-385,76],[48,138],[69,200],[749,684],[284,-33],[354,231],[369,534],[387,559],[-204,234],[-21,24],[742,951],[388,66],[62,10],[503,43],[379,120],[351,111],[379,309],[672,547],[505,-97],[565,-108],[1068,-415]],[[760187,977609],[-91,-42],[-1395,-648],[-3621,-325],[-356,77],[-951,206],[-248,208],[1471,-79],[705,-38],[261,61],[728,171],[-337,183],[-280,152],[-1235,60],[-1192,59],[-248,134],[21,451],[29,606],[511,27],[1524,81],[315,-64],[2356,-119],[375,-19],[298,-83],[2021,-566],[-661,-493]],[[771340,979549],[341,-177],[893,-460],[-497,-897],[-4076,-1061],[1280,133],[71,8],[68,13],[2024,392],[72,-159],[-1185,-404],[-282,-96],[-64,-191],[-100,-297],[110,-87],[68,-54],[275,255],[554,515],[1103,375],[336,114],[356,246],[633,438],[244,372],[59,91],[72,41],[648,366],[705,-50],[857,-62],[192,-331],[549,-60],[1191,-734],[269,-326],[102,-122],[-443,-205],[-68,-186],[-195,-524],[-129,-483],[59,-422],[-173,-1214],[-389,-209],[-876,368],[-40,-3],[-337,-27],[115,-125],[140,-153],[1826,-1015],[214,-743],[-165,-160],[-53,-53],[-1533,-566],[-4868,-42],[-1396,518],[-656,589],[-4559,334],[-288,-105],[-153,-56],[-777,262],[-610,512],[-532,447],[9,803],[4,411],[-12,45],[-61,218],[-680,54],[-248,20],[-17,-193],[-288,78],[-310,84],[-18,203],[-10,115],[73,180],[71,176],[-716,-462],[-567,-365],[-346,49],[-324,46],[339,429],[3153,1388],[-166,572],[353,454],[76,98],[1162,666],[1221,-100],[2959,147],[244,12],[170,24],[2266,312],[681,6]],[[658492,978993],[-672,-6],[-1891,-17],[-860,179],[131,480],[210,769],[2935,290],[374,-214],[162,-93],[-216,-1167],[-90,-115],[-83,-106]],[[649385,979709],[-322,-31],[-1937,-188],[-1478,223],[-106,16],[-44,30],[-444,303],[347,69],[237,47],[928,451],[446,217],[1289,11],[-10,-139],[-7,-94],[744,-306],[825,-341],[-370,-212],[-98,-56]],[[663766,981064],[44,-24],[958,-525],[-1857,26],[-1311,-364],[-21,-20],[-187,-174],[780,-140],[303,-54],[-24,-68],[-90,-255],[-1115,-345],[-289,26],[-244,23],[-671,168],[-738,184],[-203,531],[26,526],[-777,678],[470,27],[2510,146],[2064,-310],[372,-56]],[[632401,983556],[781,-226],[740,94],[186,23],[605,-112],[84,-41],[193,-93],[310,-426],[216,-297],[-263,-137],[-147,-76],[-244,36],[-821,119],[-438,137],[-228,72],[-79,227],[-11,31],[-313,207],[-546,65],[-530,-178],[-231,-345],[-1148,-564],[-202,-99],[-1215,-400],[-441,-14],[-764,-25],[-3212,593],[971,118],[2556,308],[1623,361],[536,119],[613,232],[-3,88],[-4,80],[246,114],[1180,9]],[[672418,983668],[410,-522],[-13,-74],[-98,-553],[-290,-414],[-973,-494],[-1682,-853],[-1376,132],[-1730,167],[-690,-124],[-1063,625],[37,223],[102,617],[146,301],[177,259],[179,262],[461,159],[36,13],[64,7],[876,108],[266,-51],[251,-48],[-39,-9],[-545,-130],[738,-46],[3162,378],[1041,125],[47,-5],[506,-53]],[[641594,983843],[11,-20],[69,-136],[-1375,-287],[-309,-134],[-509,-222],[31,-8],[622,-153],[508,164],[538,174],[502,48],[612,58],[1599,-495],[-1115,-456],[-745,-304],[-1752,-293],[-1835,-306],[-42,-80],[-94,-176],[-1342,-502],[-1110,150],[-198,-76],[-611,-236],[24,-87],[55,-202],[874,-73],[278,-345],[145,-180],[-514,-209],[-2640,-313],[-272,460],[298,438],[-1571,-101],[-617,-270],[-234,-102],[-336,108],[-142,46],[-437,771],[990,292],[209,61],[44,-11],[203,-50],[121,-147],[136,-165],[978,-27],[844,-22],[168,159],[-995,127],[-367,207],[-54,30],[1769,20],[49,74],[38,57],[-199,190],[-1379,12],[-800,7],[1824,498],[1170,34],[32,-17],[665,-345],[1290,216],[219,173],[674,531],[-241,412],[-346,33],[-540,52],[-52,152],[195,283],[767,287],[975,364],[1138,232],[619,-119],[-1441,-261],[792,-141],[1807,538],[332,-387]],[[659950,982753],[-648,-88],[-671,-90],[-318,159],[-1013,505],[-5933,1247],[-38,44],[-90,105],[258,193],[416,311],[670,-99],[457,-67],[3112,-516],[1276,-212],[680,-234],[2533,-872],[-489,-274],[-202,-112]],[[677048,982672],[-1593,-284],[-108,5],[-244,11],[-1435,825],[1863,920],[1472,107],[1081,79],[216,233],[-60,166],[-19,53],[55,509],[260,124],[225,107],[571,116],[44,9],[166,-16],[1013,-97],[901,-511],[96,-184],[122,-233],[-50,-599],[-1128,-786],[-1252,-363],[-1131,-98],[-1065,-93]],[[771711,983276],[152,-188],[417,-516],[-1159,-212],[-624,-115],[-279,62],[-265,58],[630,-2138],[-152,-155],[-70,-72],[-860,-41],[-2566,-125],[-2742,-322],[-1055,-125],[-726,-205],[-1793,-508],[-646,14],[-1376,346],[-1273,320],[-1317,750],[1888,138],[-3240,-77],[-582,-13],[739,391],[719,60],[646,54],[102,143],[22,31],[-778,200],[71,29],[86,34],[2070,304],[249,36],[214,435],[511,1039],[-1026,-121],[-313,-38],[-99,84],[-103,86],[13,8],[1942,1247],[2402,518],[2100,453],[1362,517],[-693,156],[75,147],[1240,83],[458,31],[172,-46],[295,-78],[71,-106],[51,-74],[-83,-112],[2404,-1697],[2719,-690]],[[660411,986198],[-3883,-697],[-2088,197],[-162,264],[-132,218],[81,118],[90,131],[269,37],[1735,-331],[116,-22],[118,101],[143,121],[27,350],[145,209],[502,48],[2749,-543],[290,-201]],[[912630,773461],[-16,-11],[-698,-502],[-2196,-2396],[-1468,-2143],[-322,126],[230,719],[1350,2107],[1569,2449],[105,-445],[55,-52],[46,-44],[647,75],[176,181],[184,188],[451,907],[118,94],[370,296],[380,-255],[-144,-1053],[-837,-241]],[[904622,765310],[-245,-612],[-26,163],[-88,565],[593,813],[809,2014],[262,65],[406,102],[429,-122],[3,-1],[-649,-862],[-401,-303],[-1093,-1822]],[[6910,926994],[153,-249],[-97,-288],[-86,-99],[-291,-330],[-742,-369],[-216,-107],[-4203,-804],[-216,80],[-1212,450]],[[0,928549],[2439,345],[1,0],[79,11],[102,-10],[1124,-109],[467,-141],[617,-187],[1388,-1174],[693,-290]],[[634940,753109],[268,-350],[949,-2090],[652,-2622],[768,-1918],[511,-495],[891,-20],[559,-494],[354,-763],[38,-595],[-321,400],[-364,165],[-466,-53],[-1088,-812],[-208,-330],[-188,-616],[-82,-1798],[-287,-2390],[-146,-327],[-107,-1404],[-269,-200],[112,457],[-284,510],[-221,-23],[-88,-367],[-183,-2174],[5,-1790]],[[635745,733010],[2,-807],[206,-2390],[164,-857],[278,-674],[479,-574],[459,-338],[1378,-214],[666,-343],[123,-159],[54,-512],[261,-866],[416,-614],[1327,-1421],[714,-481],[1844,-741],[618,94],[3815,1686],[1469,337],[-201,-210],[-893,-221],[148,-273],[611,-167],[408,285],[-4,627],[-340,2312]],[[649747,726489],[-10,67],[-282,3202],[102,3109],[241,2081],[-367,1604],[-601,1635],[-776,139],[-349,-308],[310,2099],[41,-712],[733,-373],[466,316],[-675,2176],[-393,528],[-992,-4],[-35,-753],[-180,121],[-484,1092],[-135,1312],[88,1029],[540,3384],[337,-771],[1267,-899],[675,-706],[1745,623],[949,904],[149,532],[-78,823],[-1829,2196],[-489,3507],[-240,310],[-420,125],[-1416,-281],[-514,-600],[-351,-1272],[-51,-482],[151,-1109],[-17,-1694],[-134,-17],[-940,2982],[-33,386]],[[645750,752790],[-106,1221],[95,1126],[476,1370],[300,1362],[-34,377],[-506,555],[-1278,444],[-1859,1661],[-297,803],[-1287,5112],[-1578,972],[-151,409],[28,1057],[186,455],[1704,-337],[203,-379],[433,-315],[779,196],[-84,560],[-1212,1449],[-43,607],[1402,2355],[3257,129],[1335,-452],[342,232],[-1334,1071],[-41,180],[37,559],[367,792],[148,125],[419,1207],[209,1599],[140,2421],[-414,1212],[-537,374],[-1243,-11],[-496,-872],[-95,2],[-1183,597],[-702,895],[-925,353],[-610,-332],[-3921,-3126],[-945,-1085],[-6,-8]],[[636723,779712],[-36,46],[-1322,986]],[[636723,779712],[-1649,-2566],[-1360,-1006],[-786,-141],[-818,-688],[23,-216],[-547,-1953],[-707,-2175],[-955,-1027],[-160,-526],[-98,-515],[93,-533],[954,-632],[580,-1032],[835,-2712],[-220,-1350],[-58,-2616],[924,-2363],[1446,-3287],[519,-1001],[201,-264]],[[560655,831523],[-859,459],[-287,402],[-443,-64]],[[559066,832320],[-461,59],[-56,22],[-267,102]],[[558282,832503],[-432,-815],[-823,-1056],[109,-159],[577,-111],[647,-125],[200,62],[372,116],[42,112],[61,161],[-180,1176],[211,456]],[[644269,835008],[-156,-88],[-168,67],[-202,-23],[-236,-505],[-233,-52],[-182,-96],[-13,-317],[-63,-196],[-325,-168],[-433,205],[-218,-117],[-154,-90],[-275,-7],[-405,-60],[-406,-214],[-768,-111],[-927,-119],[-711,-275],[-805,-437],[-417,-525],[-372,-348]],[[649149,849814],[-46,397],[-143,494],[-204,221],[-243,144],[-100,95],[28,294],[90,156],[57,448],[-308,503],[-226,639],[-146,267],[-128,622],[105,478],[-56,521],[-191,169],[-241,297],[-167,183],[-108,429],[-145,342],[-127,371],[-144,539],[-348,519],[-207,155],[-17,426],[85,179],[134,140],[222,-60],[100,204],[174,238],[150,578],[153,354],[167,101],[253,97],[263,149],[282,220],[218,22],[139,107],[115,299],[95,85],[190,-8],[381,273],[259,155],[198,289],[140,198],[109,179],[145,86],[185,-8],[138,126],[311,24],[130,-143],[216,-355],[359,-224],[913,36],[517,-114],[308,-134],[289,105],[300,179],[592,352],[258,625],[142,407],[437,87],[297,-245],[361,-206],[77,-186],[-5,-45],[81,-300],[-23,-276],[-17,-316],[6,-172],[44,-295],[188,22],[114,-106],[12,-196],[49,-325],[-13,-307],[47,-326],[84,-93],[62,-39],[58,-38],[137,-200],[103,-191],[218,-230],[115,-271],[90,-440],[105,-394],[62,-369],[7,-651],[-21,-373],[-183,-235],[-103,-96],[-412,-169],[-237,-147],[-282,-176],[-86,-308],[-83,-587],[123,-600],[78,-661],[45,-445],[-343,-671],[-155,-243],[17,-490],[228,-103],[207,-191],[393,-470],[-145,-1071],[-17,-682],[-3,-59],[-6,-155],[-8,-79],[-18,-111],[-37,-113],[-299,-181],[-375,14],[-486,-479],[-164,-22],[-104,454],[-191,314],[-181,-38],[-78,-319],[-438,-705],[-488,-113],[-146,-15],[-95,-246],[152,-216],[221,-193],[148,-489],[137,-536],[211,-73],[51,-272],[-244,-1188],[-280,-103],[-296,-44],[-311,213],[-155,-5],[-106,-209],[-74,-407],[-104,-722],[-156,-139],[-201,-31],[-190,-179],[-309,-79],[-363,78],[-239,-78],[-207,-261],[-182,-81],[-255,-30],[-152,-219],[-48,-426],[-38,-293],[-132,-291],[-119,-107],[-138,-100],[-129,22],[-90,222],[-19,206],[-71,93],[-149,66],[-93,-32],[-144,-168],[-9,-69],[22,-97],[4,-109],[-14,-260],[27,-243],[48,-75],[19,-42],[33,-243],[21,-500],[39,-225],[77,-189],[32,-229],[35,-110],[94,-45],[208,-194],[166,-102],[188,-386],[151,-222],[78,-306],[-187,-178],[-52,-86],[-43,-122],[-101,-384],[-113,-172],[-159,-40],[-169,57],[-148,114],[-169,0],[-96,-104],[-210,-242],[-56,-61],[-218,-75],[-60,-65],[-11,-45],[-2,-67],[3,-129],[-3,-21],[-9,-21],[-27,-39],[-74,-66],[-593,-242],[-617,105],[-198,181],[-210,150],[-208,24],[-226,144],[-144,65],[-278,-218],[-219,-387],[-170,-62],[-255,103],[-125,10],[-70,-174],[26,-229],[77,-295],[23,-142],[-47,-142],[-162,-57],[-507,-5],[-197,161],[-243,-124]],[[603091,575871],[104,230],[128,69],[188,-15],[156,-406],[184,-1185]],[[603851,574564],[2,-9]],[[607114,717760],[-544,240],[-331,283],[-299,406],[-167,321],[-35,235],[72,312],[181,387],[86,308],[-11,344]],[[259661,701031],[3,-105],[165,-1056],[45,-144]],[[260554,704315],[-31,-164],[-329,-683]],[[246355,807595],[659,-380],[554,90],[671,431],[401,171],[200,-135]],[[245561,808182],[501,-557]],[[245052,809203],[-291,728]],[[244680,811725],[96,-231],[-12,-313],[-88,-472],[-17,-329],[83,-279]],[[244641,812498],[-114,562]],[[587129,518770],[-31,359],[75,306],[256,558]],[[880749,803997],[87,-921],[-124,-487],[-306,-360],[-207,-337],[-107,-315],[-173,-768],[-2,-382],[111,-536]],[[889205,811737],[-457,-733],[-132,-253],[-123,-106]],[[795825,815398],[-165,188],[-238,-66],[-365,-258],[-423,-565],[-479,-873],[-475,-703],[-470,-532],[-541,-357],[-611,-183],[-420,13],[-345,313]],[[787150,819678],[81,1033],[0,845],[-53,1001],[-293,1196],[-532,1392],[-82,1100],[367,807],[169,748],[-29,690],[-133,576],[-236,462],[70,699],[376,935],[170,768],[-37,601],[-106,571],[-174,540],[-82,618],[9,697],[-106,499],[-221,299],[-132,400],[-42,501],[-122,457],[-203,414],[-389,270],[-576,128],[-667,-160],[-759,-446],[-466,-120],[-175,206],[-63,350],[72,738]],[[785205,848259],[-1,-521],[-62,-387],[-126,-428],[-201,-470],[-276,-511],[-175,-624],[-74,-737],[-19,-745],[56,-1129]],[[599789,594077],[-67,-425],[-13,-1441]],[[191623,852679],[-165,-1101]],[[190888,853255],[200,-405],[184,-144],[351,-26]],[[198518,887378],[981,730]],[[199751,888284],[307,29]],[[225954,895449],[-56,444],[-109,120],[-182,-55],[-256,105],[-329,265],[-376,-84],[-422,-433],[-523,-334],[-623,-237],[-444,-40],[-267,156],[-465,-19],[-662,-196],[-634,-27],[-607,142],[-478,15],[-350,-111],[-598,59],[-1268,343]],[[229813,895723],[757,1048]],[[743765,809378],[-194,1604],[-253,587],[-563,156]],[[263982,688564],[221,-966],[8,-226]],[[263702,692776],[-160,836],[2,613],[166,1005]],[[267181,708902],[-725,-1164]],[[320327,819784],[-86,884],[3,379],[96,256]],[[182286,709941],[17,-302],[175,-329],[414,-459],[94,-225],[0,-18],[-2,-163],[-105,-196]],[[181692,714747],[-160,727],[-38,411],[47,503]],[[181274,718652],[71,422],[129,217],[212,153],[244,52],[275,-48],[207,-189],[139,-331],[137,-169],[136,-8],[177,274],[160,582]],[[183161,719607],[159,118],[154,-209],[526,-905],[345,-1039]],[[193423,729789],[-87,-91],[-62,-298],[-25,-357],[-110,-415],[-196,-445],[-316,-620],[-106,-225],[-15,-186],[-68,-273],[-163,-411],[-374,-1060],[-287,-176],[-782,-431],[-362,-299],[-119,-421]],[[206053,743303],[-113,-117]],[[172022,793417],[-285,-897],[-66,-637],[84,-1016]],[[171965,800141],[-105,-813],[7,-533],[85,-532],[232,-474],[296,-366]],[[172484,805345],[-30,-1284],[67,-746],[153,-634],[28,-427],[-147,-331]],[[173563,811120],[-987,1247]],[[170759,813737],[446,-71]],[[187935,889368],[814,-725],[262,-386],[-28,-432]],[[182853,893742],[-1,0]],[[182852,893742],[-367,8],[-138,-187],[-30,-380],[211,-283],[452,-187],[258,-233],[64,-279],[624,-251],[1184,-224],[931,-270],[678,-317],[502,-130],[326,57],[262,-286],[200,-627],[75,-341],[-78,-81]],[[545649,861337],[-1,-1]],[[545648,861336],[-306,-202]],[[548377,863427],[-75,-287],[-397,-351],[-745,-510],[-406,-375],[-68,-239],[-239,-161],[-617,-124]],[[540420,866312],[225,-447],[268,-244],[386,-191],[218,-249],[73,-461]],[[538103,868773],[-125,321],[-226,199],[-367,183],[-309,262],[-377,509]],[[584661,778271],[-464,782],[-145,324],[27,188]],[[593166,782586],[185,222],[153,521],[214,547],[333,589],[326,934],[60,615],[437,463],[814,311],[732,61],[651,-188],[395,40],[139,270],[30,498],[-120,1088]],[[592205,795959],[-860,774],[-782,457],[-1990,1492]],[[587332,801314],[111,-397],[19,-363],[-53,-693]],[[584743,808508],[-83,-1849],[5,-918],[97,-901]],[[616971,787140],[538,348],[502,401],[497,389],[470,256],[136,278],[127,452],[321,1329],[249,637],[291,565],[616,886],[191,443]],[[620909,793124],[-16,227],[-114,271],[-44,230],[27,188],[131,304],[235,421],[233,217],[231,12],[195,108],[145,110],[75,248],[42,372],[130,374],[-80,298],[-142,107],[-333,-7],[-99,24],[-114,251],[-22,463],[-114,437],[-158,495],[-148,124]],[[595498,575446],[83,-852],[276,-719],[747,-1305]],[[731565,799209],[665,-733],[354,-291],[264,-95],[372,-444],[479,-792],[201,-493],[-79,-193],[-454,-350],[-829,-508],[-503,-564],[-179,-620],[-50,-682],[79,-744],[126,-520],[174,-297],[6,-268],[-161,-239],[-68,-271],[25,-300],[352,-503],[681,-704],[514,-682],[348,-659],[241,-334],[201,-13]],[[607688,735196],[124,367],[-203,1203]],[[822171,678851],[146,236],[150,698],[303,1857]],[[376702,378947],[-636,867]],[[374431,381146],[-131,41],[-66,109],[-167,193],[-299,139],[-371,553],[-445,966],[-305,401],[-164,-164],[-124,1],[-84,167],[-271,89],[-688,17]],[[369241,385923],[922,-1155],[338,-500],[90,-345]],[[358349,387002],[1142,1660]],[[359491,388662],[3,5]],[[362819,387722],[-2721,719]],[[809659,698287],[-1326,1022]],[[770244,711689],[-112,318],[-150,141],[-338,103]],[[771563,713182],[-137,-746],[-151,-313],[-315,-194]],[[702171,710431],[147,-1484],[36,-671],[-27,-353],[-101,-299],[-263,-367]],[[598396,690944],[78,920],[41,481],[94,650],[59,197],[106,353]],[[598885,700249],[-61,-1061]],[[576068,900396],[372,-572],[-14,-276],[-276,-173],[-142,-249],[-10,-490]],[[161330,756841],[15,-333],[296,-990]],[[719436,601730],[443,28],[151,388],[4,759],[72,506],[208,382]],[[303213,821568],[-292,73],[-120,171],[-44,295],[-92,218],[-212,211]],[[299906,822578],[300,-156],[151,71],[152,369]],[[293240,823090],[-732,-314],[-430,-20],[-315,116],[-760,47],[-1050,109],[-515,-58],[-257,273],[-669,-69],[-1468,-180],[-1044,53],[-435,128],[-318,194],[-303,391]],[[284944,823760],[-1,0]],[[173144,868145],[1241,-931],[1097,-401],[1365,-183],[942,-19],[517,147],[855,494],[1193,841],[1398,237],[2404,-550]],[[191390,770324],[-52,32],[-197,55],[-147,168],[-163,374],[-23,32]],[[732937,632994],[-401,904],[-215,326],[-161,48],[-137,-116],[-114,-281],[-173,-67],[-349,220]],[[237982,785981],[346,305],[162,40],[137,-185]],[[237481,786281],[-1,0]],[[237480,786281],[-361,-97]],[[223986,765799],[104,-573],[-72,-451],[-212,-521],[-34,-325],[145,-129],[120,-314],[94,-500],[324,-592],[554,-682],[291,-440],[28,-196],[234,-269],[661,-510]],[[190234,779816],[-67,630],[-127,441],[-310,696]],[[220063,781889],[422,-620],[158,-562],[35,-710],[-42,-625],[-119,-539],[159,-916],[436,-1294],[86,-692],[0,-186],[-93,-183],[-86,-179],[-14,-303],[14,-156],[76,-177],[177,-333],[124,-784],[-12,-1077],[-53,-476],[-76,-96],[-75,-21],[-76,-239],[-20,-442],[-95,-379],[-169,-316],[-218,-103],[-269,111],[-31,-43],[-15,-109],[103,-244],[67,-327],[6,-352],[69,-245],[131,-139],[15,-148],[-18,-153],[72,-164],[329,-158],[67,-90]],[[218333,786573],[-77,271],[-336,24],[-620,-133],[-568,83],[-514,298],[-298,419],[-83,542],[-130,231],[-178,-79],[-227,48],[-275,176],[-83,337],[112,497],[-96,431],[-305,365],[-413,223],[-521,80],[-331,-88],[-141,-256],[-217,-198],[-293,-140],[-229,107],[-164,354],[-211,8],[-392,-518]],[[204429,789614],[-316,-794],[-224,-379],[-776,-679],[-448,-78],[-614,70],[-342,-69],[-69,-209],[-177,-82],[-284,46],[-314,-261],[-345,-569],[-208,-60],[-146,469],[-223,98],[-489,22]],[[495242,556815],[396,302],[190,192],[180,247],[169,34],[212,-281],[342,-247],[557,-64]],[[908452,292403],[2,3]],[[908454,292406],[156,338]],[[908610,292744],[159,87],[318,-80]],[[905633,292955],[521,-244]],[[497293,556996],[-380,1149],[-123,673],[10,869]],[[703611,752710],[-1022,79],[-449,-161],[-325,-561]],[[231673,807101],[7,1946],[-99,1028],[-201,759],[-691,1473],[-1181,2188],[-738,1784],[-297,1382],[-226,1630],[-229,2819]],[[228018,822110],[123,1155],[-101,364],[-209,359],[-96,294],[17,227],[10,244],[52,133],[202,88],[322,132],[186,331]],[[228051,829119],[308,-791]],[[227929,830559],[1921,1698]],[[231798,837146],[134,263],[233,125],[377,75],[248,177],[120,281],[261,212],[604,217]],[[234913,838779],[1811,323]],[[586229,860126],[384,189],[258,419],[390,1069]],[[512849,564107],[-268,2211],[22,1100],[331,1091]],[[488945,596121],[-519,495],[-225,334],[-157,505]],[[591331,647577],[82,-1059],[-17,-663],[-86,-620],[17,-653],[69,-392],[32,-489],[-164,-734],[-487,-1171],[-258,-791],[-30,-409],[-172,-392],[-267,-405],[-255,-111],[-262,386],[-264,91],[-265,-204],[-225,-409],[-185,-615],[-441,-771],[-530,-850],[-290,-675],[-111,-261],[-105,-670],[-228,-798],[-527,-1392]],[[730625,829950],[-1980,-2095],[-857,-783],[-394,-170],[-338,-358],[-283,-547],[-323,-427],[-366,-307],[-176,-361],[19,-624]],[[572143,325279],[-193,-13],[-171,-200],[-214,-391],[-259,-94],[-456,303]],[[568696,328625],[686,-1678]],[[857601,410456],[-80,-1779],[17,-829],[91,-372],[25,-362],[-60,-530]],[[280095,782562],[-553,1151],[-195,661],[-19,555],[-104,539],[-187,523],[-35,447]],[[279002,786438],[176,555]],[[278630,559612],[-176,46],[-17,26]],[[359750,393393],[-26,398],[116,452]],[[359840,394243],[248,638],[337,464]],[[360425,395345],[425,288],[372,148]],[[361222,395781],[476,11]],[[366036,397413],[-2015,82],[-433,-367]],[[368204,398415],[-943,-1234],[-397,-390],[-246,66]],[[348304,355496],[200,660],[181,595]],[[348685,356751],[103,585],[-40,267],[-10,64],[114,1169]],[[348852,358836],[278,2006],[89,1312]],[[349219,362154],[-101,620],[-2,432],[96,248]],[[349212,363454],[46,120]],[[355732,379195],[-51,-276],[-98,-143]],[[355583,378776],[-160,-103],[-69,-254],[21,-406]],[[355375,378013],[-160,-565],[-342,-721]],[[354873,376727],[-259,-691],[-177,-661],[-454,-818],[-1097,-1461]],[[358340,389568],[9,-2566]],[[358349,387002],[-193,-716],[-280,-503],[-646,-791]],[[160495,836900],[-724,537],[-579,68],[-676,-224],[-427,-232],[-177,-243],[-475,-33],[-772,176],[-546,21],[-320,-132],[-474,438],[-629,1010],[-402,785],[-176,561],[-287,615],[-597,1001]],[[183824,852792],[305,-242]],[[160848,746843],[-763,-119]],[[284842,786870],[-41,59],[-34,170],[-128,5],[-171,-118],[-61,38],[-6,90],[197,433]],[[285216,786973],[58,-68],[100,-208],[137,-117],[162,143],[121,-29],[79,-202],[134,-82],[285,55]],[[281322,787624],[-55,-68],[-192,-93]],[[284646,787982],[-3,131],[-44,318],[-64,56]],[[240606,793135],[11,2]],[[240617,793137],[79,18]],[[240696,793155],[472,103],[1112,243]],[[246336,794388],[-336,441],[-216,54],[-311,-276]],[[525354,787547],[-685,-84]],[[525507,787547],[103,-94],[929,-849]],[[517036,778882],[264,708],[18,49],[173,258],[69,103],[298,218],[58,5],[356,35],[694,-177],[106,-27]],[[223732,665715],[24,-79],[12,-39],[392,-898],[201,-726]],[[224361,663973],[121,-879],[40,-290]],[[219336,679922],[-735,1026]],[[201962,700312],[36,1205]],[[202274,701865],[31,1079]],[[286612,809681],[106,-364],[143,-97],[490,155]],[[291100,809862],[328,-24],[238,-138],[146,-264],[145,-43],[215,267]],[[214498,625841],[31,-659]],[[211920,629551],[318,198]],[[208044,634779],[123,-87],[72,-170]],[[160085,746724],[-115,-248]],[[167506,724484],[269,366]],[[264528,571513],[-578,531],[-765,1449],[-1717,3813]],[[224362,820138],[2260,999],[927,486],[469,487]],[[221326,822546],[443,-528],[271,-580],[247,-809],[345,-330],[442,149],[418,-60],[590,-402]],[[212719,822898],[-441,-136],[-326,-253],[-538,-623]],[[215452,824846],[157,-90]],[[480434,547423],[-38,-773],[50,-509],[128,-504],[12,-908],[-102,-1302],[50,-600]],[[270585,706856],[659,-1064],[265,-523],[134,-506]],[[581811,502219],[403,2795]],[[587129,518770],[0,-2]],[[587129,518768],[-145,-400],[-128,-356],[-304,-846],[-601,-1414],[-320,-651],[-927,-1884],[-43,-88]],[[597936,420084],[57,-1497]],[[776185,809285],[-325,365]],[[185232,757896],[-433,126]],[[186490,758838],[622,1244]],[[191534,761163],[-127,161],[-257,618]],[[203186,808775],[453,-784],[-4,-341],[-309,-158],[-273,-489],[-237,-822],[-481,-596],[-725,-369],[-679,-142],[-947,129]],[[590446,684179],[-559,1439]],[[589887,685618],[0,1]],[[608481,859638],[1241,-1493],[517,-507],[312,-29]],[[725818,687790],[-265,357]],[[713234,691436],[-58,-443],[-80,-208],[-121,-121],[-209,168],[-447,685]],[[587261,861803],[501,1022],[566,662],[798,643],[752,154],[708,-337],[276,-319],[307,-356]],[[695430,744785],[-101,-379],[-367,-240],[-999,-342]],[[690154,748754],[-785,134],[-341,211],[-132,279],[-33,250]],[[671555,777798],[-549,523]],[[374753,393213],[-243,1478],[-73,1238],[-128,536],[-208,246],[-35,470],[207,1041]],[[380139,439950],[257,918],[312,591],[455,571],[412,907],[370,1242],[169,910],[-30,580],[127,502],[287,425],[255,635],[223,845],[606,428],[989,10],[608,104],[229,197],[217,441],[204,684],[273,278],[514,-193]],[[483345,741337],[402,-264],[542,-59],[1225,89]],[[492406,745334],[436,1160]],[[258615,710148],[-954,1060],[-438,382],[-241,56],[-239,-60],[-356,-264]],[[255624,718248],[-79,96],[33,294],[119,525],[-29,684],[-178,845],[-90,738],[-2,631]],[[255398,722061],[-158,873],[-472,1675]],[[133068,858093],[-714,1853],[-535,876],[-593,518],[-561,625],[-790,1101]],[[208795,878568],[290,335],[89,293],[-23,544]],[[232574,885837],[2293,-848],[1,0]],[[234868,884989],[1107,1],[660,-189],[582,-379],[480,-122],[567,206]],[[217191,886486],[764,485]],[[230268,888555],[-165,-275],[-359,9],[-607,202],[-729,-59],[-852,-319],[-512,-121],[-172,75],[-156,-159],[-140,-395],[-167,-176],[-195,42],[-344,-135],[-493,-311],[-387,24],[-279,359],[-525,184],[-771,9],[-608,111],[-443,213],[-388,-33],[-332,-279],[-532,-78],[-1099,183]],[[361980,483143],[133,-2224],[258,-1981],[428,-2479],[311,-1491],[196,-503],[263,-189],[494,190]],[[268983,710289],[315,-518],[214,-204],[219,-63],[136,-170],[81,-419]],[[663430,814297],[-148,-740],[-41,-562],[16,-631],[-92,-494],[-302,-538]],[[572474,342666],[-87,-509],[-63,-53],[-69,234],[-159,205],[-249,179],[-262,-44],[-412,-396]],[[579157,346287],[-2,1]],[[579155,346288],[-138,105],[-896,628]],[[754196,823391],[-157,560],[34,434],[171,494],[77,345],[-15,196],[-184,522],[-352,848],[-200,614],[-47,382],[-249,420],[-453,459],[-214,555],[23,651],[115,555],[205,459],[802,494],[1400,527],[909,681],[628,1251]],[[592186,508337],[199,-293],[-75,-498],[-284,-801],[-310,-1245],[-336,-1689],[-424,-1228],[-513,-769],[-742,-672],[-1458,-866]],[[590401,514801],[194,-398],[195,-166],[264,-29],[155,-100],[160,-551]],[[589558,515652],[651,-675]],[[804407,880837],[630,-174],[348,54],[276,225],[289,42],[303,-139],[260,-202],[218,-264],[70,-386],[-78,-508],[149,-295],[376,-81],[95,-205],[-187,-329],[246,-382],[678,-434],[409,4],[142,442],[351,277],[561,111],[391,298],[220,485],[236,182],[251,-121],[154,-251],[57,-380],[-107,-309],[-269,-238],[15,-322],[299,-407],[306,-213],[312,-18],[279,290],[246,598],[220,245],[291,-165]],[[552251,800871],[351,40]],[[626843,802628],[465,797],[13,590],[-284,649],[-149,471],[-13,295],[190,268],[394,240],[265,246],[136,251],[39,346],[-59,441],[-152,391],[-246,342],[-121,381],[3,422],[91,368],[181,315],[101,281],[23,248],[148,245],[274,243],[242,397],[209,551],[199,226],[311,162],[246,-125],[316,-48],[264,23]],[[636274,833717],[628,-1467],[-102,-718]],[[636800,831532],[-624,-456],[-343,-744],[-61,-1030],[-267,-701],[-474,-371],[-290,-385],[-104,-398],[-45,-457],[14,-517],[352,-721],[690,-926],[364,-895],[38,-862],[78,-600],[117,-338],[155,-234],[292,-130],[994,40],[938,-63]],[[620645,840764],[-246,345],[-159,478],[-155,725],[-155,514],[-155,301],[-85,260],[-17,219],[60,338],[205,685],[-843,476],[-418,128],[-411,-93]],[[603197,841228],[-1,0]],[[603196,841228],[-747,174],[-405,-195],[-311,-506],[-290,-128],[-403,376]],[[604891,844404],[508,123],[375,415],[617,1121]],[[614840,845600],[-379,141],[-297,418],[-341,744],[-243,417],[-143,90],[-365,-58],[-588,-207],[-559,-355],[-795,-756]],[[606769,848699],[-309,386],[-18,395],[245,814],[1,0]],[[606688,850294],[823,-1030]],[[497288,556998],[696,-1768],[553,-973],[644,-766],[393,-728],[144,-690],[131,-409],[119,-127],[140,-530],[163,-932],[158,-568],[152,-203],[59,-679],[-34,-1153],[-65,-753],[-97,-351],[2,-359],[101,-367],[-9,-309],[-166,-316],[-74,-495],[-11,-1256]],[[531028,856802],[86,368],[5,280]],[[531109,858466],[-14,296],[-98,657],[-6,469]],[[584660,863809],[-500,469],[-504,134],[-673,-45],[-445,54],[-326,232]],[[584816,864139],[345,112],[374,-85],[518,-243],[495,-620],[707,-1495]],[[988338,275671],[76,133],[376,562],[190,375],[73,379]],[[237182,801270],[296,-1686],[-114,-791],[-427,-458],[-276,-420],[-125,-380],[-12,-200],[-25,-403]],[[236499,796932],[49,-824],[109,-687],[252,-825]],[[233261,802987],[103,716]],[[233364,803703],[0,3]],[[231673,807101],[362,-1212],[211,-525],[269,-363]],[[813624,677386],[-288,-615],[-302,-313],[-411,-215],[-537,136],[-995,731]],[[813870,678072],[215,1429]],[[575057,399670],[88,185],[218,459],[97,304],[293,918],[274,457],[189,315],[552,1477],[85,302],[248,890],[61,121],[270,537],[157,312],[643,748],[278,267],[267,258],[111,107],[90,69],[912,705]],[[590856,413731],[-587,82],[-421,-142],[-448,-338],[-722,-119],[-995,100],[-658,-73],[-324,-246],[-410,-1],[-746,366]],[[211707,852678],[334,-866]],[[191623,852680],[592,312],[460,449],[526,690],[530,557],[535,425],[804,474],[1070,525],[791,195],[512,-133],[1117,90],[1724,314],[1074,62],[425,-189],[1090,-157],[2632,-185]],[[206806,855393],[834,261],[374,34],[285,-159]],[[213279,870350],[76,-224],[-89,-201],[-227,-251],[-183,-391],[-210,-797]],[[214113,874118],[29,-221],[129,-128],[238,-108],[138,-153],[37,-198],[-194,-305],[-425,-410],[-313,-486],[-301,-841]],[[220689,874334],[1326,-757],[650,-81],[622,515]],[[218992,874403],[1189,-66]],[[217136,875309],[-43,-410],[56,-360],[141,-448],[337,-115],[800,327]],[[226806,875874],[305,597],[438,226],[671,56],[398,338],[187,932]],[[217974,876160],[-22,750],[-121,418],[-220,336],[-343,135],[-698,-99]],[[214832,876725],[-55,-389],[42,-306],[119,-351],[-34,-386],[-281,-630]],[[229280,879076],[478,2108]],[[233671,882026],[-1174,-258],[-746,-29],[-1062,169]],[[234729,884355],[139,634]],[[234868,884989],[0,1]],[[603274,571029],[-436,923],[-114,562],[94,764],[97,968],[131,452],[195,256],[36,325],[-186,592]],[[603091,575871],[0,1]],[[603851,574565],[0,-1]],[[603851,574564],[19,-372],[158,-216],[304,-181],[335,-487],[366,-790],[575,-602],[786,-415],[445,-465],[105,-517],[38,-1048],[-29,-1580],[-70,-1128],[-110,-677],[-175,-376],[-239,-76],[-497,-442],[-755,-809],[-497,-162],[-238,485],[-232,324],[-228,165],[-150,22],[-74,-120],[-54,48],[-36,215],[-89,166],[-143,118],[-65,236],[14,354],[-97,248],[-313,215],[-1024,340],[-379,258],[-75,289],[-85,99],[-94,-91],[-151,-468],[-208,-843],[-315,-456],[-421,-69],[-273,-192],[-124,-315],[-175,-131],[-226,53],[-117,-87],[-6,-124],[-9,-63],[-41,-12],[-216,122],[-719,731],[-44,87]],[[607110,717764],[989,292],[865,-189],[1070,-574],[613,-593],[155,-614],[320,-631],[487,-650],[233,-385],[-19,-121],[105,-142],[229,-163],[132,-343],[38,-522],[102,-374],[169,-225],[134,-352],[101,-478],[251,-503],[401,-527],[203,-485],[5,-444],[45,-281],[54,-72],[76,-104]],[[605626,723510],[86,-558],[128,-277],[200,-182],[157,-268],[115,-355],[-19,-452],[-227,-822]],[[259871,699730],[495,-1120],[71,-565],[-187,-383],[-49,-247],[-33,-65],[-97,52],[-136,-60],[-164,-236],[-168,-27],[-171,183],[-131,19],[-91,-145],[-99,-27],[-109,92],[-74,-61],[-27,-114],[-39,-10],[-41,54],[-45,284],[-40,58],[-45,3],[-110,-235],[-108,-44],[-109,145],[-99,36],[-90,-74],[-4,-122],[80,-170],[-56,-146],[-191,-121],[-56,-217],[80,-310],[-64,-183],[-207,-54],[-108,-171],[-9,-290],[-100,-22],[-189,245],[-155,-99],[-121,-441],[2,-331],[125,-221],[-30,-154],[-185,-87],[-26,-198],[131,-308],[-25,-302],[-181,-295],[-61,-323],[59,-349],[-37,-247],[-133,-146],[-52,-213],[30,-280],[-108,-229],[-246,-177],[-202,-391],[-158,-606],[-126,-327],[-77,-38],[-55,-72],[-13,-132],[-17,-1172],[-54,-535],[-96,-173],[-29,-233],[13,-389]],[[260194,703468],[-101,-154],[-28,-214],[11,-326],[-79,-303],[-169,-280],[-62,-232],[44,-185],[-20,-254],[-115,-321],[-14,-166]],[[263381,708285],[-885,-297],[-433,-27],[-127,-11],[-66,-63],[-18,-110],[73,-115],[4,-121],[-79,-125],[-104,-32],[-115,33],[-70,-75],[-21,-142],[-48,-107],[-51,0],[-46,-45],[-9,-107],[-57,-128],[-78,-4],[-42,-107],[-6,-147],[-48,-134],[-135,-96],[-61,-253],[23,-440],[-98,-340],[-220,-243],[-84,-268],[-9,-303],[-16,-162]],[[246062,807631],[293,-36]],[[248843,807769],[1539,622],[749,474],[472,532],[359,301],[247,69],[176,181],[105,292],[133,25],[161,-242],[238,53],[315,348],[304,171],[295,-5],[204,-116],[112,-228],[390,-111],[668,6],[653,-351],[637,-708],[490,-323],[342,60],[352,233],[362,405],[350,205],[337,4],[329,171],[479,509],[252,316],[106,313],[46,414],[87,267],[130,118],[163,32],[194,-54],[228,-210],[262,-367],[443,-133],[626,100],[599,-344],[573,-789],[321,-551],[70,-314],[408,-434],[745,-555],[508,-105],[271,345],[778,576],[1285,809],[835,823],[385,838],[390,638],[395,439],[375,240],[354,40],[349,250],[345,460],[356,284],[550,160],[478,326],[152,181]],[[245050,809212],[160,-350],[112,-111],[68,-87],[37,-171],[16,-147],[119,-168]],[[244742,810101],[19,-170]],[[244641,812496],[40,-771]],[[243613,812980],[172,-154],[229,20],[513,214]],[[588932,527164],[-223,-506],[-140,-116],[-129,105],[-150,-19],[-169,-144],[-278,-800],[-386,-1455],[-223,-983],[-62,-511],[15,-356],[92,-203],[36,-301],[-19,-399],[64,-372],[146,-344],[36,-320],[-113,-445]],[[843238,839894],[-1004,196],[-287,-16],[-99,128],[-6,267],[63,326],[134,386],[98,538],[64,690],[282,811],[500,933],[226,549],[-51,165],[40,222],[129,280],[-21,183],[-173,86],[-64,232],[45,378],[69,283],[94,186],[140,14],[186,-159],[166,66],[147,291],[-17,419],[-181,549],[-54,563],[73,575],[219,467],[363,360],[83,333],[11,121],[89,140],[222,80],[355,20],[193,199],[32,379],[105,435],[270,739],[371,545],[210,167],[172,-27],[119,101],[66,232],[172,139],[281,47],[240,165],[199,283],[112,252],[22,221],[148,167],[274,112],[98,180],[-79,246],[-3,207],[73,167],[5,212],[-63,255],[-2,216],[58,177],[197,-11],[335,-198],[305,-323],[273,-451],[396,-340],[518,-229],[360,-271],[200,-311],[571,-347],[939,-382],[554,-302],[167,-224],[197,29],[228,281],[274,93],[322,-95],[237,64],[154,224],[222,39],[291,-145],[149,-197],[8,-249],[104,-203],[202,-157],[210,135],[217,427],[209,199],[201,-28],[159,-126],[118,-222],[134,68],[152,359],[127,-53],[104,-465],[150,-264],[197,-62],[132,-208],[67,-354],[289,-257],[510,-159],[473,-1],[435,157],[452,-36],[469,-229],[498,145],[526,518],[577,194],[630,-133],[346,35],[63,201],[3,309],[-59,416],[38,298],[133,179],[367,201],[600,226],[397,-2],[194,-227],[153,29],[115,283],[152,81],[192,-120],[265,8],[338,137],[335,236],[329,337],[169,290],[7,242],[146,88],[285,-65],[288,96],[435,385],[757,769],[465,237],[428,-38],[273,316],[119,671],[216,367],[313,63],[664,855],[1016,1648],[838,1172],[989,1043],[419,95],[374,-117],[467,-299],[269,13],[72,323],[-113,351],[-300,378],[-153,353],[-6,328],[263,407],[534,488],[420,650],[305,812],[93,610],[-120,408],[-2,335],[117,261],[-72,219],[-263,178],[-1,272],[259,365],[139,284],[20,204],[-133,106],[-285,6],[-251,169],[-215,332],[134,254],[484,176],[255,308],[27,441],[166,381],[307,321],[79,344],[-146,366],[81,328],[310,287],[23,323],[-265,358],[-243,577],[-222,797],[-229,405],[-237,15],[-219,-109],[-202,-230],[-396,-28],[-589,177],[-720,418],[-851,660],[-412,480],[29,301],[-134,160],[-299,19],[-184,91],[-72,162],[0,234],[-398,339],[-1006,-243],[-603,7],[-201,256],[-14,249],[173,244],[77,330],[-18,415],[-711,70],[-1402,-275],[-1254,50],[-1108,376],[-767,24],[-425,-326],[-507,-108],[-885,168],[-715,-9],[-906,220],[-2004,669]],[[283722,753039],[-386,-300],[-234,-61],[-315,115],[-371,517],[-102,381],[43,418],[-190,274],[-424,131],[-281,166],[-137,202],[-205,-96],[-272,-393],[-167,-450],[-61,-507],[-228,-297],[-394,-86],[-298,-266],[-203,-446],[-100,-377],[4,-466],[-102,-386],[-169,-152],[-270,-47],[-247,-148],[-224,-248],[-84,-187],[56,-126],[-22,-145],[-100,-164],[48,-211],[197,-257],[178,-390],[159,-522],[57,-321],[-45,-118],[90,-155],[180,-162],[22,-194],[-77,-484],[-432,-1105],[-366,-694],[-323,-374],[-124,-50]],[[353710,496635],[-582,-350],[-351,-337],[-402,-566],[-592,-441],[-780,-314],[-568,-393],[-355,-474],[-204,-608],[-55,-744],[-340,-535],[-780,-488],[-160,-1],[-108,-1],[-208,125]],[[348225,491508],[-104,355],[5,626],[-54,409],[-111,192],[-166,188],[-219,185],[-234,-93],[-247,-369],[-289,-80],[-331,209],[-295,367],[-231,567],[-157,221],[-111,151],[-142,33],[-176,-49],[-185,-218],[-289,-156],[-393,-93],[-412,-437],[-429,-780],[-324,-737],[-219,-694],[-192,-433],[-163,-174],[-191,-108],[-221,-44],[-255,92],[-288,227],[-274,29],[-260,-167],[-281,148],[-301,462],[-242,258],[-182,53],[-277,-507],[-374,-1066],[-397,-722],[-422,-376],[-278,-656],[-136,-936],[-142,-491],[-92,-84],[-133,14],[-178,57],[-202,122],[-268,-140],[-258,-583],[-130,-227]],[[336975,486053],[-323,-28],[-236,144],[-256,308],[-303,187],[-350,66],[-456,257],[-561,447],[-422,182],[-282,-85],[-166,-209]],[[333620,487322],[-25,-259],[-52,-204],[-92,-186],[-410,-403],[-272,-116],[-211,137],[-366,13],[-519,-111],[-415,-470],[-309,-829],[-494,-425],[-678,-22],[-520,-366]],[[329257,484081],[-363,-711],[-331,-513],[-298,-314],[-189,-63],[-330,302],[-739,792],[-250,258],[-72,10],[-84,-83],[-72,-422],[-260,-291],[-449,-159],[-439,-356],[-432,-554],[-218,-275],[-154,41],[-70,215],[-108,359],[-185,305],[-463,307],[-344,101],[-223,-107],[-261,21],[-296,147],[-504,466],[-710,785],[-464,639],[-326,742],[-596,1039]],[[320027,486762],[-319,555],[-458,933],[-304,804],[-301,519],[-297,233],[-178,259],[-59,284],[-217,125],[-564,-52],[-387,650],[-214,159],[-168,-114],[-162,48],[-157,210],[-160,-107],[-163,-424],[-180,-30],[-199,364],[-182,213],[-166,63],[-116,-294],[-66,-648],[-124,-422],[-181,-193],[-263,-134],[-344,-75],[-423,188],[-503,453],[-350,-24],[-198,-499],[-325,-425],[-455,-349],[-306,-529],[-239,-1065],[16,-681],[-53,-354],[-117,-253],[-297,-47],[-476,159],[-916,-227],[-1357,-615],[-743,-610],[-131,-608],[-48,-642],[33,-676],[-57,-561],[-148,-447],[-8,-369],[131,-290],[-69,-370],[-271,-447],[-359,-212],[-447,24],[-283,269],[-5,32],[-44,258],[-143,438],[-215,412],[-202,248],[-81,307],[-5,19],[-116,664],[-162,227],[-114,177],[-110,-26],[-91,-142],[-25,-40],[-180,-117],[-122,18],[-77,-22],[-953,-532],[-437,-150],[-223,130],[-153,359],[-251,199],[-346,40],[-315,212],[-282,384],[-182,659],[-83,935],[-93,573],[-104,210],[-346,-145],[-589,-501],[-463,-206],[-509,132],[-753,144],[-399,-61],[-297,-217],[-267,-346],[-239,-475],[-88,-829],[62,-1186],[-9,-684],[-80,-182],[-132,-34],[-182,112],[-88,-92],[6,-296],[-61,-285],[-128,-274],[-87,-350],[-71,-641]],[[689477,724609],[-400,-424],[-306,131],[-343,545],[-84,200],[-106,249],[-25,247],[-11,106],[-147,162],[-196,-21],[-61,-7],[-170,78],[-47,106],[-34,77],[-97,-24],[-113,-27],[-338,-286],[-346,151],[-351,589],[-20,6],[-650,209],[-664,-105],[-137,-22],[-188,-30],[-1009,414],[-1031,986],[-714,585],[-399,184],[-323,507],[-248,828],[-621,887],[-995,944],[-770,1093],[-545,1240],[-341,930],[-137,621],[-500,852],[-864,1083],[-595,581],[-326,79],[-186,334],[-44,591],[-282,637],[-519,681],[-381,719],[-175,544],[-190,587],[-185,1749],[-214,800],[-276,396],[-28,40],[-260,840],[-215,1244],[-135,614],[-42,194],[-141,373],[-286,412],[-432,452],[-4,2],[-406,212],[-177,-11],[-211,-12],[-261,165],[-134,354],[-512,749],[-891,1145],[-508,852],[-126,559],[-171,345],[-215,130],[-143,241],[-71,350],[-175,378],[-279,405],[-424,351],[-569,296],[-439,442],[-310,588],[-245,344],[-180,101],[-63,243],[55,385],[-59,276],[-173,165],[-71,212],[32,258],[-50,311],[-132,363],[-48,355],[38,347],[-33,402],[-105,458],[-26,342],[-247,801],[-32,606],[109,694],[-37,525],[-186,355],[-336,276],[-488,196],[-237,450],[14,706],[-175,795],[-550,1335]],[[880028,799891],[89,-178],[4,-304],[-52,-490],[-290,-444],[-529,-398],[-379,-503],[-231,-606],[-110,-553],[10,-502],[-314,-586],[-956,-1004],[-202,-313],[-212,-56],[-287,96],[-334,-18],[-382,-132],[-340,-243],[-300,-353],[-141,-439],[17,-524],[-188,-359],[-395,-195],[-301,-28],[-15,-1],[-127,73],[-111,64],[-379,-18],[-67,-22],[-713,-234],[-642,-324],[-368,-186],[-113,-93],[-360,-297],[-274,-441],[-291,-212],[-465,26],[-166,9],[-270,15],[-345,-244],[-397,-504],[-290,-231],[-182,43],[-195,-338],[-171,-591],[-37,-128]],[[868227,788125],[-238,-316],[-102,33],[-165,53],[-640,-68],[-287,-63],[-726,-159],[-634,9],[-70,65],[-187,175],[-403,31],[-276,-90],[-273,-89],[-330,-36],[-114,105],[-80,299],[-49,491],[-185,511],[-323,531],[-57,641],[7,26],[202,724],[47,514],[-113,277],[-46,248],[-133,171],[-111,142],[-172,540],[-125,164],[37,459],[144,550],[-124,360],[-54,160],[-550,31],[-421,142],[-21,7],[-442,477],[-229,452],[-450,887],[-86,120],[-251,351],[-222,48],[-160,217],[-73,286],[-26,101],[-159,3],[-96,0],[-60,0],[-96,-160],[-112,-50],[-170,146],[-176,17],[-181,-115],[-153,75],[-124,264],[-228,175],[-330,87],[-137,183],[7,31],[51,248],[-61,208],[-181,136],[-492,-34],[-805,-207],[-659,55],[-515,317],[-287,292],[-58,267],[-149,257],[-86,89],[-152,156],[-134,424],[-28,568],[-2,32],[57,571],[217,812]],[[888493,810645],[-144,-95],[-280,-27],[-285,-82],[-300,-233],[-127,-329],[-196,-259],[-265,-187],[-343,-61],[-421,66],[-249,-143],[-80,-352],[-179,-256],[-418,-239],[-1684,-2075],[-1001,-838],[-879,-292],[-568,-343],[-256,-396],[-113,-275],[44,-232]],[[889205,811737],[91,134],[164,164],[35,362],[-101,527],[90,485],[284,442],[190,622],[98,800],[-44,627],[-186,453],[-210,279],[-235,107],[-146,280],[-58,454],[-299,521],[-542,589],[-124,650],[295,714],[388,369],[483,26],[464,-189],[445,-405],[308,-164],[256,116],[79,-13]],[[974904,902370],[1054,-737],[285,-878],[167,-353],[142,-121],[-506,-352],[-1153,-584],[-842,-596],[-530,-609],[-612,-467],[-694,-324],[-392,-254],[-91,-182],[-39,-618],[14,-1053],[-136,-598],[-429,-216],[-1356,-641],[-524,-380],[-142,-331],[-271,-304],[-397,-277],[-191,-340],[18,-404],[203,-334],[391,-265],[53,-356],[-285,-449],[-181,-412],[-77,-376],[237,-383],[551,-389],[677,-115],[802,160],[890,-76],[980,-312],[812,-131],[646,52],[280,281],[76,274],[42,212],[33,315],[123,91],[163,-10],[240,195],[315,398],[95,292],[-126,188],[-33,324],[60,460],[477,239],[895,19],[585,-185],[274,-390],[362,-206],[451,-22],[305,124],[158,268],[406,309],[652,349],[436,394],[219,440],[237,291],[254,141],[248,26],[243,-89],[135,-158],[26,-227],[213,-292],[398,-357],[212,-261],[24,-167],[-45,-236],[-173,-458],[-156,-240],[-19,-202],[67,-244],[226,-163],[385,-82],[341,-327],[298,-573],[407,-454],[773,-504],[297,-50]],[[791296,812367],[-1194,1743],[-410,730],[-22,298],[-213,357],[-404,414],[-240,414],[-78,414],[-188,380],[-298,348],[-167,391],[-34,435],[-223,361],[-412,287],[-220,292],[-43,447]],[[782786,838493],[39,1595],[-130,747],[-286,432],[-297,239],[-310,47],[-160,232],[-11,418],[204,304],[419,188],[461,-80],[504,-348],[427,-186],[351,-25],[214,153],[116,498]],[[784327,842707],[0,1]],[[785205,848259],[336,1056],[116,730],[8,754],[-165,891],[-337,1029],[-497,779],[-50,40]],[[784691,853496],[-75,42]],[[784616,853538],[-1003,568]],[[784616,853538],[-608,491],[-395,77]],[[783613,854106],[-720,141],[-1573,-92],[-822,-249],[-70,-404],[-381,-430],[-692,-455],[-364,-315],[-35,-175],[26,-251],[88,-326],[-67,-363],[-222,-399],[-307,-147],[-392,105],[-343,281],[-291,458],[-355,279],[-419,101],[-363,243],[-309,386],[-333,242],[-357,98],[-419,-97],[-484,-291],[-269,-303],[-56,-317],[-117,-243],[-177,-172],[-675,-183],[-1174,-192],[-909,-27],[-646,139],[-468,-9],[-290,-158],[-230,-61],[-168,35],[-203,192],[-237,350],[-697,214],[-1155,80],[-893,-110],[-630,-299],[-365,-278],[-99,-256],[-411,-437],[-722,-619],[-1043,-370],[-1366,-121],[-1048,55],[-732,230],[-522,-37],[-314,-305],[-239,-139],[-227,82]],[[783613,854106],[-425,241]],[[352458,400282],[-268,2634]],[[352190,402916],[27,635],[121,550]],[[352338,404101],[223,673],[124,588],[25,502]],[[352710,405864],[227,572],[426,642],[304,762]],[[353667,407840],[180,883],[195,579],[210,275],[96,380],[-18,486],[68,314]],[[354398,410757],[152,143]],[[354550,410900],[149,290],[143,435],[322,374],[498,314]],[[355662,412313],[317,426],[136,537],[55,375]],[[356170,413651],[-27,212],[44,201],[113,192]],[[356300,414256],[100,515],[87,839]],[[356487,415610],[208,708],[329,575],[275,122],[239,123]],[[357538,417138],[111,-9],[160,164]],[[357809,417293],[207,820],[379,2213]],[[358395,420326],[101,1552],[91,553],[114,71]],[[358701,422502],[43,592],[-26,1111],[172,1154],[369,1194],[190,948],[9,700],[80,686],[228,1012],[-228,141],[-133,332],[-115,571],[-14,642],[87,715]],[[359363,432300],[-7,879]],[[359356,433179],[-99,1043],[-21,722],[60,400],[-23,406],[-155,618]],[[359118,436368],[143,574],[-15,462]],[[359246,437404],[-126,538],[24,810]],[[359144,438752],[175,1081],[96,957],[29,1249],[2,589],[135,724],[267,1057]],[[359848,444409],[144,770]],[[359992,445179],[21,482],[160,840],[451,1799]],[[360624,448300],[253,1822]],[[360877,450122],[292,1192],[414,1171]],[[361583,452485],[339,750],[264,331]],[[362186,453566],[308,799],[354,1268],[255,1111]],[[363103,456744],[156,957],[102,854]],[[363361,458555],[49,754]],[[363410,459309],[-134,681],[-315,609]],[[362961,460599],[-18,822],[280,1036]],[[363223,462457],[121,993],[-38,952]],[[363306,464402],[362,884],[761,814]],[[364429,466100],[424,725]],[[364853,466825],[86,633],[116,440]],[[365055,467898],[147,248]],[[365202,468146],[157,112],[168,-25],[53,287]],[[365580,468520],[-63,600],[66,387],[196,174]],[[365779,469681],[63,267],[-68,359],[39,240]],[[365813,470547],[147,122]],[[365960,470669],[25,335],[-97,548]],[[365888,471552],[60,427],[215,305],[61,312],[-93,318]],[[366131,472914],[-107,190],[-123,64],[-116,214]],[[365785,473382],[-111,365],[-179,154]],[[365495,473901],[-248,-57]],[[365247,473844],[-241,56],[-348,255]],[[364658,474155],[-595,311]],[[837236,820918],[-571,-94],[-595,-98],[-782,-666],[-410,-629],[-375,-575],[-565,-758],[-115,-105],[-228,-206],[-139,-408],[64,-504],[292,-180],[467,130],[54,15],[41,-7],[406,-64],[375,-286],[120,-432],[-136,-577],[42,-568],[220,-558],[12,-523],[2,-121],[-48,-185],[-119,-458],[-22,-86],[-475,-736],[-760,-742],[-473,-723],[-277,-1055],[-201,-432],[-226,-485],[-157,-517],[-26,-371],[-4,-53],[-170,-459],[-81,-129],[-228,-364],[-170,-494],[-10,-171],[-19,-325],[-156,-451],[-283,-408],[-176,-431],[-69,-454],[-108,-305],[-124,-132],[-24,-25],[79,-154],[188,-95],[116,-58],[30,-106],[94,-338],[-43,-572],[-12,-161],[-185,-523],[-312,-313],[-132,-58],[-211,-92],[-123,-54],[-174,-27],[-447,-68],[-95,-78],[-751,-621],[-491,-598],[-610,-744],[-505,-615]],[[247008,705550],[-125,164],[-77,233],[-48,343],[-138,193],[-227,42],[-68,74],[-21,99],[-34,76],[-122,9],[-89,124],[-57,236],[-134,146],[-212,55],[-330,312],[-447,570],[-214,128],[-50,-25],[-96,47],[-121,243],[-256,777],[-129,703],[0,627],[-194,496],[-390,363],[-226,350],[-63,334],[-103,230],[-143,124],[-52,243],[41,363],[-90,135],[-330,-142],[-328,394],[-275,133],[-333,4],[-396,353],[-459,703],[-454,305],[-447,-92],[-317,126],[-187,343],[-260,92],[-336,-162],[-170,-194],[-4,-226],[-59,-133],[-111,-40],[-181,111],[-251,262],[-200,-86],[-150,-433],[-127,-167],[-103,101],[-98,-33],[-93,-167],[-85,17],[-78,199],[-271,248],[-464,295],[-321,373],[-178,450],[-144,230],[-109,10],[-43,188],[24,365],[-42,283],[-109,200],[-272,85],[-434,-31],[-236,157],[-38,345],[-217,298],[-396,251],[-262,364],[-127,480],[-223,245],[-319,11],[-169,121],[-17,230],[-138,255],[-258,279],[-190,110],[-121,-58],[-59,118],[5,295],[-105,195],[-217,97],[-153,244],[-87,392],[-68,19],[-110,-61],[-164,-226],[-153,-146],[-109,18],[-72,86],[-37,154],[56,172],[98,147],[10,72],[-49,71],[-119,24],[-111,143],[-35,269],[166,248],[365,227],[72,125],[-5,93],[-109,93],[-101,406],[-52,679],[-149,457],[-246,234],[-168,540],[-89,844],[-194,987],[-298,1129],[-975,1390],[-1650,1651],[-956,835],[-263,20],[-350,-243],[-437,-507],[-574,-991],[-711,-1477],[-623,-638],[-803,300],[-2192,1107],[-976,213],[-490,-313],[-896,187],[-1303,686],[-1287,309],[-1273,-69],[-841,-150],[-410,-232],[-351,35],[-292,301],[-371,224],[-674,221],[-450,379],[-482,129],[-663,5],[-490,220],[-318,435],[-424,317],[-528,200],[-520,-50],[-511,-301],[-495,150],[-478,601],[-236,496],[8,391],[-136,739],[-418,1631],[-263,854]],[[598842,600369],[-642,1847],[-220,785],[-13,338],[-219,765],[-425,1191],[-226,764],[-27,337],[-495,701],[-963,1065],[-536,794],[-110,522],[-182,380],[-474,549]],[[598848,600391],[76,-1703],[282,-1455],[514,-1776],[142,-735],[22,-271],[-95,-374]],[[173404,814142],[86,227],[-22,368],[-259,1090],[-80,481],[-148,244],[-241,166],[-140,242],[-39,317],[-133,330],[-227,343],[-104,339],[18,334],[-37,287],[-91,240],[135,563],[360,887],[631,899],[903,912],[472,631],[41,349],[-9,235],[-56,121],[59,259],[176,396],[513,613],[851,830],[564,459],[276,88],[506,-111],[736,-310],[703,-138],[670,36],[550,268],[429,499],[451,277],[471,53],[426,296],[380,537],[185,495],[-9,453],[195,957],[600,2190]],[[183215,831857],[785,358],[447,-336],[371,-910],[147,-689],[-76,-468],[82,-302],[241,-136],[181,149],[121,433],[382,370],[642,307],[313,234],[-14,161],[-93,130],[-171,99],[-44,292],[81,486],[128,345],[173,206],[12,554],[-147,901],[58,651],[264,402],[85,433],[-95,466],[-28,466],[38,466],[95,430],[153,395],[-67,536],[-286,679],[90,552],[467,425],[626,218],[784,10],[684,239],[584,468],[265,613],[-55,758],[-126,576],[-199,394],[-147,467],[-96,540],[-29,449],[35,359],[206,684],[375,1008],[152,733],[-73,457],[22,388],[117,317],[26,257],[-67,197],[-16,234],[34,273],[-72,237],[-176,200],[-118,312],[-57,424],[9,277],[77,132],[319,81],[561,32],[276,88],[-13,214]],[[190888,853255],[223,612],[-91,320],[-495,348]],[[770885,657703],[-30,-67],[19,-128],[-26,-462],[-157,-1023],[-154,-471],[-148,79],[-134,-238],[-119,-558],[1,-374],[121,-190],[-9,-121],[-140,-52],[-65,-159],[11,-264],[-68,-227],[-218,-284],[-171,-577],[-1,-475],[112,-566],[60,-635],[8,-707],[62,-503],[116,-302],[38,-262],[-40,-224],[-191,-210],[-344,-197],[-273,141],[-205,480],[-227,339],[-249,198],[-239,19],[-228,-161],[-214,-387],[-198,-611],[-110,-527],[-30,-666],[-542,-1733],[-219,-1739],[-77,-2323],[-83,-1252],[-88,-183],[17,-354],[124,-526],[43,-465],[-36,-404],[15,-292],[68,-179],[54,-693],[40,-1207],[-69,-703],[-177,-199],[-184,12],[-191,223],[-279,90],[-367,-41],[-271,-293],[-173,-545],[-126,-670],[-79,-796],[-82,-435],[-127,-113],[-266,-552],[-312,-346],[-448,-324],[-223,-504],[2,-686],[-74,-577],[-149,-468],[59,-898],[266,-1327],[140,-1019],[13,-710],[122,-672],[348,-948],[164,-387],[81,-795],[51,-1333],[-31,-1228],[-114,-1124],[11,-838],[136,-550],[-24,-480],[-186,-409],[-104,-360],[-23,-311],[210,-645],[445,-978],[268,-781],[94,-584],[52,-746],[8,-592]],[[765152,611339],[3,-316],[46,-349]],[[765201,610674],[35,-269],[149,-331],[62,-333],[-25,-338],[78,-288],[179,-240],[28,-292],[-122,-344],[-21,-456],[80,-570],[-19,-425],[-119,-281],[-24,-363],[72,-446]],[[765554,605698],[-157,-379],[-172,-140]],[[765225,605179],[-214,-174],[-204,-375],[-25,-437],[-238,-749],[-677,-1593],[-112,-242],[-164,-160]],[[197700,887378],[818,0]],[[198518,887378],[1,0]],[[199499,888108],[252,176]],[[200058,888313],[360,203],[208,285],[175,436],[297,451],[420,465],[221,449],[23,431],[-31,376],[-86,321],[127,400],[341,478],[377,181],[415,-116],[422,-348],[427,-580],[518,-306],[606,-32],[325,-88],[43,-143],[596,-243],[1726,-514],[751,-33],[993,241],[1486,503],[1122,508],[757,511],[442,446],[127,381],[200,275],[273,169],[691,96],[1110,25],[653,149],[195,273],[31,279],[-132,286],[210,365],[828,669]],[[225954,895445],[157,-254],[164,15],[222,199],[292,53],[363,-93],[222,73],[82,240],[154,194],[225,149],[336,-69],[446,-287],[467,-93],[729,151]],[[230568,896773],[948,-355],[498,10],[363,256],[424,412],[483,567],[338,512],[193,458],[76,356],[5,531]],[[466421,568396],[229,-364],[209,-40],[267,161],[165,412],[64,662],[67,365],[102,99],[195,16],[52,305],[-25,598],[86,638],[199,679],[181,375],[164,71],[226,318],[291,565],[195,506],[100,448],[92,152],[84,-145],[176,-8],[267,128],[349,821],[428,1513],[314,801],[30,76],[156,146],[102,95],[12,41],[77,261],[-81,363],[68,609],[219,855],[79,569],[-61,281],[21,242],[103,204],[-20,224],[-142,243],[-55,266],[32,287],[-27,153],[-87,18],[-80,356],[-74,696],[-142,434],[-209,174],[-289,85],[-369,-3],[-173,250],[23,502],[65,264],[97,62],[9,97],[-53,288],[-221,812],[-95,561],[-16,96],[-54,157]],[[584821,551712],[236,1557],[71,1073],[-15,1108],[78,686],[172,264],[148,477],[123,690],[33,679],[-59,668],[200,900],[689,1700]],[[588932,527164],[-72,167],[-774,1788],[-343,927],[-122,551],[-74,777],[-27,1004],[50,651],[125,297],[180,947],[234,1598],[141,1258],[48,919],[4,793],[-41,668],[-85,586],[-197,759],[-589,2521],[-365,1329],[-503,1467]],[[586522,546171],[-629,905],[-422,1003],[-425,1404],[-195,772],[37,141],[-32,219],[-100,298],[-12,362],[76,426],[-76,678],[-229,930],[-166,514],[-102,99],[-17,508],[68,919],[-24,604],[-118,291],[-35,332],[47,374],[-33,298],[-114,222],[-82,451],[-50,680],[90,649],[233,619],[92,528],[-46,437],[102,498],[250,557],[441,246],[632,-64],[430,-154],[344,-363]],[[554813,550356],[-294,134],[-98,238],[0,387],[-188,349],[-376,312],[-161,638],[52,962],[-179,1174],[-614,2077],[124,339],[-43,120],[-80,230],[-495,713]],[[818993,509144],[94,-628],[-53,-249],[-168,-77],[-155,-286],[-215,-744],[1,-270],[-61,-142],[-125,-102],[-196,15],[-269,133],[-210,41],[-149,-50],[-103,-134],[-54,-217],[-57,-72],[-75,-315],[81,-263],[153,-242],[-76,-383],[-304,-524],[-168,-526],[-31,-530],[202,-743],[435,-956],[363,-428],[293,99],[148,188],[3,279],[143,136],[283,-6],[231,-254],[177,-503],[98,-458],[20,-412],[-71,-297],[-161,-182],[-29,-294],[105,-407],[-27,-407],[-161,-404],[1,-291],[163,-177],[58,-445],[-69,-1066],[-180,-1211],[-14,-428],[91,-50],[80,-233],[68,-418],[-4,-443],[-77,-469],[12,-623],[102,-777],[-67,-898],[-238,-1021],[-77,-740],[83,-460],[14,-384],[-56,-306],[-140,-322],[-224,-336],[-143,-478],[-138,-938]],[[917970,336479],[-358,511]],[[917612,336990],[-531,34],[-825,-273],[-488,-45]],[[915768,336706],[-227,275],[-231,-82]],[[915310,336899],[-125,-171],[-94,-286],[-272,-391],[-448,-495]],[[914371,335556],[-257,-404],[-65,-312]],[[914049,334840],[-180,-345],[-294,-378],[-253,-816],[-211,-1254],[-220,-754],[-230,-255],[-358,-692],[-487,-1131],[-766,-787],[-1566,-662]],[[533122,561897],[-391,35],[-581,-516],[-904,-1058],[-586,-1001],[-268,-946],[-232,-623],[-195,-299],[-422,-220],[-651,-142],[-509,-552],[-367,-963],[-304,-590],[-360,-326],[-880,-896],[-375,-483],[-161,-371],[-545,-494],[-928,-617],[-1027,67],[-1690,1126],[-1131,170],[-737,-302],[-1056,-1032]],[[742755,811725],[-599,515],[-193,750],[14,1157],[-116,720],[-244,284],[-147,268],[-50,251],[-122,145],[-192,38],[-307,280],[-420,519],[-293,220],[-166,-79],[-105,-195],[-43,-308],[-197,33],[-351,376],[-283,79],[-214,-218],[-242,-35],[-268,148],[-429,9],[-590,-130],[-453,-263],[-478,-592]],[[575740,766667],[1395,1329],[448,730],[13,627],[-36,460],[-125,438]],[[359766,429886],[255,1351]],[[360021,431237],[268,752],[367,604],[162,441],[-41,278],[18,341],[150,685],[65,165],[103,41],[142,-80],[95,221],[46,522],[-19,429],[-84,336],[11,726],[106,1116],[9,625],[-87,133],[-34,358],[19,583],[-38,627],[-95,669],[-13,1332],[67,1995],[-26,1442],[-118,890],[-117,471],[-116,52],[-102,172],[-87,292],[-45,321],[-3,524]],[[749275,649602],[-71,-1153],[-16,-1021],[101,-613],[342,-818],[351,-587],[224,-281]],[[750206,645129],[535,-674]],[[749275,649602],[193,-937],[317,-530],[536,-656],[273,-603],[11,-550],[72,-244],[132,63],[178,-217],[335,-743],[237,-271]],[[764989,671308],[132,-705],[-207,-460],[-502,-451],[-200,-185],[-36,-88],[14,-29],[37,-16],[42,-60],[4,-127],[-152,-171],[-310,-172],[-262,-253],[-215,-335],[-209,-435],[-204,-537],[-59,-260],[-92,-260],[-85,-267],[-22,-345],[-115,-344],[-206,-344],[-301,-368],[-395,-393],[-204,-107],[-268,0],[-754,-799],[-967,39],[-439,-125],[-234,-276],[-424,-208],[-615,-139],[-364,-192],[-114,-245],[-198,-99],[-282,46],[-360,-203],[-438,-452],[-233,-340],[-26,-227],[-266,-307],[-895,-630],[-269,-95],[-307,17],[-516,192],[-273,127],[-278,-78],[-375,-240],[-437,25],[-500,291],[-622,-177],[-744,-645],[-550,-969],[-102,-372],[-254,-922],[-175,-1136],[7,-979],[-59,-922],[-164,-840],[-24,-461],[20,-316],[304,-1452],[58,-1405],[-30,-480]],[[322832,522629],[214,914],[12,436],[-117,264],[-55,258],[10,379],[-60,1401],[99,786],[237,637],[326,72],[413,-495],[286,-112],[160,270],[119,-148],[77,-566],[138,-478],[199,-390],[486,-521],[773,-652],[564,-307],[354,36],[252,168],[152,299],[176,139],[199,-22],[205,129],[211,280],[293,102],[375,-75],[237,22],[149,178],[259,28],[150,135],[128,251],[438,163],[749,76],[444,-62],[139,-201],[130,-609],[122,-1017],[-141,-1174],[-405,-1332],[-220,-1070],[-35,-808],[-161,-707],[-286,-606],[-156,-404],[-25,-203],[44,-287],[114,-374],[-121,-608],[-355,-842],[-285,-1479],[-216,-2115],[-349,-1765],[-483,-1415],[-338,-1924],[-193,-2431],[-63,-1524],[100,-927],[-157,-1275],[-28,-972],[47,-1094],[-5,-758],[-50,-707]],[[582516,773299],[-130,277],[-20,42],[-234,337],[-456,288],[-500,-99],[-545,-486],[-370,-181],[-25,16],[-169,109],[-118,-8],[-42,-139],[9,-115],[50,-74],[9,-14],[-8,-65],[-77,-40]],[[579890,773147],[57,-95],[283,-225]],[[580230,772827],[2,-1]],[[580232,772826],[532,-472],[199,-94],[77,30],[83,-53],[200,-433],[200,-217],[199,1],[207,-122],[118,-77]],[[580229,772826],[3,0]],[[580232,772826],[2200,-166]],[[220829,700278],[167,308],[340,221],[568,237],[325,336],[82,434],[11,490],[-63,546],[265,561],[591,575],[513,293],[435,12],[249,-166],[63,-343],[113,-178],[162,-10],[124,-166],[86,-323],[79,-128],[72,67],[64,-108],[56,-281],[196,-358],[507,-652],[-35,-319],[53,-253],[130,-292],[108,-14],[85,263],[162,9],[237,-247],[76,-234],[-87,-222],[7,-209],[99,-196],[163,-51],[228,94],[159,-104],[90,-303],[-21,-192],[-50,-76],[22,-117],[85,-92],[507,-326],[341,-443],[175,-560],[198,-373],[221,-187],[38,-156],[-147,-123],[-55,-197],[38,-270],[138,-268],[239,-265],[134,-64],[67,64],[27,-30],[7,-60],[-13,-370],[136,-513],[285,-654],[144,-495],[5,-334],[188,-528],[371,-722],[247,-709],[186,-1043],[694,-2680],[395,-1067],[329,-347],[207,-391],[86,-436],[128,-208],[169,20],[139,-102],[107,-224],[-17,-392],[-140,-559],[-11,-425],[120,-292],[88,-657],[57,-1021],[76,-548],[142,-110],[205,-91],[409,-181],[284,-250],[158,-316],[76,-514],[-4,-712],[-45,-545],[-83,-380],[137,-396],[359,-414],[175,-338],[-28,-287]],[[557649,504142],[-394,-75],[-302,86],[-342,221],[-230,52],[-120,-119],[-93,157],[-68,433],[-111,142],[-155,-150],[-202,50],[-252,248],[-202,-1],[-154,-252],[-266,-14],[-377,224],[-463,-9],[-546,-243],[-321,-263],[-95,-284],[-115,-65],[-199,231]],[[851915,933077],[-91,758],[47,368],[154,231],[708,-52],[1893,-503],[168,-100]],[[537567,551772],[414,456],[121,400],[-34,497],[88,382],[316,399],[305,602],[104,426],[6,449],[-62,382],[-131,315],[-10,538],[111,763],[-116,630],[-343,499],[-333,810],[-323,1121],[-249,414],[-177,-295],[-257,-226],[-338,-160],[-315,141],[-363,550],[-73,111],[-295,238],[-288,-140],[-379,-441],[-347,181],[-317,802],[-409,371],[-751,-90]],[[302109,276673],[315,464],[0,526],[-315,1116],[-177,354],[-68,435],[-19,634],[-182,538],[-346,441],[-262,515],[-178,590],[-194,391],[-210,193],[-246,41],[-283,-109],[-195,79],[-161,399],[-299,344],[-276,148],[-353,65],[-260,157],[-167,248],[-153,492],[-138,737],[-185,449],[-230,159],[-140,371],[-49,584],[-113,531],[-175,479],[-138,252],[-9,7]],[[287408,513666],[-8,-1127],[78,-485],[239,-327],[441,-131],[328,48],[361,186],[265,-137],[169,-460],[470,-441],[769,-423],[446,-566],[121,-709],[193,-394],[264,-78],[156,-332],[47,-589],[218,-471],[388,-355],[207,-480],[27,-606],[86,-395],[145,-185],[163,-42],[180,99],[160,-9],[142,-118],[131,-214],[121,-310],[268,-365],[415,-419],[366,-235],[317,-50],[217,-138],[176,-337],[313,-310],[218,-74],[228,59],[190,-106],[152,-272],[220,-20],[289,231],[223,4],[156,-222],[172,-48],[188,125],[222,-123],[258,-371],[228,4],[198,379],[166,82],[135,-215],[175,24],[213,260],[195,-177],[176,-615],[238,-403],[298,-191],[222,-293],[146,-396],[203,-194],[261,10],[111,-190],[-36,-390],[18,-254],[75,-120],[128,-25],[272,106],[421,187],[271,-200],[261,-526],[252,-330],[243,-136],[221,-249],[200,-362],[230,-256],[261,-150],[248,-18],[234,114],[277,-128],[320,-368],[206,-157],[93,55],[160,502],[229,948],[256,356],[281,-236],[276,-8],[213,175],[173,-26]],[[788474,675239],[254,-244],[420,-36],[672,90],[435,253],[199,416],[157,179]],[[790611,675897],[84,94],[284,131],[224,-11],[164,-153],[131,20],[127,-16],[73,-75],[86,-189],[136,-126],[101,46],[69,218],[155,103],[244,-12],[152,122],[61,254],[141,171],[220,87],[123,135],[81,43],[120,-94],[149,-49],[189,120],[121,-70],[52,-262],[70,-137],[90,-10],[57,90],[24,190],[-41,180],[-105,168],[-10,217],[86,266],[224,196],[361,128],[196,269],[30,410],[266,470],[504,528],[233,371],[-37,214],[50,319],[136,426],[127,136],[117,-153],[171,-46],[224,61],[257,365],[289,670],[237,140],[184,-387],[243,-135],[299,116],[205,311],[109,505],[200,202],[289,-102],[577,1005],[1295,3169],[231,664],[75,376],[-3,308],[72,270],[147,231],[724,261],[1954,434],[237,145],[146,-19],[134,-135],[265,46],[395,225],[279,42],[162,-144],[278,-31],[394,81],[525,-153],[984,-579],[398,-410],[206,-103],[146,70],[170,-107],[193,-284],[223,-634],[251,-985],[184,-525],[115,-65],[38,-133],[-39,-199],[17,-191],[70,-184],[92,0],[115,140],[343,464],[229,217],[117,-31],[140,-202],[161,-374],[249,-181],[335,11],[189,-101],[44,-212],[-29,-301],[-104,-388],[103,-339],[307,-292],[120,-540],[-68,-790],[79,-324],[229,142],[143,177],[72,-49],[67,-109],[30,-78],[68,0],[9,74],[69,136],[138,67],[90,-82],[-18,-78],[34,-110],[103,-57],[103,-39],[183,135],[158,-118],[37,-293],[-42,-131],[-64,-407],[20,-412],[74,-132],[105,-14],[78,-64],[40,-80],[60,-70],[123,-75],[86,38]],[[552461,558029],[-122,-121],[-228,166],[-376,414],[-414,754],[-669,1620]],[[550652,560862],[-10,23],[-1223,2381],[-466,1127],[-116,667],[-169,610],[-413,988],[-156,317],[-188,224],[-217,131],[-182,271],[-148,411],[-131,231],[-113,52],[-243,-148],[-372,-347],[-364,-51],[-355,245],[-398,447],[-443,650],[-455,384],[-466,119],[-383,241],[-301,364],[-227,365],[-153,367],[-91,507],[-27,646],[-103,769],[-178,894],[-59,843],[58,794],[-108,726],[-275,658],[-302,463]],[[541875,577231],[-177,-127],[-171,-123],[-296,181],[-421,417],[-145,213],[-156,230],[-179,469],[-288,271],[-396,73],[-209,162],[-59,516]],[[541875,577231],[-224,182],[-105,86],[-211,821],[-94,1376],[-238,907],[-383,439],[-218,534],[-80,943]],[[264206,687370],[-20,-312],[-188,-557],[-332,-1785],[-102,-601],[10,-531],[195,-503],[75,-507],[-46,-513],[24,-298],[152,-157]],[[263702,692775],[34,-369],[-105,-1637],[70,-1053]],[[263701,689716],[281,-1152]],[[266456,707738],[-81,-449],[-134,-289],[-213,-278],[-172,-87],[-131,104],[-254,-423],[-376,-951],[-455,-848],[-532,-745],[-322,-589],[-112,-431],[-32,-419],[46,-406],[-67,-451],[-181,-496],[-64,-510],[78,-785]],[[263454,699685],[393,-1644],[114,-691],[-33,-286],[48,-243],[131,-200],[-23,-233],[-176,-264],[-116,-322],[-83,-569]],[[267371,710981],[153,-91],[85,-244],[68,-427],[-100,-490],[-402,-828]],[[269109,713112],[-2,-447]],[[269107,712665],[-136,-400],[-407,-752],[-108,-575]],[[700385,690104],[1,-395],[-100,-406],[-302,-820],[-620,-1742],[-257,-185],[-283,-440],[-395,-758],[-329,-1029],[-264,-1301],[-134,-927],[-3,-553],[-115,-509],[-227,-464],[-88,-390],[53,-315],[-3,-352],[-58,-389]],[[697261,679129],[-74,-304],[-90,-219],[-121,-102],[-151,17],[-166,-269],[-183,-553],[-133,-277],[-200,-85]],[[715098,696663],[-838,969],[-539,805],[-479,460],[-598,383],[-319,626],[-39,868],[-188,630],[-48,161],[-435,713],[-448,474],[-462,235],[-263,47],[-63,-143],[26,-246],[115,-348],[39,-264],[-38,-179],[-309,-114],[-580,-48],[-443,175],[-307,397],[-211,34],[-115,-331],[-226,-119],[-335,91],[-194,-371],[-53,-831],[-574,-1144],[-142,-188],[-954,-1268],[-957,-1011],[-821,-567],[-592,-765],[-544,-1442],[-458,-850],[-336,-348],[-366,-130],[-387,-329],[-409,-526],[-281,-446],[-153,-365],[-89,-396],[-23,-426],[-79,-268],[-199,-164]],[[246449,594562],[40,827],[-107,468],[18,199],[109,85],[583,138],[460,-121],[568,-306],[338,-63],[174,358],[27,178],[-143,183],[-312,187],[-83,288],[147,389],[33,384],[-79,380],[-128,226],[-175,72],[-114,142],[-52,212],[54,501],[160,789],[263,405],[364,21],[164,282],[-1,20],[-35,523],[27,585],[60,342],[32,189],[0,235]],[[302166,248233],[356,-157],[218,274],[299,979]],[[303058,249349],[244,1754],[186,672],[208,174],[120,291],[32,408],[99,405],[169,401],[158,278],[149,153],[454,47],[761,-61],[517,-91],[273,-122],[493,-929],[713,-1735],[328,-1124],[-59,-511],[5,-332],[100,-228],[392,-571],[209,-504],[158,-629],[218,-256],[278,116],[329,-49],[379,-215],[856,110],[2068,650],[138,-1],[123,-164],[108,-325],[181,-205],[254,-87],[527,50],[988,223],[82,31],[97,161],[3,133],[-21,233],[58,169],[244,344],[219,247],[472,331],[348,365],[222,399],[302,228],[382,55],[291,130],[200,203],[375,8],[808,-273]],[[749045,804296],[-705,553],[-580,143],[-689,-83],[-517,279],[-343,642],[-345,397],[-346,152],[-466,427],[-584,702],[-414,608],[-244,516],[-104,380],[57,366]],[[320495,818399],[-168,1386]],[[320339,821303],[281,635],[356,253],[522,82],[539,-49],[554,-180],[637,-486],[722,-792],[955,-482],[1189,-172],[706,-210],[222,-248],[160,-360],[98,-471],[397,-307],[697,-143],[376,113],[54,368],[147,165],[360,-56],[1298,1250],[713,418],[460,-109],[614,162]],[[258766,585123],[250,240],[319,307],[408,576],[226,150],[179,-83],[181,-294],[180,-502],[191,-156],[202,191],[197,69],[194,-51],[217,501],[241,1054],[116,691],[-3,122],[-7,208],[137,299],[284,270],[285,476],[287,681],[249,400],[155,88],[56,32],[80,186],[-50,252],[12,250],[5,108],[83,464],[103,226],[20,43],[161,73],[63,146],[-34,219],[31,237],[1,4],[11,30],[44,120],[90,246],[92,89],[254,249],[198,-114],[165,-455],[233,-309],[301,-164],[234,61],[83,142],[83,142],[150,86],[104,-88],[28,-24],[71,64],[0,1],[7,237],[69,55],[130,-129],[110,-31],[6,-2],[20,13],[81,50],[39,116],[20,120],[76,89],[259,-88],[291,138],[1,0],[5,5],[318,360],[165,124],[50,38],[106,-43],[127,184],[58,163],[90,248],[337,183],[331,-41],[375,-46]],[[319527,276471],[1039,-222],[572,-215],[451,-282],[664,-669],[874,-1054],[605,-584],[334,-113],[338,-267],[343,-419],[479,-285],[616,-149],[500,-496],[578,-1262],[81,-178],[39,-93]],[[304716,297249],[220,-1788],[159,-775],[259,-540],[575,-278],[286,-613],[189,-1040],[65,-709],[-57,-378],[-5,-489],[48,-602],[-50,-519],[-149,-437],[-103,-647],[-58,-859],[25,-561],[108,-263],[163,-248],[217,-233],[439,-165],[660,-98],[414,-294],[169,-488],[403,-359],[638,-229],[387,-256],[136,-286],[500,-261],[861,-237],[498,-358],[134,-479],[-43,-478],[-222,-478],[-100,-397],[22,-317],[94,-198],[167,-80],[208,-315],[251,-549],[387,-217],[524,116],[337,-217],[148,-551],[288,-434],[640,-475],[304,-280],[139,-274],[76,-361],[156,-229],[236,-96],[1018,-84],[488,-124],[375,-223],[276,-50],[176,124],[224,-30],[271,-185],[407,-41],[812,154]],[[181331,699213],[-8,-36]],[[181323,699177],[-179,-908]],[[181144,698269],[-142,-357],[-161,-86],[-172,-414],[-182,-741],[-190,-481],[-198,-220],[-95,-305],[7,-388],[25,-88],[39,9],[56,-52],[75,-285],[92,-139],[160,9],[71,-119],[79,-167],[132,-100]],[[182879,708249],[-461,-658],[-247,-537],[-252,-870],[39,-705],[-12,-584],[-62,-463],[-95,-425],[-130,-389],[-135,-232],[-140,-75],[-49,-514],[42,-952],[156,-580],[271,-206],[166,-314],[60,-422],[-23,-415],[-108,-410]],[[181899,699498],[-183,-225]],[[181716,699273],[-385,-60]],[[181692,714747],[-55,-2100]],[[181637,712647],[-1,-533]],[[181636,712114],[149,-667],[443,-1210]],[[182228,710237],[53,-290]],[[181274,718652],[25,-177],[126,-392],[9,-613],[18,-495],[75,-274],[14,-313]],[[186454,720229],[-916,-923],[-248,-452],[-81,-314],[4,-941],[-90,-422],[-184,-9],[-437,230],[-157,174]],[[190351,724081],[-326,-488],[-255,-602],[-293,-878],[-177,-657],[-60,-436],[24,-557],[109,-676],[-24,-471],[-157,-267],[-289,-47],[-423,172],[-303,293],[-183,412],[-151,147],[-120,-117],[-110,15],[-100,147],[-11,204],[79,261],[9,199],[-60,135],[-121,70],[-181,5],[-264,-177],[-524,-539]],[[205940,743186],[-344,-221],[-390,-205],[-441,-10],[-324,-171],[-225,-257],[-313,-567],[-121,-169],[-105,-24],[-139,179],[-186,25],[-232,-130],[-257,-440],[-284,-749],[-168,-340],[-287,-245],[-849,-138],[-536,1],[-313,-132],[-271,-267],[-450,-600],[-378,-565],[-200,-805],[-332,-466],[-345,-57],[-675,556],[-183,98],[-237,-12],[-274,-339],[-402,-639],[-192,-578],[-116,-729],[-157,-459],[-198,-189],[-179,-301],[-160,-414],[-110,-162],[-51,45],[-57,-90],[-38,-359],[-61,-193],[-83,-24],[-63,-203],[-44,-382],[-127,-416],[-314,-675],[-648,-1202],[-327,-395],[-331,18]],[[205984,744601],[81,-1116],[-11,-180]],[[160694,775272],[-146,-16],[-995,201],[-247,14],[-211,274]],[[159095,775745],[-57,449],[-270,1350],[-274,808],[-278,267],[-219,111],[-277,-149]],[[171755,790867],[-177,-868],[-145,-299],[-172,-19],[-60,-212],[52,-405],[-7,-288],[-67,-174],[-161,47],[-255,269],[-389,144],[-523,20],[-358,305],[-194,589],[-489,114],[-784,-362],[-474,-55],[-163,252],[-170,69],[-175,-113],[-62,-217],[51,-320],[-7,-271],[-64,-223],[-210,-461],[-197,-177],[-277,-121],[-205,-409],[-134,-699],[-32,-522],[70,-345],[151,-277],[349,-312],[0,-316],[54,-182],[108,-154],[35,-251],[-38,-348],[54,-779],[145,-1211],[282,-628],[418,-45],[308,83],[196,209],[246,-220],[295,-650],[153,-666],[10,-680],[143,-429],[259,-185],[64,-27],[76,-73],[59,-81]],[[169344,778894],[190,-438],[56,-133],[42,-89],[21,-89],[-18,-97],[-76,-148],[-88,-117],[-165,-219]],[[169306,777564],[-354,-215],[-700,-65],[-1403,-569],[-616,-447],[-543,-219],[-1012,-209],[-915,-300],[-386,28],[-162,256],[-443,146],[-724,37],[-609,-169],[-565,-513],[-179,-52]],[[172480,797422],[516,-62],[125,-328],[-95,-614],[26,-435],[148,-257],[-94,-232]],[[173106,795494],[-33,-82],[-65,-159],[-530,-689],[-314,-546],[-146,-603]],[[172555,801923],[-103,-63],[-21,-165],[27,-287],[-96,-267],[-220,-248],[-126,-280],[-51,-472]],[[178151,803013],[-600,1797],[-396,986],[-392,775],[-498,712],[-605,648],[-470,736],[-335,823],[-363,517],[-391,211],[-281,305],[-257,597]],[[172576,812367],[-1371,1299]],[[170759,813737],[-152,-296],[-39,-316],[18,-434],[-61,-398],[-138,-363],[-57,-319],[25,-276],[202,-624],[380,-972],[288,-608],[195,-244],[143,-400],[90,-556],[27,-420],[-37,-286],[196,-575],[643,-1300]],[[573448,456918],[591,289],[245,177],[95,164],[47,244],[0,324],[124,345],[249,364],[125,291],[1,215],[-124,354],[-250,493],[74,1132],[400,1771],[110,1406],[-180,1041],[-63,896],[53,750],[-28,678],[-109,607],[-69,867],[-31,1125],[13,972],[85,1226]],[[567478,510427],[-317,839],[-481,578],[-752,598],[-760,1295],[-769,1993],[-600,1148],[-647,454],[-494,893],[-446,351],[-562,106],[-626,-5],[-689,-117],[-615,-268],[-542,-421],[-1001,-275],[-1461,-132],[-1434,-638],[-2108,-1719],[-1191,-2071],[-522,-1011],[-251,-641],[-258,-1488],[-399,-3500],[-41,-217]],[[550512,506179],[-211,-1106],[-580,-1576],[-408,-935]],[[549313,502562],[-222,-509],[-145,-331],[-216,-496],[-255,-461],[-150,-271],[-329,-595],[-414,-335],[-61,-49],[-370,-446],[-263,-508],[-12,-40],[-74,-235]],[[546802,498286],[-191,-614],[-438,-1907],[-227,-834],[-298,-713],[-443,-871],[-163,-412],[-66,-598],[29,-1097],[2,-171],[8,-651],[33,-2521],[-75,-970]],[[544973,486927],[-93,-1218],[-19,-247],[-9,-129],[-436,-1785],[-326,-994],[-328,-303],[-79,-49],[-350,-219],[-206,-337],[-125,-495],[-3,-6],[-237,-427],[-123,-128],[-231,-242],[-237,-483],[-172,-348],[-38,-76],[-539,-1445],[-369,-829],[-198,-212],[-206,-20],[-212,173],[-177,25],[-210,-184],[-2,-2],[-510,-174],[-280,-192],[-220,-270],[-137,-362],[-54,-457],[-131,-446],[-209,-435],[-86,-134],[-63,-11],[-90,143],[-69,0],[-47,-143],[-119,-42],[-191,61],[-138,-96],[-85,-252],[19,-327],[125,-400],[-12,-186],[-70,-108],[-34,-265],[29,-466],[-143,-523],[-315,-579],[-253,-226],[-14,-13],[-20,9],[-308,142],[-287,-45]],[[100949,875035],[-47,495],[-104,284],[-176,238],[-363,169],[-824,146],[-708,-213],[-764,-560],[-1057,-979],[-616,-688],[-176,-397],[-55,-365],[97,-498],[605,-926],[639,-629],[874,-641],[463,-499],[76,-536],[-164,-434],[-261,-269],[-413,-247],[-275,-334],[-137,-420],[12,-513],[161,-605],[276,-576],[392,-546],[113,-152],[31,-105],[-26,-162],[-233,-438],[-61,-140],[-148,-125]],[[191077,887499],[-386,-182],[-291,62],[-324,244],[-394,142],[-699,60]],[[188006,889731],[-71,-363]],[[182852,893739],[0,3]],[[182852,893742],[15,266],[-175,263],[-360,347],[-193,452],[-26,556],[100,459],[227,361],[-145,805],[-516,1251],[-532,837],[-548,424],[-881,414],[-1820,609],[-655,-124],[-303,130],[-168,342],[92,489],[352,635],[90,450],[-172,265],[338,139],[850,12],[465,58],[81,102],[-64,132],[-210,161],[-119,223],[-29,284],[81,305],[191,324],[89,243],[-14,159],[126,304],[265,449],[340,336],[561,424]],[[544847,431019],[129,121],[118,-153],[150,-388],[110,-567],[103,-1118],[185,-2518],[-48,-1624],[-219,-1571],[-131,-1294],[-45,-1017],[62,-742],[167,-468],[254,-405],[340,-344],[217,-717],[92,-1090],[196,-953],[302,-818],[236,-531],[171,-246],[318,-224],[467,-201],[253,-278],[40,-353],[191,-586],[344,-821],[216,-981],[90,-1141],[197,-1218],[304,-1295],[608,-1864],[1369,-3649],[317,-691],[44,-96],[184,-229],[116,-144],[359,-220],[337,-83],[313,54],[522,-101],[383,-134],[345,-121],[757,-75],[304,41],[481,64],[552,-141],[192,-232],[126,-153],[326,-260],[335,-137],[452,81],[56,29],[514,268],[485,-42],[380,-365],[218,-210]],[[348308,417248],[699,517],[295,355],[123,366],[196,99],[269,-165],[202,-25],[203,173],[651,1001],[409,1451],[384,2236],[292,1368],[200,503],[101,401],[2,303],[221,1112],[439,1922],[126,1248],[-189,578],[-70,386],[48,196],[-144,557],[-334,918],[-246,556],[-157,192],[-165,434],[-172,676],[-188,479],[-204,283],[-130,427],[-55,570],[87,666],[343,1142]],[[777972,700875],[264,-650],[209,-335],[363,-354],[382,-898],[298,-479],[341,-358],[172,-347],[5,-336],[111,-260],[218,-182],[136,-491],[81,-1202],[598,-1018],[578,-218],[756,242],[514,-101],[272,-445],[171,-602],[70,-759],[-26,-506],[-123,-255],[-19,-229],[83,-205],[-67,-344],[-216,-483],[-123,-419],[-33,-709],[19,-356],[127,-466],[235,-577],[127,-548],[19,-519],[103,-717],[186,-918],[71,-687],[-45,-458],[18,-385],[80,-314],[-3,-824],[-86,-1335],[67,-1032],[219,-730],[312,-223],[607,423],[400,-215],[162,-199],[59,-253],[104,3],[151,261],[134,41],[119,-178],[108,1],[97,179],[152,4],[207,-172],[146,7],[87,185],[138,108],[191,31],[218,-145],[246,-322],[138,-6],[31,311],[-45,192],[-120,72],[-75,155],[-27,238],[98,325],[131,239],[97,177],[118,70]],[[866232,418894],[-262,219],[-122,399],[-69,653],[-320,862],[-856,1606],[-158,541],[-40,322],[25,283],[-59,178],[-141,75],[-239,-109],[-336,-292],[-246,-55],[-157,181],[-138,378],[-120,577],[-114,294],[-109,13],[-144,306],[-178,599],[-202,354],[-227,109],[-62,217],[54,285],[1,135],[-90,123],[-91,41]],[[545647,861336],[1,0]],[[545648,861336],[181,44]],[[548381,863427],[93,658]],[[541591,864718],[206,-103],[29,-177],[-80,-285],[45,-244],[172,-204],[275,-98],[380,7],[375,-213],[371,-433],[396,-185],[419,63],[282,-127],[144,-316],[42,-335],[-60,-354],[167,-277],[588,-303]],[[538105,868768],[17,-470],[45,-202],[78,-90],[501,-99],[237,-179],[165,-321],[381,-395],[893,-702]],[[533597,873123],[324,42],[63,-64],[156,-159],[333,-711],[2226,-1984]],[[586564,684005],[-236,1025],[81,557],[286,524],[109,683],[-66,842],[-5,608],[57,375],[182,511],[305,650],[249,342],[192,36],[257,506],[414,1301]],[[547795,789855],[271,-365],[491,-661],[40,-42],[389,-417],[352,-235],[1066,-40],[1551,136],[138,12],[114,124],[571,58],[197,-75],[90,-161],[55,-284],[1,-131],[-140,-928],[-37,-420]],[[552944,786426],[-84,-403],[-197,-284],[-144,-619],[-65,-643],[124,-402],[20,-296]],[[552598,783779],[12,-197],[-9,-680],[23,-479],[106,-375],[-48,-326],[-199,-276],[-57,-310],[86,-343],[40,-620],[-7,-897],[-159,-710],[-310,-522],[-57,-286],[90,-471],[96,-255],[125,-329]],[[552330,776703],[154,-406],[24,-108],[123,-550],[-29,-115],[-53,-210],[100,-253]],[[552649,775061],[118,-77],[163,-105],[26,-72],[-86,-76],[-13,-38],[-59,-177],[-8,-392],[246,-370],[139,-97],[360,-251],[561,-205],[622,-61],[360,50],[97,161],[122,-56],[145,-274],[237,-158],[329,-42],[251,-172],[80,-143]],[[556339,772506],[91,-160],[67,-356],[-38,-410],[76,-344],[189,-278],[221,-125],[252,27],[124,-111],[-5,-249],[89,-268],[181,-286],[504,91],[1243,702],[195,-93],[258,-124],[205,-205],[109,-265],[289,-176],[470,-86],[326,-274],[102,-256],[82,-204],[300,111],[6,10],[206,338],[204,334],[251,110],[157,68],[401,-327],[219,-268],[37,-211],[-2,-2],[-91,-83],[-224,40],[-184,-130],[-143,-300],[-9,-125],[-13,-195],[101,-339],[142,-235],[183,-129],[99,-177],[12,-226],[243,-313],[473,-402],[230,-291],[-11,-182],[-108,-179],[-59,-50],[-147,-126],[-120,-232],[-33,-289],[32,-204],[142,-177],[582,159],[267,74],[861,-120],[1156,-396],[767,-137],[566,183],[1412,-446],[430,-135],[183,-58],[938,-92],[525,242],[368,326],[319,613],[387,398],[215,222],[182,188],[760,453],[995,368],[665,125],[374,-142],[125,-33]],[[575740,766667],[199,-26],[206,26],[505,245],[739,493],[450,473],[160,453],[10,336],[-142,220],[-54,264],[33,311],[-91,314],[-236,325],[-84,150]],[[577435,770251],[-74,143],[-56,161],[2,204],[89,205],[88,608],[88,1011],[108,768],[128,526],[188,334],[371,214],[293,-610],[31,-28],[321,-281],[19,-16],[34,-14],[780,-311],[45,-18]],[[909484,327766],[-425,14],[-168,90],[-53,170],[-372,304],[-691,436],[-399,151],[-110,-136],[-433,-71],[-757,-5],[-402,-119],[-47,-233],[-325,-474],[-603,-714],[-353,-542],[-101,-370],[-170,-185],[-359,0],[-184,-321],[-147,-101],[-171,12],[-133,-186],[-95,-385],[-188,-300],[-281,-214],[-259,-417],[-235,-620],[-296,-370],[-355,-118],[-232,-261],[-109,-402],[-281,-412],[-454,-419],[-235,-456],[-14,-490],[-315,-410],[-614,-328],[-375,-329],[-133,-330],[-127,-121],[-120,87],[-105,-200],[-90,-486],[-119,-268],[-148,-49],[-131,-201],[-115,-355],[-145,-244],[-176,-134],[-98,-313],[-17,-492],[-57,-297],[-145,-154],[-1078,-1283],[-374,-1017],[-43,-1768],[23,-869],[-60,-572],[-136,-564],[116,-565],[369,-567],[192,-386],[14,-205],[-111,-456],[-238,-708],[-380,-541],[-522,-374],[-341,-474],[-161,-574],[-72,-441],[24,-463]],[[589104,842140],[-43,-182],[96,-94],[222,-67],[181,-172],[211,-417],[-125,-832],[-110,-340],[-138,-124],[-135,-310],[-133,-495],[-40,-470],[53,-444],[-66,-273],[-185,-102],[-75,-195],[33,-288],[-308,-153],[-650,-20],[-450,-157],[-249,-295],[-28,-592],[193,-890],[-94,-492],[-380,-94],[-297,-228],[-321,-539],[-461,-174],[-686,-259],[-651,-395],[-540,-500],[-131,-294],[-54,-238],[-167,-68],[-451,122],[-306,7],[-162,-108],[-86,-150],[-10,-191],[-98,-77],[-186,38],[-181,-91],[-176,-222],[-108,9],[-40,240],[-90,121],[-142,4],[-108,134],[-76,262],[-240,342],[-402,423],[-157,301],[-21,170],[-207,271],[-542,407],[-610,251],[-678,93],[-480,227],[-281,362],[-160,346],[-39,330],[-93,124],[-71,14],[-253,-63],[-444,-64],[-403,34],[-215,116],[-91,50],[-928,396],[-571,51],[-524,-161],[-366,113],[-208,389],[-138,438],[-67,487],[-128,337],[-187,187],[-119,322],[-51,456],[-282,449],[-513,444],[-281,355],[-46,266],[-145,68],[-241,-131],[-247,15],[-251,162],[-238,14],[-227,-134],[-283,-15],[-338,103],[-450,335],[-561,566],[-509,374],[-457,179],[-335,214],[-213,248],[-145,292],[-94,438]],[[312884,314336],[353,-1614],[93,-768],[-48,-458],[28,-987],[104,-1515],[333,-1697],[563,-1877],[272,-1116],[-16,-355],[-52,-245],[-86,-131],[-37,-296],[12,-459],[58,-571],[103,-682],[167,-692],[231,-702],[162,-752],[92,-801],[-34,-1712],[-161,-2624],[-239,-1700],[-319,-775],[-109,-1098],[99,-1421],[4,-973],[-90,-526],[0,-596],[93,-668],[-5,-416],[-101,-164],[134,-299],[370,-434],[302,-485],[233,-537],[243,-275],[255,-15],[188,-350],[122,-685],[279,-457],[436,-229],[245,-453],[54,-677],[-44,-399],[-142,-121],[-119,-259],[-95,-398],[95,-320],[285,-244],[185,-274],[85,-305],[230,-396],[376,-488],[504,-526],[952,-848]],[[610119,732848],[1043,-401],[16,-249],[120,-218],[229,-270],[79,-262],[-72,-255],[53,-173],[176,-89],[75,-401],[-28,-713],[488,-418],[1503,-186],[519,-255],[564,-79],[781,14],[447,-222],[111,-457],[37,-448],[-37,-441],[116,-238],[269,-35],[318,-235],[367,-432],[242,-546],[14,-78],[84,-470],[35,-196],[44,-244]],[[890785,477109],[133,-352],[32,-304],[-22,-373],[-104,-470],[-278,-849],[-772,-1673],[-266,-810],[-19,-504],[61,-413],[141,-321],[56,-466],[-39,-916],[-87,-214],[5,-377],[66,-609],[67,-327],[68,-43],[22,-267],[-24,-489],[33,-373],[91,-255],[-26,-349],[-143,-445],[-155,-306],[-166,-168],[-143,-284],[-119,-400],[-58,-369],[4,-338],[-84,-284],[-173,-229],[-225,42],[-190,244],[-143,0],[-163,-195],[-92,-391],[-122,-86]],[[887569,462960],[-11,-12],[-34,16]],[[887346,463476],[-67,16],[-24,-39]],[[886850,463351],[-81,40],[-168,-81]],[[762099,679030],[472,764],[320,269],[326,29],[238,189],[148,348],[60,332],[-29,314],[140,229],[307,142],[156,243],[6,343],[119,146],[233,-51],[111,-101],[-11,-154],[60,-136],[133,-119],[98,-532],[62,-946],[-90,-713],[-242,-480],[-297,-418],[-352,-355],[-140,-269],[-194,-373],[-316,-927],[-60,-513],[198,-99],[225,-465],[253,-833],[123,-613],[-7,-395],[-73,-374],[-138,-352],[-42,-343],[54,-334],[182,-174],[310,-17],[253,-252],[130,-323],[164,-409]],[[593709,836028],[228,-278],[24,-146],[-107,-106],[43,-118],[191,-127],[53,-174],[-127,-331],[-215,-516],[-183,-142],[-223,61],[-103,-342],[15,-744],[-56,-503],[-128,-262],[-140,-580],[-230,-1345]],[[584661,778271],[22,-34]],[[563462,796982],[655,1144],[850,552],[608,63],[650,-241],[493,-254],[335,-266],[243,-376],[150,-484],[221,-267],[293,-48],[357,-326],[420,-604],[293,-307],[168,-11],[210,-164],[375,-476],[90,-232],[86,21],[70,15],[55,-120],[56,-132],[142,0],[104,-55],[162,75],[342,-215],[410,-706],[175,-180],[137,5],[129,-63],[186,-246],[178,-33],[132,70],[86,20],[98,-265],[59,-57],[104,56],[106,-147],[235,-105],[402,33],[279,-109],[157,-252],[101,-46],[45,160],[87,65],[82,73],[72,132],[73,65],[106,70],[71,17],[54,85],[87,21],[135,-144],[314,12],[765,238],[447,-100],[130,-438],[261,-264],[189,-44],[202,-47],[293,-196],[196,-302],[203,-187],[44,-16],[164,-57],[116,-150],[14,-137],[9,-92],[175,-101],[20,-12],[368,3],[155,-150],[-33,-181],[-23,-124],[38,-101],[131,105],[98,-90],[53,-226],[58,-108],[91,32],[121,49],[98,-209],[-8,-241],[91,-113],[136,49],[312,-181],[467,-524],[212,-604],[-44,-683],[65,-576],[172,-468],[66,-319],[-39,-170],[38,-171],[47,-138],[-10,-165],[-35,-179],[139,-446],[-25,-318],[-36,-164],[14,-104],[98,0],[120,44],[138,17],[135,-178],[127,-292],[3,-219],[-121,-146],[-46,-123],[29,-99],[314,-73],[135,-254],[73,-491],[107,-166],[143,158],[129,-87],[116,-334],[36,-243],[-44,-153],[54,-145],[152,-140],[43,-121],[17,-115],[98,-119],[259,-162],[647,-770],[69,5],[177,14],[96,-153],[40,-475]],[[590494,781312],[187,200],[801,400],[369,246],[473,110],[333,50],[263,135],[246,133]],[[597514,788549],[69,779],[-35,388],[-114,256],[30,162],[173,68],[98,178],[25,287],[-67,480],[-159,673],[-427,493],[-389,89],[-307,223],[-828,652],[-513,569],[-447,422],[-964,794],[-583,389],[-401,339],[-470,169]],[[588577,798680],[-548,483],[-634,713]],[[587332,801314],[-543,-125],[-481,262],[-599,606],[-413,569],[-228,531],[-161,619],[-145,1064]],[[592751,830375],[-781,406],[-365,90],[-209,-88],[-222,-167],[-235,-246],[-142,-268],[-48,-290],[-163,-349],[-277,-407],[-361,5],[-445,417],[-599,69],[-1132,-416],[-1623,-285],[-111,-20],[-712,-246],[-266,-290],[-194,-119],[-120,52],[-128,-97],[-137,-246],[-148,-415],[-157,-584],[41,-835],[240,-1087],[5,-601],[-230,-117],[-135,-460],[-38,-801],[62,-846],[243,-1337],[-256,-272],[-52,-263],[66,-345],[-91,-163],[-248,21],[-198,-136],[-148,-292],[-9,-575],[129,-858],[174,-583],[219,-308],[100,-306],[-18,-303],[77,-283],[172,-264],[67,-193],[-40,-121],[127,-173],[295,-226],[119,-213],[-58,-200],[164,-445],[384,-690],[205,-497],[26,-304],[-78,-258],[-12,-40],[-23,-32],[-184,-261],[-205,-464],[-80,-251],[-124,-387],[-11,-640],[0,-28],[181,-698],[0,-26],[-5,-545],[-286,-667]],[[616971,787140],[-264,-245],[-449,21],[-273,155],[-450,51],[-517,0],[-309,-206],[-310,-98],[-308,10],[-177,106],[-45,201],[-63,54],[-123,-143],[-938,-558],[-491,-532],[-357,-692],[-474,-366],[-592,-38],[-583,-170],[-866,-452],[-234,-30]],[[620969,798398],[-472,-118],[-176,-182],[-38,-284],[-139,-250],[-241,-217],[-194,-28],[-148,158],[-73,173],[3,187],[-168,180],[-338,173],[-105,261],[-75,336],[-108,54],[-233,-89],[-558,71],[-416,124],[-807,63],[-482,-81],[-332,114],[-683,-16],[-244,-148],[-183,-7],[-122,132],[-24,121],[75,110],[-24,206],[-124,302],[-262,213],[-399,123],[-210,214],[-21,304],[-66,254],[-113,204],[-197,45],[-282,-114],[-90,52],[-64,137],[-70,296],[-262,554],[-195,111],[-127,-332],[-178,-105],[-344,184],[-439,42],[-107,172],[81,317],[-11,309],[-102,299],[34,335],[171,369],[-76,397],[-322,424],[-37,416],[-76,191],[-237,249],[-103,246],[30,243],[73,132],[56,214],[-72,242],[-38,264],[8,197],[-91,59],[-188,-45],[-457,31],[-685,161],[-342,220],[2,277],[105,233],[208,189],[16,182],[-176,176],[-61,204],[-47,335],[-80,412],[-220,388],[-1,281],[20,177],[-60,192],[-54,166],[-16,175],[73,169],[21,182],[-30,196],[70,398],[172,600],[50,446],[-20,458]],[[608702,813244],[52,195],[34,192],[-26,241],[-161,322],[-296,404],[-90,246],[1,224],[-147,653],[71,819],[6,522],[-61,226],[149,540],[357,852],[173,1061],[-10,1269],[-111,685],[-155,414],[-96,250],[-65,91],[-352,248],[-640,405],[-305,396],[28,385],[-33,248],[-142,166],[-478,1033]],[[522832,789770],[751,-686],[572,33],[389,237],[396,451],[426,199],[454,-52],[349,228],[244,509],[222,246],[200,-17],[342,284],[486,586],[467,382],[450,179],[267,195],[82,214],[303,321],[522,430],[871,330],[1829,348],[229,454],[234,207],[317,112],[166,193],[24,413],[582,-55],[329,-153],[405,-404]],[[547795,789855],[-114,333],[-151,171],[-229,122],[-95,6],[-323,22],[-608,-66],[-480,307],[-350,679],[-419,308],[-489,-64],[-478,63],[-469,188],[-332,74],[-196,-42],[-198,-270],[-199,-500],[-264,-340],[-327,-180],[-309,-3],[-288,174],[-286,-1],[-285,-176],[-397,126],[-510,431],[-435,217],[-360,3],[-213,139],[-69,273],[-390,374],[-632,419],[-438,290],[-473,121],[-323,202],[-331,322],[-211,335],[-92,347],[-175,174],[-257,0],[-311,141],[-549,423]],[[217593,704033],[667,-827],[286,-794],[197,-384],[202,-240],[203,-120],[309,-2],[453,-217],[344,-347],[575,-824]],[[538393,784118],[1516,336],[388,365],[313,91],[367,-63],[302,186],[237,435],[322,308],[231,172],[176,8],[263,-46],[118,-273],[19,-185],[-80,-95],[-22,-281],[37,-466],[90,-311],[143,-155],[175,-579],[233,-979],[61,-378],[135,-182],[197,-81],[374,-140],[573,-215],[470,-545],[305,-212],[296,-61],[395,-232],[68,-56],[35,-29],[392,-321],[343,-456],[80,-212],[110,-294],[257,-392],[238,-203],[87,-74],[257,-377],[53,-131],[137,-344],[266,-267],[15,-2],[327,-56],[216,-162],[91,-269],[105,-138],[80,-105],[280,-217],[85,-24],[340,-93],[10,-2],[33,-2],[853,-29],[47,-52],[698,-766],[447,-314],[672,-92]],[[492118,753607],[821,-461],[272,-314],[-4,-321],[60,-323],[185,-488],[-392,-496],[-329,-97],[-397,136],[-294,7],[-193,-125],[-287,97],[-382,319],[-653,321],[-924,325],[-547,31],[-172,-262],[-399,-105],[-629,52],[-860,-280],[-1091,-610],[-645,-151],[-198,310],[-388,68],[-578,-175],[-310,-34],[-139,-110],[-231,100],[-337,310],[-239,40],[-149,-161],[-35,-38],[-125,-360],[-316,-471],[-452,-423],[-345,-528],[-238,-631],[-297,-268],[-357,96],[-205,203],[-51,312],[-392,140],[-1130,-49],[-1621,-528],[-530,-45],[-361,256],[-331,160]],[[488364,760009],[240,-57],[132,-290],[104,-540],[152,-213],[201,114],[190,-15],[179,-145],[134,91],[88,326],[141,60],[291,-311],[197,-227],[318,-89],[506,-27],[399,-190],[293,-354],[174,-302],[55,-250],[187,-250],[318,-248],[217,-64],[113,121],[353,-80],[590,-281],[523,-445],[686,-916],[951,-1523],[820,-1041],[1005,-1067],[616,-843],[229,-618],[397,-384],[567,-149],[382,129],[196,408],[156,210],[114,15],[151,-84],[190,-183],[87,-233],[-16,-285],[21,-145],[86,-9],[362,-31],[179,-173],[116,-325],[58,-269],[-1,-213],[-106,-270],[-211,-326],[-58,-464],[95,-602],[276,-339],[271,-53]],[[586457,561554],[614,-396],[297,-68],[183,128],[173,409],[163,690],[295,563],[426,436],[381,613],[338,788],[213,618],[89,446],[10,584],[-72,721],[-121,393],[-171,65],[-87,148],[-6,232],[374,861],[753,1490],[372,1151],[-8,813],[84,1026],[178,1239],[75,1014],[-41,1183],[-32,673],[-22,477],[38,845],[112,922],[20,963],[-72,1005],[5,694],[80,384],[-122,665],[-324,947],[-137,871],[50,796],[-47,468],[-143,139],[-98,248],[-52,356],[-118,358],[-182,362],[-217,865],[-251,1368],[-92,1191],[68,1015],[184,861],[299,708],[195,1347],[139,2980]],[[598203,565825],[-30,186],[-137,1327],[-141,626],[-264,330],[95,2373],[-57,976],[-178,370],[-229,220],[-59,58],[-599,279]],[[595498,575446],[-154,1567],[-19,861],[65,675],[-110,560],[-284,444],[-116,333],[54,222],[-3,383],[-61,544],[-102,447],[-143,349],[-71,51],[-110,176],[-52,334],[-57,1098],[-84,673],[-113,249],[-173,150],[-233,51],[-144,277],[-54,501],[-92,377],[-128,254],[-30,275],[68,295],[-13,232],[-69,150],[9,132],[44,93],[7,127],[-52,154],[-17,119],[20,98],[40,64],[22,122],[-34,295],[49,437],[134,579],[-253,1389],[-638,2198],[-350,1417],[-61,636],[-152,567],[-243,498],[-270,354],[-298,211],[-297,492],[-296,772],[-208,407],[-176,74]],[[543285,805408],[89,-466],[105,-224],[149,-138],[77,-180],[6,-223],[128,-262],[228,-272],[54,-129],[15,-264],[-123,-329],[-71,-445],[-6,-530],[-388,-325],[-771,-122],[-456,20],[-214,239],[-196,456],[-330,158],[-529,11],[-411,243],[-439,713],[-235,564],[-155,132],[-153,-111],[-102,74],[-52,260],[-122,129],[-193,-2],[-128,93],[-64,187],[0,132],[65,76],[13,96],[6,136],[40,114],[212,151],[118,374],[24,599],[-18,34],[-191,362],[-443,191],[-286,243],[-129,293],[-232,223],[-337,152],[-279,219],[-220,284],[-126,269],[-33,253],[-113,204],[-194,156],[-136,258],[-116,539]],[[536642,810023],[-714,881],[-256,525],[-37,462],[-242,314],[-449,165],[-551,61],[-652,-43],[-423,206],[-193,455],[-227,270],[-261,85],[-163,153],[-64,222],[1,273],[66,324],[181,370],[444,622],[169,353],[71,734],[29,1232],[-259,875],[-546,519],[-469,283],[-391,48],[-326,182],[-261,318],[-177,115],[-93,-88],[-310,288],[-527,662],[-339,337],[-226,15],[-523,267],[-299,51],[-251,-75],[-369,160]],[[528005,821644],[-731,594],[-97,84],[322,-17],[244,-81],[166,-131],[96,-449]],[[736852,789460],[-746,-394],[-329,-284],[-162,-306],[-259,-267],[-357,-228],[-303,-104],[-372,33]],[[731565,799209],[-654,225],[-382,392],[-329,635],[-489,538],[-650,440],[-392,470],[-134,499],[-341,200],[-547,-99],[-496,150],[-446,397],[-366,180],[-286,-39],[-364,113],[-442,264],[-351,58],[-258,-149],[-497,-39],[-736,72],[-512,221],[-286,371],[-334,136],[-380,-98],[-499,222],[-620,542],[-461,317],[-304,91],[-243,-62],[-183,-217],[-418,121],[-984,689],[-548,533],[-285,385],[-206,415],[-181,596],[-157,777],[-250,651],[-341,522],[-407,443],[-471,364],[-221,536],[27,709],[-326,682],[-681,656],[-357,656],[-33,656],[-135,497],[-237,337],[-96,300],[46,260],[-5,278],[-55,296],[-112,216],[-170,136],[-52,164],[66,192],[4,190],[-57,187],[-303,475],[-100,65],[-56,17],[-40,119],[16,206],[-67,81],[-407,38],[-151,147],[-51,295],[-271,204],[-491,116],[-313,258],[-136,401],[-218,332],[-300,263],[-142,214],[-4,127],[-61,105],[-67,63],[-48,68],[8,102],[-8,209],[-128,348],[-278,382],[-428,416],[-284,374],[-141,334],[-28,467],[62,453],[21,149],[-22,365],[-190,193]],[[750903,787426],[-115,-941],[-87,-358],[-145,-132],[-189,-41],[-190,-268],[-254,-511],[-278,-333],[-303,-155],[-302,-359],[-302,-565],[-390,-238],[-479,89],[-557,333],[-635,576],[-803,438],[-969,299],[-886,381],[-800,463],[-478,407],[-155,351],[-182,150],[-210,-49],[-250,112],[-435,410],[-934,1018],[-483,267],[-342,-143],[-434,132],[-523,407],[-482,210],[-439,13],[-251,71],[-21,43],[-43,88],[-200,16],[-505,-147]],[[626286,690825],[216,-452],[400,-264],[659,-228],[553,-351],[672,-714],[8,-9]],[[628794,688807],[326,-362],[267,-5],[313,237],[537,101],[763,-35],[475,80],[189,197],[116,27]],[[631780,689047],[3,0],[73,-212]],[[613868,709284],[351,-241],[161,31],[87,221],[188,74],[289,-75],[139,35],[50,22],[62,55],[87,-77],[247,72],[351,289],[306,70],[260,-147],[191,-225],[182,-454],[186,-399],[132,-81],[139,106],[79,-53],[41,-44],[65,15],[47,248],[74,73],[100,-101],[2,-163],[-99,-225],[3,-192],[103,-158],[40,-231],[-23,-304],[117,-325],[81,-109],[176,-236],[115,-337],[-27,-330],[61,-103],[149,124],[155,-10],[160,-143],[48,-270],[-66,-400],[120,-478],[306,-557],[245,-331],[186,-107],[129,11],[74,127],[138,-66],[203,-259],[165,-97],[128,67],[335,-140],[226,-144],[316,-203],[351,-427],[157,-507],[111,-160],[92,0],[117,-23],[226,-207],[259,-631],[365,-1328],[25,-208],[3,-390],[-75,-609],[52,-754],[183,-874],[94,-668],[4,-463],[86,-501],[167,-538],[81,-612],[-5,-683],[203,-675],[616,-1000],[756,-225],[323,-225],[142,-300],[232,-181],[483,-95]],[[552555,779250],[-32,-1873],[-9,-107],[-5,-65],[-27,-327],[-59,-67],[-93,-108]],[[146568,841589],[859,597],[31,983],[257,640],[494,625],[259,702],[26,776],[68,481],[111,186],[207,92],[303,-1],[353,-311],[402,-622],[494,-455],[584,-288],[671,-769],[758,-1251],[482,-900],[307,-826]],[[607688,735196],[-592,-265],[-291,-321],[-187,-465],[-77,-320],[34,-174],[237,-259],[438,-342],[303,-142],[169,58],[186,-134],[204,-324],[211,-143],[219,38],[110,-203],[0,-446],[95,-242],[192,-38],[83,-173],[-25,-306],[-190,-404],[-356,-503],[-179,-363],[0,-224],[-62,-174],[-19,-133],[-70,-307],[-229,-191],[-35,-134],[27,-147],[-71,-123],[-310,-81],[-259,-223],[-210,-364],[-259,-219],[-310,-71],[-214,-130],[-120,-188],[-196,-47],[-273,95],[-201,-73],[-129,-239],[-181,-545],[-19,-441],[40,-599],[96,-322],[152,-45],[109,-339],[89,-871],[8,-80]],[[615154,743277],[-354,-968],[-954,-429],[-597,-93],[-558,101],[-480,-17],[-402,-135],[-228,-145],[-54,-154],[56,-266],[165,-376],[30,-389],[-105,-401],[-109,-249],[-114,-95],[-509,160],[-904,416],[-553,104],[-200,-208],[-406,-175],[-612,-143],[-656,-342],[-701,-540],[-171,-607],[359,-673],[243,-344],[128,-17],[83,-138],[58,-388]],[[853199,403070],[-429,-421],[-261,-140],[-356,0],[-1044,121],[-452,-131],[-208,-343],[-105,-263],[1,-182],[-74,-117],[-148,-50],[-166,-389],[-184,-727],[-353,-933],[-780,-1706],[-1031,-1035],[-603,-238],[-517,214],[-432,609],[-347,1003],[-291,548],[-235,90],[-245,-56],[-254,-202],[-241,19],[-229,243],[-279,635],[-330,1028],[-213,544],[-95,61],[-50,175],[-5,432],[-13,396]],[[171336,816219],[-704,1420],[-80,368],[-332,395],[-611,543],[-652,233],[-693,-78],[-677,273],[-661,622],[-937,1091],[-1214,1559],[-952,998],[-1036,655],[-521,242],[-181,195],[-12,229],[-235,352],[-458,474],[-515,353],[-573,232],[-390,28],[-206,-177],[-116,-244],[-25,-311],[-141,-447],[-258,-584],[-113,-775],[32,-966],[69,-698],[107,-430],[-111,-368],[-327,-304],[64,-484],[456,-664],[304,-658],[154,-652],[51,-789],[-51,-924],[108,-794],[267,-663],[154,-809],[41,-954],[-5,-634],[-51,-314],[-86,-208],[-122,-103],[-75,-224],[-44,-520],[388,-1417],[120,-657],[-21,-371],[250,-728],[520,-1085],[271,-806],[23,-527],[-44,-273],[-112,-20],[-50,-133],[10,-247],[166,-491],[322,-734],[324,-1119],[328,-1503],[169,-1516],[10,-1527],[-123,-861],[-257,-193],[-193,-278],[-129,-364],[-488,-331],[-847,-301],[-740,16],[-633,331],[-493,56],[-529,-330],[-108,-121]],[[817812,651829],[186,7],[140,161],[233,473],[323,392],[89,421],[-39,581],[96,362],[228,142],[95,350],[-38,559],[124,824],[285,1090],[158,780],[32,471],[-90,223],[-213,-25],[-144,130],[-76,286],[-11,366],[81,671],[-94,119],[11,161],[85,244],[21,256],[-41,269],[-193,511],[-344,753],[-60,696],[225,638],[226,391],[230,143],[93,213],[-43,283],[24,268],[90,254],[2,277],[-86,302],[50,328],[188,354],[61,506],[-64,660],[153,690],[371,720],[292,893],[212,1066],[366,852],[521,638],[233,584],[-85,798],[-4,788],[146,772],[294,1019],[115,960],[-95,1352]],[[748454,638345],[-51,413],[-148,507],[-201,222]],[[748054,639487],[-108,-267],[-15,-758],[86,-814],[8,-38]],[[745665,641660],[-152,-701],[-106,-784],[-8,-626],[-150,-472],[-290,-318],[-189,-505],[-84,-1138]],[[745665,641660],[219,-66],[221,-3],[234,-124],[205,-230],[179,-334],[61,-328],[-55,-323],[63,-284],[178,-246],[129,-652],[43,-221],[218,-1396],[8,-263],[6,-175]],[[750206,645129],[60,-1378],[87,-522],[149,-272],[132,-162],[42,-238],[60,-134],[93,-163],[9,-198],[37,-230],[129,-322],[-1,-504],[92,-597],[113,-135]],[[747525,647602],[304,-1084],[231,-449],[220,-229],[184,-317],[145,-405],[57,-277],[-32,-149],[51,-95],[133,-41],[66,-197],[-2,-355],[48,-273],[48,-212],[14,-287],[62,-175],[138,-180],[26,-349],[129,-670],[447,-1063],[226,-915],[17,-720],[-79,-574]],[[747525,647602],[251,-350],[226,-11],[275,-175],[325,-341],[297,-121],[404,148]],[[745546,649951],[16,-38],[299,-718],[65,-313],[-19,-254],[76,-216],[171,-180],[76,-231],[-19,-283],[150,-259],[141,-103],[179,-132],[164,-426],[9,-615],[-85,-508],[-180,-400],[-24,-399],[132,-397],[116,-134],[88,-102],[58,-199],[57,-156],[175,-181],[35,-411],[72,-456],[170,-435],[67,-426],[-36,-418],[38,-456],[112,-493],[151,-357],[167,-244],[20,-28],[-13,-141],[80,-355]],[[745546,649951],[78,-70],[205,-182],[385,-118],[14,-5],[3,-4],[124,-165],[98,-132],[52,-482],[77,-290],[101,-99],[145,21],[188,141],[232,-274],[277,-690]],[[744221,652526],[57,-940],[218,-730],[433,-908],[176,-913],[-81,-918],[-10,-794],[60,-669],[-32,-543],[-89,-233],[84,-375],[162,-292],[89,-264],[113,-73],[45,-412],[-24,-752],[64,-461],[152,-169],[103,-240],[53,-311],[-76,-627],[-53,-242]],[[744221,652526],[74,-425],[147,-542],[221,-659],[185,-379],[198,-133],[23,-16],[172,113],[140,-153],[165,-381]],[[721779,688362],[-57,-305],[24,-295],[85,-385],[14,-253],[-85,-182],[-247,-621],[-216,-124],[-268,165],[-279,-202],[-436,-850],[-226,-421],[-203,-95],[-256,90],[-354,-48],[-450,-188],[-302,-347],[-152,-506],[-261,-153],[-370,200],[-293,-182],[-217,-563],[-91,-641],[35,-719],[-121,-558],[-276,-399],[-49,-672],[176,-948],[56,-890],[-62,-834],[41,-932],[216,-1546],[185,-584],[79,-463],[35,-538],[148,-585],[259,-632],[480,-709],[701,-786],[471,-406],[242,-27],[154,-200],[67,-375],[176,-253],[287,-132],[244,-221],[201,-311],[200,-599],[199,-886],[196,-585],[293,-427],[234,-116],[211,-596],[265,-1113],[400,-1114],[534,-1115],[316,-839],[100,-563],[200,-495],[300,-428],[303,-168],[304,93],[401,-381],[500,-854],[255,-584],[10,-314],[165,-275],[320,-233],[211,-253],[104,-271],[193,-111],[282,50],[138,-121],[-10,-438],[386,-594],[216,-163],[176,68],[89,-141],[5,-80],[24,-91],[37,-13],[43,26],[55,95],[71,-7],[51,-179],[74,-22],[97,135],[155,-85],[214,-304],[110,2],[31,112],[60,92],[96,8],[462,-448],[258,-14],[240,272],[143,302],[46,332],[113,208],[181,84],[56,191],[-67,298],[10,263],[87,228],[199,52],[311,-126],[239,-188],[138,-128],[67,104],[0,209],[13,217],[226,297],[195,136],[120,-99],[109,-288],[142,-134],[175,20],[258,324],[341,627],[248,230],[153,-167],[159,42],[165,253],[238,20],[310,-212],[261,-18],[213,178],[322,51],[430,-74],[382,-307],[334,-538],[276,-281],[205,-54],[121,17],[125,43],[150,-8],[174,-295],[219,-118],[249,123],[261,-191],[275,-506],[330,-313],[386,-122],[372,223],[359,570],[197,62],[37,-444],[90,-338],[143,-232],[208,22],[272,277],[345,-39],[417,-354],[287,40],[158,434],[208,250],[260,67],[205,-163],[150,-393],[200,-254],[250,-116],[127,-261],[3,-407],[122,-354],[241,-303],[87,-338],[-67,-374],[4,-400]],[[505025,757738],[44,391],[-93,231],[-324,303],[-163,431],[-63,672],[-18,1055],[-130,881],[-238,695]],[[607705,544842],[-140,-378],[101,-519],[443,-1181],[198,-754],[332,-421],[685,-434],[86,-74],[54,-99],[197,-924],[226,-421],[263,-91],[129,-300],[-3,-508],[101,-269],[206,-32],[195,-197],[183,-363],[236,-243],[289,-120],[382,29],[474,180],[511,510],[547,839],[360,436],[173,31],[158,-84],[143,-200],[198,-792],[255,-1383],[295,-1189],[337,-995],[179,-715],[22,-434],[271,-760],[780,-1627]],[[627247,697899],[254,-422],[78,-319],[-16,-357],[56,-310],[126,-264],[25,-510],[-77,-756],[45,-493],[167,-231],[120,-649],[74,-1068],[106,-798],[137,-530],[201,-502],[264,-475],[96,-530],[-109,-878]],[[628794,688807],[0,-1]],[[190974,701458],[-571,-382],[-537,85],[-696,424],[-621,567],[-548,711],[-532,175],[-517,-361],[-194,-430],[130,-496],[46,-398],[-37,-297],[-256,-38],[-475,221],[-288,1],[-99,-219],[-216,-174],[-331,-129],[-580,-432],[-829,-735],[-503,-338],[-177,60],[-172,-56],[-166,-173],[-197,75],[-229,321],[-235,78],[-428,-245]],[[199434,704251],[248,-970],[-365,-1399],[-283,-501],[-324,-71],[-252,-518],[-182,-965],[-249,-655],[-318,-344],[-330,-13],[-344,319],[-246,442],[-148,564],[-153,347],[-157,131],[-211,-111],[-264,-352],[-277,-183],[-288,-15],[-418,485],[-546,985],[-511,513],[-477,40],[-432,-255],[-389,-552],[-336,-106],[-283,338],[-342,151],[-600,-54]],[[531898,876296],[-821,-1131],[-285,-311],[-282,-308],[-586,-487],[-326,-374],[-67,-262],[-19,-262],[26,-263],[182,-296],[338,-329],[186,-333],[35,-337],[-49,-343],[-134,-350],[79,-450],[292,-549],[181,-478],[108,-609],[484,-622],[198,-500],[73,-585],[161,-618],[251,-652],[240,-416],[228,-182],[210,-322],[192,-464],[209,-304],[226,-146],[130,-178],[52,-318]],[[727052,605938],[260,-1614],[64,-687],[-45,-298],[-110,-220],[-176,-142],[-83,-244],[13,-351]],[[727052,605938],[414,-980],[406,-375],[846,-38]],[[704590,624085],[656,-133],[281,51],[124,192],[136,29],[220,-198],[721,-503],[463,-490],[444,-643],[467,-436],[489,-230],[290,-205],[137,-270],[628,-636],[329,-267],[240,-110],[254,-1],[212,85],[166,-78],[32,-217],[66,-69],[128,109],[69,-37],[45,-96],[178,-113],[631,-200],[79,-94],[17,-230],[-45,-367],[26,-96],[59,-24],[78,-52],[86,-202],[129,-25],[170,154],[131,-74],[91,-302],[119,-198],[147,-95],[104,64],[62,224],[238,213],[414,204],[245,20],[76,-162],[209,50],[344,264],[238,-81],[133,-426],[350,-487],[569,-549],[513,-15],[457,519],[285,153],[111,-212],[122,-15],[133,182],[171,20],[209,-141],[199,62],[186,266],[163,94],[138,-78],[233,71],[328,218],[269,-175],[208,-568],[212,-393],[323,-326],[233,163],[264,-201],[374,-511],[268,-193],[160,125],[102,299],[147,237],[141,32],[288,-377],[313,-249],[283,47],[209,-138],[133,-322],[65,-349],[-2,-374],[53,-273],[107,-172],[72,-274],[35,-376],[154,-375],[407,-562],[424,-1004],[145,-774],[8,-878],[253,-558],[497,-237],[282,-227],[68,-219],[169,-140],[272,-63],[217,-141],[163,-222],[166,-774],[257,-1992]],[[376526,374866],[407,638],[268,586],[266,748],[139,520],[10,294],[-28,150],[-68,7],[-95,264],[-122,524],[-196,284],[-405,66]],[[376066,379814],[-194,483],[-147,177],[-166,30],[-163,150],[-159,272],[-156,30],[-153,-212],[-140,-87],[-128,39],[-117,171],[-112,279]],[[371316,383658],[-725,265]],[[369240,385924],[-710,985]],[[368530,386909],[-274,480]],[[368256,387389],[-89,208],[-161,40],[-212,-143],[-172,-25]],[[367622,387469],[-110,188],[-151,82],[-191,-22],[-115,-184]],[[367055,387533],[-5,-258],[-130,-155],[-229,-6],[-167,-221]],[[366524,386893],[-162,22],[-191,199]],[[366171,387114],[-208,-60]],[[365963,387054],[-299,-273],[-986,-28]],[[364678,386753],[-267,-89],[-129,-436]],[[364282,386228],[-80,-812],[-87,-349]],[[364115,385067],[-94,113],[-71,425]],[[363950,385605],[-47,736]],[[363903,386341],[-125,155],[-203,-425]],[[363575,386071],[-148,-211]],[[363427,385860],[-93,4],[-109,288]],[[363225,386152],[-124,573],[-19,451],[88,327]],[[363170,387503],[-55,177]],[[363115,387680],[-296,42]],[[360098,388440],[-192,344]],[[359906,388784],[-152,56],[-263,-178]],[[359491,388662],[-3,-1]],[[322896,393346],[384,-252],[151,130],[46,429],[142,285],[239,144],[279,339],[322,535],[335,831],[348,1127],[253,1347],[235,2352],[-37,1186],[33,784],[88,778],[12,539],[-65,302],[-169,240],[-275,177],[-218,533],[-164,889],[-555,877],[-948,866],[-565,807],[-181,748],[-266,506],[-353,262],[-195,262],[-38,259],[-353,459],[-1003,986]],[[315769,401926],[846,-1688],[163,-528],[121,-157],[135,38],[207,-218],[418,-712],[701,-1431],[286,-720],[103,-486],[166,-300],[229,-113],[159,89],[90,292],[174,251],[259,211],[296,-164],[336,-538],[295,-173],[254,192],[266,-403],[277,-997],[227,-588],[176,-179],[129,-339],[80,-499],[102,-227],[124,43],[94,211],[62,377],[116,185],[255,-9]],[[276489,719945],[22,-156],[-70,-667],[63,-487],[185,-399],[74,-297],[-37,-193],[-75,-103],[-115,-14],[-51,-136],[14,-261],[103,-184],[193,-109],[233,-422],[409,-1101],[143,-383],[44,-529],[-9,-804],[86,-392],[180,20],[134,-98],[86,-215],[0,-493],[-86,-771],[66,-639],[219,-508],[85,-423],[-51,-339],[25,-107],[102,-10],[90,-226],[127,-623],[116,-349],[106,-72],[126,-551],[222,-1541],[380,-878],[244,-417],[233,-250],[130,-260],[27,-272],[-48,-317],[-185,-545],[-103,-190]],[[319358,435398],[-3,74],[-14,421]],[[319341,435893],[-148,521]],[[319193,436414],[-69,37],[-76,-103],[-40,-52]],[[319008,436296],[-18,-23],[-62,92],[-6,135],[-5,98]],[[318917,436598],[40,374],[-86,392],[-211,410],[-6,22],[-104,404],[-9,399],[-1,40]],[[318540,438639],[-41,254],[-6,40]],[[318493,438933],[-85,149]],[[318408,439082],[-47,257],[-10,367],[61,437]],[[318412,440143],[133,506],[-29,779],[-189,1053]],[[318327,442481],[-105,759]],[[318222,443240],[-20,466],[29,345],[115,336]],[[534262,850804],[-455,-793],[-162,-587],[-21,-645],[-212,-611],[-606,-865],[-68,-30]],[[827425,798438],[107,-500],[158,-327],[244,-319],[329,76],[412,471],[323,145],[233,-184],[164,-344],[95,-504],[361,-293],[942,-121],[407,43],[292,159],[312,288],[723,-1],[1133,-292],[1112,183],[1090,659],[848,621],[604,584],[536,376],[701,253],[1135,1012]],[[809659,698287],[346,-592],[111,-356],[-9,-316],[128,-525],[263,-734],[386,-451],[508,-168],[243,-416],[-21,-664],[122,-487],[268,-309],[191,-365],[115,-421],[24,-530],[-67,-641],[48,-472],[241,-457],[98,-67],[45,-213],[23,-382],[-32,-131],[-81,-111],[-46,-227],[91,-593],[120,-378],[97,-159],[-5,-192],[-28,-171],[-48,-434],[63,-253],[171,-72],[67,-183],[-16,-153],[24,-152],[105,-20],[121,-47],[143,-268],[102,-20],[243,92],[277,-331],[380,-263],[476,-140],[363,213],[251,565],[196,344],[268,174],[90,-22],[102,45],[62,86],[111,-46],[70,45],[36,92],[71,-15],[126,-253],[242,-167],[533,-84]],[[795551,701242],[771,440],[432,-48],[276,-192],[264,-351],[452,124],[641,599],[490,212],[339,-176],[246,42],[152,259],[123,75],[93,-110],[47,-240],[1,-372],[222,-296],[442,-222],[195,-357],[-52,-491],[113,-416],[278,-339],[64,-113],[0,-148],[40,-258],[242,-684],[385,-257],[186,126],[115,424],[64,84],[43,23],[58,-51],[48,-37],[52,30],[188,167],[392,584],[310,238],[229,-107],[187,125],[146,357],[306,279],[633,287],[67,16],[76,-16],[1038,-646],[457,-106],[172,202],[299,14],[427,-173],[242,6],[57,183],[200,11],[343,-161],[99,-196],[4,-98],[88,-179]],[[854417,802549],[-422,412],[-120,117],[-161,305],[38,257],[-28,204],[-97,150],[6,240],[99,302],[9,29],[-1,421],[-110,512],[-302,718],[-32,60],[-462,864],[-266,676],[-37,426],[-28,146],[-38,196],[-27,53],[-65,132],[-58,316],[8,70],[31,280],[-57,225],[-71,212],[10,340],[-85,233],[-136,94],[-46,32],[-57,258],[9,136],[25,414],[-131,462],[-171,368],[-227,487],[-118,623],[-34,562],[-169,276],[-9,245],[-22,407],[0,18],[-5,5],[-99,112],[-61,150],[48,180],[-80,223],[-209,266],[-96,231],[-24,208],[-105,163],[-307,158],[-84,218],[21,193],[28,77],[38,103],[36,110],[-11,141],[-22,139],[-122,168],[-174,194],[-194,419],[-153,70],[-94,43],[-152,0],[-132,237],[41,151],[-10,280],[-71,136],[-48,92],[-21,13],[-126,77],[-139,-58],[-343,213],[-547,485],[-371,199],[-47,25],[-289,-38],[-179,-145],[-2,-7],[-66,-247],[-194,24],[-479,454],[-483,112],[-269,244],[-76,146],[-140,268],[-198,173],[-141,-53],[-42,-15],[-443,278],[-643,568],[-62,54],[-370,210],[-66,-58],[-67,-59],[-70,-1],[-125,17],[-182,8],[-2,1],[-316,146],[-432,-65],[-546,-277],[-591,-173],[-262,-28],[-374,-40],[-377,33],[-48,54],[-70,79],[-691,-199],[-636,-266],[-1263,-528]],[[671122,690229],[416,-1128],[110,-791],[64,-460],[70,-1751],[525,-1155],[978,-558],[839,-142],[700,276],[715,613],[730,952],[572,395],[414,-162],[265,-26],[115,111],[147,357],[177,603],[152,901],[128,1198],[193,973],[257,748],[119,720],[-15,532],[69,472],[178,415],[516,704],[447,901],[364,1077],[364,635],[367,194],[380,971],[395,1749],[404,1074],[618,599],[261,329],[223,478],[269,738],[221,395],[172,52],[151,229],[129,404],[268,447],[406,488],[359,289],[311,88],[332,358],[352,627],[238,319],[124,10],[46,207],[-31,405],[19,308],[105,283],[643,877],[656,526],[1327,700],[264,-119],[193,86],[314,380]],[[273834,724536],[-765,-454],[-501,-472],[-723,-533],[-1259,-900],[-212,-517],[-752,-717],[-249,-185],[-466,-273],[-537,-397],[-186,-335],[-815,-731],[-424,-578],[-207,-377],[13,-263]],[[795882,625717],[-363,351],[-162,47],[-114,-98],[-48,42],[16,180],[-33,121],[-83,63],[-107,343],[-132,625],[-111,300],[-91,-25],[-146,273],[-201,570],[-117,589],[-33,608],[-170,514],[-307,421],[-275,234],[-244,47],[-170,199],[-142,525],[-280,-113],[-140,167],[-93,409],[-71,112],[-51,-186],[-221,423],[-392,1031],[-790,1599],[-1779,3249],[-684,1214],[-907,1611],[-884,1294],[-707,704],[-811,669],[-1375,949],[-630,1095],[-410,932],[-399,1134],[-261,941],[-123,751],[-147,585],[-169,421],[-160,205],[-149,-10],[-335,692],[-518,1392],[-331,664],[-144,-62],[-327,168],[-510,397],[-300,365],[-132,499],[-334,1232]],[[797065,654888],[53,-11],[32,-135],[21,-388],[104,-436],[121,-185],[259,-121],[335,-792],[107,-463],[-10,-397],[141,-748],[292,-1100],[207,-580],[123,-61],[62,-162],[0,-264],[-86,-279],[-171,-292],[-60,-312],[48,-331],[99,-262],[149,-193],[117,-49],[85,95],[165,-334],[244,-763],[224,-318],[204,127],[178,225],[151,322],[105,121],[58,-80],[196,273],[333,627],[305,233],[276,-161],[221,-283],[167,-405],[186,-242],[206,-82],[90,-180],[-28,-281],[51,-282],[128,-284],[221,2],[314,290],[222,63],[128,-162],[121,-44],[112,74],[131,271],[149,466],[129,132],[165,-300]],[[770244,711689],[719,240]],[[771563,713182],[476,-33],[260,-288],[203,-553],[268,-392],[334,-231],[180,-216],[37,-304],[12,-432],[-46,-254],[-100,-220],[79,-367],[257,-513],[264,-325],[270,-136],[146,79],[19,296],[88,183],[157,72],[231,-66],[305,-204],[156,-750],[9,-1297],[173,-980],[339,-665],[219,-323],[98,18],[62,119],[25,220],[134,20],[242,-181],[261,-40],[281,100],[409,-283],[539,-667],[359,-161],[180,347],[60,275],[144,288],[291,244],[425,499],[283,254],[142,8],[234,-294],[326,-596],[186,-75],[47,444],[270,-74],[494,-592],[499,-290],[506,10],[406,-403],[306,-818],[239,-503],[169,-188],[353,91],[534,370],[267,295],[0,222],[-87,214],[-175,204],[-96,274],[-63,513],[-39,118],[-86,326],[-219,573],[-286,366],[-352,159],[-385,362],[-419,567],[-472,445],[-524,324],[-328,456],[-131,588],[-212,371],[-292,154],[-194,323],[-94,491],[-176,183],[-259,-125],[-255,129],[-250,383],[-235,234],[-220,84],[-190,643],[-242,1803],[106,243],[-62,333],[-195,506],[18,704],[229,901],[219,462],[210,22],[379,545],[549,1066],[429,543],[308,19],[173,-58],[39,-135],[252,-138],[466,-142],[420,124],[375,388],[369,1],[362,-388],[279,-523],[196,-660],[335,-244],[476,170],[707,-76],[937,-324],[638,35],[337,395],[50,312],[-236,231],[66,410],[369,588],[477,111],[586,-368],[403,-163],[219,41],[99,174],[-22,306],[138,429],[297,550],[480,626],[664,702],[340,479],[18,255],[-82,335],[-181,417],[-269,308],[-357,200],[-204,364],[-52,528],[17,346],[108,476],[259,136],[206,262],[154,388],[322,305],[737,336],[114,272],[428,126],[780,71],[601,161],[420,253],[292,567],[162,884],[203,623],[245,363],[198,514],[151,667],[242,619],[332,572],[205,705],[78,838],[224,828],[371,819],[215,583],[57,345],[-63,637],[-183,929],[-67,843],[49,755],[-22,883],[-141,1515],[904,1594],[295,647],[-14,230],[83,387],[179,543],[392,469],[606,395],[338,328],[72,260],[324,160],[576,60],[335,-68],[94,-194],[184,-93],[274,9],[242,-225],[213,-459],[272,-404],[333,-350],[316,-154],[301,40],[394,-111],[486,-262],[390,-10],[294,244],[220,11],[146,-223],[412,-17],[680,190],[619,-233],[561,-657],[470,-420],[381,-183],[297,-30],[215,122],[360,-306],[504,-736],[278,-577],[52,-418],[-26,-439],[-105,-461],[19,-423],[144,-385],[-12,-452],[-168,-520],[-245,-347],[-200,-93],[-122,-82],[-35,-177],[-2,-133],[104,-301],[19,-337],[-151,-679],[-176,-476],[-202,-276],[-79,-243],[43,-212],[-71,-521],[-183,-832],[-74,-542],[36,-254],[-259,-673],[-551,-1091],[-266,-858],[21,-624],[205,-750],[388,-876],[161,-702],[-67,-526],[-110,-355],[-152,-183],[-56,-293],[39,-401],[-133,-587],[-305,-770],[-203,-390],[-100,-11],[-19,-81],[63,-149],[2,-359],[-57,-567],[16,-356],[89,-144],[9,-127],[-71,-112],[40,-298],[151,-486],[40,-808],[-72,-1131],[84,-1370],[240,-1609],[8,-1180],[-335,-1126],[-257,-644],[-139,-589],[-105,-748],[-45,-828],[21,-1363],[543,-238],[426,42],[491,244],[264,220],[221,247],[158,129],[207,287],[394,209],[582,130],[378,279],[174,427],[236,344],[298,261],[762,-310],[1224,-881],[828,-375],[432,131],[399,258],[366,384],[309,203],[250,21],[357,-142],[464,-304],[322,-45],[181,214],[530,31],[880,-155],[579,105],[324,296],[91,248]],[[767122,713428],[1621,-452],[901,-725]],[[818993,712778],[68,245],[9,493],[111,496],[301,597],[340,454],[377,310],[190,259],[2,208],[114,351],[225,495],[370,458],[513,422],[250,299],[-15,175],[49,169],[112,162],[118,60],[194,561],[117,228],[105,197],[309,345],[621,810],[362,598],[33,295],[142,425],[253,557],[353,416],[451,277],[350,527],[249,777],[310,522],[372,265],[237,288],[104,310],[235,167],[366,22],[403,178],[439,336],[305,494],[169,654],[241,371],[313,89],[408,346],[504,603],[333,261],[239,-83]],[[294237,766445],[30,-500],[-45,-198],[-110,-61],[-89,-174],[-69,-285],[-5,-199],[89,-166],[486,-572],[230,-442],[137,-501],[24,-414],[-87,-326],[-15,-401],[58,-476],[182,-168],[305,138],[149,-387],[-13,-1370],[-295,-1690],[-107,-1007],[-17,-888],[-124,-758],[-231,-630],[-120,-817],[-12,-1507],[-99,-1133],[0,-674],[66,-759],[-25,-296],[-2,-186]],[[772241,789487],[-1085,448],[-456,390],[-109,359],[86,459],[28,461],[-30,463],[238,623],[506,783],[942,372],[1379,-39],[1045,-194],[711,-349],[1138,515],[1564,1378],[892,695],[218,9],[172,126],[127,240],[76,273],[37,460]],[[370836,385704],[492,-182],[625,27],[264,65],[113,112],[38,126],[-37,141],[48,243],[133,345],[212,193],[292,41],[205,384],[116,727],[125,447],[133,168],[38,243],[-57,319],[45,343],[149,367],[133,601],[118,835],[197,587],[277,338],[168,387],[90,652]],[[901981,876764],[-758,1436],[-346,481],[-187,7],[-764,512],[-1338,1019],[-1214,705],[-1088,391],[-604,371],[-121,349],[-285,416],[-672,727],[-397,603],[-83,493],[99,585],[254,470],[409,355],[575,105],[743,-145],[430,202],[119,551],[23,372],[61,248],[154,181],[651,279],[322,320],[-6,362],[82,315],[169,269],[-48,463],[-263,660],[-229,425],[-192,192],[-20,276],[154,360],[48,267],[9,217],[22,205],[138,191],[32,158],[-62,106],[-203,88],[-891,122],[-491,220],[-94,319],[40,454],[173,589],[364,574],[555,560],[378,788],[201,1017],[10,710],[-181,402],[-143,523],[-107,642],[-223,448],[-340,252],[-309,709],[-275,1163],[-110,891],[57,617],[-103,294],[-68,156],[11,133],[112,186],[50,178],[52,159],[528,302],[1365,576],[863,214],[359,-149],[662,-45],[964,59],[588,69],[212,80],[125,131],[38,183],[-105,129],[-246,72],[-152,141],[-56,208],[241,169],[807,193],[389,145],[95,218],[22,272],[73,156],[206,26],[197,63],[123,163],[-10,142],[-1,206],[95,174],[94,182],[31,217],[183,125],[320,-47],[294,156],[24,287],[172,157],[261,-30],[131,91],[37,277],[120,189],[-34,287],[191,396],[282,289],[375,180],[423,0],[473,-182],[327,-12],[182,158],[272,55],[362,-46],[228,303],[94,654],[244,388],[395,123],[168,201],[-60,279],[7,163],[74,50],[189,-29],[171,47],[24,208],[-80,154],[-52,408],[122,441],[-48,438],[-219,437],[116,338],[453,239],[112,282],[-109,403],[-65,288],[0,174],[-20,76],[-83,116],[-259,139],[-44,79],[-16,73],[34,54],[78,102],[29,208],[-63,255],[42,439],[147,625],[-1,301],[-62,116],[-122,94],[-174,162],[-97,264],[-9,190],[92,137],[23,166],[-78,176],[39,280],[307,380],[135,257],[-35,133],[35,135],[105,138],[226,191],[349,243],[194,225],[41,209],[592,234],[1142,262],[604,299],[65,338],[578,298],[1091,259],[631,261],[172,265],[65,186],[44,167],[83,92],[434,219],[181,166],[-56,122],[-3,124],[51,128],[206,209],[315,102]],[[901976,876774],[826,-1540]],[[779305,502464],[306,-39],[178,-176],[153,-324],[167,-107],[272,164],[192,-67],[102,119],[74,283],[126,29],[177,-226],[223,-72],[268,83],[190,-28],[164,-30],[140,121],[270,598],[388,142],[507,-313],[400,25],[443,548],[322,510],[414,-133],[612,-606],[282,-152],[259,161],[469,624],[343,254],[324,-174],[166,-12]],[[721484,697555],[-846,1779]],[[720658,699294],[-268,842],[-4,10],[-330,674],[-491,807],[-380,332],[-270,-145],[-472,255],[-1095,1124],[-173,280],[-88,284],[-3,288],[-204,461],[-405,632],[-386,770],[-369,910],[-360,561],[-529,319],[-1035,754],[-513,583],[-337,661],[-365,499],[-394,335],[-285,408],[-176,479],[-71,424],[36,369],[-186,496],[-408,623],[-259,571],[-109,519],[-198,220],[-288,-81],[-333,214],[-380,508],[-217,401],[-55,294],[-192,172],[-330,47],[-401,205],[-473,361],[-251,355],[-29,347],[-80,143],[-130,-61],[-64,-464],[3,-867],[-158,-596],[-318,-325],[-329,-180],[-339,-37],[-450,163],[-560,361],[-588,201],[-303,20],[-313,22],[-338,-396],[-60,-832],[-292,-745],[-524,-659],[-281,-522],[-37,-385],[64,-313],[166,-242],[-28,-216],[-222,-189],[-141,-299],[-89,-613]],[[701963,707257],[-154,-318],[-166,-96],[-230,20],[-273,-112],[-315,-244],[-162,-376],[-9,-508],[-106,-219],[-204,70],[-147,-29],[-91,-129],[-146,-542],[-200,-953],[-207,-578],[-215,-201],[-111,-583],[-6,-963],[-191,-691],[-376,-420],[-253,-503],[-195,-879],[-29,-1214],[-197,-1019],[-563,-1844],[-581,-2539],[-168,-1595],[78,-2245],[-164,-644],[13,-559],[136,-686],[17,-678],[-103,-668],[-3,-949],[98,-1229],[-97,-1056],[-289,-885],[-86,-739],[118,-594],[9,-570],[-101,-545],[-41,-504],[16,-462],[-126,-442]],[[696143,677337],[-270,-421],[-199,-213],[-128,-5],[-304,-470],[-479,-936],[-425,-599],[-370,-262],[-316,-514],[-262,-765],[-238,-409],[-214,-52],[-135,-145],[-56,-237],[-91,-92],[-127,51],[-172,-142],[-217,-336],[-176,-158],[-134,19],[-92,-124],[-50,-267],[-78,-116],[-106,36],[-34,-154],[38,-342],[-43,-261],[-124,-180],[4,-181],[132,-182],[50,-144],[-32,-105],[-311,-245],[-178,119],[-159,364],[-100,65],[-42,-234],[-225,-255],[-408,-276],[-247,-228],[-85,-179],[-18,-360],[49,-540],[-57,-286],[-162,-33],[-125,-141],[-88,-248],[-6,-219],[77,-190],[-36,-137],[-150,-86],[-61,-179],[27,-271],[-126,-325],[-278,-380],[-145,-520],[-17,-991],[-39,-1508],[24,-699],[73,-393],[156,-347],[238,-304],[137,-306],[36,-308],[199,-527],[363,-746],[129,-460],[-105,-175],[20,-219],[145,-264],[-5,-372],[-156,-480],[-53,-564],[48,-649],[-9,-429],[-67,-210],[15,-203],[96,-197],[-4,-117],[-106,-37],[-76,-255],[-47,-472],[-67,-182],[-88,110],[-83,-141],[-79,-391],[-107,-204],[-134,-16],[-121,-647],[-108,-1277],[-140,-674],[-170,-73],[-67,-132],[37,-194],[-41,-112],[-119,-30],[-28,-123],[63,-214],[-87,-251],[-236,-288],[-119,-266],[-2,-238]],[[763064,603394],[69,954],[45,648],[-6,740],[147,751],[300,762],[141,550],[-17,339],[82,224],[181,110],[216,599],[250,1086],[262,651],[418,531]],[[765152,611339],[75,140],[106,164],[152,-20],[162,-558],[170,-1095],[246,-1100],[323,-1107],[156,-717],[-11,-327],[251,-622],[133,-724],[276,-463]],[[765225,605179],[-438,-2870],[-241,-1154],[-70,-155]],[[765554,605698],[137,-793],[193,-344],[307,-331],[119,-354],[-69,-379],[-4,-303],[59,-224]],[[765201,610674],[-186,-152],[-138,-308],[-167,-660],[-14,-307],[89,-204],[46,-216],[-12,-309],[-50,-184],[-114,-147],[-35,-125],[-30,-459],[-13,-269],[-96,-202],[-76,-394],[-55,-585],[25,-445],[105,-304],[24,-329],[-128,-720],[-85,-378],[-106,-214],[-129,-51],[-128,-368],[-128,-684],[-169,-590],[-316,-743],[-26,-101]],[[708315,824869],[-209,102],[-41,147],[58,225],[-147,367],[-351,509],[-236,458],[-120,407],[-163,233],[-206,58],[-234,230],[-264,402],[-499,413],[-1103,635]],[[704782,829055],[-508,659],[-291,235],[-242,29],[-82,225],[79,422],[-106,292],[-290,161],[-128,362],[36,565],[-119,291],[-273,18],[-100,124],[73,229],[399,497],[723,764],[662,591],[600,417],[565,238],[530,59],[547,555],[564,1049],[104,281],[0,200],[-94,199],[-15,134],[55,84],[25,241],[-49,357],[47,133],[86,17],[23,167],[-44,117],[52,199],[24,150],[-39,133],[-80,47],[-77,303],[5,505],[-67,258],[-139,10],[-43,111],[53,212],[-40,176],[-51,143],[22,101],[34,136],[-126,515],[-113,284],[-153,179],[-192,75],[-56,84],[-91,226],[-424,171],[-177,213],[68,257],[-63,217],[-195,176],[-232,66],[-268,-45],[-275,76],[-281,199],[-93,153],[-6,114],[-94,83],[-264,-43],[-176,79],[-14,161],[-180,125],[-345,90],[-185,121],[-26,153],[-160,116],[-296,81],[-161,113],[-126,103],[-102,-66],[-242,-29],[-428,174],[-268,182],[-103,106],[-117,83],[-101,-34],[-69,41],[-151,176],[-287,82],[-779,9],[-264,159],[-98,134],[-193,73],[-403,-46],[-218,61],[-34,170],[-118,146],[-201,121],[-244,11],[-286,-100],[-283,36],[-278,174],[-121,143],[-122,10],[-129,-29],[-247,97],[-281,265],[-189,-5],[-51,10],[-78,166],[-119,48],[-162,-70],[-118,85],[-77,240],[-5,153],[-62,172],[-219,121],[-195,-3],[-135,-134],[-109,26],[-81,184],[-150,112],[-220,38],[-269,-82],[-319,-202],[-316,-42],[-314,119],[-155,116],[-148,104],[-308,-132],[-212,30],[-118,190],[-157,0],[-197,-192],[-193,1],[-191,192],[-169,26],[-145,-138],[-246,139],[-346,417],[-393,246],[-660,113]],[[691281,867061],[415,-622],[417,-257],[558,-99],[428,-435],[296,-769],[283,-428],[215,-90],[79,-103],[17,-171],[-55,-104],[-95,-216],[-36,-328],[88,-286],[8,-260],[-72,-233],[19,-151],[111,-70],[82,-188],[54,-307],[-31,-113],[-116,-17],[-142,-175],[-112,-218],[-24,-263],[48,-180],[121,-104],[202,-119],[95,-309],[-64,-367],[0,-248],[64,-205],[-48,-188],[-142,24],[-119,-130],[-55,-297],[-163,-131],[-270,36],[-287,-135],[-455,-461],[-139,-431],[-171,-126],[-248,34],[-163,-147],[-78,-328],[-139,-168],[-200,-5],[-39,-128],[51,-166],[-66,-281],[-207,-366],[-87,-308],[30,-250],[90,-147],[109,-72],[0,-137],[-55,-106],[-22,-210],[52,-163],[-48,-208],[-120,-48],[-32,-68],[56,-206],[-24,-188],[-139,-55],[-38,-150],[3,-138],[-36,-107],[-111,-34],[-21,-154],[44,-233],[-96,-137],[-120,34],[-163,-99],[-36,-441],[24,-424],[6,-267],[-48,-239],[-224,-56],[-192,-73],[-125,-178],[-66,-229],[-7,-280],[-125,-167],[-121,-77],[-56,-86],[-12,-221],[49,-259],[-30,-474]],[[897404,764077],[-503,651],[-452,403],[-250,100],[-199,-70],[-219,-202],[-239,-335],[-392,-319],[-865,-531],[-94,-152],[-68,-344],[-65,-804],[-420,-587],[-183,-445],[-87,-498],[-126,-233],[-166,32],[-167,164],[-250,442]],[[586771,683824],[123,48],[116,303],[150,576],[293,599],[436,622],[624,394],[1218,250]],[[307051,498533],[27,-402],[14,-882],[26,-83],[274,-846],[586,-878],[593,-378],[599,125],[670,287],[740,451],[631,192],[523,-68],[406,-203],[290,-338],[455,-333],[620,-326],[924,183],[1229,692],[1062,-60],[897,-814],[590,-302],[282,211],[211,-209],[208,-939],[-93,-441],[128,-756],[319,-1220],[157,-789],[-5,-360],[88,-251],[181,-141],[70,-262],[-41,-384],[81,-501],[200,-618],[80,-459],[-46,-669]],[[379420,397689],[-343,1117],[-74,548],[122,526],[109,494],[-52,125],[-176,-81],[-149,272],[-121,623],[-29,425],[64,229],[200,382],[228,56],[344,-65],[181,179],[184,343],[57,470],[88,203],[175,152],[193,393],[211,634],[187,348],[163,64],[192,447],[220,830],[398,609],[576,385],[471,-2],[365,-389],[354,82],[342,553],[301,281],[388,12],[600,212],[267,223],[134,306],[177,111],[220,-84],[379,446],[536,975],[542,436],[546,-104],[427,48],[308,199],[192,209],[75,221],[341,196],[909,258],[307,-491],[221,-89],[237,150],[202,355],[168,560],[231,230],[200,-25],[37,-20]],[[776106,671997],[89,-1638],[177,-1185],[294,-1277],[352,-1065],[409,-852],[223,-637],[37,-423],[80,-105],[124,212],[62,425],[0,637],[126,595],[252,554],[90,498],[-72,443],[35,476],[142,510],[74,475],[6,439],[87,229],[168,19],[103,-492],[40,-1004],[85,-590],[131,-178],[72,-360],[13,-542],[-76,-376],[-165,-212],[-38,-194],[88,-176],[13,-529],[-63,-880],[-72,-497],[-80,-116],[6,-625],[92,-1135],[13,-719],[-66,-306],[9,-278],[85,-252],[342,-197],[600,-144],[453,193],[305,529],[359,335],[413,141],[273,362],[133,584],[266,308],[398,32],[299,-262],[197,-556],[77,-577],[-42,-600],[-72,-405],[-101,-210],[-43,-347],[14,-485],[166,-206],[319,71],[276,374],[232,678],[337,560],[439,442],[260,172],[81,-99],[29,-175],[-23,-251],[58,-171],[141,-92],[186,154],[232,402],[193,202],[153,0],[82,178],[10,355],[48,253],[86,150],[-65,649],[-218,1148],[-119,1094],[-20,1041],[37,733],[95,425],[88,162],[81,-103],[133,20],[280,215],[147,587],[104,226],[108,62],[46,109],[-16,156],[108,254],[232,353],[194,495],[154,637],[-7,417],[-169,198],[-75,234],[19,271],[91,296],[293,525],[100,81],[104,-41],[110,-163],[164,82],[219,326],[51,466],[-118,607],[-21,506],[117,607]],[[773726,693098],[715,-1489],[157,-679],[-163,-365],[-164,-55],[-165,255],[-114,-90],[-63,-434],[107,-481],[277,-529],[128,-426],[-22,-326],[110,-390],[240,-454],[82,-320],[-77,-188],[66,-1199],[210,-2212],[57,-1497],[-97,-781],[28,-982],[229,-1775],[137,-3601],[210,-1661],[492,-1381]],[[598398,690941],[-63,-558]],[[598824,699188],[-71,-1919],[2,-28],[13,-204],[43,-700],[-25,-189],[-79,-608],[-9,-698],[24,-410],[52,-887]],[[599621,704366],[-467,-978],[-213,-1106],[-3,-29],[-64,-756],[11,-1248]],[[616571,531360],[176,-195],[74,-211],[31,-290],[115,-150],[36,-47],[271,-104],[341,-453],[412,-802],[146,-874],[-120,-945],[-6,-669],[109,-391],[-8,-338],[-125,-284],[-43,-415],[39,-544],[80,-341],[122,-136],[43,-218],[-35,-300],[-169,-459],[-302,-616],[-131,-522],[38,-426],[-40,-375],[-119,-324],[-21,-334],[77,-345],[-19,-335],[-115,-324],[-126,-79],[-139,169],[-95,-15],[-52,-199],[51,-184],[156,-171],[12,-182],[-132,-194],[56,-314],[242,-434],[91,-405],[-62,-375],[85,-556],[231,-735],[103,-557],[-26,-378],[20,-238],[2,-299],[105,-513],[275,-924],[123,-878],[-29,-833],[86,-719],[199,-608],[111,-734],[36,-1290],[-58,-1346],[-125,-707],[-212,-515],[-64,-448],[136,-607]],[[335916,419923],[94,937],[-5,730],[-108,1252],[99,346],[42,934],[19,1637],[61,1049],[103,458],[76,1718],[51,2978],[144,1854],[237,728],[128,812],[19,897],[72,658],[124,421],[71,493],[19,567],[-31,252],[-102,199],[-28,567],[57,1532]],[[540602,540470],[0,-2184],[-80,-285],[-264,-945],[-84,-621],[61,-423],[-133,-476],[-328,-529],[-179,-852],[-32,-1175],[151,-994],[334,-814],[225,-364],[112,-8],[86,-104],[12,-130],[135,-104],[160,199],[205,132],[202,13],[129,-158],[56,-330],[177,-173],[296,-14],[231,-148],[14,-23],[234,-398],[365,212],[233,-52],[222,-246],[131,-435],[39,-626],[164,-409],[286,-192],[353,-437],[418,-680],[211,-796],[5,-909],[134,-846],[261,-780],[31,-280],[-50,-235],[-199,-354],[-155,-638],[-62,-691],[31,-743],[82,-648],[131,-554],[-7,-150],[-11,-234],[-1,-2],[-1,-2],[-168,-216],[-99,-361],[-29,-503],[51,-612],[27,-148],[104,-574],[3,-479],[-107,-362]],[[575435,437094],[-14,-266],[-23,-458],[111,-609],[370,-1105],[138,-682],[218,-594],[342,-735],[242,-296],[141,143],[321,-88],[501,-320],[372,-659],[244,-1000],[45,-1116],[-153,-1235],[-166,-779],[-180,-325],[-267,-172],[-352,-20],[-214,-212],[-76,-406],[-124,-233],[-171,-58],[-67,-284],[39,-508],[-155,-649],[-347,-791],[-138,-642],[72,-494],[-6,-410],[-84,-325],[-174,-351],[-264,-377],[-282,-239],[-449,-150],[-841,-186],[-433,-451],[-306,-778],[-272,-251],[-238,277],[-153,-21],[-69,-316],[11,-210],[91,-105],[44,-207],[-3,-309],[-182,-233],[-361,-157],[-98,-234],[162,-310],[28,-323],[-109,-338],[-26,-1046],[54,-1756],[170,-1003],[285,-248],[375,124],[466,495],[319,169],[173,-155],[327,134],[480,424],[444,-61],[408,-546],[404,-132],[401,282],[155,-2],[144,-71],[51,10],[26,110],[62,102],[97,12],[511,-85],[398,-261],[368,-451],[292,-175],[216,101],[359,-197],[504,-495],[386,-255],[316,12],[159,6]],[[582204,488169],[647,-371],[207,-259],[-18,-270],[39,-136],[96,-4],[90,-141],[126,-422],[-85,-350],[0,-177],[56,-120],[262,293],[469,708],[325,638],[180,568],[39,409],[1,12],[-101,271],[-21,233],[-5,65],[25,175],[23,150],[247,531],[447,738],[230,542],[15,346],[50,245],[87,143],[30,181],[43,251],[20,241],[40,480],[-6,97],[-28,490],[-126,452],[-34,691],[57,928],[-13,251],[-28,521],[-140,616],[-143,366],[-180,143],[-39,31],[-50,136],[-292,798],[-2,7],[-3,12],[-102,443],[19,285],[119,121],[219,-43],[206,109],[51,69],[141,190],[187,74],[180,-108],[39,-60],[149,-232],[194,-474],[313,-337],[433,-203],[359,-26],[284,151],[171,329],[57,507],[143,390],[33,41],[307,372]],[[937866,826670],[171,-940],[152,-298],[190,30],[187,171],[273,469],[394,1001],[223,416],[185,163],[119,258],[52,354],[343,456],[633,558],[481,765],[328,974],[349,675],[368,378],[212,307],[55,237],[-1,158],[-55,79],[14,66],[61,151],[19,75],[47,117],[126,135],[229,103],[334,70],[158,119],[-18,170],[52,183],[124,195],[51,391],[-20,587],[-100,436],[-181,284],[2,73],[24,69],[31,107],[-15,212],[127,270],[270,327],[216,438],[162,548],[267,370],[371,193],[252,250],[134,308],[1081,-73],[3041,-679],[353,-211],[383,-65],[367,215],[548,23],[245,-172]],[[815180,512907],[-644,-1399],[-776,-650],[-445,-185],[-371,64],[-345,-189],[-319,-442],[-470,-328],[-621,-215],[-219,-218],[-11,-309],[-80,-259],[-214,-239],[-53,-190],[17,-130],[-68,-198],[-185,-263],[-153,-50],[-98,-63],[-37,-227],[-38,-179],[-108,-1],[-66,-126],[-39,-373],[-113,-319],[-100,-32],[-170,45],[-101,-97],[-106,52],[-70,23],[-62,-121],[-53,40],[-85,103],[-71,-100],[-140,-60],[-219,78],[-148,-61],[-76,-199],[-177,-146],[-278,-90],[-167,124],[-112,103],[-101,-79],[-119,59],[-110,98],[-92,0],[-35,-150],[-66,-85],[-75,17],[-88,-144],[-57,-215],[-129,-166],[-231,-87],[-440,146],[-220,-83],[-253,-145],[-165,-535],[-381,-495],[-595,-456],[-205,-38],[-193,90],[-137,198],[-188,218],[-325,214],[-191,267]],[[561769,439321],[-47,1161],[-10,238],[-107,711],[47,249],[24,123],[64,81],[150,188],[31,231],[42,316],[-66,826],[-4,581],[58,335],[-78,813],[-213,1291],[-302,1051],[-390,811],[-92,281],[-73,222],[-91,273],[-120,742],[1,74],[42,1615],[2,86],[211,2807],[-27,2082],[-264,1355],[-57,1457],[148,1559],[2,61],[21,1006],[-157,866],[-258,977],[-403,860],[-948,1604],[-742,931],[-434,997],[-375,1373],[-188,834],[-3,295],[163,394],[327,493],[222,476],[174,689],[390,1518],[102,1400],[-55,1786],[-247,1113],[-439,438],[-333,486],[-230,532],[-233,328],[-161,83],[-167,-26],[-80,-115],[-55,-250],[-88,-167],[-106,-3],[-389,448],[-671,900],[-449,478],[-227,58],[-696,666],[-1164,1277],[-696,687],[-345,149],[-294,15],[-267,283],[-339,555],[-450,268],[-560,-18],[-366,142],[-171,302],[-170,160],[-168,15],[-517,447],[-199,203]],[[548209,486894],[-820,832],[-228,42],[-258,-122],[-390,-79],[-628,97],[-430,-21],[-230,-138],[-139,-248],[-113,-330]],[[869817,427212],[183,-726],[65,-505],[8,-525],[-47,-406],[-102,-285],[-110,-138],[-178,15],[-286,169],[-185,-152],[-181,-416],[-147,-667],[-114,-919],[-127,-609],[-140,-300],[-211,-255],[-283,-211],[-457,-662],[-629,-1113],[-397,-571],[-247,-42]],[[818782,516210],[32,73],[284,666],[224,279],[357,97],[491,369],[275,115],[221,-16],[139,-108],[55,-199],[118,-43],[180,112],[212,431],[243,750],[179,97],[114,-555],[201,-259],[289,37],[218,432],[147,827],[366,1064],[585,1299],[333,668],[82,38],[92,-135],[102,-307],[155,37],[208,380],[266,56],[324,-268],[193,-61],[62,147],[107,43],[153,-60],[160,192],[167,447],[162,222],[143,37],[159,5]],[[587695,883284],[398,-299],[333,-313],[308,6],[810,510],[161,297],[176,476],[58,313],[-59,148],[9,277],[76,404],[-134,427],[-346,449],[-82,306],[181,161],[143,241],[104,320],[-100,415],[-306,511],[-138,397],[15,145]],[[589010,886773],[435,-448]],[[589302,888475],[14,137],[292,293],[555,302],[362,344],[170,386],[255,126],[342,-131],[240,127],[137,386],[179,178],[334,-45],[2275,-758],[1058,-182],[899,212],[222,28]],[[588762,889161],[540,-686]],[[575998,898636],[-100,-363],[-145,-193],[-225,-144],[-804,44],[-1382,232],[-937,270],[-492,308],[-501,7],[-511,-295],[-346,-483],[-271,-1004],[-991,-443],[-411,-415],[-242,-800],[-229,-313]],[[579947,908317],[415,-547],[67,-301],[-212,-355],[-77,-520],[-134,-367],[-216,-387],[-476,-570],[-733,-752],[-286,-553],[163,-355],[-51,-128],[-264,99],[-130,-62],[2,-224],[-64,-145],[-196,-96],[-1067,-334],[-299,-308],[111,-395],[-66,-553],[-366,-1068]],[[792066,935930],[-788,-163],[-680,-465],[-519,-146],[-636,-416],[-83,-327],[-778,-346],[-1472,-364],[-783,-305],[-93,-247],[-441,-548],[-789,-849],[-659,-494],[-795,-208]],[[756166,919438],[1781,-228],[1019,-131],[1090,-224],[312,-208],[758,-51],[1204,106],[1056,418],[906,731],[721,438],[537,145],[405,329],[275,513],[92,343],[-90,174],[-28,318],[33,463],[-303,235],[-980,47],[-163,390],[-464,233],[-1201,-111],[-938,151],[-675,412],[-16,497],[645,582],[1377,95],[3165,-589],[3774,-193],[1306,68],[95,265],[216,225],[338,184],[201,262],[63,339],[45,473],[345,417],[1110,-198],[738,-39],[368,121],[453,454],[687,1093]],[[783550,931052],[-1373,-801],[-1397,-381],[-1878,-230],[-1374,-317],[-871,-404],[-158,-450],[-69,-474]],[[584364,519595],[187,1949],[-211,958],[-235,313],[-331,-13],[-419,288],[-508,590],[-404,334],[-303,77],[-171,332],[-40,587],[-151,301],[-260,16],[-283,463],[-304,911],[-284,367],[-265,-174],[-343,-25],[-634,189]],[[156167,749759],[-159,151],[-129,355],[-152,609],[-147,337],[-215,98],[-68,3]],[[161641,755518],[67,-216],[-42,-199],[-125,-261],[-154,-63],[-182,136],[-237,-179],[-292,-493],[-279,-263],[-266,-33],[-262,-205],[-258,-377],[-270,-121],[-281,135],[-205,15],[-195,-155],[-325,-237],[-279,27],[-341,213],[-332,-325],[-322,-862],[-149,-788],[24,-716],[-90,-567],[-203,-421],[-196,-108],[-280,304]],[[562719,867572],[-499,487],[-161,52],[10,-222],[-121,-52],[-254,117],[-438,405],[-933,1037],[-171,150],[-140,172]],[[903377,871384],[1082,256],[544,-133],[394,-220],[424,-354],[371,-491],[317,-629],[396,-477],[476,-324],[429,-4],[383,317],[285,86],[185,-146],[295,134],[404,415],[173,694],[-57,974],[-161,664],[-263,355],[-12,564],[239,774],[341,354],[443,-65],[262,-128],[82,-190],[190,-137],[299,-83],[282,-293],[263,-501],[344,-119],[425,264],[353,-75],[282,-413],[104,-338],[-112,-392],[290,-758],[57,-329],[-81,-152],[10,-138],[100,-126],[283,40],[464,204],[481,-10],[498,-226],[339,83],[180,392],[97,364],[14,336],[140,226],[266,115],[161,156],[57,197],[235,259],[414,323],[349,101],[283,-122],[381,96],[479,313],[312,332],[145,353],[95,496],[46,640],[-34,498],[-114,353],[37,273],[189,193],[586,-40],[984,-271],[579,-353],[177,-433],[166,-192],[156,49],[185,221],[215,392],[139,-56],[63,-503],[194,-259],[325,-13],[193,61],[61,135],[-1,177],[-63,220],[157,488],[377,756],[120,517],[-137,276],[14,348],[165,420],[64,373],[-39,328],[38,258],[114,189],[37,295],[-39,399],[185,295],[410,190],[307,369],[205,548],[489,716],[775,884],[632,486],[489,87],[602,258],[715,428],[426,329],[137,229],[68,245],[0,262],[-122,69],[-245,-125],[-106,139],[31,401],[-181,353],[-396,307],[-265,624],[-136,941],[-543,374],[-951,-194],[-753,88],[-555,372],[-566,199],[-577,26],[-343,129],[-111,232],[-333,277],[-555,322],[-454,370],[-352,417],[-191,301],[-30,186],[-151,144],[-271,102],[-157,165],[-42,226],[-102,165],[-162,103],[-266,395],[-371,688],[-179,418],[13,150],[-252,365],[-517,580],[-292,584],[-66,587],[29,321],[61,123],[23,160],[-33,239],[70,122],[405,-60],[258,136],[120,360],[70,70],[119,1],[295,-142],[333,31],[374,202],[241,31],[108,-142],[53,58],[0,257],[108,278],[215,299],[79,226],[-57,155],[397,333],[1333,846],[108,158],[-14,169],[-137,179],[19,111],[176,43],[230,285],[284,527],[356,406],[426,284],[237,285],[48,287],[432,247],[815,208],[422,164],[28,122],[-97,259],[-223,398],[40,365],[305,331],[1232,419],[2158,506],[1358,157],[559,-192],[691,-21],[826,151],[322,125],[83,83],[10,124],[87,147],[183,111],[18,102],[-50,131],[-378,260],[-189,324],[1,262],[38,151],[305,100],[684,-140],[458,13],[351,252],[1775,656],[615,485],[49,531],[279,562],[511,591],[177,505],[-157,418],[144,238],[444,59],[399,226],[355,392],[286,104],[327,-280],[1090,196],[271,48],[91,-86],[8,-192],[-38,-248],[100,-140],[502,-224],[2032,-542],[1200,-167],[335,179],[490,-23]],[[748296,745951],[-1297,235],[-571,104],[-811,322],[-378,420],[-443,261],[-510,104],[-434,193],[-356,285],[-362,92],[-366,-99],[-384,84],[-401,266],[-248,313],[-94,359],[-256,443],[-418,526],[-418,122],[-629,-423]],[[558152,549203],[-293,-492],[-173,-150],[-149,27],[-112,-158],[-74,-345],[-138,-287],[-305,-347],[-288,-117],[-222,42],[-251,161],[-298,335],[-343,508],[-302,685],[-391,1291]],[[81052,907950],[-198,-1117],[-266,-631],[-108,-408],[-37,-397],[138,-370],[314,-343],[245,-377],[178,-412],[-1,-461],[-180,-508],[-671,-599],[-1162,-689],[-469,-339],[-158,-355],[-92,-700],[-193,-479],[-296,-257],[-408,-202],[-519,-148],[-490,-19],[-461,110],[-480,-119],[-499,-347],[-444,-187],[-390,-25],[-227,-107],[-95,-284],[-240,127],[-509,-176],[-858,-437],[-626,-666],[-395,-896],[-494,-712],[-594,-527],[-497,-237],[-400,53],[-178,179],[-93,115],[-372,182],[-138,162],[-107,114],[-147,-52],[-75,86],[-6,159],[-116,185],[-241,25],[-367,-136],[-322,30],[-278,194],[-392,57],[-505,-83],[-74,-126],[-17,-145],[-69,-89],[-216,-105],[-58,-110],[41,-150],[-42,-314],[-367,-456],[-60,-174],[41,-177],[36,-130],[-42,-118],[53,-145],[124,-50],[98,-26],[60,-236],[66,-104],[27,-148],[-33,-109],[-95,-70],[-17,-99],[-8,-120],[-99,-67],[-200,6],[-199,7],[-188,70],[24,127],[-123,156],[-269,184],[-242,91],[-216,-2],[-258,-145],[-302,-289],[-429,-92],[-557,104],[-326,-8],[-94,-123],[-115,-327],[23,-110],[93,-43],[51,-144],[9,-244],[-59,-146],[42,-228],[-69,-262],[-28,-306],[42,-474],[145,-168],[247,138],[204,-23],[160,-182],[-61,-97],[-283,-11],[-128,-131],[27,-252],[-132,-233],[-437,-322],[-82,-98]],[[720314,603793],[955,655],[448,75],[259,-285],[226,137],[194,560],[163,-26],[131,-614],[259,-337],[386,-59],[341,-261],[295,-460],[241,-485],[187,-510],[138,-625],[137,-1108],[27,-253],[-3,-620],[-39,-274],[-35,-221]],[[704989,612141],[282,-362],[178,-451],[255,-992],[179,-317],[26,-320],[-67,-426],[49,-493],[164,-558],[67,-434],[-31,-312],[109,-267],[248,-224],[133,-214],[18,-203],[55,-89],[91,25],[79,-132],[97,-434],[125,-500],[140,-292],[199,-252],[37,-192],[-124,-131],[-11,-259],[101,-387],[262,-36],[423,314],[297,-86],[170,-486],[143,-70],[114,345],[176,134],[240,-77],[184,-167],[127,-258],[55,-260],[-17,-264],[132,-101],[279,62],[240,-112],[201,-287],[246,-208],[292,-128],[204,-224],[117,-319],[182,-219],[248,-121],[532,356],[817,830],[509,604],[199,376],[287,-34],[561,-665],[990,-394],[637,-689],[613,-1115],[354,-517],[95,80],[48,132],[0,184],[108,158],[216,133],[380,-6],[543,-145],[310,100],[78,343],[143,289],[313,353]],[[70221,878610],[-342,-349],[-230,-80],[-232,72],[-319,-81],[-407,-233],[-270,-17],[-133,201],[-209,20],[-286,-160],[-67,-136],[153,-111],[-114,-264],[-380,-417],[-210,-290],[-38,-161],[21,-110],[81,-60],[52,-190],[22,-322],[-24,-223],[-105,-187],[-586,-522],[-326,-507],[-261,-665],[-56,-621],[147,-577],[0,-344],[-147,-110],[-115,-220],[-82,-328],[-533,-466],[-984,-604],[-1031,63],[-1076,728],[-703,258],[-330,-212],[-216,-36],[-101,139],[-177,-310],[-253,-758],[-336,-490],[-419,-221],[-461,-40],[-505,141],[-820,27],[-1706,-128],[-1150,-172],[-553,-232],[-342,-350],[-185,-335],[-31,-319],[-103,-170],[-175,-19],[-109,-131],[-43,-243],[-212,-310],[-381,-376],[-235,-383],[-89,-390],[-207,-318],[-324,-247],[-261,-70],[-199,108],[-84,-61],[32,-228],[-19,-161],[-72,-95],[-130,34],[-189,163],[-103,-34],[-16,-231],[-78,-113],[-141,7],[-47,-79],[44,-164],[-77,-115],[-299,-100],[-181,-112]],[[552212,439280],[-248,2228],[-210,876],[-28,436],[84,286],[-115,487],[-315,688],[-47,280],[19,141],[24,132],[-39,210],[38,289],[114,367],[144,314],[171,263],[76,445],[-19,630],[-61,507],[-105,385],[-179,344],[-254,303],[-259,638],[-262,974],[-216,613],[-169,251],[-105,42],[-96,80],[-37,227],[20,220],[-21,611],[-80,805],[-209,946],[-339,1086],[-301,695],[-263,302],[-152,537],[-62,1159],[-52,171],[-16,54],[-741,2450],[-196,751],[-54,206],[-30,82],[-63,168],[-160,330],[-220,625],[-91,593],[6,87],[33,475],[-129,757],[-296,954],[-171,800],[-23,110],[-94,868],[-23,743],[9,120],[38,498],[-56,451],[-1,5],[-161,294],[-103,441],[-47,584],[-23,299],[-172,2950],[-19,1380],[76,795],[0,1077],[-76,1358],[-1,897],[74,434],[4,422],[-65,409],[205,387],[477,363],[310,333],[143,302],[200,116],[257,-70],[271,492],[285,1053],[100,779],[-85,506],[19,420],[185,502],[31,433],[-57,563]],[[772222,810262],[-337,28],[-488,-229],[-1126,-712],[-2150,-77],[-801,55],[-170,161],[-209,0],[-372,-242],[-514,-279]],[[304222,821446],[166,11],[91,157],[71,308],[-309,27],[-1032,-378]],[[302453,822536],[-446,433],[-485,81],[-1012,-188]],[[299900,822580],[-163,25],[-21,80],[66,144],[-10,84],[-85,25],[-464,-224],[-194,54],[-109,265],[-316,96],[-526,-73],[-97,148],[-349,361],[-807,599],[-514,294],[-220,-12],[-358,-218],[-495,-424],[-689,-338],[-1324,-380]],[[284945,823759],[-1,1]],[[284944,823760],[-571,131],[-555,-80],[-729,-248],[-839,-16],[-1421,328],[-62,36],[-61,48]],[[769281,694728],[316,-1618],[181,-681],[152,-286],[88,-385],[23,-486],[-31,-329],[-86,-172],[-15,-375],[57,-581],[152,-500],[249,-420],[125,-522],[2,-625],[326,-983],[974,-2013],[324,-681],[207,-688],[198,-921],[145,-473],[91,-23],[136,-256],[179,-489],[157,-662],[133,-835],[203,-708],[272,-581],[103,-492],[-67,-400],[-6,-291],[86,-269],[128,-1128],[157,-830],[229,-908],[150,-1031],[71,-1153],[137,-882],[205,-609],[67,-521],[-71,-433],[-14,-426],[63,-630],[168,-825],[42,-404],[-27,-259],[44,-292],[115,-325],[68,-526],[19,-728],[-48,-866],[-113,-1002],[-29,-597],[57,-192],[19,-700],[-20,-1208],[14,-911],[48,-613],[158,-743],[267,-873],[88,-727],[-91,-582],[91,-637],[273,-692],[239,-406],[203,-119],[281,-544],[357,-968],[307,-540],[255,-112],[155,-149],[55,-184],[93,18],[131,222],[177,118],[225,15],[241,-399],[257,-812],[102,-928],[-52,-1045],[-121,-611],[-192,-177],[-78,-305],[36,-434],[-126,-582],[-289,-731],[-186,-654],[-128,-867],[-199,-1155],[109,-760],[352,-748],[223,-799],[95,-849],[189,-639],[282,-428],[139,-364],[-5,-300],[63,-313],[132,-327],[32,-217],[-70,-108],[28,-114],[125,-123],[78,-250],[29,-377],[152,-555],[274,-735],[320,-462],[365,-189],[140,-139],[-87,-89],[-12,-289],[-5,-120],[53,-730],[-185,-664],[-1,-4],[-39,-55],[-386,-550],[-300,-307],[-174,-10],[-149,-362],[-122,-715],[-112,-372],[-14,-48],[-14,-13],[-117,-112],[-85,-270],[-6,-65],[-32,-352],[75,-223],[190,-29],[14,-116],[-160,-204],[-200,-72],[-238,61],[-123,-89],[-103,-74],[-213,-387],[-91,-418],[-91,-416],[-151,-1282],[-33,-556],[-8,-121],[69,-72],[77,129],[19,33],[122,394],[133,223],[144,51],[117,-205],[36,-64],[163,-589],[166,-335],[172,-80],[17,-99],[81,-475],[24,-1066],[154,-401],[284,264],[283,46],[283,-172],[217,-4],[151,164],[173,-19],[194,-201],[306,-97],[418,6],[598,395],[778,783],[438,380],[100,-23],[88,-148],[78,-274],[-255,-637],[-586,-1000],[-296,-770],[-5,-539],[57,-364],[119,-189],[2,-278],[-114,-367],[-71,-764],[-29,-1163],[20,-762],[71,-362],[-42,-566],[-155,-772],[-313,-858],[-471,-946],[-222,-847],[28,-749],[112,-534],[278,-459],[13,-22]],[[514808,812915],[-472,181],[-451,-96],[-589,-312],[-530,-160],[-472,-7],[-405,134],[-508,416]],[[835134,862800],[-848,-43],[-442,-275],[-319,-521],[-542,-192],[-765,137],[-678,-359],[-592,-857],[-508,-478],[-426,-99],[-355,-188],[-284,-277],[-181,-274],[-78,-272],[-174,-195],[-269,-118],[-901,476],[-1532,1070],[-881,874],[-231,677],[-228,486],[-224,295],[-596,343],[-966,391],[-807,547],[-647,702],[-820,344],[-992,-13],[-703,-162],[-415,-312],[-538,-742],[-662,-1171],[-483,-642],[-302,-113],[-572,-686],[-842,-1260],[-777,-782],[-713,-305],[-409,-318],[-105,-331],[-147,-233],[-284,-201],[-276,-1071],[-416,-529],[-648,-345],[-418,-111],[-190,124],[-265,-182],[-342,-487],[-485,-505],[-627,-523],[-336,-493],[-43,-464],[-194,-176],[-343,112],[-123,-67],[-55,-213],[-343,-303],[-681,20],[-774,-105],[-865,-231],[-479,-392],[-93,-556],[-194,-512],[-298,-469],[-247,-283],[-198,-99],[-240,59],[-282,218],[-237,77],[-192,-61],[-400,-317],[-610,-574],[-321,-413],[-32,-252],[-115,-173],[-195,-93],[-205,-289],[-214,-484],[-285,-237],[-357,10],[-185,-164],[-12,-338],[-201,-254],[-146,-140],[-29,-147],[67,-235],[-129,-283],[-485,-498],[-217,-180],[-72,-126],[-24,-174],[-55,-83],[-128,17],[-87,-100],[-45,-216],[-157,-129],[-268,-41],[-187,74],[-106,189],[-178,103],[-249,16],[-195,-109],[-142,-235],[-54,-225],[33,-214],[-49,-294],[-132,-374],[-328,-238],[-524,-100],[-369,16],[-215,133],[-255,-235],[-295,-603],[-456,-449],[-617,-296],[-253,-240],[109,-183],[332,-88],[556,7],[393,-157],[232,-321],[99,-336],[-32,-351],[-85,-294],[-137,-238],[-396,-266],[-656,-296],[-354,-292],[-51,-289],[117,-387],[286,-484],[86,-556],[-116,-630],[-221,-674],[-327,-719],[-260,-845],[-193,-973],[-330,-762],[-467,-554],[-242,-560],[-17,-567],[106,-370],[228,-174],[123,-395],[17,-617],[-46,-586],[-109,-557],[100,-425],[309,-292],[348,-572],[578,-1277],[392,-90],[185,-197],[110,-334],[169,-226],[229,-118],[691,-6],[1729,160],[193,-204],[156,-30],[184,78],[110,211],[35,344],[174,280],[313,217],[304,405],[295,593],[264,353],[349,173],[662,-280],[237,-275],[33,-364],[-84,-334],[-300,-459]],[[851915,933077],[575,-1443],[342,-619],[298,-275],[113,-317],[-72,-360],[57,-598],[185,-838],[81,-767],[-23,-696],[186,-650],[394,-603],[133,-491],[-129,-381],[33,-327],[-160,-811],[-899,-802],[-838,-387],[-777,27],[-773,-106],[-769,-238],[-427,-223],[-85,-207],[175,-278],[437,-347],[80,-437],[-277,-527],[-405,-452],[-802,-563],[-788,-415],[-340,-461],[-155,-645],[-337,-803],[-499,-1065],[-279,-377],[-1029,-917],[-437,-501],[-188,-391],[-113,-614],[-39,-839],[-123,-890],[-205,-943],[-220,-739],[-235,-536],[-430,-507],[-625,-480],[-442,-960],[-259,-1441],[104,-1364],[467,-1289],[375,-1413],[285,-1538],[243,-923],[303,-463],[114,-244],[383,-1557],[421,-1039],[510,-880],[206,-828],[-96,-778],[48,-575],[193,-372],[101,-370],[10,-368],[85,-383],[161,-398],[354,-513],[547,-626],[455,-357],[364,-88],[375,-222],[386,-358],[263,-421],[137,-483],[668,-531],[1198,-576],[690,-443]],[[851175,886437],[230,-148],[963,-907],[1220,-1532],[815,-720],[818,-419],[549,-443],[280,-468],[314,-336],[349,-205],[621,-65],[895,74],[625,-29],[533,-198],[573,-1090],[143,-627],[-96,-527],[54,-451],[203,-373],[190,-666],[178,-959],[227,-747],[276,-536],[118,-487],[-41,-439],[-109,-308],[-177,-179],[-114,-470],[-54,-763],[-235,-813],[-417,-862],[-451,-691],[-724,-777],[-1289,-1041],[-752,-337],[-644,18],[-988,-245],[-1334,-508],[-1016,-228],[-699,53],[-672,-64],[-644,-180],[-623,-335],[-601,-489],[-841,-440],[-1621,-587],[-283,-281],[-452,-132],[-714,-75],[-540,-174],[-366,-274],[-1653,-138],[-3486,-3],[-1788,131],[-635,266],[-730,-120],[-826,-504],[-456,-381],[-129,-389]],[[843205,762800],[166,-502],[-27,-644],[-165,-953],[-30,-643],[104,-332],[31,-511],[-40,-689],[119,-592],[280,-495],[172,-429],[63,-362],[95,-215],[-167,-467],[-716,-733],[-451,-317],[-187,98],[-294,-127],[-402,-353],[-388,-754],[-374,-1156],[-225,-1079],[-114,-1503],[-497,-656],[-157,-476],[110,-465],[-86,-307],[-232,-232],[-88,-384],[-160,-277],[-234,-169],[-13,-255],[-20,-542]],[[135076,867532],[145,-782],[207,-168],[316,187],[244,38],[258,-164],[924,-1133],[681,-575],[747,-396],[722,-685],[698,-977],[611,-633],[523,-289],[436,-439],[346,-587],[312,-309],[278,-31],[227,-154],[175,-278],[416,-277],[656,-276],[471,121],[287,517],[322,203],[356,-112],[287,-203],[218,-293],[43,-352],[-132,-410],[85,-207],[304,-1],[263,-151],[336,-454],[420,143],[424,-58],[568,-211],[627,-381],[688,-549],[493,-187],[299,177],[172,6],[381,-428],[626,-365],[597,-68],[568,228],[410,380],[254,532],[191,292],[105,375],[100,288],[256,376],[390,-27],[522,-431],[181,-188],[39,-346],[182,-18],[91,211],[325,686],[197,849],[70,1013],[339,828],[608,643],[207,549],[-195,454],[-123,470],[-52,487],[3,357],[59,226],[172,187],[87,389],[116,540],[138,320],[55,160],[136,286],[264,330],[126,110],[370,26],[327,202],[369,486],[966,528],[1564,569],[892,466],[218,365],[80,311],[-58,257],[139,265],[337,274],[117,272],[-164,514]],[[574893,365516],[145,398],[110,300],[89,243],[169,317],[44,2],[65,4],[154,197],[86,166],[115,223],[238,240],[43,14],[234,76],[179,259],[40,210],[42,215],[142,207],[159,-9],[43,-3],[116,135],[6,67],[22,216],[123,242],[88,82],[128,120],[114,238],[9,259],[1,16],[258,670],[145,304],[361,760],[477,592],[447,121],[424,222],[401,322],[294,507],[188,690],[324,385],[600,105],[75,14],[12,2],[110,38],[684,237],[324,-110],[340,-114],[374,-295],[427,-337],[749,-224],[185,49],[514,135],[567,42],[437,-101],[172,-109],[136,-87],[37,-23],[251,-338],[83,-60],[208,-149],[331,-81],[330,-322],[329,-560],[356,-824],[383,-1087],[288,-663],[193,-240],[119,-333],[46,-427],[152,-573],[261,-721],[254,-1251],[249,-1783],[265,-1200],[422,-925],[130,-631],[95,-213],[103,-4],[187,-261],[272,-516],[207,-246],[143,26],[84,-85],[26,-196],[154,-251],[283,-306],[150,-124],[69,7],[46,84],[29,69],[42,35],[45,-74],[81,-422],[95,-745],[-49,-542],[-192,-337],[-83,-265],[43,-274]],[[540736,545395],[110,-221],[-48,-451],[-255,-1131],[-345,-538],[-113,-472],[4,-585],[-42,-484],[-87,-383],[-200,-299],[-312,-214],[-198,-448],[-83,-680],[-94,-349],[-103,-17],[-107,-180],[-110,-343],[-116,-155],[-122,33],[-48,-173],[27,-377],[-158,-370],[-341,-364],[-232,-67],[-185,343],[-173,141],[-120,-114],[-124,-323],[-39,-435],[48,-549],[-61,-503],[-169,-458],[-183,-238],[-296,-27]],[[793579,848999],[333,-406],[190,-103],[237,97],[658,171],[334,-100],[229,-313],[367,-296],[989,-481],[465,-132],[322,4],[181,140],[218,-9],[256,-158],[262,93],[269,345],[240,163],[210,-19],[360,370],[508,759],[333,369],[156,-18],[252,369],[348,759],[110,562],[-127,365],[-8,297],[111,228],[-39,344],[-188,460],[-29,351],[128,242],[39,481],[-49,719],[-155,598],[-389,715],[-329,875],[-167,301],[-114,19],[-27,211],[62,403],[-76,339],[-215,273],[61,409],[336,544],[44,447],[-24,251],[36,388],[-27,294],[-88,201],[-2,221],[-66,486],[-390,244],[-217,271],[-44,300],[21,284],[87,270],[-4,333],[88,184],[64,176],[-6,231],[-76,182],[2,327],[67,245],[180,708],[69,436],[-44,163],[-97,82],[-152,-2],[-59,233],[34,467],[119,258],[203,48],[71,114],[-63,179],[-72,328],[23,226],[173,347],[19,303],[-134,261],[-28,260],[78,259],[5,245],[125,264],[89,228],[-36,227],[-89,152],[-75,175],[-35,133],[39,375],[53,379],[40,296],[113,246],[374,374],[62,298],[-69,298],[11,329],[152,385],[29,454],[-94,524],[-87,273],[-79,21],[-48,-121],[-17,-263],[-92,-199],[-165,-133],[-165,31],[-163,196],[-111,320],[78,502],[312,331],[955,337],[501,238],[44,137],[-21,146],[-88,153],[-329,47],[-571,-59],[-192,156],[187,370],[356,213],[525,56],[104,189],[-112,172],[-224,39],[-285,36],[-142,79],[-360,-8],[-190,103],[-21,214],[89,220],[200,225],[7,244],[-187,263],[-202,91],[-219,-80],[-140,-247],[-62,-414],[-111,-137],[-160,139],[-67,194],[28,248],[-120,78],[-268,-93],[-181,51],[-95,194],[-143,110],[-193,25],[-93,130],[-137,210],[-261,188],[-1248,178],[-56,92],[82,178],[220,264],[19,276],[-182,285],[-329,109],[-476,-67],[-356,-186],[-235,-303],[-251,-38],[-261,48],[-202,-151],[-83,-266],[-122,-45],[-577,150],[-478,-67],[-379,-285],[-345,-37],[-313,211],[-248,270],[-185,330],[-950,316],[-1717,302],[-972,334],[-228,367],[-54,278],[-189,303],[-418,207],[-598,467],[-670,787],[-554,416],[-436,47],[-373,-78],[-463,-302],[-1053,278],[-583,277],[-463,367],[-515,-6],[-567,-380],[-568,-40],[-570,299],[-409,112],[-249,-76],[-260,142],[-272,359],[-310,131],[-348,-98],[-323,-269],[-298,-439],[-1350,-153],[-2403,134],[-1260,-3],[-116,-141],[40,-174],[197,-207],[57,-213],[-82,-218],[-238,-191],[-393,-162],[-71,-261],[254,-361],[89,-251],[-75,-142],[-619,79],[-1164,300],[-1023,67],[-882,-165],[-552,55],[-221,275],[-349,163],[-475,51],[-591,263],[-708,474],[-564,197],[-421,-78],[-556,199],[-690,476],[-862,182],[-1033,-113],[-1204,359],[-1372,831],[-1079,384],[-786,-65],[-461,-138],[-136,-212],[-227,-13],[-477,277]],[[744336,894552],[474,320],[267,81],[219,-50],[220,119],[221,285],[417,223],[613,161],[1040,-380],[1469,-922],[772,-545],[75,-170],[-26,-266],[-128,-361],[-41,-721],[48,-1081],[150,-592],[253,-105],[210,-194],[170,-286],[83,-359],[-3,-434],[95,-307],[193,-183],[299,-109],[406,-34],[457,-342],[509,-650],[936,-534],[2047,-630]],[[572914,436404],[-232,421],[-131,81],[-107,-119],[-139,-8],[-255,154],[-145,181],[-128,447],[-161,772],[-185,506],[-211,241],[-103,257],[6,274],[-40,185],[-84,97],[-22,227],[40,358],[123,285],[205,213],[115,541],[26,869],[-108,730],[-240,591],[-192,239],[-141,-115],[-114,10],[-88,133],[-8,326],[73,517],[-1,532],[-76,545],[79,598],[233,648],[59,679],[-114,710],[-45,616],[35,781],[164,1114],[138,225],[166,-295],[162,16],[158,325],[160,142],[161,-42],[179,396],[197,835],[61,679],[-77,524],[153,512],[381,499],[169,457],[-45,412],[39,317],[123,221],[55,211],[-13,203],[64,136],[215,105]],[[574806,472649],[201,1372],[31,545],[-73,176],[-80,789],[-87,1404],[-135,908],[-182,413],[-448,658],[-715,904],[-543,868],[-372,831],[-147,895],[76,960],[-76,866],[-229,771],[-71,924],[85,1079],[38,931],[-9,783],[-51,508],[-141,351]],[[571878,489540],[-245,1748],[-9,2031],[145,2897],[-54,1988],[-378,1619],[-409,1161],[-194,791],[-114,809],[56,941],[227,1073],[79,998],[-70,924],[-109,678],[-222,651],[-428,672],[-330,285],[-564,184],[-396,226],[-280,302],[-294,454],[-313,284],[-498,171]],[[173144,868145],[-104,350],[-428,281],[-787,328],[-501,-90],[-217,-509],[-830,-407],[-1443,-306],[-1536,331],[-1631,967],[-871,588],[-113,208],[-11,271],[90,331],[4,283],[-80,234],[-429,171],[-779,109],[-367,147]],[[163111,871432],[-231,92],[-628,556],[-1795,852],[-1020,292],[-844,17],[-646,202],[-692,627],[-39,93],[129,468],[294,844],[128,953],[-40,1064],[-99,795],[-158,528],[-299,506],[-442,482],[-294,581],[-145,678],[-262,810],[-379,941],[-326,633],[-275,325],[-231,158],[-186,-10],[-159,134],[-132,275],[-37,344],[60,412],[-52,342],[-161,270],[-217,201],[-272,129],[-298,423],[-323,715],[-114,525],[96,332],[-86,216],[-268,98],[-194,234],[-122,371],[-616,285],[-678,122]],[[151058,889347],[-434,78],[-699,283],[-430,548],[-771,758],[-519,358],[-787,316],[-367,23],[-764,468],[-1927,1382],[-1029,68],[-520,135],[-353,225],[-97,346],[-187,303],[-425,450],[-264,492],[-102,535],[26,403],[153,271],[319,280],[486,288],[226,246],[-33,204],[-186,182],[-339,160],[-616,565],[-893,970],[-802,623],[-709,277],[-454,377],[-196,477],[-132,619],[-67,760],[-128,494],[-190,227],[-338,170],[-580,86],[-151,82],[-134,118],[-206,276],[-205,238],[-567,165],[-770,-90],[-1304,-414],[-1840,-739],[-1253,-194],[-668,350],[-480,390],[-293,432],[-281,210],[-270,-12],[-417,288],[-566,588],[-301,546],[-37,503],[-180,510],[-323,517],[-150,567],[22,619],[85,318],[119,358],[100,132],[163,25],[202,156],[206,280],[71,220],[68,519],[-77,349],[-394,769]],[[127099,911870],[-407,-1],[-411,380],[-825,1143]],[[127099,911870],[-835,1260],[-224,578],[110,316],[231,241],[527,251],[190,223],[195,362]],[[125456,913392],[-550,-330],[-271,-30],[-177,161],[-352,33],[-790,-143],[-62,-80]],[[125456,913392],[-560,583],[-108,281],[157,174],[-54,248],[-400,484],[-25,46]],[[318346,444387],[36,131],[193,691]],[[318575,445209],[40,629],[-30,288]],[[318585,446126],[-42,420],[-10,540],[52,372]],[[318585,447458],[-79,487],[-212,601],[-2,41],[-19,420],[168,321],[356,58],[543,-203],[343,-15],[143,172],[81,329],[19,487],[69,259],[119,31],[162,279],[206,526],[257,274],[308,20],[228,253],[148,487],[198,319],[248,152],[131,232],[14,315],[112,303],[208,292],[113,316],[17,342],[177,311],[335,281],[258,94],[179,-92],[68,96],[-44,284],[48,242],[140,199],[158,438],[263,1015],[273,-168],[316,225],[677,844],[57,524],[-92,841],[-222,1334],[2,1339],[226,1345],[206,701],[185,60],[193,357],[202,656],[239,358],[277,60],[172,172],[66,283],[0,246],[-65,209],[51,355],[169,500],[106,513],[43,524],[139,283],[163,50],[94,19],[93,-8],[427,-97],[166,155],[50,372],[128,363],[208,352],[105,312],[0,273],[55,152],[109,32],[26,89],[-57,148],[199,105],[453,63],[269,275],[85,486],[392,496],[700,506],[362,482],[26,457],[217,459],[329,369],[194,185],[92,136],[103,171],[74,259],[283,748],[246,378],[184,-28],[190,120],[196,270],[98,360],[0,450],[48,254],[86,453],[268,963],[242,385],[142,15],[126,-36],[80,28],[73,51],[75,87],[88,144],[171,403],[182,555],[95,652],[207,552],[320,452],[151,457],[-19,463],[259,732],[856,1499]],[[192378,770148],[-319,-346],[-205,-90],[-198,51],[-140,164],[-102,341],[-24,56]],[[190807,770986],[-55,-8],[-215,-144],[-195,56],[-213,232],[-200,570],[-189,906],[-70,722],[50,538],[153,610],[257,683],[168,878],[80,1074],[95,715],[111,358],[-46,540],[-304,1087]],[[299541,433811],[199,702],[2,606],[-127,743],[60,548],[248,349],[268,143],[432,-94],[476,-77],[199,-170],[82,-290],[289,-490],[496,-690],[372,-677],[249,-666],[242,-391],[234,-118],[199,-302],[163,-488],[293,-455],[421,-424],[332,-218],[242,-15],[144,67],[68,144],[112,-19],[248,-110],[716,-407],[528,-32],[341,343],[178,256],[129,33],[99,-85],[114,-80],[91,40],[57,134],[75,26],[88,-150],[135,-7],[122,188],[154,49],[165,-126],[249,42],[502,315],[45,88],[155,303],[140,116],[146,-29],[133,243],[120,515],[161,388],[200,263],[121,329],[43,395],[174,289],[305,182],[208,456],[111,729],[153,412],[194,94],[172,312],[149,527],[150,303],[149,77],[190,-100],[233,-279],[209,-31],[187,219],[150,302],[114,385],[196,223],[420,91],[43,298],[124,104],[217,11],[96,121],[47,191],[104,-47],[211,147],[295,432],[240,216],[187,0],[120,194],[74,212],[78,49],[109,64],[171,340],[156,16],[111,-59],[110,117],[39,262],[10,189],[-87,79],[23,116],[134,151],[148,43],[162,-66],[62,158],[14,319],[65,176],[149,-5],[111,174],[34,406],[77,192],[122,-22],[254,253],[581,796]],[[287479,517288],[628,-275],[285,8],[226,300],[851,1003],[280,475],[-6,282],[85,302],[176,322],[72,292],[-30,263],[181,735],[394,1209],[233,1222],[73,1236],[297,1600],[523,1964],[314,1444],[105,925],[-10,473],[-125,21],[21,850],[252,2520],[41,2014],[90,1056],[153,770],[61,694],[-30,617],[46,649],[122,678],[58,656],[-8,634],[132,605],[272,578],[135,606],[-4,635],[191,560],[386,485],[347,581],[306,678],[119,685],[-68,692],[50,1122],[169,1554],[45,1169],[-79,784],[18,547],[172,467]],[[295010,553975],[86,1057],[-52,1217],[-163,1727],[-277,976],[-391,223],[-388,435],[-385,646],[-263,286],[-142,-72],[-143,169],[-144,411],[-146,259],[-220,161],[-120,134],[-27,315],[26,540],[-55,622],[-134,705],[-16,582],[102,460],[-48,437],[-199,414],[54,857],[308,1299],[153,1113],[-4,928],[-93,778],[-166,586]],[[723958,627550],[15,684],[95,294],[273,199],[349,1017],[326,449],[418,220],[318,807],[219,1393],[216,783],[320,256],[273,-246],[110,187],[37,539],[142,303],[248,69],[239,196],[229,321],[310,-92],[389,-507],[338,-201],[286,102],[677,-35],[1602,-260]],[[732934,632995],[258,-393],[-19,-688],[-313,-1671],[6,-549],[94,-324],[183,-280],[318,-80],[454,121],[278,-116],[102,-353],[271,-341],[443,-329],[289,-349],[136,-369],[460,-427],[1173,-729],[892,508],[463,15],[332,-310],[268,-485],[307,-991],[50,-291],[190,-241]],[[766055,808967],[-616,1069],[-913,648],[-2125,876]],[[885283,486950],[-94,-66],[-126,25],[-68,233],[-18,777],[-96,459],[-175,141],[-114,420],[-54,699],[-74,483],[-144,397],[-374,992],[-271,454],[-292,248],[-264,459],[-235,670],[-67,483],[103,297],[19,404],[-68,512],[10,313],[40,200],[-22,213],[14,298],[172,976]],[[320378,412073],[-156,358],[-135,731],[-166,1221],[-171,864],[-179,506],[-121,472],[-64,437],[2,347],[67,255],[-57,528],[-181,802],[-16,231],[61,119],[111,483],[132,1000],[7,706],[-121,413],[-54,343],[12,272],[-76,398],[-164,522],[-128,269],[-90,15],[-32,189],[27,365],[-87,439],[-200,514],[6,950],[211,1387],[99,562],[20,350],[128,191],[54,349],[51,181],[119,146],[76,360],[33,576],[-100,858],[-232,1141],[-90,656],[53,172],[-2,156],[-56,140],[7,112],[74,144],[-7,190],[-78,419],[50,229],[90,90],[24,176],[-35,321],[32,238],[149,185],[83,247]],[[631019,375717],[-8,227],[-176,202],[-346,253],[-198,258],[-73,392],[-413,293],[-153,492],[-28,652],[-78,178],[-112,236],[-64,50],[-223,499],[-412,462],[-442,155],[-470,-150],[-330,-277],[-190,-402],[-193,-170],[-297,95]],[[626813,379162],[-385,-67],[-249,-360],[-365,-1013],[-1355,-305],[-668,-274],[-434,-345],[-297,-96],[-161,155],[-218,-62],[-276,-279],[-222,-82],[-200,108],[-54,63],[-57,138],[-248,1183],[-244,806],[-337,858]],[[728889,685543],[896,-275],[284,36],[169,-209],[147,-441],[626,-798],[1658,-1730],[456,-429],[159,-296],[13,-306],[74,-245],[136,-186],[350,-181],[564,-177],[304,-434],[43,-693],[326,-479],[610,-266],[445,73],[280,412],[309,130],[508,-227],[509,-415],[764,-52],[1190,173],[1219,-93],[1250,-358],[799,-130],[523,149]],[[287176,447217],[-263,1619],[-150,984],[-3,638],[93,621],[-284,843],[-660,1066],[-422,995],[-182,924],[-154,536],[-128,149],[-127,429],[-126,708],[-143,523],[-160,338],[-81,601],[-4,865],[-267,1668],[-530,2471],[-279,1621],[-28,770],[-118,801],[-210,831],[-225,575],[-242,321],[-190,455],[-209,887],[-327,364],[-211,424],[-203,607],[37,898],[278,1192],[207,681],[138,170],[64,368],[-9,565],[69,362],[145,159],[44,336],[-58,513],[15,374],[88,235],[42,316],[-4,395],[86,250],[177,105],[95,214],[15,324],[108,122],[200,-81],[370,284],[540,649],[389,323],[237,-3],[180,-93],[122,-185],[59,-265],[-4,-346],[62,-191],[127,-36],[23,-116],[-31,-54],[19,-187],[85,-274],[70,-14],[53,245],[259,-102],[465,-449],[472,-228],[480,-6],[259,-99],[40,-195],[114,-168],[191,-143],[250,-53],[310,36],[188,-90],[99,-328],[823,-236],[327,-26],[104,107],[87,-36],[70,-179],[194,328],[317,833],[516,504],[715,173],[429,355],[143,536],[206,418],[268,300],[213,-39],[157,-379],[219,-334],[282,-288],[181,99],[79,484],[114,316],[146,149],[199,21],[251,-105],[208,-233],[163,-361],[293,74],[653,795]],[[791530,574311],[1,-489],[69,-217],[137,-108],[44,-151],[-52,-194],[59,-1082],[169,-1970],[120,-422],[453,-1607],[1444,-3159]],[[791530,574311],[639,-855],[236,-531],[45,-487],[-45,-554],[-134,-623],[-52,-573],[30,-523],[77,-271],[30,-109],[184,-238],[119,-364],[55,-489],[313,-658],[574,-825],[508,-535],[143,-92]],[[794252,566584],[571,-366]],[[782120,611128],[344,407],[158,375],[54,302],[31,175],[122,184],[42,-28],[116,-80],[200,208],[112,243],[130,279],[185,241],[130,-40],[232,-324],[334,-609],[297,-363],[260,-115],[127,-227],[-4,-216],[-2,-121],[58,-215],[122,-91],[54,37],[-8,87],[-6,76],[118,239],[249,315],[254,186],[243,52],[14,3],[167,250],[100,583],[11,65]],[[786361,612999],[3,7]],[[786364,613006],[3,19]],[[786364,613006],[159,494],[10,16],[132,207],[176,112],[46,157],[-85,201],[7,202],[1,1],[1,3],[100,204],[219,88],[336,-31],[393,-210],[452,-390],[296,-126],[93,92],[48,49],[275,-605],[182,-598],[228,-752],[351,-1019],[293,-691],[309,-530],[324,-370],[233,-502],[181,-816],[31,-138],[-60,-501],[-99,-818],[-33,-883],[-10,-256],[20,-1400],[191,-1073],[363,-745],[210,-603],[35,-267],[25,-192],[282,-394],[19,-13],[486,-316],[211,-298],[-86,-268],[-5,-232],[-1,-78],[71,-354],[175,-292],[264,-219],[15,-12],[166,-244],[52,-257],[-5,-417],[-65,-578],[-41,-157],[-75,-286],[-169,-309],[20,-177],[180,-37],[28,-6],[197,-298],[321,-903],[240,-518],[107,-523],[54,-701],[-31,-667],[-115,-634],[-39,-656],[39,-679],[-26,-664],[-89,-648],[64,-518],[219,-388],[130,-334],[20,-137],[22,-145],[1,-285],[-39,-289],[24,-303],[85,-318],[-47,-524],[-179,-732],[-61,-475],[87,-325],[204,-912],[6,-799],[-122,-989],[-7,-1246],[108,-1502],[-91,-821],[-292,-139],[-323,-11],[-354,118],[-257,-471],[-159,-1061],[-270,-523],[-380,16],[-233,-112],[-86,-238],[-132,-149],[-179,-60],[-70,-135],[37,-212],[-32,-229],[-102,-244],[-47,-255],[8,-423]],[[305176,315275],[261,-569],[200,-121],[227,137],[155,301],[83,464],[21,345],[-40,226],[63,431],[249,952],[301,528],[189,528],[177,704],[85,701],[-7,891],[31,128]],[[294799,533407],[-101,-366],[-22,-398],[22,-553],[63,-486],[152,-629],[250,-386],[62,-303],[-40,-349],[450,-358],[941,-365],[550,-17],[162,334],[137,506],[115,679],[138,400],[244,182],[747,109],[295,143],[91,213],[166,167],[241,120],[217,-17],[191,-153],[236,188],[282,529],[553,617],[826,702],[528,520],[231,339],[178,446],[122,554],[245,567],[368,579],[207,424],[47,269],[419,490],[793,711],[566,934],[341,1157],[389,616],[435,76],[288,126],[195,248],[15,19],[207,151],[129,-61],[118,-224],[205,92],[290,408],[424,82],[558,-245],[735,-2],[506,135],[407,108],[568,262],[31,40],[129,165],[61,79],[367,-30],[666,-384],[180,-104]],[[788108,680375],[133,-122],[180,-771],[95,-415],[-25,-150],[191,-393],[608,-955],[294,-390],[113,-284],[30,-309],[218,-280],[666,-409]],[[251733,677090],[330,1026],[560,237]],[[252053,678118],[-77,132]],[[251976,678250],[287,896]],[[251976,678250],[-401,691],[-239,312],[-268,235],[-140,169],[-11,165],[-122,249],[-123,118],[-309,606],[-288,477],[-95,384],[-12,337],[69,289],[79,94],[73,12],[25,63],[1,86],[-28,65],[-302,107],[-579,64],[-391,196],[-204,329],[-327,94],[-451,-142],[-292,99],[-81,206],[-53,135],[-130,170],[-127,-2],[-87,122],[-46,202],[-102,132],[-98,31],[-66,109],[11,124],[-51,116],[-87,101],[-33,131],[11,124],[-22,140],[-85,98],[-27,202],[49,455],[-24,150],[-88,172],[3,184],[-53,292],[-173,542],[-137,222],[-97,56],[-296,16],[-77,142],[29,205],[64,231],[-8,102],[-54,220],[-202,176],[-77,85],[-38,116],[7,141],[13,199]],[[245409,689196],[116,209],[40,266],[-95,636],[35,351],[165,65],[83,338],[0,612],[64,414],[130,214],[123,502],[117,791],[239,651],[361,513],[178,444],[11,345],[39,160],[73,87],[121,234],[158,322],[28,220],[-8,153],[-11,163],[-126,297],[-193,253],[-123,394],[8,301],[-43,265],[-93,229],[20,213],[134,196],[6,187],[-121,177],[-1,314],[119,450],[-8,311],[-134,173]],[[246821,700646],[-24,435]],[[246797,701081],[128,1048],[-29,136],[-128,317],[-14,384],[76,467],[-37,365],[-107,132],[-27,144],[-33,215],[116,197],[7,182],[-103,167],[65,236],[232,306],[65,173]],[[247008,705550],[68,183],[40,436],[-33,258],[-56,172],[27,89],[48,80],[278,159],[79,112],[16,135],[-87,337],[85,356],[257,375],[136,330],[16,286],[123,208]],[[248005,709066],[230,131],[143,531]],[[248378,709728],[56,931],[68,396],[117,59],[62,129],[20,268],[143,274],[267,281],[105,272],[-31,147]],[[249185,712485],[-1,203]],[[249184,712688],[105,248],[316,401],[137,528],[-42,654],[116,590],[274,527],[114,522],[-47,517],[136,422],[319,327],[44,131],[-12,102],[-5,113],[3,46],[14,98],[71,59],[96,49],[41,83],[-1,133],[-56,234]],[[250807,718472],[32,279]],[[250839,718751],[156,438],[21,375],[-112,311],[57,162],[72,43],[93,25],[31,76],[0,91],[-79,203]],[[251078,720475],[22,177],[135,124]],[[251235,720776],[41,317]],[[251276,721093],[-54,511]],[[251222,721604],[13,164],[16,72]],[[251251,721840],[39,14],[44,-3],[63,-154]],[[251397,721697],[32,-181]],[[251429,721516],[39,-55],[54,51]],[[251522,721512],[151,534]],[[251673,722046],[129,138],[57,28],[140,-94],[67,-33]],[[252066,722085],[147,184],[130,533]],[[252343,722802],[75,563],[19,594],[-88,476]],[[252349,724435],[-196,358],[-132,162],[-25,-13]],[[251996,724942],[-29,-42],[-11,-113]],[[251956,724787],[7,-79],[20,-92],[-11,-59],[-30,-4],[-142,139],[-172,395],[-203,652]],[[251425,725739],[-44,519],[113,385]],[[251494,726643],[0,405]],[[251494,727048],[-113,423],[-57,415]],[[251324,727886],[0,405],[-278,607],[-554,809],[-408,499],[-262,189],[-304,405],[-349,620],[-185,475],[-23,328],[159,875],[461,1907],[52,225],[15,83],[-21,83],[-44,78],[-195,223],[-373,193],[-343,106],[-275,-228],[-240,460],[-205,1149],[-506,1212],[-807,1276],[-469,866],[-131,458],[-114,686]],[[245925,741875],[-96,914],[5,759]],[[245834,743548],[160,907]],[[245994,744455],[142,104],[29,298],[-38,527],[153,398],[344,269],[314,593],[284,915],[128,656],[-28,395],[-104,375],[-181,354],[-43,440],[94,525],[304,334],[513,143],[465,265],[417,388],[247,424],[79,459],[120,356],[162,255],[114,417],[67,578],[9,427],[-51,275],[-182,318],[-315,359]],[[249037,755302],[-178,339],[-40,316]],[[248819,755957],[-166,341],[-291,363]],[[248362,756661],[-188,448]],[[248174,757109],[-85,531],[-280,393],[-476,257],[-304,403],[-134,550],[-85,618],[-36,687],[38,574],[113,464],[-29,314],[-169,164],[-112,215],[-55,266]],[[246560,762545],[-111,2111]],[[246449,764656],[-116,820],[-174,323],[-367,374],[-560,427],[-346,400],[-198,560],[-397,656],[-260,268],[-254,100]],[[243777,768584],[-203,211],[-149,322]],[[243425,769117],[-207,203],[-266,84],[-295,263]],[[242657,769667],[-490,665],[-397,191],[-187,283],[-112,439],[-134,148],[-157,-143],[-159,295],[-162,732],[-162,471],[-164,211],[-1466,1101],[-353,299],[-196,338],[-155,476],[-63,326],[28,174],[-100,309],[-229,443],[-140,378],[-50,315],[6,390],[65,466],[-7,437],[-79,410],[168,533],[417,657],[256,509],[95,363],[271,152],[449,-61],[295,163],[142,385],[190,274],[239,163],[229,486],[219,809],[44,466],[-132,124],[-126,270],[-120,416],[-176,302],[-234,188],[-232,34],[-229,-121],[-110,82],[10,284],[-95,126],[-199,-32],[-209,175],[-329,573]],[[236039,784506],[160,954],[253,791],[230,181],[437,-248]],[[237478,786282],[2,-1]],[[237480,786281],[502,-300]],[[226223,760297],[1157,-1227]],[[227380,759070],[495,-275],[233,259],[508,148],[782,37],[494,-120],[206,-280],[403,-314],[597,-347],[359,-377],[118,-407],[208,-260]],[[231783,757134],[297,-111]],[[232080,757023],[187,-521],[77,-932],[169,-752],[261,-572],[131,-418],[1,-266],[63,-283],[123,-302],[50,-515],[-25,-727],[53,-387],[131,-47],[57,-102],[-18,-159],[44,-117],[106,-76],[29,-210],[-46,-343],[38,-215],[122,-88],[23,-169],[-76,-250],[12,-197],[100,-142],[67,-636],[35,-1128],[-11,-660],[-58,-193],[91,-407]],[[233816,746209],[241,-623]],[[234057,745586],[152,-617],[64,-613],[151,-397],[239,-183],[160,-393],[81,-603],[200,-507]],[[235104,742273],[684,-817]],[[235788,741456],[169,-7],[198,120],[150,-175],[102,-471],[-14,-241],[-132,-9],[-163,-284],[-196,-556],[48,-523],[293,-488],[195,-492],[97,-496],[193,-385],[432,-412]],[[237160,737037],[328,0],[231,158],[241,315],[264,17],[286,-282],[300,-35],[316,213],[393,126],[471,41],[252,116],[33,191],[88,5],[141,-181],[210,178],[277,536],[374,-11],[471,-557],[173,-430],[-125,-301],[-30,-319],[65,-336],[258,-219],[451,-102],[419,-506],[584,-1368],[470,-430],[403,69],[493,426],[505,215],[518,4],[542,-238],[567,-481],[449,-38],[333,406],[253,201],[173,-5],[238,302],[303,608],[243,147],[166,-86],[343,-153]],[[221127,768427],[60,-122],[78,-242],[331,-267],[572,-255],[269,-243],[-33,-231],[37,-203],[106,-173],[219,-114],[332,-56],[105,113],[-123,278],[19,150],[161,20],[108,-176],[54,-373],[161,-324],[403,-410]],[[223986,765799],[1,-2]],[[189725,781590],[-164,47],[-155,239],[-198,445],[-79,299],[43,152],[-59,315],[-158,479],[-37,355],[85,230],[952,1451],[451,435],[295,-21],[152,165],[9,349],[145,252],[280,155],[277,384],[275,613],[226,284],[178,-44],[487,394],[795,833],[456,349],[118,-133],[97,-312],[75,-492],[188,-407],[301,-320],[769,-43],[1238,234],[637,6],[34,-222],[135,-233],[237,-243],[504,-203],[1156,-242]],[[218334,786575],[-64,-129],[43,-314],[127,-543],[316,-338],[506,-132],[241,-170],[-24,-208],[58,-283],[138,-359],[43,-312],[-54,-264],[80,-507],[319,-1124]],[[204428,789616],[109,220],[405,-1],[736,-149],[630,57],[520,259],[560,81],[599,-98],[408,71],[218,242],[416,82],[614,-79],[697,-256],[782,-434],[448,-152],[173,196]],[[898524,408382],[-918,615],[-1078,1635],[-516,604],[-313,120],[-242,203],[-260,429],[-633,2369],[-463,991],[-349,356],[-449,281]],[[485380,571638],[217,-84],[165,177],[183,409],[195,240],[307,106],[456,732],[212,153],[118,-180],[157,70],[195,319],[243,237],[291,153],[425,966],[560,1778],[286,1056],[11,332],[87,374],[163,416],[164,208],[164,1],[108,447],[51,893],[110,513],[168,133],[123,-102],[76,-337],[119,-106],[161,125],[81,-156],[0,-434],[114,-394],[227,-353],[286,-253],[345,-152],[137,-196],[-71,-240],[31,-369],[131,-498],[-21,-315],[-173,-133],[-26,-336],[120,-540],[-5,-394],[-129,-248],[49,-231],[226,-216],[31,-808],[-163,-1401],[-24,-749],[115,-98],[33,-358],[-71,-927],[-1,-10],[-62,-476],[-151,-1172],[-7,-254],[-14,-547],[101,-499],[114,-315],[128,-131],[13,-181],[-102,-230],[6,-175],[2,-62],[16,-32],[104,-212],[30,-256],[-57,-249],[-4,-21],[14,-647],[85,-963],[6,-62],[2,-664],[-31,-111],[-54,-193],[36,-464],[4,-55],[166,-733],[13,-141],[16,-168],[27,-296],[-54,-474],[11,-294],[76,-113],[-42,-378],[-159,-644],[-1,-381],[159,-119],[113,-405],[67,-691],[112,-379],[77,-262],[309,-592],[228,-692],[145,-793],[180,-626],[214,-458],[228,-212],[243,34],[181,151],[118,269],[131,103],[146,-63],[69,97],[-5,256],[-77,143],[-149,31],[-100,138],[-49,245],[15,425],[77,606],[139,313],[302,31]],[[911124,287326],[435,1399],[98,622]],[[911657,289347],[-140,468],[-312,2157],[-165,799],[-121,160],[-469,372],[-245,12]],[[910205,293315],[-218,-168],[-160,-10]],[[909827,293137],[-101,149],[-121,25]],[[909605,293311],[-141,-99],[-100,-193],[-58,-286]],[[909306,292733],[-77,-103],[-142,121]],[[908456,292405],[-2,1]],[[908454,292406],[-410,44],[-376,198],[-475,365],[-332,66],[-187,-233]],[[906674,292846],[-200,-121],[-320,-14]],[[905633,292955],[-592,220],[-341,274]],[[904700,293449],[-289,401],[-433,169],[-578,-66]],[[903400,293953],[-392,-97],[-208,-129]],[[902800,293727],[-130,-228],[-52,-327],[3,-299],[58,-272]],[[902679,292601],[-134,-191],[-326,-111]],[[902219,292299],[-363,222]],[[901856,292521],[-400,555],[-269,528],[-139,501],[-244,533]],[[900804,294638],[-352,564]],[[900452,295202],[-533,627],[-714,691]],[[899205,296520],[-360,499],[-6,305],[-117,244]],[[898722,297568],[-226,181],[-151,210],[-76,239]],[[898269,298198],[-40,564]],[[898229,298762],[-5,890],[-99,552],[-289,324],[-711,239],[-300,223],[-125,286]],[[896700,301276],[-107,113],[-89,-62],[-102,-303]],[[896402,301024],[-116,-545],[-124,-248]],[[896162,300231],[-131,50],[-179,375],[-225,702],[-105,640],[15,577],[-56,319],[-127,62]],[[895354,302956],[-112,216],[-98,370],[-262,296],[-643,333]],[[894239,304171],[-460,30],[-264,-150],[-222,-321],[-322,50]],[[892971,303780],[-423,422]],[[892548,304202],[-348,231],[-272,40]],[[891928,304473],[-191,133]],[[891737,304606],[-80,164]],[[891657,304770],[-136,98],[-93,-72],[-300,-298],[-120,-201],[57,-106],[10,-185],[-40,-264],[-161,-334],[-282,-406],[-133,-355],[14,-304],[-104,-39],[-225,228],[-168,413],[-111,599],[-288,282],[-467,-34],[-282,31],[-96,96],[-29,140],[-9,195],[-123,168],[-235,106],[-135,32],[-87,-152],[-180,-423],[-137,-1387],[-11,-952],[115,-517],[-26,-373],[-165,-232],[-17,-311],[132,-390],[-70,-152],[-270,85],[-265,-119],[-257,-323],[-50,-249],[160,-178],[22,-220],[-114,-264],[-42,-236],[31,-209],[115,-230],[199,-252],[34,-283],[-169,-401],[-198,-201]],[[78683,885837],[-1479,146],[-536,-536],[-275,-442],[-194,-524],[-80,-375],[33,-227],[-571,-507],[-1177,-787],[-669,-606],[-160,-424],[-257,-363],[-353,-303],[-328,-361],[-301,-418],[-140,-271],[22,-125],[-491,-322],[-1506,-782]],[[494214,588608],[76,-1948],[-145,-677],[9,-546],[115,-642],[-17,-660],[-149,-679],[-33,-415],[82,-153],[322,-24],[561,102],[443,-141],[324,-385],[279,-121],[232,143],[181,-50],[128,-242],[92,-500],[54,-759],[62,-334],[72,91],[54,-53],[36,-197],[-25,-1720],[130,-1067],[291,-1051],[229,-637],[167,-224],[74,-446],[-19,-670],[150,-490],[320,-312],[208,-301],[95,-290],[20,-205],[-55,-120],[80,-347],[215,-576],[75,-537],[17,-126],[-31,-752],[27,-515],[83,-279],[14,-211],[-54,-145],[-5,-234],[68,-485],[-757,-545],[-255,2],[-6,367],[-60,189],[-113,11],[-144,-224],[-176,-459],[-158,-161],[-142,137],[-108,-4],[-75,-145],[-37,-306],[1,-464],[46,-379],[89,-294],[-16,-279],[-122,-266],[-6,-260],[110,-253],[86,-668],[62,-1084],[-121,-484],[-304,117],[-297,-172],[-292,-462],[-119,-503],[53,-545],[107,-425],[161,-304],[76,-315],[-9,-324],[61,-244],[199,-245]],[[788670,658755],[-186,-460],[-52,-451],[28,-892],[103,-1374],[-45,-724],[-159,-534],[-269,-477],[-625,-643],[-111,-24],[-89,120],[-65,264],[-183,76],[-300,-113],[-149,-295],[1,-477],[-93,-527],[-188,-575],[-31,-402],[125,-227],[20,-297],[-86,-365],[18,-809],[181,-1876],[66,-791],[72,-309],[101,-91],[85,43],[70,178],[245,139],[419,100],[232,211],[45,322],[-19,294],[-83,266],[3,263],[89,259],[144,186],[198,112],[220,393],[241,676],[210,337],[178,-2],[276,178],[561,537],[513,1056],[399,-486],[330,83],[393,490],[319,558],[245,624],[177,208],[109,-208],[168,-110],[227,-13],[168,-178],[108,-345],[260,-335],[413,-326],[283,-131],[154,64],[149,-97],[145,-256],[196,149],[249,556],[93,470],[-60,386],[178,304],[419,224],[354,315],[292,406],[357,294],[365,156],[194,56]],[[726594,640285],[-817,729],[-510,464],[-194,79],[-47,-153],[-102,-42],[-155,67],[-111,184],[-65,303],[-60,62],[-55,-178],[-224,-151],[-394,-124],[-226,-226],[-59,-327],[-9,-487],[40,-647],[-33,-397],[-106,-146],[-105,-17],[-103,112],[-112,328],[-119,542],[-205,241],[-435,-92],[-270,454],[-83,486],[14,670],[-288,383],[-589,98],[-566,-41],[-541,-180],[-298,-180],[-57,-179],[-274,-41],[-493,99],[-411,-14],[-329,-127],[-309,-273],[-289,-420],[-225,-182],[-159,56],[-115,-111],[-70,-277],[-162,-110],[-253,58],[-181,125],[-108,193],[-249,-188],[-388,-570],[-538,-531],[-1030,-739],[-561,-333],[-224,-302],[-75,-381],[-174,-313],[-275,-246],[-236,38],[-199,323],[-424,-58],[-650,-437],[-1289,-466],[-2889,-741],[-280,83],[-222,-134],[-255,-324],[-258,-146],[-261,31],[-342,-139],[-424,-309],[-359,58],[-296,425],[-217,223],[-138,20],[-144,-139],[-148,-297],[-147,-84],[-146,129],[-63,-61],[18,-252],[-67,-127],[-151,-1],[-79,-134],[7,-224],[-70,-195]],[[701815,752067],[-845,-1004],[-354,-718],[-143,-766],[-301,-706],[-25,-58],[-508,-762],[-759,-483],[-1009,-202],[-368,-181],[-111,-117],[-97,-79],[-171,-73],[-282,-235],[-411,-505],[-47,-58],[-954,-1335]],[[715936,753321],[668,-64],[114,-192],[-327,-510],[-384,-746],[-249,-338],[-243,-179],[-854,-111],[-1466,-42],[-1007,-106],[-823,-255],[-583,60],[-374,-104],[-362,-246],[-386,-22],[-410,204],[-734,91],[-1057,-22],[-694,-111],[-330,-201],[-380,62],[-431,326],[-220,375],[-10,423],[-55,348],[-100,273],[-247,263],[-395,254],[-396,84],[-590,-125]],[[703611,752710],[-6,-1]],[[516773,812379],[-322,522],[-486,123],[-1157,-109]],[[311072,275460],[715,-454],[440,-135],[402,35],[387,-96],[373,-224],[536,-38],[699,148],[569,25],[438,-99],[414,-220],[389,-342],[424,-212],[460,-81],[380,-412],[298,-743],[243,-806],[188,-870],[368,-530],[548,-192],[383,-284],[218,-379],[256,-299],[296,-219],[330,-96],[365,26],[553,-543],[743,-1113],[464,-597],[187,-81],[266,-386],[519,-1034],[593,-199],[407,-491],[466,-718],[172,-589]],[[304622,517970],[1025,307],[788,290],[436,268],[347,343],[414,50],[480,-244],[410,-111],[337,22],[305,293],[273,565],[292,111],[312,-343],[299,306],[285,953],[172,426],[56,-103],[70,116],[82,336],[230,388],[267,374],[204,186],[54,49],[275,-196],[135,-39],[46,-108],[15,-35],[80,-469],[92,-79],[134,-195],[264,-495],[220,-521],[89,-135],[76,-115],[117,-233],[37,-338],[-32,-217],[-17,-122],[138,-786],[63,-163],[32,-81],[48,-299],[-7,-45],[-41,-255],[116,-352],[282,-1537],[18,-470],[64,-216],[76,-627],[129,-590],[-30,-404],[54,-393],[1,-4],[42,-1186],[-47,-497],[-122,-204],[-240,-96],[-358,11],[-261,-713],[-247,-2158],[118,-1463],[212,-873],[344,-769],[258,-340],[173,91],[415,-307],[659,-704],[451,-250],[245,206],[314,109],[383,14],[255,110],[127,207],[157,24],[189,-160],[253,-55],[317,50],[331,-142],[518,-499],[709,-336],[577,50],[1020,485],[773,312],[502,58],[487,-91],[455,-369],[421,-647],[474,-553],[792,-691],[407,-1017],[412,-655],[829,-949],[1384,-1370],[146,-70]],[[328108,497596],[229,3],[226,-73],[270,-286]],[[328833,497240],[228,-474],[186,-662],[95,-560],[6,-458],[222,-665],[438,-872],[153,-447],[139,-406],[144,-835],[379,-1145],[924,-2181],[334,-625],[251,-220],[278,-23],[285,-156],[293,-289],[211,-82],[221,182]],[[228524,825437],[379,944],[71,456],[-127,319],[-20,332],[88,345],[-107,253],[-450,242]],[[228051,829119],[-63,411],[-92,193],[-142,112],[-9,223],[184,501]],[[229850,832257],[500,76],[334,316],[335,580],[179,491],[25,404],[154,708],[283,1013],[140,705],[-2,596]],[[233772,838493],[1141,286]],[[236724,839102],[1209,158],[966,759],[1126,1414],[914,717],[1055,30],[221,81]],[[303324,289916],[286,-2249],[144,-990],[2,-428],[-92,-195],[-47,-262],[-3,-330],[67,-252],[135,-175],[323,-122],[513,-67],[351,-195],[190,-322],[147,-384],[104,-446],[135,-259],[167,-71],[125,-569],[81,-1066],[135,-772],[189,-478],[113,-512],[37,-545],[229,-576],[422,-607],[352,-320],[283,-33],[337,318],[394,670],[308,349],[225,28],[461,-478],[698,-984],[496,-902],[441,-1232]],[[586229,860126],[-81,-109],[-89,-298],[-210,-231],[-308,-190],[-397,145],[-485,481],[-361,179],[-337,-173]],[[280391,761586],[-11,-596],[-8,-420]],[[517404,535307],[-117,-428],[-256,-443],[-149,-793],[-62,-1714],[59,-764]],[[517404,535307],[15,-3306]],[[517930,537501],[-226,-101],[-198,-175],[-172,-249],[-85,-227],[1,-204],[-111,-219],[-222,-233],[-273,35],[-322,305],[-385,56],[-726,-222]],[[517930,537501],[-170,-365],[-126,-264],[-50,-210],[9,-149],[67,-90],[-11,-160],[-91,-231],[-81,-114],[-72,3],[-24,-203],[23,-411]],[[518213,538562],[137,-926],[-52,-499],[-181,-389],[-133,-466],[-87,-542],[48,-367],[184,-192],[128,-369],[72,-544],[123,-512],[183,-719],[18,-631],[-14,-290],[0,-159],[14,-486]],[[470188,559529],[187,378],[32,127],[88,353],[115,710],[-9,577],[-201,669],[38,1090],[-118,973],[-261,1220],[-103,746],[55,273],[137,165],[219,57],[95,160],[-30,264],[86,132],[201,0],[167,154],[132,306],[195,122],[257,-62],[145,-134],[55,-79],[68,-35],[64,64],[272,510],[231,235],[191,-41],[98,138],[49,104],[130,118],[398,94],[341,605],[286,1114],[248,565],[210,15],[192,176],[174,338],[54,503],[-67,668],[144,391],[353,113],[305,397],[257,682],[130,251],[171,332],[344,484],[262,615],[182,745],[239,666],[296,586],[213,780],[129,973],[242,515],[354,56],[474,654],[593,1251],[483,861],[559,707],[357,598],[448,219],[659,38],[509,241],[362,445],[253,518],[144,592],[203,226],[330,49],[325,157],[528,838],[445,441],[362,44],[252,231],[140,416],[465,450],[789,482],[453,178],[173,47],[201,230],[594,1403],[233,1307],[207,668],[261,466],[77,644],[-164,1233]],[[488945,596121],[71,53],[112,98],[171,276],[89,247],[6,215],[-99,143],[-204,68],[11,214],[354,587],[25,99],[-206,133],[32,103],[104,83],[176,60],[96,285],[16,509],[73,320],[131,131],[103,263],[76,393],[187,244]],[[512849,564107],[51,-646],[-36,-506],[-107,-582],[-17,-582],[71,-583],[117,-364],[164,-147],[101,-261],[39,-372],[183,-116],[326,141],[305,-207],[283,-557],[370,-394],[456,-234],[411,-393],[551,-832],[604,75],[386,-71],[368,-191],[259,-483],[150,-775],[230,-710],[310,-645],[231,-731],[152,-818],[15,-1259]],[[518822,551864],[-184,-2547],[-126,-2297],[-14,-1361],[86,-1789],[140,-1407],[-93,-1328],[-420,-2578],[-170,-456],[-42,-251],[29,-199],[-98,-150]],[[488044,597455],[-95,671],[59,369],[182,290],[122,359],[62,429],[131,158],[201,-113],[290,305],[380,721],[375,392],[371,61],[246,224]],[[490269,600645],[99,676]],[[490368,601321],[121,385],[124,208],[127,30],[64,149],[0,268],[132,288],[114,131]],[[491050,602780],[91,-638],[5,-279],[-52,-162],[-77,-107],[-102,-51],[-88,-208],[-74,-367],[-186,-230],[-298,-93]],[[491050,602780],[152,176],[169,435],[72,561],[147,260],[220,-44],[570,279],[921,601],[595,268],[267,-65],[162,53],[55,171],[351,302],[646,432],[599,280],[551,126],[367,-53],[185,-230],[241,-80],[299,73],[241,-90],[181,-251],[290,-74],[400,104],[307,-487],[214,-1077],[184,-669],[153,-261],[162,-634],[256,-1511],[391,-1106],[322,-656],[383,-574],[206,-566],[26,-558],[186,-439],[345,-321],[186,-275],[27,-228],[-59,-523],[-146,-818],[-48,-581],[49,-345],[112,-202],[18,-33],[213,-127],[156,-387],[101,-648],[205,-714],[308,-782],[368,-691],[427,-598],[282,-791],[134,-981],[193,-787],[248,-592],[392,-569],[534,-545],[335,-488],[137,-433],[171,-349],[206,-265],[125,-724],[44,-1184],[125,-931],[206,-678],[86,-450],[-35,-223],[20,-223],[68,-138],[86,9],[72,128],[52,0],[31,-122],[74,-52],[108,46],[73,-63],[51,-304],[87,-212],[131,-75],[69,-102],[11,-16],[849,-1663],[328,-746],[88,-382],[169,-276],[193,-131],[56,-38],[228,-381],[133,-404],[21,-65],[23,-70],[276,-451],[435,-296],[475,-507],[307,-552],[299,-765],[352,-542],[406,-319],[296,-419],[188,-516],[48,-711],[-136,-1358]],[[590250,598209],[126,2399],[258,1277],[434,955],[400,531],[367,107],[289,237],[211,368],[327,340],[445,310],[322,509],[198,707],[72,501],[-56,295],[8,428],[71,561],[195,784],[319,1009],[74,880]],[[594310,610407],[47,555],[-75,1861],[-115,1010],[-153,157],[-169,349],[-184,541],[-101,587],[-18,634],[-84,367],[-152,99],[-66,630],[20,1159],[-97,768],[-211,377],[-137,416],[-94,683],[-671,470],[-334,48],[-221,-218],[-278,-538],[-336,-858],[-271,-455],[-206,-52],[-217,-407],[-228,-763],[-220,-378],[-211,7],[-214,-155],[-216,-316],[-101,-402],[14,-489],[-110,-322],[-233,-154],[-335,-755],[-439,-1356],[-466,-861],[-495,-366],[-417,-81],[-342,206],[-312,299],[-283,393],[-180,611],[-76,829],[-119,601],[-161,372],[-150,581],[-141,789],[-69,1148],[5,1508],[-83,1348],[-171,1188],[-129,675],[-6,209],[61,208],[361,338],[209,314],[54,287],[14,486],[-23,686],[-56,454],[-89,222],[-137,133],[-188,43],[-156,347],[-124,650],[-13,525],[99,399],[29,304],[20,233],[76,182],[315,208],[182,355],[52,502],[102,347],[154,191],[62,262],[-30,333],[180,427],[387,519],[187,368],[-15,215],[82,337],[268,689]],[[591331,647577],[94,2014],[-2,742],[-64,142],[7,364],[78,587],[3,776],[-73,965],[-67,615],[-64,265],[-224,397],[-384,526],[-246,658],[-106,788],[-25,486],[84,275],[502,841],[167,738],[-3,916],[-80,560],[-157,203],[-345,-121],[-533,-445],[-370,56],[-206,557],[-168,108],[-146,3],[-72,60],[-51,275],[-87,300],[-262,457],[-142,417],[-22,378],[-84,193],[-145,7],[-65,125],[15,242],[-48,156],[-109,72],[-285,699],[-510,1465],[-79,279],[-103,245],[-70,143],[-93,123],[-766,1253],[-280,855],[57,699],[-14,881],[-18,793],[-40,493],[-71,310],[-84,282],[-92,204],[-83,270],[-12,380],[62,465],[135,549],[69,538],[3,529],[59,589],[113,649],[267,896],[419,1143],[204,860],[-10,578],[57,644],[125,710],[16,1027],[-87,1279],[-4,480],[-45,239]],[[772175,673802],[580,-1034],[291,-698],[106,-730],[19,-995],[-111,-650],[-143,-180],[-99,-124],[-170,-30],[-99,246],[-106,65],[-112,-115],[7,-457],[126,-798],[235,-977],[343,-1156],[186,-945],[29,-733],[-53,-875],[-202,-1528],[-342,-2440],[-171,-965],[-115,-304],[-218,-446],[-323,-587],[-237,-121],[-153,345],[-219,162],[-231,-16],[-108,-13]],[[174632,813217],[338,371],[204,-31],[277,-462],[843,167],[267,342],[-29,572],[163,590],[356,605],[579,349],[803,90],[523,-75],[245,-242],[248,-72],[251,99],[269,-64],[287,-227],[219,-58],[150,110],[-26,589],[-203,1067],[-149,571],[-97,72],[-51,193],[-4,314],[-50,217],[-96,122],[-25,265],[44,410],[145,239],[244,66],[159,128],[111,285],[371,855],[309,265],[369,-39],[317,141],[262,322],[351,20],[438,-282],[437,-90],[438,101],[274,232],[109,364],[228,289],[346,215],[385,547],[425,878],[358,587],[291,296],[176,287],[61,281],[284,55],[506,-171],[388,18],[270,208],[333,-114],[397,-437],[362,-237],[327,-37],[179,-189],[31,-340],[413,-226],[795,-112],[548,101],[301,313],[354,152],[407,-8],[415,-283],[421,-559],[303,-228],[185,103],[311,-147],[435,-398],[390,-174],[345,52],[248,-143],[153,-336],[64,-237],[-23,-139],[169,-115],[361,-92],[321,-198],[281,-304],[314,-546],[347,-790],[522,-658],[695,-526],[322,-374],[-53,-222],[5,-152],[91,-124]],[[199072,817474],[641,-727],[327,-263],[226,-41],[437,-341],[650,-639],[432,-332],[213,-23],[279,56],[343,136],[264,443],[186,750],[565,1157],[942,1564],[561,841],[181,118],[143,-33],[104,-186],[324,51],[543,286],[634,151],[1085,23]],[[768320,685758],[222,-27],[87,-223],[29,-427],[379,-521],[730,-613],[483,-645],[237,-676],[135,-599],[34,-520],[113,-553],[193,-587],[316,-527],[439,-468],[363,-834],[286,-1201],[309,-904],[501,-914],[64,-817],[66,-329],[90,-113],[77,-593],[65,-1073],[171,-786],[278,-497],[130,-532],[-17,-567],[91,-561],[298,-834],[145,-1420],[57,-1665],[17,-2382],[-30,-1739],[-76,-1095],[-3,-1453],[72,-1812],[0,-1494],[-72,-1176],[42,-1071],[156,-967],[147,-620],[138,-272],[17,-489],[-105,-704],[49,-547],[203,-387],[-87,-408],[-375,-429],[-387,-309],[-52,-42],[-503,-273],[-308,-260],[-113,-246],[-33,-303],[46,-361],[165,-524],[283,-687],[113,-613],[-59,-539],[50,-326],[157,-114],[82,-242],[5,-372],[-192,-270],[-390,-168],[-110,-274],[168,-382],[39,-241],[-91,-100],[-32,-157],[25,-213],[115,-209],[204,-204],[3,-279],[-198,-353],[-14,-622],[170,-892],[32,-729],[-105,-567],[-1,-503],[104,-439],[143,-367],[181,-293],[-65,-414],[-313,-534],[-87,-678],[138,-822],[14,-511],[-111,-200],[17,-282],[145,-365],[93,-496],[42,-625],[85,-512],[130,-399],[-136,-336],[-601,-409]],[[754217,694595],[76,-758],[151,-403],[251,-300],[180,-528],[106,-758],[193,-357],[277,43],[193,-175],[107,-391],[175,-180],[242,31],[171,256],[101,482],[304,334],[763,279],[461,176],[249,-17],[189,-152],[360,-30],[530,91],[491,-48],[453,-187],[368,-22],[286,145],[511,-12],[737,-168],[435,-160],[131,-149],[1,-329],[-130,-509],[7,-296],[143,-84],[128,-239],[112,-395],[114,-228],[116,-63],[193,132],[270,326],[333,169],[395,11],[334,-98],[271,-207],[243,-368],[214,-529],[290,-166],[366,197],[454,-70],[541,-337],[350,-282],[156,-225],[198,-678],[240,-1130],[158,-545],[115,64]],[[736267,815697],[-1298,-70],[-672,-173],[-477,-299],[-478,-61],[-478,178],[-287,310],[-94,442],[-32,610],[45,1166],[-115,1017],[0,466],[77,254],[367,154],[119,386],[-32,145],[-31,910],[-349,387],[-609,59],[-447,165],[-286,272],[-279,14],[-272,-243],[-370,-157],[-469,-70],[-410,121],[-351,313],[-185,273],[-21,234],[-140,273],[-258,312],[-342,202],[-428,94],[-257,140],[-88,189],[-301,60],[-516,-68],[-337,119],[-239,457]],[[695426,868106],[1196,16],[541,-38],[283,-88],[205,-188],[124,-287],[162,-41],[198,205],[328,134],[688,96],[972,-83],[495,56],[344,168],[332,-26],[320,-220],[270,-50],[218,119],[416,3],[919,-167],[913,-229],[400,-3],[192,146],[270,-37],[349,-220],[320,-14],[293,192],[252,-39],[197,-190],[124,0],[55,122],[182,142],[363,14],[291,-77],[329,-250],[1292,-216],[559,-244],[257,-343],[240,-84],[222,177],[260,57],[298,-60],[389,-235],[481,-410],[354,-147],[226,116],[305,-169],[382,-455],[546,-438],[708,-421],[511,-150],[312,121],[252,-43],[193,-205],[117,-245],[42,-284],[217,-323],[393,-363],[451,-154],[507,53],[132,-197],[12,-235],[120,-161],[135,-74],[122,-285],[228,-279],[333,-275],[284,-102],[141,47],[98,-143],[13,-189],[93,-115],[146,-61],[48,-210],[-57,-226],[-19,-281],[76,-291],[165,-253],[253,-214],[100,-231],[-53,-248],[5,-207],[95,-247],[278,-529],[291,-240],[399,-128],[256,-207],[115,-285],[318,-62],[521,163],[351,-33],[181,-229],[37,-210],[-106,-190],[52,-167],[211,-142],[186,45],[163,231],[160,109],[155,-11],[98,-171],[38,-331],[278,-377],[517,-422],[475,-99],[431,227],[356,-70],[281,-368],[147,-305],[13,-242],[81,-109],[94,-48],[49,-135],[26,-164],[82,-223],[92,-102],[15,-198],[-88,-309],[35,-159],[260,-102],[157,38],[86,95],[111,73],[231,-201],[122,-247],[15,-294],[158,-149],[301,-4],[275,-208],[250,-411],[213,-240],[177,-70],[89,-138],[0,-207],[78,-55],[156,94],[156,-73],[157,-241],[286,-100],[415,42],[123,-173],[17,-254],[74,-277],[195,-254],[184,-131],[173,-9],[178,-410],[180,-810],[173,-554],[165,-299],[388,-200],[418,-69],[214,-185],[109,-343],[44,-364],[207,-432],[100,-384],[-8,-337],[51,-266],[108,-197],[298,-170],[487,-143],[177,-252],[21,-280],[68,-154],[85,-165],[21,-248],[-19,-333],[82,-592]],[[734545,842157],[-97,-699],[-260,-603],[-454,-741],[-224,-633],[7,-526],[-34,-325],[-76,-125],[-28,-171],[21,-216],[-85,-281],[-191,-345],[-106,-493],[-22,-641],[-165,-572],[-308,-502],[-162,-401],[-15,-300],[-303,-403],[-591,-505],[-465,-231],[-340,45],[-248,-65],[-155,-174],[-53,-375],[51,-573],[-30,-416],[-109,-257],[116,-379],[340,-500],[144,-387],[-78,-413]],[[691269,867058],[426,436],[260,93],[235,-106],[282,115],[328,334],[472,72],[615,-192],[616,2],[923,294]],[[691269,867058],[-197,-205],[-548,37],[-345,175],[-325,328],[-109,444],[109,562],[15,385],[-78,208],[-532,402],[-983,596],[-538,541],[-92,485],[-272,739],[-452,993],[-693,669],[-933,346],[-545,354],[-156,363],[-179,235],[-304,161],[-812,209],[-857,827],[-1173,1516],[-262,696],[-64,450],[25,345],[173,444],[343,533],[382,280],[152,304],[-9,363],[92,235],[399,211],[186,307],[-28,406],[-70,324],[-64,158],[34,205],[184,139],[48,101],[-25,198],[-41,209],[60,125],[6,301],[-45,477],[48,264],[143,52],[76,100],[11,148],[113,59],[217,-32],[64,139],[-90,306],[-125,212],[-161,117],[-28,162],[105,208],[-9,269],[-121,330],[-213,329],[-304,328],[-14,297],[57,162],[-48,263],[-372,295],[-148,275],[78,254],[10,256],[-57,257],[85,266],[62,302],[-115,203],[-322,38],[-298,180],[-121,272],[57,454],[235,637],[258,464],[282,291],[138,334],[-5,377],[56,428],[117,477],[191,471],[266,462],[126,534],[-15,605],[-115,350],[-24,249],[50,122],[122,232],[206,142],[387,343],[565,786],[420,942],[589,329],[757,-284],[603,28],[450,340]],[[686985,899663],[717,-70],[983,-482],[752,-57],[520,366],[311,333],[102,300],[338,265]],[[686985,899663],[682,698],[366,142],[492,-56],[382,62],[272,179],[434,-39],[1095,-331]],[[690708,900318],[699,281],[189,-40]],[[548938,799774],[636,-505],[277,-100],[192,205],[350,343],[231,384],[229,537],[17,337],[9,176],[-178,488],[-60,487],[58,486],[-185,599],[-426,711],[-205,537],[17,361],[-72,374],[-161,385],[-328,347],[-867,600],[-249,270],[-168,277],[-87,285],[-209,267],[-495,373],[-406,578],[-364,143],[-458,-100],[-274,52],[-89,202],[-8,215],[75,227],[21,400],[-33,571],[-152,455],[-270,339],[-242,145],[-215,-48],[-349,130],[-482,310],[-216,401],[49,492],[-80,393],[-209,293],[-719,209],[-1841,184],[-28,35],[-128,161],[-34,236],[25,235],[11,104],[-71,252],[-22,20],[-156,143],[-116,216],[-54,269],[37,378],[5,44],[138,576],[-293,692],[-338,379],[-385,430],[-347,565],[28,323],[152,293],[240,227],[37,35],[6,14],[203,452],[47,221],[167,783],[375,1003],[105,477],[-23,346],[-74,325]],[[263372,734492],[-70,62],[-98,135],[-167,60],[-275,-43],[-109,-277],[56,-511],[-94,-392],[-244,-273],[-174,-361],[-104,-447],[-166,-272],[-229,-95],[-184,-415],[-141,-734],[-154,-454],[-167,-175]],[[261052,730300],[-229,44],[-289,264]],[[260534,730608],[-167,272],[-44,280],[-86,200],[-78,88],[-52,2],[-3,-41],[21,-78],[-28,-84],[-180,-29],[-77,-116],[25,-202],[-39,-143],[-104,-84],[-55,-193],[-7,-302],[-73,-276],[-141,-250],[-205,84],[-270,418],[-274,97],[-279,-225],[-208,-305],[-137,-385],[-132,-95],[-190,293],[-452,406],[-236,86]],[[257063,730026],[-170,-98],[-119,45],[-41,110]],[[256733,730083],[-32,47],[-33,-54],[-4,-353],[-40,-224],[-78,-94],[-59,74],[-41,241],[-98,79],[-153,-85],[-154,36],[-137,144],[-49,-16],[-39,-66],[11,-276],[-29,-221],[-71,-142],[-101,-34],[-131,74],[-56,-69]],[[255439,729144],[-87,-106],[-155,-422],[-32,-466],[92,-510],[-231,-412]],[[255026,727228],[-552,-316],[-293,-277]],[[254181,726635],[-33,-241],[38,-366],[110,-493],[20,-341],[-71,-190]],[[254245,725004],[-395,129],[-719,445],[-482,-15]],[[252649,725563],[-245,-476],[-85,-359]],[[252319,724728],[30,-293]],[[277803,744858],[-439,437],[-205,372],[-117,452],[-220,149],[-486,-232]],[[276336,746036],[-329,-258],[-60,-238],[99,-304],[53,-392],[7,-481],[-185,-1056],[-375,-1632],[-191,-1026],[-6,-421],[-247,-550],[-489,-681],[-342,-410],[-197,-140],[-164,11],[-132,164],[-147,-112],[-164,-387],[-152,-201],[-141,-12],[-120,-252],[-101,-489],[-94,-283],[-89,-75],[-6,-248],[75,-422],[-6,-152],[-42,-6],[-39,24],[-96,-93],[-107,-237],[-40,-4],[-30,40],[-31,308],[-87,218],[-142,129],[-198,-285],[-253,-697],[-111,-454],[44,-313],[21,-459],[-63,-187],[-138,-70],[-107,-248],[-76,-428],[-191,-270],[-307,-112]],[[270840,732845],[-344,211]],[[270496,733056],[-380,534],[-240,512],[-100,488],[-332,22],[-565,-444],[-426,-68],[-288,308],[-216,120],[-217,-101],[-204,-196],[-173,117],[-211,366],[-334,254],[-458,143],[-317,395],[-175,647],[-188,444],[-200,242],[-219,71],[-238,-101]],[[265015,736809],[-183,51],[-129,204]],[[264703,737064],[-164,-23]],[[264539,737041],[-199,-250]],[[264340,736791],[-64,-254],[70,-258],[-3,-210],[-76,-161],[27,-121],[129,-79],[50,-184],[-31,-289],[-279,-295],[-535,-331],[-116,-96],[-95,-41],[-45,20]],[[568719,380128],[-137,474],[-258,398],[-426,479],[-213,547],[-1,613],[93,796],[185,978],[78,589],[-30,200],[-85,93],[-139,-14],[-223,281],[-307,578],[-317,115],[-326,-348],[-277,31],[-228,410],[-281,308],[-336,204],[-325,39],[-155,8],[-94,87],[-5,139],[65,189],[425,957],[140,889],[-46,311]],[[564872,390229],[224,-392],[400,-358]],[[565356,390426],[140,-947]],[[564548,391515],[324,-1286]],[[564548,391515],[153,-290],[214,-106],[189,-211],[244,-472]],[[562575,393855],[42,-767],[257,-758],[378,-990],[336,-624],[294,-260],[351,-162],[639,-65]],[[562575,393855],[148,-580],[228,-248],[309,83],[333,-57],[358,-196],[294,-469],[232,-739],[71,-134]],[[559731,399068],[371,-214],[280,-525],[108,-315],[203,-592],[243,-465],[175,-26],[243,-567],[311,-1107],[326,-694],[340,-279],[244,-429]],[[851915,933077],[-597,344]],[[851318,933421],[-385,-13],[-371,-253],[-510,-20],[-647,214],[-1007,565],[-1365,916],[-883,435],[-403,-46],[-688,201],[-975,449],[-733,152],[-491,-146],[-668,33],[-1215,787]],[[791546,905145],[1062,-323],[357,333],[262,81],[287,-61],[78,-223],[39,-141],[122,-152],[174,-57],[225,39],[185,130],[143,220],[37,163],[240,144],[387,-220],[86,-182],[-98,-235],[-86,-274],[190,-385],[324,-143],[459,99],[846,-160],[1233,-420],[841,-147],[449,126],[800,-159],[1150,-441],[1024,-235],[1227,35],[123,62],[96,155],[212,49],[356,-98],[547,42],[737,181],[251,225],[47,155],[64,103],[174,11],[109,36],[44,60],[-26,80],[-44,124],[-11,137],[173,219],[354,209],[534,197],[470,282],[407,365],[4,191],[-42,98],[-45,114],[29,157],[-12,193],[-104,300],[42,230],[404,366],[391,268],[378,169],[323,9],[266,-150],[121,-190],[35,-118],[116,-128],[376,198],[521,28],[668,-140],[366,-4],[64,133],[-23,136],[-112,141],[-71,233],[-31,325],[-229,269],[-428,211],[-157,223],[113,234],[242,228],[270,67],[87,108],[-8,185],[-115,123],[0,138],[130,231],[40,199],[-42,173],[-124,206],[-22,315],[152,308],[230,39],[307,-232],[272,-83],[236,64],[627,-144],[1018,-352],[923,30],[828,413],[579,96],[329,-222],[480,-69],[628,82],[354,-10],[78,-102],[-74,-130],[-227,-159],[83,-145],[392,-132],[779,218],[1165,569],[615,245],[63,-80],[8,-113],[-49,-147],[-204,-209],[-358,-272],[199,-337],[758,-400],[256,-244],[-246,-89],[-133,-171],[-19,-255],[190,-158],[401,-61],[149,-230],[88,-398],[210,-664],[72,-485],[-67,-307],[220,-123],[505,62],[240,178],[78,271],[230,211],[694,85],[297,121],[-99,157],[17,205],[133,252],[303,178],[473,103],[473,270],[474,439],[-108,387],[-690,338],[-337,276],[18,214],[-77,174],[-173,132],[-119,197],[-64,263],[179,270],[423,276],[397,-139],[371,-555],[482,-55],[593,444],[320,415],[46,386],[-97,199],[-241,14],[-16,98],[210,182],[439,-18],[669,-216],[386,44],[102,306],[221,236],[340,164],[28,208],[-283,251],[-231,108],[-178,-35],[-132,-129],[-87,-222],[-557,122],[-922,354],[-137,312],[75,222],[803,235],[358,166],[39,232],[-112,523],[26,213],[50,233],[87,134],[-38,211],[-219,197],[-96,239],[28,281],[-125,283],[-139,143],[28,315],[311,111],[1227,288],[793,328],[359,368],[257,367],[153,367],[51,405],[-52,445],[-301,488],[-552,532],[-241,351],[69,169],[146,2],[223,-167],[391,-12],[560,144],[413,295],[265,448],[272,290],[280,131],[829,-5],[2070,-211],[2311,87],[1102,133],[666,208],[410,213],[105,206],[-70,188],[-393,133],[-211,233],[-26,332],[68,300],[163,269],[15,213],[-134,157],[-51,126],[31,93],[119,111],[213,122],[83,206],[43,175],[16,301],[122,304],[222,193],[64,207],[-92,222],[345,478],[781,734],[704,500],[626,265],[314,213],[3,161],[121,149],[239,139],[-12,272],[-264,405],[-34,452],[196,497],[-770,750],[-1737,1001],[-1576,1101],[-1417,1202],[-1017,551],[-618,-98],[-462,100],[-305,299],[-312,170],[-476,61],[-1039,33],[-874,229],[-373,273]],[[602866,559892],[-3,-585],[100,-326],[204,-264],[120,-268],[56,-407],[-130,-573],[-21,-291],[47,-201],[678,-1738],[298,-608],[158,-197],[70,-683],[-27,-1388],[-175,-1352],[-323,-1317],[-93,-824],[137,-332],[134,-166],[128,-2],[8,-108],[-113,-214],[-87,-445],[-60,-675],[-95,-385],[-129,-93],[-137,-332],[-147,-571],[-228,-384],[-310,-197],[-195,42],[-81,282],[-213,152],[-344,19],[-484,-443],[-624,-905],[-404,-394],[-184,117],[-161,-94],[-138,-304],[-88,-365],[-58,-638],[-78,-149],[15,-317],[80,-534],[-30,-1114],[-142,-1694],[-42,-959],[58,-224],[142,-51],[226,121],[134,269],[39,417],[76,118],[113,-183],[19,-309],[-77,-434],[-9,-350],[57,-264],[-71,-193],[-200,-121],[-80,-132],[38,-143],[-21,-159],[-81,-177],[13,-243],[109,-310],[-35,-453],[-180,-598],[-43,-628],[142,-988]],[[570850,324884],[-450,306],[-367,516],[-651,1241]],[[568696,328625],[-670,951],[-272,488],[-94,341],[-172,205],[-248,69],[-288,271],[-330,475],[-169,379],[-8,286],[-106,271],[-205,256],[-203,436],[-300,922],[-141,-541],[-104,-232],[-115,-102],[-127,18],[-113,94],[-97,-49],[-79,-200],[-189,-253],[-325,-261],[-176,-224],[-34,-118],[-88,-128],[-115,-111],[-33,-329],[-61,-152],[-158,-62],[-87,-37],[-61,-50],[-50,-124],[31,-391],[-37,-218],[-105,-46],[-197,332],[-288,710],[-363,531],[-437,355],[-231,444],[-26,533],[-134,689],[-242,843],[-182,382],[-122,-80],[-138,55],[-152,191],[-201,617],[-253,1044],[-231,617],[-209,190],[-277,44],[-345,-101],[-352,-450],[-358,-800],[-379,-501],[-398,-205],[-341,-66],[-283,72],[-326,327],[-368,583],[-396,472],[-424,360],[-337,13],[-161,6],[-574,-322],[-27,-31],[-253,-290],[-85,-97],[-20,-65],[-138,-449],[-211,-312],[-199,-84],[-63,-27],[-116,-263],[31,-415],[-48,-153],[-53,-164],[-233,-220],[-377,64],[-263,175],[-258,173],[-662,82],[-59,-13],[-745,-170],[-578,86],[-77,78],[-275,278],[-373,204],[-396,51],[-229,149],[-469,265],[-71,359],[-19,97],[-55,345],[-133,364],[-15,292],[71,150],[34,73],[15,359],[-75,495],[-112,209],[-18,32],[-184,-13],[-114,189],[-45,392],[-82,225],[-26,72],[-42,49],[-129,151],[-88,103],[-342,-228],[0,-1],[-161,-344],[-95,-537],[-86,-270],[-43,-451],[-20,-318],[-88,-340],[-91,-138],[-93,62],[-158,-121],[-18,-14],[-386,-502],[-110,-264]],[[580715,333929],[-113,-802],[-163,-349],[-251,-163],[-164,-322],[-118,-723],[-125,-407],[10,-213],[103,-154],[18,-183],[-67,-210],[4,-315],[76,-417],[-55,-287],[-186,-156],[-55,-191],[75,-227],[-21,-213],[-115,-199],[-215,-120],[-314,-40],[-224,74],[-135,187],[-323,-33],[-509,-252],[-280,-310],[-52,-369],[-82,-292],[-114,-216],[-122,-87],[-131,44],[-86,-147],[-44,-338],[-113,-205],[-184,-71],[-205,77],[-20,7],[-217,195],[-64,77],[-52,-4],[-6,-54],[3,-103],[-32,-117],[-89,-80],[-19,-96],[-2,-83],[-9,-64],[-67,-20],[-41,-83],[-35,-185],[-158,-140],[-400,-132],[-112,-114],[-39,-188],[-110,-213],[-252,-268],[-281,-138],[-312,-9],[-285,173],[-259,356],[-241,148],[-225,-57],[-205,110],[-185,278],[-214,50],[-364,-267]],[[854383,401651],[975,947],[632,-355],[282,-337],[141,-437],[129,-248],[119,-59],[289,313],[460,682],[337,627],[217,570],[66,448],[-82,328],[-17,309],[49,291],[-101,318],[-252,345],[-136,350],[-21,353],[23,254],[101,234]],[[857602,410455],[-95,293],[-4,307],[118,609],[9,751],[-98,889],[-278,520],[-457,151],[-281,257],[-158,547],[-22,276]],[[323789,519838],[-569,-365],[-254,-320],[-129,-396],[-196,-206],[-394,-22],[-799,666],[-359,159],[-187,-125],[-568,323],[-951,772],[-484,774],[-17,774],[-121,588],[-227,401],[-181,474],[-137,548],[-133,348],[-130,148],[-212,54],[-442,-58],[-472,121],[-192,-189],[-68,-460],[-258,-168],[-447,127],[-344,270],[-240,415],[-155,446],[-71,478],[-178,605],[-432,1100],[-404,589],[-154,506],[-38,619],[-278,304],[-518,-9],[-494,204],[-695,620],[-7,5],[-141,661],[-43,506],[8,493],[1,79],[-49,414],[-3,26],[-114,306],[0,937],[57,788],[57,780],[28,1192],[-58,816],[78,476],[24,144],[25,42],[235,384],[145,658],[16,466],[15,424],[156,731],[281,573],[38,225],[58,339],[-28,176],[-61,381],[16,60],[120,428]],[[312715,542463],[62,222],[486,862],[295,1011],[158,1741],[-25,1075],[310,696],[639,677],[461,770],[285,862],[454,515],[625,168],[446,334],[398,752],[356,304],[340,49],[444,-104],[382,-153],[320,-201],[281,-308],[211,-359],[69,-172],[46,-78],[38,-12],[53,12],[46,14],[140,88],[127,143],[421,296],[223,383],[-80,397],[-19,303],[40,210],[139,124],[238,37],[179,131],[120,222],[183,-50],[186,-305],[113,-146],[70,-34],[109,-20],[157,14],[192,231],[207,465],[339,261],[470,57],[443,269],[415,483],[412,183],[411,-116],[450,295],[490,707],[515,590],[540,471],[230,53]],[[327355,556882],[166,38],[251,-289],[338,-103],[639,125],[88,-34],[621,1044],[823,988]],[[327602,559213],[-39,-361],[35,-277],[109,-193],[-37,-402],[-274,-915],[-41,-183]],[[328511,562728],[-19,-165],[-294,-1860],[-209,-810],[-335,-569],[-52,-111]],[[326945,563656],[-27,-239],[-45,-161],[-246,-936],[72,-834],[309,-1042],[269,-653],[229,-266],[96,-312]],[[286382,777037],[219,-75]],[[286601,776962],[194,-484],[242,-917],[315,-594],[388,-270],[399,-74],[409,124],[339,-126],[268,-374],[772,180],[1275,736],[842,395],[408,55],[389,-114]],[[292841,775499],[554,-421],[174,-176]],[[285079,778045],[276,-642],[326,-252],[702,-113]],[[284215,778776],[860,-726]],[[284215,778776],[1,0]],[[284211,778780],[4,-4]],[[280095,782562],[420,-1304],[309,-710],[340,-549],[890,-512],[2161,-711]],[[542562,543997],[211,-709],[272,-102],[604,406],[211,399],[157,146],[171,27],[144,-312],[114,-649],[206,-341],[298,-34],[262,223],[227,479],[127,385],[27,292],[167,372],[307,453],[218,200],[129,-54],[180,-310],[231,-566],[210,-243],[191,79],[223,-63],[257,-203],[295,44],[334,291],[300,132],[267,-27],[288,256],[311,539],[221,724],[132,910],[150,571],[169,234],[180,456],[192,679],[146,344],[101,8],[-27,285],[-155,560],[-207,193],[-261,-174],[-186,55],[-110,284],[-187,181],[-264,78],[-92,296],[80,513],[-29,755],[-128,932],[-9,65],[-54,785],[28,572],[170,853],[310,1134],[175,1085],[42,1038],[88,538],[135,41],[159,228],[185,415],[119,436],[78,681]],[[550652,560862],[0,3]],[[704457,727118],[-254,112],[-89,40],[-273,-56],[-28,-19],[-449,-299],[-225,-213],[-652,-620],[-385,-560],[-1,-6],[-276,-843]],[[277984,560731],[-2,64],[31,338]],[[701825,724654],[-651,-214],[-178,-59],[-570,-487],[-588,-792],[-389,-427],[-189,-61],[-190,77],[-184,207],[-5,5],[-6,25],[-145,519],[-34,119],[-56,342],[-200,1230],[-16,98],[200,2809],[96,955],[19,184],[95,406],[5,271],[-84,136],[-179,-7],[-46,-26],[-226,-126],[-194,-26],[-115,98],[12,529],[139,959],[-214,808],[-566,656],[-481,228],[-141,-71],[-256,-130],[-11,-17],[-148,-231],[-175,-272],[-119,-373],[-151,-469],[-280,-689],[-290,-536],[-118,-146],[-89,-111],[-67,-100],[-42,-227],[154,-713],[-10,-598],[-174,-483],[-191,-230],[-52,6],[-157,16],[-166,112],[-27,44],[-96,158],[-333,55],[-542,-92],[-128,-84],[-185,-121],[-58,-37],[-200,-393],[-17,-146],[-41,-370],[85,-641],[-14,-155],[-15,-183],[-14,-153],[-168,-341],[-139,-196],[-108,-50],[-235,294],[-144,254],[-218,386],[-249,346],[-135,53],[-74,-35],[-83,-66],[-37,-67],[-10,-16],[-41,-190],[-115,-75],[-152,54],[-12,5],[-150,-57],[-89,-200],[-252,-243],[-443,-272],[-243,-289],[-27,-207],[-14,-101],[-66,-138],[-111,41],[-25,9]],[[374863,369582],[-1268,-1538],[-278,-245],[-287,-61],[-391,41],[-233,-62],[-75,-165],[-80,-20],[-87,124],[45,391],[177,659],[222,419],[267,178],[274,344],[280,510],[330,350],[380,193],[398,515],[417,838],[427,497],[434,154],[154,-18],[163,-80],[194,125],[447,484],[294,52],[141,-378],[149,-108],[158,164],[150,20],[143,-123],[380,351],[619,825],[569,608],[778,587]],[[380171,375213],[2383,2263],[804,669],[379,111],[220,-223],[253,-72],[286,80],[317,-163],[349,-406],[356,0],[469,538]],[[371350,392505],[-686,1882],[122,350],[7,166],[-66,101],[-5,223],[57,345],[-43,516],[-143,688],[-308,552],[-472,415],[-346,153],[-219,-108],[-225,289],[-231,685],[-234,170]],[[368558,398932],[-354,-517]],[[366616,396856],[-580,557]],[[363588,397128],[-198,-97]],[[363390,397031],[-189,-376]],[[363201,396655],[-247,-688],[-223,-105],[-199,476],[-180,71]],[[362352,396409],[-163,-336],[-184,-196]],[[362005,395877],[-307,-85]],[[335606,306008],[278,-93],[411,-370],[546,-647],[407,-262],[446,278]],[[332251,309747],[299,-508],[1187,-1622],[852,-886],[516,-148],[207,-199],[130,-215],[164,-161]],[[332251,309747],[774,-446],[454,-113],[346,104],[440,-384],[536,-872],[399,-835],[406,-1193]],[[332247,309749],[4,-2]],[[337208,344375],[-587,-730],[-170,-438],[76,-584],[73,-635],[-19,-639],[-86,-855],[-189,-623],[-293,-390],[-145,-862],[1,-1335],[-98,-1305],[-192,-1261],[-8,-193],[-30,-303],[-62,-154],[-78,-149],[-136,-122],[-377,-392],[-248,-472],[-99,-502],[-112,-945],[-125,-1388],[-9,-991],[108,-597],[2,-660],[-102,-724],[-14,-611],[76,-498],[10,-626],[-33,-456],[-5,-389],[-44,-283],[-58,-255],[-174,-411],[-904,-2598],[-662,-1683],[-405,-659],[-371,-198],[-236,-404],[-100,-610],[-10,-522]],[[331373,316923],[81,-434],[-5,-609],[-134,-1175],[-85,-1081],[36,-756],[127,-793],[188,-804],[250,-814],[420,-710]],[[348304,355496],[-41,-2294],[-19,-1094],[-33,-465],[-94,-1325],[-172,-1061],[-43,-264],[-195,-705],[-32,-15],[-145,-71],[-126,-211],[-63,-274],[-14,-62],[-143,-280],[-209,-223],[-113,-246],[-18,-266],[-200,-172],[-128,-26],[-255,-51],[-224,-213],[-67,-349],[-128,-278],[-189,-205],[-90,-340],[1,-34],[8,-442],[-108,-408],[-227,-341],[-210,-9],[-167,280],[-24,41],[-257,215],[-322,106],[-269,-81],[-215,-268],[-192,-426],[-70,-246],[-96,-336],[-185,-98],[-129,247],[-75,143],[-258,119],[-312,-154],[-249,54],[-184,260],[-284,29],[-358,-189],[-25,-14],[-777,235],[-1169,672],[-989,256],[-1213,-242]],[[350594,367904],[-337,-436]],[[350257,367468],[-245,-965],[-151,-1493],[-208,-919],[-395,-517]],[[349258,363574],[557,364],[213,985],[206,1542],[161,906],[199,533]],[[352886,373096],[-432,-1095],[-433,-662]],[[352021,371339],[-579,-593],[-387,-879]],[[351055,369867],[-195,-1164],[-266,-799]],[[357231,384995],[-382,-687]],[[356849,384308],[-164,-643],[-72,-830]],[[356613,382835],[-202,-809]],[[356411,382026],[-332,-789],[-153,-623],[27,-457],[-45,-412],[-176,-550]],[[359750,393393],[-116,-394]],[[359634,392999],[-128,-149],[-178,-36],[-199,-249],[-218,-461],[-144,-427],[-70,-394]],[[358697,391283],[-5,-275],[18,-81],[-46,-127]],[[358664,390800],[-119,-30],[-113,-278]],[[358432,390492],[-92,-924]],[[347013,421177],[-992,-225],[-1022,-1131],[-572,-511],[-462,-266],[-398,-578],[-335,-887],[-168,-642],[-1,-397],[148,-398],[298,-400],[172,-524],[46,-648],[146,-553],[247,-459],[77,-424],[-90,-389],[-31,-325],[29,-261],[144,-297],[258,-333],[168,-341],[76,-349],[-43,-364],[-162,-381],[-39,-352],[84,-325],[-50,-313],[-183,-300],[-285,-238],[-387,-177],[-303,-484],[-219,-792],[-189,-507],[-158,-219],[-96,-298],[-35,-376],[17,-335],[103,-441],[-556,-1884]],[[342250,403053],[-271,-780]],[[341979,402273],[-258,-454],[-276,-825]],[[341445,400994],[-330,-461],[-476,-374]],[[340639,400159],[-174,-1001],[129,-1629],[-58,-1040],[-246,-453],[-148,-536],[-51,-620],[-109,-411],[-170,-203],[-57,-274],[54,-346],[223,-242],[391,-140],[229,-166],[66,-193],[104,-766],[11,-383],[-25,-319],[-100,-370],[-175,-421],[-54,-260],[68,-99],[-28,-242],[-125,-385],[-179,-264],[-233,-143],[-117,-181],[-2,-220],[-172,-430],[-343,-640],[-354,-529],[-366,-416],[-154,-282],[55,-145],[2,-143],[-26,-70],[-26,-69],[89,-323],[41,-89],[191,-418],[122,-637],[7,-422],[5,-345],[50,-350],[82,64],[5,4],[83,-56],[81,-178],[-16,-183],[-56,-95],[-55,-92],[0,-150],[80,-80],[32,-33],[18,-165],[-29,-82],[-48,-137],[30,-180],[47,-50],[88,-92],[56,-396],[-23,-651],[-60,-474],[-24,-73],[-74,-226],[-15,-232],[68,-165],[-31,-345],[-130,-525],[-28,-528],[48,-344],[26,-188],[-22,-861],[-172,-1732],[-5,-50],[33,-738],[107,-440],[193,-390],[132,-589],[72,-789],[-79,-484],[-229,-179],[-12,-298],[205,-415],[105,-451],[4,-486],[214,-615],[424,-744],[236,-816],[46,-889],[145,-677],[243,-466],[74,-517],[-95,-566],[79,-570],[251,-575],[100,-373],[-50,-174],[55,-366],[162,-558],[90,-502],[20,-446],[-33,-405],[-128,-548],[17,-498],[-83,-372],[-175,-413],[-54,-343],[69,-274],[-26,-135],[-119,6],[-155,-190],[-190,-384],[-166,-187],[-140,10],[-174,-262],[-206,-535],[-24,-494]],[[339878,356112],[80,-232],[77,-221],[67,-406],[-3,-45],[-21,-312],[-16,-41],[-134,-340],[-277,-405],[-81,-177],[-7,-171],[-70,-341],[-170,-537],[-60,-191],[-58,-339],[-13,-250],[-145,-274],[-308,-403],[-79,-103],[-80,-246],[-4,-57],[-15,-207],[-49,-157],[-36,-45],[-17,-21],[-75,-265],[-59,-438],[-1,-62],[-5,-500],[47,-685],[-9,-222],[-85,-118],[-27,-88],[-21,-71],[-16,-293],[-2,-27],[-1,-6],[-61,-195],[-10,-33],[-3,-3],[-125,-146],[-47,-172],[20,-114],[14,-79],[-95,-191],[-67,-58],[-154,-131],[-136,-275],[-24,-174],[-26,-187],[-124,-322],[-165,-238],[-32,-46],[-64,-378],[102,-699]],[[160495,836900],[143,-291],[145,-61],[194,72],[270,255],[347,437],[543,440],[738,442],[904,-11],[1071,-464],[737,-230],[403,5],[1414,345],[673,301],[539,374],[426,128],[315,-119],[149,-170],[-16,-220],[56,-250],[128,-278],[28,-242],[-26,-175],[132,-312],[426,-360],[742,-134],[1058,93],[913,433],[768,772],[526,798],[284,822],[120,645],[-43,468],[-95,313],[-141,213],[-6,170],[-63,128],[-105,189],[-77,333],[66,484],[210,635],[29,299],[-11,199],[49,117],[70,69],[135,184],[67,293],[-23,231],[-77,240],[18,286],[122,352],[-24,357],[-37,178],[28,137],[101,162],[12,248],[-61,133],[-49,245],[16,169],[-16,158],[-36,192],[24,132],[-26,126],[19,161],[62,130],[-13,248],[-140,202],[-41,295],[87,319],[178,253],[267,189],[345,76],[424,-33],[244,48],[63,131],[-11,146],[-86,164],[-23,157],[40,151],[-51,117],[-70,97],[-6,83],[121,122],[155,-12],[137,-26],[-2,-163],[37,-92],[77,-20],[195,198],[315,416],[353,310],[392,204],[656,-66],[920,-335],[739,-135],[558,65],[762,434],[964,804],[725,494],[730,275]],[[184129,852550],[1230,651],[399,313],[-20,194],[93,140],[207,86],[230,324],[251,564],[233,381],[214,201],[456,-52],[696,-305],[488,-81],[279,141],[158,-16],[37,-174],[-86,-206],[-207,-239],[-63,-185],[83,-131],[177,-5],[271,121],[300,-43],[329,-208],[284,51],[357,463]],[[664685,872575],[-310,-209],[-276,-1],[-517,208],[-312,-361],[-384,72],[-560,384],[-566,-39],[-573,-463],[-329,-446],[-84,-431],[-142,-198],[-199,34],[-386,-170],[-570,-374],[-509,-125],[-609,171],[-132,208],[-222,198],[-68,36],[-43,77],[24,178],[-40,337],[-112,482],[-185,385],[-175,195],[-71,105],[-27,176],[-3,176],[38,105],[155,333],[74,649],[-55,861],[-225,626],[-395,391],[-341,235],[-286,80],[-124,228],[38,377],[-71,396],[-272,625],[-463,1006],[13,180],[41,109],[103,66],[176,-144],[326,157],[328,398],[219,92],[134,44],[61,219],[11,197],[72,196],[133,66],[62,88],[-31,131],[-144,219],[-31,219],[105,164],[143,135],[231,424],[202,603],[645,451],[1089,299],[371,133],[103,175],[13,263],[38,181],[163,205],[53,225],[-71,198],[11,219],[-62,219],[17,200],[39,158],[124,186],[41,211],[95,85],[120,196],[38,142],[120,84],[28,189],[11,184],[18,129],[34,229],[5,262],[57,427],[143,527],[-98,386],[-339,246],[-316,358],[-293,470],[-284,248],[-276,25],[-124,155],[25,286],[-175,172],[-374,56],[-144,558],[86,1059],[-221,870],[-528,680],[-92,628],[90,342],[159,384],[10,348],[-88,188],[-195,177],[-318,527],[-361,802],[-577,402],[-794,2],[-653,-142],[-974,-602],[-411,-343],[-258,-455],[-106,-569],[-111,-348],[-177,-188],[-536,-744],[-348,-294],[-342,-93],[-366,-366],[-393,-639],[-587,-346],[-782,-52],[-648,-192],[-514,-329],[-583,-167],[-652,-3],[-802,148],[-954,301],[-481,344],[-9,388],[79,576],[169,764],[304,651],[440,537],[166,355],[-109,173],[-57,366],[-5,559],[-52,479],[-99,397],[9,298],[117,198],[21,217],[-74,235],[-18,245],[36,256],[-91,305],[-216,354],[-55,715],[108,1077],[-33,598],[-261,180],[-328,676],[-103,345],[12,239],[96,221],[177,203],[-9,152],[-196,102],[-96,199],[6,297],[331,336],[656,376],[401,127]],[[646187,905918],[322,329],[1009,647]],[[646187,905918],[146,-122],[368,-31],[589,62],[443,296],[298,531],[618,516],[938,500],[599,503],[108,211]],[[647518,906894],[300,405],[-361,192],[-160,269],[43,345],[141,289],[98,95]],[[649563,908920],[-260,-189],[-214,-294],[-142,-407],[-352,-412],[-840,-630],[-237,-94]],[[173106,795494],[744,70],[214,-119],[5,-33],[31,-241],[-43,-328],[-122,-384],[-22,-513],[79,-643],[105,-446],[130,-250],[80,-472],[30,-692],[323,-522],[616,-354],[387,-22],[156,308],[153,144],[224,-27]],[[315432,391327],[160,369],[38,235],[-31,222],[71,202],[172,181],[250,-240],[327,-660],[304,-283],[423,140],[137,546],[212,377],[333,391],[325,-136],[318,-661],[272,-432],[225,-204],[259,-89],[293,25],[369,-1017],[447,-2060],[248,-1558],[50,-1056],[202,-619],[356,-184],[269,-678],[182,-1172],[212,-675],[244,-179],[194,-430],[144,-682],[221,-346],[297,-12],[510,-377],[722,-742],[473,-585],[225,-428],[177,-556],[194,-1025],[257,-1439],[196,-651],[220,-344],[63,-147],[47,-110],[0,-28],[0,-143],[234,-350],[151,-170],[319,-359],[440,-1024],[409,-1519],[327,-953],[58,-169],[360,-725],[331,-513],[294,-292],[7,-8],[161,-242],[3,-30],[18,-157],[282,-387],[101,-109],[442,-479],[344,-588],[135,-550],[9,-36],[7,-8],[196,-222],[333,-375],[801,-538],[128,-86],[676,-298],[422,29],[137,-114],[468,-385],[788,-1024],[481,-710],[174,-396],[101,-125],[415,-515],[1286,-1326],[568,-332],[269,-303],[30,-73],[130,-312],[157,-118],[118,114],[37,36],[323,-138],[491,-426],[384,-515],[103,-237],[343,-788],[48,-110]],[[165474,752313],[-78,-892],[-158,-355],[-458,-278],[-812,-320],[-400,-635],[10,-952],[-51,-620],[-114,-291],[-143,17],[-171,324],[-175,59],[-178,-206],[-235,-43],[-290,121],[-248,-31],[-204,-183],[-184,9],[-162,202],[-124,1],[-85,-198],[-19,-235],[49,-270],[-81,-275],[-315,-419]],[[519750,770026],[598,-244],[272,131],[218,636],[326,322],[127,449],[35,684],[147,521],[261,360],[421,177],[582,-6],[485,-116],[388,-225],[263,-286],[138,-347],[454,-2],[1158,513],[661,-242],[118,-36],[124,132],[160,79],[124,-87],[130,-167],[95,-20],[59,126],[77,-6],[96,-138],[82,29],[68,195],[107,89],[143,-16],[132,-143],[118,-269],[287,-203],[454,-137],[312,-179],[170,-222],[184,-39],[197,145],[106,197],[15,249],[190,169],[364,91],[416,15],[467,-61],[344,-210],[221,-360],[242,-243],[265,-126],[304,71],[515,400],[599,205],[316,-41],[234,-219],[180,-62]],[[111636,893805],[230,579],[86,374],[27,542],[-28,182],[75,149],[170,179],[337,78],[505,-21],[390,105],[277,233],[398,717],[520,1202],[504,775],[486,346],[362,424],[238,501],[265,246],[292,-9],[212,122],[133,251],[48,188],[-12,142],[69,95],[329,157],[222,340],[124,88],[102,-48],[62,61],[23,172],[-98,132],[-217,92],[-23,193],[170,292],[-29,152],[-215,12],[-69,121],[-103,218],[-243,357],[-77,244],[92,131],[27,204],[-35,275],[-199,158],[-363,38],[-319,175],[-275,313],[-369,140],[-734,-8],[-84,84],[-21,107],[42,129],[-31,81],[-104,34],[-1712,-625],[-1059,161],[-439,-7],[-171,-120],[-70,-112],[34,-103],[-263,130],[-316,-9],[-448,-140],[-229,-131],[-11,-124],[-430,-97],[-850,-70],[-510,-126]],[[108331,904276],[-284,-70],[-1107,-484],[-321,-224],[-133,-225],[-51,-301],[-71,-177],[-91,-52],[-869,13],[-157,22],[-59,59],[-14,112],[-30,87],[-92,53],[-386,-310],[-679,-676],[-823,-331],[-966,15],[-690,-72],[-413,-158],[-173,-151],[66,-142],[4,-102],[-58,-63],[-325,107],[-196,-101],[-193,-296],[-334,-220],[-476,-142],[-298,-3],[-119,137],[-77,-3],[-35,-144],[-171,-73],[-308,-4],[-308,-171],[-309,-340],[-316,-136],[-323,69],[-472,-91],[-711,-345]],[[282429,740080],[401,275],[231,-46],[197,-276],[198,-133],[201,12],[78,-65],[-47,-142],[53,-162],[153,-184],[51,-171],[-49,-158],[16,-117],[81,-74],[49,-172],[16,-271]],[[284058,738396],[195,-264]],[[284253,738132],[374,-260],[154,-264],[-67,-270],[-10,-193],[71,-175],[499,-352],[308,-499]],[[285582,736119],[246,-195]],[[285828,735924],[135,-122],[63,-154]],[[898588,470711],[408,-2106],[-1,-548],[120,-415],[241,-465],[304,-314],[367,-165],[317,120],[269,407],[221,220],[173,33],[364,-500],[732,-1363],[66,-172],[45,-174],[13,-224],[80,-101],[147,52],[118,-30],[91,-112],[31,-137],[-11,-126],[50,-106],[161,20],[113,-68],[64,-156],[58,-21],[74,65],[105,-47],[205,-305],[102,-521],[-2,-739],[-122,-409],[-241,-79],[-145,-221],[-47,-364],[71,-387],[189,-408],[56,-469],[-79,-590],[5,-79]],[[298816,441712],[214,-365],[357,31],[857,459],[308,626],[311,330],[418,242],[440,460],[461,675],[217,433],[-29,192],[58,183],[143,173],[104,491],[67,809],[232,772],[399,736],[216,545],[33,356],[103,237],[173,118],[129,360],[29,212],[53,390],[183,490],[283,376],[152,324],[21,270],[183,252],[346,234],[294,37],[243,-161],[166,24],[88,210],[143,106],[295,4],[115,-77],[64,86],[65,184],[79,78],[137,-21],[202,237],[268,532],[376,445],[483,358],[252,39],[95,-97],[60,-135],[123,-66],[143,63],[168,-143],[214,-516],[114,-416],[14,-314],[69,-129],[125,58],[84,-63],[45,-183],[180,-34],[317,115],[208,-2],[97,-118],[216,132],[503,574],[1128,1002],[390,565],[27,464],[-31,172],[-54,79],[-17,149],[31,284],[-19,165],[-34,95],[8,111],[152,264],[22,217],[-47,162],[17,121],[44,242],[216,620],[86,474],[-44,327],[133,444],[309,563],[117,269],[8,135],[55,90],[72,2],[59,106],[28,239],[124,175],[222,109],[150,-26],[78,-163],[118,71],[157,306],[159,93],[162,-122],[98,57],[33,235],[128,212],[221,187],[107,-82],[17,-226],[86,-100],[162,67],[124,-117],[84,-303],[120,-117],[148,4],[67,-157],[70,-70],[172,123],[129,-30],[68,-132],[84,7],[57,109],[129,-7],[133,-84],[189,43],[69,171],[80,95],[116,-6],[98,89],[58,192],[95,44],[103,-27],[61,86],[-8,123],[58,71],[71,-20],[33,105],[-20,122],[38,121],[179,255],[202,230],[102,22],[70,-111],[42,159],[14,427],[74,99],[64,23],[174,-110],[126,81],[40,258],[49,64],[69,44],[171,-154],[225,141],[279,438],[124,279],[-31,121],[27,86],[86,50],[11,68],[6,73],[71,86],[-3,169],[-142,538],[4,340],[151,140],[43,136],[-66,130],[-19,197],[27,262],[93,136],[159,12],[91,126],[23,243],[109,220],[193,200],[131,548],[103,1345],[-120,1309],[-146,535],[-212,198],[-57,199],[100,200],[57,274],[14,349],[66,193],[116,38],[42,143],[-33,249],[87,143],[207,36],[102,-64],[-2,-164],[52,-97],[108,-30],[81,83],[54,197],[156,94],[257,-9],[193,-199],[129,-390],[185,-154],[241,82],[75,-113],[-12,-208],[29,-187],[96,-133],[133,66],[172,266],[148,75],[122,-116],[218,170],[315,457],[90,-39],[39,-125],[62,-197],[138,-69],[57,124],[-32,502],[45,290],[124,78],[21,174],[41,342],[64,76],[59,136],[96,0],[126,41],[73,224],[3,687],[-29,403],[-62,119],[50,201],[162,283],[60,263],[-41,245],[82,307],[135,140],[118,-44],[114,85],[43,140],[34,229],[105,101],[113,-28],[103,151],[32,170],[-40,191],[64,186],[166,182],[222,56],[276,-70],[276,303],[100,196],[126,245],[48,307],[-67,298],[47,256],[86,89],[199,85],[127,207],[57,331],[180,259],[303,189],[322,605],[343,1022],[99,830],[-172,923]],[[226139,635718],[331,-93],[126,84],[32,230],[106,130],[180,30],[147,120],[113,213],[110,-20],[107,-250],[117,-56],[129,140],[9,213],[-9,100],[99,325],[137,182],[264,60],[186,269]],[[804245,646447],[40,-399],[88,-168],[150,-72],[61,-141],[-27,-210],[62,-321],[151,-431],[219,-285],[287,-138],[177,3],[64,144],[96,-20],[190,-276]],[[286613,786641],[-200,129],[-81,-44],[-40,-261]],[[285216,786973],[-109,29],[-193,-129],[-72,-3]],[[281075,787463],[-485,-606],[-223,-99],[-125,203],[-313,85],[-751,-53]],[[284598,787547],[48,435]],[[284535,788488],[-150,-70],[-298,-504],[-294,-30],[-274,370],[-196,-37],[-119,-444],[-225,-122],[-330,200],[-266,250],[-201,300],[-95,273],[10,246],[-112,152],[-236,58],[-197,-80],[-157,-218],[-78,-383],[28,-673],[-23,-152]],[[240620,793141],[-3,-4]],[[240617,793137],[-29,-39],[-209,-287],[-280,-144],[-399,-68],[-229,120],[-37,19],[-133,345],[-566,305],[-997,267],[-574,227],[-151,189],[-41,99],[-42,102],[-21,322]],[[245473,794607],[-81,-434],[-273,-176],[-493,-64],[-347,50],[-203,163],[-524,-100],[-1272,-545]],[[248601,797349],[-305,-649],[65,-300],[-30,-228],[-102,-258],[-329,-193],[-558,-128],[-460,-349],[-546,-856]],[[524307,781670],[819,482],[1028,454]],[[526135,782606],[300,426],[47,333],[-105,382],[-22,198],[-20,182],[-4,33],[14,444],[120,580],[11,36],[215,679],[47,445],[-171,224],[-10,13],[-18,23]],[[525354,787547],[55,0],[98,0]],[[524669,787463],[-502,176],[-224,-141],[-111,-400],[-271,-109],[-290,123],[-139,58],[-359,0],[-291,-181],[-316,-50],[-147,-23],[-147,8],[-489,27],[-319,188],[-49,29],[-101,398],[8,170],[18,420],[152,780],[42,573],[-67,365],[20,122],[70,424],[75,221],[172,508],[165,768],[43,416],[40,392],[120,528],[235,369],[648,1198],[206,379]],[[522861,795199],[520,1469],[190,688],[35,396],[-26,230],[-87,62],[-100,345],[-113,627],[23,466],[117,227],[15,229],[-98,284],[-123,568],[-146,410],[-170,250],[-318,20],[-465,-211],[-440,304],[-415,819],[-131,246],[13,261],[49,339],[-59,253],[-142,197],[-314,194],[-277,313],[-242,434],[-147,369],[-54,304],[-165,361],[-276,417],[-86,283],[0,304],[-59,203],[-14,353],[-85,248],[-157,143],[-84,194],[-10,247],[-86,177],[-164,109],[6,236],[-51,242],[-143,204],[24,365],[25,339],[-27,213],[-12,171],[-16,222],[-177,206],[-86,193],[8,269],[-663,813],[-404,367],[-362,188],[-4,2],[-115,18]],[[516773,812379],[-176,27],[-214,-102],[-327,23],[-440,146],[-362,-60],[-285,-268],[-387,-113],[-734,60]],[[512826,764139],[-287,-46],[-132,-112],[-74,-195],[-12,-138],[22,-81],[-27,-131],[-153,-182],[-21,-190],[53,-239]],[[517036,778882],[-430,-325],[-212,-159],[-243,-646],[-60,-968],[-128,-665],[-196,-360],[-287,167],[-378,692],[-242,149],[-179,-203],[-262,-79],[-368,109],[-297,-55],[-224,-219],[-132,-346],[-39,-471],[27,-299],[94,-128],[-32,-282],[-160,-437],[16,-886],[191,-1338],[15,-896],[-160,-455],[-71,-430],[16,-405],[-39,-328],[-142,-377],[-132,-1320],[5,-721],[98,-561],[135,-370],[170,-178],[63,-166],[-63,-231],[-362,-395],[-146,-465],[-51,-666],[33,-451],[176,-353],[81,-150],[32,-273],[22,-348],[122,-279]],[[522917,780524],[-506,-640],[-313,-233],[-436,-59],[-404,11],[-505,-290],[-740,-588],[-321,-155],[-191,266],[-428,1217]],[[224522,662804],[178,-692],[109,-120],[148,-164],[395,-105],[300,-241],[93,-172],[112,-206],[259,-228],[122,-31],[190,-47],[299,-250],[185,-271],[102,-149],[534,-277],[58,-10]],[[227606,659841],[723,-122],[595,-342],[60,-81]],[[228984,659296],[348,-471],[180,-112],[48,-8],[24,84],[31,156],[129,147]],[[229744,659092],[29,33],[367,115]],[[219337,679921],[57,-322],[5,-30],[256,-508],[403,-669],[68,-113],[51,-128],[185,-469],[30,-76],[13,-112],[49,-454],[241,-895],[41,-119],[378,-1105],[187,-660],[-46,-96],[33,-344],[70,-373],[42,-221],[207,-502],[69,-94],[235,-318],[307,-740],[311,-1067],[178,-385],[198,-427],[164,-207],[277,-348],[250,-518],[59,-478],[-5,-410],[-1,-5],[-66,-336],[28,-324],[82,-202],[43,-104],[41,-376],[-38,-412],[-11,-111],[4,-148]],[[203982,693865],[362,-326]],[[204344,693539],[40,-82],[208,-423],[253,-794],[299,-554],[199,-182],[145,-132],[588,-926],[829,-1539],[210,-324],[452,-701],[458,-475],[35,-38],[332,-441]],[[208392,686928],[119,-260],[50,-109]],[[208561,686559],[108,-379],[120,-423],[429,-1852],[0,-539],[0,-311],[37,-182],[128,-623],[328,-1044],[287,-614],[246,-185],[268,-370],[292,-554],[335,-372],[380,-190],[525,-497],[670,-806],[459,-411],[248,-17],[218,258],[186,534],[184,344],[162,139],[18,15],[73,246],[-22,215],[-12,123],[122,761],[48,206],[122,518],[107,458],[51,98],[277,535],[3,7],[28,7],[358,92],[164,145],[87,77],[118,345]],[[215713,682313],[206,37],[209,-193]],[[216128,682157],[85,-79],[479,-175],[662,-78],[141,10],[250,17],[119,131],[63,-6],[4,-145],[98,-62],[192,22],[167,-203],[213,-641]],[[201962,700311],[148,-989],[191,-405],[284,-149],[261,-386],[239,-623],[119,-468],[-2,-313],[195,-896],[585,-2217]],[[202274,701865],[-274,-339]],[[201593,729068],[999,-189],[396,383],[306,-98],[350,-453],[407,-224],[465,4],[495,-184],[525,-372],[357,-351],[187,-329],[132,-373],[79,-418],[10,-566],[-58,-714],[26,-822],[112,-929],[22,-1016],[-67,-1103],[-116,-739],[-248,-564],[-434,-652],[-184,-503],[-79,-573],[-181,-567],[-282,-560],[-210,-663],[-137,-764],[-263,-847],[-390,-930],[-180,-762],[30,-594],[-96,-1229],[-221,-1866],[-150,-1008],[-79,-150],[-23,-722],[34,-1296],[-149,-1058],[-333,-821],[-210,-684],[-129,-817]],[[586771,683824],[-72,110],[-135,71]],[[586564,684005],[-308,243],[-222,313],[-103,358],[-110,175],[-114,111],[9,176],[-27,512],[-173,1157],[-44,671],[42,182],[-37,195],[-27,132],[2,462],[-43,392],[-90,320],[-165,315],[-242,308],[-125,349],[-10,389],[-88,365],[-249,573]],[[552642,504511],[-409,579],[-396,306],[-519,226],[-318,258],[-116,292],[-130,120],[-242,-113]],[[292172,809660],[634,398],[276,64],[127,-139],[154,-30],[145,-10],[110,-149],[116,-177],[241,-168],[268,-35],[294,100],[210,-225],[123,-549],[28,-484],[-67,-421],[127,-196],[482,44]],[[291100,809862],[-70,229],[9,134],[-44,113],[-236,76],[-429,38],[-946,-276],[-2033,-801]],[[281301,810164],[115,-60],[647,-536],[833,-202],[1234,-49],[1136,144],[1037,336],[306,-119]],[[598886,441936],[-669,561],[-273,97],[-99,-179],[-55,-293],[-16,-611],[471,-3116],[168,-790],[63,-294],[147,-91],[166,15],[185,120],[205,295],[162,337],[62,131],[350,-10],[475,-489],[185,-304],[74,-121],[30,-247],[14,-116],[317,-210],[592,-59],[316,138],[115,51],[106,171],[164,265],[283,232],[294,25],[224,-149],[135,-290],[16,-35],[291,-232],[429,-142],[469,209],[509,558],[290,584],[71,607],[85,369],[96,130],[270,75],[442,20],[385,-192],[491,-604],[602,779],[240,311],[535,364],[226,1],[284,2],[418,262],[230,367],[97,153],[345,331],[165,63],[199,77],[340,251],[477,541],[1175,1877]],[[214498,625841],[-26,343],[-211,180],[-565,265],[-144,206],[-87,278],[17,363],[-121,451],[-287,427],[-132,352],[24,276],[-53,408],[-129,540],[-117,293],[-106,44],[-119,-111],[-198,-400]],[[211920,629551],[-371,302],[-119,224],[8,246],[-133,294],[-413,515]],[[210891,631135],[-281,-33],[-201,116],[-215,253],[-94,212],[-218,796],[-233,407],[-300,1218],[-82,334],[-168,313],[-153,26],[-314,-326],[-299,-222],[-59,57],[-34,228]],[[208044,634779],[-199,-108],[-87,-55],[-109,-226],[-258,-301],[-200,-83],[-128,-112]],[[278969,732842],[516,1294],[367,1579],[250,580],[256,107],[319,634],[384,1160],[312,749],[363,506]],[[281736,739451],[221,3],[98,135],[48,268],[100,156],[226,67]],[[162275,734286],[187,-243],[28,-222],[-67,-285],[-10,-334],[49,-386],[-15,-262],[-76,-139],[6,-182],[89,-225],[-89,-270],[-79,-193],[-324,-280],[-52,-115],[-46,-162],[-67,-120]],[[159970,746476],[-59,-435],[161,-439],[362,-587],[172,-432],[-17,-276],[30,-163],[76,-49],[-9,-217],[-95,-386],[9,-243],[111,-98],[111,-543],[112,-989],[130,-624],[148,-259],[22,-697],[-105,-1135],[-33,-730],[38,-325],[141,-445],[244,-565],[134,-526],[22,-488],[96,-406],[171,-325],[144,-155],[119,14],[62,-162],[9,-505]],[[304822,778758],[91,456],[65,320],[131,349],[238,271],[170,441],[149,116],[185,-61],[86,86],[-12,236],[383,836],[778,1436],[521,813],[263,192],[195,55],[129,-80],[248,160],[367,401]],[[308809,784785],[139,93],[306,203],[64,24],[458,167],[288,180],[43,137],[9,31],[131,58],[4,-1],[191,-45],[15,-4],[6,-7],[324,-353],[55,-60]],[[310842,785208],[842,-1186],[229,-534],[37,-685],[-76,-1014],[64,-661],[207,-309],[81,-241],[-47,-174],[49,-324],[144,-476],[49,-588],[-45,-700],[131,-463],[309,-224],[262,-90],[217,44],[252,-124],[286,-293],[237,-10],[187,272],[198,141],[312,15],[445,-510],[361,-241],[425,-141],[304,-454],[183,-766],[34,-348],[-78,-287],[-271,-505],[-110,-331],[2,-137],[97,-120]],[[317041,362731],[125,-1231],[-96,-666],[67,-663],[197,-881],[308,-797],[418,-712],[206,-529],[-7,-347],[124,-241],[255,-135],[237,179],[220,494],[213,150],[209,-191],[141,-301],[74,-411],[186,-294],[298,-176],[337,127],[376,429],[270,425],[163,419],[157,164],[149,-90],[229,-743],[309,-1396],[151,-886],[-7,-378],[158,-694],[323,-1012],[119,-743],[-87,-474],[43,-791],[171,-1107],[44,-975],[-85,-845],[-13,-804],[58,-763],[126,-825],[192,-887],[85,-719],[-37,-825],[-37,-273],[119,-641],[262,-1099],[316,-862],[370,-624],[200,-515],[30,-405],[130,-307],[230,-211],[257,-408],[286,-606],[237,-918],[190,-1227],[342,-993],[494,-756],[445,-447],[395,-137],[353,112],[308,361],[229,14],[149,-331],[391,-397],[632,-460],[601,-575],[572,-688],[324,-500],[77,-314],[23,-638],[-30,-963],[33,-592],[97,-221],[33,-500],[-29,-780],[37,-586],[103,-392],[29,-310],[-47,-226],[-151,-183],[-255,-138],[-140,-258],[-39,-565],[80,-847],[-59,-602],[-170,-638],[0,-366],[169,-94],[114,-529],[58,-962],[-30,-727],[-118,-491],[23,-395],[293,-453]],[[773632,629631],[-15,-726],[98,-689],[208,-894],[131,-865],[55,-838],[-353,-731],[-1143,-938],[-550,-173],[-216,-190],[-66,-262],[-88,-154],[-108,-46],[-208,-785],[-458,-2286],[-205,-2832],[-47,-122],[-97,-17],[-145,90],[-59,-383],[25,-854],[110,-825],[195,-796],[203,-377],[51,10],[159,32],[91,-75],[-27,-191],[81,-498],[189,-806],[56,-603],[-115,-602],[8,-74],[150,-1475],[-17,-753],[-138,-475],[-114,-664],[-90,-852],[-49,-944],[-6,-1037],[45,-709],[5,-25]],[[167506,724484],[-227,-613],[-445,-317],[-737,-223],[-522,356],[-309,938],[-279,555],[-250,175],[-447,810],[-968,2167]],[[170176,725049],[-199,634],[-832,1235],[-126,171],[-97,88],[-96,-108],[-65,-191],[-215,-903],[-224,-506],[-233,-108],[-166,-168],[-147,-342]],[[163322,728332],[-141,302],[-76,456],[-59,710],[-120,420],[-274,195],[-64,75],[-78,151],[-81,82]],[[307171,320921],[60,36],[589,46],[296,-153],[137,-342],[70,-367],[4,-390],[162,-224],[321,-59],[375,83],[428,223],[245,31],[93,-242],[139,-356],[29,-477],[-36,-716],[58,-642],[153,-567],[40,-385],[28,-166],[122,-66],[379,57],[321,-223],[262,-503],[377,-312],[491,-121],[326,-222],[244,-484]],[[264530,571514],[780,-436],[389,-379],[258,-468],[43,-109],[34,-85],[63,-157],[15,-153],[8,-81],[79,-126],[192,-26],[8,-2],[492,-238],[273,42],[27,5],[273,252],[77,154],[64,128],[9,19],[31,292]],[[260820,577955],[648,-649]],[[536461,534964],[-367,298],[-259,57],[-525,-200],[-224,-140],[-230,-349],[-237,-558],[-216,-295],[-292,-47],[-416,-884],[-201,-181],[-127,225],[-292,-238],[-458,-702],[-407,-144],[-355,415],[-478,-339],[-602,-1092],[-610,-706],[-621,-322],[-371,-40],[-122,244],[-184,-252],[-246,-744],[-191,-355],[-135,35],[-196,-307],[-256,-650],[-238,-355],[-329,-90],[-149,-24]],[[544715,515580],[-21,-219],[167,-764],[171,-363],[193,-41],[210,-312],[226,-583],[176,-275],[146,-218],[131,-744],[176,-2024],[181,-1134],[186,-245],[175,-46],[125,-108],[52,-152],[113,-121],[76,-13],[123,-84],[105,-188],[62,-271],[19,-356],[78,-207],[138,-59],[27,-249],[-82,-438],[-13,-559],[58,-681],[-8,-587],[-72,-491],[-5,-287],[62,-82],[12,-184],[-39,-286],[31,-185],[102,-85],[62,-416],[22,-748],[-26,-363],[-131,-171],[-39,-408],[-176,-466],[-313,-521],[-216,-555],[-149,-846],[-28,-159]],[[300051,208977],[1720,87],[696,-35],[245,-125],[241,25],[237,179],[501,-16],[767,-210],[432,-2],[99,206],[137,103],[263,3],[637,3],[301,170],[177,338],[396,86],[615,-166],[426,81],[356,494],[93,84]],[[224082,819986],[279,151]],[[208152,820465],[457,-452],[228,-43],[150,217],[538,236],[926,255],[586,399],[369,813]],[[212720,822903],[812,587],[233,333],[-75,274],[61,395],[198,516],[219,294],[240,73],[354,-104],[698,-424]],[[215609,824755],[534,-369],[412,-119],[467,6],[389,116],[311,225],[200,229],[89,233],[154,-155],[220,-542],[322,-238],[425,67],[193,-89],[-38,-246],[84,-332],[204,-418],[475,-179],[743,59],[412,-95],[119,-372]],[[480534,542827],[151,-465],[493,-777],[207,-476],[-83,-167],[-7,-252],[70,-337],[90,-208],[108,-79],[124,-358],[139,-637],[170,-532],[301,-639],[275,-653],[115,-556],[48,-676],[122,-481],[148,-222]],[[479899,558675],[98,-697],[4,-475],[-57,-486],[53,-687],[163,-890],[110,-1336],[86,-2675],[20,-449],[62,-193],[109,-85],[39,-255],[-32,-425],[-71,-329],[-110,-235],[-26,-597],[90,-1436]],[[480090,563216],[-131,-641],[-43,-558],[0,-1031],[72,-848],[-21,-394],[-91,-224],[-28,-286],[51,-519]],[[271643,704763],[563,-831],[193,-447],[9,-339],[67,-241],[124,-140],[119,-304],[114,-465]],[[272832,701996],[225,-405],[336,-344],[246,-786]],[[273639,700461],[156,-1227],[158,-713],[240,-296],[330,-1047],[107,-623],[-5,-549]],[[274625,696006],[167,-427],[562,-473]],[[269948,708915],[637,-2061]],[[513076,786999],[-342,956],[-86,430],[58,224],[-26,243],[-164,394],[-271,731],[-240,375],[-301,262],[-326,556],[-353,850],[-308,527],[-264,205],[-561,-151],[-860,-508],[-593,-276],[-324,-46],[-285,141],[-367,492],[-316,242],[-205,284],[-199,408],[-64,289],[71,171],[0,221],[-73,268],[-144,135],[-155,107],[-73,137],[-55,196],[-92,19],[-121,-44],[-81,142],[-19,117],[-73,59],[-138,-22],[-148,38],[-90,209],[-190,59],[-289,-94],[-237,10],[-121,152],[-18,176],[-92,78],[-139,-50],[-244,190],[-279,447],[-119,306],[-110,45],[-99,-40],[-95,49],[-17,139],[-28,223],[-109,146],[-268,30],[-101,98],[-37,156],[-55,157],[-141,-19],[-118,69],[-90,204],[-122,-56],[-70,68],[-120,261],[-184,59],[-186,-118],[-185,-42],[-256,238],[-149,-121]],[[779720,796959],[1003,487],[288,378],[254,174],[316,97],[270,-64],[225,-224],[411,-94],[598,36],[418,-69],[240,-174],[482,-6],[722,162],[435,16],[148,-130],[113,1],[78,130],[324,-48],[570,-227],[730,136],[890,500],[687,224],[485,-50],[430,219],[377,490],[793,573],[1208,656],[1118,911],[1542,1752],[-201,716],[32,152],[56,268],[310,363],[123,303],[-64,244],[21,258],[107,274],[19,358],[-66,444],[0,352],[66,259],[259,267],[452,275],[342,412],[232,550],[246,403],[389,382],[199,636],[235,318],[337,214],[337,561],[339,909],[116,534],[-108,160],[-37,308],[30,454],[-36,380],[-105,305],[-312,116],[-521,-74],[-452,-169],[-381,-265],[-303,-23],[-226,219],[-157,314]],[[796153,813992],[-89,408],[84,304],[384,301]],[[796153,813992],[-322,525],[-63,331],[57,550]],[[582883,498712],[-156,349],[-236,-45],[-247,-215],[-123,-108],[-244,-99],[-119,126],[-101,242],[-82,358],[28,859],[208,2040]],[[582214,505014],[114,1460],[-69,713],[-212,450],[-9,453],[194,457],[158,561],[122,666],[358,600],[594,536],[256,441],[121,209],[104,499],[55,265],[93,203],[108,233],[24,52],[166,121],[269,195]],[[605046,587812],[-326,205],[-195,357],[-261,866],[-504,1510],[-30,52],[-238,428],[-200,-46],[-146,-235],[-19,-85],[-74,-342],[-99,-264],[-109,-102],[-232,51],[-358,203],[-35,-4],[-334,-40],[-338,-259],[-42,-32],[-319,-51],[-259,189],[-317,-15],[-376,-218],[-301,92],[-226,403],[-85,585],[86,1151]],[[631856,688835],[315,-814],[181,-332],[152,-121],[94,-295],[37,-469],[101,-378],[165,-289],[260,-203],[355,-118],[227,-242],[96,-365],[122,-199],[47,-10],[100,-23],[144,-179],[143,-327],[53,-247],[-39,-168],[31,-297],[55,-233],[45,-193],[40,-65],[82,-135],[189,-245]],[[726777,691678],[-253,-267],[-135,-26],[-151,188],[-425,611],[-189,396],[-93,385],[-11,445],[71,506],[153,423],[233,341],[39,262],[-157,185],[-77,277],[3,368],[-87,482],[-177,596],[-441,561],[-706,527],[-667,261],[-628,-5],[-634,-162],[-961,-477]],[[597993,418587],[44,-963],[-119,-805],[-398,-1453],[-409,-410],[-238,-430],[-203,-587],[-121,-473],[-40,-359],[21,-587],[123,-1222],[262,-823],[99,-562],[24,-576],[115,-411],[205,-247],[236,-487],[242,-661],[24,-65],[25,-175],[118,-821],[28,-1861],[0,-39],[0,-3405]],[[597936,420084],[-58,609]],[[774469,805019],[489,-415],[216,-25],[161,341],[238,830],[320,347],[224,525],[209,886],[38,595],[-133,305],[64,761],[-118,120]],[[775860,809650],[-849,367],[-667,11],[-769,-223],[-626,31],[-485,284],[-242,142]],[[142860,843152],[795,-1015],[1203,-1127],[640,-840],[479,-930],[178,-563],[-122,-197],[-319,-61],[-515,75],[-359,-99],[-205,-272],[-99,-352],[6,-432],[72,-388],[137,-345],[3,-396],[-132,-448],[126,-293],[381,-139],[141,-206],[-101,-272],[53,-478],[209,-684],[51,-433],[-108,-182],[-54,-257],[1,-332],[-89,-332],[-179,-331],[-341,-214],[-503,-97],[-388,-213],[-274,-331],[-141,-297],[-10,-264],[74,-312],[158,-361],[-63,-492],[-425,-935],[-2817,-1923],[-163,-81],[-99,0],[-133,12]],[[190525,854535],[74,876],[-67,354],[-183,124],[4,163],[191,202],[28,294],[-134,389],[-29,465],[78,544],[-71,597],[-330,974],[-171,435],[-194,262],[-275,232],[-342,124],[-411,14],[-376,406],[-344,798],[-376,500],[-160,87],[-105,84],[27,93],[113,46],[149,71],[21,170],[-35,167],[-92,166],[-6,140],[-40,175],[-99,137],[-521,284],[-287,310],[-53,339],[-116,224],[-96,26],[-65,67],[-34,186],[-26,90],[-65,6],[-165,-151],[-192,-47],[-157,91],[-109,281],[-60,470],[78,371],[215,271],[23,205],[-47,88],[-86,103],[-29,199],[88,225],[-11,79],[-37,58],[-94,36],[-32,114],[25,115],[-3,78],[-102,54],[-187,23],[-1071,-41]],[[184794,758021],[-416,-573],[-448,-238],[-619,-94],[-768,191],[-916,476],[-553,426],[-190,378],[-88,324],[14,270],[-147,172],[-308,75],[-198,167],[-89,260],[-225,23],[-361,-214],[-508,20],[-658,252],[-306,-24],[-160,-97],[-293,241],[-494,648],[-284,492],[-74,336],[-146,205],[-215,75],[-249,284],[-281,493],[-166,390],[-51,287],[-222,326],[-393,364],[-159,324],[111,424],[184,937]],[[175118,765641],[37,435],[-46,245],[30,235],[107,227],[-3,249],[-113,271],[-211,178],[-307,87],[-160,317],[-12,546],[229,840],[473,1133],[258,802],[46,469],[283,1086],[523,1701],[200,1090],[-121,478],[-267,456],[-411,436],[-290,506]],[[175363,777428],[-169,576]],[[175194,778004],[-49,404],[71,232],[-58,405],[-187,576],[-80,396]],[[174891,780017],[29,215],[-114,96],[-257,-22],[-143,134],[-30,289],[-166,387],[-302,483],[-307,262],[-310,41],[-241,-106],[-171,-253],[-309,-218],[-446,-186],[-473,-54],[-500,77],[-447,-376],[-394,-828],[-385,-564],[-581,-500]],[[186488,758831],[-439,-744],[-314,-234],[-503,43]],[[191144,761946],[-445,644],[-170,367],[-43,303],[-449,434],[-855,565],[-414,-132],[28,-830],[-107,-718],[-242,-607],[-424,-700],[-910,-1190]],[[192693,764890],[-269,-1286],[-148,-498],[-116,-140],[-41,-197],[34,-256],[92,-196],[150,-138],[35,-252],[-81,-368],[-230,-283],[-404,-213],[-181,100]],[[846317,774425],[389,-27],[167,122],[75,261],[126,72],[175,-118],[116,-217],[57,-316],[232,-139],[405,36],[256,146],[106,256],[325,147],[544,40],[398,323],[252,608],[357,291],[460,-23],[395,78],[330,180],[267,326],[206,470],[271,395],[336,320],[447,3],[557,-312],[367,-133],[176,46],[132,181],[88,315],[227,-15],[364,-347],[385,-184],[404,-22],[364,81],[324,183],[321,-20],[319,-224],[317,-8],[317,208],[272,-41],[226,-288],[264,-3],[301,284],[283,560],[266,837],[249,550],[232,265],[172,358],[111,449],[236,395],[359,341],[232,394],[106,446],[138,232],[172,19],[108,103],[45,190],[164,97],[425,10]],[[868227,788125],[-411,-1192],[-316,-511],[-439,-472],[-272,-394],[-103,-316],[-840,-253],[-1577,-192],[-910,-321],[-242,-452],[-215,-277],[-185,-101],[-133,-235],[-78,-368],[-149,-243],[-330,-177]],[[552944,786426],[87,-249],[18,-125],[-11,-139],[-115,-239],[-217,-462],[-71,-450],[66,-322],[10,-263],[-113,-398]],[[203185,808776],[-450,739],[-143,451],[13,411],[192,439],[372,469],[231,362],[89,255],[17,362],[-57,468],[10,263],[76,57],[39,154],[0,250],[388,846],[776,1439],[406,1034],[37,627],[87,507],[138,387],[419,345],[700,303],[427,374],[152,446],[193,182],[234,-81],[243,120],[378,480]],[[176605,811168],[182,-96],[104,-233],[133,-603],[1143,-1398],[560,-467],[357,-3],[321,-206],[285,-409],[586,78],[889,565],[836,-16],[784,-599],[435,-565],[85,-533],[194,-343],[301,-153],[697,-151],[372,80],[381,209],[332,-58],[283,-324],[239,-99],[193,127],[344,8],[493,-112],[300,-245],[107,-376],[114,-202],[123,-29],[119,-307],[114,-587],[148,-314],[181,-40],[83,-132],[-15,-224],[62,-305],[138,-385],[194,-195],[250,-7],[322,-166],[392,-327],[209,-327],[24,-327],[-65,-248],[-52,-185],[98,-193],[232,28],[281,152],[223,394],[217,237],[211,81],[1147,-52],[319,77],[-58,215],[48,148],[153,79],[80,127],[9,173],[-48,157],[-104,139],[0,379],[105,619],[181,264],[257,-90],[126,175],[-5,440],[135,310],[275,179],[241,244],[205,311],[84,237],[-39,163],[39,167],[115,170],[40,146],[-36,121],[94,148],[223,175],[731,188],[1240,201],[729,-10],[219,-222],[323,-152],[428,-83],[374,-398],[320,-713],[343,-384],[547,-83]],[[164217,756399],[-463,238],[-1078,242],[-464,254],[-211,347],[-267,-28],[-316,-393],[-88,-218]],[[271063,760045],[-198,-1642],[0,-2],[-158,-676],[-277,-394]],[[292475,771786],[-149,-28],[-261,28],[-202,-104],[-186,-96],[-509,-418],[-132,-161],[-417,-507],[-67,-83]],[[290552,770417],[-102,-152],[-984,-1474]],[[144084,844410],[529,461],[295,143],[355,-31],[290,254],[13,342],[-167,512],[-22,372],[123,232],[-287,163],[-695,93],[-428,236],[-161,378],[-279,382],[-395,385],[-519,122],[-643,-143],[-538,-19],[-432,104],[-379,-35],[-325,-172],[-790,261],[-1254,695],[-807,325],[-360,-45],[-429,-211],[-498,-377],[-323,-316],[-147,-253],[-228,-209],[-311,-163],[-322,-360],[-499,-838],[-362,-744],[-107,-508],[27,-520],[-51,-273],[-129,-25],[-53,-137],[21,-250],[108,-289],[193,-327],[40,-254],[-114,-180],[-65,-639],[-19,-1097],[-53,-229],[-92,-227],[-132,-68],[-17,1],[-521,46],[-365,-89],[-292,-338],[-128,-77]],[[590446,684184],[0,-5]],[[590446,684179],[14,-1222]],[[589888,685614],[-1,4]],[[589887,685618],[-156,998]],[[589731,686616],[86,565],[7,1004],[-25,1593]],[[610550,857609],[836,-292],[323,-173],[89,-151],[41,-244],[-6,-337],[249,-120],[505,95],[425,200],[344,305],[302,86],[262,-133],[399,-31],[538,70],[582,163],[628,256],[322,227],[17,200],[133,229],[250,258],[346,168],[443,80],[371,177],[299,274],[231,413],[161,553],[394,425],[941,446],[1499,786],[838,603],[677,681],[598,396],[519,111],[436,195],[351,278],[540,156],[729,34],[521,159],[315,282],[309,102],[302,-79],[310,87],[318,254],[241,107],[243,-62]],[[608481,859638],[-348,416],[-755,-53]],[[92544,875217],[-401,420],[-141,232],[-14,184],[-207,177],[-401,171],[-348,-15],[-295,-202],[-441,123],[-588,449],[-513,276],[-654,154],[-1070,67],[-471,-61],[-230,-165],[-289,11],[-350,188],[-542,84],[-735,-21],[-671,-308],[-604,-595],[-367,-493],[-192,-591],[-129,-502],[-7,-464],[73,-594],[-6,-366],[-86,-140],[22,-170],[129,-203],[57,-340],[-15,-479],[-203,-734],[-391,-990],[-311,-584],[-234,-177],[-138,-348],[-31,-737],[8,-335]],[[726043,687592],[-228,201]],[[725553,688147],[-904,1193],[-396,398],[-286,0],[-262,-325],[-165,-77],[-157,63],[-340,359],[-525,654],[-351,594],[-176,534],[-338,323],[-499,113],[-445,298],[-390,482],[-401,223],[-411,-34],[-280,195],[-147,427],[-160,275],[-175,125],[-65,-46],[-204,-145],[-364,-509],[-191,-365],[-18,-222],[-113,-110],[-208,0],[-126,-117],[-43,-235],[-321,-54],[-600,127],[-502,-247],[-405,-619],[-321,-303],[-235,12],[-160,-115],[-84,-244],[-146,-175],[-206,-104],[-295,137],[-384,378],[-191,257],[2,136],[-82,58],[-249,-26]],[[712319,691517],[-143,-88],[-39,-123],[16,-188],[444,-1248],[88,-534],[-113,-297],[-462,-83],[-809,132],[-771,11],[-732,-111],[-618,238],[-503,586],[-389,256],[-273,-73],[-439,-429],[-605,-783],[-264,-288],[-95,-104],[-114,1],[-344,-736],[-574,-1474],[-565,-924],[-834,-561],[-343,-231],[-157,-206],[-85,-258],[-74,-68],[-65,124],[-241,-216],[-417,-556],[-415,-411],[-413,-266],[-218,-232],[-24,-197],[-190,-80],[-356,37],[-327,-245],[-297,-529],[-136,-383],[25,-236],[-114,-249],[-252,-260],[-346,-156],[-440,-53],[-269,-153],[-97,-254],[-140,-158],[-181,-63],[-226,61],[-271,183],[-310,0],[-541,-513]],[[628721,864843],[322,556],[156,396],[99,423],[48,365],[-1,310],[43,200],[85,90],[18,244],[-72,596]],[[629419,868023],[-935,1093],[-859,724],[-1096,720],[-720,728],[-345,735],[-211,571],[-78,407],[-246,452],[-414,497],[-732,336],[-1051,175],[-768,385],[-488,598],[-911,752],[-1333,909],[-740,653],[-145,399],[-327,254],[-765,164],[-374,403],[-102,320],[46,371],[-115,420],[-278,470],[-121,442],[36,416],[-221,307],[-477,198],[-331,249],[-185,298],[61,314],[306,327],[146,236],[-14,144],[84,236],[183,327],[77,311],[-28,295],[98,206],[223,117],[74,211],[-76,306],[-562,301],[-1047,295],[-912,422],[-1110,785]],[[591154,863263],[133,-28],[367,201],[401,384],[418,611],[410,347],[403,83],[361,347],[318,613],[251,293],[276,-38],[191,-190],[576,102],[1536,495]],[[693963,743824],[-396,172],[-339,-95],[-413,-306],[-319,-52],[-224,202],[-2,5],[-181,460],[-142,728],[-40,461],[19,225],[-33,127],[-172,349],[-565,822],[-319,600],[-74,378],[-68,133],[-112,222],[-429,499]],[[688863,749628],[48,182],[170,298],[48,748],[-98,1157],[44,1040],[185,924],[144,535],[43,107],[17,195],[-42,107],[-13,185],[187,327],[83,385],[-21,444],[-67,391],[-115,340],[-10,313],[96,288],[34,357],[-28,425],[-44,202],[-14,149],[-66,182],[-181,244],[-44,246],[28,228],[-112,262],[-445,239],[-251,530],[-57,823],[-80,479],[-105,137],[-86,-36],[-74,-160],[-92,71],[-41,270],[-114,172],[-158,16],[-93,227],[-27,441],[-169,574],[-309,709],[-205,355],[-101,3],[-76,164],[-52,325],[-191,322],[-333,319],[-239,36],[-144,-248],[-220,-47],[-293,152],[-174,24],[-116,120],[-76,549],[-110,294],[-143,41],[-67,131],[10,222],[-110,293],[-230,365],[-100,243],[-209,323],[-468,187],[-125,309],[-48,180],[-115,262],[-229,332],[-109,278],[-8,209],[-147,151],[-340,48],[-341,352],[-342,656],[-390,390],[-437,122],[-302,-7],[-165,-137],[-334,77],[-505,292],[-378,364],[-252,436],[-114,279],[-45,213],[-159,63],[-112,242],[-64,424],[-238,311],[-411,200],[-225,184],[-39,167],[23,165],[83,161],[-87,221],[-256,283],[-89,197],[-143,29],[-1011,-493],[-589,-11],[-330,397],[-292,115],[-254,-170],[-210,1],[-166,171],[-109,232],[-51,296],[-140,25],[-229,-243],[-296,-82],[-362,81],[-330,-123],[-300,-324],[-339,49],[-381,422],[-160,335],[62,247],[106,168],[149,88],[17,186],[-174,424]],[[671005,778322],[-827,-347],[-475,40],[-504,395]],[[374271,398217],[55,464],[61,136],[85,-35],[83,427],[83,890],[122,524],[162,158],[55,315],[-51,471],[54,729],[160,986],[170,756],[180,526],[-129,1124],[-438,1722],[-169,978],[100,233],[40,757],[-31,1920],[353,189],[170,248],[105,372],[219,351],[503,495],[812,1493],[324,870],[108,745],[169,759],[233,772],[179,1029],[126,1285]],[[378164,419906],[169,972]],[[378333,420878],[212,659],[194,1160],[175,1659],[162,998],[147,336],[70,872],[-8,1408],[40,956],[89,503],[190,612],[291,720],[80,821],[-131,920],[-24,663],[82,406],[-54,548],[-190,690],[-69,481],[53,273],[-20,474],[-93,675],[20,455],[134,234],[164,726],[292,1823]],[[386616,450025],[409,-213],[330,105],[387,352]],[[387742,450269],[258,614],[130,875],[169,257]],[[388299,452015],[178,37],[196,41],[202,179]],[[388875,452272],[156,213],[110,247]],[[389141,452732],[59,333],[9,418],[138,261]],[[389347,453744],[268,105]],[[389615,453849],[141,248],[14,392]],[[389770,454489],[227,375],[442,356]],[[390439,455220],[319,-41],[196,-438],[455,-461],[716,-484]],[[392125,453796],[359,-471],[105,-95],[135,0],[97,176],[111,207],[110,-22]],[[393042,453591],[58,-253]],[[393100,453338],[4,-483],[137,-261],[270,-39]],[[393511,452555],[116,-194],[-37,-349],[67,-600],[173,-851],[786,-1125],[2098,-2096],[454,-381]],[[397168,446959],[175,-334],[46,-414],[167,-414]],[[397556,445797],[286,-413],[216,-200]],[[398058,445184],[145,15],[110,-225]],[[398313,444974],[76,-464],[115,-231],[155,0],[110,-127]],[[398769,444152],[28,-108]],[[469743,587236],[-60,68],[-106,71],[-164,320],[-142,690],[-187,430],[-232,171],[-90,182],[51,194],[-7,320],[-63,446],[-131,446],[-198,445],[-295,423],[-391,398],[-339,242],[-286,84],[-259,205],[-347,489],[-114,88],[-557,429],[-295,426],[-142,506],[-233,380],[-322,255],[-90,124],[-120,167],[-98,327],[-119,218],[-126,112],[-11,117],[20,111],[10,51],[-30,300],[-190,665],[-176,307],[-150,-49],[-23,21],[-63,60],[-52,147],[-9,100],[-11,116],[-70,127],[-33,60],[-178,80],[-143,493],[-96,799],[-13,108],[-70,353],[-70,354],[-172,507],[-53,80],[-71,108],[-56,22],[-35,13],[-15,38],[-16,41],[-25,147],[-135,52],[-54,-44],[-135,-108],[-169,51],[-21,62],[-63,185],[-116,22],[-147,-202],[-1,-1],[-3,1],[-160,59],[-68,124],[-110,199],[-99,321],[0,6],[-19,313],[-307,636],[-141,225],[-278,446],[-177,283],[-88,61],[-414,285],[-147,102],[-703,-60],[-394,45],[-86,150],[-86,-12],[-87,-173],[-93,-39],[-98,97],[-61,-74],[-11,-110],[-13,-134],[-248,-124],[-201,-1],[-270,-3],[-379,-149],[-289,-296],[-241,-75],[-169,-52],[-530,41],[-65,22],[-255,87],[-109,175],[-152,41],[-197,-93],[-176,-473],[-19,-108],[-136,-744],[-52,-196],[-76,-290],[-102,-120],[-109,-635],[-6,-108],[-55,-955],[-69,-350]],[[483345,741337],[-918,-522],[-574,-103],[-537,141],[-473,-77],[-250,-181],[-365,-264]],[[492409,745335],[-634,-1497],[-386,-702],[-350,-407],[-431,-232],[-513,-58],[-481,-253],[-451,-448],[-439,-228],[-427,-11],[-293,-236],[-304,163],[-556,478],[-359,200],[-162,-81],[-205,-279],[-246,-476],[-259,-220],[-404,54]],[[494706,745765],[-429,850],[-234,310],[-272,82],[-929,-513]],[[105495,872393],[-137,230],[-43,258],[3,362],[95,274],[278,279],[372,248],[205,287],[163,411],[230,331],[299,252],[192,244],[84,235],[-49,408],[-183,581],[-204,344],[-224,104],[-65,150],[95,194],[-322,458],[-739,721],[-523,360],[-307,-2],[-325,121],[-344,245],[-247,305],[-148,363],[-162,163],[-176,-37],[-200,98],[-226,231],[-216,79],[-308,-113],[-1299,-44],[-478,95],[-92,220],[-13,245],[65,270],[-67,288],[-199,306],[-561,255],[-922,203],[-680,406],[-438,609],[-164,378],[21,247],[-77,201],[-325,200],[-352,97],[-377,-7],[-403,150],[-430,306],[-366,117],[-301,-72],[-540,146],[-779,363],[-544,140],[-465,-126],[-726,751],[-243,429],[-1,355],[-163,390],[-324,423],[-348,338],[-371,254],[-472,167],[-575,81],[-445,-73],[-473,-339],[-1119,-624],[-654,-222],[-873,-6],[-61,72],[-7,314],[46,558],[-22,247],[-69,123],[0,116],[76,171],[-28,152],[-133,133],[-333,61],[-534,-12],[-493,-191],[-451,-369],[-674,105],[-896,580],[-749,278],[-602,-25],[-555,-153],[-507,-281],[-395,29],[-283,338],[-102,196],[25,177],[-56,51],[-161,-104],[-146,78],[-61,333],[-267,243],[-707,229]],[[337058,440942],[189,1836],[215,846],[304,467],[246,980],[189,1491],[53,1316],[-81,1139],[-262,791],[-445,443],[-270,576],[-95,711],[9,669],[114,627],[235,620],[355,613],[80,375],[-195,136],[4,856]],[[337703,455434],[205,1577],[67,1216]],[[337975,458227],[-69,854],[65,744]],[[337971,459825],[197,632],[99,582]],[[338267,461039],[0,533],[61,413],[182,440],[-28,454],[-228,720]],[[338254,463599],[-438,1137],[-193,918],[52,697],[173,624],[295,548],[344,380],[395,211],[361,352],[328,493],[204,634],[79,776],[446,1042],[810,1309],[438,966],[66,625],[137,487],[208,349],[204,759],[198,1168],[177,692],[156,215],[196,45],[234,-124],[216,158],[198,443],[120,511],[41,582],[314,599],[410,434],[174,184],[442,599],[299,579],[310,813],[480,1568],[447,2057],[243,1755],[189,2139],[237,1162],[284,187],[254,39],[443,-203]],[[724688,744973],[384,304],[286,97],[315,-10],[278,244],[241,497],[325,284],[407,71],[324,200],[240,330],[626,461],[1012,592],[732,104],[452,-385],[473,-65],[495,255],[541,159],[586,64],[352,-46],[118,-155],[169,135],[219,425],[323,364],[429,303],[641,74],[854,-155],[557,-233],[259,-311],[391,-287],[524,-262],[583,51],[643,365],[526,97],[410,-172],[415,-25],[421,122],[53,247],[-314,373],[-133,258],[75,215]],[[739920,749558],[29,209],[-38,40],[-95,-59],[-190,132],[-285,323],[-284,179],[-282,36],[-229,224],[-176,412],[-75,443],[24,474],[94,328],[164,182],[238,89],[310,-5],[221,123],[131,250],[258,26],[384,-197],[360,-15],[502,249]],[[889708,483873],[-980,484],[-426,454],[-293,142],[-302,-18],[-147,226],[-97,131],[-198,-56],[-87,43],[-136,200],[-347,-24],[-246,240],[-145,504],[-309,376],[-565,297],[-147,78]],[[733943,875998],[627,1032],[379,442],[698,474],[1144,654],[725,663],[307,673],[-21,321],[-352,-32],[-259,233],[-166,497],[-403,364],[-638,232],[-413,256],[-187,282],[-283,172],[-380,60],[-491,-145],[-604,-351],[-528,-202],[-452,-52],[-131,90],[189,233],[-23,278],[-235,324],[-218,128],[-203,-69],[-93,27],[17,123],[-119,211],[-379,452],[-347,239],[-246,10],[-260,-139],[-85,-162],[91,-183],[-50,-197],[-191,-213],[-90,-49],[10,113],[-112,-6],[-232,-124],[-257,0],[-281,124],[-171,0],[-60,-126],[-117,25],[-173,178],[-47,133],[81,90],[-167,181],[-415,273],[-342,323],[-269,375],[-264,499],[-261,624],[-103,399],[55,175],[-65,196],[-186,216],[-40,137],[104,59],[18,102],[-70,145],[-689,479],[-144,166],[149,61],[130,147],[110,235],[27,167],[-58,99],[14,50],[86,0],[-48,191],[-182,383],[-6,294],[172,206],[-4,164],[-181,121],[-90,292],[0,464],[271,325],[544,186],[460,288],[378,390],[209,302],[41,215],[-77,154],[-196,93],[-76,194],[43,293],[101,109],[159,-77],[57,17],[-43,110],[52,161],[149,213],[620,539],[63,302],[-237,314],[-95,350],[48,383],[-115,363],[-276,343],[-148,242],[-19,141],[81,269],[183,396],[-6,215],[-194,34],[-129,158],[-64,282],[134,251],[333,222],[86,192],[-161,161],[5,197],[170,233],[49,190],[-73,146],[-17,233],[40,321],[-336,588],[-711,854],[-1036,653],[-1360,450],[-865,195],[-370,-60],[-160,-111],[48,-162],[-173,55],[-393,270],[-267,99],[-211,-107],[-714,269]],[[721935,902770],[-728,275],[-511,269],[-19,162],[-97,61],[-174,-39],[-599,415],[-1056,908]],[[480228,740331],[-934,-6],[-554,-276],[-484,-548],[-429,-289],[-563,-45],[-530,-99],[-403,-572],[-389,-720],[-225,-792],[-139,-220]],[[256387,711322],[-315,-60],[-419,477],[-332,526],[-296,468]],[[255025,712733],[-320,672],[-14,350],[81,317],[177,283],[85,250],[-8,217],[142,148],[292,80],[113,84],[-67,91],[7,181],[82,274],[-5,406],[-90,538],[27,568],[144,598],[42,339],[-89,119]],[[266751,717804],[-720,-611],[-319,-183],[-158,42],[-157,193],[-235,519],[-157,-358],[-89,-80],[-72,80],[-125,-315],[-180,-709],[-149,-374],[-119,-40],[-76,-185],[-34,-330],[-62,-133],[-92,64],[-155,-409],[-218,-882],[-252,-649],[-286,-414],[-171,-74],[-55,266],[-71,10],[-88,-246],[-101,-31],[-112,184],[-162,-2],[-211,-187],[-126,-231],[-39,-275],[-403,-949],[-765,-1621],[-498,-740],[-232,139],[-233,303],[-235,467],[-333,201],[-646,-96]],[[254768,724609],[-523,395]],[[135533,855019],[-514,-90],[-333,70],[-488,303],[-288,36],[-192,219],[-190,411],[-187,686],[-273,1439]],[[129875,863066],[-2898,3785],[-995,1553],[-58,582],[-193,395],[-490,312]],[[494383,811278],[230,-221],[319,21],[729,284],[355,27],[181,122],[125,223],[118,-24],[110,-274],[8,-182],[52,-190],[139,-130],[129,-243],[38,-363],[115,-240],[193,-118],[153,84],[115,284],[170,161],[227,36],[126,-65],[24,-165],[80,-103],[204,-58],[279,-463],[194,-138],[203,33],[111,123],[18,213],[191,147],[545,126],[1204,-283],[1,1]],[[205715,874337],[774,322],[998,171],[1479,127],[517,154],[117,81],[-17,98],[-133,203],[-217,153],[-160,71],[-65,93],[62,104],[-24,213],[-53,141],[-26,157],[78,119],[-49,193],[-159,274],[49,329],[89,249],[5,183],[-138,66],[-80,206],[33,524]],[[209151,879740],[67,486],[193,522],[341,720],[103,401],[-135,82],[92,280],[317,476],[386,379],[457,283],[415,536],[374,790],[194,499],[11,206],[444,245],[876,282],[697,65],[519,-152],[286,-230],[55,-308],[84,-193],[115,-80],[489,112],[862,302],[523,375],[275,668]],[[238265,884506],[1274,-489],[171,-68]],[[217955,886971],[2058,655]],[[230268,888555],[1044,-380],[409,-248],[124,-243],[89,-357],[56,-471],[167,-431],[417,-588]],[[617712,724851],[159,-429],[91,-133],[63,-46],[56,-112],[10,-383],[127,-256],[429,-282],[126,-175],[44,-130],[-38,-85],[269,-67],[105,-96],[17,-175],[-43,-93],[-101,-11],[-107,-209],[-111,-407],[203,-362],[518,-318],[383,-538],[249,-758],[165,-764],[80,-770],[-9,-521],[-98,-270],[-29,-276],[39,-280],[-34,-213],[-107,-147],[-34,-418],[39,-689],[238,-907],[436,-1125],[176,-708],[-86,-289],[129,-740],[344,-1191],[213,-1049],[83,-906],[111,-627],[137,-346],[157,-219],[265,-136],[491,-148],[267,-183],[207,-268],[68,-381],[-71,-495],[-10,-334],[51,-174],[-46,-252],[-144,-329],[-83,-327],[-24,-326],[39,-471],[104,-616],[99,-316],[94,-16],[137,-328],[179,-639],[362,-611],[545,-582],[305,-224],[127,24],[41,-72],[0,-135],[9,-142],[97,-170],[167,-107],[237,-44],[98,-156],[-4,-224],[110,-297],[237,-354],[384,-282],[798,-317]],[[627247,697899],[613,689],[297,80],[180,-264],[395,-272],[610,-279],[358,-306],[106,-332],[13,-384],[-80,-434],[-21,-339],[39,-244],[118,-220],[199,-197],[171,-384],[143,-570],[189,-293],[235,-15],[128,-234],[21,-450],[207,-722],[395,-994],[197,-1023],[20,-1665]],[[631780,689047],[1,-31]],[[556052,779215],[-255,-562],[-7,-18],[-50,-144],[-6,-127],[40,-239],[-15,-164],[-34,-117],[52,-166],[68,-187],[54,-277],[-6,-189],[-66,-102],[19,-231],[99,-329],[-13,-214],[-73,-109],[-69,-205],[-40,-337],[96,-406],[231,-474],[97,-307],[-39,-142],[62,-345],[162,-549],[53,-375],[-73,-394]],[[559295,789649],[-458,-121],[-217,-364],[-129,-648],[-516,-855],[-904,-1063],[-405,-756],[95,-449],[-22,-216],[-137,15],[-197,-181],[-256,-377],[-109,-347],[39,-315],[81,-167],[-71,-163],[-103,-179],[-32,-243],[-53,-158],[-162,-226],[37,-370],[239,-514],[72,-420],[-95,-326],[15,-577],[124,-828],[27,-457],[-106,-129]],[[567376,791395],[229,-165],[-15,-353],[-273,-894],[-179,-756],[-353,-85],[-114,-28],[-813,277],[-279,170],[-365,223],[-474,511],[-446,112],[-418,-289],[-307,-84],[-195,118],[-287,-24],[-28,-2],[-435,-171],[-348,102],[-262,376],[-136,503],[-9,629],[-54,336],[-34,16],[-62,28],[-43,-44],[-195,-199],[-379,-527],[-355,-371],[-331,-214],[-315,-92],[-297,28],[-179,-172],[-61,-374],[-95,-223],[-195,-108]],[[669195,811177],[238,-858],[52,-185],[384,-119],[583,-180],[425,75],[204,347],[45,724],[-113,1101],[-28,751],[56,398],[-43,412],[-140,424],[105,560],[352,697],[170,424],[117,139],[160,102],[589,23],[699,249],[808,473],[495,515],[184,556],[528,597],[871,638],[693,865],[770,1637],[33,854],[-84,613],[-188,658],[-73,618],[43,578],[85,333],[128,90],[41,138],[2,227],[50,205],[241,301],[118,285],[157,303],[13,9],[366,254],[1085,323],[610,463],[134,601],[161,410],[185,220],[52,172],[-82,123],[7,203],[96,282],[-2,249],[-99,215],[-39,216],[22,218],[217,541],[413,863],[171,602],[-69,341],[95,245],[260,151],[252,377],[367,907],[84,789],[85,318],[114,110],[37,233],[-42,356],[215,400],[471,444],[127,293],[-23,230],[90,356],[522,337],[198,319],[10,131],[51,239],[164,335],[31,295],[-103,254],[49,340],[201,425],[96,368],[-8,310],[90,190],[187,69],[80,130],[-27,191],[70,264],[167,336],[259,313],[565,514],[73,164],[9,152],[-55,138],[27,135],[110,133],[31,101],[108,134],[93,111],[64,215],[-54,338],[46,189],[146,41],[30,169],[-86,295],[-105,177],[20,188],[46,141],[90,249],[16,339],[153,303],[291,266],[614,196],[935,127],[508,145],[79,162],[4,188],[-71,214],[85,321],[361,640]],[[363392,411682],[-219,933],[-256,254],[-242,541],[-314,913],[-118,772],[79,631],[138,455],[196,278],[243,631],[289,982],[271,582],[253,183],[151,512],[48,842],[-5,588],[-57,334],[18,283],[96,233],[492,694],[230,85],[166,-215],[155,-36],[143,144],[450,789],[117,437],[-18,396],[65,161],[146,-75],[158,119],[169,311],[108,452],[45,590],[-64,442],[-171,291],[-38,815],[95,1340],[-47,1216],[-288,1640],[129,636],[9,272],[-66,121],[-20,187],[28,254],[-143,362],[-313,468],[-290,1189],[-338,2319],[-6,595],[140,408],[228,489],[75,750],[-145,868],[42,777],[230,686],[72,773],[-85,861],[-18,926],[48,993],[90,719],[131,446],[35,373],[-61,299],[5,252],[71,204],[-20,439],[-113,674],[-29,782],[52,890],[200,1254],[346,1616],[153,1149],[-39,682],[20,503],[78,324],[-18,577],[-115,829],[-23,515],[70,202],[139,138],[211,74],[134,408],[59,744],[221,579],[383,413],[214,486],[46,559],[115,432],[185,307],[76,302]],[[368069,462330],[-33,298],[-108,108]],[[367928,462736],[-183,-83],[-159,129]],[[367586,462782],[-134,340],[3,222]],[[367455,463344],[141,103]],[[367596,463447],[165,311],[191,517],[185,1366],[180,2216],[24,2061]],[[368341,469918],[-133,1905],[-113,1116]],[[368095,472939],[-95,324],[-257,304]],[[367743,473567],[-419,282],[-252,334],[-85,385],[-190,173]],[[366797,474741],[-296,-39],[-304,131]],[[366197,474833],[-313,303]],[[365884,475136],[-268,118],[-222,-67],[-182,-234]],[[365212,474953],[-141,-400],[-156,-250],[-257,-148]],[[361980,483143],[106,2800],[-31,1595],[-134,1322],[-24,778],[129,350],[99,143]],[[749363,822862],[-1045,-1246],[-607,32],[-267,251],[-131,478],[-160,338],[-189,195],[-452,134],[-716,71],[-475,-31],[-234,-132],[-323,97],[-412,329],[-497,257],[-580,187],[-495,9],[-408,-169],[-209,100],[-12,370],[207,452],[425,533],[248,461],[71,388],[-14,359],[-98,331],[22,329],[142,327],[11,448],[-119,571],[-269,375],[-631,273],[-238,206],[-49,200],[-50,478],[16,148],[127,241],[51,288],[-26,333],[-200,146],[-549,239],[-114,213],[-238,223],[-339,13],[-437,-198],[-182,324],[-92,426],[-209,569],[-269,314],[-327,57],[-225,231],[-120,405],[-251,403],[-382,402],[-441,182],[-498,-37],[-455,97],[-413,230],[-217,281],[-22,330],[51,259],[33,302],[-16,215],[-72,244],[-30,318],[9,547],[-94,345],[-29,208],[14,357],[-35,282],[4,211],[121,139],[11,271],[-99,403],[-154,300],[-208,198],[-180,372],[-152,545],[-179,308],[-206,69],[-138,161],[-103,380]],[[758313,707344],[282,557],[465,165],[743,-43],[492,141],[364,484],[480,1066],[297,388],[273,66],[340,300],[408,533],[489,128],[568,-276],[425,-411],[281,-545],[257,-273],[234,-1],[283,-258],[333,-516],[159,-365],[-14,-213],[71,-164],[157,-112],[291,-585],[426,-1057],[313,-644],[199,-231],[161,-84],[121,63],[73,-69],[22,-202],[127,-60],[230,84],[164,-141],[100,-365],[209,-294],[318,-223],[162,-294],[6,-366],[51,-283],[95,-200],[66,-50],[38,101],[38,-62],[38,-226],[143,-71],[248,82],[136,-146],[23,-375],[181,-607],[338,-837],[234,-469],[130,-101],[113,-341],[97,-582],[587,-800],[1076,-1018],[548,-662],[20,-306],[172,-549],[323,-792],[143,-649],[-38,-504],[62,-435],[242,-547]],[[851318,933421],[-84,919],[206,508],[537,535],[274,459],[10,384],[242,418],[473,455],[685,336],[897,219],[748,372],[965,802]],[[568317,487031],[64,1077],[-96,547],[-232,375],[-164,411],[-144,668],[-54,1056],[-273,994],[-509,1284],[-324,1557],[-140,1832],[-202,687],[-218,242],[-171,177],[-108,345],[-502,364],[-895,385],[-571,487],[-248,586],[-277,353],[-305,120],[-291,202],[-275,284],[-168,286],[-62,286],[-283,325],[-756,544],[-601,427],[-282,287],[-164,291],[-136,104],[-110,-79],[-169,105],[-227,290],[-250,130],[-274,-29],[-214,92],[-153,215],[-119,-74],[-57,70],[-86,262],[-116,81],[-165,-35],[-153,-150],[-71,-275],[-117,-75]],[[268456,710938],[526,-643]],[[851318,933421],[-278,487],[-181,300],[-32,215],[1,373],[34,530],[63,356],[93,180],[15,316],[-66,451],[188,346],[441,243],[261,244],[81,246],[-62,322],[-307,597],[-35,599]],[[752207,708527],[991,121],[1375,-234],[574,-272],[230,-389],[281,-27],[332,335],[422,109],[513,-117],[351,-240],[191,-364],[283,-162],[563,57]],[[551657,527548],[36,-1138],[35,-1076],[-365,-2244],[-704,-2731],[-72,-280],[-387,-2374],[2,-1737],[-21,-531],[-21,-559],[-128,-667],[-44,-259],[-260,-1537],[-46,-1544],[110,-1889],[-104,-1792],[-319,-1693],[-136,-1331],[80,-1604]],[[300920,415166],[31,705],[57,262],[93,54],[18,286],[-56,519],[59,543],[263,847],[124,586],[-2,738],[-87,1087],[-85,711],[-82,336],[-141,264],[-201,191],[-184,534],[-170,874],[-317,487],[-466,100],[-418,325],[-368,551],[-513,575],[-658,600],[-463,206],[-267,-187],[-220,-40],[-259,161],[-714,1461],[-232,674],[11,375],[-73,592],[-157,810],[-210,681],[-264,552],[-292,939],[-319,1325],[-68,952],[185,578],[-118,1131],[-421,1684],[-209,1045],[3,406],[146,199],[289,-9],[327,-194],[365,-379],[244,-165],[124,49],[1,457],[-123,866],[-32,803],[60,738],[-141,609],[-343,480],[-210,555],[-76,630],[-9,545],[57,461],[-13,164],[-58,101],[-35,86],[27,269],[66,175],[37,144],[-16,89],[-54,46],[-81,212],[-36,320],[41,163],[117,4],[86,147],[56,289],[-106,155],[-267,21],[-147,364],[-26,707],[-57,524],[-87,342],[-99,85],[-58,-11],[-37,78],[-26,135],[-66,221],[-179,284],[-71,440],[35,596],[-57,311],[-96,142],[-34,156],[14,162],[-10,123],[-49,68],[-175,1066],[85,688],[287,664],[206,295],[123,-77],[57,179],[-10,434],[-80,131],[-150,-173],[-133,5],[-114,182],[-88,47],[-65,5],[-27,157],[-4,582],[-70,360],[-136,137],[-48,178],[41,220],[-27,98],[-95,-21],[-30,150],[37,324],[-25,273],[-86,223],[-112,93],[-51,9],[-52,79],[42,112],[-27,154],[-219,202],[-121,-13],[-25,-229],[-83,12],[-142,253],[-44,228],[54,202],[-44,324],[-141,446],[0,138],[64,34],[31,138],[-101,384],[-4,365],[92,347],[-98,429],[-290,511],[-202,227],[-117,-56],[-47,74],[22,206],[-62,113],[-31,146],[42,177],[316,463],[43,225],[-16,146],[-68,161],[45,343],[164,448],[18,467],[-127,485],[5,329],[63,135],[-53,303],[-105,236],[-43,246],[72,208],[3,439],[-100,640],[20,471],[140,301],[82,-4],[53,-34],[52,67],[27,146],[95,79],[156,-74],[205,141],[245,419],[127,-26],[90,-11],[68,67],[9,197],[131,469],[255,617],[197,185],[139,-249],[95,-29],[52,189],[64,25],[66,-69],[76,63],[61,410],[115,254],[143,138],[43,146],[-27,134],[11,135],[49,120],[-7,172],[-21,79],[5,89],[39,119],[9,130],[-16,110],[37,124],[116,168],[49,238],[-28,525],[37,537],[102,548],[63,67],[72,-7],[104,-243],[176,34],[227,374],[122,334],[25,254],[69,78],[74,-33],[26,145],[-54,208],[61,335],[186,353],[113,58],[86,30],[20,116],[-11,191],[36,227],[157,312],[2,191],[-45,65],[-19,121],[67,262]],[[579405,527058],[-435,305],[-225,17],[-162,-169],[-143,88],[-124,344],[-146,204],[-170,65],[-283,-118],[-397,-299],[-387,-152],[-378,-5],[-358,314],[-338,632],[-228,283],[-117,-68],[-44,-300],[30,-534],[-75,-483],[-179,-433],[-135,-159],[-92,112],[-149,-3],[-206,-118],[-127,405],[-47,930],[-87,726],[-127,522],[-119,293],[-112,62],[-265,-341],[-626,-1120],[-281,-503],[-216,-66],[-245,204],[-223,72],[-200,-60],[-160,-288],[-118,-516],[-151,-157],[-182,203],[-215,-6],[-247,-217],[-283,-89],[-321,40],[-241,-146],[-162,-332],[-180,-206],[-200,-79],[-142,92],[-86,264],[-306,117],[-526,-30],[-521,333],[-515,695],[-541,345],[-569,-4],[-398,215],[-229,435],[-294,155],[-360,-123],[-320,70],[-280,262],[-417,30],[-553,-202],[-505,344],[-676,1319],[-8,16],[-1428,703],[-102,27],[-441,116],[-71,19],[-90,-47],[-325,-169],[-149,112],[-371,281],[-228,70],[-107,-124],[-60,37],[-229,140],[-41,42],[-431,437],[-452,202],[-33,-6],[-372,-63],[-248,160],[-199,466],[-51,169],[-60,198],[-147,488],[-464,847],[-622,681],[-389,511],[-155,343],[-335,190],[-514,36],[-415,-282],[-78,-54],[-708,-1060],[-153,-504],[-505,-1670],[-366,-833],[-175,-127]],[[551769,531581],[-119,-88],[-74,-524],[91,-522],[54,-311],[39,-959],[-99,-1568],[-4,-61]],[[662863,811332],[-7,-451],[86,-341],[176,-383],[78,-422],[-19,-463],[-87,-350],[-156,-237],[-359,-272],[-432,-235],[-131,-71],[-320,-254],[-78,-201],[-378,-21],[-329,77],[-349,82],[-737,406],[-798,654],[-950,462],[-1102,270],[-795,433],[-486,596],[-477,440],[-467,284],[-702,234],[-935,185],[-1305,-240],[-1675,-666],[-1054,-314],[-433,36],[-294,-91],[-155,-217],[-273,-138],[-67,-34],[-525,-125],[-377,19],[-212,152],[-16,11],[-257,21],[-284,-121],[-83,-88],[-117,-124],[-116,-303],[-233,-47],[-352,208],[-212,18],[-72,-171],[-197,-59],[-323,53],[-196,-76],[-70,-205],[-410,-341],[-748,-477],[-289,-334],[-86,-432],[-133,-455],[-265,-559],[-107,-459],[51,-361],[-32,-334],[-116,-307],[-32,-365],[51,-423],[-13,-265],[-79,-107],[-15,-142],[48,-178],[-5,-244],[-59,-310],[128,-351],[313,-391],[167,-382],[32,-560],[-58,-427],[76,-252],[192,-220],[152,-435],[114,-649],[127,-362],[100,-99],[41,-173],[76,-226],[199,-345],[88,-231],[13,-172],[46,-91],[187,-178],[56,-130],[-2,-98],[32,-73],[70,-55],[89,-231],[89,-410],[-32,-403],[-153,-394],[-88,-415],[-24,-436],[36,-188],[73,-156],[-12,-314],[-201,-1137],[-78,-221],[-126,-150],[-175,-79],[-117,-191],[-52,-271],[-10,-152],[22,-111],[68,-117],[-5,-110],[-86,-91],[-38,-309],[10,-526],[-24,-284],[-39,-81],[35,-284],[162,-609],[38,-795],[-86,-981],[140,-811],[367,-641],[204,-430],[43,-219],[-7,-171],[-57,-124],[15,-100],[86,-79],[52,-177],[19,-275],[-138,-487],[-443,-1048]],[[665072,828028],[-332,-692],[-313,-463],[-89,-277],[29,-245],[-63,-364],[-153,-483],[21,-478],[196,-471],[49,-408],[-96,-343],[35,-349],[168,-357],[69,-269],[-31,-181],[-168,-216],[-305,-250],[-142,-393],[21,-536],[106,-393],[191,-251],[-17,-281],[-224,-311],[-208,-555],[-191,-798],[-3,-738],[187,-675],[67,-451],[-28,-121],[12,-179],[57,-140],[132,-113],[68,-80],[-6,-256],[-50,-295],[-635,-1325]],[[361842,337300],[-284,273],[-276,101],[-362,22],[-201,-50]],[[360719,337646],[-39,-123],[-217,30]],[[360463,337553],[-592,275],[-364,212]],[[359507,338040],[-441,888]],[[359066,338928],[-638,1635],[-421,895]],[[358007,341458],[-203,158],[-268,383],[-332,610]],[[357204,342609],[-225,290],[-119,-29],[-145,127]],[[356715,342997],[-173,281],[-158,70]],[[356384,343348],[-144,-141]],[[356240,343207],[-129,0],[-204,15]],[[355907,343222],[-110,218]],[[355797,343440],[-198,567],[-209,373]],[[355390,344380],[-222,178],[-147,15]],[[355021,344573],[-101,-70],[-100,92],[-110,-36]],[[354710,344559],[-122,41],[-185,237],[-267,33],[-349,-171]],[[353787,344699],[-292,81],[-235,333]],[[353260,345113],[-205,76],[-147,-13],[-115,91]],[[352793,345267],[-100,153]],[[352693,345420],[-112,-26],[-91,-74]],[[352490,345320],[-85,82],[-140,-53]],[[352265,345349],[-118,-143],[-101,61]],[[352046,345267],[-60,203],[-55,186],[-119,100]],[[351812,345756],[-141,-11],[-162,-123]],[[351509,345622],[-92,-176],[-23,-231]],[[351394,345215],[-117,-152],[-210,-71],[-122,56],[-33,183],[-130,71]],[[350782,345302],[-228,-42],[-143,50],[-24,-3],[-208,-27]],[[350179,345280],[-291,-488],[-205,-183]],[[349683,344609],[-118,124],[-135,-212]],[[349430,344521],[-153,-546],[-51,-67],[-135,-178],[-176,-71]],[[348915,343659],[-160,-65],[-101,-64],[-196,19]],[[348458,343549],[-168,-137],[-140,-291]],[[348150,343121],[-150,-109]],[[348000,343012],[-159,73],[-144,-107]],[[347697,342978],[-130,-287],[-75,-311],[-11,-176]],[[347481,342204],[-10,-159],[-127,-228],[-181,-95]],[[347163,341722],[-52,-27],[-81,-169]],[[347030,341526],[0,-4],[14,-230],[-104,-182]],[[346940,341110],[-266,-128],[-129,-62]],[[346545,340920],[-286,-337],[-176,-484]],[[346083,340099],[-88,-145],[-97,-160],[-14,-8]],[[345884,339786],[-280,-178],[-397,-492],[-57,-303],[41,-77]],[[345191,338736],[110,-203],[54,-249],[-42,-217]],[[345313,338067],[-124,-30],[-206,159]],[[344983,338196],[-53,12]],[[344930,338208],[-94,21],[-88,-93],[-41,-176],[4,-221]],[[344711,337739],[1,-36],[-74,-175],[-36,-22],[-116,-71],[-96,-213],[-29,-233]],[[344361,336989],[-12,-99],[-191,-419],[-126,-187],[-214,-319]],[[343818,335965],[-269,-681],[-34,-148],[-163,-707],[-230,-563],[-189,-193],[-74,-77],[-181,-384]],[[342678,333212],[-99,-498],[-281,-771],[-461,-1046]],[[341837,330897],[-419,-717],[-376,-390]],[[341042,329790],[-211,-440],[-34,-358],[-13,-132],[-243,-558]],[[340541,328302],[-441,-627]],[[340100,327675],[-167,-377],[-60,-137],[-15,-402],[-168,-518],[-3,-11],[-330,-655],[-114,-566],[145,-693],[5,-22],[22,-866],[-66,-348],[-112,-92],[-33,-26],[-33,-223],[25,-106],[53,-224],[5,-434],[-69,-538],[-153,-615],[-64,-186],[-172,-506],[-57,-463],[98,-186],[25,-47],[60,-247],[-3,-263],[-50,-380],[-98,-498],[-137,-340],[-12,-30],[-199,-242],[-60,-304],[80,-369],[11,-384],[-57,-399],[34,-389],[23,-71],[102,-307],[-9,-432],[-117,-475],[-100,-410]],[[248841,602680],[-30,58],[-120,229],[-291,167],[-162,253],[0,322],[-71,389],[-8,23],[-133,433],[-293,467],[-108,115],[-336,362],[-378,640],[-83,215],[-229,590],[-264,517],[-88,94],[-115,122],[-68,163],[-2,134],[50,165],[-39,211],[-146,202],[-84,213],[-21,224],[43,132],[110,40],[-2,162],[-113,282],[47,157],[210,31],[88,191],[-32,351],[-62,147],[-92,-58],[-37,80],[18,217],[-44,164],[-106,111],[-84,-25],[-61,-161],[-58,38],[-55,239],[-72,29],[-91,-182],[-17,-137],[32,-84],[-4,-84],[-136,-26],[-115,178],[-161,488],[-167,198],[-172,-93],[-225,151],[-278,395],[-124,345],[30,294],[-49,351],[-125,406],[-63,83]],[[243855,613398],[-233,301],[-466,360],[-301,112],[-136,-137],[-85,124],[-52,575],[-12,297],[-11,369],[-27,207],[-32,104]],[[243855,613398],[-141,922],[-130,387],[-171,243],[-142,375],[-150,678]],[[571173,342282],[-714,-528],[-395,-576],[-315,-800],[-332,-468],[-350,-135],[-251,-331],[-152,-527],[-69,-580],[12,-634],[-62,-311],[-127,-42],[-71,-162],[-11,-186],[-54,-114],[-75,101],[-106,59],[-134,-109],[-123,100],[-62,275],[-118,271],[-172,185],[-226,-244],[-281,-674],[-208,-805],[-134,-939],[-303,-633],[-707,-495]],[[578121,347021],[-344,886],[-253,132],[-276,-329],[-261,-105],[-247,118],[-194,-141],[-142,-404],[-191,-184],[-240,34],[-208,-127],[-176,-290],[-260,-4],[-345,283],[-142,-10],[-61,-250],[-96,-93],[-173,81],[-352,-328],[-531,-735],[-159,-369],[1,-235],[48,-105],[27,-260],[-50,-293],[19,-202],[-94,-208],[-273,-57],[-293,-314],[-381,-846]],[[583707,349877],[208,-563],[-59,-481],[-387,-880],[-582,-604],[-396,-203],[-402,-2],[-219,-126],[-35,-250],[-128,-86],[-219,78],[-185,-130],[-151,-337],[-163,-207],[-146,-102],[-115,-12],[-196,221],[-162,7],[-205,-133],[-222,57],[-237,246],[-81,5],[-25,-104],[-82,-151],[-170,-155],[-97,14],[-19,168],[-77,141]],[[579155,346288],[-1,4]],[[221267,636521],[479,-532],[496,-484],[252,-481],[173,-638],[160,-313],[146,13],[109,-77],[72,-166],[121,54],[172,274],[274,-1],[378,-276],[371,158],[364,591],[299,306],[233,21],[170,208],[106,396],[114,187],[183,-31],[200,-12]],[[762401,811560],[-1096,-765],[-1177,-226],[-2436,89],[-1166,710],[-550,559],[-323,646],[92,632],[508,619],[348,574],[188,527],[-17,441],[-224,353],[-121,370],[-19,386],[-374,185],[-728,-15],[-394,128],[-58,272],[-211,92],[-364,-89],[-281,72],[-200,231],[29,492],[260,751],[81,519],[-99,285],[-30,246],[38,206],[194,142],[351,77],[344,332],[337,587],[126,409],[-85,231],[-213,245],[-341,258],[-252,280],[-165,301],[-44,231],[77,162],[-23,131],[-187,155]],[[758327,849187],[-24,-304],[108,-117],[234,-32],[178,-260],[121,-488],[237,-1538],[-1,-716],[-119,-571],[86,-512],[292,-455],[151,-429],[11,-404],[-53,-306],[-116,-207],[-36,-203],[206,-782],[144,-224],[197,-126],[214,-448],[233,-770],[-16,-683],[-264,-594],[-250,-370],[-236,-146],[-131,-178],[-26,-210],[-177,-186],[-325,-164],[-183,-216],[-39,-269],[-592,-298],[-1144,-328],[-620,-335],[-93,-342],[98,-306],[292,-269],[176,-306],[63,-342],[-35,-357],[-199,-558]],[[591369,513557],[328,-2967],[205,-1305],[284,-948]],[[590209,514977],[192,-176]],[[587127,518767],[2,1]],[[587129,518768],[58,42]],[[587187,518810],[1009,730],[549,57],[386,-401],[276,-174],[166,51],[136,-268],[103,-587],[45,-563],[-13,-539],[-172,-495],[-329,-450],[-165,-325],[0,-201],[95,-73],[285,80]],[[851175,886437],[-7,-698],[-308,-618],[-600,-726],[-793,-551],[-986,-375],[-940,-40],[-895,294],[-478,250],[-61,205],[-706,182],[-2025,237],[-1085,-872],[-527,-220],[-329,140],[-861,-30],[-1392,-203],[-863,-232],[-334,-262],[-477,-112],[-620,38],[-387,-104],[-154,-246],[-172,-60],[-191,124],[-238,-101],[-286,-328],[-300,-152],[-313,22],[-175,-244],[-36,-510],[-389,-92],[-741,324],[-1080,14],[-1419,-298],[-755,-207],[-91,-116],[2,-182],[97,-249],[-168,-230],[-432,-210],[-750,-168],[-1067,-127],[-709,-254],[-352,-384],[-270,-628],[-190,-873],[-53,-523],[83,-173],[-16,-180],[-116,-188],[-56,-356],[4,-525],[97,-336],[189,-147],[69,-270],[-52,-393],[120,-428],[293,-465],[85,-394],[-122,-326],[-129,-108],[-134,110],[-136,-96],[-135,-302],[-258,-276],[-379,-250],[-554,-62],[-729,127],[-643,230],[-556,335],[-373,283],[-190,231],[-60,278],[70,325],[-270,331],[-609,337],[-196,369],[-79,272],[0,227],[77,317],[-129,146],[-335,-25],[-284,72],[-233,171],[-161,210],[-91,249],[9,236],[109,224],[-66,153],[-242,80],[-61,208],[121,334],[23,263],[-73,190],[-158,183],[-245,176],[-224,-11],[-205,-199],[-250,-46],[-295,109],[-210,153],[-126,199],[-18,203],[90,208],[21,142],[-49,74],[-860,-238],[-382,20],[-206,222],[-206,53],[-205,-117],[-131,21],[-56,160],[-172,131],[-288,104],[-315,-182],[-342,-468],[-49,-231],[-119,-209],[-212,-25],[-64,-98],[22,-262],[33,-210],[40,-158],[119,-173],[-4,-186],[-127,-200],[-128,-61],[-129,79],[-106,222],[-82,364],[-188,217],[-294,70],[-165,135],[-35,200],[-150,53],[-265,-95],[-131,-182],[-46,-165],[-161,-121],[-634,355]],[[787544,895841],[447,83],[256,-87],[322,-343],[478,-780],[586,-429],[855,-337],[652,-159],[450,21],[498,191],[544,363],[408,121],[272,-121],[329,-349],[385,-578],[190,-425],[-5,-271],[44,-190],[94,-109],[152,19],[212,147],[331,5],[449,-139],[451,63],[452,264],[220,219],[109,226],[317,119],[1334,253],[801,-154],[304,-141],[75,-177],[14,-183],[-46,-187],[34,-103],[46,-69],[-4,-112],[65,-252],[214,-401],[299,-121],[386,158],[403,-53],[681,-465],[96,-136],[27,-111],[-42,-85],[124,-166],[289,-247],[311,-24],[334,197],[284,-79],[234,-356],[303,-273],[370,-191],[152,-284],[-66,-376],[-126,-274],[-186,-172],[-95,-213],[-5,-253],[213,-271],[432,-288],[22,-265],[-387,-240],[-137,-336],[114,-430],[1,-300],[-110,-170],[-202,-62],[-293,48],[-210,-233],[-126,-514],[155,-224],[438,67],[384,-55],[331,-176],[16,-199],[-300,-223],[-91,-236],[118,-249],[42,-201],[-33,-152],[73,-171],[179,-191],[9,-263],[-164,-337],[-277,-321],[-283,-127],[-109,-177],[72,-175],[215,-338],[174,-242],[489,-427]],[[552442,799209],[-253,1026],[-48,415],[109,221]],[[552602,800911],[365,121],[203,203],[162,324],[413,25],[661,-275],[737,41],[1219,533],[643,242],[342,298],[257,434],[404,273],[552,113],[576,349],[600,587],[458,598],[316,606],[111,929],[-94,1250],[-17,775],[59,300],[140,289],[222,277],[71,304],[-78,332],[-99,180],[-120,30],[-68,136],[-15,243],[-257,288],[-497,333],[-280,339],[-62,345],[-162,340],[-263,336],[-98,242],[67,151],[-19,293],[-104,437],[-263,608],[-424,778],[-366,485],[-310,192],[-573,15],[-838,-161],[-719,172],[-900,759],[-1216,560],[-674,685],[-537,996],[-634,649],[-732,302],[-207,501],[319,700],[413,533],[506,364],[261,444],[17,526],[89,387],[161,248],[98,363],[36,478],[-30,523],[-95,567],[40,508],[175,449],[92,396],[73,445]],[[632893,782017],[756,-306],[295,-461],[84,-718],[177,-491],[268,-264],[251,-496],[508,-1098]],[[626843,802628],[-483,-593],[-209,-390],[-99,-384],[-51,-442],[-3,-500],[-151,-560],[-299,-619],[-252,-704],[-162,-624],[-105,-336],[-40,-220],[-17,-117],[-9,-204],[-31,-380],[-372,-1077],[-705,-1685],[-121,-369],[-47,-396],[189,-313],[747,-469],[494,-185],[242,100],[273,-29],[305,-158],[204,28],[105,214],[305,-55],[485,-312],[180,-90],[93,-85],[93,-96],[121,-183],[470,-611],[216,-640],[-25,-687],[130,-451],[283,-213],[154,-228],[25,-241],[136,-172],[248,-103],[329,-489],[411,-874],[307,-476],[203,-77],[169,-169],[133,-259],[70,-256],[9,-378],[3,-223],[350,-414],[698,-680],[338,-512],[-23,-346],[97,-172],[219,0],[305,-484],[393,-968],[167,-609],[-57,-250],[-3,-268],[50,-285],[-227,-711],[-505,-1137],[-260,-756],[-15,-376],[-71,-187],[-89,-122],[-48,-142],[6,-171],[67,-137],[122,-259],[52,-217]],[[638624,821744],[381,-13],[183,-295],[113,-582],[-56,-417],[-222,-253],[-253,-45],[-283,164],[-384,-59],[-485,-279],[-320,-20],[-155,241],[-285,152],[-416,64],[-557,-125],[-700,-315],[-396,-298],[-92,-282],[34,-367],[161,-451],[-157,-605],[-474,-760],[-435,-1074],[-396,-1387],[-373,-866],[-349,-346],[-365,-138],[-381,71],[-650,-437],[-440,-368],[-398,-524],[-356,-338],[-189,-148]],[[620645,840764],[624,-1056],[499,-548],[584,-394],[334,-374],[85,-355],[168,-200],[250,-48],[285,-185],[319,-323],[584,-19],[850,285],[553,38],[256,-208],[193,12],[130,233],[196,96],[264,-41],[227,82],[191,203],[185,-12],[178,-227],[247,66],[314,356],[433,325],[550,292],[521,-162],[491,-616],[860,-318],[1842,-32],[158,-140],[115,-286],[124,-479],[264,-396],[404,-312],[687,-279],[970,-245],[537,-537],[157,-1243]],[[603189,841221],[7,7]],[[603196,841228],[670,639],[237,432],[24,434],[199,580],[565,1091]],[[590550,844164],[229,-1012],[-15,-411],[47,-219],[103,-163],[338,-77],[571,10],[627,-203],[684,-413],[407,-378],[130,-342],[260,-395],[392,-447],[64,-329],[-261,-213],[-114,-170],[34,-127],[536,-393],[1039,-658],[680,-216],[320,227],[217,252],[113,279],[17,189],[-79,98],[30,178],[137,258],[43,256],[-53,254],[179,194],[615,204],[309,534],[244,231],[282,105],[232,183],[181,262],[280,149],[377,36],[437,-121],[498,-279],[276,-242],[84,-306]],[[614843,845599],[1032,-269],[483,22],[278,223],[511,-25],[1119,-410]],[[611130,846034],[-427,604],[-153,333],[-22,264],[-260,363],[-499,462],[-752,474],[-1506,730]],[[606391,846063],[402,1119],[94,659],[-118,858]],[[500287,543266],[-13,-887],[160,-440],[330,-288],[291,-134],[251,20],[204,-145],[157,-311],[108,-424],[64,-568]],[[531028,856802],[-80,-525],[-162,-303],[-384,-459]],[[531109,858466],[-57,-226],[-145,-167],[1,-247],[159,-287],[52,-89]],[[533410,863517],[75,-192],[-18,-481],[-87,-833],[-254,-344],[-421,144],[-370,-50],[-317,-247],[-392,-497],[-539,-864],[-97,-265]],[[584660,863809],[73,78],[19,169],[64,83]],[[579966,867532],[95,-444],[103,-143],[654,-905],[538,-609],[856,-778]],[[649141,870166],[-107,212],[-5,162],[61,184],[-104,184],[-268,187],[-281,13],[-291,-162],[-230,47],[-168,255],[-431,191],[-1045,190],[-209,196],[-363,49],[-586,-33],[-459,-110],[-333,-187],[-173,-170],[-15,-155],[-305,-28],[-597,99],[-714,-148],[-833,-396],[-361,-170],[-205,188],[-64,501],[-38,232],[-12,535],[-172,233],[-428,72],[-648,-98],[-196,240],[14,212],[142,311],[125,218],[-34,243],[-201,81],[-493,-17],[-599,-263],[-707,-508],[-646,-86],[-585,337],[-739,-190],[-891,-716],[-503,-580],[-114,-444],[-345,-561],[-576,-678],[-627,-587],[-680,-495],[-931,-380],[-1752,-353]],[[653882,874377],[-597,445],[-465,1],[-298,142],[-287,283],[-215,-24],[-143,-332],[-301,-164],[-459,4],[-292,-147],[-126,-300],[-79,-286],[-34,-274],[69,-517],[171,-761],[267,-542],[361,-323],[384,-189],[408,-53],[228,-304],[48,-553],[-8,-327],[-66,-101],[-2099,-584],[-824,40],[-404,655]],[[513848,812092],[-722,-396],[-401,-223],[-452,125],[-894,557]],[[264570,744334],[299,-20],[22,93],[-236,299],[-93,106],[-26,256],[21,244],[-95,253],[-258,124],[-335,363],[-414,603],[-447,437],[-480,272],[-519,-49],[-557,-368],[-654,-224],[-750,-79],[-653,-531],[-555,-983],[-382,-484],[-206,16],[-244,-148],[-282,-311],[-515,-725],[-114,-512],[20,-645],[53,-459],[85,-272],[29,-510],[-29,-749],[-68,-674],[-108,-597],[-155,-440],[-200,-285]],[[256724,738335],[-88,-311],[22,-338],[-33,-241],[-90,-145],[43,-367],[176,-588],[106,-581],[35,-574],[-33,-411],[-151,-372],[-144,-808],[-125,-323],[-151,-107],[-136,-300],[-120,-494],[-127,-239],[-134,14],[-100,-90],[-64,-195],[8,-206],[80,-215],[-26,-199],[-133,-183],[2,-88],[41,-54],[-16,-88],[-83,-88],[-51,-273],[5,-453],[-46,-227],[-89,-10],[-11,-124],[148,-513]],[[988177,274886],[174,342],[29,184],[-41,97],[-1,162]],[[989053,277120],[182,387],[162,151],[203,45],[131,166],[62,287],[-65,121],[-190,-45],[-186,139],[-183,322],[-273,132],[-362,-58],[-262,127],[-163,311],[-114,398],[-64,483],[-5,502],[53,520],[-49,330],[-227,211],[-339,210],[-272,376],[-317,611],[-171,594],[-24,577],[-87,573],[-152,567],[-231,275],[-464,-25],[-181,-280]],[[973639,245745],[-343,-1261],[-153,-425],[-148,-193]],[[972995,243866],[-59,-237]],[[972936,243629],[-41,-162],[-53,-605],[166,-594],[578,-875],[185,-333],[271,-225],[628,-341],[326,-120]],[[921841,335953],[-314,-181],[-215,-320],[-330,-775]],[[920982,334677],[-71,-471],[-141,-310]],[[920770,333896],[-235,-308],[-162,208]],[[920373,333796],[-88,723],[-200,498]],[[920085,335017],[-313,274],[-168,275]],[[919604,335566],[-23,275],[-186,285]],[[919395,336126],[-351,295],[-400,125]],[[918644,336546],[-674,-67]],[[160848,762437],[-346,373],[-423,177],[-145,348],[-9,580],[-86,435],[-164,290],[-465,548],[-765,807],[-443,744],[-180,1023],[-101,1124],[86,507],[240,265],[71,212],[-96,160],[-12,240],[72,322],[-22,201],[-116,80],[45,220],[206,358],[72,306],[-61,253],[28,232],[119,211],[16,237],[-87,264],[6,217],[98,171],[220,122],[511,110],[270,366],[48,344],[-86,444],[-119,347],[-154,250],[-35,275],[54,145]],[[237182,801270],[-102,185],[10,228],[23,227],[-80,199],[-214,52],[-177,37],[-340,-110],[-189,59],[-38,230],[-166,236],[-295,242],[-77,467],[-192,152],[-338,20],[-300,-270],[-262,-562],[-350,-344],[-437,-129],[-288,-2],[-138,122],[-44,216],[73,462]],[[233364,803699],[0,4]],[[233364,803703],[-44,274],[-212,327],[-595,701]],[[825579,757533],[-101,124],[18,190],[104,299],[37,306],[-44,469],[-70,346],[16,290],[76,350],[349,409],[619,468],[487,253],[356,39],[395,168],[434,298],[829,33],[1224,-232],[857,-50],[734,199],[3541,953]],[[813986,640530],[166,-384],[196,-914],[134,-545],[139,-713],[101,-261]],[[813986,640530],[733,-573],[268,-282],[134,-305],[133,-49],[116,-14]],[[813832,641983],[1266,81]],[[813346,642614],[40,-391],[200,-969],[200,-565],[200,-159]],[[813346,642614],[299,-208],[170,-358],[140,-579],[184,-279],[342,30],[345,-137]],[[809170,644581],[366,-187],[182,-436],[120,-749],[458,-515],[1195,-424],[372,310],[227,-62],[208,-329],[194,9],[182,347],[221,171],[260,-5],[191,-97]],[[835440,762445],[834,509],[807,43],[1055,-251],[835,275],[614,799],[550,541],[486,283],[404,118],[324,-45],[364,-252],[403,-460],[297,-240],[192,-22],[185,-91],[176,-162],[126,-233],[113,-457]],[[351544,438173],[385,861],[89,729],[-79,885],[99,636],[278,386],[180,862],[82,1338],[110,808],[138,278],[29,269],[-80,260],[-28,307],[26,352],[158,533],[292,713],[236,452],[178,191],[153,354],[127,517],[306,189],[487,-139],[276,206],[65,552],[136,539],[208,524],[60,441],[-86,361],[-45,535],[-5,710],[-129,515],[-253,320],[-194,462],[-136,605],[-198,369],[-258,136],[-185,211],[-112,289],[-68,431],[-23,576],[-119,802],[-215,1030],[65,1579],[344,2129],[292,1385],[240,642],[324,406],[407,170],[277,369],[147,567],[1,529],[-147,491],[-190,272],[-235,53],[-236,329],[-238,607],[-133,537],[-43,699],[-172,487],[-60,476],[-4,627],[-124,875],[-242,1122],[-231,709],[-219,295],[-146,569],[-73,841],[145,1319],[225,1111],[138,686],[127,1108],[-109,420],[13,410],[136,403],[87,700],[57,1500]],[[353864,483022],[733,1539],[312,924],[136,822],[207,141],[279,-540],[158,-440],[35,-340],[94,-261],[155,-183],[173,80],[189,343],[73,339],[-44,335],[49,448],[139,561],[-43,402],[-226,246],[-273,517],[-322,788],[-141,720],[38,649],[-138,983],[-147,608],[-170,708],[-190,1332],[-82,1743],[56,372],[95,255]],[[805803,644151],[309,810],[370,62],[801,-626],[342,99],[190,-116],[151,-296],[357,13],[847,484]],[[273399,719007],[150,-157],[158,47],[324,300],[1249,707],[625,197],[511,-97],[73,-59]],[[717610,688520],[-743,-1049],[-238,-1005],[-124,-294],[-88,81],[-266,-122],[-442,-324],[-225,-384],[-12,-667],[-118,-447],[-236,-446],[-394,-593],[-316,-919],[-239,-1245],[-76,-728],[86,-212],[5,-193],[-34,-110],[-4,-136],[77,-155],[67,-360],[-20,-882],[50,-740],[121,-596],[62,-632],[2,-667],[74,-583],[219,-750],[353,-560],[97,-302],[-43,-231],[29,-314],[100,-396],[1,-397],[-98,-396],[29,-567],[155,-737],[154,-369],[153,0],[52,-285],[-47,-568],[11,-309],[69,-50],[21,-133],[-30,-217],[60,-391],[150,-567],[156,-389],[162,-212],[112,-38],[60,138],[69,21],[77,-94],[50,-173],[23,-253],[133,-110],[244,31],[131,-139],[19,-309],[108,-98],[119,59],[46,-63],[12,-97],[39,-101],[156,-23],[150,-199],[142,-374],[54,-45],[39,42],[61,-15],[182,-282],[151,-93],[121,97],[200,-184],[277,-464],[192,-231],[105,0],[108,-242],[109,-485],[200,-353],[290,-222],[62,-181],[-2,-153],[-29,-81],[40,-152],[40,-77],[86,-32],[252,53],[198,-120],[57,-262],[68,-75],[49,-26],[25,-117],[-19,-170],[150,-368],[334,-521],[256,-285],[177,-48],[123,75],[53,77],[44,0],[25,-178],[91,-136],[169,-5],[85,-109],[0,-212],[91,-222],[272,-348],[642,-184],[228,-114],[29,-106],[-33,-100],[-95,-97],[99,-221],[293,-345],[241,-121],[187,101],[167,-13],[147,-125],[93,-169],[39,-210],[69,-88],[100,33],[46,-106],[-8,-246],[111,-193],[231,-141],[109,-243],[-15,-344],[127,-237],[269,-132],[164,-155],[58,-177],[205,36],[349,249],[268,83],[187,-83],[117,86],[45,255],[75,126],[156,-8]],[[814243,679936],[107,128],[120,315],[891,1737],[461,695],[178,-62],[277,198],[374,460],[46,440],[-284,419],[-66,300],[153,178],[137,13],[119,-151],[233,446],[478,1440]],[[817467,686492],[41,124],[258,422],[211,-19],[239,-343],[288,-125],[339,93],[159,-197],[-22,-486],[145,-349],[311,-213],[168,-303],[27,-394],[95,-236],[163,-81],[254,-518],[344,-956],[358,-514],[371,-73],[313,-227],[256,-381],[389,-106],[523,169],[113,62]],[[822770,681642],[40,199]],[[822810,681841],[320,178],[344,311],[258,375],[172,441],[214,328],[259,212],[196,416],[136,618],[49,455],[-38,292],[201,280],[440,268],[228,360],[14,452],[81,267],[222,123],[773,483],[334,650],[153,977],[177,428],[202,-121],[143,153],[86,426],[251,316],[418,209],[200,296],[-18,385],[77,615],[173,846],[332,1112],[491,1379],[750,761],[1006,143],[574,9],[313,38],[355,-168],[267,-630],[207,-357],[368,-471]],[[715346,715739],[313,363],[128,288],[69,499],[-343,836],[35,674],[296,792],[-9,537],[-314,283],[-213,381],[-112,480],[-314,283],[-516,87],[-432,-68],[-347,-224],[-303,-87],[-257,49],[-472,203],[-155,224],[-81,332],[-261,367],[-441,403],[-345,597],[-248,789],[-60,722],[125,653],[-12,534],[-132,356],[31,120],[50,61],[101,-39],[140,-65],[238,149],[199,423],[42,831],[-114,1238],[79,842],[272,446],[243,232],[216,18],[121,-83],[27,-185],[178,-165],[331,-144],[586,602],[842,1350],[385,1035],[-72,721],[132,785],[338,851],[157,626],[-24,400],[52,395],[129,391],[124,209],[121,29],[248,343],[375,660],[510,644],[647,629],[704,389],[762,147],[609,229],[456,309],[923,882],[1388,1455],[777,982],[167,511],[376,349],[877,279]],[[743500,678096],[242,808],[211,360],[261,181],[273,5],[284,-171],[178,-25],[73,120],[135,-9],[196,-137],[284,-41],[559,86],[2147,91],[820,-41],[208,-143],[245,-6],[281,133],[330,20],[378,-93],[287,-169],[196,-245],[316,27],[434,300],[235,62],[34,-174],[75,-15],[118,144],[190,31],[393,-124],[2883,-209],[1081,-294],[239,-450],[398,-318],[557,-189],[355,18],[154,225],[107,-24],[60,-271],[123,-185],[186,-99],[226,219],[266,537],[393,224],[520,-90],[489,47],[460,181],[352,228],[367,409]],[[734565,917450],[121,-20],[597,427],[566,278],[534,127],[875,-392],[1214,-913],[286,-457],[27,-635],[81,-519],[91,-633],[72,-405],[-108,-519],[-158,-578],[102,-546],[558,-596],[153,-233],[108,-204],[120,-395],[64,-415],[-23,-431],[158,-446],[340,-461],[33,-525],[-273,-587],[-3,-583],[122,-517],[-82,-519],[-287,-543],[-170,-523],[6,-513],[181,-504],[259,-302],[337,-102],[139,-358],[-57,-614],[56,-419],[169,-225],[55,-314],[-58,-401],[29,-489],[118,-576],[-278,-581],[-673,-587],[-282,-371],[109,-155],[421,32],[734,221],[808,-262],[883,-743],[300,-260],[130,-228],[24,-171],[-95,-181],[-70,-93],[-385,-286],[-113,-206],[101,-159],[451,-167],[800,-176],[423,-257],[46,-337],[-97,-249],[-238,-158],[-124,-154],[-8,-149],[26,-181],[58,-213],[159,-159],[260,-107],[166,-191],[72,-273],[-136,-1400],[-369,-2707],[-70,-720],[-76,-360],[-76,-177],[-187,-291],[-193,-343],[-185,-502],[-67,-462],[12,-436],[92,-411],[5,-601],[-81,-792],[21,-583],[123,-377],[-141,-528],[-406,-680],[-161,-548],[84,-416],[-49,-471],[-184,-526],[-77,-335],[31,-145],[458,-344],[884,-545],[734,-676],[877,-1212],[262,-199],[128,-300],[83,-469],[236,-527],[390,-586],[338,-378],[287,-169],[147,-324],[8,-479],[184,-756],[360,-1034],[314,-650],[402,-399],[655,-448],[222,-370],[8,-442],[152,-163],[297,117],[284,-25],[271,-169],[66,-212],[-139,-255],[-340,-259],[-543,-264],[-337,-407],[-133,-548],[62,-791],[256,-1032],[266,-708],[277,-384],[165,-553],[52,-723],[86,-446],[179,-252],[128,-209],[16,-438],[380,-406],[517,-730],[565,-1109],[235,-859],[59,-215],[150,-230],[72,-292],[-6,-356],[299,-584],[603,-811],[330,-553],[56,-297],[237,-318],[420,-337],[267,-328],[114,-317],[37,-260],[-41,-203],[141,-108],[322,-13],[256,-130],[189,-246],[5,-236],[-179,-225],[1,-173],[181,-122],[100,-339],[20,-558],[134,-334],[247,-111],[132,-171],[18,-232],[105,-185],[194,-139],[107,-183],[20,-228],[104,-250],[185,-272],[388,-248],[886,-335]],[[798624,661466],[-11,-586],[50,-278],[108,-165],[145,18],[271,304],[201,827],[56,435],[-19,318],[92,261],[203,204],[166,312],[128,420],[185,384],[242,348],[255,161],[269,-26],[134,-106],[0,-186],[160,-356],[318,-526],[213,-108],[108,311],[95,152],[84,-6],[39,-93],[-6,-180],[99,-205],[203,-229],[257,-12],[311,206],[337,416],[543,941],[133,329],[17,359],[-55,497],[46,246],[147,-8],[174,168],[199,343],[110,73],[21,-199],[47,-91],[74,17],[59,122],[43,228],[188,-10],[333,-246],[299,255],[462,1374],[131,479],[55,370],[-20,262],[62,252],[144,243],[44,206],[-55,170],[4,193],[64,217],[-68,208],[-200,200],[-67,181],[68,164],[-64,153],[-195,141],[-129,188],[-61,235],[41,309],[142,383],[43,288],[-56,193],[19,86],[95,-20],[156,203],[218,428],[190,554],[162,682],[433,522],[705,362],[426,306],[149,249],[155,-43],[161,-336],[197,-112],[350,168],[328,1156],[102,111],[93,-87],[94,33],[78,100],[67,0],[73,-120],[109,-28],[145,129],[190,12],[356,-158]],[[813624,677386],[246,686]],[[814081,679492],[162,444]],[[125235,869682],[125,357],[-42,337],[-168,435],[-51,337],[66,239],[2,190],[-60,140],[-444,266],[-827,392],[-582,148],[-338,-95],[-494,77],[-1053,447],[-153,143],[-43,304],[66,464],[-637,901],[-2147,2089],[-265,161],[-781,65],[-1849,-112],[-2328,1000],[-504,241],[-317,358],[-90,533],[55,427],[201,323],[-94,381],[-388,440],[-235,505],[-83,572],[2,382],[86,193],[15,257],[-57,322],[2,359],[61,396],[188,300],[313,203],[164,234],[15,263],[-98,335],[-211,405],[-726,413],[-1242,418],[-435,221],[-69,123],[20,161],[16,270],[-41,163],[-183,-50],[-122,62],[-59,175],[-108,83],[-156,-9],[-69,87],[17,181],[-61,69],[-138,-43],[-240,122],[-142,200],[-189,82]],[[108330,888124],[-13,6],[-164,214],[15,141],[-92,151],[-199,162],[-33,181],[134,202],[-2,122],[-139,42],[-54,109],[31,175],[-119,63],[-269,-50],[-130,122],[13,443],[-99,267],[-359,252],[-650,324],[-434,338],[-218,353],[-403,203],[-589,55],[-397,113],[-205,171],[-219,6],[-231,-160],[-530,-66],[-829,26],[-611,142],[-393,257],[-232,267],[-72,274],[-230,212],[-390,150],[-282,199],[-173,250],[-6,391],[160,534],[37,378],[-88,223],[-563,668],[-1038,1114],[-577,708],[-116,302],[-358,398],[-600,493],[-651,294]],[[95963,899343],[-1041,142]],[[46503,872331],[51,-453],[-3,-319],[-133,-227],[-275,-106],[-417,14],[-293,-91],[-169,-196],[-191,-37],[-174,120],[-23,224],[-43,96],[-106,8],[-169,-81],[-118,75],[-69,231],[-168,-70],[-266,-370],[-226,-160],[-185,50],[-274,-93],[-363,-236],[-240,15],[-276,101],[-238,-133],[-133,-244],[28,-193],[286,-215],[65,-225],[-98,-235],[-306,-260],[-331,-156],[-233,-235],[-269,-287],[-49,-364],[12,-261],[-118,-104]],[[46503,872331],[-488,262],[-823,188],[-480,244],[-137,301],[14,377],[165,454],[81,393],[-4,333],[-192,494],[-380,657],[-431,398],[-722,208],[-113,-48],[-186,-164]],[[94922,899485],[-2323,-606],[-975,-375],[-398,-346],[-457,-199],[-517,-51],[-242,-134],[32,-218],[-447,-118],[-926,-20],[-792,-214],[-658,-410],[-354,-305],[-99,-214],[-73,-35],[-61,140],[-168,30],[-274,-81],[-118,-120],[39,-162],[-149,-129],[-336,-97],[-213,-201],[-91,-306],[-428,-92],[-765,121],[-575,-116],[-382,-356],[27,-187],[439,-18],[176,-235],[-88,-453],[-197,-170],[-309,111],[-235,-167],[-161,-445],[-392,-267],[-623,-87],[-675,-349],[-729,-611],[-964,-492],[-1796,-558]],[[77645,890943],[-837,-245],[-514,61],[-458,284],[-438,113],[-418,-58],[-331,-153],[-245,-247],[-324,-72],[-403,101],[-732,-266],[-1062,-634],[-779,-292],[-495,50],[-741,-197],[-796,-208],[-687,-457],[-539,-201],[-496,48],[-679,-254],[-567,-48],[-618,-191],[-854,-96],[-75,186],[-138,135],[-300,65],[-210,151],[-120,236],[-654,181],[-347,-35],[-315,142],[-721,39]],[[61752,889081],[-202,112],[-198,-69],[-248,-334],[-461,-707],[-328,-228],[-595,-1059],[-494,-714],[-33,-189],[87,-521],[-40,-499],[-168,-477],[-254,-375],[-512,-409],[-386,-242],[-149,-215],[-41,-269],[-108,-205],[-173,-144],[-188,-379],[-200,-615],[-58,-477],[86,-339],[-151,-381],[-387,-423],[-232,-515],[-76,-609],[-203,-447],[-330,-286],[-207,-419],[-83,-551],[-116,-391],[-147,-231],[-74,-336],[-1,-440],[104,-372],[208,-304],[144,-336],[86,-260],[35,-294],[20,-242],[119,-156],[298,-103],[170,-129],[40,-156],[-35,-198],[-110,-240],[-194,-165],[-278,-90],[-223,-222],[-168,-355],[-676,-191],[-1182,-27],[-849,-174],[-515,-320],[-239,-281],[36,-242],[-57,-261],[-152,-278],[-352,-211],[-628,-122],[-200,-91],[-263,-150],[-98,125],[-20,350],[-166,525],[-311,701],[-319,353],[-325,7],[-204,138],[-83,271],[-160,72],[-239,-127],[-151,-163],[-64,-199],[-135,-29],[-208,139],[-205,-10],[-205,-158],[-225,-34],[-247,91],[-200,214],[-153,337]],[[94922,899485],[-13,2]],[[94929,899487],[-7,-2]],[[761344,701762],[1010,44],[164,243],[286,7],[465,-147],[385,-242],[307,-338],[176,-341],[46,-347],[331,-304],[616,-263],[372,-328],[128,-394],[279,-448],[430,-501],[357,-207],[283,87],[194,-28],[158,-216],[394,-547],[204,-531],[145,-699],[218,-415],[292,-131],[220,-280],[151,-431],[138,-231],[188,-46]],[[600108,397431],[184,-515],[97,-660],[14,-499],[-69,-337],[24,-249],[59,-178],[9,-266],[-79,-282]],[[600108,397431],[1225,-1355]],[[579890,408099],[200,639],[67,697],[0,968],[52,627],[105,286],[166,223]],[[580480,411539],[215,289],[660,737],[554,471],[673,309],[1399,7],[386,2],[133,0],[1045,6]],[[590854,413727],[604,-35],[286,-282],[168,-542],[319,-648],[469,-754],[532,-1089],[893,-2132],[275,-539],[615,-582],[1046,-806],[591,-526],[137,-246],[146,-558],[233,-1307],[321,-1423],[252,-681],[290,-412]],[[598031,401165],[271,-561],[254,-707],[339,-551],[423,-395],[255,-389],[85,-385],[179,-377],[271,-369]],[[567404,438554],[170,405],[20,424],[-73,578],[-226,239],[-558,-147],[-9,-2],[-755,-1220],[-421,-536],[-339,-260],[-249,-320],[-158,-381],[-437,-594],[-717,-808],[-431,-764],[-145,-721],[-159,-543],[-173,-364],[-98,-702],[-23,-1041],[101,-990],[225,-939],[99,-687],[-13,-197],[-15,-236],[181,-556],[587,-1021],[164,-294],[142,-608],[174,-1017],[137,-570],[98,-121],[19,-224],[-59,-326],[-1,-410],[60,-494],[-10,-435],[-77,-379],[-6,-507],[66,-636],[-81,-702],[-228,-769],[-204,-1250],[-181,-1731],[37,-1187],[254,-643],[143,-562],[31,-483],[-24,-363],[-77,-243],[57,-419],[192,-593],[159,-1038],[127,-1483],[554,-1684],[984,-1886],[641,-1608],[449,-1997],[145,-25],[1229,-210],[437,-120],[117,-32],[193,-148],[251,-389],[327,-666],[133,-269],[4,-9],[5,-3],[530,-299],[130,-11],[162,-15],[230,151],[283,-202],[241,-395],[97,-159],[368,-106],[138,119],[261,225],[539,-104],[473,-385],[205,-166],[562,-113],[669,492]],[[972225,244069],[302,-30],[409,-410]],[[972788,244749],[207,-883]],[[212361,851285],[-321,528]],[[211706,852679],[-482,481],[-110,218],[102,115],[33,232],[-34,349],[-505,305],[-975,260],[-824,82],[-356,258],[-85,363],[-171,187]],[[206806,855393],[-62,419],[-325,178],[-914,119]],[[119444,867668],[-170,-1395],[-22,-230],[-59,-248],[-240,-212],[-476,-298],[-451,-159],[-426,-19],[-289,-217],[-150,-415],[-63,-474],[24,-532],[-117,-617],[-260,-703],[-71,-369],[85,-310],[288,-656],[33,-238],[-33,-258],[-286,-335],[-68,-270],[150,-208],[20,-207],[-112,-209],[-7,-221],[145,-353],[251,-540],[36,-253],[-21,-202],[-401,-292],[-34,-37],[-17,-17],[-96,-74],[-111,-12],[-340,-211],[-137,-173],[-74,-309],[27,-172],[57,-90],[58,-57],[31,-81],[35,-165],[7,-131],[-19,-74],[-35,-57],[-53,-33],[-51,9],[-552,44],[-121,-37],[-93,-65]],[[157022,890863],[-736,-528],[-1301,-213],[-2112,-72],[-1233,-190],[-582,-513]],[[968818,237917],[-140,-792],[-115,-326],[-138,-124],[9,-192],[155,-259],[53,-329],[-48,-397],[18,-313],[128,-341],[488,-1069],[97,-467],[-79,-605],[-362,-1408],[-88,-702]],[[297246,778722],[-242,-102],[-188,-217],[-86,-312],[37,-157]],[[212646,868486],[-58,-489],[-226,-417],[-415,-508],[-168,-449],[120,-583]],[[213451,871268],[-216,-376],[-43,-229],[87,-313]],[[223284,874014],[2899,-289],[1013,0],[95,194],[-86,561],[-399,1394]],[[218427,874303],[133,-29]],[[220181,874337],[508,-3]],[[214620,874660],[-507,-542]],[[217136,875309],[838,851]],[[216570,877700],[-233,-59],[-173,-183],[-192,-327],[-357,-224],[-783,-182]],[[228805,878023],[56,401],[119,263],[300,389]],[[229757,881182],[144,352],[148,117],[198,-2],[75,64],[37,184],[159,33],[171,-22]],[[233671,882026],[186,73],[35,148],[-28,147],[28,161],[212,116],[125,192],[0,281],[130,310],[261,339],[125,267],[-15,291]],[[795733,566671],[-219,187],[-688,-141]],[[794826,566717],[-574,-133]],[[794826,566717],[128,-311],[107,-52],[194,101],[105,-85],[84,-216],[132,-554],[168,-394],[141,-206],[167,-216],[219,-178]],[[218992,874403],[-432,-129]],[[504040,762397],[-4,11],[-122,571],[-1,437],[-132,597],[-393,1135],[-382,888],[-616,561],[-977,528],[-515,473],[-54,418],[-136,332],[-328,366],[-372,454],[-292,153],[-338,5],[-332,283],[-530,945],[-77,204],[-15,177],[71,225],[14,320],[-33,287]],[[508564,783497],[-170,969],[-295,815],[-64,449],[69,356],[-97,445],[-261,537],[-484,600],[-707,665],[-596,400],[-485,135],[-349,-10],[-213,-155],[-445,-602],[-678,-1049],[-572,-669],[-468,-288],[-484,-172],[-501,-57],[-576,-269],[-612,-571],[-367,-153],[-316,182],[-495,681],[-560,226],[-870,-186],[-903,21],[-534,-225],[-466,-466],[-396,-244],[-204,-87],[-306,85]],[[508564,783495],[236,-48],[223,-150],[223,-624],[447,-100],[377,-525],[275,-601],[69,-477],[309,-301],[343,-277],[17,-478],[137,-833],[172,-429],[0,-608],[-189,-507],[52,-305],[291,-432],[155,-636],[17,-689],[103,-895],[-154,-641],[-189,-359],[-138,-412],[-360,-231],[-120,-490],[34,-464],[-51,-387],[68,-595],[395,-362],[275,-208],[86,285]],[[604562,855378],[269,-403]],[[604831,854975],[839,-954],[599,-1680],[419,-2047]],[[604831,854975],[204,175],[331,126],[597,-323],[305,242],[282,59],[147,214]],[[606697,855468],[206,390],[-39,194],[95,222],[-139,701],[89,588],[-104,332],[328,569],[-487,118],[-135,346],[-314,303],[101,222],[-26,101],[-483,406],[-29,103],[24,141],[185,160],[-124,387],[-337,221]],[[603465,861597],[133,67],[113,37]],[[603711,861701],[244,-71],[702,-290],[851,-368]],[[603658,861884],[53,-183]],[[603658,861884],[-278,188],[-200,471],[-102,110],[48,92],[-13,142],[-87,140],[25,380],[65,340],[63,92],[-47,232],[44,254],[-97,761],[-111,266],[-903,540],[-220,156],[-453,50],[-404,589],[-39,135],[-226,141]],[[599737,867931],[986,-968]],[[595352,871445],[129,-283],[715,-438],[791,599],[594,-397]],[[597581,870926],[1904,-1971],[252,-1024]],[[599737,867931],[-201,-1400],[-600,-493],[-523,599],[-692,-80],[-604,622],[-253,-52],[-65,-220],[44,-123],[-48,-301]],[[596719,877133],[-34,130],[52,232],[104,172]],[[596841,877667],[220,1003],[-155,856],[-220,1041],[-179,613],[-909,1756],[-154,238]],[[595444,883174],[-444,849],[56,79]],[[595056,884102],[132,229],[137,410],[31,564],[68,184]],[[595424,885489],[160,282],[172,453],[-4,274],[757,843]],[[623777,792879],[-23,-285],[28,-142],[-175,-481],[-381,203],[-34,84],[-407,146],[-108,191],[-54,406],[-241,199],[-122,272],[-164,50],[-164,-131],[-369,46]],[[620909,793124],[654,313]],[[595803,877576],[496,-642],[389,-275]],[[596688,876659],[1711,-1168],[266,-635],[182,-459],[160,-626],[-478,-969],[-407,-1490],[-541,-386]],[[597581,870926],[-1,-1]],[[596688,876659],[31,474]],[[708027,725865],[-545,190],[-536,-159],[-114,-551],[291,-681]],[[707123,724664],[-1204,-1032],[-1366,279]],[[704553,723911],[-2342,-325],[-1304,-563],[-1721,-1754],[-1283,-2010],[-132,-453],[526,-569],[411,-1245],[182,-1152],[130,-1854],[-380,-1454],[-994,-1539],[-354,-934],[-7,-613],[401,-699],[-242,-1539],[-601,-589],[-853,-155],[-1770,521],[-169,-678],[288,-883],[656,-922],[321,-1285],[11,-396],[-305,-503],[-780,-802],[-955,-73],[-242,-479],[-92,-1059],[-598,-2518],[181,-2558],[-537,-1608],[-267,-441],[-322,-233],[-290,108],[-226,558],[-796,306],[-1010,-345],[-1163,-1062],[160,-691],[108,62],[129,-199],[-65,-360],[-1370,-717],[-523,136],[-150,516],[-565,-273],[-1269,-2223],[-265,-1910],[223,-3604],[-278,-588],[-3382,-1916],[-942,232],[-1458,-526],[-1140,-162],[-537,190],[-2118,-394],[-1854,385],[-3538,2204]],[[669091,682274],[2477,5574],[183,1052],[-145,1912],[-199,433],[-2368,704],[-114,1258],[25,1744],[-155,3410],[-509,3248],[219,734],[252,1707],[-563,737],[-81,2561],[144,571],[1184,2696],[751,5067],[13,556]],[[670205,716238],[1693,-1006],[1138,-1316],[1265,281],[844,902],[364,1460],[30,1191],[1888,861],[1593,1406],[368,633],[157,536],[340,3880],[2461,1770],[171,829],[161,0],[1483,-1240],[507,2],[203,152]],[[684871,726579],[1520,-120],[1243,-499],[661,-460]],[[688295,725500],[66,-594],[588,-881],[2042,2121],[385,232],[567,-727],[925,221],[-145,1144],[381,800],[147,88],[762,146],[885,-436],[289,544],[93,401],[-62,748],[-73,95],[40,729],[1235,2710],[678,372],[1161,-1308],[-15,-495],[509,-2574],[-324,-3832],[359,-1858],[195,-490],[129,-93],[455,41],[4002,4570],[723,64],[634,-231],[-2,-510],[-432,-410],[101,-206],[531,5],[934,587],[251,399],[542,72],[606,-115],[303,-242],[267,-722]],[[566664,441444],[95,-1822],[-137,-2547],[104,-4872],[-265,-2524],[-539,-684],[-4495,-17],[-307,-643],[-11,-17864],[624,-2595],[2505,-5170],[867,-1143]],[[565105,401563],[-5571,-2287],[-1520,153],[-1856,676],[-3673,407],[-734,1045],[-589,1473],[-11104,0],[-1207,-256],[-1211,1660],[-237,821],[-306,229],[-551,61],[-528,-181],[-1135,-1452],[-736,25],[-316,306],[-781,-130],[-400,-272]],[[536391,470995],[2054,221],[2465,-159],[4821,174],[348,-552],[297,-1018],[37,-1899],[130,-1294],[495,-2683],[1620,-5536],[306,-476],[1311,284],[472,473],[731,141],[2359,-141],[354,5004],[184,901],[2035,188],[744,-783],[-55,-1074],[3353,0],[217,-2008],[-61,-2631],[362,-2232],[-436,-5667],[291,-1517],[625,-1287],[249,-1028],[300,-2092],[11,-1795],[-428,-992],[259,-1910],[102,-254],[1354,773],[909,7],[1549,614],[419,-123],[490,820]],[[533304,476260],[2094,3293],[679,-718],[316,-718]],[[536393,478117],[-699,-451],[-645,-1406],[-235,-888],[-115,-3476],[-823,-154]],[[555774,757317],[1236,-2034],[212,-1139],[-16,-836]],[[557206,753308],[-97,-82],[-240,-1799],[123,-1948],[521,-1420],[766,-792]],[[558279,747267],[122,-864],[-299,-1408],[-1035,-2389],[-489,-1643],[-206,-434],[-555,-225],[-239,94]],[[553807,753110],[-48,1815],[148,964],[573,1562],[318,485],[289,-1147],[687,528]],[[504793,757014],[-71,-36],[-103,-137],[-315,-251],[-87,-15],[-38,6],[-130,28],[-9,21],[-14,-7],[-1,39],[-14,30],[-35,193],[-14,450],[17,172],[27,61],[1,2],[0,30]],[[504007,757600],[17,2],[64,120],[77,128],[141,55],[473,-227],[44,5],[-3,-61],[62,-152],[-8,-99],[-78,-289],[-3,-68]],[[656596,653444],[-503,-1181],[-225,-250],[-88,30],[-110,430],[-60,398],[108,335],[-145,322],[-126,66],[-304,-238],[-108,-324],[-41,-3659],[149,-479],[-162,-1027],[-815,-720],[-155,-2791],[-588,-1964],[-67,-2376]],[[653356,640016],[-625,-358],[-6109,1567],[-909,1026],[-2273,5791],[-134,1082]],[[655797,659770],[238,-751],[-48,-1400],[67,-389],[253,29]],[[325985,374303],[671,-1156],[570,-1426],[530,-1763],[2597,-4233],[150,-416],[1766,-1421],[1111,-115],[1326,-1666],[580,-1175],[534,-634],[1093,-1044],[2094,-1633],[570,-725],[547,-1455],[-80,-762],[-1508,-3758],[-246,-1270],[22,-779],[-111,-1090],[-277,-784],[-780,-1441],[840,-854],[1299,-218],[2254,-1093],[1491,-219],[1780,810],[737,961],[2111,3259],[405,1479],[161,1089],[-19,1487],[146,2294]],[[348349,354552],[516,-310],[616,651],[820,-550],[82,-203],[513,-4481],[-4,-2923],[-377,-1266],[-1109,-1419],[-1496,-1197],[-2769,-4193],[-1526,-3272],[-976,-2456],[-188,-695],[-741,-1634],[-1842,-3251]],[[339868,327353],[-464,-2898],[-935,-8198],[-57,-2844],[161,-1969],[-47,-828]],[[309929,196164],[21,346],[-3814,1546],[-1302,354],[-4558,-45],[-247,188],[-851,1802],[-272,919],[383,3575],[-96,1505],[-152,256],[-346,96],[-842,-114],[-806,-914],[-243,-23],[-129,262],[-435,1208],[-347,2163],[-105,1666],[27,2313],[246,1114],[902,976],[926,1278],[1440,3697],[-165,847],[-504,1188],[-66,1238],[588,1474],[976,1665],[169,655],[289,2005],[92,2575],[-103,1256],[27,2207],[462,1390],[335,243],[285,716],[-92,1017],[-365,1021],[-720,469],[-550,919],[1194,83],[544,-227],[478,273],[302,955],[20,314],[-121,364],[-268,265],[-537,213],[-1080,-119],[-69,339],[106,940],[358,1723],[25,1133],[-726,3602],[-607,1178],[15,3379],[507,989],[452,1697],[-152,1823],[-34,2445],[-278,2330],[562,1951],[205,3630],[197,1255],[342,287],[187,1134],[63,1087],[-79,1516],[903,921],[476,8],[237,874],[-477,2168],[-411,3759],[21,4659],[399,2044],[342,281],[1061,1608],[357,957],[32,1421],[-221,2066],[457,3967],[946,2746],[189,1815],[50,2593],[-312,1333],[-1030,8357],[-330,353],[-294,1450],[120,2377],[179,560],[63,-84],[845,4099],[717,1736],[-255,3837],[826,5770],[1573,3996],[669,3198],[545,897],[524,87],[356,407],[204,737],[-870,2452],[78,1224],[214,280],[-34,3277],[-243,1577],[94,895],[306,847],[-345,2084],[242,882],[599,1299],[2597,2171],[923,6112],[-528,1101]],[[313387,370974],[437,1300],[1048,2246],[1033,1514],[91,919],[93,84],[307,-184],[727,-1299],[1198,-292],[1072,9],[1024,-602],[261,-765],[537,-2388],[275,178],[667,3043],[336,1054],[2748,-1],[387,-993],[357,-494]],[[309423,181378],[-3,13203],[5,10]],[[629260,735520],[-1083,-147]],[[628177,735373],[15,303],[-447,2010],[-485,1813],[-828,-120],[-1762,1311],[-318,-155]],[[624352,740535],[-595,1104],[-886,852],[-714,-124],[-869,494],[-174,1553],[86,926],[314,919],[0,232],[-192,1216],[-485,499],[-148,452],[72,192]],[[620761,748850],[1546,390],[1993,180],[741,458]],[[625041,749878],[277,-1085],[907,-572],[450,-809],[-125,-546],[-426,-349],[-94,-358],[219,-989],[622,-795],[568,-365],[-101,-1805],[-120,-517],[862,-1386],[509,-333],[602,-833],[-89,-875],[9,-1072],[149,-1669]],[[547056,793138],[-258,-1581],[671,-1758],[50,-131],[147,-133],[2,-2]],[[547668,789533],[-223,-781],[-332,-380],[-954,-1094],[-448,-2764],[-310,-914],[-346,-427],[-295,-363]],[[544760,782810],[-572,-934],[-1255,-451],[-944,131],[-521,-226],[-411,-695],[-632,-641],[-1390,586],[-941,183]],[[538094,780763],[-3164,779],[-431,264],[-610,1120],[-81,792],[-2346,-192],[-602,-381],[-72,-330],[-1706,-89]],[[529082,782726],[39,340],[-232,485],[-150,-39],[-220,-350],[-1833,781]],[[526686,783943],[78,397],[-290,842]],[[526474,785182],[86,1382]],[[526560,786564],[732,349],[389,-196],[361,-660],[246,-735],[738,1128],[2632,-109],[1034,726],[1579,634],[754,-135],[1085,-1230],[135,196],[114,907],[-894,2457],[2477,2793],[441,702],[60,663]],[[538443,794054],[614,-821],[176,-234],[231,-61],[401,-105],[1008,498],[496,727],[242,1025],[70,53],[354,266],[74,-15],[366,-75],[883,-499],[948,-536],[1506,-135],[376,-34],[11,-7],[661,-396],[196,-567]],[[625041,749878],[806,1025],[652,-325],[1258,-1399],[1310,-590],[493,166],[232,1028],[-182,486],[-919,871],[-255,519],[17,959],[507,897]],[[628960,753515],[1149,-990],[335,-473],[531,-751],[317,-1131],[380,-458],[1080,-429],[52,27],[177,93],[1959,3706]],[[635745,733010],[-99,45],[-233,-190],[-434,80],[-1586,2441],[-1,381],[225,231],[744,2535],[-1023,1856],[-527,-195],[-1831,-2106],[-988,-1279],[-732,-1289]],[[628177,735373],[-1953,1042],[-820,1454],[-938,2148]],[[624466,740017],[-114,518]],[[584842,491544],[-197,-952],[-148,-1776],[232,-467],[92,127],[759,-317],[80,-1582],[-203,-211],[-880,-1690],[-149,-916],[-656,-2274],[-426,-1017],[-876,-971],[-305,10],[-434,13]],[[581731,479521],[-84,1061],[-326,1968],[-122,2468],[-46,926],[-231,2517],[-254,1129]],[[580668,489590],[36,740],[111,155],[645,-357],[208,-985],[1001,134],[366,294],[197,1522],[258,667],[894,260],[234,-92],[224,-384]],[[516725,805772],[555,-734],[262,-787],[73,-1056],[-344,-372],[-222,-741]],[[517049,802082],[-316,306],[-138,-45],[-562,-1320],[-87,-665],[40,-282],[353,-502],[34,-230],[-78,-564],[-133,-149]],[[516162,798631],[-380,6],[-787,401],[-1099,1043],[-454,942],[-1930,468],[18,1465],[-323,419],[-492,-5],[-514,272],[-676,655],[-493,999],[-874,332],[-73,-203],[-319,170],[-385,527],[-311,1635]],[[509344,809418],[48,-520],[0,-2],[1402,-494],[489,268],[490,624]],[[511783,809441],[1408,718],[523,-556],[2470,-1395],[80,-130],[-595,-1782],[278,-463],[778,-61]],[[509967,575019],[-306,-1640],[176,-1001],[503,-1027],[334,-2866],[-145,-861],[-176,-156],[-624,-3411],[-1704,-4598],[-294,-130],[-198,-6290],[137,-4533],[-146,-5020]],[[504546,542664],[463,339],[-563,3215],[89,1362],[-32,11677],[-719,3721],[-25,1932],[-1602,2254],[130,2167],[252,1494]],[[502539,570825],[633,1027],[683,1574],[1541,-150],[238,118],[774,1517],[279,1220]],[[506687,576131],[-33,1245],[534,1067],[708,670],[2071,-4094]],[[502539,570825],[-791,-82],[-2125,894]],[[499623,571637],[-312,142],[-1140,-1108],[-849,150],[-5194,37],[-266,-2400],[365,-1917],[130,-1976],[-56,-2016],[234,-645]],[[492535,561904],[-197,-474],[-69,42],[-404,897],[-298,971],[-344,655],[-724,484],[-621,123],[-728,-316],[-699,-474],[-863,-967],[-681,313],[-686,1363],[-161,986],[-332,1177],[-600,-47],[-443,817]],[[484685,567454],[463,4104],[408,1872],[-169,1724],[-277,579],[836,870],[934,270],[470,788],[803,3243],[-192,2602],[648,1242],[464,405],[961,-1328],[445,0],[404,510],[69,690],[1125,3552],[1050,1733],[795,-600],[1095,1690],[1820,1710],[1188,1838],[1291,-30],[1331,-954]],[[500647,593964],[-117,-553],[-81,-1709],[609,-2850],[633,-1813],[1720,-2086],[73,-304],[-223,-106],[-506,310],[0,-1604],[2435,-2943],[323,771],[344,-72],[331,-937],[131,-802],[-529,-216],[-51,-206],[948,-2713]],[[538443,794054],[-760,1170],[-2483,2716],[-524,1560],[-266,1890],[-219,241],[-300,333],[-279,907],[37,315],[558,67],[345,41],[1614,757],[2001,1547],[75,58],[50,30],[1456,863],[-4,455],[-134,178],[81,181],[81,181],[578,-247],[137,-58],[64,-405],[65,-408],[352,21],[207,12]],[[541175,806459],[334,-23],[950,460],[795,-980],[1006,-543],[825,-108],[313,-1020],[-139,-725],[1196,-1584],[663,755],[-78,573],[617,297],[1226,-648],[20,-588],[1068,-929],[499,-128],[1157,-847],[632,-1236],[104,-726]],[[552363,798459],[-529,-79],[-1205,-1236],[-314,-1043],[-716,-1134],[-964,-628],[-876,325],[-399,-632],[-304,-894]],[[757240,635660],[8,-1069],[-182,-2435],[-554,490],[-306,-660],[-128,-933],[187,-826]],[[747416,636999],[-228,912],[-254,3301],[-396,2662],[-526,1751],[63,1112],[377,411],[97,406],[-57,1077],[-157,888],[-1048,534],[-468,649],[-329,954],[359,1526],[836,884],[1015,525],[357,0],[163,562],[-670,1423],[-847,691],[-961,1152],[-14,665],[207,1225],[476,752],[41,1204],[163,602],[1222,-1907],[509,193],[-356,478],[113,528],[315,-334],[191,-1204],[139,-399],[414,-616],[552,-223],[119,107],[191,345],[-112,351],[6,312],[59,200],[130,15],[242,-471],[228,-1410],[61,-1353],[-87,-1257],[145,-929],[1551,-878],[2251,349],[1521,-198],[702,97],[825,-806],[363,-639],[28,-391],[-607,-970],[-310,-1635],[-127,-286],[-759,-1076],[-466,-163],[-808,-691],[-289,-462],[-360,-1627],[29,-531],[660,-3070],[550,-850],[341,243],[211,445],[48,198],[-107,741],[593,2713],[702,122],[105,-233],[196,-2548],[421,-2983],[280,-4504]],[[577865,753922],[-194,-7],[-739,-26],[-523,329],[-612,382],[-465,-50],[-33,-3],[-530,-407],[-1522,-1168],[-109,-407],[77,-240]],[[573215,752325],[-393,131],[-287,-636],[103,-174],[109,-931],[-7,-22],[-150,-471],[-477,-210],[-1333,-163],[-715,-87],[-1235,894],[-877,634],[-309,54],[-174,30],[-514,-6],[-884,-785],[-673,-203],[-885,-266],[-828,9]],[[563686,750123],[47,80],[56,96],[73,2372],[-316,1227],[-1436,1977]],[[562110,755875],[203,139],[84,59],[259,785],[6,19],[-298,727],[-10,422],[-21,877],[237,166],[697,488],[575,1049],[64,443],[-1315,1687],[-232,1031],[-236,1050],[150,1074],[292,388],[255,340],[89,268],[80,239]],[[562989,767126],[278,-228],[1105,-2106],[634,186],[1517,-632],[2960,-165],[1032,-579],[1113,535],[817,1387],[270,257],[2421,903],[568,-113],[1016,-595],[1679,-1527],[986,-140]],[[552839,770908],[391,354],[558,-197],[-274,-1391],[-121,-2226],[353,-234],[646,-974],[-922,-3145],[-74,-37]],[[553396,763058],[-193,48],[-1262,-1623],[-594,-1919],[-38,-1018],[223,-249],[25,-467],[-90,-352],[-252,-156]],[[551215,757322],[-447,336],[-1310,1770],[-323,58],[-110,-200]],[[548836,759578],[298,162],[-149,752],[-3493,5836],[-1714,4730],[21,1714],[224,314],[379,16],[1037,-1278],[738,1234],[1002,104],[746,-503],[3711,-366],[251,-114],[200,-432],[31,-531],[79,-112],[208,-212],[434,16]],[[588282,813796],[-758,55],[-1610,-425],[-1076,-2240],[-42,-502],[260,-955],[-776,-318],[-488,789],[-1214,-70],[-578,-347],[-668,152],[-1038,767],[-1006,-38],[-1041,294],[-900,-481],[-376,40],[-922,310],[-1156,806],[-1573,658],[-1221,389],[-1767,121],[-2071,-292],[-776,-569],[-1719,-1724],[-161,10]],[[565605,810226],[-212,565],[6,707],[391,1553],[-92,458],[-103,269],[-477,421],[-670,280],[-63,332],[812,1581],[784,369],[515,587],[4,1429],[-110,1311],[-227,398],[-458,1734],[-303,1583],[-83,893]],[[565319,824696],[699,-198],[612,16],[1375,37],[471,288],[128,78],[796,919],[845,675],[218,102],[360,170],[237,-428],[-48,-146],[292,654],[-62,371],[-65,398],[77,445],[253,1448],[505,896],[86,153],[432,499],[339,393],[1286,442],[131,210],[239,379],[2,45],[6,135],[-377,140],[-127,949],[-64,481],[8,640]],[[573973,834887],[487,197],[2296,926],[111,402],[937,1108],[132,88],[261,176]],[[578197,837784],[318,-449],[149,-210],[2287,-187],[8,-4],[846,-415],[322,-1343],[454,334],[682,500],[443,-53],[417,-51],[641,-387],[916,-963],[422,-2888],[21,-418],[-126,-404],[-16,-49],[55,-995],[42,-766],[438,-1165],[465,-1238],[443,-551],[257,-319],[106,-54],[239,-123],[281,-1331],[33,-160],[17,-12],[465,-335],[598,0],[617,-389],[933,-1556],[-1,-111],[-6,-619],[-1352,-1249],[-311,-287],[-643,119],[-212,39],[-3,6],[-135,338],[-303,236],[-86,68],[-675,-120],[-105,-409],[-113,-440],[18,-391],[147,-264],[285,-515],[127,-612],[58,-281],[139,-1420],[157,-680],[326,-1415]],[[252939,599719],[-759,6],[171,6594],[4,4781]],[[252355,611100],[53,907],[230,177],[338,-406],[811,1677],[508,1597],[383,17]],[[313387,370974],[-1122,-491],[-594,92],[-233,318],[-144,3256],[-136,1379],[-546,3621],[1,760],[-1408,4738],[-147,261],[-7,517],[347,3378],[547,2149],[-815,1556],[-610,1507],[-346,3584],[-690,2534],[-452,2256]],[[307032,402389],[-298,1221],[262,997],[1531,3789],[293,725],[-1252,1422],[-378,2937],[194,468],[271,655],[257,971],[-541,1686],[-31,1013],[629,1799],[766,1694],[-322,1991],[-69,1439],[215,700],[158,1280],[102,2949],[480,1816],[-883,3428],[-1674,5744]],[[306742,441113],[935,-6],[1044,-340],[289,-194],[137,-641],[451,232],[844,876],[378,1288],[1575,1490],[1593,1772],[986,1735],[1151,525],[1322,297],[782,497],[164,-149],[237,-805],[-41,-1531],[-220,-1747],[215,-2641],[-14,-1569],[-125,-927],[350,-2474],[821,-1947],[347,-385],[1145,-2238],[1207,-465],[191,166],[89,284],[235,114],[249,-101],[1809,-1822],[643,-1209],[819,-671],[1107,-520],[665,-2035],[1756,-28],[892,-297],[1190,-1356],[268,-1094],[-225,-802],[46,-989],[531,-2114],[72,-2712],[-458,-2],[584,-5037],[390,-1886],[4585,-245],[-175,-2843],[43,-1052],[201,-1317],[382,-961],[472,-600],[496,-14],[316,-750],[562,-3089],[45,-887],[-790,-5415],[-781,-3451],[433,-718],[-52,-1048],[-485,-679]],[[338420,386586],[-50,1908],[-181,494],[-2042,2535],[-487,275],[-1948,-24],[-619,-170],[-1438,-793],[-2450,-864],[-935,-1504],[-979,-3424],[-241,-3671],[-1065,-7045]],[[324965,612507],[-115,61],[-234,-67]],[[348349,354552],[-20,598],[399,2287],[502,4194],[-19,1933],[-479,993],[-563,473],[-1092,-981],[-528,-113],[-443,202],[-285,1980],[-406,4977],[25,1067],[-602,1953],[-1926,569],[-243,-389],[-664,-102],[-1222,186],[-1636,662],[-218,279],[-36,302],[377,4210],[15,1687],[-129,1672],[-736,3395]],[[306742,441113],[-516,25],[-1109,-573],[-1286,231],[-1,6926],[291,2054],[-287,46],[-1678,-2936],[-446,-182],[-2002,-1],[-197,93],[-48,1225],[-300,1443],[-307,306],[-1419,412],[-510,697],[439,1001],[-37,841],[-1504,3583],[-642,2941],[-384,1245],[68,1860],[241,2461],[123,425],[234,661],[256,376],[473,469],[350,135],[310,526],[71,458],[-212,951],[95,2312],[528,1720],[224,2352],[80,235],[952,1161],[1616,2328],[2118,931],[850,665],[534,661],[626,127],[439,-413],[312,-562],[399,-324],[203,322],[13,497]],[[305702,480824],[1499,17295],[-57,1687],[-416,2066],[-973,2072],[-336,1054],[64,4124],[1677,768],[360,-477],[455,164],[-150,1763],[-176,664],[-227,220],[-1439,-43],[2,3753],[688,208],[3857,-119],[1462,1331],[282,640],[483,486],[157,-147],[674,-2418],[119,-1157],[-91,-1315],[32,-738],[649,368]],[[314297,513073],[1404,-2666],[1126,583],[569,730],[339,55],[269,-518],[35,-515],[301,-262],[1351,2615],[1186,1332],[281,-90],[893,1535],[431,1674],[611,264],[816,721],[82,666],[-24,954],[-1457,237],[-388,661],[-193,2300],[-95,3062],[-159,636],[-332,699],[-1257,2163],[-157,753],[87,467],[2825,-2057],[1001,-36],[678,-721],[679,-1013],[465,264],[68,2112],[1062,736],[671,-397],[1297,936],[369,409],[214,639],[313,429],[1024,335],[1010,2206],[-235,1487],[-170,90]],[[331287,536548],[171,179],[1303,228],[588,-1096],[44,-288],[-127,-1702],[-139,-650],[281,-857],[750,-1041],[387,-2047],[-538,-1946],[-160,-921],[-450,-3236],[-36,-1459],[231,-1742],[481,-1804],[186,-2061],[1097,-2028],[1050,-1040],[994,233],[218,1164],[344,683],[517,-295],[441,300],[833,686],[674,1056],[1315,220],[573,-177],[803,400]],[[343118,517307],[1108,-550],[101,2119],[626,1477],[1470,317],[1344,-435],[639,-658]],[[348406,519577],[299,-708],[810,-423],[246,74],[549,788],[482,162],[829,-124],[1054,-691],[417,255],[577,903],[391,1144],[178,1240],[650,2767],[1733,5557]],[[351752,306372],[-150,9],[-299,360],[29,3137],[180,533],[678,1232],[-277,1494],[-2057,4109],[-1233,2138],[-1561,1247],[-797,1497],[-914,724],[-905,462],[-491,1441],[-1685,3004],[-296,215],[-483,-4],[-188,-330],[-96,-452],[-245,-379],[-460,10],[-634,534]],[[819476,534717],[-603,-902],[69,-1348],[134,-514],[-29,-920],[-230,-936],[-324,-597],[-118,6],[-585,1458],[-409,1454],[-517,509]],[[819874,534835],[500,-3609],[-564,430],[-91,310],[-173,2197]],[[754563,669879],[-224,-762],[27,-335],[214,-501],[1035,-157],[192,-946],[-25,-1600],[94,-826]],[[755876,664752],[-269,-238],[-796,-210],[-2773,-274],[-385,179],[-2692,-354],[-1302,435],[-696,966],[-369,927],[0,279],[80,373],[329,480]],[[747003,667315],[471,1669],[1143,2774],[258,454],[512,426],[1369,-424],[266,-482],[567,-233],[1186,-81],[955,198],[245,-238],[339,-669],[249,-830]],[[581597,374628],[-545,2],[-462,-250],[-127,-677],[-379,-725],[-935,-605],[-428,-7],[-499,-896],[-1086,-2665],[-1711,-2059],[-355,-681],[-210,-989],[-121,-1296],[-442,-1644],[-714,-1373],[-556,-712],[-957,-504],[-266,-300],[-16,-1029],[-500,-2930],[-226,-999],[-174,-244],[-571,-550],[-1941,-182],[-2154,1434],[-782,1161],[-599,455],[-816,-45],[-549,-1215],[-397,-3081],[-113,-336],[-1962,-3468],[-935,-1191],[-1025,151],[-1531,-269],[-80,144],[-115,401],[-72,1700],[23,287],[544,1398],[105,579],[-178,1669],[-366,1795],[-699,2698],[-335,762],[-787,1116]],[[555553,359458],[27,16328],[2750,-2],[1,20106],[551,1684],[1949,534],[3309,1305],[572,10],[762,-2760],[174,-134],[1005,1900],[997,1227],[1035,319],[669,570],[816,107]],[[570170,400652],[-44,-826],[96,-425],[744,-2407],[486,-1113],[752,-2550],[98,-974],[317,-1694],[1353,-2382],[872,-742],[984,-1781],[1071,-1052],[68,-2161],[195,-1834],[534,-1867],[731,-712],[890,-259],[1059,-751],[1221,-2494]],[[563543,570413],[392,-1323],[886,-1604],[935,-3171],[74,-1311],[-142,-1683],[-392,-1282],[34,-2006],[358,-559],[1617,-251],[-18,-340]],[[567287,556883],[-202,-1453],[145,-537],[420,-300],[1379,-484],[775,-1579],[304,-1605],[-203,-327],[101,-508],[537,-904],[851,-873],[954,-1272],[707,-1591],[1,-1294],[462,-2398],[1071,-881],[929,-1212],[200,-755],[361,-2613],[184,-507],[-31,-318]],[[576232,535472],[-50,375],[-921,745],[-445,-395],[-125,-318],[-1006,-183],[-581,550],[-1328,362],[-849,955],[-394,-243],[-118,-292],[-95,-500],[87,-289],[-81,-675],[-854,-439],[-1827,277],[-2557,-2204],[-397,-2],[-491,462],[-365,688],[-453,-614],[-534,-1374],[-252,-1703],[-215,-404],[-454,-107],[-1393,986],[-804,-140],[-749,233],[-1157,779],[-1016,854],[-32,399],[-320,728],[-1372,1926],[-354,254],[-491,49],[-440,-311],[-852,-1357],[-1178,-2963]],[[551769,531581],[-99,-855],[-33,-2703],[99,-1699]],[[551736,526324],[-455,914],[-484,-203],[-1241,44],[-1267,274],[-2004,-638],[-193,-420],[-368,-4352],[-747,-3014]],[[544977,518929],[-316,1483],[23,2090],[-2300,5186],[-514,1874],[229,318],[-183,1279],[-998,1956],[-395,4662],[-4,4647],[606,1131],[639,2218],[400,1836],[879,2715]],[[543043,550324],[752,-441],[660,262],[1718,1528],[495,-1211],[296,81],[1468,1810],[717,627],[2477,381],[747,1587],[673,2027],[-24,290],[-627,862],[362,748],[499,246],[1476,47],[2096,903],[866,1377],[1424,3375],[874,1344],[337,1781],[194,1656],[152,284],[1850,973],[1018,-448]],[[138865,836254],[7,286],[7,282],[-279,678],[-1065,773],[-693,502],[-1795,1085],[-686,298],[-406,176],[-41,80],[-730,1413],[-152,521],[-210,721],[-786,2063],[-87,227],[-195,419],[-1557,3344],[-488,1255],[-269,690],[-3574,4718],[-496,802],[-447,724],[-3,525],[-35,49],[-212,303],[-1004,1034],[-984,-516],[-1367,-715],[-119,-832],[-280,-975],[-75,-163],[-223,-489],[-1739,-884],[-391,-59],[-452,-68],[-282,1425],[-3392,4073],[-584,341],[-445,577],[345,1562],[-39,-3],[-1678,-100],[-368,-414],[-1977,-252],[-1291,496]],[[313626,772204],[-13,37],[-165,479],[-117,52],[-135,61],[-84,-94],[-50,-57],[-521,802],[-5,554],[-11,1276],[-874,997],[67,2229],[-37,5454],[-1101,1568],[-284,143],[-1702,-1045],[-402,461],[15,706],[6,279],[-402,156],[-102,39],[-2146,-4517],[-631,-2381],[-257,-2578],[-41,-152],[-149,-558],[-821,-1657],[-104,-83],[-967,-774],[-656,-728],[-359,-398],[-172,-523],[-248,-115],[-6797,-100],[-2213,120],[-480,-294],[-589,-518],[-181,-159],[-1980,-2746],[-1249,-1731],[-541,-1483],[-1340,-1240],[-4373,-13],[-1417,-1068],[271,-1149],[67,-279],[98,-416],[35,-278],[139,-1087],[66,-516],[-2582,-2080],[-1127,-636],[-2648,-905],[-1550,-1520],[-1593,-1562],[-464,-33],[-311,-23],[-1091,1049],[-91,357],[-189,748],[61,1168],[89,275],[45,139],[32,18],[39,23],[450,256],[161,323],[1007,2019],[265,1606],[27,162],[171,1038],[506,2135],[-577,5414],[-523,4913],[-921,883],[-1110,1064],[-511,1951],[-384,636],[-32,3],[-643,59],[-242,406],[-658,1108],[-365,403],[-308,340],[-118,129],[-225,249],[-797,878],[-159,879],[-31,175],[-916,812],[-3923,3481],[-4907,4079],[-101,-43],[-761,-321],[-728,-634],[-850,-740],[-935,-47],[-161,-8],[-558,-29],[-944,668],[-1306,-44],[-263,410],[-256,398],[-62,-49],[-1125,-901],[-734,-130],[-873,898],[-1267,470],[-486,495],[-377,631],[-225,379],[-428,219],[-529,271],[-367,61],[-236,40],[-487,-255],[-60,-152],[-17,-41],[-502,-68],[-477,-66],[-466,556],[-1694,467],[-287,358],[21,627],[-449,2601],[-267,235],[-521,38],[-27,-898],[-41,-1298],[-19444,5],[-57235,14]],[[529082,782726],[-78,-491],[-1254,-2686],[-838,-139],[-641,828],[-448,-463],[-560,-1357],[-131,-1198],[-578,352],[-1043,2083],[2,628],[-73,134],[-358,-236],[-494,-1165],[-48,-628],[-674,-1113],[-1399,-175],[-725,-260],[-173,375]],[[519569,777215],[-251,705],[-371,2278],[-839,172],[-739,-567],[-93,-287],[165,-357],[-288,-551],[-536,-124],[-52,353],[562,2444],[2818,4914],[618,-24],[517,899]],[[521080,787070],[164,-178],[1865,94],[543,422],[554,700],[1913,-892],[398,-419],[43,-233]],[[526474,785182],[-163,-1237],[375,-2]],[[304506,397342],[1035,482],[403,595],[291,1084],[-11,294],[284,1677],[524,915]],[[708027,725865],[386,385],[73,1306],[-465,3011],[-559,2260],[-1095,1075],[-842,-410],[-361,338],[-142,300],[-305,1297],[109,443],[-528,2129],[-38,615],[183,401]],[[704443,739015],[738,132],[227,689],[-164,886],[-15,678],[227,1042],[135,225],[494,252],[3601,2942],[550,-1149],[698,-499],[1137,113],[529,645],[547,2535],[1026,832],[1088,-233],[794,170],[1461,2144],[5005,3842],[174,348],[11,670]],[[722706,755279],[268,91],[51,200],[-306,1938],[419,1446],[331,774],[911,1034],[4,976],[-67,841],[-643,2221],[-207,1121],[-219,2465],[103,1025],[-679,1268],[-346,-83],[-380,570],[28,170],[555,709],[2458,656],[1598,926],[723,63],[279,-554],[1508,-327],[238,158],[77,833],[-125,451],[-732,676],[-60,480],[213,1624],[233,455],[609,2240],[1150,5189],[281,49],[1312,-1107],[851,-360],[544,-103],[740,205],[1000,7],[620,-749],[1659,1235],[315,941],[26,827],[-465,3799],[71,640],[455,1352],[190,310],[932,109],[1279,615],[541,1157],[16,831],[-134,279],[-25,381],[321,621],[717,317],[516,-183]],[[742460,796088],[280,-30],[337,-37],[286,232],[234,189],[224,-22],[107,-11]],[[743928,796409],[173,-920],[-130,-408],[438,-1956],[1673,-1825],[198,-809],[1040,-880],[1558,-324],[2156,-1892],[362,-1762],[823,-2076],[399,-627],[211,-790],[148,-1129],[-466,-3742],[-526,-1206],[-131,-1087],[7,-335],[571,-1593],[1779,-739],[3082,-424],[749,124],[1753,-501],[1268,-1139],[1981,-2360],[870,-664],[614,135],[397,-290],[706,-2295],[900,-3743],[1424,-2798],[1760,284],[3396,-778],[3077,-447],[2473,682],[1472,-88],[2316,-929],[986,-1476],[2895,-1543],[958,-737],[1258,-469],[1796,133],[807,-1020],[535,-405],[620,985],[4313,3201],[2027,914],[3854,-146],[1530,197],[2317,1573],[437,443],[1724,3313],[1197,782],[1259,1200],[23,771],[-244,694],[-859,1350],[-407,1118],[462,2059],[448,1426],[645,817],[1013,-122],[592,-506],[406,-556],[450,-262],[1955,-502],[1644,1402],[865,1345],[201,695],[963,337],[1530,82],[681,292],[1132,1316],[477,1068],[-51,170],[66,428],[145,381],[719,1501],[761,602],[1452,203],[752,790],[1871,1120],[1307,-180],[1408,-558],[1058,-63],[638,372],[62,896],[-47,438],[-387,1279],[-3364,5224],[-870,190],[-1225,-61],[-898,-1513],[-695,-159],[-405,542],[-803,445],[-1495,-110],[-408,-364],[-351,-633],[-240,-34],[-827,1162],[-218,1484],[123,94],[3187,9909]],[[824204,800402],[281,-259],[497,-457],[902,-539],[873,-377],[102,-44],[171,-5],[309,-8],[350,201],[306,177],[629,815],[778,1007],[1401,379],[207,308],[367,548],[66,167],[72,183],[44,648],[-567,639],[1720,4334],[430,1533],[298,1064],[252,496],[802,953],[816,969],[157,1055],[-39,523],[-125,1697],[-618,452],[-469,-42],[-359,918],[-77,198],[1213,1653],[1444,1159],[3235,1098],[463,-27],[1095,-64],[958,368],[1086,99],[454,-187],[266,-110],[1407,-1139],[1469,-785],[335,218],[481,8],[412,-278],[869,-585],[141,-216],[88,-134],[56,-126],[1012,-2260],[269,-338],[179,-407],[232,-526],[694,-3120],[835,-3753],[505,-1583],[179,-239],[237,-657],[173,-481],[625,-3742],[-47,-308],[-25,-165],[109,-774],[524,-1254],[300,-387],[245,-72],[772,-228],[197,70],[314,111],[3257,-1209],[189,-261],[382,-527],[218,-435],[262,-522],[831,-1124],[436,-121],[768,-214],[51,-746],[76,-1133],[4,-2084],[709,-2151],[233,-152],[450,-293],[402,-54],[599,-80],[2059,147],[452,32],[1034,1379],[1190,931],[1015,588],[1449,839],[819,273],[387,-17],[341,-15],[41,-242],[10,-64],[-170,-1001],[201,-1716],[88,-756],[-1068,-1880],[-670,-2038],[-1142,-6009],[-628,-1749],[-169,-472],[-738,-1235],[-98,-301],[-31,-98],[-124,-936],[55,-229],[-392,-1018],[-73,-188],[-1681,900],[-214,116],[-53,38],[-894,639],[-150,-14],[-119,-12],[-271,-452],[-364,-1010],[-137,-210],[-156,-241],[-591,-182],[-284,-87],[-312,-988],[592,-3908],[57,-377],[-83,-265],[-79,-256],[-62,-1162],[14,-1009],[27,-129],[90,-423],[-7,-1027],[-365,-2102],[-254,-556],[-541,-76],[-505,-71],[-337,-330],[-397,-388],[314,-843]],[[862886,756496],[-1548,3327],[-566,50],[-265,-1340],[-235,-1983],[-563,-100],[-821,-1049],[-217,-497],[-719,-736],[-2146,-6],[-165,-156],[335,-1597],[295,-356],[140,-404],[-224,-904],[-307,-459],[-1371,300],[-1409,707],[-27,491],[-190,720],[-253,296],[-261,-192],[-689,-609],[-330,-1682],[-1025,-2011],[-568,-877],[-903,-675],[-1982,-1864],[-1451,-2182],[6,-669]],[[817294,639046],[-177,100],[-356,-321]],[[800068,633164],[-379,379],[-1106,-58],[-822,769],[-1340,2163],[-417,1570],[18,646],[102,617],[372,484],[200,640],[-39,289],[-726,739],[-788,-114],[-1283,510],[-443,413],[-860,1842],[-758,-864],[-1050,-2499],[-758,-746],[-1031,-140],[-572,-271],[-698,306],[-703,732],[-647,-2085],[-948,1272],[-724,686],[-226,-753],[-710,-1493]],[[783732,638198],[-358,329],[-753,249],[-277,-478],[-207,-1259],[124,-1238],[439,-1060],[71,-1024],[-46,-2066],[-430,-579],[-734,97],[-352,319],[-56,1583],[-200,182]],[[780953,633253],[68,261],[-144,950],[-635,-487],[-455,-1025],[-330,-284],[-1217,129],[-115,148],[-444,2357],[-279,832],[-1194,327],[-503,1333],[281,1989],[471,1380],[-832,1119],[-290,66],[-464,436],[-116,364],[-373,3221],[15,2068],[-1870,-238],[-1245,-1368],[-326,362],[71,329],[385,728],[-435,2268],[30,1443],[915,3006],[1967,3416],[328,2404],[141,2077],[-96,4591],[-218,1381],[-318,329],[-292,-101],[-39,-435],[-128,-229],[-156,67],[-458,2476],[10,849],[-458,1196],[-751,1213],[-595,-217],[-185,-1028],[-269,-391]],[[770405,672565],[-1461,1705],[-536,1007],[-904,3054],[-435,841],[-418,207],[-423,-153],[-784,-912],[-799,-521],[-325,-38],[-1147,1019],[-433,6],[-522,-494],[-116,-877],[-367,-625],[-1383,-1512],[-680,2],[-575,-681],[-1514,-3376],[-714,-982],[-1721,-397],[-585,41]],[[747003,667315],[-310,457],[-83,405],[-17,412],[308,1838],[-168,987],[-153,258],[-435,273],[-1130,-932],[-194,-422]],[[744821,670591],[-477,85],[-1036,-377],[-1008,-40],[-334,171],[-271,591],[-953,864],[-293,4],[-1559,-1122],[-738,2442],[-894,-13],[-789,970],[-1077,771],[-1428,1927],[-161,1760],[-233,318],[-347,211],[-383,-162],[-231,-342],[-830,371],[-770,1781],[-1219,1138],[-1568,2291],[-264,974],[-1344,412],[-334,-107],[-287,-1325],[-349,-1025],[-303,85],[-68,156],[-156,963]],[[725117,684363],[-182,343],[-1104,1163],[-1023,770],[-51,412],[9,31],[-45,149],[-606,1027],[-25,21],[-262,593],[-316,100],[-538,-174],[-383,654],[-336,209],[-318,267],[-354,340],[-91,268],[-251,125],[-113,26],[-8,25],[-124,46],[-238,538],[-78,2623],[107,703],[-13,53],[-189,375],[-129,267],[-381,820],[-37,401],[-7,12],[-248,1496]],[[717783,698046],[54,252],[848,644],[121,-287],[100,-1095],[319,-466],[173,-43],[267,126],[545,1040],[36,55],[266,888],[0,489],[-216,849],[-74,1183],[-351,198],[-5,37],[-598,1212]],[[719268,703128],[-93,1067],[138,1717],[560,902],[521,-49],[410,846],[224,461],[287,1366],[645,1425],[482,223],[352,1052],[72,1560],[115,740],[408,943],[-185,406],[-391,245],[-130,-140],[-550,31],[-738,560],[-354,1195],[-663,756],[-1410,-381],[-2223,-1957],[-290,-496]],[[716455,715600],[-702,-177],[-1270,330],[-1277,896],[-404,543],[-706,440],[-584,84],[-307,987],[-151,839],[204,504],[-133,1344],[-179,723],[-188,340],[-427,564],[-1877,1510],[-900,255],[-431,-118]],[[492535,561904],[91,-2880],[188,-1281],[261,-3443],[-732,-1616],[-227,-819],[-230,-1071],[-509,-3458],[-292,-1022],[-102,-1222],[164,-1741],[459,-3222],[434,-957],[285,-329],[105,-2672],[-113,-180],[-719,105],[-226,-199]],[[479091,531589],[-97,337],[-51,2917],[532,2711],[-2,1525],[-136,928],[-343,474],[-941,2408],[-284,271],[-288,-168],[-429,170],[-927,1065],[193,619],[501,968],[147,1596],[-55,919],[-270,1606],[-172,536]],[[476469,550471],[467,244],[574,1161],[299,1376],[-247,824],[-399,372],[-15,1404],[103,195],[629,12],[572,-577],[-126,3949],[-938,3162],[-58,1907],[500,1421]],[[477830,565921],[157,-75],[247,343],[204,552],[959,220],[119,-476],[813,-509],[1148,1677],[240,929],[534,506],[484,52],[100,-1270],[-141,-1203],[107,-372],[182,-176],[393,-46],[348,1061],[264,363],[531,105],[166,-148]],[[544977,518929],[-102,-219],[-163,-1742],[-487,-641],[-392,664],[-810,535],[-1049,59],[-2345,1060],[-2693,0]],[[536936,518645],[-47,466],[-252,192],[-1499,-244],[-2771,426],[-706,-89],[-180,-751]],[[531481,518645],[-3682,0],[-433,424],[-82,620]],[[523685,533790],[683,2210],[270,2211],[-43,1346],[277,1260],[1752,3309],[492,1233],[649,1222],[1567,826],[120,326],[641,-1097],[735,-2295],[612,-90],[497,575],[140,357],[1055,4534],[1041,5976],[458,1090],[99,99],[294,-209],[416,904],[358,1846],[78,1188],[650,1566],[1060,5055],[175,1768],[460,1830],[564,1480],[414,69],[573,367],[692,906],[246,3854],[-58,368],[-349,801],[-275,208],[-575,1025],[-333,3223]],[[539120,583131],[546,0],[519,0],[385,-1097],[676,-1925],[635,-4223],[82,-2123],[-128,-512],[-10,-804],[55,-2492],[83,-682],[241,-1371],[821,-2250],[230,-332],[-528,-675],[-3173,301],[-669,-2238],[1355,-3301],[1577,-2293],[1483,-5460],[-56,-922],[-201,-408]],[[536393,478117],[267,148],[600,-1248],[543,465],[265,495],[56,1276],[1897,1119],[190,-821],[-159,-420],[-56,-2049],[69,-169],[733,-142],[335,447],[941,2498],[1637,2529],[616,1137],[548,2132],[153,5365],[-81,713],[20,1293],[1138,2886],[347,1529],[347,1092],[449,755],[1119,1400],[702,1424],[109,409],[-14,2674],[339,2126],[141,2078],[-83,2285],[280,1764],[353,1547],[-40,1839],[0,142],[17,145],[-7,984],[92,1144],[6,126],[13,36],[205,481],[79,279],[398,1306],[793,3319],[-14,1669]],[[576232,535472],[698,-965],[507,-1818],[763,-958],[608,-516],[323,145],[585,958],[311,142],[637,-186],[365,-604],[831,1380],[116,404],[400,-215],[343,-413],[246,-1376],[1042,-2326],[1417,-1718],[306,-996]],[[585730,526410],[204,120],[16,-155],[-392,-2804],[-21,-2113],[135,-1463],[642,-346],[554,-950],[116,-199],[0,-184],[-2064,-4903],[-391,-355],[-375,-341],[-913,-2874],[-688,-3856],[-360,-8386]],[[582193,497601],[-633,-695],[-613,-1854],[-48,-542],[61,-566],[-771,-2289],[88,-1581],[391,-484]],[[581731,479521],[-161,-1585],[568,-6715],[-181,-555],[-27,-373],[154,-1692],[524,-2006],[905,-1248],[343,-690],[352,-1071],[983,-4558],[350,-2138]],[[585541,456890],[-770,-136],[-2637,-464],[-1882,-582],[192,-857],[-66,-605],[-514,-1479],[-624,-1133],[323,-5022],[28,-3066],[-125,-1249],[-342,-2034],[-277,-2690],[155,-1481],[276,-583],[306,-336],[1031,-2306],[356,-232],[968,-123],[-107,453],[63,445],[214,327],[709,265],[-43,-7656],[-411,40],[-121,390],[-627,248],[-455,-511],[-586,-39],[-608,2746],[-1435,3195],[-875,566],[-912,303],[-320,844],[-800,2939],[-572,-672],[-148,-886],[-268,-511],[-603,-50],[-1826,410],[-1377,1001],[-475,840],[-94,1484],[112,706],[-891,-65],[-1868,-700],[174,699],[-36,874],[-719,1043],[-370,204]],[[530980,482402],[270,1252],[649,1503],[466,-870],[50,-580],[394,187],[245,377],[147,1865],[-657,1286],[-359,1412],[-179,2917],[310,-183],[2444,-74],[-63,1600],[-118,905],[35,698],[407,388],[497,-475],[754,-2600],[1170,-554],[414,639],[274,746],[401,-1269],[-10,-365],[95,-118],[486,-42],[418,796],[324,2504],[233,893],[183,1966],[-52,1886],[121,2730],[-279,1163],[-1460,1431],[32,2858],[117,579],[544,1246],[370,-87],[170,414],[408,1298],[-27,649],[-527,2319],[-297,368],[-1017,194],[-67,-215],[-593,-611],[-650,-189],[-336,157],[-238,1753],[12,628],[108,1103],[225,885],[112,880]],[[305702,480824],[-297,744],[-1033,1587],[-530,1130],[1559,5214],[-24,431],[-2178,2550],[-332,220],[-477,-555],[-2010,276],[-205,-668],[-711,-348],[-2079,165],[-422,521],[-383,3249],[-703,978],[-550,2169],[-1455,1346],[-175,320],[-211,1674],[-210,993],[-1158,1715],[-712,799],[-355,148],[-103,-347]],[[290948,505135],[-1411,909],[-792,1715],[-579,505],[-342,-158],[-79,-225],[-31,-690],[-1839,427],[-783,539],[-428,692],[-814,1800],[-1199,1238],[-953,1260],[-536,938]],[[283630,548486],[280,1534],[505,421],[679,1610],[561,850],[-523,2116],[-48,2063]],[[301878,575831],[-1779,-1196],[-487,-1809],[-989,-1537],[-1107,-3740],[-214,-3769],[-1044,-3498],[28,-264],[394,24],[328,412],[618,-692],[294,-665],[319,-2428],[626,-1390],[72,-384],[54,-1735],[-147,104],[-178,-589],[45,-2647],[62,-338],[1667,-2346],[1456,-40],[2034,289],[1222,-536],[1993,-5154],[329,-133],[246,23],[771,553],[818,-294],[1082,298],[966,406],[254,442],[706,-281],[225,-362],[98,-959],[-36,-630],[-1083,-4120],[82,-4459],[200,-2051],[322,-2143],[74,-204],[159,14],[309,-747],[358,-1496],[-1381,-3221],[623,-359],[914,-2058],[1035,-6034],[81,-1015]],[[578369,774526],[-140,209],[-77,426],[-77,3037],[26,711],[298,1062],[41,1219],[-342,1491],[-98,668],[45,107],[-804,1108],[-973,2003],[-528,1348],[-280,1310],[-361,844],[-618,901],[-509,59]],[[573972,791029],[-38,86],[166,280],[609,384],[1675,413],[695,9],[1074,-1259],[1022,-680],[1866,-805],[149,-806],[24,-652],[-249,-1387],[61,-277],[594,-713],[286,28],[438,-2436],[932,-698],[-35,-807],[546,-1591],[-210,-168],[-760,32],[-1812,879],[-454,-354],[-105,-540],[-146,-2343],[-1481,-2750],[-450,-348]],[[270656,562381],[-102,-250],[-731,-70],[-196,-256],[0,-1625],[161,-2973],[-67,-3882]],[[261964,571288],[400,697],[1893,-1342],[519,673],[922,-796],[333,-439],[20,-302],[795,-666],[175,28],[585,637],[-14,630]],[[521080,787070],[-170,714],[115,1937],[813,3618],[683,1079],[239,714],[-657,531],[-1270,513],[-1162,-17],[-954,212],[-519,1543],[-246,238],[-266,27]],[[517686,798179],[202,1119],[-273,1112],[-489,732],[-140,501],[63,439]],[[516725,805772],[-8,441],[292,2082],[285,1295],[-8,414],[-76,353],[-580,1234],[-43,369],[43,173],[399,344],[768,-233],[824,338],[765,1808],[-44,1371],[-183,1222],[455,280],[406,2002],[11,1168]],[[524032,830331],[1787,-638],[349,178]],[[539631,823168],[281,-1524],[105,-567],[41,-650],[-47,-254],[-143,-777],[-368,-416],[1246,-4309],[168,-770],[79,-364],[-141,-683],[-68,-334],[-217,-536],[397,-1245],[581,-784],[132,-629],[100,-479],[-86,-562],[-93,-615],[-319,-914],[-104,-297]],[[620167,573540],[-812,-2737]],[[619355,570803],[-1831,-31],[-943,-426],[-484,356],[-48,2884],[197,1593],[313,486],[1230,3833]],[[617789,579498],[474,1],[794,620],[739,811]],[[300669,612376],[64,378],[-89,1612],[-665,1510],[560,121],[188,458],[236,3003],[-292,2796]],[[524005,724128],[2,-519],[-594,-1382],[-281,-1099],[-84,-2404],[267,-4556],[-371,-3522],[-272,-638],[-1468,-2272],[-281,-658],[-13,-973],[41,-610],[674,-3028],[461,-711],[510,-449],[1204,-4130],[1409,-1735],[1323,-10875]],[[526532,684567],[-381,-405],[45,-881],[296,-732],[682,-2826],[342,-3923],[-46,-6801],[-294,-1557],[322,-2736],[-169,-2215],[-1151,-2048],[1672,-4904],[28,-2112],[600,-2196],[472,-756],[664,410],[367,-69],[667,-483],[274,-361],[1327,-784],[1080,-4404]],[[533329,644784],[-6275,-7689],[-6334,-8101],[-3932,-7100],[-1536,-1535],[-3466,-1427]],[[511786,618932],[-2491,-974],[-610,878],[295,1852],[4,2382],[-3193,2353],[-1163,1062],[-1338,2620],[24,659],[-104,902],[-7924,11087],[-8712,11807]],[[486574,653560],[-5318,6971],[-5331,6701]],[[475925,667232],[0,2061]],[[475925,669293],[1,6215],[2424,3141],[1540,1392],[2825,556],[1386,-27],[1082,1155],[1233,2334],[1575,2174],[485,333],[828,242],[549,402],[331,1891],[-41,252],[-618,564],[290,2798],[1609,734],[446,1632],[446,538],[2182,300],[1139,-439],[913,-102],[233,202],[285,2082],[-952,1788],[-403,1146],[-286,2721],[-78,1518],[-3,2880],[-185,3422],[-795,1064],[-510,964]],[[594685,635851],[-2512,-11]],[[592173,635840],[-3650,3],[-1336,896],[-1407,-863],[-8168,133],[-8168,-179]],[[569444,635830],[-2,42849],[-800,5237],[321,1343],[277,695],[255,1755],[-317,1849],[-117,1641],[40,284],[752,1378]],[[595052,690930],[139,-606]],[[595191,690324],[1576,-8468],[191,-1742]],[[598953,642608],[-906,-1685],[-546,-262],[-850,-1757],[-997,-1571],[-764,-279],[-205,-1203]],[[617789,579498],[-2317,5611],[-2227,4562],[-2023,1845],[-2908,368],[-533,-558],[-933,-325],[-1512,2820],[-959,-3661],[-565,634],[-683,70],[-1573,-792]],[[601556,590072],[-93,422],[-236,4795],[526,2085],[575,3192],[280,2428],[10,1398],[369,2391],[904,-143],[239,764],[30,558],[362,543],[1223,953],[943,1529],[435,1220]],[[475925,667232],[0,-7762],[-9259,0],[0,-14387],[-1352,-1591],[-286,-105],[-1180,-1583],[-267,-844],[-109,-635],[195,-1418],[221,-7017],[-10992,0],[-313,-2610],[55,-700]],[[463420,669323],[12505,-30]],[[578065,856266],[-1879,-2816],[185,-3009],[483,-2095],[-673,-1525],[-125,-285],[-7,-71],[-73,-718]],[[575976,845747],[-390,205],[-1217,126],[-763,-279],[-447,317],[-1073,1583],[-2115,1368],[-2327,-1203]],[[619355,570803],[-736,-2136],[38,-624],[457,-1911],[731,-1858],[451,-1681],[348,-813],[1256,-2101],[705,-963],[8021,-5628],[2633,-76],[-7616,-16620],[-1345,-1461],[-2034,192],[-1612,-979],[-1085,-1316],[-209,-997],[-377,-784],[-852,-401],[-1219,-139],[-283,-501],[-211,-661]],[[616416,529345],[-245,-199],[-1322,-7],[-1076,1141],[-344,657],[-233,143],[-1517,-1360],[-941,-1038],[-322,-1300],[-526,-1347],[-1499,600],[-2331,595],[-364,301],[-2632,3855],[-879,718],[-1860,40],[-186,4],[-41,72],[-251,457],[7,434]],[[599854,533111],[-346,891],[-21,1704],[126,1353],[-1063,710],[-503,25],[-787,2744],[-137,2408],[127,728],[-21,387],[-322,719],[-729,819],[-840,1335],[-1053,3155],[-433,667],[-430,570],[-1558,513],[-196,502],[21,447],[518,2695],[229,255],[942,92],[243,-562],[172,-34],[1039,1370],[-74,5341]],[[594758,561945],[306,2819],[185,3152],[99,624],[407,1191],[326,463],[289,-366],[287,-669],[243,391],[225,831],[320,4306],[225,1163],[1464,4721],[892,440],[253,-71],[939,6126],[338,3006]],[[567094,894805],[-606,1786],[-580,493],[-212,556],[10,687],[82,339],[543,950],[253,914],[-488,1161],[-511,1714],[-339,2330],[197,1387],[-365,804],[-1010,1477],[-639,517],[-2296,799],[-1305,973],[-2374,2166],[-370,104]],[[557084,913962],[2030,1484],[768,-162],[355,-267],[1364,-1669],[798,-1328],[1814,-537],[1367,380],[325,406],[1086,67],[2189,-1229],[575,523],[986,1394],[703,1240],[-36,845],[492,1774],[405,996],[1274,1306],[779,58],[779,-234],[1611,956],[713,55],[1437,-1571],[2028,-732],[567,-1282],[-375,-526],[-1031,-978],[-74,-667],[348,-351]],[[580361,913913],[-487,-287],[-333,-398],[-248,-296],[16,-1552],[-144,-219],[-182,-278],[551,-1887],[57,-145],[103,-39],[754,-288],[1261,-1009],[213,-171],[1438,-1653],[-221,-818],[-2379,-3107],[-111,-421],[253,-817],[1140,-1827],[302,-580],[778,-1496],[292,-998],[109,-371],[68,-407],[72,-426],[22,-207],[33,-298],[-292,124],[-775,-473],[-140,-2241],[-261,-1310],[1,-156],[1,-323],[214,-645],[145,-171],[284,0],[29,0],[1364,-2853],[213,-250],[231,-270],[127,-638],[11,-55],[-71,-313],[-656,-1071],[-308,-358],[-581,-295],[1365,-1625],[547,-328],[506,-304],[1100,-924],[969,-1834],[-507,-1213],[-504,-1202],[-282,-400],[-1499,-1793],[-3201,-4313],[-421,-567],[-436,-439],[-2037,-2051],[-714,-865]],[[504007,757600],[-326,714],[-1415,665],[-450,-504],[-85,-335],[-458,-13],[-530,53],[-2583,990],[-2142,1449],[-546,1015],[-434,380]],[[516162,798631],[439,-491],[841,223],[244,-184]],[[519569,777215],[-479,-491],[105,-1047],[761,-1506],[-1025,-1541],[-137,66],[-387,-323],[338,-1070],[483,-419],[93,-1276],[-200,-494],[-12,-428],[54,-715],[276,-643],[1044,-772],[479,161],[60,-1320],[-106,-821]],[[520664,764370],[-76,-88],[18,-57]],[[508818,756606],[-423,213],[-1637,-532],[-1311,55],[-654,672]],[[348406,519577],[178,159],[458,1076],[376,1399],[560,4079],[36,646],[-87,381],[-900,2387],[-336,4941],[144,1133],[1129,2714],[10,530]],[[526848,512078],[901,-494],[3736,128],[-4,6933]],[[482524,825615],[-378,-302],[-555,-125],[-108,172],[31,241],[-620,1387],[-418,456],[-390,-497],[-74,-695],[-306,-569],[-885,174],[-661,636],[-876,1209],[964,493],[228,301],[963,2408],[405,357]],[[620761,748850],[-1856,2406],[-623,227],[-956,-430],[-999,-219],[-919,367]],[[611134,762219],[298,1089],[410,84],[1252,-303],[2574,-1820],[1091,-128],[1140,152],[497,-138],[603,-168],[1558,-1655],[306,-473],[834,-1291],[282,-172],[207,-12],[235,193],[469,387],[1247,494],[314,-8],[490,-11],[371,-168],[120,-53],[444,-455],[542,-553],[120,-427],[287,-1022],[-129,-484],[1008,-1038],[794,-306],[77,-70],[385,-348]],[[499623,571637],[227,-309],[232,-658],[-332,-1548],[62,-361],[1029,-1670],[184,-613],[12,-4554],[328,-67],[205,-492],[-183,-2641],[-186,-911],[381,-1591],[390,-897],[58,-499],[-369,-1646],[-148,-2409],[188,-1168],[-195,-3445],[491,-1916],[1331,-2314]],[[485129,719516],[37,0]],[[770405,672565],[61,-975],[-172,-829],[-579,-951],[-95,3]],[[769620,669813],[-269,680],[-1074,1121],[-2314,1610],[-400,-192],[-506,-819],[-499,-1067],[10,-355],[-74,-135],[-491,-523],[-1989,-1469],[-1467,-2890],[-286,-389],[-593,-346],[-748,-172],[-2374,86],[-670,-201]],[[476469,550471],[-224,375],[-465,-229],[-327,-1746],[-593,-420],[-1036,1235],[163,1790],[-397,3422],[-341,782],[-271,442],[-202,66],[-1330,-236]],[[471446,555952],[-474,-536],[-252,-491],[-391,29],[184,1313],[254,471],[51,705],[-588,3700],[-1364,3765],[-1907,0],[-1514,-707],[-131,-190],[-531,-2412],[-226,-565],[-569,-1004],[-937,-801]],[[458539,571134],[372,1583],[535,1066],[776,627],[1522,447],[-188,2407],[297,942],[154,1596],[-88,923]],[[461919,580725],[1618,-222],[878,-962],[1191,-784],[685,287],[1913,264],[197,-125]],[[468401,579183],[-331,-1352],[424,-811],[271,-277],[2121,715],[483,575],[1015,-699],[728,1],[715,960],[158,928],[-103,272],[97,123],[575,-1],[436,-520],[126,-261],[366,-1889],[46,-1204],[922,-3439],[-66,-1426],[522,-1414],[580,-2130],[345,-451],[90,-571],[-91,-391]],[[453997,586185],[2329,2],[1216,1069],[685,202],[501,-199],[1439,-1960],[1101,688],[183,-195],[210,-781],[-233,-496],[-857,-538],[-390,48],[-2006,1877],[-1082,-1061],[-1782,-1215],[-1634,-2],[-196,-606]],[[453578,578710],[1151,451],[1049,187],[2993,1386],[3148,-9]],[[558279,747267],[2231,437],[341,861],[1240,357],[1595,1201]],[[573215,752325],[591,-596],[130,-1270],[28,-279],[-852,-1522],[-157,-1105],[-376,-830],[-256,-196]],[[254912,598741],[-1191,-2157],[-726,-1062],[-641,-676],[-200,-1055],[-80,-1893],[-285,-864]],[[251789,591034],[-620,-130],[-702,-1990],[-694,-1108],[-147,-762]],[[243802,591720],[219,695],[150,2109],[-312,1475],[1331,4807],[3582,0],[30,131],[10,1943],[-1207,2295],[-1544,2340],[1195,249],[0,3336],[5099,0]],[[331287,536548],[-1706,4010],[578,2371],[-24,770],[-203,1054],[290,806],[1017,235],[1078,1192],[147,388],[51,577],[-433,433],[-187,-229],[-269,743],[-192,1020],[399,2081],[495,54],[1531,2618],[11,216],[-529,1426]],[[341279,540146],[-261,-3997],[-198,-704],[-749,-89],[-930,-1274],[-57,-2042],[-334,-1701],[128,-990],[645,-2097],[1049,-1548],[386,-1488],[125,-1022],[1209,-4681],[242,-688],[584,-518]],[[269010,594430],[-441,40],[-621,-312],[-1095,-1095],[-1662,-693],[-335,155],[-455,921],[-226,-78],[-345,-636],[-341,-1015],[-196,-910],[58,-279],[-1549,-2698],[-227,-25],[-307,410],[-838,-270],[-898,-601],[-483,-1674],[-136,-1293],[-367,-888],[-393,-837],[-676,-87]],[[256069,585046],[261,226],[12,1938],[-986,1168],[-1214,-303],[-1387,2061],[-966,898]],[[537738,774591],[836,-295],[1229,262],[304,235],[2193,-464],[264,118],[-32,1359],[877,877],[23,1482],[260,812],[1485,1349],[924,159]],[[546101,780485],[521,-546],[1000,-1467],[815,-1197],[184,-143],[1019,-791],[860,-78],[392,-35],[1486,910]],[[552378,777138],[219,-1599],[669,-2178],[-427,-2453]],[[551215,757322],[242,-804]],[[547668,789533],[222,81],[286,-202],[554,-823],[686,-631],[2276,106],[669,424],[509,1399],[1373,777],[1175,-290],[923,674],[717,1625],[769,239],[1252,-314],[989,-364],[273,-670],[263,-91],[938,408]],[[561542,791881],[264,40],[1692,-2368],[101,-331]],[[563599,789222],[-601,-975],[-997,-187],[-268,-458],[-721,-1765],[-1887,-5351],[-707,-1287],[-2130,-780]],[[556288,778419],[-222,96],[-464,202],[-582,2],[-643,1],[-1039,-1089],[-960,-493]],[[546101,780485],[-131,107],[-49,40],[-95,251],[-412,1094],[-23,463],[-72,68],[-316,299],[-243,3]],[[804559,518100],[-176,-766],[229,-1624],[474,-1323],[1210,-2371],[541,-904],[306,-251],[646,461],[391,561],[750,280],[645,-362],[846,-45],[322,147],[516,583],[359,1041],[96,554],[240,521],[532,531],[1514,-89],[79,-183],[-85,-288],[260,-459],[1362,-997],[156,-13],[325,380],[97,311],[848,679],[700,286],[459,-489],[831,2729],[22,509],[-197,923],[666,1388],[193,1490],[68,1286],[133,531],[242,425],[368,-128],[355,506],[185,2349],[-35,1276],[70,1196],[235,1608],[517,1286],[3729,-139],[194,-72],[403,-686],[448,-250]],[[844563,450628],[865,-880],[339,1838]],[[847080,452862],[384,-2983]],[[891666,490415],[0,-11357],[0,-10618],[-246,-1485],[-194,-218],[436,-1664],[7,-88],[51,-604],[0,-3158],[0,-9358]],[[624400,725337],[51,-523],[450,-1736],[1355,-4532],[701,-650],[623,-327],[635,-830],[-371,-3711],[-401,-340],[-565,-1737],[-480,-2176],[-243,-2145],[625,-1332],[474,-790],[392,-417],[249,-612],[360,-1037],[92,-403],[-140,-368],[344,-1005],[1388,-1397],[2035,-2650],[953,-3111],[-475,-2152],[-4,-2338],[686,-14],[278,-2198],[1265,-3832]],[[633219,683132],[-698,592],[-935,0],[-504,-445],[-172,-375],[-644,-2773],[-564,-1544],[-389,-788]],[[629313,677799],[-657,-180],[-3778,651],[-1125,859],[-6849,10552],[-2812,2771],[-1833,2172],[-3368,1219]],[[608891,695843],[-1131,7213]],[[607760,703056],[5129,5558],[654,342],[490,850],[459,1476],[7,2858],[132,1253],[319,965],[-35,1285],[-293,1189],[54,1802],[322,1033],[1054,344],[396,513],[1187,2245],[10,304]],[[617645,725073],[777,743],[541,812],[806,54],[1004,-711],[1325,177],[1291,-1308],[563,742],[448,-245]],[[690292,647481],[688,0],[42,1617],[2231,235],[396,-581],[1018,259],[163,429],[1061,604],[148,-501],[-9,-405],[425,-208],[482,234],[282,581],[127,472],[-44,2171],[-1231,5350],[-551,-198],[-330,235],[-472,1340],[-43,857],[255,980],[-3,1779],[-328,290],[-744,-2],[-778,876],[-66,333],[82,1212],[200,1012],[1222,2257],[351,1558],[637,1101],[481,78],[285,-510],[60,-381],[895,-742],[1781,754],[724,640],[929,2963],[171,1079],[292,669],[1547,1634],[880,2985],[183,1197],[1227,1749],[848,2994],[1034,2315],[299,907],[35,1614],[-224,1850],[259,1009],[658,778],[1247,706],[282,853],[-139,350]],[[709257,696859],[552,-28],[818,1019],[240,667],[97,704],[-121,443],[372,634],[1240,1553],[754,-76],[438,-556],[259,-580],[758,-743],[463,-91],[426,342],[826,-665],[1207,-1140],[-138,-622],[100,-206],[235,532]],[[725117,684363],[-274,34],[-1425,-2463],[-1034,-5226],[17,-467],[939,-1201],[789,-180],[948,-1064],[1327,-2100],[854,-970],[1454,-886],[995,-215],[159,-734],[-45,-542],[2943,-686],[730,388],[610,-210],[951,-458],[192,-698],[-16,-453],[1427,-2208],[690,82],[784,-353],[630,-548],[892,-86],[799,-673],[788,-360],[1927,-133],[1355,-312],[176,387],[264,1873],[-187,1403],[-232,305],[-99,385],[157,2143],[380,1951],[-1,344],[-160,159]],[[769620,669813],[-375,-599],[-92,-433],[99,-857],[228,-691],[-364,-318],[-224,452],[-253,215],[-1348,-563],[-554,-559],[-413,-963],[-1101,-1623],[-719,-469],[-195,-288],[-184,-764],[-30,-872],[117,-1055],[-224,-2492],[-474,-1036],[-537,-709],[-234,-1040],[9,-443],[390,-348],[28,-240],[-10,-424],[-293,-1312],[-1508,-5402],[-1849,1014],[-187,-675],[199,-1643],[-177,-3227],[-189,-646],[-222,125],[-249,-209],[-86,-1173],[42,-1441],[204,-918],[37,-727],[-563,-1446],[-228,-359],[-665,237],[-186,-232]],[[669091,682274],[948,-2180],[1101,-3726],[1392,-2137],[1896,-1603],[77,-2575],[-55,-2518],[680,-769],[437,97],[201,-193],[120,-444],[-336,-2446],[-519,-500],[-763,-70],[-1048,-586],[-925,-1307],[-569,-2049],[-568,-4657]],[[624400,725337],[-1,650],[-510,2140],[-923,1480],[387,2041],[-407,3766],[-454,2520],[1096,2509],[338,479],[540,-905]],[[649747,726489],[1284,100],[802,479],[387,1058],[-23,201],[186,634],[514,730],[1140,1186],[2437,421],[37,286],[324,371],[1899,-81],[592,-1260],[658,-722],[2523,-1561],[862,221],[1355,-965],[674,-2246],[1528,-1126],[717,-1933],[2206,70],[107,-452],[19,-3667],[158,-1841],[72,-154]],[[595191,690324],[11,41],[4,-11],[105,145],[146,231],[15,223],[-1,8],[-4,36],[-1,17],[-1,10],[-3,27],[0,8],[-3,30],[-1,9],[0,9],[-3,26],[-1,23],[-1,7],[1,15],[1,7],[4,15],[54,147],[33,71],[5,10],[2,5],[3,6],[3,5],[6,11],[175,304],[142,219],[94,107],[39,91],[4,27],[2,18],[-61,95],[-4,5],[-21,33],[-7,10],[-4,5],[-13,19],[-6,10],[-3,4],[-3,5],[-4,5],[-12,19],[-4,5],[-13,19],[-6,10],[-3,4],[-20,29],[-5,8],[-3,5],[-3,4],[-10,14],[-3,5],[-3,5]],[[597510,701397],[615,-72],[831,948]],[[598956,702273],[111,-347],[-119,-1727],[140,-1183]],[[599088,699016],[-324,-1786]],[[598764,697230],[-611,754],[-287,156],[-393,-402],[-277,-1568],[-12,-1429],[655,-993],[-275,-525],[-308,-292],[-152,-416],[-170,-950],[108,-503],[828,183],[674,691]],[[598544,691936],[-82,-1897],[-607,-3233],[-694,-6398]],[[538094,780763],[-379,-626],[-372,-1132],[571,-2519],[408,-331],[288,-590],[-142,-350],[-349,62]],[[608891,695843],[-596,-946],[-5515,-2920],[2681,-5718],[-1119,-2413],[-2465,-2192],[-476,-1499],[-1157,-1781],[-3135,938]],[[598544,691936],[129,1309],[115,2795],[-24,1190]],[[599088,699016],[329,349],[250,-150],[1464,-2049],[1115,-367],[5514,6257]],[[602446,635907],[-7761,-56]],[[722706,755279],[-577,1214],[-1430,528],[-658,887],[-125,518],[-1578,641],[-2885,466],[-2143,135],[-2795,-412],[-480,-396],[-1016,237],[-1300,832],[-1329,1369],[-267,29],[-1740,-1161],[-166,-602],[-239,-1687],[138,-1108],[-487,67],[-2468,1446],[-1626,700],[-1550,-508],[-792,-1527],[-300,-879],[-42,-252],[213,-225]],[[697064,755591],[-1076,-1243],[-828,-612],[-1100,-1401],[-1073,-880],[-549,-684],[-1743,-2672],[6,-2346],[-193,-180],[-362,144],[-1307,1287],[38,275],[195,182],[115,861],[-495,693],[-519,169],[-1568,-259],[-1302,29],[-485,4351],[-1488,353],[2,2515],[245,-36],[29,3442],[-505,-335],[-1432,2964],[-886,1391],[-890,274],[-643,-549],[-4006,297],[-1764,-564],[-1247,-126],[-1887,3395],[-680,1753],[-2794,3433],[-208,255],[-1580,1405],[-1756,1563],[-580,515],[-27,-13],[-7171,-3471],[1,-21760]],[[655551,750006],[-1386,-397],[-192,202],[-903,2062],[-314,898],[-176,838],[-507,846],[-1477,1807],[-1790,-522],[-1627,-991],[-1429,-1959]],[[635365,780744],[-487,363],[-111,309],[-84,234],[87,366],[391,222],[41,-64],[91,-146],[650,570],[52,46],[-530,1393],[-539,1418],[-761,1521],[-867,1093],[-1241,22],[-359,7],[-73,-491],[-503,447],[-17,15],[-208,427],[-4,28],[-96,652],[172,551],[-41,640],[-43,669],[-1371,802],[-366,214],[793,3044],[378,270],[181,326],[134,243],[38,298],[19,151],[-155,401],[-308,333],[-221,238],[-31,296],[213,2081],[201,833],[1037,1662],[-79,318],[12,281],[7,148],[691,1057],[185,22],[11,1],[857,-1256],[289,-730],[574,-1450],[185,-138],[313,-233],[936,614],[421,543],[-467,1463],[-329,2067],[1103,411],[894,850],[85,80],[18,843],[364,480],[209,276],[216,90],[586,245],[869,660],[525,399],[709,1228],[257,445],[19,19],[459,453],[1374,-402],[-22,-289],[-13,-168],[-94,-1],[-257,-2],[127,-388],[261,-124],[723,105],[995,1117],[893,451],[464,-1205],[221,-572],[738,205],[106,29],[1481,-64],[475,-375],[123,-337],[113,-160],[599,-852],[329,-324],[468,-461],[845,-1810],[-143,-809],[115,-176],[243,-369],[216,240],[299,333],[-123,1275],[-118,222],[-197,370],[-6,153],[-10,237],[40,70],[39,71],[6,-1],[411,-73],[967,-946],[20,-20],[88,-249],[31,-87],[328,-412],[1247,-1036],[757,656],[823,1436],[368,463],[339,427],[1032,110],[672,72],[252,-423],[287,-479],[361,-271],[105,-78],[88,51],[407,235],[186,259],[517,719],[548,244],[583,259],[201,-235],[261,-306],[267,-576],[21,-44],[30,-181],[101,-621],[422,-540],[1797,-1015],[-4,-53],[-10,-139],[61,-108],[88,-157],[735,222],[6,2],[376,516],[153,211],[681,539],[216,-347],[96,-152],[861,-31],[548,-20],[1431,716],[296,275],[488,2467],[-15,237],[-196,366],[-194,361],[-765,260],[-1383,963],[-818,570],[-257,307],[-502,600],[-164,741],[1483,974],[412,270],[768,781],[-96,427],[-135,607],[-94,120],[-448,570],[321,1127],[502,953],[575,265],[459,-59],[876,-113],[588,-261],[472,237],[21,203],[26,260],[-39,126],[-40,131],[-1716,772],[-902,405],[-62,555],[285,593],[127,-21],[106,-18],[-8,347],[-978,675],[213,1002],[167,787],[544,606],[434,38],[673,-349],[1909,-116],[734,348],[659,313],[1946,669],[1292,445],[941,219],[1306,304],[216,-97],[354,-158],[412,273],[99,529],[90,477],[434,350],[1793,368],[1405,287],[3233,881],[967,427],[280,995],[370,272],[1557,1145],[2186,-90],[199,-137],[247,-169],[44,-109],[42,-102],[1027,7],[1499,12],[301,-566],[244,-459],[13,-436],[679,-2433],[-132,-927],[-235,-704],[-20,-61],[204,-1326],[2466,611],[-35,321],[-71,658],[275,-43],[157,-24],[98,-87],[139,-125],[261,-681],[198,-518],[-23,-156],[-105,-700],[133,-174],[147,-192],[489,216],[83,37],[-161,186],[-304,353],[51,279],[28,154],[3,1],[244,88],[947,-281],[217,-508],[63,-36],[514,-293],[539,110],[140,28],[-206,-537],[-531,-1384],[44,-479],[197,-421],[58,-123],[49,-43],[166,-143],[503,718],[93,133],[651,351],[287,-65],[1337,-302],[118,260],[147,324],[654,882],[206,-9],[231,-11],[1107,1025],[659,609],[3699,2121],[17,-103],[17,-110],[-175,-711],[-343,-796],[-264,-215],[-43,-35],[-78,176],[-179,27],[-316,47],[5,-116],[8,-188],[111,-301],[61,-165],[3927,-4487],[3424,-7784],[122,-277],[992,-2816],[1364,-3874],[782,847],[254,639],[180,453],[119,565],[377,576],[46,70],[1202,-699],[34,-760],[356,-600],[388,-593],[220,-336],[590,-259],[86,-38],[1496,-37],[723,325],[623,279],[973,717],[257,190],[269,6],[389,9],[1049,-727],[458,-711],[236,-434],[484,-892],[70,-547],[69,-541],[1160,-997],[769,-885],[198,-227],[418,-1777],[62,-263],[106,-125],[219,-262],[156,-36],[2201,-516],[689,673],[381,580],[18,27],[1755,-2739],[256,-798]],[[616416,529345],[-1460,-4449],[-1080,-2411],[0,-21289],[1363,-4233],[217,-993]],[[608905,478149],[-3949,5925],[-486,1020],[-64,374],[353,764],[-110,1481],[-9584,11571],[-413,446],[-155,168],[-249,23]],[[594248,499921],[0,2696],[142,3379],[47,1131],[269,1403],[1070,2799],[1299,3803],[124,495],[25,574],[0,1188],[-338,3605],[-264,988],[-372,818],[-550,2111],[-128,776],[54,740],[-276,1397],[-681,1811],[-239,1159]],[[594430,530794],[1065,2317]],[[595495,533111],[1570,2],[1570,-2]],[[598635,533111],[1219,0]],[[704443,739015],[-4095,-1124],[-1002,457],[-551,1329],[-1343,-652],[-959,216],[-1053,501],[-2199,-162],[-520,-177],[-91,183],[-250,1742],[277,830],[476,773],[1044,376],[543,13],[1273,-1211],[1194,1423]],[[697187,743532],[-28,339],[631,389],[1682,-911],[597,450],[-23,143],[644,1066],[464,360],[716,178],[991,1185],[-79,441],[-2746,1790],[-300,603],[-313,1163],[-386,209],[-281,-1101],[-463,-930],[-1638,504],[-912,1194],[-614,432],[109,754],[1044,1644],[1563,1444],[124,314],[-564,567],[-341,-168]],[[798766,592606],[-439,-4096],[461,-1867],[179,-1146],[8,-700],[-148,-786],[-46,-2872],[69,-1084],[-95,-1005],[-104,-351],[-201,-399],[-160,93],[-787,-454],[-1456,-1378],[-375,-822],[-481,-682],[-547,334],[-478,-604],[-124,-634],[45,-1423],[104,-443],[336,-625],[205,-352],[136,129],[64,-173],[97,-587],[-38,-1114],[-935,597],[-1018,352],[-1158,-1007],[-948,-1496],[-807,-585]],[[785863,574643],[-19,767],[-1535,8988],[1,1326],[171,252],[554,289],[1012,3479],[473,686],[1245,569],[1170,-451],[2249,493],[402,-224],[165,-903],[154,-140],[191,219],[126,581]],[[792222,590574],[197,-937],[283,-484],[1166,-490],[393,-537],[459,-69],[238,825],[-387,987],[-130,855],[927,428],[959,-59],[435,-749],[285,119],[872,918],[847,1225]],[[634536,674447],[-1880,-54],[-800,2808],[-2543,598]],[[851921,729466],[5,663],[1183,2007],[749,224],[1921,-133],[553,716],[225,1084]],[[783732,638198],[122,-514],[1257,-2676],[759,-430],[-55,-2559],[86,-1147],[543,-1627],[401,-365],[1458,-278],[596,661],[266,503],[515,-361],[710,-1392],[209,-1471],[370,-928],[436,-704],[43,-946],[-324,-1225],[-476,-940],[-1671,274],[-320,-1991],[3400,-4391],[-112,-899],[621,-1415],[249,-213],[581,-1400],[349,-1378],[900,-1900],[1271,-2321],[68,-1549],[375,-1608],[154,-184],[75,100],[1782,-1760],[-272,-1504],[182,-2223],[499,-1887],[-163,-1484],[75,-1285],[75,-175]],[[792222,590574],[630,420],[305,879],[46,2854],[136,2545],[-126,1589],[-1511,2777],[-551,1514],[-194,945],[-12,1522],[187,2416],[-30,592],[-217,663],[-278,380],[-1944,4440],[-1475,703],[-322,-239],[-766,-2437],[-843,-957],[-1417,1914],[-507,-151],[-496,-429],[-1825,-3408],[-185,101],[-276,397],[-58,1175],[61,339],[125,98],[374,2707],[326,4751],[-243,3000],[-789,125],[-468,-673],[-428,110],[-328,368],[-181,801],[409,2643],[-547,1063],[-545,-530],[-228,106],[-17,407]],[[778014,626094],[230,1523],[1951,4208],[799,1188],[-41,240]],[[599932,710498],[1038,178],[194,-238],[549,-2537],[-1713,-3435],[123,-137],[-72,-369],[-1095,-1687]],[[468057,546727],[203,102],[440,1723],[1292,2123],[1396,3614],[58,1663]],[[526532,684567],[861,596],[404,757],[740,2020],[76,623],[-45,895],[-409,2434],[427,1208],[1152,1722],[1525,1830],[736,1846],[-86,379],[11,1287],[199,1653]],[[569444,635830],[-27,-11833],[-2751,0],[0,-2943]],[[566666,621054],[-11163,12138],[-11059,11145],[-2778,-2610]],[[541666,641727],[-2228,-2066],[-1437,2506],[-555,673],[-4117,1944]],[[578402,325958],[-333,-1434],[-1014,433],[-1036,2244],[-960,3277],[-8,269],[789,603],[1458,3581],[1117,1258],[1099,706],[328,-635],[1583,-2325],[347,-1218],[22,-537],[-372,-996],[-419,-2215],[-943,-1039],[-1269,-425],[-286,-503],[-103,-1044]],[[565319,824696],[26,450],[11,197],[-49,211],[-59,255],[-27,41],[-293,465],[-1045,910],[-379,150],[-193,-272]],[[563311,827103],[-249,566],[-7,211],[-17,489],[91,623],[428,761],[-86,313],[-76,276],[-797,891],[-1128,-146],[-815,436]],[[558282,832503],[-38,11]],[[558512,837184],[1525,1510],[1114,582],[1647,-237],[2173,-28],[1342,-234],[879,-466],[793,49],[1292,673],[355,-930],[296,-299],[1405,-269],[781,-860],[958,-1396],[592,-399],[309,7]],[[575976,845747],[570,116],[347,-707],[173,-355],[69,-688],[214,-2153],[259,-290],[548,-1649],[176,-994],[90,-511],[11,-83],[8,-60],[-87,-211],[-157,-378]],[[181453,697610],[4378,-2898],[5565,-3684],[7995,-36],[29,2467],[239,128],[125,66],[568,0],[3737,-1],[118,-65],[103,-57],[72,-70],[116,-115],[180,-546],[739,-1438],[1407,-2430],[440,-527],[487,-581],[839,-1274],[532,-2481],[67,-315],[98,-1296],[402,-1453],[1280,-1866],[615,-587],[1299,-1240],[508,-220],[205,201],[572,1148],[257,1776],[387,1359],[1293,587],[63,-15],[1622,-382],[805,-868],[642,-1044],[507,-824],[413,-839],[167,-338],[937,-4153],[1279,-3285],[251,-441],[473,-827],[179,-621],[201,-699],[118,-2304],[1090,-3674],[385,-153],[173,-69],[344,-324],[946,-892],[467,-293]],[[557206,753308],[371,-78],[123,308],[-59,383],[247,667],[593,465],[2443,976],[994,88],[192,-242]],[[468401,579183],[-21,3411],[-413,1596],[-608,668],[-126,-368],[-95,43],[-645,2245],[330,1365],[-223,2045],[-600,2887]],[[466000,593075],[546,-181],[657,925],[29,529],[-134,666],[374,2588],[523,394],[455,-293],[607,-1176],[973,-251],[311,750],[1273,277],[794,-139],[2616,255],[9571,-4],[154,293],[431,4579],[-776,1037],[-2700,50236],[4870,0]],[[511786,618932],[-10,-11546],[-445,-3891],[-8,-1232],[-474,-3193],[-1076,-2593],[-2044,93],[-4052,-544],[-800,-1380],[-312,-351],[-584,-113],[-521,220],[-792,-4],[-21,-434]],[[594685,635851],[-1,-6],[-193,-1162],[-139,-223],[-1119,-253],[-1060,1633]],[[778014,626094],[-367,655],[-1015,-715],[-927,-1351],[-614,-1366],[-1215,-997],[-563,-140],[-997,296],[-358,-945],[-285,-1206],[-128,-3613],[-599,-1509],[1,-1239],[421,-2763],[390,-1124],[1513,-3449],[1169,-5653],[-589,-1672],[-107,-2795],[-701,-225],[-259,-595],[-14,-791],[122,-1181],[336,-1149],[825,-2299],[862,-1445],[380,-1071],[262,-2274],[20,-1502],[-210,-369],[-54,-457],[333,-1918],[520,-1484],[569,-3979],[-274,-1267],[-962,-3334],[-734,-1499],[-319,-1216],[-131,-1244]],[[553396,763058],[194,-487],[774,-1202],[2161,-2048],[-16,-364],[-652,-1096],[-83,-544]],[[743928,796409],[392,72],[70,13],[481,603],[34,385],[-74,101],[191,601],[543,79],[455,66],[1017,-171],[90,-15],[491,378],[813,626],[723,903],[300,985],[1037,938],[1494,1123],[1410,839],[705,695],[498,490],[1145,407],[1245,443],[676,-168],[1006,-581],[536,-311],[2593,-138],[259,-496],[116,-1423],[626,-1276],[1757,-485],[1453,209],[1241,-233],[2189,-410],[1120,-432],[206,-80],[1019,684],[149,100],[213,276],[234,303],[665,1681],[29,679],[16,367],[-384,569],[-509,754],[-298,1288],[51,1202],[58,433],[84,623],[103,340],[141,468],[534,868],[444,529],[535,638],[622,1190],[117,366],[163,507],[323,-357],[317,-351],[603,-406],[1347,-907],[868,-194],[864,-193],[771,-465],[762,-458],[2473,-1028],[672,-755],[28,-1348],[252,-1516],[197,-502],[1043,-1886],[622,-491],[1206,-648],[1039,-346],[805,37],[1355,980],[1015,362],[1068,381],[364,-11],[1292,-38],[2439,-686],[232,-214],[456,-421],[91,-267],[90,-263],[604,-321],[1925,-1022],[369,-1772],[1032,-1379],[2032,-315],[666,-103],[408,-252],[192,-119],[880,-158],[1589,-59],[1187,203],[1013,639],[205,128],[58,6],[1244,126],[2109,814],[1366,1176],[276,471],[337,575],[1406,1278],[924,840],[195,101],[207,107],[1465,-377],[382,-268],[237,-385],[453,-734],[810,-454],[586,-127],[240,192],[648,519],[625,77],[602,-318],[324,-171],[262,-536]],[[591369,347083],[-2105,92]],[[589264,347175],[-136,4919],[-309,329]],[[588819,352423],[163,4855],[-78,3574],[-136,1581],[-192,1323],[-786,3001],[-140,1543],[24,478],[-714,4533]],[[586960,373311],[200,222],[3026,6302],[-115,434],[186,2785],[257,1273],[336,346],[889,2990],[96,1223],[-585,1011],[-101,800],[-104,2667],[188,1464],[575,2316],[-155,1340],[119,3065],[-125,2631],[-199,2940],[-1492,1396],[-1335,391],[-660,1207],[-914,866],[-620,290],[-1820,-22],[-104,266],[-3,1969]],[[584500,413483],[-158,451],[-356,3256],[2045,1458],[1220,665],[2069,1663],[3025,2087]],[[592345,423063],[575,-2091],[478,-1109],[250,-139],[153,222],[1639,836],[421,-983],[224,-2351],[27,-1944],[-766,-2756],[-125,-1091],[573,-2136],[1622,-3160],[-30,-1329],[140,-462],[555,43],[-10,1829],[-63,619],[-176,330],[28,932],[177,1438],[379,811],[314,-199],[458,283],[292,385],[87,5788],[206,944],[-259,1647],[-1276,3438],[-682,1753],[-766,1497],[-832,1626],[-359,6613],[667,3043],[843,16]],[[597109,437406],[11,1],[875,11],[1314,589],[1210,-758],[-3,-445],[266,-246],[747,-86],[660,662],[1776,-259],[895,681],[222,1366],[224,288],[586,30],[1342,-303],[2276,1537],[1525,1412],[1157,1803]],[[466000,593075],[-378,418],[-865,1544],[-1122,2602],[-525,1572],[-258,1431],[-523,534],[-850,12],[-816,2055],[-697,907],[-1906,-51],[-1483,-834],[-830,93],[-1054,-431],[-375,-1912],[-176,-308]],[[592345,423063],[-761,354],[-445,859],[-237,1264],[338,378],[364,1600],[67,1436],[-56,706],[300,1705],[766,204],[510,1116],[-25,172],[-178,105],[-496,1790],[-109,3540],[202,2129],[268,1461],[730,1442],[-969,4380],[-315,1074],[-318,-35],[-307,567],[-121,948]],[[591553,450258],[1622,-1220],[1088,18],[48,1],[43,428],[0,1],[1,0],[183,195],[16,17],[18,-37],[796,-1605],[556,-1681],[20,-63],[72,-911],[193,-2452],[1,-650],[3,-1713],[1,-419],[487,-1082],[215,-479],[59,-363],[134,-837]],[[719268,703128],[-287,271],[-278,809],[-164,2696],[1029,1780],[-1984,1660],[-178,282],[-131,362],[-815,4585],[-5,27]],[[788129,514387],[-4,-3],[-4,-3],[-4,-3],[-15,-11],[-95,-125],[-8,-19],[-2,-7],[-6,-23]],[[778114,543760],[123,883],[443,296],[629,-775],[1430,-1367],[116,-477],[20,-1249],[-97,-298],[-69,-1041],[246,-751],[449,1161],[673,649],[116,17],[175,-276],[176,-650],[350,149],[196,302],[366,1378],[129,1004]],[[565105,401563],[2063,885],[66,28],[695,22],[1145,-289],[437,-365],[663,-1187]],[[570174,400657],[-4,-5]],[[555553,359458],[0,-21663],[-452,-346],[-566,-158],[-858,-1325],[-127,-798],[-768,-203],[-1191,294],[-1499,-11],[-1642,860],[-350,2879],[-596,1060],[-480,-141],[-128,-208],[-747,-2416],[-448,-696]],[[595495,533111],[2534,2323],[400,-548],[-12,-750],[218,-1025]],[[541666,641727],[739,-9165],[861,-3085],[-83,-264],[122,-626],[1090,-2448],[-652,-2621],[-424,-6974],[-249,-10869],[-2691,-5993],[-855,-2128],[-920,-2657],[-293,-1607],[-630,-1769],[-240,-253],[432,-4429]],[[537873,586839],[-695,2],[-1365,-1281],[-939,-1667],[-230,-880],[-861,236],[-771,846],[-1006,625],[-880,136],[-1490,-108],[-1284,-527],[-406,-380],[-1140,-2363],[-2133,351],[-660,519],[-1033,1407],[-1395,747],[-957,-1211],[-988,-632],[-379,-88],[-331,800],[-381,1368],[-498,1180],[-234,498],[-413,461],[-1339,509],[-1228,39],[-1332,-173],[-669,-267],[-437,-343],[-804,-1209],[-222,-2933],[-444,-1360],[-732,-1245],[-93,-2417],[20,-1788],[-157,-672]],[[537873,586839],[1247,-3708]],[[557084,913962],[-1358,-81],[757,-1442],[-573,-1761],[214,-107],[-792,-781],[-4188,1342],[-808,-222],[-91,-767],[174,-1296],[-768,-1316],[-1657,843],[-1173,-976],[-719,-1420],[-932,-1086],[-223,-3194],[-385,-354],[-1554,-2275],[-118,-1005],[-1161,-1272],[-1315,-738],[31,-1795],[-261,-2574],[-810,-1751],[-1446,-2452],[1277,-691],[122,-1583],[-509,-1061],[-2122,477],[-786,-224],[-668,-498],[-1467,-2330],[-267,-1382],[18,-1059],[487,-6413],[-302,-2140],[785,-889],[455,-27],[797,-1211],[-214,-956],[-289,-691],[-254,-202],[-1033,-213],[524,-1720],[470,-1001],[64,-857],[-179,-1256],[-257,-913],[-737,-841],[-840,-411],[-280,-1083],[119,-2401],[-377,-1663],[-269,-381],[-362,-9],[0,583],[-256,652],[-78,97],[-368,-175]],[[585618,918273],[316,-677],[11,-672],[-336,-190],[-664,75],[-1212,553],[-340,-797],[-234,-551],[-1423,-519],[-325,-565],[-171,-605],[-14,-52],[-226,-272],[-82,-83],[-161,-161],[-63,25],[-333,131]],[[647523,604217],[-3079,13882]],[[644444,618099],[7645,5437],[917,1953],[1623,10341],[-1273,4186]],[[704553,723911],[558,-662],[40,-459],[-919,56],[-1291,-510],[-1406,-2397],[-111,-1957],[439,-484],[1228,-239],[1691,-2071],[598,-1362],[497,-437],[-169,-895],[-246,-670],[-1362,-1687],[-103,-221],[-107,-773],[15,-431],[228,-938],[253,-2404],[136,-3969],[2249,-1788],[308,-244],[411,-1549],[1151,-125],[616,-836]],[[277141,485544],[101,-1488],[-377,-1918],[-323,-1172],[11,-1485],[121,-147],[169,73],[327,628],[789,-208],[637,-442],[612,-932],[214,-994],[346,-892],[800,-154],[769,2041],[256,1250],[759,5939],[1933,2812],[2844,2043],[1639,2752],[1294,3409],[472,3195],[493,892],[-36,1268],[-189,972],[-763,1709],[909,440]],[[562989,767126],[-258,448],[-135,233],[-179,642],[36,78],[224,477],[364,-100],[110,80],[75,53],[-164,382],[-792,589],[-307,-263],[-104,-294],[-104,-291],[-572,123],[-1668,1146],[28,481],[75,1287],[-238,518],[-217,475],[-828,593],[-127,193],[-406,622],[-17,249],[-25,386],[-371,1431],[-85,110],[-778,1011],[-139,368],[-99,266]],[[563599,789222],[599,683],[476,-29],[2266,-788],[797,55],[746,-160],[636,-1120],[386,39],[260,190],[235,489],[1870,713],[1078,641],[1024,1094]],[[578369,774526],[380,-871],[1003,-568],[1490,1247],[555,-18],[405,-255],[156,-281],[111,-818]],[[582193,497601],[481,227],[328,-268],[114,-499],[688,796],[472,1470],[372,230]],[[584648,499557],[-61,-183],[46,-302],[255,-928],[501,-945],[260,-1306],[115,-2630],[-60,-1001],[-240,-589],[-622,-129]],[[644444,618099],[-4555,-1497],[-3454,-768],[-2593,-2660],[-1620,-4235],[-327,-1736],[-1383,-1096],[-652,1847],[-998,-277],[-903,104],[-1649,418],[-709,641],[-2362,0],[-1067,-458],[-1154,754],[-376,476],[-226,-70],[-292,-457],[-212,-2269],[93,-1454],[165,-509],[-442,-1362],[-423,-713],[-494,-21]],[[641143,652050],[523,-1445],[836,32]],[[555010,827570],[4549,-717],[3752,250]],[[565605,810226],[1089,-3469],[235,-1718],[-73,-765],[-232,-522],[-809,-315],[-849,-1159],[-1597,-2774],[-479,-969],[456,-2339],[-480,-366],[-184,94]],[[562682,795924],[-380,62],[-794,557],[-302,271],[-461,787],[-465,275],[-942,142],[-844,-235],[-1911,14],[-606,-511],[-109,-339],[-956,-144],[-76,988],[-737,1187],[-551,-423],[-846,-211],[-339,115]],[[563543,570413],[235,1357],[31,851],[-82,707],[-244,-44],[-830,1700],[-361,4850],[-639,1096],[-136,-231],[-558,-282],[-349,1171],[296,1320],[610,839],[264,684],[86,609],[-547,2170],[1077,1805],[245,3343],[376,818],[880,2716],[-143,1967],[479,857],[1044,117],[1389,-171],[0,22392]],[[594758,561945],[-565,1],[-61,280],[83,1215],[136,408],[74,641],[-61,1249],[-1128,2491],[-536,758],[-307,775],[-282,3839],[-9,1296],[347,2957],[-44,146],[-876,81],[-542,36],[-113,-1703],[-1690,-12],[632,-1169],[164,-1084],[164,-3130],[-1474,-2988],[-465,-1538],[-1220,-2932],[-1216,-200],[-436,401],[-518,884],[-1491,1968],[-152,-7],[-1120,-1216],[-2,-877],[-833,-1086],[-454,-29],[-208,-462],[-3016,-334],[-2158,83],[-1185,-795],[-559,236],[-372,276],[-172,356],[-1098,4557],[-185,185],[-1597,-572],[-681,-1026],[-460,-1691],[-530,-2641],[-512,-3580],[-743,-1109]],[[594430,530794],[-1105,-2319],[-1833,-4],[-1141,-492],[-898,-952],[-1490,765],[-1352,439],[-559,-569],[-322,-1252]],[[562682,795924],[-1099,-2970],[-89,-896],[48,-177]],[[589264,347175],[-78,145],[-261,-4],[-96,-2963],[-1347,14],[-953,674],[-393,854],[-321,1491],[-252,-117],[-31,1510],[109,934],[801,2712],[518,1162],[346,167],[1217,-1608],[296,277]],[[599771,718151],[388,-309],[314,64],[460,597],[623,1451],[155,601],[-201,982],[234,1553],[140,366],[857,-378],[453,-562],[647,-94],[1126,597],[955,837],[358,134],[462,-159],[1233,-1113],[949,-192],[1757,600],[945,643],[545,651],[1050,772],[442,63],[855,-348],[915,93],[1138,447],[506,576],[533,-296],[35,-654]],[[688295,725500],[189,2090],[748,2141],[328,218],[374,1015],[75,557],[-843,1460],[-80,870],[145,1374],[-646,1191],[-1172,1067],[-128,1988],[780,716],[1139,-579],[1216,-103],[136,509],[696,1426],[303,1141],[-365,308],[-452,-168],[-264,76],[-102,87],[2,173],[1304,493],[554,-82],[392,2914],[637,171],[515,-514],[1611,1394],[116,735],[148,191],[321,-353],[681,-1491],[-887,-1347],[-244,-690],[513,-835],[636,-221],[516,110]],[[655551,750006],[2619,-359],[269,1084],[-155,1494],[-18,946],[67,329],[770,1275],[879,128],[2238,3070],[609,315],[425,-174],[1401,-1791],[1790,-629],[211,-223],[149,-442],[107,-1530],[-41,-2700],[62,-236],[937,-1005],[1809,-136],[882,135],[150,324],[430,-230],[657,-804],[382,-834],[1360,-6053],[3393,-4180],[3483,-3642],[1676,-2027],[740,-203],[302,71],[1540,-1383],[578,-708],[-244,-312],[-166,-550],[-75,-2287],[104,-160]],[[584648,499557],[1973,344],[1670,4],[5957,16]],[[591553,450258],[-3347,2896],[-488,991],[-1055,726],[-71,49],[-341,42],[-710,1928]],[[588282,813796],[449,-315],[1116,579],[547,578],[228,241],[434,41],[792,75],[567,187],[264,87],[1316,-5],[528,-939],[517,-1213],[301,-706],[96,-966],[-29,-92],[-260,-836],[131,-1311],[507,-528],[513,-275],[148,15],[1192,117],[623,-1255],[109,-2596],[591,-1285],[319,27],[13,24],[163,300],[123,76],[141,86],[462,74],[1374,-1181],[343,-6],[1876,1096],[333,-29],[459,-1519],[475,-611],[674,-867],[32,3],[184,12],[203,288],[-84,607],[99,16],[243,39],[1323,-1193],[760,-399],[241,16],[247,16],[1989,-1405],[144,-183],[144,-182],[75,-218],[245,-704],[-161,-937],[-452,-803],[-217,-63],[-197,-57],[-56,-2732],[248,-397],[88,-470],[238,-1284],[-446,-1632],[-878,-655],[-342,21],[-1507,90],[-1523,-2184],[-163,-2185]],[[581597,374628],[810,376],[896,-555],[1585,-596],[705,180],[978,-195],[389,-527]],[[584500,413483],[-197,-191],[-1323,245],[-790,-228],[-1041,-694],[-824,-1067],[-176,-745],[-50,-1209],[-689,-1818],[-836,-734],[-1312,-1616],[-519,-1696],[-1671,-4053],[-722,-371],[-2532,524],[-1644,827]],[[479405,725745],[-247,1823],[33,481],[227,951],[1046,2478],[-273,276],[-532,1467],[232,1523],[517,2256],[-683,1253],[-407,1296],[21,645],[1173,73],[311,1261],[323,2877],[-172,3272],[744,1861],[349,348],[393,701],[345,938],[-1538,2159],[-950,165],[-248,-299],[-1180,-321],[-984,47],[-447,784],[-25,464],[-181,307],[-812,-317],[-888,-999]],[[0,6820],[4734,463]],[[998019,7770],[-998019,-950]],[[0,410250],[0,129],[0,25]],[[11,405547],[-11,-34],[999990,-26]],[[999996,406204],[-999996,328]],[[0,408126],[999957,-59]],[[999996,408391],[-999996,6]],[[0,890129],[999082,-859]],[[998692,914653],[-998692,-1165]],[[0,913488],[0,-2]],[[0,925278],[999997,148]],[[998337,927712],[-998337,837]],[[0,6821],[0,-1]],[[949,912992],[-949,493],[0,3]],[[549943,856450],[-288,-344],[-849,-19],[-266,141],[-289,20],[-183,-134],[-360,494],[-304,103],[-422,429],[-476,-90],[-366,135],[-1295,-34],[-278,182],[576,87],[614,155],[281,545],[203,-309],[293,-95],[246,261],[379,-217],[237,109],[859,-434],[51,524],[400,-266],[425,13],[-44,314],[246,152],[72,-133],[63,-264],[-100,-822],[157,-208],[375,-116],[43,-179]],[[591154,863263],[-94,38],[-166,194],[-223,93],[-116,-20],[-10,-132],[60,-210],[128,-287],[35,-204],[-58,-123],[-169,-101],[-13,-144],[67,-263],[-6,-239],[-79,-215],[-232,-192],[-385,-167],[-282,36],[-178,243],[-386,184],[-594,126],[-400,-72],[-279,-390],[-23,-83],[18,-70],[24,-9],[2,-51],[-162,-365],[-20,-221],[67,-215],[6,-186],[-56,-157],[-103,-116],[-153,-78],[-149,24],[-144,127],[-208,29],[-273,-70],[-194,11],[-118,92],[-59,46]],[[586229,860126],[57,70],[228,252],[-7,155],[-102,145],[-30,162],[55,302],[-17,69],[-250,274],[-172,418],[-300,1058],[-47,88],[-42,8],[-38,-72],[-76,9],[-5,260],[-43,191],[-97,220],[-168,184],[-359,220]],[[584816,864139],[-28,145],[-55,289],[1,166],[58,43],[22,158],[-15,273],[-72,186],[-128,99],[-41,81],[-15,171],[-75,150],[-322,456],[-466,486],[-744,594],[-89,163],[32,63],[65,78],[13,69],[-27,119],[101,141],[161,-33],[222,-207],[139,-70],[41,94],[-13,71],[2,170],[111,79],[122,9],[53,77],[8,122],[-37,78],[-9,69],[60,96],[25,172],[19,79],[57,88],[41,73],[-1,83],[-47,118],[11,131],[129,11],[503,-174],[40,17],[16,147],[73,60],[106,61],[153,35],[30,112],[-65,113],[3,156],[453,754],[262,246],[101,-61],[21,-61],[27,-72],[334,-165],[86,-148],[40,-261],[76,-146],[173,-10],[32,66],[183,78],[54,-12],[79,-152],[61,-61],[55,69],[18,64],[85,0],[337,-453],[131,-316],[118,-356],[77,-86],[45,26],[-9,92],[11,109],[46,10],[169,-279],[179,-188],[301,-215],[78,-138],[1280,-848],[465,-372],[101,-225],[50,-204],[-2,-184],[33,-96],[114,-64],[20,-104],[346,-491],[118,-353],[12,-413],[88,-262],[165,-110],[93,-137],[21,-164],[-103,-335],[-182,-525],[-72,-90]],[[587187,518810],[34,-1801],[-34,-228],[-53,-121],[-69,-14],[-60,-186],[-48,-357],[-102,-323],[-284,-485],[-101,-104],[-249,-143],[-71,-102],[-125,-114],[-213,-467],[-299,-821],[-161,-506],[-23,-192],[-347,-885],[-69,-75],[-82,-42],[-89,112],[-18,54],[8,420],[-32,309],[-2,179],[30,50],[-21,106],[-47,54]],[[584660,513128],[-10,40],[-16,71],[-53,9],[-98,-26],[-40,8],[-34,242],[150,501],[106,501],[138,389],[170,278],[232,571],[112,156],[427,925],[187,333],[129,101],[547,831],[223,475],[44,155],[79,274],[114,384],[241,573],[121,76]],[[587429,519995],[-9,-90],[-211,-621],[-32,-117],[10,-357]],[[269153,755725],[22,-17],[57,-47]],[[269232,755661],[-78,-357],[-35,-563],[26,-289],[129,-123],[346,-259],[286,-54],[399,229],[125,8],[114,-71],[102,-150],[155,-400],[43,70],[17,358],[78,314],[139,269],[279,325],[420,381],[322,204],[295,69],[24,61],[153,212],[23,-42],[-57,-203],[-1,-98],[56,8],[72,219],[88,431],[220,462],[653,854],[251,230],[422,140],[593,52],[589,-114],[585,-280],[398,-129],[213,20],[841,-183],[88,46],[-119,102],[-556,108],[-174,107],[-218,-21],[-14,54],[155,369],[85,43],[108,143],[112,184],[181,212],[336,166],[491,118],[489,213],[133,19],[104,-65],[188,20],[577,157],[339,-2],[245,-45],[150,-89],[180,28],[223,177],[112,88],[39,99],[-69,164],[-152,199],[-24,31],[-81,182],[14,133],[-23,117],[-84,174],[20,77]],[[280372,760570],[92,-45],[346,-167],[38,-74],[-15,-143],[-67,-213],[12,-291],[93,-370],[39,-294],[-15,-217],[-113,-208],[-209,-197],[-191,-301],[-174,-405],[-234,-331],[-295,-258],[-280,-323],[-267,-389],[-532,-538]],[[278600,755806],[-1034,-911]],[[277566,754895],[-135,-104],[-121,-114],[-232,-199],[-230,-204]],[[276848,754274],[-1485,-872]],[[275363,753402],[-998,-726],[-607,-585],[-528,-727],[-239,-222],[-262,-59],[-413,40],[-431,-87],[-448,-214],[-290,-173],[-132,-133],[-127,-41],[-123,53],[-328,354],[-25,-26],[-61,-52],[-193,61],[-220,7],[-191,-129],[-191,-22],[-188,88],[158,125],[752,269],[-9,49],[-271,155],[-84,142],[-68,-11],[-54,-164],[-100,-70],[-146,21],[-146,124],[-148,223],[-482,362],[-133,186],[-171,122],[-252,64],[-37,105]],[[268177,752511],[42,140]],[[268219,752651],[219,672],[128,256],[53,70],[68,-3],[30,70],[-10,143],[27,89],[141,245],[79,129],[-33,204],[36,371],[92,481],[104,347]],[[280582,759893],[83,-20],[85,203],[45,117],[-7,64],[-199,61],[-73,-71],[-7,-75],[-8,-86],[21,-127],[17,-19],[43,-47]],[[270449,752537],[31,143],[-44,262],[-32,71],[-55,-127],[-31,-289],[3,-126],[128,66]],[[540322,582519],[-115,-166],[-189,-310],[-167,-133],[-144,46],[-55,109],[-45,491],[1,108],[64,60],[19,87],[50,214],[11,98],[0,8],[3,22],[51,173],[0,110],[33,161],[76,135],[125,141],[226,176],[162,-1],[103,-146],[172,-32],[42,-78],[106,-344],[99,-348],[2,-93],[-75,-93],[-60,-136],[-24,-181],[-70,-63],[-113,55],[-77,-10],[-140,-40],[-71,-20]],[[597878,420693],[-120,287],[-176,378],[-227,662],[-95,115],[-154,53],[-31,82],[-15,376],[-33,173],[-67,121],[-68,54],[-69,-14],[-22,-123],[26,-231],[-22,-226],[-70,-221],[-23,-166],[23,-111],[-15,-118],[-138,-224],[-112,-79],[-64,35],[-14,150],[-65,132],[-113,114],[-103,214],[-91,314],[-57,343],[-24,373],[22,274],[68,178],[70,368],[71,561],[-45,484],[-163,409],[-136,191],[-110,-27],[-134,251],[-247,887],[-22,195],[16,225],[54,254],[16,634],[-39,1262],[-29,137],[-55,381],[-67,192],[-24,199],[16,208],[-27,153],[-74,98],[-62,172],[-51,246],[4,955],[-48,331],[-83,189],[-119,50],[-92,186],[-102,609],[-13,244],[74,946],[115,426],[175,302],[85,268],[-6,235],[83,307],[267,645],[13,154],[-93,1347],[-76,671],[-87,496],[-19,357],[49,217],[10,186],[-29,153],[-89,2716],[-35,142],[14,137],[64,132],[31,162],[-5,190],[29,137],[62,82],[-32,280],[-125,477],[-134,375],[-272,583],[-115,349],[-87,439],[-120,887],[-63,184],[-33,243],[-5,300],[30,227],[105,321],[16,183],[-15,198],[-12,168],[35,199],[93,214],[58,-57],[187,-181],[13,-12],[645,-1145],[19,-148],[412,-1136],[134,-481],[0,-80],[0,-174],[123,-963],[4,-30],[5,-80],[23,-385],[-29,-354],[6,-283],[49,-405],[-16,-171],[135,-548],[12,-46],[70,-499],[15,-488],[-41,-475],[-44,-237],[-86,-456],[-22,-280],[28,-254],[84,-276],[140,-297],[106,-359],[71,-421],[60,-191],[76,5],[138,-65],[111,-246],[42,-136],[87,-277],[56,-612],[3,-38],[2,-23],[-6,-931],[-63,-804],[-120,-677],[-95,-368],[-69,-60],[-121,-215],[-173,-369],[-72,-257],[29,-144],[10,-323],[-9,-504],[-24,-227],[-24,-115],[271,-1304],[45,-731],[-97,-612],[-7,-546],[84,-482],[28,-581],[-29,-682],[32,-440],[95,-200],[44,-558],[-2,-232],[-6,-685],[25,-505],[57,-94],[394,-77],[72,-76],[114,-485],[232,-1413],[-7,-144],[228,-1117],[66,-518],[-29,-152],[-44,-71],[-59,9]],[[596171,434491],[55,313],[-48,171],[-91,81],[-104,-66],[-35,-215],[108,-279],[115,-5]],[[596283,434289],[61,-105],[98,47],[74,131],[29,174],[-1,167],[-47,104],[-67,62],[-98,-37],[-34,-228],[-15,-315]],[[588243,500276],[-33,284],[-66,299],[-26,278],[265,1310],[136,518],[353,944],[18,391],[-69,256],[-99,185],[-18,129],[46,157],[229,245],[63,200],[289,100],[138,286],[136,-81],[79,151],[180,-35],[91,304],[82,138],[67,20],[32,-217],[103,-20],[130,101],[87,172],[65,558],[76,247],[89,105],[93,-375],[85,-59],[-97,-250],[-15,-118],[58,-54],[119,2],[124,62],[203,298],[73,-3],[46,-333],[55,-100],[119,73],[176,229],[135,277],[18,269],[169,78],[178,802],[-39,238]],[[592186,508337],[161,136],[76,67],[109,-65],[145,121],[11,-114],[-100,-496],[61,-115],[299,-90],[63,-113],[2,-128],[-121,-133],[18,-157],[98,-154],[138,-68],[132,92],[165,462],[113,93],[90,-46],[43,-462],[45,-133],[323,-132],[234,191],[82,-25],[-2,-737],[19,-320],[4,-59],[58,-289],[72,-226],[84,-107],[156,7],[28,-68],[-49,-251],[26,-178],[301,-565],[165,-539],[70,-34],[67,111],[53,139],[46,416],[138,279],[330,310],[498,308],[266,-1088],[-42,-122],[-263,-169],[-353,-28],[-274,-140],[-54,-92],[47,-564],[-53,-182],[-87,-41],[-137,256],[-131,-3],[-147,84],[-162,21],[-118,-169],[-265,-646],[-53,-387],[22,-472],[105,-434],[158,-479],[-52,-358],[-63,-206],[-142,-135],[-14,-151],[-6,-63],[-365,-910],[-80,-350],[11,-184],[125,-253],[-27,-110],[-274,-15],[-41,-126],[0,-158],[-37,-92],[18,-112],[260,-416],[15,-111],[-88,6],[-274,161],[-167,32],[-125,-47],[-49,-106],[-61,-384],[59,-195],[23,-204],[-205,-309],[-25,-416],[-128,-227],[-161,-134],[-241,62],[-99,-108],[-97,-204],[-93,-339],[424,39],[76,-74],[36,-148],[83,-159],[10,-98],[-311,-7],[-105,-206],[-206,54],[-188,-286],[-17,-144],[138,-166],[670,-224],[187,-33],[467,332],[116,-71],[42,-199],[-2,-208],[-116,-270],[-481,-707],[-232,-427],[-217,-176],[28,-253],[-14,-116],[-60,-55],[-571,251],[-397,464],[-190,51],[-150,-111],[-103,-171],[-43,-205],[-23,-1063],[176,-912],[42,-179],[-195,-78],[-312,-648],[-55,-79],[37,440],[-25,256],[231,412],[40,236],[-133,653],[28,611],[-38,168],[-165,8],[-135,71],[-48,64],[-39,208],[-77,100],[-265,-407],[-36,80],[0,189],[-39,51],[-226,54],[-134,129],[-96,169],[-104,532],[-101,127],[-119,-3],[-83,-157],[-102,-334],[-165,-65],[-50,-101],[123,-544],[27,-230],[-56,-71],[-276,123],[-124,-180],[-49,-364],[29,-405],[68,-472],[-92,30],[-146,459],[-55,-39],[-37,-117],[-101,-28],[-82,-549],[-48,43],[-49,241],[-6,336],[92,427],[-125,140],[-75,181],[-21,218],[141,379],[-13,153],[-41,242],[-77,248],[-103,171],[-74,301],[0,1165],[-32,375],[2,499],[275,2601],[132,433],[42,352],[109,1579],[-13,284],[-32,161],[-56,21],[-68,-52],[-60,70],[-7,67],[-35,371]],[[589039,492046],[16,372],[-43,135],[-195,-137],[-207,-109],[-67,117],[-98,288],[-62,142],[-76,-251],[-22,-513],[166,-356],[16,-434],[143,68],[49,418],[135,39],[198,86],[47,135]],[[589716,503492],[59,320],[-140,279],[-209,-247],[-40,127],[8,445],[-96,17],[-171,6],[-59,-136],[45,-212],[65,-189],[72,-85],[217,-154],[-8,-205],[-109,-264],[-60,-266],[-34,-227],[388,313],[72,478]],[[592152,493045],[22,256],[-118,277],[-56,341],[-64,272],[-194,-48],[-155,1],[-64,423],[-178,-16],[-151,-195],[47,-245],[12,-483],[131,-143],[251,-119],[195,-177],[182,-135],[140,-9]],[[592700,507083],[45,333],[-196,151],[-261,-125],[-8,-256],[-8,-257],[-105,-85],[11,-151],[222,-37],[24,-137],[185,-239],[-40,363],[-22,252],[153,188]],[[796532,815005],[-163,125],[-261,194],[-283,74]],[[795825,815398],[-297,-169],[-212,-185],[-125,-243],[-31,-304],[63,-363],[-55,-391],[-206,-866],[-147,-240],[-190,-314],[-272,-523],[-471,-433],[-1008,-512],[-1028,-338],[-450,-208],[-213,-190],[-475,-44],[-736,102],[-649,212],[-942,582],[-201,204],[-88,152],[26,99],[57,68],[132,55],[949,223],[585,78],[537,8],[350,130],[163,253],[253,126],[152,0]],[[791296,812367],[191,0],[327,70],[311,141],[215,191],[120,240],[163,181],[206,122],[419,462],[339,638],[467,1008],[556,740],[646,472],[442,382],[238,292],[115,212],[342,533],[155,221],[71,217],[272,396],[45,175],[-67,158],[-276,-42],[18,132],[199,345],[611,817],[445,443],[841,726],[34,80],[11,293],[69,270],[142,374],[451,593],[759,814],[447,750],[144,357],[62,247],[178,560],[129,218],[180,395],[128,431],[76,468],[129,376],[360,639],[176,424],[115,392],[55,360],[97,314],[141,266],[32,194],[-76,121],[101,191],[276,262],[160,423],[169,558],[74,401],[43,850],[-63,345],[8,425],[126,231],[208,196],[537,727],[191,240],[254,42],[259,-30],[241,-111],[301,-488],[-263,-575],[9,-212],[-19,-552],[-90,-258],[-95,-427],[-26,-295],[-87,-558],[-17,-271],[68,-335],[-9,-255],[-137,-638],[-37,-177],[-52,-306],[-106,-253],[-36,-209],[-71,-566],[-175,-278],[-57,-416],[-94,-1054],[17,-699],[161,-520],[6,-120],[-50,-222],[-105,-324],[-206,-376],[-506,-763],[-92,-242],[-34,-207],[17,-329],[-2,-346],[-12,-109],[-61,-132],[-409,8],[-59,170],[70,544],[73,264],[1,156],[-77,162],[-108,62],[-140,-38],[-147,-121],[-153,-205],[-604,-1329],[-240,-408],[35,-34],[281,241],[240,133],[305,93],[218,-124],[133,-342],[58,-339],[-19,-337],[-143,-289],[-453,-373],[-109,-20],[-72,33],[-74,120],[-41,-13],[-748,-818],[-249,-318],[-14,-96],[91,-219],[13,-110],[-130,-287],[-150,-256],[-630,-642],[-165,-335],[-513,-393],[-246,-74],[-267,-1],[-533,-314],[-799,-629],[-446,-396],[-94,-166],[-171,-533],[-102,-164],[-151,-71]],[[799351,820622],[80,745],[-142,36],[-445,-684],[-643,-432],[-728,-457],[-265,-156],[-96,-168],[5,-324],[976,264],[345,204],[558,697],[355,275]],[[232515,805001],[-270,27],[-168,161],[-249,427],[-68,-193],[-59,-187],[-19,-381],[-37,-278],[87,-497],[-54,-155],[-243,-259],[-216,0],[-290,121],[-181,253],[-86,642],[-41,436],[-19,232],[76,677],[6,273],[-36,495],[79,784],[32,132],[239,270],[23,173],[161,375],[227,204],[183,408],[-12,111],[-212,121],[-50,14],[-508,-948],[-81,-76],[-117,67],[-5,277],[188,476],[477,1318],[15,230],[-39,111],[-95,-5],[-33,84],[-56,300],[-26,202],[-49,68],[-102,13],[-512,-349],[-115,-137],[-58,-204],[8,-421],[-46,-202],[-220,-307],[-91,-38],[-64,282],[-38,603],[34,542],[104,481],[-28,583],[-158,687],[-139,345],[-247,-73],[-139,-157],[-151,-450],[-63,-5],[-75,377],[206,436],[86,274],[-5,148],[-96,22],[-413,6],[-175,-13],[-87,-156],[126,-122],[-19,-255],[-158,-773],[-86,-149],[-387,225],[-204,320],[-23,415],[-73,284],[-190,371],[-11,284],[-125,412],[-668,601],[-70,200],[-43,416],[-233,416],[-711,996],[-48,246],[18,97],[-211,433],[-22,262],[24,90],[341,289],[753,314],[115,152],[-180,127],[-476,102],[-276,-35],[-300,-95],[-241,-74],[-166,148],[-379,604],[-120,59]],[[224362,820138],[-29,146],[107,845],[323,753],[119,454],[134,707],[32,246],[-51,209],[199,673],[329,174],[222,-118],[326,-202],[438,57],[435,-107],[807,-735],[126,-87],[150,30],[27,225],[-489,498],[-356,303],[-158,228],[-106,313],[6,309],[119,304],[222,881],[425,1133],[51,16],[196,-222],[0,-133],[-160,-183],[20,-34],[386,5],[65,-96],[-122,-207],[-609,-375],[-245,-725],[-115,-319],[57,-187],[365,-371],[42,51],[36,222],[89,146],[168,159],[359,76],[214,232],[15,-121],[-91,-277],[-584,-200],[-16,-60],[111,-468],[293,-915],[35,-242],[-25,-315],[105,-354],[232,-393],[152,-676],[196,-647],[297,-531],[106,-487],[236,-546],[13,-120],[-81,-151],[-133,-93],[73,-508],[181,-560],[375,-657],[238,-1155],[115,-383],[189,-847],[-12,-73],[-32,-311],[90,-420],[79,-333],[274,-498],[67,-299],[-52,-295],[26,-153],[208,-68],[174,-237],[48,-143],[-47,-102],[-142,-62],[98,-348],[335,-636],[142,-389],[12,-322],[142,-371],[419,-616],[150,-341],[6,-256],[-137,-171],[-32,-155],[-126,-385],[-23,-400],[97,-961],[28,-573],[-42,-184],[39,-225],[178,-398]],[[227950,815015],[142,234],[-158,1022],[-141,67],[-142,-486],[8,-368],[181,-486],[110,17]],[[231577,808101],[94,235],[-306,67],[-79,-369],[-126,-268],[-165,-150],[-8,-234],[228,-101],[228,184],[134,636]],[[184154,867778],[63,-189],[-27,-148],[-104,-101],[12,-50],[213,-36],[40,-69],[9,-235],[-94,-199],[-181,-262],[-286,-184],[-390,-104],[-315,18],[-240,142],[-459,-104],[-677,-349],[-403,-130],[-129,91],[-388,-77],[-1168,-385],[-389,-39],[-751,113],[-370,-53],[-501,119],[-1021,501],[-215,241],[-71,210],[-233,-70],[-145,21],[-153,103],[-1028,74],[-381,140],[-145,133],[-444,577],[-187,269],[-145,107],[-199,156],[-108,136]],[[173144,868145],[115,-4],[428,-231],[740,-461],[387,-238],[241,116],[516,217],[156,108],[35,99],[-198,334],[36,140],[57,47],[471,-32],[231,-89],[168,-141],[232,-70],[467,-40],[215,-224],[476,-268],[29,56],[-43,149],[-93,98],[22,62],[308,229],[33,106],[-131,149],[-295,192],[-77,130],[229,149],[105,95],[105,-78],[150,8],[304,172],[17,58],[-92,108],[-20,79],[17,177],[104,334],[80,234],[59,200],[242,271],[14,211],[24,104],[136,96],[474,129],[342,-33],[47,-98],[20,-81],[78,-38],[735,183],[145,6],[347,260],[202,265],[34,71],[-43,319],[-46,71],[-157,9],[-105,117],[-52,223],[-188,224],[-261,136],[-252,260],[-57,121],[44,151],[-5,51],[-15,124],[-338,410],[-115,20],[-228,-60],[-48,102],[133,264],[14,178],[-103,92],[-49,154],[6,219],[35,188],[64,159],[-49,93],[-225,-16],[-920,34],[-153,316],[-100,154],[-47,203],[-160,202],[-347,285],[-128,260],[93,237],[254,-11],[416,-258],[68,-143],[-43,-169],[82,-46],[146,24],[1065,-333],[119,-96],[80,-128],[43,-159],[101,-140],[159,-121],[571,-191],[368,-321],[156,-210],[245,-104],[524,84],[178,92],[59,115],[82,48],[106,-18],[157,-163],[7,-72],[-61,-278],[62,-81],[193,-200],[52,-11],[141,40],[174,-91],[363,-368],[86,-178],[293,-430],[504,-497],[225,-26],[512,-56],[542,140],[212,-60],[91,153],[226,172],[47,-21],[41,-196],[1006,220],[632,357],[610,564],[333,354],[508,463],[221,307],[159,450],[138,266],[117,85],[107,235],[96,385],[235,363],[372,339],[496,332],[1134,540],[411,107],[1302,42],[203,-49],[259,-115],[514,-79],[185,-93],[804,-166],[455,-120],[385,-106],[67,-131],[286,-111],[-24,-115],[-69,-96],[-112,-76],[16,-159],[-54,-133],[-682,-549],[-112,33],[82,323],[-105,354],[-265,130],[-820,225],[-154,121],[-549,98],[-944,74],[-513,10],[-82,-54],[-292,74],[-162,-20],[-110,-112],[-152,-274],[-587,-215],[-838,-388],[-70,-160],[61,-103],[1211,289],[835,-35],[61,59],[287,92],[1519,-70],[266,-34],[92,-107],[-282,-252],[-339,-182],[-396,-111],[-238,-20],[-213,102],[-184,-11],[-350,-159],[-273,-28],[-583,47],[-44,-47],[267,-131],[102,-196],[-103,-368],[-59,-145],[-125,-50],[-556,92],[-306,-131],[-111,-137],[-377,-328],[-162,-122],[-22,-139],[-14,-145],[-225,-240],[-552,-373],[-10,-184],[-121,-161],[-10,-68],[356,33],[21,-94],[-329,-586],[-619,-547],[-684,-716],[-319,-538],[-10,-123],[-336,-282],[-964,-671],[-603,-313],[-212,-117],[-89,85],[31,126],[-48,135],[-231,207],[-160,-105],[-585,-126],[-110,-169],[-324,-229],[-241,-251],[-208,-200],[-61,-149],[-16,-179]],[[189596,872717],[216,244],[-105,50],[-341,-108],[-436,-489],[-239,-332],[-653,-343],[-606,-244],[-478,-39],[-496,-166],[-267,-49],[-110,-137],[253,-274],[459,10],[37,-254],[32,-421],[110,-264],[262,-126],[391,126],[345,264],[229,626],[308,479],[584,469],[390,509],[115,469]],[[289481,768715],[31,-150],[-43,-171],[-114,-193],[-1127,-1265],[-318,-456],[118,-256],[10,-116],[71,20],[231,218],[67,-24],[34,-59],[19,-142],[-106,-248],[47,-57],[205,56],[86,-28],[-78,-186],[-104,-120],[-18,-117],[-154,-310],[-68,-63],[-38,42],[11,140],[-145,-150],[-10,-121],[83,-116],[65,-179],[47,-242],[23,-518],[29,-101],[12,-49],[-14,-60],[-13,-121],[31,-109],[-25,-126],[-81,-142],[-161,-78],[-240,-13],[-268,-164],[-298,-316],[-203,-288],[-111,-261],[-82,-108],[-53,44],[-400,-213],[-142,-144],[-37,-129],[-37,-24],[-37,80],[-285,61],[-532,41],[-417,-41],[-301,-120],[-265,69],[-230,259],[-364,202],[-935,222],[-785,-42],[-644,-154],[-1010,-451]],[[280408,761628],[-158,-90]],[[280250,761538],[-287,-163],[-217,-206],[-128,-58],[-178,65],[-351,5],[-307,150],[-248,106],[-126,285],[-3,111],[327,786],[129,357],[38,228],[76,156],[195,200],[52,142],[94,65],[138,-10],[260,262],[382,533],[291,327],[200,120],[543,123],[344,154],[245,57],[148,-43],[227,64],[309,171],[412,124],[518,79],[331,89],[144,99],[285,-8],[49,142],[75,68],[273,-38],[96,-81],[14,-61],[-66,-40],[38,-102],[142,-164],[228,-51],[267,104],[182,-45],[-46,-73],[-97,3],[-12,-33],[71,-141],[62,-6],[214,153],[14,-59],[-95,-224],[31,-140],[158,-56],[268,97],[335,276],[153,79],[24,130],[-110,0],[-287,-50],[-81,-81],[-4,54],[55,208],[261,303],[116,175],[70,188],[-74,-3],[-221,-195],[-197,-105],[-174,-13],[-39,196],[94,405],[-89,147],[-434,-203],[-51,-69],[-2,-55],[49,-41],[-6,-38],[-58,-37],[-99,37],[0,87],[49,140],[-52,61],[-134,-42],[-181,-89],[-388,-275],[4,59],[103,174],[414,218],[201,103],[128,-14],[80,78],[71,0],[61,-79],[154,32],[248,143],[106,-48],[-35,-239],[64,-22],[164,198],[105,68],[48,-61],[-347,-321],[-96,-158],[-19,-90],[58,-119],[138,18],[568,639],[276,211],[275,121],[273,31],[230,111],[186,191],[788,425],[245,199],[76,62],[306,468],[73,28]],[[289430,768777],[51,-62]],[[286979,766666],[133,259],[-8,106],[-328,-161],[-108,-100],[-28,-90],[63,-56],[155,-22],[121,64]],[[288124,765904],[-4,-128],[41,19],[85,163],[2,63],[-81,-36],[-43,-81]],[[288230,767228],[28,127],[-145,-44],[-138,-44],[-282,-74],[-58,-144],[-89,-141],[-24,-98],[42,-54],[7,-67],[-28,-81],[42,-19],[129,-18],[161,206],[34,113],[64,191],[257,147]],[[288665,767595],[14,65],[-107,1],[-14,0],[-73,-82],[-12,-55],[-2,-10],[21,-70],[88,48],[85,103]],[[157022,890863],[78,194],[277,91],[434,96],[932,366],[239,380],[-8,391],[-328,463],[282,263],[548,335],[596,405],[467,567],[118,383],[-1020,746],[-51,251],[449,124],[889,-180],[820,-168],[825,52],[505,262],[123,312],[-81,224],[-707,179],[-452,330],[-1153,332],[-905,100],[-856,-2],[-753,26],[-12,-204],[76,-283],[-132,-277],[-144,-153],[-17,-162],[-50,-112],[-106,61],[-121,234],[-551,187],[-479,23],[-558,-81],[-782,28],[-583,160],[-663,-25],[-252,-257],[46,-319],[-46,-236],[-145,-53],[-95,108],[-154,87],[-148,-264],[-87,-318],[-226,147],[-180,260],[-160,278],[-195,592],[77,534],[713,188],[600,-33],[181,13],[335,195],[2347,700],[1063,528],[85,-32],[8,-169],[153,-56],[281,125],[396,227],[877,160],[17,233],[309,-5],[187,-89],[1010,311],[1040,429],[216,61],[204,122],[615,548],[1504,440],[276,135],[1026,284],[335,137],[626,168],[257,-148],[82,-83],[235,11],[632,-155],[644,-194],[318,-142],[-432,-473],[-876,-492],[-540,-292],[-640,-204],[-255,-46],[-29,-119],[-96,-198],[-221,-192],[-337,-181],[-27,-61],[73,-202],[-32,-134],[-238,-85],[-186,-201],[90,-158],[598,-21],[594,-67],[151,-146],[540,-166],[126,-95],[360,-23],[199,53],[88,128],[1068,-70],[970,30],[419,98],[743,300],[251,365],[154,325],[521,508],[462,222],[310,122],[82,-6],[37,-98],[-43,-122],[21,-151],[-118,-264],[-299,-379],[-64,-155],[6,-133],[55,-86],[463,194],[371,156],[77,-134],[-99,-213],[-174,-234],[-54,-113],[-118,-174],[4,-213],[-19,-276],[-133,-161],[-148,-112],[-87,-119],[-166,-220],[-141,-66],[-177,-196],[44,-128],[177,-102],[-47,-135],[-413,-45],[-120,-149],[-49,-288],[-182,-336],[-28,-289],[145,-147],[259,-3],[526,95],[78,-40],[-152,-238],[-5,-215],[-112,-242],[-251,-174],[-318,-66],[-323,-74],[-318,-34],[-22,95],[-185,21],[-321,-233],[-405,294],[-333,361],[-303,173],[-924,70],[-634,-20],[-319,-60],[-237,-182],[19,-224],[-538,-428],[-229,-142],[-39,-184],[626,-551],[617,-503],[89,-238],[-133,-137],[-445,-12],[-468,-103],[-293,-341],[-291,-378],[-178,-163],[-852,-609],[-1098,-690],[-253,-121],[-334,-212],[-166,-225],[-272,-206],[-379,41],[-291,272],[-24,319],[230,207],[216,32],[294,112],[347,66],[239,202],[32,259],[1225,1225],[401,721],[106,576],[-43,286],[-229,163],[-549,121],[-874,-310],[-566,-336],[-516,-362],[-501,-419],[5,-127],[-64,-266],[-102,-405],[-16,-315],[-11,-280],[1,-206],[-133,-116],[-178,-77],[-119,-137],[-441,-246],[-309,-204],[-1438,366],[-927,266],[-1332,271],[-208,12],[-73,211]],[[269153,755725],[70,130],[1,3],[44,82],[130,144],[252,168],[66,109],[52,283],[37,456],[81,290],[125,124],[34,140],[-58,155],[48,151],[152,148],[127,44],[103,-62],[47,-151],[7,-328],[1,-65],[-25,-119],[-17,-96]],[[270430,757331],[31,-93],[58,-105],[367,-146],[78,-26],[58,14],[38,-151],[13,-362],[-40,-262],[-94,-163],[-150,-103],[-205,-42],[-771,122],[-287,-50],[-120,-88],[-91,-88],[-83,-127]],[[534262,850804],[-59,127],[45,229],[440,468],[331,614],[12,143],[-135,53],[-104,65],[-60,197],[-8,195],[-3,218],[-79,108],[-66,0],[-61,111],[18,65],[75,29],[41,132],[-6,220],[-21,258],[12,84],[38,-25],[42,-63],[36,-111],[27,-200],[18,-128],[25,-80],[60,-78],[52,40],[67,118],[51,244],[80,263],[80,326],[91,289],[104,173],[106,68],[95,34],[139,-55],[214,-148],[264,-198],[59,-218],[73,-181],[95,-153],[104,-93],[99,-38],[112,38],[22,150],[-62,368],[-122,616],[-150,594],[-55,338],[-1,114],[14,59],[28,69],[33,139],[35,137],[34,63],[51,-32],[50,-135],[74,-84],[77,-1],[17,28],[-2,56],[-6,66],[6,55],[28,40],[46,33],[106,23],[173,17],[230,35],[243,67],[222,51],[143,-1],[111,-70],[52,-109],[15,-107],[22,-61],[39,-1],[96,36],[82,23],[104,-38],[103,-40],[80,16],[79,21],[98,-29],[86,-53],[49,-38],[17,-52],[11,-88],[-4,-131],[-19,-157],[-56,-218],[-93,-279],[-132,-261],[-44,-137],[42,-132],[78,-10],[87,14],[93,86],[76,86],[48,16],[18,-50],[4,-72],[-22,-89],[-32,-213],[-42,-67],[-18,-28],[-31,-46],[-74,-4],[-54,-102],[7,-246],[-22,-276],[-34,-193],[-58,-129],[-83,-120],[-95,-135],[-86,-167],[-81,-165],[-85,-129],[-172,-110],[-295,-117],[-317,-123],[-224,-126],[-218,-147],[-160,-329],[-167,-275],[-127,-23],[-62,5],[-69,57],[-30,117],[36,102],[-2,88],[-2,140],[-92,66],[-207,-24],[-245,-193],[-110,-153],[-122,-247],[-196,-108],[-196,-198],[-135,-187],[-81,-139],[-71,-86],[-62,-38],[-62,-23],[-49,7],[-32,33],[11,92],[51,146],[-5,77],[-46,-14],[-132,-194],[-367,-83],[-112,-54]],[[276031,664713],[-109,-363],[-119,-495],[-88,-264],[-116,-38],[-118,96],[-88,93],[-103,174],[-101,342],[-132,269],[-131,120],[-124,245],[-27,226],[71,208],[162,252],[154,256],[198,416],[186,207],[124,0],[133,-292],[59,-134],[52,-139],[46,-194],[42,-268],[49,-349],[-20,-368]],[[264530,571514],[-95,-311],[-107,-95],[-152,-81],[-121,96],[-181,33],[-291,139],[-417,253],[-419,298],[-295,246],[-186,204],[-156,196],[-120,200],[-99,210],[-98,316],[-120,452],[-102,476],[-56,373],[-28,223],[-35,113],[-35,47],[-26,68],[-10,107],[4,145],[0,293],[-19,467],[-17,468],[6,296],[49,189],[64,371]],[[261468,577306],[101,66],[104,-11],[129,-79],[209,-175],[243,-283],[209,-340],[199,-336],[222,-274],[284,-429],[354,-708],[342,-807],[258,-666],[164,-500],[118,-407],[63,-320],[31,-292],[32,-231]],[[603091,575872],[-47,-88],[-50,-63],[-55,27],[-50,105],[-45,165],[-61,159],[11,384],[5,337],[24,343],[31,460],[57,270],[66,195],[67,132],[83,27],[107,-63],[84,-171],[68,-6],[139,-32],[176,285],[123,93],[101,15],[131,75],[99,-105],[91,-157],[73,-213],[30,-346],[72,-280],[-19,-197],[-4,-205],[-19,-184],[-46,-191],[-28,-258],[-103,-189],[-33,-203],[-14,-241],[-156,-481],[-146,-716]],[[603853,574555],[-72,14],[-53,-16],[-43,23],[-19,70],[-54,123],[59,240],[-36,190],[-54,178],[-11,137],[-91,149],[-115,15],[-117,-34],[-66,100],[-90,128]],[[307316,409927],[-95,133],[-100,80],[-130,29],[-11,121],[105,294],[29,309],[-23,177],[-115,102],[-193,126],[-193,143],[-113,142],[-64,122],[-72,92],[-86,118],[-94,186],[-85,158],[-60,53],[-34,-47],[-21,-79],[5,-119],[28,-139],[24,-120],[-4,-70],[-29,-21],[-37,-2],[-47,40],[-55,83],[-78,116],[-105,118],[-92,105],[-46,83],[-14,126],[-13,209],[10,224],[42,164],[64,153],[63,199],[99,73],[151,-154],[134,-187],[56,-11],[-57,325],[-142,623],[-167,625],[-24,169],[67,144],[165,180],[30,116],[30,86],[95,64],[105,71],[53,105],[153,29],[172,-469],[232,-170],[258,-599],[120,-103],[125,-118],[50,-191],[121,-461],[81,-36],[128,-193],[95,-109],[53,-109],[66,-163],[122,-237],[178,-183],[67,-312],[0,-365],[55,-92],[252,-105],[202,-24],[97,-144],[-36,-131],[-48,-136],[-74,-189],[-99,-208],[50,-306],[115,-320],[180,-72],[196,-100],[163,-10],[117,-105],[-1,-196],[21,-95],[-6,-81],[-65,-58],[-120,-40],[-107,-47],[-34,-77],[-19,-115],[-74,-142],[-135,-143],[-201,-48],[-43,-18],[-86,-34],[-61,-144],[52,-58],[34,-38],[81,-210],[29,-142],[4,-138],[-17,-126],[-24,-122],[-92,0],[-106,42],[-144,152],[-34,35],[-119,149],[-74,26],[-62,222],[129,390],[37,313],[-13,274],[-1,219],[83,134],[24,38],[164,169],[113,-107],[56,5],[-16,207],[-155,176],[-189,384],[-174,174],[-70,-31],[-12,-270],[-38,-271],[-16,-119],[-26,-200],[-116,-104],[-123,-26],[-130,19],[-154,47],[-117,119]],[[224082,819986],[-106,-53],[-56,-117],[-20,-179],[2,-92],[-21,-64],[-37,-55],[-55,-40],[-63,-30],[-78,-3],[-88,26],[-57,63],[-3,91],[5,84],[-37,48],[-50,41],[-25,68],[-25,104],[-48,128],[-54,104],[-39,46],[-17,-29],[-1,-77],[-6,-90],[-28,-62],[-78,-24],[-126,0],[-187,-20],[-216,-205],[-267,-27],[-213,113],[-214,83],[-209,123],[-203,199],[-202,268],[-183,232],[-159,110],[-203,111],[-288,235],[-174,162],[-174,161],[-38,40],[-159,105],[-94,133],[-42,129],[29,104],[73,77],[210,16],[201,-23],[183,-28],[103,14],[29,55],[2,70],[-38,94],[-70,116],[-6,84],[117,18],[227,29],[334,36],[186,58]],[[221326,822546],[26,283],[-29,169],[-80,255],[-85,271],[-135,189],[51,191],[231,250],[-47,198],[-128,-37],[-224,22],[-67,56],[-23,70],[63,194],[268,27],[156,23],[78,90],[8,96],[-9,106],[-7,139],[11,176],[-12,221],[-61,249],[-65,217],[-20,147],[24,76],[42,45],[69,-6],[90,-48],[93,-16],[78,69],[70,106],[77,72],[114,-38],[162,-161],[193,-156],[188,-26],[123,24],[36,-37],[-162,-186],[-357,-336],[-344,-327],[-129,-163],[48,-38],[87,-25],[106,-63],[96,-128],[30,-178],[-51,-182],[-76,-162],[-30,-133],[28,-86],[62,-52],[162,55],[270,172],[327,302],[300,367],[214,267],[121,55],[34,-96],[7,-97],[-43,-131],[-87,-178],[-114,-241],[-110,-284],[-129,-204],[-160,-49],[-137,25],[-72,-26],[-16,-98],[-3,-151],[-30,-142],[-79,-79],[-111,-73],[-107,-124],[-118,-115],[-138,-49],[-125,-39],[-84,-91],[-39,-108],[-14,-82],[97,-123],[226,-206],[235,-257],[118,-247],[44,-204],[58,-155],[29,-135],[-24,-156],[-28,-155],[20,-134],[44,-127],[29,-135],[24,-116],[34,-79],[61,-38],[90,-20],[111,46],[111,119],[185,152],[288,127],[272,74],[148,25],[47,-48],[28,-103],[10,-154],[6,-169],[82,-198],[74,-143],[51,-234]],[[596795,866483],[-50,71],[-37,97],[-35,109],[-19,136],[3,155],[20,158],[41,143],[54,118],[137,73],[241,35],[279,-29],[228,-79],[139,-97],[67,-71],[-64,-38],[-180,-18],[-181,-26],[-70,-61],[26,-91],[50,-102],[78,-99],[94,-85],[139,-49],[187,-14],[239,35],[265,-58],[240,-236],[156,68],[87,247],[49,188],[-8,249],[-50,280],[-94,290],[-113,271],[-117,217],[-104,159],[-164,177],[-262,258],[-417,329],[-534,344],[-525,340],[-396,316],[-274,295],[-231,290],[-167,253],[-121,207],[-61,138],[-22,84],[58,-26],[136,-126],[169,-144],[136,-65],[103,23],[86,72],[57,132],[32,165],[-2,189],[-22,188],[-54,184],[-81,177],[-168,234],[-266,320],[-241,289],[-108,160],[0,101],[19,147],[9,164],[-25,142],[-94,185],[-160,269],[-185,235],[-155,104],[-109,25],[-72,43],[-43,101],[-41,165],[-18,169],[9,111],[41,56],[56,35],[67,2],[67,-26],[75,-102],[84,-183],[146,-293],[225,-364],[205,-326],[100,-196],[5,-108],[-23,-111],[60,-166],[206,-240],[270,-229],[215,-136],[123,-9],[48,80],[-25,163],[-32,271],[40,181],[31,193],[-120,349],[-17,204],[68,56],[134,-56],[39,152],[-100,247],[-187,305],[-126,235],[-55,153],[-19,107],[33,27],[68,-38],[107,-123],[126,-177],[154,-274],[174,-355],[144,-297],[84,-132],[31,-92],[21,-201],[32,-243],[60,-191],[99,-162],[132,-248],[147,-235],[129,-144],[110,0],[97,103],[43,57],[8,95],[-68,181],[-138,265],[-117,233],[-16,102],[139,-64],[257,-164],[265,-170],[160,-74],[127,52],[188,136],[176,176],[98,150],[29,143],[9,159],[-24,187],[-51,210],[-116,292],[-181,384],[-226,320],[-225,134],[-193,25],[-151,56],[-150,126],[-192,194],[-158,152],[-66,23],[-209,-191],[-82,-115],[-173,185],[-103,-7],[-98,131],[-127,216],[-103,192],[-105,256],[-133,371],[-155,327],[27,176]],[[595803,877576],[120,72],[202,-254],[273,-169],[234,-78],[187,-32],[154,-60],[132,-107],[133,-144],[214,-188],[331,-212],[344,-231],[249,-234],[134,-133],[66,11],[21,78],[24,33],[43,-44],[67,-106],[114,-138],[158,-121],[158,-106],[116,-103],[87,-144],[88,-205],[53,-292],[2,-352],[-62,-418],[-100,-451],[-95,-390],[-155,-353],[41,-232],[168,-243],[191,-284],[68,-290],[77,-278],[153,-287],[166,-298],[111,-309],[98,-291],[133,-256],[140,-234],[114,-238],[131,-224],[180,-200],[165,-161],[95,-127],[37,-109],[25,-113],[-8,-142],[-46,-177],[-36,-101],[-36,-101],[-7,-24],[-18,-58],[-7,-85],[20,-88],[29,-100],[17,-111],[-22,-131],[-64,-144],[-108,-143],[-127,-128],[-153,-102],[-170,-81],[-178,-119],[-172,-195],[-169,-212],[-170,-160],[-96,-112],[11,-99],[56,-86],[15,-83],[-30,-75],[-52,-68],[-70,-46],[-73,-24],[-78,32],[-81,86],[-146,107],[-235,82],[-233,116],[-142,188],[-73,191],[-65,123],[-66,60],[-73,40],[-101,-10],[-131,-60],[-170,-79],[-196,-58],[-143,13],[-45,90],[-66,132],[-196,117],[-222,36],[-128,-140],[-76,-117],[-63,-2]],[[598127,871853],[59,370],[-22,206],[-87,259],[-156,19],[-156,-543],[-69,-486],[-29,-278],[115,-116],[200,185],[145,384]],[[188961,748135],[63,-202],[-26,-156],[-258,-235],[-121,-124],[-258,-661],[-213,-170],[-182,-244],[-105,11],[-68,333],[-115,346],[-28,352],[-89,403],[-42,-34],[-42,-112],[-37,-238],[-69,-232],[-94,56],[-144,465],[-160,313],[-108,229],[-62,234],[-49,327],[-53,352],[-73,297],[-90,219],[-97,166],[-101,231],[-122,292],[-65,295],[-34,366],[-4,264],[9,152],[-4,98],[-28,35],[-21,89],[42,90],[92,11],[160,135],[178,118],[123,59],[83,-7],[79,-40],[64,-131],[32,-201],[-74,-236],[-10,-156],[83,-239],[116,-180],[172,-202],[139,-6],[74,-57],[42,-235],[64,-429],[87,-366],[58,-164],[40,-12],[46,2],[44,32],[36,58],[31,95],[-41,447],[-21,361],[-39,279],[35,88],[45,59],[122,-86],[109,-196],[132,-101],[200,25],[220,67],[76,-48],[4,-68],[-37,-245],[-105,-67],[-179,37],[-174,19],[-79,-78],[-47,-90],[-48,-201],[54,-87],[116,-272],[86,-175],[86,-175],[79,-169],[193,-408],[302,-372]],[[188413,747385],[43,475],[-118,594],[-105,79],[-75,-66],[32,-224],[6,-331],[93,-237],[124,-290]],[[264548,776446],[-26,14],[-94,-116],[-167,-39],[-238,41],[-83,-50],[72,-139],[-61,-218],[-194,-297],[-112,-302],[-31,-308],[31,-273],[92,-238],[134,-155],[176,-70],[37,-94],[-104,-118],[-183,-68],[-262,-16],[-265,-132],[-269,-246],[-156,-222],[-44,-196],[-7,-285],[35,-693],[-21,-269],[-115,-493],[-151,-645],[-179,-404],[-34,55],[29,198],[150,645],[23,273],[-15,144],[-51,14],[-59,-125],[-67,-264],[-14,-143],[38,-22],[-28,-180],[-94,-336],[-82,-70],[-68,199],[5,261],[113,521],[-40,102],[65,324],[29,237],[-34,244],[27,225],[88,204],[-27,63],[-141,-81],[-202,-383],[-264,-685],[-204,-299],[-147,87],[-117,-57],[-90,-202],[-96,-99],[-105,4],[-64,-240],[-22,-482],[-104,-275],[-309,-162],[-60,-126],[-5,-178],[50,-231],[1,-464],[-47,-695],[-102,-609],[-158,-522],[-174,-430],[-288,-566],[-5,-113],[142,-443],[59,-329],[29,-658],[-7,-109],[-278,-812],[-4,-116],[297,-1360],[264,-977],[31,-105],[78,-390],[146,-764],[74,-759],[5,-752],[-36,-728],[-74,-702],[-111,-671],[-147,-640],[-153,-506],[-313,-836],[-153,-559],[-159,-451],[-164,-343],[-296,-383]],[[258894,752783],[-763,-704]],[[258131,752079],[-239,-136],[-262,-52],[-287,33],[-156,78],[-34,131],[-62,13],[-83,87],[-105,149]],[[256903,752382],[-116,267]],[[256787,752649],[-126,551],[-137,834],[-120,497],[-106,161],[-95,250],[-85,340],[-42,766]],[[256076,756048],[2,1194]],[[256078,757242],[28,812],[57,431],[-16,330],[-88,228],[-54,283],[-21,339],[-46,230],[-71,121],[-16,170],[40,217],[1,149],[-39,82],[-9,121],[20,160],[-36,475],[10,289],[49,315],[157,567],[51,278],[13,284],[75,359],[206,738],[5,170],[-70,335],[-17,248],[15,332],[66,410],[116,487],[153,389],[190,292],[62,331],[-65,370],[24,548],[114,727],[126,544],[140,362],[96,345],[52,328],[-23,147],[-104,156],[-101,228],[-169,50],[-209,-151],[-29,10],[-107,-20],[-200,-334],[-179,-581],[-130,-239],[-176,-163],[-131,-181],[-85,-201],[-112,-44],[-138,113],[-26,277],[84,440],[129,422],[263,689],[9,165],[65,202],[408,296],[156,235],[54,298]],[[256645,772252],[15,439]],[[256660,772691],[26,123],[60,52],[180,368],[299,684],[269,706],[238,728],[174,411],[110,93],[81,220],[127,679],[95,310],[63,119],[31,-72],[-60,-373],[0,-309],[52,-393],[101,-135],[150,122],[129,259],[108,396],[124,164],[142,-68],[117,25],[93,120],[177,59],[33,-150],[-22,-301],[-56,-144],[-91,11],[-103,-159],[-117,-327],[5,-261],[126,-194],[62,-10],[-1,172],[59,176],[187,319],[18,103],[355,281],[134,179],[37,206],[184,419],[174,134],[239,57],[231,-37],[224,-130],[127,2],[30,137],[190,91],[351,47],[259,194],[166,341],[212,174],[258,6],[350,-121],[442,-248],[358,-338],[472,-677],[125,-69]],[[264564,776862],[-16,-416]],[[262521,776256],[-128,90],[-96,-222],[-96,-484],[-13,-276],[73,-70],[95,30],[119,130],[46,227],[-25,516],[25,59]],[[260965,772687],[-20,-56],[60,-260],[62,-81],[77,-7],[33,84],[-10,174],[-52,109],[-150,37]],[[258538,774215],[-33,63],[-79,-338],[55,-134],[152,-20],[84,59],[14,249],[-14,84],[-46,33],[-133,4]],[[258197,773553],[-109,-140],[-94,-323],[-123,-207],[-152,-92],[-105,-212],[-57,-334],[-100,-298],[-225,-455],[-18,-126],[13,-177],[45,-228],[76,-151],[108,-72],[99,49],[256,515],[23,113],[-32,54],[35,196],[103,338],[77,165],[48,-10],[51,67],[53,144],[-7,132],[-67,121],[4,51],[76,-20],[29,126],[-20,272],[34,111],[86,-50],[52,76],[16,202],[-53,121],[-122,42]],[[265711,780812],[-39,-156]],[[265672,780656],[-80,-14],[-5,-3],[-99,-66],[-119,-156],[-170,-166],[-176,41],[-120,232],[-174,49],[-226,-132],[-201,7],[-175,145],[-334,69],[-39,107],[6,114],[53,118],[29,283],[6,446],[46,315],[84,183],[-130,76],[-344,-33],[-395,-151],[-447,-270],[-485,-95],[-523,80],[-395,-12],[-439,-135],[-76,44],[-276,-180],[-476,-405],[-356,-374],[-296,-423],[-46,-4],[-69,94],[-150,130],[-160,4],[-169,-122],[-173,78],[-175,276],[-160,78],[-143,-122],[-236,-54],[-521,65],[-54,89],[-47,299],[-56,130],[-101,90],[-162,331],[-356,846],[-98,101],[-291,262],[-276,117],[-700,164],[-152,117],[-90,-22],[-464,-456],[-19,-100],[-28,-98],[-76,-159],[-60,-74],[-38,75],[-37,133],[6,293],[50,453],[-28,294],[-107,135],[-46,163],[16,192],[-78,154],[-170,116],[-78,152],[12,187],[-16,128],[-46,69],[-181,-146],[-316,-363],[-215,-323],[-114,-285],[-170,-161],[-225,-38],[-179,-122],[-319,-416],[-238,-214],[-394,-157],[-550,-100],[-460,-270],[-369,-443],[-445,-375],[-521,-307]],[[249052,781234],[-355,-108]],[[248697,781126],[-187,90],[-223,189],[-334,340],[-49,-32],[26,-70],[-7,-58],[-62,-97],[-425,-251],[-57,95],[158,345],[63,256],[-4,236],[71,291],[145,346],[53,234],[-37,122],[-161,199],[-130,14],[-165,-65],[-503,-509],[-51,40],[-161,81],[-40,-14],[-387,-443],[-394,-264],[-935,-378],[-237,-46],[-185,27],[-237,220],[-95,152]],[[244147,782176],[8,163]],[[244155,782339],[110,174],[1165,1366],[719,974],[1192,1826],[307,363],[692,606],[1112,583],[548,324],[475,353],[304,271],[132,189],[106,88],[81,-12]],[[251098,789444],[90,71]],[[251188,789515],[69,55],[271,469],[32,38],[258,132],[84,224],[51,268],[124,446],[85,183],[21,202],[-43,221],[13,208],[67,197],[317,277],[867,504],[30,-63],[-152,-389],[-161,-739],[-57,-20],[-52,-91],[-48,-161],[123,11],[294,183],[134,93],[35,181],[45,363],[63,201],[80,38],[54,175],[26,311],[65,184],[102,59],[44,108],[-7,152],[27,410],[20,192],[90,280],[125,87],[173,-17],[119,-142],[65,-267],[17,-220],[-29,-174],[-168,-315],[-479,-755],[-50,-210],[42,-110],[27,-160],[58,-20],[105,139],[46,125],[-14,110],[38,142],[89,175],[71,52],[51,-70],[86,30],[120,131],[215,68],[42,6],[263,507],[81,296],[1,255],[-107,264],[-214,274],[-62,295],[-5,147],[-42,188],[45,70],[131,-48],[110,25],[90,98],[162,19],[132,-16],[158,-236],[568,-230],[211,-122],[260,-124],[66,-41],[44,-136],[96,-57],[149,20],[157,-43],[266,-209],[244,-140],[386,19],[211,59],[336,-97],[188,0],[190,166],[164,43],[138,-78],[60,-101],[112,-145],[338,70],[75,-40],[100,-158],[17,-102],[53,-157],[128,-301],[30,-104],[88,-125],[71,-292],[54,-460],[61,-282],[67,-103],[29,-119],[61,-481],[153,-554],[227,-540],[302,-528],[377,-351],[453,-174],[403,-39],[353,95],[469,52],[584,7],[302,-60],[21,-130],[-56,-187],[-133,-244],[-14,-161],[-6,-208],[-107,-277],[-56,-166],[18,-116],[-31,-156],[-79,-194],[46,-260],[172,-325],[209,-262],[248,-200],[155,-207],[62,-214],[69,-117],[75,-21],[69,-100],[61,-177],[-66,-314],[-194,-449],[-87,-290],[20,-131],[-165,-492],[-10,-193],[69,-134],[263,-191],[86,-157],[68,-24],[51,111],[104,50],[157,-9],[148,-79],[138,-148],[49,-152],[-41,-158],[-71,-57],[-214,24],[-120,-81],[-71,-168],[-21,-448],[59,-192],[34,1],[48,91],[62,181],[66,21],[72,-141],[-77,-290],[-227,-438],[-27,-64],[-31,-74],[0,-197],[189,-355],[70,34],[46,88],[73,108],[11,2],[235,51]],[[247901,783375],[-29,-82],[14,-82],[106,-100],[41,43],[-14,82],[-69,120],[-49,19]],[[248185,782565],[179,164],[-20,79],[-64,7],[-370,-333],[-83,-133],[-26,-111],[66,-15],[159,80],[84,85],[8,90],[67,87]],[[248481,783106],[33,207],[-22,50],[-92,-34],[-207,-119],[-4,-86],[200,-52],[92,34]],[[248860,783842],[2,118],[-35,44],[-70,-30],[-46,-105],[-22,-182],[35,-44],[91,93],[45,106]],[[255398,794439],[-83,-170],[30,-398],[53,-142],[71,5],[91,152],[159,81],[227,8],[120,57],[11,103],[83,59],[34,92],[14,179],[-134,106],[-283,33],[-225,-44],[-168,-121]],[[253025,789117],[795,625],[88,177],[-11,91],[44,138],[267,335],[-39,50],[-248,-103],[-464,-325],[-1087,-891],[-128,-140],[-20,-71],[86,0],[1,-88],[-85,-176],[11,-121],[107,-66],[209,58],[310,182],[110,88],[18,49],[-101,29],[14,98],[123,61]],[[256137,786015],[138,131],[-146,199],[-235,100],[-323,0],[-322,-69],[-583,-304],[-206,-191],[-466,-689],[-130,-325],[-19,-254],[117,-183],[388,-124],[19,85],[-17,40],[-57,50],[103,234],[31,-94],[-10,-261],[-82,-188],[-83,-132],[-1,-175],[83,-218],[102,50],[122,320],[338,506],[-10,114],[51,191],[573,652],[113,201],[-23,77],[-122,109],[18,35],[639,113]],[[256416,793926],[190,41],[-12,139],[-114,242],[-97,118],[-81,-5],[-47,-34],[-13,-63],[60,-179],[3,-91],[-38,-84],[37,-56],[112,-28]],[[262206,787970],[27,88],[-125,146],[-345,147],[-173,-13],[-153,-80],[-134,-145],[-55,-113],[23,-80],[233,-87],[535,85],[167,52]],[[265711,780812],[301,152],[195,34],[131,-137],[86,-191],[10,-204],[-62,-249],[-8,-220],[47,-191],[162,-101],[276,-10],[146,-54],[52,-158],[56,-25],[506,-72],[189,-71],[58,-102],[313,-135],[1204,-333],[364,42],[487,110],[155,-184],[70,-21],[113,28],[688,95],[89,-179],[339,-171],[222,-14],[289,-17],[542,-83],[132,-61],[10,-195],[1,-80],[42,-2],[64,92],[107,34],[75,83],[43,133],[85,24],[197,-172],[8,-93],[-274,-204],[30,-87],[16,-51],[74,-28],[6,-92],[-89,-109],[84,-67],[262,156],[147,8],[406,-120],[185,0],[111,100],[15,90],[49,58],[33,-24],[12,-120],[-7,-217],[175,-79],[359,60],[215,-4],[202,0],[35,-51],[51,-138],[153,-247],[51,-111],[47,-252],[112,-152],[36,-136],[6,-117],[34,-119],[100,-267],[131,-189],[71,-163],[26,-193],[70,-76],[114,42],[48,81],[-7,162],[43,-31],[71,-274],[-9,-432],[19,-249],[98,-349],[131,-96],[89,-135],[259,-97],[27,28],[-50,225],[26,59],[87,13],[148,-32],[96,-111],[44,-190],[-24,-244],[-171,-248],[-27,-212],[38,-132],[42,-24],[48,83],[71,-41],[95,-166],[24,-134],[-44,-101],[-169,-58],[-7,-101],[179,-220],[138,-295],[71,-29],[40,-95],[8,-158],[74,-106],[205,-119],[79,-304],[43,-182],[36,-206],[61,-22],[47,97],[1,183],[101,72],[10,-97],[-58,-222],[13,-177],[85,-131],[-109,-46],[-305,40],[-137,180],[-42,64],[-93,21],[-29,63],[42,183],[-26,50],[-187,-43],[-188,-130],[-121,-159],[1,-185],[80,-191],[161,-199],[66,-338],[-29,-476],[-81,-321],[-133,-166],[-392,119],[-651,404],[-368,359],[-158,489],[-57,34],[-333,-158],[-178,-202],[-154,-287],[-44,90],[67,468],[28,291],[-12,116],[-66,94],[-123,72],[-162,-40],[-246,-218],[-55,26],[7,75],[254,357],[83,197],[1,182],[37,162],[73,144],[-18,65],[-109,-14],[-55,-61],[-117,-256],[-165,25],[-21,58],[45,147],[-36,91],[-117,38],[-37,167],[-39,35],[-145,116],[-13,314],[-49,252],[-85,191],[-10,191],[85,311],[-31,44],[-287,41],[-543,37],[-283,-63],[-25,-164],[64,-122],[151,-81],[107,-138],[36,-121],[100,-121],[117,-257],[133,-392],[100,-164],[107,-19],[60,-39],[-9,-393],[48,-243],[114,-224],[61,-248],[-7,-436],[8,-429],[-55,-278],[-151,-321],[-97,-268],[-42,-215],[-81,-142],[-120,-71],[-124,-151],[-128,-232],[-83,-289],[-39,-345],[-104,-354],[-171,-366],[-67,-415],[38,-466],[5,-2006],[32,-500],[-21,-493],[-74,-488],[-125,-382],[-177,-277],[-176,-204],[-174,-131],[-164,-222],[-153,-314],[-258,-281],[-364,-248],[-177,-92],[-115,-60]],[[271063,760046],[-41,125],[-81,251],[-153,1173],[-224,2097],[-185,1299],[-146,501],[-199,382],[-252,261],[-191,114],[-132,-35],[-208,-213],[-388,-186],[-159,-123],[-92,-163],[-107,-96],[-124,-29],[-13,-44],[95,-61],[1,-159],[-262,-715],[-60,-162],[-159,-60],[-131,-140],[-134,-359],[-129,-91],[-187,33],[-313,219],[-188,218],[-63,219],[-4,262],[55,307],[-5,246],[119,515],[159,182],[233,43],[128,81],[24,122],[72,86],[120,51],[101,326],[83,601],[98,329],[69,58],[65,-20],[4,-72],[268,384],[99,267],[6,274],[25,798],[32,516],[38,234],[-15,602],[-78,496],[-301,545],[-43,181],[9,192],[62,203],[134,47],[235,-156],[40,38],[-66,92],[-38,182],[-11,270],[-31,150],[-49,28],[-131,309],[-18,160],[15,149],[-50,150],[-176,236],[-320,240],[-764,455],[-138,176],[-189,104],[-240,31],[-152,138],[-65,244],[-106,221],[-148,197],[-233,128],[-320,60],[-337,212],[-356,364],[-199,110]],[[264564,776862],[82,-7],[39,53],[2,66],[-36,78],[23,287],[-21,83],[139,448],[120,114],[139,-42],[88,-96],[36,-151],[43,-54],[86,-5],[48,-22],[28,12],[44,84],[295,-38],[1006,-226],[138,36],[78,78],[19,121],[-64,115],[-263,240],[-80,158],[-21,150],[38,141],[-56,128],[-150,113],[-328,33],[-58,114],[26,115],[97,145],[4,214],[-31,122],[-44,366],[-71,247],[-104,261],[-41,103],[-57,132],[-85,78]],[[268485,777631],[-131,-27],[-76,-90],[-49,-58],[-81,-161],[-37,-173],[74,-133],[185,-93],[62,29],[90,41],[174,392],[-5,87],[-70,90],[-136,96]],[[267975,777813],[-142,333],[-78,98],[-211,57],[-43,-63],[54,-149],[-9,-78],[-87,-116],[-168,-156],[-125,-36],[-85,83],[-57,-10],[-11,-154],[26,-72],[118,-139],[257,-75],[396,-11],[195,99],[68,195],[-27,132],[-71,62]],[[267142,778546],[57,112],[38,282],[-76,231],[-192,182],[-221,111],[-248,39],[-3,1],[-100,-131],[52,-302],[110,-351],[167,-400],[134,-105],[65,33],[55,128],[31,171],[35,37],[19,20],[77,-58]],[[266198,779591],[-54,-6],[-21,-119],[30,-141],[139,-231],[39,33],[14,88],[-11,143],[-49,125],[-87,108]],[[266298,779687],[-1,127],[-18,62],[-67,220],[-4,277],[77,271],[-14,167],[-105,64],[-98,-33],[-163,-288],[108,-254],[34,-169],[38,-187],[56,-143],[71,-85],[86,-29]],[[265475,776530],[-356,82],[-17,-98],[210,-298],[129,-112],[80,11],[62,60],[42,112],[-15,131],[-101,158],[-34,-46]],[[269549,776689],[71,-133],[558,-84],[305,-145],[321,-264],[281,-175],[239,-85],[187,-139],[133,-192],[325,-217],[42,-125],[57,-49],[73,27],[578,742],[170,36],[1,-74],[-292,-440],[-105,-45],[-56,4],[-150,-200],[-2,-50],[86,28],[89,-51],[92,-130],[148,66],[203,263],[192,387],[257,798],[-23,56],[-232,1],[-38,80],[72,176],[22,161],[-28,145],[-65,-16],[-102,-178],[-78,-251],[-91,-477],[-22,17],[-96,267],[-10,203],[38,233],[-34,137],[-107,42],[-51,105],[5,168],[-38,136],[-82,104],[-135,-13],[-187,-131],[-144,-212],[-100,-293],[-91,10],[-81,313],[-86,128],[-91,-58],[-55,54],[-18,167],[-104,51],[-191,-66],[-121,-95],[-51,-124],[-50,-21],[-48,81],[-82,-32],[-114,-143],[-33,-111],[67,-152],[-11,-60],[110,-64],[16,-92],[-46,-163],[-64,8],[-81,177],[-67,62],[-55,-53],[-48,24],[-43,101],[-85,19],[-128,-62],[-77,34],[-26,131],[-54,102],[-82,72],[-25,156],[30,239],[-67,82],[-165,-75],[-112,-89],[-57,-104],[-84,-10],[-110,83],[-94,-17],[-78,-116],[-76,17],[-73,150],[-70,33],[-68,-82],[-42,-132],[-17,-180],[172,-159],[549,-247]],[[273020,774874],[-62,25],[-261,-195],[-24,-81],[13,-67],[50,-55],[75,15],[168,205],[41,153]],[[277297,770559],[-4,75],[47,230],[-39,100],[-123,41],[-57,-43],[10,-125],[47,-122],[119,-156]],[[229370,655650],[-82,-474],[-225,-1134],[-208,-1771],[-208,-1806],[-92,-1310],[-105,-2008],[-21,11],[-28,977],[46,453],[25,620],[25,752],[-76,268],[-101,46],[-66,193],[-13,239],[25,162],[66,9],[163,-262],[46,-2],[102,958],[-31,268],[-9,802],[166,373],[-32,174],[-146,170],[-60,165],[83,978],[-2,246],[-17,144],[-135,190],[92,178],[114,345],[74,112],[29,-7],[89,-223],[98,-81],[91,-4],[34,95],[34,638],[30,70],[98,-44],[97,-201],[30,-309]],[[212361,851285],[154,42],[307,-181],[402,236],[45,78],[5,235],[45,118],[56,46],[123,-114],[523,-3],[19,-172],[68,-155],[327,-388],[33,-179],[-127,-303],[-68,-73],[-137,30],[-104,-101],[-94,-183],[-52,-187],[50,-135],[122,-130],[-4,-146],[-321,-291],[-126,57],[-360,-314],[-79,-162],[-61,-409],[2,-516],[33,-161],[66,-110],[76,-43],[18,-92],[-161,-533],[-169,-241],[-84,-15],[37,206],[113,290],[-21,292],[-126,198],[-111,38],[-194,52],[-251,-47],[-468,-427],[-185,-116],[-97,13],[-8,86],[102,176],[387,567],[-39,114],[-296,-36],[-73,85],[29,99],[266,329],[65,107],[5,100],[-29,140],[-75,139],[9,153],[143,270],[97,359],[19,199],[-19,90],[-118,5],[97,379],[46,360],[82,135],[86,140]],[[191458,851578],[-50,129],[-38,120],[-10,148],[35,258],[-456,516],[-93,157],[-17,154],[59,195]],[[190888,853255],[238,-4],[124,-76],[-30,-213],[100,-22],[295,171],[407,433],[722,1205],[358,407],[364,273],[882,832],[443,352],[113,194],[160,140],[-61,120],[-5,68],[266,348],[229,229],[210,163],[413,160],[384,16],[243,-78],[379,-526],[578,75],[90,-40],[-187,-575],[17,-115],[301,-1],[585,286],[885,226],[740,-230],[1097,-229],[886,-281],[1174,-126],[574,-43],[1634,-174],[9,-111]],[[205505,856109],[-67,-115],[-1854,65],[-1375,127],[-688,116],[-379,-69],[-49,47],[-54,183],[-229,51],[-71,-21],[-65,-99],[-79,-185],[-93,-353],[-49,-75],[-337,-72],[-703,-252],[-1498,-241],[-531,-30],[-449,-103],[-166,24],[-194,146],[-127,4],[-484,-259],[-1203,-456],[-522,-340],[-560,-523],[-169,-203],[-186,-341],[-102,-308],[14,-99],[182,-139],[-18,-185],[-99,-82],[-725,-1],[-207,-99],[-84,-181],[-27,-222],[-69,-195],[-75,-10],[-105,696],[-74,17],[-112,-61],[-130,-161],[-127,-423],[-108,-104]],[[297500,808086],[-244,-250],[-350,-631],[-58,-46],[-331,-452],[-324,-401],[-247,-304],[4,121],[177,467],[368,500],[203,543],[38,13],[66,-11],[55,123],[6,90],[-39,231],[-21,67],[-61,11],[-333,-479],[-288,-492],[-491,-935],[-72,-64],[-88,-3],[-390,-1083],[-81,-270],[-48,-568],[20,-278],[32,-236],[30,-131],[-54,-13],[-68,149],[-31,-42],[17,-384],[49,-237],[55,-381],[-50,-147],[-239,-293],[-290,-245],[-73,-176],[-115,-283],[-211,-29],[-189,117],[55,107],[283,96],[237,510],[372,235],[142,186],[-23,156],[-121,125],[-46,180],[-8,148],[59,169],[108,1526],[-134,-292],[-80,-272],[-28,-175],[25,-148],[-5,-88],[-36,-98],[-196,120],[-287,-468],[-73,26],[78,263],[416,1620],[302,983],[-30,58],[-154,-3],[-12,76],[72,257],[-42,53],[36,108],[696,570],[731,962],[489,470],[376,417],[225,39],[4,-112],[-230,-359],[74,-47],[419,264],[218,41],[54,-46],[-23,-107],[-141,-179],[-601,-584],[-67,-163],[54,-107],[86,-34],[638,530],[244,60],[93,-81],[-79,-138],[-504,-422]],[[514220,815103],[160,203],[19,-54],[163,-145],[505,-214],[208,25],[136,133],[201,305],[335,314],[166,217],[93,215],[-13,197],[-89,172],[-172,104],[-216,32],[-330,-177],[-382,-337],[431,543]],[[515585,817016],[14,90],[9,-80],[95,-171],[506,-120],[88,-272],[8,-460],[-208,-341],[-833,-1039],[-498,234],[-767,311],[-28,47],[249,-112]],[[514110,816063],[-29,-25],[1,172],[-27,267],[16,343],[201,17],[288,256],[16,358],[-230,327],[-131,297],[-5,20],[489,-592]],[[514986,819218],[-8,111],[17,-37],[32,-656],[-4,4]],[[515610,818155],[103,11],[15,-109],[-118,98]],[[515738,817985],[3,-20],[-9,-16],[6,36]],[[606769,848699],[-60,-12],[-128,95],[-165,53],[-80,78],[-61,101],[-27,188],[4,567],[-85,228],[-199,67],[-568,309],[-131,-53],[-1083,1439],[-251,459],[-278,262],[-449,222],[-1,69],[40,113],[-51,727],[436,-524],[179,-169],[141,-29],[-35,-222],[0,-112],[136,-213],[218,-126],[75,-354],[122,-44],[146,72],[15,88],[-127,318],[32,59],[229,-110],[147,0],[631,-397],[219,-50],[0,293],[81,165],[-21,89],[-299,223],[-10,119],[-108,165],[-10,90],[55,48],[173,13],[-77,685],[-218,-21],[-134,230],[-114,100],[-142,72],[-176,9],[-198,-52],[-170,-119],[-222,-319],[-84,72],[-15,104],[52,311],[41,100],[305,265],[178,214],[62,229],[-53,227],[-101,209],[14,113],[549,-9],[270,111],[132,16],[39,-101],[17,-94],[55,-93],[247,-151],[120,-6],[56,70],[2,111],[-11,95],[-146,323],[54,41],[110,-40],[309,-246],[335,71],[-21,-125],[-210,-353],[-256,-176],[-191,13],[-724,223],[-121,-51],[-24,-112],[173,-195],[352,-283],[202,-234],[855,-1227],[507,-653],[397,-530],[657,-303],[40,-118],[-93,-206],[84,-319],[13,-170],[-373,-159],[-112,-210],[-51,-265],[18,-685],[-37,-76],[-72,75],[-244,428],[-148,78],[-53,-113],[219,-403],[17,-117]],[[607511,849264],[-65,-30],[-192,30],[-635,51],[-72,-128],[222,-381],[0,-107]],[[717507,757510],[-29,-144],[-373,-82],[-400,-370],[-398,-350],[-53,-154],[6,-210],[-382,-747],[-337,-236],[-224,-110],[-1050,-80],[-315,28],[-282,103],[-955,597],[-404,166],[-288,62],[-182,-14],[-99,362],[-33,274],[30,150],[629,165],[818,454],[605,277],[626,205],[408,135],[549,-109],[414,298],[1055,147],[514,42],[-271,-366],[-90,-179],[49,-200],[462,-114]],[[236909,794596],[-292,26],[-272,342],[-241,229],[-97,-33],[-394,-367],[-262,-62],[-109,248],[-7,247],[65,171],[68,178],[5,181],[-30,270],[44,188],[172,173],[158,30],[158,30],[284,111],[131,263],[-15,480],[-189,124],[-14,145],[-1,10],[205,188],[87,219],[241,440],[366,292],[126,249],[-14,104],[-105,29],[-157,-55],[-141,-102],[-320,-429],[-207,-176],[-340,-197],[-86,51],[62,418],[-101,471],[148,100],[253,-23],[130,-87],[-33,-216],[42,-52],[89,4],[105,53],[134,163],[-84,296],[132,164],[652,197],[79,237],[-45,257],[-284,859],[53,129],[124,108],[73,-28],[138,-336],[23,-464],[95,-287],[125,-393],[291,-78],[95,-232],[-56,-271],[49,-234],[-131,-139],[-19,-77],[186,-285],[356,-108],[109,-285],[-28,-124],[256,-321],[30,-87],[-17,-534],[-50,-175],[-75,-116],[-74,-74],[-27,24],[39,122],[15,192],[-202,395],[-109,374],[-159,81],[75,293],[-7,83],[-307,74],[-304,-69],[-479,-159],[-274,-212],[-68,-93],[-57,-236],[33,-81],[383,82],[87,-51],[88,-278],[153,-183],[161,-206],[306,201],[143,-80],[86,-150],[12,-194],[76,-78],[392,-83],[69,-69],[-120,-174],[-221,-178],[-189,108],[-124,-62],[-40,-193],[-592,-744],[-408,-403],[-80,-80]],[[236940,796530],[-239,11],[11,-132],[145,-463],[207,-11],[73,-198],[103,-121],[181,33],[62,452],[166,363],[-5,132],[-187,77],[-295,-143],[-222,0]],[[255471,801085],[-212,-160],[-105,-130],[3,-103],[98,-159],[-59,-490],[47,-435],[-61,-450],[-87,-324],[20,-431],[-60,-244],[-347,-42],[-176,-148],[-104,-266],[-91,27],[-78,293],[-75,114],[-55,305],[-78,205],[-30,-30],[15,-327],[-44,-155],[-164,-203],[-127,33],[-106,48],[-187,98],[-36,179],[74,228],[136,355],[278,115],[56,8],[8,119],[-56,110],[-224,-79],[-156,-14],[-115,-377],[-104,-163],[-127,-112],[-112,-60],[-142,-54],[-111,162],[-51,232],[6,88],[156,-133],[111,-4],[36,117],[2,226],[-62,453],[-4,357],[-70,8],[-144,-247],[-106,69],[-129,293],[14,169],[49,118],[180,-222],[153,137],[24,61],[-26,208],[14,145],[157,312],[-45,537],[32,198],[344,924],[180,239],[182,138],[245,-224],[239,-9],[303,-447],[114,-83],[75,13],[28,54],[-29,111],[-144,282],[-208,234],[-16,141],[102,9],[111,-93],[311,-368],[91,-148],[80,-312],[-5,-130],[-90,-8],[-30,-93],[-19,-216],[13,-191],[-48,-215],[60,17],[123,203],[101,44],[136,-204],[140,-128],[8,-105]],[[254015,801444],[0,81],[-98,64],[-73,0],[-38,-18],[-9,-154],[-17,-192],[-42,-209],[-94,-136],[-86,-155],[-77,-127],[-4,-64],[90,-109],[111,0],[154,-173],[89,-91],[18,64],[-22,118],[-60,155],[-68,209],[0,109],[30,209],[102,191],[60,82],[34,146]],[[254486,799229],[29,249],[-51,62],[-81,-85],[-186,-148],[-4,-288],[253,31],[40,179]],[[217432,848062],[128,46],[372,15],[31,-237],[-28,-379],[-241,-345],[-291,-656],[-260,-402],[-368,-366],[-241,-192],[-162,-336],[34,-353],[572,-368],[145,-207],[-79,-118],[-259,-68],[-209,-281],[-43,-455],[136,-356],[103,-173],[-219,-353],[-241,-296],[-137,-301],[-377,-151],[-76,-171],[-43,-225],[-119,-441],[-108,-229],[-6,-185],[-72,-112],[-218,-119],[-159,-142],[-790,-533],[-115,-193],[-31,-231],[-109,-192],[-185,62],[-120,235],[-138,-31],[-179,-333],[-87,-289],[-23,-185],[-86,-7],[-44,163],[45,492],[29,291],[11,229],[-115,122],[14,280],[144,182],[138,-112],[108,382],[65,853],[66,525],[102,-23],[-30,-1019],[80,-639],[204,-41],[322,719],[189,149],[170,46],[112,150],[42,186],[144,80],[154,258],[72,588],[-29,405],[-82,283],[-256,219],[-183,104],[55,311],[79,333],[-76,207],[-189,224],[-176,94],[-186,-20],[-38,408],[119,510],[277,314],[267,358],[56,195],[-53,235],[4,302],[143,81],[327,169],[231,403],[651,782],[156,365],[-6,267],[274,411],[171,-113],[-62,-505],[117,-233],[162,162],[125,370],[134,66],[45,-261],[-121,-726],[1,-184],[86,-138],[229,176],[24,218]],[[289583,761276],[46,-118],[-184,-146],[-443,-25],[-379,362],[-2,93],[101,54],[553,-88],[308,-132]],[[72302,859052],[-382,-306],[-337,-181],[-392,-127],[-452,-222],[-80,-211],[21,-260],[-65,-268],[-12,-172],[-85,-132],[-200,-51],[-616,-64],[-2323,-576],[-383,250],[-90,471],[189,479],[1628,735],[742,257],[1846,508],[385,-63],[320,-6],[286,-61]],[[66775,847828],[-167,-194],[-1,-149],[71,-111],[8,-177],[-132,-344],[-250,-389],[-80,-36],[90,328],[34,355],[-127,285],[-549,227],[-685,259],[-202,52],[-429,255],[-144,400],[186,403],[497,110],[997,-469],[842,-575],[41,-230]],[[166826,736451],[-64,-400],[-188,-72],[-132,151],[-90,529],[-72,180],[19,308],[203,464],[203,124],[68,68],[71,0],[49,-280],[-67,-1072]],[[598121,419406],[-85,-383],[-64,-291],[-58,-34],[-144,337],[1,604],[28,285],[90,127],[76,-44],[84,-268],[72,-333]],[[734324,787910],[-169,-195],[-151,44],[-687,808],[-635,638],[-392,364],[-500,213],[-516,271],[-490,494],[-155,199],[33,223],[399,-2],[258,71],[445,51],[173,204],[97,418],[-199,337],[-191,400],[-14,320],[84,257],[15,861],[135,680],[328,615],[439,455],[345,138],[457,283],[235,287],[-58,466],[-354,537],[-344,522],[-345,132],[-178,20],[-145,256],[-192,270],[-167,38],[-146,207],[-171,312],[-3,105]],[[731565,799209],[77,50],[602,-272],[366,146],[417,528],[204,36],[-6,-141],[-397,-407],[-60,-216],[-112,-194],[-75,-172],[260,-303],[1291,-1456],[202,-455],[-89,-211],[-498,-230],[-792,-542],[-243,-112],[-465,-384],[-264,-574],[-76,-561],[83,-600],[269,-1061],[446,-159],[404,-78],[-34,-140],[-626,-119],[-238,-298],[-42,-210],[146,-153],[295,-259],[391,-271],[475,-404],[321,-163],[463,-194],[374,-317],[131,-234],[-247,-431],[-90,-241],[-104,-497]],[[254652,766252],[-24,-765],[-138,-426],[-132,-342],[-94,31],[-75,743],[-75,532],[96,481],[184,497],[167,9],[102,-94],[-11,-666]],[[301559,899401],[49,185],[134,207],[116,371],[338,806],[42,489],[-92,332],[148,161],[480,-46],[488,-153],[105,-161],[141,-259],[297,-329],[54,-208],[116,-225],[295,-243],[305,-97],[180,66],[215,-98],[737,-255],[581,-358],[319,-152],[365,-125],[66,-201],[-169,-260],[-330,-161],[0,-200],[258,-57],[361,-16],[59,13],[151,100],[261,14],[91,-266],[-332,-418],[-364,-268],[-112,-131],[-52,-173],[-73,-158],[-79,-50],[-143,92],[-31,162],[-101,-19],[-132,-134],[-29,-93],[-77,-9],[-334,303],[-238,24],[-581,-226],[-532,-150],[-398,415],[-172,143],[-104,-40],[-104,-180],[-57,-156],[-93,-127],[-390,-285],[-703,-975],[-339,-221],[-235,92],[-29,109],[277,217],[116,346],[-39,402],[136,379],[-15,246],[9,198],[56,240],[-103,242],[-187,272],[-208,578],[-369,479]],[[600124,532633],[80,94],[67,404],[96,175],[63,6],[53,-130],[56,-1043],[8,-145],[49,-1673],[-5,-558],[36,-1026],[-13,-2405],[249,-1574],[323,-1153],[309,-519],[316,-386],[124,-779],[-34,-1116],[-143,-668],[-173,-116],[-100,253],[-308,1693],[-257,825],[-248,542],[-117,47],[-129,380],[-113,761],[-208,578],[-200,612],[-80,676],[-63,216],[-117,468],[-70,1047],[28,593],[86,962],[85,1371],[19,678],[65,935],[4,57],[123,75],[139,-157]],[[217974,876160],[-69,118],[3,229],[-102,315],[-231,122],[-227,23],[-190,473],[-257,-23],[-205,58],[-126,225]],[[216570,877700],[-38,470],[-118,364],[-17,63],[-84,74],[-129,196],[38,253],[224,171],[402,161],[354,272],[161,414],[169,195],[148,30],[67,41],[76,90],[0,178],[100,168],[252,-75],[170,-147],[84,-128],[128,-17],[74,125],[-110,307],[157,140],[385,-356],[156,51],[56,122],[147,20],[293,398],[129,-62],[158,121],[260,36],[170,-461],[-79,-564],[-271,-319],[-146,-129],[-113,-22],[-148,43],[-184,14],[-159,-67],[-55,-143],[-11,-148],[-137,-420],[27,-411],[120,-246],[150,-47],[340,-267],[1,-301],[-274,-269],[-126,-87],[-87,-225],[101,-326],[-14,-246],[-307,-283],[-422,-279],[-254,98],[-30,227],[108,266],[89,367],[-24,373],[-140,218],[-94,-103],[-55,-390],[-106,-320],[-74,-300],[-36,-384],[-48,-64]],[[232574,885837],[196,137],[1274,-135],[1371,-165],[593,-207],[333,-81],[345,-47],[397,-120],[68,-224],[192,-58],[278,-56],[306,-24],[275,-70],[63,-282],[-242,-376],[-397,-95],[-470,205],[-657,204],[-1220,81],[-562,-124],[-471,-11],[-313,-1],[-153,165],[-296,252],[-783,391],[-127,641]],[[555611,828992],[-157,23],[68,135],[126,-46],[110,-133],[-147,21]],[[555929,828945],[-41,6],[246,46],[546,-14],[-841,-586],[-307,-247],[77,86]],[[554843,827415],[-14,-27],[-223,-222],[-164,-124],[401,373]],[[554257,826870],[-144,-140],[-15,-8],[159,148]],[[553800,826569],[-60,-31],[-45,43],[105,-12]],[[296185,766726],[-88,-555],[99,-1053],[38,-561],[-33,-140],[-50,316],[-49,325],[-75,824],[-47,155],[-11,309],[20,647],[249,522],[-63,659],[-65,225],[-121,1222],[122,812],[47,952],[79,380],[22,105],[63,63],[17,-167],[27,-263],[33,-248],[31,-8],[82,176],[106,347],[37,121],[159,303],[119,30],[45,-188],[-64,-218],[-45,-44],[-99,-97],[-83,-170],[56,-222],[-11,-267],[-50,-986],[-54,-713],[-36,-137],[-99,-127],[19,-207],[75,-80],[3,-285],[-23,-72],[-35,23],[-62,-236],[-47,-454],[-106,-509],[-132,-509]],[[178856,702463],[-12,-306],[-227,-498],[-253,49],[-340,921],[-418,769],[23,411],[120,117],[172,-15],[179,-400],[622,-774],[134,-274]],[[174114,879379],[35,-138],[-148,-231],[-540,-194],[-512,-2],[-130,116],[-895,536],[-83,155],[-75,67],[-102,128],[-316,48],[-422,111],[-447,162],[-2,226],[178,312],[611,502],[678,339],[277,-154],[237,-460],[420,-367],[373,-122],[151,-71],[15,-80],[277,-314],[97,-43],[268,-433],[55,-93]],[[297313,261804],[-61,341],[-13,458],[56,370],[171,396],[176,273],[201,-88],[203,-216],[178,-436],[112,-496],[-85,-183],[-271,88],[-414,-557],[-253,50]],[[829457,701858],[-87,-184],[-152,-618],[-75,-226],[-169,-150],[-456,-283],[-110,-167],[-122,-70],[-34,127],[58,207],[-31,178],[-107,87],[-150,-164],[-61,-135],[-45,167],[95,247],[128,132],[265,-220],[41,105],[-17,224],[-145,550],[-223,26],[-343,-8],[-177,-97],[-64,-363],[-149,-155],[-81,58],[118,83],[64,183],[33,378],[70,141],[222,37],[341,162],[169,-26],[143,-398],[135,-580],[181,-299],[186,93],[26,167],[64,176],[56,181],[29,173],[-44,191],[-367,132],[-203,228],[-45,396],[111,-123],[126,6],[204,412],[152,407],[121,-32],[222,-175],[103,25],[-167,360],[-164,608],[15,489],[142,130],[75,-146],[103,-621],[153,-306],[308,-120],[239,-509],[0,-106],[-74,-202],[-154,-757],[-174,-515],[-97,-75],[-7,281],[-70,294],[-134,-11]],[[779963,809570],[-46,-613],[-61,-419],[-50,-497],[-127,-703],[10,-214],[-503,-1031],[-99,-411],[-73,-474],[78,-200],[-2,-129],[-79,-208],[-206,-176],[-491,-263],[-38,222],[39,371],[96,353],[54,526],[135,2162],[-34,838],[200,598],[128,239],[-40,287],[-22,150],[309,531],[94,243],[96,79],[535,-967],[97,-294]],[[756434,803097],[-225,658],[313,366],[549,386],[677,453],[287,244],[199,-118],[71,-179],[-34,-404],[272,-662],[421,-376],[89,-34],[-14,-183],[197,-112],[102,-158],[-170,-155],[-236,-25],[-335,-312],[-213,-315],[-294,-527],[-531,-271],[-334,-28],[-286,283],[-324,524],[-125,507],[-56,438]],[[580912,454615],[-59,-465],[-241,-1075],[-359,-1001],[-339,-1069],[-204,-732],[-289,-62],[-90,6],[-107,8],[-47,-218],[16,-257],[-99,-121],[-268,15],[-122,313],[-26,507],[5,751],[115,805],[767,1969],[621,1505],[119,-22],[121,-23],[345,-471],[141,-363]],[[868915,772068],[-186,-644],[-359,-1367],[-427,-584],[-262,-491],[-249,234],[-104,219],[8,141],[-202,260],[-276,405],[42,644],[68,693],[-260,624],[6,309],[-34,517],[127,298],[56,132],[442,246],[477,3],[493,-193],[405,-391],[231,-481],[4,-551],[0,-23]],[[790472,579248],[-106,188],[-189,283],[-174,15],[-399,327],[-326,634],[-99,694],[-270,91],[-311,372],[-248,472],[-143,545],[-86,487],[-69,506],[89,253],[308,-90],[385,-327],[331,-849],[276,-1128],[99,-477],[92,-150],[283,49],[195,-134],[78,-501],[-1,-405],[9,-73],[77,-107],[156,-155],[9,-169],[20,-136],[70,-184],[-56,-31]],[[779868,723364],[-20,-176],[-64,-213],[0,-427],[-51,-493],[-213,-192],[-290,138],[-257,360],[-563,21],[-748,201],[-364,359],[-353,672],[-140,344],[85,213],[225,5],[152,42],[50,193],[-84,465],[-47,487],[136,197],[333,209],[412,-96],[473,-303],[481,-739],[383,-725],[464,-542]],[[697884,907635],[-294,63],[-188,-27],[-262,94],[-114,313],[97,200],[357,30],[512,-261],[287,-204],[0,-162],[-106,-58],[-289,12]],[[620169,705142],[-180,381],[-250,727],[-91,1169],[-21,858],[49,335],[90,85],[341,-1110],[343,-583],[292,-545],[71,-369],[-46,-480],[5,-460],[-163,-135],[-243,64],[-197,63]],[[621884,698996],[-44,-451],[-195,-451],[-147,-24],[-198,132],[-110,157],[-143,92],[-264,277],[-124,429],[-40,563],[26,347],[53,61],[66,237],[-19,541],[109,289],[118,116],[90,-237],[382,-1365],[279,-451],[161,-262]],[[598396,690944],[-55,135],[-2,647],[0,205],[53,746],[115,542],[165,269],[12,7],[90,50]],[[598774,693545],[74,-244],[-52,-888],[-60,-1269],[-67,-189],[-168,-7],[-105,-4]],[[576380,849683],[137,125],[62,56]],[[576579,849864],[64,-237],[341,-61],[419,54],[299,-241],[345,-521],[145,-413],[55,-355],[-187,-323],[-305,48],[-225,164],[-99,146],[17,98],[-219,314],[-345,167],[-108,-18],[-44,-7],[-352,1004]],[[299848,792175],[-219,90],[-89,71],[-213,555],[-178,263],[-67,291],[111,382],[368,130],[440,-187],[257,-249],[170,-130],[195,-293],[5,-291],[-19,-251],[-116,-254],[-283,-186],[-362,59]],[[285951,757842],[-138,-730],[-233,-565],[-33,70],[92,441],[60,334],[97,3],[100,470],[55,-23]],[[286446,756493],[-86,254],[-20,781],[-101,820],[-45,871],[45,-47],[200,-1104],[-2,-863],[17,-547],[-8,-165]],[[287445,756994],[-22,-70],[-163,344],[-225,327],[-293,1036],[61,871],[44,106],[94,-1096],[100,-529],[172,-440],[232,-549]],[[512849,564107],[-88,14],[-79,215],[-80,739],[-115,225],[-60,22],[-17,168],[76,163],[41,127],[-12,154],[-98,73],[-18,59],[58,194],[-54,454],[-182,412],[-1,166],[107,87],[36,117],[24,131],[30,985],[59,102],[209,-243],[109,81],[139,-55]],[[512933,568497],[68,-133],[-86,-401],[49,-631],[50,-264],[-19,-125],[-223,-876],[5,-492],[48,-651],[115,-697],[-91,-120]],[[626850,728867],[223,-241],[6,-228],[18,-502],[285,-894],[-74,-508],[-357,-221],[-111,-88],[-139,-452],[-214,-454],[-242,86],[-233,456],[-200,1250],[-98,1048],[-11,411],[-53,465],[-409,720],[-19,604],[209,336],[91,375],[-47,212],[-221,-22],[-212,25],[30,286],[221,423],[698,0],[282,-537],[80,-594],[-111,-830],[-32,-746],[132,-311],[174,4],[334,-73]],[[204838,846800],[213,-91],[198,-155],[-11,-350],[22,-210],[54,-146],[-27,-167],[3,-250],[-124,-300],[-147,-93],[-170,-142],[-332,-31],[-466,-252],[-183,64],[-252,-59],[-94,88],[-88,80],[-111,0],[-223,-207],[-136,-201],[-103,-195],[-182,-145],[-122,-28],[-31,68],[49,531],[-28,208],[63,149],[89,238],[-99,183],[-14,109],[141,8],[263,-88],[256,164],[490,636],[647,303],[294,334],[100,46],[61,-99]],[[223316,877902],[134,265],[583,999],[140,85],[-14,-189],[-81,-328],[79,-307],[194,-136],[206,-201],[48,-365],[-273,-332],[-404,-329],[-520,-56],[-435,71],[-90,168],[-6,147],[439,508]],[[215141,862320],[179,-46],[294,314],[177,333],[-144,110],[-195,342],[8,498],[229,288],[252,89],[128,-196],[105,-320],[54,-288],[139,-329],[305,-483],[310,-808],[105,-749],[-82,-441],[-18,-321],[-273,161],[-14,-264],[-98,-213],[-173,529],[-525,1136],[-298,232],[-266,-83],[-306,56],[-35,373],[142,80]],[[660736,752692],[-132,-433],[-369,-377],[-439,-246],[-270,-94],[-233,-32],[-274,469],[-202,485],[-162,-19],[-151,-39],[-23,287],[112,1153],[24,125],[223,1157],[250,697],[332,187],[438,-439],[189,-578],[26,-78],[-39,-264],[52,-233],[140,-326],[50,-578],[401,-442],[57,-382]],[[713185,829873],[339,297],[551,217],[186,24],[84,-216],[225,-182],[135,202],[37,207],[53,255],[289,308],[388,194],[182,21],[87,-15],[81,-41],[76,-132],[429,-96],[431,-196],[44,-284],[-309,-216],[-363,-165],[-83,-23],[-230,-160],[-141,-173],[-21,-199],[158,-164],[103,-291],[29,-182],[-129,-163],[-261,-118],[-98,62],[24,134],[-143,105],[-241,114],[-225,56],[-303,175],[-536,53],[-99,-11],[-203,-92],[-326,-80],[-255,91],[53,417],[-18,267]],[[728146,776279],[-1067,637],[-539,549],[-356,535],[-62,567],[16,494],[-29,413],[121,517],[241,352],[334,24],[309,-147],[220,-208],[199,-265],[177,-427],[137,-555],[35,-620],[72,-804],[192,-1062]],[[248819,684730],[-115,-449],[-197,-110],[-102,103],[-16,225],[64,289],[177,381],[168,-131],[21,-308]],[[294473,836926],[-224,-301],[-316,-102],[-121,-67],[17,-63],[-77,15],[-76,80],[128,197],[-294,232],[-632,254],[-468,144],[-189,271],[-68,452],[16,353],[133,204],[298,167],[518,-110],[459,-327],[177,-599],[244,-102],[296,-39],[191,-240],[-12,-419]],[[276535,779341],[106,45],[175,-25],[89,-129],[170,-85],[295,48],[80,118],[-69,143],[48,130],[200,131],[549,-37],[214,49],[348,62],[443,-282],[162,-444],[-141,-303],[-239,-108],[-554,278],[-290,-118],[-306,-190],[-54,29],[41,195],[-66,197],[-132,71],[-641,-113],[-428,338]],[[825635,792952],[-318,-143],[-72,107],[47,298],[-28,445],[-226,482],[-71,323],[195,388],[463,567],[456,807],[388,773],[296,427],[151,51],[47,-171],[-52,-281],[-6,-319],[84,-238],[90,-34],[77,-80],[99,-210],[242,-89],[300,-29],[76,-200],[-195,-215],[-247,-10],[-143,152],[-144,-2],[-109,-172],[-47,-258],[-557,-825],[-522,-899],[-49,-344],[-225,-301]],[[583319,440260],[-162,-742],[-54,-500],[-222,-469],[-236,-213],[-231,8],[-225,125],[-74,567],[-32,293],[-109,104],[-41,211],[66,132],[125,91],[490,1338],[86,-15],[207,276],[224,49],[200,-351],[55,-453],[-67,-451]],[[579019,915533],[231,60],[281,167],[127,180],[231,144],[-32,-149],[-147,-182],[-393,-381],[-61,-247],[95,-209],[-74,-172],[-256,-235],[-16,-217],[-116,-199],[-416,-109],[-443,-334],[4,-157],[476,-347],[181,-171],[76,-122],[-57,-91],[-114,-30],[-601,143],[-247,21],[-274,-111],[77,-193],[165,-71],[40,-167],[-340,-270],[-83,42],[-11,191],[-158,60],[-221,-194],[-125,-163],[-246,101],[-283,72],[-84,-8],[-188,-49],[-233,-215],[-63,128],[276,207],[191,182],[-31,227],[-247,254],[-159,43],[-274,87],[-28,102],[224,139],[672,341],[116,161],[94,182],[515,396],[542,291],[120,-97],[290,-1],[-13,166],[-96,78],[-106,143],[-55,156],[113,203],[193,67],[38,-166],[66,-201],[261,67],[214,211],[36,124],[61,104],[285,18]],[[574388,886368],[97,140],[45,151],[-48,172],[36,212],[110,145],[682,-39],[283,-158],[10,-489],[123,-264],[289,-229],[288,51],[303,244],[413,96],[550,-90],[-33,-285],[46,-156],[-131,10],[-228,-26],[-174,-132],[74,-219],[263,-70],[225,-165],[326,-161],[277,-107],[79,-102],[6,-66],[-65,-62],[-253,3],[-177,41],[-224,98],[-768,473],[-250,294],[-156,-29],[-70,-113],[-168,-122],[-272,-122],[-113,-211],[15,-253],[-81,-61],[-162,222],[-352,254],[-363,222],[-61,233],[-355,495],[-36,175]],[[576380,849683],[-68,193],[-131,510],[-282,584],[-242,298],[-222,1156],[-529,932],[22,465],[370,413],[530,241],[626,71],[373,-136],[70,-25],[181,-400],[182,-2013],[19,-511],[-63,-225],[-139,-100],[-459,-730],[-59,-290],[20,-252]],[[581104,496092],[83,-314],[61,-231],[109,-735],[191,-920],[-54,-250],[-152,-216],[-76,-207],[-44,-190],[-253,-682],[-103,-152],[-98,-247],[-81,-62],[-147,-28],[-234,-430],[-101,-54],[-66,-35],[18,452],[167,495],[-37,283],[-77,71],[-10,242],[19,200],[103,418],[-19,439],[218,1007],[125,1124],[107,249],[351,-227]],[[582214,505014],[129,85],[172,-5],[215,-5],[289,-302],[-53,-770],[-542,-1046],[-84,-162],[-367,-618],[-162,28]],[[581811,502219],[-92,-134],[-146,-61],[-88,370],[-22,282],[91,457],[161,671],[219,938],[280,272]],[[835004,689538],[-576,-691],[-440,-204],[-369,220],[-348,696],[-107,957],[134,821],[335,591],[307,236],[99,-129],[4,-89],[-13,-115],[55,-182],[150,-17],[154,-75],[-22,-256],[-114,-214],[-14,-176],[86,-295],[95,-253],[109,-159],[26,-277],[-126,-313],[79,-102],[104,-13],[220,273],[172,-234]],[[287370,837743],[61,116],[57,172],[242,553],[55,231],[-64,116],[-13,141],[93,651],[71,303],[69,-115],[32,-160],[68,-213],[167,-264],[31,-153],[-116,-108],[197,-335],[245,-269],[255,-236],[238,-271],[10,-100],[-50,-168],[-537,-110],[-832,74],[-279,145]],[[327139,323915],[-495,-381],[-453,-135],[-433,-318],[-230,417],[-141,268],[-197,299],[-133,349],[134,255],[290,148],[292,235],[93,210],[123,163],[605,-225],[37,91],[108,-28],[239,-241],[152,-488],[9,-619]],[[588577,798680],[187,91],[442,-168],[192,-120],[463,-307],[309,-254],[473,-262],[141,113],[-64,375],[15,429],[131,133],[116,-441],[297,-455],[430,-752],[246,-475],[251,-482],[-1,-146]],[[592205,795959],[-75,-441],[-13,-152],[-239,63],[-28,101],[-63,247],[-174,115],[-326,27],[-261,170],[-143,143],[-271,346],[-590,609],[-318,263],[-343,344],[-749,640],[-35,246]],[[288643,822982],[-33,418]],[[288610,823400],[178,0],[294,170],[79,150],[-29,128],[173,250],[828,218],[721,27],[67,-110],[76,-209],[159,-131],[1068,431],[182,14],[25,-228],[-264,-111],[-193,-261],[-443,-246],[-404,-185],[-210,-72],[13,-148],[288,-42],[607,-30],[478,-106],[493,80],[381,200],[63,-99]],[[293240,823090],[-76,-130],[-605,-316],[-357,-25],[-356,-159],[-254,-10],[79,272],[-99,100],[-238,-95],[-328,-26],[-667,75],[-432,37],[-67,-104],[122,-110],[35,-115],[-87,-258],[-233,-242],[-606,-190],[-465,60],[-63,279],[167,275],[111,127],[220,196],[107,173],[-107,193],[-202,-79],[-196,-36]],[[288643,822982],[-755,-214],[-68,-203],[-361,-226],[-900,-344],[-203,12],[-764,-50],[-101,128],[-185,50],[-297,-13],[-253,235],[-14,275],[78,184],[-129,75],[-304,48],[-179,119],[204,251],[533,450]],[[284945,823759],[219,81],[147,-120],[756,177],[316,154],[378,370],[97,395],[-319,322],[-117,151],[56,93],[77,93],[501,-365],[115,39],[44,129],[116,6],[143,-47],[105,65],[-1,140],[-171,190],[-109,152],[42,99],[288,122],[237,60],[110,-153],[180,-155],[172,17],[31,84],[113,-61],[125,-157],[-95,-49],[-122,-26],[-200,-176],[-135,-655],[-125,-99],[-75,-111],[-159,-175],[-150,-272],[-301,-374],[-297,-225],[-131,-161],[149,-139],[395,75],[1142,147],[118,0]],[[65144,847212],[-156,-415],[-481,-767],[-14,-196],[40,-155],[-78,-253],[-106,-121],[-257,176],[-257,232],[-68,210],[104,105],[145,22],[171,61],[142,182],[14,253],[335,427],[90,175],[260,177],[116,-113]],[[301364,614967],[-77,-213],[-195,-77],[-519,434],[46,218],[260,117],[276,-219],[209,-260]],[[56485,898675],[8,-240],[-385,-16],[-401,68],[-129,163],[-396,297],[54,142],[535,-51],[538,-136],[176,-227]],[[180383,862362],[-238,-684],[-27,-112],[-171,-71],[-187,-136],[-25,-172],[3,-127],[-508,171],[-356,206],[-386,-57],[-375,-1],[-47,226],[255,313],[429,0],[329,46],[507,194],[354,249],[310,76],[133,-121]],[[287119,820582],[-30,-106],[-48,-127],[-74,-55],[19,-126],[-8,-121],[-268,-135],[-164,-306],[13,-361],[111,-314],[-155,-79],[-125,161],[-106,733],[92,271],[66,303],[-25,167],[-6,276],[53,197],[-53,122],[134,292],[344,441],[46,-145],[0,-147],[117,-15],[133,180],[137,222],[137,-103],[50,-316],[-72,-204],[-318,-110],[-96,-123],[-13,-154],[56,-95],[134,49],[52,-103],[-133,-169]],[[300051,208977],[-48,-119],[-316,-122],[-448,-224],[-464,-28],[-428,86],[-214,88],[-339,-77],[-496,-390],[-89,-371],[118,-301],[288,1],[178,59],[35,-137],[-190,-323],[-198,-436],[-93,-48],[-153,621],[-274,885],[-165,195],[-151,-16],[-144,-63],[-31,83],[197,366],[518,-116],[156,165],[-30,209],[-171,161],[-331,302],[-191,-105],[-165,-271],[-25,156],[63,375],[-24,306],[98,217],[129,187],[47,111],[142,-287],[206,-603],[321,-275],[409,-99],[192,59],[807,77],[900,242],[214,-173],[160,-367]],[[750960,686209],[-89,290],[-60,736],[-9,881],[178,197],[341,-152],[285,-151],[202,64],[68,184],[101,140],[427,-54],[217,227],[87,-7],[102,-206],[7,-288],[-227,-270],[-248,-446],[-360,-453],[-326,-265],[-696,-427]],[[592937,735437],[186,-246],[203,-77],[211,-512],[-157,-795],[-233,-325],[-307,212],[-270,307],[-249,331],[-216,623],[169,616],[205,538],[46,532],[-11,410],[125,-37],[204,-382],[86,-378],[-40,-317],[48,-500]],[[205669,860401],[-166,-24],[-152,-204],[-21,-395],[72,-279],[-134,-210],[-176,-7],[-77,165],[-32,138],[-85,16],[-62,-211],[-54,-78],[-167,-51],[-101,153],[136,614],[-18,518],[-182,126],[-25,119],[92,141],[184,79],[89,-82],[34,-154],[98,-153],[93,-80],[40,80],[75,365],[86,278],[287,286],[406,213],[130,-84],[70,-64],[267,-115],[-182,-314],[-399,-80],[-317,-35],[-114,-166],[64,-196],[297,56],[163,-125],[13,-189],[-232,-51]],[[576487,865960],[-296,181],[-241,191],[-7,120],[76,70],[226,-233],[364,-58],[312,163],[33,262],[57,130],[146,-59],[92,-143],[108,-352],[-291,-202],[-579,-70]],[[581867,877374],[136,-215],[114,3],[57,324],[-128,519],[-120,314],[79,130],[202,-413],[424,-625],[209,-479],[-30,-371],[-195,-206],[-209,-89],[-119,344],[-231,198],[-229,348],[-101,299],[52,62],[89,-143]],[[581192,876404],[-28,397],[205,190],[144,-350],[124,-143],[209,78],[159,-168],[-189,-384],[-321,102],[-333,-48],[-86,199],[116,127]],[[945777,915083],[-132,-130],[-491,58],[-808,262],[-437,387],[100,182],[428,-124],[477,-179],[432,-183],[431,-273]],[[698220,906927],[-170,115],[12,101],[187,241],[505,335],[436,198],[215,-263],[-27,-252],[-350,-324],[-808,-151]],[[695801,920057],[64,-212],[-390,-241],[-389,-25],[-288,384],[129,358],[539,-116],[335,-148]],[[696808,919332],[-284,382],[15,199],[100,169],[130,239],[288,18],[-4,-231],[10,-272],[319,-391],[-88,-205],[-486,92]],[[696008,920244],[-530,177],[-78,275],[1184,101],[140,-153],[-76,-147],[-270,-175],[-370,-78]],[[596841,877667],[-5,131],[18,206],[-10,203],[26,177],[70,85],[-22,306],[-89,389],[-16,313],[-49,302],[-87,291],[-283,433],[-416,355],[-99,148],[24,109],[-200,715],[-264,433],[-140,-28],[-115,-211],[-142,-255],[-3,372],[195,597],[174,438],[226,-17],[373,-189],[226,-160],[-79,-136],[670,-268],[13,-193],[356,-609],[-16,-124],[-87,-141],[167,-205],[366,-138],[291,56],[345,3],[110,-262],[-87,-82],[-525,-178],[-57,-138],[-202,15],[-139,93],[-202,179],[-292,205],[-119,-178],[156,-826],[189,-667],[12,-367],[-32,-507],[-98,-487],[-132,-188]],[[592892,880768],[402,258],[142,-65],[54,-255],[112,-141],[417,172],[238,-120],[162,-717],[208,-402],[-136,-166],[-334,-72],[-537,10],[-365,74],[-202,80],[-535,398],[-91,193],[0,148],[25,239],[-71,246],[272,3],[239,117]],[[585011,877414],[-48,360],[77,169],[172,46],[75,230],[143,221],[211,-137],[44,-427],[-291,-533],[-146,-99],[-85,-233],[24,-143],[-24,-100],[-68,46],[-368,26],[-59,51],[162,190],[181,333]],[[583315,879876],[28,-130],[-105,-36],[-20,-225],[99,-514],[400,-982],[532,-853],[-37,-119],[-244,-27],[-239,-489],[-146,44],[181,357],[169,466],[-220,357],[-201,87],[-87,94],[-497,756],[-112,342],[-612,73],[-182,126],[-375,22],[-263,432],[-169,400],[-318,493],[-224,400],[81,200],[16,329],[41,55],[263,-349],[340,-317],[174,-121],[432,-375],[540,-362],[174,-125],[129,-18],[234,141],[218,-132]],[[586582,896506],[115,-278],[79,-326],[103,-290],[162,-219],[-112,-78],[-388,54],[-569,297],[-830,516],[145,491],[52,304],[185,258],[305,195],[374,39],[195,-143],[197,-635],[-13,-185]],[[590325,893112],[408,-325],[65,-150],[69,-213],[-17,-163],[-106,2],[-92,174],[-427,301],[-577,217],[-457,238],[-313,134],[-141,177],[-8,135],[-133,86],[-138,45],[-310,156],[-444,383],[-184,358],[515,360],[807,197],[189,-81],[186,-251],[59,-293],[180,-120],[345,-373],[87,-198],[10,-227],[38,-302],[133,-211],[256,-56]],[[297663,988550],[619,145],[755,135],[7678,1124],[826,91],[880,41],[-1410,-318],[-1501,-274],[-6123,-842],[-1370,-167],[-61,44],[-293,21]],[[251327,818351],[142,85],[103,122],[33,180],[386,340],[234,-102],[211,-133],[331,115],[144,14],[-86,-282],[-169,-413],[-298,-96],[-587,73],[-321,12],[-123,85]],[[740981,753001],[-71,147],[20,310],[166,425],[94,578],[167,211],[330,-140],[855,-400],[166,-645],[0,-335],[-322,252],[-436,43],[-579,-183],[-390,-263]],[[585744,872082],[1,210],[-44,232],[-8,201],[211,1],[127,-106],[226,-561],[-91,-245],[-225,-43],[-149,114],[-48,197]],[[587585,849955],[-234,-143],[-146,-378],[-660,174],[-778,252],[-54,148],[272,268],[180,209],[168,70],[250,164],[227,390],[129,303],[211,-280],[155,-75],[224,-164],[21,-96],[330,91],[46,-114],[-22,-102],[4,-254],[114,-627],[-160,29],[-277,135]],[[822171,678851],[-47,190],[103,490],[67,347],[179,604],[75,579],[-50,206],[-48,86],[86,138],[187,150],[47,0],[89,-313],[15,-192],[-76,-123],[-24,-245],[-51,-183],[-60,-318],[-40,-386],[-97,-159],[15,-146],[77,-91],[125,-26],[23,-121],[-120,-162],[-45,-147],[45,-335],[438,-125],[91,13],[70,-66],[-29,-218],[11,-189],[124,133],[92,354],[80,83],[199,-58],[177,-21],[101,0],[65,-63],[-8,-212],[35,-186],[90,-133],[8,-200],[-101,-28],[-105,25],[-47,79],[-102,77],[-166,88],[-71,-123],[-51,-469],[72,-532],[75,-346],[18,-290],[-70,-246],[-119,8],[-75,322],[-65,119],[-25,151],[-171,3],[-51,326],[-644,857],[-93,254],[-46,244],[-182,526]],[[823502,683433],[98,-203],[66,-189],[-61,-140],[-306,9],[-272,163],[-87,322],[-5,269],[67,-85],[46,41],[82,4],[164,-104],[154,47],[54,-134]],[[822763,683333],[130,-32],[30,-129],[20,-201],[-17,-244],[-118,-162],[-223,-60],[-241,-97],[-185,417],[22,381],[244,-93],[125,0],[29,153],[60,206],[124,-139]],[[817639,684269],[58,87],[66,151],[30,187],[105,102],[145,25],[15,125],[-74,134],[-46,185],[120,10],[106,-125],[176,-269],[57,-247],[51,-738],[-50,-218],[-118,244],[-107,301],[-93,34],[-98,-209],[-79,-437],[-103,129],[-120,347],[-41,182]],[[748104,693715],[-87,-39],[-92,-228],[-117,-416],[-203,-456],[-224,-35],[-190,77],[-121,94],[-23,195],[31,253],[-59,164],[-215,-13],[-239,-84],[-220,105],[-212,395],[-116,282],[115,213],[267,-79],[153,-194],[84,-31],[68,74],[140,274],[290,181],[421,-32],[406,-238],[159,-290],[-16,-172]],[[757740,790547],[-458,-475],[-499,-400],[-246,-390],[-204,-671],[-222,-485],[-322,278],[-260,694],[-40,453],[358,264],[398,447],[4,788],[103,525],[211,51],[172,-4],[162,-125],[-226,-600],[8,-479],[208,-108],[178,1],[277,324],[6,460],[-20,349],[262,-116],[192,-340],[-42,-441]],[[989070,276422],[-175,-315],[-210,-216],[-211,-175],[-155,-97],[-111,28],[123,578],[-49,288],[-91,142],[38,272],[129,293],[373,0],[316,-262],[71,-217],[-48,-319]],[[519073,780053],[-60,-105],[-26,5],[-473,99],[-545,-82],[-368,-164],[-248,-457],[-251,-464],[-66,-3]],[[517036,778882],[70,579],[516,917],[678,421],[641,-374],[152,-197],[-20,-175]],[[481976,829226],[83,-44],[391,-38],[128,-289],[-29,-332],[-185,-468],[-15,-133],[-203,-16],[-375,90],[-62,268],[120,374],[83,444],[64,144]],[[541480,853228],[22,-164],[-33,-333],[-81,-383],[-24,-256],[198,-310],[-45,-168],[-330,-291],[-392,-395],[-178,-567],[-111,-574],[-108,-376],[-122,-311],[-445,-899],[-262,-732],[-238,-78],[-106,758],[256,1334],[492,1513],[323,913],[347,704],[261,304],[253,354],[321,372],[99,-31],[-16,-79],[-81,-305]],[[619412,732435],[-183,262],[-31,214],[-81,299],[-72,41],[-210,-149],[-271,-12],[-270,148],[-132,48],[-515,60],[32,288],[193,366],[67,191],[-1,292],[189,313],[547,218],[339,71],[250,1],[401,89],[232,218],[-11,135],[-90,76],[-108,-3],[-34,205],[213,186],[369,95],[420,143],[345,-60],[140,-181],[-221,-293],[-412,-363],[-252,-137],[-228,-573],[-65,-666],[279,-326],[87,-351],[-233,-481],[-241,-417],[-167,-63],[-275,116]],[[193891,767835],[-101,-78],[-104,-20],[-52,105],[-101,117],[-37,156],[-147,51],[13,197],[-101,130],[-174,-60],[-117,-135],[-68,195],[74,144],[106,12],[111,40],[91,137],[102,312],[150,65],[153,-136],[22,-574],[171,-332],[9,-326]],[[75167,922877],[-930,-297],[-1058,-228],[-176,85],[-207,-41],[-368,148],[-260,182],[-225,327],[-204,209],[-175,30],[-56,129],[266,103],[350,38],[166,-29],[104,107],[352,160],[556,71],[1658,-788],[207,-206]],[[182901,789095],[-68,529],[-51,103],[15,176],[165,130],[242,-449],[61,-479],[55,-883],[-46,-169],[-98,-267],[-171,39],[-89,-20],[-36,151],[104,260],[-62,169],[-125,78],[-157,65],[-12,125],[166,195],[107,247]],[[184345,717572],[-96,70],[-155,466],[-190,520],[-278,412],[-160,299],[-101,206],[-140,-7],[-199,-777],[-272,-156],[-238,143],[-75,276],[-143,139],[-93,-55],[-124,-68],[-147,159],[-380,-1],[-205,-486],[-75,-60]],[[181274,718652],[-76,37],[-120,323],[-12,278],[452,193],[393,235],[223,255],[52,658],[73,794],[64,188],[76,28],[5,-446],[-67,-646],[-32,-741],[208,-584],[193,-358],[185,160],[172,442],[187,550],[93,-6],[202,-398],[183,-359],[223,-399],[219,-534],[183,-581],[-8,-169]],[[189398,851905],[23,-253],[-63,-197],[-20,-141],[-14,-206],[33,-186],[118,-369],[-55,-170],[-249,20],[-506,242],[-301,389],[-133,278],[80,230],[-9,303],[-122,156],[-166,-80],[-218,89],[-150,236],[45,383],[261,562],[510,278],[313,-35],[11,-191],[-212,-52],[-16,-245],[373,-134],[230,72],[162,-27],[116,-145],[101,-71],[95,7],[41,-155],[-278,-588]],[[324512,825720],[-23,-119],[-54,-210],[277,-415],[-93,-179],[-175,-105],[-130,62],[-161,143],[-310,95],[-203,34],[-182,-37],[-37,-143],[110,-156],[-1,-153],[-341,-28],[-142,-41],[-185,-95],[15,-136],[-174,-122],[-507,21],[-318,207],[-40,376],[-105,308],[-886,396],[-84,183],[-108,84],[-244,-63],[-102,-194],[131,-295],[-47,-209],[-99,-208],[-159,-155],[-237,-22],[-237,-85],[-256,-164],[-303,-288],[-149,-126],[-240,-132],[-95,-215],[6,-210],[290,-295],[4,-208],[116,-442],[-44,-143],[99,-234],[430,-268],[-131,-201],[-593,202],[-821,203],[-148,312],[285,36],[255,63],[149,162],[49,108],[-25,184],[-107,229],[-46,238],[50,240],[97,388],[-27,342],[-193,146],[-128,61],[-149,210],[-28,281],[-182,376],[-404,152],[-271,288],[-797,1250],[-394,465],[-61,312],[-243,372],[-212,124],[31,-318],[221,-501],[-77,-285],[-81,-219],[53,-447],[155,-496],[22,-145],[-162,56],[-305,648],[-151,532],[-86,356],[-86,379],[-24,194],[5,360],[-18,246],[239,30],[76,150],[-60,687],[57,193],[-130,479],[-124,230],[15,160],[76,53],[-18,190],[-66,225],[38,122],[87,27],[32,114],[-41,168],[65,-9],[232,-282],[289,-435],[-11,-160],[-9,-85],[2,-139],[-79,-56],[-112,-18],[-33,-49],[13,-73],[78,-165],[-36,-89],[-30,-25],[-17,-118],[193,-583],[15,-163],[428,-654],[26,-304],[0,-288],[467,-770],[80,-36],[157,-410],[80,85],[103,-27],[223,-463],[217,-231],[86,74],[497,-710],[286,-288],[153,216],[426,-297],[246,112],[-207,371],[132,51],[740,-180],[132,139],[-346,449],[-195,425],[-170,686],[-257,560],[-389,145],[9,91],[62,285],[23,499],[132,251],[185,34],[60,-108],[-229,-479],[85,-169],[132,-99],[101,-225],[123,-455],[275,-553],[-56,-83],[28,-311],[140,-385],[101,-133],[13,69],[65,43],[256,-137],[232,-9],[173,193],[94,61],[205,20],[218,-14],[272,-121],[317,71],[-41,195],[-112,119],[-28,146],[-112,99],[-229,-96],[-157,-21],[-45,121],[153,345],[69,1059],[93,617],[-31,374],[-108,347],[53,36],[214,-280],[68,-222],[-93,-546],[25,-288],[330,-658],[177,-328],[301,-388],[230,-247],[212,-439],[341,-428],[456,-110],[328,119],[256,250],[151,15],[252,-31],[146,-47]],[[780618,942332],[-205,198],[214,252],[217,329],[-116,608],[-262,594],[-189,357],[-367,210],[-447,26],[-296,71],[-246,171],[-540,57],[-384,-22],[-340,-69],[-687,51],[-345,121],[-217,238],[279,113],[619,-73],[393,10],[554,183],[168,249],[332,276],[398,287],[17,316],[-185,538],[-322,465],[-614,358],[98,204],[371,239],[425,68],[123,350],[-494,425],[-677,144],[-41,133],[18,132],[210,73],[231,-59],[302,-140],[373,-232],[284,-87],[207,-215],[10,-318],[-199,-298],[-28,-346],[108,-300],[372,-385],[373,-219],[605,-235],[2076,-234],[1883,2],[2136,204],[667,204],[746,308],[752,193],[560,114],[-68,262],[-505,155],[-417,251],[96,342],[218,141],[156,68],[195,203],[35,196],[45,143],[328,52],[565,-167],[446,-480],[657,-575],[1228,-352],[74,-239],[-280,-177],[-721,-71],[-1290,-193],[-1416,-523],[-218,-111],[-214,-20],[-282,20],[-480,-236],[-1013,-146],[-1029,-166],[-1026,-144],[-1176,-80],[-154,-524],[244,-538],[323,-486],[-79,-44],[-284,-9],[-222,30],[-365,131],[-434,186],[-736,391],[-315,284],[51,205],[95,237],[-423,72],[-456,-40],[-537,-123],[74,-227],[275,-75],[337,-150],[-8,-336],[157,-498],[335,-608],[450,-591],[250,-531],[66,-444],[-56,-217],[-272,-19],[-161,33],[-698,32],[-285,67]],[[253117,598666],[-130,-201],[-127,-245],[-75,-376],[-70,-493],[-156,-271],[-288,-155],[-155,-42],[-110,-89],[-65,-79],[-70,176],[-109,285],[-62,167],[45,103],[151,97],[197,158],[176,156],[216,160],[374,506],[303,453],[52,6],[-26,-141],[-71,-175]],[[914771,931554],[-18,-168],[-167,-232],[-177,-283],[-207,-88],[-287,110],[-189,318],[-72,325],[39,279],[87,285],[73,141],[92,56],[161,-3],[212,-62],[191,-146],[165,-262],[97,-270]],[[748919,727408],[-270,-58],[-413,112],[-380,138],[-233,64],[-131,130],[-43,155],[180,66],[361,101],[333,104],[251,-28],[217,-87],[148,-110],[74,-113],[-16,-133],[2,-153],[15,-100],[-95,-88]],[[539123,879675],[-85,219],[-78,136],[105,38],[434,-122],[483,-254],[144,11],[179,10],[283,-356],[166,-389],[-285,138],[-180,14],[-137,-68],[-77,-158],[-14,-218],[60,-366],[69,-446],[14,-386],[-36,-301],[-45,-52],[-49,-6],[-103,285],[-123,299],[-12,165],[75,20],[60,-17],[65,3],[46,153],[-87,283],[-114,351],[-416,384],[-261,155],[-157,93],[-211,306],[-26,99],[91,-20],[158,-139],[59,37],[5,99]],[[246263,807040],[120,394],[77,198],[168,-16],[341,-170],[319,-156],[180,155],[186,207],[138,129],[137,155],[230,329],[163,227],[233,-136],[132,-128],[116,-179],[11,-121],[-280,-302],[-609,-319],[-527,-352],[-509,-53],[-329,-70],[-221,-90],[-137,71],[61,227]],[[590316,458295],[46,-181],[-26,-123],[-440,339],[-533,412],[-331,-48],[-254,-86],[-111,162],[-130,442],[-140,593],[-81,487],[15,283],[96,202],[176,201],[359,-287],[633,-1138],[538,-963],[183,-295]],[[785773,615302],[-146,0],[-296,-174],[-122,-188],[-81,-92],[-88,157],[-122,493],[-70,328],[-53,317],[-57,453],[58,77],[94,-139],[59,-231],[112,-91],[45,-44],[58,-65],[123,-31],[120,-39],[18,-305],[105,-178],[167,-107],[93,-38],[26,-17],[-43,-86]],[[292969,792217],[-40,-131],[-81,-80],[-60,-40],[-70,10],[-47,-37],[-36,-83],[-70,-214],[-27,-38],[-15,145],[-39,225],[-46,84],[-93,87],[-169,376],[-139,282],[-124,89],[-95,4],[-52,-115],[-12,-222],[23,-118],[51,-69],[-9,-196],[-25,-438],[-17,-91],[-73,2],[-103,-33],[-99,-74],[-63,-35],[-133,-314],[-27,7],[26,243],[43,497],[43,380],[72,101],[85,109],[96,298],[-28,284],[-144,-93],[-68,-118],[-95,-126],[-101,-173],[-47,-277],[3,-240],[19,-142],[-110,-51],[-153,14],[-88,95],[-99,75],[-74,-47],[-68,87],[-76,-35],[70,270],[110,284],[134,285],[54,103],[90,6],[85,-36],[106,57],[96,205],[103,228],[134,185],[52,32],[202,-107],[134,95],[303,281],[138,95],[111,68],[257,96],[201,8],[41,-143],[57,-131],[-59,-309],[-101,-379],[70,-185],[132,-85],[61,-82],[82,6],[122,44],[43,-55],[-26,-190],[100,-363],[154,-216],[143,-62],[111,-73],[136,-166],[157,-58],[48,-96],[-142,-71],[-240,-79],[-207,178],[-231,374],[-187,180],[-132,54],[-58,-112]],[[831685,699621],[-43,-250],[-115,-10],[-139,-9],[-129,-70],[-146,-267],[-77,-31],[-23,117],[-50,281],[-60,266],[-92,226],[-36,108],[14,67],[128,67],[159,4],[113,25],[38,84],[-4,131],[35,145],[-6,206],[-17,208],[53,123],[90,43],[50,78],[-31,182],[-96,211],[-88,197],[-60,12],[-99,-48],[-33,-181],[-10,-164],[-29,-149],[-152,-222],[-179,23],[-192,40],[-164,121],[-69,113],[210,-36],[284,-78],[119,65],[90,444],[98,248],[156,82],[78,5],[137,-217],[126,-510],[-9,-320],[74,-137],[68,-500],[28,-723]],[[744890,916550],[-40,-90],[-107,-5],[-189,-19],[-285,-6],[-174,31],[-168,60],[-239,115],[-92,166],[28,275],[45,218],[-101,478],[-211,615],[-380,363],[-274,31],[-67,80],[63,185],[64,195],[43,295],[233,124],[424,278],[452,152],[320,-41],[123,-172],[-85,-211],[-465,-257],[-318,-131],[9,-228],[60,-154],[80,-101],[207,-218],[268,-336],[135,-166],[183,-409],[82,-432],[-30,-144],[67,-158],[210,-201],[129,-182]],[[575103,870240],[-108,8],[-169,36],[-209,152],[-187,46],[-144,-54],[75,-164],[186,-111],[117,-127],[14,-193],[5,-75],[10,-70],[-56,-32],[-99,59],[-65,-17],[-40,-74],[-50,105],[-56,213],[-259,408],[-308,456],[-238,193],[-173,109],[-155,148],[-166,117],[-39,72],[81,199],[127,206],[169,244],[82,-82],[-38,-101],[-103,-235],[-41,-207],[118,-44],[126,70],[75,92],[93,55],[45,93],[-37,78],[12,63],[122,-10],[76,-122],[80,-183],[101,-107],[44,22],[6,59],[17,39],[59,-14],[85,-88],[84,-59],[61,58],[37,98],[0,90],[-126,61],[-185,106],[-148,222],[-147,316],[-8,92],[143,-153],[180,-109],[139,-105],[179,-159],[150,-275],[21,-179],[-11,-98],[49,-345],[16,-257],[74,-136],[155,-105],[125,-49],[42,-92],[5,-101],[-20,-53]],[[545566,856330],[6,-20],[-139,-105],[-128,-77],[-499,-205],[-582,-271],[-80,-107],[-31,-80],[-181,-80],[-318,10],[-214,100],[-11,145],[-85,194],[-124,124],[-70,55],[-109,36],[-379,49],[26,81],[406,109],[315,89],[319,-110],[260,-18],[98,51],[371,-102],[547,7],[232,71],[175,21],[195,33]],[[573971,878817],[-106,-146],[31,-319],[127,-311],[4,-125],[-58,-55],[-254,175],[-211,198],[18,53],[3,91],[-20,153],[-23,173],[-75,171],[-205,266],[-225,282],[-103,186],[-9,98],[70,-22],[132,-202],[155,-235],[191,-134],[171,35],[207,154],[59,228],[-209,247],[-172,155],[-82,160],[11,147],[100,60],[180,-142],[274,-117],[207,6],[54,-44],[-89,-63],[-99,-61],[117,-91],[116,-124],[23,-178],[-77,-211],[-141,-161],[-53,-151],[-39,-146]],[[296716,831445],[79,86],[-1,73],[242,130],[399,192],[253,65],[278,58],[238,76],[160,17],[200,29],[273,117],[316,182],[221,58],[-69,-116],[-86,-210],[-13,-196],[-11,-158],[-189,-240],[-320,-252],[-432,-201],[-214,-230],[-233,-73],[-358,-142],[-352,-162],[-180,2],[-110,104],[-178,21],[-276,-124],[-278,-152],[-396,-109],[-136,146],[259,86],[232,162],[51,101],[-67,117],[-144,92],[-79,73],[7,81],[56,45],[158,-27],[192,-19],[259,131],[183,113],[66,54]],[[603422,861387],[-3,126],[154,282],[315,327],[395,177],[541,63],[449,-169],[230,-364],[64,-464],[-15,-339],[-85,-104],[-403,-42],[-301,-7],[-683,61],[-201,60],[-324,197],[-133,196]],[[347518,534072],[-88,-213],[-44,-124],[8,-159],[39,-153],[90,-45],[75,-59],[2,-174],[-28,-148],[-74,-38],[-87,-76],[-54,87],[-89,76],[-82,-59],[-97,-171],[-44,-219],[-66,-258],[-97,-159],[-73,48],[-116,80],[-82,49],[-28,127],[-82,66],[-109,-5],[-100,22],[15,272],[74,205],[65,74],[17,248],[-31,213],[137,475],[173,587],[62,505],[66,205],[92,0],[205,-168],[144,-311],[84,-83],[146,22],[125,29],[93,-27],[29,-161],[-50,-266],[-67,-278],[-65,-12],[-88,-24]],[[599289,484316],[50,493],[82,430],[85,281],[72,98],[58,-46],[35,-165],[-37,-736],[-84,-740],[-89,-210],[-88,-120],[-59,43],[-31,251],[6,421]],[[605708,544682],[130,-11],[99,8],[16,-102],[-38,-242],[-37,-272],[-27,-142],[-53,-154],[-82,-251],[-121,-434],[-197,-622],[-191,-551],[-89,-209],[-113,-140],[-176,-212],[-105,6],[-15,173],[38,263],[99,281],[127,213],[99,98],[109,188],[59,253],[-32,575],[-33,560],[16,210],[186,336],[226,246],[105,-68]],[[550511,904611],[-961,639],[-574,154],[-156,48],[-278,143],[-377,57],[-261,116],[-71,77],[-183,288],[-65,337],[477,-233],[369,-231],[1891,-905],[242,-165],[535,-419],[89,-254],[-677,348]],[[548848,782198],[-304,-249],[-552,-13],[-22,124],[3,105],[106,20],[208,92],[264,125],[519,309],[440,347],[159,190],[204,260],[235,295],[107,104],[147,-92],[92,-169],[-58,-281],[-727,-571],[-580,-449],[-241,-147]],[[285382,758847],[-131,-274],[-124,-469],[-27,88],[9,176],[74,303],[119,305],[57,345],[72,-112],[-49,-362]],[[287557,758583],[-133,391],[-60,362],[35,146],[186,-835],[2,-69],[-30,5]],[[288133,758685],[-249,372],[-184,357],[7,293],[148,-430],[219,-323],[59,-269]],[[45922,862860],[-169,-124],[-77,-181],[-55,-119],[55,-425],[-202,-331],[-392,-279],[-12,66],[-57,194],[30,283],[28,162],[-52,72],[-119,-9],[-281,-66],[-291,-62],[-32,115],[99,47],[324,180],[143,109],[-87,104],[-160,118],[125,111],[76,133],[39,18],[154,-100],[174,87],[37,49],[168,-40],[448,-46],[86,-66]],[[190866,754227],[-54,-495],[-53,-354],[-61,-105],[-67,69],[-59,321],[-37,296],[13,438],[26,409],[136,127],[88,-25],[76,-230],[8,-298],[-16,-153]],[[189606,743337],[-236,-191],[-60,-371],[-53,-147],[-68,-39],[-7,104],[11,211],[-25,220],[-41,130],[172,449],[-22,416],[-59,322],[246,-49],[83,-186],[84,-312],[89,-277],[57,-73],[-26,-114],[-145,-93]],[[148849,901420],[42,265],[120,167],[183,56],[201,-65],[165,-183],[82,-223],[-56,-190],[-96,-154],[-20,-166],[37,-223],[-33,-126],[-129,-119],[-108,-125],[-110,36],[-152,141],[-109,431],[-17,478]],[[238207,784715],[-42,-245],[-114,-315],[-124,-130],[-135,-46],[-106,59],[-78,191],[-162,199],[-129,-137],[-11,-266],[-23,-76],[-22,104],[-52,257],[-45,253],[28,238],[60,-25],[242,116],[181,64],[160,52],[230,258],[42,-86],[-43,-291],[-31,-225],[84,20],[90,31]],[[249189,795019],[11,-114],[-72,-220],[-72,-336],[-98,-210],[-182,-8],[-49,79],[-185,48],[-211,31],[-93,126],[7,203],[-51,293],[-95,22],[-11,141],[62,134],[110,41],[98,-80],[83,-202],[41,-183],[186,-63],[220,8],[110,39],[100,138],[91,113]],[[289738,782972],[18,-145],[-30,-279],[-92,-335],[-55,-299],[-121,-15],[-193,236],[-219,22],[-206,-71],[-44,76],[66,108],[106,244],[37,236],[9,94],[180,81],[165,77],[144,367],[117,197],[27,-136],[91,-458]],[[299263,267863],[6,-189],[-27,-59],[-162,17],[-351,38],[-250,123],[-29,221],[16,198],[65,174],[287,215],[265,45],[86,-130],[72,-98],[18,-150],[-8,-176],[12,-229]],[[163178,863060],[-275,-232],[-147,-51],[-58,86],[-76,169],[-113,94],[-248,-123],[54,152],[228,318],[265,251],[204,168],[42,207],[-37,456],[-62,415],[167,-52],[277,-233],[189,-342],[47,-432],[-159,-461],[-298,-390]],[[299149,211713],[-510,410],[-363,298],[-248,12],[-120,-105],[-200,-16],[-329,-49],[-239,-31],[-2,67],[78,134],[81,136],[11,165],[-60,216],[-76,255],[93,164],[151,241],[146,-1],[177,-227],[816,-436],[719,-346],[140,-90],[218,-249],[86,-239],[0,-161],[-34,-138],[-63,-93],[-131,-55],[-341,138]],[[550098,500152],[-61,150],[-87,230],[-115,238],[-67,217],[3,263],[-46,206],[-162,134],[-71,111],[-17,133],[59,19],[190,23],[229,79],[171,-31],[123,-134],[69,-167],[18,-135],[-27,-301],[-9,-105],[27,-357],[25,-419],[8,-296],[-75,-47],[-69,107],[-56,88],[-60,-6]],[[585467,883072],[74,269],[6,255],[98,-27],[112,-87],[25,-97],[39,-110],[353,-190],[400,-124],[90,-169],[-23,-66],[-60,-22],[-80,67],[-113,45],[-54,-60],[20,-151],[93,-125],[47,-144],[-10,-66],[-57,-99],[22,-158],[61,-149],[-42,-95],[-169,159],[-191,164],[-139,89],[-103,150],[20,176],[-8,174],[-93,132],[-372,88],[-60,122],[114,49]],[[823399,683751],[-64,55],[-40,148],[-36,106],[-63,83],[-94,169],[-7,160],[57,25],[61,64],[40,-7],[52,-121],[148,-99],[79,-16],[117,25],[70,-10],[4,-158],[-38,-183],[-4,-197],[0,-156],[-53,-66],[-35,41],[-71,110],[-123,27]],[[826613,787636],[-63,143],[-81,170],[5,223],[80,261],[27,88],[189,389],[199,273],[44,23],[110,58],[101,-66],[111,-233],[77,-270],[-35,-233],[-139,-314],[-213,-320],[-207,-226],[-135,-82],[-56,30],[-14,86]],[[731194,691761],[-81,4],[-296,164],[-288,136],[-217,12],[-154,141],[-55,138],[159,62],[92,126],[17,97],[111,88],[238,81],[113,62],[115,-324],[187,-237],[225,-286],[142,-276],[-22,-97],[-103,6],[-183,103]],[[741047,690003],[-37,-181],[-165,-75],[-212,-227],[-58,-298],[-117,-537],[-118,-505],[-80,-276],[-103,-93],[-104,70],[-62,196],[-2,181],[44,136],[92,341],[197,626],[252,967],[131,860],[244,-146],[65,-506],[33,-533]],[[721582,818850],[-70,-205],[-37,-195],[12,-157],[41,-79],[-47,-104],[-117,-71],[-245,43],[-240,124],[-182,242],[-142,265],[-37,179],[-1,191],[36,206],[77,202],[126,156],[339,245],[120,-36],[160,-112],[118,-156],[80,-258],[67,-213],[52,-96],[-110,-171]],[[703851,819455],[-171,259],[-355,543],[-304,377],[-205,12],[-154,-126],[-71,60],[-29,124],[97,167],[65,205],[17,145],[122,94],[216,65],[264,14],[326,-91],[233,-125],[53,-142],[-8,-486],[-7,-596],[-30,-270],[-13,-123],[9,-93],[-55,-13]],[[723132,834056],[-55,-273],[-277,-247],[-302,-232],[-314,-135],[-246,-29],[-141,70],[-66,152],[-1,174],[162,160],[285,216],[282,203],[278,81],[230,-18],[101,14],[64,-136]],[[607362,868361],[67,267],[93,186],[248,185],[269,86],[62,-131],[-90,-376],[-74,-343],[48,-201],[56,-203],[-26,-154],[-136,-130],[-209,-66],[-179,18],[-94,106],[-44,336],[9,420]],[[580190,897716],[224,-32],[225,27],[164,-69],[-101,-90],[-64,-78],[-63,-164],[-185,-134],[-415,-345],[-251,-329],[-209,-254],[-285,-82],[-441,-90],[-818,3],[-75,84],[17,102],[-6,141],[-36,106],[-25,68],[-203,145],[-183,145],[151,23],[250,-59],[155,-101],[90,-117],[28,-165],[26,-136],[108,-14],[397,164],[314,148],[204,70],[94,178],[59,114],[393,154],[362,125],[8,54],[-1,119],[-154,224],[-147,181],[77,43],[146,-18],[170,-141]],[[594982,906934],[62,66],[178,29],[152,-171],[79,-317],[238,-419],[284,-526],[86,-306],[-133,-240],[-349,-54],[-251,11],[-4,157],[-11,169],[5,325],[11,271],[-49,137],[-129,152],[-50,128],[32,129],[-84,255],[-67,204]],[[589764,898842],[-42,-92],[11,-32],[57,-88],[114,-47],[42,-26],[46,-50],[-20,-45],[-98,-72],[-364,166],[-288,101],[-358,6],[-36,111],[12,52],[346,120],[76,112],[-42,151],[-255,415],[-179,391],[-173,239],[-459,56],[-441,46],[-43,64],[-20,84],[59,94],[92,85],[35,54],[241,4],[155,86],[5,122],[-179,84],[-58,72],[182,162],[319,-156],[243,-267],[386,25],[363,-57],[58,-116],[-99,-214],[-65,-105],[47,-98],[146,-84],[170,-144],[51,-98],[29,-93],[-78,-132],[-155,-163],[-97,-134],[59,-211],[179,-240],[26,-138]],[[973639,245745],[-7,208],[4,423],[6,252],[51,220],[-83,1298],[54,366],[33,-261],[32,-571],[44,-188],[57,-63],[58,33],[88,204],[68,115],[-9,-133],[-98,-331],[-116,-674],[-3,-499],[-179,-399]],[[894982,934659],[-113,-80],[-266,-182],[-270,-198],[-365,-106],[-387,-11],[-140,67],[-5,143],[-41,124],[-42,120],[-60,167],[101,57],[477,81],[475,91],[452,-81],[184,-192]],[[752585,676747],[-114,61],[-64,-38],[-30,4],[-59,30],[-73,32],[-112,-142],[-46,-233],[-34,-54],[-67,99],[-126,-110],[-107,-152],[-114,-242],[-67,-59],[-88,-6],[-73,108],[-82,180],[-70,146],[-17,106],[24,57],[49,-14],[50,-89],[52,-62],[55,10],[84,77],[92,169],[77,216],[71,210],[71,214],[-23,211],[-14,249],[-15,221],[-65,146],[-113,97],[-153,-13],[-159,-118],[-149,-199],[-99,-108],[-5,85],[106,179],[218,297],[164,137],[197,-111],[163,-183],[105,-186],[-10,-127],[-19,-88],[6,-126],[26,-122],[105,-233],[56,-127],[112,-8],[44,138],[88,65],[119,-17],[122,-105],[82,-148],[-12,-163],[40,-273],[-27,-71],[-103,116],[-69,67]],[[700007,837969],[18,-148],[-57,-203],[-115,-198],[-217,-16],[-144,-68],[-110,-49],[-76,-134],[-91,-36],[-116,53],[-38,284],[-104,371],[49,81],[220,33],[273,-45],[118,16],[49,82],[170,31],[171,-54]],[[687995,835597],[-107,-53],[-52,-69],[-36,-90],[-39,-89],[-251,-217],[-299,29],[-273,161],[-4,190],[67,221],[76,213],[8,99],[86,10],[142,-202],[139,-169],[148,-3],[164,91],[203,-24],[28,-98]],[[591417,895727],[58,-104],[120,-104],[224,-57],[87,-121],[-15,-178],[-15,-162],[-10,-114],[-350,-229],[-407,-186],[-157,41],[-19,103],[-5,110],[-85,148],[207,163],[177,109],[19,101],[-31,112],[-119,99],[-138,110],[15,157],[128,194],[40,153],[69,62],[172,-4],[-18,-117],[-78,-151],[20,-84],[111,-51]],[[941482,920062],[-58,-49],[-83,-65],[-106,-218],[-71,-215],[-75,-59],[-113,26],[-304,206],[-193,218],[-75,196],[33,148],[145,79],[276,5],[403,-96],[196,-19],[25,-157]],[[944514,916304],[113,67],[93,101],[-89,175],[-33,138],[133,8],[324,-120],[292,-174],[115,-160],[129,-124],[89,-64],[-59,-61],[-343,-20],[-262,-36],[118,-149],[81,-154],[-83,-44],[-266,99],[-266,149],[-64,97],[38,107],[-8,103],[-52,62]],[[829944,691441],[-32,55],[-59,237],[-13,197],[-53,177],[-2,116],[97,20],[304,3],[205,50],[64,-300],[-11,-228],[-125,-176],[-181,-251],[-98,56],[-96,44]],[[815142,682758],[7,-153],[-78,-227],[-96,-296],[-63,-241],[-78,-149],[-79,-63],[-103,180],[-105,402],[-19,266],[51,67],[149,-93],[80,31],[85,329],[123,21],[126,-74]],[[572618,850530],[-6,-346],[-84,-349],[-71,-392],[-94,14],[-131,435],[-211,506],[37,236],[70,217],[147,86],[162,-30],[122,-104],[59,-273]],[[827614,692097],[-82,7],[-228,285],[-126,55],[-217,-323],[-230,-414],[-168,-55],[-264,127],[-239,410],[-180,329],[-55,343],[50,282],[142,67],[129,-86],[58,-253],[40,-244],[108,-100],[156,-14],[141,110],[160,265],[227,32],[213,-230],[302,-415],[63,-178]],[[535831,882002],[85,196],[229,155],[289,81],[258,-7],[178,-80],[73,-91],[-65,-53],[-323,18],[-140,-111],[-67,-121],[32,-251],[62,-316],[260,-403],[404,-210],[-65,-138],[-257,143],[-175,116],[-184,154],[-286,278],[-206,330],[-102,310]],[[319539,767345],[4,-83],[-102,-335],[-65,-106],[-208,-89],[-213,38],[-62,155],[-3,157],[30,158],[61,129],[90,81],[84,9],[25,-146],[43,-115],[75,-21],[119,37],[122,131]],[[316371,776913],[-122,-90],[-109,146],[163,171],[149,255],[81,337],[59,235],[69,98],[89,92],[34,57],[43,42],[63,-34],[-1,-170],[-28,-176],[-55,-165],[-80,-219],[-28,-160],[-146,-228],[-181,-191]],[[165766,753955],[-72,-379],[-79,-535],[-47,-235],[-132,-43],[-63,106],[-51,391],[-15,702],[40,454],[71,134],[108,117],[99,-104],[86,-138],[57,-153],[-2,-317]],[[168244,741637],[-3,-99],[-36,-105],[-112,59],[-168,286],[-247,601],[-167,563],[34,159],[118,239],[178,109],[121,-169],[51,-583],[90,-640],[79,-238],[62,-182]],[[624971,745256],[-49,162],[46,236],[-7,173],[79,16],[224,-142],[407,-473],[192,-130],[172,-54],[178,-260],[277,-416],[181,-275],[96,-233],[54,-213],[9,-161],[-21,-121],[-122,-135],[-179,-99],[-173,3],[-256,-27],[-211,-15],[-102,89],[-77,198],[-83,582],[-97,528],[-84,108],[-79,146],[-82,194],[-154,174],[-139,145]],[[818996,684805],[-74,-24],[-82,-29],[-84,32],[-37,-22],[11,-94],[47,-151],[58,-102],[-8,-33],[-44,-23],[-77,5],[-84,2],[-70,93],[0,129],[3,162],[-18,137],[109,172],[141,91],[57,-5],[60,7],[78,-108],[34,-146],[-20,-93]],[[818335,687021],[58,-30],[50,18],[27,85],[-10,242],[78,52],[82,69],[44,93],[74,-80],[98,-218],[14,-226],[-84,-73],[-165,-221],[-208,-26],[-106,249],[6,75],[42,-9]],[[825905,710223],[-87,-229],[-125,-278],[-111,-21],[-100,268],[-91,406],[-35,298],[31,372],[109,-36],[243,-319],[143,-260],[23,-201]],[[818335,685142],[-133,240],[-149,197],[-48,79],[36,46],[106,-22],[117,-178],[71,-36],[82,126],[7,117],[-10,95],[-62,160],[4,74],[88,-54],[72,21],[32,42],[65,89],[105,-105],[49,-102],[-11,-83],[-14,-118],[14,-84],[-70,-54],[-123,-134],[-77,-305],[-90,-41],[-61,30]],[[817501,683258],[-32,-132],[-103,-180],[-23,-203],[57,-133],[-26,-54],[-103,-28],[-131,116],[-76,393],[9,562],[84,185],[115,159],[85,-1],[-8,-150],[-24,-187],[43,-229],[57,-6],[58,-5],[18,-107]],[[817104,682353],[-58,-55],[-64,123],[-74,298],[-68,-37],[-92,-174],[-109,-114],[-60,9],[-16,72],[58,141],[54,154],[-20,100],[-74,21],[-72,22],[-8,86],[216,118],[153,152],[76,-25],[82,-515],[60,-266],[16,-110]],[[167769,724821],[14,-39],[-14,-117],[-105,-137],[-145,-49],[60,166],[135,108],[55,68]],[[167015,910997],[73,147],[117,211],[-9,133],[-45,115],[109,136],[118,207],[67,161],[81,50],[71,-4],[6,-58],[104,-173],[35,-103],[112,-151],[130,-81],[111,-152],[44,-144],[-46,-78],[-182,-5],[-118,-116],[-73,-253],[-80,-359],[21,-185],[144,-256],[219,-206],[-39,-176],[-335,-252],[-244,-199],[-230,-58],[-87,48],[10,399],[31,591],[-7,373],[-66,261],[-42,177]],[[305332,798003],[-159,301],[-6,229],[7,211],[-55,157],[-106,152],[-129,103],[-115,36],[-114,-102],[-75,-197],[44,-300],[17,-98],[-69,-113],[-143,90],[-71,76],[-52,27],[-49,-30],[-53,-191],[-50,-226],[-10,-203],[-21,-93],[-64,165],[-91,200],[-187,-38],[-106,-105],[-66,-124],[-99,84],[-56,271],[-89,286],[-76,45],[-52,-11],[-56,-97],[-104,-406],[-134,-286],[-63,-13],[117,539],[171,603],[70,155],[24,-55],[94,-119],[132,-213],[79,-208],[134,38],[229,243],[197,340],[120,250],[80,68],[87,-11],[196,-68],[99,179],[-8,281],[-141,495],[-52,326],[105,-20],[61,-119],[78,-297],[83,-375],[65,-303],[84,-98],[95,12],[100,144],[99,-110],[75,-278],[156,-272],[183,-247],[145,-58],[151,-430],[160,-602],[10,-188],[-116,-32],[-86,55],[-29,137],[-62,242],[-43,260],[5,179],[-42,137],[-81,80],[-100,-4],[-130,-114],[-96,-135],[-16,-95],[-30,-112]],[[341569,796969],[68,189],[57,206],[75,28],[53,-190],[43,-241],[-114,-215],[-155,-86],[-76,15],[-215,-292],[-306,-646],[-542,-882],[-216,-290],[-180,-425],[-505,-673],[-275,-172],[-246,90],[-183,28],[133,130],[514,525],[320,502],[285,209],[531,689],[281,519],[22,286],[1,201],[114,48],[294,282],[222,165]],[[149007,903390],[-171,-90],[-210,43],[-55,332],[-60,461],[-33,264],[-99,169],[-46,145],[-35,158],[-219,74],[-197,151],[89,76],[324,31],[334,-154],[264,-382],[279,-257],[187,-61],[71,-85],[20,-98],[-29,-123],[0,-142],[47,-164],[-42,-157],[-419,-191]],[[150691,903637],[60,-94],[-73,-352],[-103,-360],[-99,-313],[-250,-263],[-397,-118],[-289,33],[-156,120],[-6,114],[78,62],[32,133],[-19,189],[-69,73],[-71,102],[18,95],[561,230],[666,304],[117,45]],[[170371,889963],[-44,180],[3,182],[10,117],[-56,168],[-192,293],[-180,196],[17,152],[257,161],[205,104],[297,98],[299,70],[59,-58],[78,-116],[85,-96],[171,-108],[107,-163],[52,-372],[-93,-271],[-7,-129],[19,-151],[75,-171],[32,-166],[-32,-178],[-78,-156],[-136,-155],[16,-178],[222,-164],[233,38],[19,-52],[8,-286],[-85,-53],[-435,-30],[-432,360],[-249,253],[-161,261],[-78,243],[-6,177]],[[249008,823572],[37,135],[63,272],[86,195],[106,12],[69,-81],[73,-93],[82,-16],[73,95],[123,100],[151,61],[124,31],[206,-137],[182,-175],[43,-111],[326,-139],[335,-117],[-193,-227],[-377,-255],[-347,-66],[-264,38],[-192,186],[-178,177],[-299,59],[-229,56]],[[241209,807645],[-48,-96],[-49,-97],[-99,-30],[-234,243],[-305,467],[-145,322],[4,168],[69,162],[137,166],[100,56],[73,-91],[167,-39],[190,115],[113,-25],[93,-129],[49,-190],[61,-198],[82,-201],[-5,-84],[-177,-214],[-76,-305]],[[238232,823385],[-318,-26],[-263,-62],[-200,-59],[-97,21],[-360,120],[-481,309],[-217,242],[-42,193],[29,255],[13,181],[122,73],[105,62],[81,116],[191,79],[332,-16],[91,-86],[-54,-156],[-180,-177],[-10,-109],[97,-124],[178,-103],[316,33],[363,61],[324,48],[273,57],[231,-59],[127,-210],[-33,-285],[-247,-234],[-213,-101],[-158,-43]],[[304140,819020],[65,-77],[136,-38],[111,-15],[-126,-197],[-93,-235],[-22,-171],[56,-55],[-9,-125],[-21,-166],[19,-399],[67,-406],[61,-228],[-33,-169],[-149,118],[-96,311],[6,248],[-6,217],[1,143],[-46,84],[-109,20],[-41,-80],[-29,-180],[-105,-137],[-45,89],[-129,140],[-166,76],[-48,127],[8,317],[-17,217],[-94,55],[-83,-178],[-146,-179],[-113,-185],[-68,13],[-46,129],[-4,186],[84,205],[80,181],[67,16],[170,14],[194,78],[51,40],[24,111],[-20,85],[-64,74],[-158,36],[-8,78],[-5,91],[36,101],[195,-131],[163,-238],[109,-45],[148,-14],[141,111],[59,0],[48,-63]],[[210011,831810],[-163,-128],[-146,-34],[-233,125],[-127,-34],[-147,-130],[-126,-210],[-153,-336],[-89,-234],[-219,-100],[-347,-179],[-284,-129],[-182,66],[-120,121],[-22,267],[-6,276],[-30,151],[68,256],[44,228],[-19,137],[-13,125],[-22,108],[88,177],[185,202],[159,114],[58,-24],[294,-108],[337,158],[70,-34],[29,-51],[118,60],[114,-39],[111,-26],[148,93],[85,-29],[46,-121],[152,-147],[280,-14],[50,-41],[87,-383],[-75,-133]],[[240182,779143],[37,-227],[21,-199],[-73,-156],[-167,-86],[-189,7],[-161,124],[-136,252],[-57,324],[103,311],[221,217],[199,92],[105,-21],[49,-91],[28,-242],[10,-188],[10,-117]],[[301965,763694],[85,-150],[126,-135],[7,-105],[-51,-172],[-125,-45],[-259,387],[-202,179],[21,166],[16,134],[59,95],[40,98],[-14,79],[71,-14],[120,-133],[70,-193],[36,-191]],[[279310,767683],[-85,-236],[-3,-201],[-52,-52],[-57,280],[-49,464],[-102,238],[-29,71],[46,155],[179,187],[160,278],[90,308],[57,240],[16,224],[39,340],[51,-49],[37,-316],[211,-435],[150,-163],[95,-259],[39,-247],[-25,-181],[-83,-204],[-391,-245],[-294,-197]],[[239103,829888],[404,-159],[242,-92],[124,-28],[-5,-50],[-153,-123],[-368,0],[-214,-86],[-60,-205],[-154,-226],[-468,-208],[-371,-105],[-135,-64],[-207,-126],[-99,-258],[-43,-122],[-83,-117],[-156,-130],[-343,-235],[-246,-167],[-10,89],[-3,160],[28,132],[63,139],[237,243],[256,488],[138,270],[53,324],[36,365],[-2,90],[110,28],[189,77],[270,141],[450,44],[272,-19],[248,-70]],[[753654,716179],[-36,-127],[-46,-173],[-51,-95],[-286,110],[-338,107],[-178,262],[-80,143],[7,70],[111,48],[111,-20],[228,-80],[234,-15],[63,68],[138,-96],[123,-202]],[[632245,687186],[-98,-153],[-227,-3],[-235,87],[-449,194],[-393,174],[-178,13],[-241,-55],[-206,-33],[-74,-34],[-83,22],[-42,72],[-8,154],[-7,132],[-28,98],[-73,83],[-41,39],[-89,81],[-19,177],[102,211],[146,62],[48,9],[118,12],[100,-100],[81,-48],[159,-206],[221,-169],[113,-14],[118,-72],[135,-79],[265,-169],[188,64],[199,174],[119,13],[77,-30],[12,-72],[73,-171],[166,-327],[51,-136]],[[170334,761658],[-114,3],[-126,-192],[-152,-107],[-120,137],[-109,236],[-89,298],[-34,238],[52,119],[383,67],[353,-120],[85,-359],[58,-273],[-30,-97],[-55,-6],[-29,18],[-73,38]],[[343103,791265],[-286,-400],[-352,-296],[66,220],[138,277],[98,200],[46,126],[75,181],[101,67],[83,-101],[77,-100],[-46,-174]],[[234446,834496],[-98,-227],[-135,-331],[-85,-256],[-153,-206],[-255,-124],[-159,-14],[13,102],[21,149],[28,151],[218,234],[61,251],[269,163],[275,108]],[[40606,891179],[17,-71],[-75,-134],[-220,-215],[-320,-219],[-309,-99],[-233,64],[-265,275],[-30,163],[129,100],[89,49],[459,-14],[556,48],[202,53]],[[45006,867177],[40,-88],[5,-135],[-53,-180],[-42,-123],[-74,0],[-44,131],[-106,221],[-110,181],[14,141],[118,157],[173,128],[185,12],[353,40],[238,30],[-123,-121],[-103,-78],[-224,-141],[-247,-175]],[[48589,865112],[16,-131],[-70,-58],[-125,-17],[-260,100],[-233,146],[-52,97],[38,86],[114,57],[163,3],[230,-99],[179,-184]],[[58715,855695],[-35,-207],[-104,-15],[-79,97],[-29,165],[-20,225],[-110,274],[-167,263],[314,-134],[188,-371],[35,-178],[7,-119]],[[60492,860077],[-94,-49],[-346,87],[-427,70],[-473,-159],[-336,-137],[-403,-86],[-145,-2],[-190,23],[-44,80],[-33,121],[-34,101],[88,7],[278,-27],[669,191],[604,211],[154,-20],[175,-171],[324,-20],[181,-103],[52,-117]],[[57893,861571],[72,145],[208,129],[385,181],[183,64],[-58,-115],[119,-107],[149,-94],[10,-80],[0,-92],[-19,-65],[-366,67],[-474,62],[-181,-93],[-28,-2]],[[59145,857839],[-325,-126],[-28,-148],[87,-158],[391,-153],[161,-131],[62,-108],[-140,14],[-344,65],[-135,39],[-176,215],[-342,206],[-151,185],[-103,279],[-137,335],[109,13],[413,-399],[147,27],[271,75],[410,-44],[-170,-186]],[[760553,796166],[-55,-151],[-283,-200],[-392,-212],[-239,-148],[-147,-107],[-210,272],[-225,357],[-171,88],[-210,160],[-358,285],[-306,226],[-90,164],[6,172],[81,141],[213,55],[330,41],[557,-178],[449,-390],[137,-126],[126,45],[123,-39],[262,53],[190,-146],[175,-188],[37,-174]],[[738577,688600],[-102,-252],[-16,-352],[-53,-255],[-69,-144],[-53,1],[10,176],[-81,301],[-180,179],[-144,-10],[-111,-80],[-91,-80],[-153,25],[-207,151],[-169,204],[-69,227],[24,284],[113,253],[207,62],[235,-101],[239,-20],[218,17],[236,-138],[181,-156],[38,-153],[-3,-139]],[[617907,574821],[-16,-220],[-66,-64],[-51,93],[-8,158],[7,128],[36,110],[69,-88],[29,-117]],[[240606,793135],[32,132],[0,109],[-85,145],[-7,141],[71,29],[71,39],[-34,185],[-146,219],[-220,164],[-230,77],[-94,45],[82,54],[256,-22],[159,43],[-14,136],[-30,107],[-36,91],[151,72],[175,83],[64,32],[79,-293],[90,-353],[96,-117],[68,-86],[3,-142],[4,-125],[-81,-163],[-99,-187],[11,-75],[43,-39],[62,19],[144,180],[132,163],[-32,-131],[-39,-186],[85,-40],[288,90],[98,26],[86,-37],[145,10],[286,73],[40,-102]],[[242280,793501],[-206,-189],[-46,-67],[4,-61],[6,-54],[163,-64],[210,-95],[130,16],[85,51],[38,-73],[105,-132],[49,-185],[8,-143],[36,-55],[-84,-93],[90,-97],[213,-70],[59,-98],[58,-92],[39,-198],[-18,-197],[-7,-6],[-34,-33],[-62,91],[-116,192],[-224,151],[-454,37],[-427,15],[-215,105],[-154,171],[-57,147],[43,49],[203,-131],[326,-169],[215,-42],[118,130],[115,163],[17,74],[-320,139],[-343,142],[-38,70],[6,60],[-147,39],[-218,-15],[-83,-60],[26,-96],[-48,-65],[-126,26],[-94,126],[-230,165],[-167,-40],[-97,79],[-21,16]],[[153234,841248],[213,-90],[274,-497],[273,-539],[286,-561],[172,-418],[62,-191],[44,-136],[131,-211],[175,-275],[154,-137],[144,-20],[189,107],[58,-190],[-55,-408],[95,-317],[191,-232],[504,68],[507,-68],[410,-69],[612,-120],[333,112],[74,166],[334,236],[386,86],[209,51],[330,120],[200,-6],[398,-179],[441,-260],[113,-155],[4,-215]],[[160495,836900],[-198,10],[-144,34],[-250,154],[-185,172],[-282,34],[-270,-76],[-329,-92],[-294,-21],[-242,-102],[-354,-394],[-805,68],[-797,176],[-183,-117],[-22,-314],[44,-326],[39,-143],[49,-50],[75,-38],[76,-268],[85,-300],[119,-141],[216,-297],[244,-323],[171,-300],[232,-488],[198,-380],[153,-136],[22,-57],[1,-202],[-10,-169],[9,-232],[27,-331],[34,-258],[9,-87],[-77,133],[-182,596],[-244,794],[-249,592],[-253,467],[-368,418],[-475,649],[-206,116],[-105,90],[-206,382],[-91,78],[-33,38],[-24,57],[17,121],[44,170],[-17,171],[-187,79],[-304,-1],[-487,294],[-341,301],[73,5],[354,-202],[387,-167],[136,86],[23,116],[-224,350],[-298,374],[-376,898],[-982,2076],[-4,261]],[[231798,837146],[-53,138],[188,379],[369,89],[257,68],[203,255],[421,312],[411,174],[178,-68]],[[233772,838493],[-64,-153],[-188,-113],[-287,-141],[-193,-111],[84,-127],[88,-150],[-16,-121],[-87,-105],[-21,-107],[43,-88],[-38,-35],[-240,36],[-199,42],[-315,10],[-261,-44],[-280,-140]],[[199454,787139],[66,68],[354,5],[239,-74],[79,-82],[115,-295],[134,-68],[173,256],[185,258],[76,195],[-8,149],[-72,96],[303,-68],[415,-81],[93,104],[116,212],[123,72],[114,-38],[177,15],[306,5],[364,-51],[167,51],[-24,126],[14,104],[146,83],[166,31],[144,30],[87,102],[80,98],[151,111],[162,110],[39,114],[46,170],[-24,170],[-43,129],[144,146],[292,262],[75,-38]],[[204428,789616],[110,-36],[114,-175],[-17,-210],[-74,-143],[37,-275],[166,-245],[88,-133],[-39,-126],[40,-143],[33,-179],[25,-284],[42,-370],[-1,-254],[-95,-209],[-48,-11],[48,304],[0,262],[-94,316],[-91,341],[-50,176],[-67,167],[-67,206],[-99,165],[-95,20],[-72,-124],[-113,-180],[-82,-253],[-16,-210],[-120,18],[-234,-83],[-234,-84],[-127,-52],[-68,-130],[-33,-261],[-35,-107],[-46,104],[-74,136],[-107,-30],[-135,-135],[-63,6],[-40,123],[-425,111],[-343,3],[-74,-2],[-147,-184],[-120,-112],[-217,-61],[-292,-5],[-296,-356],[-354,-564],[-181,-457],[-34,98],[40,379],[-19,223],[-38,198],[-53,92],[-93,66],[-172,66],[-350,21],[-73,105]],[[211743,789655],[38,276],[104,168],[153,233],[253,66],[141,-268],[117,-157],[88,-84],[272,51],[393,410],[260,153],[244,56],[315,-55],[350,-155],[321,-233],[212,-309],[114,-504],[-59,-335],[5,-262],[5,-136],[133,-126],[182,-52],[148,-47],[66,82],[-43,339],[-42,363],[113,84],[176,70],[105,83],[42,-4],[-20,-97],[-38,-137],[-23,-76],[-20,-80],[52,-332],[65,-371],[35,-158],[148,-109],[48,-108],[-118,-308],[143,-315],[187,-115],[201,-115],[381,-140],[461,35],[256,73],[68,37],[34,75],[377,55],[491,118],[204,100],[111,-65],[62,-162],[-121,-128],[-176,-105],[-225,-202],[-198,-157]],[[218334,786575],[-528,50],[-249,-98],[-257,-62],[-307,-120],[-97,-20],[-94,143],[-225,244],[-176,137],[-143,90],[-250,126],[-267,-17],[-212,-129],[-55,-12],[26,163],[165,207],[170,189],[-23,287],[-79,304],[-246,42],[-379,125],[-152,199],[-104,576],[86,233],[23,214],[-119,256],[-290,288],[-389,213],[-438,32],[-354,-168],[-143,-199],[-280,-199],[-335,-83],[-169,70],[-87,266],[-86,143],[-229,-197],[-236,-272],[-63,59]],[[133068,858093],[-81,-19],[-96,128],[-151,371],[-285,867],[-231,513],[-586,758],[-622,502],[-344,388],[-150,297],[-487,774],[-160,394]],[[129875,863066],[298,-125],[438,-768],[506,-621],[267,-230],[312,-182],[188,-144],[169,-258],[270,-406],[112,-207],[130,-292],[129,-312],[13,-63],[30,-133],[34,-270],[220,-448],[95,-297],[-18,-217]],[[172480,797423],[-138,-35],[-294,450],[-92,228],[-121,419],[-45,473],[50,601],[27,287],[98,295]],[[171965,800141],[23,-163],[-68,-1128],[59,-402],[110,-345],[200,-300],[179,-185],[12,-195]],[[176196,790970],[109,203],[85,102],[184,3],[198,-108],[165,-281],[188,-313],[56,-137],[-252,-127],[-290,-186],[-86,-189],[-14,-291],[-28,-246],[-91,-87],[-112,-31],[-67,38],[34,141],[51,291],[68,420],[113,316],[137,132],[94,104],[-18,122],[-55,109],[-85,39],[-105,56],[-157,-125],[-122,45]],[[166637,788617],[-108,31],[-191,139],[-150,198],[-90,283],[-358,463],[-547,722],[-263,559],[-9,133],[260,-448],[596,-823],[437,-627],[261,-440],[162,-190]],[[206806,855393],[930,862],[265,-61],[297,-137],[179,-153],[-74,-214],[-104,-161]],[[208299,855529],[-566,-162],[-241,-45],[-254,-63],[-443,-171],[-296,-260],[-202,-439],[-144,-345],[-140,-19],[-91,121],[37,229],[135,314],[712,704]],[[92544,875217],[65,20],[36,-142],[39,-143],[66,-270],[194,-301],[186,-183],[-13,-117],[-104,-180],[-136,66],[-247,405],[-141,292],[2,199],[37,193],[16,161]],[[236194,789683],[276,-166],[243,-203],[17,-197],[-41,-157],[-292,-104],[-594,-17],[-382,107],[-63,207],[55,275],[178,263],[280,187],[210,-32],[113,-163]],[[236054,790231],[127,158],[375,192],[415,114],[217,-25],[142,-123],[8,-223],[-117,-201],[-174,-139],[-241,-98],[-400,-12],[-318,48],[-62,129],[28,180]],[[226806,875874],[6,294],[-24,250],[-86,134],[-88,188],[-78,248],[-32,144],[72,-2],[66,-73],[147,-27],[259,3],[153,-11],[14,113],[25,128],[134,24],[129,-74],[122,42],[200,89],[301,14],[307,-16],[140,157],[93,334],[139,190]],[[228805,878023],[37,-72],[-3,-254],[-56,-198],[-67,-157],[42,-213],[34,-277],[11,-383],[50,-317],[144,-146],[119,-205],[27,-208],[93,-204],[133,-184],[119,-101],[67,-6],[6,67],[-6,65],[32,8],[62,-40],[49,-96],[-27,-141],[-163,-170],[-189,-64],[-230,189],[-272,226],[-213,90],[-214,10],[-175,-51],[-92,-71],[-38,-107],[-67,-65],[-143,90],[-160,178],[-71,134],[89,60],[131,67],[-72,101],[-157,244],[-223,337],[-206,153],[-59,-116],[-244,-307],[-97,-15]],[[303757,888111],[29,145],[-160,167],[-304,206],[-314,110],[-229,-34],[-147,-112],[-123,-360],[-355,-376],[-412,-45],[-205,-55],[-146,-101],[-177,21],[-262,116],[-389,287],[-283,280],[-54,136],[57,156],[-83,167],[-149,172],[-54,187],[-49,131],[-47,67],[-49,60],[38,86],[124,100],[107,34],[-9,-98],[-9,-107],[70,-32],[241,63],[90,-50],[-150,-214],[-2,-175],[153,-117],[196,-27],[109,56],[-46,94],[-70,93],[462,139],[200,127],[21,91],[-84,152],[-289,226],[40,186],[114,140],[79,65],[24,180],[-68,280],[-200,356],[-134,312],[40,211],[30,180],[-145,267],[-131,257],[77,65],[256,-242],[285,-333],[166,-125],[149,-17],[200,-36],[159,-83],[46,-88],[35,-105],[108,-135],[384,-284],[435,-226],[77,-82],[95,-58],[288,-181],[213,-273],[77,-233],[52,-151],[35,-150],[6,-154],[282,-445],[328,-520],[82,-160],[18,-58],[-142,-127],[-143,-129],[10,-57],[12,-87],[15,-108],[134,-97],[94,-91],[-87,-49],[-257,112],[-329,108],[-259,19],[-24,102],[132,128],[36,61],[59,89]],[[219337,679921],[-136,-9],[-34,-2],[-141,50],[-109,147],[-120,64],[-108,-28],[-41,48],[32,119],[40,215],[-22,93],[-33,38],[-60,-4],[-26,110],[4,115],[5,27],[8,47],[84,77],[171,-263],[91,-140],[109,-123],[95,-179],[98,-108],[104,94],[84,131],[33,-76],[44,130],[72,314],[19,-28],[-33,-241],[12,-212],[52,-129],[40,-29],[-5,-42],[-44,-55],[-116,-34],[-169,-117]],[[286613,786641],[198,242],[249,309],[266,336],[112,138],[17,-105],[-218,-290],[-290,-317],[-63,-181],[19,-92],[165,163],[140,121],[-37,-173],[-42,-193],[214,-74],[271,-131],[142,-174],[-41,-271],[-146,-407],[-38,-283],[-15,-197],[-20,-167],[-43,-125],[15,-179],[90,-190],[122,-95],[114,-3],[98,-15],[89,-100],[-13,-113],[-88,-91],[-82,-70],[-139,47],[-172,166],[-85,101],[-49,70],[-81,339],[-58,373],[-61,163],[-72,56],[-48,-72],[38,-260],[44,-221],[-84,89],[-107,249],[-20,407],[-75,258],[-111,16],[-20,164],[31,184],[28,196],[-32,160],[-122,126],[10,116]],[[214529,625182],[72,-3],[92,-25],[28,-71],[-34,-117],[-88,-135],[-115,-89],[-183,89],[-229,173],[-205,90],[-226,-17],[-226,-10],[-236,122],[-236,188],[-88,170],[279,121],[463,159],[286,124],[301,-59],[345,-710]],[[260820,577955],[-195,-134],[-239,-76],[-149,32],[22,170],[27,211],[-19,137],[-52,87],[-178,-34],[-231,-2],[-164,175],[-119,236],[-47,216],[-1,151],[119,28],[216,106],[190,210],[170,97],[124,-36],[163,-539],[206,-398],[118,78],[42,-96],[5,-242],[-8,-377]],[[348304,355496],[-65,94],[-2,678],[74,207],[169,190],[78,266],[-23,208],[-89,97],[-56,60],[11,92],[-134,65],[-271,82],[-90,145],[116,120],[283,-14],[229,-44],[49,214],[11,302],[-56,182],[-400,174],[-346,149],[70,72],[194,-32],[245,-67],[224,42],[158,172],[23,261],[-163,317],[95,228],[251,127],[37,185],[-1,231],[-90,242],[-2,218],[89,195],[-32,329],[49,219],[138,74],[55,214],[-2,269],[-96,343],[-57,312],[30,275],[20,251],[76,181],[108,106],[47,47]],[[349258,363574],[-43,-435],[-3,-26],[4,-44],[32,-436],[52,-361],[-18,-1075],[-2,-1030],[120,-260],[92,-131],[-124,-105],[-180,-149],[-54,-186],[10,-216],[141,-346],[102,-249],[-84,24],[-174,143],[-122,1],[-50,-166],[-50,-152],[18,-214],[138,-303],[53,-270],[-40,-216],[-44,-142],[-78,-71],[-3,-170],[247,-214],[244,-140],[-188,-127],[-200,-172],[-118,-72],[-138,-40],[3,-148],[83,-217],[-62,-103],[-185,10],[-101,-56],[-75,-135],[-79,-125],[-1,1],[-77,45]],[[278692,559849],[-48,-121],[-1,-16],[-42,54],[48,27],[43,56]],[[278628,559617],[4,-10],[-298,-177],[-84,-162],[-49,-4],[-22,57],[61,150],[63,148],[-70,76],[-108,126],[-71,87],[-33,-195],[-37,-253],[-58,-62],[-19,-146],[-19,-121],[-37,9],[-53,91],[-53,122],[-26,-21],[5,-115],[-29,-68],[-79,-25],[-51,-30],[25,145],[150,335],[168,560],[18,98],[19,-35]],[[278321,560548],[-11,272],[8,-136],[18,-186],[-13,-18],[-2,68]],[[575057,399670],[-7,184],[60,137],[69,176],[83,157],[3,239],[31,213],[180,484],[233,470],[102,169],[73,104],[54,78],[45,129],[47,145],[4,147],[-79,114],[76,420],[165,526],[114,315],[217,557],[164,470],[90,27],[77,-40],[53,52],[-6,145],[50,258],[36,230],[-32,114],[35,69],[98,29],[130,34],[86,94],[-38,193],[-78,194],[12,101],[89,49],[90,104],[52,119],[61,21],[51,-75],[69,-89],[91,-128],[95,-31],[92,38],[87,163],[91,207],[84,113],[88,169],[32,170],[-14,138],[87,49],[111,101],[105,173],[40,194],[-22,146],[67,-37],[101,-63],[61,-79],[57,-72],[134,162],[155,106],[91,-32],[60,54],[23,88],[52,94],[124,63],[91,-44],[71,-35],[220,-141]],[[579890,408099],[260,-233],[123,14],[123,-40],[67,-127],[58,-80],[-56,-86],[-68,-193],[-32,-180],[-84,37],[-97,39],[-35,-287],[-69,-270],[-109,-120],[-78,-107],[-103,62],[-76,140],[7,163],[-27,219],[-98,57],[-115,-95],[-77,-70],[-86,-68],[-128,-113],[-96,-205],[-42,-242],[7,-186],[-20,6],[-99,166],[-102,244],[-113,41],[-277,-173],[-253,-126],[-94,-131],[-42,-208],[-48,-298],[13,-187],[38,-85],[-17,-140],[-56,-177],[-81,-109],[-134,81],[-112,66],[-44,-65],[-81,-168],[-118,-229],[-84,-164],[-76,-63],[-176,-107],[-126,-192],[-60,-133],[-41,-144],[-41,-236],[-118,-517],[-97,-414],[-30,-21],[-46,-111],[-131,-204],[-131,-147],[-42,-117],[29,-32],[34,-3],[-24,-54],[-128,-72],[-151,-131],[-47,-91],[-138,-326],[-162,-476],[-91,-284],[-87,-254],[-134,-400],[-107,-260],[-72,-43],[-85,30]],[[591369,513557],[-92,122],[-101,330],[-104,84],[-62,-46],[-33,-218],[-27,-106],[-227,214],[-222,209],[-74,153],[-48,354],[22,148]],[[590401,514801],[184,-48],[346,185],[182,211],[6,-52],[-16,-92],[38,-42],[142,38],[210,42],[122,-55],[48,-36],[65,72],[123,245],[97,193],[32,-56],[43,-51],[96,136],[118,129],[87,55],[90,-34],[114,-49],[131,127],[157,318],[88,-18],[31,-259],[39,-79],[32,-104],[12,-61],[-122,-13],[-302,-103],[-296,-227],[-184,-255],[-98,-227],[38,-123],[184,-32],[145,-39],[-20,-97],[-119,-144],[-31,-179],[128,-79],[108,96],[59,100],[39,3],[12,-127],[14,-252],[-61,-297],[-94,-311],[-29,-177],[-84,186],[-175,204],[-122,143],[-288,406],[-335,288],[-84,9],[-14,-79],[12,-82],[67,-142],[3,-409]],[[610550,857609],[-177,-268],[-505,391],[-418,463],[-579,724],[-392,543],[2,176]],[[608481,859638],[111,5],[126,-164],[148,-191],[104,-88],[104,-70],[107,-53],[120,-48],[292,-319],[159,-25],[197,-249],[348,-185],[202,24],[-99,-166],[-63,-186],[118,-191],[95,-123]],[[526539,786604],[-283,17],[-561,496],[-163,373],[-25,57]],[[525507,787547],[-193,600],[52,59],[274,-289],[395,-334],[392,-307],[362,-345],[178,-173],[62,-61],[-34,-71],[-92,-50],[-274,21],[-76,6],[-14,1]],[[562719,867572],[146,136],[87,202],[153,191],[341,238],[372,322],[219,199],[231,98],[342,89],[91,-50],[-122,-112],[-13,-53],[-9,-41],[-154,-62],[-237,-87],[-151,-37],[-164,-97],[-389,-267],[-402,-364],[-120,-257],[-127,-103],[-94,55]],[[598335,690383],[124,8],[17,-20],[117,-138],[80,-166],[-16,-133],[-23,-173],[-29,-120],[-108,-51],[-111,45],[-7,3],[-70,182],[-41,253],[14,222],[53,88]],[[598824,699188],[-71,173],[-48,319],[14,308],[72,213],[94,48]],[[598885,700249],[67,-127],[36,-263],[-12,-308],[-43,-192],[-109,-171]],[[857594,406584],[-39,176],[-67,244],[-92,217],[-102,121],[-41,89],[-40,69],[-37,110],[9,77],[12,174],[-21,177],[-130,41],[-19,164],[105,375],[145,772],[43,375],[65,85],[53,74],[-20,165],[-72,213],[38,92],[99,43],[119,18]],[[857602,410455],[102,275],[86,66],[11,-65],[-84,-230],[16,-139],[19,-129],[59,-1],[88,77],[130,112],[152,129],[126,1],[88,-63],[25,-90],[-45,-106],[-41,-171],[-85,-223],[-72,-258],[37,-179],[-17,-102],[-36,-176],[-28,-123],[-52,-142],[-41,-181],[-47,-72],[-38,52],[-38,33],[-65,0],[-69,-168],[-28,-342],[16,-272],[-11,-228],[-16,-261],[-12,-336],[-74,-496],[-64,-63]],[[770963,711929],[21,153],[78,162],[118,141],[52,149],[-21,144],[40,146],[100,150],[134,163],[78,45]],[[771563,713182],[86,-325],[9,-303],[12,-293],[126,-296],[112,-260],[-72,-90],[-166,21],[-139,10],[-95,-11],[-63,28],[-16,-112],[-16,-121],[-98,-22],[-125,58],[-77,161],[-78,302]],[[770244,711689],[-160,-57],[-406,479],[-34,141],[-27,283],[11,110],[51,16],[93,47],[314,87],[333,-17],[189,-131],[135,-129],[-21,-85],[-132,-268],[-146,-298],[-200,-178]],[[701815,752067],[-51,118],[62,82],[88,159],[54,232],[-58,325],[-82,306],[75,150],[366,-10],[342,-116],[197,-135],[207,-161],[428,-160],[168,-147]],[[703611,752710],[-26,-101],[-68,-26],[-178,-55],[-265,69],[-373,-11],[-370,-91],[-445,-454],[-71,26]],[[725553,688147],[96,62],[114,-141],[54,-127],[6,-165],[-123,-213],[73,-262],[84,-279],[1,-155],[-54,-110],[-97,-51],[-120,15],[-149,135],[-90,168],[69,150],[96,195],[-2,495],[42,283]],[[726043,687592],[93,116],[140,-24],[180,-98],[137,-145],[29,-193],[-88,-269],[-162,-264],[-168,-112],[-116,111],[-52,293],[7,585]],[[500287,543266],[-63,86],[-21,303],[-89,7],[-145,-152],[-62,170],[-74,257],[-109,226],[-210,253],[-224,312],[-190,215],[-288,272],[-341,292],[-232,213],[-111,284],[-28,195],[67,8],[121,-168],[102,-134],[79,155],[92,-101],[76,-337],[66,-84],[68,24],[66,26],[26,204],[9,301],[35,69],[71,-328],[90,-334],[83,6],[96,31],[118,68],[95,43],[53,-101],[33,-227],[54,-223],[131,-114],[110,8],[44,277],[44,257],[22,73],[-15,90],[-74,123],[-49,119],[-12,121],[14,94],[68,130],[85,33],[66,-48],[50,29],[129,118],[97,160],[-22,76],[-125,26],[-48,192],[125,162],[94,-15],[8,70],[-68,124],[-30,110],[14,84],[22,94],[-10,160],[-33,244],[-3,153],[-51,24],[-58,75],[-49,74],[-48,62],[-8,133],[20,8],[56,-62],[79,-29],[56,-10],[43,-5],[54,61],[65,114],[32,111],[20,63],[38,3],[27,82],[0,121],[-31,101],[-46,30],[-59,27],[-91,173],[-96,296],[-48,234],[1,97],[-9,67],[-5,103],[-133,135],[-168,43],[12,-249],[-20,-125],[-113,81],[-60,79],[-23,142],[-58,85],[-138,15],[-99,24],[28,91],[68,86],[109,21],[96,20],[81,-13],[93,-14],[124,-17],[107,-20],[-82,292],[-128,292],[-128,19],[-200,12],[-168,-47],[-259,-124],[-267,-142],[-119,-27],[-65,45],[-92,-121],[-200,-134],[-140,-13],[117,93],[189,194],[169,146],[170,143],[180,92],[173,17],[90,100],[17,129],[5,84],[121,-36],[136,43],[100,111],[77,37],[-7,53],[-94,69],[-64,68],[-6,94],[20,111],[-1,163],[-48,288],[-46,221],[-17,167],[-87,130],[-169,225],[-85,146],[-79,-11],[-19,-214],[-94,-130],[-90,-45],[62,163],[42,285],[-100,181],[-85,73],[-146,-202],[-78,33],[2,386],[-47,152],[-52,-115],[-82,-200],[-93,-90],[-51,11],[0,114],[-139,20],[-174,-45],[-14,96],[35,97],[75,0],[182,44],[143,98],[11,85],[-60,107],[-150,281],[-135,246],[-82,98],[-115,110],[-18,112],[50,185],[-151,482],[-206,638],[-146,287],[-95,158],[-117,89],[-127,-33],[-116,-45],[-35,-223],[-33,-256],[-75,309],[-108,323],[-97,55],[-139,172],[-132,160],[-148,90],[-106,-45],[-127,-203],[-157,-197],[-166,-118],[-164,-90],[-142,12],[143,253],[200,129],[201,214],[147,175],[150,117],[99,141],[58,-72],[171,-248],[69,-147],[397,-123],[179,101],[-16,169],[-79,197],[-105,173],[-32,358],[-81,419],[-12,204],[2,281],[11,281],[62,251]],[[496800,559687],[60,-240],[10,-281],[5,-282],[11,-303],[42,-192],[85,-260],[85,-59],[53,4],[80,-404],[182,-722],[160,-400],[86,-38],[72,121],[-3,301],[-16,333],[41,215],[50,108],[23,-32],[-36,-207],[-30,-191],[102,-196],[131,-101],[47,27],[-4,-107],[-139,-280],[-133,-340],[22,-136],[42,-168],[168,-393],[170,-268],[93,-162],[90,-242],[79,-80],[32,-142],[77,-109],[116,-135],[101,0],[152,71],[107,125],[104,8],[89,54],[112,-48],[121,-189],[26,-159],[-178,-7],[-179,-46],[-26,-115],[61,-90],[127,-202],[201,-329],[173,-245],[69,-210],[59,-587],[82,-384],[79,-111],[71,2],[48,-25],[99,21],[43,171],[-34,244],[-5,137],[9,201],[39,294],[15,200],[-47,222],[23,237],[81,71],[84,-39],[68,-49],[46,49],[-15,171],[-37,270],[-79,290],[-50,189],[87,69],[91,209],[80,290],[53,149],[-157,104],[-191,131],[-32,154],[34,186],[-6,232],[-14,284],[56,207],[82,87],[40,209],[29,398],[66,244],[39,-20],[-37,-286],[-45,-382],[-45,-194],[-68,-107],[-17,-331],[-24,-360],[-28,-140],[33,-107],[176,-97],[178,-119],[51,-141],[54,-86],[38,-37],[-26,-45],[-116,-28],[-78,-46],[8,-108],[-76,-266],[-18,-268],[49,-236],[83,-238],[102,-114],[-2,-70],[-74,-37],[-118,-51],[-102,-117],[-43,-230],[-68,-288],[-35,-196],[43,-151],[61,-113],[61,-182],[148,113],[101,133],[-18,-174],[3,-75],[-12,-80],[-30,-93],[30,-181],[82,-240],[5,-374],[5,-488],[2,-243],[-63,36],[-52,-21],[-33,-127],[1,-118],[37,-152],[21,-118],[99,141],[97,165],[-19,-218],[-32,-209],[-14,-104],[-4,-218],[-23,-202],[-30,-169],[1,-81],[2,-56],[42,-158],[3,-149],[-50,-118],[-11,-140],[22,-97],[3,-102],[-4,-109],[-9,-58],[-13,-206],[48,-184],[46,-43],[-15,-164],[-51,-142],[-24,-273],[-26,-312],[-65,-307],[-8,-757],[47,-564],[50,10],[74,260],[51,117],[-23,-239],[-91,-293],[-128,-192],[-105,-49],[-56,42],[-33,20],[-22,-44],[4,-80],[-8,-159],[-11,-188],[-17,-195],[-21,-330],[14,-494],[-96,-164]],[[500362,545281],[140,277],[-60,241],[-124,171],[-147,71],[-123,-171],[-17,-362],[104,-135],[113,-213],[114,121]],[[661977,772130],[168,404],[124,947],[367,692],[69,735],[136,260],[43,83],[40,779],[163,667],[352,-4],[-68,281],[99,215],[585,-139],[53,289],[278,-104],[170,402],[174,50],[-164,-650],[-387,26],[-529,-603],[-124,-1174],[-287,-197],[-86,-199],[-176,-411],[-119,-1157],[148,-792],[-377,-722],[115,-105],[-58,-441],[159,-575],[-172,-269],[-106,-1201],[-115,-383],[-330,-471],[-289,40],[-70,174],[5,376],[235,464],[-279,1440],[253,1273]],[[668841,778181],[-85,188],[201,492],[-284,1024],[-397,-479],[-642,648],[-597,-274],[-403,481],[37,792],[791,758],[225,-491],[93,-637],[26,-30],[27,25],[92,647],[17,33],[31,-6],[304,-351],[447,378],[14,70],[-2,86],[-610,575],[-2,157],[153,39],[641,-217],[-96,-979],[323,-640],[671,-139],[338,253],[23,43],[4,75],[-175,384],[262,198],[51,217],[593,174],[-217,-548],[-224,-336],[-240,-473],[47,-370],[-231,-875],[-668,-396],[-317,-472],[-221,-24]],[[665912,778163],[-380,746],[-244,648],[630,17],[150,-221],[79,-949],[-235,-241]],[[719418,782098],[78,117],[9,156],[83,76],[90,14],[104,-67],[153,-206],[125,-257],[64,-241],[1,-204],[-27,-68],[-51,-141],[-166,-41],[-174,-125],[-74,-330],[-126,-463],[-144,-245],[-225,-213],[-285,88],[-211,68],[-239,-98],[-225,127],[-219,-52],[-75,-93],[-9,-148],[75,-230],[-48,-92],[-101,9],[-115,235],[-139,67],[-233,-77],[-202,-108],[-92,0],[-145,57],[-160,85],[-423,509],[-133,63],[-101,-98],[-154,-93],[-204,49],[-249,119],[-370,379],[-206,16],[-203,-174],[-325,95],[-170,-205],[-279,56],[-419,169],[-308,234],[-772,59],[-626,77],[-173,-136],[-397,-120],[-344,143],[-118,-1],[-424,-113],[-286,-55],[-149,136],[-119,215],[-65,177],[-4,204],[50,30],[111,-10],[40,68],[-7,41],[-20,116],[-121,32],[-127,-43],[-129,-175],[-36,-185],[78,-401],[44,-258],[-118,-162],[-154,-6],[-55,253],[-73,40],[-73,-27],[-61,-240],[-41,-157],[-80,-124],[-168,64],[-85,53],[-78,85],[-73,-58],[-151,-201],[-281,-73],[-64,-166],[-88,-489],[-115,-462],[-59,-505],[-62,-133],[-479,-505],[-137,-97],[-500,84],[-255,-95],[-55,-161],[-14,-208],[139,-897],[-39,-148],[-107,-22],[-22,-56],[7,-71],[183,-261],[4,-145],[-64,-120],[-163,-208],[-362,-464],[-31,-164],[-18,-928],[10,-51],[116,-39],[63,-116],[13,-276],[-34,-991],[-21,-193],[-97,-69],[-18,-109],[70,-239],[-54,-63],[-122,32],[-108,110],[-22,123],[17,134],[-62,330],[40,202],[-23,249],[-52,92],[-288,207],[-103,146],[-492,1015],[-133,459],[-416,409],[-79,159],[19,281],[141,175],[104,281],[-36,171],[-188,98],[-31,155],[66,120],[68,29],[199,-87],[202,534],[230,448],[61,179],[-207,293],[-24,179],[-24,339],[94,195],[202,116],[64,23],[151,-127],[189,135],[234,-127],[108,109],[18,104],[-215,390],[204,478],[198,346],[515,250],[263,283],[154,356],[262,264],[80,398],[201,365],[497,168],[375,215],[96,-17],[319,-2],[206,-231],[105,-93],[383,-171],[245,45],[1109,476],[346,-136],[702,-89],[262,-160],[107,-144],[192,-392],[126,-127],[127,-31],[288,172],[190,52],[87,-35],[259,-217],[184,77],[620,-113],[257,-406],[143,63],[110,265],[290,67],[642,102],[120,95],[126,15],[472,-64],[768,-313],[91,-87],[355,-660],[76,81],[65,177],[31,658],[25,115],[81,87],[100,-30],[52,-204],[68,39],[77,237],[132,252],[81,93],[138,141],[363,-137],[63,66],[10,118],[16,148],[83,88],[126,23],[170,-62],[170,-234]],[[585572,455107],[-21,74],[-243,190],[-82,116],[-27,67],[-49,-24],[-94,-218],[-182,-213],[-57,5],[71,134],[26,112],[-4,138],[-70,59],[-134,-18],[-83,52],[-47,290],[36,395],[49,161],[82,138],[115,113],[22,95],[46,202],[19,481],[-38,389],[-96,300],[-91,185],[-87,71],[-72,145],[-128,402],[-79,152],[-203,179],[-48,143],[-34,475],[-121,582],[-48,490],[26,172],[-17,494],[-168,1032],[-159,503],[-213,407],[-235,298],[-257,187],[-234,401],[-377,1023],[-221,402],[-70,203],[-87,514],[11,563],[-21,136],[-63,-13],[-48,46],[-34,105],[-313,1774],[-61,92],[-55,261],[-56,133],[-95,121],[-61,298],[-27,474],[17,253],[68,134],[321,554],[29,191],[1,118],[-21,499],[24,161],[80,26],[4,82],[-405,1448],[-192,800],[-112,662],[-41,414],[29,166],[5,1843],[28,756],[64,339],[61,146],[93,-41],[-3,438],[147,1984],[-26,214],[-49,-37],[-26,-276],[-202,-1282],[-35,-51],[-194,155],[-15,183],[87,244],[29,232],[-31,220],[-6,453],[48,1161],[38,255],[0,213],[-38,169],[19,223],[76,275],[27,511],[-24,748],[10,487],[43,227],[49,136],[57,48],[43,-15],[242,-84],[93,-206],[-2,-427],[10,-1184],[31,-776],[51,-368],[194,-714],[-4,-141],[251,-1195],[155,-570],[140,-393],[65,-320],[-14,-181],[-17,-229],[-96,-1769],[19,-543],[-38,-93],[21,-64],[82,-37],[131,-151],[180,-266],[119,-336],[57,-405],[10,-252],[-37,-99],[-7,-520],[-34,-39],[-40,-538],[-60,-302],[18,-363],[150,-359],[146,-607],[163,-834],[76,-528],[-9,-224],[-88,-234],[-166,-244],[-109,-101],[-52,42],[-64,-65],[-76,-175],[-54,-385],[-31,-596],[13,-283],[72,-258],[201,-486],[342,-646],[17,-111],[43,-14],[161,186],[196,70],[120,-46],[82,-105],[44,-161],[325,-626],[159,-440],[115,-519],[159,-458],[202,-397],[99,-413],[-7,-430],[-49,-228],[-63,-20],[-23,-49],[26,-295],[153,-655],[62,-587],[-29,-521],[43,-461],[115,-402],[221,-539],[278,-1238],[224,-751],[18,-221],[36,-137],[89,-132],[14,-109],[-39,-133],[4,-169],[39,-284],[141,-384],[242,-484],[114,-389],[-14,-294],[38,-299],[90,-303],[10,-72],[31,-221],[-26,-460],[-30,-72],[-35,20],[-42,113],[-49,-30],[-54,-173],[-82,-132],[-109,-89],[-63,28],[-141,243],[-459,987]],[[351310,307511],[-43,73],[-37,146],[-28,190],[-18,291],[-11,388],[-24,407],[-50,334],[-44,302],[-12,328],[69,337],[148,320],[204,388],[185,28],[144,167],[87,255],[28,286],[1,243],[31,192],[101,163],[15,17],[119,136],[109,168],[108,176]],[[352392,312846],[131,172],[172,129],[107,379],[90,388],[227,215],[185,244],[18,254],[33,218],[35,281],[97,271],[67,112],[53,-33],[31,-197],[0,-655],[103,-271],[77,-352],[89,-269],[5,-241],[-19,-269],[-52,-312],[-117,-351],[-95,-351],[-105,-323],[-115,-379],[-98,-184],[-109,-60],[-133,43],[-121,287],[-103,230],[-110,139],[-145,-56],[-176,-221],[-118,-655],[-151,-585],[-178,-153],[-94,-23],[-73,-58],[-70,-145],[-88,-231],[-77,-454],[-45,-680],[42,-722],[-46,-349],[-101,-89],[-50,-62],[-51,27],[-4,6]],[[227891,803425],[-157,-314],[-157,-177],[-218,-200],[-254,-156],[-244,-72],[-200,11],[-146,44],[-180,183],[-89,267],[8,793],[-55,396],[-110,468],[-300,1004],[-275,748],[-107,482],[-243,367],[-139,406],[-43,222],[-5,151],[55,76],[132,-218],[166,-464],[39,-53],[55,66],[50,194],[-19,165],[-56,55],[-113,467],[-155,82],[-72,123],[-132,262],[-142,427],[-167,967],[-70,239],[-264,113],[-172,321],[-139,109],[-155,-49],[-281,-478],[-42,189],[10,486],[-30,230],[10,85],[151,260],[133,116],[147,23],[146,-132],[128,-256],[146,-409],[60,-60],[102,98],[41,134],[-32,514],[31,84],[169,-239],[115,-294],[181,-1039],[119,-461],[105,-221],[31,51],[16,143],[-26,500],[-170,962],[118,158],[99,40],[80,-9],[89,-137],[120,-269],[89,-301],[15,-211],[-75,-511],[5,-329],[66,-279],[136,-218],[315,-336],[54,-152],[-31,-149],[-139,-314],[-100,-362],[-136,-94],[-16,-169],[-83,-254],[-19,-126],[56,-356],[56,-136],[611,-306],[250,-216],[462,-617],[196,-346],[283,-643],[279,-482],[56,-296],[-23,-371]],[[223127,810848],[-279,-140],[-230,317],[-216,439],[-42,269],[143,461],[-152,936],[-85,242],[-43,24],[-16,-169],[58,-1202],[-39,-403],[-35,-79],[-40,-21],[-66,167],[-178,799],[-127,1331],[-16,818],[25,304],[54,269],[305,666],[95,606],[-147,485],[-47,675],[-93,194],[-404,409],[-75,41],[-65,-75],[-95,-153],[-47,-154],[47,-79],[131,-70],[101,-839],[-51,-111],[-40,13],[-71,163],[-107,123],[-53,244],[-165,354],[-61,895],[-38,170],[-193,85],[-114,170],[-99,11],[-183,-106],[-4,-123],[127,-434],[-158,-635],[-190,-158],[-214,7],[-45,82],[39,188],[-21,82],[-227,11],[-73,178],[-143,212],[24,298],[-28,331],[-36,127],[-263,429],[30,114],[112,138],[241,141],[190,-289],[209,-46],[263,42],[226,103],[151,136],[128,191],[79,4],[502,-379],[637,-312],[727,-471],[147,-172],[94,-189],[160,10],[39,-29],[19,-62],[-74,-519],[119,-1195],[3,-421],[-41,-388],[-105,-387],[-349,-972],[34,-540],[50,-337],[165,-395],[14,-136],[0,-188],[-31,-203],[-117,-371],[-14,-270],[60,-408],[97,-53],[223,600],[53,-66],[12,-723],[63,-409],[-12,-132],[-57,-71],[-82,-20]],[[310402,809579],[107,-316],[34,-232],[-51,-241],[-251,-431],[-109,-255],[-263,-170],[-227,-269],[-315,-496],[-271,-1624],[-12,357],[25,387],[-21,471],[-110,487],[-239,532],[-353,511],[-425,555],[-76,292],[42,397],[75,753],[-59,366],[-264,603],[48,102],[85,-89],[177,-166],[57,25],[52,285],[21,618],[79,146],[56,-961],[90,-249],[88,-16],[122,105],[219,427],[135,-222],[110,4],[189,45],[177,109],[111,276],[170,-8],[95,329],[122,425],[56,-52],[22,-89],[-40,-243],[-112,-684],[62,-175],[395,-181],[186,261],[126,124],[28,-87],[-201,-456],[4,-252],[-65,-212],[14,-174],[96,-246],[-11,-396]],[[309615,809546],[-115,378],[49,139],[63,-42],[185,-424],[102,-149],[125,-51],[-45,438],[30,363],[-22,169],[-228,350],[-330,234],[-322,9],[-171,-71],[-170,-119],[-320,-381],[-264,-375],[-131,-365],[28,-249],[80,-213],[45,-176],[88,-135],[251,-225],[166,-256],[297,-197],[207,-51],[242,69],[164,189],[192,82],[113,109],[77,144],[-11,168],[-246,376],[-129,262]],[[598330,773272],[-341,277],[-519,329],[-76,123],[-54,141],[-7,154],[112,418],[-80,389],[-76,229],[-67,159],[-328,334],[-134,220],[-199,109],[-54,257],[-166,102],[-19,91],[-87,109],[-416,-309],[0,104],[342,662],[3,119],[-32,52],[-111,51],[-118,-271],[-79,-43],[-103,105],[-133,-161],[-61,-11],[-28,79],[22,290],[-16,170],[-54,125],[-253,157],[-124,-32],[-103,48],[-22,-80],[15,-233],[-2,-120],[-61,-70],[-67,107],[-21,279],[-32,95],[-136,198],[-206,76],[-57,-121],[-49,-69],[-99,-6],[-109,123],[-150,494],[-44,-7],[-125,-53],[-174,287],[-32,109],[21,86],[67,78],[140,35],[194,-19],[206,-103],[298,-331],[134,-93],[81,16],[-10,224],[23,63],[50,-16],[49,7],[46,69],[-16,269],[1,107],[45,-4],[172,-308],[92,-133],[78,-59],[38,-7],[48,57],[599,-169],[29,-138],[-18,-136],[-155,-9],[-65,-72],[-113,-466],[41,-139],[99,-92],[123,29],[182,193],[143,782],[74,121],[138,-53],[103,-197],[3,-110],[-103,-131],[-13,-223],[75,-105],[136,-62],[76,-384],[67,-689],[191,-297],[341,-913],[417,-981],[328,-641],[350,-407],[36,-115],[-111,-119]],[[579966,867532],[-494,-252],[-698,-403],[-187,-79],[-845,-1],[-113,-72],[-78,75],[-74,200],[-29,255],[233,182],[325,-57],[250,-151],[69,62],[-65,146],[-282,266],[-584,113],[-513,-118],[-145,-108],[-294,92],[-314,177],[73,63],[8,150],[-187,180],[-181,20],[-91,-30],[-16,322],[100,323],[-74,205],[67,92],[-5,434],[-55,566],[147,235],[-5,-360],[33,-207],[55,-391],[278,-42],[48,91],[-11,65],[-5,293],[48,111],[30,-108],[45,-135],[217,25],[199,151],[37,174],[221,118],[43,171],[-189,269],[-229,198],[-50,98],[60,119],[528,-432],[137,-186],[145,-232],[9,-179],[69,-150],[149,-308],[151,-229],[139,70],[69,157],[51,10],[104,-40],[138,457],[38,558],[38,170],[122,66],[94,-37],[82,9],[203,101],[270,431],[369,-90],[374,13],[92,109],[-4,102],[-281,162],[-112,176],[-327,426],[-423,352],[-67,99],[-295,164],[-357,-5],[-227,26],[-151,47],[-295,148],[-74,141],[9,515],[-49,365],[-23,136],[-68,146],[-22,129],[-123,317],[-123,-4],[-213,-99],[-228,35],[-138,-35],[-160,184],[-84,215],[-110,99],[-147,-82],[-193,-33],[-170,180],[-162,273],[-52,141],[89,-32],[290,-318],[122,7],[35,144],[58,111],[70,79],[561,-482],[130,25],[64,86],[-2,92],[-170,427],[30,645],[82,148],[50,145],[-46,334],[48,342],[47,223],[-89,78],[-84,-52],[-95,-96],[-66,-132],[-10,-158],[-183,73],[-221,228],[-65,230],[-170,359],[-427,487],[52,93],[33,132],[-38,282],[9,354],[-9,355],[56,116],[92,-4],[-20,140],[-136,328],[-43,301],[-111,341],[-186,160],[-83,-39],[-49,-92],[-171,137],[-165,247],[-2,106],[595,-223],[195,-168],[141,-362],[1,-174],[-66,-62],[110,-239],[130,-121],[115,-57],[68,-179],[-44,-215],[-27,-391],[-204,-399],[263,-460],[226,-263],[331,-131],[129,79],[198,-208],[128,-148],[131,-52],[11,296],[-105,372],[87,244],[118,-45],[107,-127],[8,-229],[103,-78],[326,127],[280,-186],[480,133],[202,50],[-6,-83],[-115,-135],[-128,-114],[-195,-119],[-105,-181],[90,-446],[-119,-190],[15,-127],[87,-189],[85,-247],[77,-142],[81,-99],[-10,-156],[1079,-801],[406,-423],[275,-387],[-245,-50],[-418,226],[-363,320],[-90,161],[191,-17],[-27,142],[-205,193],[-159,119],[-159,69],[-75,-58],[-183,-71],[-175,-340],[-56,-355],[-60,-82],[-186,48],[9,202],[91,367],[-227,900],[-215,247],[-361,-76],[-233,-235],[-29,-161],[129,-147],[-121,-262],[244,-352],[193,-551],[345,-127],[7,-177],[-141,-246],[-80,-233],[21,-230],[270,-90],[213,52],[368,21],[2,118],[129,67],[95,-104],[135,-194],[277,-101],[166,10],[118,339],[60,91],[112,68],[80,134],[-87,234],[-5,112],[74,-22],[201,-206],[195,-479],[98,-192],[-50,-133],[-42,-160],[-142,-48],[110,-255],[417,49],[454,158],[163,48],[368,-67],[41,118],[21,193],[-94,141],[-57,192],[0,224],[-57,213],[-37,265],[89,193],[9,293],[-107,443],[50,283],[153,9],[48,-175],[34,-238],[160,-46],[243,-328],[326,-287],[66,53],[-107,203],[-63,227],[11,157],[65,193],[46,223],[179,72],[218,-190],[137,-349],[167,-328],[114,-172],[-254,-265],[-92,-159],[-25,-160],[-67,-129],[-225,17],[-131,-35],[-56,-92],[-59,-145],[136,-274],[221,-142],[175,1],[231,-86],[241,-126],[58,-183],[-195,-104],[-564,212],[-57,-77],[-225,40],[-247,-128],[-71,-202],[-62,-53],[62,-202],[168,-254],[173,-117],[64,127],[132,-5],[197,-320],[53,-254],[4,-101],[-123,-91],[-15,-154],[-91,-81],[-96,-48],[-139,-142],[-219,-141],[-151,-213],[-140,-46],[-379,-507],[-67,-200],[-418,-86],[-47,-129],[-437,280],[-586,269],[-280,-176],[-58,-143],[423,-44],[81,-118],[-187,-55],[-118,-133],[-1,-200],[37,-239],[-132,-45],[-176,-19],[-39,-188],[-290,-248],[-159,-173],[-170,-122],[40,-106],[326,4],[455,115],[61,96],[143,-95],[295,-321],[130,-296],[-220,-255]],[[577359,877859],[-21,-239],[123,-453],[346,-349],[169,-175],[103,55],[0,194],[-26,376],[-68,494],[-35,242],[-199,9],[-13,-2],[-229,-26],[-150,-126]],[[576769,867940],[110,220],[-50,261],[-83,170],[-203,78],[-130,71],[-253,170],[-160,-92],[-89,-127],[109,-185],[300,-318],[312,-289],[137,41]],[[577664,869165],[27,134],[-63,144],[-64,-9],[-180,-43],[-179,113],[-173,57],[-54,-81],[-33,-273],[-96,-28],[-210,21],[-116,29],[-80,-36],[123,-170],[273,-127],[139,-190],[104,-8],[133,21],[322,219],[127,227]],[[579154,869151],[-141,222],[40,253],[95,255],[119,118],[-58,456],[-111,143],[-244,-65],[-165,104],[-141,-117],[9,-267],[15,-248],[61,-241],[-182,-253],[-8,-92],[43,-157],[-27,-143],[-55,-176],[40,-288],[186,79],[303,53],[218,163],[3,201]],[[581880,872039],[-97,419],[-219,396],[-114,147],[-250,-20],[-127,-24],[-233,-26],[-232,42],[-223,-119],[-360,-134],[-294,0],[-34,-269],[64,-245],[315,-190],[324,-530],[126,-420],[409,-158],[327,190],[152,366],[49,441],[41,158],[171,24],[116,-158],[81,15],[8,95]],[[198441,839787],[-203,-130],[-160,12],[-64,187],[-18,527],[-40,338],[-141,132],[-201,111],[-31,229],[91,215],[202,172],[172,-127],[189,-453],[177,-110],[115,43],[97,-65],[194,-376],[37,-973],[243,-140],[293,-31],[235,-55],[165,-259],[-101,-440],[-218,-217],[-3,-104],[45,-117],[-14,-536],[158,-474],[-36,-148],[-119,-135],[-114,-292],[-76,-299],[-148,-337],[-518,-552],[-238,-396],[-91,-290],[20,-376],[-81,-193],[-106,96],[-60,355],[24,392],[-29,322],[-78,546],[-119,364],[-441,176],[-321,-18],[-185,300],[-160,516],[57,237],[141,82],[588,-251],[565,-596],[149,-541],[50,-230],[222,181],[147,336],[0,574],[95,421],[224,306],[220,205],[12,318],[-128,272],[-83,-41],[-89,9],[-312,260],[-140,220],[13,367],[12,298],[-86,183]],[[302316,230826],[-113,-212],[-470,-75],[-700,218],[-362,196],[-65,35],[-601,-125],[-722,-385],[-822,-937],[-612,-763],[-114,-213],[-29,-244],[-94,-274],[-123,-85],[94,592],[225,744],[229,347],[128,371],[-96,422],[-80,475],[89,79],[129,-388],[168,-241],[296,55],[669,489],[693,449],[321,324],[-22,244],[22,102],[71,48],[254,-84],[27,15],[333,180],[58,-96],[75,-280],[376,-278],[360,-170],[257,-270],[151,-265]],[[574860,877269],[101,35],[295,-89],[-22,-56],[-185,-7],[1,-188],[-170,-35],[-214,10],[100,-304],[185,-343],[-84,-201],[129,-230],[-42,-61],[-244,123],[-120,-108],[-94,-247],[18,-221],[71,-172],[99,-12],[121,-79],[-58,-151],[-363,133],[-119,92],[-32,348],[-94,249],[-78,-75],[9,-188],[-100,-425],[-136,-396],[-223,-122],[-206,-151],[16,-217],[-33,-68],[-112,167],[13,206],[63,222],[163,51],[117,-15],[7,168],[132,220],[-87,289],[-399,163],[-304,-92],[-96,-172],[-2,-240],[45,-259],[94,-182],[67,-231],[-98,-163],[-290,108],[-125,-173],[2,-291],[-108,90],[-111,311],[-159,147],[-101,-100],[63,-263],[66,-202],[-78,-138],[-79,-257],[15,-387],[-79,25],[-68,300],[-61,35],[-138,-339],[-16,-450],[160,-301],[-57,-116],[-189,-54],[-44,-152],[-196,-14],[-174,-83],[-23,-201],[52,-76],[138,-107],[-53,-96],[-185,-162],[-75,-287],[93,-115],[170,167],[107,65],[4,-203],[-118,-393],[4,-437],[66,-219],[-210,7],[-123,-65],[-9,-299],[-26,-272],[188,-164],[-95,-146],[-176,-113],[38,-180],[-27,-340],[92,-160],[497,-174],[606,-138],[97,-119],[41,-136],[151,-97],[102,89],[-35,207],[158,383],[313,377],[9,-82],[-113,-258],[48,-190],[5,-220],[-64,-31],[-61,126],[-109,46],[-69,-89],[77,-225],[60,-254],[-35,-161],[157,-273],[-69,-123],[-105,-128],[-8,-108],[-70,-224],[-153,-231],[-194,-15],[126,251],[86,576],[-210,404],[-181,121],[-134,-39],[-116,-89],[-232,276],[-325,340],[-136,-58],[66,-165],[32,-172],[-206,-233],[-142,-304],[90,-210],[109,-146],[-31,-182],[-120,15],[-85,208],[-106,154],[-72,-89],[-135,-84],[-138,101],[116,238],[171,239],[112,429],[-94,304],[-66,-46],[-31,-133],[-68,4],[-35,196],[-105,181],[-148,114],[-89,109],[-44,82],[23,131],[-192,510],[-16,338],[124,84],[104,132],[190,71],[166,21],[55,249],[-42,260],[-126,161],[-360,367],[-52,203],[78,15],[192,-112],[229,96],[152,299],[-141,163],[-219,37],[10,142],[294,111],[242,59],[-12,113],[102,232],[227,96],[130,316],[-239,251],[-242,59],[-73,183],[215,3],[329,-42],[125,154],[10,193],[52,147],[71,91],[176,103],[159,235],[72,226],[42,327],[-70,328],[-90,12],[-67,-58],[-43,90],[-29,254],[-143,254],[-205,50],[-127,274],[-32,227],[413,142],[39,315],[89,120],[185,-33],[-16,216],[-157,159],[-36,66],[106,183],[26,294],[190,223],[-178,439],[-105,158],[-264,189],[-333,149],[-212,-240],[-53,-379],[-74,-52],[-164,102],[-190,191],[44,123],[168,144],[12,272],[-23,179],[181,101],[231,386],[95,30],[-4,-199],[166,-264],[308,-272],[82,71],[42,156],[185,-113],[81,-169],[162,-234],[258,-290],[-13,-71],[-177,56],[-3,-112],[175,-250],[396,-447],[401,-511],[18,-249],[-190,20],[-275,307],[-278,270],[-101,-43],[-81,-134],[-69,-266],[-16,-247],[-76,-21],[113,-240],[25,-198],[-323,94],[-257,-205],[37,-463],[290,-429],[239,85],[89,262],[111,-13],[19,-181],[-94,-205],[40,-193],[212,-193],[69,426],[-19,532],[108,129],[348,211],[47,150],[255,0],[51,417],[-228,505],[-82,219],[5,161],[242,-335],[155,-277],[168,-258],[355,-413],[263,-164],[77,86],[38,209],[-13,228],[-200,267],[-169,265],[-51,176],[-211,324],[-74,167],[60,5],[251,-324],[139,-60],[37,176],[-84,374],[44,166],[90,11],[10,122],[421,160],[222,143],[102,-67],[-154,-125],[-130,-340],[46,-149],[-49,-17],[-100,24],[-15,-131],[107,-212],[63,-42]],[[588762,889161],[-136,94],[-426,325],[-245,59],[-329,342],[-100,220],[2,159],[-79,174],[-301,116],[-355,5],[-151,-86],[-29,-142],[-143,-2],[-306,86],[-94,-58],[-220,-50],[-185,-182],[-72,-359],[-197,-229],[-227,-24],[-335,-48],[42,107],[140,163],[319,104],[-33,154],[-488,252],[-360,290],[-116,215],[99,58],[193,-205],[497,-297],[438,182],[276,102],[75,209],[123,151],[1032,-9],[641,-259],[109,-152],[34,-277],[91,-196],[468,-425],[313,-371],[35,-196]],[[593166,782586],[100,303],[149,895],[72,97],[31,-49],[106,111],[157,344],[44,257],[160,294],[274,415],[81,288],[5,164],[-48,546],[-31,532],[133,85],[231,15],[225,-95],[174,-36],[82,229],[72,89],[138,-137],[179,-55],[156,68],[140,142],[677,-91],[740,59],[252,520],[-5,879],[55,102]],[[597515,788557],[68,-9],[312,-1139],[165,-919],[-90,-244],[-156,-4],[-456,-128],[-246,-128],[-424,335],[-599,336],[-480,-196],[-638,-396],[-36,-181],[18,-258],[-29,-124],[-210,-51],[-537,-929],[-516,-1290],[-51,-247],[-35,-225],[-355,-227],[-54,53]],[[208218,634655],[-1,-32],[-60,76],[61,-44]],[[636274,833717],[169,-40],[192,-560],[124,-255],[194,-86],[152,92],[-83,236],[11,429],[-9,392],[107,157],[1,-119],[10,-351],[232,-362],[355,-79],[571,-40],[588,186],[249,283],[376,-144],[428,-47],[285,174],[538,-55],[441,171],[810,127],[359,148],[212,-161],[62,-20],[168,-7],[153,100],[-7,465],[-190,561],[43,530],[96,223],[89,121],[-24,-223],[-30,-556],[169,-405],[315,80],[357,441],[309,-100],[171,-27],[-140,-167],[-240,78],[-142,-51],[-57,-191],[-37,-297],[-277,-162],[-180,-41],[-73,-328],[-315,-366],[-568,282],[-88,-149],[67,-132],[57,-243],[-96,-252],[-151,210],[-163,130],[-539,219],[-316,-137],[-81,-129],[-2340,-670],[-225,-295],[-329,-313],[-470,-336],[-174,-117],[-24,-239],[-18,-130],[-137,-211],[-212,-13],[-265,56],[-245,-150],[-355,-164],[-191,-405],[82,-434],[170,-115],[187,-49],[-47,-146],[-263,-284],[-28,-359],[-8,-152],[-85,-146],[-131,-207],[37,-189],[-38,-127],[-89,-160],[3,-229],[-216,-88],[-431,-73],[-282,-241],[-84,-353],[139,-555],[304,-412],[269,-121],[117,-116],[31,-189],[107,-315],[480,-179],[708,328],[334,290],[466,353],[456,270],[41,-203],[-210,-186],[-360,-193],[-266,-526],[-368,-382],[-252,-228],[3,-333],[141,-355],[140,-158],[85,-125],[58,-235],[-8,-210],[-67,20],[-95,142],[-87,35],[-248,468],[-175,103],[-99,-182],[-54,-477],[-25,-631],[66,-429],[445,-188],[872,-20],[891,-78],[65,-170]],[[638624,821744],[-147,-182],[-992,59],[-496,-199],[-163,-297],[-77,-401],[-377,-87],[-815,65],[-115,256],[460,-87],[588,-1],[192,169],[-2,178],[-274,221],[-318,205],[47,118],[-147,447],[-251,664],[31,630],[73,433],[-56,227],[-193,430],[-423,586],[-262,353],[-274,159],[-224,257],[-26,374],[57,623],[17,685],[31,855],[377,325],[537,135],[176,342],[65,418],[89,397],[-12,832],[326,369],[507,526],[36,766],[-191,356],[-155,532],[31,235]],[[193423,729789],[3,-159],[-109,-360],[-77,-585],[-354,-761],[-313,-781],[-64,-339],[-220,-488],[-166,-507],[121,-185],[395,89],[-73,-197],[-321,-30],[-566,-329],[-324,-224],[-212,-316],[-329,-42],[-208,-229],[-205,-346],[-50,81]],[[190351,724081],[-157,574],[254,176],[147,-26],[129,45],[98,218],[134,279],[125,-163],[77,100],[55,173],[252,-156],[305,72],[210,667],[80,420],[165,102],[174,465],[-53,562],[61,56],[144,-26],[237,363],[115,228],[110,247],[189,567],[33,608],[88,206],[100,-49]],[[226959,845600],[260,-519],[287,-82],[204,42],[82,-68],[-91,-147],[-225,-267],[-225,-602],[-101,-468],[-67,-143],[-394,-105],[-470,-197],[-345,-486],[-260,-541],[-210,-273],[-235,0],[-175,128],[-183,-97],[-417,-652],[-343,-13],[-358,-3],[-229,-131],[25,-163],[-13,-174],[-62,-74],[-199,234],[-121,293],[63,135],[326,133],[386,750],[80,337],[138,165],[286,-215],[195,26],[86,289],[154,263],[151,210],[11,-203],[-72,-448],[84,-281],[283,-13],[87,126],[-19,342],[63,330],[230,76],[220,264],[94,373],[29,228],[-47,253],[100,82],[250,-4],[93,144],[-25,302],[-53,626],[-157,428],[-8,334],[111,152],[46,-88],[-13,-176],[46,-138],[155,34],[207,238],[288,289],[243,92],[-4,-169],[-46,-264],[-130,-296],[-66,-218]],[[386616,450025],[-62,-100],[-713,-267],[-112,-452],[-26,-514],[-113,-228],[-219,-47],[-231,-151],[-317,-341],[-216,-42],[-56,68],[-244,-176],[-469,-7],[-134,297],[-191,-101],[-178,-271],[-210,-325],[-267,-807],[12,-335],[265,-202],[237,-219],[193,-498],[118,-376],[-121,58],[-56,218],[-159,341],[-344,265],[-228,38],[-117,182],[-97,41],[-159,50],[-78,-555],[310,-1597],[263,-1218],[-107,-458],[-124,-885],[-81,-209],[-86,-106],[-100,-306],[-42,14],[157,939],[161,1059],[-62,662],[-161,313],[-146,407],[-126,70],[-185,-307],[-156,-490],[-204,-743],[-317,-986],[-24,-194],[-18,-996],[-64,-584],[-134,-265],[-38,-377],[-104,13],[-109,-51],[-88,80],[-123,414],[-108,209],[-154,176],[-215,-203]],[[380139,439950],[-29,166],[148,705],[56,327],[98,142],[233,499],[207,344],[-87,358],[-63,135],[-129,154],[6,242],[102,170],[140,-333],[182,-534],[163,-17],[97,223],[-8,540],[-118,318],[-169,373],[9,213],[89,-3],[231,-322],[181,-123],[115,172],[35,172],[-181,482],[-18,258],[36,391],[83,-75],[234,-300],[171,120],[9,381],[-100,321],[-184,708],[-541,558],[-70,216],[68,98],[106,-66],[52,241],[67,-229],[53,-78],[44,75],[100,-106],[93,-155],[34,-189],[74,-236],[56,-44],[107,57],[74,145],[-105,360],[27,206],[104,-65],[148,-210],[162,61],[55,213],[21,253],[83,199],[44,222],[-48,370],[-137,378],[102,71],[268,-2],[72,490],[152,39],[139,89],[37,273],[80,202],[138,-31],[55,-333],[153,-266],[509,315],[413,-156],[245,32],[129,-63],[31,34],[224,-186],[105,82],[64,100],[113,-15],[111,489],[-1,465],[-111,417],[54,93],[164,-118],[30,85],[-45,253],[19,150],[146,-44],[187,51],[61,237],[36,285],[-50,267],[19,139],[8,397],[29,317],[143,-78],[48,-120],[66,-112],[-49,-690],[90,-494],[284,-880],[-1,-190]],[[381104,441026],[-129,150],[26,181],[98,208],[89,160],[-31,67],[-178,-86],[-120,-331],[-280,-246],[-13,-103],[271,94],[53,-180],[-106,-368],[-36,-246],[58,-190],[84,-217],[85,29],[115,359],[14,719]],[[775396,520062],[2,-91],[-140,-156],[-261,-127],[-253,-26],[-172,48],[-78,164],[-178,516],[-181,518],[61,129],[204,-369],[279,-229],[117,40],[61,129],[-83,318],[-258,667],[-184,345],[-103,-34],[-92,-213],[-76,-259],[-60,38],[-165,485],[-153,543],[12,203],[115,105],[190,-21],[187,-112],[234,-323],[217,-405],[134,-390],[169,-528],[174,-548],[168,-270],[113,-147]],[[573806,870008],[-9,-41],[-62,-41],[-199,14],[-352,258],[-294,370],[-161,70],[-170,-80],[-124,-72],[-12,-148],[35,-128],[51,-55],[54,54],[57,71],[65,-96],[46,-139],[-30,-171],[-40,-210],[-28,-113],[-96,-24],[-151,77],[-146,206],[-134,172],[-162,167],[-24,168],[110,95],[66,149],[31,157],[-37,140],[-47,111],[23,61],[245,-141],[262,-28],[139,182],[119,254],[50,-1],[24,-110],[53,-223],[37,-202],[2,-105],[43,-98],[95,-14],[71,6],[144,12],[88,107],[78,2],[114,-101],[101,-181],[56,-232],[19,-149]],[[972788,244749],[-73,9],[1,620],[-70,893],[-62,616],[15,258],[45,118],[66,136],[62,108],[33,-57],[-28,-403],[-44,-287],[81,-812],[82,-632],[13,-250],[-49,-327],[-72,10]],[[972208,244066],[-140,-49],[-145,106],[-49,169],[-28,146],[14,250],[11,561],[-38,587],[57,83],[12,-147],[15,-243],[61,-68],[98,254],[89,199],[7,-251],[-158,-443],[-33,-477],[22,-288],[70,-204],[43,-80],[92,-105]],[[277277,794293],[75,134],[83,250],[50,211],[139,39],[287,91],[175,-62],[67,-201],[79,-92],[2,-129],[-60,-273],[7,-249],[62,-205],[174,-77],[192,37],[130,92],[102,186],[113,160],[215,-215],[240,-273],[247,-58],[179,-90],[31,-142],[-23,-394],[38,-323],[28,-243],[18,-183],[-57,-95],[-100,-42],[-85,21],[7,132],[-4,134],[2,203],[46,270],[-6,182],[-62,134],[-149,81],[-182,21],[-109,-39],[-16,-72],[-5,-66],[-70,-32],[-254,45],[-274,121],[-146,16],[-141,-69],[-176,8],[-135,149],[-156,236],[-24,107],[-54,104],[-48,83],[-119,206],[-86,-50],[-158,88],[-89,133]],[[221128,768420],[-49,-93],[-185,145],[-247,17],[-119,144],[-77,193],[49,167],[-37,258],[-106,308],[-14,292],[-15,223],[-118,104],[-137,88],[-82,87],[-124,13],[-271,-96],[-353,-88],[-251,-43],[-71,10],[84,117],[241,102],[212,77],[53,125],[46,115],[142,12],[130,65],[156,22],[107,95],[-31,188],[113,7],[187,-96],[184,-232],[125,-103],[52,167],[110,187],[120,8],[44,151],[-6,245],[-9,358],[128,310],[149,294],[35,329],[33,343],[16,263],[-79,265],[-172,258],[-377,29],[-193,10],[234,131],[357,34],[155,44],[-30,191],[-64,146],[-157,335],[-303,467],[-233,382],[-28,87],[88,13],[207,-165],[231,47],[132,252],[28,136],[-20,215],[-46,362],[-177,483],[-283,699],[-222,661],[-23,249],[75,361],[81,161],[50,376],[-2,461],[-31,572],[-42,287],[-37,254],[-220,360],[-150,187],[-53,137],[25,107]],[[220063,781892],[175,-50],[133,-213],[226,-308],[59,-342],[57,-440],[44,-582],[-67,-633],[-63,-543],[47,-280],[-4,-259],[66,-220],[118,-420],[168,-384],[153,-163],[74,-245],[24,-513],[-8,-485],[-26,-238],[-121,-156],[-30,-323],[89,-235],[192,-324],[72,-250],[5,-344],[23,-429],[44,-321],[-49,-482],[-37,-428],[60,-101],[7,-156],[-74,-161],[-144,-63],[-83,-107],[-32,-220],[-27,-327],[-99,-288],[-136,-313],[-156,-187],[-113,-57],[-145,84],[-29,-100],[60,-482],[52,-399],[100,-101],[122,51],[77,-113],[-45,-303],[74,-139],[164,-38],[58,-130],[27,-114],[-17,-98]],[[586362,633520],[59,366],[159,459],[186,586],[187,495],[90,465],[102,546],[91,269],[124,365],[398,761],[253,540],[56,134],[98,101],[125,80],[-90,304],[-203,410],[-10,127],[149,-135],[181,-199],[83,-24],[46,108],[64,178],[57,151],[75,129],[149,218],[165,211],[102,112],[76,65],[122,101],[97,46],[65,-52],[88,-60],[194,-275],[126,-188],[209,20],[244,376],[71,217],[44,204],[55,413],[56,177],[88,227],[61,217],[88,433],[91,435],[108,460],[136,258],[87,29],[38,90],[28,149],[36,144],[-13,235],[5,331],[-34,265],[-150,118],[-121,78],[-104,-134],[-124,-125],[-110,26],[-63,113],[143,226],[156,215],[-27,100],[-59,38],[-40,-80],[-42,-76],[-60,119],[84,268],[234,-51],[163,-239],[102,206],[54,342],[-29,184],[14,152],[60,155],[9,189],[-28,219],[-98,262],[-14,218],[157,460]],[[591331,647577],[149,-278],[33,-883],[114,-566],[-15,-237],[-82,-74],[-84,-52],[-32,-142],[5,-154],[35,-97],[49,-28],[27,-45],[102,-150],[47,-124],[-150,-1],[-80,-143],[62,-323],[97,-197],[30,-150],[15,-200],[30,-218],[3,-236],[1,-139],[-35,-37],[-105,60],[-100,51],[23,-267],[-52,-258],[-127,-25],[-34,-84],[7,-146],[38,-173],[105,-220],[103,-279],[129,-288],[-51,-119],[-315,256],[-204,359],[-115,-38],[-13,-145],[-47,-213],[-48,-148],[-41,-53],[-83,-95],[-79,-94],[-37,-58],[-21,-160],[-10,-273],[-58,-236],[-195,-345],[-241,-435],[-170,-276],[-101,-138],[-11,-182],[-86,-111],[-118,27],[-17,66],[61,101],[79,165],[-8,116],[-48,64],[-62,112],[-50,101],[-11,90],[-186,39],[-111,47],[-88,-32],[-111,-108],[-99,-180],[-94,-204],[-67,-158],[-26,-223],[-47,-320],[-107,-234],[-116,-158],[-68,-199],[-15,-176],[-96,40],[-125,27],[-90,-66],[-55,-103],[-43,-43],[-41,-28],[-51,-61],[-14,-87],[21,-142],[-64,-181],[-201,-197],[-183,-294],[-65,-173],[-61,-166],[-81,-264],[-59,-430],[-101,-614],[-97,-404],[-69,-162],[-106,-126],[-148,-323],[-131,-352],[-90,-223],[-92,-14]],[[568356,870194],[-141,-88],[-178,-151],[-105,-142],[142,-222],[-104,-145],[-354,-46],[-215,-141],[-195,-234],[-62,-199],[-10,-116],[-43,-163],[-68,-190],[83,-96],[228,-74],[108,-129],[-97,-26],[-231,-49],[-224,-124],[-157,-75],[-28,-96],[74,-138],[142,-131],[235,-15],[182,75],[149,-49],[166,-148],[47,-98],[-50,-21],[-68,-16],[20,-115],[163,-290],[121,-232],[-70,27],[-172,221],[-208,115],[-686,362],[-432,173],[-259,183],[-23,404],[82,-133],[117,-188],[206,-104],[92,79],[80,188],[111,155],[40,176],[-49,339],[71,319],[356,358],[230,271],[143,137],[144,205],[-67,113],[-66,87],[33,68],[128,-23],[151,-47],[89,31],[75,126],[45,120],[-18,66],[93,47],[221,92],[243,112],[31,-114],[-80,-203],[-40,-69],[-67,-3],[-74,-6]],[[565308,868802],[-12,-167],[58,-130],[111,-122],[219,-99],[168,-83],[14,-80],[15,-100],[20,-98],[-20,-51],[-118,84],[-285,120],[-242,207],[-126,238],[-165,61],[-87,46],[44,80],[141,86],[258,195],[362,237],[194,119],[-89,116],[-106,151],[-33,196],[-76,202],[-80,106],[90,33],[81,28],[-15,80],[-66,134],[49,140],[129,97],[1,100],[35,189],[35,195],[30,86],[59,67],[-45,171],[118,74],[242,-44],[65,55],[-6,89],[16,100],[240,192],[223,181],[-20,74],[-24,80],[-3,224],[-31,224],[-83,84],[-281,27],[-373,48],[-158,79],[8,52],[-30,68],[-68,171],[-30,189],[18,106],[85,66],[66,5],[-22,-83],[-22,-132],[50,-163],[136,-29],[168,-20],[123,-92],[84,14],[58,71],[25,200],[37,198],[110,70],[87,-8],[-56,-139],[-73,-182],[4,-105],[71,-1],[150,-33],[244,-19],[165,37],[-99,-86],[-63,-113],[-15,-185],[25,-205],[152,-76],[109,3],[103,208],[78,217],[43,20],[55,-33],[41,-72],[-46,-176],[-40,-180],[55,-73],[141,-6],[340,-10],[188,106],[-114,211],[-182,109],[-207,116],[-114,157],[54,60],[209,-88],[264,-204],[172,-95],[46,108],[-33,219],[-47,205],[8,98],[43,25],[40,22],[-5,132],[-7,141],[53,70],[88,16],[33,-214],[22,-211],[113,26],[17,-102],[-54,-278],[-64,-227],[-154,-311],[10,-336],[139,-215],[61,-166],[-79,46],[-218,210],[-139,168],[-185,48],[-182,-35],[2,-47],[-113,14],[-230,39],[-315,82],[-240,59],[70,-189],[-40,-220],[-145,-139],[-135,-121],[-117,-78],[-24,-81],[-283,-267],[-259,-291],[48,-177],[28,-159],[-52,-151],[-67,-182],[-10,-127],[224,-30],[38,-56],[-172,-108],[35,-35],[38,-77],[-20,-230],[-40,-232],[-128,-152],[-332,-207],[-277,-244]],[[787150,819678],[-86,713],[-1,2033],[-190,624],[-495,383],[-634,282],[165,175],[526,-269],[254,191],[-249,777],[-320,767],[-47,520],[83,751],[250,782],[184,53],[125,370],[-89,827],[-267,509],[-157,410],[101,821],[435,741],[156,665],[-28,845],[-260,1092],[-81,538],[-28,634],[-180,617],[-234,380],[-81,617],[-112,619],[-190,245],[-154,20],[-222,212],[-344,77],[-175,7],[-67,-10],[-33,-173],[-39,-107],[-114,-101],[-127,-18],[-235,130],[-202,-41],[-155,-209],[-540,-251],[40,-382],[-62,-341],[-199,-408],[19,-303],[215,-308],[262,-78],[24,-131],[-119,-193],[142,-203],[640,-230],[149,-270],[-54,-349],[-142,-286],[-12,-212],[44,-280],[44,-196],[132,-107],[111,-98],[-112,-140],[-127,-173],[-66,-222],[-98,-305],[-143,-250],[-132,-184],[-187,-99],[66,161],[117,225],[64,166],[143,219],[40,228],[157,289],[-55,177],[-73,261],[-66,380],[21,212],[109,296],[-19,204],[-230,-93],[-404,-339],[-786,-253],[-78,133],[-9,193],[616,318],[-25,234],[-168,162],[-289,378],[-50,699],[-131,204],[-656,489],[-259,201],[-248,135],[-132,211],[215,30],[366,-111],[359,6],[56,44],[202,-24],[67,247],[7,326],[-92,148],[-76,236],[96,238],[-25,254],[34,270],[161,137],[99,24]],[[782786,838493],[178,-321],[177,35],[92,-91],[-117,-356],[64,-249],[302,186],[559,419],[14,163],[561,-7],[32,339],[134,229],[167,-101],[15,-204],[108,-263],[279,-20],[202,72],[64,-161],[138,-212],[192,-12],[167,151],[61,-52],[-38,-415],[29,-581],[118,-741],[224,-658],[288,-561],[7,-245],[-65,-673],[300,-1186],[83,-822],[-43,-511],[-122,-661],[-332,-842],[-85,-453],[170,-483],[177,-835],[19,-568],[173,-939],[212,-695],[105,-269],[-182,60],[-220,786],[-157,230],[-155,-185],[-170,-423],[-114,-543],[159,-867],[382,-748],[5,-193],[85,-372],[292,-585],[271,-258],[533,-198],[33,-285],[16,-345],[-46,-67],[-111,166],[-213,233],[-332,64],[-137,-259],[-43,-271],[43,-1480],[-184,-682]],[[755379,910585],[465,120],[327,-288],[303,-205],[-603,-105],[-598,-58],[-994,-8],[-1209,-171],[-516,-335],[-1075,-141],[-1660,-277],[-356,133],[-97,251],[-291,60],[-310,-31],[-233,15],[-202,103],[-240,29],[48,96],[-42,219],[578,64],[1970,-178],[786,122],[397,103],[585,-12],[619,222],[1089,-18],[1259,290]],[[753627,912384],[-1286,-224],[-831,-267],[-522,-61],[-849,11],[-123,30],[-47,118],[-1229,545],[97,172],[432,48],[726,-112],[623,-295],[618,-174],[663,126],[286,116],[363,100],[762,95],[398,-4],[323,29],[728,155],[-637,-443],[-495,35]],[[748524,915842],[-676,-171],[-744,-158],[-368,95],[56,192],[771,320],[620,200],[556,212],[985,639],[845,130],[882,-287],[1549,-523],[987,133],[343,-548],[-1587,243],[-912,-34],[-698,391],[-859,116],[-938,-298],[-498,-264],[-314,-388]],[[549909,895003],[-33,69],[-82,95],[-122,57],[-187,-140],[-207,-51],[-132,106],[-6,175],[36,154],[91,105],[-45,178],[-232,194],[-126,13],[-40,-55],[-84,41],[-83,225],[-158,98],[-164,-88],[-113,-28],[-39,198],[136,121],[212,72],[211,-26],[133,-139],[214,-103],[169,95],[-27,188],[-301,312],[16,150],[153,44],[280,-79],[163,-191],[368,-289],[116,-326],[-126,-16],[-53,-301],[11,-229],[-3,-145],[45,-129],[102,-179]],[[550002,895179],[-93,-176]],[[550002,895179],[83,-147],[302,-470],[407,-8],[233,-143],[30,-131],[121,-176],[234,-240],[-362,-71],[-341,173],[-229,-78],[-61,-116],[27,-135],[-81,-30],[-106,76],[-30,116],[-32,392],[-98,348],[-190,464]],[[543764,882624],[-315,298],[-182,-145],[-96,-140],[-17,227],[-44,305],[-602,485],[-112,171],[354,-206],[76,76],[4,118],[-118,227],[-167,200],[8,466],[-221,278],[-318,522],[-246,232],[-1969,613],[-377,344],[-274,426],[-368,261],[-668,412],[-30,18],[61,34],[196,109],[817,-605],[273,-450],[447,-361],[381,-17],[476,-203],[519,-212],[247,-18],[142,-48],[62,-9],[98,23],[175,15],[273,-112],[143,-351],[169,-588],[269,-517],[-69,-147],[3,-189],[210,-307],[298,-585],[463,-225],[219,-446],[-190,21]],[[536916,888419],[303,279],[356,-347],[299,-239],[-98,-65],[-643,104],[-374,-130],[-99,80],[256,318]],[[621097,702651],[-80,-518],[-232,-166],[-135,53],[-88,339],[-273,311],[12,232],[204,511],[128,-270],[136,-302],[213,59],[115,-249]],[[553592,755596],[195,149],[57,-267],[21,-101],[164,-419],[83,-286],[-36,-174],[-203,55],[-107,90],[-388,326],[-326,704],[213,-2],[327,-75]],[[200190,884271],[-423,50],[-214,-42],[-254,-93],[-333,-233],[-242,-220],[-561,255],[-245,280],[-302,173],[-711,61],[-778,-326],[-490,-13],[-190,196],[768,86],[580,226],[347,-4],[1098,394],[98,145],[-7,189],[-63,294],[59,325],[170,332],[205,154],[97,-94],[-16,-497],[52,-277],[162,64],[210,232],[107,-6],[-39,-231],[-204,-397],[-65,-166],[60,-152],[204,-82],[16,109],[197,99],[233,-237],[437,-255]],[[200153,884610],[37,-339]],[[200153,884610],[299,-28],[237,-109],[213,61],[239,186],[349,94],[392,14],[235,-182],[12,-196],[-17,-177],[-1,-85],[-80,-233],[129,-339],[330,-7],[43,-71],[-49,-110],[-263,-413],[-204,-285],[-633,80],[-76,55],[-78,206],[-208,256],[50,357],[-21,193],[-128,92],[-336,-26],[-46,-146],[-86,158],[-265,316]],[[226223,760297],[-294,-4],[-226,255],[-426,332],[-83,401],[-386,495],[-303,374],[-381,557],[-79,423],[-108,395],[-245,369],[84,496],[209,535],[36,266],[-60,351],[27,255],[117,-198],[53,-318],[-34,-370],[-151,-496],[-114,-318],[169,-354],[293,-984],[272,-257],[295,-441],[377,-432],[203,-471],[347,-420],[377,-191],[31,-250]],[[224490,663959],[92,-49],[87,-11],[17,-132],[-101,-442],[-1,-357],[-36,-96],[-26,-67],[-78,-16],[-120,131],[-32,509],[-79,530],[-132,259],[-176,-49],[23,69],[61,86],[-11,382],[-83,367],[-9,37],[-9,23],[-165,398],[20,185],[20,-14],[96,-61],[128,-250],[253,-476],[165,-66],[1,-621],[95,-269]],[[200587,832111],[-151,547],[-334,687],[-99,304],[-126,219],[24,272],[140,121],[375,-276],[123,145],[-124,387],[-19,252],[146,24],[100,194],[4,615],[3,547],[81,160],[198,-1046],[-111,-956],[-95,-608],[-1,-421],[-143,-245],[64,-588],[-55,-334]],[[211567,863687],[-199,-290],[-77,-163],[-38,-328],[-466,-390],[-197,-84],[100,497],[47,638],[-262,316],[-286,274],[-175,306],[-202,108],[-73,136],[288,490],[132,363],[-102,182],[-128,-97],[-40,-195],[-180,-198],[-231,-29],[-136,125],[-18,124],[316,28],[58,135],[163,529],[4,169],[81,123],[235,25],[104,-126],[45,-140],[189,-256],[3,-206],[-50,-336],[31,-192],[217,71],[5,-126],[-223,-280],[7,-110],[257,78],[143,176],[147,67],[103,-45],[367,228],[226,249],[47,252],[27,216],[73,40],[193,-294],[-56,-398],[-405,-295],[-436,-459],[-313,-85],[-150,-150],[38,-254],[224,-134],[292,71],[162,162],[55,213],[135,196],[180,-56],[27,-350],[-278,-521]],[[235418,889986],[-391,-184],[-202,-302],[-6,-369],[24,-264],[-8,-149],[-77,-135],[-174,-21],[-119,118],[-76,140],[-13,120],[-33,115],[-209,164],[-242,291],[-164,-49],[-33,-255],[-31,-121],[-311,236],[-109,191],[80,303],[200,169],[211,48],[360,63],[260,104],[359,17],[702,-48],[2,-182]],[[307358,825442],[228,-208],[-141,-134],[-258,69],[-249,-105],[-259,-119],[-352,-220],[-166,-84],[-146,-5],[-95,54],[36,127],[79,132],[240,146],[104,83],[-9,185],[-143,50],[-246,138],[-380,225],[-200,-30],[-204,-141],[-33,112],[159,292],[202,264],[85,80],[150,90],[132,52],[28,169],[-32,127],[-129,52],[-145,-11],[-63,45],[-77,70],[-115,-3],[-31,35],[114,173],[194,-41],[195,85],[118,-64],[150,-334],[32,-173],[306,-87],[-12,-168],[43,-88],[22,-84],[-113,-226],[19,-115],[304,-272],[308,-84],[121,111],[75,60],[154,-230]],[[309223,823763],[-69,-141],[-60,-506],[53,-467],[-24,-162],[-171,-31],[-211,98],[-45,-106],[1,-311],[-87,-237],[-96,-85],[-114,-77],[-220,-166],[-83,98],[111,283],[170,394],[103,297],[220,212],[113,182],[-28,244],[-80,117],[43,107],[124,60],[69,58],[39,127],[-130,293],[-260,179],[-166,185],[-113,190],[-148,106],[-456,-51],[-49,71],[34,107],[84,60],[81,4],[46,59],[-15,137],[38,97],[85,-100],[150,-90],[110,123],[47,80],[72,-179],[83,-68],[130,-87],[108,-196],[48,-245],[316,-442],[133,-140],[14,-81]],[[304909,827579],[-116,-48],[-105,-165],[-298,-292],[-217,286],[-54,199],[160,-53],[97,-129],[187,116],[397,295],[330,-40],[350,102],[105,153],[55,214],[0,384],[-23,221],[-110,178],[-193,-49],[59,269],[68,117],[135,-54],[96,-166],[112,-488],[57,-387],[0,-187],[181,-193],[24,-153],[-323,-58],[-185,-183],[-110,0],[-75,78],[-388,-16],[-216,49]],[[255624,718248],[-183,20],[162,888],[-23,800],[-133,429],[-76,44],[-71,-319],[-67,192],[-9,366],[93,545],[5,638],[-118,592],[-404,1747],[-32,419]],[[254768,724609],[213,-301],[416,-1780],[96,-834],[43,-598],[141,-734],[128,-685],[-65,-669],[-116,-760]],[[271643,704763],[-343,51],[-377,-186],[-297,12],[92,116],[284,52],[455,321],[-91,298],[-309,413],[-198,308],[-83,-28],[-96,-81],[-67,-83],[72,425],[-66,113],[-34,360]],[[270585,706854],[120,-52],[171,-251],[120,-164],[85,93],[83,-161],[149,-472],[222,-432],[166,-473],[-58,-179]],[[171205,813666],[-73,-122],[-155,-54],[-140,54],[-78,194],[-68,822],[-251,536],[-303,426],[-388,855],[-659,1122],[193,-66],[353,-645],[704,-1223],[312,-641],[452,-771],[322,-82],[295,116],[-105,-288],[-289,-156],[-122,-77]],[[273100,679374],[3,813],[119,-537],[277,-751],[31,-374],[-184,-154],[-123,353],[-65,333],[-58,317]],[[182286,709941],[139,-366],[293,-337],[388,-607],[-145,-451],[-82,69]],[[182879,708249],[-70,382],[-200,297],[-273,413],[-127,296],[77,304]],[[160848,746843],[-19,-102],[-138,-121],[-249,51],[-343,-178],[-129,-17]],[[159970,746476],[-43,132],[25,145],[61,359],[92,-56],[31,-210],[138,117],[118,336],[75,61],[-29,-385],[37,-73],[315,37],[58,-96]],[[182852,893739],[-27,-161],[-320,-66],[30,-265],[182,-195],[147,-157],[255,-117],[212,-165],[177,-24],[20,-111],[56,-136],[195,-202],[607,287],[289,-185],[323,-20],[362,112],[438,-92],[-34,-143],[-274,-31],[-257,-138],[11,-83],[111,-70],[410,-83],[704,-300],[536,-226],[356,19],[246,81],[97,6],[369,-6],[212,31],[-13,-197],[-235,-56],[-108,-321],[155,-537],[133,-425],[-128,-83],[-83,50],[-90,312],[-186,536],[-110,290],[-198,41],[-338,4],[-479,176],[-171,75],[-155,59],[-160,-102],[-183,123],[-724,257],[-511,74],[-306,-114],[-470,-53],[-453,540],[-291,151],[-120,102],[-241,400],[-714,185],[102,496],[67,324],[-43,244],[466,117],[154,-228]],[[161330,756841],[260,-391],[59,-711],[-9,-221],[-89,29],[-223,450],[3,166],[-100,210],[-237,191],[-48,274],[119,284],[142,397],[67,85],[-18,-620],[74,-143]],[[168902,761298],[-28,155],[61,156],[141,155],[315,-293],[39,-117],[-51,-244],[-161,-220],[-227,141],[-89,267]],[[312608,775555],[32,-204]],[[312640,775351],[-115,-69],[-60,-36],[-314,76],[-426,402],[-234,410]],[[311491,776134],[211,115]],[[311702,776249],[221,-396],[298,-323],[100,16],[88,15],[146,239],[53,-245]],[[361919,479671],[-281,75],[-43,107],[-109,414],[17,135],[122,226],[-2,389],[18,116],[155,352],[13,338],[82,175],[8,415],[4,607],[76,123],[172,-78],[92,-649],[137,-986],[53,-601],[0,-180],[70,-156],[142,-455],[53,-552],[-17,-214],[236,-662],[145,-454],[-51,-275],[92,-444],[-20,-212],[-159,-267],[27,-378],[156,-1298],[292,-653],[595,-3],[69,-161],[-94,-178],[-553,-324],[-309,513],[-192,698],[-179,823],[-325,1168],[-48,629],[-120,517],[-234,206],[-102,147],[105,277],[64,365],[-62,275],[-95,90]],[[374753,393213],[-64,128],[-123,480],[-120,-54],[-48,-32],[-259,-65],[-241,-198],[3,404],[26,90],[376,84],[115,162],[40,301],[-52,460],[-63,-30],[-30,-473],[-95,-88],[-163,143],[1,166],[139,215],[88,510],[7,326],[-76,-13],[-212,-206],[-35,143],[64,89],[48,107],[94,366],[-58,236],[-135,75],[-90,-210],[-81,-194],[-131,-45],[-110,-130],[24,240],[78,424],[123,241],[221,226],[4,210],[70,333],[-3,177],[-137,30],[53,168],[201,226],[69,-18]],[[374271,398217],[90,-157],[-65,-386],[-88,-698],[73,-351],[129,-93],[57,-146],[20,-323],[10,-226],[92,54],[41,-62],[-8,-190],[-56,-272],[12,-287],[152,-236],[169,94],[54,215],[46,-95],[31,-179],[47,-77],[85,-73],[25,-174],[82,-100],[-47,-97],[-131,43],[-215,131],[-204,-11],[-30,-114],[22,-223],[121,-699],[-32,-272]],[[358340,389568],[76,-349],[41,-1098],[18,-405],[393,292],[388,538],[238,121]],[[359494,388667],[-240,-752],[-343,-284],[-146,-219],[-253,-338],[-138,-475],[20,-366],[121,-194],[60,-323],[-193,75],[-150,-132],[-148,-51],[-63,2],[-100,-80],[-164,-102],[-105,-141],[188,-391],[313,-324],[-2,-95],[-364,178],[-300,343],[-162,-65],[-94,62]],[[357231,384995],[-54,92],[-20,171],[29,140],[48,109],[-118,421],[31,157],[127,-119],[186,-22],[119,150],[250,-8],[72,101],[-47,325],[63,224],[126,-191],[74,26],[77,442],[2,512],[-5,1375],[58,372],[91,296]],[[298308,265510],[188,243],[416,-29],[74,-100],[-13,-143],[-262,-243],[-296,86],[-107,186]],[[309232,237353],[34,-225],[65,-302],[110,-227],[76,-105],[23,-230],[-94,-225],[-301,-73],[-390,78],[-207,679],[-121,486],[-26,728],[16,246],[98,105],[164,-175],[47,-558],[64,-149],[93,0],[99,285],[180,-24],[70,-314]],[[524669,787463],[187,175],[90,96],[-2,30],[-9,133],[61,130],[264,-212],[83,-237],[11,-31]],[[602409,873406],[-112,147],[-142,94],[-22,128],[45,182],[49,429],[31,393],[94,169],[172,43],[296,-226],[54,-352],[-65,-431],[39,-200],[-118,-298],[-235,-189],[-86,111]],[[608080,863878],[-47,-6],[-6,468],[-127,415],[60,254],[200,-60],[409,-289],[243,-227],[35,-372],[7,-714],[-104,-317],[-151,-283],[-179,5],[-10,91],[38,160],[76,217],[-40,286],[-128,298],[-139,125],[-137,-51]],[[589010,886773],[-116,-323],[-358,65],[-911,113],[-554,178],[67,208],[286,-111],[337,-31],[149,-10],[264,15],[131,107],[-18,170],[-53,197],[157,-28],[214,-225],[324,-119],[81,-206]],[[590015,904489],[-177,-88],[-266,-164],[-338,117],[-627,460],[127,189],[350,-5],[404,-25],[349,-308],[178,-176]],[[597663,906577],[-65,-169],[-25,-182],[-129,-261],[-236,557],[168,153],[204,281],[79,187],[-55,117],[-128,84],[22,229],[339,472],[70,242],[122,-130],[18,-427],[-150,-294],[35,-192],[13,-255],[-107,-209],[-175,-203]],[[688863,749628],[474,-326],[226,-62],[417,-166],[174,-320]],[[690154,748754],[-147,-171],[-341,-156],[-402,-19],[-308,298],[-253,744],[160,178]],[[812444,878266],[-222,-122],[-56,-471],[-33,-461],[-251,-308],[-286,-149],[-192,107],[-156,209],[-373,183],[-191,144],[-194,-67],[-132,-95],[-101,106],[-172,-5],[-140,-33],[-257,90],[-147,122],[-99,148],[24,126],[171,24],[144,55],[110,89],[201,27],[66,402],[326,174],[180,299],[12,234],[-159,209],[-215,-54],[-191,-257],[-133,-393],[-206,-175],[-284,-110],[-271,0],[-310,-138],[-45,-384],[285,-337],[144,-213],[87,-248],[34,-484],[99,-413],[-95,-251],[-203,-361],[117,-330],[-2,-132],[-179,-69],[-2,-170],[96,-199],[448,25],[321,-68],[98,-171],[74,-178],[-10,-117],[-441,221],[-318,-129],[-49,-260],[644,-410],[-147,-156],[-188,51],[-168,135],[-204,28],[-177,-192],[27,-356],[288,-431],[-412,-403],[-568,0],[-407,124],[-783,317],[-178,87],[-380,81],[-185,103],[-131,139],[-397,-56],[-401,-271],[-525,-498],[-449,-492],[-84,-440],[-94,-314],[-115,96],[22,464],[-28,128],[128,251],[92,385],[-28,268],[242,-83],[284,100],[322,279],[592,602],[801,-62],[480,-372],[189,-62],[230,-129],[147,71],[212,-157],[140,12],[27,-19],[73,-129],[320,-62],[190,351],[-92,319],[-10,336],[247,210],[95,312],[-22,388],[-72,334],[-201,303],[-345,128],[-268,-97],[-113,-117],[-46,58],[-18,124],[-189,174],[186,102],[357,-33],[199,23],[107,152],[84,296],[126,310],[78,208],[-99,192],[19,311],[-28,93],[-43,238],[-834,376],[-529,413],[-605,40],[7,339],[170,311],[-28,220],[-310,16],[-396,98],[-336,101],[-196,210],[155,84],[294,-31],[251,8],[232,141],[53,297],[-12,342],[-320,293],[-309,235],[-447,-64],[-426,-275],[-272,137],[-284,110],[-170,187],[444,59],[423,-57],[130,143],[257,459],[50,216],[110,182],[110,-22],[28,-125],[-91,-161],[40,-221],[332,-300],[511,-150],[141,1],[225,-224],[133,-197],[-117,-308],[-261,-510],[70,-99],[129,-208],[340,4],[63,110],[146,131],[143,-120],[134,-173],[209,-71],[58,-110],[-70,-77],[-78,-127],[-439,-206],[-24,-156],[146,-163],[258,-98],[220,-130],[196,286],[199,286],[-117,1032],[15,142],[-19,107],[94,224],[73,392],[112,51],[76,-418],[-23,-264],[22,-79],[-73,-448],[45,-253],[141,-228],[174,-112],[170,-17],[385,81],[234,211],[73,310],[-133,417],[168,-34],[155,5],[106,32],[298,-137],[285,-275],[212,-592],[25,-129],[-431,-555],[-5,-255],[264,-281],[207,-73],[171,79],[168,19],[97,315],[-111,279],[-19,216],[33,450],[-118,623],[-86,469],[-385,325],[-257,81],[262,168],[471,-18],[128,139],[126,-49],[-88,-255],[-12,-391],[37,-391],[239,-724],[571,-302],[112,-323]],[[888558,822328],[113,-171],[-186,-394],[-128,-358],[38,-226],[-18,-125],[-187,45],[-214,253],[-37,388],[248,400],[371,188]],[[984525,887422],[405,65],[83,202],[6,217],[294,104],[252,-114],[-105,-484],[-264,-513],[-362,-283],[-564,23],[-361,449],[181,562],[220,402],[58,150],[14,-245],[-73,-392],[216,-143]],[[877937,714950],[70,330],[150,136],[126,-75],[118,-271],[121,-357],[-150,-491],[-649,-982],[-163,-425],[-91,-155],[7,551],[215,652],[175,595],[71,492]],[[119444,867668],[-32,44],[-59,162],[-139,179],[-236,931],[-455,545],[-528,554],[222,96],[308,-239],[190,-205],[319,-434],[144,-275],[57,-419],[93,-447],[140,-223],[8,-220],[-32,-49]],[[68185,852359],[-339,-119],[-221,-90],[24,-148],[417,-170],[64,-102],[-129,-94],[-371,30],[-264,207],[-257,252],[-520,19],[-372,24],[-448,146],[-158,209],[-80,154],[182,108],[403,17],[5,72],[121,31],[174,-94],[147,-80],[86,-70],[468,-27],[772,-121],[348,-14],[-52,-140]],[[47672,866565],[-535,252],[79,155],[558,-168],[247,-23],[-349,-216]],[[70908,861730],[448,332],[619,362],[1112,536],[172,34],[-90,-193],[-1102,-606],[-567,-423],[-803,-687],[-475,-433],[-89,175],[307,435],[191,232],[87,37],[190,199]],[[80095,861754],[46,157],[235,306],[473,-194],[491,-667],[178,-223],[-78,-435],[-96,23],[-141,180],[-178,269],[-295,236],[-234,224],[-106,74],[-295,50]],[[55549,868397],[-240,-62],[-117,109],[78,282],[180,92],[187,-116],[102,-208],[-190,-97]],[[49146,866036],[29,-195],[89,-166],[169,-219],[-105,-153],[-92,-34],[-265,52],[-71,406],[-2,303],[96,236],[152,-230]],[[45261,869646],[188,-256],[-168,-275],[-85,299],[-404,328],[-234,240],[-40,157],[118,18],[411,-271],[214,-240]],[[45947,876201],[-115,-110],[-64,-460],[-163,151],[-102,445],[151,61],[302,145],[128,-184],[-137,-48]],[[258615,710148],[-167,-57],[-1012,1191],[-527,151],[-345,-160],[-177,49]],[[256387,711322],[110,238],[330,219],[443,5],[320,-259],[726,-740],[198,-426],[101,-211]],[[752922,802545],[181,-196],[38,-266],[-147,-181],[-327,-113],[-192,327],[141,464],[306,-35]],[[751114,703952],[-20,-536],[-201,-428],[-209,-225],[-403,308],[-189,47],[-75,304],[113,51],[387,-172],[287,346],[-22,555],[19,412],[84,375],[229,-1037]],[[749194,703612],[168,-1],[171,69],[122,147],[164,104],[96,-253],[-141,-617],[-81,-273],[-166,-435],[-68,177],[-55,775],[-143,181],[-67,126]],[[711580,694341],[-242,51],[-298,376],[-101,526],[-7,460],[131,82],[310,-471],[213,-659],[-6,-365]],[[754080,694621],[-89,257],[-36,419],[85,297],[158,124],[58,-316],[-8,-673],[-31,-135],[-137,27]],[[742818,694054],[26,355],[182,252],[157,85],[124,-124],[14,-264],[-182,-331],[-321,27]],[[717896,706393],[132,202],[465,-928],[133,-196],[146,-213],[486,-32],[76,-5],[42,-104],[-137,-127],[-34,-31],[-499,-116],[-47,96],[-458,933],[-305,521]],[[692465,805380],[230,185],[405,-156],[279,-99],[-12,-364],[-312,-139],[-306,47],[-154,32],[-165,-99],[-462,-754],[-171,-203],[-31,-173],[58,-193],[499,-61],[63,-254],[-10,-332],[-154,-4],[-145,-74],[-205,-240],[-379,-127],[-443,292],[-244,222],[79,378],[112,638],[55,446],[229,341],[365,-43],[272,0],[378,310],[169,424]],[[679371,816709],[310,488],[291,475],[260,521],[180,308],[94,-149],[-43,-897],[-214,-350],[-266,-285],[-80,-64],[-120,-112],[-204,-241],[-371,-221],[-38,114],[201,413]],[[532768,871877],[-122,-62],[-29,470],[99,260],[52,-668]],[[532904,873488],[132,520],[-3,589],[84,128],[123,-86],[-46,-573],[-59,-618],[-80,-364],[-41,-325],[47,-369],[68,-563],[-122,0],[-111,681],[-337,335],[41,210],[83,90],[221,345]],[[287351,809375],[-27,-115],[-522,-333],[-763,240],[120,85],[221,68],[115,148],[62,146],[55,67]],[[286612,809681],[159,-147],[236,-103],[344,-56]],[[246061,807930],[78,-286],[-421,85],[-139,192],[-154,211],[106,73],[290,-23],[175,5],[68,-116],[-3,-141]],[[244526,812884],[58,144],[151,-178],[-42,-241],[-59,-100],[-101,178],[-64,74],[57,123]],[[281621,807680],[185,-257],[-731,376],[-40,325],[92,-38],[205,-218],[289,-188]],[[281075,787463],[58,204],[189,-43]],[[281322,787624],[311,-18],[113,-144],[-35,-187],[-56,-96],[-66,-68],[-190,-119],[-185,-38],[-67,145],[-31,182],[-41,182]],[[286292,786465],[-86,-267],[-427,206],[-181,-124],[17,-264],[38,-131],[-46,-121],[-217,-131],[-81,232],[51,454],[-95,297],[-49,357]],[[285216,786973],[51,197],[43,41],[42,-133],[105,-247],[162,-15],[134,82],[76,-93],[100,-216],[285,-37],[78,-87]],[[199751,888284],[14,129],[113,69],[78,-22],[102,-147]],[[200058,888313],[-23,-60],[-211,-81],[-73,112]],[[198518,887378],[109,209],[458,333],[247,178],[167,10]],[[199499,888108],[-23,-232],[-56,-71],[-87,-57],[-669,-391],[-146,21]],[[197419,887604],[-165,78],[-187,-118],[-96,-39],[-28,95],[7,310],[102,182],[-26,147],[24,92],[366,-123],[104,-246],[113,-343],[86,-322],[-91,52],[-209,235]],[[196525,887564],[-86,87],[-161,277],[-62,279],[6,189],[36,137],[154,3],[142,-105],[-44,-76],[-77,-152],[33,-235],[341,-482],[-31,-195],[-177,-65],[-135,0],[104,169],[-43,169]],[[280927,926374],[207,-84],[334,-117],[1,-85],[-77,-68],[-548,-69],[-875,48],[-356,148],[-76,163],[113,119],[135,30],[522,21],[583,-31],[37,-75]],[[209690,917852],[-373,85],[-601,726],[280,15],[775,-109],[168,-55],[177,-88],[-83,-353],[-343,-221]],[[226716,904057],[221,-200],[205,-108],[-119,-255],[-415,-573],[-193,84],[-154,216],[-15,172],[78,469],[104,412],[142,-41],[146,-176]],[[232542,832269],[221,199],[418,93],[560,435],[179,234],[240,7],[74,-221],[-160,-334],[-269,-162],[-768,-372],[-341,-28],[-154,149]],[[215657,828368],[75,456],[137,359],[250,133],[225,-180],[29,-645],[-62,-619],[-114,-227],[-242,-39],[-234,155],[-105,245],[41,362]],[[206076,826338],[235,1064],[39,463],[85,98],[112,-122],[209,-171],[41,-408],[-46,-372],[-183,-350],[-103,-272],[-95,-428],[-20,-377],[-115,-183],[-138,134],[-13,492],[-8,432]],[[303213,821568],[-60,-119],[-321,142],[-189,412],[-214,382],[24,151]],[[302453,822536],[272,29],[192,-182],[48,-272],[-8,-212],[87,-148],[120,-38],[49,-145]],[[330821,816382],[501,-624],[43,-206],[143,-304],[148,-172],[9,-50],[-132,-28],[-252,372],[-141,271],[-354,311],[-141,233],[-507,432],[-407,83],[439,94],[651,-412]],[[187935,889368],[636,-300],[631,-872],[-111,-247],[-108,-124]],[[188983,887825],[-82,130],[21,180],[-452,532],[-486,471],[-49,230]],[[267747,791729],[-214,-231],[-259,-205],[-141,62],[-259,-46],[198,175],[369,496],[226,40],[61,-9],[126,-9],[398,482],[-108,-427],[-397,-328]],[[202604,835711],[10,207],[133,207],[177,182],[140,39],[46,-113],[-288,-451],[30,-100],[-101,-56],[-147,85]],[[204244,834593],[-117,49],[-26,106],[-75,62],[32,126],[273,232],[270,187],[37,-118],[-80,-290],[49,-170],[-124,-81],[-239,-103]],[[214620,874660],[166,886],[-42,247],[-214,397],[-13,207],[221,343],[94,-15]],[[214832,876725],[177,-604],[46,-310],[55,-312],[25,-316],[-69,-288],[-261,-189],[-185,-46]],[[212646,868486],[-59,117],[-26,271],[60,484],[318,288],[301,474],[64,206],[186,-141],[-131,-383],[-293,-400],[-267,-743],[-153,-173]],[[211706,852679],[342,63],[115,-142],[59,-98],[-64,-320],[-126,-366],[-285,171],[-135,53],[-46,155],[106,354],[34,130]],[[307907,839771],[86,-1033],[126,-357],[748,-1082],[35,-200],[-906,1138],[-188,464],[-17,600],[-218,451],[153,350],[253,513],[-25,-256],[-47,-588]],[[252973,899285],[-441,-552],[39,428],[317,304],[468,152],[-78,-221],[-305,-111]],[[254993,899615],[309,-164],[-337,-138],[-199,310],[-311,135],[-420,-101],[-374,-357],[-79,104],[-1,209],[146,192],[120,272],[133,20],[290,-80],[338,28],[385,-430]],[[841174,365827],[-154,138],[-350,730],[-94,405],[248,870],[17,284],[153,61],[336,54],[147,-136],[41,-923],[-57,-929],[-140,-423],[-147,-131]],[[857225,371956],[-602,293],[-188,631],[67,513],[244,207],[136,145],[337,209],[542,527],[317,593],[70,332],[185,325],[375,38],[223,-194],[-40,-292],[-360,-526],[-31,-574],[228,-380],[212,-185],[-10,-300],[-158,-180],[-165,-296],[-202,-385],[-354,-539],[-219,-140],[-607,178]],[[877488,314755],[-16,501],[84,539],[346,1088],[18,381],[-167,393],[-387,545],[-111,440],[-67,302],[-107,144],[-96,-24],[-67,-55],[-149,95],[-74,448],[65,412],[11,251],[-40,120],[-78,96],[-93,68],[-110,232],[-90,203],[-141,287],[-58,803],[29,193],[179,-122],[312,-621],[475,-288],[304,83],[193,-5],[346,-174],[73,-299],[-5,-288],[15,-366],[98,-527],[162,-431],[198,-1581],[104,-481],[-164,-1312],[9,-373],[-51,-168],[-148,-80],[-173,128],[-186,132],[-225,-120],[-161,-522],[-57,-47]],[[882860,318354],[-152,-870],[-76,-193],[-105,115],[-268,408],[-34,181],[195,270],[88,404],[82,1996],[-83,313],[-142,190],[-264,503],[-71,294],[93,144],[187,108],[76,217],[7,163],[-54,991],[-58,392],[12,547],[-85,235],[-469,21],[-88,333],[-31,601],[-154,628],[-200,454],[-123,385],[42,261],[267,-227],[273,-530],[169,-452],[332,-256],[401,-397],[260,-607],[246,-710],[204,-931],[78,-455],[-27,-304],[16,-341],[297,-1173],[-60,-790],[-781,-1918]],[[832771,331426],[-34,-444],[-159,0],[-257,183],[73,234],[86,339],[-75,387],[-84,291],[80,360],[8,395],[-106,143],[-136,-13],[-91,-167],[-16,-965],[-70,-744],[-208,-286],[-167,69],[155,1807],[-160,131],[-137,-124],[-353,-685],[-171,418],[-35,981],[270,139],[242,469],[233,104],[419,-370],[283,175],[180,537],[135,284],[258,-64],[227,100],[189,-271],[-37,-312],[-130,-28],[-193,248],[-441,-731],[-96,-316],[187,-1044],[110,-446],[91,-241],[-70,-543]],[[888716,322802],[-49,-368],[-122,-339],[-115,-250],[-96,15],[-157,261],[-235,279],[-129,127],[-260,507],[-86,286],[170,610],[470,1228],[492,1136],[154,310],[166,-115],[91,-484],[-49,-602],[-123,-1946],[-122,-655]],[[882390,332354],[-155,-137],[-231,-140],[-317,-287],[-93,-59],[-260,25],[-254,-108],[-218,108],[25,609],[222,598],[366,139],[717,372],[302,167],[61,-391],[-165,-896]],[[883094,333823],[-380,365],[-441,-78],[-392,234],[-196,-104],[-175,24],[-120,218],[-170,566],[-261,32],[-57,-183],[-14,-352],[-125,-214],[-157,-6],[-194,365],[-151,715],[64,451],[14,395],[-110,1413],[68,139],[163,190],[67,473],[-59,681],[-155,566],[-67,233],[-164,119],[-126,148],[43,303],[254,333],[394,310],[819,-685],[346,-665],[314,-174],[296,-19],[82,-137],[14,-313],[37,-495],[148,-419],[-111,-233],[-59,-872],[-88,-144],[-13,-495],[307,-1147],[330,-860],[303,-389],[-12,-237],[-266,-52]],[[813792,353437],[-34,237],[-112,909],[7,144],[88,185],[72,48],[210,-995],[132,-729],[99,-400],[0,-409],[46,-130],[97,-468],[-61,-199],[-544,1807]],[[858338,352149],[0,-33651]],[[858338,318498],[-155,-58],[-673,-663],[-292,-246]],[[855789,316326],[-175,-97],[-954,-441],[-790,-530],[-294,-163],[-170,-50],[-538,-85]],[[852868,314960],[-717,-114],[-1133,203],[-190,50]],[[850417,315208],[-205,-109],[-443,-172],[-601,-764],[-912,-929],[-294,-184],[-909,-1020],[-652,-506]],[[845938,311166],[-269,-100],[-189,-49],[-37,-35],[-25,-10]],[[845418,310972],[-89,-96],[-209,-194],[-326,-674],[-442,-1874],[-274,-887],[-606,-1417],[-398,-474],[-393,65],[-282,-315],[-148,30]],[[841721,305675],[-502,-154],[-171,-15],[-1070,-366],[-678,-208],[-242,671],[-319,106],[-319,-19],[-631,112]],[[837090,305926],[-699,-176],[-796,-128],[-481,-174],[-1821,-237]],[[833293,305211],[-238,-170],[-128,-31],[-148,-167],[-28,-20]],[[832751,304823],[-58,-78],[-113,-128],[-261,-354],[-24,-76],[-286,-751]],[[832009,303436],[-15,-174],[-188,-577],[-563,-522],[-463,-17],[-516,-121],[-398,-580],[-31,-14]],[[829835,301431],[-169,-278],[-444,-648],[-981,-1354],[-199,-169],[-247,-109],[-398,-247],[-522,-117],[-150,-78],[-312,168]],[[825902,298873],[-884,-100],[-393,22],[-967,227],[-715,620],[-829,796]],[[822114,300438],[-441,850],[-212,464],[-96,128],[-61,117]],[[820663,302781],[-373,217],[-75,67],[-230,-27],[-156,-165],[-41,16]],[[819788,302889],[-27,11],[-125,192],[-89,163]],[[819461,307618],[95,-62],[74,-97],[121,-323]],[[820815,307541],[2,4],[58,86],[91,344],[358,1035]],[[821362,309997],[-53,710],[-2,52],[-44,598],[254,2921]],[[821401,318318],[-2,8],[-15,162],[-29,97],[-33,193]],[[821322,318778],[-883,3233],[-178,807],[-176,490],[-89,327]],[[819634,325433],[-241,2299],[-36,520],[0,15],[-26,2257]],[[819331,330524],[-10,122],[43,576],[-34,627],[-227,1373],[-45,538]],[[818337,336359],[-53,152],[-125,603],[-511,1465],[-288,698],[-289,2883]],[[817022,342648],[-129,644],[-149,888],[-86,287],[-9,46]],[[816649,344513],[-91,287],[-699,2333],[-162,393],[-93,293]],[[815604,347819],[-232,498],[-559,1359],[-283,1040],[-8,22],[-8,48]],[[814535,350849],[48,137],[8,-9],[131,-254],[64,-21],[61,210],[-6,461],[133,107]],[[816310,350183],[-829,1623],[-167,938],[-305,1017],[57,560]],[[815066,354321],[42,127],[34,64],[208,-131],[103,-267]],[[815453,354114],[412,-1063],[-38,-933],[-40,-281],[22,-236],[90,-225],[116,-177],[128,259],[89,457],[66,-213]],[[816298,351702],[204,-1054],[4,-34],[5,-13],[124,-642]],[[817300,350286],[-48,1394],[48,648],[-39,692],[-61,181],[-1,22]],[[815609,359439],[-123,331],[-17,98],[-182,581],[-238,939],[-14,1074],[24,718],[139,1137],[380,1731],[25,81],[381,612]],[[816194,369600],[-97,584],[0,195],[-76,601],[-212,927],[-21,127],[254,1468],[561,2742],[126,240],[281,312],[52,-480],[-20,-227],[-96,-812]],[[818252,375697],[88,425],[0,3],[296,702],[35,43],[790,698]],[[820704,378668],[690,1322],[193,271],[315,691],[2107,2439]],[[827610,384457],[38,195],[371,475],[311,259],[688,274],[17,5]],[[829985,385946],[642,1336],[218,349],[706,-100],[631,-154],[377,352],[209,58]],[[833879,388091],[348,259],[310,188],[429,363],[300,223]],[[835266,389124],[192,193],[314,266],[333,359],[52,78],[189,189]],[[837215,391996],[175,622],[91,267],[89,375],[475,1694]],[[839677,398356],[37,246],[133,161],[43,443],[-68,111],[34,228]],[[839856,399545],[-345,482],[-92,1050],[-121,1013],[-9,526],[58,917],[266,998],[199,452],[276,526],[252,163],[209,460],[340,457],[144,458],[211,932],[191,708],[149,-24],[158,-900],[18,-492]],[[841760,407271],[190,-615],[110,-513],[344,-1027],[326,-1513],[14,-35],[11,-167]],[[843019,402772],[55,-130],[51,-179],[105,-207],[1,12],[17,-40]],[[844070,405301],[-64,185],[89,329],[-50,319],[-218,-19],[-92,395],[-179,457],[-134,217],[-378,1097],[-2,7]],[[843042,408288],[226,174],[12,-1],[6,15],[186,143]],[[843622,409215],[-181,137],[-89,568],[112,262],[226,-75],[139,-429],[-113,43]],[[846913,408754],[-365,278],[-1,6],[-245,205],[-274,40],[-113,-7],[-72,535]],[[845740,410582],[7,15],[113,-40],[186,16],[23,553],[47,351],[350,834]],[[845708,412316],[-34,-99],[-123,329],[-26,502]],[[848312,416933],[-28,65],[3,64],[-55,59],[-5,12]],[[847920,417601],[-28,88],[-5,207],[-165,476],[-4,468],[127,204],[377,563]],[[849033,420763],[80,-145],[0,-391],[-54,-291],[81,23],[49,121],[66,280],[301,-549]],[[849556,419811],[7,-22],[20,-255],[91,-99],[66,-210]],[[849812,419262],[154,813],[91,67],[-6,377],[215,1136]],[[850266,421655],[-20,272],[33,48],[30,415],[-98,265],[168,413]],[[852058,423017],[0,5],[110,307],[-29,309],[25,192]],[[852164,423830],[-31,151],[20,333],[246,159]],[[852399,424473],[134,87],[160,-108],[288,-605]],[[853414,423539],[56,0],[121,-89],[457,-572],[204,-373],[309,-466],[821,-2221]],[[855815,417030],[-9,-175],[-28,-220],[-8,-383],[-317,-2158]],[[856822,417889],[-131,249],[2,28],[188,242],[83,24],[16,0]],[[856980,418432],[351,11],[930,-485],[77,-89]],[[858338,417869],[0,-65720]],[[858338,417869],[91,-107]],[[858429,417762],[236,-276],[126,-258],[28,-754],[113,-267],[62,473],[-12,913],[88,147]],[[859534,417608],[47,-35],[26,-24],[140,-314],[143,-403]],[[859892,416835],[19,24],[54,-316],[130,-215],[44,314],[-62,442],[0,6],[367,979],[9,1],[237,96],[-112,173],[-112,43],[28,637]],[[860532,419916],[-260,-194],[-1,49],[-250,-14],[-344,413],[-293,575],[224,1058],[446,1034],[250,346],[17,241],[29,39]],[[860402,423533],[418,2297],[81,123],[76,-28]],[[861447,426247],[33,71],[8,7],[80,176],[251,526]],[[861819,427027],[-20,68],[33,93]],[[861832,427188],[-279,746],[49,905]],[[861602,428839],[24,440],[368,388],[169,859],[360,197]],[[863199,430617],[-381,439],[7,6],[-21,919],[36,356],[138,142],[177,-122],[112,-399],[109,-159],[132,-381]],[[863751,431689],[-164,279],[-24,227],[-12,241],[88,328],[128,62],[186,32],[19,425],[-30,337],[61,120],[757,118]],[[864774,433832],[55,-105],[10,-84],[156,-231],[77,-148]],[[865072,433264],[24,-2],[9,-14],[178,-2],[263,-22]],[[865716,433210],[843,137],[285,-122],[208,202],[592,97],[55,-53],[108,-331],[59,487],[123,184]],[[867989,433811],[262,396],[36,26],[258,-117],[101,39],[-229,522],[13,475],[-3,152],[263,1873]],[[867323,438040],[-117,-122],[-169,-82],[-13,12],[-332,509],[-180,378],[-137,110],[-193,297]],[[866182,439142],[13,116],[364,469],[158,-93],[243,-500],[138,-177],[117,36],[76,391],[104,206],[199,-116],[620,-847],[348,-821],[179,217],[223,336],[668,-774]],[[869632,437585],[30,-67],[99,-398],[197,-496],[126,-35],[59,-129]],[[870596,436165],[198,-21],[131,-173],[337,28],[693,-122],[58,-56],[29,-45]],[[876684,434431],[349,-275],[-83,-167],[6,-345],[109,-187],[131,84],[185,288],[36,25],[56,-44]],[[878422,432248],[54,72],[25,1],[12,49],[86,114]],[[878599,432484],[90,594],[0,1],[0,1],[71,471]],[[878658,433698],[-63,-19],[-7,45],[-117,138],[56,245],[464,1027],[19,33]],[[879010,435167],[7,4],[169,-23],[-14,-234]],[[879884,433487],[-56,66],[272,37],[116,-99],[154,-512]],[[880373,432803],[1,-63],[-138,-312],[-446,-830]],[[879790,431598],[-147,-505],[-374,-844],[-54,-286],[143,-435],[-10,-96]],[[879348,429432],[43,-140],[37,-341],[-215,-757],[-371,-401],[-52,140],[-196,226],[-172,-160],[-183,-94],[-53,-58],[-13,2]],[[877618,424561],[60,91],[65,-432],[-219,-1599],[-71,-462],[-214,-479],[-107,-194],[-128,-217]],[[876501,419805],[-44,-288],[-72,-167],[-1265,-812]],[[876156,417870],[85,-160],[18,-102],[215,-456],[150,-169],[86,-162]],[[877493,415852],[177,-256],[22,-38],[24,-29],[100,-145]],[[878064,415026],[426,-770],[7,-28],[90,-443],[396,-422],[772,-1396]],[[879755,411967],[164,-44],[38,-54],[150,4],[196,-52]],[[880303,411821],[1083,-969],[631,-595],[85,-67],[559,-697],[256,-637],[111,-310]],[[883028,408546],[44,-73],[18,-45],[249,-469]],[[883339,407959],[-2,-5],[1,-55805]],[[883338,352149],[-25000,0]],[[878864,421966],[4,67],[97,284],[-45,665],[19,344]],[[879658,424890],[59,-104],[-7,-103],[52,-459],[42,-85],[96,-926]],[[879900,423213],[27,-76],[-80,-502],[13,-251],[103,-252],[274,-234],[127,102],[51,-46],[-51,-343],[-103,-278],[-364,116],[-315,-43],[-180,93],[-538,467]],[[862504,435857],[-512,376],[-517,-311],[-39,-1],[56,756],[5,-2],[162,230],[-29,691],[-54,215],[24,326],[208,527],[121,140],[124,-1],[104,-491],[25,-531],[130,-486],[74,-515],[86,-53],[32,-870]],[[863768,438843],[15,5],[70,-61],[99,31],[64,83],[370,-541]],[[864450,439039],[237,509],[92,-212],[323,-393],[96,-391],[106,-511]],[[865304,438041],[-13,-32],[-103,-225],[-2,-39],[-162,-404],[-72,11],[-209,-626],[-290,-463],[-671,-902],[-300,304],[-580,743],[-370,735],[-247,1017],[-50,833],[-101,532],[45,134],[51,69],[56,-13],[106,-216],[160,-356],[44,-60],[165,-338],[68,-173],[17,-2],[156,-318]],[[883338,352149],[8334,0],[0,-17730]],[[891672,334419],[65,-29813]],[[891657,304770],[-80,61],[-5,-24006]],[[891572,280825],[-151,15],[-791,213],[-584,693],[-80,104],[-489,1486],[-906,1658],[-114,265],[-150,373],[-27,155]],[[888280,285787],[-110,626],[-8,366],[126,927],[9,48],[139,280]],[[888500,288750],[-21,163],[13,216],[-112,540],[-43,324]],[[886697,294341],[-597,870],[-31,91],[-34,165],[88,-54]],[[886368,295062],[-278,431],[206,-78],[127,331],[182,114],[145,-441],[164,-80],[8,741],[92,349],[-64,161],[-55,143],[-250,166],[-275,-250],[-211,-317],[-284,-270],[-111,-283],[-179,-6],[-298,124]],[[884630,295180],[-172,-37],[-44,-2],[-569,190],[188,745],[10,19],[107,95]],[[883348,303448],[-155,-1046],[-85,-236],[-55,-709],[-293,-1974],[-184,-892],[-358,-483]],[[882218,298108],[-63,-29],[-27,-2],[-297,98],[-520,-280],[-355,-341],[-318,-1],[-176,-108],[-231,89],[363,1915],[318,-53],[118,27],[409,-76]],[[881439,299347],[17,100],[185,17],[176,880],[107,984],[-59,551],[24,141]],[[881889,302020],[65,2002],[407,1672],[182,463],[236,556],[364,636],[-49,696],[-43,278],[255,1603]],[[883306,309926],[-16,240],[22,49],[-221,1912],[-139,574],[-134,340],[-154,852]],[[882200,310714],[-103,-383],[-53,-87],[-260,-617],[-230,-1307],[-78,-292]],[[879504,305496],[-239,-496],[-27,-45],[-265,-270],[-430,-1179],[-1036,-2145]],[[877482,300339],[115,73],[43,-82],[111,-873],[7,-215],[-65,-184],[-141,119],[-352,582],[-166,-159],[-878,1037]],[[876156,300637],[-45,53],[-211,374],[-260,371],[-111,42],[-63,-26],[-37,44]],[[875556,301636],[152,169],[104,-168],[239,-307],[135,-26],[63,124],[-217,1157],[-334,2359]],[[875698,304944],[-132,295],[-52,174],[-187,359],[-240,533]],[[875087,306305],[-617,2296],[-51,230],[-24,51],[-219,813]],[[873566,309896],[-529,-34],[-333,1033],[-192,1284],[107,-75]],[[870714,315639],[-1163,469],[-781,832],[-303,41],[-503,-233],[-1106,447]],[[866858,317195],[-187,237],[-780,1045],[-911,872],[-300,164],[-20,8],[-355,303]],[[861550,319168],[-16,-3],[-63,5],[-1558,-285],[-1059,-194],[-153,-57],[-224,-42]],[[858477,318592],[-89,-75],[-50,-19]],[[880889,292870],[-120,-8],[-142,38],[-125,-53],[-478,-29]],[[880024,292818],[-1,0],[-149,28],[-460,578],[-114,225],[37,307],[48,217],[166,353],[1259,502],[410,257],[354,152],[454,-62],[152,-89],[53,-81],[-80,-567]],[[882153,294638],[59,-49],[0,-3],[3,0],[1146,-965]],[[883361,293621],[-40,-12],[-446,214],[-456,-178],[-136,-238],[-20,-120],[-869,-264],[-257,122],[-122,-237],[-126,-38]],[[883339,407959],[192,-361],[245,-305],[117,-196]],[[884207,406823],[462,-206],[68,-39],[14,3],[771,-343],[89,-80],[527,-229],[93,-227],[237,-728],[44,-238],[27,-393],[261,-951],[224,-129],[45,-138]],[[891706,404923],[494,2269],[75,233],[145,780],[96,443]],[[892516,408648],[122,1168],[15,121],[157,896],[-52,975],[153,1665],[255,1556]],[[893281,415731],[59,660],[63,429],[-9,184],[38,426]],[[893196,420698],[-9,125],[32,244],[98,1095],[-164,792],[-152,544],[-16,539],[133,1259]],[[893118,425296],[55,523],[61,308],[213,602]],[[893533,427752],[-118,620],[-41,858],[105,289],[227,439],[132,325],[261,2],[123,-146],[21,295],[74,172]],[[894250,431388],[-495,344],[-15,24],[-191,225],[29,829],[326,1602],[180,617],[118,-258],[133,-207],[19,461],[-45,473],[247,1564],[274,2118],[26,620],[16,128]],[[895436,441486],[94,383],[44,94],[130,529],[118,23]],[[895822,442515],[46,10],[86,0],[42,-58]],[[895996,442467],[21,-29],[38,-55],[-60,-638]],[[896323,440934],[9,4],[120,-205],[157,-619],[66,-584],[3,-18],[51,-865]],[[896729,438647],[78,-1341],[-1,-248],[61,-1117],[171,-351],[151,-226],[83,-12],[26,-106]],[[897298,435246],[199,-1703],[31,-452],[27,-41],[24,-208]],[[897579,432842],[354,-342],[93,-563],[221,-594],[39,-163]],[[898286,431180],[48,-206],[-6,-324],[-116,-921]],[[898480,429393],[68,-86],[95,-891],[13,-306],[59,-1920]],[[898747,425151],[19,-199],[-21,-357],[113,-719],[26,-102],[19,-198]],[[899037,422774],[252,-1504],[33,-267],[16,-26],[30,-182]],[[900432,420727],[548,744],[333,224],[315,-726],[93,-441],[2,-39]],[[901723,420489],[9,-15],[67,-320],[744,-1075],[34,-57],[60,-102]],[[902637,418920],[7,-10],[312,-521],[321,-390],[22,-37],[278,-2946],[-46,-679],[217,-1328],[72,-1061],[81,-369],[24,-2537]],[[903925,409042],[37,-156],[-2,-42],[179,-745],[45,-149],[12,-52]],[[904228,407764],[45,-109],[31,-105],[246,-597],[324,-907],[63,-50],[349,-1093],[124,-557],[396,-2072],[93,-660],[-141,-2075],[-21,-171],[-55,-308]],[[905624,397879],[19,-49],[1,-18],[431,-1140],[90,-851]],[[911770,387452],[345,-343],[14,-23],[12,-4],[955,-950],[124,-240],[171,-454],[177,-676],[-221,-64],[-131,87],[-186,197]],[[913925,382034],[161,-184],[284,-684],[16,-67]],[[914454,380826],[52,-227],[53,-384],[94,-254],[20,-90],[130,-991],[154,-270],[572,-4526]],[[916824,371923],[-155,753],[12,24],[-177,1262],[109,732],[110,94],[109,17],[323,-1076]],[[918450,372588],[-213,293],[-4,29],[12,604],[151,99],[137,-301],[255,-933],[52,-1933],[1,-1617],[3,-29],[-28,-775]],[[919256,365868],[278,202],[153,-311],[168,-475],[91,-540]],[[921313,363668],[-33,75],[83,-7],[320,-410],[11,-33]],[[922763,359887],[908,-1828],[115,-432],[252,-767],[375,-427],[85,-228],[191,-1383]],[[924748,353868],[134,-323],[75,-317],[120,-319],[88,-100],[88,-469]],[[925367,351739],[-8,-263],[-126,-1129],[59,-1090],[-75,-2468]],[[926117,340520],[212,-1198]],[[926329,339322],[-270,-391],[-521,-132],[-211,-555],[-756,159],[-261,-185],[-397,369],[-108,-171],[-214,356],[-223,-474],[-335,-265],[-211,-290],[-149,0],[-545,-580],[112,-608],[173,-394],[-124,-1003],[-248,-291],[-223,26],[-87,-316],[-174,158],[-87,343],[-488,-401]],[[920982,334677],[-70,-471],[-142,-310]],[[920770,333896],[-235,-307],[-162,207]],[[920373,333796],[-88,724],[-200,497]],[[919604,335566],[-22,275],[-187,285]],[[918644,336546],[-674,-68],[-358,512]],[[915768,336706],[-225,272],[-233,-79]],[[914371,335556],[-257,-403],[-65,-313]],[[914049,334840],[-180,-346],[-52,-73],[-22145,-2]],[[925902,358266],[-459,-3010],[-51,-234],[-160,-1002],[-7,-158],[-254,468],[-37,465],[63,608],[145,555],[26,309],[-21,208],[102,685],[276,477],[106,381],[11,137],[25,61]],[[925667,358216],[-12,104],[16,190],[-154,532],[-119,105],[4,11],[359,453]],[[925761,359611],[35,-335],[31,-722],[58,-127],[17,-161]],[[887336,407626],[-126,-224],[-12,8],[-32,-88],[-133,-237],[-136,-92],[-70,2],[-42,55]],[[886629,407755],[135,407],[70,141],[160,205],[391,144],[265,190],[233,-221],[166,-419],[-256,-58],[-11,19]],[[911452,257186],[-144,-583],[-13,-29],[-70,-304],[-65,-263]],[[911081,255270],[-85,-797],[-96,-276],[-30,-443],[-379,-887]],[[910491,252867],[-203,-473],[-29,33],[-332,155],[-106,-191],[17,-263],[-329,-116],[-43,286],[-306,608],[11,-293],[127,-508],[-11,-178],[-65,-349],[-110,-95],[-58,-233],[0,-327],[-29,-372],[-264,-332],[-437,527],[-34,-198],[1,-4],[-8,7]],[[908284,250387],[176,-540],[-28,-62],[-87,-300],[-138,-784],[-170,-491],[-103,-178],[-62,-23],[-225,62],[-234,151],[-335,440],[-365,-61],[-289,90]],[[905615,248942],[-15,32],[-9,67],[-87,216],[35,191],[318,128],[327,-6],[-52,232],[-87,85],[-143,-56],[-416,201],[-170,-54],[-317,352]],[[904999,250330],[-71,128],[-258,763],[-199,460],[-118,178],[-138,98],[-83,147],[-570,2108],[-38,273]],[[903524,254485],[-133,959],[-28,344],[110,136]],[[903822,255406],[166,-247],[90,-492],[164,619],[-17,109],[62,85]],[[904287,255480],[-550,912],[-17,61],[-23,258],[-61,-153],[-137,227]],[[903499,256785],[-17,49],[14,113],[-57,517],[-508,1141],[-389,1080],[-372,1293],[-43,228],[-5,266],[-185,891],[-98,661],[-45,580],[176,1170],[22,563],[15,79],[213,-225],[125,-178]],[[903510,264640],[1468,-1192],[81,-102],[296,-204],[654,-531]],[[906708,262436],[1077,296],[125,-235],[-33,347],[57,302],[175,240],[195,150],[322,-11],[89,18],[694,-21]],[[909409,263522],[39,34],[148,-75],[127,221],[58,139],[564,483],[258,-75],[154,-6],[266,551],[179,-10],[497,-428],[224,-598],[-20,-950],[17,-349],[14,-113],[-23,-278]],[[911911,262068],[-3,-1787],[-1,-71],[1,-19],[-2,-1064]],[[911749,257672],[-20,-14],[-26,100],[-92,-180],[-33,-22]],[[911024,250727],[-248,-179],[-114,-31],[-131,-132],[-30,19],[-227,541],[-142,604],[110,241],[89,-52],[100,-334]],[[910857,252555],[52,-50],[84,-601],[64,-1153],[-33,-24]],[[911967,268458],[-22,-77],[-3,1],[-247,-362],[-57,-33],[-419,240],[-40,157],[-181,453],[-184,527],[35,206],[-82,390],[-151,-26],[-101,292],[148,170],[118,281],[199,287],[25,-24],[778,-1599]],[[911899,269102],[11,-98],[-103,-192],[142,-188],[18,-166]],[[900294,269298],[-15,-76],[-114,-176],[-122,-144]],[[900043,268902],[-8,-9],[-236,-179],[-81,-24],[-64,333],[33,474],[-120,415],[0,7]],[[899567,269919],[-6,116],[64,405],[-3,165],[65,566]],[[899687,271171],[78,153],[65,97],[23,369],[70,11]],[[899923,271801],[345,-426],[67,-705],[-41,-525],[84,-407],[-84,-440]],[[891928,304473],[272,-41],[348,-230]],[[892971,303780],[323,-50],[221,320],[265,152],[459,-31]],[[894239,304171],[643,-334],[263,-295],[97,-371],[112,-215]],[[895354,302956],[126,-61],[57,-319],[-15,-579],[105,-638],[225,-702],[178,-377],[132,-49]],[[896162,300231],[124,249],[116,544]],[[896700,301276],[125,-285],[299,-216],[711,-246],[290,-324],[99,-554],[5,-889]],[[898269,298198],[76,-238],[150,-210],[227,-182]],[[898722,297568],[120,-266],[3,-284],[360,-498]],[[899205,296520],[714,-690],[533,-628]],[[900804,294638],[246,-536],[137,-497],[268,-529],[401,-555]],[[902219,292299],[326,110],[134,192]],[[902679,292601],[-58,271],[-2,299],[51,329],[130,227]],[[903400,293953],[578,65],[433,-167],[289,-402]],[[904700,293449],[342,-274],[619,-232],[494,-238],[301,20],[218,121]],[[906674,292846],[187,234],[331,-67],[436,-334],[415,-228],[419,-36],[148,329]],[[909087,292751],[143,-117],[76,99]],[[909306,292733],[58,285],[100,193],[141,100]],[[909827,293137],[148,9],[230,169]],[[911657,289347],[-98,-621],[-80,-278],[232,-150],[4795,-4125]],[[916506,284173],[-27,-165],[-343,-115],[-279,-408],[-337,-565],[-537,-373]],[[914983,282547],[-1108,-88],[-143,12],[-440,-58],[-1422,-113]],[[910294,281210],[-652,-974],[-210,-311],[-15,-24],[-1516,-2265]],[[906119,276735],[37,-122],[-1,-17],[12,-20],[215,-714]],[[906382,275862],[92,110],[16,-36],[99,174],[57,68]],[[906668,274494],[-115,44],[-30,23],[-29,80],[-17,217],[-216,663],[-266,584],[-246,186],[-63,-85],[-80,145]],[[905606,276351],[-441,333],[-192,595],[-274,67],[-238,-7],[-197,279],[-78,89],[-182,327]],[[904004,278034],[-29,431],[34,117],[108,212],[166,99],[-24,178],[50,97]],[[904152,279600],[-1,3],[-53,178],[-13,4],[-46,127]],[[903500,279894],[-255,-1008],[-499,-537],[-115,-5]],[[902631,278344],[-33,-1],[-245,299],[-215,339],[20,79]],[[902724,279282],[235,720],[4,8],[1,7],[4,11]],[[903125,280507],[-20,151],[5,23],[-12,28],[-42,321]],[[902499,282219],[-1114,-1535],[-93,-68],[-194,-204],[294,-151],[11,-343]],[[901414,279599],[-136,-158],[-35,-16],[-331,-262],[-631,-674],[-377,-655],[-35,-41]],[[899869,277793],[-74,-148],[-313,-544],[-395,-445],[-190,-148],[-130,-45]],[[898767,276463],[-125,-43],[-480,322],[-114,31],[-362,292],[-235,339],[-634,362],[-63,50],[-610,736],[-434,385],[-310,84],[-97,-36],[-106,86]],[[894283,279539],[-37,-6],[-12,11],[-554,73],[-109,-205],[-234,-42]],[[891675,280814],[-103,11]],[[915010,297005],[-100,-158],[-247,53],[-261,-211],[-124,-343],[25,-397],[-62,-448],[-112,-158],[50,-1293],[-149,-501],[-285,158],[-137,395],[-25,450],[-111,-27],[-161,237],[-49,423],[-13,844],[161,1081],[769,976],[236,-183],[12,-238],[173,-317],[410,-343]],[[918365,297828],[67,258],[193,156],[1,2]],[[918626,298244],[1,-1],[-180,-280]],[[918447,297963],[-26,-71],[-56,-64]],[[926329,339322],[89,-504]],[[926583,337912],[4,-69],[-7,-673],[80,-495],[42,-678],[-2,-68],[-42,-469]],[[926630,335141],[-9,-37],[-338,-989],[-276,-1233],[-226,-627]],[[925825,332003],[139,-159],[-1,-367],[-148,-1667],[-120,-954],[-74,-346],[-99,-976],[-91,-491],[-316,-1420]],[[925109,323256],[17,-7],[6,-108],[-73,-1061],[-109,-723],[-58,-724],[-12,-82]],[[923652,315614],[88,-251],[-4,-117],[-80,-515],[-128,-644],[-352,-638],[-285,-377]],[[922350,312026],[-64,-70],[-192,-123],[-392,-477],[-23,-66],[-96,-106]],[[920983,309784],[-3,-616],[-64,-175],[-129,-275],[-56,-295],[-58,-483],[-79,-276]],[[920275,306864],[24,110],[11,-87],[-5,-90]],[[920187,305676],[-179,-607],[-4,5],[-94,-56],[-120,-187],[135,-44],[-95,-323]],[[918777,299236],[23,-378],[-34,51],[-163,-204],[-46,-207],[69,-254]],[[918365,297828],[-123,-143],[-203,-829],[-781,-2118]],[[916571,288362],[-3,-202],[-13,-116],[-27,-1387],[100,-1054],[-65,-558],[-2,-537],[-55,-335]],[[314923,447146],[-123,-128],[-162,-168],[-1021,-1672],[-38,-63],[-219,-250],[-27,-4],[-223,-31],[-146,-240],[-234,-189],[-459,-686],[-10,-23],[-224,-527],[-154,-497],[-177,-17],[-137,137],[-317,-50],[-118,-19],[-222,-169],[-242,-484],[-300,-875],[-123,-249],[-242,-258],[-278,-213],[-346,-321],[-154,-22],[-112,-46],[-25,-11],[-118,146],[-39,314],[-179,198],[-426,99],[-630,229],[-650,45],[-297,-20],[-25,-2],[-265,-14],[-248,65],[-213,57],[-335,21],[-294,-311],[-350,-315],[-77,-69],[-196,-98],[-143,-15],[-140,48],[-162,199],[-34,69],[-195,391],[-176,-177],[-67,-104],[-60,-92],[2,1001],[4,1505],[2,1329],[3,1062],[2,1240],[2,875],[79,218],[41,114],[74,372],[-26,144],[-63,352],[19,457],[62,316],[20,77],[60,233],[-185,-156],[-81,-85],[-81,-193],[-18,-42],[-26,-36],[-213,-282],[-160,-316],[-190,-259],[-200,-476],[-40,-95],[-163,-260],[-33,-54],[-205,-198],[-340,-672],[-282,-133],[-498,-69],[-249,-34],[-776,2],[-709,3],[-108,8],[5,396],[2,157],[18,391],[-44,75],[-198,337],[-16,507],[-65,351],[-81,428],[-169,275],[-239,107],[-335,203],[-55,33],[-580,246],[-313,10],[-242,8],[-543,-23],[332,860],[332,861],[-10,751],[-268,652],[-144,407],[-224,559],[-276,386],[-151,515],[6,147],[8,164],[-24,206],[-105,121],[-105,189],[-145,206],[-2,3],[-167,271],[0,274],[-65,292],[-105,344],[0,273],[-97,430],[-105,309],[-104,206],[-154,291],[8,241],[105,111],[8,8],[49,275],[-16,274],[-129,172],[-154,86],[-40,100],[-161,398],[-145,258],[-97,154],[-57,171],[57,120],[65,172],[15,274],[-32,258],[0,223],[97,69],[105,-34],[105,137],[19,7],[118,44],[153,35],[81,154],[-8,274],[-97,532],[-97,224],[-11,107]],[[295008,463745],[3149,-2812],[6361,-3325],[1575,-1767],[8272,-8179]],[[314365,447662],[525,-485],[33,-30],[0,-1]],[[314365,447662],[235,527],[137,0],[272,502],[261,185],[272,633],[25,712],[806,-79],[298,105],[186,-79],[459,-897],[248,184],[124,502],[297,211],[223,-185],[75,317],[545,791],[63,-52],[74,-634],[223,-369],[149,211],[372,1109],[-62,553],[112,343],[298,449],[248,-211],[260,-27],[335,448],[161,-131],[99,185],[459,-54],[273,80],[-25,1478],[149,-159],[211,185],[210,871],[-198,553],[211,633],[458,292],[75,553],[372,158],[12,501],[137,477],[1761,-54],[210,-53],[298,-263],[124,-317],[112,-634],[223,-395],[50,-423],[235,80],[223,-211],[187,-1108],[371,-238],[112,-923],[372,-265],[223,-368],[124,105],[99,660],[211,105],[124,238],[298,-212],[0,-263]],[[328861,453994],[285,-475],[62,-396],[-124,-501],[-74,-765],[74,-581],[-174,-79],[-49,-476],[174,-526],[-13,-317],[198,-1029],[-111,-396],[-124,-132],[124,-791],[-37,-793],[-99,-395],[12,-1187],[260,-1029],[-87,-1478],[87,-421],[-136,-185],[37,-528],[-37,-448],[136,-265],[2865,-26],[0,-211],[161,-369],[286,131],[285,-238],[297,27],[186,-185],[261,-1397],[-323,-898],[-211,-395],[0,-844],[112,-951],[211,-79],[148,-791],[125,-449],[-13,-687],[187,-843],[-236,-1372],[-261,-660],[-112,-844],[-111,-316],[-310,-265],[-211,-580],[-12,-396],[-211,-791],[-87,-871],[-769,-1081],[-182,-363]],[[331320,425057],[-527,599],[-451,424],[-145,-51],[-400,-84],[-397,-83],[-266,-86],[-178,97],[-595,-5],[-73,102],[-161,225],[-196,379],[-21,49],[-396,922],[-62,465],[-2,20],[-162,154],[-137,-33],[-107,-25],[-247,66],[-336,282],[-143,121],[-449,414],[-97,-8],[-121,-10],[-193,257],[-341,630],[-160,246],[-58,264],[-14,62],[-73,480],[-137,104],[-177,-87],[-65,-82],[-127,-164],[-269,164],[-330,443],[-212,346],[-122,163],[-286,242],[-277,51],[-417,-355],[-62,26],[-280,119],[-218,52],[-320,77],[-267,149],[-155,87],[-37,20],[-25,101],[-142,571],[-91,444],[-273,279],[-218,339],[-259,515],[-129,171],[-235,144],[-99,84],[-118,98],[-16,219],[-8,107],[-81,430],[-19,106]],[[319193,436414],[-69,36],[-76,-101],[-40,-53]],[[318917,436598],[40,373],[-85,393],[-212,411],[-6,24],[-104,400],[-9,403],[-1,37]],[[318540,438639],[-39,240],[-8,54]],[[318408,439082],[-47,258],[-10,365],[61,438]],[[318412,440143],[133,505],[-28,781],[-190,1052]],[[318222,443240],[-20,467],[28,344],[116,335],[36,130],[193,693]],[[318575,445209],[40,628],[-30,289]],[[318585,447458],[-80,487],[-162,460],[-112,12],[-154,-127],[-185,-388],[-218,-69],[-193,241],[-606,-101],[-941,-240],[-377,-248],[-221,-107],[-268,-81],[-145,-151]],[[336475,507132],[-2505,27],[-707,-27],[-285,-553],[-111,-739],[-137,-290],[-99,-633],[-161,-502],[-13,-423],[-198,-922],[-12,-344],[210,-581],[25,-316],[-87,-185],[-360,-211],[-136,-527],[-347,-185],[-260,52],[-224,977],[-248,449],[-74,316],[-359,158],[-125,212],[-322,-27],[-62,-290],[-595,-528],[-211,-528],[-124,-1292],[49,-450],[-37,-711],[-124,-793],[-3,-1026]],[[328108,497596],[9,117],[-161,738],[-261,581],[-310,475],[-173,132],[-112,369],[-198,212],[-285,686],[-249,343],[87,448],[273,-131],[186,448],[-25,712],[-136,317],[-13,738],[-87,423],[-198,290],[-99,581],[-161,448],[-25,395],[149,449],[-112,475],[-12,422],[99,396],[13,686],[111,343],[12,317],[-148,791],[12,343],[248,423],[-186,923],[-13,581],[-272,1794],[-25,316],[-273,475],[-186,633],[211,791],[-50,555],[112,474],[-50,212],[-384,421],[-434,0],[-335,555],[-74,396],[-435,-80],[-195,276],[-47,66]],[[323906,518951],[52,688],[-40,423],[-542,130],[-356,0],[-587,109],[-280,174],[-61,121],[-5,134],[53,288],[2,13],[55,566],[-80,766],[-160,657],[-134,546],[-209,1180],[-27,823],[4,872],[17,567],[-151,446],[-813,1401],[-146,344],[-135,317],[-93,459],[-314,830],[-6,14],[20,64],[61,196],[58,-3],[126,-7],[128,-178],[30,-42],[144,-470],[104,-105],[141,0],[426,2],[324,1],[175,-80],[106,-158],[91,-196],[22,-90],[112,-457],[144,-268],[297,10],[466,10],[92,18],[169,31],[40,-39],[116,-113],[195,-126],[304,217],[104,73],[114,7],[122,-129],[269,-597],[172,-382],[252,-413],[213,-548],[310,-3],[256,470],[3,48],[31,716],[35,817],[77,458],[130,128],[154,16],[184,249],[110,179],[88,141],[172,108],[58,-28],[657,-318],[39,33],[160,132],[724,419],[517,374],[224,162],[40,131],[167,546],[78,45],[233,136],[224,457],[19,39],[55,-15],[141,-37],[298,-20],[184,86],[92,95],[56,128],[45,104],[168,663],[202,251],[226,236],[29,30],[174,312],[143,387],[9,46],[57,289],[-1,147],[-1,121],[-85,517],[-60,284],[-42,203],[-112,161],[-83,61],[12,5],[21,10],[218,98],[209,-169],[325,-27],[140,131],[205,-64],[260,347],[166,-113],[33,0],[77,0],[100,-263],[35,-133],[43,-165],[224,-333],[19,-28],[-2,-41],[-22,-509],[-45,-487],[-32,-560],[-13,-427],[-103,-436],[-155,-408],[-45,-165],[-22,-215],[104,-131],[184,-38],[183,-14],[47,-3],[156,-127],[202,-26],[243,-350],[118,-210],[10,-164],[-35,-179],[-42,-210],[-31,-359],[61,-229],[71,-164],[197,-811],[94,-282],[54,-62],[26,-30],[18,-155],[-68,-297],[-80,-376],[-183,-396],[-24,-313],[-147,-197],[-48,-65],[-293,-401],[60,-741],[5,-181],[6,-195],[-6,-292],[-116,-391],[-27,-156],[-175,-998],[-74,-576],[-65,-1329],[3,-446],[89,-567],[5,-34],[191,-1289],[7,-43],[10,-20],[102,-192],[261,-314],[32,-900],[-1,-70],[-21,-871],[-13,-366],[43,-156],[117,-75],[29,-40],[55,-73],[13,-278],[-8,-290],[194,-167],[170,-106],[156,-400],[283,-621],[112,-113],[56,-257],[217,-476],[21,-48],[57,-29],[307,-162],[366,-232],[6,-12]],[[336204,513504],[12,-279],[259,-6093]],[[295008,463745],[-2,24],[-19,194],[78,629],[51,401],[177,425],[7,12],[533,900],[191,243],[294,376],[236,63],[175,229],[111,351],[31,385],[-14,191],[-11,142],[-90,495],[-35,200],[-73,416],[-80,343],[72,412],[130,564],[26,85],[237,765],[245,913],[22,224],[5,43],[31,559],[113,1138],[63,617],[-33,240],[56,206],[153,171],[266,113],[105,44],[251,341],[113,186],[274,455],[323,680],[267,220],[483,630],[278,400],[110,125],[273,290],[490,101],[286,73],[122,31],[59,48],[172,142],[320,75],[17,4],[7,6],[221,207],[234,4],[18,1],[473,218],[134,271],[28,55],[138,388],[184,332],[217,86],[187,-45],[55,-13],[288,7],[298,87],[52,15],[112,-169],[58,-87],[74,-315],[216,-321],[153,17],[1,1],[152,69],[210,-276],[137,35],[89,154],[17,386],[27,114],[22,95],[103,1206],[171,1989],[154,1805],[171,1997],[177,2062],[178,2089],[147,1715],[126,1473],[77,903],[122,1185],[47,1040],[15,89],[34,210],[-31,252],[-21,75],[-84,285],[2,156],[11,209],[-11,182],[-110,196],[-87,118],[-67,169],[-31,235],[-55,234],[-24,248],[-80,195],[-24,248],[55,234],[19,189],[5,59],[-24,234],[-31,274],[-61,261],[-93,158],[-222,177],[-224,420],[-263,378],[-32,68],[-305,649],[-74,339],[-1,931],[15,1009],[21,1524],[11,776],[191,43],[167,21],[175,53],[117,41],[36,13],[11,9],[129,102],[105,139],[126,90],[97,-32],[98,123],[107,117],[105,95],[153,80],[142,-186],[50,-115],[30,-71],[88,-86],[5,-5],[87,22],[60,-16],[63,-149],[80,-11],[115,27],[108,32],[50,42],[7,96],[-27,165],[-38,154],[30,239],[3,288],[2,179],[3,188],[-24,55],[-61,148],[-85,383],[-95,309],[-148,207],[-138,80],[-115,-128],[-107,-21],[-80,117],[-130,5],[-140,37],[-149,44],[-266,-83],[-96,103],[-130,11],[-150,-112],[4,1474],[3,1389],[3,975],[9,-1],[126,-20],[117,122],[50,53],[193,21],[56,6],[17,16],[174,169],[107,14],[202,-90],[74,-67],[137,-123],[207,-27],[543,0],[586,1],[652,0],[653,2],[566,0],[175,-11],[-32,104],[-70,219],[-118,419],[46,331],[58,333],[68,173],[177,-184],[148,-566],[101,-351],[22,-75],[119,-210],[149,-24],[169,72],[168,174],[286,781],[80,186],[206,481],[21,32],[126,193],[19,24],[138,182],[116,78],[4,0],[155,-26],[135,-182],[87,-318],[319,-1108],[240,-834],[81,-520],[5,-1271],[-4,-296],[-9,-683],[-2,-147],[11,-48],[21,-97],[47,-43],[495,249],[31,16],[714,-1364],[527,-1008],[228,-322],[126,-91],[307,68],[365,131],[177,143],[195,315],[318,439],[259,241],[102,32],[102,-77],[219,-262],[120,-488],[-111,-568],[19,-351],[229,18],[184,587],[6,20],[123,443],[269,373],[262,533],[183,508],[214,298],[220,246],[104,116],[256,221],[240,-21],[178,239],[230,449],[162,361],[112,129],[215,-33],[10,-2],[82,15],[198,34],[275,439],[251,531],[48,324],[85,569],[87,792],[75,160],[91,127],[108,82],[59,14],[198,45],[259,242],[192,179],[310,428],[296,92],[87,115],[107,396],[1,9]],[[336475,507132],[50,-1820],[-38,-528],[25,-1055],[323,-476],[-25,-1134],[124,-422],[211,-423],[161,27],[359,-580],[137,-1109],[211,-421],[174,-54],[260,-633],[211,-369],[285,-290],[223,-448],[199,-132],[483,-844],[248,-212],[322,-396],[310,-237],[174,105],[75,-263],[223,-80],[223,-236],[223,-740],[509,-580],[223,-106],[-13,-738],[310,-265],[385,370],[37,-528],[233,-516],[28,-328],[-1017,-4697],[-4266,-19577],[-227,-423],[-173,-622],[-52,-699],[194,-917],[437,-1137]],[[338254,463599],[228,-721],[27,-441]],[[338509,462437],[-181,-451],[-61,-415],[0,-532]],[[337971,459825],[-64,-743],[68,-855]],[[337975,458227],[-71,-1333],[-119,-824],[-82,-636]],[[337703,455434],[-125,-992],[-210,-343],[-8507,-105]],[[336204,513504],[138,-316],[83,-147],[68,-120],[113,-15],[96,43],[128,187],[30,44],[127,198],[221,-12],[215,28],[44,5],[45,163],[24,210],[-14,145],[-39,392],[92,163],[80,35],[134,57],[43,286],[8,24],[41,133],[61,182],[74,27],[92,-105],[140,-65],[160,-91],[58,-125],[27,-58],[142,-15],[157,35],[64,115],[46,204],[35,439],[101,12],[202,98],[216,194],[289,28],[54,-1],[216,-3],[135,130],[126,282],[176,578],[68,220],[127,185],[138,138],[116,-25],[239,132],[196,191],[73,-48],[153,-409],[76,-91],[113,-28],[202,-114],[167,-94],[67,22],[128,43],[213,130],[204,49],[48,-30],[98,-60],[107,118],[118,88],[83,-59],[186,-49],[441,-227],[225,-100],[188,-83],[163,-72],[157,87],[94,180],[22,526],[17,373],[-129,328],[-162,373],[-66,208],[-82,256],[-178,131],[23,240],[115,247],[119,137],[69,167],[74,619],[50,109],[50,27],[60,-23],[117,-160],[195,-212],[259,-281],[199,74],[760,129],[115,285],[160,65],[65,67],[208,215],[108,20],[97,-68],[122,53],[179,265],[75,27],[29,-292],[116,-300],[133,-264],[7,-14],[68,-64],[76,29],[160,60],[123,-77],[21,-98]],[[348014,520139],[-56,-52],[3,-51],[47,-845],[-198,-793],[98,-290],[-111,-421],[87,-238],[-12,-422],[86,-739],[434,53],[223,-212],[372,80],[447,-608],[87,0],[247,-686],[13,-210],[199,105],[235,-369],[87,-317],[372,-78],[49,236],[224,-78],[25,-343],[260,26],[50,-739],[273,105],[87,-448],[-162,-185],[137,-1239],[421,-951],[372,-185],[50,-183],[-75,-1083],[38,-897],[235,-818],[99,-660],[-24,-475],[111,-421],[174,-1029],[235,53],[360,-713],[199,-555],[-13,-949],[74,-316],[224,-212],[49,-501],[-24,-845],[322,27],[87,-317],[-63,-184],[87,-687],[335,-448],[298,-26],[223,-158],[186,211],[269,-110]],[[355866,498949],[-93,-121],[-36,-825],[-129,-282],[-110,-183],[-580,216],[-900,-896],[-308,-222],[983,-47],[316,-476]],[[355009,496113],[692,316],[837,1137],[319,238],[650,771],[264,515],[482,617],[102,271],[270,287],[146,-366],[11,-232],[-221,-451],[57,-291],[147,-366],[53,-503],[19,-383],[90,-672],[298,-910],[10,-301],[-41,-396],[143,-327],[147,-194],[507,-979],[384,532],[1242,171],[273,-175],[373,350],[754,800],[-236,-1417],[-171,-1301],[-130,-524],[-128,-1416],[-128,-379],[-104,-431],[169,150],[144,205],[185,545],[138,947],[448,2076],[147,522],[107,155],[455,288],[188,486],[68,40]],[[364169,495518],[526,1496],[305,-6],[195,-465],[185,-275],[39,455],[184,136]],[[365742,497233],[-183,-54],[-24,23],[-106,334]],[[365429,497536],[-76,239],[-14,208],[193,559],[-95,409],[323,393]],[[365823,500207],[305,728],[182,172],[37,340],[128,141],[101,52],[199,-382],[215,451],[210,176],[95,-79],[117,-198],[123,-85],[100,36],[261,288],[200,-387],[25,-127]],[[368121,501333],[120,-25],[40,-28],[-3,20],[37,-8]],[[368990,501575],[12,-7],[90,-167],[256,-25],[524,-293]],[[369872,501083],[364,-428],[57,-77],[34,-121]],[[370763,499737],[274,-9],[13,-9],[281,-54],[100,17],[192,-316],[2,-60],[16,-8],[163,-805]],[[371873,498551],[15,13]],[[371888,498564],[-58,-86],[-50,-448],[100,-185],[-212,-818],[50,-528],[-50,-606],[-123,-265],[-199,-52],[37,-423],[236,-26],[13,-712],[-187,-1267],[-272,-660],[-100,80],[13,-871],[-74,-131],[24,-608],[-161,-210],[-62,-396],[-260,-290],[-186,-449],[260,-634],[-211,-395],[37,-423],[-86,-633],[-211,-579],[-224,-818],[-99,0],[-235,-397],[-62,-765],[-174,-264],[13,-158],[-112,-1451],[-620,-1399],[-62,80],[-62,-581],[-137,-660],[-210,-369],[-87,-502],[-261,-738],[-198,-343],[-409,53],[-1253,-2111],[-1327,-2269],[24,-100]],[[364661,474157],[1,-4],[0,-1],[345,-253],[240,-55]],[[365495,473901],[180,-153],[110,-366]],[[365785,473382],[117,-214],[121,-64],[108,-190]],[[365888,471552],[97,-547],[-25,-336]],[[365813,470547],[-39,-241],[68,-359],[-63,-266]],[[365580,468520],[-53,-288],[-168,25],[-157,-111]],[[365055,467898],[-117,-440],[-85,-633]],[[364429,466100],[-761,-815],[-362,-883]],[[363306,464402],[41,-963],[-124,-982]],[[362961,460599],[316,-609],[133,-681]],[[363361,458555],[-103,-854],[-155,-957]],[[363103,456744],[-267,-1164],[-344,-1243],[-306,-771]],[[362186,453566],[-264,-330],[-339,-751]],[[361583,452485],[-415,-1171],[-291,-1192]],[[360624,448300],[-166,-665]],[[360458,447635],[-2951,316],[-10541,1320],[-3807,581],[-74,0],[-521,528],[-261,-107],[-186,740],[-247,158],[-335,78],[-75,265],[-25,633],[-49,158],[-546,555],[-508,976],[-273,210],[-174,844],[-25,686],[-87,370],[112,1214],[-384,1081],[-323,2112],[-148,421],[-87,528],[-223,713],[-211,422]],[[357154,502462],[473,145],[260,-741],[-322,-2098],[-93,-12],[-431,-1108],[-479,-773],[-76,-75],[-466,-467],[-293,-112],[378,1479],[339,687],[1,399],[4,967],[367,1214],[338,495]],[[359349,503548],[256,1031],[223,298],[593,242],[1721,-667],[260,-26],[368,112],[143,161],[1771,-201],[217,-37],[685,-840],[-109,-424],[-99,-552],[-93,-768],[-72,-157],[-121,41],[75,-689],[-27,-275],[-60,-267],[-147,-556],[-224,-708],[-66,-148],[-171,-247],[-138,-313],[29,-296],[70,-297],[-82,-374],[-76,-156],[-338,-513],[-9,-8],[-146,-56],[-135,53],[-238,547],[-25,-428],[-64,-438],[-53,-155],[-144,-75],[-192,16],[-172,236],[-278,259],[-53,-702],[-173,-484],[-27,-24],[-1101,-6],[-44,52],[-155,28],[-75,-161],[-148,-107],[-534,-40],[-292,-265],[-178,76],[-263,533],[-41,355],[-157,718],[-140,855],[-100,776],[85,670],[169,-22],[201,-101],[43,48],[10,214],[-44,180],[-324,-29],[-205,399],[-35,614],[42,1279],[26,263],[143,366],[47,325],[-7,68],[198,797]],[[358567,505290],[37,91],[168,129],[213,56],[273,-103],[45,-282],[-6,-153],[-759,-1157],[-258,381],[-46,191],[10,47]],[[361936,505006],[-227,135],[-119,104],[141,369],[179,281],[306,282],[196,89],[231,-112]],[[362643,506154],[148,-72],[63,-269],[-24,-334],[-175,-336],[-541,-137],[-178,0]],[[361585,506179],[-494,-530],[-11,13],[-22,145]],[[360446,507166],[4,3],[305,-24],[692,462],[391,-216],[114,-308],[-160,-502],[-207,-402]],[[359624,507134],[29,141],[204,463],[70,580],[2,315],[12,58]],[[359941,508691],[205,39],[13,-668],[28,-710],[-91,-142]],[[360735,508304],[-163,-250],[-187,-124],[-57,186],[0,743],[85,407],[164,49],[415,-63]],[[358432,390492],[-92,-902],[10,-2587]],[[358350,387003],[-195,-718],[-268,-493],[-657,-799],[-381,-685]],[[356849,384308],[-164,-644],[-72,-829]],[[356411,382026],[-332,-788],[-152,-624],[26,-458],[-45,-412],[-176,-549]],[[355732,379195],[-51,-277],[-98,-142]],[[355583,378776],[-160,-102],[-70,-256],[22,-405]],[[355375,378013],[-160,-564],[-342,-722]],[[354873,376727],[-259,-692],[-177,-661],[-454,-816],[-1096,-1463],[-432,-1094]],[[352455,372001],[-434,-662]],[[351055,369867],[-159,-1019],[-261,-879],[-378,-501]],[[350257,367468],[-245,-964],[-152,-1494],[-207,-920],[-327,-404]],[[349326,363686],[-356,448],[-193,410],[-249,293],[-266,234],[-74,-56],[-55,-42],[-137,-136],[-266,-215],[-304,-371],[-156,-137],[-275,-137],[-313,-117],[-257,77],[-221,78],[-61,106],[-46,78],[-30,52],[-74,508],[0,164],[0,265],[-46,627],[-118,251],[-47,100],[-55,274],[-10,332],[19,371],[1,6],[45,268],[-28,333],[-73,234],[18,411],[-37,566],[-99,318],[-11,34],[-55,411],[0,360],[0,50],[-7,34],[-76,377],[-9,449],[12,67],[61,343],[28,411],[-68,242],[-15,52],[-156,175],[-119,469],[-12,395],[-6,212],[-129,332],[-84,166],[-54,107],[-156,0],[-239,157],[-211,-20],[-340,20],[-156,97],[-83,215],[-21,30],[-190,264],[-120,508],[-147,97],[-211,-155],[-74,-196],[-82,-274],[-147,-312],[-193,18],[-202,-175],[-193,-20],[-133,-20],[-124,-19],[-83,51],[-175,105],[-312,177],[-266,117],[-258,-117],[-174,98],[-230,57],[-257,40],[-202,313],[-221,175],[-119,-58],[-155,-195],[-1,-1],[-166,40],[-211,156],[-24,108],[-59,263],[19,235],[46,234],[82,333],[-46,352],[19,313],[37,274],[37,312],[-29,293],[0,5],[-8,307],[-19,294],[-28,312],[111,450],[92,372],[-56,313],[19,214],[72,344],[1,8],[92,430],[-9,802],[-83,469],[-48,68],[-41,58],[-23,143],[37,156],[6,29],[-13,53],[-34,138],[-18,195],[21,75],[26,96],[-66,337],[-48,36],[-83,63],[-46,97],[-46,371],[-37,431],[1,14],[17,318],[-64,293],[-92,175],[-91,313],[-18,45],[-75,190],[-34,312],[-2,21],[-60,420],[-1,9],[12,5],[171,75],[73,241],[24,60],[105,265],[78,40],[91,46],[202,121],[74,240],[-470,869],[-268,495],[-14,26],[165,705],[279,1187],[123,526],[147,626],[206,877],[53,163],[179,55],[-33,454],[-6,297],[-107,12],[-38,5],[161,1070],[239,1525],[181,1157],[11,38],[47,157],[130,54],[30,133],[-157,186],[-75,281],[-21,80],[-209,1033],[-254,1256]],[[339574,400991],[1,2],[74,-7],[261,-25],[87,-450],[298,-316],[62,-184],[145,110],[137,38]],[[341445,400994],[277,825],[257,454]],[[342250,403053],[124,408],[214,-20],[497,105],[148,-105],[298,211],[223,395],[409,185],[212,-158],[111,-317],[422,-263],[124,-238],[496,-238],[210,-660],[546,-474],[434,-607],[298,27],[484,185],[247,290],[87,263],[223,238],[484,27],[286,-397],[86,-554],[199,0],[235,211],[248,53],[173,237],[125,450],[248,316],[359,896],[211,317],[174,-25],[-198,-2270],[-298,-290],[-360,-1240],[38,-184],[297,-80],[397,-370],[335,80],[310,-106],[521,79],[446,-184],[223,53],[37,26]],[[352633,399325],[25,-476],[-37,-1161],[62,-368],[124,-185],[223,237],[347,-263],[-12,-422],[-161,-423],[-124,-606],[62,-265],[298,-158],[408,-79],[323,105],[434,-659],[198,26],[484,-501],[100,-290],[408,-264],[199,-343],[558,-475],[273,-53],[384,-184],[261,-501],[483,-185],[285,-501],[194,-839]],[[348014,520139],[33,-160],[2,-34],[13,-192],[99,-190],[127,-5],[67,-76],[115,-123],[99,-282],[83,-81],[145,-143],[109,-88],[279,-226],[162,-5],[20,0],[150,-87],[18,-10],[103,-95],[112,174],[1,1],[56,68],[341,417],[194,270],[39,60],[92,144],[98,196],[74,52],[48,-117],[43,-156],[1,-1],[141,-92],[333,-183],[152,-52],[215,155],[45,66],[138,199],[87,92],[137,-264],[78,-315],[14,-57],[62,-161],[138,37],[90,-18],[182,-37],[201,-119],[1,0],[124,11],[170,165],[2,5],[90,320],[242,300],[230,274],[132,367],[195,610],[65,261],[14,441],[274,1279],[104,234],[61,405],[111,469],[0,391],[80,378],[157,327],[116,205],[185,549],[130,518],[324,1151],[25,326],[128,195],[43,247],[137,305],[145,242],[61,358],[106,369],[112,133],[121,145],[85,128],[263,1020],[30,456],[238,17],[78,-110],[531,-1030],[62,-162],[360,-2247],[57,-891],[48,-1660],[117,-871],[10,-157]],[[358314,524174],[520,-3024],[9,-136],[74,-563],[124,-507],[169,-978],[15,-96],[7,-182],[-105,-269],[153,-18],[77,-87],[123,-482],[31,-213],[116,-422],[50,-138],[126,-496]],[[359971,516416],[179,66],[115,-51],[229,-48],[571,-513],[165,-254],[210,-1417],[-18,-230],[-34,-357]],[[361338,513086],[-164,-800],[-194,-262],[-67,-218],[-246,-421],[-235,-372]],[[360432,511013],[-57,-127],[-82,-140],[-27,-99],[-347,-762]],[[359919,509885],[-70,-262],[-24,-49],[-219,-850],[-117,-253]],[[358758,506895],[-112,-120],[-63,-17],[-158,-182],[-27,-66],[-25,-28]],[[357770,505479],[-12,-42],[-211,-133],[-46,-555],[-251,-1092],[-81,-283],[-214,-578],[-163,-234],[-411,-1261],[-52,-551],[3,-962],[-274,-588],[-192,-251]],[[360103,518540],[58,-76],[139,-958],[-20,-242],[-277,-270],[-159,103],[-147,704],[50,586],[201,194],[155,-41]],[[360458,447635],[-285,-1133],[-160,-842],[-21,-481]],[[359848,444409],[-267,-1056],[-134,-725],[-32,-1839],[-97,-956],[-174,-1081]],[[359246,437404],[16,-462],[-144,-574]],[[359118,436368],[155,-617],[22,-407],[-58,-401],[20,-720],[99,-1044]],[[359363,432300],[-87,-714],[14,-642],[115,-571],[133,-332],[226,-136]],[[359764,429905],[-226,-1017],[-80,-686],[-10,-701],[-189,-947],[-369,-1196],[-170,-1147],[25,-1117],[-44,-592]],[[358701,422502],[-114,-72],[-90,-553],[-102,-1551]],[[358395,420326],[-380,-2214],[-206,-819]],[[357809,417293],[-160,-165],[-111,10]],[[357538,417138],[-515,-245],[-328,-574],[-208,-709]],[[356300,414256],[-113,-191],[-44,-203],[27,-211]],[[355662,412313],[-502,-316],[-318,-373],[-144,-434],[-148,-290]],[[354398,410757],[-338,-509],[12,-343],[-372,-370],[-37,-421],[185,-397],[-181,-877]],[[352710,405864],[-25,-501],[-124,-588],[-223,-674]],[[352338,404101],[-123,-564],[-25,-621]],[[352190,402916],[268,-2635],[175,-956]],[[339574,400991],[-75,373],[-22,534],[-2,50],[-121,360],[-39,-23],[-163,-97],[-238,115],[-225,334],[-371,551],[-183,221],[-212,258],[-135,282],[-53,822],[-6,88],[-117,1002],[-32,754],[-20,488],[22,298],[57,162],[276,781],[-1,476],[29,415],[-15,328],[-82,6],[-134,-144],[-22,-12],[-181,-100],[-115,-9],[-1164,89],[-1325,102],[-1103,84],[-957,73],[-32,811],[-47,1174],[-7,187],[-38,965],[-61,1531],[-287,712],[-97,241],[-416,1035],[-147,266],[504,32],[356,24],[-70,2779],[-109,283],[-64,594],[-32,304],[-66,508],[-177,412],[-23,262],[-17,201],[5,52],[27,256],[97,193],[64,477],[-13,128],[-35,353],[-105,446],[-129,429],[-246,263],[-188,255],[-165,224],[-7,8]],[[352455,372001],[199,21],[264,390],[707,-184],[223,184],[261,-264],[211,80],[360,-106],[148,106],[124,-238],[149,238],[62,343],[211,132],[223,-158],[310,-370],[360,-53],[136,-263],[149,78],[260,-210],[534,210],[483,-527],[496,-317],[335,-159],[273,-738],[161,-26],[273,158],[546,-132],[173,185],[211,-238],[471,80],[422,158],[37,-291],[124,-132],[12,-290],[497,-421],[260,-898],[62,-897],[-112,-580],[137,-791],[148,-423],[-49,-713],[-87,-183],[533,-1294],[211,-343],[-12,-422],[174,-606],[136,-133],[-38,-475],[-198,-660],[37,-791],[224,-158],[347,27],[186,105],[546,26],[136,-185],[459,80],[347,-370],[-149,-396],[-62,-1451],[149,-158],[273,738],[409,-448],[99,132],[124,-1055],[261,-264],[3,-74]],[[366414,356587],[-265,-402]],[[366149,356185],[-8,6],[9,31],[-56,5],[-350,267]],[[365520,356666],[-57,-346],[-70,-104],[26,-167],[-6,-37]],[[365412,356003],[-764,-153],[-15,23],[4,-25],[-23,-5]],[[365236,354587],[219,-378],[-303,-978],[-335,-169],[-37,-182],[184,1],[101,-356],[-25,-301]],[[365040,352224],[-180,83],[-743,-25],[-75,-185],[-459,78],[-285,-211],[-236,-448],[-434,-370],[-99,-317],[-297,0],[-348,370],[-86,211],[-360,502],[-186,158],[-670,-238],[-347,0],[-150,-197],[-247,355],[-235,0],[-286,-263],[-248,-949],[-99,51],[-360,-343],[-123,212],[-360,53],[-484,-660],[-111,-449],[25,-448],[111,-633],[-124,-265],[-384,-290],[-223,581],[-1030,0],[-372,105],[-533,792],[-719,106],[-236,185],[-273,0],[-87,132],[-397,236],[-272,-158],[-223,80],[-360,-107],[-434,635],[-211,131],[-285,-290],[-162,0],[-408,185],[-18,-1]],[[350917,350618],[-4,194],[-210,837],[-57,195],[-155,537],[-114,1246],[-75,472],[-177,127],[-123,318],[-37,94],[-139,24],[-63,10],[-31,53],[-64,106],[-98,130],[-143,-39],[-95,-186],[-27,-54],[-25,-1],[-202,-9],[-143,-98],[-168,-215],[-160,99],[-101,188],[-160,2],[-57,1],[14,847],[202,661],[180,594]],[[348852,358836],[278,2005],[89,1313]],[[349219,362154],[-101,619],[-3,433],[97,248]],[[349258,363574],[70,109],[-2,3]],[[368605,411013],[-1537,-27],[-905,27],[-199,53],[50,421],[-124,713],[210,608],[-98,263],[161,1188],[1153,0],[955,-53],[24,-212],[298,-316],[0,-712],[-124,-739],[-24,-898],[160,-316]],[[359764,429905],[257,1332]],[[360021,431237],[269,752],[366,605],[75,-525],[-186,-555],[12,-501],[-210,-792],[12,-607],[87,-237],[521,-528],[223,-26],[161,-264],[632,-633],[459,-133],[385,-290],[62,686],[173,765],[447,1584],[334,475],[50,-555],[199,-210],[285,-528],[75,-316],[-13,-423],[99,-580],[12,-660],[-37,-844],[100,-185],[149,263],[86,951],[186,132],[298,-238],[310,53],[396,554],[174,-58],[-32,-463],[280,-86],[198,-317],[187,27],[223,-290],[484,-370],[61,212],[-173,1003],[223,210],[235,-765],[323,-27],[409,290],[558,608],[335,158],[397,0],[211,210],[297,661],[149,184],[435,264],[371,79],[187,211]],[[371570,430168],[408,-686],[38,-370],[-211,-289],[-87,-792],[12,-343],[261,-211],[-37,-580],[-248,-317],[-236,-1477],[25,-1267],[112,-765],[136,-449],[124,-633],[248,-422],[75,-264],[247,-317],[-111,-686],[0,-395],[136,-924],[-49,-343],[-261,-712]],[[372152,417926],[-149,-316],[-310,-80],[-297,158],[-50,370],[-198,448],[-360,343],[-186,-475],[75,-448],[-62,-264],[87,-738],[-249,-185],[-273,316],[-272,27],[-161,-212],[-112,-1055],[112,-79],[99,-501],[-224,-633],[13,-660],[173,-291],[100,-1477],[-87,-237],[-595,-317],[-137,79],[-285,-660],[-199,-26]],[[368605,411013],[-160,316],[24,898],[124,739],[0,712],[-298,316],[-24,212],[-955,53],[-1153,0],[-161,-1188],[98,-263],[-210,-608],[124,-713],[-50,-421],[199,-53],[905,-27],[1537,27]],[[368605,411013],[-98,-633],[36,-475],[-74,-448],[-223,-634],[-62,-500],[136,-450],[385,-528],[297,-1529],[25,-343],[-223,-291],[49,-290],[-272,-397],[-310,-764],[-87,-448],[-124,105],[-87,-738],[199,-423],[136,158],[335,-290],[49,-713],[-161,-448],[-74,-474],[25,-317],[186,-1082],[-110,-129]],[[368558,398932],[-354,-516],[-944,-1234],[-396,-390],[-247,64],[-581,557]],[[366036,397413],[-2019,85],[-429,-369],[-198,-98]],[[363201,396655],[-248,-687],[-222,-107],[-199,478],[-180,70]],[[362352,396409],[-163,-335],[-184,-197]],[[361222,395781],[-372,-147],[-425,-289]],[[359840,394243],[-115,-452],[25,-398]],[[359634,392999],[-127,-149],[-179,-37],[-198,-248],[-219,-460],[-144,-429],[-70,-393]],[[358697,391283],[-5,-274],[18,-83],[-46,-126]],[[358664,390800],[-119,-29],[-113,-279]],[[364661,474157],[254,147],[156,248],[141,401]],[[365212,474953],[181,234],[223,68],[268,-119]],[[366197,474833],[304,-132],[296,40]],[[367743,473567],[257,-305],[95,-323]],[[368095,472939],[113,-1115],[133,-1906]],[[368341,469918],[-23,-2061],[-181,-2215],[-185,-1368],[-190,-517],[-166,-310]],[[367455,463344],[-3,-221],[134,-341]],[[367586,462782],[159,-128],[183,82]],[[368069,462330],[-9,-553],[112,-501],[123,26],[187,-766],[119,-18],[67,-403],[359,-739],[199,-712],[173,-396],[87,26],[322,475],[348,212],[471,105],[236,-343],[62,-633],[-100,-607],[-12,-608],[-100,-263],[112,-448],[-433,0],[-373,-238],[-124,-290],[-123,-581],[-112,-949],[49,-502],[-446,-871],[-50,-343],[124,-185],[273,-25],[260,-581],[50,-818],[211,-606],[533,-528],[74,-343],[-185,-555],[-137,-78],[-49,-475],[446,-660],[124,-554],[-25,-316],[347,-977],[174,-106],[260,53],[285,-185],[149,-369],[248,-264]],[[372375,444838],[522,-79]],[[372897,444759],[-286,-818],[-496,-607],[-137,-79],[-595,-1028],[187,-740],[-38,-185],[-335,-316],[-260,-1241],[-186,-341],[-112,-477],[50,-368],[174,-211],[173,-502],[657,-263],[298,-343],[-62,-370],[-384,-369],[-87,-238],[74,-448],[248,53],[162,-185],[61,-370],[-371,-421],[-100,-292],[-210,-263],[-38,-211],[-25,-1266],[87,-475],[434,-475],[0,-581],[-210,-659],[0,-502]],[[358350,387003],[1138,1657],[265,180],[153,-56]],[[360098,388440],[2743,-709],[274,-51]],[[363170,387503],[-82,-335],[13,-442],[124,-574]],[[363225,386152],[108,-288],[94,-4]],[[363575,386071],[203,426],[125,-156]],[[363950,385605],[70,-425],[95,-113]],[[364115,385067],[88,350],[79,811]],[[364678,386753],[978,34],[307,267]],[[366171,387114],[191,-200],[162,-21]],[[367055,387533],[115,185],[192,21],[150,-83],[110,-187]],[[367622,387469],[171,25],[213,144],[161,-40],[89,-209]],[[368530,386909],[235,-334],[27,-179],[-87,-475],[-75,-818],[112,-316],[273,-290],[124,-633],[-286,-1029],[-24,-633],[211,-397],[62,-897],[186,-369],[173,-871],[-24,-343],[297,-26],[223,263],[360,-210],[86,132],[137,-317],[273,-185],[37,-396],[-186,-870],[-124,-53],[-62,-528],[-111,-238],[25,-553],[111,-475],[-111,-396],[161,-475],[-174,-423],[-99,-684],[161,-528],[261,-185],[11,-185],[249,-263],[161,-582],[-211,-396],[285,-395],[25,-554],[198,-237],[373,210],[24,-263],[348,105],[310,316],[136,-236],[186,52],[136,317],[0,422],[-161,158],[360,475],[118,-19],[130,45],[148,-211],[164,231],[171,-204],[385,238],[74,263],[521,554],[372,105],[248,265]],[[375463,373389],[174,-106],[335,-818],[37,-237],[272,-106],[894,158],[136,-633],[-223,-290],[-75,-423],[-235,-210],[-310,26],[-323,-159],[-384,-343],[-199,-316],[-24,-870],[-161,-396],[226,-885]],[[375603,367781],[-98,-33],[-168,55]],[[375337,367803],[-149,-165],[-54,-19],[-90,-140],[-1917,-2125],[-469,6],[-91,-48],[-17,1]],[[370869,363752],[-84,-121],[-315,-320],[-657,-745],[-559,-1129],[-256,-368]],[[367915,359516],[-16,-34],[-100,-135],[-664,-1016],[-126,-264],[-104,-13],[-208,-213],[82,-175],[142,-16],[-34,-347],[-473,-716]],[[371888,498564],[131,110]],[[372111,498811],[112,166],[76,-188],[263,-183],[538,-1109]],[[374768,497112],[72,-76],[88,-174],[295,-445],[195,-376],[186,-551]],[[375604,495490],[79,-149],[-68,-166],[138,33],[76,-144]],[[376099,493604],[-10,-459],[-26,-58],[-84,-325],[-39,-125],[-128,-75],[-135,-145],[154,-325],[106,-312],[232,844],[163,237],[212,118],[45,-91],[101,-495],[27,-567],[-297,-183],[-7,3]],[[376413,491646],[-2,-8],[-78,-48],[-1,-260],[-80,-309]],[[376221,490899],[-1,-3],[-3,-9],[-75,-289],[-61,-612],[-78,-507],[-3,-28],[-422,-2767]],[[376406,487923],[36,215],[120,267],[156,1218],[204,1201],[203,349],[28,28],[126,0],[205,-131],[12,-394],[-31,-227],[-182,-496],[-56,-113]],[[379461,491343],[-115,179],[2,20],[152,222],[417,-59],[404,-232],[1258,-1199],[105,-195],[658,-533],[299,-285]],[[382929,489241],[24,27],[380,-45],[162,165],[232,-178]],[[383727,489210],[-30,-257],[149,-500],[-74,-582],[-224,-448],[-223,-712],[-285,-185],[13,-237],[-323,-766],[-409,-105],[-248,-158],[-136,158],[-199,-713],[-149,-263],[-136,-501],[37,-528],[-198,-792],[-323,-686],[-111,-607],[-273,-580],[99,-898],[161,-78],[87,-555],[-137,-818],[-98,-131],[49,-423],[-62,-263],[136,-317],[137,-633],[62,-951],[74,-368],[-74,-898],[-224,-474],[-372,-1214],[-148,-159],[49,-528],[-74,-343],[99,-1688],[199,-395],[111,-370],[310,-396],[-49,-1082],[37,-263],[-162,-792],[-12,-317],[-173,-448],[-422,-211],[-186,158],[-285,-290],[-447,-238],[-273,528],[-322,316],[-385,-52],[-384,-316],[-236,-27],[-62,-369],[-86,131],[-199,-474],[-12,-212],[-248,-501],[-136,-607],[-397,-211],[-360,-606],[-372,-871],[-285,185],[-261,-475],[-322,-290],[-757,-370],[-483,-686],[-198,-1161],[-100,-1662],[-210,-607],[-13,-343],[-211,-712],[-50,-765],[-185,-819],[-298,-527],[-149,-819],[112,-500],[12,-634],[87,-343],[25,-896],[186,-265],[87,-527],[-112,-423],[-62,-1767],[0,-976],[-111,-158],[0,-343],[-149,-581],[49,-185],[-25,-607]],[[375463,373389],[285,264],[187,-54],[173,317],[186,80],[248,289],[421,80],[212,-53],[347,448],[545,396],[223,238],[695,0],[285,52],[335,317],[583,-132],[191,-223],[2178,2070],[-13,422],[-236,53],[13,238],[174,633],[12,475],[211,396],[111,1029],[236,950],[-124,236],[124,238],[273,-53],[99,132],[99,476],[174,316]],[[383710,383019],[335,-264],[86,-923],[-49,-396],[49,-395],[757,-528],[136,78],[348,-263],[545,105],[284,-368]],[[386201,380065],[-88,-538],[-198,-833]],[[385966,378210],[152,-1436],[27,-519],[-35,-466],[-340,-505],[-1278,-940],[-341,-391],[-110,-231],[-41,-50]],[[383346,371851],[1,-3],[25,-414],[124,-306],[-374,-927],[-129,22],[-1274,-1],[-392,-108],[-700,-7],[-117,105],[-180,237],[-45,252],[189,770]],[[379841,370870],[59,8],[75,-284],[42,-358],[-84,-311],[-404,-40],[-454,-286],[-93,-19],[-345,377],[-34,116],[-213,155],[-151,164]],[[378239,370392],[-43,-24],[-47,34],[-504,-202],[-116,-163],[-421,65]],[[375910,369486],[-21,-236],[-4,-8],[1,-21],[-67,-731]],[[375819,368490],[257,-12],[119,-224],[-137,-250],[-134,-112],[-321,-111]],[[378306,369409],[-320,-44],[-6,7],[140,191]],[[378446,369564],[470,1],[-407,-85],[-131,-60],[-72,-11]],[[383727,489210],[780,-599]],[[384507,488611],[214,-13],[57,-28],[448,-117],[139,119]],[[385365,488572],[32,-964],[-335,-1136],[-137,-289],[-62,-687],[186,-922],[74,-687],[199,-606],[149,-1372],[136,-475],[174,-316],[124,-871],[-187,-607],[-260,-661],[-25,-448],[50,-659],[124,-502],[-12,-606],[173,-555],[25,-343],[149,-606],[-25,-818],[124,-343],[211,-317],[87,-1082],[-12,-475],[86,-1319],[0,-633],[236,-1425],[24,-738],[75,-687],[137,-448],[37,-528],[260,-290],[372,-158],[174,-449],[-62,-553],[-199,-581],[-198,-1135],[136,-764],[-12,-397]],[[387393,462120],[-298,-53],[-124,-158],[0,-501],[199,-739],[-112,-739],[310,-421],[50,-423],[-38,-738],[-136,-555],[-434,-713],[-236,-711],[-149,78],[-98,-474],[-261,78],[-186,-633],[-211,-132],[-149,-501],[-433,-475]],[[385087,454310],[-87,-423],[-187,-474],[-87,-422],[-161,-211],[-148,53],[-347,-106],[0,-897],[-174,-238],[-149,-474],[-186,238],[-348,25],[-297,-500],[-446,-80],[-335,-606],[-162,-528],[-235,78],[-124,-474],[-372,264],[-273,-158],[-223,184],[-16,251],[-257,224],[-37,237],[-236,132],[-161,-263],[-533,26],[-103,464],[-96,196],[-247,-343],[-187,131],[-148,-158],[-100,-475],[-322,105],[-50,-421],[124,-396],[161,-1082],[125,-316],[-87,-871],[25,-501],[-137,-423],[-24,-369],[-112,-211],[-310,-1346],[-223,-131],[-348,-792],[-272,-238],[-261,159],[-297,79],[-336,-238],[-223,-343],[-74,-290],[-297,-291],[-87,-421],[-187,-132],[-223,105],[-310,-211],[-756,686],[-347,951],[-87,791],[-124,421],[-248,475],[-421,27]],[[372152,417926],[136,-686],[-272,-1557],[297,370],[112,343],[447,-105],[148,131],[162,475],[285,633],[248,-27],[397,502],[260,686],[347,132],[608,712],[124,475],[769,1003],[558,448],[111,159],[298,26],[149,-185],[892,-263],[157,-160],[-52,-160]],[[378164,419906],[-52,-533],[42,-207],[112,-210],[322,-239],[595,-316],[124,53],[174,475],[434,368],[769,-236],[174,-423],[719,-1135],[149,54],[409,-607],[471,-423],[236,0],[248,-448],[409,53],[384,369],[1228,-2269],[74,-1319],[484,-370],[359,265],[236,368],[149,-131],[174,79],[186,-343],[260,132],[260,-238],[112,-237],[161,132],[410,-290],[260,27],[186,-450],[100,27],[359,-607],[186,-26],[198,-660],[-210,-1187],[-323,-502],[-210,-633],[-13,-238],[-322,-131],[-62,-290],[-25,-766],[112,-527],[-150,-264],[-483,53],[-149,-370],[-137,-1187],[25,-765],[-111,-290],[-12,-476],[310,-158],[49,-818],[186,0],[87,-395],[273,-554],[210,-290],[62,-292],[-124,-606],[62,-343]],[[388310,399562],[-24,27],[-583,474],[-137,-211],[-161,159],[-372,-317],[-161,53],[-174,-158],[-335,0],[372,-713],[25,-264],[-198,-79],[-211,291],[-285,-423],[-124,-27],[-224,-711],[38,-211],[285,-423],[62,-290],[-75,-1081],[286,-343],[-12,-660],[-447,-133],[-285,133],[-112,-265],[198,-316],[162,106],[223,-554],[-74,-317],[297,-659],[50,-871],[-87,-1056],[-248,-105],[49,-343],[-359,-660],[-74,-1214],[-335,-528],[-162,-1371],[-111,-158],[-868,27],[-384,-951],[161,-343],[0,-633],[-149,-528],[111,-132],[-198,-660],[50,-105]],[[388310,399562],[62,-185],[1426,-1872],[14,-7]],[[389812,397498],[-32,-297],[-118,-689]],[[389662,396512],[-26,-641],[-24,-229],[-3,-434],[-23,-569]],[[389586,394639],[50,-880],[86,-1887],[-87,-1041],[-145,-696],[-170,-457],[-435,-549],[-390,-1338],[-73,-601],[-15,-42]],[[388407,387148],[-209,-1005],[-140,-269],[-42,-610],[-149,-715],[-79,-311],[-411,-936],[-324,-511],[-184,-188],[-173,-355],[-109,-739],[-350,-1221],[-36,-223]],[[385087,454310],[123,-131],[459,158],[149,-53],[12,-343],[270,-34],[65,-203],[248,-238],[0,-1056],[99,-343],[13,-343],[409,-395],[37,-739],[-149,-475],[161,-290],[337,71],[422,373]],[[387742,450269],[258,615],[130,875],[169,256]],[[388299,452015],[374,79],[202,178]],[[389141,452732],[59,332],[9,418],[138,262]],[[389615,453849],[141,247],[14,393]],[[390439,455220],[303,-39],[211,-440],[440,-441],[732,-504]],[[392125,453796],[360,-471],[104,-96],[135,0],[116,210],[92,175],[110,-23]],[[393100,453338],[5,-484],[137,-260],[269,-39]],[[393511,452555],[115,-194],[-36,-350],[68,-599],[172,-852]],[[393830,450560],[681,-972]],[[394511,449588],[-186,-554],[137,-238],[-100,-475],[186,-871],[173,-237],[0,-211],[336,-766],[-13,-1344],[-149,-687],[38,-739],[111,-475],[-87,-290],[-434,-449],[-112,0],[-272,265],[-223,-54],[-150,-633],[25,-422],[162,-500],[186,-292],[136,-817],[223,-422],[-74,-686],[112,-265],[322,-237],[149,-501],[384,-185],[75,212],[161,-107],[451,248]],[[396078,437856],[-160,-925],[-609,-2638],[-746,-2218],[-170,-678],[-360,-881],[-255,-620],[-450,-721],[-127,-5],[-143,61],[-6,106],[66,356]],[[392644,431215],[-102,-38],[-17,20],[-6,-29],[-40,-15]],[[392373,430704],[-42,-321],[-76,-124],[-177,-44],[189,-321],[28,-185],[6,-269],[-171,-660],[-6,-676],[-344,-743],[-200,-544],[-101,-682],[-61,-637],[151,174],[72,-134],[57,-198],[-35,-293],[-111,-553],[3,-275],[-98,-484]],[[391458,423451],[109,-166],[2,-167],[-36,-313],[110,-339],[117,579],[23,-58],[-141,-1865]],[[391492,419141],[181,-3308],[4,-179],[17,-206],[81,-1498]],[[391141,402015],[-446,-1923],[-175,-195],[-206,-415],[-456,-1549],[-46,-435]],[[391924,426604],[10,-428],[-95,-347],[-111,52],[-43,233],[-80,227],[43,178],[73,101],[203,-16]],[[392260,428583],[-2,67],[13,22],[-11,-89]],[[385365,488572],[46,40],[607,186],[439,48],[1004,395],[108,33]],[[388309,489110],[266,-59],[412,-157],[535,-734],[451,-416],[274,-410],[440,-424],[721,-874],[299,-427],[248,-498],[583,-899],[271,-175],[461,-657]],[[393270,483380],[30,-72],[139,-411],[109,-185],[570,-1371]],[[394118,481341],[54,-103],[136,-351],[248,-391],[515,-993]],[[395240,479178],[68,-100],[174,-411],[229,-181],[806,-1187]],[[396517,477299],[31,-29]],[[396548,477270],[-834,-613],[-149,-158],[-347,-606],[-533,-2375],[-373,-896],[-86,-423],[0,-449],[-137,-686],[-483,-1161],[-186,-105],[-125,185],[-223,-396],[-49,-316],[-186,-475],[-75,-792],[223,79]],[[392985,468083],[-148,-580],[-199,-1240],[87,-397],[-87,-474],[-210,-317],[-13,-659],[124,-159],[25,-764],[211,-370],[148,-80],[38,-343],[-136,-791],[-137,-185],[-13,-448],[-173,-502]],[[392502,460774],[-335,-263],[-124,-238],[-285,-844],[-87,158],[-211,-211],[-99,607],[-372,422],[-174,343],[-124,448],[-508,423],[-335,606],[-533,159],[-298,-79],[-310,-265],[-297,-78],[-249,158],[-768,0]],[[394511,449588],[105,-151],[1424,-1422],[637,-635],[491,-421]],[[397168,446959],[175,-335],[47,-413],[166,-414]],[[398058,445184],[143,20],[112,-230]],[[398769,444152],[27,-108]],[[398796,444044],[-236,-506]],[[398560,443538],[-30,-38],[-297,-281],[-368,-483],[-161,-301],[-83,-108]],[[397621,442327],[-109,-252],[-117,-219],[-145,-464],[-75,-211]],[[397055,440794],[-109,-356],[-73,-145],[-159,97],[4,-692],[-43,-142],[-329,-984],[-113,-164],[3,316],[65,239],[30,256],[-3,304],[-104,-221],[-220,-835],[74,-611]],[[393830,450560],[185,479],[173,475],[348,263],[421,976],[25,475],[161,211],[186,-686],[149,-26],[298,211],[136,-343],[223,-237],[583,-1161],[508,-396],[162,-290],[99,395],[198,158],[707,-183],[385,500],[260,53],[223,343],[75,317],[322,423],[13,289],[285,422],[124,-52],[247,185],[224,25],[223,-290],[310,317],[385,185],[223,-290],[248,-27],[413,-155]],[[402352,453126],[-9,-79],[-4,-21],[-397,-1385],[-176,-554],[-307,-792],[-456,-1114],[-348,-718],[-184,-98],[-168,190],[120,-505],[-105,-444],[-241,-691],[-401,-981],[-298,-560],[-84,-266],[-498,-1064]],[[396548,477270],[56,-54],[132,-443],[437,-102],[550,-528]],[[397723,476143],[125,-67],[75,-119],[436,-278],[547,76],[58,-1],[586,-53],[95,44],[36,0]],[[399681,475745],[396,181],[945,-350],[121,-55]],[[401143,475521],[232,-172],[65,-75],[211,-429],[121,-494]],[[401772,474351],[337,-1385],[14,-60],[260,-2069],[0,-2],[129,-1584],[119,-492],[205,-1408]],[[402836,467351],[-190,-166],[-583,159],[-137,-132],[-446,396],[-558,212],[-149,-107],[-570,-131],[-905,316],[-112,633],[-248,27],[-310,-448],[-62,-607],[198,-844],[-248,-80],[13,-580],[74,-291],[-198,-844],[-236,-26],[-149,-264],[-161,264],[74,633],[-136,343],[-422,105],[-124,238],[-148,-264],[-310,-185],[-174,-237],[-149,502],[-186,236],[-496,107],[25,764],[211,212],[99,738],[608,1637],[0,368],[-236,158],[-447,-421],[-148,78],[-459,-263],[-323,-290],[-99,-686],[-136,-290],[-446,-528],[-149,-80],[-212,-448],[-297,212],[-124,-107],[-422,528],[-248,185]],[[392502,460774],[149,-343],[149,-78],[12,-291],[173,-159],[211,185],[87,-78],[174,290],[142,-488],[7,-278],[124,-132],[86,238],[162,27],[49,210],[174,-290],[84,370],[226,-80],[223,501],[285,291],[236,527],[434,423],[322,765],[149,-27],[100,318],[260,158],[285,-449],[372,-317],[0,-633],[-509,-396],[-37,-422],[124,-686],[-161,-316],[-323,-1081],[360,236],[174,-105],[62,-1109],[186,-395],[273,-316],[359,343],[137,25],[434,819],[-87,422],[248,528],[335,78],[74,501],[236,80],[198,-80],[136,265],[137,-265],[124,265],[136,-265],[299,54],[98,-132],[125,626],[136,-72],[347,211],[87,-27],[347,343],[161,1188],[347,-27],[286,449],[570,-158],[235,-607],[339,-221]],[[403170,461187],[-6,-267],[17,-233],[-51,-342],[-15,-327],[111,-707],[-20,-543]],[[403206,458768],[-10,-260],[-115,-527],[-211,-1865],[-130,-760],[-336,-1814]],[[402404,453542],[-52,-416]],[[402836,467351],[10,-63]],[[402846,467288],[30,-211],[97,-1372],[138,-727],[11,-560],[117,-126],[79,-1561],[-31,-629],[-114,-818],[-3,-97]],[[365040,352224],[-8,-105],[-70,-333]],[[364683,350175],[18,-22],[19,-68],[96,-244],[-73,-1728]],[[364743,348113],[235,-1547],[40,-677],[70,-385],[39,-430],[-115,-402],[47,-463],[-2,-21]],[[364989,343694],[-3,-174],[-104,-584],[77,-1194],[-6,-386]],[[364953,341356],[25,-230],[-19,-664],[-310,-2222],[-197,-534],[-5,-527],[-136,-414],[-488,-571],[-90,-133],[-102,-117]],[[363631,335944],[-307,-489],[-189,-281],[-69,-132],[-167,-264]],[[362899,334778],[-223,-475],[-176,-337],[-113,-280],[-101,-216]],[[362286,333470],[-237,-625],[-141,-351]],[[361908,332494],[-284,315],[-149,317],[-235,132],[-348,-290],[125,-450],[-50,-210],[-323,422],[13,528],[260,606],[174,-52],[173,896],[-24,925],[297,579],[136,423],[274,159],[-25,395],[-80,111]],[[360719,337646],[-39,-124],[-217,31]],[[360463,337553],[-593,275],[-363,212]],[[359066,338928],[-638,1634],[-421,896]],[[358007,341458],[-203,157],[-267,385],[-333,609]],[[357204,342609],[-226,290],[-118,-28],[-145,126]],[[356715,342997],[-173,282],[-158,69]],[[356240,343207],[-333,15]],[[355797,343440],[-198,566],[-209,374]],[[355021,344573],[-101,-69],[-100,90],[-110,-35]],[[354710,344559],[-122,40],[-185,237],[-266,35],[-350,-172]],[[353260,345113],[-205,75],[-147,-13],[-115,92]],[[352693,345420],[-112,-25],[-91,-75]],[[352490,345320],[-85,83],[-140,-54]],[[352046,345267],[-115,388],[-119,101]],[[351812,345756],[-140,-10],[-163,-124]],[[351509,345622],[-92,-177],[-23,-230]],[[350782,345302],[-228,-43],[-142,50],[-25,-3],[-208,-26]],[[350179,345280],[55,10],[215,227],[221,844],[115,564],[-27,462],[-73,331],[24,485],[74,1321],[20,539],[34,111],[83,266],[-3,178]],[[361908,332494],[-91,-228],[-61,-196],[-173,-457]],[[361284,330546],[-24,-85],[-242,-783],[-54,-269],[-61,-218]],[[360499,327096],[-60,-311],[-160,-799],[-891,-2790],[-355,-1006],[-481,-1125],[-557,-1142],[-119,-225],[-822,-1257],[-938,-1170],[-339,-528],[-330,-739],[-16,56],[-33,496],[37,259],[-45,379],[-5,236],[393,75]],[[355778,317505],[21,17],[53,-58],[145,211],[1,3],[384,301]],[[356382,317979],[9,16],[51,19],[227,447],[603,1012],[305,301],[272,810],[27,248],[20,47]],[[357896,320879],[398,1177],[94,-20],[72,248],[-22,198],[333,987],[201,226],[224,645],[-16,342],[44,127]],[[358721,326596],[-462,-210],[-38,576],[-386,293],[-151,529],[-45,363],[-134,149],[8,-627],[37,-610],[114,-233],[-99,-85]],[[357502,325065],[-107,-634],[-60,85],[-29,-617],[-86,-517],[-162,-275],[-73,-383],[56,-409],[-8,-47]],[[357033,322268],[-323,-598],[-368,-519],[-584,-562],[-126,-265],[-31,-312],[-51,-66]],[[354995,315833],[108,-319],[-76,-137],[-235,-609],[-186,-684],[-463,-2575],[-400,-1552],[-307,-759],[-439,-802],[-1249,-2011],[-75,30],[-183,162],[-154,193],[-32,118],[-2,9],[-18,193],[12,444],[14,-23]],[[352392,312846],[-83,-135],[-174,274],[-228,163],[-137,99],[-352,460],[-312,593],[-144,616],[-40,202],[-92,463],[-127,525],[-41,240],[-124,101],[-195,267],[-123,250],[-179,142],[-153,76],[-167,82],[-334,274],[-415,650],[-299,724],[-148,477],[-55,116],[-103,220],[-856,555],[-389,662],[-132,-176],[-22,-30],[-228,204],[-225,319],[-68,245],[-95,251],[-90,287],[-21,105],[-36,172],[-232,483],[-299,524],[-127,148],[-67,-43],[-65,-201],[-41,-194],[-113,-128],[-5,-8],[-135,-231],[-143,-294],[-183,-194],[-218,-67],[-146,9],[-30,116],[-8,402],[42,705],[12,208],[-127,353],[-170,377],[-195,504],[-285,474],[-357,595],[-873,1540],[-299,456],[-10,15],[-13,2],[-277,35],[-266,-53],[-243,-203],[-185,-712],[-76,-110],[-95,3],[-376,13],[-179,44],[-289,71],[-90,248],[-67,186],[125,283]],[[340541,328302],[244,558],[12,133],[34,356],[211,441]],[[341042,329790],[376,389],[419,718]],[[342678,333212],[181,385],[74,75],[189,193],[230,563],[162,707],[34,149],[270,681]],[[343818,335965],[214,317],[126,188],[191,419],[12,100]],[[344711,337739],[-4,222],[41,174],[88,95],[94,-22]],[[344983,338196],[205,-159],[125,30]],[[345191,338736],[-41,76],[57,305],[397,490],[280,179]],[[345884,339786],[14,9],[93,153],[92,151]],[[346083,340099],[177,483],[285,338]],[[346940,341110],[105,182],[-14,230],[-1,4]],[[347163,341722],[182,94],[127,229],[9,159]],[[347697,342978],[144,108],[159,-74]],[[348150,343121],[140,292],[168,136]],[[348915,343659],[177,71],[135,179],[50,65],[153,547]],[[349430,344521],[135,211],[118,-123]],[[194446,795363],[-894,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-918,0]],[[183159,795363],[13,47],[21,80],[-20,138],[-208,332],[-86,311],[-73,126],[-459,252],[-64,127],[-23,117],[-110,132],[-149,349],[-238,358],[-63,156],[-6,185],[38,396],[-3,148],[-67,40],[-220,30],[-100,77],[-48,110],[-9,98],[142,232],[120,516],[15,393],[-131,812],[19,121],[74,181],[-2,203],[-44,244],[-135,404],[-202,1358],[-566,1099],[-153,189],[-120,46],[-101,1],[-170,-164],[-48,-21],[-45,53],[-123,187],[-108,238],[-15,45],[9,81],[26,104],[-36,138],[-66,135],[-32,55],[-37,-2],[-44,-9],[-29,-4],[-35,29],[-96,148],[-557,584],[-17,83],[144,236],[-23,160],[-63,154],[-486,639],[-407,187],[-159,163],[-44,125],[-60,395],[-19,73],[-34,41],[-224,173],[-115,182],[-206,152],[-79,149],[-86,590],[-187,293],[-93,274],[-131,177],[-122,243],[-182,213],[-185,637],[-112,190],[-121,55],[-112,-68],[-91,-104],[-48,-108],[-18,-182],[-43,-39],[-230,-8],[-72,129],[-273,888],[-111,239],[-466,713],[-209,644],[-77,18],[-103,-86],[-563,-16],[-453,390],[-103,146],[-95,235],[242,475],[8,181],[-72,67],[-348,210],[-330,330],[-74,-118],[-44,-228],[-44,-87],[-364,-169],[-83,12],[-60,135],[-11,188],[60,248],[-115,210],[-61,260],[-172,362],[86,301],[-30,203],[-77,196],[-153,250],[-43,303],[-135,254],[-69,59],[-288,39],[-70,85],[-104,368],[-28,320],[-148,189],[-97,45],[-20,332],[-83,188],[-308,344],[-217,142],[-65,-185],[-17,-384],[-65,26],[-599,388],[-132,192],[-253,654],[-98,53],[-437,64],[-154,-55],[-90,45],[-120,172],[-267,539],[-99,104],[-108,41],[-6,303],[-69,210],[8,59],[86,14],[400,2],[23,110],[-213,385],[-203,54],[-55,89],[-35,277],[-155,161],[-78,276],[0,2275],[0,2274],[0,2274],[0,2275],[1,2274],[0,2275],[0,2274],[0,2274],[0,2275],[0,2274],[1,2275],[0,2274],[0,2274],[0,2275],[0,2274],[0,2275]],[[166666,860422],[1737,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0],[1737,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0],[1736,0]],[[194444,860422],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[1,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2032],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2032],[1,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-2033],[0,-1994],[0,-44]],[[183159,795363],[-267,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-512,0]],[[177643,795363],[-673,0],[-1184,0],[-895,0]],[[174891,795363],[-290,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-1184,-1],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-222,0]],[[158982,795362],[24,54]],[[159006,795416],[-113,0],[-78,156],[-271,273],[-107,0],[-110,-82],[-69,-132],[-49,-215],[-13,0]],[[158085,795416],[-8,15],[-71,306],[23,167],[89,199],[-6,73],[-196,-57],[-88,50],[-40,108],[14,424],[-78,179],[30,37]],[[157754,796917],[114,140],[278,70],[333,10],[96,177],[94,448],[-237,-412],[-142,-42],[-298,104],[-85,624]],[[157907,798036],[-141,1042],[38,134],[30,172],[-22,41],[-169,-270],[-28,11]],[[157186,798660],[-371,-884],[-868,481],[-91,70],[-157,237],[-223,403],[-70,348],[83,293],[87,146],[92,0],[102,-110],[210,-478],[83,-296],[217,42],[351,378],[84,140],[-349,-144],[-151,10],[-154,157],[-68,132],[-75,1869],[127,118],[109,262],[-9,111],[-105,221],[-152,174],[-148,87],[-34,-26],[169,-353],[-56,-510],[-145,-267],[-39,-137],[-2,-458],[-36,-98],[-205,-129],[-230,-361],[-220,-69],[-454,-24],[-79,8],[-196,177],[-608,884],[-71,116],[-48,283]],[[152797,803987],[-20,132],[176,371],[206,590],[23,186],[-3,115],[20,55]],[[152909,805894],[13,-41],[-3,-20],[50,-273],[-32,-312],[-119,-436],[-204,-461],[-419,-222],[-740,123],[-86,60],[-52,159],[-38,679],[-45,-84],[-84,-362],[-67,-518],[-2,-3],[-381,-2],[-68,136],[-187,15],[-348,-138],[-164,55],[-195,6],[-395,151],[-119,10],[817,494]],[[150623,805488],[-348,-68],[-9,60],[-213,38],[-565,-138],[-18,144]],[[149473,806340],[-873,360],[54,291],[-91,569],[-127,-540],[-128,-199],[-525,216]],[[147337,806600],[12,-2],[-17,-2],[-149,-159],[-121,4],[-583,287],[-9,6],[-64,295]],[[145599,809371],[-126,394],[583,1053],[203,203],[184,69],[868,93],[100,21],[574,-12]],[[147985,811192],[-525,22],[497,103],[122,64],[-952,79],[-846,-55],[-224,-131],[-198,9]],[[145158,810604],[-263,433],[-36,166],[-51,603],[16,269],[93,344],[153,364],[58,47]],[[146349,814599],[452,375],[399,-122],[135,-214],[165,-391],[204,-373],[1,-1],[445,-958]],[[148128,813361],[-198,379],[-21,58],[-88,149],[-314,598],[-11,157],[-102,256],[-163,114],[-568,1083],[39,157],[533,711],[122,374],[0,176],[-42,199],[-116,342],[-31,-1],[36,-519],[-19,-205],[-60,-226],[-87,-171],[-113,-118],[-656,-926],[-747,-835],[-282,-96],[-218,-173],[-117,-226],[-69,-215],[-492,1523],[41,108],[225,322],[-8,33],[-248,-108],[-188,126]],[[144166,816407],[-222,-842],[-11,-20],[-158,-234],[-85,-31],[-6,241],[432,2176]],[[144116,817697],[-24,274],[50,234],[154,311],[-146,-22],[-385,-257],[-187,100]],[[143578,818337],[-421,224],[-170,1315],[-355,609],[-600,498],[-63,25],[-84,663]],[[142914,821466],[83,44],[118,-41],[307,269],[43,23],[171,-11],[440,-237],[148,-285],[421,-560],[-11,54],[175,-269]],[[144809,820453],[-193,364],[-33,176],[-289,434],[-69,130]],[[144225,821557],[-48,43],[-53,80],[-255,220],[-214,20],[-156,43]],[[143499,821963],[-35,-25],[-45,4],[-279,-115],[-117,34],[-246,174],[-209,287],[-209,628],[-48,292],[12,217],[49,196],[87,176],[172,128],[257,80],[78,77],[-330,359],[-149,-2],[-59,-59],[-45,70]],[[142383,824484],[-455,-553],[-61,-24],[-45,102],[-43,8],[-151,-260],[-118,-116],[-312,-596],[-160,-194]],[[140910,822010],[-18,-612],[-15,-30],[-138,-77],[-269,342]],[[140354,821205],[-12,-192],[-241,-482],[-342,484],[-375,469],[-136,445],[-36,355]],[[138211,823697],[-82,138],[113,336],[138,216],[854,-972]],[[138775,824158],[-38,1493],[31,93],[702,190],[458,381]],[[139928,826315],[-470,35],[-287,-58],[-516,-266],[-38,35],[-72,168]],[[138172,827097],[-290,-219],[-95,155],[-93,410],[102,346],[13,353],[29,262],[536,722]],[[138882,830931],[11,55],[139,357],[162,495],[304,684],[482,850],[137,75]],[[140117,833447],[-67,48],[59,103],[-141,-44],[-442,317],[-68,301],[-47,-160],[-10,-679],[-61,-582],[-110,-405],[-300,-823],[-176,-320],[-120,298],[92,515],[174,409],[30,560],[-164,669],[-99,537],[-36,408],[-5,372],[26,336],[56,298],[40,163],[84,302],[-6,22],[39,162]],[[138865,836254],[-42,-90]],[[138823,836164],[27,318],[-25,378],[-92,300],[-116,261],[-325,-157],[-551,235],[-178,638],[-477,196],[-253,447],[-4,9],[-33,14],[-491,209],[-424,155],[-324,263],[-379,307],[-153,133],[-225,195],[-287,249],[-212,-16],[-223,-17],[-257,-19],[-15,361],[-9,199],[-147,339],[55,299],[-268,153],[-203,116],[-190,109],[56,279],[58,292],[88,433],[-349,128],[-51,18],[-452,166],[163,390],[44,105],[87,209],[-193,460],[-391,771],[-201,369],[-99,181],[-392,859],[-331,724],[-13,30],[-282,616],[-37,68],[-197,357],[-331,761],[-430,858],[-409,675],[59,436],[-403,548],[-117,181],[-238,372],[-407,638],[-289,224],[-114,88],[-288,223],[-414,321],[-218,287],[-91,244],[-94,171],[-82,239],[-32,185],[-16,93],[-85,172],[-265,218],[-238,196],[-154,260],[-347,299],[-291,126],[-102,101],[-354,905],[57,323],[39,323],[-39,163],[-1,2],[-5,6],[-470,555],[-108,127],[-227,218],[-70,67],[-300,296],[-630,-382],[-644,-391],[-452,-143],[-216,-69],[-408,-129],[33,-67],[175,-358],[-86,-311],[-194,-144],[-50,3],[-279,15],[-1,-1009],[0,-49],[-312,-755],[-253,-5],[-398,-8],[-350,-260],[-484,-359],[-35,-26],[-421,-312],[-447,-502],[-229,72],[102,448],[-16,75],[-149,683],[-138,631],[-24,27],[-263,298],[-483,546],[-363,410],[-517,585],[-362,409],[-378,427],[-496,561],[-109,391],[-94,336],[-454,263],[-482,278],[-3,2],[-36,50]],[[113732,860425],[2669,-3],[2644,0],[2644,0],[2644,0],[2643,0],[2644,0],[2644,0],[2644,0],[2643,0],[2644,0],[2644,0],[2644,0],[2643,0],[2644,0],[2644,0],[2644,0]],[[156058,860422],[1326,0],[1326,0],[1326,0],[1326,0],[1326,0],[1326,0],[1326,0],[1326,0]],[[155896,802004],[40,-84],[-8,-180],[-20,-38],[-12,302]],[[145181,812925],[-61,-23],[81,192],[-364,-17],[42,568],[134,618],[339,366],[343,264],[311,346],[543,230],[101,-260],[-250,-478]],[[138286,831145],[-4,76],[129,453],[211,534]],[[138622,832208],[9,-165]],[[138304,831191],[-18,-46]],[[138643,832260],[144,365],[-7,270],[-56,406],[-125,489]],[[138599,833790],[-3,86]],[[138596,833876],[-12,417],[114,-575],[86,-392],[44,-264],[19,-237],[-8,-276],[-128,-348],[-61,-175],[-7,234]],[[138527,834138],[-28,184],[-17,411],[9,137]],[[138491,834870],[36,-732]],[[138056,830607],[71,123]],[[138127,830730],[-23,-61]],[[138104,830669],[-48,-62]],[[132088,822545],[644,527],[82,20],[21,64],[92,75]],[[133255,825121],[95,69],[148,12],[336,209],[331,375],[19,14],[53,-8],[-79,-449]],[[134158,825343],[-155,-877],[-173,-448],[-189,-754],[-92,-745],[-9,-668],[-708,-1466],[-463,-222],[-482,28],[-350,334],[-265,387],[137,306],[63,10],[190,-26],[154,-34],[106,-58],[12,-16]],[[132171,821044],[-29,39],[-7,32],[-61,59],[-100,135]],[[131842,821485],[-225,129],[-145,141],[-317,189],[-320,632],[-1,46],[-38,141],[-386,880],[-75,348],[-51,492],[-1,504],[70,600],[38,246],[30,61],[158,-7],[273,-101],[90,-10],[152,-75]],[[131094,825701],[443,-27],[229,-314],[610,221],[115,-42],[115,-133],[127,-284],[139,-432],[30,-473],[-55,-170],[-110,-187],[-689,-532],[-442,-232]],[[133017,824057],[-42,-52],[41,123],[10,237],[-8,63],[40,-152]],[[137687,822083],[-87,19],[-131,139],[-14,30],[178,503],[10,-3],[695,-593]],[[139533,820365],[3,-12],[-5,-25],[-212,-279],[-278,128]],[[139041,820177],[-32,15],[-541,895],[-113,97],[-272,455]],[[142371,817250],[-16,119],[16,277],[-11,-13],[120,577]],[[142534,818805],[-303,-1420],[-75,-187],[-27,-53],[-184,-28],[-342,485],[-172,393],[-28,410],[-75,144],[146,1668]],[[141758,820204],[543,-24],[87,-79],[299,-392],[223,-1021],[36,-533],[-193,-1144]],[[133402,818889],[114,-438],[-104,-117],[173,-72],[573,-1488]],[[135181,814906],[571,-270],[36,-207],[-276,-366],[-35,-4],[-538,482],[-248,497],[-141,460],[-171,260],[-517,578],[-263,418],[-536,920]],[[133063,817674],[-334,442],[-58,141],[-60,237],[5,160],[73,77],[444,107]],[[133032,819001],[-98,23],[0,16],[-715,340],[41,258]],[[133029,819906],[628,504],[48,-5],[147,-142]],[[134281,819676],[35,-126],[56,-326],[-58,24]],[[132747,819907],[-261,-28],[338,91],[-77,-63]],[[151726,802471],[11,-27],[169,-500],[224,-558],[43,-91],[370,-972]],[[154465,797449],[304,-121],[270,-148],[102,-87],[501,-511],[88,-169],[40,-53],[337,-677],[137,-568],[349,-751],[360,-1430],[67,119],[15,153],[188,68]],[[157260,791995],[-33,-29],[-132,52],[-108,-160],[-75,-171],[-41,-35]],[[156871,791652],[-205,-182],[-880,308],[-60,33],[-200,116]],[[155526,791927],[-647,375],[-369,237],[-870,485],[-254,170],[-950,827],[-48,216],[13,117],[558,792],[236,425],[91,325],[47,344],[-35,420],[-22,-32],[-50,-402],[-83,-358],[-100,-281],[-64,-99],[-115,-24],[-439,-15]],[[151764,795426],[-306,-393],[-40,-21],[-149,113],[-326,451],[-449,356],[-8,35],[36,70],[60,38],[144,-20]],[[150726,796055],[97,169],[4,2],[161,276],[-3,4],[112,196]],[[151097,796702],[-483,147],[-49,92],[-108,98],[-142,-99],[-89,28]],[[150203,797006],[-130,218],[100,424],[6,128],[-195,-163],[-27,260]],[[149933,798103],[-500,-169],[-110,86],[-72,-64],[-10,-86],[-200,-68],[-204,255],[-72,13],[-154,-303],[-53,-18],[-82,131],[-33,575],[27,399],[25,39],[275,171],[792,182],[19,39],[80,18]],[[149661,799303],[-61,20],[27,54],[-138,-16],[-488,166]],[[149001,799527],[-256,87],[-31,46],[-92,-2],[-476,809],[-44,117],[-171,168],[-165,60],[-3,2]],[[147763,800814],[-2,0],[-120,44],[-150,126],[-64,-56],[-60,-189],[-81,-118],[-199,-66],[-182,48],[-143,181],[-84,229],[-30,238],[17,22]],[[146874,801926],[-209,22],[-42,84],[-95,97],[-51,-51],[-5,-109],[-420,45],[-24,73],[-104,193],[-576,-1],[-123,-115],[-311,517],[-23,366],[-32,121],[-267,74],[-45,117],[151,557],[613,186]],[[145311,804102],[135,41],[170,-81],[255,-357],[-8,135],[-97,404],[-13,242],[175,274],[-168,80],[-610,62],[-472,108]],[[145081,804832],[56,-25],[3,-79],[51,-248],[-371,-218],[-275,-37],[-263,35],[-214,130],[-367,525],[-229,516],[11,281],[126,295],[121,149],[298,167],[135,60],[509,17],[569,-235],[917,-683],[86,-172]],[[150111,803652],[273,-61],[63,-27],[553,-117],[85,-114]],[[147536,800397],[180,155],[234,-162],[111,-208],[134,-371],[32,-222],[29,-262],[6,-219],[-43,-124],[-109,-26],[-175,71],[-197,169],[-345,452],[-36,102],[32,87],[97,73],[14,74],[33,27]],[[252919,841804],[-712,-923],[-717,-943],[-718,-943],[-718,-943],[-971,-1329],[-971,-1328],[-971,-1328],[-970,-1329],[-849,-1236],[-848,-1235],[-849,-1236],[-848,-1236],[-708,-1082],[-709,-1083],[-708,-1083],[-708,-1082],[-1065,-1368],[-1065,-1367],[-1065,-1368],[-1065,-1368],[-3,-2549],[-3,-2550],[-2,-2550],[-3,-2550],[-2,-2550],[-3,-2550],[-3,-2549],[14,-2558]],[[235679,797588],[-8,-984],[-10,-1207],[0,-42],[-655,8],[-1185,0],[-1184,0],[-1185,0],[-1184,0],[-340,0]],[[229928,795363],[-844,0],[-1185,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-1184,0]],[[218424,795363],[-2,38],[-101,2488],[-110,2521],[-111,2520],[-110,2521],[-111,2520],[-110,2521],[-111,2520],[-110,2520],[-111,2521],[-110,2520],[-111,2521],[-110,2520],[-111,2521],[-110,2520],[-111,2521],[-111,2520],[0,1546],[0,1545],[0,1545],[0,1546],[0,1545],[0,1545],[0,1546],[0,1545],[0,1545],[-1,1546],[0,1545],[0,1545],[0,1546],[0,1545],[0,1545],[0,1546]],[[216662,860422],[1250,0],[1249,0],[1250,0],[1250,0],[1250,0],[1250,0],[1249,0],[1250,0],[1250,0],[1250,0],[1250,0],[1249,0],[1250,0],[1250,0],[1250,0],[1262,3]],[[236671,860425],[-25,-254]],[[236628,857816],[102,-322],[1,-163],[-29,-1142],[-452,-1169]],[[236551,854612],[320,-496],[36,-182],[111,-197],[84,21],[445,-690]],[[237967,852884],[2,1],[122,-58],[18,-338],[-144,-1890],[1,-247],[167,477],[175,1468],[238,652],[135,99],[251,58],[568,55],[816,-166],[309,-21],[178,61],[498,-973]],[[241301,852062],[1,-8],[13,-123],[73,-441],[85,-275],[260,-1273]],[[242444,847320],[389,-1088],[251,-778],[112,-495],[42,-344],[-28,-351],[-44,-173],[-186,-517]],[[242785,843029],[2,0],[-49,-114],[-169,-292],[-175,-218],[-179,-144]],[[242215,842261],[12,-37],[203,68],[206,146],[391,379],[150,85],[425,54],[14,-137],[-205,-281],[45,-27],[296,227],[642,324],[2519,1048],[498,78],[350,-77]],[[250120,842702],[1862,-597],[208,-107],[697,-183],[32,-11]],[[322136,777748],[-57,-206],[-300,-77],[-158,-378],[-157,-301],[-116,-84]],[[321348,776702],[-248,-52],[-79,-44],[-215,103],[-74,176],[-268,473],[-26,-197],[135,-589],[-77,-156],[-383,-514]],[[320113,775902],[-315,-424],[-70,-15],[-443,-483],[-625,-421],[-675,-743],[-165,-139],[-833,-597],[-197,-2],[-429,556],[120,253],[111,344],[-106,-99],[-69,-149],[-258,-239]],[[316159,773744],[209,-462],[-101,-174],[-299,-228],[-233,-275],[-389,-130]],[[315346,772475],[-4,0],[-95,135],[-202,-131],[-810,10]],[[314235,772489],[-119,118],[-2,17],[-26,11],[-113,112]],[[313777,772674],[-10,-31],[-112,-29],[-113,151]],[[313542,772765],[-128,74],[-118,62],[-101,49],[-58,-83],[-56,-112],[-37,-45],[-31,-38],[-144,118],[-91,215],[-147,222],[-55,167],[4,29],[25,165],[65,187],[30,222],[-72,256],[-65,145],[-31,113],[-15,54],[14,130],[3,29],[91,77],[85,97],[29,208],[-52,222],[-48,28]],[[312639,775356],[-31,199]],[[311702,776249],[-38,-21]],[[311664,776228],[2,66],[1,18],[22,153],[46,132],[3,145],[-19,105],[-3,83],[13,104],[29,208],[-49,152],[-5,528],[-1,105],[-9,883],[-7,757],[-9,952],[-5,693],[-8,970],[-7,922],[-10,838],[-1,31],[-355,501],[-450,634]],[[308809,784785],[-12,0],[-151,-3],[-138,50],[-184,149],[-126,220],[-3,29],[-11,94]],[[308184,785324],[13,9],[1168,737],[368,352],[184,283],[100,207],[40,152],[2,608],[0,434],[1,433],[1,537],[348,0],[386,0],[0,409],[251,0],[305,0],[484,0],[351,0],[10,-176],[84,-173],[595,-501],[161,192],[332,40],[361,145],[293,-113],[75,379],[229,203],[370,140]],[[314696,789621],[-35,-23]],[[317726,787328],[364,313],[11,3],[16,20],[193,166]],[[319013,788433],[386,50],[-84,-213],[441,23],[206,-149],[84,-76],[145,-336],[-98,-168],[-238,-613],[-144,-1024],[-6,-20]],[[319705,785907],[-155,-372],[-320,-529],[-437,-517]],[[318552,784203],[12,-14],[-6,-8],[163,-188],[42,-26],[39,-43]],[[318848,783872],[53,10],[10,-6],[23,13],[644,134]],[[319578,784023],[132,-1087],[-4,-15],[21,-127],[93,-767]],[[320331,780318],[100,-334],[-9,-207],[103,-107],[195,-650]],[[321520,778880],[279,-49],[20,-18],[635,-159],[2,-2],[120,-115],[113,-230],[-400,-326],[-31,2]],[[322213,777986],[-5,-70],[-143,-117],[71,-51]],[[341388,810047],[-2,1377],[0,1717],[-1130,-1],[-1129,0],[-1130,0],[-1129,0],[-1130,0],[-1129,0],[-1129,0],[-1130,0],[-1129,0],[-1130,0],[-1129,-1],[-1130,0],[-1129,0],[-1129,0],[-1130,0],[-1129,0],[-418,57],[-73,59],[-25,140],[19,39],[226,-14],[110,69],[-10,202],[-44,259],[-227,943],[-329,280],[-143,212],[-20,220],[-23,63],[-307,171],[-13,49],[19,113],[116,239],[173,237],[158,140],[244,130],[800,222],[277,124],[37,112],[-391,504],[-37,135],[-9,171],[51,673],[-17,145],[-143,417],[-182,390],[-141,50],[-213,-29],[-294,-162],[-35,-67],[-155,-1008],[-96,-99],[-365,-142],[-109,-230],[-24,-1119],[10,-425],[223,-1038],[-76,-1134],[-80,-228],[-278,-287],[-31,-96],[-141,-908],[-36,-518],[23,-180],[102,-251],[-3,-238],[-600,-708],[-254,-51],[-276,710],[-14,147],[27,102],[149,165],[34,206],[-87,137],[-296,336],[-465,884],[-289,346],[-281,243],[-364,181],[-361,105],[-150,-1],[-61,-39],[-215,-605],[-104,-121],[-117,-2],[-165,121],[-250,61],[-70,-237],[-59,-67],[-155,11],[-267,156],[-158,169],[-170,592],[-143,120],[-364,420],[-46,-37],[-85,-626],[-52,-200],[-93,57],[-79,114],[-89,268],[-64,387],[-3,276],[172,334],[20,119],[-88,1436],[26,163],[140,313],[26,383],[43,200],[86,124],[28,212],[-77,218],[-172,344],[-106,111],[-111,46],[-61,-80],[-86,-275],[-262,-159],[-44,-126],[-111,-954],[-48,-130],[-351,-239],[-114,71],[-116,-28],[-148,27],[-218,131],[-107,204],[-5,459],[45,517],[71,357],[160,547],[14,650],[76,862],[-18,155],[-100,171],[-126,54],[-140,143],[-145,505],[-102,238],[-811,344],[-46,71],[-9,129],[59,563],[-43,390],[-165,254],[-630,1148],[-12,160],[84,232],[140,245],[471,560],[9,99],[-20,170],[-185,651],[-77,354],[-29,324],[52,273],[64,75],[116,43],[617,-327],[80,7],[138,397],[238,183],[10,215],[-146,172],[-15,101],[-237,748],[-228,541],[-121,393],[-60,310],[30,133],[51,77],[193,16],[102,-64],[375,-746],[833,-925],[396,-195],[205,299],[-17,285],[-149,600],[49,294],[-152,775],[79,375],[-17,122],[-200,476],[-7,103],[71,101],[113,-56],[321,-372],[1050,-1463],[231,-240],[205,-154],[554,-204],[43,-53],[198,-551],[153,-213],[183,-142],[1539,-152],[851,87],[1318,-45],[1196,-545],[442,-130],[145,18],[114,173],[245,779],[217,837],[43,260],[-11,150],[-197,585],[47,320],[65,161],[226,250],[744,577],[138,191],[-110,382],[-22,213],[23,258],[-9,174],[-417,168],[-164,134],[-144,185],[-303,648],[-489,918],[-22,132],[28,237],[103,144],[208,168],[77,96],[-55,196],[-716,223],[-138,148],[-229,37],[-100,17],[35,278],[257,401],[-38,98],[-474,273],[-88,80],[-18,63],[8,207],[-48,356],[232,207],[271,55],[82,215],[-82,305],[-436,969],[-10,97],[41,181],[196,290],[74,198],[148,254],[131,153],[74,790],[113,355],[122,276],[95,578],[-6,78],[-93,226],[-18,234],[160,456],[-54,694],[9,235],[41,165],[358,522],[46,137],[-8,181],[-46,18],[-272,-179],[-216,60],[-135,44],[-83,105],[-138,308],[-111,109],[-68,8],[-165,-105],[-93,161],[-152,372],[-259,840],[-445,480],[-37,134],[16,135],[64,148],[760,1122],[209,234],[485,360],[30,135],[-10,134],[-115,295],[-435,-61],[-66,59],[-65,263],[3,129],[39,121],[110,146],[197,106],[1131,280],[131,70],[26,59],[-20,101],[-87,167],[-157,183],[-206,141],[-170,48],[-732,-300],[-458,-239],[-101,-11],[-121,101],[-163,474],[-899,269],[-530,106],[-111,117],[-7,204],[50,214],[87,120],[87,50],[1047,-297],[98,20],[94,107],[-22,141],[-304,279],[-100,149],[-77,294],[-39,354],[2,768],[43,253],[215,342],[131,110],[-18,234],[-166,79],[-749,-365],[-169,130],[-118,307],[75,1627],[81,287],[267,245],[11,94],[-9,67],[-49,60],[-421,253],[-95,136],[-53,158],[19,84],[273,83],[199,161],[169,113],[76,184],[-61,119],[-403,205],[-159,249],[0,74],[86,99],[560,228]],[[320516,862224],[319,-223],[125,-171],[-17,-77]],[[320928,861692],[3,-453],[-175,-265],[-515,-339],[-154,-148],[100,-86],[482,271],[265,80],[5,-770]],[[322468,858141],[164,-189],[31,-52],[253,-365],[-278,-383],[-335,-229],[70,-171],[458,-183],[62,-181],[-49,-245],[67,1],[318,379],[15,-3],[86,-61]],[[323330,856459],[251,-178],[265,-627],[-252,-468],[-387,-214],[-308,-92],[-428,13],[-169,-70],[84,-156],[409,-2],[627,118],[203,84],[379,-207]],[[324004,854660],[205,-112],[14,-24],[176,-445],[-16,-100],[-167,-258],[269,-57],[375,121],[116,-134],[229,-534],[102,-385],[-182,-429],[-410,-483],[-259,-124],[-457,-190]],[[323907,851432],[-86,-390],[-38,-90],[-275,-407],[176,4],[292,388],[686,237],[-29,-151],[156,23],[662,382],[86,23],[563,41],[28,-96],[-224,-915],[-382,-702],[-228,-141],[-318,-130]],[[324976,849508],[-116,-140],[-35,-22],[-247,-254],[-305,-410],[115,-74],[665,538],[454,213],[241,65],[455,42]],[[327755,847887],[76,-549],[-39,-106],[176,-596],[-101,-335],[-99,-90],[-1213,-654]],[[326555,845557],[35,-19],[-189,38],[113,-161],[162,-81],[259,-45],[79,22],[516,-277]],[[327665,844217],[256,-170],[11,-14],[232,-181],[121,-46],[236,-157]],[[328625,841027],[-135,-279],[-886,158],[-844,402],[-43,122],[239,267],[-212,20],[-245,-105],[-103,-99],[258,-387],[-258,103]],[[326396,841229],[1242,-751],[163,-212],[223,-22],[7,-5]],[[328434,838849],[368,-285],[-211,-83],[-6,-118],[-261,-58]],[[329109,837993],[285,91],[33,-7],[64,-119]],[[329491,837958],[86,-162],[6,-45],[-14,-142]],[[329569,837609],[-64,-632],[-197,-70],[-1,-158],[167,-79],[-11,-105]],[[332252,831805],[95,157],[39,49],[357,251],[335,58],[-109,-313]],[[333111,831923],[607,685],[230,69],[89,-94]],[[334709,831889],[133,-91],[-81,-164],[-556,-868],[-108,-113]],[[338144,829626],[77,109],[49,22],[17,72],[150,214]],[[338437,830043],[123,83],[166,42],[257,-36],[12,-14],[86,-569],[-212,-114]],[[338869,829435],[476,-205],[25,-28],[283,-266],[273,-138],[399,-59],[218,-292],[0,-121],[-225,-313],[-216,-456],[-121,-101],[-384,-221],[-400,-11],[-729,-199],[-28,-174],[-269,-87]],[[338171,826764],[-13,-177],[-267,-135],[-211,-149],[-18,-40],[-516,-330]],[[337031,825536],[179,-166],[-80,-123],[-240,-60],[-337,30],[-221,-67],[-161,-135],[-95,-201],[-73,-75],[-452,-204],[-819,-561],[-434,-17],[-269,65],[-204,-46],[-140,-158],[-391,-273],[-118,-166],[-69,-192],[-53,-394],[-47,-143],[-77,-83],[-328,83],[-367,255],[72,-271],[581,-457],[166,-255],[-158,-219],[-369,-345],[-43,-185],[151,-98],[-59,-157],[-203,-166],[22,-68],[23,-67],[503,239],[448,510],[293,515],[146,145],[578,191],[341,224],[489,408],[535,592],[583,776],[743,607],[524,253],[98,16]],[[338615,825749],[-660,-16],[-69,134],[13,103],[129,176],[235,113],[136,38],[1559,-213],[508,-154],[46,-37]],[[340512,825893],[13,-10],[203,-474],[113,-291]],[[340841,825118],[411,-1062],[1,-2],[38,-330],[-61,-207],[-241,-244],[-682,-487],[-96,-128],[-9,-68],[297,-99],[95,-134],[151,-540],[127,146],[49,-82]],[[341277,822235],[136,462],[184,270],[402,149]],[[344654,821397],[172,-464],[-2,-43],[24,-157],[105,-236],[52,-200],[-28,-457],[-69,-235],[-281,-261]],[[344756,818852],[82,-200],[79,-326],[-66,-275],[-321,-228]],[[344060,816955],[-218,-426],[-210,-4],[-90,-173],[268,-50],[103,2],[1034,-214],[201,-151],[113,-274],[-29,-217],[-67,-65],[-91,-4]],[[345074,815379],[-433,-19],[-229,105],[19,-142],[475,-354],[140,-181],[193,-170],[22,-24]],[[345248,814557],[-419,-1244],[-434,-597],[-736,-781],[-739,-686],[-1005,-1118],[-527,-84]],[[344547,808138],[-43,238],[49,-21],[227,91],[24,5],[81,-15],[73,-82],[54,-148],[28,-205],[2,-262],[-42,-318],[-140,-523],[-208,-466],[-102,-167],[-323,-336],[-79,-128],[-41,-150],[-40,-490],[-167,-391],[-518,-992],[-200,-218],[-1,-175],[-68,-392],[-449,-1004]],[[342664,801989],[-30,-83],[-118,-239],[-106,-308],[-38,-191],[-285,-801]],[[341892,799816],[271,-763],[-3,-24],[182,226],[406,804],[305,484],[203,164],[143,215],[50,157],[620,714],[36,-108],[-15,-282],[-102,-342],[8,-101],[240,251],[411,208],[49,-9],[132,-121]],[[344828,801289],[87,-20],[183,-189],[250,36],[76,34],[13,-3]],[[345437,801147],[-363,-970],[-741,-609],[-278,-505],[52,15],[194,217],[203,117],[213,16],[61,-44],[-151,-404]],[[344627,798980],[-94,-442],[-331,-463],[128,29],[287,158],[689,-511]],[[345468,797874],[315,239],[14,4],[157,-256]],[[346059,797691],[176,39],[0,-76],[32,-47],[149,113],[12,52],[237,52],[0,-6],[-68,-436],[-95,-401],[-232,-584],[30,-251],[-59,-273],[51,-9],[229,254],[14,105],[-18,242],[26,119],[190,264],[31,31],[398,308],[31,-52],[-15,-193],[92,46],[124,177],[231,-24]],[[347673,796996],[443,900],[76,135],[199,273],[214,216],[91,15],[-31,-358],[42,-406],[5,-348],[43,-72],[29,67],[9,-144]],[[349279,797809],[82,90],[756,116],[120,-42],[531,-466]],[[350768,797507],[321,-282],[106,-260],[27,-429],[-19,-150],[-207,-410],[-83,-114],[-241,-249],[-20,-34],[-209,-22]],[[350156,794714],[-1,-60],[-603,-505],[171,-17],[414,130],[17,1],[-1,-364],[-46,-39],[-23,-82],[10,-108],[217,-127],[-32,-356]],[[350206,792730],[-194,-607],[-201,-154],[-129,-149],[28,-31],[291,178],[19,-74]],[[350020,791893],[307,228],[82,25],[148,3],[86,140],[192,-137]],[[350924,791779],[300,575],[20,-13],[391,475],[139,62],[238,-55],[154,86],[258,323],[188,152],[7,-13]],[[352619,793371],[84,-162],[17,-337],[-46,-330],[-64,-210],[-210,-463],[-88,-112],[-80,-71],[-80,-41],[-211,24],[-92,-72],[-198,-364],[-140,-148],[-986,-422]],[[350196,789949],[492,-194],[-17,-11],[-309,-134],[211,-59],[331,80],[-32,-535],[-25,-68],[-453,-705],[-23,12]],[[350371,788335],[9,-76],[-2,-24],[13,-64],[44,-344]],[[351467,788114],[29,155],[496,1212],[548,417],[391,397],[44,-100]],[[353050,790027],[-123,-320],[-24,-40],[-121,-316],[-38,-117],[-384,-998]],[[352972,786779],[71,294],[87,171],[156,641],[96,246],[64,-2],[151,-392],[5,-58],[86,-421],[51,-428],[-41,-470],[-28,-171],[-424,-1175]],[[353246,785014],[-29,-231],[-196,-590],[67,-339],[5,-53],[-89,-701]],[[352499,782099],[-275,-548],[-40,26],[-115,220],[-101,114],[-88,8],[-163,-41],[-429,-467],[-88,-25],[-61,63],[-74,245],[59,1230],[39,407],[-6,19],[111,907]],[[350483,783491],[-332,-603],[-178,-253],[-185,-116],[-73,29],[-84,81],[-114,247],[1,218],[50,297],[174,702],[340,1039],[122,322],[97,213]],[[348631,786284],[-140,-200],[2,12],[220,656],[-30,65],[-279,-528],[-213,-293],[-9,-3],[-43,63]],[[347047,784826],[-26,-117],[-50,-98],[-11,-185],[-117,-539]],[[346843,783887],[-46,-103],[-283,-545],[-160,-201],[-15,-13],[-232,-37],[-216,107],[-143,-20],[-338,-192],[-378,-84],[-157,39],[-99,79],[-193,239],[-23,170],[10,99],[98,258],[225,324],[185,121],[449,162],[330,243],[250,359],[112,220],[64,151],[86,77]],[[348057,787571],[-250,-125],[13,66],[-284,-200],[-26,-13],[-138,-46],[-247,77],[-110,140],[-339,-45],[-252,35],[-97,47]],[[346327,787507],[-20,-31],[-103,14],[-68,-107],[-24,-219],[-47,-75]],[[344653,786947],[8,36],[152,101],[36,661],[105,423]],[[345054,789151],[-210,-751],[-5,25],[-168,-161],[-283,-167],[-193,48],[-88,103],[-81,-87],[-197,-610],[-115,-76],[-175,-23],[-371,-222],[-730,-146],[-104,-117],[-136,-34],[-400,46],[-660,152],[-419,134]],[[338812,787646],[-837,112],[5,80],[-27,65],[-142,-157],[-943,-556],[-221,-65],[-884,-153],[-241,159],[-22,15],[-111,186],[-169,607],[-116,761],[1,137],[59,264],[149,285],[531,629],[376,420],[105,150],[1358,1606]],[[337683,792191],[35,121],[238,217],[15,50],[-309,-37],[-329,66]],[[337333,792608],[-73,14],[-55,21],[-172,24],[-187,38]],[[336846,792705],[-167,-53],[-412,-75],[-620,0],[-2,217],[207,292],[439,467]],[[336373,793640],[70,-27],[-19,-32],[-53,-245],[81,-162],[94,-103],[352,-43],[81,142],[52,307],[851,2462]],[[338559,795448],[26,75],[166,-193],[122,-37],[42,39],[-139,129],[-115,207],[-12,48],[44,130]],[[338783,796244],[-53,126],[22,97],[162,175],[30,119],[-325,2],[-21,14],[97,720]],[[338695,797497],[151,1112],[150,-64],[292,-341],[180,96],[-21,109],[-274,543],[-87,402],[6,152],[150,518],[445,1437],[276,975],[784,2352]],[[340747,804788],[34,103],[226,1],[160,56],[-234,204],[-17,28],[835,1650]],[[341926,807394],[126,436],[100,137],[55,111],[153,771],[135,245],[76,119],[154,153],[280,218],[863,528],[505,471],[343,-26],[36,-119],[-31,-254]],[[344721,810184],[285,-41],[298,-133],[32,86],[57,-8]],[[345393,810088],[-37,65],[34,91],[-114,286],[95,115],[369,95],[111,-42],[96,-129],[-39,-288],[-165,-475],[-142,-285],[-131,-93],[-278,-84],[-399,-63],[-432,174]],[[322136,777748],[57,-42],[-2,-36]],[[322663,777274],[101,-85],[283,-355],[107,34],[689,-327]],[[323960,776485],[90,2],[72,-115],[64,-165],[211,36],[303,144],[547,-35],[545,-198],[35,-44],[-45,-293],[-88,-223],[457,74],[57,-47],[189,-242]],[[326581,775557],[429,414],[163,112],[285,317],[599,-478]],[[328878,775615],[753,-601],[155,-437],[-14,-207],[-262,-180],[-235,-260],[803,-87],[111,-485]],[[325800,770581],[-14,-18],[-142,-70],[-684,-388],[-660,90]],[[324300,770195],[-718,-505],[-94,34],[-166,167],[127,-429],[37,-395],[-63,-174],[-117,-203],[-421,38],[-165,143],[-196,211],[-86,323],[-30,183]],[[322408,769588],[-82,-42],[-103,119],[-79,-212],[-369,-188],[-17,55],[-331,-215],[-48,-206],[-30,-81]],[[321282,767844],[-102,-202],[-9,5],[-26,-74],[-387,-761],[-143,-119],[-314,-714],[-373,-544],[-101,-363],[-624,-831],[-237,24],[-174,-27],[-161,-212],[-85,0]],[[318546,764026],[-151,-761],[-23,19],[-118,-23],[-36,-128],[-185,-62],[-157,142],[-240,-101],[-106,292]],[[317059,764701],[-161,-21],[-172,79],[-32,-106],[-297,-39],[-80,139],[-185,1571],[-1,183],[99,705],[160,813],[643,1190],[-205,39],[-568,-825],[58,200],[97,208],[140,247],[36,54]],[[316591,769138],[48,71],[258,279],[387,184],[266,28],[184,174],[266,309],[49,164],[-236,-188],[-392,-186],[92,222],[1323,1389],[778,791],[353,258]],[[319967,772633],[540,394],[468,249],[51,129],[91,67]],[[321152,772675],[73,20],[13,-115],[331,-141],[276,-540],[-131,733],[186,310],[652,445],[369,213],[195,15],[521,10]],[[323637,773625],[27,32],[57,4],[256,258],[-684,173],[-178,-20],[-83,18]],[[322828,774134],[-653,-18],[-195,75],[-693,-126],[-732,121],[-225,-160],[-101,-191],[-247,-48],[-71,46],[-115,26],[-110,119],[238,596],[742,886],[7,11],[607,719]],[[321224,776299],[-20,38],[43,55],[101,310]],[[331399,776267],[113,263],[509,827],[33,131],[-679,-211],[-79,140],[445,619],[-5,48],[514,602]],[[332196,779012],[-481,-733],[-9,84],[224,515],[206,306],[151,171],[218,158],[151,-243],[48,-441],[372,62],[364,-89],[93,-65],[218,-274],[2,-122],[-89,-304],[-148,-249],[224,-243],[-18,-173]],[[333722,777372],[-149,-193],[-284,-212],[-274,-364],[-252,-449],[-195,-203],[-1046,-669],[-43,-20],[-36,-7],[-206,0],[-180,130]],[[330060,775320],[-238,-169],[-55,4],[-110,145],[-236,417],[-115,279],[-127,1331],[41,700],[29,93],[97,-75]],[[329445,778088],[945,2817],[214,613],[70,233],[49,145]],[[330723,781896],[292,614],[208,266],[397,664],[127,136],[227,65],[94,-15],[86,-189],[-19,-73],[16,-235],[234,-826],[-195,-1336],[-197,-850],[-70,-651],[11,-63],[-835,-1258],[-73,-34],[-227,-174],[-39,-43],[-577,-416]],[[330274,777287],[60,25],[23,-11],[374,287],[23,-1],[63,-289],[-218,-153],[-148,-168],[37,-31],[-89,-72]],[[156058,860422],[-64,113],[-104,115],[-317,5],[-48,33],[-6,82],[58,231],[-14,162],[-294,584],[-227,565],[-55,189],[-58,590],[-66,123],[-427,121],[-184,432],[-362,562],[-33,118],[1,112],[295,516],[-4,200],[-212,772],[-92,44],[-530,4],[-85,-76],[-62,-142],[-58,-377],[-754,-94],[-217,-108],[-257,-200],[-156,-4],[-912,289],[-436,292],[-98,2],[-90,-45],[-71,-104],[-128,-333],[-170,43],[-95,76],[-44,204],[-131,15],[-170,-60],[-33,-72],[0,-205],[-57,-89],[-116,-55],[-149,-24],[-471,117],[-403,-224],[-284,74],[-180,-64],[-75,32],[-84,154],[4,222],[-65,157],[-18,145],[26,390],[-99,604],[-54,65],[-253,-72],[-106,114],[-10,65],[40,72],[154,194],[33,421],[-18,231],[-142,785],[-121,204],[-141,357],[-174,177],[-194,104],[-469,-9],[-391,132],[-132,114],[-158,213],[-261,180],[-518,547],[-72,404],[-75,200],[-131,164],[-313,142],[-71,108],[-73,262],[-300,373],[-94,253],[-447,491],[-152,31],[-174,-58],[-270,-256],[-106,-30],[-76,54],[-107,225],[-77,47],[-296,75],[-340,-37],[-202,61],[-127,100],[-40,80],[21,104],[61,107],[19,106],[-31,98],[-137,341],[6,166],[144,301],[-28,91],[-123,134],[-8,83],[26,94],[243,171],[28,119],[-60,137],[-661,394],[-114,110],[-13,120],[-85,322],[-52,86],[-211,143],[-45,95],[-17,166],[-44,119],[-168,326],[-28,196],[40,177],[1,212],[268,630],[16,126],[-50,57],[-291,11],[-258,128],[-119,385],[-98,180],[-203,168],[-225,268],[-205,91],[-18,99],[106,151],[426,336],[120,178],[167,473],[-28,212],[-91,196],[-160,186],[-85,173],[-241,118],[-52,86],[-45,171],[-36,94],[-86,16],[-283,-114],[-115,45],[-49,105],[12,102],[108,97],[318,144],[67,67],[8,120],[-60,85],[-397,87],[-225,164],[-415,413],[-410,179],[-270,252],[-95,221],[-152,108],[-70,188],[-161,265],[-32,89],[79,160],[-1,148],[-49,158],[-141,237],[-85,79],[-39,150],[13,155],[-236,452],[-440,273],[-261,67],[-112,-41],[-140,-210],[-175,-133],[-204,-78],[-494,2],[-91,43],[-17,111],[34,114],[167,372],[40,155],[-36,111],[-65,66],[-391,190],[-442,633],[-150,106],[-596,358],[-225,87],[-422,16],[-95,82],[-33,85],[-4,103],[48,94],[220,248],[21,171],[1,265],[44,75],[278,304],[75,100],[4,110],[-80,106],[-374,112],[-62,89],[-5,360],[-109,86],[-85,-19],[-273,-84],[-121,35],[-45,69],[-15,110],[30,128],[460,326],[85,119],[68,239],[544,607],[217,557],[203,354],[-4,178],[-275,522],[-229,299],[-309,313],[-123,84],[-60,137],[44,172],[551,409],[-6,140],[-78,86],[-313,-27],[-260,206],[-103,32],[-276,-186],[-146,-157],[-153,-255],[-226,-86],[-126,19],[-55,100],[78,253],[64,149],[-4,94],[-55,65],[-288,-6],[-521,-127],[-508,-296],[-244,-3],[-248,42],[-90,71],[-6,211],[-60,231],[-85,145],[-4,128],[49,94],[183,227],[70,158],[5,188],[-12,238],[-33,215],[-81,60],[-108,30],[-302,19],[-84,5],[-28,125],[28,133],[85,402],[56,141],[92,26],[88,9],[57,41],[5,117],[-17,217],[25,160],[39,173],[-46,121],[-205,267],[-107,116],[-13,109],[-6,89],[-78,158],[-19,132],[23,112],[41,195],[-32,196],[-148,255],[-212,244],[-298,242],[-62,170],[-6,188],[-173,0],[-797,0],[-797,0],[-797,0],[-797,0],[-796,1],[-797,0],[-797,0],[-120,62],[-70,124],[-80,308],[-2,276],[9,166],[8,107],[188,267],[118,362],[7,98],[-65,295],[-34,125],[-49,109],[-53,171],[-1,162],[24,379],[-107,371],[-71,138],[-87,93],[-378,295],[-94,216],[-30,261],[0,1720],[0,1721],[1,1720],[3,1627]],[[120989,912987],[123,-11],[311,-62]],[[122212,912757],[1585,-832],[197,-113],[35,-8],[372,-195]],[[124382,911775],[-27,30],[-485,791],[-77,77],[-456,239],[-124,135]],[[123213,913047],[-378,564],[234,-1],[292,45],[40,111],[-210,25],[-254,108],[-297,189],[-168,177],[495,962],[76,24]],[[124473,915209],[-171,402],[60,509],[46,79],[490,197]],[[126050,916310],[77,92],[279,-30],[103,57],[-96,400],[-7,92],[32,284],[24,142],[62,193],[118,96],[179,-30],[265,-652]],[[127493,916832],[598,-181],[15,-31],[-43,-132],[-139,-343],[-197,-242],[-408,-638],[-3,-18],[-116,-134]],[[127218,915112],[77,-1],[-2,-10]],[[127293,915101],[23,10],[360,-4]],[[127676,915107],[983,688],[170,62],[1293,84]],[[131650,917358],[59,58],[161,-8],[207,22],[134,70],[-24,91],[-184,110],[-7,1],[218,218]],[[136181,919630],[10,54],[125,138],[379,233],[652,135]],[[139470,920429],[85,132],[84,91],[151,5],[146,-150],[235,-369],[1,-184],[-306,-451],[-2252,-1287],[-14,-11],[-177,-88]],[[137423,918117],[-221,-230],[-281,-226],[-344,-204],[-355,-115],[-689,-96],[-273,-113],[-463,-102],[-1083,-178],[-208,-86],[-142,-101],[-389,-681],[-188,-223],[-373,-335],[-417,-206],[-571,-79],[-364,-319],[-418,-617],[-337,-429],[-386,-365],[-418,-475],[-110,-251],[125,-330],[70,-109],[421,-178],[163,40],[-150,177],[-354,255],[-48,92],[91,72],[1661,-193],[357,195],[125,165],[-27,84],[-450,35],[-97,157],[-71,296],[-15,234],[41,175],[101,222],[483,363],[520,155],[400,205],[221,194],[596,332],[240,268],[129,209],[16,104],[-108,75],[88,180],[435,160],[191,13],[611,-153],[111,-120],[-60,-319],[86,15],[235,405],[132,135],[136,26],[137,-52],[139,-130],[53,-276],[-129,-1513]],[[137830,917342],[117,164],[529,307],[1928,665]],[[142333,918231],[132,147],[20,17],[272,273],[847,500]],[[143538,919578],[436,766],[170,105],[1039,199]],[[145183,920648],[-54,212],[194,195],[-675,161],[-272,143],[-27,21],[-26,80],[152,203],[-368,202],[-135,125],[4,268],[37,152]],[[152437,916255],[-131,3],[8,184],[-252,490],[31,55]],[[153137,919582],[-113,-33],[-24,0],[-118,42],[-37,40],[175,134]],[[153412,919747],[890,-41],[-44,-292],[-14,-379],[76,-375],[-153,-778]],[[154848,917747],[332,-226],[-9,-54],[-722,-942],[-154,-230],[-28,-63],[-166,-213]],[[159043,918376],[2782,-56],[3,0],[585,-128],[542,-203],[372,-172],[547,-273]],[[164531,917043],[242,-184]],[[164773,916859],[4,-1850],[1,-1216],[1,-1216],[1,-1216],[1,-1216],[1,-1216],[1,-1216],[710,-462],[709,-461],[710,-462],[710,-462],[709,-462],[710,-462],[709,-461],[710,-462],[709,-462],[710,-462],[709,-462],[710,-462],[709,-461],[710,-462],[710,-462],[709,-462],[710,-462],[709,-462],[710,-461],[709,-462],[710,-462],[709,-462],[710,-462],[710,-462],[709,-461],[710,-462],[709,-462],[710,-462],[709,-462],[710,-461],[709,-462],[710,-462],[1274,-8],[1274,-8],[1274,-7],[1274,-8],[800,-878],[801,-878],[801,-878],[801,-878],[836,-531],[673,-200],[1211,-203],[1211,-204],[1210,-203],[1211,-204],[1211,-203],[1211,-204],[1210,-203],[1211,-204],[1211,-203],[1210,-203],[1211,-204],[1211,-203],[1211,-204],[1210,-203],[1211,-204],[1211,-203],[35,-876],[-53,-1365],[1,-1421],[0,-1422],[1,-1421],[1,-1422],[0,-1421],[1,-1422],[1,-1421],[0,-1422],[1,-1421],[1,-1422],[0,-1421],[1,-1421],[1,-1422],[0,-1421],[1,-1422],[1,-1421]],[[216662,860422],[-1389,0],[-1388,0],[-1389,0],[-1389,0],[-1388,0],[-1389,0],[-1388,0],[-1389,0],[-1389,0],[-1388,0],[-1389,0],[-1388,0],[-1389,0],[-1389,0],[-1388,0],[-1389,0]],[[153747,920085],[-240,-51],[86,174],[185,145],[236,57],[145,-59],[162,-181],[8,-287],[-14,-91],[-329,343]],[[194432,970826],[2,-2127]],[[194434,968699],[-50,7],[-755,-146],[-227,-12],[-270,55]],[[192022,968830],[-110,-25],[-320,166],[-395,110],[-167,-59],[-198,-235],[-333,-259],[-2056,477]],[[188443,969005],[-549,-121],[-555,-68],[-1228,-287],[-479,-54],[-141,84],[-193,215],[25,90],[96,100],[247,222],[241,115],[401,170],[1443,434],[466,112],[995,83]],[[189212,970100],[175,59],[311,35],[524,169],[209,152],[1520,517]],[[192696,971247],[641,12],[717,-298],[167,-46],[211,-89]],[[194434,967328],[0,-950]],[[194434,966378],[-455,-119],[-621,-88]],[[191979,965977],[71,-155],[-10,-5],[25,-81],[125,-102],[256,-128],[64,2],[186,-112]],[[192696,965396],[1093,109],[130,-25],[101,-83],[61,-122],[37,-158],[2,-537],[-63,-311],[-164,-281],[-481,-201],[-865,-264],[-586,-118],[-462,43],[-461,-28],[-2016,-498],[-624,-3],[-544,121],[-754,470],[-711,168],[-137,65]],[[185638,964350],[-28,99],[119,88],[47,90],[-131,259],[-61,247],[-227,355],[-33,205],[1,117],[5,36],[33,125],[4,8],[269,279]],[[185636,966258],[27,28],[388,34],[603,133],[385,106],[4453,741],[527,-26],[405,95],[700,36],[52,3],[1258,-80]],[[181255,965790],[-667,558],[-114,258],[386,55],[280,95],[161,123],[758,243]],[[182059,967122],[436,-98],[-3,-33],[64,-168],[275,-36],[191,-88],[215,-134],[380,-266],[69,-14],[609,-380],[99,-98],[-4,-111],[-295,-223],[-296,-125],[-760,-201],[-504,5],[-339,108],[-941,530]],[[177500,961036],[418,-679],[-445,47],[-204,-15],[-193,-84],[52,-160],[605,-531],[199,-285],[-5,-148],[-107,-144],[-254,-197],[-401,-251],[-686,-200],[-202,-37],[-629,-86]],[[174932,957915],[24,-49],[7,-116],[-36,-388],[-51,-179],[-176,-303],[-128,-141],[-221,-98],[-315,-52],[-404,0],[-243,95],[-257,151]],[[173132,956835],[-815,477],[-75,64],[-25,79],[75,480]],[[172691,959120],[-9,56],[74,139],[76,298],[-104,117],[-141,5],[-11,66]],[[171625,959567],[-56,-142],[-182,-94],[-192,-211],[-109,-228],[-35,-246],[-691,-440]],[[169585,957926],[380,-128],[36,-79],[432,-274],[54,-305],[-52,-184],[-467,-341],[-110,-114],[-290,-533],[-107,-134],[-241,-123],[-243,14],[-225,195],[-330,368],[-5,8],[-280,633]],[[168137,956929],[-84,-17],[-63,77],[-158,-82],[-33,-47],[-2,-1]],[[167797,956859],[-5,-10],[-150,-217],[-3,-94],[-28,-59]],[[167611,956479],[50,-247],[17,-132],[-11,-196],[-277,-231],[40,-105],[415,-241],[92,-454],[-181,13],[-165,-228],[-188,-180],[-494,-335],[-689,-40],[-367,-104],[-673,860],[-43,92],[-298,997]],[[164377,956056],[-41,-4],[-26,5],[-12,-9],[-2,0]],[[163847,955178],[5,-37],[-17,-44],[-539,-216],[-297,-39],[-299,24],[-189,59],[-12,10]],[[160959,955171],[-162,-164],[-527,-267],[-271,-92],[-369,39],[-161,131],[-85,131],[137,223]],[[159521,955172],[27,215],[46,66],[-6,100],[-17,14],[47,366]],[[159338,956023],[-403,-160],[-332,-89],[68,178],[290,371],[707,742],[192,156],[260,131],[2064,235],[146,70],[135,136],[228,41]],[[162693,957834],[878,1021],[34,28],[290,181],[1423,601],[133,138],[15,29],[192,90]],[[165764,960229],[324,242],[22,11],[65,53],[1775,1320],[120,78],[218,174],[339,251],[567,333],[750,163],[1902,241],[259,12]],[[172319,963092],[139,-9],[1376,-319],[529,-164]],[[175186,962860],[46,52],[202,-17],[134,41],[255,197],[-174,108],[-186,51],[1,65]],[[175467,963752],[188,286],[6,0],[1180,32],[356,-133],[558,-327],[1269,-575],[210,-231],[15,-92],[-101,-98],[-326,-155],[-431,-136],[-1118,-273]],[[184553,959370],[-421,-193],[-1250,124],[-1720,209],[-74,42],[-48,78],[47,92],[398,253],[80,39],[383,87],[673,86],[890,70],[198,-10],[437,-110],[339,-152],[191,-131],[81,-247],[-204,-237]],[[194438,952253],[0,-641],[0,-3209],[-2,-216]],[[194436,948187],[-480,-65],[-399,-105],[-180,-19]],[[193377,947998],[-113,-79],[-329,-150],[-226,-163],[-346,-384],[-532,-290],[-963,-316],[-1226,-492],[-2003,-459],[-249,-48],[-1021,-65],[-595,16],[-977,117],[-2,1]],[[184795,945686],[-239,52],[-311,97],[-458,212],[-336,179],[-184,101]],[[183267,946327],[-484,266],[-195,136],[-302,393],[179,261],[500,302],[749,274],[1496,371],[1356,593],[237,55],[1038,88]],[[187841,949066],[609,51],[562,-47],[192,12],[26,-2]],[[191162,950638],[-44,-54],[-768,-387],[-408,-138],[-445,-10],[-391,-90],[-1173,55],[-372,236],[-331,68],[-154,-41],[-140,-104],[-236,-254],[-507,-219],[-1026,-81],[-1033,-146],[-230,90],[-140,168],[-29,102],[-16,344],[-69,137],[82,259],[16,41],[110,205],[145,150],[711,443],[99,115],[-338,-24],[-57,-15],[-1021,344]],[[183397,951832],[-173,-262],[-39,-39],[-22,-52],[-620,-935],[-1,1],[-401,184],[-149,25],[-86,-58],[27,-104],[406,-512],[5,-180],[-266,-313],[-1131,-521],[-447,-140],[-159,55],[-142,142],[-127,233],[-187,198],[-112,314]],[[178900,949731],[122,-246],[-61,-87],[-97,-274],[-206,-209],[-44,-13],[-1319,483],[-162,134],[34,27]],[[176285,950200],[-138,-154],[-706,-83],[-455,27],[-1297,265],[-139,78]],[[173550,950333],[-12,7],[-108,107],[-97,226],[9,123],[58,128],[174,252],[349,383],[145,123],[216,101],[288,80],[236,14],[1699,39],[680,6],[376,59],[2046,734],[126,40]],[[179821,952818],[16,12],[22,11],[130,102],[327,243]],[[180316,953186],[-93,-20],[7,9],[-13,64],[-2535,-586],[-1087,-126],[-1665,96],[-313,92],[-72,164],[348,434],[183,162],[473,153],[1146,216],[955,119],[1076,75],[505,2],[294,53],[1029,71]],[[180667,954431],[-1196,-72],[-589,-3],[-1908,-76],[-378,41],[-52,10],[-584,229],[-28,167],[233,201],[86,149],[-167,336],[51,131],[381,280],[679,303],[147,15],[732,-31],[347,-45],[2303,-107],[311,27],[522,-22]],[[181620,956008],[-659,87],[-73,34],[-401,98],[-1777,168],[-368,75],[-70,103],[-27,153],[17,201],[129,206],[439,343],[173,101],[988,216],[296,39]],[[180287,957832],[1006,131],[219,-8],[818,-129],[173,-42],[291,-138],[147,-170],[71,-159],[8,-274],[16,-56],[-50,-194]],[[184196,956187],[840,246],[67,13],[532,55],[536,-77],[780,-254],[1010,-767],[1017,-613],[40,-453]],[[188244,953894],[886,63],[99,-10],[467,38],[445,-59],[100,-67],[163,-287],[227,-507],[64,-90],[-60,-194]],[[192257,952304],[422,62],[489,-16],[1269,-97],[1,0]],[[194435,957694],[2,-1208]],[[194437,956486],[-411,134],[-139,68],[-129,100],[-105,157],[-82,216],[14,165],[109,116],[292,146],[228,24]],[[194214,957612],[221,82]],[[169725,952248],[-76,18],[-445,166],[-378,59],[32,694]],[[168858,953185],[471,359],[106,72],[1048,808],[686,305],[673,216],[687,482],[381,215],[330,16],[336,-93],[37,-131],[-353,-658],[-249,-264],[-486,-684],[-932,-1148],[-282,-187],[-794,-379],[-314,22],[-478,112]],[[167782,943948],[277,339],[77,59],[434,30],[302,-48],[96,-70],[61,-109],[30,-238],[19,-589],[10,-19],[-27,-118]],[[169992,943956],[-63,85],[226,252],[108,77],[251,126]],[[170514,944496],[1093,229],[60,9],[650,-4],[565,-64],[238,-42]],[[173120,944624],[105,-19],[345,-78],[825,-337],[408,-259]],[[174803,943931],[982,-624],[2110,-1640],[898,-486],[344,-277],[153,-201],[133,-253],[41,-236],[-52,-220],[-98,-153],[-215,-131],[-1300,-553],[-684,-169],[-678,-244],[-957,-510],[-902,-442],[-868,-322],[-1441,-801],[-2718,-1289],[-158,-126],[-259,-127]],[[169016,935013],[-162,-508],[-542,-1038],[-104,-121],[-535,-391],[-361,-177],[-895,-87],[-250,-97],[-20,-255],[-375,-959]],[[165772,931380],[-30,-369],[-93,-336],[-213,-1520],[-50,-152],[-163,-282],[-256,-282],[-1191,-464],[-331,-96],[-744,-131],[-329,82],[-2,1],[-210,241],[-218,21],[-135,-37],[-694,-649],[-1034,-643],[-494,-193],[-473,-387],[-334,-181],[-269,-56],[-442,34],[-319,176],[-289,270],[-218,293],[-397,854],[-37,92]],[[156508,928401],[-744,776],[-79,106],[-151,148],[-22,9],[-98,102]],[[154042,930099],[-67,27],[-531,237],[-1017,523],[-246,184],[-227,108],[-503,-28],[-74,30]],[[150755,932025],[57,208],[344,186],[-81,56],[-58,105],[-7,31],[166,293],[3,1],[175,251],[165,349],[146,258],[49,79],[214,159],[311,346],[623,315]],[[152862,934662],[-125,1016],[-2,246],[42,220],[85,177],[71,78],[1408,520]],[[154071,937194],[-123,32],[-27,53],[-153,80],[-166,14],[-219,682],[375,400],[147,230],[309,680],[65,101]],[[154279,939466],[546,590],[413,308],[74,218],[129,140]],[[155926,941422],[-36,106],[229,259],[-2,101],[-209,250],[-250,73],[-13,40]],[[155645,942251],[-407,128],[-215,199],[-192,303],[-559,1114],[-30,285]],[[153963,944796],[-193,129],[-6,31],[-179,134],[35,120],[469,76],[2145,327],[4056,355]],[[160290,945968],[1004,288],[517,97],[625,24],[74,-2],[503,-85],[518,-235],[686,-411],[909,-401],[1444,-499],[670,-1002]],[[167240,943742],[180,57],[1,-1],[1,2],[321,100]],[[194439,937103],[2,-1331]],[[194441,935772],[-1345,554],[-74,40],[-151,171]],[[192871,936537],[-341,387],[60,282],[9,14]],[[192599,937220],[213,49],[218,-28],[235,-8],[1174,-130]],[[194441,935093],[0,-54]],[[194441,935039],[-36,45]],[[194405,935084],[36,9]],[[194441,934186],[1,-1827],[0,-3209],[1,-3209],[1,-3209],[0,-3209],[-868,0],[-868,0],[-868,0],[-868,0],[-868,0],[-868,0],[-868,0],[-868,0],[0,-529],[-417,-456],[-312,-3],[-313,-3],[-8,463],[-9,530],[-1516,-1],[-1467,1],[-1467,1],[-1467,1],[-1467,0],[-1467,1],[-1467,1],[-1277,1],[-55,-669],[353,-381],[353,-382],[354,-381],[120,-270],[-571,-1]],[[175400,917446],[-380,412],[-309,502],[-50,128],[-74,368],[-98,608],[-32,372],[72,179],[452,192],[286,78],[1878,421],[590,100],[2843,418],[1110,139],[1181,-29],[696,-153],[697,-71],[719,-19],[1928,-282]],[[187131,922773],[-1169,297],[-255,89],[-699,213],[-1001,227],[-163,9],[-478,121]],[[183366,923729],[-804,-225],[-149,3],[-726,-195],[-206,-36],[-1087,-142],[-703,-64],[-1788,-84],[-221,72]],[[175310,923163],[-678,-43],[-1191,111],[-100,124]],[[172233,924194],[-154,92],[-590,481],[-313,469],[67,191],[232,205],[899,571],[91,45],[274,115],[1236,282],[1031,202]],[[175006,926847],[2364,709],[291,8],[275,79],[687,61]],[[178623,927704],[-932,208],[-39,15],[2,121],[411,184],[452,62],[728,-114],[78,8],[50,-17]],[[179161,928662],[-165,-27],[-70,21],[-2309,-421],[-1117,-187],[-641,-24],[-762,71]],[[173208,927829],[-15,-44],[-202,-49],[-590,8],[-702,259],[-93,78],[-13,107],[194,310],[69,49],[704,195],[11,16],[567,105]],[[173062,929360],[-418,-29],[-110,3],[-437,-41],[-1041,-72],[-453,42],[-793,223],[-233,266],[-99,192],[-16,229],[26,650],[46,237],[188,278]],[[171365,932540],[5,147],[259,204],[17,142],[-107,142],[-147,127],[3,83]],[[171395,933385],[-157,49],[-101,87],[-161,175],[-91,169],[69,265],[228,362],[670,585],[725,526],[1265,871],[445,267],[792,266],[517,264],[2758,999]],[[178354,938270],[580,210],[88,29],[328,122],[2239,811]],[[181589,939442],[2,0],[904,-240],[265,-195],[118,-165],[102,-231],[88,-298],[122,-646],[15,-334],[-21,-334],[-58,-303],[-96,-270],[-190,-331],[-285,-390],[-44,-48],[-218,-205]],[[184230,935253],[8,20],[145,-113],[122,31],[217,250],[39,165],[-28,185],[13,405],[70,147],[290,365]],[[185680,937123],[90,66],[137,30],[414,-25],[1278,-311],[29,-11],[1127,-286],[1646,-722],[516,-309],[54,-267],[-292,-570],[-709,-807],[-570,-291],[-220,-178],[74,-25],[-36,-20]],[[189753,933021],[1125,561],[0,-11],[44,-84],[232,-42],[124,51],[502,394],[196,239],[69,34]],[[194127,934188],[314,-2]],[[164773,916859],[1139,-867]],[[165912,915992],[226,-58],[140,-78],[797,-226],[817,-151],[2466,-638],[515,-378],[496,-308],[589,-295],[411,-142],[302,-148]],[[172671,913570],[758,-160],[706,-188],[234,-127],[265,-37],[252,44],[2402,-507]],[[177288,912595],[-31,94],[355,-46],[-16,109],[-453,531],[460,132],[352,-56],[147,173],[213,-4],[487,-84],[525,-187],[562,-289],[684,-248],[802,-475],[536,-407],[272,-243],[544,-636],[298,-442],[53,-247],[113,-123],[160,2],[73,-121],[-149,-520],[-90,-137],[-118,-98],[-497,-112],[-1363,132],[-45,-83],[-100,4]],[[180101,908814],[27,-427],[-61,-74],[-30,-119],[54,-388],[-96,-119],[-223,-157],[-946,-348]],[[180128,906657],[21,-3],[36,-26]],[[180185,906628],[339,-76],[112,11],[1236,-229],[268,-108],[451,-118],[254,22],[346,-47],[439,-119],[372,-26],[275,-51]],[[184277,905887],[1886,-62],[283,-21],[263,3],[588,-19]],[[187297,905788],[114,28],[80,1],[189,16],[125,77],[882,212],[422,59],[714,-37]],[[191238,906392],[178,52],[8,-3],[270,19],[349,166],[135,40]],[[192287,906697],[1199,729],[358,-1],[317,226],[78,4],[87,-93],[207,-371],[-51,-225]],[[195844,906001],[127,108],[628,-10],[397,-112],[120,-116],[121,-319],[75,-619],[49,-227],[164,-330],[108,-96],[102,92],[123,380],[986,-580]],[[198844,904172],[306,-101],[881,-769],[162,-319],[59,-236],[-56,-211],[-172,-187],[-270,-150],[-367,-114],[-344,41],[-318,195],[-103,11],[113,-173],[659,-720],[168,-287],[8,-11],[22,-235]],[[199988,900588],[119,-77],[10,-17],[375,-396],[255,-328],[73,-128],[623,-859],[297,-338],[110,-94],[139,-179]],[[201989,898172],[-6,76],[74,-16],[-52,155],[-39,57],[-14,152]],[[201499,899253],[-600,829],[-95,168],[-49,150],[83,1323],[200,82],[353,-396],[105,-44],[11,-54]],[[201552,903276],[-567,838],[-16,203],[35,272],[-32,219],[-286,447],[-120,119],[-60,197]],[[200844,907079],[495,962],[24,5],[175,-56],[264,68],[305,166],[486,108],[202,-7],[198,46],[241,86],[31,23],[291,65]],[[203845,908806],[148,135],[77,-8],[209,-80],[98,29],[-15,519],[70,183],[209,213],[534,167]],[[205927,911476],[-111,-42],[-72,24],[-264,-78],[-584,-276],[-613,-355],[-206,-288],[-520,-418]],[[200618,909118],[194,-314],[-59,-64],[-204,-32],[-625,-49],[-215,38],[-434,-115],[-172,25],[-125,139],[-357,238],[-246,259]],[[198375,909243],[-89,-36],[-193,128],[-88,120],[215,478],[819,1296],[90,77],[1520,226],[918,236],[59,25],[173,26]],[[202461,912107],[908,396],[204,37],[1082,472],[418,114],[501,-100],[543,-219],[312,-216],[221,-270],[184,-377],[122,-440],[-74,-950]],[[208690,909065],[591,-455],[-7,-34],[92,-162],[247,-216],[245,-346]],[[209858,907852],[622,41],[93,-12],[411,29],[2,-261]],[[211891,908002],[137,94],[35,9],[402,214],[621,-635]],[[217612,905933],[180,-23],[111,-27],[29,10],[55,-7]],[[221684,906726],[33,7],[1136,-131],[835,-182],[216,-100],[580,-314]],[[224484,906006],[233,46],[193,-17],[311,41],[302,110],[53,35],[847,167]],[[226423,906388],[-22,95],[119,19],[113,55],[-14,114],[-141,173],[-199,170],[-4,20]],[[226275,907034],[91,851],[259,-257],[979,-1293],[236,-183],[130,-165],[898,-471],[424,-83],[501,291],[222,181],[109,174],[-5,168],[48,245],[-51,152],[-134,196],[-360,273],[-585,351],[-535,103],[-484,-145],[-547,-299],[-228,118],[-627,769],[13,13]],[[226542,909162],[-510,471],[-13,21],[-48,191],[245,43],[111,75],[149,-8],[681,-375],[38,-33]],[[228039,910518],[-62,58],[-30,137],[39,79],[268,53],[525,-300],[114,-19],[22,-12]],[[228961,910488],[12,25],[60,-10],[186,120],[196,8],[208,-103],[194,-155],[361,-443],[178,-266],[63,-127],[-59,-185]],[[230360,909352],[189,-74],[8,-16],[63,-56],[120,-4],[1004,-396]],[[231864,908000],[14,95],[84,103],[90,301],[61,89],[1010,506],[293,75],[-78,-230],[-5,-7]],[[233333,908932],[-8,-32],[-92,-271],[-65,-334],[-197,-760]],[[232794,906852],[36,-393],[-49,-430],[-83,-229],[-88,-164],[-391,-480]],[[233716,903561],[383,-215],[-162,-414],[14,-55],[420,160],[83,9],[45,-47]],[[234823,902655],[133,46],[31,-232],[-7,-351],[-33,-253],[-106,-141],[-125,-57],[-159,-42],[-142,18],[-439,-53],[-259,67],[-256,194],[-182,46],[-211,-149],[-334,25],[-374,427],[-150,-40],[-51,-68],[7,-92],[168,-276],[1318,-1466],[200,-303],[44,-435]],[[233896,899520],[27,2],[124,435],[-81,210],[-678,854],[-81,311],[24,85],[179,87],[965,-213],[374,47],[252,150],[126,184],[92,1016],[30,113],[13,4]],[[234716,907193],[235,784],[93,48],[415,24],[114,53],[471,-29],[191,-79],[262,-51],[170,90],[215,-13]],[[237760,908912],[325,428],[96,111],[435,606],[473,440],[165,88],[27,11]],[[240346,911174],[-28,57],[7,5],[94,118],[-161,11],[-91,697]],[[238888,912684],[94,52],[-70,-190],[-204,-212],[-422,-143],[-617,-89],[-70,35]],[[237599,912137],[-346,168],[-6,26],[324,844]],[[238466,914105],[-6,29],[196,200],[7,75],[-277,3],[-213,128],[-68,441],[30,307],[46,173],[273,165],[839,205],[445,164],[-112,-285]],[[239760,916712],[-121,-107],[-179,-56],[-319,-226],[-824,-59],[-181,33],[-101,61],[-543,690]],[[237249,917357],[-36,-11],[-85,100],[-118,43],[-101,-44],[-134,-239],[-352,-111],[-1119,454],[-6,3],[-552,296],[-267,225],[-333,133],[-350,36],[-262,257]],[[233534,918499],[-878,865],[-71,104],[-386,490],[-254,360],[-16,47],[-122,872]],[[231807,921237],[131,389],[460,669],[75,169],[84,121],[147,133],[288,116],[207,34],[471,-107],[-163,151],[39,1]],[[233546,922913],[-178,252],[281,455],[-56,21],[-778,-352],[-51,6],[-347,306]],[[232417,923601],[-332,293],[-277,402],[-6,479],[166,666],[58,398],[0,1],[148,641]],[[232174,926481],[-62,398],[94,165],[373,387],[366,339],[216,103],[188,-19],[195,-104],[203,-189],[165,-92],[19,-29]],[[235061,928482],[-292,-70],[-361,-4],[-442,66]],[[233748,928687],[-11,11],[-49,116],[96,149],[616,515],[11,19],[197,116]],[[235492,930606],[25,131],[35,31],[873,352],[422,116],[344,23],[150,-46],[184,-375],[28,-330],[-15,2]],[[237269,929918],[655,142],[108,-113],[381,-38],[237,75],[430,-16],[223,-80]],[[239303,929888],[268,-253],[-76,-223],[52,-214],[520,-410],[468,-284],[419,-353],[625,-740],[136,-209],[94,-226],[162,-826],[21,-313],[-59,-906],[-50,-171],[-35,-44],[-76,-41]],[[241772,924675],[26,-22],[-80,-99],[57,-84],[494,-236],[393,-469],[206,-151],[497,-253],[91,-96],[112,-158],[280,-677],[460,-610],[33,-132],[-98,-287],[70,-92],[177,-105],[53,18],[30,-51]],[[244591,921139],[156,270],[43,65],[153,62],[165,-91],[126,-160],[171,-391],[250,-324],[-21,-98],[-98,-65],[-791,-91],[-287,47],[-149,68],[-342,248]],[[243698,920874],[-2,-3],[-58,63],[-84,-26],[-119,-204],[-254,-298],[-159,-276],[19,-12],[-12,-13]],[[243111,919911],[414,100],[566,5],[193,-77],[225,-194],[-246,-310],[-2138,-1581]],[[242129,917814],[13,-142],[-164,-116],[92,-79],[145,-20],[444,46],[26,9],[469,-132]],[[243154,917380],[702,-198],[7,-10],[248,-128],[581,-322]],[[245134,916700],[336,331],[273,210],[412,204],[502,-27],[-26,-82]],[[246582,917187],[-43,-44],[-164,-101],[-279,-211],[-577,-132]],[[247660,916415],[285,213],[203,25],[310,-65],[290,-172],[97,-109],[-271,-70],[-256,1],[-218,-103],[-180,-209],[-127,-270],[-2,-6],[-41,-51]],[[247750,915599],[-676,-113],[-12,2],[-23,-8],[-236,-40]],[[246651,915415],[24,-22],[-58,-1],[-54,-98],[1368,-1062],[437,-940],[183,-235],[15,-96]],[[248566,912961],[42,-280],[-105,-141],[-10,-198],[90,-574],[-42,-459],[-135,-807],[126,-251],[257,-195],[205,-371]],[[250734,911650],[-3,1171],[46,381],[149,491],[318,416],[556,839],[201,168],[225,83],[394,-20],[287,-270],[386,-499],[491,-456],[895,-617],[255,-233],[506,-610],[214,-606],[147,-854],[127,-515],[106,-174],[48,-260],[-9,-345],[-40,-271],[-70,-195],[-110,-111],[-273,-36],[-44,7],[-415,296]],[[254719,909555],[-2,-34],[-125,-121],[-39,-168],[101,-489],[-64,-785]],[[254808,906947],[57,-149],[146,-486],[90,-135],[100,-262]],[[255201,905915],[262,-280],[100,-151],[1384,-1598],[78,-181],[147,-653],[1,-1],[-11,-60]],[[258141,903067],[116,485],[287,340],[215,189],[44,19]],[[258803,904100],[189,82],[36,4],[90,46],[561,-441]],[[261966,911547],[111,252],[25,33],[224,172],[113,220],[76,43],[7,3],[216,-18],[211,-145],[176,-29],[560,93],[959,-81]],[[264407,912552],[-583,22],[-93,45],[51,406]],[[263792,913107],[223,244],[107,32],[49,133],[735,303]],[[264906,913819],[-807,402],[-526,366],[-321,-17],[-49,6],[-80,49],[-208,238],[-120,201],[-94,424],[-12,210],[43,337],[39,94],[-19,152],[-78,211],[-6,187],[65,165],[-39,194],[-105,164],[8,491]],[[262784,917958],[460,486],[153,-79],[437,-2],[516,179],[524,86],[907,-35],[214,-51],[388,-229],[283,-185]],[[266666,918128],[74,-24],[156,-92],[700,-270],[179,14],[476,-160]],[[270715,916967],[-36,-251],[-216,-47],[-338,-141],[314,-212],[922,-286],[203,-428],[-18,-264]],[[271546,915338],[72,-22],[-81,-143],[53,-95],[214,-1],[295,86],[148,-46]],[[272247,915117],[614,33],[105,-18],[888,-354],[96,-74],[151,-267],[4,-15],[-18,-107],[-786,-691],[-408,-273],[-537,-282],[-17,-150],[753,-28],[585,-79],[265,-92],[137,-130],[189,-280],[30,-222],[-18,-299],[-62,-208],[-682,-599],[-313,-187],[-533,-221],[-231,-166],[-255,23],[-277,212],[-289,45],[-359,-117],[-544,184]],[[270679,910584],[10,-221],[-2,-28],[4,-6],[11,-247]],[[270702,910082],[211,-95],[20,-30],[142,-149],[14,-29],[28,-107],[-91,-164],[22,-59],[84,-67],[117,-206],[158,-593]],[[271814,907772],[138,-166],[96,-334],[239,-391],[298,-352],[446,-473],[600,-506],[223,-245],[328,-579],[67,-222],[-86,-608],[-239,-995],[-154,-566],[-69,-136],[-452,-401],[-95,-35],[-233,-44]],[[272921,901719],[-22,-12],[-328,8],[-142,-78],[-221,-321],[-300,-563],[-223,-336],[-343,-259],[-161,-89],[-110,-115],[-890,-671],[-595,-151],[-694,-706],[-164,-137],[-693,-82]],[[266248,900657],[-440,138],[101,41],[-105,139],[-258,229],[-175,432]],[[264245,902084],[-386,-492],[-82,-65],[-204,-291],[0,-9],[-136,-175]],[[264562,901251],[329,-41],[2,-1],[100,-161],[36,-109],[751,-856],[267,-173],[111,-205],[84,-340],[163,-379],[361,-624],[384,-772],[79,-305],[-199,-147],[-100,-10],[-296,115],[-51,23],[-1245,1030]],[[264849,897189],[-160,27],[-546,264],[-522,319],[-264,262],[-306,398],[-3,23]],[[263048,898482],[-48,51],[-340,519],[-220,90],[-102,110]],[[262338,899252],[-118,-21],[-9,4],[-24,-10],[-1486,-264],[-101,4],[-83,39]],[[259200,899017],[-21,-41],[-35,-8],[-81,-72],[33,-78],[-62,-120]],[[258945,898528],[95,-171],[-4,-16],[172,-335],[51,-42],[81,-145]],[[259340,897819],[770,-283],[165,-65],[522,-263],[312,-228],[101,-191],[15,-209],[-148,-417],[-85,-154],[-318,-361],[-84,-69]],[[260590,895579],[-110,-152],[-1319,-1498],[-698,-841],[-355,-517],[-313,-341],[-272,-167],[-448,-94],[-626,-21],[-810,80],[-420,270],[-588,556],[-140,174]],[[254048,893421],[-506,451],[-53,106],[-127,53],[-1,1]],[[252319,894554],[-560,383],[-149,116],[-165,99],[-1021,699]],[[250439,895566],[-59,-45],[-76,5],[-149,-42],[63,-85],[-220,-166]],[[249998,895233],[-10,-51],[-312,-1],[-555,260],[-547,-35],[-395,53],[-473,144],[-510,71],[-823,-7],[-294,-31],[-44,-68],[395,-316],[678,-382],[-91,330],[25,85],[226,114],[1074,-204],[1217,-426],[309,-42],[343,-150],[274,-186],[116,-83],[509,-514],[996,-1190],[320,-300],[32,-21],[321,-392]],[[252779,891891],[2022,-232],[205,-39],[125,1],[252,-30]],[[255383,891591],[402,29],[1459,-114],[789,-211],[224,-158],[69,-529],[-72,-266],[-429,-809],[-271,-594],[-502,-753],[-505,-657]],[[256252,887146],[-312,-626],[-65,-97],[-51,-136],[-374,-749]],[[255477,885479],[24,-54],[-239,-286],[-759,-556],[-480,-297],[-238,-27]],[[253785,884259],[-962,-109],[-211,109],[-392,469],[-24,-49],[190,-496],[-262,23]],[[252124,884206],[-382,32],[-85,54],[-106,-38],[-54,5]],[[251497,884259],[-877,571],[-43,220],[-53,73],[-22,-8],[-16,45]],[[250486,885160],[-514,-239],[-88,-32],[-107,-78],[231,-144],[187,-289],[192,-447],[14,-129],[-184,-80],[-265,99],[-63,93]],[[249889,883914],[-125,-24],[-158,59],[-73,-19],[39,-77],[-122,-24]],[[249797,882631],[-95,-182],[-132,-227],[-252,-283],[-246,-74],[-444,134],[-110,79],[-103,-14],[-90,27]],[[248325,882091],[15,-43],[-104,-216],[-200,-158],[-291,-95],[-372,41],[-451,177],[-1197,637],[-251,65],[-292,99]],[[245182,882598],[-215,-18],[-317,40],[-84,90],[7,86],[95,81],[-26,70],[-148,59],[-154,-55],[-159,-169],[-279,-50],[-398,69],[-588,247],[-1167,639],[-1276,539],[-741,699],[277,-629],[-23,-214],[-71,-94],[-125,-3]],[[239945,883368],[120,-37],[46,-71],[401,-162],[404,17],[10,69],[99,49]],[[241299,883367],[977,-395],[698,-327],[528,-156],[80,-32],[404,-258],[-111,-172],[-711,-516],[-12,-85],[12,1],[-4,-3]],[[243131,881278],[422,187],[87,8],[92,71],[104,46]],[[243836,881590],[198,186],[197,152],[333,211],[319,129],[433,-223],[206,-217],[0,-7]],[[246080,881093],[630,-69],[226,-66],[369,-195],[383,-333],[192,-300]],[[247880,880130],[178,-875],[23,-456],[-22,-276],[-80,-274],[-18,-34],[-657,-412],[-103,-9],[-298,-112],[-432,-402],[-104,-65]],[[245212,877125],[-656,137],[-207,77],[-131,-7],[-53,11]],[[243241,876959],[230,-351],[14,-35],[41,-48],[28,-43]],[[243554,876482],[19,-13],[24,-27],[172,-166],[261,-109],[407,-92],[135,-59],[50,-279],[-23,-100],[-200,-204],[-180,18],[-350,244],[-17,1],[-100,62]],[[242735,875742],[146,-537],[-78,-168],[-47,56]],[[242282,874886],[130,-269],[-101,-136],[5,-177],[154,-110],[-77,-169]],[[242393,874025],[-159,-127],[-195,147],[-802,359],[-141,-12],[72,-90],[532,-377],[204,-242],[7,-46],[-327,-263]],[[241158,872569],[-23,-138],[-440,-19],[-46,-90],[193,-195],[65,-121],[-31,-32],[-1319,-10]],[[240581,870987],[151,-17],[53,-31],[-1019,-999],[-71,-53],[-54,-69],[-6,-6]],[[238835,868648],[320,-35],[41,-136],[1,-118],[-147,-213],[-330,58],[-34,-45],[-110,30]],[[237329,863803],[-125,-193],[-201,-17],[-60,-60],[-115,42]],[[236937,863185],[142,-447],[-17,-170],[-351,-1751]],[[236711,860817],[-40,-392]],[[194432,970826],[648,-273],[362,-256],[167,7],[213,-64],[102,-90],[292,-439],[56,-218],[17,-281],[-45,-235],[-107,-189],[-261,-120],[-623,-75],[-819,106]],[[194434,967328],[963,-62],[97,-26],[8,-106],[-167,-340],[-257,-248],[-644,-168]],[[194438,952253],[498,-37],[2147,-238]],[[197083,951978],[187,194],[99,98],[3,8],[2,2]],[[196765,953563],[-767,200],[-987,405],[-195,368],[1202,450]],[[195497,956140],[-208,68],[-40,25],[-57,7],[-483,157]],[[194709,956397],[-272,89]],[[194435,957694],[657,246]],[[196526,959431],[729,367],[435,33],[771,-373],[47,-7],[-20,-520]],[[198488,958931],[-1,-30],[-187,-202],[-65,-125],[21,-129],[190,-298],[58,-196],[41,-331],[31,-48],[464,-280],[422,-364],[196,-571],[-80,-103],[-167,-84]],[[198870,955315],[299,4],[19,-4],[350,-17],[175,28],[287,4]],[[200000,955330],[260,3],[150,-14],[210,-133],[148,-236],[6,-126],[-29,-109],[-65,-90],[-598,-595],[-140,-206],[194,-50],[93,34],[597,446],[168,52],[1419,-54],[141,-83],[84,-105],[133,-258],[88,-234]],[[202859,953572],[20,-8],[139,-480],[26,57],[4,310],[5,41],[5,-2]],[[203387,953752],[-17,26],[260,76],[14,54],[-198,134],[-169,182],[-116,340],[45,127],[116,137],[353,290],[411,173],[736,-40],[728,-161],[1076,-494],[28,-33],[114,-291],[229,-798],[-1,-256],[-106,-413],[-441,-774],[-68,-526],[-341,-1002],[-149,-357],[-258,-301],[-335,-249],[-1377,-437],[-1035,-446],[-263,-70],[-272,-6],[-857,148],[-53,15],[-478,165]],[[200963,948965],[-60,-12],[-403,115],[-566,-80],[-564,-205],[-355,-55],[-334,27],[-279,62],[-441,222],[177,68],[103,98],[-91,101],[-459,145],[-234,-159],[-45,23]],[[197412,949315],[-605,-408],[-983,-532],[-1388,-188]],[[194441,934186],[685,-4]],[[195126,934182],[-685,857]],[[194441,935093],[304,70]],[[194869,935596],[-428,176]],[[194439,937103],[80,-9],[925,-533],[9,-25]],[[195524,936343],[1744,-1062],[42,-78],[-47,-102],[-25,-242],[121,-77],[425,-91],[119,-97],[157,-306],[196,-516],[171,-559],[268,-1056],[302,-791],[176,-888]],[[201394,929877],[235,272],[185,120],[49,94],[-112,140],[-10,29],[39,145],[148,38],[-105,122],[17,64]],[[201840,930901],[-637,702],[-358,616],[-259,859],[-82,676],[-15,200],[-45,76],[-54,187]],[[200390,934217],[-1052,3673],[0,14],[257,502],[76,35],[385,28],[121,61],[-141,95],[-251,285],[-29,113],[51,69]],[[200586,939198],[272,-37],[541,-209],[1063,-569],[109,31],[84,205],[427,-30]],[[204024,938413],[2549,-1569],[26,-25],[357,-464],[164,-264],[23,-248]],[[207143,935843],[9,-93],[-14,-37],[25,-88],[3,-36]],[[207166,935589],[325,-846],[16,-94],[140,-572],[36,-287],[988,-2571],[189,-454],[120,-210],[691,-996],[368,-722],[35,-484],[50,-139],[16,-222],[-17,-307],[-81,-263],[-144,-220],[-140,-310],[-58,-188],[-365,-468]],[[209817,925565],[1046,-922],[377,-619],[278,-171],[747,-608],[358,-153],[54,-48]],[[212677,923044],[118,-26],[275,-118],[271,-149],[256,-219],[77,-8],[156,41],[44,60],[11,89],[-34,70],[75,-17]],[[213926,922767],[-105,77],[-162,332],[-16,180],[108,32],[831,-787],[448,-313],[612,-329],[1053,-758],[146,-62],[126,16],[759,-609],[0,-10],[156,-221],[898,94],[252,-20],[160,-70],[134,-147],[192,-481],[179,-947],[9,-340],[-82,-570],[-131,-209],[-79,-31],[-267,-8]],[[219147,917586],[-23,-1],[-280,38],[-308,166],[-138,328]],[[215480,918346],[-39,-106],[-229,-152],[-201,-238],[85,-153],[57,-191],[28,-230],[-17,-170],[-62,-109],[-161,-131],[-4,0],[-274,44]],[[212555,917567],[53,-133],[-11,-18],[46,-69],[19,-47]],[[212662,917300],[37,-37],[29,-43],[58,-43],[317,-313]],[[213546,916427],[25,61],[35,-25],[108,9],[39,-77],[47,-226],[-22,-390],[-202,-778],[-3,-22],[-251,-181]],[[213436,914397],[1257,1539],[455,238],[277,248],[821,67],[293,-135],[188,-235],[7,-107],[-214,-275],[-39,-138],[-7,-108],[-158,-201]],[[216391,915238],[144,-99],[3,-9],[148,-128],[261,55],[73,-32],[139,-136],[93,-209],[4,-292],[-193,-640],[-343,-209],[-148,-55],[-46,-11]],[[214315,912770],[-274,-200],[-603,24],[-313,-44],[-1512,158],[-3,0],[-686,104],[-744,348],[-68,164]],[[209899,913313],[-65,-224],[-1,0],[-309,-238],[-1485,285],[-176,207],[58,134],[48,60],[41,19]],[[202708,914735],[-104,-115],[-167,-113],[-641,-713],[-240,-175],[-1004,-241],[-228,-46],[-1338,-111],[-521,-221],[-494,-413],[-599,-400],[-1461,-491],[-1352,-275],[-1414,-119],[-122,-22],[-1198,-84],[-40,12],[-473,-34],[-68,-37],[-1705,-226]],[[189539,910911],[-1100,-146],[-397,-18],[-694,-126],[-178,-24]],[[185747,910661],[-45,2],[-24,20],[-880,1172],[-228,378],[-173,419],[68,717],[-45,416],[-20,90],[38,846]],[[182811,915252],[-813,-46],[-607,13],[-1277,-48],[-1276,108],[-674,122],[-588,174],[-201,78],[-1024,463],[-65,53],[-88,172],[-113,292],[-285,379],[-400,434]],[[259244,906231],[-264,129],[-39,33],[-267,348]],[[258621,907070],[-20,125],[25,135],[132,427],[-50,68],[29,120]],[[258966,909007],[314,461],[75,-21],[239,-124],[261,-294],[86,-248],[-26,-265],[29,-383],[83,-502],[21,-364],[-38,-227],[-141,-425],[-118,-197],[-157,-186],[-137,-96],[-16,-1],[-197,96]],[[293784,908054],[781,-153],[210,-75],[229,-11],[463,-90]],[[295467,907725],[483,-95],[63,-111],[93,-539],[10,-289],[-25,-218],[-596,-54],[-1354,-8],[-736,42],[-296,90],[-258,141],[-292,454],[-187,469],[-9,198],[49,180],[70,108],[908,156],[413,-108],[-19,-87]],[[268356,893719],[-192,77],[-96,47],[-116,78],[-128,174],[-65,16],[-82,-58],[-23,-77],[26,-65],[-445,259],[259,265],[-235,84],[-75,101],[-348,-171],[-26,-6],[-367,442]],[[266237,895719],[-292,73],[-31,29],[-276,125],[-43,61],[-67,216]],[[265528,896223],[-98,314],[105,113],[792,-314],[477,-297],[454,-365],[238,-270],[21,-176],[-59,-175],[-139,-175],[109,-203],[356,-232],[356,-132],[573,-70],[82,-49],[-1,-109],[-82,-170],[-127,-145],[-229,-49]],[[264278,893909],[-606,442],[-46,76],[-139,1458]],[[263487,895885],[214,124],[100,18],[80,-31],[321,-307],[49,-159],[312,-488],[182,-388],[247,-803],[2,-153],[-67,-162],[-135,-172],[-145,-67],[-126,31],[-120,126]],[[264828,892133],[223,532],[38,24],[185,-14],[652,-539],[88,-110],[119,-335]],[[266133,891691],[100,-72],[63,-202],[135,-164],[513,-216],[134,-20],[141,-100]],[[268125,890627],[199,-63],[503,-787],[59,-49],[279,-157],[39,-58]],[[270046,888876],[119,-43],[202,-165],[228,-109],[872,-241],[241,-138],[390,-338],[321,-480],[394,-789],[124,-507],[-4,-68]],[[274117,884454],[49,15],[545,-194],[223,-35],[52,13],[233,397],[14,-4],[409,-440]],[[275642,884206],[547,-590],[-20,-97],[-248,-45],[605,-228],[526,-361],[-114,-235],[-438,-408],[-116,-26]],[[276384,882216],[-527,-500],[-57,-46],[-122,-125],[-90,-85]],[[275588,881460],[-18,-25],[-441,-451],[-117,-73],[-441,101]],[[274571,881012],[-141,32],[-463,282],[-1643,747],[-508,158],[-458,65],[-86,870]],[[271047,883565],[-173,93],[-240,166],[-995,234],[-6,3],[-94,76]],[[269539,884137],[-195,155],[-7,127],[62,387],[-136,190],[-119,-3],[-17,72]],[[269127,885065],[-192,-78],[-6,0],[-329,-81],[-529,-264],[-14,-13],[-116,-48]],[[267941,884581],[-117,-181],[-1,-1],[0,-1],[-126,-195]],[[267697,884203],[-71,-819],[-20,-81],[-185,-350],[-814,-905],[-397,-243]],[[266210,881805],[-35,-55],[-232,-55],[-131,-87],[-222,-335],[-330,-822],[-134,-237],[-218,-241],[-451,-368],[-461,-294],[-769,-342],[-429,-116],[-286,115],[-196,779],[-204,1137],[117,819]],[[261332,882388],[-944,-336],[-115,-25],[-761,33],[-754,-514],[-190,-38],[-382,17],[-275,82],[-70,56],[-46,223],[13,233],[96,252],[340,683],[20,29],[11,16]],[[260598,885040],[-218,253],[-31,170],[-223,818],[-57,748],[2,371],[70,471],[609,1596]],[[260975,893391],[10,49],[78,310],[154,378],[286,526],[520,504]],[[262023,895158],[149,146],[128,67],[100,10],[36,-10],[76,-88],[148,-320],[159,-84],[14,-29]],[[262833,894850],[52,-6],[334,-176],[180,-288],[128,-319],[69,-415],[-69,-181],[-267,-273],[-46,-116],[8,-94],[391,-330],[430,-995]],[[264043,891657],[15,2],[54,-150],[96,-71],[119,40],[148,219],[176,17]],[[286938,880844],[107,-12],[-39,-358],[-293,-59],[-385,132],[-376,257],[-301,288],[-527,553],[607,525],[22,-1],[1014,-633],[309,-414],[-12,-114],[-3,-3]],[[282711,879546],[-722,802],[-145,297],[-2,6],[19,36],[537,142]],[[283899,880677],[328,-93],[65,-98],[323,-644],[31,-107],[-15,-208],[-170,-268],[-177,-140],[-372,-207],[-419,-90],[-228,144],[-197,184],[-357,396]],[[269517,877346],[908,460],[520,-38],[625,244],[261,2],[115,-51]],[[271946,877963],[305,-134],[25,-36],[58,-103],[31,-230],[-44,-333],[-72,-303],[-99,-274],[-244,-460],[-762,-786],[-218,-327],[-773,-809],[-623,-573],[-179,-137],[-105,-38],[-162,22],[-341,170],[-346,31],[-500,-258],[-451,49],[-26,322],[-90,273],[-388,575],[282,789],[167,204],[1008,1987],[241,98],[496,-221],[235,-71],[48,3],[50,-24]],[[302516,877387],[-4,13],[227,-50],[258,-78],[700,-277],[629,-423],[210,-401],[210,-295],[62,-224],[-54,-98],[-135,-75],[-193,-23],[-375,44],[-403,123],[-174,110],[-170,499]],[[279550,872518],[-477,-1364],[-23,-53],[-83,-250],[-148,-424],[-121,-293],[-127,-188],[-136,-99],[-147,-7],[-223,210],[-165,236],[-203,405]],[[278201,874549],[207,43],[168,-22],[175,20],[140,85],[382,-219]],[[279532,874028],[234,-386],[11,-101],[-227,-1023]],[[319687,868645],[-85,59],[-31,47],[-106,49],[-253,176],[-22,27],[-840,649],[-91,285],[-8,123],[16,19]],[[318358,870182],[1048,194],[64,-1],[313,-91]],[[319783,870284],[266,-77],[72,-113],[231,-253],[9,-17],[-58,-311],[-16,-401],[-99,-195],[-154,-149],[-125,-279],[-16,-17],[-47,40]],[[311419,862693],[-133,-303],[-209,-174],[-616,-377],[-250,-47],[-115,125],[-7,358],[82,271],[288,562],[258,629],[150,153],[70,-24],[555,-492],[42,-70],[31,-90],[17,-149]],[[307547,854815],[-86,-10],[7,142],[-52,275],[75,139],[122,3],[-50,-418]],[[279246,837365],[-65,86],[0,3],[-4,3],[-75,98]],[[279102,837555],[-36,-35],[-24,13],[-55,-43],[-601,-1067],[-343,-410],[-119,64],[-19,49]],[[279112,838590],[-85,-651],[-11,-30],[6,-8],[-46,-352]],[[279414,838042],[126,667],[73,290],[94,512],[6,54],[214,463]],[[280265,839523],[52,-24],[22,-43],[230,-102],[89,-87],[45,-212],[-82,-126]],[[280308,838444],[-213,-493],[-46,78],[-110,-214],[-502,-1388],[-24,-54],[-123,-212],[-110,-127],[-88,-24],[-219,30],[-229,-211],[602,1536]],[[274641,820152],[454,-611],[181,-277],[334,-598],[100,-283],[94,-334],[3,-261],[-62,-237],[-196,-79],[-577,158],[-241,113],[-710,427],[-1352,625],[-461,311],[-57,139],[290,549]],[[309467,994117],[1562,152],[815,25],[942,93],[332,85],[36,4]],[[313154,994476],[870,200],[238,11],[705,137],[1365,385],[1091,208],[494,-91],[416,-145],[218,-13],[144,-113]],[[318695,995055],[5,175],[59,46],[234,305],[137,111],[92,20],[431,53],[55,-2],[356,-145],[82,-71],[-16,-10]],[[320889,994985],[1066,328],[312,26],[952,-98],[395,-118],[72,-126],[-253,-133],[-157,-115],[-61,-97],[42,-34],[-70,-41]],[[324315,993897],[444,-267],[-1,-43],[-455,-389],[11,-99],[1943,372],[355,25],[1852,-157],[93,-15]],[[328557,993324],[954,-320],[204,-203],[265,-347],[-185,-362],[-949,-563],[-981,-439],[-578,-395],[-889,-216],[-3044,-954],[-1487,-306],[-624,-220],[-89,-2]],[[316364,988598],[1812,-9],[-98,-102],[-404,-99]],[[317674,988388],[-186,-45],[-835,-95],[-1725,-77],[-5109,-170]],[[313481,987866],[980,-184],[-19,-40],[-168,-166],[-147,-81],[-262,-60],[-8184,-1788]],[[308562,985893],[816,137],[226,-36],[624,78],[4062,780],[3734,625]],[[318024,987477],[329,35],[424,28],[1278,-99],[-146,-320],[-1809,-910],[-878,-312],[-298,-16]],[[316228,985567],[-122,-65],[-309,-110],[-911,-493],[-704,-300],[-2444,-902],[-2378,-1068],[-542,-321],[-90,-39]],[[308728,982269],[-170,-116],[-112,-66],[-91,-73],[-44,-29]],[[308067,981818],[-62,-81],[-783,-620],[-419,-234],[-508,-96],[-599,40],[-539,141],[-127,64],[51,87]],[[304344,980854],[113,-54],[507,-540],[-145,-261],[-2320,-275],[-1027,-244],[-315,-34],[-1700,216]],[[302451,979173],[851,156],[146,-9],[528,-148],[26,-134],[-551,-430],[-789,-244],[-1002,-175]],[[301502,977989],[522,69],[458,-175],[-11,-164],[-523,-386],[-248,-123],[-1602,-359],[-697,-84],[-614,45],[-1600,447],[-27,28]],[[292707,977376],[1145,5],[450,-74],[945,-35],[653,-97]],[[295900,977175],[26,-9],[168,-131],[491,-521],[78,-280],[-108,-261],[-149,-182],[-188,-104],[-291,-53],[-1110,37],[-416,-64],[-481,-152],[-604,-66],[-1088,30],[-1282,-223],[-678,-40],[-630,84],[-186,36],[-749,229],[-859,125],[-353,26],[-506,98]],[[286985,975754],[-70,-56],[-523,38],[121,-143],[238,-27],[-14,-12]],[[286737,975554],[294,-23],[1036,-379],[347,-360],[-2238,94]],[[288746,974214],[1131,-39],[115,-51],[692,-66],[722,-145],[954,174],[747,-26],[-142,-1041],[-301,-102],[-1128,0],[-1119,117],[-180,35],[-345,157],[-609,142],[75,155]],[[286866,973620],[1740,-295],[-155,-24],[-619,23],[-420,-105],[-665,4],[-1342,-136],[-1285,-24]],[[284120,973063],[-278,22],[-436,73],[-789,36],[-77,-4],[-197,16]],[[280909,973082],[852,-15],[19,-36],[381,-37],[555,-197],[515,-302],[361,-108],[-215,-133]],[[283478,972092],[599,334],[94,13],[522,142],[1904,233],[412,18],[1270,-133]],[[288279,972699],[151,-16],[244,-63],[346,-154],[306,-287],[2,-177]],[[289328,972002],[815,23],[413,-19],[837,-136],[1071,-477],[-10,-649]],[[292447,970293],[-1355,-358],[-527,-47],[-1582,41],[-1132,-52],[-118,-56],[776,-117],[157,-46],[-5,-10]],[[288661,969648],[150,-31],[1499,-434],[697,-283],[122,-165],[-938,-596],[-542,-72]],[[287386,967700],[2374,-133],[-499,-711],[-288,-99],[-300,-34],[-772,22],[-859,-276],[-449,-66],[-410,-35],[-1339,118],[-976,-5],[-1871,160]],[[283024,965772],[78,-89],[6,-378],[94,-780],[-81,-570],[-255,-360],[-321,-266],[-582,-258],[-598,-161],[-447,-57],[-745,-9],[-2135,-186],[-1043,11],[-696,68],[-1187,393],[-1159,607],[-396,162],[-126,31],[-19,11]],[[273634,963096],[515,-16],[79,-34],[-65,-125],[-616,-196],[-679,-88],[-180,1],[-677,106]],[[272011,962744],[46,-124],[-18,-56],[56,-43],[31,-85]],[[272774,961808],[1754,649],[146,24],[886,-60],[349,-89],[1107,-552],[154,-26],[819,278],[1185,15],[434,-223],[166,-433],[21,-351],[-78,-167],[-190,-150]],[[281778,960312],[96,262],[192,120],[239,83],[226,-19],[343,-255],[463,-490],[42,-573],[-376,-656],[-460,-430],[-867,-341],[-53,116]],[[281623,958129],[-731,-425],[-154,-60],[-546,-279],[-138,-93],[-127,-51]],[[279927,957221],[-1507,-612],[-206,-59],[-439,-101],[-516,-52],[-1399,-377],[-304,-17],[-453,62],[-94,183],[114,322],[537,676]],[[275683,957453],[-566,260],[-47,43],[-277,168],[-267,84],[-43,-4],[-242,111]],[[274241,958115],[-272,-162],[-287,-93],[-327,-19],[-348,62],[-293,153],[-587,641],[-221,82],[-133,-9],[-1583,1088]],[[270687,959004],[590,-331],[217,-299],[149,-360],[-69,-283],[-2229,-109],[-310,358]],[[268814,957935],[120,-333],[-570,-28],[-1049,62],[-716,438],[-168,271],[13,100]],[[266417,958672],[-241,84],[-131,213],[-13,-162],[-169,60]],[[265670,958814],[321,-556],[-48,-627],[-227,-25]],[[265067,957086],[185,-84],[-1756,-224],[-562,52],[-936,210],[-1209,508],[-501,337],[-196,335],[-146,183],[-95,31],[-301,-404],[-329,-827],[-826,214],[-833,166],[-101,62]],[[256732,958105],[226,-477],[-7,-366],[-2,-1],[-1683,156],[-432,-24],[-398,94]],[[254226,959579],[-47,-79],[-1,45],[-96,-211],[-114,-193]],[[253613,958536],[-266,-866],[-24,7],[-1190,79],[-718,426]],[[251296,958730],[6,437],[87,697],[2025,984],[348,272],[197,91]],[[254150,961299],[-18,67],[204,88],[1651,206]],[[257107,961592],[764,216],[283,60],[590,51],[111,62],[-171,91],[-631,635],[-227,144],[-230,64],[-387,24],[-551,319],[-218,209],[-274,333],[-438,633],[-436,705],[216,388],[722,304],[723,211],[724,117],[125,1],[532,-86]],[[258334,966073],[872,-142],[835,-264],[589,-369],[740,-782],[120,-154],[131,-248]],[[265051,962992],[-38,53],[301,18],[1144,107],[314,5]],[[266772,963175],[89,45],[580,116],[314,165],[162,239],[35,31],[527,267]],[[269722,966129],[-924,-1058],[-198,-202],[-345,-309],[-976,-524],[-413,-85],[-666,26],[-883,232],[-491,-174],[-536,53]],[[263086,964896],[-6,67],[-2,308],[206,192]],[[262972,965633],[-127,87],[-60,81],[29,19]],[[262718,966071],[-196,89],[-154,211],[784,489],[495,232],[844,-129]],[[264445,967113],[-413,209],[894,611],[227,28],[57,2],[838,-125],[-460,180],[-449,265],[-663,-45],[-127,366]],[[264334,968997],[-39,-22],[196,941],[-670,-1272],[-683,-667],[-413,-337],[-464,-195],[-1755,-167],[431,625],[48,112],[190,119]],[[261478,969038],[-343,-376],[-221,-182],[-989,-518],[-741,-272],[-610,-143],[-1184,35],[-483,213],[364,1773],[59,59],[547,467],[102,109],[1678,1318],[175,32],[1123,153],[1014,78],[443,119],[1592,217]],[[264004,972120],[218,-24],[258,-70],[2442,-269],[514,-105],[817,-318]],[[269868,971190],[-851,371],[18,11],[438,215],[1522,-22],[420,39],[315,82],[518,0]],[[272274,972537],[-1467,-390],[-374,15],[-1151,189],[-1875,31],[-1888,308],[-230,187],[-200,252],[104,178],[408,102],[352,21],[531,-130],[149,-234]],[[267085,973517],[-156,56],[-202,99],[-609,366],[-510,450],[-393,446],[-413,331],[-1282,1255]],[[262436,976871],[-1842,314],[-652,518],[-78,393],[21,145]],[[259651,978917],[-97,151],[-150,280],[322,796],[401,273],[489,57],[2829,-249],[263,8],[200,-29]],[[263908,980204],[2717,-62],[809,-171],[1055,-484],[943,-546],[908,-365],[835,-500],[911,-742],[132,-87],[850,-840]],[[278404,976825],[-1227,-129],[-198,25],[-1185,-24],[-823,107],[-469,239],[-499,321],[-793,605],[-2,2],[412,172]],[[271561,978885],[-1286,810],[-723,566],[-72,264],[405,132],[6552,707]],[[278580,982256],[-3,0],[105,58],[125,133],[3411,797],[77,14],[1082,132],[1800,101]],[[283839,983995],[-243,-29],[-274,0],[-1519,98],[-459,179],[95,291],[146,251],[328,300],[1214,691],[1359,591],[540,169],[999,272],[121,78],[757,237]],[[284952,986813],[-491,-125],[-1051,-205],[-428,-172],[-436,-111]],[[282546,986200],[-1867,-959],[-325,42],[-350,-60],[-308,-168],[-258,-309],[-208,-448],[-190,-306],[-170,-162],[-430,-236],[-1033,-461],[-2427,-644],[-816,-164],[-700,-26],[-1516,-243],[-1489,-126],[-694,102],[323,314],[689,333],[900,180]],[[272373,983555],[-1338,-414],[-198,-15],[-782,-158],[-1726,-130],[-83,-29],[-378,168]],[[267577,982712],[-40,-181],[-552,-356],[-530,-269],[-399,-110],[-466,-55],[-222,-12],[-1885,-31],[-448,29],[-1164,326],[-1030,-113],[-426,22],[-781,230],[-233,150],[35,201],[394,330],[472,298]],[[260302,983171],[387,244],[1424,668],[1092,374],[1234,252],[1296,130]],[[271100,985561],[-2492,-211],[34,53],[-3741,-295],[-2208,-258],[-475,-41]],[[262218,984809],[-59,-22],[-439,-51],[-517,-137],[-741,-366],[-2352,-1322],[-693,-335],[-1061,-79],[-811,113],[-634,168],[-1092,391],[-823,211],[-390,141],[-230,142],[-187,168],[-143,191],[112,66],[1465,229]],[[253623,984317],[1271,198],[835,-19],[1362,-109]],[[259023,984510],[1301,380],[1316,369],[233,84],[2348,687]],[[264266,986347],[-654,-97],[-296,21],[-545,-56],[-1313,-261],[-2077,-701],[-1812,-247],[-4477,-132],[-1421,-196],[-624,42],[-470,191],[-524,354],[93,284],[969,289],[493,-60]],[[251929,986119],[-366,52],[-551,143],[-106,157],[515,261],[173,36]],[[251594,986768],[963,383],[520,179],[751,162],[1376,102],[1416,-55],[12,21],[1097,-138]],[[257729,987422],[-1084,161],[30,53],[-1401,194],[-374,13],[-250,37]],[[254650,987880],[-166,-23],[-259,8],[-1387,-136],[-3681,-830],[-314,25],[-535,143],[153,205],[474,210],[676,200]],[[248220,988465],[-228,-102],[-308,-49],[-747,-287],[-527,-123],[-307,42],[-781,339],[101,285],[622,357],[453,205],[1831,508],[305,72],[216,9]],[[252717,990171],[-9,177],[368,174],[2373,483],[184,-11],[737,-66]],[[256370,990928],[348,-31],[492,-138],[517,-320],[447,-197],[139,-105]],[[258345,990360],[6,41],[443,234],[490,89],[511,-5],[267,-14],[609,-116],[788,-294],[636,-133],[299,8],[375,163],[696,3],[383,-166]],[[264530,990495],[-1435,182],[-69,21],[-3528,847],[-86,164],[1117,46]],[[262976,992074],[-442,520],[19,9],[569,230],[1053,262],[301,-51],[5,-36]],[[264500,992878],[603,-74],[26,-11],[515,-145],[1512,-137],[647,-143],[1153,-823],[460,-269],[541,-228],[232,-167]],[[270189,990881],[827,-34],[217,-18],[5,9],[256,-10]],[[272078,990804],[-770,173],[4,8],[-915,389],[-251,225],[108,191],[195,101],[282,9],[723,-171],[1606,-483],[295,-99]],[[275862,990509],[723,-92],[353,-51],[1046,-400]],[[278623,989722],[133,7],[506,-170],[113,19],[-211,171],[190,10]],[[277754,990607],[-860,135],[-3195,834],[-1470,507],[-712,343],[-538,347],[-11,190],[507,221],[682,176],[181,15],[1456,2]],[[273093,993486],[-8,1],[23,17],[-771,263],[-455,228],[15,159],[895,118],[890,-110],[560,-149],[222,-99]],[[275962,993930],[-1216,613],[-154,125],[-87,172],[139,100],[327,103],[981,-59],[1615,-372],[36,-2],[204,-104]],[[277807,994506],[1633,-15],[1018,-65],[795,28],[-119,85],[-1154,230],[-1208,309],[-533,186],[-390,251],[-464,208],[-38,100],[746,162],[1961,-31],[778,-107],[2299,-467]],[[283136,995682],[310,112],[948,-61],[385,-75],[704,-272],[1395,-613],[864,-470]],[[287742,994303],[656,-515],[84,-100],[59,-13],[152,-120]],[[290206,993986],[-125,43],[14,6],[-214,207],[-1234,473],[-280,203],[-32,17],[-176,131]],[[288159,995066],[-181,67],[-228,127],[-1385,612],[-369,285],[-232,242],[3833,228],[3697,-201],[601,-142],[394,-199],[387,-303],[593,-309],[1197,-474],[307,-53],[98,-49]],[[298376,994860],[-992,234],[-814,334],[-575,358],[3,242],[47,86],[2054,740],[563,40],[1429,33],[774,-361],[-141,-100]],[[301637,996443],[1792,498],[436,18],[2018,43],[40,-6],[237,-100],[310,-210],[-104,-124]],[[306498,996343],[4266,-208],[50,-16],[506,-30],[176,10],[3996,-195],[-6,-110],[-487,-265],[-418,-164],[-354,-115],[-4109,-811],[-230,-103],[-590,-123]],[[246870,983189],[740,-252],[216,-111],[220,-695]],[[248046,982131],[286,-47],[175,-62],[888,-164],[988,-294],[178,17],[345,174],[57,7],[473,32],[427,-33],[260,-125],[191,-183],[79,-131],[12,-102],[-195,-197],[21,-76],[117,-92],[20,-107],[-195,-420],[54,-155],[227,-175],[29,-34]],[[254502,979143],[496,135],[2,-1],[0,2],[42,11]],[[255042,979290],[-38,28],[5,40],[-163,244],[-348,347],[-566,157],[-103,76],[-11,22],[72,402]],[[253948,980932],[511,217],[748,7],[459,-82],[792,-257],[82,-140],[42,-276],[33,-557],[-19,-119],[-326,-152],[-756,-165]],[[255514,979408],[345,-85],[-88,-127],[171,-61],[582,-47],[492,-107],[800,-445]],[[257816,978536],[362,-201],[218,-342],[-201,-525],[-263,-844],[-211,-193],[-15,-21],[-185,-111]],[[257521,976299],[30,-109],[-38,-53],[59,-22],[72,-258]],[[257791,975922],[573,255],[177,24],[178,40],[590,286],[866,-66],[291,-74],[144,-101],[263,-320],[124,-242],[-155,-229]],[[261487,975817],[843,221],[166,-196],[905,-845],[311,-349],[60,-258],[-387,-301],[-302,-150],[-1509,-434],[-262,-56]],[[260179,973055],[-7,-5],[-313,-113],[-493,-278],[-514,101]],[[257899,971777],[-8,-8],[-242,-163],[-646,-564],[-385,-247],[-678,180],[-169,263],[-94,593],[-13,245],[21,130],[85,210],[294,507],[-35,53],[-98,-31],[35,66]],[[254884,971836],[64,-987],[-98,-80],[72,-112],[531,-154],[94,-67],[58,-123],[24,-177],[-26,-164],[-160,-252],[-298,-102],[-380,115],[-823,622],[-357,-34],[-90,-71],[77,-223],[141,-278],[-71,-49]],[[253642,969700],[226,-593],[-114,-337],[-235,-544],[-161,-291],[-87,-39],[-409,-8],[-350,146],[-1040,952],[-79,62],[-196,204]],[[250055,970438],[-120,-66],[-38,12],[-13,-40],[-78,-43]],[[250312,969306],[263,-211],[99,-109],[141,-189],[583,-908],[19,-75],[-100,-73],[-149,41],[-199,157],[-386,164],[-422,315]],[[248426,968463],[111,-5],[159,-73],[178,-129],[131,-165],[87,-201],[-167,-127],[-632,-80],[-844,51],[-1365,175],[-1360,289],[-1256,449],[-908,451],[-359,240],[-113,179],[341,157],[176,30],[1416,168]],[[244021,969872],[107,59],[686,74],[-189,113],[-133,15],[85,47]],[[244577,970180],[-563,10],[-1557,184],[-714,46],[-380,-67],[-437,40],[-341,203],[-452,385],[-229,255],[31,100],[172,56],[228,-11],[349,-83]],[[241124,971453],[-349,104],[-43,17],[-72,17],[-285,85]],[[240375,971676],[-80,3],[-1135,274],[-590,335],[-108,131],[-45,128],[19,127],[591,255],[1823,604],[207,30],[3988,148]],[[243039,974096],[-261,61],[146,221],[1111,121],[268,-8]],[[246904,974991],[-1052,-103],[-554,-24],[-1543,51],[-657,389],[-445,66],[-492,-3],[-573,-122],[-980,-361],[-471,-84],[-1063,-374],[-296,27],[-149,44],[-44,73],[192,248],[279,170],[-57,58],[-417,35],[-173,-2],[-450,129]],[[237537,974975],[-85,-42],[-913,-245],[-550,-245],[-165,-22],[-593,384],[-172,38],[-326,149]],[[234733,974992],[-574,122],[-84,66],[194,645],[277,132],[725,108],[178,49],[1370,175]],[[237453,977079],[-138,-77],[-40,-5],[-1089,-287],[-900,-142],[-710,1],[-519,41],[-328,80],[-395,183],[-585,384],[-175,224]],[[232574,977481],[-1063,1362],[-200,355],[127,185],[2158,-321],[451,-145]],[[236731,978870],[9,41],[354,-5],[98,40],[31,107],[-36,174],[0,2],[1072,387]],[[238677,979619],[-533,141],[15,10],[-64,3],[-483,127]],[[237596,979893],[-209,-90],[-138,6],[-1673,-397],[-590,4],[-670,567],[-716,-99],[-338,45],[-526,142],[-259,125],[-167,154],[-72,130],[25,105],[141,118],[591,156],[226,-17]],[[233221,980842],[806,-64],[8,-1],[6,0],[476,-37]],[[234517,980740],[1,44],[68,1],[-66,63],[3,108]],[[234523,980956],[-733,344],[-156,87],[-8,25]],[[235993,982150],[322,-44],[94,-114],[439,9],[692,-85],[179,1],[251,-34]],[[239118,981729],[-359,193],[330,1],[-280,160],[-482,139],[-66,11],[-293,519]],[[237681,982910],[-1042,166],[-605,180],[-550,582]],[[234871,983846],[-7,80],[107,130],[504,444]],[[235475,984500],[816,311],[1155,-98],[2,0],[45,-27]],[[238904,984654],[-281,301],[491,130],[1434,-167]],[[241046,985796],[-715,-28],[-1149,21],[-600,69],[-233,94],[-68,142],[-35,147],[-4,150],[35,92],[113,50],[333,60],[311,2],[174,-23]],[[240056,986531],[375,117],[311,34],[165,-21],[2646,-582]],[[243553,986079],[382,-157],[515,-297],[312,-311],[363,-494],[1199,-1053],[119,-126]],[[224141,977559],[-33,14],[-33,97],[-508,281],[-324,-15],[-139,58]],[[223104,977994],[-715,-73],[-167,12],[-158,84],[-99,120],[-93,489],[16,172],[6,16],[201,310]],[[222095,979124],[443,230],[232,92],[199,24],[606,-75],[121,-95]],[[224055,979305],[351,50],[168,-3],[380,-77],[338,-174],[199,-262],[88,-332],[63,-770],[-58,-387],[-142,-286],[-123,-67],[-167,-10],[-638,188],[-373,384]],[[214722,973183],[82,-452],[-34,-76],[-133,-128],[221,-92],[2,-11]],[[215609,972360],[281,501],[253,74],[128,52],[808,236],[411,-49],[1124,-571],[152,-20],[229,-118]],[[218995,972465],[75,-716],[-35,-81],[53,-132],[4,-1],[2,-20]],[[221140,971586],[2,0],[1039,-482],[647,-644],[367,-166],[-274,-690],[-194,-115],[-82,-101],[179,-234],[30,-82],[11,-120],[-27,-233],[75,-131],[194,-51],[1188,-773],[339,-272],[218,-267],[135,-333],[14,-113],[-171,-184],[-187,-523],[-105,-120],[-324,-68],[-577,-77],[-468,-49],[-169,-36],[-778,-105]],[[222222,965617],[-34,3],[-729,189],[-865,349],[-175,154],[-96,89],[-206,265],[-57,108],[-87,447],[-17,35],[34,80]],[[219417,967808],[-79,20],[-100,115],[-472,25],[-1744,430]],[[216661,968486],[-256,-40],[-529,-23],[-617,-106],[-224,192]],[[215035,968509],[-456,390],[56,92],[-143,-17],[-23,20]],[[214469,968994],[-1205,-162],[-1257,-145],[-267,-126],[-108,-29]],[[211632,968532],[-40,-41],[-333,-156],[-1049,56],[-523,148],[-195,94],[-595,361]],[[208420,969615],[-65,149],[-6,59],[673,389],[69,10],[1426,-234],[1248,-120],[37,9],[673,-89]],[[211567,972159],[-656,378],[-113,86],[-109,25],[-675,-199],[-948,-770],[-226,-111],[-217,6],[-207,124],[0,25],[581,603]],[[209233,972839],[-373,88],[-253,83],[-1132,-106],[-630,-4],[-97,168],[-27,315],[26,296],[157,462],[219,353],[17,17],[824,74],[793,-39],[2452,220],[718,23],[778,-216],[651,-120],[707,-348],[612,-668]],[[235357,969515],[935,-369],[54,-40],[77,-178],[1,-90],[-352,-193],[-705,-295],[-171,-222],[477,-210],[159,-107]],[[235832,967811],[315,-210],[142,-174],[4,-176],[-17,-26],[-407,-471],[-311,-144],[-476,15],[-225,-44],[-609,-230],[-659,-152],[-743,-98],[-837,-59],[-208,-80],[-364,-48]],[[231437,965914],[-164,-139],[-257,-89],[-432,-35],[-141,127],[-65,187],[33,129],[91,161],[-206,150],[-926,288],[-29,22],[292,436]],[[230923,967588],[-232,72],[18,35],[-230,33],[-821,271],[-89,11],[-1563,486]],[[228006,968496],[-375,290],[-46,295],[-125,99],[-391,155],[-57,51],[-116,230],[-18,126],[23,114],[709,242],[-99,167],[-539,625],[-141,348],[21,121],[338,194],[469,4],[1241,-56],[249,-32],[1236,-357]],[[231347,970835],[778,-185],[471,-333],[19,-40],[-104,-377]],[[233556,969627],[512,195],[321,19],[176,-12]],[[215908,965218],[-522,285],[-39,330],[5,119],[215,155],[229,23],[1180,70],[692,-40],[882,-224],[358,-144],[182,-102],[226,-205],[74,-91],[49,-162],[-1099,-35],[-520,-64],[-293,-124],[-549,-52],[-533,22],[-182,46],[-355,193]],[[235974,965420],[1503,32],[1371,-73],[1199,64],[106,-13],[653,-162],[24,-8],[251,-175],[228,-296],[-585,-180],[-501,-918],[-67,-45],[-546,-13],[-266,-73],[-1591,130],[-635,9],[-588,42]],[[236471,963739],[-511,-25],[-2547,34],[-102,36],[-134,79],[-577,539],[-35,212],[104,249],[88,118],[292,140]],[[233049,965121],[150,71],[1012,319],[554,58],[213,-69],[57,-258]],[[206540,963481],[-185,256],[-98,256],[-203,163],[-95,133],[-79,302],[-508,584],[68,69],[51,23],[445,79],[639,-91],[556,-304]],[[207131,964951],[149,-81],[249,-187],[599,-555],[185,-245],[36,-338],[108,-183],[115,-7],[27,-58]],[[209325,963054],[326,-240],[69,-103],[131,-351],[-9,-167],[-102,-346],[-179,-122],[-426,-105],[-845,240],[-554,104],[-458,426],[-434,515],[-8,14]],[[249773,962151],[-163,-16],[-244,8],[-1786,582],[-526,259],[-241,193],[-82,230],[-23,327],[5,356],[71,176]],[[247811,964708],[626,-40],[388,-66],[216,-62],[926,-431],[480,-317],[332,-291],[70,-379],[-1,-231],[-48,-169],[-97,-105],[-240,-148],[-683,-318],[-7,0]],[[240448,957695],[322,285],[900,658],[141,-11],[644,-86],[251,17],[576,-45]],[[243600,958557],[626,213],[719,180],[626,66],[128,11],[565,-22],[451,-79],[162,-36],[1072,-476],[371,-227],[139,-161],[33,-118],[-219,-184],[-673,112],[-877,78],[-423,78],[-11,3],[-6,0],[-287,53]],[[245520,957904],[505,-91],[44,-141],[225,-56],[1068,-43],[4234,-761]],[[252068,956620],[96,-129],[-43,-101],[-155,-126],[-318,-169],[-1722,-126],[-1591,33],[-633,72],[-1203,263],[-118,-17],[-911,220]],[[246226,956134],[19,-11],[201,-200],[627,-95],[40,-10]],[[247113,955818],[168,-44],[490,-170],[251,-176],[218,-23],[-3,-9]],[[249726,954947],[51,-25],[132,-116],[127,-11],[539,-263],[271,-420],[126,-56],[385,76],[649,-365],[202,-196],[1,-146],[-144,-229],[-291,-312],[-734,-367],[-57,-110],[802,40],[1189,-855]],[[253491,951841],[-199,345],[-13,65],[-124,295],[18,118],[79,141],[126,89],[192,66],[194,-1],[211,-79],[1021,-786],[13,3],[8,-6]],[[255017,952091],[1348,337],[180,-127],[198,-316],[93,-52],[432,562],[659,36],[922,-560],[419,-92],[458,-415]],[[259990,951408],[573,52],[683,-58],[58,125],[22,2]],[[261425,951684],[-144,70],[-361,282],[211,124],[1339,320],[384,-28],[748,298],[667,159],[313,28],[404,-7],[610,296],[3,1]],[[265599,953227],[12,7],[701,341],[315,102],[201,203],[1275,-252]],[[268103,953628],[201,2],[481,-125],[400,33],[451,110],[208,3]],[[269844,953651],[1344,333],[51,9],[475,-12],[170,-15],[1317,-201],[1053,-230],[257,-95],[-432,-275]],[[275081,952759],[759,106],[472,-2],[571,-78],[455,-283],[108,-113],[-18,-117],[-447,-306],[73,-65],[447,-71],[682,-24],[452,-54],[86,-28],[207,-382],[217,-529],[-3,-180],[-262,-279]],[[278880,950354],[-116,-123],[-923,-463],[-1057,-396],[-68,-103],[338,-189],[348,-83],[41,3],[114,-156]],[[277642,948926],[107,103],[697,149],[378,-41],[273,-131],[179,-182],[164,-243],[-296,-222],[-1212,-275],[-717,362],[-241,80],[-162,-32],[92,-158],[197,-164],[-70,-237]],[[277184,947506],[4,-238],[-23,-228],[-111,-404],[-18,-29],[-20,-9],[-48,-5],[-2597,-87],[-317,-77],[-527,-215],[-1449,-160]],[[272078,946054],[-287,31],[-721,235],[-641,-59],[-251,30],[-542,209],[-94,75],[-251,309]],[[269291,946884],[-20,26],[-152,344],[13,230],[70,333],[-43,166],[-155,1],[-172,69],[-519,334],[-207,64],[-73,54]],[[268033,948505],[-22,-25],[-17,5],[-60,-54],[10,-27],[-77,-87]],[[268322,947840],[113,-398],[-32,-121],[-52,-140]],[[268351,947181],[-63,-166],[-321,-396],[-250,-117],[-684,-9],[-914,-254],[-772,-65],[-534,54],[-420,133],[-272,151],[-264,216],[-139,16],[-45,-298],[-802,11],[-211,250],[-89,-2],[-40,-197],[-42,-85],[-40,-57],[-70,-48],[-735,-212],[-410,-1],[-428,242],[-281,-24],[-360,-131],[-875,248],[-209,10],[142,-318],[-1344,-77],[-556,70],[-427,-126],[-27,-2]],[[256869,945997],[-504,-28],[-826,80],[-1113,28],[-56,5],[-206,88],[-152,187],[-6,167],[56,231],[169,344],[283,456],[98,241],[-255,111],[-53,50],[-28,108]],[[254155,948100],[-69,-29],[-17,2],[-408,-176],[-5,-8],[-613,-260],[-9,43],[-90,151],[-112,-8],[-109,-83],[-106,-158],[-160,-57],[-213,43],[-75,-78],[62,-198],[21,-185],[-18,-174],[-184,-167],[-522,-244],[-102,-27],[-456,-63],[-538,-25],[-475,73],[-962,293],[-317,8],[-382,133],[-474,364],[-289,65],[92,449]],[[246867,947524],[0,-11],[-6,-4],[-94,-154],[81,-357],[-92,-26],[-477,129],[-469,-98],[-100,25],[-27,14],[-310,247],[-571,262],[-251,294],[-392,917],[-199,607],[25,124],[291,171],[-44,134],[-362,341],[-391,286],[-116,199],[-53,200],[-52,291],[-3,214],[47,139],[164,318],[366,485]],[[244127,953722],[-143,216],[-54,133],[-163,196],[-75,113]],[[241431,957126],[-266,7],[-33,8],[-53,-6],[-356,8]],[[239638,956595],[-2250,119],[-125,20],[-120,-7],[-314,17]],[[236829,956744],[-145,-79],[-564,-164],[-770,39],[-206,249],[-1,9]],[[236492,956928],[-1983,298],[-736,211],[-327,176],[-223,241],[74,157],[275,63],[48,-6]],[[233835,958041],[210,187],[133,80],[125,125],[-33,-6],[176,157]],[[234115,958402],[-4,-2],[-426,-75],[-272,19],[-1857,788],[-200,49],[40,306]],[[231397,959495],[216,-3],[80,-5],[23,4],[613,-9]],[[232329,959482],[-194,125],[83,82],[-88,80],[-633,263],[-306,199],[-118,145],[122,206],[32,139],[119,46],[636,-68]],[[232472,960967],[0,5],[691,211],[153,25],[27,2]],[[233343,961210],[828,59],[87,-2],[3448,-858]],[[237706,960409],[290,-16],[73,-23],[520,-51],[174,31],[831,-46],[382,-162],[522,-364],[269,-111],[308,-224],[3,-5],[4,-18],[-432,-1175],[-168,-152],[-162,-207],[-138,-263],[294,147],[-28,-75]],[[248524,959561],[131,119],[96,40],[934,204],[258,-2],[278,-59]],[[250814,959228],[16,-47],[-21,-59],[-219,-246],[-96,-171],[0,-168],[48,-243],[88,-160],[-9,-36]],[[250621,958098],[-125,-189],[-285,29],[-139,-79],[-223,45],[-306,168],[-359,331],[-409,492],[-320,424],[-18,116],[49,92],[38,34]],[[228857,956288],[78,-876],[-84,-123],[-101,-435],[-6,-230],[136,-359],[4,-168],[-257,-286],[-545,-250],[77,-131],[1020,-275],[15,-645]],[[227935,950704],[246,-29],[6,-69],[410,-411],[125,-234],[-40,-141],[-347,-63],[-121,30],[-356,186],[-206,281],[-65,-10],[-64,-135],[41,-137],[241,-250],[102,-299],[-39,-31],[-166,-75],[-260,-56],[-484,-3],[-760,-135],[-375,-21],[-364,73],[-487,17],[-405,-32],[-248,60],[-225,140],[-263,-34],[-573,-355],[-888,113],[-768,28],[-54,18],[-138,101],[-179,231],[-352,719],[7,18],[327,107]],[[221524,950408],[-3,20],[279,32],[17,62],[-333,141],[-2,13]],[[221482,950676],[-51,10],[-220,93],[-385,104],[-113,207]],[[221070,951682],[151,50],[224,60],[32,23],[656,214]],[[222981,952782],[-11,49],[388,110],[1060,78],[41,176],[-2001,-101],[-2741,-360],[-400,-84],[-562,-76],[-592,86],[-3000,-557],[-32,0],[-131,20],[-225,127],[-217,230],[-107,132],[194,230],[881,438],[440,384],[-51,207],[349,368],[561,52],[954,-302],[312,-190],[197,-240]],[[218795,953492],[-31,60],[349,24],[407,210],[-103,24],[-692,-111],[-47,19],[-196,374]],[[218211,954335],[-169,152],[-3,6],[-6,151],[213,286],[-742,88],[-454,552],[2,6],[249,289],[674,397],[-78,110],[-980,-9],[-216,51],[-333,197],[160,480],[238,245],[294,236],[93,34],[360,-39]],[[217513,957567],[801,-88],[186,-75],[558,-386],[142,-221],[-17,-212],[106,-156],[433,-228],[1518,-962],[700,-702]],[[223373,954656],[-308,15],[21,68],[-804,413],[-202,219],[-171,299],[75,97],[233,33],[588,-39],[692,81],[-767,126],[-501,167],[-336,5],[-354,482],[564,77],[166,51],[15,74],[-289,179],[-258,98],[-1322,217],[-470,242],[-150,116],[-47,112],[169,286],[615,310],[117,55],[495,165],[824,116],[1285,-239]],[[223253,958481],[248,-47],[583,-376],[204,-183],[95,-318]],[[225202,957718],[2,2],[100,9],[-43,81],[506,783]],[[226141,958798],[-673,123],[54,26],[569,43],[221,-68],[603,-369],[-57,-15]],[[226530,958451],[2015,-557],[63,-159],[31,-264],[-33,-204],[-98,-143],[-5,-165],[89,-186],[250,-317],[15,-168]],[[209999,957695],[-300,122],[-190,353],[-73,252],[48,140],[171,102],[12,6]],[[209667,958670],[92,43],[782,201],[363,0],[34,-8],[248,-109],[39,-44],[-29,-146],[-149,-183],[138,-33],[423,118],[199,15],[205,-90],[173,-126],[80,-146],[1096,-363],[385,-163],[49,-108],[-137,-156],[-324,-203],[-310,-137],[-447,-110],[-2138,-16],[-341,76],[-21,27],[-4,655]],[[214064,954475],[2160,472],[393,-244],[27,-84],[-109,-69],[-752,-192],[-293,-154],[-244,-359],[-190,-166],[-1011,-100],[-1031,5],[129,230],[921,661]],[[210230,955454],[-65,19],[-182,146],[154,436],[940,240],[1224,208],[1315,315],[1028,-26],[314,-118],[123,-171],[96,-365],[12,-55],[-154,-285]],[[235418,947869],[-119,-18],[-442,19],[-848,144],[-446,188],[-492,467],[-243,108],[-228,-168],[-89,37],[-63,112],[-68,203],[-120,103],[-482,-54],[-87,68],[-23,177],[7,154],[75,211],[57,90],[463,607],[251,46],[311,124],[172,359],[-1,18],[397,370]],[[233875,951885],[70,96],[303,211],[953,304],[935,263],[313,32],[638,-41],[615,-176],[474,-291],[965,-718],[440,-435],[233,-446],[210,-256],[260,-552],[-95,-216],[-55,-290],[25,-138],[179,-448],[32,-182],[9,-383],[-76,-499],[-51,-92],[-73,-42],[-36,-129],[4,-216],[-73,-131],[-147,-47],[-996,-99],[-615,20],[-769,-54],[-230,-3],[-365,26],[-296,106],[-431,235],[-435,266],[-29,25]],[[209255,949544],[-191,68],[-254,163],[-87,88],[149,330]],[[209782,951478],[536,123],[286,-12],[926,-336],[125,-143],[128,-334],[32,-216],[220,-247],[66,-143],[4,-139],[-61,-142],[-127,-142],[-289,-208],[-666,-201],[-336,-29]],[[210626,949309],[-468,-40],[-290,58],[-613,217]],[[241573,944011],[710,-182],[531,-183],[261,-122],[497,-412],[254,-118],[968,239],[503,66],[1278,-58],[403,-29],[1279,-340],[471,-256],[287,-235],[-75,-260],[-235,-419],[-276,-398],[-553,-625],[-470,-313],[-116,-150],[-73,-208],[-183,-305],[-505,-659],[-134,-113],[-711,-288],[243,-130],[112,-114],[-94,-293],[-448,-706],[-465,-653],[-325,-391],[-590,-564],[-325,-159],[-437,-50],[-1798,337],[-183,37]],[[241374,935957],[-14,-1],[-640,120],[-661,-8],[-1111,-163],[-861,-18]],[[238826,935523],[208,-6],[77,-23],[415,-208],[551,-647],[71,-162],[35,-188],[-21,-369],[-38,-94],[-607,-690],[-151,-97]],[[238507,931578],[-620,-81],[-379,98],[-317,-8],[-1102,-174],[-489,82],[24,88]],[[235298,934866],[-486,645],[-222,445],[-91,293],[-61,315],[-30,338],[2,340],[58,686],[6,349],[-41,907],[-5,63],[76,1649]],[[234325,941015],[-9,128],[2,69],[35,145],[176,194],[339,139],[171,20],[808,-306],[170,-139]],[[237231,941201],[-851,298],[-434,506],[-208,450],[-41,149],[-10,156],[22,163],[65,146],[226,229],[35,20],[1029,364]],[[237851,943806],[489,77],[719,52],[428,-78],[654,288],[267,48],[1165,-182]],[[227641,943777],[704,56],[271,-33],[85,-110],[23,-109],[-39,-110],[-226,-281],[-296,-219],[-794,-471],[-343,-120],[-799,-124],[-369,53],[-178,-148],[-740,-71],[-768,251],[-224,95],[-91,141],[21,54],[67,36],[196,71],[590,114],[256,98],[100,130],[627,227],[439,54],[1338,382],[150,34]],[[224599,941548],[747,170],[252,24],[737,186],[1021,155],[424,191],[948,217]],[[228728,942491],[753,-115],[166,-35],[284,-107],[151,-112],[163,-204],[279,-497],[41,-185],[-14,-50],[-258,-306],[-172,-133],[-355,-127],[-307,-38],[-36,-31],[-809,-100]],[[228726,940126],[114,-3],[8,-31],[80,-60],[150,14],[135,68],[223,-5],[146,-19],[176,-133],[157,-220],[-117,-204],[-587,-281],[-307,-113],[-220,-36]],[[228684,939103],[-87,-77],[-252,-93],[-1056,-1002],[-555,-420],[-114,-131],[-56,-131],[0,-2],[-12,-10]],[[226552,937237],[20,-112],[9,-126],[25,-100],[7,-2],[20,-117]],[[226633,936780],[124,78],[2,0],[41,28],[616,389],[116,56],[599,128],[218,3],[830,-235],[55,-26],[408,-321],[92,-117],[-40,-118],[-169,-118],[-19,-78],[389,-162],[420,-432],[12,-313],[-160,-227],[-103,-92]],[[231210,935462],[66,36],[192,54],[220,-17],[139,-69],[147,-406],[121,-458],[15,-385],[-90,-313],[-131,-244],[-329,-302],[-298,-114],[-155,-2],[15,-51],[353,-251],[148,-201],[63,-193],[-21,-187],[-49,-160],[-412,-591],[23,-84],[114,-38],[258,-341],[21,-547],[-246,-311],[-98,-27],[-52,69]],[[230869,930237],[-95,-111],[-70,-19],[-217,-184],[-256,-295],[-195,-147],[-160,-73]],[[229876,929408],[-201,-93],[-401,-140],[-324,-26],[-130,13],[-1369,159],[-4,11]],[[226424,929758],[284,-273],[427,-755],[100,-400],[14,-170],[-20,-110],[-273,-246]],[[226956,927804],[-386,-349],[-281,-151],[-1,0],[-419,-78],[-269,55],[-122,87],[-213,281]],[[224072,928408],[-170,259],[-24,53],[-40,46],[-482,737]],[[220366,932476],[-1058,314],[-122,196],[-321,224],[-117,29],[-189,-53],[-245,-102],[-354,106]],[[217960,933190],[-680,201],[-70,222],[-79,143],[-213,128],[-178,326],[-1008,544],[-12,11]],[[215720,934765],[-288,208],[-591,616],[-143,266],[-14,109],[73,354],[26,66],[493,905],[451,333],[11,5],[362,77],[512,-44],[91,-25],[286,-153],[135,-128],[103,-266],[121,-179],[380,-196],[206,-157],[303,-367],[233,-441],[215,-146],[84,-8],[46,-55]],[[221498,937986],[-155,4],[-50,17],[-310,-47],[-237,104],[-26,75],[22,176]],[[220742,938315],[313,449],[221,50],[319,-62],[441,-257],[279,-57],[393,73],[-502,152],[-701,595],[-300,111],[-366,-255],[-248,-96],[-467,-125],[-372,-19],[-848,500],[-823,559],[-90,189],[13,110],[143,158],[435,246],[543,133],[277,16],[167,-22],[281,-139],[266,-247],[240,-312]],[[220699,940748],[-710,170],[-262,218],[-151,197],[-80,212],[-10,225],[61,154],[133,83],[1173,221],[30,-3]],[[220883,942225],[27,-2],[806,-240],[531,-36],[220,306],[-77,60],[-279,-79],[-316,2],[-197,168],[-7,98],[246,235],[213,56],[298,-26],[464,-251],[4,-16]],[[260766,925685],[440,273],[392,212],[96,30],[1413,126],[284,-1],[282,-106]],[[263673,926219],[175,-66],[-40,-95],[-116,-41]],[[264596,925652],[-48,847],[150,1048],[39,192],[204,432]],[[264414,929387],[-211,-74],[-186,-10],[-898,167]],[[263119,929470],[-425,408],[-226,375],[-236,294],[-159,141],[-311,449]],[[261792,931546],[39,69],[211,93],[331,229],[388,670],[234,108],[842,-89],[1139,-524],[297,-189],[143,-99]],[[265480,931769],[18,1],[192,-122],[188,-48],[4,82],[-181,213],[-48,33],[-3,42]],[[265611,932125],[-975,600],[-129,141],[-179,292],[86,127],[462,129],[60,149],[-629,175],[-319,-4],[-257,-125],[-114,-4],[-743,287],[-72,69],[-296,394],[-155,342],[-172,213],[-62,169],[-34,526],[15,309],[70,264],[124,220],[333,407],[187,117],[348,53],[758,-201],[2036,-728],[-15,70],[918,-312]],[[266857,935804],[-943,433],[-9,43],[-1468,633],[-453,208]],[[263984,937121],[-55,12],[-302,130],[-805,252],[-193,349],[24,37],[162,183],[4953,-911]],[[263415,938565],[53,251],[370,414],[1117,319],[362,258],[439,143],[663,12],[853,-251],[15,69],[-32,39],[59,-16]],[[267314,939803],[-105,73],[-306,376],[30,116],[3311,1167],[6,1],[1942,20]],[[272192,941556],[193,2],[933,-197],[554,-364],[172,-217],[294,-699],[240,-978],[352,-407],[565,-225],[285,-178],[328,-861],[-50,-202],[75,-410],[253,-420],[195,-239],[15,-10],[235,-614],[-232,-187],[-293,-299],[-1190,-1059]],[[275116,933992],[-227,-257],[-526,-556],[-8,-47],[-265,-301]],[[274326,932805],[873,864],[465,370],[415,-38],[19,-148],[-272,-517],[-330,-461],[-333,-296],[61,-112],[214,-175],[-264,-407]],[[274770,931624],[414,-334],[24,-126],[-5,-193],[-59,-127],[64,-53],[185,22],[156,106],[141,182],[1098,543]],[[276833,931941],[141,444],[298,186],[183,31],[522,-231],[122,13],[-574,731],[-25,93],[447,527]],[[278813,933169],[107,35],[14,-7],[434,134],[289,316],[259,-150],[341,-280],[298,-272],[-50,-495],[1,-491],[-95,-258]],[[280325,931166],[862,-246],[439,-286],[82,-3],[-11,100],[-93,221],[-246,222],[-222,342],[-199,417],[5,47],[135,365]],[[282521,931592],[-1499,1045],[33,269],[314,474],[52,22],[294,-118],[427,-294],[337,-27],[531,31],[1084,-593],[582,-13],[-21,96],[1423,-341]],[[285338,932536],[-899,142],[-84,22],[-442,183],[-375,191],[-1003,390],[-460,445],[-87,209],[13,226],[57,198],[102,173],[200,169],[409,218],[1572,563],[195,27],[865,-6],[1006,-90],[543,-151],[624,-365],[790,-361],[282,-65],[329,9],[377,81],[358,-29],[1139,-536],[301,-276],[183,-334],[135,-324],[88,-315],[-36,-255],[-545,-634],[-323,57]],[[290038,932078],[776,-224],[-243,-282],[-412,-188],[-201,-308],[-21,-13]],[[288902,929656],[667,692],[-90,-175],[-344,-424],[-32,-83],[72,-21],[208,190],[357,548],[184,334],[345,358],[207,170],[591,351],[398,181],[470,154],[579,-21],[487,-67],[395,-113],[234,-94],[74,-76],[159,-349],[-9,-237],[-99,-266],[-188,-301],[-849,-333],[-358,-201],[-390,-124]],[[291970,929749],[-165,-52],[-708,-79],[39,-104],[214,-47],[-36,-56]],[[292102,929256],[111,-359],[-71,-96],[-110,-391],[94,-320],[-17,-260],[-252,-547],[-289,-494],[5,-3],[-148,-152]],[[292547,928105],[-49,33],[15,63],[266,683],[106,129],[412,374],[25,15],[736,57],[408,398],[189,69],[80,14]],[[294735,929940],[236,41],[286,-143],[-17,-157],[-431,-712],[-273,-345],[-421,-456]],[[294115,928168],[-25,-107],[-194,-245],[211,74],[185,-701]],[[294292,927189],[1242,1316],[10,-6],[-30,-689]],[[296194,927489],[203,-79],[96,-77],[227,-234],[-15,191],[252,-99]],[[296752,926452],[1533,2620],[102,-59],[170,52],[430,-27],[689,-108],[591,-164],[1130,-559]],[[301397,928207],[819,-1005],[43,-128],[-91,-236],[-492,-543],[-274,-247],[-268,-109],[-149,31]],[[299735,925908],[-384,-668],[-178,-175],[-421,-323],[-414,-206],[-96,-109],[821,9],[-10,-133]],[[301953,924950],[232,344],[75,3],[391,425],[401,266],[52,29],[157,53],[93,-33],[333,-302],[100,-269],[-7,-616],[-45,-186],[-296,-465],[-722,-698],[-472,-262],[-524,-141],[-66,-27],[-543,-46]],[[300694,922358],[-4,-16],[-135,-124],[-250,-151],[258,-174],[-96,-337]],[[300390,921284],[359,568],[8,1],[121,132],[330,520],[245,227],[139,48],[144,-22],[139,-102],[136,-182],[-10,-444],[-361,-1525],[-379,-690]],[[301894,920469],[361,1138],[397,977],[182,367],[329,339],[838,583]],[[304725,924207],[35,15],[560,197],[375,92],[414,-60],[-290,-359]],[[307397,924111],[274,-12],[193,-66],[287,-213],[485,-242],[1098,-455],[53,-37],[-47,-1125],[-188,-47],[-227,-133],[-319,-264],[-972,-301],[-531,-63],[-380,-140],[-381,-197],[-115,-35]],[[306627,920781],[-124,-88],[-112,-57],[-1006,-701],[10,-160],[-242,-417]],[[305761,919533],[283,236],[78,25],[448,484],[408,179],[1142,202]],[[308120,920659],[452,80],[377,-19],[70,-26],[51,-114],[32,-203],[-149,-263],[-173,-125],[-446,-566],[-46,-31]],[[306793,918320],[2051,882],[200,-32],[243,160],[112,188],[860,513],[4,2],[9,7],[113,67]],[[310385,920107],[32,36],[53,37],[33,56],[71,77]],[[310398,920385],[-127,52],[-45,29],[-19,89],[2,44],[115,267],[71,101],[211,265],[170,144],[171,16],[218,-81],[777,-542],[936,-1049],[22,-37],[116,-204],[328,-786],[65,-361],[-56,-252],[-80,-155],[-6,-3],[-360,-42],[-1258,321],[-104,-8],[-160,45]],[[311385,918238],[-184,-70],[-147,-10],[-260,-93],[-176,-118],[-1507,-572],[-325,-83],[-799,-290],[-14,-8],[-85,-15]],[[307426,916831],[324,38],[-49,-27],[-65,-210],[489,37],[804,272],[231,24],[640,-13]],[[309800,916952],[82,-27],[1067,-506],[417,-93],[172,64],[13,-4]],[[312333,916382],[649,-3],[248,-53],[501,-225],[31,-17],[589,-377],[426,-501],[9,-58],[-7,-255]],[[314779,914893],[-4,-165],[-8,-13],[-124,-134],[-207,-72],[-1125,106],[-344,83],[-357,-88],[-76,6]],[[312534,914616],[-1129,384],[-123,73],[-43,-16],[-72,25]],[[310058,915189],[43,-246],[-119,36],[-380,-100],[-327,-39]],[[308974,914803],[-255,-345],[-499,-272],[131,-110],[1606,547],[148,-15],[614,-204]],[[310719,914404],[84,-28],[150,-74],[707,-415]],[[310972,912501],[-37,-63],[-725,247],[-350,40],[-257,-48],[-142,-76],[-1397,162],[-339,92],[-308,18],[-29,-31],[-46,5]],[[307410,912533],[927,-183],[353,-162],[721,-49],[901,-178],[214,-110],[161,-129],[7,-226],[-779,48]],[[311062,910853],[209,-52],[11,-7],[16,0],[338,-85]],[[313312,910287],[835,184],[147,13],[309,-82],[77,-69],[-603,-235]],[[314168,908998],[170,-265],[-186,-455],[-50,-193],[65,-16],[474,390],[74,-50],[50,-540],[60,31],[159,447],[-1,14],[359,-31]],[[315759,908294],[149,-259],[-5,-98],[-386,-806],[-323,-260],[10,-54],[229,-103],[143,-11],[138,126],[194,371],[545,329]],[[316782,907727],[-11,-103],[-35,-179],[16,-11],[-36,-346]],[[317309,907368],[209,248],[345,-24],[167,-83],[50,-193],[-108,-514],[-97,-208]],[[317923,906407],[3,4],[16,-100],[387,-536],[40,32],[-73,259],[-80,640],[21,77],[630,757],[398,311],[232,97],[22,0],[141,-64],[241,-247],[-75,-147],[-261,-153],[-193,-279],[-70,-224],[-219,-288]],[[319931,906295],[127,214],[186,116],[311,-24]],[[320555,906601],[204,-15],[362,-427],[667,-691],[72,36],[91,-90]],[[321951,905414],[145,-640],[-89,-59],[63,-289],[-850,-561]],[[321220,903865],[-26,-17],[-276,-41],[-308,79],[-332,-28],[307,-207],[258,-37],[10,-304]],[[320853,903288],[374,34],[5,-22],[465,7],[73,11],[6,-23]],[[324202,903583],[123,33],[563,-441],[-337,-358],[-50,-184],[-133,-56]],[[323435,901100],[2,-5],[-386,-359],[181,-9],[288,152],[11,-28]],[[326305,901283],[70,21],[348,-77],[206,243],[743,221]],[[327857,901523],[996,-759],[272,-287],[424,-499],[170,-309],[-17,-194],[-405,-250],[-208,-50],[-545,471],[-501,238],[-305,-26],[-303,-181],[94,-102],[1213,-725],[212,-536],[16,-234],[-811,-355],[-260,-21],[-562,170],[-329,316],[-271,114],[-376,38],[-120,-61],[189,-248],[-145,-350]],[[327502,896118],[-597,-186],[-427,47],[-340,101],[-94,-108],[352,-249],[136,-169],[106,-235],[61,-221],[17,-207],[-288,-170],[-61,-85],[-85,-3]],[[325947,894299],[73,-283],[-73,-268],[-313,-47],[-127,93],[-301,-107],[-191,85]],[[325015,893772],[-684,306],[-606,930],[-15,-105],[22,-70],[-89,145]],[[323643,894978],[-160,-934],[-294,-93],[2,-78],[327,-123],[199,-733]],[[323717,892016],[273,-609],[0,-51],[-165,-284]],[[323731,890785],[-110,-741],[-306,-503],[-363,361],[-145,368],[-122,188],[-173,154],[-224,72],[-170,2],[-348,587]],[[321429,891365],[-122,33],[54,486],[112,451],[-45,-4],[-150,-213],[-361,-658],[-64,-219],[-398,-359],[-81,82],[-277,385],[-51,88],[-85,387]],[[319452,893208],[-645,395],[-146,362],[-82,147],[-72,49],[-178,320],[65,344],[281,405],[256,291],[270,184],[202,99]],[[319403,895804],[15,25],[432,141],[226,370],[276,675],[303,470],[330,265],[-164,50],[-419,-228],[-294,-331],[-351,-553],[-269,-292],[-323,-191],[-569,-279],[-306,-82],[-356,-44],[-784,58],[-181,138],[94,391],[558,699],[-89,49],[-196,-247],[-270,-171],[-233,-88],[-344,31],[-402,436],[-191,134],[-45,17],[-177,231]],[[315674,897478],[-488,305],[-498,814],[-132,284],[-77,279],[-210,234],[-342,191],[-80,-31],[124,-239],[1,-63],[-964,70]],[[312092,899236],[921,-213],[-7,-71],[350,-518],[2,-306],[-8,12]],[[312784,898403],[468,-695],[-228,-37],[-160,82],[-530,490],[-46,31],[-331,377]],[[311551,898812],[-58,-48],[-17,9],[-9,-31],[-7,-6]],[[311379,898669],[211,-430],[75,-192],[267,-583],[322,-356],[46,-62]],[[312300,897046],[44,-36],[25,-27],[695,-573],[316,-330],[-249,-467],[-216,-152],[-9,-3],[-1051,207]],[[311855,895665],[-4,-83],[-263,88],[-361,288],[-525,685],[-869,706],[-188,-4],[-615,-287],[97,-46],[396,-20],[290,-92],[695,-558],[52,-236],[-125,-188],[-13,-2]],[[311268,894648],[44,17],[93,-11],[56,-84],[2,-99],[-225,-823],[-21,-243],[61,-88],[16,-137]],[[311308,893061],[372,450],[217,151],[219,89],[190,18],[221,-102],[251,-223],[122,-190],[-73,-35]],[[313046,892659],[304,13],[211,-103],[-47,-118],[-531,-377],[-29,-60],[106,-27],[64,-43],[241,-856]],[[313816,890524],[125,26],[30,-82],[163,-21],[67,75],[75,-15],[81,-101],[1,-2],[87,-322],[141,-716],[24,-150]],[[314610,889216],[5,5],[16,-82],[98,-265],[56,-9],[18,559],[18,19]],[[315671,889439],[48,-19],[223,-217],[19,-397],[-132,-154],[20,-51],[-63,-25]],[[315786,888576],[80,-16],[17,-40],[187,-195],[173,74],[31,84],[211,-40]],[[316825,889229],[120,18],[326,-130],[53,-50]],[[317324,889067],[55,-52],[324,-404],[60,-168],[194,-160],[-39,-245]],[[318508,886975],[677,-74],[52,-264],[-159,-326],[-483,-412],[-95,19],[-466,19],[-239,-42],[37,-102],[571,-322],[512,-770]],[[318915,884701],[113,-168],[-2,-78],[-102,-175],[48,-58],[443,-114],[36,14],[207,-104]],[[320200,882590],[578,-404],[-116,-23],[31,-633],[64,-286],[-164,-719]],[[320105,880345],[-190,558],[-155,486],[-42,95],[-65,191]],[[318624,882852],[532,-965],[40,-160],[92,-560],[-76,-308]],[[319123,880494],[263,-624],[-103,-53],[-30,-114],[54,-171],[429,-644],[208,-388],[146,-403],[137,-272],[127,-141],[-31,-115],[-190,-90],[-324,-43],[-30,11],[-391,300]],[[319118,877145],[24,-32],[173,-732],[-10,-327],[-162,-116],[-200,136],[-237,388],[-204,242],[-86,463]],[[318021,877355],[-366,175],[-267,214],[-110,-10],[-12,-18],[-330,157],[-48,87],[-163,190],[-681,629],[-70,6],[64,-188],[54,-321],[-759,363],[-46,82],[-289,718],[-151,272],[-14,-177],[81,-685],[-11,-157],[-287,35],[-29,75],[-69,303],[-161,229],[-255,157],[-143,165],[-71,293],[-49,67],[-244,-37],[-2068,2633]],[[311443,882630],[58,-226],[-94,78],[200,-583],[219,-862],[25,-177],[-338,121]],[[311513,880981],[-990,842],[-89,88],[-120,90],[-590,503]],[[309018,881443],[185,-195],[45,-66],[321,-324],[180,-226],[334,-497]],[[310083,880135],[271,-404],[179,-316],[185,-251],[25,-13],[70,-106]],[[310813,879045],[199,-43],[334,-184],[276,-78],[292,-345],[-36,-50],[-37,-143],[398,-193],[108,-127]],[[312599,877761],[280,-134],[264,-323],[155,-83],[450,-586],[95,-296]],[[313979,876133],[436,-37],[268,-127],[192,-175],[318,-544],[199,-277],[282,-658],[211,-291],[517,-332],[6,-3],[120,-134]],[[316528,873555],[-101,-623],[-131,-91],[47,-287],[167,-511],[-7,-317],[-181,-122],[-369,-147],[-45,3],[-454,149],[-148,87],[-559,534]],[[312430,873256],[-2531,414],[-277,76],[-271,152],[-252,223],[-635,325],[-433,268]],[[308031,874714],[-50,31],[-665,870],[-418,858],[0,263]],[[305754,876910],[-409,-198],[-411,32],[-444,368]],[[304411,877148],[-357,162],[-86,63],[-305,116],[-1035,769]],[[302894,879010],[-151,-193],[-670,-420],[-260,140],[-70,57],[-48,199]],[[301695,878793],[-266,63],[-44,37],[-322,359],[-313,470],[-22,60]],[[300745,880670],[49,23],[49,-5],[228,82],[115,105],[860,401]],[[300178,882567],[-15,-162],[-423,-38],[-230,240]],[[299510,882607],[-61,568],[72,122],[36,108],[-41,21],[-94,-8],[-40,371]],[[299006,883192],[0,-32],[-256,-179],[-52,12],[-154,335]],[[298199,884077],[-26,0],[-57,97],[-143,62],[-477,480],[6,14]],[[297041,885518],[-199,64],[-104,140],[-267,305],[-243,223],[3,55]],[[296492,887823],[-228,-350],[-178,-22],[-497,344]],[[295343,887648],[-369,-221],[-163,88],[-118,-42],[-111,-664],[-85,-166],[-124,-89],[-109,12],[-33,40],[238,865]],[[294066,888396],[-500,-611],[-277,15],[-126,66],[-142,151],[-122,278],[-101,407],[-33,64],[120,206]],[[291893,888673],[2,-12],[-5,-81],[21,-22],[5,-33]],[[292179,888196],[59,-30],[179,-284],[249,-534],[-152,-357],[-553,-183],[-211,-23],[-929,192]],[[290729,886996],[-179,96],[-239,160],[-47,-7],[-853,456]],[[288942,886362],[-77,-15],[-65,3],[-144,-42],[-799,-152]],[[287935,886074],[83,-87],[-60,-32],[-749,-84]],[[285098,885862],[-197,35],[-253,191],[-281,116],[-369,-20],[-85,41],[-182,189],[-625,791],[-258,502],[-64,277],[-9,296],[31,219],[125,331],[136,777],[113,258],[56,78],[929,669],[703,309],[240,207],[-8,137],[-271,640],[3,164],[91,96],[193,374],[87,105],[56,15],[443,-82],[147,-65],[377,-75],[308,-16],[99,-18]],[[286633,892403],[1351,-440],[719,-310],[662,-345],[501,-510],[356,-501],[51,-254],[-165,-390],[-83,-115],[5,-133],[93,-153],[288,-222],[69,84],[-22,266],[59,223],[142,180],[15,235],[-109,288],[-137,249],[-164,210],[-745,720],[-27,91],[756,16]],[[290248,891592],[214,70],[325,-72],[417,54],[159,281],[44,49],[792,262],[297,-76],[170,-293]],[[293143,892081],[215,234],[1,1],[6,7],[405,443]],[[293770,892766],[245,157],[44,18],[414,80],[310,11],[418,-151],[149,-194]],[[295206,894520],[-144,67],[-135,138],[-575,425],[-675,802],[-347,497],[-91,249],[49,166],[107,226],[18,24],[244,176],[564,358]],[[295446,898670],[1574,1470],[110,40],[133,220],[26,335],[208,471]],[[299410,903269],[-39,101],[-22,97],[-22,17],[-795,2047]],[[297288,908699],[-984,737],[-3,87],[131,283],[-63,64],[-759,-414],[-178,-19],[-292,180],[-25,28],[-47,670]],[[295269,911577],[-374,222],[-39,43],[-56,14],[-79,47]],[[293969,911852],[374,-400],[195,-335],[-64,-178],[-538,-78],[-242,34],[-222,88],[-201,141],[-281,337],[-182,375]],[[292704,912736],[-328,342],[4,17],[-53,34],[-70,73]],[[292257,913202],[-44,3],[-36,24],[-303,27],[-80,120],[102,129],[411,224],[146,147],[-246,110],[-137,10],[-277,-244],[-412,-492],[-752,50],[-232,68],[-182,-51],[-73,-100],[-350,-350],[-465,-215],[-1090,-663],[-469,-211],[-505,38],[-95,134],[9,227],[35,188],[61,146],[20,180],[-37,755],[85,207],[172,123],[318,130],[721,-138],[77,-21]],[[288629,913757],[20,5],[368,27],[127,83],[29,7]],[[289648,915379],[-156,98],[-12,13],[-77,42],[-445,279]],[[288380,916114],[-393,-5],[-232,105],[-158,167],[-154,279],[-13,189],[25,250],[147,172],[645,198],[-9,51],[-527,146],[-248,-17],[-213,-164],[-268,-384],[-155,-108],[-482,226],[-289,33],[-195,108],[-108,104],[66,107],[240,108],[191,152],[54,-64]],[[284976,918634],[-165,-74],[-73,-11],[-271,55],[-121,324],[-77,386],[-32,448],[-11,59],[99,734]],[[282839,921004],[74,-189],[-15,-3],[-208,-2],[-143,61],[-577,511],[-68,52],[178,318]],[[282080,921752],[-836,322],[-57,75],[-162,105],[-192,268],[-161,313],[383,170]],[[280532,923698],[-151,-620],[-10,6],[-260,-167],[-259,-240],[-133,-160],[10,64]],[[279853,921514],[326,24],[328,-99],[232,-186],[197,-307],[148,-374],[97,-443],[-9,-331],[-113,-220],[-197,-194],[-565,-309],[-584,-180],[-589,-42],[-280,42],[-650,256],[-417,483]],[[273230,920161],[14,-64],[-55,-21],[73,-59],[11,-50]],[[273273,919967],[131,-65],[126,-101],[298,-139],[256,-1],[369,-246],[481,-489],[275,-292],[227,-349],[7,-120],[-204,-216],[-1016,796]],[[273009,919166],[-206,-239],[-464,-186],[-21,-7],[-133,141]],[[272185,918875],[-211,-252],[-137,-45],[-351,-20],[-90,-2],[-327,104],[-584,254],[-404,201],[-737,518]],[[263542,920096],[-706,51],[-148,28],[-32,-15],[-585,43]],[[262229,920032],[69,-35],[-576,-264],[-1062,370],[-204,107],[-68,47],[-242,225],[-39,57],[-338,683],[-47,366],[96,330],[96,226],[94,123],[-631,-379],[-222,-62],[-292,-15],[-182,30],[-179,462]],[[258009,922121],[-85,-205],[-69,-36],[25,-72],[-184,-447]],[[257696,921361],[-65,-9],[-694,90],[-320,-41],[-146,-53],[-331,-305],[-48,-25],[-284,8],[-595,533],[49,5]],[[255262,921564],[-197,126],[-5,5],[-622,437],[-92,21],[-1379,887]],[[252580,923501],[-129,153],[-252,353],[-137,301],[-241,834],[2,400]],[[251823,925542],[249,238],[636,-90],[915,6],[51,-9],[948,-325]],[[255620,925077],[266,29],[100,-8],[863,72],[505,95],[85,9]],[[257439,925274],[29,12],[361,67],[115,142],[-45,18],[-71,96]],[[253351,927071],[-861,85],[-873,352],[-765,422],[-312,229],[-112,177],[-119,553],[-74,549],[108,2321],[591,512],[18,101],[-148,29],[-312,164],[-100,240],[-40,380],[-2,322],[34,264],[125,330],[320,593],[248,389],[269,8]],[[251796,935873],[9,272],[64,166],[44,599],[65,437],[60,269],[364,627],[57,81],[383,415],[600,355],[51,131],[8,181],[34,135],[16,22],[410,346],[1113,849],[1559,816]],[[256633,941574],[2359,604],[831,102],[364,4]],[[260187,942284],[293,4],[607,-13],[544,-44],[1914,-204],[52,-13],[266,-165],[71,-88],[102,-249],[-77,-159],[-638,-539],[-803,-448],[-524,-392],[-334,-332],[-270,-178]],[[259438,936633],[0,-33],[-75,-116],[-107,-640],[32,-228],[144,-312],[-2,-363]],[[259430,934941],[755,-1548],[-1,-16],[-164,-260]],[[260728,930356],[100,-99],[182,-274],[795,-766],[592,-507],[583,-375],[690,-553],[154,-267],[-318,-295],[-336,-205],[-274,-51]],[[262896,926964],[-897,-349],[-214,-42],[-523,-185],[-268,-163],[-950,-369]],[[259424,925378],[153,-10],[7,-7],[23,6],[163,-11]],[[288029,937356],[12,-11],[-12,-110],[150,-229],[334,-276],[126,-185],[-260,-225],[-603,-133],[-97,8],[-1270,174]],[[282661,936627],[-294,-98],[-573,-123],[-1611,-509],[-515,-82],[-484,-10],[-37,9],[-871,407],[-323,220],[-107,171],[-212,499],[-174,598],[-62,340],[12,207]],[[277410,938256],[-79,89],[-63,230],[-221,90],[-12,14]],[[277035,938679],[-36,6],[-35,14],[-903,149],[-303,204],[-137,170],[-133,275],[4,285],[69,252],[58,62],[114,6],[-253,305],[-10,40],[103,630]],[[275900,941705],[422,72],[135,-3],[442,-116],[544,-232],[412,-21],[1459,-386]],[[279314,941019],[2974,151],[249,12],[621,-107],[1891,-656],[488,-219],[241,-291],[218,-457],[100,-101],[343,-136],[858,-1004],[9,-23],[28,-20],[695,-812]],[[204283,939620],[-134,34],[-54,36],[-624,262],[-475,131],[-63,146],[92,188]],[[203419,940772],[710,641],[309,60],[2044,108]],[[206759,941675],[296,100],[213,3],[275,-35]],[[207543,941743],[142,-18],[330,-78],[777,-574],[324,-65],[193,-130],[170,-214],[90,-219],[8,-446],[-85,-660],[-108,-253],[-470,-848],[-494,-467],[-94,-302],[-200,-239],[-350,-294],[-74,-49],[-249,15]],[[205958,938058],[-717,716],[-186,270],[-391,263],[-381,313]],[[230146,917120],[489,-281],[267,-218],[502,-230],[1096,-749],[323,-507],[78,-180],[-100,-1043]],[[232986,914266],[46,386],[132,-304],[304,-601],[268,-415],[66,-76],[158,-378]],[[234327,912654],[102,22],[56,-44],[126,83],[145,31]],[[234726,912392],[-24,-283],[-27,-1],[-16,100]],[[233990,912073],[-771,-829],[-629,-546],[-318,-187],[-287,-57],[-237,-26],[-238,57],[-978,395],[-501,-46],[-867,206]],[[225050,913460],[-198,-336],[-12,-4],[-101,-111],[57,-132],[-36,-58],[-122,-6]],[[223469,913750],[208,565],[57,67],[1028,109],[482,106],[127,74],[184,40]],[[226378,915356],[15,90],[118,139],[16,114],[-46,124],[-17,27],[16,90]],[[226345,916272],[-62,154],[4,6],[245,9],[-129,117],[-110,166],[-38,103],[6,166],[195,36],[240,-83],[464,-476],[185,-93],[318,-72],[-338,329],[-350,690],[-43,238],[9,133],[75,302],[121,241],[84,79],[141,90],[93,39]],[[227455,918446],[21,34],[77,50],[533,149],[273,20],[113,-49],[250,-154],[155,-148],[536,-377],[80,-154],[-4,-31],[-53,-65],[-159,-79],[-26,-95],[84,-142],[2,-2],[151,-316]],[[276785,917258],[-66,21],[-47,66],[-139,101],[-727,128],[-29,9]],[[276040,917835],[176,169],[267,-41],[43,45],[34,225],[39,87],[359,-22],[226,48],[125,-115],[122,-267],[162,45],[39,0],[226,-35],[90,31],[58,-1]],[[278347,918086],[213,218],[10,5],[335,88],[454,-135],[112,-339],[70,-106],[-97,-151],[-456,-336],[-882,-126],[-460,151],[203,-441],[-1064,344]],[[234199,915912],[-8,11],[58,60],[12,218],[-47,362],[-59,223],[-165,128],[-119,5],[-32,-118],[54,-241],[-37,-311],[-129,-383],[-42,-77],[-232,61]],[[233549,916559],[75,554],[38,53],[45,38],[188,101],[253,-9],[289,-133],[247,-166],[369,-396],[-3,-193],[-49,-320],[-105,-245],[-164,-167],[-155,-58],[-372,-15]],[[285114,915386],[27,494],[23,114],[60,71],[122,48],[244,95],[218,-16],[319,-152],[690,-46],[97,-79],[-11,-43]],[[286903,915872],[-155,-572],[-110,-117],[-164,-248],[-117,-296],[-233,-183],[-351,-69],[-67,10],[-266,86],[-76,64],[-153,348]],[[279656,912811],[-162,91],[-9,22],[-5,285]],[[279480,913209],[50,100],[40,37],[137,215],[174,337],[272,225],[265,94],[193,31]],[[280611,914248],[40,51],[97,34],[85,74],[129,286],[337,426],[195,38],[33,76],[-67,90],[12,15]],[[281463,915402],[-22,158],[86,122],[146,113],[5,3],[383,111],[45,-3],[147,-39]],[[282448,915830],[72,-14],[56,-74],[107,-276],[7,-32],[-8,-54],[-146,-221],[-422,-375],[-261,-314],[-53,-103],[-23,-132],[-99,-161],[-181,-231],[-611,-762],[-480,-166],[-371,-189],[-97,-39],[-44,-9],[-238,133]],[[291997,909757],[-86,-15],[-162,12],[-284,331],[-513,323],[-280,252],[-117,142],[-8,132],[25,267],[66,255],[230,305],[244,50],[347,-68],[253,-219],[275,-609],[150,-244],[12,-355],[-13,-15],[8,-100],[10,-14],[6,-184],[-63,-144],[-100,-102]],[[290657,904046],[-182,-130],[-975,-454],[-747,-127],[-789,-23],[-1003,-132],[-458,27],[-237,59],[-169,98],[-197,311],[-226,525],[-186,590],[-68,320],[-119,986]],[[285540,906872],[594,1142],[57,97],[553,663]],[[287177,909293],[1119,241],[113,-13],[234,30],[294,109],[323,27],[32,-5],[1571,-467],[376,-135],[141,-190],[69,-170],[41,-189],[3,-389],[-29,-156],[-142,-377],[-9,-118],[113,-1264],[-11,-689],[-102,-576],[-208,-462],[-312,-347],[-84,-70],[-52,-37]],[[252919,841804],[8,-2],[169,-109],[287,-266],[284,-367],[646,-688],[489,-431],[545,-405],[547,-742],[342,-655],[197,-445]],[[262292,833747],[994,-872],[14,-252],[-417,-1194],[-9,-96],[421,858],[236,247],[188,115],[66,-2],[704,-251]],[[266704,832554],[3092,-715],[16,-25],[186,-28],[17,3],[736,-170],[379,-354],[236,-411],[209,-777],[21,-390],[-404,-1875],[-131,-755],[-17,-657],[83,-379],[200,-350],[-1,-99]],[[271559,825124],[232,-984],[38,-263],[-24,-462],[-113,-760],[29,-580],[6,-54],[-26,-358]],[[271701,821663],[-104,-1412],[-97,-262],[-43,-268],[-19,-71]],[[271438,819650],[-1,-60],[-25,-155],[0,-209],[13,-61],[-12,-410]],[[271413,818755],[877,-1087],[323,-684],[325,-519],[103,-202],[351,-1004],[-91,-210],[-138,-178],[-320,-238],[-143,-174]],[[272700,814459],[37,-41],[463,129],[273,-14],[232,-190],[189,-368],[314,-314],[438,-259],[433,-424],[22,-27],[717,-1009],[132,-236],[194,-539],[174,-570],[16,-65]],[[276334,810532],[203,-815],[9,-196],[-145,-260],[-492,-472],[-496,-826],[156,40],[327,349],[553,688],[306,133],[159,-44],[24,-34]],[[278078,808252],[165,-25],[503,-957],[366,-528]],[[279112,806742],[1,-1042],[1,-1430],[1,-1429],[2,-1429],[1,-1430],[1,-1429],[2,-1430],[1,-1429],[1,-1430],[2,-1429],[1,-1430],[2,-1429],[1,-1430],[1,-1674],[0,-32],[-128,-402]],[[285075,778050],[4,-5]],[[285079,778045],[219,-509],[28,-87],[44,-193],[93,-153],[368,-419],[194,-149],[150,-55],[100,17],[43,111],[35,331],[63,86],[51,-17],[134,-46]],[[292841,775499],[502,-381],[-52,-348],[-105,-681],[-70,-447],[181,-288],[201,-324]],[[293498,773030],[-49,-47],[-932,-1146],[-42,-51]],[[290552,770417],[-101,-151],[-985,-1475]],[[289466,768791],[-16,-38]],[[289450,768753],[-20,24]],[[280250,761538],[135,77]],[[280385,761615],[6,-29]],[[271063,760045],[0,1]],[[251188,789515],[-15,-11]],[[251173,789504],[-54,8],[-495,72],[-229,-77],[-120,-40],[-258,117],[-87,252],[-41,119],[-144,236],[-268,-47],[-367,-64],[-392,39],[-405,40],[-152,-19],[-229,-28],[-147,156],[-119,411],[-211,51],[-17,-5],[-337,-87],[-492,-526],[-315,-186],[-148,-87],[-347,-1],[-17,0],[-171,131],[-187,143],[-586,549],[-70,106],[-338,510],[-463,216],[-352,-56],[-77,-170],[-62,-139],[-183,0],[-126,517],[-3,11],[-110,410],[-230,176],[-73,70],[-342,325],[-289,212],[-443,260],[-154,48],[-288,32],[-285,21],[-254,-55]],[[236909,794594],[0,2]],[[236499,796932],[17,272],[-57,85],[-180,180],[-526,105],[-74,14]],[[279110,807023],[-322,491],[-217,405],[-47,194],[-17,212],[25,246],[99,182]],[[278631,808753],[73,711],[65,204],[159,230],[107,245],[54,259],[18,41]],[[279107,810443],[3,-1884],[0,-1536]],[[322993,780476],[1164,-23],[48,-60],[435,-224],[460,32],[700,134],[83,54],[177,27],[1542,-30],[62,-79],[26,-77],[-291,-339]],[[327399,779891],[-138,-161],[-15,-17],[-133,-48]],[[326750,779533],[-335,-584],[-99,-77],[-72,-218],[12,-134],[-4,-10]],[[326266,778362],[4,0],[10,-110],[-12,-409],[113,-34],[66,-133],[-5,-11],[-140,-126],[-589,-61],[-171,37],[-204,166],[-70,396],[-53,-13],[-10,159]],[[325275,778551],[-48,25],[-96,251],[-173,-31],[-115,201],[10,271],[160,132],[46,143],[-217,-124],[-167,-251],[-216,-96],[-212,-217],[328,-69],[-168,-168],[-38,-8],[-776,229],[-174,71],[-164,103],[-102,114],[-186,255],[-191,462],[104,18],[35,83],[-23,78],[-283,63],[-284,-13],[-402,1235]],[[321923,781308],[-209,-2],[-147,99],[-423,56],[-42,300],[135,459],[207,393],[158,387],[18,30],[522,726]],[[322231,783571],[-1,-53],[-1,-43],[1,-6],[-1,-161]],[[322229,783308],[-1,-364],[-200,-551],[-80,-167]],[[322532,780860],[17,-41],[-65,-139],[200,-88],[62,-149],[75,-83],[120,139],[52,-23]],[[308184,785324],[-30,258],[40,523],[-267,107],[-218,87],[-51,21],[-164,-361],[-158,-303],[-313,-662],[-439,-930],[-244,-511],[-428,-898],[-378,-792],[-33,-313],[-52,-500],[-80,-770],[-313,-587],[-132,-372],[-58,-165],[-85,-596],[-72,-548],[-5,-458],[30,-134],[24,-106],[-26,-196],[-36,-79],[-67,-146],[-207,-391],[-36,-376],[-127,-186],[-360,-371],[-294,-547],[-15,-310],[43,-258],[0,-20],[6,-139],[-59,-112],[-117,7],[-128,-35],[-107,-228],[3,-328],[-79,-236],[-91,-49],[-79,167],[-94,251],[-103,23],[-7,1],[-38,-37],[-130,-129],[-67,-89]],[[302543,773501],[-140,-185],[-72,-5],[-114,-9],[-349,176],[-254,-531],[-243,-1011],[-31,-128]],[[301340,771808],[-1156,-3],[-1156,-3],[-316,-1],[-840,-2],[-1156,-3],[-472,-1]],[[296244,771795],[-684,-1],[-1155,-3],[-988,-3],[-168,0],[-647,-2],[-127,0]],[[292475,771786],[86,49],[310,174],[826,867],[609,314],[792,910],[574,175],[109,201],[96,755],[52,269],[268,742],[322,625],[260,865],[471,553],[712,463],[659,1010],[362,308],[350,220],[147,410],[216,235],[579,477],[638,129],[644,396],[478,202],[-29,-82]],[[305289,785688],[64,117],[9,11],[2,9],[877,1597]],[[306241,787422],[328,740],[150,290],[98,272],[294,665],[371,383],[887,1347],[134,152],[444,418],[91,29],[539,478],[162,240],[316,299]],[[321631,794324],[5,-63],[-444,191],[-397,13],[275,-222],[411,-583],[-11,-30]],[[321520,793484],[15,-43],[-18,-695],[-219,-623],[-170,-187],[-665,-312],[-202,-295],[-163,-487],[-160,-187],[-382,-217],[-212,-316],[-620,-503],[-280,-60],[-322,121],[-635,388],[-575,505]],[[316912,790573],[-3,-1],[-39,38],[-76,-80],[-1140,-417],[-235,88],[-686,-556],[-37,-24]],[[341388,810047],[-380,-61],[-173,65],[-451,-55],[-647,-193],[-83,456]],[[339611,810157],[-211,-501],[-105,-71],[-469,-457],[-186,-66],[-503,-93],[-477,63],[-189,-64],[-230,-224],[-60,-119],[-7,-44],[-114,-102]],[[336172,807234],[-169,-658],[-45,-66],[-307,-587],[-590,-617],[-55,-91],[-34,-30]],[[334972,805185],[-5,-36],[-556,-927],[-565,-436],[-102,-311],[-37,-86]],[[333707,803389],[7,-5],[-65,-200],[-539,-366],[-214,-20],[-119,145]],[[332777,802943],[-710,-229],[-16,-3],[-509,-59],[-451,138],[-370,-234],[-769,-90],[-202,41],[-178,-85],[-618,-72]],[[328152,802589],[-47,7],[-104,94],[-682,36],[-546,227],[-498,42],[-485,102],[-319,-1],[-332,-60],[-175,5],[-94,13]],[[324870,803054],[-18,-10],[-229,6],[-183,-193],[-1260,110],[-218,147],[-334,58],[-450,-62],[-252,-120],[-503,-3],[-615,153],[-820,-163],[-389,-3],[-657,100],[-244,131],[-1174,-307],[-246,-33],[-488,187],[-246,-286],[-974,-131]],[[315570,802635],[-19,-19],[-27,23],[-234,-73],[-152,-300],[-199,-34],[-331,-531],[-556,-424],[-224,-638],[-162,-242]],[[313458,799940],[-61,-527],[-160,-453],[-61,-721],[-30,-63]],[[313146,798176],[-339,-728],[-222,-67],[-222,-13],[-973,-309],[-580,-99]],[[310810,796960],[-203,-234],[-279,-157],[59,-97],[-412,-476],[-15,-4],[-360,-257],[-233,-289],[-66,-229],[-506,-584],[-265,-240],[-103,-186],[-139,-161]],[[308288,794046],[-329,-682],[-267,-480],[-106,-293],[-297,-616]],[[307289,791975],[-472,-979],[-12,-20],[-344,-305],[-244,-48],[-250,96],[-415,376],[-304,41],[-759,524],[-1762,526],[266,-197],[232,-324],[466,-84],[474,7],[987,-655],[483,-224],[294,-197],[251,-439],[-180,-860],[-182,-711],[-247,-546],[-849,-1400],[-375,-429],[-177,-143]],[[303381,784508],[-401,-751],[-127,-134],[-397,-483],[-422,-763],[-992,-576],[-368,-147],[-340,78],[-413,-469],[-490,-287],[-144,-436],[-1177,-1169],[-451,-147],[-384,-311],[-114,-529],[-343,-319],[-95,-244],[-289,-740],[-536,-955],[-653,-160],[-239,-332],[-277,-537],[-390,-368],[-770,173]],[[293569,774902],[187,-226],[689,-352],[72,-521],[-345,-125],[-674,-648]],[[279112,806742],[176,-253],[301,-668],[-91,425],[-200,489],[-188,288]],[[279107,810443],[66,149],[442,344],[115,-31],[91,-419],[106,-86],[204,-66],[172,-145],[140,-224],[41,-94],[202,-1426]],[[280920,808206],[207,1697],[174,261]],[[281301,810164],[-14,172],[-110,232],[-345,611],[-181,666],[105,100],[102,274],[25,183],[805,1293]],[[281843,814291],[5,118],[119,215],[121,55],[-180,176],[-35,110],[45,970]],[[281438,816887],[-209,506],[-22,220],[3,3]],[[281299,818093],[-3,8],[32,95],[-50,251],[-242,348],[-115,307]],[[280796,819669],[-27,123],[-53,369],[17,815]],[[280370,823529],[0,62],[73,287],[103,110],[160,-29]],[[280706,823959],[4,51],[-244,241],[-94,240],[0,205],[194,273],[-38,127],[-154,160],[0,245]],[[278970,828660],[-206,48],[-71,69],[-90,36],[337,362]],[[286827,836847],[18,60],[237,501],[129,546],[63,371],[98,326]],[[287430,839324],[-15,377],[2,29],[28,1223],[-16,1092],[-132,1711],[-79,538],[-150,640],[-363,1289],[-66,351],[-225,591],[-739,1542],[-827,934],[-168,218]],[[284680,849859],[-3,2],[-101,150],[-365,306],[-556,351],[-360,286],[-403,460],[-13,20]],[[282037,852296],[11,-141],[-1,0],[-119,276],[-26,197],[36,512],[55,355],[66,261],[73,158],[138,13]],[[283002,855239],[-25,161],[168,288],[222,268],[403,352],[40,79],[404,368]],[[283908,856993],[-92,78],[-52,55],[-2,10],[137,459],[131,209],[43,135],[-16,187],[113,379],[301,22],[538,-658],[132,58],[-172,181],[-206,443],[30,184],[397,478],[8,164],[5,5]],[[285203,859382],[-4,15],[2,34],[-45,117],[-73,261],[-8,164],[232,572],[-62,121],[-422,71],[-34,122]],[[284789,860859],[-76,273],[116,72],[24,73],[-500,1179],[-82,592],[178,362],[263,213],[-33,121],[-344,22],[-127,39],[101,593]],[[284386,864851],[-157,106],[47,124],[197,113],[-37,98],[-729,-227],[-31,2],[-338,184],[-193,-28],[149,803],[222,315],[289,481],[181,434],[95,289],[11,144],[-31,470],[177,465]],[[284555,869165],[-85,188],[212,260],[-511,415],[-321,404],[-211,200],[-160,196],[-205,415],[-156,540],[-166,1087],[-27,599],[37,435],[69,212],[113,220],[133,120],[249,94]],[[284450,875357],[217,107],[353,134],[368,-68],[153,-44],[585,-94],[1994,-780],[1108,-442],[443,-566],[-252,-225],[53,-82],[277,209],[44,-57]],[[289793,873449],[415,403],[101,76],[174,97],[382,-2],[485,-187],[253,-37],[320,-204],[764,-676],[55,57],[-90,144],[1204,1007],[17,8],[442,288],[469,380],[316,203],[163,26],[209,-112],[456,-411],[1142,-1131]],[[297070,873378],[360,-274],[120,-127],[252,20],[440,-505],[2,-96],[-94,-424],[-294,-680],[123,-10],[186,145],[241,260],[189,92],[403,-207],[198,-176],[334,-384],[8,-14],[-108,-124]],[[299610,870499],[230,-297],[-68,-86],[-459,-233],[87,-87],[536,146],[163,144],[117,240],[156,69],[632,-422],[94,-147],[-41,-115],[-102,-130],[-1,0],[-364,-104]],[[300590,869477],[-61,-264],[-88,-134],[-37,-154],[97,-63],[118,-448]],[[301339,867436],[110,-32],[154,-139],[207,-59],[355,-11],[633,-184],[748,-359],[507,-76],[119,35],[557,-162]],[[304729,866449],[407,-119],[19,-116],[-5,-351],[141,-245],[8,-4],[358,-324]],[[306100,865551],[176,253],[89,17],[86,206],[62,313],[10,37]],[[306523,866377],[25,93],[53,148],[185,60],[149,-114],[75,-151],[100,-361]],[[307110,866052],[-12,-864],[-126,-165],[-234,-218],[-84,-142],[-255,-207]],[[306237,863596],[6,-334],[-20,-245],[10,-306],[43,-332],[89,-274],[95,-176],[-317,-1074]],[[306135,860694],[8,-87],[-20,-16],[-465,-70],[-1517,-16],[-405,65],[98,-248],[425,-79],[388,3],[1448,-157],[101,-80],[2,-21]],[[306198,859988],[411,-759],[30,-147],[-360,-1720]],[[306279,857362],[104,-267],[-25,-270],[81,-300],[197,-6],[600,-632],[-154,-318],[-26,-163],[127,-387],[-18,-111],[-77,-112],[-8,-35],[-91,-10]],[[305931,854269],[49,-498],[-57,-116],[-277,-210],[-611,-191]],[[305035,853254],[82,-58],[10,-106],[223,-60],[353,-252]],[[306573,852927],[158,171],[541,525],[308,196],[271,75],[305,10],[339,-55],[642,87],[46,0],[158,-64],[206,-159],[245,-251],[168,-241],[92,-232],[152,-875],[204,-229],[50,-169],[16,-257],[-13,-505],[-224,-1018],[-117,-376],[-310,-514],[-357,-233],[-636,-219],[-332,-183],[-250,-253],[-15,-139],[722,433],[794,212],[226,237],[171,230],[175,514],[315,1329],[179,418],[250,71],[111,-142],[141,-423],[-10,-551]],[[311294,850347],[-6,-296],[-355,-635],[153,78],[425,712],[91,222],[50,327],[15,26],[153,138],[21,-46],[132,-837],[4,-612],[21,-196],[-47,-581],[53,-104],[128,502],[42,379],[17,77],[362,597],[275,270],[608,416],[78,72],[892,547]],[[314406,851403],[29,18],[225,76],[134,144],[60,37]],[[314854,851678],[21,51],[103,110],[101,377],[4,8]],[[315083,852224],[321,768],[256,279],[177,20],[170,-132],[192,-267],[215,-402],[128,-316],[42,-229],[26,-599],[-214,-596]],[[317009,852239],[-315,481],[-87,217],[-75,303],[150,275],[76,40],[312,44],[52,82],[-229,207],[-1,14],[258,474],[86,14],[254,-59],[-51,190],[2,125],[72,49],[420,-120],[20,59],[707,117]],[[318341,854906],[-223,108],[-14,9],[-269,413]],[[318277,856918],[166,413],[30,4],[211,-87],[554,-509],[100,59],[-85,139],[-284,300],[-256,196],[-229,92],[-130,127],[-256,658],[-5,29],[15,246],[132,509],[76,111],[134,82],[192,53],[213,-50],[438,-336],[73,106],[-136,105],[-142,599]],[[319681,861903],[7,94],[63,112],[124,128],[77,135],[309,30],[255,-178]],[[311369,850206],[-12,-32],[-13,-22],[25,54]],[[316840,852307],[0,1],[0,-1]],[[316840,852307],[0,0]],[[323302,798170],[-88,101],[-93,291],[-279,399],[-300,330],[-1542,1005],[-126,350],[180,132],[742,194],[9,0],[803,-423]],[[325668,799327],[419,-299],[10,-10],[840,-832]],[[327719,797579],[107,-40],[368,-368],[371,-748],[57,-198],[-138,-196],[-154,-70],[-1162,-88],[-926,365],[-649,167],[-88,34],[-621,296],[-1268,897],[-163,280]],[[295648,774536],[-214,-119],[-366,110],[-402,-152],[-112,-3],[299,439],[459,270],[459,826],[128,21],[-174,-936],[-35,-334],[-42,-122]],[[295290,775223],[-335,-121],[-116,51],[370,581],[423,133],[-342,-644]],[[218424,795363],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-301,0]],[[211017,795363],[-884,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-1184,0],[-1185,0],[-1184,0],[-1184,0],[-1185,0],[-290,0]],[[113732,860425],[-4,4],[-354,480],[134,527],[161,631],[0,376],[0,4],[-432,-24],[-648,-35],[-579,-32],[-429,-446],[-396,-412],[-621,321],[-49,25],[-662,343],[-189,-451],[-13,-30],[-659,241],[-665,243],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1726],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1727],[0,1701]],[[108327,917427],[5,-1]],[[119811,912932],[374,36],[44,-16],[608,48],[152,-13]],[[138823,836164],[-202,-435]],[[138474,835223],[17,-353]],[[138527,834138],[95,-1930]],[[138286,831145],[-159,-415]],[[138056,830607],[-746,-971]],[[137310,829636],[-93,-51],[-39,44],[-649,98],[-236,844],[-126,655],[-85,257],[217,893],[505,244],[6,124],[-241,83],[-58,136],[-49,459],[87,700]],[[136549,834122],[-155,708],[-57,384],[-71,197],[-28,128]],[[136238,835539],[-44,72],[-19,52],[-419,876],[-35,221],[184,277],[115,258],[-708,-449],[-907,-443],[-7,15]],[[133563,835970],[317,-431],[11,-48],[-11,-100],[-85,-183],[-99,-519],[-210,-549],[-107,-113],[-376,205],[-102,176],[-188,718],[44,191],[137,161],[187,348],[236,535],[128,387],[3,5]],[[133453,836762],[744,1036],[382,199],[-813,135],[-121,71],[-110,185],[-97,300],[-166,333],[-309,117],[-135,123],[-205,404],[-44,59],[-169,362],[-12,253],[-58,135]],[[132340,840474],[-205,47],[-127,161],[-28,622],[-423,178],[-174,152],[-246,381],[-123,507],[57,403],[-28,90],[-247,-50],[-1535,737],[46,545],[65,128]],[[130027,844607],[-751,369],[-218,984],[-305,521],[61,202],[65,107],[137,3],[588,-378],[555,-449],[71,65],[-885,951],[-221,284],[-55,342],[-4,182],[71,96],[830,-85],[50,71],[-842,278],[-172,-2],[-185,-398],[-87,-95],[-114,12],[-242,327],[-100,225],[-203,336],[-158,194],[-298,743],[-13,350],[50,463],[310,1055],[125,183],[33,115],[-96,-18],[-90,-100],[-257,-490],[-264,-804],[-215,-274],[-136,66],[-205,328],[-428,399],[-495,104],[-312,408],[-462,1138],[-62,566],[-60,139],[-217,160],[-255,687],[-170,991],[-106,325],[-124,605]],[[124166,855888],[-151,740],[16,301],[-41,55],[-108,-392],[-29,-205],[-198,-58],[151,-321],[-84,-277],[-117,-30],[66,-140],[-3,-7]],[[123972,854100],[312,-901],[2,-7],[139,-632],[62,-479],[91,-459],[112,-456],[118,-779]],[[124715,850036],[-5,-8],[-103,-54],[-448,134],[-135,201],[-348,806]],[[123676,851115],[-469,-111],[-623,-78],[-76,124],[2,286],[96,669],[-77,270],[-265,601],[-164,495],[2,80],[602,451],[-292,34],[-236,-176],[-91,114],[-142,630],[-92,235],[-46,50],[-26,-598],[100,-316],[14,-182],[-10,-168],[-36,-174],[-33,-94],[-109,-110],[-110,-28],[-203,127],[-226,238],[-197,113],[-74,96],[-93,263],[-153,200],[-145,50],[-75,83]],[[120429,854289],[-814,324],[-140,96],[-37,-79],[53,-124],[-90,-561],[-121,-186],[58,-42],[209,100],[233,-12],[386,-185],[351,-242],[127,-136],[52,-200],[44,-72],[343,-234],[16,-123],[-168,-280],[-21,-21]],[[121009,852220],[56,42],[269,24],[264,-132],[275,-460],[187,-654],[7,-175],[-71,-118],[-134,-81],[-924,-133],[-218,-319],[-73,-25]],[[120647,850189],[-393,3],[-435,368],[-431,278],[-819,659],[-636,533],[-36,52],[-21,212],[-90,108],[-178,93],[-247,279],[-316,464],[-195,362],[-75,261],[-183,298],[-594,623],[-311,239],[-274,135],[-132,16],[-167,101],[106,132],[16,81]],[[115236,855486],[-526,128],[-500,291],[-1268,820],[-656,513],[-382,246],[-163,138],[-72,112],[35,44],[150,40]],[[112510,858608],[5,1569],[32,24],[100,-41],[322,-472],[46,-172],[-15,-645],[92,-755],[29,55],[30,250],[19,477],[36,229],[69,224],[117,118],[363,-69],[167,40],[-707,342],[-444,639],[-81,67],[-243,28],[-17,-17],[-96,163]],[[112046,860083],[-9,-19],[-510,-649],[-185,-148],[-833,-467],[-564,-94],[-635,73],[-541,152],[-1358,738],[-212,172],[128,185],[211,33]],[[106893,861144],[-668,-830],[-959,299],[-1234,311],[-333,19],[-84,24]],[[103615,860967],[-81,-14],[-605,35],[-1557,-247],[-831,-250],[-452,-22],[-143,12]],[[99946,860481],[-183,15],[-113,10],[-81,107],[-16,73],[213,102],[-12,126],[-269,392],[-409,238],[-548,84],[-314,115],[-80,145],[-194,139],[-308,132],[-95,166],[221,820]],[[97758,863145],[-164,-87],[10,71],[106,440],[105,301],[265,500]],[[98080,864370],[-92,-37],[-386,-366],[-335,-378],[-312,-492],[-185,-227],[-238,-208],[-370,50],[-504,308],[-432,159],[-68,2],[-14,56]],[[94483,864544],[-501,-33],[-2,133],[-42,114],[-191,84],[-267,-64],[-309,-158],[-32,64]],[[93139,864684],[-96,192],[25,12],[287,320],[-388,165],[-199,190],[-97,156],[7,562],[102,361],[873,349],[-276,137],[-551,-47],[-370,-297],[-122,-120],[-936,-329],[-26,5],[-247,-33],[-166,-110],[-9,-19],[-63,-22]],[[90517,866331],[-257,-203],[-47,22],[-122,145],[-71,-91],[-85,-274],[-77,-120],[-34,-27],[-401,-135],[-232,27],[-277,345],[-39,120],[94,298],[319,618],[288,376]],[[89637,867944],[-979,-1135],[-208,-13],[-141,51],[-170,-38],[-200,-127],[-130,-138],[-61,-151],[41,-25],[302,172],[170,46],[48,-84],[-234,-533],[-143,-509],[-136,-128],[-216,21],[-236,-50],[-3,-142],[27,-26],[-356,-129]],[[87851,864722],[7,4],[83,-30],[204,-145],[31,-145],[-77,-390],[-57,-153],[-93,-80],[-360,13],[-116,-40],[-242,-245],[-120,-203],[44,-18],[208,168],[304,90],[13,0],[148,-116]],[[88220,863307],[172,367],[166,141],[174,-43],[238,-497]],[[88970,863275],[-10,-69],[-46,-120],[-153,-139],[-231,-84],[-146,-125],[-61,-166],[-34,-247],[-1,-49],[-411,-368]],[[88196,861553],[129,6],[15,-152],[-45,-80],[-87,-44],[-129,-8],[-116,-139],[-271,-785],[-95,-85],[-114,84],[-101,-9],[-88,-103],[-193,-78],[-298,-54],[-255,21],[-449,170],[-183,120],[-143,196],[-403,-208],[-106,91],[-251,544],[-54,-32],[-36,-431],[-27,11]],[[84063,860097],[-46,-344],[-114,-190],[-24,-136],[15,-125],[-215,-317],[-249,144],[-111,12],[-30,-44],[155,-378],[-13,-98],[-97,-142],[-551,-626],[-168,27],[-105,72],[-116,-11],[-409,-272],[-113,12],[-154,161],[-72,-7],[-38,-168],[-5,-327],[-128,-264],[-200,-110]],[[81275,856966],[-830,-863],[-66,47],[-331,133],[-46,-66],[101,-193],[-15,-83],[-277,11]],[[79483,855966],[-57,-42],[-196,-56],[-395,-256],[-330,7],[-460,421],[-127,32],[-40,118],[89,341],[52,101],[21,4]],[[78101,856630],[849,684],[181,44],[315,199],[381,409],[202,308],[48,95],[680,825]],[[80757,859194],[-384,-55],[-66,32],[-873,-752],[-129,-70],[-173,5],[-698,288],[-148,124],[-101,361],[91,386],[285,916],[295,530],[445,654],[155,424],[231,1135],[-3,99],[122,328]],[[80066,865032],[31,22],[587,333],[361,324],[1085,753],[10,0],[345,-148],[66,-78],[219,-177],[249,-133],[321,14],[9,4],[197,-85]],[[85258,865708],[14,30],[359,-119],[271,-24],[11,54],[-197,296],[-700,137],[-478,173],[-73,34],[-1042,756],[-145,177],[68,248]],[[83356,867505],[1,1],[180,80],[87,109],[37,189],[22,39],[262,334]],[[84940,869011],[-80,39],[337,215],[-290,20],[-400,-65],[-62,29]],[[84445,869249],[-59,-49],[-12,-2],[-194,-91],[-357,-339],[-43,-74],[-78,-65]],[[83702,868629],[-33,-133],[-184,-432],[-84,-88],[-370,-67],[-1008,-47],[-171,238],[-94,39]],[[81758,868139],[-125,-34],[-714,-469],[-179,-87]],[[79221,866398],[-24,-33],[-290,-160],[-390,-407],[-133,-312],[-7,-147],[20,-98],[-464,-651]],[[77933,864590],[-22,-38],[-123,-105],[-762,-911],[-100,-330],[4,-113],[78,-161],[-46,-81]],[[76962,862851],[-1177,-1034],[-28,-1],[-196,60],[-348,270],[-283,17],[-17,-38],[384,-289],[391,-372],[35,-44],[-323,-1606],[-3,-1],[-692,-136],[-223,-108],[-69,-83],[476,-191],[42,-97],[-65,-378],[-126,-124],[-396,-226],[-354,-65],[-39,118],[50,223],[-19,73],[-133,60],[-190,-113],[-472,-437],[-50,-72],[170,-117],[-36,-98],[-255,-314],[-107,-210],[-37,-47],[-1020,-760]],[[72728,854885],[146,-8],[303,-143],[661,-465],[81,-112],[164,-298],[8,-38],[-20,-156],[-79,-211],[-208,-398],[-499,-592],[-226,-167],[-341,-132],[-112,-96],[-439,-561],[-103,-264],[-326,-645],[-319,-205],[20,-65],[152,-20],[-426,-844],[-80,1],[-91,-36],[-41,33]],[[70953,849463],[-144,-104],[-172,-66],[-31,-49],[-1,-33],[-547,-395],[-633,-126],[-256,-607],[-134,-187],[-459,-441],[-282,-178],[-321,-107],[-168,-149],[-16,-193],[-91,-165],[-278,-275],[-34,-84],[-356,-340],[-364,-58],[-103,-109],[-11,-105],[-470,-242]],[[65813,845167],[-75,-78],[-282,-277],[-35,-56],[-110,-115]],[[65311,844641],[28,-28],[12,-92],[83,-101],[128,-313],[-8,-212],[-207,-588],[-73,-91],[-252,-146],[-95,-302],[-110,-8],[-130,20],[-114,-38],[-36,-3]],[[64537,842739],[-16,-14],[-21,-7],[-13,-23],[-78,-70]],[[62473,841295],[-577,-728],[-148,59],[-273,-38],[-441,-314],[-140,-237],[277,-52],[138,-68],[-3,-66],[-145,-65],[-247,5],[-148,-55],[-132,-98],[-314,-28]],[[60320,839610],[-28,-104],[-160,-51],[-172,-104],[-342,-594],[-41,-134],[44,-30],[192,63],[225,-99],[42,-44],[150,-393]],[[60230,838120],[84,-221],[-403,-466],[-30,-53],[-96,487]],[[59384,837968],[-40,-357],[-191,-581],[-236,-333],[-858,-411],[-666,-227]],[[56519,834790],[-41,-137],[-7,24],[1,24],[179,948]],[[56651,835649],[-224,103],[-158,99],[-40,-8],[-176,82]],[[56053,835925],[-375,-365],[-18,2],[-231,-188],[-443,-487],[-132,-129],[-335,-140],[-95,-126],[-118,-255],[-327,-188],[-160,80],[-160,-70],[-122,-241],[-116,-90],[-8,-5],[-348,177],[-154,-122],[-201,-310],[-209,-206],[-218,-99],[-566,-104],[-228,66],[-46,91],[11,396],[74,233],[29,73],[73,115],[112,119],[165,14],[309,-89],[-35,96],[-112,113],[-284,197],[-72,25],[-171,88]],[[51146,834528],[-146,-289],[-40,-45],[-77,-187],[-21,-42]],[[50862,833965],[-7,-118],[-78,-496],[-59,-175],[-663,-1137],[-261,-351],[-257,26],[-125,-132],[-175,-285],[-88,-74],[-329,248],[34,25],[-40,228],[-190,373],[-129,202],[-246,23],[-38,-169],[23,-241],[-143,107]],[[48222,831793],[28,-48],[44,-458],[-13,-195],[-154,-248],[-404,-275],[-126,27],[-363,543],[-344,108],[-23,-177],[77,-361],[-86,-338],[-217,-274],[-225,-192],[-125,9],[-7,220],[115,431],[30,358],[-57,288],[6,184],[7,51],[24,52],[254,172]],[[46663,831670],[499,337],[37,-38],[129,-18],[154,69],[97,136],[30,152],[10,7]],[[48253,833023],[35,86],[286,415],[456,856],[533,737],[613,619],[665,490],[193,98],[700,257]],[[52014,836684],[154,-28],[-9,-15],[84,-136],[132,-18],[334,74],[335,-60]],[[53044,836501],[-184,-185],[-106,-63],[3,-42],[-45,-45]],[[53695,834986],[554,774],[93,-69],[249,-99],[154,31],[60,160],[-106,191],[-476,419],[-133,175],[-32,244],[68,312],[140,434],[25,72],[216,572],[168,344],[610,629]],[[55921,839832],[813,575],[813,437],[198,278],[377,266]],[[58518,841668],[62,61],[45,-129],[314,-122],[203,-43],[94,38],[25,195],[-42,353],[-10,334],[1,24],[1251,2177]],[[60469,844570],[1422,1331],[61,-29],[64,-151],[80,-94],[306,-85],[204,135],[-34,70],[-165,46],[-106,87],[-100,359],[-194,207],[1,256]],[[62009,847179],[2,17],[152,780],[23,735],[1,9]],[[62187,848720],[45,311],[115,391],[312,191],[692,130],[-405,238],[-150,2],[-264,111],[-67,387],[88,377]],[[63134,852158],[292,363],[533,426],[-95,46],[-80,152],[81,324],[237,822],[318,1008],[-429,-860],[-88,-116],[-57,-8]],[[63846,854315],[-569,-647],[-1237,-649],[-502,-325],[-794,-415],[-135,-45],[-362,214],[-218,554],[-138,218],[-178,401],[75,520],[141,360],[308,59],[348,-173],[302,-15],[-389,355],[-561,309],[-255,-100],[-194,-503],[-261,-345],[-229,122],[-135,141],[94,-422],[-173,-642],[-66,-444],[45,-213],[32,-278]],[[58795,852352],[55,-131],[116,-551],[-46,-469],[-450,-215],[-366,385],[-766,1487],[-3,4],[-138,298]],[[56281,854036],[-49,-213],[-210,-287],[-245,-95],[-560,441],[-236,262],[-150,193],[-284,471],[-413,-246],[-18,5]],[[52971,853773],[-181,-125],[-612,-319],[-86,-9],[-114,-228],[-112,-102],[-61,-290],[-72,-101]],[[51733,852599],[-169,-112],[-885,-275],[-648,114],[378,245]],[[50409,852571],[163,478],[194,240],[-156,610],[-27,310],[4,393],[401,551],[-417,-1],[-251,-185],[-139,216]],[[50053,855381],[-5,17],[-113,785],[287,482],[75,209],[199,199]],[[50695,857711],[-440,1010],[-1,5],[-638,1571],[-290,1172],[-496,625],[371,1021],[413,931],[534,417]],[[50148,864463],[-42,62],[-296,-3],[-193,-55],[-172,-303],[-181,-231],[-566,-1185],[-364,-577],[-237,-166],[382,-224],[57,-189],[74,-429],[-98,-521],[-30,-87],[-155,-196],[-362,19],[-404,-419],[-948,-456],[-1281,-261],[-300,15],[-435,102],[-549,446],[4,308],[27,268],[-890,867],[-80,98],[-504,865],[-252,13],[-808,583],[-48,46],[34,306],[62,215],[-241,150],[-309,-14],[-134,38],[-129,186],[299,374],[484,361]],[[42032,865340],[-69,243],[245,104],[341,-121],[471,-310],[396,-137],[144,-145],[146,-276],[-154,-461],[-142,-324],[174,88],[494,501],[368,441],[176,-46],[114,-78],[205,-454],[253,-463],[560,441],[299,549],[-253,240],[-308,143],[-788,186],[192,158],[506,-18],[190,151],[-200,208],[-250,186],[-683,-620],[-1241,31],[-868,362],[-472,-34],[-200,707],[334,246],[19,148],[-201,18],[-377,-122],[-169,212],[28,369],[-62,-33],[-149,-201],[-171,80],[-97,87]],[[40833,867396],[-5,-12],[-119,110],[94,177],[186,243]],[[40989,867914],[-83,36],[-166,-52],[-162,-318],[35,-257],[-4,-324],[-317,257]],[[39906,867569],[-55,56],[-105,473],[-479,211],[-118,403],[303,516],[-133,267],[-323,86],[-259,-184],[-35,72]],[[38820,870046],[33,159],[495,136],[72,98],[-456,240],[198,585],[188,7],[614,192],[-258,344],[-54,188],[-52,310],[102,524],[468,781],[163,241]],[[40333,873851],[800,1190],[74,79],[207,172],[253,98],[300,-95],[313,-216],[59,92],[-106,88],[-133,407],[149,46]],[[42249,875712],[-2,12],[286,107],[255,463],[19,134]],[[42807,876428],[-276,-193],[-289,-316],[-45,200],[-75,597],[-25,242],[11,77],[115,626],[11,35],[283,515],[46,56],[35,6],[165,25]],[[42960,878329],[2,6],[293,50],[122,-59],[26,139],[-417,435],[171,340],[151,177],[58,19],[893,235],[167,-31],[718,-336],[33,-19],[333,-400],[-48,-205],[-83,-119],[-173,-133],[-64,-103],[31,-82],[245,238],[394,284],[108,-94]],[[52903,885316],[-65,79],[-26,146],[-646,859],[-54,30],[-43,592]],[[53005,888908],[-170,156],[-233,335],[-186,126],[-157,-8],[-159,-156],[-1119,-607],[-313,126],[-302,-435],[-845,-382],[-451,-385],[-784,-898],[-665,86],[-56,242],[-909,801],[-275,-272],[151,-252],[207,-179],[339,-78],[-106,-177],[-725,95]],[[46247,887046],[-55,27],[-320,232],[-631,227],[-1641,-25],[-1077,-452],[-99,94],[-104,37],[-180,-108],[-77,-184],[-117,-116],[-129,-24],[-130,-11],[-404,62],[-856,282],[-1935,413],[-169,85],[-200,374]],[[37669,888812],[-17,40],[102,91],[-19,589],[-376,156],[-130,143],[-335,777]],[[37579,891026],[288,478],[245,80],[439,-77],[-98,148],[-112,117],[-1145,279],[-155,-86],[-1967,475],[-395,189]],[[34679,892629],[-79,38],[-1231,655],[-133,164],[-145,359],[439,463],[6,-120],[35,-196],[929,456],[485,597],[920,105],[214,164],[285,321],[408,547],[577,289],[392,259],[512,152],[436,-254],[135,-35],[792,-52],[261,111],[111,82],[82,130],[-777,460],[78,257],[100,181],[606,358],[475,223],[524,133],[373,-12],[817,522],[1024,326]],[[44834,899381],[236,-68],[-114,12],[-217,-45],[155,-85],[174,-180],[-51,-227],[-303,-676],[22,-475],[-24,-89],[-170,-151],[-191,-247],[209,-173],[-23,-86]],[[45502,896216],[2328,97],[165,-83],[375,-53],[411,47],[1532,-191]],[[52767,897305],[-181,305],[-1,7],[-141,235],[-674,246],[-1403,577]],[[50367,898675],[-64,62],[9,53],[-843,1183],[-352,239],[-368,11],[-92,88],[-167,323],[-138,411],[51,171],[11,7],[188,54]],[[49043,901402],[528,-660],[64,-130],[12,-4],[163,-552]],[[51882,898722],[70,86],[393,-5],[299,-124],[732,-531],[372,-67],[1164,279],[12,522],[-98,377],[-273,237],[-786,-44],[-612,389],[-520,-107],[-963,-596],[-482,235],[-304,318],[-370,246],[-121,113],[-27,266],[98,390]],[[50466,900706],[310,657],[46,51],[605,23]],[[50492,902075],[-198,-46],[-198,50],[-1184,-175],[-55,239],[6,258],[-483,-505],[-495,106],[-404,-33],[-941,183],[-795,240],[-524,550],[-101,204],[-13,139]],[[44821,904186],[-210,401],[-7,22],[-21,31],[-231,441]],[[44352,905081],[-245,276],[-10,15],[-11,8],[-70,79]],[[44016,905459],[-171,99],[-3251,2408],[-524,214],[-1309,674]],[[38761,908854],[-26,13],[-502,472],[-481,178],[-401,63],[-218,112]],[[37294,909808],[78,56],[275,139],[153,170],[56,41]],[[37856,910214],[87,353],[160,517],[218,1031],[37,151]],[[46694,915716],[50,165],[30,18],[84,393],[104,924],[393,871],[1672,1986],[775,786],[259,358],[169,163],[120,73],[171,-223],[90,-74],[53,-117],[-160,-54],[-259,-254],[-363,-170],[-87,-87],[212,19],[637,185],[359,225],[1785,414],[968,685],[8,32],[890,555]],[[54654,922589],[290,251],[286,171],[199,-33],[229,-103],[-398,-565],[280,-148],[-249,-676],[521,-10],[117,-311],[29,268],[-7,384],[42,377],[76,261],[366,-118],[824,280],[-999,35],[-598,612],[-225,3],[1089,945],[14,7],[549,199]],[[57089,924418],[650,236],[62,-57],[13,-88],[-64,-34]],[[57406,924099],[10,-11],[72,-124],[148,-24],[263,75],[85,4]],[[58355,924036],[2666,475],[94,1],[86,31],[352,62]],[[65087,927511],[36,-30],[-32,-36],[270,-295],[271,-90],[121,-100]],[[66586,926618],[1106,-191],[143,-285],[-153,-351],[-472,-391],[-951,-400],[291,-151],[190,-356],[252,-39],[116,-40]],[[68053,924574],[971,1433],[576,-89],[351,-205],[400,-362],[-146,-351],[-164,-198],[518,-274],[269,-26],[25,-108]],[[73226,924737],[1644,152],[727,-195],[37,10],[1262,-587],[-333,-267],[-92,-470],[198,-196],[126,-12],[-16,-118]],[[76779,923054],[292,-163],[3,-16],[55,-17],[639,-357]],[[77768,922501],[304,-171],[-141,-141],[478,-47],[120,-68]],[[80318,921897],[1862,266],[33,-23],[360,-56],[337,55],[364,181],[1404,201],[292,-100],[98,14],[944,-253]],[[86012,922182],[442,-119],[88,-33],[67,-8],[410,-110]],[[87019,921912],[41,-18],[498,-498],[300,-18],[144,105],[1286,-561]],[[89288,920922],[353,-83],[66,-39],[276,-42],[1074,-254]],[[98897,919664],[262,112],[663,61],[882,282],[500,-3],[582,-70],[224,34],[161,124],[1226,-421],[259,-114],[727,-510],[347,-411],[1610,-570],[132,-74],[399,-273],[329,-363],[193,-39],[136,106],[454,-24],[344,-84]],[[138643,832260],[-44,1530]],[[39181,897682],[187,88],[-7,-20],[-312,-230],[-465,-300],[-108,-33],[5,80],[700,415]],[[26323,882198],[501,6],[122,-36],[300,-197],[107,-89],[86,-87],[110,-241],[72,-293],[109,-209],[337,-131],[222,-190]],[[28835,880460],[169,-83],[11,-24],[353,-149],[219,33],[770,-85]],[[30555,879537],[-1,-333],[-301,35],[-711,-82],[-294,-295],[-245,-371],[-506,-178],[-102,387],[-113,169],[-125,106],[-347,194],[-353,122],[-122,9],[-234,224],[-81,302],[-141,158],[-279,226],[-286,177],[-893,385],[-293,51],[-298,-42],[-319,-175],[-309,-261],[-316,-194],[-328,-43],[-313,113],[-295,255],[-147,180],[-79,310],[4,311],[40,300],[159,724],[277,141],[24,-24],[10,-183]],[[23480,882074],[133,-44],[101,-102],[42,-144],[290,24],[407,-62],[329,-102],[362,-120]],[[30556,879535],[111,-343],[-110,12],[-1,331]],[[88629,865825],[6,12],[149,40],[204,-142],[59,-146],[34,-291],[-352,-49],[-161,75],[-23,82],[67,298],[-1,30],[1,8]],[[96893,862408],[-10,-17],[-419,42],[402,353],[72,-76],[-45,-302]],[[38640,862383],[214,-5],[49,-6],[21,5],[180,-4]],[[39741,861922],[3,-32],[8,-150],[-70,-303],[21,-427],[-15,-185],[157,-167],[29,-348]],[[39393,859779],[-356,-14],[-425,-238],[-88,-177],[29,-110],[-208,-134],[-183,215],[-226,116],[-581,131],[-503,255],[-699,497],[-428,146],[-434,515],[-376,629],[97,53]],[[35012,861663],[148,80],[189,39],[411,-24]],[[35760,861758],[15,7],[791,-67],[144,469],[64,51],[272,123]],[[37046,862341],[830,231],[2,-1],[8,3],[379,106]],[[38393,862749],[1,1],[119,-68],[56,-65],[37,-121]],[[90354,860884],[1038,1639],[24,-16],[22,-79]],[[91438,862428],[225,-126],[121,-179],[-81,-204],[-921,-1059],[-78,-138],[-83,-359],[-76,-125],[-122,-58],[-88,-157],[-55,-257],[-114,-134],[-172,-11],[-119,-71],[-66,-130],[-187,-108],[-306,-86],[-73,175],[156,419],[458,511]],[[88482,860660],[-348,70],[114,356],[420,226],[15,-12],[-201,-640]],[[76427,851461],[-81,-37],[-203,181],[-43,61],[599,577],[57,-36],[30,-96],[-15,-142],[-84,-177],[-260,-331]],[[77199,849821],[-13,-10],[-29,49],[-78,219],[-47,3],[-183,-257],[5,-128],[42,-105],[-319,-241],[-54,8],[-239,-167],[-57,104],[-36,293],[-75,-33],[-113,-359],[-123,-228],[-224,-189],[-49,-91],[-165,-13],[-147,-71],[-206,-33],[-41,6],[-897,390],[-59,40],[172,332]],[[74665,849810],[713,480],[137,-66],[119,17],[8,396],[-70,100],[107,423],[225,98],[173,-29],[191,-103],[181,-169],[171,-233],[100,-48],[105,352],[74,11],[329,-298],[40,13],[270,-252],[22,-61],[59,-17],[-43,-62]],[[127996,847447],[96,-339],[49,-242],[125,-451],[-22,-63],[-258,297],[-196,637],[-100,249],[-99,112],[-104,235],[-203,608],[-7,171],[-90,158],[-104,67],[-117,-27],[-41,-61],[0,-5],[-25,19]],[[126985,847930],[325,-566],[235,-470],[341,-579],[67,-193],[44,-530],[-146,-239],[180,-489],[-7,-96],[-39,-93],[-485,-216],[-176,-358],[-791,-1093],[-189,-72],[-107,89],[-102,203],[-60,272],[-18,340],[121,215],[241,1113],[7,366],[-301,507],[-75,173],[-246,1218],[-121,1134],[-76,489],[-107,408],[-103,241],[336,237],[8,-16],[147,-375],[706,-135],[267,16],[349,-172],[42,-77],[539,-1191]],[[126080,850476],[253,84],[337,-268],[145,-209],[-735,393]],[[124050,849222],[959,-349],[117,-188],[74,-369],[-34,-232],[-153,-177]],[[124429,848211],[539,-739],[-253,-97],[-173,15],[-184,116],[-298,-278],[247,-214],[752,-48],[228,-451],[65,-348],[-162,-639],[-426,177],[-376,370],[-771,524],[-161,21],[-29,27]],[[123427,846647],[-110,-110],[-8,-6],[0,-2],[-109,-110]],[[123178,846398],[108,-85],[-10,-100],[8,-689],[-206,-357],[-608,157],[-239,522],[-222,826],[-319,373],[-59,148]],[[121631,847193],[-47,-25],[-413,481],[-226,196],[-274,530],[-9,130],[101,389],[36,268],[161,71],[166,146],[382,201],[32,-54],[283,-349],[4,328],[133,261],[278,-10],[130,55],[183,245],[263,126],[157,-143],[237,-344],[93,-711],[-11,-49],[-215,-112],[61,-158],[160,-118],[115,98],[363,481],[276,96]],[[76395,846994],[38,-65],[4,-88],[198,-338],[65,-24],[53,-90]],[[76673,845971],[-111,-587],[-537,89],[-556,184],[-225,31],[-80,-59],[-157,-173],[113,-50],[487,-42],[172,-251],[69,-170],[-1146,-536]],[[74702,844407],[132,-320],[-596,-64],[-471,-350],[-166,-173],[-58,-206],[-177,-150],[-401,-150],[239,-134],[37,-114],[5,-151],[-306,-664],[-7,-13],[-120,-140],[-515,-428],[-152,23],[-65,62],[-53,95],[-3,95],[772,998],[-31,49],[-210,33],[-26,23],[350,753]],[[72825,843615],[-544,-683],[-57,48],[-235,-176],[-53,6],[63,236],[153,280],[-27,79],[-84,70],[-194,42],[-302,13],[-224,-66],[-146,-147],[-12,-62],[310,18],[85,-75],[83,-139],[51,-161],[18,-182],[-65,-245],[-148,-308],[-216,54],[-444,684],[-196,1001],[-380,765],[-17,183],[108,471],[282,494],[354,289],[159,71],[293,281],[284,85],[175,-7],[240,-122],[97,-256],[-58,-121],[22,-63],[168,-154],[182,-538],[213,-478],[141,-194],[186,-120],[-193,365],[-113,452],[-57,900],[-55,238],[107,64],[304,-35],[-8,134],[-321,303],[-106,136],[497,721],[14,-11],[262,-572],[122,-178],[102,0],[94,95],[87,190],[89,113],[93,38],[291,-84],[97,31],[48,143],[-2,199],[247,-36]],[[74677,847880],[-147,178],[1,9],[-159,277],[182,85],[4,-1],[299,-169]],[[74857,848259],[548,-309],[-122,-396],[20,-324],[113,39],[428,335],[223,98],[290,15],[230,-152],[31,-79],[-98,-216]],[[74331,847709],[-77,-164],[-73,42],[-156,192],[-13,12],[301,-43],[18,-39]],[[126050,840715],[-8,-522],[-75,-132],[-15,-194],[71,-518],[2,-359],[-7,-492],[-57,-379],[-78,-67],[-190,146],[-156,239],[-115,250],[-284,787],[-84,368],[-5,264],[44,192],[92,119],[162,320],[-23,51],[-123,-71],[-251,-41],[-220,253],[-172,133],[35,454],[-46,129],[-338,-140],[-127,127],[-28,171],[6,255],[64,224],[321,564],[-32,104],[-156,24],[-68,64],[-148,1096]],[[123668,844279],[-367,563],[86,148],[23,157],[93,186]],[[123503,845333],[2,69],[141,335],[108,106],[284,-7],[13,-14],[132,-168]],[[124183,845654],[72,-36],[382,-382],[182,-88],[265,-386],[236,-649],[171,-503],[152,-605],[200,-984],[207,-1306]],[[74980,843423],[-353,-191],[-63,8],[-218,-386],[-167,-167],[-173,241],[-43,95],[53,441],[192,314],[788,-85],[105,-255],[-121,-15]],[[130363,842206],[322,-262],[8,-143],[-36,-401],[26,-411],[-14,-213],[-47,-176],[-78,-139],[-86,-18],[-270,370],[-310,665],[-236,203],[-10,-69],[65,-191],[193,-357],[34,-216],[136,-262],[60,-200],[35,-261],[-2,-228],[-37,-196],[-63,-125],[-20,-13],[-203,-27],[-338,39],[-164,-76],[-584,480],[-17,320],[-83,672],[20,517],[-213,468],[-182,282],[-262,252],[-172,252],[47,200],[268,149],[440,-35],[948,-351],[185,-185],[75,145],[565,-459]],[[128094,840313],[23,-557],[-16,-112],[36,-572],[-39,-571],[-150,-582],[-31,-390],[-58,-117],[-65,-40],[-83,106],[-121,83],[-152,-329],[-187,-2],[-154,746],[138,1243],[308,253],[-183,338],[-357,360],[-26,72],[27,180],[-294,632],[-17,150],[47,527],[248,424],[196,85],[196,45],[254,-201],[97,-118],[52,-168]],[[127974,841174],[285,194],[135,-286],[110,-463],[-80,-298],[-116,67],[-95,-127],[-119,52]],[[131522,840703],[166,-247],[62,-257],[-214,-164],[-187,-54],[-90,-99],[-28,-80],[-9,-7],[-346,8],[-128,71],[-48,253],[33,234],[82,181],[100,348],[78,582],[78,-98],[451,-671]],[[131732,837197],[-9,-39],[-65,9],[-158,70],[-87,306],[-22,403],[67,150],[212,107],[166,488],[74,53],[66,41]],[[132495,838823],[188,395],[79,-151],[385,-849],[-57,-361],[-263,-146]],[[132827,837711],[146,-1118],[-8,-130],[-11,-19],[-100,51],[-105,2],[-214,-140],[-226,62],[-105,109],[-39,126],[40,291],[-125,163],[-56,8],[-22,77]],[[130602,837090],[31,10],[464,-276],[464,-631]],[[131561,836193],[326,-444],[66,-168],[185,-656],[393,-762],[72,-81],[30,-73]],[[132538,833979],[-119,-37],[-506,433],[-49,-21],[-17,-86],[-58,36]],[[131790,834271],[11,-216],[-84,-220],[-137,-174],[110,-52],[438,100],[90,-47],[360,-441],[157,-90],[54,-127],[43,-174]],[[132832,832830],[53,-218],[-81,-240],[-68,-108],[23,-73],[113,-38],[105,18],[143,-1227]],[[133212,830974],[128,41],[55,-331],[-1,-173],[-51,-229],[-2,-194],[40,-199],[5,-178],[-113,-464],[-120,-78],[-193,-3],[-152,131],[-215,399],[-208,620],[-80,89],[-274,93],[-49,73],[-166,13],[-131,284],[14,306],[-107,341],[13,153],[-120,64],[-101,-96],[27,-175],[-107,234]],[[131057,831827],[-250,132],[-9,20],[-411,664],[-161,158],[43,193],[203,102],[164,-8],[34,114],[-344,642],[12,182],[125,324],[-157,135],[-428,-101],[-151,67],[-124,260],[-73,225],[-203,23],[-40,567]],[[129639,835748],[-11,72],[33,36],[38,248],[186,203],[-30,214],[-103,364],[-228,102],[-465,-217],[-68,-56],[-156,542],[56,72],[190,308],[-37,182],[-140,235],[-11,591],[90,135],[526,-126],[195,5],[584,-1561]],[[135462,833233],[-534,-158],[-60,206],[-75,-209],[-32,-46],[-460,-136]],[[134238,832830],[-59,-513],[-78,-162],[-108,-310],[-135,338],[-86,801],[-11,341],[23,48],[98,65]],[[133882,833438],[339,744],[91,143],[7,157],[46,193]],[[134652,835874],[-39,82],[750,555],[92,-38],[321,-546],[341,-762],[84,-327],[5,-23],[2,-593],[-39,-466],[-90,-605],[-13,-66],[-185,-644],[-292,-357],[-205,79],[-104,197],[164,202]],[[129716,832704],[45,50],[524,-626],[38,-128],[21,-171]],[[131333,829445],[80,-323],[-40,-124],[-282,147],[-229,317],[-331,545],[-185,393],[-14,166],[-117,120],[-228,678],[-23,95],[-248,1245]],[[46095,829994],[60,-169],[15,-51],[10,-16],[126,-353]],[[46306,829405],[219,46],[146,-63],[-12,-146]],[[46659,829242],[-12,-156],[-420,216],[-335,-402],[-906,-185]],[[44986,828715],[-158,-79],[-587,-11],[-272,-107],[-176,-187],[-177,-299],[-96,-48]],[[43508,827891],[-6,-50],[-21,-35],[-157,-205],[-167,-121],[-354,-136],[-425,19],[-221,68],[-119,250],[-105,493],[1,137],[45,236],[378,325],[126,172],[461,1051],[443,234],[297,-55],[357,325],[648,418],[3,2]],[[45543,831119],[73,5],[70,-36],[117,-139],[97,-198],[167,-606],[18,-124]],[[35959,822298],[530,709],[71,-133],[55,-39],[27,28],[6,102],[3,-1]],[[36651,822964],[-2,16],[7,115],[174,163],[-100,119],[-312,151],[-232,70],[-40,-2],[-233,94]],[[35913,823690],[-32,43],[-63,118],[-43,176],[8,175],[22,57],[314,437],[11,8],[244,81],[157,39],[111,50],[294,97]],[[36936,824971],[40,13],[43,6],[102,-49],[28,-66],[16,-267],[-74,-111]],[[37265,823985],[123,179],[119,102],[152,244],[40,106],[190,276],[68,-109],[291,-227],[-245,-348],[-472,-521],[-158,-349],[-10,-151],[284,72],[307,-177],[-50,-57],[-249,-128],[-216,-250],[-501,-431],[-125,-238],[-457,-275],[-136,-15],[-536,-233],[-325,-220],[-83,-119],[-102,-57],[-122,7],[-132,-97],[-142,-199],[-34,-27],[-199,-78],[-79,-9],[-60,-46],[-78,-31],[-76,2],[-310,238],[-78,139],[275,278],[198,93],[301,42],[297,257],[609,342],[85,83],[235,118]],[[31474,818926],[-140,-117],[-59,-20],[-463,-372],[-98,68]],[[30669,818516],[33,95],[106,145],[203,405],[112,149],[35,203],[13,357],[432,700],[141,44],[376,-51],[157,156],[48,119],[-95,109],[-23,188],[25,325],[109,289],[140,182],[437,316],[76,32],[228,-6]],[[33428,822267],[105,-32],[278,-189],[47,-98],[-21,-145],[-68,-190],[-61,-280],[-276,-249],[-851,-633],[-276,-463],[-211,-445],[-87,-129],[-115,-127],[-84,-29],[-134,-119],[-170,-188],[-30,-25]],[[13637,813170],[-73,243],[426,212],[1164,386]],[[15471,814237],[112,80],[233,95],[124,294],[47,57]],[[15576,815033],[361,415],[106,69],[129,39]],[[16172,815556],[69,21],[299,-272],[76,-210],[-33,-248],[-69,-259],[-301,-134],[-45,-136],[93,-219],[-41,-76]],[[16220,814023],[-116,-215],[-192,-105],[-684,-241],[-443,-121],[-980,-160],[-168,-11]],[[17907,813940],[545,-241],[391,17],[535,-63],[2,-36],[-471,-105],[-110,24],[-378,-132],[-257,-24],[-588,124],[-453,-85],[-107,29],[-147,106],[-8,6],[-165,186],[-9,117],[68,21],[112,14],[372,-147],[42,83],[339,150],[287,-44]],[[8590,811191],[52,520],[13,62],[51,137],[256,153],[104,125],[-25,324],[41,170],[322,349],[49,-5],[131,-222],[-5,-145],[-116,-313],[15,-198],[318,25],[100,-102],[0,-389],[-41,-110],[-49,-27],[-114,86],[-130,-199],[-328,-268],[-306,-156],[-142,210],[-221,-272],[25,245]],[[5669,811789],[-356,278],[-184,170],[-114,201],[73,123],[144,76],[97,3],[118,-55]],[[5447,812585],[427,-200],[54,-76],[184,-120],[248,-47],[-8,-98]],[[6352,812044],[-52,-104],[-107,-119],[-65,-224],[-330,-660]],[[5798,810937],[-69,-35],[-337,297],[-54,110],[181,130],[134,31]],[[10014,812131],[-4,-406],[-48,467],[53,66],[-1,-127]],[[256973,685343],[-66,-56],[-223,-451],[-902,-228]],[[255782,684608],[12,31],[28,3],[316,193],[-64,326],[-82,241],[-229,1544]],[[255763,686946],[-201,179],[-38,89]],[[255524,687214],[-59,-77],[-59,-318],[-517,-1492]],[[254557,685480],[-117,10]],[[254440,685490],[-31,1029],[-29,1109],[-30,1109],[-29,1110],[-29,1109],[-29,1109],[-29,1110],[-29,1109],[68,1092],[67,1092],[68,1091],[68,1092],[68,1092],[68,1092],[67,1092],[68,1091],[68,1092],[68,1092],[68,1092],[67,1092],[68,1091],[68,1092],[68,1092],[68,1092],[17,277],[3,94],[10,142],[-246,390]],[[255074,712656],[-49,77]],[[255025,712733],[-34,72],[35,4],[446,-9],[446,-9],[445,-9],[446,-8],[445,-9],[446,-9],[446,-9],[445,-9],[446,-9],[446,-9],[445,-9],[446,-9],[446,-8],[445,-10],[446,-8],[445,-9]],[[262156,712667],[74,-756],[73,-755],[74,-755],[73,-755],[73,-755],[74,-756],[73,-755],[73,-755],[74,-756],[73,-755],[73,-755],[74,-755],[73,-755],[74,-756],[73,-755],[73,-755],[69,-343],[55,-555]],[[263709,695233],[1,-3]],[[263702,692776],[0,-1]],[[263701,689716],[167,-685]],[[263868,689031],[-896,-3],[-898,-1],[-899,0],[-898,0],[-898,-1],[-899,0],[-898,0],[-898,-1],[-38,-422],[17,-406],[97,-384],[402,-733],[37,-178],[-71,-565],[12,-402],[-42,-209],[-99,-182],[-26,-201]],[[250820,718581],[-13,-109]],[[249184,712688],[0,-20]],[[249184,712668],[1,-183]],[[248378,709728],[-143,-530],[-230,-132]],[[246797,701081],[8,-146]],[[246805,700935],[-545,-4],[-499,-1],[-499,-1],[-499,-2],[-499,-1],[-499,-1],[-499,-1],[-499,-2],[-499,-1],[-500,-1],[-499,-1],[-499,-2],[-499,-1],[-499,-1],[-499,-2],[-499,-1]],[[238774,700912],[-4,802],[-4,801],[-5,802],[-4,801],[-143,135],[-257,69],[-131,-46],[-156,37],[-105,-132],[-70,-24],[-56,30],[-34,115],[-116,84],[-145,288]],[[237544,704674],[8,642],[7,642],[8,643],[8,642],[8,642],[8,642],[7,643],[8,642],[8,642],[8,643],[8,642],[8,642],[7,642],[8,643],[8,642],[8,642],[-62,823],[-63,823],[-62,822],[-62,823],[-62,823],[-63,823],[-62,822],[-62,823]],[[237171,721532],[774,0],[773,0],[774,0],[773,0],[774,0],[774,0],[773,0],[774,0],[774,0],[773,0],[774,0],[774,0],[773,0],[774,0],[773,0],[774,0],[123,-463],[121,-300],[20,-222],[-23,-222],[-205,-477],[-186,-222],[-101,-240],[-140,-227],[-217,-630],[457,13],[456,13],[456,13],[510,13]],[[197089,690959],[-630,-3],[-982,-3],[-982,-4],[-982,-4],[-981,-4],[-982,-4],[-137,91],[-1180,784],[-1318,875],[-1317,874],[-1318,875],[-1317,875],[-1317,875],[-1318,875],[-877,583]],[[181451,697644],[-118,1535]],[[181333,699179],[-9,-2]],[[181324,699177],[7,36]],[[181331,699213],[385,61],[183,224]],[[182286,709941],[-5,6]],[[182228,710237],[-443,1211],[-149,666]],[[181636,712114],[1,495]],[[181637,712609],[0,38]],[[183161,719607],[53,39],[5,2546],[2,2314]],[[183221,724506],[867,-1],[867,-1],[867,-1],[867,-1],[867,-2],[867,-1],[867,-1],[867,-1],[867,-2],[867,-1],[867,-1],[867,-1],[867,-1],[867,-2],[866,-1],[867,-1]],[[197092,724487],[0,-2095],[0,-2095],[0,-2096],[0,-2095],[0,-2095],[0,-2095],[-1,-2095],[0,-2096],[0,-2095],[0,-2095],[0,-2095],[0,-2095],[0,-2096],[-1,-2095],[0,-2095],[-1,-2057],[0,-43]],[[181451,697644],[-440,291],[133,334]],[[181144,698269],[176,890]],[[181320,699159],[4,18]],[[181324,699177],[-6667,-1087]],[[174657,698090],[-23,149],[-16,529],[-91,162],[-307,1984]],[[174220,700914],[-63,255],[-43,264],[-70,197],[-51,207]],[[173993,701837],[-182,445],[-110,306],[-45,74],[-62,149]],[[173594,702811],[-275,393],[-509,820],[-255,268],[-470,670],[-87,147],[-138,104],[-602,654]],[[171258,705867],[-176,191],[-266,796],[-257,105],[-501,-49],[-1314,1090],[-43,273],[-406,479],[-534,470],[-12,-4],[-18,22]],[[167731,709240],[-917,105],[-295,180],[-323,42],[-552,-87],[-193,22],[-120,36],[-5,8],[-215,420],[-136,123],[-68,2768]],[[164907,712857],[-23,54],[22,203],[-70,271],[-134,208],[-138,103],[-329,802],[42,323],[-109,353],[-343,329],[-319,747],[-82,82],[-785,1630],[-42,181],[-554,1339],[-390,689],[-248,1932],[164,354],[125,443],[-12,406],[-36,297],[-204,518],[-787,308],[-641,1279],[-38,979],[-252,1002],[-3,651],[-38,704],[190,154],[152,-50],[13,-59]],[[160038,729089],[2,-10],[-13,-217],[18,-156],[-19,-36]],[[160112,727984],[517,-493],[21,-44],[130,-112],[135,-26],[-42,137],[8,0]],[[160659,728426],[-429,1081],[-45,274],[-89,145],[-56,233],[198,276],[270,197],[362,53],[1027,-92],[219,161],[181,-52],[132,21]],[[162429,730723],[-278,165],[-157,-54],[-185,34]],[[161809,730868],[-367,-33],[-148,70],[-164,197],[-107,20],[-339,-343],[-152,42],[-358,374],[-156,53],[-251,-213],[-31,-917],[34,-295],[-541,-14],[-9,6],[-221,256],[-313,475],[-164,174],[-69,-147],[-4,156]],[[158442,731060],[-26,83],[-21,593],[280,-615],[-87,433],[-217,476],[-166,165],[-208,852],[-289,316],[-470,835],[-85,187],[-767,1369],[-51,1204],[-165,892],[-6,304]],[[156164,738154],[-21,976],[30,216],[-3,88],[32,177]],[[156202,739611],[-44,305],[-1,43],[-138,927],[-3,13],[-16,106]],[[156000,741005],[-45,109],[-79,276],[-524,1164],[-21,49]],[[155331,742603],[-4,7],[-73,161],[-599,930],[-90,704],[-42,710],[131,632],[10,59],[192,768],[26,-60],[-23,-141],[85,-44],[32,293],[51,151],[-90,20],[10,93],[53,185],[113,533],[114,455]],[[155227,748059],[19,1528],[119,806],[-9,445],[-86,644],[2,169]],[[154990,753684],[-20,60],[-3,198],[-46,95]],[[154921,754037],[758,-1],[732,0],[732,0],[733,0],[732,0],[732,0],[733,0],[732,0],[733,0],[732,0],[732,0],[733,0],[732,0],[733,0],[732,0],[732,0]],[[166664,754036],[0,-1108],[1,-1109],[0,-1108],[0,-1108],[0,-1108],[0,-1109],[0,-1108],[0,-1108],[0,-1108],[1,-1109],[0,-1108],[0,-1108],[0,-1109],[0,-1108],[0,-1108],[0,-1108],[651,-966],[651,-967],[650,-966],[651,-966],[650,-966],[651,-967],[651,-966],[650,-966],[510,-814],[509,-815],[509,-814],[509,-815],[510,-814],[509,-815],[509,-814],[509,-814],[706,-1172],[705,-1171],[705,-1171],[706,-1171],[705,-1171],[705,-1172],[706,-1171],[754,-1251]],[[181320,699159],[-318,-63],[-794,-126],[-795,-127],[-795,-127],[-795,-126],[-795,-127],[-795,-126],[-795,-127],[-780,-124],[-1,4]],[[197092,724487],[0,1477],[0,1478],[1,1477],[0,1478],[0,1478],[0,1477],[0,1478],[0,1477],[0,1478],[0,1477],[0,1478],[0,1477],[0,1478],[0,1477],[0,1478],[0,1478]],[[197093,748128],[872,0],[873,0],[872,0],[873,0],[872,0],[872,0],[873,0],[872,0],[872,0],[873,0],[872,0],[872,0],[873,0],[872,0],[872,0],[873,0]],[[211051,748128],[693,-1],[693,0],[694,0],[693,0],[693,0],[693,0],[694,-1],[693,0],[0,-738],[0,-739],[1,-738],[0,-738],[0,-739],[0,-738],[0,-738],[0,-739]],[[216598,742219],[2,-1108],[2,-1109],[2,-1108],[3,-1108],[2,-1108],[2,-1109],[2,-1108],[2,-1108],[2,-1108],[2,-1109],[2,-1108],[2,-1108],[2,-1108],[2,-1109],[2,-1108],[2,-1108]],[[216631,724487],[-686,0],[-686,0],[-687,0],[-686,0]],[[213886,724487],[-1049,0],[-1050,0],[-1050,0],[-1049,0],[-1050,0],[-1049,0],[-1050,0],[-1050,0],[-1049,0],[-1050,0],[-1050,0],[-1049,0],[-1050,0],[-1049,0],[-1050,0],[-1050,0]],[[300553,754103],[1,-317],[2,-445],[2,-322],[2,-445],[3,-506],[2,-465],[2,-408],[-10,-241],[-14,-368],[-71,-142],[-30,-291]],[[300442,750153],[-158,-27],[-90,12],[-400,-88],[-31,-12],[-684,-116],[-110,45],[-117,-83],[-1084,-183],[-121,-7],[-216,114],[-165,-245],[-432,-337],[-118,-64],[-768,-627],[-503,-394]],[[295445,748141],[-118,305],[-113,294],[225,230],[172,176],[162,164],[104,107],[-84,227],[-84,228],[22,561],[22,561],[23,561],[22,561],[22,561],[22,562],[23,561],[22,561]],[[295887,754361],[234,-16],[233,-16],[234,-16],[234,-15],[233,-16],[234,-16],[233,-16],[234,-16],[4,-154],[119,19],[16,135],[332,-8],[332,-9],[332,-8],[332,-9],[332,-8],[332,-8],[332,-9],[332,-8],[2,-64]],[[285828,735924],[-56,44]],[[285772,735968],[222,404],[148,-351],[160,-379],[-246,-483],[-30,489]],[[291504,733084],[-239,-4],[-616,1],[-616,0],[-279,0],[-7,0],[-6,0],[-7,0],[-6,0],[-6,0],[-7,0],[-6,1],[-7,0],[-27,936],[-27,936],[-27,936],[-27,937],[-27,936],[-27,936],[-26,936],[-27,936]],[[289487,740571],[210,476],[89,144],[118,73],[344,23],[249,-166]],[[290497,741121],[-121,-203],[-14,-53],[-7,55]],[[290281,740688],[-107,-332],[-140,-267],[8,-143],[-52,-163]],[[291268,735081],[34,15],[116,-107],[15,-327],[-124,-532],[-162,-244],[211,48],[106,-122],[9,-37],[31,-691]],[[263868,689031],[114,-467]],[[264211,687372],[260,-35],[443,-55],[443,-55],[442,-55],[443,-55],[443,-56],[443,-55],[442,-55],[443,-55],[443,-56],[443,-55],[443,-55],[442,-55],[443,-55],[443,-55],[443,-56],[443,-55],[2,-195],[73,-307],[18,-349],[33,-167],[88,-105],[140,-25],[140,196],[89,432],[22,486],[-53,552],[8,465],[70,272],[83,68],[72,146],[60,31],[153,-78],[575,-390],[471,-52]],[[273600,687434],[130,-536],[198,-2191],[135,-762],[4,-34],[228,-2119]],[[276211,673866],[2,-19],[-13,-36],[-37,-365],[-10,-550],[33,-536],[110,-655],[48,-223],[20,-366]],[[276364,671116],[67,-282],[-41,69],[-307,1437],[-36,844],[45,1197],[-72,-29],[-59,-389],[-32,-457],[-78,-177],[-106,698],[7,315],[113,368],[-33,132],[-182,189],[-39,296],[25,293],[-105,156],[-82,-8],[55,-721],[87,-443],[107,-1062],[173,-643],[101,-539],[1177,-5756],[279,-733],[103,-526],[107,-1101],[14,-780],[-153,-2826],[-29,-390],[-7,-275],[-72,-1349],[-10,102],[-45,25],[-167,-807],[-22,-72],[-1,0]],[[277085,657776],[-27,-189],[-116,-371],[-50,-760],[-58,-393]],[[276834,656063],[-82,-556],[-321,-589],[-202,16],[-257,-232],[-395,-166],[-195,66],[-416,-254],[-257,26],[-31,52],[-143,485],[24,239],[63,240],[106,56],[368,-560],[69,236],[-111,280],[-212,157],[-157,172],[-316,1277],[-328,877],[-55,587],[-565,357],[-141,187],[-466,1523]],[[272814,660539],[-123,401],[-98,1101],[-181,192],[-76,133],[176,634],[186,531],[-147,-132],[-108,-197],[-138,-469],[-101,-72],[-52,41],[-59,193],[-87,738],[30,1107],[149,413],[-229,11],[-237,-157],[35,-369],[-34,-203],[-173,52],[-131,130],[-177,384],[-154,465],[-324,1224]],[[270761,666690],[-16,60],[-247,1001],[-78,231],[-106,401]],[[270314,668383],[23,52],[119,46],[319,908],[251,549],[15,66],[83,296]],[[270683,671096],[-57,-91],[-14,40],[-157,135],[-109,-104],[115,-390],[2,-1],[89,-321],[-27,-390],[-42,-185],[-97,-163],[-151,87],[-77,-140],[-86,141],[-190,698],[261,2278],[244,1472],[7,436],[15,102]],[[270409,674700],[-11,120],[17,1021],[18,249],[-21,446],[-327,969],[-35,57],[-107,598]],[[269907,678160],[-224,3],[-1046,1709],[-610,1524],[-92,265]],[[267774,682124],[-137,245],[-122,304],[-120,131],[-4,7]],[[266599,683721],[-48,-5],[-7,8],[-40,-12],[-318,-31]],[[265984,683661],[-87,-139],[-91,-28],[-127,-212],[-32,-159],[-287,-458]],[[265360,682665],[-132,-133],[-89,-25],[-648,-686],[-88,-47],[-206,23],[-223,-191]],[[263974,681606],[-167,-144],[-435,-77],[-192,-86],[-169,-37]],[[263048,681981],[-125,335],[-17,61],[-11,15],[-27,73]],[[262763,682747],[-479,590],[-273,495],[146,-29],[36,185],[-147,243],[62,280],[104,295],[-201,-44],[-180,-207],[-6,-255],[-36,-202],[-97,29],[-180,251],[-888,698],[-362,184],[-23,16]],[[260239,685276],[-12,2],[-378,192],[595,177],[323,-138],[-39,212],[-77,134],[-255,170],[-325,-65],[-204,80],[-210,-168],[-230,-251],[-204,-129],[-800,-180],[-649,-196],[104,206],[111,133],[384,202],[57,420],[-90,405],[-101,-97],[-106,-316],[-130,227],[-144,-1],[-39,-503],[-184,-337],[-84,-339],[-254,-125],[-331,-84],[-25,32],[158,322],[-12,179],[-115,-97]],[[276765,669427],[536,-2805],[3,-31],[-256,1009],[-315,1583],[-125,906],[157,-662]],[[276574,654198],[-16,302],[98,120],[136,321],[8,294],[55,-120]],[[273910,651708],[-82,272],[5,103],[110,-157],[-33,-218]],[[273294,651153],[-48,-16],[145,233],[47,353],[85,-276],[-1,-66],[-228,-228]],[[272751,650876],[-2,23],[17,66],[101,93],[81,-7],[-3,-121],[-194,-54]],[[262156,712667],[902,-19],[902,-19],[902,-19],[902,-19]],[[265764,712591],[841,20],[840,20],[840,20],[840,19]],[[269125,712670],[-18,-5]],[[268982,710295],[1,-6]],[[270585,706854],[0,2]],[[272832,701996],[225,-406],[337,-343],[245,-786]],[[274625,696006],[167,-426],[562,-474]],[[275354,695106],[-69,-245],[-126,-305],[-286,-263],[-103,12],[-85,-91],[49,-223],[85,-162],[-2,-101],[-107,-260],[-161,-51],[-99,-234],[31,-220],[59,-123],[-2,-39],[-42,-206],[-170,-180],[-47,-209],[100,-62],[31,25],[-107,-533],[-20,-38],[-103,-383],[-238,-106],[8,-124],[135,-110],[42,-108],[-147,-728],[-126,43],[-81,119],[-52,-429],[20,-229],[-51,-469],[-81,-563],[-55,-231],[12,-430],[34,-416]],[[273785,688263],[-73,-851],[-53,510],[-5,495],[93,293],[43,68],[-5,-515]],[[56703,637121],[262,19],[310,-10],[10,-12]],[[57285,637118],[120,-137],[80,-236],[2,-20],[11,-273],[-82,-323],[-38,-455],[-80,-244],[-244,-332],[-143,143],[-269,54],[-104,250],[-247,196],[-52,73],[-75,201],[118,533],[26,87],[395,486]],[[61926,631597],[-175,-72],[-22,-5],[-112,37],[-87,82],[-146,293],[-158,-80],[-27,236],[-28,68],[-108,-63],[101,-305],[-203,-17],[-161,52],[-72,326],[-169,399],[-112,374],[1,148],[-87,280],[41,39],[367,78],[286,541],[134,47],[263,-735]],[[61769,632507],[288,-841],[-23,-24],[-108,-45]],[[63211,631218],[77,-19],[7,-6],[587,-163],[33,17],[177,-43],[27,-36],[400,-68],[104,-25],[65,-38],[-160,-360],[-250,-224],[-447,245],[-749,87],[20,151],[28,125],[54,126],[5,132],[22,99]],[[65658,629519],[323,21],[125,-137],[183,-233],[90,-194],[236,-285],[62,-160],[6,-91],[-54,-206],[-260,-414],[-354,-95],[-209,-177],[-275,38],[-82,75],[-29,522],[-87,562],[-177,-67],[-199,189],[-194,443],[21,274]],[[65017,630102],[77,-70],[94,-156],[126,-355],[73,-105],[242,129],[29,-26]],[[66819,623143],[101,244],[0,1],[213,514]],[[67133,623902],[12,133],[21,58],[-11,48],[3,32]],[[67158,624173],[-26,70],[-167,756],[50,537],[48,47],[18,14],[848,-835]],[[68876,623829],[350,-839],[35,-469],[198,-89],[27,-64],[90,-459],[261,-381],[131,-315]],[[69968,621213],[-9,-110],[-99,-320],[-564,-797],[-712,-349],[-626,-893],[-108,-482],[-199,124]],[[67651,618386],[-720,447],[-2,10],[41,1517],[-208,1231],[-113,461],[170,1091]],[[245994,744455],[-244,312],[-43,219],[-199,222],[-29,141],[-152,125],[-137,430],[-701,-8],[-700,-9],[-701,-9],[-701,-8],[-701,-9],[-700,-8],[-701,-9],[-701,-8],[-701,-9],[-700,-8],[-701,-9],[-701,-9],[-700,-8],[-701,-9],[-701,-8],[-693,-7]],[[233986,745769],[-170,440]],[[232080,757023],[-83,31]],[[231997,757054],[-70,487],[-76,216],[-14,168],[-231,419],[-14,163],[30,203],[148,397],[137,653],[31,439],[110,330],[4,181],[-19,239],[-62,208],[-181,155],[-22,65],[-18,240],[76,152],[21,172],[-18,209],[-111,363],[-48,370],[403,22]],[[232073,762905],[903,0],[904,0],[903,1],[904,0],[903,0],[903,1],[904,0],[903,0],[903,1],[904,0],[903,0],[903,0],[904,1],[903,0],[904,0],[917,3]],[[246541,762912],[19,-367]],[[248174,757109],[19,-45]],[[248193,757064],[169,-403]],[[248819,755957],[41,-316],[177,-339]],[[177643,795363],[0,-1457],[0,-1461],[-1,-1462],[-1,-1462],[299,-594],[221,-365],[141,-393],[215,-411],[43,-147],[76,-442],[-55,-320],[114,-323],[-20,-162],[-86,-81],[-18,-27],[3,-32],[30,-54],[303,-312],[298,-433],[380,-298],[119,-177],[500,-867],[258,-553],[272,-403],[135,-460],[281,-403],[70,-204],[20,-45],[37,-6],[173,98],[45,-28],[86,-159],[19,-242],[62,-102],[107,-59],[123,-16],[383,118],[83,0],[39,-50],[19,-127],[-5,-214],[-38,-301],[-115,-299],[19,-277],[-90,-647],[-88,-431],[-6,-422],[-108,-243],[60,-286],[-40,-438],[37,-114],[136,-202],[53,-539],[-23,-99],[-243,-210],[-83,-139],[-31,-196],[105,-568],[-102,-313],[-13,-269],[22,-69],[225,-145],[271,-320],[88,-67],[59,11],[116,107],[127,217],[260,217],[306,469],[16,131],[25,73],[39,-4],[97,-64],[194,-284],[167,-157],[29,-34],[16,-80],[-8,-280],[93,-223],[28,-364],[95,-364],[69,-439],[251,-567],[137,-406],[149,-184],[90,-215],[67,-259],[25,-208],[-87,-378],[24,-156],[80,-174],[259,-390],[51,-33],[239,43],[131,-66],[129,-196],[132,-296],[85,-297],[23,-354],[133,-391],[19,-347],[82,-153],[166,-208],[157,-124],[62,-10],[44,55],[15,191],[64,147],[198,206],[188,-5],[709,-172],[49,12],[32,56],[122,317],[97,123],[149,40],[437,-78],[505,44],[264,-89],[383,116],[443,-87],[57,52],[13,65],[-39,118],[-7,234],[89,277],[31,237],[90,132],[120,75],[97,-8],[93,-127],[108,-212],[188,-573],[101,-205],[122,-180],[183,-157]],[[191524,768801],[0,-922],[0,-923],[0,-923],[0,-922],[1,-923],[0,-923],[0,-923],[0,-922],[0,-923],[1,-923],[0,-922],[0,-923],[0,-923],[0,-923],[1,-922],[0,-923]],[[191527,754038],[-520,0],[-519,0],[-520,0],[-519,0],[-520,0],[-519,0],[-520,1],[-519,0],[-520,0],[-519,0],[-520,0],[-519,0],[-520,0],[-519,0],[-520,0],[-519,0]],[[183215,754039],[-1033,0],[-1033,-1],[-1032,0],[-1033,0],[-1033,-1],[-1032,0],[-1033,-1],[-1032,0]],[[174954,754036],[-2,1319],[-1,1319],[-1,1319],[-1,1319],[-2,1320],[-1,1319],[-1,1319],[-1,1451],[-1,28],[175,892]],[[175363,777428],[-76,258]],[[175287,777686],[-93,318]],[[174891,780017],[19,137],[20,56],[-2,947],[-2,947],[-3,948],[-2,947],[-2,948],[-2,947],[-3,947],[-2,948],[-2,947],[-3,948],[-2,947],[-2,947],[-2,948],[-3,947],[-2,948],[-5,942]],[[248193,757064],[1276,-15],[1251,-15],[1251,-15],[1250,-15],[1251,-14],[1251,-15],[354,-4]],[[256077,756971],[-1,-923]],[[256787,752649],[98,-225]],[[256885,752424],[-3,-1577],[-5,-1772],[-4,-1771],[-4,-1772],[-4,-1772],[-4,-1771],[-4,-1772],[-4,-1674],[0,-25],[-129,-183]],[[255026,727228],[-552,-315],[-293,-278]],[[252649,725563],[-245,-475],[-85,-360]],[[251996,724942],[-29,-43],[-11,-112]],[[251425,725739],[-45,519],[114,385]],[[251494,727048],[-114,423],[-56,415]],[[245925,741875],[-97,914],[6,759]],[[256885,752424],[18,-42]],[[258131,752079],[584,539]],[[258715,752618],[687,-1],[842,-1],[842,0],[842,-1],[842,-1],[842,-1],[842,0],[1,-345]],[[264455,752268],[-10,-1923],[-9,-1923],[-10,-1923],[-9,-1923],[-10,-1923],[-9,-1923],[-10,-1923],[-4,-1961]],[[264384,736846],[-44,-55]],[[261052,730300],[-228,44],[-290,264]],[[257063,730026],[-170,-97],[-120,44],[-40,110]],[[216598,742219],[583,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[583,0],[582,0],[582,0],[582,0],[501,2]],[[235148,742221],[640,-765]],[[237160,737037],[-6,-226],[1,-770],[1,-771],[1,-770],[1,-770],[1,-770],[2,-771],[1,-770],[1,-770],[1,-770],[1,-771],[1,-770],[1,-770],[1,-770],[2,-771],[1,-770],[1,-770]],[[237172,724487],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-641,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-641,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0],[-641,0],[-642,0],[-642,0],[-642,0],[-642,0],[-642,0]],[[264384,736846],[155,195]],[[264703,737064],[129,-203],[183,-52]],[[270496,733056],[24,-15]],[[270520,733041],[64,-165],[31,-876],[-19,-173],[-95,-359],[5,-190],[80,-296],[297,-687],[28,-267],[117,-261],[100,-390],[315,-834],[492,-689],[383,-182]],[[272318,727672],[-1049,-1435],[-482,-521],[-458,-418],[-37,-70],[-103,-462],[-278,-407],[-174,-430],[-415,-360],[-295,-492],[-741,-480],[-415,-168],[-281,-281]],[[267590,722148],[-22,-14],[-22,-13],[-22,-14],[-21,-13],[-22,-14],[-22,-13],[-22,-14],[-22,-13],[-964,58],[-964,57],[-965,58],[-964,57],[-964,58],[-964,58],[-965,57],[-964,58],[-925,-31],[-924,-31],[-925,-30],[-925,-31],[-82,183],[-243,41],[-375,64],[-14,2],[110,-607]],[[255398,722061],[2,-529],[-9,-7],[-434,0],[-480,0],[-480,1],[-480,0],[-479,0],[-480,0],[-480,1],[-551,0]],[[251527,721527],[146,519]],[[252066,722085],[148,184],[129,533]],[[251424,721545],[-195,-12]],[[251229,721533],[-7,71]],[[251222,721604],[12,164],[17,72]],[[251397,721697],[27,-152]],[[246805,700935],[16,-289]],[[245409,689196],[-10,-164],[664,-4],[668,0],[667,0],[667,0],[668,0],[667,0],[668,0],[667,0],[-82,-680],[-196,-918],[-8,-239],[51,-298],[0,-170],[72,-250],[159,-250],[142,-378],[125,-672],[32,-312],[104,-432],[53,-82],[76,-50],[36,-25]],[[251299,684272],[-142,-169],[-14,-11],[-1016,607],[-253,489],[-224,104],[-276,61],[-296,-602],[-226,-811],[356,-444],[305,-213],[503,178],[278,394],[227,-13],[109,80],[99,205],[194,-162],[6,-133],[-501,-596]],[[251733,682557],[50,63],[-13,-456],[23,-116],[-281,-211],[-209,-72],[-167,-278],[88,-161],[-171,-141],[-115,56],[-58,-52],[-17,-170],[-88,-158],[120,-446],[2,-36]],[[251316,679669],[183,-88],[596,-411],[151,12],[118,-255],[89,-259],[73,-91],[94,-204]],[[252668,678001],[-5,-15],[-190,-202],[-41,-194],[-159,-146],[-38,76],[-113,160],[-263,-487],[-126,-103]],[[251733,677090],[62,526],[-99,205],[-149,527],[-173,258],[-229,450]],[[250457,679874],[-82,-17],[-34,51],[-783,467],[-5,-193],[54,-146],[113,-97],[134,-189],[-1,-536],[-153,-447]],[[248521,678992],[-68,-128],[-82,-58],[-102,-288],[-26,-50]],[[248243,678468],[-546,-379],[-483,255],[-432,306],[-121,323]],[[246661,678973],[-65,173],[207,-66],[-13,193],[-246,631],[-45,284],[32,347],[-80,-8],[-148,-291],[-279,135],[-502,772],[-168,467],[-142,9],[-311,478]],[[244772,682138],[-27,-7],[-4,11],[-37,-23],[-146,-42]],[[244558,682077],[-70,-90],[-92,-56],[-175,-234],[-49,-116],[-191,-246]],[[244240,680868],[-465,-352],[-55,-24],[-1062,221],[-79,33]],[[242416,680882],[-502,418],[-115,122],[-621,383],[-298,61],[-293,-76],[-851,-39],[-197,-102],[-168,-163],[-109,181],[-51,321],[99,52],[110,189],[99,374],[11,226],[-69,148]],[[239461,682977],[186,590],[45,211],[-28,1005],[-82,365],[10,211],[88,549],[-14,502],[153,606],[112,317],[127,647],[29,418],[54,314],[-38,338],[90,244],[-58,342],[-18,451],[-109,174],[-191,667],[6,293],[-201,623],[-4,214],[-193,325],[-38,208],[-17,864],[-52,252],[-166,497],[-384,723],[1,748],[1,748],[0,748],[1,748],[1,749],[1,748],[0,748],[1,748]],[[295887,754361],[-74,145],[88,496],[88,497],[88,496],[89,497],[88,497],[88,496],[88,497],[88,496]],[[296518,758478],[273,-16],[273,-16],[273,-16],[274,-16],[273,-17],[273,-16],[273,-16],[273,-16]],[[298703,758349],[395,-21],[395,-20],[395,-21],[394,-20],[395,-21],[395,-21],[395,-20],[395,-21],[242,160],[287,465],[175,100],[283,275],[141,59],[304,-27]],[[303294,759216],[-10,-155],[-32,-150],[80,-304],[50,-296],[18,-137]],[[303400,758174],[-594,-1893],[-157,-291],[46,-62],[-32,-105]],[[303088,755660],[19,12],[13,-5],[631,-1585],[-18,-126],[111,-107],[50,-125]],[[304409,752522],[187,-28],[139,-63],[62,34],[106,-16]],[[305492,752782],[16,184],[43,39],[-13,273],[-3,9],[4,48]],[[305124,754401],[-22,-26],[-26,29],[-50,-125],[-22,-27],[-96,182],[121,85]],[[305029,754519],[329,-224],[89,-170],[14,-36]],[[305594,753735],[98,-609],[26,-229],[21,-576],[-41,-196],[-106,40],[-202,-39],[-959,-298],[-74,-91],[-458,178]],[[303619,752432],[-158,-274],[-612,-794],[-293,-61],[-247,-288],[-55,160],[-44,737],[154,618],[-82,-10],[-154,-222]],[[302128,752298],[-95,262],[-102,141],[-100,137],[3,220],[6,333],[-115,65],[-14,410],[-9,266],[-209,-5],[-171,-4],[-276,-7],[-285,-7],[-208,-6]],[[285772,735968],[-190,151]],[[284253,738132],[-161,218]],[[284092,738350],[-34,46]],[[281736,739451],[-35,10],[-250,89],[-178,168],[-33,68],[20,143],[-33,66],[-54,11],[-52,-83],[-51,-252],[-436,-688],[-209,137],[-79,-5],[-606,-971],[-184,-155],[-356,-440],[7,756],[7,756],[8,757],[7,756]],[[279229,740574],[641,0],[641,0],[641,0],[641,-1],[641,0],[642,0],[641,0],[641,0],[641,0],[641,-1],[641,0],[641,0],[641,0],[641,0],[641,0],[642,-1]],[[291504,733084],[11,-240]],[[291515,732844],[-55,-239],[2,210],[-45,91],[-75,-113],[-49,-130],[-20,-509],[-51,-255],[-182,-75],[-184,-668],[-172,-380],[-62,-236]],[[290622,730540],[-260,-60],[-418,-93],[-96,-236]],[[289848,730151],[4,40]],[[289680,730263],[-51,-29],[-5,3],[-259,-11],[-25,219],[23,141],[94,318],[-167,318],[-42,17],[-39,334]],[[289209,731573],[3,104],[55,259],[-36,337],[0,6],[50,253],[-84,-39],[-54,-108],[-91,26]],[[288998,732426],[-67,-85],[-3,13],[-58,-54],[-12,-51],[-136,-174],[-157,195],[-264,258],[-148,443],[-83,345],[85,622],[183,111],[237,-102],[311,1],[-44,139],[-112,-23],[-327,505],[-106,305],[-71,33],[0,366],[196,159],[-64,371],[-131,155],[0,95]],[[288227,736053],[-24,304],[5,0],[165,-109],[140,539],[6,242],[-233,-351],[-52,757],[229,729],[216,313],[112,-15]],[[288810,738460],[3,18],[142,-5],[278,51],[-174,134],[-179,72],[134,289],[115,51],[113,252],[-271,-38],[32,476],[-20,-14],[3,22]],[[288986,739768],[-138,-111],[-134,-38],[-29,-94],[-53,-43]],[[288632,739482],[-389,-655],[-42,67],[-8,-152],[-47,-80]],[[288146,738662],[-110,-184],[-66,211],[-46,-96],[6,-136],[-36,-219],[-19,-32],[-113,-108],[2,-80],[-179,-301],[-281,177],[-10,-89],[193,-463],[-34,-727],[-82,89],[-34,-16],[103,-355],[-62,-1364]],[[287451,733579],[240,-1043],[-21,-7],[-198,249],[-173,190],[-207,607],[-34,242],[-51,192],[25,-440],[73,-492],[648,-1099],[120,-422],[91,-332],[-8,-106],[-35,-185],[-149,198],[-146,287],[-386,323],[-338,142],[-191,175],[-234,641],[1,-314],[-21,-95],[-230,210],[-84,220],[-35,304],[-210,-21],[-220,-264],[-213,63],[-25,514],[57,273],[239,645],[225,329],[99,426],[-34,659]],[[291010,730624],[-45,-11]],[[290965,730613],[74,206],[186,750],[-215,-945]],[[311664,776228],[-173,-94]],[[312640,775351],[-1,5]],[[313542,772765],[-16,-180],[79,-303],[2,-23],[58,-560],[-93,-265],[20,-350],[258,-103],[62,-107],[13,-129],[-568,-899],[-332,87],[7,101]],[[313032,770034],[-101,-77],[-54,14],[-260,-238],[-273,-69],[-50,-168],[-530,-227],[-71,45],[-135,-55],[-96,-370],[-113,-347],[-135,55],[-61,-261],[-74,-103],[-219,185],[-10,29],[-65,306],[-97,67],[-122,74],[-8,15]],[[310558,768909],[-13,-11],[-117,-3],[-88,-43],[-109,-198],[-90,-97],[-76,-64],[-112,132],[-94,228],[-80,-366],[-95,-315],[-127,-107]],[[309216,768278],[-143,89],[65,101],[-71,71],[-115,-50],[-49,50],[81,327],[8,360],[-104,-126],[-131,-380],[-317,-303],[6,-201],[-54,-80]],[[308221,767234],[-599,-1439],[-246,63],[-130,-136],[-100,-29]],[[307146,765693],[-272,-361],[-45,300],[-42,119],[-93,-568],[-94,-36],[-36,404],[-45,266],[-128,-230],[-85,-609],[-90,52],[-28,226],[-64,69],[-22,-259],[28,-323],[-541,300]],[[305589,765043],[-110,-124],[-97,-43],[-323,-404],[-252,-558],[33,-35],[-517,-1503],[-214,-372],[-298,-1116],[-59,-171],[-117,-128],[-116,-232]],[[303519,760357],[-222,553],[-45,446],[-251,526],[-100,362],[-33,407],[14,437],[-21,655],[-22,655],[-21,655],[-21,655],[-22,656],[-21,655],[-21,655],[-21,655],[-22,655],[-21,655],[-21,655],[-22,655],[-21,656],[-21,655],[-21,655],[-20,586]],[[268219,752651],[-37,-122]],[[268182,752529],[-27,-36],[-925,-56],[-925,-57],[-925,-56],[-925,-56]],[[258715,752618],[179,165]],[[256650,772405],[-133,78],[-112,232],[-69,238],[-5,245],[161,605],[14,98],[-18,56],[-89,69],[-201,-109],[-203,-22],[-66,42],[-26,104],[2,162],[42,193],[122,357],[1,339],[56,194],[-54,360],[14,172],[-86,188],[-230,249],[-537,330],[54,370],[-22,158],[-131,238],[-564,277],[-384,125],[-379,3],[-272,101],[-306,33],[-195,166],[-196,166],[-196,167],[-196,166],[-347,142],[-347,143],[-347,142],[-347,142],[-347,142],[-347,142],[-347,142],[-347,143],[-77,248],[-78,248],[-78,249],[-77,248],[-160,104],[-84,55],[-63,129],[-143,-56],[-56,214],[13,46]],[[248867,781178],[185,56]],[[256660,772691],[-10,-286]],[[251173,789504],[-75,-60]],[[244155,782339],[-8,-160]],[[244147,782179],[-51,4],[-192,-331],[-82,-213],[-188,-61],[-1,-851],[0,-852],[-1,-852],[-1,-851],[-91,-88],[-116,-198],[-159,-48],[-748,-703],[-123,-203],[-134,-467],[-246,-529],[-60,-281],[11,-377],[375,-304],[140,-293],[68,-358],[-9,-311],[-189,-608],[-34,-243],[20,-744],[-95,-232],[78,-602],[5,-208],[-59,-661],[-41,-192],[74,-343],[8,-36],[351,-476]],[[243425,769117],[150,-322],[202,-211]],[[246449,764656],[92,-1744]],[[232073,762905],[0,1327],[0,1327],[0,1327],[0,1327],[0,1327],[0,1326],[0,1327],[0,1327],[-211,439],[-463,356],[-115,213],[-215,530],[-84,227],[-16,178],[104,196],[419,570],[134,262],[65,256],[97,588]],[[231788,777335],[-40,452],[27,703],[-86,528],[-19,262],[-52,326],[-315,861],[-76,695],[-79,342],[-26,880],[9,248],[63,477],[-134,322],[-19,264],[-62,2095],[-43,299],[12,972],[-244,1023],[-115,348],[-59,421],[5,201],[-198,696],[-131,768],[12,666],[-43,503],[16,392],[-36,587],[42,334],[3,519],[-272,1844]],[[237171,721532],[0,739],[0,738],[1,739],[0,739]],[[235148,742221],[-44,52]],[[234057,745586],[-71,183]],[[251527,721527],[-5,-15]],[[251429,721516],[-5,29]],[[251229,721533],[47,-440]],[[251235,720776],[-136,-124],[-21,-177]],[[250839,718751],[-19,-170]],[[254440,685490],[-1234,106]],[[253206,685596],[-67,-28],[-9,3],[-89,-7],[-150,-100],[-680,-286]],[[252211,685178],[-133,-56],[-33,20],[-158,10],[-194,-411],[-394,-469]],[[249184,712668],[708,-1],[738,-2],[738,-2],[738,-1],[738,-2],[738,-2],[738,-2],[754,0]],[[211017,795363],[5,-1122],[4,-1127],[4,-1127],[4,-1127],[4,-1127],[4,-1127],[3,-1127],[4,-1127],[4,-1127],[4,-1127],[4,-1127],[4,-1126],[3,-1128],[4,-1127],[4,-1126],[4,-1127]],[[211080,777337],[4,-1374],[5,-1373],[4,-1374],[5,-1373],[-1,-19],[0,-18],[-1,-19],[0,-18],[-22,0],[-22,0],[-22,0],[-22,1]],[[211008,771770],[-609,0],[-609,0],[-609,0],[-609,0],[-609,0],[-608,0],[-609,0],[-609,0],[-609,-1],[-609,0],[-609,0],[-608,0],[-609,0],[-609,0],[-609,0],[-609,0],[-608,0],[-609,0],[-609,0],[-609,0],[-609,0],[-609,0],[-608,0],[-609,0],[-609,0],[-609,0],[-609,0],[-609,0],[-608,0],[-609,0],[-609,0],[-609,0],[0,-742],[-1,-742],[0,-741],[0,-743]],[[265764,712591],[105,1258],[72,288],[80,65],[288,5],[184,145],[163,757],[368,596],[165,150],[248,116],[587,143],[631,579],[455,547],[361,152],[114,202],[81,262],[51,356],[39,74],[208,-25],[159,310],[154,177],[153,100],[94,4],[37,-93],[26,-264],[33,-87],[65,-8],[89,61],[119,170],[306,529],[204,204],[312,117],[227,-280],[137,97],[398,1085],[158,196],[120,77],[205,17],[3,298],[71,449],[9,308],[126,452]],[[273169,722180],[48,-91],[1005,-17],[1005,-16],[1005,-17],[1005,-17],[1005,-16],[1005,-17],[1005,-17],[1005,-16],[1005,-17],[1005,-16],[1005,-17],[1005,-17],[1005,-16],[1005,-17],[1005,-17],[690,-9]],[[288982,721830],[-44,-272],[-135,198]],[[288803,721756],[200,-1937],[-266,139],[-259,264],[19,-379],[-25,-410],[-199,125],[-136,136],[109,-396],[-33,-18],[-217,108],[-173,-27],[-60,-205],[-859,688]],[[286904,719844],[-31,-159],[-22,241],[-14,-422],[-30,-155]],[[286870,718236],[264,17],[57,-14],[103,25],[513,33],[86,-4],[38,12],[766,50],[25,-500],[-44,-539],[-22,-573],[106,3],[123,184],[62,1027],[347,379],[77,-17],[147,-410]],[[289518,717909],[16,-44],[24,-220],[40,-459],[-81,-701],[-534,-819],[-382,-757],[-195,-154],[-282,88],[-319,190],[-157,39],[-119,-64],[-73,233],[-47,426],[-124,141],[-94,-16],[-64,-452],[-298,-128],[-405,187],[-424,380],[182,-408],[1053,-761],[118,-142],[111,-208],[-148,-327],[-115,-367],[-16,-289],[-41,-182],[-420,-490],[-227,86],[-581,885],[264,-766],[212,-324],[427,-173],[801,286],[262,-313],[-215,-553],[-214,-388],[-281,-43],[-247,-105],[-46,-168],[-581,-45]],[[286298,710984],[-263,-107],[-62,-4],[-234,62],[-328,-545],[-123,-75],[-173,102],[-72,438],[-77,216],[-2,-820],[30,-221],[62,-166],[-383,-445],[-367,-555],[-131,-151],[-150,-277],[-185,-488],[-326,-582],[-51,384],[-24,-519],[-552,-988],[-681,21],[-440,-241]],[[281766,706023],[-400,716],[-375,674],[-376,675],[-375,674],[-375,675],[-375,674],[-375,675],[-375,675],[-393,23],[-392,24],[-393,23],[-392,24],[-393,23],[-392,24],[-393,23],[-393,24],[-14,464],[-10,329],[-247,562],[-144,329],[-310,-284],[-16,138],[12,249],[-28,86],[-85,60],[-440,34],[-441,34],[-440,34],[-441,34],[-441,34],[-440,33],[-441,34],[-440,34],[-101,55],[-199,-195],[-521,-295],[-257,-260],[-93,16],[-443,-251],[-443,-252],[-51,-1]],[[289197,721825],[69,1]],[[289266,721826],[120,-695],[175,-1204],[89,-332],[116,-678]],[[289669,719142],[-34,80],[-103,451],[-216,1330]],[[289316,721003],[-12,19],[-107,803]],[[231788,777335],[-648,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,1],[-647,0],[-647,0],[-648,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-648,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,0],[-647,1],[-647,0],[-648,0],[-647,0],[-647,0],[-647,0]],[[211051,748128],[-3,1477],[-2,1478],[-3,1478],[-2,1478],[-3,1478],[-2,1478],[-3,1478],[-2,1478]],[[211031,759951],[961,0],[962,0],[961,0],[961,0],[962,0],[961,0],[962,-1],[961,0],[962,0],[961,0],[961,0],[962,0],[961,0],[962,0],[961,0],[1098,-1],[830,-879]],[[231783,757134],[214,-80]],[[303519,760357],[-97,-602],[-113,-328]],[[303300,759296],[-6,-80]],[[298703,758349],[-47,212],[-155,375],[-37,158],[8,179],[85,473],[64,148],[63,277],[99,1099],[86,635],[61,1166],[63,339],[69,209],[114,549],[206,449],[135,551],[163,481],[25,281],[122,611],[86,1089],[82,170],[372,151],[117,113],[396,450],[125,186],[80,191],[60,303],[45,82],[8,168],[-138,710],[-7,261],[307,806],[-64,471],[44,116]],[[291460,742115],[141,200],[317,367],[485,443],[-671,1486],[-160,86],[-176,725],[-203,199],[-52,113],[-9,556],[19,318],[30,188],[175,157],[100,320],[2,167],[-133,516],[0,161],[254,312],[331,611],[197,670],[80,194],[97,140],[218,190]],[[292502,750234],[275,-270],[275,-270],[275,-270],[275,-270],[275,-270],[275,-270],[275,-270],[267,-267]],[[294694,748077],[-48,-461],[-273,-933],[-116,-218],[-136,-191],[-102,-83],[-95,-149],[-110,-236],[-104,-469],[22,-147],[-15,-231]],[[293717,744959],[52,-21],[4,-29],[252,-74],[232,-93]],[[294257,744742],[12,22],[37,-11],[90,83],[23,-647]],[[294444,743494],[-230,-2240],[51,918],[-87,-102],[-61,-223],[-162,-1250],[-224,-667],[-205,-461],[-212,77],[47,-366],[-58,-191],[-50,-398],[-127,-264],[-118,25],[-171,-182],[-68,-139],[-5,-266],[-114,-234],[-293,-863],[-467,-63],[62,557],[-217,253],[-208,133],[-239,-17],[-263,451],[-330,319],[-22,31],[-31,59],[-253,2230],[105,349],[191,236],[554,241],[139,362],[82,306]],[[293841,739803],[-97,-282],[-3,82],[407,1111],[-8,-41],[-299,-870]],[[213886,724487],[1,-738],[0,-738],[0,-739],[1,-738]],[[213888,721534],[-116,-4],[-5,-1661],[-4,-1661],[-4,-1662],[-4,-1661],[-4,-1662],[-4,-1661],[-4,-1662],[-4,-1661],[-4,-1661],[-4,-1662],[-4,-1661],[-4,-1662],[-4,-1661],[-5,-1662],[-4,-1661],[-4,-1662],[-624,0],[-624,-1],[-625,0],[-624,-1],[-625,0],[-624,-1],[-625,0],[-624,-1],[-624,0],[-625,-1],[-624,0],[-625,-1],[-624,-1],[-624,0],[-625,0],[-624,-1],[-17,-2],[283,-1072]],[[203982,693865],[336,-303]],[[204318,693562],[-22,11],[-65,1],[-545,6],[-611,6],[-611,7],[-610,7],[-611,7],[-610,6],[-611,7],[-294,3],[-317,4],[-1,-665],[-2,-537],[0,-127],[-2,-665],[-2,-665],[-982,-4],[-981,-4],[-352,-1]],[[166664,754036],[1036,0],[1037,0],[1036,0],[1036,0],[1036,0],[1036,0],[1036,0],[1037,0]],[[183215,754039],[0,-923],[0,-923],[0,-922],[1,-923],[0,-923],[0,-923],[0,-923],[0,-923],[1,-923],[0,-923],[0,-923],[0,-922],[0,-923],[1,-923],[0,-923],[0,-923],[0,-923],[0,-923],[1,-923],[0,-923],[0,-923],[0,-923],[0,-922],[1,-923],[0,-923],[0,-923],[0,-923],[0,-923],[1,-923],[0,-923],[0,-923],[0,-923]],[[280385,761615],[23,13]],[[289481,768715],[-31,38]],[[296244,771795],[1,-30],[18,-363],[-57,-464],[48,-503],[-66,-1052],[174,-814],[-42,-542],[10,-585],[-30,-144],[-137,-337],[-79,-331],[-46,-335],[4,-216],[116,-960],[22,-424],[-2,-248],[-104,-794],[-7,-225],[30,-64],[38,-2],[117,247],[52,38],[67,-62],[165,-374],[-9,-670],[-7,-487],[-7,-543],[-11,-813],[-8,-595],[-7,-543],[-6,-416],[-37,-306],[74,-360]],[[295445,748141],[-1,0]],[[295404,748068],[-444,-800],[-103,-142],[-165,-90],[-101,-232],[-111,-151],[107,516],[116,436],[97,844],[-29,682],[-119,280],[-124,187]],[[294528,749598],[145,-673],[23,-826],[-2,-22]],[[292502,750234],[-59,222],[-101,172],[-496,298],[-128,197],[-115,267],[-79,328],[-41,344],[-2,276],[36,306],[-114,204],[-2,190],[-73,128],[-325,230],[-98,321],[-215,306],[-383,1],[-382,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,0],[-383,1],[-383,0],[-383,1],[-382,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,1],[-383,0],[-383,0],[-383,1],[0,796],[0,795],[0,33]],[[278436,755662],[164,144]],[[294407,746109],[17,105],[11,36],[108,249],[237,392],[236,173],[50,-156]],[[295132,746894],[41,313],[34,43],[98,82],[105,-167],[26,256],[28,45],[158,131]],[[295622,747597],[237,52],[9,0],[19,6],[405,89],[157,-70],[257,34],[207,160],[215,53],[570,36],[565,117],[142,130],[357,78],[-178,-242],[-198,-382],[179,-39],[153,112],[146,227],[337,307],[288,134],[91,28],[137,-216],[272,173],[188,65],[28,-19],[-881,-717],[-394,-274],[-119,-53],[-220,-182],[-376,-261],[-93,-58],[-241,-75],[-1199,-731],[-95,-16],[-103,71],[-987,-376],[-405,-43],[-369,-131],[273,303],[6,114],[-65,88],[-146,-25],[-150,-313],[-184,-80],[-69,81],[-17,124],[36,233]],[[276332,753971],[0,-494],[0,-620],[0,-620],[0,-619],[0,-620],[0,-620],[0,-619],[0,-620],[0,-619],[0,-620],[0,-620],[0,-619],[4,-625]],[[270840,732845],[-320,196]],[[268182,752529],[-5,-18]],[[275363,753402],[969,569]],[[237544,704674],[-625,300],[-157,191],[-288,216],[-259,445],[-510,551],[-194,132],[-61,-15],[-106,-271],[-272,-215],[-148,-8],[-267,81],[-51,69],[-39,165],[-107,112],[-79,-88],[-390,-229],[-58,-159],[-220,-7],[-218,115],[-549,-360],[-189,-283],[-198,-97],[-101,-275],[-60,39],[-207,340],[-211,101],[-290,337],[-11,296],[-30,37],[-52,34],[-65,-30],[-127,-251],[-72,-66],[-73,9],[-281,171],[-118,304],[-58,94],[-64,18],[-122,-92],[-68,-333],[-54,-89],[-117,-58],[7,-167],[-105,-461],[-55,-93],[-73,17],[-76,114],[-55,164],[-24,139],[41,366],[-24,121],[-56,38],[-138,-173],[-121,9],[-154,-172],[-97,-52],[-88,42],[-142,279],[-249,179],[-97,329],[-44,95],[-53,23],[-54,-9],[-88,-106],[-287,-432],[-131,-138],[-112,-27],[-108,43],[-68,110],[-14,438],[-63,133],[-265,276],[-56,258],[-25,361],[-321,-58],[-394,37],[-179,-316],[-93,-59],[-111,63],[-318,429],[-339,-87],[-191,48],[-472,318],[-370,29],[-154,58],[-80,72],[-38,490],[-147,412],[-48,113],[-250,289],[-41,11],[-27,-66],[-56,-323],[-76,-17],[-289,92],[-266,-96],[-149,161],[-504,754],[-204,195],[-163,61],[-1,707],[0,707],[-1,707],[0,707],[-1,708],[0,707],[-1,707],[0,707],[-1,707],[-1,707],[0,707],[-1,707],[0,707],[-1,707],[0,707],[-1,707],[-520,0],[-521,0],[-520,0],[-521,1],[-520,0],[-521,0],[-520,0],[-520,0],[-521,0],[-520,1],[-521,0],[-520,0],[-521,0],[-520,0],[-521,0],[-520,0]],[[154921,754037],[-139,286],[-102,755]],[[154680,755078],[-267,1985],[14,419],[-104,512],[-249,786],[-16,64],[112,726],[123,446],[300,1946],[72,157],[125,-5],[218,331],[-100,77],[-153,-158],[136,770],[152,660],[99,237],[49,2095],[121,1821],[112,421],[-48,536],[24,367],[32,413],[-2,35],[192,2887]],[[155622,772606],[28,944],[48,582],[-23,260],[10,359],[67,422],[-87,1543],[-1,56],[38,1732],[-59,170],[389,77],[430,1],[422,237],[154,-78],[178,-322],[224,-65],[280,57]],[[160694,775272],[1,1]],[[169306,777564],[84,111],[48,1],[737,2],[737,1],[738,2],[737,1],[737,2],[738,1],[737,2],[688,-1]],[[291460,742115],[-274,-525],[-411,-177],[-222,-196],[-56,-96]],[[279229,740574],[-362,0],[-362,0],[-361,-1],[-362,0],[-362,0],[-362,0],[-362,-1],[-361,0],[-1,684],[0,684],[0,683],[-1,684],[0,683],[0,684],[0,683],[3,679]],[[276332,753971],[516,303]],[[277566,754895],[870,767]],[[302128,752298],[-68,-98],[-104,90],[-42,87],[-55,251],[-79,141],[-86,54],[46,-347],[-19,16]],[[301721,752492],[-31,-398],[-97,-229],[-48,-1061],[-220,-442],[-245,-101],[-638,-108]],[[301894,751005],[236,862],[-23,-837],[-64,-76],[-149,51]],[[281766,706023],[-38,-21],[-472,-568],[-69,-51]],[[281187,705383],[-45,-86],[-146,-176],[-219,-387],[-281,-693],[-176,-341]],[[280295,703584],[-17,-81],[-107,-263],[-110,-684],[-86,-135],[-82,265],[31,302],[2,246]],[[279926,703234],[-152,-528],[87,-464],[-757,-1192]],[[279104,701050],[-63,-129],[-117,-74],[-33,-234],[-412,-847],[-160,-181],[-356,134],[110,-481],[-131,-364],[-81,-101],[-374,-328],[-50,-32],[-160,22],[-137,-97],[-108,-231],[-262,-216],[-273,121],[-309,73],[-172,-129],[289,-215],[155,-311],[-22,-295],[-328,-482],[-22,9],[-49,198],[-59,411],[-85,-87],[-15,-192],[-73,-69],[-259,656],[13,-500],[91,-385],[87,-195],[88,-114],[20,-163],[-194,-471],[-72,-76],[-163,-70],[-91,-268],[27,-231]],[[211031,759951],[-3,1477],[-3,1478],[-3,1477],[-3,1477],[-3,1478],[-3,1477],[-3,1477],[-2,1478]],[[267590,722148],[630,-6],[1347,-12],[956,-8],[784,-7],[464,-4],[583,-5],[131,121],[291,-19],[393,-28]],[[239461,682977],[-132,14],[-291,-973],[166,-546],[-6,-112],[-382,-158],[-204,-39],[-1300,-1083],[-42,166],[157,193],[-220,118],[-15,-8],[-300,1172]],[[236113,681391],[0,-4],[-66,-35],[46,-561],[-6,-206]],[[236087,680585],[31,-89],[13,-157],[102,-271],[77,-880],[-250,-454],[-335,-541],[-37,-524],[-337,-682],[-317,-386]],[[235034,676601],[-745,-910],[-213,-194],[-115,-145],[-392,-393],[-293,-200],[-444,-502],[-150,-76],[284,425],[336,419],[-288,-57],[-446,194],[-272,12],[-2,-154],[-207,-216],[-215,318],[-94,214],[-44,185],[-91,44],[-88,-86],[321,-1300],[136,-56],[151,-129],[-188,-303],[-195,-222],[-379,-68],[-217,381],[-58,-595],[-4,-64],[-591,-635]],[[230531,672488],[-94,-242],[-148,-20],[-168,-82],[4,-247],[38,-247],[57,37],[-425,-1096]],[[229795,670591],[-13,-141],[-266,72],[-84,-63],[-75,-130],[329,-817],[-470,-2261],[-116,-15],[-440,478],[-239,370],[211,-1006],[552,-283],[14,-839],[-77,-261],[-107,-508],[79,-353],[91,-874],[77,-401],[86,-1217],[91,-528],[442,-1640],[48,-236]],[[230036,659582],[104,-342]],[[229744,659092],[-129,-38]],[[229615,659054],[-631,242]],[[227606,659841],[-439,276]],[[224522,662804],[-1,11],[-38,276],[-122,882]],[[219337,679921],[-1,1]],[[216128,682157],[-209,192],[-206,-36]],[[208561,686559],[-50,108],[-119,261]],[[204344,693539],[-26,23]],[[235913,678027],[-51,-21],[152,229],[-101,-208]],[[231993,673242],[-30,36],[96,22],[-336,-485]],[[231723,672815],[-55,-79],[-458,-544],[-44,-10],[99,226]],[[232099,673357],[71,158],[42,31],[-3,-30],[-110,-159]],[[191527,754038],[0,-739],[0,-739],[0,-738],[0,-739],[0,-739],[0,-739],[0,-739],[1,-738],[695,0],[696,0],[696,0],[695,0],[696,0],[696,0],[695,0],[696,0]],[[286026,735648],[-42,-671],[-128,-332],[-203,-254],[-265,-453],[-66,-418],[-83,-784],[113,-265],[115,-69],[205,108],[-4,-23]],[[285659,732437],[559,-510],[153,-370],[571,-293],[593,-708],[43,-98],[146,-127],[209,-250]],[[288104,729293],[-1,-13],[-29,-103],[-34,-430],[-107,-272],[-257,-31],[-155,70],[-835,1512],[-99,139],[-309,791],[-363,424],[-113,-9],[517,-784],[140,-363],[-102,7]],[[286990,729006],[350,-511],[22,-58],[170,-222],[153,-225]],[[287735,727507],[79,-761],[-39,18],[-13,-320],[35,-189],[-169,-156],[-235,211],[-609,1159],[5,-155],[49,-180],[354,-746],[315,-447],[267,-202],[152,-275],[-511,-451],[-199,313],[-80,466],[-202,-24],[-843,591],[-677,68],[66,-118],[86,-79],[539,-146],[214,-272],[443,-242],[260,-66],[39,-272],[-17,16]],[[287044,725248],[25,-73],[59,-413],[169,-241],[127,-362]],[[287529,723857],[61,7],[189,-33],[431,371],[279,-130],[301,-80],[162,-340]],[[288952,723652],[314,-1826]],[[289197,721825],[-215,5]],[[272318,727672],[21,-190],[-38,-204],[89,-239],[73,-376],[104,-233],[129,-183],[214,-165],[254,-289],[200,-81],[67,10],[220,279],[184,149],[192,304],[342,-416],[136,0],[335,180],[316,48],[79,56],[117,173],[4,348],[26,89],[52,42],[63,8],[142,-127],[139,-3],[590,402],[44,-30],[75,-185],[259,236],[154,219],[66,332],[129,325],[-27,145],[-83,187],[109,438],[161,432],[601,1312],[192,795],[249,510],[82,408],[189,402],[130,829],[81,166],[116,28],[118,-105],[85,-153],[55,-249],[303,-218],[254,-27],[178,157],[104,292],[140,546],[134,323],[86,408],[89,282],[137,178],[342,-11],[176,250],[135,284],[82,92],[96,-13],[309,457],[406,956],[88,602],[105,433],[41,444],[80,242],[359,-482],[207,-278],[472,-632],[313,-421],[123,482],[180,708]],[[290622,730540],[-612,-2328],[17,-285],[-95,-259],[-20,-22],[-187,-112],[-189,-257],[-125,-282],[-117,-760],[-223,-855],[-139,356],[-36,305],[62,796],[241,1304],[148,449],[429,950]],[[289831,730008],[17,143]],[[291010,730624],[-17,-71]],[[290993,730553],[-321,-874],[-57,-43],[350,977]],[[157720,778581],[-85,81],[-132,21],[-294,296],[-167,296],[-380,-14],[-148,17],[-93,167],[-344,-113],[-89,88]],[[155535,779869],[33,730],[137,-369],[94,595],[64,749],[-190,288],[-48,32],[291,1353]],[[156003,783311],[-26,43],[15,12],[-35,11],[-387,156],[-132,226],[-193,32],[-8,-124],[-102,41]],[[155135,783708],[-48,263],[-5,125],[-79,720],[-217,819],[-151,833],[-124,1008],[-137,435],[-15,83]],[[154359,787994],[-22,34],[-59,190],[-448,709],[-116,414],[-80,782],[-22,322]],[[153612,790445],[-1,8],[56,730],[-77,516],[350,-99],[424,-329],[704,-345],[213,-250],[342,-187],[339,-52],[37,-22]],[[155999,790415],[2189,-324],[78,-115],[140,-49],[180,21],[134,78],[95,117],[164,32],[-4,-232],[81,-371],[167,-482],[60,-281],[4,-19],[-338,-842],[-65,-19],[-10,286],[-45,56],[-133,-298],[-5,5]],[[158691,787978],[-48,-124],[-451,-1009],[-223,-675],[-17,-231],[-58,-250]],[[157894,785689],[60,0],[0,-3],[90,-44],[136,47],[105,0]],[[158682,786029],[-261,-156],[128,120],[15,61],[-281,-100],[-135,-9],[18,319],[9,42],[103,287]],[[158278,786593],[110,305],[187,275],[275,302],[158,249],[109,363],[305,434],[16,35],[204,-331]],[[159642,788225],[22,-35],[-8,-60],[-263,-334],[-33,-118],[46,-456],[-40,-44],[-100,53],[-31,-29],[249,-496],[78,-385],[7,-209],[-246,-613]],[[159323,785499],[-72,-179],[-106,133],[-36,-66],[-21,-80],[-27,13]],[[158810,785978],[-72,-484],[-181,-199],[-102,-266],[-87,-426],[-111,-199],[315,-43],[226,68],[8,-61]],[[158956,784317],[73,-25],[55,-48],[77,-5],[7,6],[70,-24]],[[160209,785643],[-87,436],[-53,627],[19,447],[-35,141],[-82,147],[10,142],[64,235],[5,212],[-35,118],[61,249]],[[160408,789476],[1,17],[30,64],[-20,67],[6,72]],[[160008,790990],[-19,107],[-13,134],[-17,35],[-50,285]],[[159705,793796],[-84,52],[-24,151],[-47,92],[-51,10],[-53,-74],[-96,-12],[-45,27]],[[159305,794042],[-152,327],[-49,166],[-164,735],[42,92]],[[159877,790127],[-138,137],[-64,173],[-34,235],[14,99],[222,-644]],[[159578,789643],[-145,280],[-6,330],[-46,135],[-96,30],[-92,103],[-142,304],[-20,81],[67,248],[155,414],[112,196],[70,-21],[29,-42],[24,-446]],[[159488,791255],[31,-88],[-331,-249],[-13,-73],[202,-88],[74,-79],[69,-259],[136,-775],[58,323],[378,-560],[1,-257],[-4,-25],[-42,-85],[-79,-33],[-73,81],[-66,193],[-85,102],[-40,15],[-126,245]],[[159696,787001],[-135,118],[-50,126],[6,280],[38,182],[29,37],[90,-79],[26,-47],[20,-351],[-24,-266]],[[158741,784793],[-26,-116],[-39,6],[-87,237],[-11,166],[74,121],[76,-261],[17,-128],[-4,-25]],[[244147,782179],[0,-3]],[[248697,781126],[170,52]],[[256650,772405],[-5,-153]],[[256078,757242],[-1,-271]]],"bbox":[-180,-85.58276367299999,180,83.61765289211964],"transform":{"scale":[0.00036000036000036,0.00016920058576570538],"translate":[-180,-85.58276367299999]}} \ No newline at end of file diff --git a/topojson/index.js b/topojson/index.js new file mode 100644 index 00000000000..e5df51bea4b --- /dev/null +++ b/topojson/index.js @@ -0,0 +1,22 @@ +'use strict'; + +module.exports = { + africa_110m: require('./dist/africa_110m.json'), + antarctica_110m: require('./dist/antarctica_110m.json'), + asia_110m: require('./dist/asia_110m.json'), + europe_110m: require('./dist/europe_110m.json'), + 'north-america_110m': require('./dist/north-america_110m.json'), + oceania_110m: require('./dist/oceania_110m.json'), + 'south-america_110m': require('./dist/south-america_110m.json'), + usa_110m: require('./dist/usa_110m.json'), + world_110m: require('./dist/world_110m.json'), + africa_50m: require('./dist/africa_50m.json'), + antarctica_50m: require('./dist/antarctica_50m.json'), + asia_50m: require('./dist/asia_50m.json'), + europe_50m: require('./dist/europe_50m.json'), + 'north-america_50m': require('./dist/north-america_50m.json'), + oceania_50m: require('./dist/oceania_50m.json'), + 'south-america_50m': require('./dist/south-america_50m.json'), + usa_50m: require('./dist/usa_50m.json'), + world_50m: require('./dist/world_50m.json'), +} diff --git a/topojson/package-lock.json b/topojson/package-lock.json new file mode 100644 index 00000000000..d2511ad2111 --- /dev/null +++ b/topojson/package-lock.json @@ -0,0 +1,1303 @@ +{ + "name": "topojson", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "d3-geo": "^3.1.1", + "d3-geo-projection": "^4.0.0", + "mapshaper": "^0.6.106", + "topojson-server": "^3.0.1" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "dev": true, + "license": "ISC", + "dependencies": { + "get-stream": "^6.0.1", + "minimist": "^1.2.6" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", + "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", + "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", + "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", + "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", + "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", + "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@placemarkio/tokml": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/@placemarkio/tokml/-/tokml-0.3.7.tgz", + "integrity": "sha512-pQaoQTBvDf7p7d/3ZHDaxWaU62guSYB9KQ6vvecshELunzpdN5tbgw0d+SVO1eYaTlrxX3Nvi7F9DI8FcoJePg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.2.tgz", + "integrity": "sha512-/bXb0bEsWMyEkIsUL2Yt5nFB5naLAwyOWMEviQfQY1x3l5WsLKgvZf66TM7UTfED6erckUVUJQ/jJ1FSpm3pRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@tmcw/togeojson": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@tmcw/togeojson/-/togeojson-5.8.1.tgz", + "integrity": "sha512-2YNrbis3l5kS0XrYwiHEZcGwiRp0MJ5CvwGwtMWp2z2tsVlskeec2qgvKHnF0RCwI5GnjrrBOoKsWfndEnd3LA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": "*" + }, + "peerDependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/concat-stream": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz", + "integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/form-data": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz", + "integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/adm-zip": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", + "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "dev": true, + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "dev": true, + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo-projection": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz", + "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==", + "dev": true, + "license": "ISC", + "dependencies": { + "commander": "7", + "d3-array": "1 - 3", + "d3-geo": "1.12.0 - 3" + }, + "bin": { + "geo2svg": "bin/geo2svg.js", + "geograticule": "bin/geograticule.js", + "geoproject": "bin/geoproject.js", + "geoquantize": "bin/geoquantize.js", + "geostitch": "bin/geostitch.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dev": true, + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", + "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", + "dev": true, + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "dev": true, + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/detect-libc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/fflate": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", + "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", + "dev": true, + "license": "MIT" + }, + "node_modules/flatbush": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatbush/-/flatbush-3.3.1.tgz", + "integrity": "sha512-oKuPbtT+DS2CxH+9Vhbsq8HifmSCuOw+3Cy5zt/vCIrZl5KyengoTHDBLmtpZoBhcwa7/biNjgL1DwdLMJYm1A==", + "dev": true, + "license": "ISC", + "dependencies": { + "flatqueue": "^1.2.1" + } + }, + "node_modules/flatqueue": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/flatqueue/-/flatqueue-1.2.1.tgz", + "integrity": "sha512-X86TpWS1rGuY7m382HuA9vngLeDuWA9lJvhEG+GfgKMV5onSvx5a71cl7GMbXzhWtlN9dGfqOBrpfqeOtUfGYQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/form-data": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.3.tgz", + "integrity": "sha512-XHIrMD0NpDrNM/Ckf7XJiBbLl57KEhT3+i3yY+eWm+cqYZJQTZrKo8Y8AWKnuV5GT4scfuUGt9LzNoIx3dU1nQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.35", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/geographiclib": { + "version": "1.48.0", + "resolved": "https://registry.npmjs.org/geographiclib/-/geographiclib-1.48.0.tgz", + "integrity": "sha512-WIpDKKj2Gu+E4jkF3f3fg7OPF6T1/35tQXKc4jLLQrwjNiTZ5KrrYF5Gp0dQ/YbJIoCjb9vs2/abWTRsCEoi2w==", + "deprecated": "This package has been split into geographic-geodesic + geographiclib-dms; use one or both of these instead of geographiclib.", + "dev": true, + "license": "MIT" + }, + "node_modules/geokdbush": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/geokdbush/-/geokdbush-1.1.0.tgz", + "integrity": "sha512-pyyrGCMXZwWJaGt1YZIgGQg5ol3JjvEKESTon10HxdfWXlaqh5An8fNJkwOYUE+VkQfCdvYQKPVezTQU9AqWAA==", + "dev": true, + "license": "ISC", + "dependencies": { + "tinyqueue": "^1.2.2" + } + }, + "node_modules/geokdbush/node_modules/tinyqueue": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz", + "integrity": "sha512-Qz9RgWuO9l8lT+Y9xvbzhPT2efIUIFd69N7eF7tJ9lnQl0iLj1M7peK7IoUGZL9DJHw9XftqLreccfxcQgYLxA==", + "dev": true, + "license": "ISC" + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-basic": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-6.0.0.tgz", + "integrity": "sha512-7ScbVjuiReYe8S+OZOpNjoKGXrbhJHIrQQe7eq1TpLTJkxH8MPKvnTUzq/TNLjww1hdFQy8yUIC42wuLhCjYcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/concat-stream": "^1.6.0", + "@types/node": "^7.0.31", + "caseless": "~0.12.0", + "concat-stream": "^1.4.6", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + } + }, + "node_modules/http-basic/node_modules/@types/node": { + "version": "7.10.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-7.10.14.tgz", + "integrity": "sha512-29GS75BE8asnTno3yB6ubOJOO0FboExEqNJy4bpz0GSmW/8wPTNL4h9h63c6s1uTrOopCmJYe/4yJLh5r92ZUA==", + "dev": true, + "license": "MIT" + }, + "node_modules/http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "^10.0.3" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/idb-keyval": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz", + "integrity": "sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==", + "dev": true, + "license": "ISC" + }, + "node_modules/keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tsscmp": "1.0.6" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mapshaper": { + "version": "0.6.106", + "resolved": "https://registry.npmjs.org/mapshaper/-/mapshaper-0.6.106.tgz", + "integrity": "sha512-hf2T5yycfLVnD7AMz5v+iSDs7h+ioUR3iKAN6oW69y9aclJXfOjjGdK8mCpu/7dLjj1r+QvQVANaaaCDJC98Tw==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "@placemarkio/tokml": "^0.3.3", + "@tmcw/togeojson": "^5.6.0", + "@xmldom/xmldom": "^0.8.6", + "adm-zip": "^0.5.9", + "commander": "7.0.0", + "cookies": "^0.8.0", + "d3-color": "3.1.0", + "d3-interpolate": "^3.0.1", + "d3-scale-chromatic": "3.0.0", + "delaunator": "^5.0.0", + "fflate": "0.8.2", + "flatbush": "^3.2.1", + "geokdbush": "^1.1.0", + "iconv-lite": "^0.6.3", + "idb-keyval": "^6.2.0", + "kdbush": "^3.0.0", + "mproj": "0.0.40", + "msgpackr": "^1.10.1", + "opn": "^5.3.0", + "rw": "~1.3.3", + "sync-request": "5.0.0", + "tinyqueue": "^2.0.3" + }, + "bin": { + "mapshaper": "bin/mapshaper", + "mapshaper-gui": "bin/mapshaper-gui", + "mapshaper-xl": "bin/mapshaper-xl" + }, + "engines": { + "node": ">=12.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-linux-x64-gnu": "^4.44.1" + } + }, + "node_modules/mapshaper/node_modules/commander": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.0.0.tgz", + "integrity": "sha512-ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mproj": { + "version": "0.0.40", + "resolved": "https://registry.npmjs.org/mproj/-/mproj-0.0.40.tgz", + "integrity": "sha512-Fda92o5LkFUr0Tbz/5QsVhsIgbhnrnQf/eLkYRWGfKspbgvjA0VCk1FF5bT1TgpMHAP7000alBRkV7Q7hesnQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "geographiclib": "1.48.0", + "rw": "~1.3.2" + }, + "bin": { + "mcs2cs": "bin/mcs2cs", + "mproj": "bin/mproj" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/msgpackr": { + "version": "1.11.4", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.4.tgz", + "integrity": "sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "msgpackr-extract": "^3.0.2" + } + }, + "node_modules/msgpackr-extract": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", + "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "node-gyp-build-optional-packages": "5.2.2" + }, + "bin": { + "download-msgpackr-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" + } + }, + "node_modules/node-gyp-build-optional-packages": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", + "dev": true + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "dev": true, + "license": "Unlicense" + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/sync-request": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-5.0.0.tgz", + "integrity": "sha512-NKhEA4WacR3mRBIFz1niXrIUTrUVFtP2spzrLMINangebvJ/EFyVv+LMJKvVl6UIrJM4Fburnnj91lRnqb4WkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.0", + "then-request": "^5.0.0" + } + }, + "node_modules/sync-rpc": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz", + "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-port": "^3.1.0" + } + }, + "node_modules/then-request": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/then-request/-/then-request-5.0.0.tgz", + "integrity": "sha512-A3uIVLD33SAvB10PfsxLuQBMV8GVC/6xKBMPOvkJchi6251e5AMJ+Yy+RVKsVsnj0iYNhN2E5SkNSi58H19wsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^6.0.0", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + } + }, + "node_modules/then-request/node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==", + "dev": true, + "license": "ISC" + }, + "node_modules/topojson-server": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", + "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", + "dev": true, + "license": "ISC", + "dependencies": { + "commander": "2" + }, + "bin": { + "geo2topo": "bin/geo2topo" + } + }, + "node_modules/topojson-server/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.x" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/topojson/package.json b/topojson/package.json new file mode 100644 index 00000000000..e520403ea23 --- /dev/null +++ b/topojson/package.json @@ -0,0 +1,15 @@ +{ + "scripts": { + "clean": "rm -rf build dist", + "get": "node ./bin/get_geodata.mjs", + "process": "node ./bin/process_geodata.mjs", + "build": "npm run clean && npm run get && npm run process" + }, + "devDependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "d3-geo": "^3.1.1", + "d3-geo-projection": "^4.0.0", + "mapshaper": "^0.6.106", + "topojson-server": "^3.0.1" + } +}