Skip to content

Instantly share code, notes, and snippets.

@rveciana
Last active September 9, 2016 20:25
Show Gist options
  • Save rveciana/ce5936de720ebb83aafecb35dfd9531a to your computer and use it in GitHub Desktop.
Save rveciana/ce5936de720ebb83aafecb35dfd9531a to your computer and use it in GitHub Desktop.
Testing AlbersUsa with all territories

Testing the new albsersUsaTerritories projection, which includes all the territories represented in US Congress:

  • American Samoa
  • Guam
  • Northern Mariana Islands
  • Puerto Rico
  • U.S. Virgin Islands

The next d3-composite-projections will include it.

The idea was by Micah Stubbs

// http://geoexamples.com/d3-composite-projections/ Version 1.0.0. Copyright 2016 Roger Veciana i Rovira.
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('d3-geo'), require('d3-path')) :
typeof define === 'function' && define.amd ? define(['exports', 'd3-geo', 'd3-path'], factory) :
(factory((global.d3 = global.d3 || {}),global.d3,global.d3));
}(this, function (exports,d3Geo,d3Path) { 'use strict';
var epsilon = 1e-6;
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) streams[i].point(x, y); },
sphere: function() { var i = -1; while (++i < n) streams[i].sphere(); },
lineStart: function() { var i = -1; while (++i < n) streams[i].lineStart(); },
lineEnd: function() { var i = -1; while (++i < n) streams[i].lineEnd(); },
polygonStart: function() { var i = -1; while (++i < n) streams[i].polygonStart(); },
polygonEnd: function() { var i = -1; while (++i < n) streams[i].polygonEnd(); }
};
}
// A composite projection for the United States, configured by default for
// 960×500. Also works quite well at 960×600 with scale 1285. The set of
// standard parallels for each region comes from USGS, which is published here:
// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers
function albersUsa() {
var cache,
cacheStream,
lower48 = d3Geo.geoAlbers(), lower48Point,
alaska = d3Geo.geoConicEqualArea().rotate([154, 0]).center([-2, 58.5]).parallels([55, 65]), alaskaPoint, // EPSG:3338
hawaii = d3Geo.geoConicEqualArea().rotate([157, 0]).center([-3, 19.9]).parallels([8, 18]), hawaiiPoint, // ESRI:102007
point, pointStream = {point: function(x, y) { point = [x, y]; }};
function albersUsa(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(lower48Point.point(x, y), point)
|| (alaskaPoint.point(x, y), point)
|| (hawaiiPoint.point(x, y), point);
}
albersUsa.invert = function(coordinates) {
var k = lower48.scale(),
t = lower48.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
return (y >= 0.120 && y < 0.234 && x >= -0.425 && x < -0.214 ? alaska
: y >= 0.166 && y < 0.234 && x >= -0.214 && x < -0.115 ? hawaii
: lower48).invert(coordinates);
};
albersUsa.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex([lower48.stream(cacheStream = stream), alaska.stream(stream), hawaii.stream(stream)]);
};
albersUsa.precision = function(_) {
if (!arguments.length) return lower48.precision();
lower48.precision(_), alaska.precision(_), hawaii.precision(_);
return albersUsa;
};
albersUsa.scale = function(_) {
if (!arguments.length) return lower48.scale();
lower48.scale(_), alaska.scale(_ * 0.35), hawaii.scale(_);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(_) {
if (!arguments.length) return lower48.translate();
var k = lower48.scale(), x = +_[0], y = +_[1];
lower48Point = lower48
.translate(_)
.clipExtent([[x - 0.455 * k, y - 0.238 * k], [x + 0.455 * k, y + 0.238 * k]])
.stream(pointStream);
alaskaPoint = alaska
.translate([x - 0.307 * k, y + 0.201 * k])
.clipExtent([[x - 0.425 * k + epsilon, y + 0.120 * k + epsilon], [x - 0.214 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
hawaiiPoint = hawaii
.translate([x - 0.205 * k, y + 0.212 * k])
.clipExtent([[x - 0.214 * k + epsilon, y + 0.166 * k + epsilon], [x - 0.115 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
return albersUsa;
};
albersUsa.drawCompositionBorders = function(context) {
var hawaii1 = lower48([-102.91, 26.3]);
var hawaii2 = lower48([-104.0, 27.5]);
var hawaii3 = lower48([-108.0, 29.1]);
var hawaii4 = lower48([-110.0, 29.1]);
var alaska1 = lower48([-110.0, 26.7]);
var alaska2 = lower48([-112.8, 27.6]);
var alaska3 = lower48([-114.3, 30.6]);
var alaska4 = lower48([-119.3, 30.1]);
context.moveTo(hawaii1[0], hawaii1[1]);
context.lineTo(hawaii2[0], hawaii2[1]);
context.lineTo(hawaii3[0], hawaii3[1]);
context.lineTo(hawaii4[0], hawaii4[1]);
context.moveTo(alaska1[0], alaska1[1]);
context.lineTo(alaska2[0], alaska2[1]);
context.lineTo(alaska3[0], alaska3[1]);
context.lineTo(alaska4[0], alaska4[1]);
};
albersUsa.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return albersUsa.scale(1070);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$1(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) streams[i].point(x, y); },
sphere: function() { var i = -1; while (++i < n) streams[i].sphere(); },
lineStart: function() { var i = -1; while (++i < n) streams[i].lineStart(); },
lineEnd: function() { var i = -1; while (++i < n) streams[i].lineEnd(); },
polygonStart: function() { var i = -1; while (++i < n) streams[i].polygonStart(); },
polygonEnd: function() { var i = -1; while (++i < n) streams[i].polygonEnd(); }
};
}
// A composite projection for the United States, configured by default for
// 960×500. Also works quite well at 960×600 with scale 1285. The set of
// standard parallels for each region comes from USGS, which is published here:
// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers
function albersUsaTerritories() {
var cache,
cacheStream,
lower48 = d3Geo.geoAlbers(), lower48Point,
alaska = d3Geo.geoConicEqualArea().rotate([154, 0]).center([-2, 58.5]).parallels([55, 65]), alaskaPoint, // EPSG:3338
hawaii = d3Geo.geoConicEqualArea().rotate([157, 0]).center([-3, 19.9]).parallels([8, 18]), hawaiiPoint, // ESRI:102007
puertoRico = d3Geo.geoConicEqualArea().rotate([66, 0]).center([0, 18]).parallels([8, 18]), puertoRicoPoint, //Taken from https://bl.ocks.org/mbostock/5629120
samoa = d3Geo.geoEquirectangular().rotate([173, 14]), samoaPoint, // EPSG:4169
guam = d3Geo.geoEquirectangular().rotate([-145, -16.8]), guamPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var puertoRicoBbox = [[-68.3, 19], [-63.9, 17]];
var samoaBbox = [[-171, -14], [-168, -14.8]];
var guamBbox = [[144, 20.8], [146.5, 12.7]];
*/
function albersUsa(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(lower48Point.point(x, y), point) ||
(alaskaPoint.point(x, y), point) ||
(hawaiiPoint.point(x, y), point) ||
(puertoRicoPoint.point(x, y), point) ||
(samoaPoint.point(x, y), point) ||
(guamPoint.point(x, y), point);
}
albersUsa.invert = function(coordinates) {
var k = lower48.scale(),
t = lower48.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = puertoRico(puertoRicoBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 puertoRico", x0 + ' - ' + y0);
var c1 = puertoRico(puertoRicoBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 puertoRico", x1 + ' - ' + y1);
c0 = samoa(samoaBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 samoa", x0 + ' - ' + y0);
c1 = samoa(samoaBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 samoa", x1 + ' - ' + y1);
c0 = guam(guamBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 guam", x0 + ' - ' + y0);
c1 = guam(guamBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 guam", x1 + ' - ' + y1);
*/
return (y >= 0.120 && y < 0.234 && x >= -0.425 && x < -0.214 ? alaska
: y >= 0.166 && y < 0.234 && x >= -0.214 && x < -0.115 ? hawaii
: y >= 0.2064 && y < 0.2413 && x >= 0.312 && x < 0.385 ? puertoRico
: y >= 0.09 && y < 0.1197 && x >= -0.4243 && x < -0.3232 ? samoa
: y >= -0.0518 && y < 0.0895 && x >= -0.4243 && x < -0.3824 ? guam
: lower48).invert(coordinates);
};
albersUsa.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$1([lower48.stream(cacheStream = stream), alaska.stream(stream), hawaii.stream(stream), puertoRico.stream(stream), samoa.stream(stream), guam.stream(stream)]);
};
albersUsa.precision = function(_) {
if (!arguments.length) {return lower48.precision();}
lower48.precision(_);
alaska.precision(_);
hawaii.precision(_);
puertoRico.precision(_);
samoa.precision(_);
guam.precision(_);
return albersUsa;
};
albersUsa.scale = function(_) {
if (!arguments.length) {return lower48.scale();}
lower48.scale(_);
alaska.scale(_ * 0.35);
hawaii.scale(_);
puertoRico.scale(_);
samoa.scale(_* 2);
guam.scale(_);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(_) {
if (!arguments.length) {return lower48.translate();}
var k = lower48.scale(), x = +_[0], y = +_[1];
/*
var c0 = puertoRico.translate([x + 0.350 * k, y + 0.224 * k])(puertoRicoBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = puertoRico.translate([x + 0.350 * k, y + 0.224 * k])(puertoRicoBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('puertoRico: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = samoa.translate([x - 0.492 * k, y + 0.09 * k])(samoaBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = samoa.translate([x - 0.492 * k, y + 0.09 * k])(samoaBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('samoa: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = guam.translate([x - 0.408 * k, y + 0.018 * k])(guamBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = guam.translate([x - 0.408 * k, y + 0.018 * k])(guamBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('guam: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
lower48Point = lower48
.translate(_)
.clipExtent([[x - 0.455 * k, y - 0.238 * k], [x + 0.455 * k, y + 0.238 * k]])
.stream(pointStream);
alaskaPoint = alaska
.translate([x - 0.307 * k, y + 0.201 * k])
.clipExtent([[x - 0.425 * k + epsilon, y + 0.120 * k + epsilon], [x - 0.214 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
hawaiiPoint = hawaii
.translate([x - 0.205 * k, y + 0.212 * k])
.clipExtent([[x - 0.214 * k + epsilon, y + 0.166 * k + epsilon], [x - 0.115 * k - epsilon, y + 0.234 * k - epsilon]])
.stream(pointStream);
puertoRicoPoint = puertoRico
.translate([x + 0.350 * k, y + 0.224 * k])
.clipExtent([[x + 0.312 * k + epsilon, y + 0.2064 * k + epsilon],[x + 0.385 * k - epsilon, y + 0.2413 * k - epsilon]])
.stream(pointStream);
samoaPoint = samoa
.translate([x - 0.492 * k, y + 0.09 * k])
.clipExtent([[x - 0.4243 * k + epsilon, y + 0.0903 * k + epsilon],[x - 0.3233 * k - epsilon, y + 0.1197 * k - epsilon]])
.stream(pointStream);
guamPoint = guam
.translate([x - 0.408 * k, y + 0.018 * k])
.clipExtent([[x - 0.4244 * k + epsilon, y - 0.0519 * k + epsilon],[x - 0.3824 * k - epsilon, y + 0.0895 * k - epsilon]])
.stream(pointStream);
return albersUsa;
};
albersUsa.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT hawaii: ", hawaii.clipExtent());
console.info("UL BBOX:", lower48.invert([hawaii.clipExtent()[0][0], hawaii.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([hawaii.clipExtent()[1][0], hawaii.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([hawaii.clipExtent()[1][0], hawaii.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([hawaii.clipExtent()[0][0], hawaii.clipExtent()[1][1]]));
console.info("CLIP EXTENT alaska: ", alaska.clipExtent());
console.info("UL BBOX:", lower48.invert([alaska.clipExtent()[0][0], alaska.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([alaska.clipExtent()[1][0], alaska.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([alaska.clipExtent()[1][0], alaska.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([alaska.clipExtent()[0][0], alaska.clipExtent()[1][1]]));
console.info("CLIP EXTENT puertoRico: ", puertoRico.clipExtent());
console.info("UL BBOX:", lower48.invert([puertoRico.clipExtent()[0][0], puertoRico.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([puertoRico.clipExtent()[1][0], puertoRico.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([puertoRico.clipExtent()[1][0], puertoRico.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([puertoRico.clipExtent()[0][0], puertoRico.clipExtent()[1][1]]));
console.info("CLIP EXTENT samoa: ", samoa.clipExtent());
console.info("UL BBOX:", lower48.invert([samoa.clipExtent()[0][0], samoa.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([samoa.clipExtent()[1][0], samoa.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([samoa.clipExtent()[1][0], samoa.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([samoa.clipExtent()[0][0], samoa.clipExtent()[1][1]]));
console.info("CLIP EXTENT guam: ", guam.clipExtent());
console.info("UL BBOX:", lower48.invert([guam.clipExtent()[0][0], guam.clipExtent()[0][1]]));
console.info("UR BBOX:", lower48.invert([guam.clipExtent()[1][0], guam.clipExtent()[0][1]]));
console.info("LD BBOX:", lower48.invert([guam.clipExtent()[1][0], guam.clipExtent()[1][1]]));
console.info("LL BBOX:", lower48.invert([guam.clipExtent()[0][0], guam.clipExtent()[1][1]]));
*/
var ulhawaii = lower48([-110.4641, 28.2805]);
var urhawaii = lower48([-104.0597, 28.9528]);
var ldhawaii = lower48([-103.6999, 25.0452]);
var llhawaii = lower48([-109.8247, 24.3956]);
var ulalaska = lower48([ -124.4745, 28.1407]);
var uralaska = lower48([ -110.931, 30.8844]);
var ldalaska = lower48([ -109.8247, 24.3956]);
var llalaska = lower48([ -122.4462, 21.7998]);
var ulpuertoRico = lower48([-76.8579, 25.1544]);
var urpuertoRico = lower48([-72.429, 24.2097]);
var ldpuertoRico = lower48([-72.9479, 22.2342]);
var llpuertoRico = lower48([-77.285, 23.1647]);
var ulsamoa = lower48([-125.0093, 29.7791]);
var ursamoa = lower48([-118.5193, 31.3262]);
var ldsamoa = lower48([-118.064, 29.6912]);
var llsamoa = lower48([-124.4369, 28.169]);
var ulguam = lower48([-128.1314, 37.4582]);
var urguam = lower48([-125.2132, 38.214]);
var ldguam = lower48([-122.3616, 30.5115]);
var llguam = lower48([-125.0315, 29.8211]);
context.moveTo(ulhawaii[0], ulhawaii[1]);
context.lineTo(urhawaii[0], urhawaii[1]);
context.lineTo(ldhawaii[0], ldhawaii[1]);
context.lineTo(ldhawaii[0], ldhawaii[1]);
context.lineTo(llhawaii[0], llhawaii[1]);
context.closePath();
context.moveTo(ulalaska[0], ulalaska[1]);
context.lineTo(uralaska[0], uralaska[1]);
context.lineTo(ldalaska[0], ldalaska[1]);
context.lineTo(ldalaska[0], ldalaska[1]);
context.lineTo(llalaska[0], llalaska[1]);
context.closePath();
context.moveTo(ulpuertoRico[0], ulpuertoRico[1]);
context.lineTo(urpuertoRico[0], urpuertoRico[1]);
context.lineTo(ldpuertoRico[0], ldpuertoRico[1]);
context.lineTo(ldpuertoRico[0], ldpuertoRico[1]);
context.lineTo(llpuertoRico[0], llpuertoRico[1]);
context.closePath();
context.moveTo(ulsamoa[0], ulsamoa[1]);
context.lineTo(ursamoa[0], ursamoa[1]);
context.lineTo(ldsamoa[0], ldsamoa[1]);
context.lineTo(ldsamoa[0], ldsamoa[1]);
context.lineTo(llsamoa[0], llsamoa[1]);
context.closePath();
context.moveTo(ulguam[0], ulguam[1]);
context.lineTo(urguam[0], urguam[1]);
context.lineTo(ldguam[0], ldguam[1]);
context.lineTo(ldguam[0], ldguam[1]);
context.lineTo(llguam[0], llguam[1]);
context.closePath();
};
albersUsa.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return albersUsa.scale(1070);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$2(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Spain, configured by default for 960×500.
function conicConformalSpain() {
var cache,
cacheStream,
iberianPeninsule = d3Geo.geoConicConformal().rotate([5, -38.6]), iberianPeninsulePoint,
canaryIslands = d3Geo.geoConicConformal().rotate([5, -38.6]), canaryIslandsPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var iberianPeninsuleBbox = [[-11, 46], [4, 35]];
var canaryIslandsBbox = [[-19.0, 28.85], [-12.7, 28.1]];
*/
function conicConformalSpain(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(iberianPeninsulePoint.point(x, y), point) ||
(canaryIslandsPoint.point(x, y), point);
}
conicConformalSpain.invert = function(coordinates) {
var k = iberianPeninsule.scale(),
t = iberianPeninsule.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
var c0 = canaryIslands(canaryIslandsBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 canary islands", x0 + ' - ' + y0);
var c1 = canaryIslands(canaryIslandsBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 canary islands", x1 + ' - ' + y1);
*/
return (y >= 0.05346 && y< 0.0897 && x >= -0.13388 && x < -0.0322 ? canaryIslands
: iberianPeninsule).invert(coordinates);
};
conicConformalSpain.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$2([iberianPeninsule.stream(cacheStream = stream), canaryIslands.stream(stream)]);
};
conicConformalSpain.precision = function(_) {
if (!arguments.length) {return iberianPeninsule.precision();}
iberianPeninsule.precision(_);
canaryIslands.precision(_);
return conicConformalSpain;
};
conicConformalSpain.scale = function(_) {
if (!arguments.length) {return iberianPeninsule.scale();}
iberianPeninsule.scale(_);
canaryIslands.scale(_);
return conicConformalSpain.translate(iberianPeninsule.translate());
};
conicConformalSpain.translate = function(_) {
if (!arguments.length) {return iberianPeninsule.translate();}
var k = iberianPeninsule.scale(), x = +_[0], y = +_[1];
/*
var c0 = iberianPeninsule(iberianPeninsuleBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = iberianPeninsule(iberianPeninsuleBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
c0 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = canaryIslands.translate([x + 0.1 * k, y - 0.094 * k])(canaryIslandsBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Canry Islands: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
*/
iberianPeninsulePoint = iberianPeninsule
.translate(_)
.clipExtent([[x - 0.06857 * k, y - 0.1288 * k],[x + 0.13249 * k, y + 0.05292 * k]])
.stream(pointStream);
canaryIslandsPoint = canaryIslands
.translate([x + 0.1 * k, y - 0.094 * k])
.clipExtent([[x - 0.1331 * k + epsilon, y + 0.053457 * k + epsilon],[x - 0.0354 * k - epsilon, y + 0.08969 * k - epsilon]])
.stream(pointStream);
return conicConformalSpain;
};
conicConformalSpain.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT: ", canaryIslands.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[0][0], canaryIslands.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([canaryIslands.clipExtent()[1][0], canaryIslands.clipExtent()[1][1]]));
*/
var ulCanaryIslands = iberianPeninsule([-14.0346750522884, 34.96500729877966]);
var urCanaryIslands = iberianPeninsule([-7.4208899681602025, 35.53698899616862]);
var ldCanaryIslands = iberianPeninsule([-7.314827535125545, 33.54359498636456]);
context.moveTo(ulCanaryIslands[0], ulCanaryIslands[1]);
context.lineTo(urCanaryIslands[0], urCanaryIslands[1]);
context.lineTo(ldCanaryIslands[0], ldCanaryIslands[1]);
};
conicConformalSpain.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicConformalSpain.scale(2700);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$3(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Portugal, configured by default for 960×500.
function conicConformalPortugal() {
var cache,
cacheStream,
iberianPeninsule = d3Geo.geoConicConformal().rotate([10, -39.3]), iberianPeninsulePoint,
madeira = d3Geo.geoConicConformal().rotate([17, -32.7]), madeiraPoint,
azores = d3Geo.geoConicConformal().rotate([27.8, -38.6]), azoresPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var iberianPeninsuleBbox = [[-11, 46], [4, 34]];
var madeiraBbox = [[-17.85, 33.6], [-16, 32.02]];
var azoresBbox = [[-32, 40.529], [-23.98, 35.75]];
*/
function conicConformalPortugal(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(iberianPeninsulePoint.point(x, y), point) ||
(madeiraPoint.point(x, y), point) ||
(azoresPoint.point(x, y), point);
}
conicConformalPortugal.invert = function(coordinates) {
var k = iberianPeninsule.scale(),
t = iberianPeninsule.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = madeira(madeiraBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 madeira", x0 + ' - ' + y0);
var c1 = madeira(madeiraBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 madeira", x1 + ' - ' + y1);
c0 = azores(azoresBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 azores", x0 + ' - ' + y0);
c1 = azores(azoresBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 azores", x1 + ' - ' + y1);
*/
return (y >= 0.0093 && y< 0.03678 && x >= -0.03875 && x < -0.0116 ? madeira
: y >= -0.0412 && y< 0.0091 && x >= -0.07782 && x < -0.01166 ? azores
: iberianPeninsule).invert(coordinates);
};
conicConformalPortugal.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$3([iberianPeninsule.stream(cacheStream = stream), madeira.stream(stream), azores.stream(stream)]);
};
conicConformalPortugal.precision = function(_) {
if (!arguments.length) {return iberianPeninsule.precision();}
iberianPeninsule.precision(_);
madeira.precision(_);
azores.precision(_);
return conicConformalPortugal;
};
conicConformalPortugal.scale = function(_) {
if (!arguments.length) {return iberianPeninsule.scale();}
iberianPeninsule.scale(_);
madeira.scale(_);
azores.scale(_ * 0.6);
return conicConformalPortugal.translate(iberianPeninsule.translate());
};
conicConformalPortugal.translate = function(_) {
if (!arguments.length) {return iberianPeninsule.translate();}
var k = iberianPeninsule.scale(), x = +_[0], y = +_[1];
/*
var c0 = iberianPeninsule(iberianPeninsuleBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = iberianPeninsule(iberianPeninsuleBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Iberian Peninsula: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = madeira.translate([x - 0.0265 * k, y + 0.025 * k])(madeiraBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = madeira.translate([x - 0.0265 * k, y + 0.025 * k])(madeiraBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Madeira: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = azores.translate([x - 0.045 * k, y + -0.02 * k])(azoresBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = azores.translate([x - 0.045 * k, y + -0.02 * k])(azoresBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('Azores: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
iberianPeninsulePoint = iberianPeninsule
.translate(_)
.clipExtent([[x - 0.0115 * k, y - 0.1138 * k],[x +0.2105 * k, y +0.0673 * k]])
.stream(pointStream);
madeiraPoint = madeira
.translate([x - 0.0265 * k, y + 0.025 * k])
.clipExtent([[x - 0.0388 * k + epsilon, y + 0.0093 * k + epsilon],[x - 0.0116 * k - epsilon, y + 0.0368 * k - epsilon]])
.stream(pointStream);
azoresPoint = azores
.translate([x - 0.045 * k, y + -0.02 * k])
.clipExtent([[x - 0.0778 * k + epsilon, y - 0.0413 * k + epsilon],[x - 0.0117 * k - epsilon, y + 0.0091 * k - epsilon]])
.stream(pointStream);
return conicConformalPortugal;
};
conicConformalPortugal.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT MADEIRA: ", madeira.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([madeira.clipExtent()[0][0], madeira.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([madeira.clipExtent()[1][0], madeira.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([madeira.clipExtent()[1][0], madeira.clipExtent()[1][1]]));
console.info("LL BBOX:", iberianPeninsule.invert([madeira.clipExtent()[0][0], madeira.clipExtent()[1][1]]));
console.info("CLIP EXTENT AZORES: ", azores.clipExtent());
console.info("UL BBOX:", iberianPeninsule.invert([azores.clipExtent()[0][0], azores.clipExtent()[0][1]]));
console.info("UR BBOX:", iberianPeninsule.invert([azores.clipExtent()[1][0], azores.clipExtent()[0][1]]));
console.info("LD BBOX:", iberianPeninsule.invert([azores.clipExtent()[1][0], azores.clipExtent()[1][1]]));
console.info("LL BBOX:", iberianPeninsule.invert([azores.clipExtent()[0][0], azores.clipExtent()[1][1]]));
*/
var ulmadeira = iberianPeninsule([-12.8351, 38.7113]);
var urmadeira = iberianPeninsule([-10.8482, 38.7633]);
var ldmadeira = iberianPeninsule([-10.8181, 37.2072]);
var llmadeira = iberianPeninsule([-12.7345, 37.1573]);
var ulazores = iberianPeninsule([-16.0753, 41.4436]);
var urazores = iberianPeninsule([-10.9168, 41.6861]);
var ldazores = iberianPeninsule([-10.8557, 38.7747]);
var llazores = iberianPeninsule([-15.6728, 38.5505]);
context.moveTo(ulmadeira[0], ulmadeira[1]);
context.lineTo(urmadeira[0], urmadeira[1]);
context.lineTo(ldmadeira[0], ldmadeira[1]);
context.lineTo(ldmadeira[0], ldmadeira[1]);
context.lineTo(llmadeira[0], llmadeira[1]);
context.closePath();
context.moveTo(ulazores[0], ulazores[1]);
context.lineTo(urazores[0], urazores[1]);
context.lineTo(ldazores[0], ldazores[1]);
context.lineTo(ldazores[0], ldazores[1]);
context.lineTo(llazores[0], llazores[1]);
context.closePath();
};
conicConformalPortugal.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return conicConformalPortugal.scale(4200);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$4(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Ecuador, configured by default for 960×500.
function mercatorEcuador() {
var cache,
cacheStream,
mainland = d3Geo.geoMercator().rotate([80, 1.5]), mainlandPoint,
galapagos = d3Geo.geoMercator().rotate([90.73, 1]), galapagosPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var mainlandBbox = [[-81.5, 2.7], [-70.0, -6.0]];
var galapagosBbox = [[-92.2, 0.58], [-88.8, -1.8]];
*/
function mercatorEcuador(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(mainlandPoint.point(x, y), point) ||
(galapagosPoint.point(x, y), point);
}
mercatorEcuador.invert = function(coordinates) {
var k = mainland.scale(),
t = mainland.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
var c0 = galapagos(galapagosBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 galapagos", x0 + ' - ' + y0);
var c1 = galapagos(galapagosBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 galapagos", x1 + ' - ' + y1);
*/
return (y >= -0.0676 && y< -0.026 && x >= -0.0857 && x < -0.0263 ? galapagos
: mainland).invert(coordinates);
};
mercatorEcuador.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$4([mainland.stream(cacheStream = stream), galapagos.stream(stream)]);
};
mercatorEcuador.precision = function(_) {
if (!arguments.length) {return mainland.precision();}
mainland.precision(_);
galapagos.precision(_);
return mercatorEcuador;
};
mercatorEcuador.scale = function(_) {
if (!arguments.length) {return mainland.scale();}
mainland.scale(_);
galapagos.scale(_);
return mercatorEcuador.translate(mainland.translate());
};
mercatorEcuador.translate = function(_) {
if (!arguments.length) {return mainland.translate();}
var k = mainland.scale(), x = +_[0], y = +_[1];
/*
var c0 = mainland(mainlandBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = mainland(mainlandBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('mainland: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = galapagos.translate([x - 0.06 * k, y - 0.04 * k])(galapagosBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = galapagos.translate([x - 0.06 * k, y - 0.04 * k])(galapagosBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('galapagos: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');*/
mainlandPoint = mainland
.translate(_)
.clipExtent([[x - 0.0262 * k, y - 0.0734 * k],[x + 0.1741 * k, y + 0.079 * k]])
.stream(pointStream);
galapagosPoint = galapagos
.translate([x - 0.06 * k, y - 0.04 * k])
.clipExtent([[x - 0.0857 * k + epsilon, y - 0.0676 * k + epsilon],[x - 0.0263 * k - epsilon, y - 0.026 * k - epsilon]])
.stream(pointStream);
return mercatorEcuador;
};
mercatorEcuador.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT: ", galapagos.clipExtent());
console.info("UL BBOX:", mainland.invert([galapagos.clipExtent()[0][0], galapagos.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([galapagos.clipExtent()[1][0], galapagos.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([galapagos.clipExtent()[1][0], galapagos.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([galapagos.clipExtent()[0][0], galapagos.clipExtent()[1][1]]));
*/
var ulgalapagos = mainland([-84.9032, 2.3757]);
var urgalapagos = mainland([-81.5047, 2.3708]);
var ldgalapagos = mainland([-81.5063, -0.01]);
var llgalapagos = mainland([-84.9086, -0.005]);
context.moveTo(ulgalapagos[0], ulgalapagos[1]);
context.lineTo(urgalapagos[0], urgalapagos[1]);
context.lineTo(ldgalapagos[0], ldgalapagos[1]);
context.lineTo(llgalapagos[0], llgalapagos[1]);
context.closePath();
};
mercatorEcuador.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return mercatorEcuador.scale(3500);
}
// The projections must have mutually exclusive clip regions on the sphere,
// as this will avoid emitting interleaving lines and polygons.
function multiplex$5(streams) {
var n = streams.length;
return {
point: function(x, y) { var i = -1; while (++i < n) {streams[i].point(x, y); }},
sphere: function() { var i = -1; while (++i < n) {streams[i].sphere(); }},
lineStart: function() { var i = -1; while (++i < n) {streams[i].lineStart(); }},
lineEnd: function() { var i = -1; while (++i < n) {streams[i].lineEnd(); }},
polygonStart: function() { var i = -1; while (++i < n) {streams[i].polygonStart(); }},
polygonEnd: function() { var i = -1; while (++i < n) {streams[i].polygonEnd(); }}
};
}
// A composite projection for Chile, configured by default for 960×500.
function transverseMercatorChile() {
var cache,
cacheStream,
mainland = d3Geo.geoTransverseMercator().rotate([72, 37]), mainlandPoint,
antarctic = d3Geo.geoStereographic().rotate([72, 0]), antarcticPoint,
juanFernandez = d3Geo.geoMercator().rotate([80, 33.5]), juanFernandezPoint,
pascua = d3Geo.geoMercator().rotate([110, 25]), pascuaPoint,
point, pointStream = {point: function(x, y) { point = [x, y]; }};
/*
var mainlandBbox = [[-75.5, -15.0], [-32, -49.0]];
var antarcticBbox = [[-91.0, -60.0], [-43.0, -90.0]];
var juanFernandezBbox = [[-81.0, -33.0], [-78.5, -34.0]];
var pascuaBbox = [[-110, -26.6], [-108.7, -27.5]];
*/
function transverseMercatorChile(coordinates) {
var x = coordinates[0], y = coordinates[1];
return point = null,
(mainlandPoint.point(x, y), point) ||
(antarcticPoint.point(x, y), point) ||
(juanFernandezPoint.point(x, y), point) ||
(pascuaPoint.point(x, y), point);
}
transverseMercatorChile.invert = function(coordinates) {
var k = mainland.scale(),
t = mainland.translate(),
x = (coordinates[0] - t[0]) / k,
y = (coordinates[1] - t[1]) / k;
/*
//How are the return values calculated:
console.info("******");
var c0 = antarctic(antarcticBbox[0]);
var x0 = (c0[0] - t[0]) / k;
var y0 = (c0[1] - t[1]) / k;
console.info("p0 antarctic", x0 + ' - ' + y0);
var c1 = antarctic(antarcticBbox[1]);
var x1 = (c1[0] - t[0]) / k;
var y1 = (c1[1] - t[1]) / k;
console.info("p1 antarctic", x1 + ' - ' + y1);
c0 = juanFernandez(juanFernandezBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 juanFernandez", x0 + ' - ' + y0);
c1 = juanFernandez(juanFernandezBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 juanFernandez", x1 + ' - ' + y1);
c0 = pascua(pascuaBbox[0]);
x0 = (c0[0] - t[0]) / k;
y0 = (c0[1] - t[1]) / k;
console.info("p0 pascua", x0 + ' - ' + y0);
c1 = pascua(pascuaBbox[1]);
x1 = (c1[0] - t[0]) / k;
y1 = (c1[1] - t[1]) / k;
console.info("p1 pascua", x1 + ' - ' + y1);
*/
return (y >= 0.2582 && y< 0.32 && x >= -0.1036 && x < -0.087 ? antarctic
: y >= -0.01298 && y< 0.0133 && x >= -0.11396 && x < -0.05944 ? juanFernandez
: y >= 0.01539 && y< 0.03911 && x >= -0.089 && x < -0.0588 ? pascua
: mainland).invert(coordinates);
};
transverseMercatorChile.stream = function(stream) {
return cache && cacheStream === stream ? cache : cache = multiplex$5([mainland.stream(cacheStream = stream), antarctic.stream(stream), juanFernandez.stream(stream), pascua.stream(stream)]);
};
transverseMercatorChile.precision = function(_) {
if (!arguments.length) {return mainland.precision();}
mainland.precision(_);
antarctic.precision(_);
juanFernandez.precision(_);
pascua.precision(_);
return transverseMercatorChile;
};
transverseMercatorChile.scale = function(_) {
if (!arguments.length) {return mainland.scale();}
mainland.scale(_);
antarctic.scale(_ * 0.15);
juanFernandez.scale(_ * 1.5);
pascua.scale(_ * 1.5);
return transverseMercatorChile.translate(mainland.translate());
};
transverseMercatorChile.translate = function(_) {
if (!arguments.length) {return mainland.translate();}
var k = mainland.scale(), x = +_[0], y = +_[1];
/*
var c0 = mainland(mainlandBbox[0]);
var x0 = (x - c0[0]) / k;
var y0 = (y - c0[1]) / k;
var c1 = mainland(mainlandBbox[1]);
var x1 = (x - c1[0]) / k;
var y1 = (y - c1[1]) / k;
console.info('Mainland: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k]])');
c0 = antarctic.translate([x - 0.1 * k, y + 0.17 * k])(antarcticBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = antarctic.translate([x - 0.1 * k, y + 0.17 * k])(antarcticBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('antarctic: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('Doesn t work due to -90 latitude!' + '.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = juanFernandez.translate([x - 0.092 * k, y -0 * k])(juanFernandezBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = juanFernandez.translate([x - 0.092 * k, y -0 * k])(juanFernandezBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('juanFernandez: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
c0 = pascua.translate([x - 0.089 * k, y -0.0265 * k])(pascuaBbox[0]);
x0 = (x - c0[0]) / k;
y0 = (y - c0[1]) / k;
c1 = pascua.translate([x - 0.089 * k, y -0.0265 * k])(pascuaBbox[1]);
x1 = (x - c1[0]) / k;
y1 = (y - c1[1]) / k;
console.info('pascua: p0: ' + x0 + ', ' + y0 + ' , p1: ' + x1 + ' - ' + y1);
console.info('.clipExtent([[x '+
(x0<0?'+ ':'- ') + Math.abs(x0.toFixed(4))+
' * k + epsilon, y '+
(y0<0?'+ ':'- ') + Math.abs(y0.toFixed(4))+
' * k + epsilon],[x '+
(x1<0?'+ ':'- ') + Math.abs(x1.toFixed(4))+
' * k - epsilon, y '+
(y1<0?'+ ':'- ') + Math.abs(y1.toFixed(4))+
' * k - epsilon]])');
*/
mainlandPoint = mainland
.translate(_)
.clipExtent([[x - 0.059 * k, y - 0.3835 * k],[x + 0.4498 * k, y + 0.3375 * k]])
.stream(pointStream);
antarcticPoint = antarctic
.translate([x - 0.087 * k, y + 0.17 * k])
.clipExtent([[x - 0.1166 * k + epsilon, y + 0.2582 * k + epsilon],[x - 0.06 * k - epsilon, y + 0.32 * k - epsilon]])
.stream(pointStream);
juanFernandezPoint = juanFernandez
.translate([x - 0.092 * k, y - 0 * k])
.clipExtent([[x - 0.114 * k + epsilon, y - 0.013 * k + epsilon],[x - 0.0594 * k - epsilon, y + 0.0133 * k - epsilon]])
.stream(pointStream);
pascuaPoint = pascua
.translate([x - 0.089 * k, y - 0.0265 * k])
.clipExtent([[x - 0.089 * k + epsilon, y + 0.0154 * k + epsilon],[x - 0.0588 * k - epsilon, y + 0.0391 * k - epsilon]])
.stream(pointStream);
return transverseMercatorChile;
};
transverseMercatorChile.drawCompositionBorders = function(context) {
/*
console.info("CLIP EXTENT antarctic: ", antarctic.clipExtent());
console.info("UL BBOX:", mainland.invert([antarctic.clipExtent()[0][0], antarctic.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([antarctic.clipExtent()[1][0], antarctic.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([antarctic.clipExtent()[1][0], antarctic.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([antarctic.clipExtent()[0][0], antarctic.clipExtent()[1][1]]));
console.info("CLIP EXTENT juanFernandez: ", juanFernandez.clipExtent());
console.info("UL BBOX:", mainland.invert([juanFernandez.clipExtent()[0][0], juanFernandez.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([juanFernandez.clipExtent()[1][0], juanFernandez.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([juanFernandez.clipExtent()[1][0], juanFernandez.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([juanFernandez.clipExtent()[0][0], juanFernandez.clipExtent()[1][1]]));
console.info("CLIP EXTENT pascua: ", pascua.clipExtent());
console.info("UL BBOX:", mainland.invert([pascua.clipExtent()[0][0], pascua.clipExtent()[0][1]]));
console.info("UR BBOX:", mainland.invert([pascua.clipExtent()[1][0], pascua.clipExtent()[0][1]]));
console.info("LD BBOX:", mainland.invert([pascua.clipExtent()[1][0], pascua.clipExtent()[1][1]]));
console.info("LL BBOX:", mainland.invert([pascua.clipExtent()[0][0], pascua.clipExtent()[1][1]]));
*/
var ulantarctic = mainland([-82.6999, -51.3043]);
var urantarctic = mainland([-77.5442, -51.6631]);
var ldantarctic = mainland([-78.0254, -55.1860]);
var llantarctic = mainland([-83.6106, -54.7785]);
var uljuanFernandez = mainland([-80.0638, -35.9840]);
var urjuanFernandez = mainland([-76.2153, -36.1811]);
var ldjuanFernandez = mainland([-76.2994, -37.6839]);
var lljuanFernandez = mainland([-80.2231, -37.4757]);
var ulpascua = mainland([-78.442, -37.706]);
var urpascua = mainland([-76.263, -37.8054]);
var ldpascua = mainland([-76.344, -39.1595]);
var llpascua = mainland([-78.5638, -39.0559]);
context.moveTo(ulantarctic[0], ulantarctic[1]);
context.lineTo(urantarctic[0], urantarctic[1]);
context.lineTo(ldantarctic[0], ldantarctic[1]);
context.lineTo(ldantarctic[0], ldantarctic[1]);
context.lineTo(llantarctic[0], llantarctic[1]);
context.closePath();
context.moveTo(uljuanFernandez[0], uljuanFernandez[1]);
context.lineTo(urjuanFernandez[0], urjuanFernandez[1]);
context.lineTo(ldjuanFernandez[0], ldjuanFernandez[1]);
context.lineTo(ldjuanFernandez[0], ldjuanFernandez[1]);
context.lineTo(lljuanFernandez[0], lljuanFernandez[1]);
context.closePath();
context.moveTo(ulpascua[0], ulpascua[1]);
context.lineTo(urpascua[0], urpascua[1]);
context.lineTo(ldpascua[0], ldpascua[1]);
context.lineTo(ldpascua[0], ldpascua[1]);
context.lineTo(llpascua[0], llpascua[1]);
context.closePath();
};
transverseMercatorChile.getCompositionBorders = function() {
var context = d3Path.path();
this.drawCompositionBorders(context);
return context.toString();
};
return transverseMercatorChile.scale(700);
}
exports.geoAlbersUsa = albersUsa;
exports.geoAlbersUsaTerritories = albersUsaTerritories;
exports.geoConicConformalSpain = conicConformalSpain;
exports.geoConicConformalPortugal = conicConformalPortugal;
exports.geoMercatorEcuador = mercatorEcuador;
exports.geoTransverseMercatorChile = transverseMercatorChile;
Object.defineProperty(exports, '__esModule', { value: true });
}));
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.countries {
fill: #ccc;
stroke: #fff;
}
</style>
<body>
<script src="https://d3js.org/d3-array.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="https://d3js.org/d3-selection.v1.min.js"></script>
<script src="https://d3js.org/d3-collection.v1.min.js"></script>
<script src="https://d3js.org/d3-dispatch.v1.min.js"></script>
<script src="https://d3js.org/d3-request.v1.min.js"></script>
<script src="https://d3js.org/d3-path.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="d3-composite-projections.js"></script>
<script>
var width = 960,
height = 502;
var projection = d3.geoAlbersUsaTerritories();
var path = d3.geoPath()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("us_territories.json", function(error, us) {
svg.selectAll(".district")
.data(topojson.feature(us, us.objects.us).features)
.enter()
.append("path")
.attr("d", path)
.style("fill","#666")
.style("stroke","#000")
.on('click', function(d) {
alert(d.properties.STATEFP + ": " + d.properties.NAMELSAD);
});;
svg
.append("path")
.style("fill","none")
.style("stroke","#00f")
.attr("d", projection.getCompositionBorders());
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0006348711961556686,0.0004324238379310171],"translate":[-179.231086,-14.601339]},"arcs":[[[136101,119489],[218,-3],[11,453],[-21,1],[5,201],[4,303],[226,-7],[88,-6],[285,-7],[85,0],[5,305],[104,1],[243,-6],[1,241],[2,0],[7,389],[2,314]],[[137366,121668],[87,-3],[12,61],[27,13],[10,-25],[63,47],[223,5],[191,-5],[3,237],[151,-2],[-1,135],[264,-3],[0,-13],[579,0],[47,3],[299,-3],[12,106],[37,250],[34,42],[18,-15],[52,-9],[-3,-35],[18,-33],[27,-22],[74,-2],[225,-4],[-41,-33],[49,-46],[10,-98],[37,-6],[0,-37],[15,-28],[23,-9],[51,14],[31,-7]],[[139990,122143],[34,-61],[27,-24],[41,-21],[25,-30],[51,-105],[40,-43],[71,-55],[22,12],[43,-29],[7,-48],[25,-35],[28,-21],[43,-1],[53,-50],[37,-58],[32,-19],[74,21],[15,-53],[-44,-18],[-22,-28],[-1,-20],[32,-81],[45,-31],[42,0],[29,22],[28,39],[27,19],[72,-56],[3,-45],[68,-36],[23,1],[20,-32],[38,-38],[52,-39],[15,-31],[-12,-60],[29,-35],[49,10],[31,-35],[24,-49],[91,-34],[22,-30],[-9,-103],[17,-37],[44,-61],[-4,-36],[-20,-7],[-41,6],[-3,-59],[9,-50],[25,-53],[17,-51],[29,-56],[49,-67],[30,-100],[-11,-88],[-13,-27],[-60,-15],[-27,-15],[-29,-40],[-14,-65],[45,-80],[31,4],[20,-25],[-15,-48],[9,-51],[57,-142],[27,-42],[30,-27],[17,-32],[3,-41],[-14,-44],[14,-45],[22,-19],[71,-40],[40,-48],[21,-8],[20,18],[13,44],[-31,48],[-38,20],[-15,30],[5,28],[76,-13],[36,-54],[53,-51],[13,-43],[4,-47],[35,-22],[59,27]],[[141916,119289],[37,-13],[16,-47],[-28,-156],[-34,-96],[-50,-12],[-14,-20],[1,-57],[12,-26],[30,-20],[36,-3],[19,-27],[-14,-55],[-69,18],[-20,-10],[-25,-36],[-4,-49],[49,-69],[1,-39],[15,-13],[-60,-87],[-8,-63],[-18,-50],[-21,-24],[-46,-11],[-21,11],[-39,56],[-34,70],[-25,20],[-53,-17],[-19,-36],[-8,-60],[-19,-52],[-6,-43],[-29,-101]],[[141468,118172],[-32,-56],[-25,-30],[-37,-8],[-27,41],[13,49]],[[141360,118168],[30,69],[-2,46],[-19,51],[-80,29],[-42,-17],[-21,-38],[16,-77],[34,-62]],[[141276,118169],[29,-44],[-10,-63],[-26,-29],[2,-44],[44,-81],[7,-26],[-14,-58],[-21,-22],[-45,-3],[-33,11],[-46,-5],[-15,-40],[13,-32],[53,-48],[66,-36],[3,-47],[-18,-12],[-29,7],[-36,-25],[-38,-1],[-63,27],[-42,-6],[-27,10],[-16,-37],[20,-27],[135,-124],[23,-49],[-1,-47],[-14,-24],[-42,-29],[-60,-26],[-21,-30],[-11,-112],[-31,-77],[-42,-1]],[[140970,117019],[-610,-6],[-405,-5],[41,69],[5,37],[24,38],[0,22],[23,18],[-3,27],[31,24],[13,40],[41,13],[49,44],[0,44],[23,60],[26,6],[26,44],[42,23],[30,27],[26,9],[17,78],[49,16],[30,70],[-28,45],[11,29],[-1,36],[15,20],[5,59],[-24,35],[-77,28],[-26,34],[15,23],[-14,91],[-25,10],[11,42],[-145,0],[-424,2],[-387,0],[-298,0],[-337,-3],[-409,0],[-185,4],[-317,1],[-439,-3],[-147,2],[-413,-4],[-135,3],[-108,0]],[[136566,118171],[-383,-2]],[[136183,118169],[12,713],[-228,7],[8,408],[2,197],[124,-5]],[[131105,129753],[453,-2],[421,0],[631,-3],[536,-1],[0,226],[-69,0],[1,366],[-2,236],[229,2],[478,-1],[475,1],[601,0],[417,0]],[[135276,130577],[-1,-607],[32,1],[0,-582],[1,-437],[-210,0],[-517,3],[-174,-12],[-180,0],[-1,-367],[-1,-400],[0,-581]],[[134225,127595],[-421,-5],[-325,-2],[-166,0],[-319,6],[-307,5],[-405,9],[-377,5],[-437,8]],[[131468,127621],[20,18],[3,38],[-29,32],[-10,56],[-21,28],[-53,18],[-31,24],[-16,57],[-48,36],[-9,33],[12,43],[70,60],[2,32],[-13,31],[11,73],[-17,67],[56,46],[-3,43],[-35,43],[-6,43],[16,55],[-3,40],[-50,38],[-9,27],[15,37],[-2,31],[-32,36],[-1,22],[31,60],[-8,74],[-17,35],[-7,41],[14,28],[48,6],[-6,33],[-32,11],[-67,-9],[-21,15]],[[131220,129022],[-4,48],[18,28],[5,36],[-16,44],[9,33],[-20,20],[1,40],[34,6],[-10,-50],[15,-12],[40,24],[5,54],[-18,23],[-62,8],[-42,37],[-8,28],[32,22],[12,25],[-14,48]],[[131197,129484],[13,57],[-4,39],[19,47],[-26,30],[-50,-4],[-25,17],[-31,3],[-21,46],[33,34]],[[139074,124879],[45,2],[249,-4],[215,-6],[-5,65],[10,77],[29,69],[18,80],[480,-4],[143,0],[387,5],[345,2],[294,4],[-2,202],[-87,1],[-2,194],[-19,5],[-40,-16],[-23,26],[-1,92],[-51,-1],[-1,80],[-15,32],[-31,-8],[1,50],[21,31],[75,49],[25,6],[21,-17],[3,-51],[28,-13],[0,-54],[84,-3],[17,-36],[-1,-49],[169,1],[44,-18],[21,27],[34,4],[7,35],[46,-17],[45,35],[6,26],[62,46],[17,38],[20,-30],[25,0],[0,240],[117,2],[-4,479],[-3,203],[-7,634],[170,2],[53,34],[-1,34],[-27,0],[2,36],[16,16],[48,-2],[10,-174],[-1,-45],[-15,-18],[2,-218],[14,-1],[7,-68],[88,0],[1,-69],[169,1],[522,-4],[32,2]],[[142975,126920],[-5,-135],[1,-188],[278,0],[-23,26],[8,41],[149,0],[1,-59],[22,-8],[97,0],[3,-404],[-180,-2],[-148,2],[0,-37],[-28,0],[0,-167],[-178,0],[0,-202],[-467,0],[1,-120],[-86,1],[3,-202],[-173,-1],[-165,3],[2,-303],[-4,-203],[2,-206],[-180,6],[-1,-303],[-174,0],[1,-506],[-11,1],[1,-190],[-362,-3],[-185,7],[-230,-3],[-280,4],[-1,-403],[-45,0],[0,-64],[16,-17],[-9,-52],[-19,-27],[-50,-21],[-21,15],[-45,-2]],[[140490,123198],[0,194],[-3,313],[31,0],[-1,73],[-184,1],[-76,22],[3,-26],[-30,0],[3,-33],[-13,-25]],[[140220,123717],[-21,24],[-43,28],[-53,11],[-41,0],[-131,81],[-91,20],[-34,-21],[-15,-31],[-8,-45],[-32,-53],[-15,-9],[-47,-58],[-49,-13],[-72,44],[-20,38],[-42,52],[-1,22],[-20,66],[-5,68],[-51,123],[-1,24],[48,76],[-9,69],[-20,36],[-14,45],[-1,41],[-19,119]],[[139413,124474],[-8,62],[-39,33],[-66,102],[-37,26],[-48,57],[-77,55],[-16,26],[-23,8],[-25,36]],[[141493,132051],[218,-6],[302,-4],[124,-1]],[[142137,132040],[340,-9],[109,4]],[[142586,132035],[3,-225],[0,-562],[184,0],[0,-201],[-21,0],[1,-112],[-98,-2],[-41,16],[-40,5],[0,-350],[-1,-362],[5,-203],[174,2],[9,-403],[181,2],[449,13]],[[143391,129653],[92,2],[2,-96]],[[143485,129559],[3,-104],[183,5]],[[143671,129460],[4,-203],[7,-201],[-366,-9],[5,-202],[-18,0],[8,-277],[447,15],[126,6],[446,11],[116,5]],[[144446,128605],[1,-403],[-1,-364],[0,-434]],[[144446,127404],[-198,-7],[-175,0],[-182,-4],[-179,-2],[-18,7],[-180,-1],[0,67],[-212,-3],[0,33],[-60,0],[0,-34],[-60,0],[0,34],[-28,0],[0,-304],[-178,0]],[[142976,127190],[1,201],[-1,305],[-181,-2],[-1,125],[-11,0],[-3,201],[-544,-10],[-3,404],[-183,-5],[0,414],[-103,-1],[-387,-2],[26,18],[14,29],[6,56],[-487,1],[0,-17],[-152,0],[-29,15],[-181,3]],[[140757,128925],[1,198],[16,1],[2,182],[-1,473],[-8,152],[363,2],[-1,201],[1,203],[4,394],[-89,1],[-1,17],[3,204],[-6,401],[92,3],[246,0],[474,9],[0,-125],[127,1],[9,51],[6,83],[27,9],[25,-8],[60,2],[12,66],[-68,-2],[-6,26],[-27,14],[0,44],[16,9],[-30,46],[-16,44],[-82,-2],[0,19],[-55,0],[-12,25],[-147,-4],[-10,-76],[-15,-9],[-46,9],[-62,-1],[-15,20],[-46,-3],[0,157],[-5,290]],[[143629,131450],[64,-1],[0,-200]],[[143693,131249],[-30,0],[-1,-120],[-31,-68],[-32,-10],[-91,-3],[0,65],[-53,-12],[0,14],[-99,0],[-31,-8],[0,142],[-31,0],[0,-33],[-30,-17],[-25,-44],[32,-41],[5,-67],[-74,1],[-11,-44],[5,-51],[-28,15],[3,-59],[46,-21],[30,33],[38,7],[1,-67],[15,1],[57,61],[51,-16],[1,-42],[31,-49],[-4,-57],[42,-5],[0,-38],[27,-16],[35,1],[-2,-49],[61,-2],[1,20],[87,3],[-1,-56],[-42,-15],[-12,-68],[25,18],[58,2],[36,-7]],[[143752,130547],[15,-9],[7,-65],[41,-59],[29,10]],[[143844,130424],[1,-52]],[[143845,130372],[-126,-72],[-39,18],[-32,102],[-59,7],[-32,-8],[-19,-79],[-42,-24],[-12,36],[-24,24],[-3,22],[-62,-3],[-18,27],[1,38]],[[143378,130460],[57,9],[4,32],[-16,61],[-54,24],[1,38],[-83,-2],[0,38],[-39,4],[-9,40],[-68,-2],[-62,30],[-2,314],[-43,2],[16,34],[0,167],[62,1],[-1,200],[185,2],[303,-2]],[[143485,129559],[61,32],[121,4],[-2,100],[46,2],[13,34],[27,0],[13,35],[29,33],[-3,67]],[[143790,129866],[206,6],[-8,82],[-48,1],[-9,42],[7,54],[30,39],[53,12],[-1,53],[91,7],[33,-16],[50,1],[13,84],[-52,-18],[-19,17],[1,118],[23,17]],[[144160,130365],[33,9],[13,-25],[39,1],[9,30],[28,27],[23,3],[15,47],[31,0]],[[144351,130457],[9,-25]],[[144360,130432],[-9,-17],[1,-80],[16,1],[5,-68],[-19,-34],[-86,-2],[2,-67],[16,-42],[-17,-20],[-36,-16],[2,-30],[-24,-45],[-38,-23],[-11,-53],[-28,1],[-29,-34],[13,-34],[-45,0],[-12,-26],[0,-41],[-31,0],[5,-135],[2,-200],[-366,-7]],[[145086,118071],[90,-79],[-22,-26],[-37,-17],[34,-22],[16,-41],[25,-5],[40,-65],[-10,-55],[4,-30],[23,-3],[18,-27],[24,12],[25,-22],[-13,-30],[30,-26],[25,36],[42,112],[23,83],[-11,38],[30,14],[50,-45],[13,0],[47,-43],[46,20],[21,69],[27,11],[25,24],[24,-44],[20,-101],[39,-48],[33,-13],[10,-35],[42,-28],[5,-77],[46,-25],[24,2],[30,-117],[7,-48],[24,-66],[43,-17],[-4,-60],[24,-26]],[[146038,117251],[-3,-39],[-15,-23],[-21,8],[-9,-25],[-28,-11],[5,-51],[-28,-30],[-21,-8],[-14,-27],[-18,-4],[-5,-42],[13,-15],[-18,-40]],[[145876,116944],[-47,19],[-53,30],[-49,44],[-30,4],[-71,54],[-21,8],[-218,37],[-136,-126],[-39,-21],[-22,130],[-49,-4],[-153,14],[-19,-138],[-15,-71],[-111,12],[-160,28],[-250,38],[-29,54],[12,70],[-6,31],[8,79],[-12,100],[-23,93],[57,126],[10,44],[16,193],[312,-45],[46,15],[9,76],[27,-1],[22,55],[55,42],[14,31],[42,-7],[-1,40],[13,9],[32,-26],[2,66],[47,24]],[[144446,128605],[0,360]],[[144446,128965],[133,17],[44,-26],[32,1],[21,23],[88,31],[61,67],[94,48],[53,68],[96,48],[15,1],[98,-39],[77,-66],[67,-49],[47,23],[13,16]],[[145385,129128],[0,-419],[-1,-331],[449,-1],[234,-5],[518,-1],[1,-114],[-1,-254],[4,-17],[-1,-158],[2,-259],[239,4]],[[146829,127573],[1,-184],[-29,12],[-90,20],[-1,-150],[45,1],[0,-67],[-287,-5],[1,-514],[-180,-5],[1,-321],[30,1],[0,-32],[30,1],[0,-135],[-60,-1],[1,-102],[45,0],[2,-133],[-3,-101]],[[146335,125858],[1,-441]],[[146336,125417],[-15,0],[0,-168],[-204,-5],[-2,-132],[-171,-3],[0,35],[-45,1],[0,-52],[8,-51],[37,-16],[56,2],[0,-55],[-145,3]],[[145855,124976],[0,67],[-205,0],[-35,3],[-363,5],[5,588],[3,321],[-129,1],[1,198],[-156,1],[-363,-2],[-31,20],[20,49],[-9,28],[-3,74],[28,75],[15,110],[2,49],[-132,0],[0,48],[-65,0]],[[144438,126611],[3,309],[5,484]],[[145212,131858],[261,-4],[393,5],[553,4],[26,82],[16,84],[4,61],[16,118],[13,52],[-5,104],[18,54],[15,76],[3,76],[-4,98]],[[146521,132668],[114,2],[16,-24],[9,-59],[102,-3],[-1,28],[-24,43],[-33,0],[-37,-18],[-16,33],[262,1],[125,-3],[155,2]],[[147193,132670],[373,0],[1,-201],[3,-209],[0,-392],[384,-5],[4,-394],[5,-410]],[[147963,131059],[2,-386],[0,-335]],[[147965,130338],[-579,-2]],[[147386,130336],[-334,0],[-372,4],[-278,-1],[-250,-2],[-312,1]],[[145840,130338],[-368,1],[-93,2],[-301,-2],[-130,1]],[[144948,130340],[93,553],[37,225],[90,502],[44,238]],[[150179,136695],[4,-201],[2,-225],[-2,-377],[-444,0],[-1,-114],[1,-463],[-2,-199],[0,-428],[-1,-167],[186,-3],[-2,-100],[213,-4],[-1,-50],[-30,1],[0,-50],[-125,2],[-2,-68],[-21,-33],[-27,1],[-1,-61],[52,-40],[30,-3],[23,-25],[-29,-24],[-49,-22],[-35,-5],[1,-120],[187,1],[185,-2],[-3,198],[188,0],[0,-153],[5,-1],[-1,-242],[-372,-3],[5,-218],[1,-188],[-3,-219],[4,-189],[8,-202]],[[150123,132699],[-232,-7],[-267,-4],[-196,-1],[0,-13],[-189,-1],[-188,1]],[[149051,132674],[-369,1]],[[148682,132675],[-1,389],[1,417],[-375,3],[-186,-2],[1,202],[-63,-1],[-1,-100],[-78,-1],[8,75],[36,-7],[27,9],[0,24],[-117,0],[-1,203],[-394,0]],[[147539,133886],[0,369],[0,586],[1,484],[-4,575],[-404,-2]],[[147132,135898],[1,501],[4,306],[411,-2],[367,0],[461,-5],[473,3],[410,-2],[151,-8],[134,0],[635,4]],[[149332,113288],[0,-15],[263,1],[-2,-333]],[[149593,112941],[0,-118]],[[149593,112823],[-109,0],[-38,-21],[-13,-34],[-2,-88],[-79,-37],[-10,2],[-1,-83],[-241,7],[18,-30],[15,-55],[9,-85],[9,-48],[55,-94],[11,24],[57,-31],[-9,-47],[-19,-14],[29,-50],[58,53],[30,6],[28,-8],[3,-35],[58,-14],[0,-78]],[[149452,112063],[-36,-32],[-18,23],[-63,-39],[-2,-27],[-32,6],[-43,-4],[-14,-20]],[[149244,111970],[-55,62],[4,25],[-9,34],[11,12],[-20,63],[-53,19],[-5,-68],[-31,1],[-37,15],[0,41],[-65,-20],[-30,12],[-94,4]],[[148860,112170],[1,101],[-25,1],[2,311],[-487,1],[4,303],[33,-1],[1,310],[28,-1],[-1,106],[56,12],[0,-31],[26,-1],[2,34],[89,-6],[93,4],[162,-3],[1,38],[238,-2],[0,-71],[221,-2],[28,15]],[[147963,131059],[367,3],[369,-1],[184,-5],[-3,205],[-9,203],[-2,201],[0,203],[-443,1],[-113,-1],[-5,302],[-2,304],[3,202],[373,-1]],[[149051,132674],[1,-434],[3,-371],[371,0],[0,6],[275,1],[234,-2],[153,0],[286,12],[31,-2],[124,6]],[[150529,131890],[177,10],[7,-199]],[[150713,131701],[-370,-17],[-90,-3],[2,-98],[-45,1],[14,-44],[31,1],[1,-59],[92,4],[4,-157],[30,9],[7,-51],[333,9],[4,-205],[187,5],[0,14],[198,1],[29,-42],[30,-5],[13,-29],[32,-16],[18,-22],[53,-38],[63,-1]],[[151349,130958],[50,-159]],[[151399,130799],[-20,-19],[-197,-215],[-87,-99],[-110,-117],[-64,-71],[-268,-11]],[[150653,130267],[-370,-17],[-311,-12],[-274,-13],[-447,-17],[-424,-13],[-96,-5]],[[148731,130190],[0,149],[-276,-2],[-490,1]],[[150556,125743],[-6,-130],[300,-27],[328,-22],[-22,-415],[-82,42],[-12,30],[-81,-51],[-16,-20],[-41,-8],[-47,2],[-17,13],[-27,-14],[1,39],[-58,-19],[-5,61],[-67,7],[-17,-27],[-34,12],[-430,38],[-186,18]],[[150037,125272],[-486,46],[-126,1]],[[149425,125319],[-179,3],[-3,262],[-7,495],[266,7],[250,4],[-15,-25],[16,-61],[167,-14],[-4,-68],[179,-16],[-2,-34],[179,-14],[-3,-57],[140,-21],[3,-18],[145,-12],[-1,-7]],[[151184,132327],[62,2],[5,-144],[-30,3],[-3,86],[-61,-2],[2,-86],[38,-1],[-8,-49],[26,-14],[224,8],[-5,135]],[[151434,132265],[62,2],[4,-101],[30,2],[-3,101],[23,1],[30,-28],[9,37],[30,25],[-1,41],[184,6],[-9,-92],[-5,-115],[16,0]],[[151804,132144],[-22,-51],[-5,-53],[17,-77],[-4,-26]],[[151790,131937],[-161,-3],[-154,-6],[-138,-3],[-6,66],[-43,-1],[-1,33],[-30,0],[-2,67],[-61,-2],[0,-15],[-122,-7],[-8,257],[21,1],[27,-22],[72,25]],[[152215,122525],[-8,26],[9,67]],[[152216,122618],[35,-38],[53,-2],[80,32],[88,29],[41,20],[24,-12],[77,16],[27,19],[14,37],[18,78],[1,56],[11,35],[4,86],[34,46],[38,7],[41,-17],[44,5],[20,15],[14,59],[-30,127],[13,66],[-8,56],[-19,60],[-26,22],[-8,43],[16,33],[35,34],[40,17],[31,43],[8,57],[-10,41],[3,32],[22,23],[25,52],[7,35],[30,68],[60,44],[22,69],[50,13],[30,-41],[10,-41],[46,4],[29,-19],[51,-116],[1,-28],[-42,-56],[-2,-18],[31,-35]],[[153295,123674],[9,-35],[176,-301],[-35,-42],[64,-79],[-288,-54],[-172,-114],[23,-473],[11,-153],[-10,-105],[53,-47],[38,-6],[120,131],[47,-25],[63,-4],[24,22],[19,-13],[19,-54],[6,-68],[-17,-48],[9,-22],[-16,-35],[-25,-21],[14,-22],[62,32],[2,38],[31,-7],[15,-22],[0,-30],[28,-16],[20,17],[-2,37],[43,16],[18,-24],[43,13],[25,-7],[-8,-36],[0,-46],[23,-19],[49,-8],[6,-27],[47,-57],[38,2],[-2,-40],[32,-4],[14,-19],[-26,-32],[8,-49],[37,-35],[19,16],[24,-17],[29,-76],[-11,-43],[20,-37],[3,-32],[25,-25],[34,13],[53,-10],[12,75],[66,384],[26,29],[131,193],[365,251],[140,98],[148,148],[-13,36],[-62,14],[-26,16],[151,117],[67,-71],[19,17],[84,-3],[42,-15],[224,275],[81,216],[20,-28],[28,9],[116,-1],[30,-23],[5,-45],[41,-38],[39,24],[151,-392],[-97,-317],[203,198],[138,-34],[262,212],[10,75],[23,60],[-7,47],[26,19],[-6,23],[18,18],[38,110],[-7,16],[43,69],[33,-15],[11,-32],[18,-17],[-5,-75],[34,13],[25,-13],[7,-32],[27,-4],[2,41],[33,17],[22,-20],[27,-4],[-14,-41],[26,-9],[-23,-49],[23,-31],[-12,-34],[-26,-12],[-9,-26]],[[156854,123011],[-22,-49],[-16,-96],[15,-34],[-26,-8],[-23,-38],[-8,-46],[17,-36],[-1,-63],[-27,-37],[-39,-96],[7,-27],[-25,-21],[-33,8],[-14,-49],[-38,-28],[-20,-43],[22,-34],[11,-50],[-51,-47],[-40,-18],[-6,-16],[-74,-93],[-37,-31],[9,-29],[-22,-64],[-26,-18],[10,-47],[20,-10],[-43,-60],[-9,-39],[-33,-85],[-45,-85],[-74,-90]],[[156213,121532],[-21,-15],[-112,-142],[-34,-21],[-70,-137],[-19,-14],[-17,-40],[21,-24],[-51,-32],[-23,-69],[17,-20],[-9,-21],[-60,-67],[26,-80],[19,-25],[42,-18],[31,-25],[-30,-48],[-30,-26],[-109,-73],[25,-41],[-28,-23],[33,-21],[28,21],[14,-7],[-27,-58],[-100,-66],[-98,-69],[-28,-27],[-51,-35],[-30,28],[3,52],[-29,55],[-64,-18],[-62,-52],[-65,-44],[-21,-23],[-94,-64],[-60,-34],[-42,-17],[-22,51],[-35,21],[-49,51],[-35,9],[-5,-42],[-32,-64],[53,-85],[-31,-20],[-45,-50],[-84,-50],[-36,-9],[-21,23],[-77,-25],[-107,-23],[-99,-41],[-92,-64],[-149,149],[-66,88],[-28,-46],[-23,-3],[-35,-100],[-33,2],[-36,-20],[-37,-34],[-30,6],[-6,-42],[-62,-35],[-23,-31],[-185,-11],[-9,22],[-50,41],[-11,26],[-28,-6],[-9,60],[-68,48],[-58,-12],[-43,20],[-2,43],[-31,49],[-36,11],[-49,66],[-12,51],[11,25],[1,48],[-15,13],[-13,46],[-35,15],[-13,25],[-25,8],[-7,37],[30,18],[59,65],[-12,33],[-32,26]],[[153201,120575],[-3,20],[-56,-28],[-38,7],[-23,22],[-19,-24],[-30,44],[-66,8],[-21,-17],[-17,44],[27,13],[-12,39],[-38,-3],[-1,39],[-19,-1],[-20,43],[-52,-4],[-18,63],[-24,20],[-27,-10],[-38,43],[-20,-9],[-2,67],[-18,17],[-18,60],[-23,20],[20,31],[-20,26],[-11,43],[-56,37],[-56,97],[-13,96],[-28,34],[-47,32],[-11,-7],[-43,51],[43,51],[-16,21],[25,21],[4,28],[-29,-1],[-6,32],[-48,8],[-10,55],[-19,23],[-18,74],[-54,51],[-3,39],[-34,33],[-19,-1],[-5,30],[-20,8],[-15,68],[11,11],[41,0],[19,59],[1,48],[-22,39],[14,31],[28,-5],[18,44],[-13,78],[17,35],[-8,35],[-33,40],[6,82]],[[154183,99797],[35,0],[12,51],[40,1],[5,50],[25,6],[41,-6],[32,-16],[0,-50],[46,-8],[64,0],[8,-9]],[[154491,99816],[28,-30],[-7,-84],[4,-33],[-31,-6],[6,-53],[-19,-48],[104,0],[1,-239],[365,-2],[2,-233],[-2,-374],[-10,-1],[-1,-236],[2,-370],[-20,0],[2,-205],[10,0],[1,-212]],[[154926,97690],[-303,0],[-106,12],[3,28],[-21,24],[-13,112],[-26,18],[6,38],[-21,22],[5,29],[-23,48],[-39,100],[-24,32],[-33,15],[-16,-4],[-57,29],[-28,96],[10,48],[-52,25],[8,39],[-21,33],[-49,45],[-3,33],[-15,16],[-44,-6],[-9,34],[-24,40],[-27,18],[-33,0],[0,-34],[-53,-1],[-44,34],[-85,-1],[0,-17],[-78,-1]],[[153711,98594],[0,60],[39,8],[-5,25],[-21,12],[-6,48],[-46,30],[-1,55],[35,-17],[12,21],[-10,25],[-3,58],[13,31],[0,66],[36,0],[16,19],[0,57],[-11,25],[-68,0],[0,203],[266,0],[1,82],[32,23],[44,-31],[2,52],[10,36],[29,33],[55,33],[43,-2],[19,14],[13,35],[1,34],[31,0],[-6,77],[-26,24],[-1,32],[-19,0],[-2,35]],[[156171,119703],[60,12],[22,20],[35,-5],[10,-47],[19,-20],[46,-13],[26,29],[48,33],[5,31],[30,20],[-3,29],[35,39],[30,-4],[16,36],[-7,40],[-18,45],[16,27],[-4,38],[16,17],[-6,35],[52,41],[52,53],[48,-16],[40,3],[9,17],[34,16],[-15,36],[8,36],[51,11],[5,33],[46,76],[37,-21],[28,-64],[33,-3],[10,-43],[57,-21],[36,20],[31,7],[25,-18],[85,35],[39,38],[36,-8],[54,-84],[28,-13],[-14,-36],[-43,-42],[-20,5],[-45,-30],[5,-44],[-13,-40],[45,-22],[6,-48],[22,-35],[37,-22],[66,160],[49,111],[67,-52],[18,22],[44,-1],[24,35],[43,43],[27,-13],[46,54],[40,-9],[-5,76],[28,-16],[9,20],[37,14],[8,31],[24,15],[53,60],[31,12],[15,40],[16,-3],[45,36],[-5,42],[27,2],[22,29],[-26,12],[-25,-7],[-77,208],[-16,35],[-13,58],[-25,13],[-5,30],[-45,22],[-25,-6],[-42,22],[-16,19],[2,60],[-13,81],[-24,16],[-43,2],[-34,58],[-44,-12],[19,54],[-7,15],[24,48],[-12,15],[-1,47],[96,57],[35,6],[26,-8],[12,-44],[42,3],[20,-25],[38,57],[38,24],[0,22],[24,33],[25,0],[37,26],[12,44],[-19,39],[27,18],[12,53],[13,24],[25,2],[31,44],[66,44],[27,37],[0,54],[-14,47],[20,32],[13,79],[22,43],[13,48],[60,74],[39,19],[15,-15],[21,23],[-7,43],[20,39],[76,32],[23,40],[58,27],[-5,29],[18,37],[26,7],[16,56],[13,3],[30,50],[26,75],[16,17],[32,91],[-1,41],[36,52],[9,29],[52,33],[-3,62],[36,59],[54,40],[16,48],[-7,18],[8,52],[-8,38],[-18,10],[20,81],[24,3],[12,28],[31,26],[37,-12],[90,54],[18,29],[10,60],[40,82],[36,19],[-1,16],[30,25],[26,-2],[52,27],[-20,52],[20,43],[32,14],[57,97]],[[159443,123910],[24,37],[44,41],[484,-165],[-14,-50],[-26,-64],[-20,-13],[-19,-102],[-16,-26],[55,-125]],[[159955,123443],[37,-74],[43,-107],[-25,14],[-32,-6],[-4,-56],[-15,-53],[5,-47],[-72,-74],[19,-16],[19,-38],[-32,-18],[8,-30],[-13,-29],[-46,54],[-14,40],[8,31],[-29,-2],[-47,47],[-1,-136],[42,-47],[-22,-20],[-5,-34],[-34,27]],[[159745,122869],[-38,20],[-41,78],[-21,29],[23,32],[2,36],[-20,58],[4,21],[-16,33],[-35,17],[15,26],[-19,34],[-46,-1],[-244,-229],[-123,-169],[-36,1],[-37,33],[-27,-13],[146,-194],[32,-33],[-7,-20],[43,-49],[-1,-43],[-23,-10],[-11,-34],[17,-54],[26,-12],[-6,-80],[-28,-36],[-66,-17],[-15,-28],[-45,-55],[-39,-7],[-5,-27],[-47,8],[-25,36],[-3,33],[-30,18],[-76,-114],[-54,-87],[39,-15],[150,-76],[66,-28],[-73,-160],[-83,-133],[48,-35],[73,-30],[39,-48],[49,-17],[34,-23],[141,-81],[-98,-223],[-42,-89],[-12,-51],[37,-22],[31,-38],[39,-36],[2,-23],[-31,-40],[4,-18],[38,-9],[18,-24]],[[159338,120851],[-12,-8],[-12,-60],[-71,-401],[-12,11],[-50,-39],[-20,5],[-6,-44],[-21,1],[-5,-37],[-25,-51],[-30,-33],[7,-13],[6,-167],[-11,-234],[-2,-173],[17,-18],[7,-51],[34,-26],[47,-18],[3,-40],[16,-16],[57,-25],[24,-31],[14,6],[50,-33],[37,14],[78,13],[-2,-16],[48,-66],[77,-8],[55,18],[51,-2],[13,12],[50,-29],[26,2],[45,-22],[6,-30],[27,-10],[26,-32],[52,-86],[29,-5],[29,-22],[3,-419],[-175,-389]],[[159818,118279],[-188,-1],[-404,-3],[-168,2],[-326,-5]],[[158732,118272],[-86,-3],[-245,3],[-172,-1],[-463,0],[-283,-2],[-494,0],[-517,4]],[[156472,118273],[40,23],[0,75],[54,51],[17,3],[-16,43],[8,71],[-28,34],[10,73],[-45,20],[29,60],[26,-14],[19,-41],[35,-4],[28,36],[15,-1],[14,50],[5,47],[18,-9],[13,50],[-17,15],[-24,-5],[-42,17],[-18,-17],[-312,89],[-19,-95],[-21,-21],[-16,13],[-18,41],[-40,45],[9,41],[-27,19],[-28,-6],[-211,59],[58,68],[11,47],[25,65],[47,-1],[16,32],[-10,35],[14,63],[28,5],[6,88],[-17,22],[23,42],[-22,75],[0,56],[22,16],[2,25],[38,30]],[[160288,125621],[15,0]],[[160303,125621],[382,-1]],[[160685,125620],[-14,-23],[12,-31],[-38,-3],[12,-39],[-14,-19],[-29,-11],[-15,-54],[-32,-26],[-28,0],[15,-43],[76,-23],[5,-16],[52,-48],[29,4],[14,40],[45,11],[-24,36],[58,29],[66,-66],[39,-10],[21,21],[20,78],[11,24],[50,-21],[68,49],[11,-13],[-25,-47],[45,-73],[13,-9],[-17,-64],[-18,-41],[-69,-92],[5,-45],[-9,-28],[49,-27],[44,-53],[24,6],[67,-19]],[[161204,124974],[-12,-14],[21,-39],[-15,-82],[17,-75],[-40,11],[-17,-8],[-26,15],[-46,1],[-12,14],[-44,-21],[-39,-9],[-36,21],[-90,21],[-38,-11],[-40,-36],[-24,13],[-31,-37],[26,-58],[48,-49],[9,-35]],[[160815,124596],[-28,-18],[12,-32],[42,-21],[41,-37],[10,-19],[-20,-47],[-20,-85],[58,-101],[27,-18],[50,19],[37,-36],[45,-17],[13,-23],[-21,-23],[5,-21],[-47,-90],[23,-34],[25,-3]],[[161067,123990],[-27,-52],[8,-31],[-25,-31]],[[161023,123876],[-61,70],[-124,-142]],[[160838,123804],[-40,66],[-32,11],[-51,-2],[-41,12],[-33,24],[-17,45],[14,30],[-4,28]],[[160634,124018],[14,19],[34,-24],[45,-44],[46,-32],[31,87],[-21,62],[-36,9],[-13,31],[-45,36],[28,9],[22,61],[38,-30],[44,-1],[34,-51],[6,-35],[39,26],[0,67],[-55,30],[-12,29],[-33,25],[37,41],[13,48],[-63,63],[-27,-6],[-15,56],[-53,47],[15,16],[-77,23],[6,24],[-58,17],[-1,27],[36,25],[-53,86],[-113,22],[-40,47],[26,38],[36,33],[40,20],[4,33],[-56,8],[-3,34],[-25,31],[-22,8],[-7,46],[-53,-25],[9,-29],[-16,-20],[-21,27],[-19,-14],[7,-49],[-25,-46],[14,-32],[34,-10],[6,-15],[-11,-51],[-30,-23],[-23,-50],[-60,57],[6,35],[-41,-16],[-34,2],[-24,-29],[-126,16],[25,79],[5,84],[33,71],[-9,29],[12,22],[-14,20],[13,60],[27,34],[6,54],[11,17],[26,112],[62,27],[60,104],[-16,29],[20,16],[34,56]],[[160695,123797],[40,-4],[29,30],[14,-21],[24,9],[36,-7]],[[160838,123804],[42,-66],[40,-15],[13,-43],[33,-31],[10,-40],[-9,-48],[-2,-87]],[[160965,123474],[-5,-104]],[[160960,123370],[-2,-65],[-15,-20],[-45,-5],[-65,-52],[-15,-26],[-6,-62],[10,-29],[-97,-36],[-19,-2],[-35,-29]],[[160671,123044],[-5,42],[12,61],[-39,51],[20,13],[15,63],[10,17],[-14,94],[31,13],[1,79],[33,16],[-15,27],[-24,0],[20,44],[30,13],[33,1],[26,20],[-2,27],[-23,35],[-29,-6],[-8,-27],[-39,-10],[-24,28],[-1,43],[8,24],[-1,62],[9,23]],[[164267,127058],[16,-5],[120,17],[-21,72],[107,16],[-11,74],[95,17],[41,-113],[75,21],[33,15],[49,-15],[-23,57],[37,81],[59,54],[-1,37],[-16,47],[16,26],[-34,27],[-10,36],[6,22],[47,-1],[7,-20],[38,29],[10,56],[35,4],[49,19],[14,17],[57,31],[33,42],[16,52],[43,39],[29,-65],[37,-35],[-4,-25],[-30,-23]],[[165186,127664],[-152,-19],[-6,-32],[-34,-8],[-27,-35],[-33,-18],[10,-34],[28,-26],[20,-39],[24,-8],[11,-41],[-46,-39],[19,-16],[27,24],[92,5],[22,17],[13,-21],[6,-52],[29,-40],[2,-33],[49,35],[29,45],[46,-32],[-15,-47],[6,-44],[-30,-8],[-6,-44],[23,-23],[-57,-66]],[[165236,127065],[-80,-94],[-25,-36],[-4,-22],[-230,-144],[4,36],[-62,79],[-30,-46],[-25,11],[-55,-21],[-23,58],[-27,9],[-51,-16],[-10,-35],[-15,-6],[-16,-35],[17,-24],[-11,-47],[-27,-5],[2,-34]],[[164568,126693],[-30,71],[-39,35],[-74,48],[-41,104],[-29,35],[-34,15],[-54,57]],[[166787,137856],[437,12],[153,-5],[193,6],[230,-2],[173,-6],[53,-11],[118,1],[240,-9],[91,-1],[174,4],[91,-1],[245,6],[51,-1],[183,7],[167,1],[302,5]],[[169688,137862],[-46,-33],[-17,-33],[41,-61],[-1,-62],[31,-55],[-23,-41],[-56,-56],[-15,-38],[7,-29],[-40,-51],[13,-18],[-16,-50],[-22,-7],[-32,-54],[-28,-14],[7,-57],[21,-22],[29,-51],[-4,-42],[19,-51],[36,-22],[13,-39],[1,-50],[26,-53],[-21,-39],[-29,-15],[-37,6],[-9,-24],[41,-38],[-32,-46],[24,-32],[-34,-41],[-31,-4],[-10,-23],[-44,-33],[-11,-42],[-26,-32],[-61,-45],[-33,1],[-10,-18],[-39,10],[-40,-14],[-35,-42],[2,-55],[-66,-41],[-28,-9],[-54,27],[-35,-25],[-82,0],[-9,-15],[-51,-25],[-21,-39],[-42,-39],[-1,-70],[19,-41],[-8,-47],[-21,-67],[35,-71],[11,-77],[-26,-11],[-3,-23],[40,-28],[-4,-37],[-52,-78],[-30,-65],[-33,-17],[3,-21],[-21,-22],[28,-86],[-28,-23],[-7,-67],[-46,-38],[-15,-33],[-20,-18],[9,-25],[-26,-11],[-6,-22],[9,-46],[-10,-29],[9,-28],[-36,-63],[0,-28],[-22,-14],[-20,-38],[-63,-35],[-53,-88],[2,-64],[-16,-30],[-1,-32],[-20,-10],[-11,-48],[10,-35],[-35,-31],[-32,-16],[-19,-38],[4,-53],[-22,-31],[-6,-39],[28,-52],[-18,-45],[-18,-175],[-20,-36],[4,-34],[35,-18],[-30,-52],[23,-46],[-19,-69],[-24,-47],[-18,-9],[-8,-31],[8,-34],[-10,-23],[2,-45],[-17,-20],[9,-33],[-14,-15],[1,-75],[20,-7],[11,-55],[-16,-28],[14,-39],[-52,-68],[10,-31],[4,-51],[23,-20],[-24,-22],[-4,-41],[-19,-24],[-70,-21],[-22,-20],[12,-86],[-11,-46],[-33,-29],[-7,-75],[12,-22],[16,-89],[48,-57],[27,-17],[24,-35],[5,-27],[23,-44]],[[168180,132574],[-92,4]],[[168088,132578],[-460,19],[-377,11],[-341,10]],[[166910,132618],[-18,0],[-23,130],[19,72],[7,255]],[[166895,133075],[7,214],[7,139],[14,379],[15,595],[9,35],[-12,50],[-15,25],[-42,33],[-19,1],[10,46],[-18,29],[-1,32],[-34,4],[-65,-10],[-28,-61],[-1,-50],[-22,-17],[-48,37],[16,91],[-15,26],[31,81],[5,44],[54,85],[1,43],[30,60],[-10,36],[-31,32],[-22,44],[3,30],[26,33],[-15,27],[13,42],[-35,65],[-20,72],[3,78],[-9,32],[10,68],[-6,35],[-44,43],[14,80],[28,78],[-7,43],[20,30],[20,106],[43,39],[31,70],[38,27],[13,57],[-21,82],[1,55],[-17,54],[2,35],[29,38],[30,92],[-6,112],[-11,54],[-22,31],[-35,89],[-22,14],[-29,41],[-10,31],[7,24],[-20,41],[17,91],[14,22],[7,72],[3,111],[48,102],[-3,34],[-70,78],[0,44],[17,23],[20,87],[28,34],[0,105],[-26,53],[19,54]],[[170160,130158],[43,47],[34,-16],[47,1],[18,26],[18,68],[38,12],[6,36],[98,-26],[-4,-79],[142,99],[23,20],[-23,64],[41,8],[-4,46],[7,33],[-39,54],[7,18],[-8,44],[-116,64]],[[170488,130677],[-4,42],[13,30],[22,5],[43,-17],[20,58],[40,21],[11,38],[7,93],[-5,5],[-21,136],[17,4],[-46,71],[-8,45],[-19,28],[87,50],[86,58],[40,1],[56,-27],[40,-46],[62,-6],[7,-21],[41,-62],[92,0],[0,74]],[[171069,131257],[25,-44],[305,-31],[216,-24],[44,29],[32,10],[90,7],[81,-22],[85,-45],[87,-74],[66,-102],[64,-118],[31,-84],[46,-185],[22,-104],[1,-60],[9,-75],[2,-120],[-7,-78],[-18,-65],[-38,-90],[-26,-39],[-22,-132],[-28,-46],[-32,-28],[-51,-22],[-22,-30],[-42,-27],[-70,4],[-47,38],[-19,45],[0,63],[39,59],[34,19],[27,59],[-9,48],[-14,4],[-96,-32],[-34,2],[-75,-35],[-28,-37],[-24,-14],[-42,-9],[-35,7],[-34,22],[-55,-6],[-77,-27],[-45,-65],[-26,-26],[-41,-26],[-67,-16],[22,-45],[8,-39],[41,12],[43,2],[48,-27],[32,-54],[8,-51],[-5,-97],[21,-3],[27,30],[47,23],[33,-4],[55,8],[46,-16],[37,-60],[63,-7],[41,-28],[46,17],[34,2],[-21,39],[-8,37],[6,50],[29,53],[46,27],[62,-3],[30,-17],[50,-58],[27,-50],[75,-162],[24,-62],[4,-44],[-11,-60],[-17,-43],[-33,-37],[-66,-40],[-62,-15],[-95,11],[-58,-4],[-109,34],[-97,55],[-72,32],[-92,78],[-47,-15],[-54,18],[-32,-20],[-49,-8],[-53,34],[-29,43],[-149,2],[-124,-14],[-28,-10],[-13,-33],[-37,-36],[2,-21],[-17,-56],[-37,-45],[-60,-18],[-66,17],[-47,42],[-20,44],[-5,57],[12,40],[25,28],[-44,70],[-9,44],[3,35],[-26,3],[-32,-21],[-50,-11],[-32,5],[-38,25],[-18,22],[-22,62],[10,36],[-31,7],[-55,33]],[[170338,129578],[-52,142],[-2,68],[-14,166],[-14,26],[13,128],[-69,18],[-40,32]],[[170345,138537],[119,32],[6,60],[24,-25],[35,-5],[22,16],[13,-31],[42,-32],[10,-36],[-15,-40],[41,-62],[17,-40],[42,-13],[15,35],[-1,43],[27,37],[-2,37],[27,10],[16,50],[-22,44],[27,60],[-6,27],[-30,52],[50,65],[19,7],[59,-23],[3,-24],[48,-47],[53,9],[44,-40],[41,67],[-6,38],[-36,52],[-48,17],[-16,50],[-41,37],[9,27],[-17,28],[37,39],[23,47],[-7,26],[47,58],[22,44],[41,13],[19,32],[26,11],[12,28],[48,58],[40,-3],[97,93],[42,-6],[61,36],[19,66],[-30,33],[2,33],[-15,44],[30,7],[13,46],[56,51],[17,27],[36,8],[54,37],[48,70],[-14,51],[37,36],[-41,53],[-73,9],[8,37],[32,23],[-26,15],[-17,54],[19,12],[8,31],[24,22],[4,24],[-44,1],[10,52],[28,39],[41,-3],[31,105],[-84,93],[-3,15],[34,47],[16,42],[19,86],[26,55],[40,19],[-4,70],[53,67],[43,2],[32,46],[41,42],[11,25],[60,20],[94,645],[358,527],[211,307],[280,405],[368,528],[29,-13],[47,6],[86,-33],[63,-43],[30,20],[36,-24],[6,-34],[-29,-71],[-1,-142],[13,-101],[-7,-35],[16,-27],[95,-57],[49,-42],[13,10],[33,-27],[24,-33],[75,23],[72,57],[94,26],[58,34],[44,8],[38,-19],[88,25],[22,27],[-7,19],[31,48],[44,-13],[51,32],[68,3],[25,-30],[45,-7],[32,16],[50,-1],[-9,31],[6,89],[27,35],[56,12],[35,-11],[39,11],[24,-18],[48,8],[17,-25],[113,-52],[0,-29],[49,-51],[62,-38],[13,-28],[76,-44],[56,-69],[26,-8],[33,-28],[1,-26],[38,-66],[24,-14],[34,-52],[12,-51],[102,-52],[44,-34],[1,-444],[0,-160],[2,-476],[6,-352],[4,-436],[2,-502],[-1,-228],[6,-22],[42,-38],[-28,-43],[-33,-14],[-22,-24],[-1,-30],[27,-46],[24,-19],[13,-30],[-61,-59],[-11,-83],[5,-27],[20,-11],[18,-45],[-44,-4],[11,-77],[-24,-6],[23,-37],[55,0],[23,-23],[65,31],[32,-72],[27,-44],[47,-41],[10,27],[48,-43],[30,1],[44,-28],[21,7],[46,-23],[32,-3],[13,33],[53,8],[41,-46],[16,-80],[-22,-50],[14,-25],[-2,-38],[-57,17],[-23,-26],[-35,-14],[-1,-28],[22,-26],[20,-99],[74,-79],[9,-39],[-19,-30],[3,-45],[-40,-37],[8,-18],[-22,-55],[-38,-27],[21,-15],[6,-40],[17,-36],[34,-35],[20,-60],[45,-76],[-9,-20],[38,-18],[17,-25],[46,-38],[31,15],[40,38],[-11,30],[18,61],[30,9],[39,-23],[32,-41],[39,18],[19,-13],[49,-8],[73,-115],[29,-87],[115,-280],[38,-58],[45,-42],[-21,-100],[11,-60],[15,-29],[52,-8],[74,-72],[-26,-41],[-63,-25],[-34,-36],[-22,-44],[-52,-32],[-45,-47],[-24,-45],[-53,-57],[-14,-32],[-48,-41],[-21,-30],[-53,-31],[-21,-30],[-56,-43],[-39,-19],[-84,-13],[-26,-41],[-61,-32],[-50,6],[-40,-25],[-41,-10],[-7,-56],[-17,-38],[-59,-75],[-118,-81],[-67,-27],[-42,-5],[-60,26],[-64,-19],[-42,10],[-52,47],[-48,-46],[16,-37],[0,-32],[-23,-58],[-22,-21],[-54,-24],[-63,12],[-43,45],[-27,-36],[-29,-15],[-20,-56],[-30,-28],[-40,-19],[-67,8],[-106,-33],[10,-32],[-2,-56],[-23,-44],[-52,-39],[3,-40],[-11,-110],[-44,-59],[-32,-18],[-62,-3],[-20,-41],[-56,-45],[-90,-19],[-107,18],[-42,-48],[-34,-9]],[[174439,135584],[-23,105],[-25,11],[-41,45],[-12,24],[2,47],[-50,0],[-30,-28],[-41,-8],[-50,16],[-33,-6],[-36,6],[-33,-11],[-32,16],[-22,32],[-14,59],[-21,42],[-80,68],[-69,-24],[-38,26],[-7,-16],[-156,-1],[-22,20],[-23,87],[-23,25],[-124,-10],[-232,253],[-122,-131],[-76,80],[-24,-34],[-152,34],[96,280],[-38,8],[0,34],[-72,19],[34,163],[-271,59],[-8,-68],[-84,-112],[75,-18],[-17,-99],[-22,-70],[-39,-61],[-5,-54],[-235,54],[-98,32],[-120,22],[-1,-58],[-13,-42],[23,-5],[-30,-163],[-21,4],[3,-61],[164,-38],[22,8],[55,-17],[17,-17],[47,-11],[1,-30],[74,9],[47,-18],[3,27],[71,-22],[-3,-13],[-53,-16],[-6,-44],[17,-50],[-18,-70],[-146,34],[-35,-34],[-26,-70],[-5,-36],[-169,39],[-35,-187],[-14,-38],[1,-63],[-25,-21],[27,-35],[-73,-114],[-18,13],[-37,-58],[-128,90],[-5,14],[-181,199],[-77,-119],[-49,38],[-11,-30],[-68,53],[-54,31],[-1,13],[-45,22],[-56,-83],[-31,45],[-13,-20],[-50,58],[-14,50],[16,60],[-5,29],[27,52],[-16,60],[-40,49],[-113,-85],[-5,11],[-193,-143],[-58,42],[-7,-21],[7,-62],[17,-23],[87,-22],[17,-20],[104,-161],[-50,-37],[28,-40],[-44,-50],[4,-43],[-16,-39],[-26,6],[-26,-25],[23,-106],[-25,-21],[-66,4],[-32,-11],[-27,12],[-53,-22],[-23,-25],[-22,5],[-47,-17],[-29,17]],[[170494,135038],[-1,125],[-8,264],[-15,471],[-8,279]],[[170462,136177],[-13,340],[-13,271],[-4,166],[-8,178],[-15,299],[-24,380],[-1,53],[-28,546],[-11,127]],[[510016,64866],[5,36],[35,69],[35,38],[52,18],[30,-6],[47,32],[51,6],[39,47],[23,71],[20,37],[16,116],[38,82],[24,29],[29,19],[47,-4],[32,-20],[34,-37],[37,-65],[43,-8],[22,-14],[27,-39],[12,-39],[0,-61],[-27,-78],[-27,-109],[-22,-41],[-41,-30],[-24,-39],[-29,-23],[-16,-29],[-49,-61],[-48,-52],[-9,-110],[1,-81],[-4,-37],[-26,-73],[-31,-37],[-19,-45],[-48,-47],[-49,-10],[-33,0],[-74,-20],[-24,4],[-31,27],[-24,55],[-1,46],[15,50],[13,22],[-9,57],[-28,40],[-12,73],[13,80],[12,32],[-30,43],[-11,34],[-6,52]],[[512282,70834],[19,66],[26,46],[32,37],[68,9],[49,-27],[21,-25],[21,-53],[4,-67],[-6,-38],[-27,-59],[-71,-65],[-69,-11],[-53,52],[-12,68],[-2,67]],[[511908,73876],[15,36],[43,62],[77,33],[39,-22],[34,-7],[12,-31],[19,-7],[32,-73],[-17,-17],[2,-68],[-6,-35],[-51,-105],[-40,-29],[-29,-13],[-31,8],[-35,29],[-49,74],[-13,41],[-7,105],[5,19]],[[511880,74466],[61,160],[23,36],[44,15],[45,-1],[59,-23],[26,-29],[11,-31],[9,-68],[2,-60],[-10,-74],[-14,-44],[-20,-34],[-46,-36],[-55,-11],[-49,17],[-39,36],[-28,37],[-19,57],[0,53]],[[511808,72442],[11,59],[36,46],[61,42],[36,9],[48,-22],[32,-38],[39,-56],[-1,-118],[-20,-70],[-20,-29],[-32,-25],[-64,-15],[-29,4],[-38,20],[-26,25],[-16,32],[-19,105],[2,31]],[[511718,75526],[17,76],[9,66],[13,41],[26,38],[-1,41],[24,66],[63,70],[31,26],[54,4],[73,-21],[25,-25],[38,-85],[17,-72],[-12,-106],[-13,-53],[-17,-41],[-31,-54],[-56,-37],[-49,-60],[-53,-40],[-77,9],[-49,44],[-29,85],[-3,28]],[[511591,77193],[1,32],[18,64],[36,85],[42,42],[34,10],[47,2],[44,-12],[34,-36],[38,-75],[24,-73],[6,-40],[1,-65],[-8,-43],[-44,-101],[-57,-55],[-25,-15],[-47,6],[-73,51],[-25,47],[-25,62],[-21,114]],[[511584,71632],[20,65],[41,49],[43,44],[47,20],[33,3],[71,-9],[46,-25],[33,-59],[15,-66],[4,-55],[-24,-83],[-55,-71],[-62,-44],[-69,-1],[-72,36],[-45,38],[-24,82],[-2,76]],[[511441,68115],[13,58],[21,47],[16,17],[83,62],[-44,89],[-18,66],[1,63],[7,68],[27,76],[59,83],[119,31],[33,54],[28,82],[1,81],[6,34],[27,65],[42,86],[73,83],[33,22],[79,-14],[36,-40],[33,-60],[20,-80],[-6,-37],[-36,-140],[-12,-109],[2,-34],[-26,-27],[-33,-18],[-8,-33],[-39,-53],[-20,-12],[-73,-17],[-11,-121],[8,-99],[-27,-125],[-57,-102],[-17,-21],[-49,-15],[-18,-58],[-39,-73],[-39,-45],[-47,-18],[-46,-2],[-40,15],[-39,46],[-16,46],[-7,79]],[[511186,79320],[15,36],[40,62],[29,36],[40,18],[62,-9],[17,-11],[59,-67],[27,-53],[9,-55],[-11,-53],[-53,-121],[-43,-32],[-43,-6],[-40,15],[-70,47],[-27,89],[-13,72],[2,32]],[[510911,80109],[23,85],[51,46],[39,13],[48,2],[49,-17],[33,-31],[22,-38],[24,-76],[-20,-92],[-15,-32],[-32,-41],[-38,-31],[-57,-2],[-46,11],[-64,79],[-17,124]],[[510797,66431],[25,79],[26,22],[1,58],[35,54],[45,33],[56,8],[36,44],[54,29],[44,0],[20,-28],[44,5],[75,-28],[21,-41],[15,-60],[-5,-71],[-35,-78],[3,-26],[-18,-39],[-22,-21],[-42,-16],[-23,-49],[-38,-28],[-43,-15],[-21,8],[-36,-30],[-30,-15],[-29,15],[-41,-8],[-10,11],[-48,7],[-30,31],[-19,42],[-9,47],[-1,60]],[[510413,81319],[9,35],[19,39],[47,42],[57,8],[37,-5],[29,-14],[47,-63],[10,-44],[3,-84],[-24,-60],[-59,-69],[-62,-16],[-39,9],[-27,16],[-22,26],[-24,88],[-4,50],[3,42]],[[36404,79408],[16,76],[3,48],[18,57],[26,38],[40,28],[65,107],[42,30],[37,15],[19,76],[18,45],[31,52],[55,80],[-17,40],[-59,110],[-18,68],[-22,127],[-4,69],[4,87],[16,61],[34,70],[30,33],[37,21],[36,12],[38,2],[69,-28],[28,-24],[37,-10],[39,-33],[39,-43],[21,-39],[17,-8],[30,-37],[43,-25],[40,-47],[43,-32],[27,8],[33,-8],[51,-27],[35,-10],[76,-36],[64,-37],[44,-39],[82,-54],[30,-25],[72,-42],[64,-58],[113,-113],[29,-43],[56,-68],[24,-53],[38,-48],[24,-53],[2,-82],[-7,-40],[2,-67],[13,-7],[48,-3],[27,-17],[40,-57],[16,-40],[22,-81],[-1,-72],[27,-26],[27,-60],[31,-46],[83,-53],[69,-78],[30,-54],[4,-68],[-30,-115],[-16,-39],[-38,-56],[-60,-72],[-64,-57],[-61,-77],[-19,-33],[-91,-65],[-81,-40],[-20,-21],[-69,-56],[-121,-56],[-75,7],[-44,21],[-63,-52],[-36,-57],[-34,-31],[-78,-40],[-23,-45],[-36,-40],[-58,-28],[-46,-55],[-37,-147],[-29,-44],[-13,-63],[-32,-63],[-29,-29],[-50,-73],[-24,-25],[-50,-31],[-50,2],[-45,36],[-27,79],[-65,39],[-74,76],[-35,7],[-38,16],[-60,50],[-21,23],[-22,65],[-22,41],[-31,125],[0,80],[15,135],[12,70],[1,67],[15,70],[5,125],[-32,97],[-23,138],[-33,47],[-21,78],[-16,147],[-21,79],[-62,54],[-19,58],[-2,35],[-25,77],[-23,57],[0,40]],[[35401,81243],[3,33],[18,60],[14,27],[46,52],[78,48],[47,46],[43,30],[76,0],[28,49],[36,23],[14,23],[-18,84],[-55,-7],[-49,25],[-15,16],[-60,0],[0,30],[-23,5],[-32,30],[-97,148],[-25,59],[-3,49],[-20,57],[1,81],[26,132],[42,87],[28,23],[32,54],[23,12],[35,3],[24,17],[43,4],[50,-23],[25,-31],[83,-77],[24,-38],[12,-72],[26,-45],[73,13],[43,36],[36,9],[24,24],[30,5],[41,-12],[32,8],[28,-10],[30,-24],[36,-15],[30,-27],[53,-66],[40,-59],[40,-21],[54,-64],[43,-24],[27,-24],[51,-18],[0,53],[64,0],[32,-89],[19,-127],[-4,-55],[2,-77],[-28,-94],[-24,-54],[-87,-112],[-21,-19],[-39,-16],[-30,3],[-45,-36],[-52,-30],[-66,6],[-29,11],[-86,-62],[-64,-31],[-53,-2],[-61,-12],[-91,13],[-62,49],[-38,49],[-6,-47],[13,-67],[-15,-69],[-36,-58],[-33,-27],[-48,0],[-32,-11],[-27,6],[-164,-16],[-71,1],[0,121],[-9,54]],[[34834,82105],[7,66],[36,63],[62,47],[22,10],[72,4],[39,-9],[81,-7],[71,-32],[33,-30],[38,-47],[30,-56],[21,-27],[53,-102],[11,-56],[0,-44],[-30,-85],[-41,-83],[-34,-35],[-45,-19],[-46,-48],[-21,-5],[-35,11],[-40,-3],[-43,-16],[-50,19],[-22,29],[-29,52],[-28,97],[-4,45],[5,46],[-6,25],[-43,15],[-31,46],[-24,52],[-11,51],[2,26]],[[34440,82600],[1,19],[25,74],[33,71],[27,38],[-5,61],[15,52],[20,29],[32,25],[44,8],[38,-3],[57,-16],[39,-32],[108,-13],[52,-19],[43,0],[33,51],[30,17],[30,2],[30,-11],[39,-30],[27,-62],[57,8],[32,-24],[20,1],[73,25],[114,-18],[56,-36],[43,-67],[14,-110],[-11,-45],[-24,-44],[-33,-18],[-22,-36],[-44,-38],[-23,-28],[-18,-7],[-37,-38],[-26,-5],[-55,-51],[-60,0],[0,-15],[-63,9],[-32,21],[-44,14],[-17,21],[-80,39],[-40,9],[-35,35],[-48,1],[-42,-22],[-137,-7],[-24,-6],[-91,7],[-50,11],[-44,50],[-23,46],[-4,57]],[[34075,83055],[-79,1],[-20,-14],[-39,32],[-33,-12],[-48,15],[-79,42],[-4,48],[-28,14],[-23,35],[-3,27],[-24,16],[1,37],[-32,24],[-22,27],[-5,49],[-18,6],[-14,88],[-89,-18],[-25,-16],[-94,4],[7,-68],[-8,-18],[2,-87],[14,-25],[-1,-30],[-51,-38],[-21,-44],[-38,-52],[-23,20],[-39,20],[-84,-19]],[[33155,83119],[-11,28],[-45,26],[-28,57],[-8,51],[-27,33],[-30,55],[-22,61],[1,49],[-18,0],[4,64],[-47,49],[-21,43],[-4,43],[15,50],[17,26],[72,28],[124,15],[39,-6],[41,23],[32,47],[22,12],[30,82],[37,38],[35,48],[30,7],[53,43],[30,3],[57,-19],[32,-31],[63,-83],[34,-92],[25,-101],[11,-19],[43,-38],[18,-28],[28,-94],[47,-65],[61,10],[15,-5],[39,-39],[27,-11],[28,-57],[3,-22],[-18,-55],[16,-29],[22,-115],[32,-55],[9,-26],[7,-65]],[[30526,84706],[6,59],[-1,53],[16,42],[69,94],[8,59],[25,48],[36,43],[66,31],[49,32],[37,41],[21,12],[43,52],[60,25],[43,0],[36,-18],[28,17],[36,7],[70,-9],[11,-9],[47,29],[36,-17],[38,-31],[34,-7],[40,-39],[28,-37],[40,-69],[31,-86],[7,-97],[-13,-94],[-15,-26],[-17,-74],[-21,-52],[6,-40],[1,-83],[-8,-57],[-38,-74],[-50,-51],[-28,-48],[-73,-71],[-63,-40],[-29,4],[-59,30],[-47,2],[-92,28],[-38,-6],[-30,9],[-76,78],[-13,24],[-38,38],[-38,11],[-41,36],[-50,28],[-23,30],[-40,85],[-15,24],[-12,64]],[[29812,84304],[38,155],[24,35],[35,18],[32,48],[36,39],[40,24],[23,115],[13,44],[17,30],[26,19],[37,2],[40,-13],[29,-20],[23,-43],[38,-45],[33,-87],[2,-24],[-16,-59],[-34,-59],[8,-45],[-4,-62],[-10,-36],[-44,-55],[-53,-36],[-46,-12],[-31,-59],[-16,-84],[-29,-54],[-25,-17],[-51,-8],[-74,40],[-20,27],[-32,76],[-8,67],[-1,79]],[[29345,83852],[14,64],[21,33],[45,27],[29,0],[36,-20],[29,-43],[11,-45],[-2,-76],[-18,-31],[-38,-32],[-41,-11],[-39,15],[-31,42],[-16,77]],[[27161,87117],[8,49],[26,32],[33,16],[40,4],[50,-8],[20,-20],[19,-38],[8,-57],[-9,-56],[-18,-38],[-30,-24],[-60,-10],[-36,9],[-33,38],[-15,36],[-3,67]],[[22786,88300],[18,50],[21,26],[48,20],[43,-1],[45,-36],[14,-29],[8,-43],[-9,-57],[-13,-37],[-31,-33],[-44,-10],[-34,11],[-43,34],[-19,51],[-4,54]],[[20232,88912],[9,87],[46,44],[34,12],[8,23],[28,16],[30,-2],[37,10],[49,0],[46,-26],[34,-35],[19,-32],[7,-31],[2,-91],[18,-38],[8,-78],[37,-45],[28,-54],[2,-67],[-12,-38],[-31,-29],[24,-46],[11,-92],[-9,-32],[-55,-48],[-33,-8],[-35,6],[-26,24],[-21,35],[-12,62],[13,71],[29,44],[-27,31],[-7,52],[-36,-31],[-25,-2],[-32,12],[-47,50],[-12,72],[7,46],[-6,19],[-53,16],[-35,41],[-12,52]],[[17599,91580],[12,60],[23,32],[31,20],[43,1],[26,-18],[31,-41],[13,-78],[-15,-58],[-47,-35],[-63,12],[-22,12],[-33,65],[1,28]],[[13462,92751],[2,28],[22,53],[25,24],[27,11],[28,-1],[38,-24],[19,-28],[13,-40],[-2,-55],[-14,-39],[-19,-24],[-32,-19],[-52,5],[-33,31],[-14,30],[-8,48]],[[11690,93387],[15,56],[20,39],[30,26],[91,-1],[35,-22],[18,-30],[14,-68],[-20,-103],[-30,-46],[-60,-24],[-51,27],[-42,51],[-20,95]],[[8133,94030],[13,80],[15,52],[30,29],[37,18],[41,-8],[37,5],[45,-36],[25,-48],[16,-91],[-16,-55],[-20,-38],[-26,-21],[-35,-9],[-65,-38],[-33,7],[-30,21],[-21,42],[-10,44],[-3,46]],[[5021,98046],[29,59],[22,20],[57,0],[80,-38],[5,18],[-55,26],[-35,35],[-17,32],[-5,64],[17,55],[23,38],[49,25],[42,41],[53,35],[108,78],[58,1],[55,-17],[48,-40],[36,-56],[18,-39],[8,-63],[-2,-92],[-16,-65],[-78,-224],[-13,-25],[-71,-31],[-60,-6],[-44,13],[-31,-33],[-48,-35],[-69,-25],[-48,12],[-48,36],[0,16],[-46,61],[-16,36],[-6,88]],[[1240,99486],[9,59],[17,50],[50,79],[32,23],[55,17],[40,-2],[37,-22],[4,-16],[50,-54],[29,-48],[10,-66],[3,-69],[-4,-52],[-27,-65],[-61,-42],[-20,-1],[-116,21],[-32,10],[-25,44],[-7,45],[-39,58],[-5,31]],[[34075,83055],[0,-43],[-16,-60],[-72,-92],[-35,-36],[-51,-13],[-36,10],[-22,21],[-41,-32],[-62,-20],[-29,4],[-47,29],[-36,60],[-27,25],[-51,-4],[-51,22],[-17,-13],[-81,-9],[-11,-9],[-63,-6],[-59,-11],[-39,12],[-23,22],[-23,48],[-28,159]],[[564870,153884],[25,61],[7,86],[33,42],[32,18],[56,6],[36,13],[19,34],[32,23],[185,33],[32,-7],[63,-51],[55,-14],[45,-32],[13,-35],[45,-19],[44,-41],[20,-74],[-14,-57],[-24,-42],[-17,-59],[-63,-68],[-43,-18],[-35,0],[-28,-32],[-72,-36],[-76,-15],[-77,18],[-41,22],[-101,27],[-44,28],[-22,37],[-30,23],[-53,87],[-2,42]],[[563520,153209],[24,88],[20,32],[75,34],[57,-3],[87,-13],[61,-34],[52,7],[63,-25],[26,0],[61,-27],[89,-16],[79,-51],[43,-9],[25,7],[71,-30],[45,-61],[-2,-52],[45,-34],[54,-73],[31,-33],[89,-24],[60,-47],[35,-52],[71,-7],[37,-20],[24,16],[86,-6],[42,-28],[40,-44],[71,-29],[20,-29],[28,-15],[38,-53],[2,-52],[-16,-35],[-39,-47],[-51,-25],[-93,11],[-77,-14],[-102,-4],[-66,3],[-65,-30],[-58,3],[-107,50],[-32,39],[-13,46],[-32,30],[-109,77],[-58,52],[-41,16],[-31,37],[-7,36],[-78,74],[-60,-2],[-54,-9],[-52,11],[-78,72],[-52,32],[-64,12],[-67,61],[-49,21],[-48,50],[-18,0],[-33,58],[1,58]],[[562878,153658],[50,72],[32,22],[69,9],[79,-25],[37,2],[118,-42],[63,-44],[36,-33],[16,-41],[59,-45],[30,-61],[-2,-44],[-43,-60],[-108,-35],[-48,1],[-66,35],[-33,-1],[-91,13],[-34,19],[-33,33],[-15,48],[-20,6],[-70,61],[-24,41],[-2,69]],[[562688,154133],[27,52],[41,39],[48,26],[71,17],[64,-2],[41,-18],[36,-34],[56,-38],[32,-70],[107,-16],[68,-4],[38,-16],[59,32],[45,13],[69,5],[164,-79],[42,-27],[33,-34],[11,-53],[-7,-69],[-65,-96],[-71,-67],[-77,-30],[-46,1],[-39,12],[-102,53],[-46,37],[-20,36],[-63,-19],[-66,5],[-45,22],[-50,38],[-52,51],[-83,-22],[-67,2],[-64,19],[-69,70],[-9,51],[8,33],[-24,43],[5,37]],[[562579,153723],[18,54],[45,44],[36,17],[59,2],[54,-19],[39,-46],[11,-44],[-4,-58],[-22,-35],[-62,-32],[-75,1],[-52,30],[-39,46],[-8,40]],[[561549,154314],[14,38],[41,39],[82,33],[66,-18],[45,-48],[13,-27],[-5,-69],[-22,-31],[-66,-38],[-50,-9],[-35,9],[-67,62],[-16,59]],[[561284,153766],[15,63],[29,41],[41,31],[92,48],[56,20],[43,62],[53,37],[43,16],[53,2],[55,21],[-4,35],[19,57],[50,39],[18,67],[65,86],[99,60],[54,6],[57,-12],[94,-49],[66,-50],[30,-48],[8,-33],[-3,-69],[-12,-36],[-54,-66],[-36,-59],[61,-27],[45,14],[65,-14],[54,-27],[44,-64],[0,-28],[-20,-50],[-38,-46],[-28,-16],[-45,-7],[-88,20],[-75,-13],[-51,-47],[-30,-10],[-58,5],[-45,-21],[-76,2],[-73,-10],[-66,10],[-28,15],[-9,-87],[17,-48],[-9,-51],[-18,-27],[-51,-40],[-41,-10],[-74,12],[-107,82],[-27,45],[-21,16],[-66,21],[-61,58],[-12,74]],[[559163,154914],[27,70],[45,35],[49,18],[51,-1],[38,-18],[30,5],[137,-57],[70,-56],[24,-51],[-16,-62],[-70,-86],[-61,-25],[-80,-17],[-37,0],[-67,27],[-36,29],[-47,80],[-18,18],[-42,76],[3,15]],[[556026,155826],[12,48],[32,40],[68,28],[41,7],[55,-8],[93,-46],[25,6],[90,-40],[19,-18],[29,17],[73,16],[133,-53],[53,-53],[9,-43],[-1,-82],[-22,-46],[-42,-36],[-55,-26],[-25,-1],[-51,18],[-55,-1],[-35,19],[-61,0],[-105,32],[-56,33],[-70,13],[-53,24],[-78,78],[-24,55],[1,19]],[[555238,154968],[1,14],[66,111],[32,27],[53,16],[37,38],[59,21],[78,-14],[29,33],[56,26],[39,44],[77,29],[49,-7],[28,17],[56,-6],[135,11],[41,-12],[34,-35],[35,-20],[11,-54],[-16,-58],[-51,-60],[-49,-34],[21,-34],[11,-128],[19,-57],[-31,-66],[-43,-42],[-57,-21],[-60,10],[-42,-23],[-43,5],[-65,32],[-26,26],[-51,13],[-23,16],[-82,-12],[-72,19],[-89,8],[-48,25],[-43,2],[-28,15],[-41,59],[-7,66]],[[553782,156151],[7,32],[36,55],[36,21],[45,6],[28,29],[60,35],[69,56],[55,17],[37,31],[59,21],[94,4],[81,20],[84,-1],[77,-28],[81,7],[39,-7],[65,-28],[44,19],[58,1],[68,-13],[63,9],[47,-4],[74,-26],[58,-29],[36,-47],[63,4],[68,-22],[78,-74],[20,-44],[10,-74],[16,-5],[49,24],[67,-22],[45,-38],[21,-40],[34,-17],[47,-57],[21,-61],[-18,-39],[-28,-32],[-40,-24],[-91,1],[-32,14],[-70,-8],[28,-51],[-11,-63],[-25,-41],[-58,-34],[-50,-7],[-67,32],[-31,31],[-92,45],[-42,-3],[-79,-19],[-46,-1],[-90,41],[-16,-44],[-146,-91],[-66,-17],[-53,20],[-51,45],[-33,49],[-42,-9],[-80,2],[-33,10],[-57,38],[-64,72],[-46,43],[-206,131],[-45,-6],[-49,17],[-90,63],[-23,45],[2,36]],[[51542,171110],[23,69],[60,77],[44,30],[-12,43],[23,65],[-18,64],[14,41],[36,37],[46,21],[87,6],[86,-36],[28,-34],[11,-55],[-10,-29],[50,-19],[37,-29],[26,-39],[8,-45],[33,-62],[-6,-44],[-22,-32],[-38,-28],[-49,-18],[-40,-48],[-48,-28],[-76,-13],[-97,-25],[-67,11],[-81,35],[-41,49],[-7,36]],[[42157,170010],[23,57],[23,20],[-5,41],[42,61],[97,29],[46,6],[80,-10],[42,-23],[91,53],[93,1],[72,-27],[38,16],[62,-2],[87,-43],[43,-10],[110,-96],[16,-25],[5,-63],[-33,-51],[-26,-23],[-71,-21],[-23,-35],[-48,-35],[-56,-20],[-78,10],[-66,27],[-40,31],[-96,-40],[-86,0],[-41,-31],[-61,-17],[-41,1],[-67,18],[-48,45],[-20,60],[-42,26],[-22,70]],[[38271,166263],[12,50],[25,43],[-8,34],[42,75],[116,71],[-3,26],[42,86],[59,60],[12,46],[67,81],[49,35],[73,36],[29,70],[54,41],[98,26],[47,0],[65,84],[51,51],[122,6],[100,53],[41,-1],[176,128],[35,41],[161,143],[40,26],[16,31],[39,25],[3,34],[39,37],[73,28],[72,-4],[60,-21],[66,51],[77,36],[97,37],[109,64],[41,19],[93,27],[-39,49],[-3,60],[10,31],[48,67],[61,45],[39,54],[61,65],[84,31],[41,75],[62,55],[77,40],[23,38],[98,110],[240,243],[77,85],[65,41],[30,70],[66,52],[70,15],[12,86],[52,57],[3,26],[54,61],[139,101],[56,76],[46,40],[76,30],[37,4],[62,-15],[65,-47],[20,-44],[-7,-48],[67,25],[47,-2],[102,-46],[55,-74],[2,-26],[35,-40],[16,-62],[-6,-45],[46,-1],[64,-27],[75,-81],[7,-60],[-11,-28],[-36,-39],[-40,-21],[-16,-30],[86,-22],[75,-64],[97,-29],[48,-22],[58,-43],[64,45],[49,17],[45,4],[70,-13],[60,-48],[13,-39],[-5,-60],[-45,-45],[-6,-33],[55,-62],[23,-82],[-26,-110],[-30,-54],[-60,-64],[-61,-34],[-92,-26],[-74,15],[-59,35],[-32,46],[-106,-94],[-35,-16],[-113,-29],[-210,-43],[-51,-41],[-51,-18],[-56,3],[-68,23],[-78,0],[-9,-30],[70,-22],[54,-42],[34,-11],[46,-34],[21,-45],[30,-17],[50,-3],[47,-49],[24,-45],[-13,-60],[-44,-83],[47,-26],[104,-33],[43,-41],[15,-31],[70,-291],[53,-48],[17,-28],[6,-57],[-35,-58],[-16,-75],[-51,-43],[-46,-49],[-43,-29],[-110,-100],[9,-86],[32,-14],[63,-61],[-5,-59],[-42,-63],[-65,-49],[-49,-20],[-89,-11],[-73,19],[-34,20],[-30,48],[2,51],[-23,14],[-179,-132],[-14,-61],[-134,-127],[-31,-24],[-53,-19],[-152,-17],[-99,-6],[80,-58],[15,-49],[-3,-69],[-25,-42],[-65,-66],[-67,-36],[-96,-30],[-73,1],[-64,-16],[-116,-44],[-20,-42],[1,-25],[-57,-56],[-54,-62],[-39,-17],[-59,-8],[-49,-16],[-72,-4],[-59,21],[-74,2],[-55,30],[-29,-18],[-20,-39],[25,-30],[6,-60],[-40,-64],[-39,-37],[-69,-33],[-86,-20],[-25,1],[-20,-32],[-60,-59],[-83,-37],[-66,-6],[21,-72],[-35,-77],[-49,-51],[-54,-4],[-58,-35],[-29,-3],[-20,-42],[-27,-25],[-104,-39],[6,-39],[106,9],[50,14],[65,4],[80,-24],[41,-51],[11,-45],[-7,-28],[-69,-109],[-67,-54],[-51,-20],[-37,-36],[-50,-20],[-36,4],[-59,-11],[-96,-4],[-75,4],[-75,23],[-55,-26],[-72,-13],[-65,8],[-103,41],[-25,-24],[-74,-29],[-78,4],[-72,29],[-132,-67],[-74,-94],[-94,-54],[-58,-18],[-59,-1],[-50,11],[-107,57],[-30,40],[-18,50],[-1,50],[51,71],[11,27],[53,57],[13,28],[86,83],[141,88],[112,89],[90,46],[52,6],[76,-13],[69,-3],[87,-42],[35,8],[27,22],[69,31],[63,18],[-4,58],[34,64],[-155,152],[-109,102],[-12,43],[8,108],[-82,65],[-98,39],[-119,28],[-49,41],[-31,73],[43,80],[-29,291],[-48,36],[-47,46],[-9,38],[-128,0],[-50,31],[-51,7],[-131,83],[-27,36],[-4,29]],[[36849,162808],[17,41],[33,42],[84,41],[118,123],[67,41],[84,13],[67,-13],[101,-27],[33,-69],[-33,-82],[-17,-69],[16,-96],[0,-82],[-84,-82],[-84,-14],[-84,14],[-134,13],[-117,42],[-50,68],[-17,55],[0,41]],[[35171,163651],[3,61],[14,48],[21,25],[9,55],[48,53],[34,15],[79,8],[65,-14],[60,-38],[27,-77],[35,-53],[-4,-78],[-29,-44],[71,-19],[39,-31],[21,-40],[52,-45],[14,-96],[-10,-50],[-92,-102],[-57,-47],[-43,-13],[-140,-9],[-45,7],[-46,27],[-18,38],[11,54],[-29,34],[-1,42],[16,46],[24,24],[5,78],[-57,12],[-48,31],[-22,34],[-7,64]],[[30433,160527],[38,76],[77,53],[120,49],[50,7],[75,-16],[71,-36],[54,23],[72,-4],[93,-57],[89,-88],[38,-58],[-13,-75],[-28,-50],[-42,-40],[-53,-28],[-71,-22],[-28,10],[-93,10],[-43,23],[-27,36],[-30,74],[-92,-53],[-29,-6],[-76,1],[-34,12],[-32,28],[-70,85],[-16,46]],[[30138,169281],[35,93],[40,27],[71,32],[142,-35],[31,-24],[43,-68],[6,-74],[-26,-36],[-65,-44],[-81,-18],[-56,-4],[-80,31],[-47,72],[-13,48]],[[29434,169485],[30,48],[-1,50],[34,72],[22,28],[60,42],[57,15],[76,-10],[70,-44],[65,0],[70,-21],[37,-24],[42,2],[79,-17],[56,-56],[8,-64],[-41,-56],[-47,-34],[-2,-49],[-41,-62],[-51,-35],[-21,-68],[-52,-49],[-67,-20],[-51,0],[-54,14],[-46,28],[-27,76],[30,80],[-126,13],[-85,63],[-24,46],[0,32]],[[28410,161324],[31,59],[41,38],[31,13],[104,1],[46,-28],[41,-56],[-1,-46],[-18,-50],[-62,-40],[-40,-16],[-44,0],[-62,24],[-40,35],[-27,66]],[[28028,182078],[26,58],[43,31],[59,27],[71,13],[137,-30],[42,-29],[32,-39],[-14,-48],[2,-46],[-59,-72],[-48,-21],[-85,-9],[-106,17],[-65,40],[-28,43],[-7,65]],[[27363,180869],[30,56],[40,27],[88,18],[98,-13],[56,-31],[34,-41],[9,-31],[-12,-36],[-53,-52],[-73,-29],[-99,0],[-87,39],[-28,40],[-3,53]],[[25851,160520],[19,42],[41,42],[59,24],[65,-7],[46,-27],[36,-46],[20,-43],[-10,-36],[-54,-61],[-45,-18],[-53,-5],[-68,29],[-38,33],[-18,73]],[[25544,159534],[30,69],[55,31],[-9,21],[11,44],[28,44],[-6,69],[9,37],[51,53],[41,21],[88,-9],[40,-23],[46,-3],[45,-16],[79,-11],[44,-31],[43,-3],[40,-26],[44,12],[59,-20],[59,-35],[104,-15],[48,-38],[25,12],[65,-17],[121,-86],[46,-47],[16,-68],[-19,-53],[-50,-37],[-87,-12],[-34,6],[-72,-52],[-39,-17],[-75,1],[-29,-17],[-49,-78],[-58,-33],[-45,1],[-50,20],[-57,-24],[-64,-10],[-41,10],[-66,65],[-18,53],[-44,24],[-16,26],[-52,18],[-38,38],[-24,-19],[-98,-12],[-49,28],[-34,32],[-14,36],[0,41]],[[25139,161955],[30,51],[-31,53],[9,52],[37,43],[82,29],[53,1],[32,-14],[95,-84],[68,-106],[8,-51],[-34,-89],[-34,-48],[-56,-29],[-75,-13],[-66,17],[-62,36],[-42,65],[-14,87]],[[18386,173038],[12,37],[67,52],[111,0],[41,20],[64,10],[54,27],[42,7],[87,-16],[46,10],[114,-13],[52,20],[79,-14],[82,-43],[79,26],[38,1],[22,40],[40,39],[29,12],[20,32],[45,32],[51,13],[19,28],[58,43],[38,15],[60,3],[55,-8],[73,63],[78,23],[66,49],[80,11],[54,-10],[88,-41],[60,-21],[82,69],[33,9],[9,63],[34,29],[64,32],[88,13],[107,-57],[48,-38],[37,-71],[39,-45],[12,-44],[-17,-29],[44,-32],[50,46],[79,21],[81,-10],[31,-20],[72,34],[70,2],[71,-29],[62,-49],[7,-53],[77,-23],[41,-41],[20,-45],[-20,-66],[6,-33],[-28,-41],[34,-59],[-6,-41],[-28,-44],[19,-31],[-1,-34],[27,-41],[-7,-47],[11,-32],[-25,-55],[10,-38],[21,-11],[22,-44],[66,-16],[55,-43],[17,-44],[78,-46],[-15,-38],[-43,-42],[-10,-45],[-24,-50],[-55,-57],[-102,-40],[-102,-15],[-51,-24],[-65,-2],[-58,11],[-106,-71],[-35,-6],[-83,-71],[-69,-67],[-68,-56],[-75,-40],[-72,-23],[-65,-3],[-92,8],[-61,13],[-72,32],[-50,39],[-42,60],[-33,30],[-71,15],[-99,51],[-51,-13],[-73,7],[-88,-6],[-98,2],[-44,12],[-55,30],[-75,53],[-78,10],[-67,23],[-35,43],[-84,62],[-57,32],[-160,55],[-96,3],[-55,17],[-133,115],[-112,12],[-48,45],[-97,6],[-51,30],[-36,52],[-3,90],[10,31],[-44,36],[-14,56],[-30,8],[-69,60],[-38,64],[3,43]],[[17478,158532],[38,69],[44,25],[95,4],[52,-11],[48,-59],[9,-99],[-16,-45],[-33,-35],[-61,-27],[-38,1],[-56,18],[-34,31],[-39,54],[-9,74]],[[17353,184045],[10,44],[81,60],[126,33],[113,-10],[81,-36],[46,-48],[16,-76],[-62,-85],[-36,-24],[-96,-31],[-85,4],[-73,17],[-78,38],[-37,38],[-6,76]],[[17326,185530],[16,114],[33,55],[71,67],[123,64],[115,43],[57,14],[133,52],[259,74],[312,100],[335,153],[110,61],[94,66],[269,120],[277,138],[177,86],[377,147],[257,93],[164,67],[188,81],[498,188],[279,95],[261,85],[224,61],[649,165],[202,46],[217,39],[300,48],[236,15],[334,12],[254,1],[151,-3],[146,-12],[136,-27],[350,199],[316,166],[354,205],[134,67],[97,63],[-71,48],[-272,90],[-127,19],[-31,12],[-300,60],[-101,9],[-131,20],[-205,24],[-258,48],[-205,81],[-125,100],[-18,57],[63,56],[126,42],[-37,89],[-155,334],[-177,236],[-92,110],[-87,64],[-80,38],[-180,67],[-242,96],[-167,70],[-177,114],[-691,378],[-462,263],[-72,23],[-175,23],[-45,-31],[-213,12],[-56,10],[-150,50],[-146,66],[-66,64],[-42,78],[-57,52],[-199,102],[-213,87],[-204,59],[-210,32],[-137,7],[-58,-19],[-74,-9],[-90,12],[-114,55],[-20,54],[56,60],[73,44],[59,9],[151,77],[111,17],[249,61],[134,41],[20,21],[30,144],[87,76],[0,82],[15,43],[-16,55],[18,41],[49,61],[-16,32],[28,157],[-5,30],[-68,163],[5,46],[68,87],[129,38],[84,8],[118,-15],[216,-11],[245,-5],[237,-17],[175,2],[90,-6],[327,19],[219,31],[137,7],[91,20],[64,-12],[186,6],[109,9],[252,41],[130,2],[391,23],[92,25],[360,133],[105,60],[125,47],[151,72],[166,118],[67,87],[121,88],[234,156],[37,33],[72,102],[25,53],[30,136],[-11,84],[8,134],[-16,105],[13,103],[45,96],[19,79],[28,41],[70,168],[29,41],[182,160],[242,170],[77,75],[133,115],[160,156],[139,122],[271,160],[291,141],[340,138],[106,35],[91,15],[89,-8],[399,-53],[190,-15],[254,5],[159,23],[327,95],[386,130],[376,181],[412,236],[224,145],[294,158],[103,72],[193,109],[253,66],[189,37],[267,60],[136,27],[130,17],[193,13],[118,26],[237,19],[94,-1],[137,-34],[103,-105],[149,-43],[193,-25],[108,-9],[152,7],[239,45],[188,46],[64,21],[328,129],[123,56],[204,126],[63,44],[38,44],[74,52],[29,33],[129,96],[131,110],[155,109],[135,110],[106,55],[71,53],[68,34],[244,55],[26,39],[39,21],[127,33],[83,8],[114,-14],[105,-30],[43,-30],[47,3],[103,-35],[129,-21],[217,-54],[136,-20],[77,-41],[72,-58],[61,-64],[57,12],[102,1],[350,-43],[214,-70],[117,-24],[204,-15],[99,-41],[54,-4],[139,-43],[222,-84],[129,-61],[186,-105],[116,-48],[195,-107],[73,-11],[671,-173],[40,10],[198,15],[210,-14],[192,-7],[185,44],[211,58],[189,5],[122,-17],[71,8],[25,18],[111,-25],[143,7],[122,-27],[53,-23],[89,-17],[94,8],[187,-16],[158,-47],[49,-2],[90,-26],[140,-26],[118,-43],[107,-78],[19,-66],[98,-77],[578,-434],[89,-18],[94,-71],[-14,-63],[-65,-57],[7,-38],[187,-27],[283,4],[121,39],[108,9],[75,-3],[203,40],[77,51],[110,25],[89,11],[201,-7],[59,16],[149,-11],[103,24],[123,-8],[6,24],[92,78],[131,25],[141,0],[161,-41],[87,31],[77,13],[100,2],[71,-13],[160,31],[94,-3],[336,-37],[241,-44],[130,-29],[103,-11],[124,-37],[109,-54],[294,-14],[80,-26],[89,-45],[31,-39],[91,-14],[136,-33],[1,68],[66,66],[120,32],[178,-3],[158,-36],[84,-31],[26,37],[120,46],[122,15],[83,-8],[90,-27],[61,-34],[56,-64],[-6,-30],[114,-5],[86,-23],[66,-56],[76,20],[175,5],[161,-52],[57,-38],[132,-36],[64,-39],[32,-67],[115,26],[151,14],[204,-38],[87,-42],[103,-78],[51,-19],[130,8],[294,-15],[66,11],[217,-40],[101,-33],[225,-12],[129,-18],[241,-68],[196,-73],[200,-86],[106,-9],[332,-115],[230,-2],[105,-40],[42,-38],[38,-65],[42,-3],[106,30],[114,3],[101,-18],[195,-47],[107,83],[114,60],[90,33],[117,12],[46,-8],[147,43],[89,9],[37,17],[142,40],[81,2],[91,65],[150,27],[101,-8],[96,18],[166,16],[60,29],[128,2],[234,-49],[80,29],[100,13],[112,1],[92,-20],[71,-30],[29,-26],[85,-22],[35,-20],[218,-64],[50,-21],[87,-17],[67,-27],[85,-17],[356,-125],[87,-52],[119,-39],[66,-44],[78,-26],[29,-22],[253,-107],[135,-40],[125,-44],[264,-55],[109,-31],[135,-47],[218,-97],[109,-53],[9,-13],[385,-44],[206,-50],[0,-326],[0,-505],[0,-548],[0,-652],[0,-595],[0,-585],[0,-299],[0,-593],[0,-595],[0,-635],[0,-555],[0,-298],[1,-595],[0,-594],[0,-522],[0,-668],[0,-463],[0,-531],[0,-366],[0,-577],[0,-388],[0,-436],[0,-661],[0,-504],[0,-486],[0,-682],[0,-459],[0,-589],[0,-469],[0,-378],[0,-555],[0,-774],[0,-404],[0,-755],[0,-516],[0,-368],[1,-499],[0,-414],[0,-394],[0,-596],[0,-452],[0,-451],[735,-189],[99,199],[367,-139],[394,-151],[458,359],[632,26],[331,14],[7,-78],[-186,-539],[266,-225],[371,-150],[148,-43],[62,-223],[66,-100],[96,-67],[491,-374],[389,-295],[198,-153],[427,-330],[158,-558],[9,-35],[-44,-185],[124,6],[288,215],[632,315],[58,46],[386,15],[150,222],[-12,28],[43,26],[-12,416],[171,-37],[101,37],[106,140],[-5,79],[-178,93],[252,94],[385,56],[145,64],[593,250],[352,-228],[36,-9],[27,-76],[96,-91],[61,-4],[137,-138],[2,-206],[-71,-49],[-42,-59],[165,-93],[-57,-98],[106,-150],[409,-75],[32,-132],[182,-145],[134,0],[62,-105],[98,-111],[-32,-89],[-1,-47],[149,-39],[-36,-91],[124,-143],[407,-193],[239,-108],[184,-235],[37,-44],[221,-196],[283,-219],[-128,-98],[185,-265],[191,-195],[73,-84],[157,-348],[326,-362],[178,-319],[155,-198],[156,-267],[301,-359],[183,-308],[-188,-278],[504,-102],[-31,-104],[-71,-268],[-16,-36],[191,-74],[210,-88],[-48,-119],[63,-114],[42,-236],[117,5],[283,21],[188,-151],[155,-75],[308,-155],[130,-97],[478,-90],[65,-57],[187,-174],[128,-46],[117,-19],[65,-229],[129,-31],[154,-70],[225,46],[135,-230],[20,-55],[-17,-21],[-15,-159],[18,1],[-112,-213],[-62,-39],[-42,-93],[4,-120],[57,-76],[-24,-233],[65,-208],[65,-92],[22,-194],[11,-68],[65,-84],[3,-41],[-34,-46],[-45,-41],[-104,-113],[-76,-120],[-21,-67],[-39,-55],[-7,-66],[-54,-90],[-85,-122],[-101,-120],[-110,-92],[-103,-100],[-149,-109],[-106,-29],[-33,-38],[49,-55],[-4,-33],[22,-43],[-414,-11],[-685,-15],[-454,-11],[-636,-16],[-761,-29],[-295,-11],[-394,-14],[-536,-30],[-603,-33],[-13,27],[-63,214],[-44,136],[-26,65],[-23,125],[-32,139],[-13,38],[-10,109],[38,58],[104,122],[64,89],[73,123],[-89,41],[-33,24],[-26,72],[-85,84],[-22,38],[-5,86],[27,62],[-17,76],[1,35],[-56,-14],[-41,1],[-64,24],[-36,37],[-16,44],[14,58],[58,50],[0,48],[42,73],[8,88],[30,35],[-5,39],[24,70],[-22,27],[-47,5],[-40,23],[-32,61],[13,74],[75,60],[-26,51],[-13,68],[-46,-29],[-80,-10],[-45,11],[-48,33],[-18,25],[-7,56],[15,40],[-54,77],[-16,-70],[-45,-76],[-139,-221],[-45,-67],[-166,64],[-195,65],[-129,66],[-104,62],[-52,42],[-42,49],[-27,65],[12,41],[26,45],[32,33],[121,59],[44,49],[4,69],[-61,66],[-202,264],[-107,79],[-149,97],[-69,67],[-205,232],[-330,373],[-279,306],[-291,317],[-353,385],[-121,129],[-290,640],[-300,604],[-34,61],[-128,250],[-100,189],[-69,176],[-16,15],[-115,24],[-124,49],[-44,34],[-22,41],[-3,87],[19,45],[-12,46],[8,36],[-29,11],[-15,36],[0,51],[27,64],[18,89],[55,42],[166,76],[-9,63],[-46,-38],[-113,-40],[-66,-3],[-84,23],[-79,55],[-83,22],[-46,41],[-18,56],[-67,66],[-63,21],[-58,64],[-54,85],[-9,26],[-48,-33],[-43,-15],[-75,14],[-46,27],[-75,62],[-80,57],[-107,40],[-92,72],[-64,23],[-56,31],[-131,104],[-73,43],[-36,32],[-114,30],[-72,37],[-65,59],[-22,103],[-39,35],[-109,82],[-199,134],[-65,94],[18,144],[-49,60],[-120,105],[-112,72],[-136,105],[-59,27],[-255,70],[-279,95],[-166,98],[-71,48],[-58,48],[-57,31],[-191,83],[-165,76],[-47,9],[-271,94],[-187,78],[-148,69],[-174,101],[-63,32],[-79,55],[-142,73],[-158,73],[-178,104],[-58,20],[-169,88],[-289,139],[-43,-6],[-213,16],[-129,-4],[-77,3],[-86,14],[-86,27],[-85,15],[-121,0],[-63,11],[-103,34],[0,52],[-252,73],[-349,104],[-415,141],[-210,56],[-476,129],[-497,101],[-427,62],[-300,-1],[-353,-79],[-412,-40],[-581,-55],[-361,-37],[-317,-1],[-419,-401],[-208,-62],[-212,19],[-159,118],[0,119],[214,218],[161,198],[-106,158],[-266,119],[-507,38],[-346,78],[-479,176],[-319,137],[-240,-1],[-319,-80],[-452,-157],[-423,-135],[-322,-116],[-100,-14],[-157,-38],[-94,-65],[-126,-127],[-46,-81],[-16,-92],[0,-103],[-84,-104],[-293,-138],[-263,-75],[-208,-12],[-216,17],[-131,58],[-96,108],[-185,138],[-345,40],[-265,-20],[-590,22],[-456,-111],[-312,-259],[-242,-477],[-600,-231],[-424,-161],[-291,-114],[-119,-36],[-282,-99],[-142,-42],[-301,-118],[-415,-100],[-96,-29],[-92,-34],[-109,-25],[-371,-31],[-277,-20],[-656,-62],[-586,-56],[-594,-56],[-257,-224],[30,-30],[19,-54],[1,-50],[-23,-57],[-56,-50],[41,-38],[15,-69],[-31,-59],[-91,-51],[-53,-1],[-63,14],[-84,-92],[-169,-73],[33,-42],[17,-58],[-34,-74],[-73,-42],[-122,-14],[-27,-52],[-70,-47],[-60,-14],[-136,25],[-51,26],[-16,-64],[-37,-36],[-59,-36],[-3,-42],[40,-95],[0,-54],[-80,-104],[-26,-22],[-70,-16],[-108,-190],[-22,-68],[-10,-60],[-37,-49],[-42,-18],[-16,-76],[-56,-52],[-90,-24],[-13,-33],[-71,-65],[-36,-17],[-74,-9],[-87,-64],[-235,-25],[-78,3],[-189,-17],[-61,-30],[-84,-24],[-101,20],[-45,37],[-74,-20],[-45,-109],[-39,-149],[-78,-118],[-55,-39],[-79,-17],[-50,6],[16,-43],[1,-51],[-95,-78],[-56,-80],[-49,-13],[-7,-45],[-30,-32],[-96,-41],[-111,17],[-44,12],[-204,-68],[-19,6],[-60,-20],[11,-36],[-21,-149],[-35,-32],[-81,-25],[-71,4],[-50,-9],[-76,5],[-10,-21],[-109,-128],[-31,-47],[-62,-39],[-188,-37],[-69,-61],[-40,-18],[-26,-66],[-20,-16],[-30,-66],[-49,-88],[34,-61],[17,-51],[-21,-76],[-55,-67],[-85,-65],[8,-87],[-33,-43],[-42,-28],[3,-497],[-335,-311],[-276,-257],[-173,-157],[-228,-205],[-506,-466],[-325,-303],[-291,-273],[-227,-210],[-170,-154],[-430,-409],[-893,-7],[-277,-4],[-391,1],[-362,-4],[-49,-47],[-51,-18],[28,-78],[-12,-41],[-42,-40],[-73,-18],[-77,-2],[-35,12],[-466,-49],[-19,-41],[-50,-49],[-11,-22],[-62,-24],[-28,-75],[14,-47],[85,-13],[54,-50],[47,-73],[77,19],[63,-12],[80,-53],[41,-56],[35,-138],[13,-17],[50,32],[70,7],[26,27],[54,31],[57,102],[45,38],[35,13],[62,5],[55,-17],[51,-31],[27,-51],[-2,-78],[-32,-23],[-1,-62],[-10,-51],[30,-61],[6,-58],[-11,-60],[39,3],[60,-28],[41,13],[109,-28],[57,-43],[20,-50],[1,-52],[-14,-41],[-62,-44],[4,-16],[56,-36],[54,-17],[72,-48],[25,-36],[9,-58],[-33,-69],[-108,-120],[-39,-30],[-54,-19],[-63,1],[-52,13],[-45,22],[-29,28],[-23,41],[-34,33],[-35,55],[-29,-8],[-72,19],[-42,31],[-27,45],[10,61],[-4,38],[-34,34],[-25,-8],[-151,-1],[-34,13],[-42,57],[-16,-63],[-53,-50],[-11,-71],[-64,-66],[-47,-16],[-96,16],[-67,39],[-34,-60],[-25,-21],[-75,-27],[-100,13],[-24,-70],[-66,-60],[-83,-50],[-54,-9],[-56,27],[-40,34],[-20,31],[-34,78],[-9,40],[-1,84],[26,67],[46,39],[8,56],[76,51],[-27,29],[-1,87],[-24,37],[-17,52],[28,63],[39,32],[49,18],[39,58],[64,25],[0,32],[30,66],[-40,35],[-19,60],[-22,21],[-14,62],[-20,47],[-35,25],[-21,-15],[31,-41],[-3,-77],[-27,-38],[7,-37],[-14,-36],[-56,-83],[-68,-27],[-51,0],[-22,-21],[-14,-44],[-55,-44],[-10,-33],[-34,-29],[-12,-27],[24,-31],[2,-69],[-48,-67],[-27,-15],[-65,-10],[-85,28],[-29,36],[-17,71],[6,25],[-79,5],[-46,26],[-50,10],[-21,-28],[-99,-67],[-80,-6],[-48,17],[-51,46],[-12,41],[9,52],[-5,55],[-48,43],[-12,56],[32,83],[-34,59],[9,65],[-23,78],[35,72],[61,56],[7,37],[45,53],[-77,1],[-39,-34],[-99,-56],[-184,-87],[-41,-14],[-15,-25],[-71,-43],[-42,-13],[0,-19],[54,-20],[20,22],[70,42],[60,8],[34,-10],[59,-41],[18,-23],[6,-77],[-37,-51],[-64,-35],[-81,-1],[-38,20],[-40,-42],[-106,-26],[-8,-15],[16,-54],[-12,-39],[7,-45],[-41,-62],[-65,-31],[-50,-4],[-47,9],[-67,-62],[44,-18],[45,-47],[14,-56],[-11,-42],[-55,-54],[-73,-11],[-46,-32],[-36,11],[-52,-7],[-103,28],[-58,-14],[-50,-3],[-11,-65],[-68,-84],[67,-21],[41,-44],[18,-54],[22,-3],[62,-57],[19,-40],[-19,-84],[-45,-42],[-55,-15],[-52,4],[-40,22],[-18,-19],[-87,-34],[-28,-41],[-42,-32],[-50,-19],[-32,12],[-43,-7],[-74,20],[-49,45],[-73,2],[-59,-33],[28,-47],[7,-51],[-10,-33],[-44,-45],[-66,-16],[-89,19],[-41,30],[-29,-11],[-53,9],[-5,-51],[-58,-80],[-60,-22],[4,-62],[-36,-65],[-43,-23],[-42,-7],[-58,7],[-58,39],[-23,38],[-6,40],[9,40],[22,27],[-21,18],[-20,63],[10,41],[38,61],[-75,38],[-50,56],[-17,42],[-8,56],[34,63],[79,37],[-46,43],[-90,9],[-48,27],[-30,42],[7,76],[13,28],[38,35],[-31,9],[-61,49],[-16,-19],[-68,-32],[-20,2],[-41,-31],[-46,-14],[-46,-2],[-1,-24],[-48,-50],[-39,-19],[-74,-10],[-58,34],[-58,55],[-151,-7],[1,-23],[-26,-37],[-48,-17],[-43,-38],[-7,-22],[58,-26],[53,-47],[21,-36],[46,-37],[26,-42],[44,-37],[24,-33],[22,-113],[-71,-84],[-40,-29],[-53,-11],[-129,16],[-133,9],[-127,-21],[-65,-3],[-105,-15],[-35,6],[-47,-37],[-55,-11],[-40,-71],[-41,-23],[-65,-1],[-126,49],[-62,18],[-71,5],[-186,-4],[-172,-9],[-26,-7],[-86,0],[-104,-17],[-46,-16],[-120,-59],[-19,-31],[5,-24],[-21,-74],[-42,-71],[-62,-60],[-49,-34],[-61,-28],[-46,-36],[-66,-11],[-47,12],[-24,-14],[-98,-26],[-83,-31],[-73,-3],[-67,16],[-55,-16],[-56,4],[-46,15],[-151,67],[-37,39],[-58,81],[-17,33],[-36,38],[-20,79],[-30,68],[-14,129],[26,70],[32,45],[151,93],[62,22],[45,26],[83,10],[42,60],[33,64],[46,65],[12,65],[74,99],[11,95],[11,36],[36,53],[50,25],[97,80],[72,16],[90,8],[90,-24],[84,-41],[83,45],[45,45],[61,38],[47,20],[76,6],[38,-6],[60,12],[153,135],[59,27],[85,-4],[87,39],[53,7],[113,-27],[107,-9],[98,16],[57,26],[115,39],[162,86],[103,65],[131,60],[90,23],[26,15],[57,59],[181,171],[58,67],[17,41],[72,54],[67,43],[101,47],[88,33],[72,10],[57,59],[58,21],[96,72],[74,102],[47,40],[87,84],[65,75],[84,106],[49,47],[185,112],[60,82],[22,14],[120,39],[17,29],[49,10],[33,25],[118,122],[75,47],[52,23],[151,28],[126,43],[77,31],[116,20],[23,13],[132,25],[81,27],[181,74],[81,28],[80,9],[182,0],[181,18],[101,0],[181,-18],[152,0],[60,-9],[50,27],[41,47],[20,36],[20,93],[20,55],[10,55],[47,62],[70,160],[42,53],[41,30],[89,49],[39,31],[70,90],[56,59],[97,49],[83,25],[66,34],[119,83],[52,63],[88,80],[153,74],[208,80],[61,32],[88,33],[124,69],[121,87],[78,31],[39,9],[183,84],[97,47],[145,89],[157,135],[98,63],[41,15],[43,122],[102,225],[211,464],[173,458],[44,96],[30,114],[37,72],[22,102],[30,78],[29,126],[37,102],[207,583],[115,342],[25,102],[37,85],[15,61],[34,78],[75,211],[43,142],[-134,134],[-66,-7],[-37,5],[-296,-97],[-322,-104],[1,-22],[-31,-56],[-47,-34],[-56,-13],[-48,-59],[-38,-29],[-104,-38],[-104,-12],[-55,2],[-85,23],[-84,-43],[-46,0],[-94,31],[-64,52],[-18,35],[-4,42],[17,28],[-399,579],[-221,260],[-104,9],[-102,17],[-41,16],[-27,-46],[-46,-38],[-100,-57],[-73,-31],[-56,-17],[-72,7],[-103,62],[-15,35],[-38,24],[-23,32],[-57,52],[-38,-46],[-59,-34],[-92,-4],[-39,9],[-100,58],[-57,114],[10,23],[-25,51],[-418,-85],[23,-51],[-12,-65],[-40,-76],[-98,-163],[-17,-42],[-74,-107],[-64,-102],[-4,-40],[-19,-30],[-65,-62],[-49,-34],[-93,-32],[-49,-1],[-80,17],[-82,-30],[-45,0],[-71,31],[-28,21],[-29,70],[-15,71],[15,78],[-89,84],[-104,-59],[-85,-33],[-102,-18],[-62,-23],[-50,-56],[-50,-23],[-79,-19],[-24,-58],[-84,-37],[-101,-13],[-71,-2],[-108,22],[-59,62],[-14,31],[-1,47],[-70,15],[-33,-15],[-65,4],[-43,-16],[-70,17],[-61,-8],[-79,15],[-62,43],[-43,0],[-50,20],[-63,55],[-16,56],[18,49],[68,41],[17,22],[74,35],[63,7],[59,22],[83,-1],[27,10],[91,-1],[24,15],[39,51],[40,17],[14,52],[59,54],[-10,52],[-38,63],[-10,93],[10,107],[-32,78],[-39,53],[-41,74],[-76,87],[-10,-35],[-62,55],[-87,115],[-97,222],[-11,53],[7,64],[54,72],[32,61],[74,63],[5,88],[13,25],[62,54],[87,36],[70,50],[31,88],[37,40],[-208,277],[-15,3],[-47,58],[-35,67],[-6,38],[-47,40],[-13,48],[-50,42],[-63,98],[-78,-19],[-46,-1],[-64,13],[-105,-2],[-74,28],[-48,48],[-12,94],[-178,28],[-69,-19],[-145,8],[-14,-27],[-87,-53],[-87,-39],[3,-64],[-16,-28],[-67,-47],[-124,-28],[-43,11],[-80,-13],[-126,25],[-64,40],[-30,-10],[-99,-12],[-161,-38],[-155,-20],[-242,-21],[-103,-19],[-216,-7],[-311,48],[46,-59],[88,-49],[78,9],[53,-4],[41,-17],[61,-53],[14,-41],[-33,-67],[-80,-44],[-55,-7],[-115,53],[-89,-15],[-58,8],[-106,76],[-48,55],[-22,51],[-41,14],[-126,71],[-69,58],[-60,65],[-37,54],[-16,43],[-109,85],[-8,51],[-45,107],[46,57],[88,49],[-128,73],[-67,56],[-53,86],[-83,95],[-36,58],[-97,40],[-82,75],[-60,75],[-87,7],[-74,13],[-190,65],[-47,38],[-153,95],[-67,54],[-56,54],[-92,101],[-7,42],[-76,-1],[-72,38],[-85,1],[-61,34],[-34,48],[-31,18],[-53,54],[-30,59],[3,33],[62,73],[6,21],[47,39],[55,20],[111,14],[11,17],[66,46],[71,22],[38,47],[91,29],[28,41],[36,26],[-25,31],[-2,37],[-29,24],[-27,46],[1,25],[29,51],[-32,43],[11,67],[-83,45],[-22,33],[-41,29],[-17,54],[-44,46],[1,55],[62,72],[40,66],[-34,2],[-50,-39],[-89,-43],[-111,-7],[-192,34],[-107,30],[-90,41],[-83,90],[-42,66],[-69,169],[-23,11],[-51,56],[-6,27],[-103,42],[-58,44],[-21,42],[-58,51],[-13,44],[-30,39],[-24,61],[2,39],[-30,13],[-106,67],[-121,69],[-94,144],[-54,136],[14,95],[31,85],[-3,80],[38,110],[0,92],[13,41],[50,83],[41,41],[93,49],[28,170],[30,84],[-67,62],[-18,36],[6,31],[47,80],[74,80],[69,36],[90,2],[73,-12],[15,44],[69,52],[44,13],[44,55],[84,34],[28,41],[83,65],[15,31],[60,64],[150,142],[122,87],[47,115],[62,67],[-7,63],[59,69],[-7,49],[19,65],[43,45],[54,32],[101,12],[-41,45],[-10,66],[-21,69],[18,41],[40,29],[89,31],[62,11],[99,-16],[65,52],[56,10],[-48,55],[3,37],[-36,47],[7,37],[58,69],[90,25],[37,58],[-3,60],[35,47],[-11,19],[10,52],[-17,11],[-6,49],[28,32],[-21,59],[41,48],[79,39],[136,25],[-5,40],[217,206],[179,119],[158,67],[229,54],[191,28],[122,5],[56,-8],[130,-32],[99,-37],[74,-1],[81,-18],[55,-23],[124,-38],[71,-49],[45,-52],[169,-55],[35,-17],[166,-118],[153,-73],[211,22],[146,120],[76,28],[31,26],[32,88],[33,36],[72,53],[102,29],[105,7],[62,51],[414,464],[-49,6],[-132,-27],[-43,9],[-49,-8],[-109,20],[-49,39],[-57,21],[-40,28],[-19,32],[-66,76],[17,62],[47,48],[149,101],[169,55],[110,3],[52,-18],[45,9],[92,-2],[87,-30],[55,-7],[78,-59],[7,-42],[39,-44],[4,-29],[80,-23],[132,-24],[207,-45],[50,-48],[46,-65],[87,-35],[149,24],[43,19],[92,6],[90,-23],[144,36],[138,-9],[173,7],[70,26],[33,50],[38,29],[36,53],[94,39],[4,49],[66,71],[116,36],[43,41],[174,190],[15,58],[-5,36],[-63,110],[-39,143],[-101,133],[-15,45],[-43,55],[-39,145],[13,65],[-22,33],[1,183],[-163,119],[-117,94],[-116,82],[-137,56],[-46,-42],[-79,-27],[-96,0],[-57,16],[-119,58],[-160,66],[-369,161],[-41,6],[-330,146],[-120,42],[-202,-89],[-47,-40],[-24,-37],[-8,-70],[-41,-129],[-63,-67],[-58,-40],[-60,-15],[-82,-64],[-68,-39],[-106,-27],[-73,17],[-510,154],[-78,8],[-42,17],[-128,109],[-42,69],[-22,19],[-107,48],[-41,36],[-124,50],[-120,33],[-70,9],[-147,-5],[-100,27],[-58,-28],[-198,-25],[-322,26],[-135,-3],[-140,-23],[-173,-57],[-243,-91],[-213,-85],[-78,-15],[-165,-18],[-194,-13],[-227,59],[-251,72],[-197,31],[-25,0],[-321,60],[-267,23],[-153,24],[-206,38],[11,-70],[-39,-70],[-60,-50],[-32,-13],[-92,-7],[-94,19],[-67,38],[-57,54],[-5,66],[36,45],[78,44],[-111,54],[-139,81],[-80,37],[-26,28],[-130,249],[20,90],[-15,55],[26,74],[84,55],[-9,32],[-104,86],[-273,127],[-33,38],[-72,45],[7,42],[-85,29],[-158,91],[-98,92],[-50,68],[-18,40],[18,102],[53,101],[48,77],[49,48],[45,24],[-191,45],[-191,24],[-127,1],[-203,21],[-138,30],[-186,59],[-91,45],[-145,97],[-117,43],[-104,25],[-65,54],[-52,0],[-95,22],[-54,30],[-96,19],[-65,37],[-13,37],[-67,77],[-20,70]],[[16321,185518],[20,45],[58,57],[40,14],[132,4],[52,-20],[63,-57],[17,-63],[-11,-26],[-62,-39],[-94,-28],[-52,-2],[-67,17],[-59,32],[-32,33],[-5,33]],[[16160,185733],[1,233],[69,17],[104,-10],[95,-52],[22,-25],[9,-46],[29,-31],[-7,-47],[-29,-34],[-111,-58],[-98,-16],[-85,11],[1,58]],[[15601,155789],[23,72],[28,35],[48,33],[109,54],[-51,27],[-45,54],[-7,35],[9,57],[32,50],[58,44],[52,1],[86,-16],[23,25],[46,28],[66,13],[32,22],[18,64],[42,62],[58,35],[36,-1],[52,37],[-29,62],[12,96],[38,88],[83,98],[40,24],[50,59],[50,31],[29,2],[16,53],[52,38],[58,17],[181,82],[42,37],[-14,26],[-15,72],[31,68],[31,41],[50,42],[15,53],[30,23],[98,45],[25,2],[14,37],[40,36],[53,15],[102,49],[54,12],[96,36],[43,-2],[36,-20],[75,11],[52,-5],[53,-25],[80,-76],[112,7],[66,-9],[69,-45],[32,-57],[-5,-84],[-46,-85],[-49,-45],[23,-12],[58,25],[98,12],[63,36],[83,18],[21,30],[62,39],[31,5],[61,-10],[34,11],[17,40],[30,30],[81,35],[71,-9],[104,63],[-15,38],[-12,73],[21,68],[29,32],[94,47],[9,49],[19,23],[-42,149],[-84,64],[-25,29],[-14,94],[20,77],[28,29],[57,26],[3,47],[21,50],[26,22],[60,28],[47,53],[35,24],[71,15],[32,20],[82,8],[42,29],[47,12],[95,7],[55,41],[46,7],[100,-4],[285,-22],[77,7],[137,3],[61,-8],[50,-17],[28,-30],[69,-18],[56,41],[43,6],[63,-9],[0,24],[-50,42],[-42,65],[0,74],[24,36],[30,102],[70,65],[82,39],[11,22],[43,26],[73,23],[79,14],[46,-6],[32,-16],[81,-21],[75,-44],[31,0],[3,37],[38,78],[74,100],[64,34],[50,6],[71,-19],[58,17],[125,-4],[49,-14],[39,-33],[18,-32],[11,-57],[47,-51],[21,-35],[42,-7],[87,-26],[49,-47],[0,-48],[-17,-41],[-97,-79],[53,1],[43,35],[62,16],[28,19],[57,14],[131,-1],[56,67],[89,14],[14,26],[87,66],[166,64],[74,-10],[78,-33],[34,-32],[11,-41],[-3,-70],[-15,-46],[-36,-37],[-62,-26],[-35,-44],[-72,-12],[-38,-110],[-31,-18],[-24,-74],[-66,-34],[-44,-4],[-120,-32],[-87,-3],[-86,16],[-75,-4],[-134,-84],[-52,0],[-53,30],[-70,53],[-39,-10],[-99,-60],[-81,-33],[-68,-11],[-69,22],[-40,48],[-39,90],[-80,-15],[-67,-31],[-61,-1],[-62,-88],[-92,-18],[-117,-125],[8,-33],[28,-41],[24,-88],[-12,-63],[-72,-111],[-41,-32],[-40,-10],[-85,-63],[-12,-36],[-29,-35],[-27,-9],[-37,-44],[-42,-28],[-55,-12],[-18,-21],[-117,-45],[-38,-21],[-39,-5],[-54,-29],[-189,-207],[-68,-70],[-62,-23],[1,-17],[-38,-38],[-153,-108],[-62,-24],[-30,7],[-45,-25],[-49,2],[-99,-17],[-70,18],[-45,-23],[-53,-5],[-67,14],[-36,-16],[-82,-12],[-178,-96],[-9,-34],[-46,-54],[-51,-27],[-64,-10],[-61,5],[-48,-39],[-81,-99],[-116,-65],[-111,-27],[-121,-5],[-156,23],[-96,23],[-65,32],[-121,14],[-86,19],[-38,14],[-28,42],[-24,-26],[-36,-15],[-79,-17],[-39,-34],[9,-32],[-29,-74],[-42,-27],[-57,-19],[-40,7],[-53,-84],[-30,-36],[-37,-15],[19,-34],[3,-43],[-28,-48],[29,-46],[11,-47],[-9,-33],[-30,-41],[-103,-64],[-44,-18],[-72,-5],[-72,33],[-51,49],[-48,-20],[-28,-26],[0,-27],[-42,-42],[-69,-31],[-26,-37],[-84,-49],[-41,-4],[-91,13],[-36,-41],[-40,-23],[-45,-8],[-75,-46],[-42,-4],[-45,-47],[-37,-14],[-57,-8],[-151,-100],[-104,-42],[-62,4],[-38,15],[-44,39],[-11,60]],[[14730,164691],[13,65],[29,37],[37,25],[42,9],[87,3],[93,-19],[105,-13],[51,2],[80,15],[46,-3],[55,-26],[56,-5],[59,-40],[30,-51],[8,-62],[-11,-22],[-57,-67],[-93,-52],[-74,-78],[-86,-23],[-150,30],[-81,43],[-57,60],[-64,16],[-41,30],[-12,25],[-47,36],[-19,35],[1,30]],[[14461,166014],[13,42],[54,46],[74,28],[80,-2],[61,-34],[34,-73],[1,-32],[-60,-71],[-68,-31],[-40,-9],[-53,5],[-52,32],[-34,48],[-10,51]],[[14110,155750],[9,36],[32,34],[22,49],[41,52],[79,31],[-52,62],[-21,81],[7,43],[34,43],[96,65],[47,19],[63,4],[109,-17],[56,-16],[49,-55],[39,-6],[85,7],[7,23],[-24,56],[15,93],[-50,34],[-29,48],[16,101],[19,37],[74,50],[86,17],[45,-14],[65,-37],[40,-61],[52,-19],[42,-35],[38,-69],[8,-89],[-19,-55],[-31,-24],[-33,-76],[55,-86],[8,-39],[0,-76],[-8,-19],[7,-72],[-34,-38],[-45,-110],[-33,-24],[-68,-23],[-55,11],[-74,36],[-51,50],[-50,11],[-43,-38],[-43,-14],[-113,-5],[-10,-61],[-46,-55],[-34,-29],[-85,-30],[-138,1],[-62,14],[-58,28],[-21,37],[-15,119]],[[13717,166029],[51,74],[64,55],[42,19],[43,1],[50,25],[46,8],[69,-4],[46,-15],[63,34],[48,43],[51,16],[78,2],[69,-17],[77,-72],[7,-29],[-28,-77],[-53,-54],[-27,-12],[4,-53],[-53,-75],[-108,-74],[-68,-65],[-56,-34],[-58,-14],[-16,-61],[-76,-63],[-71,-15],[-70,0],[-68,38],[-34,79],[0,37],[26,41],[78,51],[-83,60],[-38,78],[14,28],[-19,45]],[[13081,155311],[36,147],[23,62],[37,46],[73,45],[23,30],[54,45],[60,20],[81,46],[79,5],[105,-22],[32,-24],[55,-25],[43,-71],[10,-38],[1,-82],[-55,-94],[-42,-55],[-63,-44],[-120,-33],[-35,-2],[-101,-92],[-40,-24],[-47,-6],[-55,11],[-31,31],[-62,20],[-40,38],[-23,45],[2,21]],[[12345,155131],[10,78],[20,52],[48,43],[50,35],[50,20],[51,9],[67,96],[42,32],[61,2],[48,-8],[63,-21],[75,-54],[5,-42],[-23,-86],[-49,-63],[-74,-32],[-5,-57],[-34,-86],[-58,-70],[-52,-38],[-32,-12],[-59,-6],[-48,5],[-100,45],[-30,43],[-26,85],[0,30]],[[11461,180661],[16,115],[31,93],[24,17],[8,49],[23,38],[47,44],[-8,71],[47,88],[-8,60],[-24,38],[15,32],[47,50],[63,38],[97,-4],[63,18],[90,-24],[108,-76],[35,-56],[10,-60],[-24,-66],[448,-126],[136,-19],[324,-77],[76,28],[101,65],[223,109],[77,24],[58,0],[182,69],[56,5],[271,0],[84,-24],[118,-59],[102,-82],[118,-83],[68,-59],[34,-94],[59,-128],[123,-45],[87,-38],[88,-11],[213,-13],[51,-18],[41,-31],[94,-55],[45,-48],[131,-18],[217,-38],[314,-7],[239,-31],[281,-45],[98,-23],[87,-45],[14,-39],[-13,-83],[-27,-49],[-8,-51],[-42,-57],[-49,-43],[-41,-63],[-64,-63],[58,-52],[22,-57],[-28,-64],[-100,-67],[-62,-24],[-103,5],[-77,27],[-36,35],[-10,65],[38,58],[-166,58],[-61,8],[-119,-1],[-139,-10],[-81,-21],[-67,-66],[-68,-57],[-61,-31],[-70,-21],[37,-89],[12,-61],[-26,-61],[-40,-34],[-100,-19],[-42,-50],[-62,-35],[-75,-6],[-140,26],[-137,49],[-38,19],[-41,44],[2,82],[-22,39],[-10,53],[-28,40],[-80,62],[-125,73],[-78,36],[-54,37],[-39,-7],[-79,6],[-217,27],[-49,21],[-55,54],[-10,53],[27,39],[-88,94],[-120,84],[-128,55],[-346,101],[-145,34],[-134,11],[-115,-8],[-53,-34],[-104,-19],[-11,-27],[-123,-102],[-46,-16],[-72,-7],[-114,-58],[-58,-11],[-73,4],[-81,28],[-42,-3],[-98,28],[-46,32],[-63,16],[-83,35],[-44,5],[-106,63],[-26,43],[-46,38],[-73,111],[-20,67],[-34,42],[17,111]],[[10255,154630],[12,28],[-2,42],[20,46],[31,37],[76,133],[43,26],[92,32],[101,54],[56,15],[33,-6],[44,10],[68,-26],[37,-31],[57,-14],[74,-47],[40,-56],[-4,-34],[25,-64],[0,-25],[-28,-46],[-34,-28],[-25,-6],[-34,-37],[-75,-31],[-67,-55],[-78,-7],[-36,-19],[-39,-5],[-56,-35],[-167,-2],[-94,27],[-50,54],[-20,70]],[[9995,173002],[29,31],[147,77],[67,15],[52,-8],[77,-50],[24,-84],[-34,-51],[-61,-55],[-106,-33],[-60,-4],[-76,23],[-52,46],[-15,31],[8,62]],[[9449,174032],[22,51],[43,30],[0,41],[51,50],[92,38],[65,6],[73,-17],[36,-20],[43,-51],[15,-35],[14,-101],[87,-15],[80,-36],[29,-35],[7,-129],[30,-44],[56,-57],[114,-79],[249,-102],[48,-9],[58,16],[109,-6],[72,-20],[44,-25],[65,-66],[87,-56],[87,-35],[73,-51],[20,-30],[-18,-61],[-36,-37],[-73,-48],[-90,-22],[-33,7],[-44,-13],[-59,14],[-72,37],[-15,34],[-30,8],[-73,-19],[-66,8],[-43,-7],[-66,-30],[-49,1],[-89,26],[-42,19],[-57,42],[-46,11],[-91,41],[-72,-1],[-98,49],[-24,30],[-9,86],[-86,51],[-128,65],[-44,5],[-78,35],[-37,56],[-4,35],[22,59],[-10,38],[14,61],[22,25],[-65,71],[-80,71],[0,40]],[[6310,154557],[32,61],[47,29],[87,20],[37,-14],[67,-53],[27,-52],[0,-26],[-44,-73],[-60,-42],[-79,-11],[-38,17],[-45,48],[-28,68],[-3,28]],[[5704,154442],[9,36],[39,50],[73,38],[64,2],[57,-23],[58,-51],[25,-54],[-1,-24],[-52,-90],[-28,-28],[-49,-26],[-42,-5],[-77,35],[-58,56],[-17,48],[-1,36]],[[2645,153823],[14,46],[53,70],[25,21],[53,19],[59,-15],[76,-32],[28,-28],[31,-67],[0,-75],[-40,-57],[-65,-40],[-57,-16],[-74,8],[-59,52],[-36,54],[-8,60]],[[1454,153745],[14,51],[81,107],[30,16],[51,8],[61,20],[79,17],[32,-2],[35,-25],[51,18],[39,-6],[96,3],[53,-16],[36,-27],[39,-56],[49,-33],[12,-41],[106,-4],[38,-14],[49,20],[141,18],[59,-9],[31,-21],[30,-44],[9,-71],[-9,-49],[-30,-60],[24,-16],[43,9],[41,29],[68,11],[35,44],[27,18],[67,4],[35,-13],[52,10],[16,45],[25,16],[-3,116],[27,107],[29,32],[67,46],[61,15],[112,-22],[89,-35],[37,-23],[15,-27],[37,-30],[21,-37],[5,-81],[-13,-31],[7,-35],[51,51],[31,-2],[34,58],[34,121],[44,83],[33,32],[38,17],[101,10],[65,-4],[56,48],[95,38],[95,-13],[49,-26],[34,-31],[21,-54],[9,-50],[-6,-41],[32,-45],[8,-53],[29,-13],[100,7],[41,-5],[22,14],[89,-8],[42,18],[-16,72],[9,17],[-29,51],[-3,42],[-20,42],[-1,46],[-19,51],[23,88],[85,115],[87,38],[33,4],[106,-29],[84,3],[56,-24],[23,-20],[17,-46],[49,-38],[12,-32],[51,14],[66,-1],[37,-26],[28,-86],[54,-19],[61,-43],[41,11],[122,-20],[38,2],[20,-13],[61,2],[18,-8],[49,42],[75,34],[46,0],[45,-16],[44,63],[68,33],[23,-4],[47,30],[37,8],[66,-5],[60,33],[60,12],[83,-2],[29,39],[39,26],[104,-1],[45,42],[62,22],[93,4],[26,-24],[36,10],[48,-14],[58,31],[44,10],[21,43],[35,45],[44,36],[80,19],[45,-10],[56,71],[45,19],[32,-1],[-52,115],[20,72],[47,43],[41,14],[92,8],[6,33],[49,72],[31,11],[43,56],[25,14],[91,2],[16,-6],[92,38],[84,2],[35,-9],[71,-53],[55,-14],[56,-35],[15,-28],[72,-37],[27,-42],[2,-71],[30,-65],[-3,-59],[-27,-60],[-53,-64],[-15,-37],[-25,-29],[-15,-66],[85,3],[59,34],[43,9],[49,-4],[87,-36],[84,-6],[35,8],[112,45],[81,14],[35,-19],[92,22],[43,-14],[37,-36],[23,-53],[57,-5],[37,6],[61,-6],[52,-27],[42,15],[41,0],[49,-13],[76,14],[85,-3],[80,-13],[155,-12],[48,-7],[30,20],[47,0],[45,-15],[38,-29],[21,-30],[14,-53],[-30,-67],[-59,-36],[-13,-29],[-60,-44],[-42,-12],[-42,3],[-42,17],[-72,-13],[-34,9],[-15,-19],[3,-56],[-11,-43],[-29,-36],[-41,-21],[-59,-9],[-58,32],[-53,65],[-3,47],[-26,-8],[-77,0],[-62,-51],[-78,-8],[-54,12],[-94,-32],[-49,1],[-105,25],[-51,43],[-99,0],[-47,13],[-39,-18],[-65,-1],[-61,-20],[-61,3],[-128,31],[-56,23],[-50,33],[-38,43],[-47,10],[-149,-19],[-48,9],[-109,-18],[-42,14],[-58,-22],[-15,-60],[-42,-69],[-45,-27],[-70,-16],[-30,5],[-61,-26],[-83,13],[-66,24],[-29,23],[-59,-23],[-23,1],[-66,-27],[-90,-4],[-96,40],[-42,0],[-69,30],[-89,-24],[-29,-20],[-77,-29],[-88,-14],[-69,2],[-73,18],[-91,-4],[-52,15],[-110,-22],[-66,24],[-38,-37],[-58,-38],[-57,1],[-38,-20],[-45,-1],[-23,12],[-20,-26],[-94,-24],[-47,-2],[-32,16],[-31,-31],[-58,-27],[-31,-30],[-64,-21],[-78,-8],[6,-49],[-26,-56],[-55,-45],[-51,-4],[-49,15],[-21,-56],[-60,-48],[-60,-16],[-62,17],[-26,-26],[-50,-9],[-40,-32],[-74,-16],[-42,10],[-35,21],[-10,-25],[-59,-63],[-98,-32],[-80,-6],[-55,12],[-116,-38],[-25,-27],[-35,-19],[-39,2],[-61,-61],[-73,-40],[-41,-2],[-19,-23],[-56,-36],[-92,-14],[-70,-30],[-45,-2],[-58,11],[-43,-38],[-37,-20],[-82,2],[-45,15],[-70,47],[-41,62],[-9,65],[3,50],[14,51],[47,91],[33,25],[36,45],[31,22],[-38,43],[-15,59],[15,60],[-4,20],[-62,-35],[14,-93],[-14,-48],[4,-31],[-21,-46],[-52,-90],[-28,-25],[-46,-23],[-57,-1],[-32,-10],[-71,-38],[-83,-11],[-57,20],[-52,-2],[-34,15],[-49,66],[-77,-69],[-45,-19],[-51,-1],[-64,19],[-14,-39],[-63,-37],[-70,-19],[-83,8],[-44,20],[-36,39],[-2,22],[-50,24],[-42,-34],[-13,-33],[-3,-79],[-37,-60],[-54,-35],[-79,-4],[-68,25],[-48,33],[-77,30],[-51,35],[-11,20],[-65,15],[-91,55],[-22,63],[-1,73],[18,26],[0,39],[44,60],[40,24],[-20,38],[-59,36],[-57,23],[-48,30],[-66,77],[-15,30],[-1,54]],[[1260,152837],[13,46],[28,31],[71,35],[138,8],[53,-25],[58,-61],[23,-50],[-6,-59],[-11,-30],[-31,-28],[-49,-19],[-87,-5],[-44,22],[-35,-2],[-52,16],[-35,29],[-34,63],[0,29]],[[431,153512],[28,122],[38,56],[40,35],[71,35],[92,-1],[91,-42],[61,-46],[32,-56],[36,-81],[-26,-100],[-59,-71],[-37,-23],[-74,-24],[-89,-3],[-64,39],[-19,23],[-54,36],[-55,53],[-12,48]],[[129,153040],[-1,43],[14,33],[43,53],[56,26],[35,5],[56,-16],[50,-34],[61,-76],[47,51],[46,35],[73,21],[27,-5],[92,-41],[43,61],[25,19],[103,31],[41,1],[65,-23],[24,7],[60,-16],[56,-44],[22,0],[60,-29],[25,-26],[23,-52],[-8,-59],[-46,-42],[-64,-26],[-85,-55],[-38,-2],[-70,22],[-27,18],[-39,-17],[-47,-39],[-38,-16],[-134,-18],[-57,14],[-101,70],[-40,36],[-36,53],[-49,-69],[-36,-22],[-81,-23],[-52,-3],[-52,20],[-33,44],[-13,38],[0,52]],[[1,152363],[8,35],[28,50],[38,41],[52,28],[68,7],[22,86],[25,19],[43,68],[71,56],[56,10],[88,-30],[64,-45],[33,-33],[27,-45],[17,-76],[-14,-80],[-37,-43],[-70,-33],[-44,-46],[-72,-35],[-78,-106],[-78,-71],[-100,-9],[-74,20],[-37,44],[-20,58],[-17,92],[1,38]],[[88179,145426],[608,199],[0,-293],[17,-40],[53,-64],[82,-59],[99,-90],[67,-15],[13,-16],[16,-63],[7,-143],[11,-67],[29,-57],[44,-51],[31,-20],[86,-32],[33,-43],[26,-80],[63,-89],[5,-33]],[[89469,144370],[-17,-57],[-3,-40],[34,-83],[-19,-45],[-6,-37],[-34,-72],[9,-95],[-3,-37],[12,-65],[-12,-56],[16,-42],[-5,-36],[-48,-38],[-14,-46],[-42,-76],[-15,-48],[-3,-66],[-21,-52],[16,-60],[-20,-66],[24,-46],[24,-11]],[[89342,143196],[111,-82],[12,-119]],[[89465,142995],[-7,-137],[-41,0],[-1,25],[-65,0],[0,135],[-87,-1],[-64,-76],[-34,-1],[-84,97],[-56,-48],[-34,-57],[16,-43],[-59,-95],[-25,21],[-26,44],[-46,46],[-30,-22],[-26,-37],[-39,-29],[-45,6],[-4,41],[-38,17],[2,39],[-54,5],[-40,-7],[-55,18],[-49,-8],[-31,15],[-69,71],[-24,-25],[17,-33],[9,-46],[37,-32],[6,-19],[3,-83],[-12,-60],[23,-23],[20,-42],[-200,1],[3,-138],[-2,-65],[67,-2],[-3,-391]],[[88318,142056],[0,-78],[-143,-1],[-162,1],[-35,-4],[-363,6],[-257,-3],[-170,-4],[-30,3],[-267,3],[-181,0]],[[86710,141979],[-21,116],[-23,71],[-39,38],[-20,62],[-5,89],[13,100],[-4,137],[-11,87],[-35,119],[2,30],[-37,119],[-17,83],[-47,31],[-24,34],[-13,76],[-50,48],[-35,90],[-13,56],[4,49],[20,32],[-22,64],[6,60],[-35,217],[-19,37],[-12,81],[-54,-13],[-39,9],[-47,31],[-26,53],[-2,37],[11,35],[37,61],[-61,78],[-12,41],[-23,37],[-51,43],[-18,47],[-34,12],[-41,32],[-29,41],[-24,61],[-52,52],[-10,38],[4,39],[-52,41],[-13,25],[-6,63],[9,42],[-6,46],[24,54],[1,60],[-30,63],[-31,35],[-30,67],[-9,36],[5,48],[28,44],[36,24],[38,10],[-16,49],[7,52],[39,54],[-14,65],[-41,47],[-32,96],[-1,30],[15,44],[31,34],[66,31],[-30,35],[-10,59],[14,31],[21,0],[391,-156],[197,-78],[571,-233],[518,-132],[224,-37],[463,138]],[[86478,130889],[184,1],[176,-4],[156,-2],[263,0],[32,-2],[135,4],[112,-4],[51,11],[168,2]],[[87755,130895],[-31,-42],[7,-64],[-33,-57],[1,-37],[-19,-26],[-44,5],[-6,-26],[-26,-30],[-42,22],[-18,-27],[2,-45],[-17,-7],[-34,-44],[-33,-18],[22,-61],[27,-17],[-24,-34],[15,-98],[26,-29],[-11,-46],[3,-34],[-35,-51],[1,-39],[14,-36],[-49,-51],[-13,-45],[58,-22],[1,-33],[-19,-34],[23,-30],[42,-11],[27,-134],[36,-75],[-15,-38],[-42,-27],[15,-25],[-26,-34],[-9,-31],[252,1],[43,-38],[-13,-29],[8,-59],[22,-24],[12,-57],[-9,-25],[23,-14],[6,-61],[-19,-30],[27,-23],[4,-31],[29,-38],[10,-35],[27,-26],[19,-44],[43,27],[39,-27],[7,-23],[34,5],[47,-48],[26,-72],[19,-32],[66,-14],[16,13],[94,3],[38,-8],[20,-36],[26,-5],[39,-25],[29,-99],[62,21],[52,-3],[46,-45],[33,13],[20,39],[5,36],[-13,14],[-26,82],[-30,-4],[-34,22],[-11,24],[-4,51],[21,27],[-8,34],[21,29],[-17,65],[18,15],[24,-19],[61,54],[42,10],[44,-10],[27,21],[22,-17],[47,36],[7,29],[37,26],[46,15],[0,29],[20,32],[87,38],[17,31],[0,46],[29,17],[57,-14],[15,25],[-6,52],[25,20],[28,-14],[25,-47],[50,4],[0,-19],[40,-34],[-35,-24],[4,-32],[-24,-28],[-1,-66],[9,-23],[-15,-22],[9,-22],[-16,-30],[40,-41],[-1,-39],[37,-7],[32,-22],[8,-111],[-13,-50],[-17,1],[-40,-25],[-32,5],[-41,-36],[22,-23],[-3,-112],[-18,-28],[-24,3],[-24,-43],[-46,-21],[-14,-42],[7,-40],[-15,-44],[18,-47],[-14,-39],[-25,-16],[-22,-75],[-24,-8],[-17,-36],[16,-37],[-4,-52],[-18,-32],[-47,-33],[-32,-44],[21,-35],[-25,-69],[-47,-13],[17,-55],[23,-38],[-15,-30],[42,-12],[-1,-43],[27,-74],[-9,-26],[-38,13],[-98,-79],[5,-21],[-17,-40],[-84,-22],[-1,-33],[-39,-21],[-28,-30],[-12,-43],[-54,-11],[-9,-33],[-29,-23],[-68,-7],[3,-51],[-34,-29],[-2,-27],[-38,-40],[-26,-15],[-13,-37],[10,-45],[-10,-18],[11,-63],[39,-38],[29,4],[46,-29],[22,-41],[-8,-41],[16,-66],[-22,-33],[-5,-62],[29,-14],[-8,-21],[20,-70],[-19,-52],[32,-41],[5,-64],[-3,-78],[26,-28],[13,-34],[0,-61],[22,-21],[-11,-43],[-46,-21],[-2,-91],[-15,-55],[21,-28],[5,-73],[9,-8]],[[88669,125801],[-1,-115],[41,0],[-1,-91],[32,0],[3,-199],[10,-28],[-2,-106],[-7,-83],[-73,4],[0,-33],[-140,5],[-60,-35],[1,-118],[-16,0],[-3,-104],[29,0],[-1,-67],[13,-33],[17,-1],[0,-64],[29,-33],[0,-102],[24,1],[1,-48],[15,-2],[-1,-48],[-28,1],[-18,-68],[-34,-77],[-51,0],[0,-81],[-15,0],[0,-66],[-11,-34],[2,-54],[15,-17],[29,-1],[14,-36]],[[88482,124068],[0,-64],[45,-33],[0,-23],[65,1],[14,-33],[0,-84],[25,-49],[20,0],[0,-58],[59,3],[28,-14],[-1,-34],[30,0],[56,-34],[0,-19],[29,-18],[20,-31],[20,0],[57,-65],[18,-10],[0,-38],[21,-24],[24,-55],[13,-7],[2,-43],[15,-7],[14,-42],[31,-11],[41,0],[11,-40],[22,-33],[2,-57],[-16,-30],[9,-32],[-28,-55],[25,-47],[10,-47],[-5,-37],[-32,-12],[-16,-40],[-24,41],[-29,25],[-7,-42],[-33,-46],[-38,-25],[-8,-26],[-47,52],[-24,16],[-48,0],[-7,-17],[1,-58],[-27,-16],[14,-42],[-8,-59],[41,-59],[-1,-30],[56,-50],[-1,-29],[33,-44],[30,-20],[6,-55],[69,-56],[16,-21],[21,14],[39,-16],[30,-25],[23,6],[48,-39],[-17,-28],[32,-26],[-2,-38],[12,-30],[20,3],[11,-40],[18,-21],[-19,-25],[15,-30],[34,-38],[10,-42],[85,-39],[165,-59],[-45,-57],[-27,-49]],[[89527,121706],[-77,-123],[1,-38],[14,-64]],[[89465,121481],[22,-179],[-121,-70],[-45,6],[-10,-22],[-129,0]],[[89182,121216],[-32,29],[-55,32],[-13,16],[-64,-7],[-57,28],[-42,43],[-16,40],[-39,17],[-39,41],[-19,62],[-61,66],[-20,8],[-18,-41],[-29,-30],[-33,-13],[-110,2],[-43,14],[-28,24],[-25,58],[-2,58],[6,24],[27,40],[64,205],[14,56],[-20,35],[-18,77],[-21,42],[-77,105],[-16,14],[-37,67],[-11,35],[11,80],[-25,36],[-23,62],[-37,34],[-50,90],[-25,20],[-52,16],[-59,49],[-27,46],[-59,27],[-37,62],[-15,39],[-49,67],[-8,20],[-41,54],[-22,55],[-29,30],[-34,68],[-62,44],[-45,40],[-22,53],[-64,41],[-43,61],[-35,29],[-16,31],[-40,41],[-31,68],[-74,84],[-34,108],[-6,48],[20,66],[33,35],[21,9],[2,75],[-26,66],[-12,52],[-34,81],[-3,32],[-46,98],[-12,38],[-6,73],[-15,35],[-26,101],[-8,67],[-19,42],[-6,87],[10,35],[-3,45],[9,37],[-1,63],[21,69],[10,59],[24,15],[28,80],[-23,67],[-6,58],[3,65],[-9,100],[-37,33],[-24,52],[-13,105],[5,54],[-15,45],[-45,35],[-29,39],[-25,50],[-15,54],[-42,39],[-41,87],[-68,95],[-47,15],[-23,23],[-28,51],[-7,31],[2,65],[-20,31],[-76,37],[-41,27],[-65,93],[-25,10],[-72,68],[-93,98],[-45,63],[-12,69],[2,51],[14,69],[-14,47],[-3,60],[-24,27],[-53,105],[-5,42],[9,45],[37,77],[8,85],[20,44],[36,112],[68,168],[41,90],[68,138],[4,29],[26,44],[54,109],[21,51],[28,86],[27,102],[24,118],[-35,28],[-30,64],[-11,56],[-26,62],[-8,97],[13,56],[39,45],[38,16],[30,121],[8,67],[17,54],[-66,12],[-28,19],[-25,35],[-10,59],[11,47],[37,43],[37,16],[42,-1],[34,-16],[11,116],[-5,74],[-34,127],[-4,56],[-31,35],[-13,36],[-3,79],[-17,26],[-16,52],[-1,91],[-39,31],[-65,35],[-35,33],[-48,23],[-61,68],[-36,21],[-21,25],[-53,95],[-2,33],[9,41],[37,59],[16,9],[57,2],[55,-27],[28,-37],[43,1],[14,101],[-22,39],[-3,40],[11,45],[-6,30],[-29,54],[-34,12]],[[88945,139349],[-41,-54],[-4,-30],[42,-81],[75,-64],[30,-17],[23,-28],[9,-35],[-45,3],[-60,-17],[0,-60],[24,0],[25,26],[8,-55],[-24,-5],[0,-37],[-27,-39]],[[88980,138856],[-6,-15],[0,-242],[-97,-1],[0,34],[-64,-1],[0,-67],[-34,1],[1,-149],[-52,9],[-23,24],[-51,0],[-31,41],[-18,-29],[-35,-30],[8,-53],[-6,-29],[-66,-8],[-16,-22],[16,-28],[33,2],[20,-93],[-34,2],[2,-44],[20,-11],[29,-45],[-34,-38],[-28,-7],[-52,-52],[-151,-1],[-448,0],[-528,3],[0,323],[506,1],[1,305],[-3,198],[-34,0],[1,33],[34,0],[5,101],[30,-1],[-2,69],[33,0],[-1,33],[33,0],[-1,34],[65,-1],[0,68],[65,-1],[-1,33],[34,0],[-1,33],[-65,1],[0,33],[-62,-2],[0,34],[-68,1],[1,34],[-34,0],[1,33],[-33,0],[1,33],[-33,0],[0,69],[195,-1],[0,164],[-195,0],[0,-10],[-129,0],[-105,-5],[-135,0],[0,23],[-545,0]],[[86893,139642],[17,33],[-2,44],[28,58],[-6,16],[-6,97],[-33,18],[-32,42],[-9,41],[12,60],[22,32],[49,28],[50,55],[8,41],[-11,126],[-21,79],[-43,110],[-26,47],[-34,9],[-55,34],[-37,61],[-20,74]],[[86744,140747],[195,7],[1,76],[32,-9],[18,-42],[43,-11],[29,-23],[43,-49],[93,-9],[89,34],[58,10],[58,35],[85,-44],[61,20],[97,-7],[77,11],[58,24],[34,-4],[51,-45],[31,-47],[-5,-111],[64,-62],[30,-19],[144,-4],[105,64],[74,38],[79,-8],[17,-18],[85,-55],[12,-14],[62,-32],[66,-67],[92,-49],[31,-54],[10,-67],[34,-39],[30,-78],[37,-46],[12,-66],[-8,-45],[21,-66],[20,-39],[-1,-54],[-16,-44],[1,-35],[41,-68],[13,-50],[2,-57],[-20,-80],[-3,-45],[19,-55]],[[86701,136159],[129,-1],[259,2],[0,13],[260,1],[0,76],[-64,-2],[-1,68],[129,2],[-1,35],[32,-1],[-8,67],[0,101],[194,-1],[2,155],[-2,351],[-9,-1],[1,162],[473,-3],[11,-25],[34,-23],[32,-7],[49,-71],[-18,-41],[24,-13],[56,1],[29,-11],[95,4],[40,16],[8,25],[-30,43],[-38,3],[-7,32],[-39,47],[-7,30],[27,33],[-1,32],[44,-7],[69,-24],[32,-3],[0,-29],[33,1],[11,-29],[-8,-33],[18,-25],[51,24],[10,34],[19,19],[36,-12],[57,67],[38,15],[7,16],[69,31],[36,44],[31,8],[54,-15],[45,4],[9,-21],[37,-12],[111,32],[34,-25],[42,-6],[12,-18],[53,-2],[18,-31],[27,-9],[27,12],[80,3],[81,-9],[53,13],[49,3],[47,-14],[24,-41],[40,-34],[27,-53],[49,-4],[96,67],[47,-41],[13,0],[106,-50],[39,3],[41,15],[28,-22],[268,0]],[[90470,137100],[-10,-61],[5,-42],[-21,-52],[28,-53],[-14,-89],[-22,-46],[12,-44],[-22,-14],[-37,-44],[-5,-53],[13,-55],[-10,-37],[5,-25],[-4,-73],[15,-66],[-11,-29],[10,-24],[-5,-34],[6,-40],[-6,-31],[25,-15],[18,-53],[21,-2],[18,-27],[17,-68],[-12,-25],[20,-50],[3,-43],[-20,-45],[16,-18],[9,-59],[-7,-56],[-26,-36],[-21,-52],[-26,-1],[-26,-32],[21,-61],[-9,-32],[-51,-82],[3,-26],[-18,-90],[-35,-8],[-19,16],[-57,-34],[11,-17],[-48,-37],[-19,-48],[3,-104],[11,-62],[-2,-59],[-21,-37],[11,-30],[-2,-42],[13,-23],[-17,-33],[-13,-61],[8,-50],[20,-32],[-50,0],[-4,-24],[-88,-56],[-32,-32],[-33,-2],[-22,-31],[-27,-15],[-17,-39],[-10,-56],[24,-15],[5,-30],[-5,-51],[-24,-58],[36,-35],[20,9],[23,-31],[61,-56],[4,-43],[53,-48],[20,-41],[-5,-56],[22,-24],[-16,-37],[34,-34],[12,-30],[-25,-51],[-30,-35],[-36,-25],[9,-20],[-10,-38],[-24,-44],[2,-36],[-21,-11],[2,-39],[-16,-21],[-27,-96],[1,-21],[28,-21],[-329,1],[1,-164],[-187,-1],[0,-30],[-31,0],[0,-33],[-31,0],[0,-34],[-31,0],[-1,-33],[-157,-2],[0,-34],[-32,0],[1,-32],[-32,1],[0,-36],[-60,5],[0,-38],[-62,0],[0,-33],[-31,0],[0,-34],[-31,0],[0,-34],[-31,0],[0,-32],[-61,11],[0,-46],[-31,-67],[-93,3],[0,-15],[-153,0],[-33,-33],[-59,-2],[0,-16],[-162,-1],[-62,10],[-1,-43],[-45,0],[-47,-48],[-31,-16],[-1,-222],[5,-254],[-32,-42],[-77,55],[-30,-8],[-44,-28],[-60,9],[-5,-35],[-34,-24],[-18,-129],[-61,-45],[11,-39],[25,-16],[10,-32],[49,-20],[26,16],[32,-14],[41,11],[2,-27],[36,1],[33,-28],[93,-99],[1,-376],[-3,-44],[0,-243]],[[88207,130902],[-184,-11],[-137,6],[-131,-2]],[[86478,130889],[-32,42],[-41,30],[-24,48],[-30,32],[-16,49],[-10,76],[-10,32],[-2,76],[-29,54],[-31,36],[-19,60],[-3,47],[11,65],[-19,29],[-5,82],[11,28],[-16,33],[-6,55],[10,46],[-60,29],[-22,23],[-30,58],[-8,46],[5,33],[31,51],[46,26],[10,31],[35,43],[39,23],[-22,48],[-1,41],[10,54],[-55,11],[-35,29],[-16,29],[-11,64],[6,27],[-27,20],[-37,62],[-91,-8],[-35,10],[-28,23],[-28,51],[0,73],[31,47],[14,49],[26,34],[16,50],[36,36],[10,36],[38,51],[30,18],[30,67],[36,111],[40,158],[-18,80],[1,51],[16,43],[38,37],[26,95],[-10,44],[2,60],[23,53],[-30,47],[-4,94],[25,48],[23,19],[9,34],[24,30],[72,39],[57,144],[24,81],[50,199],[26,144],[-8,56],[12,40],[19,27],[41,253],[39,330],[10,107],[-6,57],[12,37],[15,132],[-7,111],[17,43],[4,120],[6,34],[-7,107]],[[88980,138856],[43,5],[12,-29],[89,0],[6,20],[-25,38],[30,8],[201,0],[0,-17],[-31,-33],[10,-54],[-6,-52],[-35,14],[-30,-24],[-4,-30],[35,-6],[-17,-48],[20,-2],[37,-47],[0,-52],[-64,-1],[8,-21],[-27,-143],[10,-47],[-5,-29],[54,-24],[24,-47],[17,-1],[30,-36],[20,20],[60,11],[91,0],[40,-8],[48,-32],[30,-7],[36,21],[5,25],[57,0],[10,61],[-17,71],[41,-31],[0,66],[64,2],[0,-35],[41,11],[20,23],[37,18],[0,105],[36,4],[27,-10],[52,-45],[0,-40],[81,3],[2,-184],[143,1],[25,-29],[16,30],[213,-1],[28,-24]],[[90568,138224],[33,-44],[8,-44],[64,-29],[21,-56],[-11,-66],[-40,3],[-54,-41],[-4,-30],[-41,-9],[-35,15],[-19,-13],[-4,-45],[-33,-8],[5,-76],[18,-51],[-4,-50],[52,11],[26,-43],[-5,-16],[51,-30],[-32,-30],[-29,-62],[18,-32],[-36,-63],[-73,-20],[-13,-50],[36,-39],[39,-2],[-2,-29],[-28,-30],[-20,-41],[2,-43],[22,-46],[-10,-15]],[[86701,136159],[9,92],[28,134],[10,108],[6,101],[-16,54],[2,56],[26,64],[5,53],[13,46],[-26,46],[0,40],[21,48],[-23,51],[2,63],[19,46],[-15,58],[1,78],[13,98],[-2,61],[7,26],[31,40],[29,146],[19,169],[-18,57],[6,62],[19,72],[26,52],[24,76],[8,91],[-23,62],[7,54],[17,29],[6,61],[-10,56],[-43,56],[-5,56],[27,77],[27,21],[11,88],[-36,46],[-9,59],[15,49],[3,59],[42,55],[-15,58],[11,114],[20,46],[7,103],[2,73],[-22,27],[-56,45],[-16,54],[8,47]],[[89465,142995],[52,27],[99,0]],[[89616,143022],[12,-13],[55,8],[-1,34],[102,1],[17,-35],[0,-59],[25,-25],[1,-26],[-42,-4],[0,-82],[-28,-32],[-24,-3],[1,-40],[-50,1],[-2,-168],[-163,0],[-37,34],[-1,-169],[-176,3],[11,-15],[1,-53],[-40,-2],[-4,-64],[41,-30],[13,-22],[36,-18],[9,-93]],[[89372,142150],[3,-23],[-15,-42],[-30,5],[-15,-19],[-43,7],[-8,67],[-27,-1],[-7,-27],[-36,-24],[-56,10],[-27,24],[-24,0],[-65,42],[-60,-15],[-35,-19],[-90,-9],[-176,-60],[-100,-67],[-60,1],[-60,44],[-123,12]],[[88558,146691],[341,-158],[16,-14],[45,-69],[24,-50],[27,-26],[37,-98],[51,-32],[49,-22],[45,-3],[61,15],[-26,60],[-24,28],[7,122],[98,0],[23,26],[-2,124],[16,9],[4,50],[30,6],[9,-31],[73,-8],[2,-26],[36,-9],[17,-33],[0,-41],[34,-22],[25,7],[100,-76],[9,-55],[40,-37],[72,-20],[15,-17],[-10,-75],[-22,-48],[13,-42],[-3,-137],[38,1],[-13,-58],[-17,-20],[-73,7],[-65,-35],[-6,-49],[-18,-36],[-38,1],[3,-53],[-28,-25],[2,-64],[111,0],[0,33],[35,-1],[72,-58],[33,-59],[-10,-35],[-42,-28],[14,-23],[27,-6],[71,-100],[10,-60],[-124,0],[25,-38],[20,-63],[24,-12],[7,-42],[35,14],[33,-1],[20,24],[6,34],[44,-26],[-1,-41],[-25,-26],[15,-16],[-7,-34],[6,-276],[-26,-10],[2,-56],[-22,-35],[-69,2],[-13,-71],[20,-3],[6,-58],[-18,0],[0,-56],[-34,-44],[-25,0],[-8,-25],[8,-67],[21,-13],[3,-54],[-35,0],[-22,-25],[0,-50],[-43,0]],[[89719,144253],[-84,1],[-14,25],[-4,87],[19,35],[-5,42],[-112,5],[-22,-25],[-28,-53]],[[88179,145426],[210,321],[-71,71],[-92,220],[-51,214],[-36,119],[318,132],[100,40],[1,148]],[[89235,121028],[137,0],[53,10],[39,-26],[-13,-25],[33,-19],[218,0]],[[89702,120968],[99,-177]],[[89801,120791],[160,-289]],[[89961,120502],[57,-67]],[[90018,120435],[-24,-27],[-24,1],[-43,-27],[-59,62],[-40,3],[-36,-14],[-37,26],[-25,-30],[-29,-1],[6,-57],[-7,-34],[-33,-28],[22,-23],[28,8],[23,-30],[-21,-25],[21,-36],[2,-33],[-26,-14],[-65,13],[-16,-25],[-23,-8],[-23,-49],[-39,10],[-34,-16],[-8,-22],[-105,-1]],[[89403,120058],[7,82],[-32,88],[-25,55],[-10,69],[-28,10],[-31,27],[-33,50],[-11,48],[-7,106],[-11,37],[0,71],[30,108],[-17,219]],[[88297,121124],[7,39],[47,56],[34,15],[36,-3],[39,-19],[34,-32],[24,-50],[57,-17],[75,-89],[12,-26],[10,-54],[-21,-79],[-22,-27],[-60,-28],[-41,13],[-42,31],[-23,33],[-10,39],[-28,55],[-36,1],[-27,12],[-47,56],[-18,74]],[[88482,124068],[96,-1],[20,51],[38,7],[-12,33],[26,9],[13,-46],[-10,-21],[57,0],[-1,-76],[20,-10],[52,3],[7,-27],[23,8],[51,0],[1,-34],[42,1],[12,16],[34,-4],[34,-67],[9,-40],[43,3],[16,-35],[36,-13],[31,6],[-21,-57],[29,-26],[22,0],[49,-26],[23,65],[28,19],[49,81],[49,14],[35,20],[72,-97],[35,4],[20,-45],[-29,-57],[26,-48],[23,-28],[9,-36],[58,-38],[35,23],[17,-15],[43,1],[22,-70],[23,-45],[15,-80],[26,-41],[17,-77],[23,-21],[15,-60],[24,-28],[24,-5],[9,-52],[36,-53],[40,-166],[15,-48],[0,-61],[-30,-100],[-4,-43],[26,-56],[33,-46],[24,-55],[19,-73],[-5,-31],[-222,-1],[3,-53],[24,-49],[-37,3],[-1,-32],[26,-66],[3,-39],[-18,-12],[-15,-66],[33,-42],[32,17],[12,-51],[3,-62],[36,4],[32,19],[23,-12],[18,29],[21,-4],[5,-28],[22,-8],[17,-41],[6,-98]],[[90067,121782],[-17,5],[-55,-32],[16,-31],[33,-34],[-19,-28],[4,-35],[-33,-5],[-24,12],[-31,-13],[-11,17],[-33,-66],[-43,-16],[-34,8],[-24,46],[-54,-10],[-19,-15],[-28,27],[-40,-6],[-40,34],[-17,28],[-71,38]],[[89465,121481],[92,-107]],[[89557,121374],[43,-168],[102,-238]],[[89235,121028],[-15,128],[-38,60]],[[89719,144253],[6,-58],[-14,-28],[35,-97],[35,-18],[9,-54],[-47,-46],[-16,-77]],[[89727,143875],[-24,-28],[-36,38],[-40,-27],[16,-61],[-3,-75],[-20,-7],[2,-49],[15,-30],[36,-9],[13,-41],[-31,0],[-23,-80],[9,-28],[-24,-25],[5,-53],[-31,-25],[2,-45],[-168,-128],[-19,-9],[-64,3]],[[89727,143875],[59,-21],[29,38],[1,51],[71,8],[0,33],[33,0],[1,-78],[50,44],[0,-43],[38,0]],[[90009,143907],[-20,-27],[-1,-156],[34,0],[8,-25],[-9,-50],[-101,1],[1,-48],[33,-34],[0,-28],[-17,-21],[-30,-3],[-4,-31],[-25,3],[-4,-44],[20,-21],[8,-61],[-58,-11],[-16,-57],[-75,-10],[0,42],[-25,-1],[-10,-42],[-35,0],[-3,-93],[35,-32],[-45,-33],[-12,-26],[10,-31],[-32,0],[-20,-16],[0,-30]],[[89372,142150],[49,-12],[11,-19],[82,-24],[43,2],[38,-17],[25,11],[24,-32],[18,3],[8,-48],[-17,-28],[43,-52],[25,-17],[49,20],[47,-15],[52,-30],[77,-5],[18,-12],[52,8],[66,-23],[35,4],[19,20],[35,-20],[44,25],[44,-37],[125,-25],[26,4],[23,39],[47,54],[46,32],[476,0]],[[91002,141956],[28,-49],[22,-11],[-8,-43],[49,-29],[43,0],[22,-33],[-29,-17],[0,-45],[-37,5],[-22,-29],[-6,-46],[35,-22],[13,-25],[-2,-42],[-31,-37],[2,-45],[-28,-27],[18,-26],[-20,-41],[-41,-17],[-7,-43],[11,-28],[40,-26],[-19,-36],[33,-57],[11,-47],[33,-47],[-11,-48],[-14,-4],[-191,0],[0,-334],[0,-462],[247,2],[336,0],[131,-5],[503,-3],[249,-2],[37,3],[305,0],[803,-3],[-3,-473]],[[93504,139764],[-62,-18],[-92,-9],[-164,-90],[-112,-28],[-46,-26],[-64,-83],[-116,-12],[-63,-21],[-125,-29],[-124,-11],[-37,13],[-84,88],[-50,19],[-69,-1],[-53,-37],[-33,-33],[-156,-68],[-106,-34],[-62,-66],[-29,-7],[-48,38],[-62,-19],[-38,11],[-89,-1],[-33,-11],[-55,-57],[-19,-31],[-81,-8],[-20,24],[-7,77],[-24,49],[-112,37],[-40,29],[-40,12],[-55,-4],[-46,-24],[-34,3],[-62,17],[-57,45],[-54,13],[-154,-51],[-59,1],[-61,-23],[-44,-2],[-120,29],[-88,-31],[-54,-52],[1,-20],[-34,-30]],[[90268,139332],[-52,-13],[-13,-25],[-63,-39],[-64,-15],[-88,-58],[-64,1],[-68,-17],[-28,-31],[-102,-47],[-47,0],[-55,11],[-34,49],[-43,15],[-92,-29],[-57,35],[-112,41],[-97,27],[-57,4],[-49,19],[-61,45],[-39,15],[-38,29]],[[86744,140747],[-4,25],[15,82],[15,50],[20,99],[-2,280],[-3,16],[1,239],[-13,132],[-50,221],[-13,88]],[[89925,121191],[-5,-40],[18,-28],[26,-61],[1,-31],[-15,-16],[0,-43],[-9,-53],[-16,-6],[-35,-39],[-22,4],[-67,-87]],[[89557,121374],[99,33],[36,0],[38,13],[24,-39],[39,-19],[6,-33],[57,-70],[-3,-31],[30,-16],[15,10],[27,-31]],[[90268,139332],[1,-89],[14,-22],[-9,-34],[27,-70],[-29,-20],[21,-62],[20,-17],[31,6],[23,-37],[-6,-17],[89,-89],[2,-43],[21,-46],[27,-30],[19,2],[63,-22],[38,-36],[-6,-111],[19,-30],[16,-64],[-17,-35],[-8,-44],[21,-10],[-3,-46],[-27,-4],[-20,-40],[-48,-12],[-7,-25],[28,-61]],[[90018,120435],[34,-31],[0,-86],[39,-1],[-4,-59],[-16,-33],[-15,-4],[-9,-41],[1,-69],[-46,-69],[65,-34],[67,1],[17,27],[2,36],[71,6],[0,34],[29,-1]],[[90253,120111],[-7,-7],[36,-55],[0,-37],[-16,-38],[32,-23],[40,17],[24,-82],[51,-45],[58,-11],[24,-18],[2,-22],[22,-19],[-81,-10],[-26,-55],[16,-29],[-13,-75],[-30,-27],[15,-32],[23,-10],[24,-42]],[[90447,119491],[-6,-9],[-69,13],[-20,12],[-10,-36],[-25,-15],[-39,17],[-24,-33],[-23,39],[-19,14],[-20,36],[-24,-22],[-9,-58],[-14,3],[-19,-38],[-15,-7],[-7,-37],[-41,-17],[-25,-25],[12,-48],[-7,-39],[-20,-19],[-44,-83]],[[89979,119139],[-104,59],[-59,44],[-66,56],[-22,33],[-17,57],[-22,17],[-37,52],[-36,-2],[-62,27],[-31,65],[-2,38],[-20,18],[-19,40],[-38,34],[-29,65],[-13,79],[-11,22],[-7,65],[3,49],[16,101]],[[88669,125801],[147,6],[356,-2],[578,-1],[115,-4],[243,0],[-13,-40],[12,-29],[47,-41],[43,-62],[-34,-5],[-31,-28],[-294,5],[2,-134],[25,-17],[29,0],[0,-33],[-29,0],[-10,-47],[45,0],[-10,-67],[-49,3],[1,-103],[26,0],[7,-24],[-19,-27],[1,-51],[-15,0],[1,-254],[89,1],[0,67],[200,-2],[8,-38],[-9,-31],[188,0],[10,-22],[-25,-47],[8,-30],[-16,-35],[-6,-51],[248,0],[191,4],[18,-8],[15,40],[23,-27],[32,7],[17,-13],[50,30],[74,8],[15,27],[50,-4],[56,19],[11,24],[44,34],[14,46],[8,57],[27,30],[-8,53],[13,46],[37,25],[15,51],[0,50],[45,2],[0,-18],[58,1],[-1,31],[87,1],[41,-17],[15,16],[0,67],[14,16],[54,11],[-1,42],[44,0],[4,28],[106,97],[-23,-186],[-37,-24],[-17,-27],[15,-46],[23,-6],[19,-284],[-15,10],[-75,-7],[-34,-27],[-34,-5],[-51,-70],[-4,-22],[-34,-2],[-26,-20],[-17,-31],[10,-32],[-33,-46],[-30,3],[-42,-28],[12,-35],[-32,-60],[0,-453],[-17,5],[-23,36],[-43,-24]],[[91198,124053],[-41,-28],[-12,4],[-66,-76],[-11,-1],[0,-167],[-86,-1],[-1,-403],[-23,0],[0,-39],[162,-16]],[[91120,123326],[-31,-54],[-3,-74],[-23,-8],[-94,2],[-1,-67],[-21,19],[-2,84],[-103,1],[-3,117],[-68,-1],[-4,-41],[-39,-48],[4,-53],[53,-70],[29,10],[17,-15],[6,-54],[12,-36],[-35,-13],[9,-35],[-20,-7],[0,-66],[-8,-20],[0,-91],[45,-11],[32,-54],[48,-5],[24,-40],[65,9],[11,-41]],[[91020,122664],[-19,-27],[-49,0],[11,-82],[20,3],[22,30],[15,-68],[44,1],[-1,-17],[93,1],[22,-31],[40,-125]],[[91218,122349],[-29,0],[1,-33],[-174,-2],[-16,-14],[15,-67],[-36,11],[-14,-15],[-18,-59],[-25,-12],[5,-23],[-39,-44],[7,-44],[-18,-52],[-35,-18],[-41,-56],[29,-35],[-24,-26],[-38,14],[-35,-4],[-17,-28],[-37,22],[-32,-31],[1,-48],[-29,-37],[-60,-43],[-80,-19],[-20,7]],[[90459,121693],[-27,1],[-22,21],[-15,48],[-32,33],[-20,-36],[-55,-13],[-58,18],[-57,34],[-72,-19],[-34,2]],[[90459,121693],[-12,-28],[5,-26],[-26,-13],[-5,-24],[-41,10],[0,-41],[45,-7],[1,-70],[59,-32],[50,-2],[8,-30],[42,-43],[51,-15],[47,-52],[28,0],[22,-33],[14,-2],[21,-35],[39,-41]],[[90807,121209],[-69,-31],[-66,-20],[-180,-66],[-147,-52],[-19,57],[4,42],[-28,15],[-64,1],[-15,16],[-28,-30],[-57,-27],[-14,21],[-50,41],[-149,15]],[[89961,120502],[43,58],[30,13],[51,60],[34,-56],[24,48],[77,25],[53,-7],[-2,-56],[26,-2],[54,-54],[22,-80]],[[90373,120451],[24,-69],[0,-24],[54,-29],[38,-63],[-24,-17],[-42,-6],[-5,-32],[-53,-53],[-63,14],[-25,18],[-32,1],[9,-35],[-1,-45]],[[90807,121209],[37,8],[0,-168]],[[90844,121049],[0,-463],[17,-24],[37,-18],[29,3],[17,-55],[18,-2],[20,-27],[-5,-17]],[[90977,120446],[-343,1],[-261,4]],[[91955,147082],[-47,-79],[96,-57],[31,41],[52,-11],[19,-53],[-24,-11],[-2,-49],[13,-20],[-7,-46],[51,-29],[9,-22],[-20,-100],[12,-19],[3,-48],[35,-25],[34,-62],[39,-28],[-26,-46],[1,-44],[-35,7],[-25,-59],[-52,-33],[-59,-74],[6,-45],[40,-53],[23,-10],[35,22],[29,3],[31,-54],[-37,-56],[11,-24]],[[92191,145998],[-41,-32],[-28,1],[-28,-21],[-40,-6],[-46,31],[13,22],[-23,36],[-23,13],[-30,-5],[-9,-43],[-35,19],[-56,-32],[-47,12],[1,-67],[-66,-3],[-26,-12],[-39,3],[-23,-21],[-22,-62],[34,-32],[6,-29],[-13,-34],[-27,-29],[1,-61],[29,-36],[4,-36],[-36,-10],[-12,-26],[19,-38],[30,-20],[58,-20],[-13,-43],[12,-31],[70,-91],[-7,-38],[70,-54],[21,-52],[-15,-14],[-61,-16],[-15,-44],[27,-47],[-39,-22],[-69,-66],[-25,7],[-77,-37],[-32,1],[-58,-42],[-19,-32],[29,-23],[20,-53],[-73,-101],[-13,-49],[2,-47],[-15,-32],[10,-30],[26,-22],[38,-76],[42,-33],[46,12],[12,-19],[-35,-59],[-44,-38],[16,-60],[26,0],[24,-43],[-12,-25],[26,-26],[2,-26],[-34,-7],[-24,-33],[-25,-8],[-12,-28],[9,-22],[-16,-42],[34,-100],[-12,-25],[-50,9],[-33,-16],[4,-23],[-30,-23],[-45,2],[-25,-22],[-3,-36],[-43,-48],[-35,-10],[-28,-76],[-14,-17],[-42,-7],[-16,-25],[-22,-1],[-28,-25],[-10,-48],[-39,-20],[-27,8],[-25,-19],[-6,-39],[-44,-18],[-83,1],[-37,8],[-50,33],[-19,25],[-63,15],[-44,29],[-43,3],[-19,34],[-44,53],[-26,-13],[-67,81],[12,26],[-59,9],[-14,47],[-43,19],[-37,0],[9,28],[-61,12],[-45,21],[-47,45],[-34,1],[-34,26],[0,60],[-53,-1],[-13,25],[-36,1],[-35,-18],[22,-33]],[[88558,146691],[-495,395],[506,0],[415,0],[569,0],[438,0],[547,-11],[560,6],[79,2],[345,1],[433,-2]],[[90977,120446],[-23,-16],[4,-22],[32,-28],[4,-35],[-17,-36],[25,-38],[0,-26],[32,2],[37,-16],[-17,-71],[4,-32],[19,-33],[2,-40],[-24,-33],[-49,-35],[-3,-80],[22,-42],[30,-20],[18,-64],[11,-90],[33,-10],[-2,32],[34,42],[14,1],[41,-42],[48,1],[24,40],[32,-56],[39,-4],[17,-53]],[[91364,119642],[15,-27],[-41,-70],[53,-57],[-22,-25],[-2,-41],[-33,-32],[16,-29],[4,-32],[-20,-38],[21,-32],[27,-18]],[[91382,119241],[-320,-2],[-46,52],[-32,-14],[-33,14],[-42,62],[-22,49],[-12,6],[-17,44],[-20,-25],[-34,-16],[-24,2],[2,-33],[32,-18],[23,-54],[-19,-17],[35,-53],[-2,-53],[8,-42],[-18,-20],[-2,-30],[-34,7],[1,44],[-15,16],[-26,-1],[-28,34],[-33,-19],[-29,71],[-54,22],[5,29],[-36,24],[-1,28],[-27,18],[-5,27],[-29,52],[-81,46]],[[88207,130902],[134,13],[158,-15],[239,-1],[149,4],[259,1],[196,8],[208,3],[185,-5],[155,1],[255,-9],[242,-2],[431,-10],[368,-5],[47,3],[289,-4],[144,-6],[350,2],[261,-3],[161,2],[399,-2],[135,3],[323,2],[3,-1]],[[93298,130881],[-1,-277],[2,-289],[0,-303],[-2,-275],[0,-610],[-1,-547],[2,-522],[5,-470],[0,-451],[-3,-638],[0,-273],[-6,-531],[1,-336],[-3,-268],[-5,-270],[-1,-134]],[[93286,124687],[-48,0],[-5,31],[-17,15],[-6,35],[-30,22],[-1,41],[-18,20],[-64,-40],[-39,19],[-109,-35],[-35,40],[-65,-73],[-31,-27],[-30,-48],[-365,-2],[27,-22],[2,-53],[-24,-36],[-7,-53],[-12,-31],[8,-30],[-63,-13],[-22,-23],[-50,-10],[-75,14],[-38,-45],[-40,-14],[-28,22],[-22,-24],[-19,3],[-50,-34],[-41,-39],[-26,-36],[-17,-41],[-35,9],[-52,-32],[14,-52],[2,-45],[17,-20],[-7,-41],[-18,-41],[-86,-98],[-4,-39],[-49,-32],[-52,-45],[-6,-39],[-25,1],[-11,41],[-14,11],[-13,-57],[-18,-38],[-48,19],[-27,31],[-42,4],[-83,-3],[-9,32],[-101,0],[0,134],[-37,1],[0,67],[-37,0],[-1,28],[14,37]],[[91120,123326],[115,-12]],[[91235,123314],[-26,-35],[-3,-36],[-15,-21],[1,-55],[-12,-28],[-62,-23],[0,-61],[-29,-11],[3,-100],[26,10],[12,-32],[12,-83],[-7,-31],[-88,2],[-29,-20],[40,-41],[30,-94],[-68,9]],[[91218,122349],[10,-33],[48,1],[0,-58],[-15,-26],[70,-22],[40,-3],[44,26],[33,-1],[42,20],[30,32],[68,20],[31,31],[23,-18],[36,19]],[[91678,122337],[73,-249],[66,-241],[20,-25]],[[91837,121822],[0,-441],[6,-294],[3,-49],[-37,9],[-15,-9],[-44,42],[-22,8],[-1,51],[28,28],[-53,43],[-23,1],[-4,-34],[-65,0],[1,-60],[-86,-1],[-71,-9],[-15,21],[-3,97],[-50,0],[-23,37],[-42,-4],[-13,-28],[-3,-56],[-25,0],[-41,-28],[5,-34],[-32,-1],[-75,70],[-32,11],[-33,-16],[-12,-67],[-28,-14],[-51,6],[0,-27],[-49,-31],[-88,6]],[[91382,119241],[-5,-31],[-26,-49],[28,-31],[45,0],[7,-39],[23,-26],[9,-37],[17,-17],[18,-58],[328,-196],[23,-27]],[[91849,118730],[267,-312],[229,-271],[11,0],[1,-369],[-53,-27],[-52,-6],[-31,-46],[14,-28],[-13,-73],[87,-110],[-18,-13],[-26,-69],[-21,-17],[5,-47],[14,-19],[11,-55],[89,-38],[0,-46],[41,-44],[33,-15],[8,-22],[68,-38],[31,-45],[44,-29],[26,-45],[36,16],[22,-13],[54,-12],[12,-43],[27,-24],[1,-30],[19,-33],[77,-7],[51,-65],[-4,-31],[-21,-44],[15,-35],[46,-24],[10,-70]],[[92959,116531],[-452,2],[-285,1],[-306,3],[-375,3],[-18,1],[-431,3],[-61,4]],[[91031,116548],[-28,48],[-40,27],[-31,31],[-29,48],[-35,89],[-31,97],[-44,36],[-49,22],[-44,69],[-41,152],[-54,88],[-30,61],[-68,77],[-50,37],[-75,33],[-47,41],[-49,89],[-56,53],[-20,36],[-8,46],[2,36],[-14,81],[3,59],[-17,84],[-21,36],[-10,42],[2,31],[-22,40],[-14,58],[7,66],[-31,53],[-11,46],[3,38],[47,97],[18,21],[-106,525],[-12,82],[-47,16]],[[91235,123314],[247,-26],[29,-14],[23,27],[53,-160],[23,-93],[68,-230],[0,-481]],[[91837,121822],[79,-112],[68,-81],[127,-163],[12,-26],[141,-183],[179,-192],[243,-270]],[[92686,120795],[-371,-212],[-343,-197],[-72,-38],[-154,-94],[11,-58],[-6,-23],[8,-35],[18,-8],[-160,-191],[-36,-40],[-217,-257]],[[92191,145998],[79,11],[-9,-66],[43,-21],[-31,-23],[17,-36],[-39,-73],[28,-68],[1,-26],[36,-6],[36,-30],[57,-31],[6,-26],[-40,-59],[2,-37],[29,-6],[21,-22],[71,-11],[62,-79],[38,-18],[20,-21],[61,-20],[3,-30],[19,-27],[29,5],[21,-49],[-26,-70],[22,-56],[23,-11],[26,-36],[42,12],[43,-45],[30,-21],[49,-51],[41,-1],[49,-29],[15,-66],[40,-12],[61,-49],[2,-42],[29,-32],[-11,-24],[33,-19],[273,0],[25,-40],[-46,-60],[-41,-37],[10,-50],[-17,-40],[-64,-38],[-7,-45],[-44,-100],[-45,-9],[-76,-29],[-39,-7],[-58,30],[-95,-40],[-25,-20],[-25,-63],[28,-50],[10,-45],[-28,-43],[-32,-74],[5,-79],[-40,-91],[-53,-47],[-16,-41],[-21,-113],[26,-8],[4,-48],[14,-24],[27,-4],[17,-34],[0,-84],[38,-12],[55,-5],[56,-21],[57,-3],[73,-75],[-11,-34],[7,-44],[-17,-105],[9,-34],[39,-38],[75,7],[23,-24],[0,-78],[-10,-49],[14,-36],[-1,-45],[-16,-33],[-22,-12],[-26,-77],[15,-45],[35,-34],[14,-68],[1,-38],[56,-115],[4,-58],[-3,-139],[59,-96],[1,-43],[-25,-55],[-42,-46],[-5,-41],[-41,5],[-72,-5],[-163,-4],[-368,5],[-201,1],[0,200],[-197,3],[2,128],[-3,71],[-264,-3],[-353,2],[-25,25],[-41,84],[-33,25],[0,50],[-52,27],[-44,56],[-64,36],[-60,61],[-83,47],[-45,-28],[-49,5],[-29,-20],[-63,-86],[-16,-86],[-55,-37],[-11,-55],[4,-51],[-11,-27],[-63,-32],[-27,-39],[-12,-40],[40,-43],[38,-62],[-4,-21],[49,-59],[-21,-25]],[[92686,120795],[108,-261],[12,-54],[19,-19],[31,-72],[7,-33],[-15,-27],[29,-72],[32,-55],[46,-91],[21,-56],[32,-51],[-1,-48],[19,-32],[44,-40],[79,-39],[49,-57],[16,-34],[-67,-24],[-42,-32],[1,-25],[42,-45],[20,-12],[39,3],[35,-32],[-2,-41],[27,-30],[41,5],[6,-20],[62,-3],[22,-21],[23,12],[20,-10],[61,-93],[31,0],[4,-22],[33,-14],[46,-34],[6,-44],[42,-29],[19,32],[17,0],[40,45],[8,-9]],[[93748,119311],[-43,-49],[-4,-36],[15,-19],[-30,-26],[0,-25],[-32,-14],[-26,-54],[2,-43],[-34,-32],[-6,-28],[-59,5],[-62,-3],[-66,-19],[83,-77],[29,-38],[26,-16],[0,50],[36,-28],[14,28],[21,0],[0,-33],[128,0],[29,-19],[0,-175],[28,-23]],[[93797,118637],[-86,-1],[0,-44],[-57,-6],[0,20],[-44,12],[-69,0],[0,-33],[-141,-1],[0,201],[-99,0],[-29,34],[-43,0],[-28,67],[-30,41],[-39,-28],[-51,-10],[-29,-24],[-21,11],[-32,-63],[-45,29],[-26,-23],[7,-21],[-88,9],[-61,29],[-73,-3],[-14,75],[-34,12],[-17,40],[-23,0],[-20,34],[-27,19],[-1,49],[-16,13],[26,50],[-28,61],[-11,4],[-14,73],[-25,26],[-2,34],[-20,33],[-23,4],[-21,73],[-85,-99],[8,-46],[0,-67],[-103,0],[-414,-491]],[[94687,111250],[13,31],[51,37],[83,11],[36,-9],[29,-27],[26,-56],[5,-62],[-28,-104],[-24,-20],[-49,-16],[-41,-4],[-30,6],[-35,30],[-23,57],[2,113],[-15,13]],[[94134,112539],[-38,-185]],[[94096,112354],[-31,-49],[-33,-28],[-28,-11],[-81,-19],[-55,3],[-51,-35],[-60,-29],[-53,5],[-76,-6],[-53,-25],[-61,27],[-68,66],[-10,-36],[-28,-43],[-33,-25],[-49,-5],[-31,-17],[-29,-34],[-81,-32],[-53,-33],[-56,6],[-48,29],[-46,41],[-34,21],[-28,46],[-28,18],[-26,41],[-11,56],[-30,34],[-52,0],[-55,-17],[-45,15],[-25,22],[-33,-6],[-54,4],[-49,34],[-33,53],[-12,64],[5,22],[-42,14],[-38,44],[-12,35],[-1,37],[11,44],[23,33],[36,23],[34,5],[30,-7],[40,-36],[49,47],[35,14],[27,-4],[62,-23],[18,-17],[19,-46],[27,-26],[37,-14],[21,-22],[20,-48],[30,-37],[34,7],[58,-5],[37,33],[80,13],[27,-10],[36,28],[55,9],[41,-6],[29,-26],[14,-27],[16,57],[26,53],[27,29],[30,11],[84,-8],[73,-18],[58,-28],[37,13],[38,-3],[30,-20],[52,-17],[60,-54],[64,65],[77,21],[42,-7],[42,-28],[55,-50],[14,-20]],[[92959,116531],[31,-1],[1,-404],[170,0],[-1,-203],[28,0],[0,-32],[28,0],[0,-33],[28,1],[0,-35],[29,0],[-1,-34],[28,-1],[0,-67],[132,-1]],[[93432,115721],[53,0],[0,-203],[112,-1],[-1,-202],[225,-3],[0,-202],[151,12],[27,0],[-11,-214],[111,10],[-1,-34],[29,-1],[0,-406],[142,-1],[0,-49],[166,0],[-2,-52],[55,1],[0,-100],[248,-4],[172,-1],[0,-50],[150,0]],[[95058,114221],[108,-327],[117,-347]],[[95283,113547],[-43,-39],[-8,-34],[-262,2],[0,-56],[-28,0],[0,-50],[-165,-1],[-33,34],[3,289],[-253,-2],[-319,0],[0,-224],[186,-1],[-1,-39],[-31,-19],[-41,-49],[-11,-59],[-56,1],[11,-35],[25,-4],[33,-42],[41,-16],[72,-14],[10,-63],[-25,-62],[9,-29],[30,7],[24,-8],[2,-23],[-31,-41],[-49,-35],[-31,7]],[[94342,112942],[-63,29],[-41,51],[-42,13],[-60,37],[-27,30],[-27,47],[-29,21],[-57,21],[-46,38],[-51,17],[-54,-5],[-23,-28],[-65,-40],[-39,5],[-102,60],[-64,-26],[-60,3],[-36,11],[-46,34],[-115,57],[-37,22],[-32,8],[-73,-8],[-70,30],[-89,-5],[-17,5],[-60,-11],[-73,1],[-59,-19],[-67,-3],[-65,-22],[-67,-18],[-79,28],[-36,38],[-18,46],[-1,31],[-27,42],[-10,40],[-55,37],[-76,-1],[-21,11],[-45,43],[-31,49],[-13,46],[8,68],[0,43],[10,32],[23,34],[34,119],[-51,91],[-8,29],[4,52],[11,28],[31,129],[-63,56],[-17,25],[-16,52],[11,63],[2,54],[17,37],[32,153],[11,113],[-3,49],[-57,34],[-32,-10],[-42,3],[-44,14],[-34,34],[-39,15],[-45,50],[-66,65],[-20,40],[-21,21],[-26,69],[-2,29],[16,78],[36,94],[8,41],[-16,103],[-41,8],[-48,34],[-40,-1],[-41,22],[-44,63],[-22,19],[-55,81],[-52,60],[-42,103],[-37,52],[-30,8],[-41,31],[-62,18],[-59,39],[-26,40],[-13,52],[-29,36],[-20,59],[0,49],[-33,88],[-45,48],[-15,25]],[[93286,124687],[0,-100],[9,-632],[265,-268],[389,-395]],[[93949,123292],[10,-17],[-20,-36],[-11,-44],[-16,-12],[-12,-49],[-7,-70],[3,-25],[39,-37],[16,-82],[26,-34],[18,-48],[-4,-26],[20,-14],[6,-41],[-21,-27],[-1,-52],[-20,-31],[11,-54],[-38,-32],[-24,19],[-33,-26],[24,-64],[-33,-18],[-11,-68],[-15,-17],[2,-70],[-13,-12],[60,-57],[-13,-20],[26,-43],[-30,-13],[-3,-56],[44,-53],[20,6],[14,-61],[49,-11],[47,-36],[42,14],[1,-26],[30,-9],[-4,-29],[28,-46],[40,45],[8,-19],[42,-1],[26,-33],[48,-16],[59,-92],[13,-51],[-9,-52],[-19,-75],[22,-51],[70,-47],[-3,-29],[41,-5],[20,-12],[42,-51],[-22,-30],[-2,-57],[18,-40],[-20,-26],[24,-32],[-31,-59],[-35,-23],[-18,-52],[-22,-16],[14,-30],[33,1],[36,-30],[28,52],[49,4],[30,-13],[38,3],[23,-22],[26,-48],[44,-44],[6,-62],[25,-48],[23,-28],[-6,-50],[22,-46],[29,-29],[60,-30],[18,18],[36,-39],[20,3],[25,-44],[28,-26],[3,-22],[33,-21],[5,-51],[11,-8],[55,28],[29,2],[51,-74],[8,-49],[-12,-28],[-20,-4],[-16,-64],[32,-59],[-27,-58],[13,-22],[33,-12],[28,-32],[38,30],[48,-87],[5,-23],[27,-45],[-31,-42],[8,-95],[20,-27],[4,-28],[-12,-22],[27,-62],[41,-9],[24,12],[33,-11],[10,-31],[28,-22],[48,-4],[25,-35],[30,-7],[26,-42],[30,-24],[31,4],[17,-20],[-7,-34],[30,-48],[-9,-29],[25,-31],[-12,-21],[17,-21],[9,-48],[11,-5],[56,-161],[-14,-41],[12,-20],[1,-37],[-16,-22],[-28,-3],[-1,-34],[25,-46],[-9,-41],[17,-74],[14,-13]],[[95879,118740],[-307,0],[0,-13],[-308,1],[-365,5],[-4,-195],[-163,0]],[[94732,118538],[13,86],[-13,12],[-10,44],[-24,12],[4,38],[-28,18],[-23,-15],[-38,13],[-1,21],[-86,-14],[-22,2],[-30,-17],[-21,18],[-20,-45],[-39,-12],[-61,135],[-4,18],[-102,1],[-19,-38],[-33,-28],[-40,12],[-36,-17],[-11,39],[10,20],[-13,31],[-48,35],[-29,69],[-30,10],[-64,67],[-17,39],[-46,2],[-42,43],[2,40],[-27,50],[-3,32],[-33,52]],[[93797,118637],[29,0],[0,-51],[112,-1],[1,67],[28,34],[35,0],[19,-34],[-8,-61],[29,-45],[18,-15],[48,-2],[22,-31],[8,-62],[-8,-46],[2,-42],[-10,-17],[-154,-183],[71,1],[-1,-203],[85,-1],[1,-305],[-86,2],[0,-305],[-12,0],[1,-202],[51,0],[56,45],[28,11],[14,32],[39,10],[79,0],[19,11],[51,-9],[75,18],[19,16],[48,8],[59,-14],[35,4],[46,-21]],[[94646,117246],[0,-76],[-28,0],[-1,-100],[85,-1],[0,-103],[31,-1],[71,11],[48,26],[47,-3],[33,-59],[57,-126],[5,-34],[43,-44],[15,-32],[30,-38],[14,-59],[23,-29],[61,-45],[-393,1],[1,-96],[-19,-69],[3,-47],[-20,-77],[-15,-75],[-8,-107],[5,-84],[15,-93],[5,-85],[0,-75],[-279,1],[-1,-318],[53,7],[31,27],[0,-53],[84,0],[-1,-67],[57,0],[0,-67],[35,0],[11,28],[38,5],[0,-33],[84,-1],[0,34],[-25,0],[-32,178],[0,23],[29,0],[4,30],[25,0],[0,70],[52,26],[4,-40],[56,7],[0,-39],[27,-10],[0,-76],[113,0],[-1,29],[70,-29],[46,-59],[27,-17],[0,-192],[-99,-1],[0,-34],[-13,-28],[0,-72],[-43,0],[1,-135],[6,-1],[0,-109],[-112,0],[-40,-92],[-4,-45],[-54,251],[-5,2],[-200,-2],[0,199],[-140,-1],[0,33],[-53,0],[0,97],[-32,4],[0,68],[-90,-3],[-25,39],[-37,39],[-35,13],[-36,36],[-119,61],[-13,20],[-37,10],[-31,17],[-33,50],[-87,59],[-30,46],[-35,78],[-14,71],[-251,0],[-25,-34],[-55,-1],[-41,-33],[-17,-27],[-25,-13],[-5,-31]],[[91955,147082],[212,-1],[537,2],[590,-3],[197,2],[238,0],[550,0],[394,0],[455,0]],[[95128,147082],[3,-207],[-2,-287],[2,-307],[-54,-1],[0,-397],[41,-1],[-4,-536],[0,-662],[-74,-33],[-97,-19],[-30,6],[-5,-650],[-2,-122],[1,-265],[-3,-304],[0,-236],[222,-2],[728,0],[390,1],[265,-2],[0,-536],[2,-263],[-13,0],[-6,-110],[-53,-44],[19,-23],[-8,-37],[-35,-22],[12,-52],[-35,-12],[-20,-39],[-76,24],[-48,-40],[-47,-4],[-9,-29],[-45,10],[-24,-26],[-69,-17],[50,-124],[-21,-51],[22,-55],[27,-21],[-25,-82],[-45,28],[-47,-16],[-21,2],[-35,27],[-21,1],[-61,-21],[-44,-40],[-53,7],[-46,31],[-37,-4],[-33,-46],[-49,-18],[-32,-27],[-27,-49],[-43,-21],[-36,-49],[-6,-70],[-20,-46],[-10,-48],[7,-45],[-42,-27],[-13,-31],[-35,-18],[-10,-41],[-77,-9],[-18,-38],[-7,-42],[-18,-16],[11,-47],[23,0],[-1,-100],[279,-4],[1,-34],[-33,0],[0,-33],[24,0],[0,-34],[41,0],[0,-336],[-53,-4],[-13,-63],[-32,0],[15,-39],[1,-39]],[[95491,140146],[-254,0],[-345,-3],[-34,-48],[-29,-23],[-54,-25],[-50,-36],[-52,-23],[-69,-12],[-41,1],[-97,27],[-103,-15],[-66,-27],[-135,-10],[-59,-25],[-58,5],[-74,39],[-46,-14],[-36,-32],[-73,-113],[-162,-26],[-47,5],[-103,-27]],[[95491,140146],[599,-2],[371,1],[430,-2],[375,-5],[224,2],[532,-3],[132,-4]],[[98154,140133],[35,-41],[4,-40],[24,-13],[15,-88],[35,-55],[47,-36],[42,-77],[-1,-28],[39,-36],[46,23],[57,-13],[27,-61],[25,-29],[52,7],[60,-14],[55,-55],[17,-6],[20,-42],[-4,-42],[5,-58],[47,-67],[26,-26],[9,-40],[31,-41],[-1,-30],[-31,-46],[-64,-80],[-19,-57],[-34,-47],[5,-94],[-53,-46],[-14,-70],[-41,-43],[-14,-38],[-36,-66],[-31,-79],[0,-90],[-26,-28],[-20,-55],[-9,-86],[-23,-73],[-7,-62],[-27,-27],[-14,-44],[-32,-19],[-13,-28],[-1,-38],[-21,-39],[-80,-89],[5,-47],[-20,-43],[49,-1],[-36,-43],[27,-71],[-32,-105],[-20,-39],[-50,-56],[-56,-101],[-4,-44],[-50,-20],[-53,-44],[-23,1],[-46,-27],[-28,-41],[-3,-55],[-24,-26],[-3,-43],[-23,-20],[-4,-56],[-35,-60],[-7,-72],[-33,-35],[3,-53],[-27,-47],[-32,-5],[-30,-72],[-37,-19],[11,-57],[3,-74],[-19,-51],[-25,-20],[12,-52],[62,-64],[10,-26],[-25,-54],[-27,-31],[35,-53],[47,-38],[46,-1],[34,46],[24,4],[21,-46],[38,-37],[17,-31],[38,41],[89,-14],[13,-111],[50,-1],[50,-32],[13,-21],[0,-39],[-25,-33],[-35,-92],[-17,-15],[-51,-18],[6,-84],[47,-32],[14,-34],[-17,-40],[10,-43],[-31,-4],[-6,-84],[-10,-26],[11,-40],[-30,-9],[7,-46],[-10,-60],[-58,-22],[14,-22],[-34,-49],[16,-15],[-7,-32],[0,-536],[0,-466],[-1,-574],[1,-684],[0,-477],[0,-578],[0,-407],[0,-460]],[[97980,130893],[-169,1],[-425,-2],[-62,0],[-288,-3],[-294,1],[-606,-4],[-479,-3],[-307,-9],[-495,4],[-312,-1],[-213,2],[-148,4],[-216,0],[-491,4],[-158,-3],[-19,-3]],[[94732,118538],[-136,4],[5,-34],[-47,-25],[-17,-97],[-15,-50],[-22,-15],[9,-23],[24,-19],[-30,-32],[-19,-47],[30,-25],[65,12],[35,-29],[4,-32],[-28,0],[-2,-50],[14,-1],[1,-45],[30,-24],[43,-14],[25,16],[28,-8],[15,-55],[-28,-6],[1,-62],[-29,-12],[-3,-228],[28,-33],[15,0],[6,-73],[35,-7],[1,-52],[-39,0],[-3,-27],[-42,-7],[2,-134],[-42,0],[0,-58]],[[95283,113547],[136,-406],[-18,-2],[-30,-54],[-22,12],[-35,-10],[-4,47],[-29,5],[-34,-25],[-8,-39],[8,-37],[-55,-17],[-30,5],[-14,-22],[0,-33],[14,-24],[-1,-29],[42,-21],[12,-22],[104,36]],[[95319,112911],[17,-62],[21,-7],[37,11],[0,-71],[-40,1]],[[95354,112783],[-150,-1],[-6,-51],[-25,-33],[-62,-50],[-14,38],[-133,-120],[-17,-190]],[[94947,112376],[-53,17],[-66,34],[-141,35],[-66,24],[-93,51],[-52,101],[-55,80],[-18,46],[-49,154],[-12,24]],[[94134,112539],[49,10],[63,-9],[46,16],[40,-4],[34,-19],[25,-30],[19,-64],[-5,-53],[-35,-51],[-98,-49],[-83,5],[-62,34],[-31,29]],[[93869,110729],[16,57],[53,48],[44,4],[62,17],[38,-14],[118,-69],[73,-73],[30,-59],[0,-48],[-24,-67],[-29,-27],[-62,-32],[-71,-7],[-49,8],[-101,45],[-49,47],[-41,88],[-8,82]],[[95354,112783],[0,-41],[34,-4],[53,19],[15,-24],[22,5],[78,-44],[27,-10],[16,12],[108,-2],[63,4],[40,-9],[13,-20],[32,10]],[[95855,112679],[-25,-26],[3,-83],[19,8],[86,-3]],[[95938,112575],[0,-39]],[[95938,112536],[-24,-4],[-54,9],[-18,-16],[-35,0],[-16,23],[-46,-20],[-40,-40],[43,-57],[-20,-15],[2,-23],[19,-33],[34,-13]],[[95783,112347],[-14,-30],[-24,-15],[25,-69],[80,0],[0,-84],[27,0],[14,-47],[-1,-85],[4,-75],[61,-65],[5,44],[35,4]],[[95995,111925],[10,-63],[-29,-60],[-31,5],[0,-34],[-16,-6],[-37,-145]],[[95892,111622],[-53,46],[-68,34],[-60,56],[-29,65],[-4,61],[5,54],[64,83],[-5,22],[-47,94],[-38,68],[-35,79],[-53,80],[-108,-1],[-81,-18],[-43,-3],[-36,5],[-30,-11],[-52,-48],[-38,-17],[-34,4],[-50,39],[-27,40],[-21,9],[-102,13]],[[95646,113165],[64,-99],[-20,-28],[-15,-50],[-18,-84],[0,-29],[17,-34],[26,-17],[12,-33],[119,0],[5,-29],[32,-15],[20,28],[-7,37]],[[95881,112812],[31,-1],[21,-64],[-78,-68]],[[95319,112911],[13,31],[50,-1],[13,8],[55,0],[-1,67],[41,19],[25,-9],[1,55],[24,2],[21,-55],[56,0],[-32,89],[20,3],[41,45]],[[95879,118740],[33,-36],[7,-54],[-38,-23],[18,-52],[29,-15],[-14,-26],[20,-20],[7,-46],[30,-21],[8,-25],[35,-23],[-23,-15],[-8,-33],[6,-41],[40,-17],[21,-21],[1,-39],[19,-4],[-4,-55],[-12,-31],[26,-47],[26,-22],[2,-50],[33,-20],[30,1],[28,13],[30,-33],[-4,-34],[-31,-22],[11,-33],[35,-21],[16,-47],[32,-10],[1,-40],[-22,-22],[6,-22],[-25,-25],[-3,-43],[17,-21],[-4,-36],[23,-51],[-7,-19],[30,-65],[27,-19],[18,-34],[2,-57],[-17,-15],[0,-32],[20,-87],[14,-35],[-3,-39],[14,-26],[15,-91],[33,-25],[14,-34],[-23,-52],[18,-34],[23,-6],[14,-40],[-11,-25],[12,-46],[-10,-37],[-26,-40],[1,-61],[10,-29],[-15,-18],[0,-62],[134,-5],[-3,26],[274,0],[186,-2],[-2,-202],[-28,0],[-1,-67],[57,0],[0,-67],[-28,-1],[-1,-202],[7,0],[0,-262],[-5,-38],[3,-169],[1,-610],[-3,-40],[1,-470],[0,-127],[-55,1]],[[96971,114295],[-169,2],[0,-136],[-181,-3],[0,34],[-269,-1],[0,-33],[-136,-2],[7,-67],[17,0],[1,-47],[-10,-21],[3,-34],[-35,0],[0,-34],[-42,1],[1,-34],[-29,-1],[0,-33],[-13,-34],[-41,34],[-111,0],[0,16],[-28,21],[-1,164],[-2,201],[-258,-4],[-574,0],[-1,-34],[-35,0],[-7,-29]],[[95808,113273],[11,-3],[3,-143],[-14,-22],[35,-25],[-4,-29],[29,-9],[64,4],[-37,-38],[-57,-13],[-6,-19],[74,-105],[-33,21],[8,-80]],[[95646,113165],[5,43],[23,0],[39,64],[65,-7],[30,8]],[[96182,112052],[1,-13],[94,0],[0,-34],[41,-2],[29,-17],[8,50],[26,-23],[20,35]],[[96401,112048],[14,-27],[35,-8]],[[96450,112013],[-24,-12],[-7,-48],[35,14],[37,-10],[29,-20],[7,-33],[22,9],[18,-25],[5,-51]],[[96572,111837],[-27,17],[-55,-1],[0,-46],[-29,-13],[-26,8],[-27,25],[-29,-7],[2,67],[-41,0],[-46,-17],[8,-36],[-34,-26],[-10,-23],[-10,-93]],[[96248,111692],[-63,-12],[-93,-3]],[[96092,111677],[-11,57],[-27,94],[6,19],[39,43],[-11,17],[8,33],[-3,47],[27,33],[28,14],[-1,22],[35,-4]],[[95394,111204],[7,33],[31,49],[50,24],[52,-8],[88,4],[47,-33],[39,-6],[50,-55],[122,-57],[55,-53],[22,-39],[7,-41],[69,-85],[27,-74],[7,-59],[-8,-51],[-21,-43],[-34,-31],[-35,-18],[-39,-7],[-56,16],[-35,24],[-66,1],[-43,7],[-50,19],[-50,45],[-26,43],[-20,59],[-9,92],[-31,7],[-54,34],[-75,109],[-17,51],[-4,43]],[[95378,110172],[23,63],[35,35],[34,11],[66,-1],[57,-29],[29,-32],[44,-78],[9,-36],[64,-113],[34,-28],[48,-63],[54,-52],[72,-84],[31,-43],[12,-36],[0,-44],[-21,-50],[-33,-35],[-46,-18],[-40,10],[-47,-42],[-44,-5],[-27,12],[-32,27],[-53,70],[-48,36],[-24,37],[-15,48],[-54,95],[-18,86],[-27,45],[-16,43],[-14,79],[-40,0],[-13,61],[0,31]],[[95938,112536],[10,-27],[-2,-32],[72,2],[19,-14]],[[96037,112465],[-31,-47],[-2,-99]],[[96004,112319],[-17,-19],[-40,0],[-25,17],[-3,34],[-56,-1],[-26,-11],[-23,22],[-31,-14]],[[96004,112319],[39,-18]],[[96043,112301],[3,-75],[-41,1],[-5,-72],[3,-79],[-9,-60],[1,-91]],[[95808,113273],[13,1],[-1,100],[30,16],[43,1],[40,13],[2,-134],[188,1]],[[96123,113271],[25,2],[2,-201],[-16,-29],[-39,-32],[-24,-1],[-1,-34],[27,-1],[7,-33],[30,-2],[23,-47],[25,-35],[-16,-16],[8,-26],[2,-48],[10,-31],[18,-7],[-1,-46],[-21,-5]],[[96182,112679],[-29,23],[4,36],[-71,-8],[-10,-44],[-28,-6],[40,-78],[-24,7],[-21,-59],[-36,24],[-69,1]],[[96971,114295],[0,-612],[10,0],[2,-247],[7,-125]],[[96990,113311],[-33,17],[0,50],[-139,-3],[-167,0],[-81,3],[-28,30],[-57,0],[-1,72],[-24,0],[-1,67],[-136,0],[-4,-76],[-106,0],[-1,-33],[-57,4],[2,-63],[9,-23],[-36,-16],[-7,-69]],[[96043,112301],[72,27],[-2,-19],[42,-19],[45,-10],[-15,-29],[15,-50],[-35,4],[-13,-38],[-2,-39],[58,-13]],[[96208,112115],[8,-45],[-34,-18]],[[96092,111677],[-19,0],[-27,-36],[-31,-27],[-71,-8],[-52,16]],[[96182,112679],[-16,-31],[0,-27],[27,-12],[1,-42],[-13,-64]],[[96181,112503],[-38,-21],[1,-54],[-75,-1],[-32,38]],[[96181,112503],[18,-26],[20,-7]],[[96219,112470],[2,-22],[26,-25],[-12,-63],[37,-56],[27,-26],[-28,-65],[4,-79],[-60,-2],[-7,-17]],[[96219,112470],[46,1],[52,9],[1,28],[20,30]],[[96338,112538],[48,-10],[28,-42],[-2,-46],[22,-12]],[[96434,112428],[-1,-32],[23,-29],[0,-32],[27,0],[-6,-40],[6,-27],[0,-100],[-27,-17],[-27,-34],[-28,-17],[0,-52]],[[96990,113311],[13,-249],[-48,-286],[68,-2]],[[97023,112774],[-3,-42],[23,-52],[-19,-23],[-66,0],[-29,17],[-17,-61]],[[96912,112613],[-10,-36],[-27,0],[0,25],[-22,47],[-14,-3]],[[96839,112646],[5,70],[-18,42],[-35,-25],[1,42],[-35,0],[-14,-17],[0,-75],[-13,-12],[-68,-7],[-42,36],[0,75],[-55,0],[-1,66],[-55,1],[1,-34],[27,0],[-2,-33],[-25,0],[0,-31],[-25,-19],[-28,40],[-43,-14],[0,-55],[21,-2],[-14,-38],[0,-39],[-61,-18],[-1,-39],[-21,-22]],[[96839,112646],[-8,-45],[-22,13],[-19,-44],[-40,-27],[-18,-3]],[[96732,112540],[-111,-47],[4,-65],[20,-8],[-13,-38],[-78,-10],[1,21],[-70,34],[-2,15],[-42,23],[-7,-37]],[[96572,111837],[14,-33],[-4,-39],[-24,-61],[15,-15],[43,2],[39,-11]],[[96655,111680],[17,-20],[-11,-24],[8,-74],[58,-46],[12,-23],[65,-27],[0,54],[30,13],[-4,-41],[52,-6],[29,-77],[31,-40],[18,4]],[[96960,111373],[-1,-40],[-15,-11],[10,-71],[-14,-44],[-34,4],[-38,21],[1,-34],[-56,-76],[26,-23],[0,-50]],[[96839,111049],[-23,29],[-40,69],[-4,20],[-36,48],[-186,135],[-104,101],[-52,38],[-99,103],[-47,100]],[[96450,112013],[27,9],[0,33],[116,1],[28,12],[32,-4],[6,25],[44,-1],[5,-68]],[[96708,112020],[5,-99],[-1,-106],[-19,-19],[14,-38],[-5,-33],[-28,-15],[-19,-30]],[[95128,147082],[474,-1],[569,1],[471,0],[649,1],[532,-5],[148,1]],[[97971,147079],[0,-287],[-2,-289],[-3,-578],[0,-266],[-5,-410],[-4,-192],[-2,-661],[2,-612],[2,-190],[0,-538],[0,-379],[0,-378],[0,-710],[0,-462],[8,-16],[-18,-87],[-26,-36],[14,-48],[47,-20],[2,-42],[25,-29],[30,-16],[-5,-51],[32,-35],[18,-43],[5,-38],[-15,-36],[4,-25],[33,-34],[30,-56],[-19,-18],[0,-38],[-24,-32],[-15,-55],[-35,-14],[5,-30],[34,-10],[23,-34],[33,-102],[9,-49]],[[96732,112540],[-16,-60],[28,-19],[15,31],[26,-36],[65,-17],[17,-20],[38,-66],[16,0],[51,-78],[-10,-8],[27,-49]],[[96989,112218],[1,-82],[-22,-19],[-10,-28]],[[96958,112089],[-35,10],[-20,-15],[-54,9],[-9,16],[-33,-12],[-7,-21],[-24,-14],[-37,-48],[-31,6]],[[96958,112089],[21,-26],[128,-203],[70,-28],[3,-109],[94,-15],[97,-104],[-71,-131]],[[97300,111473],[-12,-20],[-28,4],[-31,-12],[-18,8],[-37,43],[9,31],[-44,4],[-25,-59],[5,-20],[-4,-72],[-27,-7],[-21,24],[-18,68],[-25,-7],[0,-48],[-26,-25],[-38,-12]],[[96912,112613],[23,4],[14,-22],[76,-1],[38,12],[12,-34],[121,-1],[14,31],[3,72],[39,34],[97,-1],[0,-34],[34,0],[7,-33],[67,-5],[2,-33],[-14,-13],[0,-63],[14,-22],[-16,-23],[-7,-43]],[[97436,112438],[-6,33],[-288,-1],[0,-33]],[[97142,112437],[0,-71],[-82,-39],[-1,-107],[-70,-2]],[[97300,111473],[-82,-158],[1,-67],[229,0],[-11,-33],[176,-84]],[[97613,111131],[-4,-111],[11,0],[-11,-111],[12,-1],[8,-101],[10,-25],[-7,-52],[4,-32],[26,-46],[3,-24],[34,-24],[-3,-33],[22,-7],[-32,-52],[13,-58],[-40,-70],[0,-31],[14,-53],[28,-6],[74,23],[1,26],[25,-1],[0,33],[21,0],[6,-42],[3,-108]],[[97831,110225],[30,-8],[19,-23],[-14,-85],[-1,-33],[-38,16],[7,39],[-54,1],[1,-35],[-27,0],[0,-86],[-48,9],[-26,27],[-57,-13],[11,-43],[9,-76],[26,-64],[-9,-67],[-37,-1],[-11,-42],[-21,0],[-92,70]],[[97499,109811],[13,45],[-82,398],[-94,237],[-51,81],[-52,68],[-32,62],[-80,100],[-85,69],[-44,53],[-94,102],[-35,-4],[-24,27]],[[97023,112774],[113,1],[2,-34],[31,-17],[0,51],[70,0],[21,16],[25,0],[36,20],[18,25],[36,26],[-24,72],[43,-32],[20,17],[49,-41],[32,-4],[15,-32],[72,-5],[34,-52],[49,-11],[0,-33],[83,-2],[0,-31],[-34,-18],[-41,0],[-9,-17],[-40,17],[4,-55],[21,9],[44,-6],[14,-18],[102,3],[36,-18],[28,-34],[-40,-11],[-30,-22],[0,-42],[20,-42],[31,-10],[3,-42]],[[97857,112402],[-26,0]],[[97831,112402],[-164,1],[0,33],[-231,2]],[[97980,130893],[90,-2],[571,-4],[128,1],[247,-3],[196,3],[337,-1],[66,3],[171,-2],[15,-2],[385,1],[62,-1],[442,-2],[422,0]],[[101112,130884],[255,12],[109,1],[136,-8],[193,-8],[205,2],[293,-3],[379,-1]],[[102682,130879],[2,-104],[0,-402],[1,-129],[-2,-449],[0,-424],[-1,-203],[-1,-588]],[[102681,128580],[-2,-473],[-1,-138],[-4,-772],[0,-658]],[[102674,126539],[-323,-1],[-438,6],[-210,3],[-226,1],[-151,2],[-570,1],[-176,9],[-389,5],[-60,-2],[-254,1],[-28,-68],[1,-33],[19,-50],[-10,-45],[10,-46],[-13,-66],[12,-30],[20,-76],[-5,-37],[25,-46],[-8,-29],[10,-53],[-6,-16],[16,-41],[-8,-43],[-20,-23],[4,-66],[-6,-40],[6,-39],[-36,-75],[5,-75],[9,-25],[1,-70],[-7,-22],[23,-122],[-39,-86],[10,-45],[-17,-59],[-44,-56],[-9,-49],[-30,-11],[-20,8],[1,-700],[-150,-2],[-391,2],[-543,-1],[-226,2],[-19,-2],[-393,4],[-346,0],[-176,0],[-266,-55],[-433,-106],[-141,-46],[-596,-1],[-595,2],[-48,1],[-438,-2],[-134,113],[-65,-6],[-75,11],[-77,28],[-45,-20],[0,-67],[-19,0],[-10,-68],[-37,0],[8,-41],[-16,-51],[-74,-10],[-56,-15],[0,-66],[-52,0],[-7,-16],[-84,-1],[-2,-66],[-29,0],[-1,-168],[-28,0],[-1,-68],[29,0],[0,-68],[28,-33],[1,-101],[-5,-74],[77,6],[12,-16],[4,-186],[29,0],[1,-263]],[[94354,122880],[-75,74],[-134,140],[-196,198]],[[97831,112402],[13,-32],[42,-1],[-14,-32],[32,-20],[36,-46],[26,-10],[0,-21]],[[97966,112240],[-53,19],[-38,-44],[8,-44],[-50,-2],[-16,-32],[-26,16],[-44,-9],[-53,-61],[6,-49],[17,-3],[22,-29],[-43,-19],[24,-17],[0,-100],[17,-34],[-20,-34],[-47,1],[-12,-52],[-15,-15],[-28,0],[-7,66],[-61,3],[0,65],[-18,65],[0,34],[-29,41],[1,-75],[-105,-1],[-28,40],[0,19],[76,27],[-31,29],[2,19],[98,1],[14,34],[-62,-1],[11,33],[24,3],[0,32],[-83,-1],[0,-34],[-111,4],[-27,-12],[-47,10],[-15,32],[-20,103],[0,51],[-40,-8],[-4,125],[-11,1]],[[97966,112240],[40,-1],[37,-35],[20,1],[25,-34],[0,-36],[-38,0],[-30,-46],[-4,-59],[-53,-43],[-37,30],[0,-49],[15,-40],[17,-20],[11,-37],[-4,-54],[-24,17],[-27,0],[-4,-34],[50,1],[-11,-68],[40,-5],[29,-20],[29,-59],[47,29],[-10,51],[58,6],[0,33],[29,-18],[32,26],[14,-9],[54,-1],[1,-98],[-28,0],[0,-138],[-26,-21],[-31,12],[-14,-17],[-39,-7],[-17,-48],[48,-87],[3,-57],[12,-37],[61,0],[16,-54],[25,-30],[30,-11],[-12,-34],[2,-72]],[[98302,111067],[-196,2],[-133,-1],[0,7],[-92,0],[-3,32],[26,52],[5,64],[-51,83],[-34,-34],[-23,30],[-44,4],[-36,-40],[26,-35],[40,-36],[-12,-29],[-38,4],[-4,-21],[-38,-13],[-39,30],[-43,-35]],[[97831,110225],[11,40],[41,-51],[77,12],[6,47],[22,9],[-6,42],[25,20],[17,-11],[55,-8],[49,-34],[42,1],[-13,-27],[-91,1],[-26,-17],[-48,1],[21,-50],[14,1],[0,-69],[27,-51],[28,-1],[-1,-52],[34,18],[1,-34],[-35,-17],[-56,-8],[0,-38],[13,-22],[0,-66],[-11,-45],[-22,-49],[-1,-34],[-43,-36],[46,-45]],[[98007,109652],[-8,-38],[-40,7],[-4,27],[-31,7],[-27,-22],[-13,22],[-39,-48],[-3,35],[-55,-2],[-14,-20],[-25,3],[-24,-22],[14,-45],[29,-4],[-6,-28],[-49,2],[-12,-19],[35,-30],[29,-37],[24,-9]],[[97788,109431],[1,-32],[23,-68],[21,-164],[8,-27],[-27,-18],[-97,1],[1,75],[-47,2]],[[97671,109200],[-46,-10],[-40,20],[-50,76],[-19,77],[-7,97],[-8,169],[-18,82],[16,100]],[[98007,109652],[33,37],[39,-3],[-1,-38],[16,-12],[5,-64],[36,-10],[-13,-29],[-28,-2],[-6,-39],[27,-28],[-26,-47],[-7,-37],[19,-27],[34,-3],[0,-40],[-14,-4],[10,-41]],[[98131,109265],[1,-48],[-7,-34],[9,-31],[-112,-48],[-23,31],[-34,0],[-1,45],[-19,59],[-24,33],[-14,72],[27,37],[11,35],[-1,39],[-15,37],[-33,-6],[1,34],[-64,-6],[-4,-15],[17,-39],[-10,-34],[-41,-9],[-7,14]],[[94354,122880],[147,-152],[217,-223],[152,-160],[81,-80],[280,-294],[91,-92],[145,-156],[79,-80],[314,-333],[388,-412],[231,-244],[118,-131],[45,-43],[258,-282],[50,-50],[156,-172],[128,-136],[199,-221],[170,-185],[33,-34],[249,-275],[135,-147],[394,-438],[414,-460],[170,-195],[204,-227],[248,-281],[389,-443]],[[99839,116934],[237,-271],[334,-385],[353,-408],[250,-296],[167,-192],[361,-424],[208,-248]],[[101749,114710],[7,-44],[-9,-56],[8,-32],[-5,-55],[3,-32],[-9,-50],[13,-51],[57,-52],[16,-30],[16,-74],[30,-68],[36,-36],[21,-33],[71,-55],[10,-51],[23,-54],[-12,-21],[25,-34],[6,-52],[23,-25],[-18,-39],[48,-56],[38,-92],[4,-52],[-13,-114],[24,-25],[50,10],[20,-31],[41,-26],[15,-40],[45,-21],[45,-55],[13,-25],[42,-10],[35,-28],[31,-73],[30,-34],[5,-105],[-46,4],[0,-18],[-97,-116],[-6,-34],[-38,-30],[-52,-7],[-40,-60],[-19,-19],[-37,-5],[-29,-37],[-38,-20],[-40,-5],[-29,-47],[-2,-18]],[[102061,112577],[-474,-1],[-421,1],[-297,-1],[0,-3],[-195,0],[0,-101],[-440,3],[-245,-1],[-367,0],[-1,-2],[-333,-1],[-165,1],[0,-4],[-496,0],[-206,4],[-288,0],[0,-68],[-276,-2]],[[98302,111067],[361,1],[145,-1],[248,2],[229,3],[107,-6],[71,-1]],[[99463,111065],[0,-200],[6,-343],[0,-269],[-35,0],[1,-173],[-2,-373],[1,-259],[-30,18],[-21,-20],[-274,2],[0,18],[-268,-2],[-4,63],[-16,36],[-8,57],[-24,24],[-75,27],[-8,-13],[-74,-2],[-25,-36],[-12,15],[-41,19],[-90,1],[0,-32],[-29,1],[4,-97],[-27,-3],[0,32],[-70,0],[-29,8],[-26,-15],[-23,-37],[18,-11],[56,-86],[-31,-73],[-22,-12],[-11,-37],[-46,-23],[-28,-34],[-53,0],[-16,29]],[[97971,147079],[616,2],[388,0],[40,3],[504,-1]],[[99519,147083],[1,-713],[-1,-578],[0,-747],[0,-330],[30,-10],[36,-50],[38,-80],[71,-82],[30,-54],[28,-33],[31,15],[17,-34],[29,-17],[8,-95],[37,-79],[32,14],[36,-38],[-5,-28],[17,-29],[21,4],[44,-32],[14,-24],[-5,-49],[-16,-43],[9,-30],[36,-17],[21,-26],[-7,-27],[11,-43],[-23,-37],[-54,-32],[-22,-25],[5,-25],[88,-33],[-25,-10],[40,-89],[29,9],[11,-25],[49,4],[-16,-46],[-58,-15],[-23,9],[-41,-10],[-46,-24],[-16,-46],[56,7],[14,-23],[32,-1],[55,-35],[22,-52],[41,12],[62,-36],[2,-23],[43,-24],[-2,-30],[18,-11],[16,-69],[62,-25],[36,-2],[34,-24],[39,0],[14,-30],[42,8],[40,-19],[29,8],[27,-15],[-1,-25],[21,-37],[19,-10],[12,-33],[-16,-41],[23,-23],[38,-4],[12,-44],[19,-28],[32,-3],[39,-28],[60,-81],[25,-1],[7,-52],[53,-71],[29,-6],[42,-125],[20,-52],[31,15],[43,-19],[65,-88],[53,-23],[-17,-52],[8,-49],[-26,-35],[31,-14],[10,-60],[44,-27],[12,-18],[33,12],[14,-30],[42,-41],[33,-3],[70,-56],[-4,-45],[-33,-57],[57,-39],[20,34],[36,5],[28,60],[54,-2],[69,-74],[-4,-38],[-28,-26],[9,-47],[32,-9],[3,-39],[45,-12],[23,23],[37,4],[126,-31],[20,39],[47,28],[16,-9],[31,19],[57,9],[33,-15],[26,-36],[-3,-84],[-27,-54],[13,-34],[-26,-48],[8,-78],[-9,-17],[-43,-20],[-42,-3],[2,-51],[34,-42],[-8,-29],[20,-12],[-20,-35],[0,-37],[-59,-57],[19,-49],[-7,-60],[-30,-79],[9,-51],[-12,-16],[-56,-26],[8,-43],[25,-22],[11,-79],[-3,-81],[-20,5],[-27,-21],[-23,15],[-28,-7],[-32,-44],[10,-44],[52,-31],[22,0],[23,-44],[-16,-75],[-37,-21],[-21,-33],[15,-24],[26,6],[12,-38],[-23,-23],[19,-28],[28,13],[72,-46],[15,-46],[-46,-51],[26,-32],[3,-24],[29,-24],[12,-28],[-13,-40],[-16,-3],[-6,-43],[-44,25],[-52,-26],[-47,-4],[-27,-32],[3,-22],[-80,-124],[34,-32],[-5,-36],[33,-36],[36,-14],[14,-41],[-10,-24],[3,-58],[-36,-45],[-65,-27],[16,-43],[24,-29],[-32,-51],[9,-18],[-19,-43]],[[101857,139121],[-50,-56],[-48,-25],[-38,-72],[-19,-47],[-27,28],[-38,20],[-47,-5],[-62,54],[-31,-11],[-8,-74],[17,-42],[-9,-50],[39,-6],[1,-28],[55,-62],[26,1],[15,-36],[52,-39],[-5,-15],[53,-83],[72,-66],[-97,-101],[-39,-68],[-1,-27],[-23,-42],[-27,-7],[-13,-65],[-10,-13],[15,-74],[-18,-60],[20,-13],[-13,-39],[10,-71],[-21,-161],[0,-42],[19,-43],[-19,-23],[14,-52],[-8,-52],[-58,-18],[2,-72],[-42,-15],[-2,-22],[-28,-42],[-31,-10],[-15,-24],[-111,-80],[-23,-55],[-46,-30],[-36,20],[-33,-6],[-28,10],[-31,43],[-33,16],[-43,33],[-80,-67],[-23,-33],[19,-24],[-15,-39],[-6,-57],[-20,-34],[-4,-32],[-46,-39],[-40,-1],[-55,-35],[-9,-22],[-32,-8],[-34,-52],[8,-47],[16,-38],[-7,-24],[89,-52],[18,-80],[-14,-13],[12,-68],[-1,-41],[-28,-81],[-21,-39],[-55,-76],[10,-31],[22,-18],[97,-29],[16,-51],[37,33],[20,-47],[-2,-42],[17,-27],[-29,-26],[19,-49],[-10,-18],[41,-36],[29,-2],[25,-42],[42,11],[24,-24],[65,-17],[14,-39],[-13,-30],[-34,-18],[41,-52],[38,-3],[-12,-37],[-24,-3],[-42,-55],[-2,-47],[28,-41],[35,-10],[15,16],[25,-47],[-8,-19],[31,-23],[-37,-75],[-63,10],[-68,-23],[-29,38],[11,37],[-38,-13],[-34,26],[-26,47],[5,29],[-18,108],[-26,53],[-58,28],[20,-64],[-21,-30],[-9,-54],[-29,-59],[-28,-27],[-38,-81],[-2,-41],[-16,-17],[-98,-36],[-27,11],[-38,-20],[-54,-16],[-74,-36],[-37,-5],[-29,-25],[-18,-54],[-18,-8],[5,-82],[-22,-59],[-48,10],[-31,-7],[-28,-32],[-1,-41],[-17,-18],[-2,-49],[-11,-47],[-71,-71],[-26,-38],[-39,-4],[-14,-25],[-35,-24],[-11,16],[-36,-5],[-26,-45],[-47,-52],[-29,4],[-28,-13],[-17,-25],[-34,17],[-18,-14],[-33,7],[-8,29],[-33,-16],[4,-18],[-42,-18],[-229,249],[-215,230],[-5,-66],[-39,-30],[-27,-53],[-20,-21],[10,-29],[-1,-76],[54,-30],[0,-27],[-54,25],[-32,7],[0,-152],[79,-6],[72,-50],[65,-14],[50,-49],[32,-79],[30,-46],[35,-35],[73,-103],[51,-46],[79,-109],[-6,-381],[0,-201],[-453,-2],[2,-17],[42,-23],[53,-5],[20,-27],[-24,-29],[3,-37],[56,-35],[45,-7],[-4,-49],[41,-2],[43,-57],[59,-2],[34,-59],[33,-28],[48,-4],[30,12],[-17,40],[13,38],[58,34],[16,-35],[32,-9],[28,16],[20,-30],[28,-15],[86,8],[12,-27],[-8,-36],[33,-16],[50,9],[67,-9],[50,14],[36,24],[42,-9],[17,-33],[70,-5],[42,17],[50,-35],[93,8],[0,-185],[-20,0],[0,-192],[207,0],[449,1],[1,-406],[-1,-309],[0,-484],[0,-587]],[[102674,126539],[-1,-336],[-1,-482],[1,-126],[-1,-194],[-1,-570],[0,-274],[-1,-531],[-1,-340],[-1,-659],[-1,-237],[2,-532],[-2,-723],[2,-300],[2,-33],[-5,-134],[-2,-364],[0,-370],[1,-40],[1,-538],[-1,-198],[3,-227]],[[102668,119331],[-1,-243],[1,-429],[8,-505],[3,-50],[0,-206],[-4,-212],[3,-221],[-36,-33],[-23,-67],[-16,-30],[-9,-38],[-30,-12],[-9,-23],[15,-27],[-11,-19],[-27,-75],[3,-18],[-30,-51],[-33,8],[-59,-28],[-50,1],[-32,29],[-11,41],[-68,35],[16,35],[-31,59],[-55,61],[-18,35],[-67,9],[-49,-49],[-20,29],[-19,2],[-24,-21],[-33,-6],[7,33],[-12,19],[-37,-5],[-12,10],[-51,-2],[-78,-44],[-10,20],[-45,-33],[-13,-23],[-28,-17],[-82,-10],[-32,-43],[21,-48]],[[101580,117169],[-124,98],[-59,32],[-26,24],[-37,-20],[-23,16],[-44,0],[1,-58],[-17,-22],[-51,-17],[-18,8],[-56,61]],[[101126,117291],[5,86],[1,77],[-9,17],[-170,0],[-25,-50],[-31,3],[-35,57],[-43,-10],[-14,-17],[-72,0],[1,-25]],[[100734,117429],[-30,4],[-42,32],[6,27],[-32,1],[9,34],[-63,0],[0,-16],[-45,0],[0,-43],[-18,0],[1,-62],[49,-49],[-69,-40],[-21,15],[-54,19],[-45,44],[-32,-21],[-13,-52],[-42,-24],[-19,-2],[-8,100],[-45,9],[-56,-16],[-24,11],[-22,-9],[-21,-31],[-40,-10],[-34,9],[-84,-52],[-100,-7],[-1,-366]],[[102061,112577],[-6,-50],[7,-47],[-5,-35],[-44,-43],[9,-23],[-35,-32],[-27,-43],[-35,-14],[-21,-48],[2,-22],[31,-26],[10,-28],[-27,-14],[33,-44],[0,-26],[-40,-41],[15,-52],[-13,-24],[33,-109],[4,-39],[-12,-39],[25,-35],[0,-51],[-43,-26],[-13,-37],[22,-32],[-24,-17],[15,-32],[-12,-25],[15,-29],[-30,-46],[8,-52],[18,-37],[-53,-47],[-5,-37],[-44,-34],[-17,-41],[-36,-64],[-7,-53]],[[101759,111083],[-321,0],[0,-8],[-267,-2],[-99,-3],[-98,2],[-197,-1],[-342,0],[0,-3],[-223,-1],[-361,1],[-59,-2],[-329,-1]],[[101759,111083],[-25,-39],[-24,-9],[-24,15],[-35,-10],[-9,-15],[-29,-1],[-7,-18],[27,-41],[13,-50],[-3,-55],[-14,-37],[-34,-43],[13,-34],[45,-19],[28,-22],[4,-34],[-24,-24],[24,-45],[-7,-51],[5,-36],[-6,-59],[-13,-47],[-15,-25],[-17,-78],[2,-22],[28,-9],[3,-31],[20,-32],[5,-44],[21,-9],[29,26],[32,-42],[33,-4],[31,23],[92,-12],[21,-29],[26,-110],[34,4],[1,-35],[-21,-47],[29,-66],[-10,-145],[-39,-50],[-26,-16],[-33,-59],[7,-78],[-19,-17],[-40,-1],[-27,-17],[0,-17],[-53,-1],[-1,-14]],[[101777,109452],[-116,23],[-20,17],[-28,-62]],[[101613,109430],[-298,-31],[-538,-53],[-415,-44],[-453,-50],[-386,-43],[-259,-30],[-454,-54],[-465,-57],[-522,-65],[-124,-12],[-8,102],[-20,107]],[[101126,117291],[0,-75],[-175,2],[-9,-35],[-19,0],[-56,19],[-6,16],[-129,-3],[2,214]],[[101580,117169],[-1,-40],[29,-50],[-28,-31],[1,-87],[51,-110],[0,-41],[22,-34],[48,-50],[-67,-65],[16,-28],[-26,-65],[20,-35],[-1,-54],[9,-24],[-17,-104],[6,-24],[30,-29],[-12,-54],[2,-35],[22,-28],[33,-61],[-8,-56],[-18,-9],[21,-112],[-32,-51],[-2,-27],[20,-77],[4,-47],[20,-44],[37,-43],[15,-70],[18,-47],[18,-87],[-4,-52],[18,-97],[10,-113],[12,-18],[4,-89],[-14,-78],[-31,-16],[-45,-3],[-29,-36],[3,-19],[32,-18],[29,-35],[-8,-40],[-28,-27],[-17,-53],[7,-46]],[[101857,139121],[19,-2],[42,32],[44,-36],[20,15],[31,-3],[3,-36],[38,-18],[26,-64],[54,-15],[33,-25],[15,-45],[23,-30],[56,22],[26,25],[35,10],[18,62],[18,31],[-2,47],[32,3],[52,-23],[23,35],[71,14],[5,34],[19,28],[36,6],[23,23],[2,34],[22,38],[24,11],[28,34],[32,25],[-23,39],[64,71],[31,-33],[54,1],[4,-43],[19,-36],[38,-32],[-11,-15],[7,-36],[15,-10],[41,14],[29,-25],[28,1],[31,-27],[11,-46],[-31,-42],[-23,-99],[49,6],[47,-21],[20,-78],[-26,-23],[-12,-36],[15,-20],[-3,-27],[26,-17],[-27,-25],[5,-23],[39,-9],[23,-24],[5,-80],[-14,-30],[2,-35],[32,-35],[14,-31],[47,-51],[-20,-34],[21,-34],[47,-35],[20,-51],[70,-64],[3,-67],[40,-21],[-18,-36],[42,-42],[58,9],[11,-20],[-26,-37],[45,-28],[14,-39],[39,4],[13,-13],[9,-59],[-4,-32],[16,-24],[-13,-26],[5,-89],[-32,-27],[-51,-1],[8,-54],[31,-34],[-11,-33],[28,-20],[9,-49],[41,-25],[11,-28],[58,-12],[44,-39],[27,-83],[96,64],[51,24],[15,-21],[44,-11],[24,-16],[49,-54],[47,-11],[-2,-49],[18,-10],[34,-44],[0,-53],[31,-52],[22,-11],[4,-70],[22,-27],[-9,-44],[-23,-5],[-26,-38],[41,-32],[-8,-15],[44,-28],[-13,-44],[64,-51],[-15,-51],[-16,-20],[32,-57],[7,-48],[61,-62],[78,-48],[44,-16],[7,-38],[58,-49],[34,26],[17,43],[-15,45],[-28,39],[17,38],[49,48],[19,41],[40,21],[31,4],[35,33],[46,-13],[44,-29],[45,12],[12,-19],[37,18],[26,-22],[56,8],[56,-22],[21,-29],[43,39],[46,-29],[15,-29],[41,7],[33,-23],[33,49],[15,55],[-3,85],[11,20],[51,3],[9,32],[40,35],[70,0],[23,-9],[13,-48],[59,-24],[30,20],[53,-9],[6,-21],[48,-13],[4,15],[39,17],[48,-10],[10,32],[44,-20],[46,-4],[42,47],[71,1],[22,18],[33,1],[8,-32],[33,-56],[33,-42],[17,6],[15,34],[37,-4],[44,35],[55,10],[17,37],[34,4],[35,-20],[23,4],[50,-14],[46,32],[97,-34],[14,-26],[23,13],[44,-3],[4,37],[-60,12],[10,24],[-26,23],[-13,52],[15,35],[22,16],[-22,40],[39,1],[30,52],[6,27],[-25,21],[-8,27],[36,32],[55,17],[28,-23],[27,39],[6,57],[27,-3],[29,-50],[32,9],[23,-34],[42,-38],[-1,-25],[29,-23],[18,-32],[-17,-28],[11,-20],[28,10],[53,-66],[-34,-19],[14,-68],[21,-22],[27,1],[32,-15],[1,-34],[34,-19],[13,-27],[30,-5],[-11,-36],[13,-39],[46,-29],[77,-21]],[[107390,136625],[5,-10],[-1,-279],[2,-552],[-1,-219],[3,-47],[1,-212],[0,-390],[2,-276],[0,-314],[2,-549],[0,-627],[1,-593],[-4,-316],[-2,-252],[0,-615],[1,-477]],[[107399,130897],[-569,-2],[-119,-3],[-421,0],[-635,-5],[-31,10],[-300,-1],[-432,-2],[-472,-4],[-635,-9],[-497,-8],[-249,-6],[-137,0],[-139,10],[-81,2]],[[118407,137825],[3,-283],[0,-578],[0,-249],[1,-619],[1,-161],[0,-417],[-1,-339],[0,-261],[1,-749],[1,-396],[2,-566]],[[118415,133207],[0,-290],[0,-496],[0,-372],[0,-770],[0,-82],[0,-496],[0,-439],[0,-312],[1,-449],[0,-277],[-2,-280],[0,-360]],[[118414,128584],[-476,0],[-425,0],[-336,-6],[-165,-1]],[[117012,128577],[-627,-1],[-606,-3],[-432,1],[-299,1]],[[115048,128575],[-195,3],[-197,7],[-293,1],[-366,1],[-229,2],[-375,-2],[-199,1],[-210,-2],[-394,-1],[-466,0],[-212,-3],[-543,-2],[-165,1],[-399,0],[-261,1]],[[110544,128582],[-315,1],[-411,-5],[-466,-3],[-461,-1],[-275,-5],[-364,0],[-64,3],[-214,0],[-575,4],[0,575],[1,600],[0,418],[-1,403],[0,325]],[[107390,136625],[-3,573],[-1,635],[417,0],[135,-20],[311,1],[96,2],[61,14],[129,0],[64,-5],[160,-1],[122,15],[441,-1],[62,-3],[406,4],[318,4],[352,1],[32,-14],[558,1],[306,1],[32,-2],[448,2],[339,0],[632,0],[204,2],[561,-4],[67,-7],[368,-2],[356,-2],[556,-2],[230,-2],[312,1],[24,15],[611,0],[574,0],[428,0],[406,-3],[529,-1],[374,-2]],[[110542,125107],[0,354],[1,459],[-1,367],[0,600],[0,402],[2,203],[3,120],[-2,308],[1,258],[-2,404]],[[115048,128575],[-8,-18],[18,-80],[-2,-49],[59,-68],[18,-6],[14,-40],[1,-35],[29,-15],[2,-25],[30,-44],[54,-48],[22,-62],[16,-9],[9,-47],[28,-55],[25,-24],[3,-41],[26,-34],[0,-30],[37,-93],[-1,-33],[11,-42],[19,-7],[14,-78],[16,-14],[9,-72],[-4,-46],[57,15],[31,-35],[-5,-47],[-69,-48],[-7,-76],[9,-35],[-13,-42],[-29,-15],[-35,-36],[12,-26],[-24,-14],[-13,-28],[-38,38],[-38,-6],[-6,25],[-34,-8],[-29,-27],[-49,-24],[-22,17],[-55,-44],[-23,-8],[-20,24],[-55,-39],[-32,8],[-22,-11],[-32,38],[-23,47],[-51,-26],[-1,-44],[-60,21],[-23,37],[-29,4],[-30,-26],[-23,-3],[-31,17],[-31,-14],[-23,23],[-1,24],[-25,49],[-6,39],[-19,16],[-58,-64],[-7,-40],[-35,7],[-5,18],[-45,11],[-43,-7],[-22,110],[-40,36],[-1,-233],[32,0],[-1,-376],[-6,0],[0,-409],[17,-5],[-1,-188],[-4,-208],[7,-20],[64,-53],[-32,-86],[38,-39],[3,-31],[42,-10],[16,-29],[-32,-38],[-8,-61],[17,-21],[1,-44],[41,-16],[41,-28],[50,-6],[50,-46],[13,-38],[35,-21],[-17,-54],[-48,-52],[-8,-27],[-42,-50],[-34,-27],[-2,-41],[-51,-56],[-21,-36],[12,-57],[31,-18],[1,-29],[22,-45],[130,-1],[41,45],[31,-12],[18,-36],[28,-16],[20,13],[57,5],[31,-25],[19,18],[29,2],[43,47],[141,0]],[[115134,124833],[-20,-26],[2,-42],[12,-24],[-22,-44],[-25,4],[-23,-30],[5,-24],[-9,-44],[10,-44],[-4,-49],[20,-39],[-23,-31],[8,-37],[9,-130],[-57,-77],[49,-1],[15,-40],[-34,-41],[0,-29],[-312,1],[-297,3],[-5,-21],[-26,-9],[3,-124],[29,-2],[26,18],[51,-40],[10,-28],[-11,-20],[38,-53],[62,-62],[37,12],[35,28],[28,-39],[39,28],[1,-31],[31,8],[18,-13],[30,9],[9,-35],[-11,-32],[-58,-66],[-9,-34],[-43,-36],[-30,1],[-10,-37],[12,-19],[2,-47],[-8,-31],[2,-93],[-12,-35],[-29,-3],[-13,-24],[19,-28],[15,-77],[21,-20],[58,-18],[-8,-28],[32,-21],[6,-46],[26,-63],[-14,-43],[-1,-39],[18,-27],[-8,-21],[18,-36],[39,-5],[14,-41],[19,-8],[3,-28],[36,-45],[32,-6],[-2,-38],[191,-2],[77,4],[53,78],[40,-20],[33,-66],[21,-2],[56,-67],[5,-27],[39,-27],[49,-61],[0,-15],[35,-66],[38,-29],[37,-45],[35,-20],[323,0],[453,-16],[65,2],[216,-3],[292,1],[-2,605],[243,1],[162,-2],[608,4],[385,3]],[[118413,122851],[-4,-200],[3,-402],[-6,-3],[1,-276],[-2,-87],[0,-529],[-4,-121],[1,-203],[-457,191],[-38,-44],[-128,-117],[3,-16],[-148,-304],[0,-81],[-113,-103],[-11,-44],[-34,-36],[-58,1],[-16,-24],[-6,-50],[2,-55],[-27,-12],[-42,-35],[-10,-28],[-94,-18],[-47,-3],[-73,-29],[-42,18],[-34,4],[-38,-19],[-23,-25],[-38,-2],[-27,-40],[-17,-5],[0,-33],[-20,0],[-23,-25],[-27,-12],[-10,-20],[-28,-4],[-9,-26],[-28,-18],[-25,11],[-36,-19],[-1,-388],[0,-300]],[[116679,119320],[-519,1],[-284,0],[-479,-1],[-366,-3],[-224,0],[-390,-3],[-439,-1],[-12,18],[-362,-1],[-562,0],[-418,0],[-427,0],[-392,-2],[-2,1],[-394,0],[-286,-1],[-304,0],[-268,0]],[[110551,119328],[1,281],[-2,420],[1,241],[6,360],[-1,412],[0,471],[-1,84],[0,431],[-27,252],[0,527],[0,489],[9,367],[5,622],[0,538],[0,284]],[[117012,128577],[0,-397],[-1,-444],[0,-502],[-2,-159],[-175,1],[2,-33],[0,-169],[-163,-2],[-1,-67],[-29,0],[-1,-218],[15,-17],[38,8],[44,-8],[97,18],[-1,-319],[76,0],[28,17],[-14,42],[29,8],[3,34],[27,0],[0,-101]],[[116984,126269],[-31,0],[-11,-32],[0,-42]],[[116942,126195],[-15,30],[-29,0],[1,-139],[-30,-16],[-44,-1],[-15,-33],[-45,6],[-13,28],[-61,-1],[0,-32],[-28,-20],[-2,52],[-221,0],[-42,-3],[-18,-28],[40,-61],[52,-29],[70,-166],[1,-83],[20,-55],[-12,-72],[42,-8],[24,-56],[-11,-28],[25,-7],[18,-38],[71,-2],[30,-34],[0,-22]],[[116750,125377],[-30,-1],[6,-53],[-32,-36],[18,-53],[26,1],[9,-41],[28,-1],[8,26],[25,-2]],[[116808,125217],[-11,-52],[2,-28],[-12,-37],[-19,-22],[-27,1],[-30,-36],[16,-35],[2,-48],[-24,-26],[-52,-38],[9,-36],[-11,-12],[10,-53],[-17,-31],[-18,-74],[-30,-45],[3,-15],[-44,-104],[-47,-40],[5,-44],[-36,-24],[-7,-47],[-35,-37],[-30,-79]],[[116405,124255],[-109,0],[-1,455],[1,174],[-27,26],[-90,14],[-1,-28],[-27,1],[-88,27],[-121,69],[-63,26],[-50,54],[-5,35],[-44,40],[-11,33],[-58,78],[-95,3],[22,-30],[-3,-32],[-42,-28],[-29,3],[-6,-25],[16,-26],[-36,-50],[-20,-6],[-22,-49],[-51,-3],[-9,-41],[-36,-6],[24,-55],[-65,-29],[-40,-47],[1,-37],[-41,-19],[-19,2],[-65,45],[-61,4]],[[116405,124255],[262,0],[531,1],[434,-1],[318,-1],[467,-2],[-3,-195],[1,-206],[-4,-199],[4,-403],[-2,-229],[0,-169]],[[116942,126195],[0,-59],[75,0],[0,-20],[26,-13],[58,0],[64,-33],[14,-28],[45,37],[27,36],[33,-11],[205,-1],[1,-52]],[[117490,126051],[-103,1],[0,-19],[-41,1],[-1,-124],[-47,1],[-46,-9],[0,-100],[-118,0],[0,34],[-29,0],[0,-34],[-30,0],[0,-34],[-37,0],[-21,25],[-31,-8],[-160,0],[13,-17],[0,-268],[-30,0],[14,-42],[-21,-25],[-52,-9],[0,-47]],[[117490,126051],[10,-16],[52,1],[-8,-60],[-22,0],[0,-119],[-225,2],[0,-57],[44,0],[0,-68],[-47,1],[-27,9],[-73,0],[-8,-17],[-37,5],[0,-23],[-37,-8],[-7,-56],[14,-12],[8,-62],[-41,-5],[10,-74],[38,15],[15,-40],[-45,-33],[0,-35],[-159,0],[-32,11],[-45,-11],[-29,-19],[0,-122]],[[116839,125258],[-31,-41]],[[116984,126269],[272,0],[471,1],[1,-563],[-29,-1],[-1,-43],[-166,4],[-43,-5],[0,-163],[-130,0],[11,-88],[29,4],[29,-25],[1,75],[30,1],[-1,-68],[15,-17],[-16,-50],[0,-47],[-29,-20],[-19,-35],[-26,1],[-2,-29],[-73,2],[-30,61],[-204,0],[0,-101],[-15,-18],[-75,-2],[-59,19],[-46,5],[-20,34],[-6,43],[-14,14]],[[118414,128584],[605,0],[479,1],[349,1],[498,0],[427,0],[454,0],[341,0],[0,-600],[0,-562],[0,-653],[0,-496]],[[121567,126275],[1,-585],[1,-321],[2,-549],[2,-322],[3,-585],[1,-554],[1,-406],[0,-649],[1,-400],[-1,-297],[5,-665],[0,-663],[-1,-435],[0,-530]],[[121582,119314],[-525,4],[-508,1],[-85,8],[-99,3],[-271,-3],[-24,4]],[[120070,119331],[-394,-2],[-390,0],[-501,-5],[-287,-2],[-534,-6],[-434,1],[-48,-2],[-605,-1],[-144,6],[-54,0]],[[118421,147080],[747,-1],[310,0],[625,0],[730,0],[474,-1],[342,1],[589,0],[591,0],[394,1],[585,-1],[399,0],[483,0],[545,0],[351,0],[393,1],[591,1],[394,0],[390,1],[404,0],[407,0],[619,0],[380,0]],[[129164,147082],[-17,-73],[16,-11],[-8,-37],[43,-106],[22,-9],[-11,-36],[42,-72],[-14,-84],[4,-34],[36,-25],[43,-129],[-11,-19],[28,-34],[-1,-24],[22,-26],[9,-72],[-25,-34],[10,-23],[-54,-82],[2,-29],[-38,-80],[21,-48],[5,-66],[28,-22],[-21,-22],[5,-45],[20,-22],[-31,-24],[17,-23],[-8,-36],[19,-26],[-41,-49],[26,-18],[-23,-32],[45,-50],[-7,-53],[23,-92],[-14,-9],[2,-55],[-18,-35],[-5,-46],[12,-23],[-29,-49],[9,-54],[31,-13],[-35,-29],[27,-26],[10,-61],[33,-23],[5,-58],[44,-60],[13,-114],[15,-11],[-13,-65],[9,-33],[27,-20],[7,-26],[26,-21],[4,-32],[-15,-27],[13,-54],[17,-3],[13,-50],[25,-41],[6,-46],[30,-42],[-10,-20],[30,-26],[43,-111],[18,-72],[13,-9],[26,-92],[-9,-27],[23,-54],[22,-7],[15,-49],[-3,-46],[-15,-19],[18,-25],[-18,-24],[1,-60],[18,-42],[-22,-17],[15,-65],[-9,-37],[8,-48],[-18,-14],[44,-84],[-23,-18],[10,-65],[25,-20],[-10,-46],[10,-30],[-21,-29],[12,-70],[-4,-42],[15,-22],[-16,-89],[27,-26],[-1,-68],[-21,-17],[32,-92],[0,-50],[-16,-24],[13,-59],[-5,-47],[-22,-54],[18,-15],[6,-54],[34,-76],[10,-38],[47,15],[4,-44],[-27,-46],[11,-42],[-17,-13],[8,-73],[-36,-42],[-7,-25],[24,-60],[2,-99],[8,-48],[-16,-42],[10,-22],[-5,-37],[-18,-7],[1,-49],[13,-36],[-9,-17],[34,-31],[5,-50],[32,-26],[9,-32],[-8,-62],[27,-109],[-5,-36],[36,-38],[-4,-66],[35,-34],[40,-78],[2,-28],[29,-30],[5,-28],[26,7],[15,-32],[32,-22],[-5,-68],[12,-37],[-8,-53],[22,-35],[-20,-11],[2,-31],[21,-59],[-7,-56],[18,-18],[-5,-47],[18,-41],[3,-43],[20,-71],[-4,-45],[-33,-87],[6,-26],[6,-121],[14,-41],[-4,-24]],[[130211,139994],[-240,1],[-445,0],[-358,-1],[-323,1],[-81,-2],[-519,1],[-341,1],[-445,1],[-163,1],[-539,5],[-458,2],[-393,1],[-305,1],[-425,1],[-451,2],[-412,3],[-697,1],[-457,0],[-104,1],[-494,-1],[-576,2],[-536,0],[-503,1],[-309,1],[-538,-1],[-607,1],[-592,-1],[-474,1]],[[118426,140017],[-2,183],[3,328],[0,464],[0,644],[-2,471],[0,263],[3,375],[-1,210],[0,419],[2,303],[0,473],[4,302],[-6,507],[-1,268],[-3,725],[-1,450],[-1,678]],[[118407,137825],[29,1],[-1,466],[-1,609],[-2,362],[-1,302],[-5,452]],[[130211,139994],[-12,-114],[-5,-97],[-13,-56],[-22,-19],[-67,-92],[-20,-58],[-32,-34],[-61,-34],[-62,-43],[-14,-23],[-125,-96],[-28,-97],[147,-198],[28,-72],[22,-73],[54,-82],[26,-26],[96,-4],[116,-64],[38,-12],[52,-43],[56,-131],[2,-346],[0,-436],[1,-565],[-1,-403],[0,-559],[-2,-482],[1,-565]],[[130386,135170],[-1,-456],[0,-351]],[[130385,134363],[-230,0],[23,-25],[4,-53],[-32,-40],[15,-38],[30,-4],[0,-28],[82,-75],[-9,-56],[5,-35],[-17,-25],[17,-57],[-10,-28],[-35,-16],[-45,6],[6,-40],[-14,-10],[59,-59],[-35,-21],[26,-29],[30,2],[29,-23],[32,14],[32,-4],[4,-73],[14,-17],[-6,-57],[29,-37],[23,-52],[-28,-52],[-11,-76],[-25,-4],[-19,-26],[-39,-10],[0,-40],[34,-46],[-45,-70],[24,-20],[10,-30],[-16,-29],[-48,-48],[-1,-29],[19,-34],[-29,-53],[3,-57],[-52,-49],[-41,-103],[-25,-1],[-21,-51],[12,-17],[-16,-32],[18,-45],[-9,-37],[38,-7],[46,-44],[32,-43],[29,-20],[0,-21],[36,-43],[30,-111],[15,-16],[-20,-29],[35,-11],[-5,-73],[-13,-30],[24,-18],[-6,-29],[49,-1]],[[130397,132028],[-47,-24],[-40,6],[-23,26],[-15,37],[-20,18],[-31,6],[-42,-29],[-30,-8],[-36,21],[-19,89],[-32,33],[-45,30],[-38,67],[6,39],[31,65],[-64,31],[-56,-11],[-46,9],[-14,15],[1,61],[-8,13],[-58,18],[-27,20],[-39,9],[-36,21],[-64,-33],[-24,3],[3,48],[-27,43],[-78,7],[-68,21],[-38,-7],[-54,5],[-32,56],[-21,13],[-58,10],[-19,15],[-8,77],[-48,23],[-66,1],[-26,28],[-54,-28],[-33,-1],[-23,23],[-64,2],[-35,-44],[-70,7],[-33,19],[-28,-15],[-62,-10],[-66,25],[-68,-25],[-62,-12],[-54,12],[-85,5],[-67,28],[-22,17],[-70,-24],[-1,-26],[-20,-70],[-26,-43],[-66,-65],[-46,-1],[-58,-18],[-34,4],[-39,20],[-5,19],[-105,93],[-28,43],[-38,-6],[-76,37],[-61,49],[-34,2],[-72,26],[-26,33],[-124,72],[-30,-8],[-43,44],[-37,71],[-12,47],[-610,0],[-488,-1],[-295,0],[-399,0],[-240,0],[-387,0],[-341,1],[-434,2],[-59,-3],[-510,0],[-525,-1],[-650,-3],[-127,1],[-234,6],[-414,0],[-328,0],[-460,1],[-382,1],[-33,1],[-607,1],[-317,-1],[-279,2],[-428,-1],[-105,2],[-97,-3]],[[130397,132028],[69,-10],[25,-27],[9,-65],[-11,-33],[-36,-45],[-7,-48],[10,-37],[-15,-40],[16,-50],[37,-26],[22,-35],[4,-47],[18,-32]],[[130538,131533],[-227,2],[-385,1],[-123,1],[-1,-435],[-423,1],[-498,0],[-304,-1],[-337,-1],[-30,-3],[2,-406],[1,-395],[3,0],[-1,-381],[2,-119],[199,2],[0,-305],[165,0],[1,-180],[-52,-24],[-43,-4],[-55,-52],[-29,-35],[-85,-75],[-55,-96],[-44,-42],[1,-298],[362,1],[362,0],[0,-249],[0,-556],[448,-1],[268,-1],[0,-202],[2,-201],[343,-1],[193,1],[183,-2],[346,0],[534,0],[232,0],[63,2]],[[131556,127479],[20,11],[5,66],[35,13],[31,-56],[-15,-49],[-60,-27],[7,-18],[4,-65],[33,-29],[19,-29],[6,-34],[-9,-32],[28,-67],[2,-40],[31,-63],[-17,-30],[-31,-16],[-6,-27],[19,-12],[47,20],[53,-34],[45,-20],[-5,-47],[20,-23],[43,-27],[36,1],[23,-13],[14,-49],[-18,-45],[6,-45],[30,-36],[28,-14],[15,-53],[18,-19],[37,-15],[3,-38],[-22,-26],[-3,-54],[-16,-22],[1,-31],[20,-40],[25,-14],[43,10],[27,-8],[17,-21],[38,-22],[6,-22]],[[132189,126268],[-242,0],[-328,1],[-493,0],[-404,1]],[[130722,126270],[-420,0],[-394,1],[-462,0],[-577,2],[-653,0],[-509,0],[-462,1],[-430,-1],[-428,0],[-501,-1],[-269,0],[-459,0],[-278,0],[-447,0],[-415,0],[-415,1],[-456,0],[-380,1],[-527,0],[-341,1],[-332,0]],[[130722,126270],[0,-200],[-295,-1],[0,-33],[-30,0],[0,-34],[-28,0],[0,-67],[-89,0],[0,-29],[-25,-4],[-5,-34],[-421,1],[-1,-179],[1,-425],[483,-1],[458,1],[273,0],[2,-439],[-2,-570],[60,-47],[39,5],[41,-30],[0,-311],[2,-622],[-7,0],[0,-537],[-1,-207],[1,-263],[-13,0],[-1,-206]],[[131164,122038],[-469,5],[-159,-1],[-1,-201],[-451,2],[-261,-2],[-216,1],[-324,4],[0,201],[-174,0],[-137,-2],[-553,0],[-1,-369],[0,-437],[4,0],[2,-209],[-259,-4],[-94,2],[-390,-3],[-464,0],[0,212],[-12,0],[1,213],[-2,534],[1,262],[-130,1],[-259,-1],[-305,1],[1,-205],[-1,-398],[-349,-1],[-167,0],[0,403],[-173,3],[0,33],[-346,-1],[1,-202],[-1,-437],[-1,-202],[16,0],[1,-217],[3,-235],[4,-555],[19,-21],[-2,-177],[1,-251],[3,-176],[1,-278]],[[125521,119330],[-283,2],[-243,2],[-185,0],[-181,2],[-422,-2],[-471,-4],[-94,-2],[-381,-2],[-376,-2],[-610,-5],[-421,-3],[-272,-2]],[[131164,122038],[-1,-200],[2,-607],[-5,0],[2,-270],[-4,-599],[2,-137],[-5,0],[1,-457],[-1,-217],[0,-223]],[[131155,119328],[-57,0]],[[131098,119328],[-501,1],[-286,-2],[-372,2],[-477,-1],[-425,0],[-450,-1],[-629,0],[-482,-2],[-350,3],[-205,0],[-227,1],[-487,0],[-265,0],[-421,1]],[[130538,131533],[39,-40],[12,-68],[-21,-29],[-36,-16],[18,-33],[3,-73],[41,-39],[17,-36],[38,-15],[29,-37],[-2,-34],[-17,-50],[2,-35],[16,-38],[53,-3],[18,-39],[-25,-26],[-4,-29],[20,-13],[21,29],[48,-4],[-11,-46],[23,-21],[30,10],[39,-13],[7,-22],[-23,-65],[11,-23],[-9,-27],[-31,-29],[22,-37],[18,-53],[40,-32],[2,-61],[12,-18],[35,-14],[24,-43],[-20,-32],[-2,-36],[-43,-53],[11,-30],[41,-39],[-22,-28],[-34,5],[-18,-16],[-1,-36],[33,-37],[7,-30],[-8,-29],[-25,-31],[4,-46],[42,-36],[9,-28],[-24,-67],[7,-26],[55,-54],[36,5],[12,63],[42,-2],[12,-57],[-6,-18]],[[131197,129484],[-1,6],[-322,0],[-516,0],[18,-30],[55,-33],[14,-23],[13,-50],[-1,-46],[47,-38],[43,-76],[0,-21],[-24,-51],[24,-69],[41,-42],[14,-97],[-6,-33],[13,-34],[-34,-36],[-11,-40],[32,-86],[31,-40],[24,-14],[53,-7],[28,-41],[40,-12],[99,50],[55,72],[85,39],[35,1],[46,-11],[0,132],[31,25],[-2,46],[-20,3],[6,42],[-22,52],[135,0]],[[131468,127621],[-12,-16],[15,-69],[-8,-27],[19,-25],[74,-5]],[[129164,147082],[470,-1],[480,0],[278,0],[465,0],[364,-1],[532,0],[341,-2],[338,0],[1,292],[0,600],[59,-41],[90,-31],[70,7],[40,29],[49,3],[76,-46],[49,-39],[38,-21],[59,-8],[-14,-61],[44,-185],[-1,-38],[39,-179],[37,-49],[0,-230],[49,0],[54,-268],[-13,-71],[11,-31],[-29,-36],[14,-36],[2,-62],[66,-61],[17,-33],[35,-10],[43,-42],[73,-16],[11,-22],[108,-14],[28,-9],[35,19]],[[133572,146389],[2,-275],[-2,-162],[2,-334],[5,0],[5,-487],[-2,-317],[9,0],[0,-200],[-204,-1],[-69,2],[-237,-2],[-2,-133],[-96,0],[0,-166],[-207,-2],[-1,-300],[13,0],[0,-338],[16,-39],[69,-25],[117,-5],[-1,-201],[-603,6],[0,-200],[21,-2],[1,-433],[-2,-173],[0,-197],[13,1],[-1,-339],[-2,-298],[1,-169],[12,0],[0,-604],[668,0],[14,-38],[31,-5],[60,5],[18,-8],[0,-153],[9,0],[0,-296],[-2,-511],[8,-2],[0,-367],[206,1]],[[133441,139622],[3,-235],[1,-201],[9,-79],[-1,-222],[-32,-16],[-64,-17],[16,-34],[-11,-32],[-121,-2],[0,-200],[404,2],[0,-101],[194,2],[0,-98],[8,-82],[-1,-524],[135,-1],[249,0],[4,-201],[-1,-404],[192,-1],[0,-100],[190,0],[0,-77]],[[134615,136999],[-38,-26],[-37,9],[-33,-33],[-28,-4],[-10,-25],[-27,-1],[-36,-84],[4,-17],[-19,-44]],[[134391,136774],[13,-29],[21,-9],[2,-51],[-26,-40],[-5,-31],[-36,-40],[-382,1],[-631,-2],[-339,0],[-56,68],[-66,29],[-1,-499],[-285,1],[-95,-2],[-2,-201],[-19,-33],[-64,0],[1,-100],[-32,-1],[1,-66],[126,-1],[1,-267],[-1,-334],[-375,-1],[-652,1],[-429,2],[-347,-1],[-327,2]],[[132189,126268],[10,-37],[46,-30],[35,-52],[71,-20],[8,-33],[-9,-31],[26,-28],[47,16],[21,-6],[10,-55],[29,-20],[57,-23],[79,9],[13,15],[4,44],[14,19],[45,-8],[50,12],[32,-18],[7,-46],[-16,-20],[1,-30],[36,-38],[40,-2],[24,-28],[0,-35],[-22,-37],[-46,-3],[-24,-15],[0,-25],[35,-31],[68,31],[16,-44],[-9,-35],[-17,-19],[-42,-15],[-23,10],[-48,39],[-28,-14],[-10,-31],[4,-81],[-30,-32],[-43,-6],[-14,-14],[-40,-70],[-9,-38],[14,-57],[-16,-38],[-24,-10],[-32,11],[-24,-17],[-10,-45],[9,-33],[48,-61],[43,-37],[9,-61],[18,-24],[68,-34],[27,-56],[42,-37],[7,-38],[36,-10],[47,17],[16,-39],[-9,-21],[-40,-35],[3,-64],[15,-58],[29,-38],[53,-32],[30,-43],[-7,-78],[37,-22],[40,2],[12,-16]],[[133028,124419],[-196,6],[-2,-172],[-11,0],[-1,-317],[-36,23],[-26,-40],[-26,-5],[-25,24],[-64,18],[-11,-49],[-16,-11],[-28,18],[-1,-563],[233,-1],[0,-67],[59,-25],[5,25],[53,1],[1,-103],[40,-1],[0,-134],[158,0],[-8,-66],[14,-1],[0,-67],[145,-3]],[[133285,122909],[-2,-205],[2,-551],[-2,-165],[-1,-405],[-5,-458],[-1,-159],[2,-479],[-1,-314]],[[133277,120173],[-2,-392],[1,-453]],[[133276,119328],[-212,-1],[-329,2],[-321,1],[-461,-1],[-518,0]],[[131435,119329],[-280,-1]],[[133028,124419],[13,-36],[23,-26],[27,-10],[34,3],[39,29],[24,1],[23,-22],[-3,-26],[17,-20],[69,15],[28,-22],[-4,-33],[-25,-54]],[[133293,124218],[-1,-616]],[[133292,123602],[-2,-247],[-4,-311],[-1,-135]],[[130385,134363],[423,0],[335,-1],[560,0],[288,0],[419,2],[399,0],[549,-1],[459,-1],[559,-1],[665,0]],[[135041,134361],[0,-564],[497,-2],[249,2],[0,-99],[530,-1],[613,1],[342,0],[-1,-707],[-69,-1],[-675,1],[-1,-512],[1,-500],[32,0],[0,-399],[-369,-1],[1,-200],[-564,-3],[-167,0],[0,-216],[-1,-584]],[[135459,130576],[-183,1]],[[133441,139622],[73,2],[307,0],[-63,35],[-36,28],[-29,45],[571,5],[195,-4],[162,-1],[7,-607],[392,-2],[1,-333],[112,-3],[435,2],[226,-6],[2,-85],[-2,-181],[146,-1],[285,-1]],[[136225,138515],[-26,-18],[16,-51],[-13,-38],[14,-71],[-20,-32],[-4,-45],[23,-29],[-8,-48],[18,-68]],[[136225,138115],[-288,2],[-471,2]],[[135466,138119],[-62,0]],[[135404,138119],[2,201],[-153,2],[-20,-78],[-57,45],[-18,33],[-74,31],[-24,0],[-44,47],[-13,-32],[-33,1],[-86,-59],[-67,5],[-30,-37],[12,-25],[33,-20],[-8,-66],[-64,-1],[-13,12],[-58,-83],[-15,-71],[-45,-13],[-12,-48],[0,-237],[-2,-349],[141,2],[0,-32],[57,1],[-1,-34],[76,0]],[[134888,137314],[-33,-23],[-4,-32],[-21,-37],[8,-48],[13,-21],[-41,-33],[-38,6],[-47,-60],[-37,-15],[-27,-39],[-46,-13]],[[133293,124218],[18,-8],[14,31],[1,67],[14,5],[1,62],[-15,33],[0,90],[89,-3],[21,-25],[25,3],[12,-34],[27,-8],[11,-39],[36,-8],[18,20],[51,7],[20,-8],[17,-53],[27,-14],[41,44],[23,-33],[-12,-43],[23,-13],[1,-27],[50,-55],[-30,-21],[-26,-36],[-5,-28],[-26,-28],[8,-22],[-27,-36],[-42,-41],[4,-37],[25,6],[1,-53],[-7,-65],[-3,-117],[95,-4],[32,-18],[28,1],[1,51],[-19,42],[5,157],[-44,2],[-8,73],[219,-38],[89,-7],[8,297],[-39,59],[-27,15],[-47,6],[-16,13],[26,48],[-5,22],[-61,-16],[1,371],[2,255],[3,115],[351,-7],[182,4],[175,-4],[0,-423],[1,-311],[31,6],[43,-7],[18,7],[29,50],[31,11],[18,29],[35,-12],[68,-6],[40,-50],[69,-9],[25,7],[19,25],[-13,83],[7,42],[21,22],[21,0],[33,-55],[51,-4],[14,-16],[-20,-42],[19,-33],[56,13],[54,39],[7,36],[-23,50],[0,23],[18,29],[86,4],[34,61],[55,-14],[23,47],[23,31],[3,37],[-17,47],[18,20],[40,-13],[19,-41],[20,-20],[52,12],[29,-11],[18,-42],[6,-59],[44,-41],[33,-10],[74,5],[27,-7],[10,-32],[-9,-36],[18,-30],[38,-15],[13,-23],[-7,-51],[21,-21],[35,6],[30,25],[25,-22]],[[136062,124479],[-17,-58],[-24,-33],[-24,-15],[-23,-33],[-2,-43],[-26,-39],[-30,-11],[-1,-52],[53,-18],[2,-27],[-42,-45],[-180,-213],[-3,-102],[-87,7],[-139,3],[-169,7],[-307,16],[-2,-33],[-180,9],[-280,9],[-71,4],[-3,-68],[-145,8],[-292,12],[-8,-194],[-266,5],[-235,10],[-269,17]],[[134391,136774],[553,1],[317,1],[8,-35],[0,-115],[57,0],[39,-17],[16,-33],[-1,-200],[191,-1],[-2,-402],[553,0],[388,-4],[387,-2],[0,-200],[377,-1],[2,199],[347,0]],[[137623,135965],[46,-34],[18,-33],[68,-39],[36,-29],[33,-4],[32,-29],[4,-38],[41,-15],[26,-29],[30,-50],[65,-42],[35,-41],[119,-20],[41,-25],[21,3],[43,-18],[54,-87],[32,-23],[33,-44],[13,-43],[32,-45],[33,-35],[6,-32],[43,-48],[34,-127],[29,-41],[-18,-69],[1,-29],[-21,-52],[-7,-79],[2,-48],[12,-17],[-8,-74],[51,-64],[6,-53],[-17,-36],[17,-59],[24,-26],[0,-28]],[[138632,134363],[-653,0],[-626,0],[-685,0],[-576,-2],[-366,0],[-372,0],[-313,0]],[[133277,120173],[157,-7],[109,-8],[577,-20],[-3,-135],[162,-6],[167,-3],[393,-11],[8,403],[18,660],[-37,1],[7,202],[87,-4],[-2,-34],[442,-19],[167,-5],[-6,-168],[29,-1],[-10,-420],[-5,-303],[172,-5],[-5,-335],[24,-1],[-1,-80],[49,-1],[35,-19],[0,-33],[29,16],[28,0],[1,33],[44,-2],[0,35],[43,10],[28,-15],[-4,-197],[29,-6],[-1,-85],[44,49],[39,-29],[-17,-22],[4,-45],[40,-7],[-17,-67]],[[136183,118169],[-574,0],[-456,3],[-385,0],[-322,-1],[-376,0],[-368,2],[-236,-1],[-190,1]],[[133276,118173],[0,252],[-1,481],[1,422]],[[136566,118171],[-1,-95],[-5,-164],[-31,-17],[-66,-59],[26,-27],[70,20],[3,-44],[-48,5],[-20,-57],[37,10],[41,-27],[-3,-42],[-25,-33],[36,-1],[34,-25],[37,-2],[-2,-68],[23,-15],[-2,-21],[-27,-30],[16,-39],[45,-42],[47,-5],[5,-30],[-28,0],[-1,-33],[28,-1],[-4,-166],[-360,7],[-309,10],[-1,-100],[-113,5],[-1,-67],[-27,1],[-22,-24],[-9,-409],[-5,0],[-3,-205],[223,-5]],[[136124,116376],[-6,-401],[-56,0],[-5,-411],[-4,-459],[-65,-5]],[[135988,115100],[-43,13],[-40,-17],[-29,7],[-52,-8],[-46,-25],[3,-57],[-28,-34],[-31,0],[-31,21],[-12,40],[23,56],[-11,32],[-20,-21],[-32,-3],[-30,44],[-5,42],[-25,60],[-43,62],[-28,22],[-68,9],[-12,51],[-20,27],[-54,42],[4,329],[114,-3],[4,301],[84,-2],[4,142],[2,210],[4,134],[8,20],[6,202],[-83,0],[0,68],[57,0],[1,33],[28,0],[0,34],[53,-3],[3,98],[-43,10],[-36,30],[1,47],[26,20],[16,32],[-177,4],[-2,25],[-23,1],[2,101],[-451,14],[1,66],[-55,2],[1,69],[-42,2],[-13,34],[3,134],[-27,19],[-9,36],[-30,-16],[4,63],[-146,2],[-187,8],[-1,-168],[-29,0],[-89,-332],[-3,-221],[-9,-376],[-14,0],[-3,-167],[-254,9],[-1,-33],[-138,6],[-3,-101],[-27,1],[-1,-66],[-30,1],[-6,-170],[86,-1],[-4,-151],[-28,1],[-9,-67],[0,-71],[-74,-44],[39,-1],[-2,-135],[13,0],[-4,-110],[10,-37],[37,-37],[-9,-33],[21,-15],[58,-2],[58,-38],[34,7],[50,-9],[-5,-164],[29,-3],[-1,-34],[27,-1],[2,34],[28,-1],[-8,-35],[-22,-32],[-28,-7],[-114,13],[-21,-17],[-36,0],[-14,-16],[-42,2],[-1,-67],[-28,9],[-13,30],[-58,-3],[-131,4],[-1,-33],[-29,-14],[-2,-120],[28,-1],[-1,-67],[-132,4]],[[133551,114850],[9,389],[9,307],[-6,52],[8,15],[-30,244],[-21,190],[-75,653],[-39,331],[-71,600],[-59,542]],[[135404,138119],[-44,-21],[26,-28],[-5,-38],[-109,0],[1,-49],[-80,0],[0,-294],[-25,2],[-16,-19],[7,-58],[33,0],[0,33],[81,-4],[0,-67],[49,2],[0,-66],[191,0]],[[135513,137512],[-22,-52],[-64,-66],[-45,-11],[-37,-28],[-48,-17],[-26,9],[-46,-12],[-7,26],[-84,37],[-9,-17],[-153,-2],[-62,-27],[-22,-38]],[[136062,124479],[20,55],[73,216],[130,-51],[12,446],[5,222],[277,-5],[346,-6],[-14,-596],[350,-17],[144,0],[205,-6],[234,3],[-1,-34],[-32,-65],[-3,-137],[-59,-1],[6,-62],[22,-2],[-3,-105],[61,1],[-1,-34],[149,-4]],[[137983,124297],[-7,-205],[-321,6],[-221,1],[-241,6],[-8,-75],[10,-20],[-14,-42],[3,-31],[-16,-33],[6,-23],[-16,-55],[-2,-60],[-16,-40],[12,-19],[-3,-45],[21,-93],[16,-40],[-45,-73],[2,-43],[-36,-46],[-10,-45],[-31,-13],[-10,-77],[-4,-102],[-65,8],[-49,46],[-67,16],[-35,14],[-6,29],[29,31],[-4,29],[-29,32],[-49,12],[-120,-548],[-37,-167],[-213,8],[-6,-192],[-88,1],[-9,-293],[-56,-1],[-39,-21],[-14,-53],[-66,4],[3,-23],[30,-21],[4,-64],[-37,-2],[6,-43],[25,-24],[38,-65],[-11,-13],[-31,10],[-40,-18],[-20,-63],[-2,-65],[60,-29],[10,-26],[73,-14],[19,14],[23,-17],[0,-22],[335,-7],[145,-1],[1,100],[348,-11],[148,-10],[110,-3]],[[135466,138119],[1,-173],[30,-16],[0,-208],[12,-26],[1,-77],[33,-46]],[[135543,137573],[0,-19],[-30,-42]],[[134225,127595],[315,8],[191,1],[231,6],[173,-1],[279,2],[222,6],[167,7],[218,5],[148,0],[192,4],[274,11],[75,1],[219,7],[318,8],[360,14],[219,13],[27,-43],[37,-27],[-3,-54],[14,-16],[89,-22],[10,-10],[-5,-51],[8,-29],[35,-22],[23,-56],[20,-20],[65,-8],[-10,-51],[21,-12],[-9,-48],[42,-20],[24,-45],[30,7],[24,-21],[12,22],[34,-18]],[[138314,127143],[-40,-35],[-27,-48],[-12,-46],[-36,-103],[3,-43],[-25,-53],[3,-88],[-13,-46],[7,-48],[-4,-73],[25,-128],[9,-31],[-9,-49],[81,-191],[34,-48],[2,-42],[-36,-49],[-7,-36],[22,-84],[91,-73],[20,-40],[-6,-148],[32,-42],[46,-42],[26,-31],[40,-31],[83,-111],[59,-29],[18,-27],[10,-66],[31,-44],[75,-16],[40,-84],[17,-19],[3,-47],[39,-59],[70,-59],[71,-36],[18,-19]],[[139413,124474],[-308,2],[-130,-1],[-288,6],[-4,-204],[-118,2],[-251,7],[-127,6],[-204,5]],[[135988,115100],[-44,-5],[-39,-42],[-11,-23],[-26,-12],[-10,-37],[-73,-17],[-2,-54],[-40,-60],[-28,0],[0,-33],[-28,0],[0,-33],[-29,0],[0,-37],[-28,2],[-1,-34],[-28,1],[-1,-33],[-28,1],[0,-34],[-33,1],[-1,-34],[-29,1],[0,-34],[-27,1],[0,-35],[-28,-1],[0,-33],[-27,-2],[0,-31],[-28,0],[-1,-34],[-27,-1],[0,-31],[-28,1],[0,-34],[27,0],[1,-203],[28,-3],[280,0],[194,1],[-1,-202],[-15,-1],[-1,-110],[165,-4],[-3,-102],[109,-2],[-2,-65],[28,-1],[-3,-135],[87,0],[-1,-68],[84,-2],[-1,-135],[97,-4],[2,29],[20,15],[33,55],[291,-9],[2,101],[203,-4],[385,-11]],[[137352,113524],[87,-1],[-2,-180],[83,-1],[0,-60],[143,-5],[0,-102],[27,0],[-1,-69],[168,-1],[-4,-311],[-24,1],[1,-252],[-28,0],[-1,67],[-83,2],[-75,-3],[-170,0],[1,-269],[-37,0],[1,-429],[149,0],[342,1],[200,-24],[136,-3],[-4,-335],[1,-67],[-8,-553],[-4,-214],[0,-622]],[[138250,110094],[-200,1],[-234,3],[-31,-2],[-494,3]],[[137291,110099],[-238,2],[-534,9],[-385,5],[-310,6],[-389,1],[-383,1],[-487,2],[-383,0]],[[134182,110125],[0,515],[-1,717],[-28,-5],[-20,14],[11,30],[-24,16],[-61,-20],[-21,7],[-21,-12],[-23,55],[-35,13],[-30,-65],[-36,-31],[-39,10],[19,45],[-11,29],[-26,-28],[-25,-45],[-20,5],[16,35],[-16,15],[-20,-31],[-9,-38],[-34,3],[-5,22],[-29,-4],[-2,-39],[-56,7],[-17,37],[28,10],[-6,34],[-27,-31],[-15,2],[-27,50],[-36,2],[-29,32],[29,27],[-15,31],[-37,16]],[[133484,111555],[6,350],[15,691],[10,606],[5,222],[9,465],[13,575],[9,386]],[[134181,109370],[1,755]],[[137291,110099],[-18,-117],[12,-75],[-18,-99],[9,-40],[35,-63],[-15,-38],[21,-61],[-4,-39],[-13,-37],[17,-58],[-15,-12],[-42,-96],[-51,-39],[-28,5],[1,-34],[-127,-114],[-6,-41],[-78,-30],[-38,16],[-14,-12],[-173,1],[0,201],[-163,2],[-1,115],[-42,-6],[-16,38],[-24,33],[-32,14],[-35,-5],[-23,17],[-284,-1],[-31,-1],[0,-111],[-20,-6],[-40,-62],[1,-55],[8,-39],[-9,-78],[-24,-15],[3,-134],[1,-205],[160,-2],[5,-156],[-1,-152],[2,-138],[-2,-54],[-23,-53],[-18,-8],[4,-66],[-31,-47],[5,-35],[-196,3],[12,-57],[30,-46],[13,-49],[15,-103],[13,-21],[2,-39],[-18,-34],[21,-37],[-2,-57],[19,-20],[-16,-18],[-19,-53],[4,-36],[-14,-18],[-8,-56],[13,-23],[-16,-20],[-53,8],[-13,-78],[7,-41],[-11,-44],[-22,-6],[-5,-52],[2,-64],[-12,-43],[26,-26],[-6,-50],[20,-9],[34,5],[7,-28],[32,-12],[-6,-82],[40,-20],[18,3],[48,-38],[55,-7],[29,-46],[48,-45],[-6,-27],[66,-69],[-67,-72],[0,-23],[-28,-15],[-26,-33],[-28,-1],[1,-32],[-27,0],[-26,-18],[0,-34],[-39,0],[0,-35],[-27,0],[0,-33],[-39,-1],[1,-48],[-55,-1],[1,-49],[-28,-17],[0,-16],[54,0],[0,-18],[53,0],[27,-17],[0,-66],[27,0],[0,-34],[26,0],[0,-48],[26,-2],[3,-558],[6,0],[0,-280],[61,4],[11,-6],[90,6],[3,16],[58,1],[191,-3],[15,11],[42,-21],[41,15],[26,33],[5,25],[-2,63],[33,8],[72,54],[7,30],[45,20],[10,-19],[51,-26],[17,-42],[79,4],[0,-67],[67,-101],[1,-102],[206,4],[123,-1],[3,-55],[-40,0],[13,-87],[-41,-7],[27,-46],[24,-4],[23,-40],[6,-48],[17,-27],[-12,-24],[35,-43],[29,-15],[-24,-27],[-40,6],[12,-48],[28,-22],[6,-19],[-46,-4],[9,-44],[39,-28],[40,-47],[-27,-14],[-35,10],[-27,-27],[-44,33],[-40,-7],[-28,-19],[-3,-37],[-22,-15],[-10,-32],[3,-40],[21,-1],[10,-38],[-8,-20],[-13,-91],[5,-47],[23,40],[33,13],[71,-34],[2,-23],[27,-29],[24,3],[10,-18]],[[137434,104085],[-5,-60],[-12,-30],[-20,-9],[-22,16],[-29,-22],[-17,37],[-18,0],[-17,-26],[-26,-14],[-3,-49],[-14,-22],[-75,-72],[1,50],[-27,1],[0,50],[27,16],[0,-50],[40,0],[21,30],[-8,37],[5,93],[-24,25],[-33,0],[-2,-17],[-54,0],[0,84],[-107,-1],[-1,101],[-294,0],[-311,1],[-2,17],[-226,1],[-3,-117],[-457,2],[0,-33],[-103,-2],[0,-47],[-400,-1],[1,202],[-161,1],[1,-204],[-403,0],[0,2]],[[134656,104075],[22,28],[3,36],[28,-1],[16,20],[-29,128],[16,36],[-32,35],[-19,37],[21,37],[-3,41],[21,29],[31,16],[25,0],[-8,32],[1,75],[34,48],[47,38],[17,38],[2,34],[16,24],[0,25],[-16,28],[7,32],[36,18],[27,87],[34,78],[-23,18],[17,21],[-2,37],[-25,38],[13,24],[26,6],[-4,48],[33,14],[8,31],[-9,48],[-23,-1],[-20,30],[-10,45],[-20,22],[20,31],[41,-12],[49,56],[-26,15],[-12,38],[18,5],[-10,36],[-39,14],[-18,34],[21,14],[17,36],[-15,94],[20,6],[-20,65],[-63,-48],[-18,24]],[[134879,105863],[-3,54],[-8,11],[12,47],[-29,19],[7,61],[-11,28],[-30,-5],[-14,34],[-17,-4],[-16,38],[-28,28],[21,30],[9,68],[32,11],[14,31],[-45,-14],[-10,75],[-49,30],[20,61],[-25,10],[7,29],[-29,-1],[-43,35],[12,34],[30,22],[5,30],[-28,19],[-8,28],[-67,0],[-29,29],[-27,45],[-3,25],[-27,70],[37,93],[-15,50],[4,27],[26,20],[19,48],[-28,13],[-5,51],[-34,47],[23,54],[-24,33],[-3,29],[-22,12],[-33,39],[2,33],[-25,47],[12,27],[-32,15],[-2,43],[-28,-9],[-2,36],[-49,12],[-10,29],[-18,-7],[-18,45],[-28,49],[-29,66],[-38,23],[0,430],[0,359],[0,541],[-1,274]],[[136225,138115],[1,-34],[-71,-64],[-20,-35],[24,-51],[27,-22],[13,-27],[-14,-48],[3,-68],[23,-37],[6,-43],[-14,-68],[-21,-15],[-1,-27],[16,-39],[-9,-25]],[[136188,137512],[-338,-1],[0,-35],[-41,-1],[1,36],[-11,53],[-41,47],[-13,34],[-123,0],[-12,-34],[-28,-28],[-39,-10]],[[133572,146389],[22,24],[43,2],[73,-20],[53,16],[70,-26],[21,-36],[-6,-45],[16,-24],[71,-6],[67,-12],[104,-5],[40,5],[57,-12],[36,6],[82,-22],[43,-6],[25,8],[39,-9],[67,-3],[36,-53],[25,-84],[-20,-93],[37,-32],[135,4],[28,-8],[72,7],[21,29],[30,-19],[26,15],[78,1],[74,29],[51,10],[17,38],[-14,59],[38,13],[59,38],[52,-10],[25,14],[12,36],[146,37],[75,-1],[45,-44],[140,10],[165,-9],[55,15],[1,-51],[31,-3],[31,-25],[24,-3],[263,-128],[110,16],[37,-8],[15,-69],[-18,-32],[-98,-10],[-22,-74],[39,-44],[50,-17],[127,10],[61,16],[47,0],[50,-67],[30,-11],[0,-30],[-32,-68],[10,-46],[60,-108],[27,-26],[47,-103],[24,-67],[26,22],[61,25],[53,8],[12,29],[-27,21],[-17,53],[11,41],[-19,23],[17,18],[10,44],[43,27],[87,-21],[45,14],[26,27],[28,-17],[95,-5],[45,12],[13,-56],[25,-21],[48,-10],[-20,-56],[10,-74],[82,-31],[-6,-43],[21,-7],[46,20],[35,-3],[41,-43],[5,-28],[76,11],[55,-26],[51,-4],[16,13],[37,-12],[5,-27],[-19,-38],[30,-1],[-5,-41],[16,-26],[-21,-62],[55,-17],[36,5],[21,-29],[40,11],[41,1],[30,-21],[-9,-103],[14,-11],[38,22],[85,34],[60,2],[33,-47],[61,19],[32,29],[48,9],[79,1],[63,24],[24,27],[32,17],[38,50],[11,-6],[72,62],[36,39],[50,34],[43,17],[38,1],[86,72],[82,24],[62,37],[16,-19],[44,16],[13,-12],[10,-152],[45,10],[12,-43],[28,-20],[-29,-26],[32,-36],[24,-59],[32,-9],[59,3],[27,11],[71,7],[23,19],[56,13],[18,15],[38,-16],[-22,-23],[21,-26],[110,8],[30,22],[46,-23],[56,15],[43,-33],[46,7],[26,19],[38,7],[26,-15],[102,22],[57,-1],[88,9],[26,-17],[39,0],[107,-46],[47,-82],[1,-48],[64,-41],[28,12],[11,-32],[45,-32],[44,-5],[58,31],[23,36],[23,-3],[59,21],[53,-2],[28,-29],[155,4],[57,-35],[27,16],[101,24],[27,1]],[[141364,144800],[-224,-495],[-196,-443],[-111,-250],[-216,-483]],[[140617,143129],[-67,4],[-416,17],[-615,22],[-189,-129],[-356,-241],[-503,-346],[-284,-201],[-145,-88],[-249,-143],[-197,-115],[-167,-93],[-61,-44],[-22,11],[-87,93],[-43,-1],[-34,-21],[-13,-55],[-33,9],[-34,-5],[-25,-31],[10,-19],[35,-13],[-8,-24],[-38,-35],[-11,-35],[-84,3],[-42,35],[1,-74],[-1,-446],[-1,-474],[-1,-375],[-40,-11],[-26,-23],[-23,-100],[-35,-5],[-59,30],[-51,-25],[-17,-54],[-31,-46],[-83,25],[-38,-37],[-3,-36],[-78,-26],[-23,-15],[-35,0],[-60,-63],[-58,-36],[-40,-70],[-3,-35],[-40,-44],[12,-37],[-34,-66],[-8,-43],[-40,-46],[-61,-36],[-32,-26],[-30,-206],[9,-42],[-2,-80],[18,-18],[77,-16],[78,17],[75,-63],[-1,-61],[22,-23],[51,-93],[44,-23],[9,-30],[-6,-99],[-21,-13],[-23,-45],[-40,-46],[8,-40],[-18,-35],[-56,-59]],[[136188,137512],[6,-49],[-26,-74],[-9,-46],[-28,-48],[-5,-39],[26,-28],[95,-58],[72,-74],[34,-44],[51,-32],[16,-24],[-1,-53],[33,-9],[32,-26],[19,6],[46,-83],[34,18],[39,-22],[18,6],[43,-15],[35,9],[65,-19],[69,-1],[48,-34],[23,-60],[7,-51],[25,-39],[52,-42],[44,-44],[93,-31],[61,-12],[17,-17],[54,-22],[39,-9],[25,-29],[52,-24],[71,-43],[29,-43],[21,-13],[22,-63],[-17,-29],[7,-21],[28,-16],[24,-63],[-9,-40],[28,-80],[27,-17]],[[134479,102831],[38,67],[20,56],[17,90],[26,68],[29,21],[26,45],[24,20],[5,33],[25,34],[34,17],[-42,42],[3,34],[31,41],[18,56],[-28,103],[1,26],[-17,41],[27,117],[-8,22],[7,49],[-39,16],[-30,49],[-25,28],[-2,29],[16,61],[-3,50],[24,29]],[[137434,104085],[20,7],[38,-35],[25,7],[89,44],[76,-40],[13,-14],[210,1],[-24,17],[-6,29],[-24,40],[-14,48],[-22,-2],[-28,78],[-3,29]],[[137784,104294],[87,-1],[24,-49],[17,-4],[55,-74],[0,-31],[18,-35],[6,-45],[-7,-38],[-30,-30],[36,-25],[-4,-56],[11,-47],[49,-76],[3,-46],[39,-35],[86,-4],[52,-25],[-23,-54],[21,-33],[13,-58],[-6,-55],[17,-27],[-17,-39],[13,-27],[118,-1],[17,-17],[15,-52],[3,-41],[25,13],[129,-2],[21,-45],[27,-22],[27,3],[-23,-71],[-37,-2],[-1,-34],[20,-79],[25,-36],[-1,-41],[29,-24],[21,-106],[28,-36],[51,-22],[27,1],[35,-24],[29,-58],[-12,-66],[17,-40],[-9,-43],[-18,-9],[12,-108],[-2,-70],[-7,-32],[24,-11],[2,-35],[-46,-12],[-9,-23],[-21,5],[-43,-39],[-23,39],[-52,-44],[-22,-33],[4,-31],[-27,-34],[-33,-9],[-18,-35],[10,-34],[-12,-81],[12,-16],[26,-65],[21,-19],[23,0],[13,-43]],[[138639,101796],[-11,-45],[-25,-56],[-48,-30],[-15,-42],[-5,-38],[-19,-34],[-28,-14],[-47,8],[-23,41],[-1,-202]],[[138417,101384],[-36,53],[-23,45],[-21,14],[-26,34],[-171,97],[-23,-4],[-37,12],[-41,28],[-30,1],[-49,35],[-29,-3],[-27,-23],[-32,-10],[-37,8],[-40,40],[-45,35],[-25,-31],[-47,-38],[-28,-14],[-54,4],[-35,31],[-24,70],[-1,34],[-31,22],[-50,22],[-30,50],[-37,6],[-35,29],[-18,33],[-7,36],[-51,59],[-57,9],[-51,-8],[-58,-31],[-63,-55],[-64,-24],[-47,-6],[-94,16],[-81,27],[-76,15],[-168,26],[-115,27],[-52,19],[-134,62],[-88,50],[-139,86],[-129,83],[-82,43],[-72,27],[-80,38],[-35,9],[-64,25],[-55,13],[-71,2],[-30,-7],[-26,-42],[-41,-24],[-31,-1],[-40,20],[-19,23],[-72,11],[-87,-2],[-127,-23],[-120,-17],[-66,-13],[-57,-16],[-75,-40],[6,-84],[-20,-52],[-21,-23],[-34,-12]],[[134542,102210],[-22,141],[-14,74],[-52,106],[-29,16],[-4,43],[-12,24],[-37,32],[-10,27],[9,51],[30,37],[49,39],[29,31]],[[136124,116376],[281,-9],[3,167],[32,-1],[303,-4],[-2,-168],[280,-9],[-7,-403],[-6,0],[-6,-403],[54,-2],[168,0],[160,-7],[249,-3],[3,181],[45,32],[40,12],[3,182],[77,0],[257,-9],[-4,-204],[235,-6],[139,-1],[3,-36],[-18,-36],[-22,-4],[-47,-35],[-48,-45],[8,-43],[-30,-16],[29,-25],[-18,-89],[18,-7],[22,21],[1,-88],[18,-1],[20,-31],[-1,-45],[14,-38],[-17,-27],[-28,21],[-5,-35],[-24,-27],[-12,-43],[-41,-1],[1,-27],[41,-8],[7,-35],[-36,3],[20,-46],[-41,-66],[-187,5],[-2,-153],[-37,-11],[-50,16],[-20,52],[-41,1],[-16,22],[-33,7],[-54,-37],[-34,7],[-29,-20],[-28,-2],[0,-23],[-41,1],[-38,-15],[-38,1],[-28,19],[-12,-12],[-37,42],[-39,-2],[-58,35],[-23,4],[-18,33],[-47,-18],[-50,15],[-20,-22],[-51,2],[-2,-125],[79,-1],[-2,-202],[-10,-450],[-23,-44],[-12,-98],[3,-22],[-23,-84],[132,-3],[-1,-306]],[[135459,130576],[464,-1],[270,0],[-1,-604],[15,0],[1,-214],[307,1],[362,1],[380,2],[412,2],[3,206],[-9,0],[-2,200],[5,270],[-1,135],[184,0],[349,-5],[200,1],[1,202],[366,-2],[370,-1],[0,202],[198,-2],[307,0],[215,2],[452,-1]],[[140307,130970],[16,-42],[5,-44],[-8,-34],[-25,-46],[-3,-38],[19,-32],[-3,-57],[-26,-70],[-5,-44],[-17,-56],[5,-49],[-11,-20],[-54,-23],[-67,-50],[-22,-10],[-38,-40],[-20,-36],[4,-80],[-34,-47],[-14,-75],[6,-112],[-6,-25],[-33,-19],[-53,-17],[-23,-16],[-77,-97],[-62,-12],[-63,18],[-86,-35],[-17,-38],[-78,-75],[-129,-27],[-90,8],[-83,3],[-16,-5],[-71,-52],[-44,-21],[-29,6],[-41,23],[-83,-24],[-32,-32],[-6,-58],[-21,-36],[-10,-68],[-3,-67],[-21,-38],[-43,-102],[3,-26],[73,-91],[38,-76],[51,-1],[31,-24],[37,-84],[31,-57],[-4,-56],[11,-83],[-6,-65],[-19,-62],[9,-50],[-17,-77],[-56,-39],[-36,-56],[-37,-36],[-18,-46],[-53,-55],[-11,-30],[7,-80],[-26,-62],[-11,-58],[8,-39],[-16,-82],[-27,-28],[-74,-53]],[[138683,127743],[-99,1],[-98,-30],[-61,-36],[-17,-18],[-31,-63],[-35,-35],[-7,-39],[29,-22],[29,-48],[7,-65],[-25,-83],[12,-74],[-4,-57],[-69,-31]],[[138632,134363],[4,-36],[-27,-57],[5,-34],[41,-59],[8,-57],[-27,-68],[21,-39],[33,-7],[81,-46],[35,-29],[34,-50],[22,-48],[0,-24],[22,-16],[-34,-59],[-63,-65],[-58,-133],[-30,-19],[0,-69],[-7,-84],[8,-69],[27,-109],[3,-36],[14,-29],[-5,-53],[10,-83],[36,-17],[31,-33],[15,-79],[-6,-32],[26,-17],[0,-42],[20,-122],[23,-45],[28,-3],[6,-21],[54,-30],[23,-34],[45,-29],[49,-3],[53,-30],[69,-21],[117,-27],[77,-25],[28,-23],[25,-90],[40,-55],[27,-65],[13,-57],[-11,-16]],[[139537,132069],[-21,-40],[8,-37],[43,-38],[84,-39],[25,-59],[86,-48],[35,-26],[21,-34],[31,-31],[46,-78],[-24,-93],[18,-64],[30,-35],[15,-32],[54,-47],[45,-10],[72,-51],[51,-17],[64,-44],[13,-50],[48,-13],[12,-20],[1,-59],[-9,-36],[6,-77],[16,-21]],[[138250,110094],[154,0],[309,-4]],[[138713,110090],[-11,-42],[-45,-57],[-1,-27],[-16,-32],[0,-32],[25,-35],[52,-17],[29,14],[22,49],[-10,60],[11,22],[-7,41],[45,21],[31,-30],[10,-31],[0,-45],[25,-39],[1,-52],[-10,-35],[-56,-70],[-35,-8],[-24,-24],[-29,-74],[-4,-62],[14,-14],[-16,-51],[3,-25],[22,-12],[39,3],[101,-36],[10,-12],[-15,-45],[-27,-27],[-28,-13],[-43,-42],[-17,-37],[-25,-24],[2,-58],[14,-39],[34,-33],[66,37],[46,15],[16,61],[22,30],[18,-14],[17,-36],[0,-29],[-43,-67],[-78,-62],[8,-23],[28,-30],[62,-29],[37,-29],[11,-24],[-19,-37],[-38,7],[-40,31],[-42,83],[-28,34],[-12,-55],[-24,-59],[2,-41],[34,-57],[70,-47],[35,-8],[52,39],[27,-11],[16,-24],[1,-34],[-14,-23],[-30,-16],[-17,-85],[29,-36],[117,-28],[18,24],[17,53],[20,-14],[-37,-84],[-7,-35],[-17,-27],[-50,-47],[-24,30],[-21,0],[-12,-38],[5,-30],[18,-34],[-18,-23],[-4,-71],[-18,-43],[-13,12],[0,58],[-49,42],[-19,-1],[-24,-52],[-35,18],[-53,-45],[-26,15],[-49,-41],[-15,-88],[18,-57],[82,-19],[46,22],[46,-19],[4,73],[-14,32],[27,7],[27,-27],[34,-2],[-3,-44],[-24,-45],[-17,-6],[-12,-52],[-65,-44],[-2,-73],[-28,2],[-24,22],[-23,43],[-17,12],[-28,-17],[-7,-29],[33,-38],[75,-20],[27,-46],[-22,-39],[-27,-25],[-90,-16],[-38,-49],[-7,-55],[14,-10],[3,-40],[-30,-15],[-52,-73],[-50,-30],[-1,-31],[33,-42],[-2,-23],[-24,-32],[-33,15],[-11,41],[-7,62],[-69,-21],[-11,-17],[-29,-140],[-3,-53],[27,-6],[69,19],[27,13],[37,-10],[6,-20],[-31,-33],[-60,12]],[[138474,107189],[-54,1],[-27,-8],[-44,-82],[-4,-55],[6,-100],[-8,-55],[-35,-21],[-64,21],[-29,25],[-24,33],[-23,-25],[-8,-49],[23,-41],[25,-21],[39,0],[62,24],[30,-17],[-7,-47],[-56,-62],[-51,-26],[-22,7],[-41,-8],[-10,-20],[12,-28],[-5,-62],[7,-90],[22,-56],[43,-54],[-1,-60],[-9,-14],[-41,0],[-21,16],[-23,43],[-11,55],[4,23],[-18,20],[-26,-22],[-21,-56],[15,-50],[21,21],[14,-9],[-7,-51],[4,-33],[60,-68],[2,-58],[-15,-38],[-63,-31],[-25,-2],[-74,16],[-31,-3],[-20,-25],[15,-50],[30,-19],[48,-56],[9,-54],[-17,-44],[-38,-60],[-2,-41],[96,-113],[7,-30],[-7,-35],[-41,-50],[-73,-41],[412,-1],[202,1],[196,-1],[379,1],[234,-1],[482,2],[341,2],[590,3]],[[140808,105460],[170,1],[-12,-83],[-32,-52],[11,-21],[-1,-51],[-11,-28],[-21,-3],[-14,-57],[18,-22],[-27,-27],[-9,-53],[-22,-66],[-27,-24],[4,-17],[-20,-39],[2,-38],[12,-26],[-22,-13],[-9,-33],[9,-68],[-9,-57]],[[140798,104683],[-51,-2],[-188,0],[-411,108],[8,-62],[-5,-40],[15,-49],[-9,-59],[10,-57],[-3,-38],[1,-177],[-27,4],[-119,1],[-49,4],[-47,11],[0,55],[23,19],[-35,38],[8,21],[-38,31],[-26,42],[-32,24],[-4,30],[-18,26],[-12,-34],[-21,0],[17,-84],[5,-90],[-54,-3],[0,-59],[-59,0],[-20,16]],[[139657,104359],[0,287],[2,32],[-2,372],[-112,-1],[6,23],[-12,34],[-42,8],[3,-38],[-33,29],[-8,-19],[-108,70],[-100,46],[-33,-4],[-11,-16],[-33,-10],[-35,20],[-67,-22],[-17,2],[-22,-42],[-7,-39],[-18,0],[-25,23],[-22,-49],[-25,7],[-24,42],[-26,13],[-39,-1],[-71,-48],[-13,-28],[14,-24],[9,-96],[-25,37],[-61,-64],[-27,40],[20,52],[10,49],[-22,7],[-15,-43],[-17,29],[-23,15],[-21,-2],[7,-33],[-18,-13],[2,-41],[-31,-36],[-12,-33],[-29,-25],[-9,-65],[-30,-24],[-7,-33],[16,-47],[-8,-45],[-39,14],[-9,24],[-20,119],[-13,40],[-30,45],[-26,-2],[-84,-50],[-57,12],[-36,-2],[-68,-22],[-29,10],[-37,34],[3,37],[13,16],[43,12],[28,30],[38,163],[-10,66],[-20,37],[-23,23],[-30,6],[-73,-2],[8,-45],[52,-11],[20,-24],[11,-80],[-17,-27],[-17,22],[-39,-1],[-32,-13],[-37,11],[-23,28],[1,88],[25,78],[-19,52],[-10,47],[8,46],[-10,30],[-50,35],[-28,-30],[-50,28],[-34,-23],[-23,-54],[-23,-6],[-15,-24],[9,-111],[-2,-114],[-4,-27],[-29,-21],[34,-40],[4,-19],[-14,-42],[61,-59],[20,-59],[-3,-44],[9,-12],[29,-79],[-4,-52],[5,-26],[-21,-21],[9,-61],[-22,-46],[5,-20],[-9,-95],[24,-72],[14,-26],[-4,-28],[-29,-5],[-3,-19]],[[140220,123717],[19,-21],[54,-30],[78,-59],[7,-27],[-13,-74]],[[140365,123506],[-15,36],[-23,19],[-27,-1],[-38,-25],[-20,7],[-115,92],[-12,26],[-36,36],[-33,8],[-27,-21],[-19,-94],[-21,-32],[-31,-13],[-53,16],[-39,-3],[-51,-85],[-15,-61]],[[139790,123411],[-15,-29],[-24,9],[-11,32],[10,25],[-13,27],[-20,-1],[2,-36],[-50,-45],[-44,1],[6,22],[-38,2],[-14,18],[-48,-15],[-39,25],[-9,54],[-36,-2],[1,-51],[-15,-28],[-27,12],[-16,-17],[-31,1],[-1,-32],[27,-41],[-65,7],[-36,-15],[6,-30],[-8,-26],[0,-75],[41,-38],[28,1],[45,-45],[0,-145],[-6,-253],[9,36],[17,-5],[67,-62],[21,-11],[15,19],[-10,51],[11,19],[32,-4],[31,-33],[18,19],[18,51],[124,0],[0,-48],[60,0],[36,-37],[9,-27],[56,-69],[47,-47],[16,14],[42,-55]],[[140009,122534],[-43,-120],[-3,-115],[16,-121],[11,-35]],[[140970,117019],[23,-36],[9,-54],[41,-32],[49,-51],[18,-71],[-34,-28],[-35,33],[-42,21],[-44,1],[-36,-35],[-11,-35],[18,-44],[82,-43],[8,-44],[-33,-25],[-26,-8],[-27,12],[-37,-14],[-22,-27],[-5,-40],[-34,-43],[-43,-4],[-46,-32],[-46,42],[-69,-49],[-13,-34],[5,-77],[41,-73],[22,-14],[45,2],[14,27],[32,7],[11,-31],[-9,-47],[-64,-46],[-23,6],[-57,-40],[-16,-34],[20,-55],[26,-23],[29,-7],[10,-33],[-22,-47],[-43,12],[-19,19],[0,29],[-51,47],[-55,-9],[-23,-18],[-18,-76],[11,-54],[39,-63],[-20,-87],[-40,-55],[24,-16]],[[140484,115623],[-20,-17]],[[140464,115606],[-23,43],[-8,73],[10,63],[-25,26],[-37,-3],[-18,-20],[-17,-61],[-62,-45],[-16,-86],[23,-24],[45,4],[-12,26],[1,46],[22,14],[23,-6],[28,-37],[34,-25]],[[140432,115594],[-14,-36],[-37,-59],[5,-25],[-8,-63],[-41,-13],[-22,9],[-23,-17],[-8,-39],[26,-54],[19,-8],[37,8],[27,-10],[32,-52],[8,-43],[-23,5],[-14,-41],[-30,6],[-1,-22],[40,-73],[37,-7],[3,-40],[-26,-33],[-28,-12],[-60,40],[-27,-7],[-28,-30],[-12,-61],[-23,-72],[0,-52],[-21,-26],[-130,35],[-28,-74],[1,-33]],[[140063,114695],[20,-44],[67,-50],[12,-24],[2,-54],[-8,-32],[-100,-82],[14,-26]],[[140070,114383],[-10,-38],[-27,12],[-19,25],[-24,-19],[-44,-17],[-50,-29],[-21,22],[-3,69],[-12,30],[-44,15],[-28,-32],[0,-36],[42,-88],[-24,-48],[3,-50],[22,-47],[7,-43],[-34,-37],[-44,-4],[-29,17],[-3,53],[26,23],[6,24],[-21,62],[-31,-5],[-21,-47],[20,-68],[-39,-21],[-12,-41],[34,-49],[38,-12],[71,10],[22,-39],[-27,-56],[-59,-67],[-46,0],[-13,35],[3,31],[21,26],[-3,39],[-31,21],[-43,-60],[8,-67],[-8,-39],[11,-48],[18,-39],[38,-56],[8,-28],[-8,-31],[-37,-29],[-17,-24],[-15,-69],[9,-60],[17,-18],[12,-36],[-24,-58],[-59,-50],[-32,-9],[-26,-30],[-18,-37],[14,-66],[-6,-28],[-26,-5],[-24,22],[3,37],[15,33],[8,43],[-56,-18],[-69,8],[-17,-16],[3,-40],[25,-28],[13,-56],[-19,-40],[-19,-20],[-60,4],[-32,-13],[-16,-29],[-9,-88],[-13,-46],[-55,25],[-25,23],[-12,38],[-27,7],[-22,-26],[3,-38],[30,-51],[44,-34],[58,11],[55,-9],[14,-45],[-24,-45],[-38,-17],[-33,13],[-41,42],[-25,12],[-70,-63],[-2,-45],[54,-58],[61,6],[18,-28],[-24,-61],[-4,-65],[-13,-12],[-42,-4],[-42,-12],[-32,9],[-27,-6],[13,-50],[28,-41],[-9,-38],[-25,-7],[-26,14],[-30,85],[-46,-42],[-36,-1],[-27,-21],[0,-35],[17,-15],[48,-15],[42,-24],[14,-28],[-24,-39],[-55,-70],[-18,-47],[8,-39],[33,-58],[62,-30],[25,-23],[1,-36],[-14,-18],[-42,-13],[-43,35],[-55,-7],[-29,-12],[-26,27],[-17,0],[-17,-34],[7,-18],[-9,-67],[45,-59],[44,5],[34,21],[34,-23],[17,-40],[2,-37],[-69,-34],[-35,5],[-51,37],[-42,68],[-76,-14],[-31,-39],[10,-47],[79,-35],[51,-51],[13,-45],[-9,-31],[-25,-23],[-37,0],[-43,-28],[-40,-14],[-6,-27],[20,-48],[51,-50],[6,-29],[-19,-22],[-21,-46],[-37,-28],[-5,-41],[51,-10],[41,21],[12,20],[-13,76],[21,30],[62,-58],[11,-44],[-22,-55],[-75,-30],[-31,3],[-16,-31],[29,-36],[39,-23],[37,1],[35,20],[37,52],[-1,48],[18,46],[29,8],[16,-23],[-1,-38],[-27,-53],[-34,-34],[-37,-63],[-34,-35],[1,-117],[25,-42],[-4,-27],[17,-17],[11,-35],[16,-18],[34,104],[31,9],[17,-10],[7,-30],[-11,-44],[-24,-41],[-41,-28],[12,-92],[-5,-83],[-27,-31],[-72,-2],[-16,24],[-37,1],[-28,-38],[1,-40],[30,-21],[17,-26],[32,-13],[41,-41],[7,-23],[-14,-48],[-52,-32],[-6,-36]],[[139657,104359],[0,-90],[26,-44],[-5,-17],[12,-70],[32,-29],[17,-27],[0,-33],[22,-18],[-1,-51],[37,-13],[7,-30],[-19,-50],[5,-77],[-5,-27],[103,7],[33,14],[43,-5],[34,30],[49,5],[29,-10],[221,-139],[10,-72],[-3,-32],[-101,-32],[-62,-28],[-9,-45],[-16,-128],[-6,-84],[0,-106]],[[140110,103158],[0,-89],[-25,-18],[-17,19],[-36,-37],[8,-32],[-19,-11],[-58,18],[-36,34],[28,46],[-31,0],[-16,30],[-22,11],[-52,4],[-23,9],[-10,26],[2,44],[13,18],[-28,72],[37,52],[-37,11],[-12,-57],[-15,5],[-10,79],[-62,9],[-3,130],[-52,27],[-18,33],[-7,50],[-21,-3],[-35,17],[-14,-127],[-378,-110],[-53,-13],[-12,39],[1,44],[-30,-12],[-21,31],[13,44],[16,18],[33,13],[18,49],[-26,-1],[0,51],[-60,2],[-10,13],[-93,1],[-18,-35],[-7,-37],[-31,10],[63,244],[-27,-8],[-54,11],[-44,0],[-26,-16],[-27,1],[-15,15],[-19,45],[-64,18],[-44,-15],[-21,9],[-9,31],[12,41],[30,43],[25,65],[48,11],[-2,39],[9,22],[40,-6],[68,5],[-27,55],[36,16],[7,48],[-54,31],[15,26],[-26,28],[-21,4],[-14,37],[-2,38],[-32,0],[11,84],[-60,3],[-3,-47],[-16,-28],[15,-40],[-20,-7],[14,-37],[-2,-49],[19,-37],[2,-114],[25,-3],[2,-29],[-27,-10],[-25,55],[-22,-2],[-1,-25],[-30,-2],[4,-23],[27,-1],[24,-19],[-19,-36],[15,-9],[-32,-60],[-18,0],[-53,29],[26,-51],[-33,-5],[-5,-52],[-40,-70],[-22,7],[18,-91],[-11,-51],[52,-36],[25,3],[8,31],[22,-5],[41,35],[62,-7],[-25,-85],[-39,-2],[-24,-70],[-55,-28],[-10,-22],[1,-85],[18,-45],[42,28],[67,-20],[22,58],[-15,28],[34,30],[21,-32],[-2,-63],[13,-2],[9,41],[17,27],[80,-63],[1,-76],[-27,0],[1,-106],[26,0],[3,-85],[-8,-51],[-53,27],[-2,-18],[-35,-20],[-8,-39],[15,-17],[10,-64],[23,35],[29,8],[10,-31],[33,-3],[26,29],[54,-23],[70,12],[57,-84],[-25,-50],[-22,-1],[4,-51],[17,-35],[-1,-30],[34,-40],[28,-6],[24,108],[39,1],[-1,65],[158,5],[-1,32],[61,-22],[29,-3],[17,-19],[44,6],[15,-29],[40,-7],[31,12],[37,-8],[93,5],[26,-4],[33,-62],[26,1],[30,-41],[7,-82],[12,-20]],[[139813,102688],[-105,-152],[36,-79],[-25,-15],[4,-35],[-27,-11],[-8,27],[-55,62],[-26,-36],[-31,27],[18,44],[-46,5],[-27,12],[-46,-3],[-37,15],[-24,22],[-11,-48],[47,-32],[-20,-43],[16,-56],[-11,-23],[32,-46],[-30,-41],[-17,-38],[-45,-14],[-9,-23],[-31,26],[-12,-68],[2,-96],[-30,-1],[9,-47],[-9,-34],[-40,-113],[-162,30],[-110,18],[-110,28],[-54,-43],[-6,-25],[-27,7],[-28,-14],[-17,-23],[-69,-36],[-4,-31],[-29,11]],[[140110,103158],[8,11],[43,5],[-1,-51],[22,-7],[13,-22],[-9,-45],[26,-76],[27,-4],[52,55],[32,12],[24,-38],[-16,-29],[27,-35],[18,67],[-40,28],[-2,28],[17,21],[46,13],[17,35],[5,65],[16,27],[42,7],[13,-10],[23,29],[18,-13],[58,38],[30,28],[43,53],[73,129],[37,18],[0,-53],[18,-46],[25,-32],[48,9],[81,99],[9,27],[44,-1],[27,16],[16,28],[45,-37],[55,-19],[-25,-25],[-21,-42],[-39,-33],[-6,-69],[-70,-31],[-4,-39],[22,-46],[-27,-9],[-45,44],[-33,10],[-46,-3],[-42,-44],[-19,-40],[-49,-50],[-19,37],[-32,-7],[-16,-23],[-46,-19],[-33,31],[-24,-12],[-35,-100],[67,-49],[48,-1],[28,-20],[24,-52],[6,-29],[-24,-33],[-28,61],[-37,22],[-45,6],[-3,-36],[-30,14],[-23,-63],[-6,-34],[-66,-56],[-5,-50],[18,-53],[-20,-27],[-59,23],[-17,26],[5,21],[26,22],[-12,54],[0,37],[-27,6],[-65,-33],[-9,-33],[9,-21],[-8,-30],[-47,-124],[-40,-136],[-186,3],[-25,33],[1,71],[-15,19],[-2,30],[-52,35],[-39,5],[-60,62]],[[139790,123411],[40,-22],[31,28],[13,-24],[52,-3],[4,-16],[-17,-36],[-6,-42],[-35,-1],[-20,17],[-17,-12],[-17,-47],[65,7],[45,-51],[-1,-37],[46,-1],[58,-19],[-9,-22],[2,-69],[-21,-18],[-20,12],[-8,-35],[61,12],[20,-51],[52,-61],[-28,-30],[18,-13],[46,-4]],[[140144,122873],[-10,-25],[-41,-203],[-84,-111]],[[140070,114383],[162,-1],[-1,-203],[3,-111],[-20,-4],[-29,-48],[18,-30],[-7,-37],[16,-32],[-3,-28],[-37,-48],[-6,-56],[51,-67],[10,-43],[425,-2],[337,2],[1,-207],[-2,-98],[4,-200],[-3,-332],[168,-3],[166,-1],[-2,-152],[4,-125],[1,-423],[0,-384],[1,-288],[0,-318],[198,1],[-46,-27],[-1,-30],[-57,9],[-11,-15],[0,-340],[217,-1],[-3,-371],[-2,-448]],[[141622,109922],[1,-366],[2,-455],[-91,-1],[-393,1],[-166,2],[0,131],[-46,-47],[-13,-29],[-63,-40],[-54,8],[-30,-10],[-6,-29],[-66,-17],[-52,-45],[3,-49],[-53,0],[-38,44],[0,44],[-68,0],[-17,43],[-17,-43],[-34,0],[-46,-17],[-40,0],[0,69],[-16,-3],[-28,-31],[-60,-11],[-20,-23],[-52,15],[-42,-32],[-55,-1],[-13,52],[-22,8],[-50,73],[-27,-17],[-12,-30],[-29,-15],[-34,22],[-27,-5],[-7,-23],[0,-196],[6,-3],[319,-1],[0,-202],[106,0],[39,28],[17,-29],[27,-1],[11,-32],[-48,-12],[-7,-56],[-35,-1],[-6,-100],[-24,-20],[-31,-56],[42,-5],[-2,-25],[-28,-34],[1,-49],[29,-26],[-19,-73],[-23,-18],[-52,-20],[6,-38],[-9,-40],[10,-37],[-16,-22],[23,-30],[14,-50],[-13,-30],[10,-41],[-28,-37],[21,-32],[18,-51],[21,-13],[20,-56],[8,-59],[20,7],[17,-28],[-3,-60],[38,-27],[21,-83],[-10,-21],[5,-67],[-23,-44],[15,-24],[47,-1],[-2,-45],[-26,-9],[-4,-22],[-36,-21],[-47,-36],[-35,-14],[-37,-4],[-25,-15],[-21,-31],[-33,-9],[-158,0],[1,-34],[-54,0],[-1,35],[-52,-3],[-274,-2],[-182,0],[0,-202],[-217,-1],[-207,0],[-233,-1],[0,47],[-124,-3],[-24,27],[-33,15],[-1,43],[-41,9],[-7,26],[13,25],[-24,45],[-17,89]],[[140365,123506],[-9,-17],[-68,-59],[-27,-60],[-40,-42],[-7,-38],[18,-46],[23,-37],[12,-55],[0,-60],[-20,-65],[-48,-53],[-38,-62],[-17,-39]],[[139537,132069],[341,-3]],[[139878,132066],[424,3],[198,-2],[120,-4],[450,-2],[169,-6],[254,-4]],[[140757,128925],[-183,1],[-2,-345],[1,-480],[-1,-169],[-5,-217],[272,-4],[214,-1],[3,28],[-33,21],[0,52],[16,29],[47,1],[28,13],[0,73],[-15,0],[-5,48],[36,-1],[30,16],[30,-29],[30,-9],[0,-25],[33,-25],[-12,-17],[-49,-33],[7,-85],[29,4],[7,-54],[-37,-8],[-1,-27],[-30,0],[1,-101],[24,0],[0,-67],[-23,0],[1,-135],[-176,-3],[-1,34],[-262,-3],[-6,-45],[-31,-64],[-49,-35],[-56,-60],[-14,-27],[-77,-34],[-19,-24],[-12,-46],[3,-31],[-28,-47],[0,-41],[-44,-68],[-17,-14],[-18,-59],[-30,-29],[-32,-7],[-21,-20],[-15,-35],[-29,-28],[-215,9],[-182,3],[5,414],[2,366],[2,235],[-180,6],[-178,3],[-364,17],[-187,-10],[-256,7]],[[142976,127190],[-1,-270]],[[140432,115594],[32,12]],[[140484,115623],[109,-7],[72,-1],[97,-6],[10,-24],[45,-5],[-5,-50],[14,-3],[-5,-44],[-30,-1],[-7,-80],[32,-4],[-37,-54],[-52,-3],[-13,-75],[26,-86],[-1,-40],[44,0],[29,40],[143,-1],[72,4],[24,-14],[-58,-23],[-15,-53],[0,-103],[-5,-29],[-47,-17],[1,34],[-29,-1],[-5,-23],[-33,23],[-64,9],[-55,67],[-59,-13],[-22,-30],[-2,-29],[61,-18],[29,-25],[18,-1],[19,-53],[36,1],[12,-23],[55,-10],[2,-27],[38,-9],[1,-123]],[[140929,114693],[-188,-1],[-175,2],[-217,-1],[-286,2]],[[140798,104683],[28,-39],[7,-38],[-7,-33],[9,-59],[20,-59],[26,-53],[17,-1],[41,-95],[50,-33],[30,-55],[29,-31],[8,-88],[-8,-18],[23,-57],[14,-19],[5,-36],[32,-23],[10,-23],[-2,-65],[-13,-5],[-11,-36],[25,-27],[-1,-53],[26,-23],[-3,-49],[32,-32],[25,-59],[14,-13],[53,35],[17,-18],[17,-55],[34,-9],[60,12],[64,27],[202,2],[60,17],[105,61],[137,-107],[327,-60]],[[142300,103466],[54,-10],[32,-104],[49,-76],[31,-72],[30,-126],[10,-124],[-7,-119],[-7,-61],[-36,-146],[-19,-63],[-34,-81],[-73,-134],[-67,-105],[-50,-59],[-25,-21],[-63,-103],[-27,-32],[-34,-62],[-22,-28],[-31,-21],[-74,-30],[-36,-66],[7,-111],[25,-34],[15,-62],[28,-25],[27,-65],[13,-15],[73,-46],[36,-7],[28,-19],[23,-2],[40,-20],[38,-41],[13,-36],[1,-47],[-13,-48],[7,-57],[-7,-49],[-16,-38],[-29,-31],[-34,-20],[-28,-2],[-18,-21],[-7,-65],[-18,-68],[-21,-28],[-31,-20],[-68,-106],[-11,-43],[-30,-37],[-29,-16],[-56,7],[-44,40],[-20,70],[-40,39],[-70,-21],[-41,-50],[-24,-51],[-65,-89],[-36,-56],[-26,-25],[-38,-13],[-49,13],[-31,28],[-18,34],[-7,74],[17,51],[19,34],[5,42],[4,251],[-8,57],[-20,34],[-8,34],[-25,49],[-29,32],[-52,32],[-72,28],[-17,1],[-341,-75],[-324,-72],[-37,-30],[-58,-69],[-51,-51],[-41,-32],[-78,-46],[-29,-11],[-32,4],[-113,-52],[-52,-18],[-103,-18],[-111,31],[-32,14],[-82,51],[-115,-47],[-150,-55],[-41,-9],[-120,-6],[-66,13],[-67,-1],[-39,7],[-60,25],[-37,23],[-24,27],[-19,45],[-3,49],[8,35],[26,41],[39,23],[2,26],[-49,-3],[-84,25],[-20,1],[-73,26],[-48,52],[-33,12],[-60,2],[-46,15],[-87,43],[-41,28],[-56,72]],[[141622,109922],[81,2],[394,-3],[0,-11],[83,0],[0,-17],[54,1],[0,17],[186,-2],[-2,401],[1,433],[-240,-1],[-2,102],[56,-1],[0,64],[-55,4],[0,202],[-193,-2],[1,201],[47,-19],[46,-34],[55,-16],[43,-7],[12,15],[201,0],[-15,33],[32,51],[46,46],[33,6],[56,0],[40,-14],[24,14],[36,0],[3,-439],[1,-204],[167,0],[193,3],[215,0]],[[143221,110747],[-17,-197],[-62,-758],[-22,-290],[-38,-466],[-56,-688],[-40,-458]],[[142986,107890],[-237,-1],[0,-69],[-63,0],[8,-33],[2,-135],[27,-58],[-27,-32],[-79,-11],[-110,-1],[0,34],[-81,0],[0,-203],[-293,-26],[-402,-36],[-238,-21],[2,-601],[1,-238],[-504,-1],[-165,1],[1,-102],[-224,1],[-16,10],[-102,0],[0,-372],[14,0],[0,-134],[40,-1],[1,-100],[106,2],[0,-51],[14,0],[0,-50],[13,-34],[134,0],[0,-168]],[[140490,123198],[1,-32],[172,-2],[133,-4],[215,-2],[3,-236],[3,-772],[203,0],[261,-11],[122,-2],[173,1],[117,-2],[3,329],[2,274],[175,0],[174,7],[352,-5],[-2,-306],[-5,-300],[-4,-479],[-2,-731],[-2,-209],[-174,4],[-28,-8],[-177,-3],[-145,1],[-5,-330],[0,-369],[41,34],[42,2],[57,-29],[42,12],[1,-176]],[[142238,119854],[-21,-5],[-51,13],[-41,-12],[-47,-31],[-72,-83],[-27,-43],[-29,-87],[-68,-70],[-37,-72],[-8,-43],[14,-64],[21,-28],[44,-40]],[[141276,118169],[84,-1]],[[141468,118172],[41,0],[142,19],[216,-6],[321,-6],[297,2],[440,-4],[434,-3],[257,-7]],[[143616,118167],[2,-59],[-14,-46],[4,-28],[35,-44],[5,-25],[25,-32],[40,-85],[-63,2],[12,-48],[17,-26],[-21,-47],[-30,10],[-29,-5],[-14,-17],[-15,-97],[-48,-86],[-36,-10],[-5,-40],[-53,-79],[-6,-46],[-14,-3],[-18,-37],[-25,-23],[-1,-204],[-6,-429],[62,-2],[-2,-67],[-500,16],[-114,3],[-32,-31],[-28,-51],[-6,-331],[-5,-178],[-32,-77],[-65,-108],[-221,-143],[-578,12],[-4,-137],[-14,-621],[-6,-255]],[[141813,114693],[-243,-2],[-212,0],[-206,3],[-223,-1]],[[142986,107890],[-31,-368],[14,-453]],[[142969,107069],[20,-500],[8,-258],[11,-251],[15,-442],[7,-167],[22,-637],[7,-252],[10,-318],[19,-523],[7,-212]],[[143095,103509],[-78,-26],[-43,-1],[-77,26],[-57,43],[-34,-14],[-57,0],[-53,15],[-47,3],[-79,29],[-57,-6],[-39,12],[-35,21],[-33,34],[-45,-58],[-30,-24],[-49,-27],[18,-70]],[[141813,114693],[430,0],[480,2],[246,1],[144,-1],[272,0]],[[143385,114695],[43,-89],[32,-86],[38,-39],[48,-25]],[[143546,114456],[-32,-388],[-27,-251],[-33,-353],[-15,-183],[-33,-377],[-2,-40],[-19,-199],[-17,-205],[-65,-716],[-35,-429]],[[143268,111315],[-47,-568]],[[144438,126611],[-3,-632],[1,-483],[2,-571],[0,-165],[-23,10],[-18,-30],[-33,3],[-17,-15],[-26,-53],[13,-33],[-18,-23],[11,-27],[-5,-35],[20,-30],[19,19],[9,-73],[-17,-54],[-54,-33],[0,-35],[-29,-6],[-32,-75],[37,-37],[-22,-35],[48,-1],[-3,-41],[38,-16],[37,-52],[-12,-35],[17,-53],[-13,-49],[7,-29],[69,-31],[26,-37],[-12,-32],[3,-45],[-28,-63],[0,-42],[-24,-39],[41,-27],[7,-51],[-9,-22],[49,-74],[-1,-43],[-15,-76],[-21,-54],[0,-31],[-24,-35],[-55,-18],[-43,-20],[-14,-44],[-24,-20],[8,-23],[-18,-48],[9,-49],[-49,-48],[1,-23],[-28,-23],[22,-55],[17,-18],[-11,-24],[-28,9],[-25,-36],[-44,-27],[-49,-6],[-18,-34],[40,-31],[-12,-24],[-8,-60],[-41,-75],[-24,-29],[-33,-11],[-27,-38],[-15,-51],[2,-59],[-8,-32],[-23,-24],[-24,35],[9,30],[-28,11],[-16,-53],[-29,-35],[-20,14],[17,35],[-26,18],[-19,-15],[-24,-50],[16,-24],[-47,-31],[-20,-42],[3,-51],[21,-34],[46,-40],[10,-24],[26,23],[10,-27],[-27,-28],[-26,-54],[-39,8],[-8,-46],[-61,-17],[-5,-18],[19,-27],[69,38],[6,-33],[-16,-44],[-59,-37],[-40,3],[-19,-14],[12,-33],[27,-18],[-14,-39],[21,-70],[-13,-41],[-25,-7],[10,-58],[-19,-16],[-23,23],[-8,-38],[63,-7],[14,-46],[-66,-9],[-49,34],[-13,-28],[25,-34],[31,-70],[49,-23],[-1,-27],[-24,-13],[-58,22],[-15,-33],[21,-27],[23,-10],[42,21],[12,-24]],[[143656,121179],[-13,-18],[-20,-84],[-37,-50],[-83,-61],[-14,-37],[-27,-35],[-14,-46],[5,-53],[23,-68],[14,-68],[47,-48],[25,-44],[25,-14],[17,-56],[-7,-36],[-26,-37],[-85,-3],[-97,-26],[-87,-8],[-42,-8],[-51,-29],[-30,-26],[-25,-39],[-35,-25],[-39,41],[-30,12],[-66,-34],[-31,-42],[-20,-122],[-40,-97],[-5,-31],[13,-56],[34,-42],[19,-46],[40,-42],[23,-85],[14,-35],[-29,-93],[-10,-55],[-20,-33],[-32,-14],[-54,-4],[-42,11],[-46,21],[-18,39],[-52,46],[-35,12],[-66,38],[-35,12],[-50,5],[-42,35],[-64,64],[-51,20],[-48,27],[-99,42]],[[142586,132035],[123,3],[377,-1],[486,2],[289,-4]],[[143861,132035],[-2,-83],[24,-1],[-1,-134],[-58,0],[14,-48],[24,-14],[4,-30],[-31,2],[0,-34],[-39,14],[-39,3],[1,74],[-35,2],[-29,51],[-23,16],[-284,1],[0,-199],[123,0],[0,-53],[47,-8],[74,7],[11,-33],[-1,-43],[15,-24],[1,-32],[-28,-19]],[[143378,130460],[-270,-6],[1,-202],[-46,-1],[12,-39],[75,-17],[20,17],[33,-13],[25,6],[10,-24],[52,9],[-2,66],[88,2],[0,-36],[30,1],[0,35],[61,2],[1,-55],[-30,-27],[5,-189],[-75,-1],[-26,-34],[-138,-3],[2,-101],[92,3],[2,-68],[87,2],[4,-134]],[[143845,130372],[18,-20],[1,-54],[-13,-46],[-58,-45],[-6,32],[-98,-2],[2,-64],[-37,-7],[1,-36],[-42,-34],[-110,-4],[6,-215],[-32,-20],[0,-18],[58,2],[5,17],[250,8]],[[143693,131249],[92,-2],[-8,-58],[-15,-4]],[[143762,131185],[-32,15],[-37,-2],[-1,-151],[18,-35],[32,0],[42,-20],[25,12],[16,-58]],[[143825,130946],[1,-188],[-31,-1],[-21,41],[-25,5],[4,-85],[18,-33],[8,-45],[-19,-1],[5,-67],[-13,-25]],[[143861,132035],[153,-4]],[[144014,132031],[4,-103],[-8,-20],[-3,-128],[-30,-50],[-11,-72],[-5,-65],[9,-76],[28,-99],[38,-89],[27,-46],[44,-93]],[[144107,131190],[0,-21],[-45,9],[-54,1],[-26,22],[-28,-16],[-3,-39],[30,5],[10,-35],[-24,-43],[11,-86],[-71,-3],[-33,23],[-28,-12],[-12,36],[-42,51],[-7,32],[30,20],[0,31],[-53,20]],[[143844,130424],[-9,50],[79,3]],[[143914,130477],[94,3],[9,17],[87,1],[-2,-30],[28,-19],[22,-50],[27,17],[37,43],[11,25],[-30,7],[42,50],[24,5]],[[144263,130546],[17,-35],[-14,-68],[-61,-10],[-13,-34],[-28,-9],[-4,-25]],[[143825,130946],[32,2],[1,-34],[24,-25],[40,-5],[35,-45],[47,-5],[0,52],[72,27],[13,-26],[54,0],[0,-16],[70,1],[19,-84],[25,-4],[24,-46]],[[144281,130738],[10,-60]],[[144291,130678],[-37,4],[-18,-43],[-35,-1],[-8,29]],[[144193,130667],[-1,53],[-16,21],[-2,63],[-22,20],[-32,-15],[17,-34],[-31,-6],[-23,16],[-15,-34],[-63,-14],[-3,-46],[-27,-9],[-150,-4],[1,-103],[40,1],[0,-34],[14,-33],[26,1],[8,-33]],[[143616,118167],[21,29],[12,64],[-3,47],[-17,106],[-21,93],[-11,23],[-8,57],[92,-2],[134,-19],[122,-12],[-6,-71],[320,11],[495,9],[348,1]],[[145094,118503],[-23,-162],[-18,-40],[39,-36],[-19,-179],[13,-15]],[[145876,116944],[-10,-33],[16,-23],[-19,-65],[15,-37],[-6,-40],[6,-42],[27,-26],[-18,-66],[-3,-79],[-53,12],[-25,-11],[-1,-46],[-23,-12],[-6,-36],[-23,5],[-6,-69],[6,-39],[-54,3],[-25,-9],[-56,1],[-39,21],[-7,18],[-53,11],[-14,21],[-40,15],[-93,49],[16,38],[-54,11],[-11,-26],[-54,17],[-8,-60],[-12,-19],[8,-43],[26,-20],[-3,-41],[15,-12],[-27,-57],[-9,-39],[-40,-3],[3,-67],[-3,-46],[-50,4],[-22,11],[-38,-23],[-22,21],[-10,-44],[-25,-19],[-84,12],[-23,-8],[-12,-33],[-37,-54],[-77,6],[12,-63],[-2,-56],[13,-31],[-10,-57],[-22,-38],[106,-30],[3,26],[52,-22],[43,14],[25,23],[46,20],[47,-31],[50,-25],[42,1],[24,-37],[48,-15],[0,20],[39,-13],[8,16],[49,-39],[-1,-59],[10,-57],[19,-5],[9,-29],[0,-49],[25,-23],[35,-4],[14,25],[34,-29],[8,-22],[1,-100],[-13,-597]],[[145533,114687],[-391,10],[-345,11],[-199,4],[-366,2],[-293,4],[-239,1],[-320,5],[5,-29]],[[144107,131190],[27,-48],[67,-74],[20,-53],[1,-55],[21,-51],[1,-41],[18,-47],[19,-83]],[[144360,130432],[12,-47],[27,-42],[25,-11],[26,6]],[[144450,130338],[-1,-169],[-2,-489],[-1,-343],[0,-372]],[[142969,107069],[534,2],[58,1],[15,-68],[14,8],[7,35],[24,-2],[8,23],[108,-234],[9,-4],[36,68],[23,12],[36,40],[63,-2],[17,10],[10,105],[-4,18],[-32,0],[-29,38],[-56,35],[14,57],[67,6],[43,13],[32,25],[1,18],[44,15],[19,-20],[2,-32],[16,-9],[16,-34],[22,42],[38,-34],[-23,-28],[-6,-39],[-32,-69],[-21,-1],[-1,43],[-17,0],[-1,-67],[38,0],[29,-65],[71,-53],[0,-22],[-23,-26],[-1,-36],[-39,-43],[-49,-9],[-18,36],[-46,5],[-34,-47],[-5,-24],[19,-82],[-29,-4],[-10,25],[-37,22],[-19,-39],[-9,-43],[5,-39],[-18,-4],[-20,-57],[5,-40],[-10,-30],[17,-28],[-26,-39],[32,-4],[6,-41],[23,-56],[-23,-64],[-24,10],[-9,-64],[-55,7],[14,-38],[-8,-35],[4,-29],[-36,-5],[20,-45],[30,-14],[20,-46],[-27,-41],[3,-32],[33,-15],[19,2],[12,28],[26,12],[25,-7],[38,23],[-22,34],[42,49],[14,65],[15,8],[27,-21],[25,14],[-5,50],[16,19],[-10,44],[5,20],[43,67],[1,-50],[12,-17],[37,24],[-5,69],[18,25],[13,38],[32,16],[32,36],[41,3],[26,-32],[31,-3],[45,56],[18,72],[-4,39],[-62,43],[-23,44],[32,19],[54,60],[-3,332],[80,2],[-3,269],[27,0],[0,35],[430,5],[22,-7],[484,5]],[[145422,107376],[1,-179],[-44,-16],[-43,-37],[-29,-9],[-15,-19],[-55,-13],[-44,10],[-14,-28],[8,-63],[-35,-26],[-21,-32],[-21,-2],[-47,-21],[-4,-65],[-12,-63],[-22,-49],[-3,-43],[-11,-29],[2,-35],[-66,-144],[-31,-7],[-25,-36],[-39,-43],[-11,-23],[-33,-21],[-35,-54],[-21,-52],[-23,-13],[-20,-74],[-53,-39],[-40,-50],[-14,-44],[280,1],[393,1],[247,2],[125,-2],[-13,-26],[14,-65],[-15,-26],[7,-30],[47,-7],[20,-25],[40,19],[0,-443],[19,-14]],[[145766,105442],[-55,5],[-260,3],[-397,4],[-153,-7],[-117,5],[-452,-3],[16,-73],[-5,-33],[-15,-36],[-30,-112],[-23,-48],[14,-46],[40,-59],[29,-20],[59,-79],[15,-67],[53,-66],[31,-9],[13,-28],[38,-14],[21,-24],[47,-33],[15,-45],[6,-64],[-6,-42],[-14,-13],[-3,-46],[-59,-126],[-4,-43],[27,-32],[-8,-37],[33,-54],[28,-15],[41,-9],[2,-34],[-60,-54],[-26,2],[-26,-42],[4,-22],[-18,-27],[-2,-54],[-19,-30],[-58,-12],[-9,-41],[34,-14],[53,14],[-3,-25],[-104,-38],[0,-126]],[[144459,103673],[-168,-54],[-36,-16],[-111,-17],[-140,-33],[-107,-1],[-80,6],[-87,-7],[-36,-7],[-38,-54],[-28,-13],[-46,6],[-45,44],[-44,17],[-48,61],[-86,-17],[-97,-29],[-51,-5],[-59,28],[-19,-36],[-38,-37]],[[144193,130667],[-34,-7],[-60,35],[-53,17],[-32,-14],[-15,-33],[-54,-7],[-31,-12],[-61,-1],[-22,-55],[54,2],[1,-32],[26,-16],[97,3],[12,34],[89,2],[1,-47],[63,15],[-13,-34],[31,2],[3,49],[81,1],[-13,-23]],[[144291,130678],[31,-75],[6,-69],[30,-68],[-7,-9]],[[143268,111315],[282,-10],[234,-13],[167,2],[4,-267],[-1,-295],[4,-221],[-3,-114],[48,-1],[28,-18],[22,5],[37,36],[9,27],[31,20],[23,-36],[33,45],[-6,31],[55,10],[10,36],[24,-13],[28,40],[-12,40],[-16,3],[-9,54],[7,29],[42,-2],[32,-68],[46,-15],[-1,-37],[62,17],[36,45],[20,13],[100,15],[12,30],[34,13],[29,-45],[-1,-26],[-19,-7],[41,-65],[25,-5],[43,8],[7,15],[37,-25],[13,34],[55,33],[22,35],[-25,50],[29,32],[7,29],[25,24],[30,71]],[[144968,110874],[24,-1],[5,-34],[23,23],[33,1],[27,26],[29,-39],[20,4],[15,30],[48,47],[39,54],[29,-5],[-1,-44],[15,-10],[29,71],[24,35],[-2,70],[26,37],[-20,33],[14,36],[33,17],[-38,57],[-20,10],[-11,34],[23,35],[57,-14],[18,-25],[33,27],[-12,57],[-36,10],[-10,28],[56,9],[-1,42],[21,27],[36,14],[20,-97],[42,14],[53,-21],[33,15],[37,48],[19,35],[36,37],[6,33],[62,21],[9,-32],[-11,-24],[38,-22],[-10,-29],[9,-27],[-71,-6],[-14,-41],[30,-4],[-41,-85],[-27,-44],[-40,-4],[-12,14],[-31,-32],[-5,-41],[-29,-64],[-45,-27],[11,-32],[-40,-24],[-37,-66],[2,-82],[-20,-61],[-61,38],[-41,-33],[5,-15],[-19,-36],[-9,-36],[5,-25],[24,2],[-25,-56],[-39,-35],[-6,-43],[-147,2],[-44,-59],[-27,0],[-1,34],[-47,-8],[-74,-83],[-1,-153],[-130,6],[-46,-90],[-11,-203],[-163,-7],[3,-233],[-2,-65],[160,2],[1,-101],[135,1],[15,7],[108,0],[214,4],[2,-201],[0,-200],[158,2]],[[145405,109304],[-1,-51],[12,-30],[19,-142],[-13,-71],[19,-38],[7,-41],[64,-150],[34,-23],[-27,-30],[2,-34],[26,-50],[19,-19],[13,-38],[-20,-40],[-1,-51],[15,-17],[31,16],[29,61],[-15,68],[2,51],[49,-7],[36,35],[15,-4],[-2,-71],[12,-26],[51,-12],[37,48],[3,48],[13,12],[43,8],[7,-17],[-2,-56],[31,-30],[21,32],[18,0],[44,-27],[16,-57],[56,13],[37,-47],[-26,-71],[8,-20],[45,19],[20,18],[1,46],[11,25],[152,85],[71,0],[-20,-21],[11,-33],[1,-42],[91,1],[20,-26],[-16,-21],[-1,-32],[-28,0],[-36,-22],[-43,55],[5,-124],[13,-28],[-7,-51],[-37,4],[-32,44],[-7,-68],[-24,9],[-14,21],[-26,7],[-30,-41],[5,-567],[-13,2],[-136,-2],[-179,0],[-305,-5],[-160,0],[3,-303]],[[144014,132031],[671,4],[559,-1]],[[145244,132034],[-32,-176]],[[144948,130340],[-498,-2]],[[143546,114456],[40,11],[34,21],[31,-4],[58,-36],[33,-14],[38,-42],[19,-40],[15,-71],[12,-28],[93,-96],[40,-50],[45,-21],[74,8],[50,32],[33,54],[61,23],[40,23],[47,15],[38,27],[14,25],[54,20],[34,5],[25,-22],[45,-24],[47,-10],[39,-20],[87,12],[41,-19],[73,-106],[30,5],[45,22],[32,4],[51,-33],[41,-16],[52,-44],[21,-52],[32,-36],[-3,-432],[-5,-296],[0,-132],[28,-4],[187,-2],[187,-7],[430,-9],[1,154],[26,234],[19,156],[26,-60],[4,-25],[53,-48],[49,-15],[23,19],[45,-11],[21,35],[23,2],[16,24],[7,36],[21,-17],[25,18],[30,-28],[16,46],[21,23],[7,50],[-39,22],[38,28],[7,23],[-21,17],[112,1],[153,-3],[-2,-114],[15,-38],[66,-48],[54,-11],[37,-34],[57,-30],[60,43],[43,62],[241,229],[37,67],[109,210],[31,1],[21,24],[40,102],[12,76],[69,65]],[[147507,114382],[34,-255],[43,-289],[11,-84],[84,-564]],[[147679,113190],[-33,-43],[-29,-9],[-4,-20],[-35,-3],[-17,28],[-38,9],[-18,-12],[-37,52],[-10,49],[5,44],[-30,-15],[-10,-29],[-44,-11],[-17,-43],[-156,-195],[-55,0],[1,-46],[-56,12],[4,-308],[13,-3],[34,35],[33,0],[-10,-58],[94,-256],[-6,-125],[-110,27],[-55,24],[-1,-17],[-55,1],[-29,-17],[1,-85],[-55,0],[0,34],[-28,0],[-27,-15],[0,-50],[-27,2],[-14,-33],[0,-34],[-41,3],[0,-34],[-43,3],[-23,24],[-53,-4],[-35,90],[-36,9],[-12,38],[-27,18],[-2,85],[-39,20],[5,22],[-41,10],[-49,-37],[-34,9],[-10,31],[-25,-12],[-45,-73],[-10,-28]],[[146338,112254],[-71,0],[33,40],[26,67],[1,125],[-10,28],[-124,15],[10,79],[25,62],[-35,30],[-47,24],[-38,41],[-76,3],[-14,14],[-29,-5],[-52,-24],[-12,-40],[-20,-15],[1,-24],[-22,-18],[-17,19],[-46,-34],[-5,-36],[-49,-25],[-26,1],[30,-51],[-25,3],[-13,-30],[13,-19],[-14,-24],[-51,-45],[3,-21],[-32,-11],[-5,-50],[-44,-24],[-3,-27],[-44,12],[-9,-30],[-25,10],[-27,-33],[-39,-1],[-1,-38],[-61,-19],[-4,-26],[12,-31],[-20,-40],[-21,-1],[-28,-20],[14,-31],[1,-102],[-27,1],[0,-34],[-55,2],[0,-34],[-27,0],[-1,-67],[-12,-34],[-15,0],[2,-101],[-28,0],[-1,-67],[-55,1],[0,-67],[-81,1],[0,-34],[-55,1],[-1,-34],[-27,0],[-12,-47],[12,-38],[-21,-55],[-35,2],[-26,-57],[-24,33],[-18,-19],[24,-40],[-12,-15],[-27,12],[0,-38],[-46,3],[-26,10],[-10,-37],[3,-45],[34,-1],[-1,-32],[47,-3],[1,-34],[27,-3],[29,-33],[-1,-34],[27,-1],[0,-68],[27,-17],[27,-1],[4,-34]],[[145855,124976],[2,-218],[-30,20],[-14,-12],[6,-39],[-20,-9],[-29,15],[5,-394],[1,-367],[-2,-567],[1,-391],[2,-458],[104,2],[9,-40],[-16,-23],[0,-68],[9,-38],[71,2],[-2,-131],[65,-66],[51,-10],[59,22],[-2,-97],[13,-28],[50,-17],[38,22],[33,-1]],[[146259,122085],[-2,-50],[17,-18],[63,-18],[7,-15],[-17,-41],[-20,-5],[-47,7],[-20,-14],[-25,-46],[-34,42],[-29,11],[-34,-24],[-1,-30],[20,-26],[32,-18],[-2,-45],[-36,-39],[-89,-11],[-19,-35],[0,-141],[24,-57],[5,-31],[-55,-30],[-39,12],[-35,-2],[-18,-39],[5,-81],[-12,-26],[-35,-26],[-34,-13],[-21,21],[2,32],[26,75],[-3,24],[-54,19],[-61,-51],[-19,2],[-34,49],[-39,83],[-29,89],[-32,22],[-57,-23],[-54,-60],[-24,-39],[-28,-23],[-90,-13],[-56,-28],[-44,-40],[-10,-27],[5,-49],[-21,-95],[-20,-60],[-34,-34],[-32,-10],[-27,8],[-20,67],[-37,61],[-65,8],[-22,10],[-60,47],[-71,66]],[[144798,121407],[-66,30],[-52,54],[-38,19],[-41,6],[-56,-23],[-51,-54],[-22,-13],[-73,52],[-21,32],[-13,65],[-37,2],[-6,-46],[-36,-66],[11,-35],[44,-42],[7,-65],[-42,-69],[-41,-12],[-50,8],[-13,61],[23,47],[0,45],[-28,17],[-43,-22],[-75,-5],[-55,-38],[-61,4],[-37,54],[-27,51],[-37,12],[-18,-15],[-47,-71],[3,-53],[42,-57],[10,-61],[-5,-21],[-39,-22],[-23,-57],[-20,-1],[-29,36],[-60,31],[-20,-6]],[[144798,121407],[-32,-182],[25,-9],[16,-70],[37,-2],[-25,-54],[-52,-44],[-76,-9],[-36,-32],[0,-32],[-23,-62],[231,-142],[166,-84],[28,-23],[68,-20],[60,8],[30,-23],[51,46],[90,116],[33,-16],[55,44],[61,28],[20,25],[38,19],[-78,81],[68,67],[291,-176],[-3,-99],[25,-34],[7,-40],[41,-62],[-7,-50],[-33,36],[-9,27],[-23,1],[-11,-25],[-26,4],[3,-35],[78,-340],[-232,-210],[-16,11],[-10,40],[-40,19],[-25,-16],[-2,-52],[-17,-55],[-30,-43],[-9,-28],[-28,-9],[-18,-27],[-9,-40],[-24,-15],[6,-62],[-22,-15],[-19,-39],[3,-42],[38,-45],[8,-81],[-37,-19],[-38,-8],[3,-18],[151,-29],[269,-131],[144,-392],[161,-28],[127,-25],[-9,-72],[224,224],[0,47],[46,12],[-2,19],[51,16],[-11,32],[14,18],[20,-32],[29,31],[16,-25],[-25,-22],[29,-19],[17,54],[19,-62],[41,-46],[20,41],[28,-22],[13,-30],[-12,-55],[35,-57],[-17,-16],[-6,-40],[49,-34],[6,-26],[-24,-18],[76,-31],[30,-39],[10,-44],[267,229],[55,34],[52,12],[-17,380],[-8,48],[-6,97],[5,95],[-25,0],[-8,66],[28,28],[23,45],[91,29],[41,-91],[45,-41],[65,-21],[101,-15],[70,42],[76,39],[85,55],[43,55],[-30,67],[-55,2],[4,34],[18,29],[-61,129],[-76,135],[-100,99],[-65,60],[0,75],[27,-2],[61,-22],[2,16],[39,49],[22,-35],[35,0],[-12,57],[-28,55],[-2,44],[-17,34],[-28,11],[62,172],[50,133],[77,103],[17,-40],[27,-31],[7,-27],[-8,-33],[23,-15],[30,-37],[46,1],[85,-49],[144,1],[-3,18],[37,17],[4,30],[31,10],[-7,24],[28,53],[48,0],[23,-53],[21,-25],[38,3],[-21,-276],[42,14],[17,-40],[164,-4],[80,36]],[[148666,120597],[-15,-44],[-5,-142],[15,-93],[86,-84],[115,-71],[26,-139],[-28,-31],[12,-80],[-7,-31],[-139,-147],[-145,-136],[-9,-67],[2,-92],[66,-91],[44,-24],[-113,-121],[-22,27],[-34,8],[-11,-12],[-17,-90],[-90,-67],[-73,-66],[8,-60],[52,-60],[35,-117],[-21,-65],[4,-29],[-9,-49],[31,-41],[4,-68],[-9,-10],[8,-44],[38,-20]],[[148465,118441],[-82,9],[-234,13],[-160,4],[-37,-5],[-203,-12],[-113,-10],[-276,8],[-189,9],[-57,0],[-315,20],[-209,16],[-201,17],[-62,8],[-276,9],[-88,-43],[-42,43],[-227,-8],[-263,-6],[-127,-5],[-210,-5]],[[145840,130338],[-31,-16],[0,-136],[-61,-1],[0,-33],[-184,1],[-2,-275],[7,-295],[-2,-370],[-38,-3],[-49,-17],[-80,-46],[-15,-19]],[[146338,112254],[5,-17],[-38,-39],[-3,-33],[14,-15],[-14,-33],[-28,-18],[-40,-47],[-23,-39],[-50,-36],[-14,10],[-63,-26],[-41,-6],[-14,-20],[-88,0],[-1,-85],[55,0],[1,-69],[27,-33],[0,-151],[-14,1],[0,-51],[-27,-33],[-1,-137],[14,-16],[41,-1],[0,-17],[56,0],[-1,-101],[164,0],[-1,-258],[8,-18],[33,-24],[14,-54],[-38,-18],[1,-49],[16,-54],[-57,-50],[-27,-6],[-29,23],[-8,-17],[15,-34],[-18,-43],[-35,-1],[-13,-40],[8,-49],[-17,-15],[-22,12],[-27,-52],[31,-46],[1,-26],[25,-28],[11,-25],[-32,-23],[-17,-29],[578,4],[181,0],[1,-241],[2,-567]],[[146839,109514],[-492,-3],[1,32],[-28,1],[0,-33],[-54,-7],[-67,0],[1,-100],[-475,-4],[2,-102],[-163,-4],[-159,10]],[[145533,114687],[210,0],[370,-4],[153,3],[194,-3],[379,-3],[281,-2],[352,-8]],[[147472,114670],[13,-118],[22,-170]],[[141364,144800],[229,-91],[577,348],[463,279],[485,140],[582,-328],[0,-19],[141,-72],[56,-23],[197,-112],[0,-6],[197,-99],[0,-5],[197,-117],[196,-111],[197,-115],[217,-121],[78,-42],[99,-61],[80,-55],[117,-65],[197,-115],[0,7],[187,-116],[10,-11],[197,-117],[295,-161],[12,0],[86,-51],[0,-8],[197,-118],[0,-15],[197,-115],[197,-118],[0,-5],[197,-122],[394,-238],[132,-77],[262,-158],[0,-5],[196,-126],[419,-257],[82,-321],[70,-268],[324,-401],[129,-18],[47,83],[40,28],[40,-4],[33,23],[51,-4],[25,-17],[51,-17],[44,4],[17,15],[44,76],[51,15],[26,-31],[60,12],[17,-5],[27,-60],[-55,-198],[12,-107],[31,-81],[20,-35],[-21,-16],[7,-108],[28,-27],[-17,-36],[36,-72],[13,-52],[113,-88],[-1,-72],[47,-36],[33,-105],[81,8],[122,135],[105,-37],[166,44],[131,-37],[217,-248],[-180,-287],[-140,-233],[240,-5],[172,-112],[350,-228],[241,-159],[191,-130],[6,-7],[197,-127],[231,-155],[130,-90],[32,-202],[91,-575],[106,-656],[0,-19],[29,-192],[43,-260]],[[152632,136704],[-269,-2],[0,7],[-393,-7],[-197,3],[0,-4],[-394,0],[-448,1],[-338,-2],[-414,-5]],[[147132,135898],[-127,1],[-221,6],[4,-260],[-1,-151],[-191,1],[-438,6],[-1,67],[-21,0],[-24,-67],[-13,0]],[[146099,135501],[-39,68],[-21,61],[2,28],[18,32],[87,72],[27,33],[49,92],[16,45],[-175,1],[-197,5],[-572,3]],[[145294,135941],[102,338]],[[145396,136279],[119,396],[-12,0],[166,553],[100,328],[294,462],[105,102],[288,256],[-50,33],[-343,208],[-401,240],[-546,1],[-110,-212],[-228,-259],[-142,-89],[-58,-290],[-225,47],[-10,-5],[-109,31],[-36,83],[-54,40],[-27,35],[-10,48],[22,25],[4,53],[20,19],[3,47],[18,22],[18,66],[41,54],[22,45],[-16,67],[-57,47],[-39,-28],[-33,-49],[-23,-16],[-57,9],[-66,-3],[-28,-11],[-54,36],[14,38],[26,21],[15,49],[-19,58],[48,52],[29,17],[32,82],[-15,30],[-10,73],[-39,35],[2,19],[54,-13],[36,92],[-58,88],[-20,18],[2,34],[66,26],[-10,31],[-28,20],[-11,36],[-43,15],[-39,45],[3,18],[-28,22],[-31,-3],[-47,16],[-53,-5],[-36,27],[8,17],[-21,43],[-101,-35]],[[143608,139636],[-57,12],[-17,34],[-37,19],[-5,36],[70,76],[27,40],[-49,20],[-6,51],[5,38],[-38,1],[-34,36],[-35,4],[-16,21],[-78,-3],[-39,38],[-22,-16],[-52,0],[-42,16],[-83,65],[-13,-21],[-54,-1],[-65,43],[-35,-22],[-17,11],[-15,52],[-42,4],[-9,-14],[-40,4],[-36,-25],[-25,26],[-20,-66],[-30,-6],[-36,10],[-32,56],[-52,6],[-44,26],[-67,-26],[-22,17],[-30,-1],[-37,16],[-19,24],[-379,227],[-586,165],[-111,33],[-363,101],[-243,69],[-318,91],[3,52],[-25,32],[-38,84],[-7,58],[-22,12],[-4,39],[-19,8],[-39,95],[-21,16],[-53,-13],[-19,36],[-60,-5],[4,47],[-41,41],[-21,-32],[-26,2],[-44,-17],[-37,75],[58,136],[141,320],[241,547],[22,48],[197,449],[67,176]],[[151804,132144],[30,28],[98,15],[25,36],[-13,58],[-49,38],[5,46],[60,34],[79,69],[-32,-129],[5,-341]],[[152012,131998],[-42,-62]],[[151970,131936],[-180,1]],[[150460,135122],[359,-218],[-11,-29],[-30,-25],[-25,15],[-51,-40],[-24,-59],[-25,7],[-66,-84],[-35,-52],[-44,-26],[-35,10]],[[150473,134621],[-5,142],[-8,359]],[[145183,132663],[92,3],[591,0],[394,1],[261,1]],[[145244,132034],[-61,629]],[[146099,135501],[17,-36],[8,-56],[21,-82],[-1,-51],[22,-88],[5,-87],[-305,1],[0,3],[-394,3],[-197,2],[0,-6],[-146,-2]],[[145129,135102],[69,416],[4,0],[52,305],[21,73],[19,45]],[[147539,133886],[-359,-3],[0,-203],[4,-355],[0,-48],[200,-4],[-18,-36],[0,-33],[-86,5],[-24,16],[-14,-84],[15,-17],[39,-1],[1,-51],[47,-1],[1,-49],[31,0],[1,-23],[30,-4],[2,-58],[61,0],[-1,32],[14,25],[47,9],[-2,34],[-17,33],[47,-1],[8,-200],[-310,2],[-1,-32],[-61,34],[-1,-203]],[[145183,132663],[-17,178]],[[145166,132841],[-35,365],[-26,289],[-17,152]],[[145088,133647],[-45,437],[35,672],[18,147],[33,199]],[[147386,130336],[10,-644],[1,-299],[-332,-7],[-4,-30],[-29,0],[4,-169],[-46,-1],[5,-200],[173,4],[4,-309],[176,8],[1,-104],[62,1],[5,-355],[-2,-2],[6,-451]],[[147420,127778],[-357,-3],[2,-199],[-236,-3]],[[146336,125417],[590,15]],[[146926,125432],[0,-198],[2,-134],[-4,-258],[2,-83],[-210,-7],[6,-273],[4,-339],[-1,-101],[187,5],[158,6],[22,45],[37,22],[38,-3],[6,-604],[-38,-71],[-36,-86],[-38,-23],[110,-9],[63,-75],[58,-16],[1,-59],[32,-48],[12,-41],[-45,-39],[149,0],[202,3],[1,-33],[27,-14],[80,0]],[[147751,122999],[19,-53],[1,-39],[-12,-34],[-58,-41],[-24,-24],[-9,-36],[-28,-46],[-41,-25],[-97,-17],[-29,-22],[-25,-40],[-27,-100]],[[147421,122522],[-3,-44],[-25,-86],[-28,-50],[-19,-17],[-91,-64],[-28,11],[-31,38],[-65,-17],[-21,-33],[-6,-61],[-20,-42],[-51,-52],[-31,-61],[-9,-72],[7,-121],[-16,-52],[-6,-61],[-15,-52],[-29,-31]],[[146934,121655],[-48,-4],[-70,-18],[-17,-14],[-3,-56],[-23,-13],[-24,36],[-24,58],[-39,28],[-27,8],[-90,-12],[-67,41],[-19,26],[-54,40],[-13,39],[-5,62],[14,67],[-4,26],[-36,53],[-37,23],[-45,50],[-31,4],[-13,-14]],[[146335,125858],[46,0],[13,35],[0,34],[42,1],[-22,32],[52,1],[0,34],[65,10],[22,-20],[1,-47],[29,-24],[44,-7],[46,26],[36,-7],[46,24],[54,18],[25,-18],[5,-38],[52,36],[32,-13]],[[146923,125935],[4,-352],[-1,-151]],[[146839,109514],[55,0],[-1,33],[27,-1],[1,-33],[119,0],[-4,-40],[-18,-23],[-1,-42],[-21,-23],[-7,-50],[17,-41],[21,-29],[-11,-102],[15,-139],[-9,-61],[3,-48],[30,-34],[-19,-61],[-19,-17],[-59,14],[-43,-29],[-24,12],[-73,-62],[-21,7],[-20,-38],[-50,15],[-13,21],[-47,-11],[-36,29],[-60,25],[-14,-17],[3,-40],[21,-10],[-43,-43],[-1,-25],[59,0],[29,-34],[-44,-17],[-12,-34],[26,-15],[-5,-50],[-15,-25],[-1,-26],[-24,-7],[38,-56],[53,-60],[23,-42],[2,-128],[7,-29],[45,8],[27,21],[49,-56],[60,-6],[-2,252],[20,0],[0,51],[138,6],[8,54],[25,-16],[5,-55],[-2,-50],[31,-33],[123,3],[353,0],[190,3],[9,-203],[268,4],[-4,-12],[23,-56],[17,-7],[22,-48],[19,-6],[26,-39],[11,-33],[203,4]],[[148337,107914],[-4,-38],[8,-21],[-2,-62],[-13,-16],[-12,-52],[8,-24],[-33,-31],[7,-30],[-32,-63],[-23,-57],[-25,0],[7,-38],[-19,-44],[-2,-42],[17,-55],[-3,-53],[-14,-24],[25,-31],[-5,-26],[16,-61],[-12,-33],[1,-48],[53,-84],[19,-9],[-11,-35],[47,-51],[-1,-111],[26,-73],[-5,-42],[-33,-85],[-9,-37],[9,-66],[-22,-65],[4,-25],[-24,-84],[10,-25],[-5,-41],[8,-21],[-10,-77],[-31,-27],[-5,-41],[26,-90],[-16,-52],[0,-40],[13,-12],[-1,-35],[34,-17],[22,-35],[17,-53],[25,-23],[17,-62],[-3,-19],[27,-49],[3,-48],[15,-44],[-4,-30]],[[148422,105457],[-380,0],[-199,-5],[-330,-6]],[[147513,105446],[-268,-2],[-198,-4],[-194,-1],[-194,0],[-93,2],[-173,0],[-181,1],[-181,-2],[-68,4],[-197,-2]],[[146934,121655],[20,-18],[34,54],[59,50],[256,104],[245,-31],[44,23]],[[147592,121837],[158,80],[-5,-54],[-12,-20],[61,-56],[18,-41],[-15,-31],[9,-19],[36,-28],[1,-34],[33,-1],[19,21],[36,-29],[50,48],[16,50],[22,21],[40,3],[22,48],[36,21],[148,-87]],[[148265,121729],[-12,-23],[-27,-16],[5,-23],[-24,-28],[-36,-18],[-12,-21],[26,-194],[31,3],[13,41],[29,-17],[-1,-35],[29,-15],[68,10],[36,-13],[10,21],[46,24],[12,22],[9,47],[27,24],[37,19],[59,-15],[18,-18],[46,27],[92,43],[-1,-15],[-36,-29],[36,-33],[-38,-23],[62,-44],[4,-40],[21,-4],[11,-34],[-24,-39],[14,-22],[33,7],[37,26],[17,0],[79,328],[107,-41],[34,-20],[-7,-22],[-28,12],[-12,-56],[67,-37],[-8,-41],[-39,22],[-21,-7],[-11,-29],[6,-54],[-14,0],[-33,-49],[-12,-1],[-37,-83],[13,-43],[63,-13],[-44,-36],[11,-35],[41,-15],[12,-24],[30,-14],[-3,-35],[26,-15],[24,47],[26,15],[12,36],[26,-32],[32,-23],[-14,-31],[30,-32],[46,-69],[-3,-33],[17,-11],[5,-37],[24,-17],[4,-30],[17,-28],[23,-15],[3,-37],[40,-19],[15,-66],[18,-26],[6,-31]],[[149453,120577],[-21,-58],[9,-37],[-30,-58],[-114,30],[-10,16],[-32,4],[-229,228],[-47,40],[-6,18],[-57,-13],[-54,-48],[-38,-14],[-15,6],[-143,-94]],[[146038,117251],[69,-66],[85,-70],[54,-35],[11,-34],[19,-4],[61,-59],[60,-28],[59,-12],[20,-19],[23,23],[58,-26],[53,-9],[-4,-50],[21,-42],[-17,-12],[-9,-66],[-23,-18],[-16,-177],[-12,-32],[6,-43],[-13,-52],[-20,-21],[1,-66],[-19,5],[-23,-34],[-20,-14],[9,-63],[-6,-87],[4,-115],[1,-154],[-9,-88],[-7,-145],[-14,2],[-30,-39],[41,-5],[-13,-45],[26,-42],[51,-1],[7,-20],[57,33],[22,23],[192,-44],[52,-57],[2,-9],[87,-16],[6,-22],[46,-22],[14,96],[38,42],[1,27],[17,46],[-28,3],[4,26],[-7,118],[6,105],[14,42],[-10,73],[-34,5],[-47,50],[-18,51],[-20,79],[-31,73],[-9,9],[-12,99],[10,86],[112,203],[65,56],[42,-2],[90,15],[2,-21],[56,16],[28,-14],[82,-29],[17,-25],[47,-9],[30,-34],[54,1],[26,10],[29,-25],[20,-64],[71,1],[56,71],[59,-49],[31,24],[-32,60],[96,-41],[153,59],[-18,-28],[13,-32],[-9,-29],[24,-15],[7,-27],[238,10],[29,-22],[69,26],[19,-59],[158,52],[20,-16],[17,28],[36,11],[133,108],[25,-1]],[[148769,116613],[-9,-18],[35,-41],[25,-10],[18,-36],[-20,-12],[-11,-31],[17,-23],[41,2],[11,-23],[25,0],[4,-39],[30,-17],[7,-34],[43,50],[34,-30],[6,-39],[-14,-11],[0,-64],[13,-41],[-72,-114],[-35,-37],[-4,-36],[-54,-98],[-40,-34],[-16,-47],[-13,-4],[-14,-44],[-16,-2],[-28,-37],[-28,-67],[-1,-34],[-17,-10],[-40,-117],[35,-23],[20,-33],[23,5],[12,-23],[32,-11],[51,-60],[31,9],[11,-29],[-42,-7],[9,-34],[-6,-45],[29,-36],[-4,-22],[-44,14],[-6,-29],[-52,-1],[-33,-67],[-12,-42],[-34,3],[4,-23],[-31,-54],[0,-57],[-12,-8],[-32,-63],[-24,-22],[-3,60],[-61,41],[-48,10],[-50,-29],[-21,56],[0,55],[22,21],[2,59],[44,84],[7,32],[22,44],[-6,17],[37,51],[-34,65],[-19,85],[2,25],[-53,59],[-10,-27],[-26,18],[5,40],[19,29],[-80,64],[-54,-18],[-3,38],[-13,26],[-37,4],[-22,-30],[-31,23],[-43,-121],[-79,-195],[-224,-401],[4,-20],[-16,-72],[20,0],[33,-42],[-7,-42],[-30,-61],[-38,-7],[-28,-77],[-40,-24],[-33,-31]],[[147679,114666],[-207,4]],[[147420,127778],[299,2],[2,-201],[89,0],[2,-101],[29,1],[1,-69],[-29,1],[0,-35],[177,-1],[110,2],[0,-232],[-21,0]],[[148079,127145],[-176,-2],[-207,3],[-182,0],[5,-390],[-1,-371],[0,-242],[-325,-3],[-126,-2],[0,-34],[-116,-4],[-3,-133],[-25,0],[0,-32]],[[148465,118441],[61,-8],[167,-17],[70,-3]],[[148763,118413],[56,-115],[55,-126],[36,-147],[53,-93],[-43,-17],[-9,-33],[-27,-12],[-15,14],[-22,-19],[0,-37],[-11,-29],[-36,-21],[-20,12],[-23,-39],[-13,-46],[-26,-9],[-12,15],[-33,-29],[-37,13],[-19,-29],[4,-25],[-34,-105],[-26,-36],[6,-51],[16,-32],[-13,-36],[17,-23],[42,-23],[61,-123],[9,21],[34,-10],[20,-68],[112,-149],[64,-200],[-41,-28],[-35,-86],[-51,-42],[-33,-37]],[[147679,113190],[59,-432],[47,-360],[46,-338],[62,-469]],[[147893,111591],[53,-394],[41,-308],[71,-550],[77,-558],[1,-23],[46,-48],[-22,-29],[5,-44],[23,-34],[14,-5],[31,-39],[-33,-30],[16,-39],[31,-28],[-15,-40],[17,-74],[29,-31],[8,-28],[-27,-30],[37,-66],[7,-43],[17,-43],[68,-84],[24,-41],[15,-41]],[[148427,108941],[7,-49],[-5,-56],[7,-26],[34,-18],[13,-47],[-25,-24],[-7,-115],[-33,-40],[3,-53],[22,-7],[87,-49],[14,-25],[57,-61],[-20,-6],[-46,-91],[-67,-3],[-11,-15],[26,-35],[-72,-33],[-57,-88],[-26,-26],[27,-103],[-13,-17],[-5,-40]],[[147421,122522],[254,-209],[-22,-37],[21,-11],[7,-30],[-38,-2],[-17,-93],[29,-27],[2,-26],[-43,2],[18,-32],[-3,-49],[-16,-56],[-50,8],[10,-46],[-17,-62],[36,-15]],[[148079,127145],[2,-168],[317,6],[337,2]],[[148735,126985],[-4,-270],[-8,-457],[-5,-421],[0,-355],[-2,-420],[-6,-401]],[[148710,124661],[-1,-461]],[[148709,124200],[-20,-12],[-47,-54],[-35,-21],[-19,-25],[18,-46],[20,-21],[54,-89],[14,-47],[-9,-27],[-49,-57],[-18,-29],[14,-48],[85,-10],[45,-30],[-6,-49],[-56,-57],[-2,-42],[21,-42],[2,-32],[-36,-5],[-82,24],[-73,-40],[-23,-5],[-69,7],[-30,-26],[-98,-60],[-41,-33],[-51,-55],[-65,-35],[-50,9],[-26,21],[-39,70],[-20,15],[-74,9],[-76,-24],[-29,-2],[-56,16],[-45,-20],[-25,-44],[-4,-66],[26,-53],[-2,-108],[18,-58]],[[148731,130190],[3,-664],[1,-684],[1,-407],[1,-330],[0,-379],[-2,-382]],[[148735,127344],[-1,-143],[1,-216]],[[147679,114666],[149,0],[146,4],[349,4],[177,3],[226,0],[296,1]],[[149022,114678],[-2,-303],[27,-39],[16,-3],[21,-33],[-44,-78],[-50,-31],[10,-15],[-6,-39],[-15,-19],[-13,-40],[4,-240],[0,-176],[239,4],[55,30],[0,-31],[48,-2],[4,-40],[-24,-69],[-30,-10],[-43,12],[5,-34],[30,-23],[-1,-32],[-54,13],[-3,-47],[26,-11],[22,-29],[22,2],[12,-27],[25,35],[14,-13],[13,-45],[22,-36],[-20,-21]],[[148860,112170],[-1,-194],[1,-72],[-62,-3],[-109,-20],[-73,-9],[-36,14]],[[148580,111886],[-109,43],[-105,29],[-18,1],[-3,-226],[-24,-9],[-77,-45],[-23,0],[-14,20],[-175,-80],[-63,-31],[-76,3]],[[148580,111886],[-1,-305],[-5,-175],[152,2],[-23,-23],[-13,-44],[27,-47],[-20,-27],[122,-5],[126,2],[77,-3],[19,-19],[23,38],[60,22],[-1,-51],[-11,-26],[11,-28],[0,-34],[29,-42],[19,-12],[31,14],[35,-5],[-2,59],[20,-1],[13,25],[37,-24],[15,-33],[17,1],[17,41],[21,18],[24,-52],[-4,-21],[-28,-42],[24,-82],[-12,-15],[11,-44],[-11,-35],[10,-18],[53,0],[1,104],[25,-19],[22,16],[18,-21],[17,10],[41,-3],[35,67],[0,53],[75,19],[-15,75],[50,3],[11,18],[52,-1]],[[149774,111216],[8,-38],[25,-25],[-39,-62],[-9,-59],[8,-19],[45,-1],[-5,-41],[28,0],[27,-32],[32,11],[16,-19],[23,-72],[-17,-17],[0,-27],[-30,0],[-1,-37],[-46,1],[21,-38],[-53,-76],[-1,-116],[129,0]],[[149935,110549],[0,-215],[-4,-374],[-16,-38],[-109,1],[-1,-191]],[[149805,109732],[0,-110],[-40,-1],[-83,-256],[-28,70],[-27,41],[-31,-22],[-9,23],[-34,12],[-29,40],[-22,-14],[-35,14],[-17,47],[-31,-13],[-34,25],[-17,67],[-21,43],[-30,8],[-14,-30],[-23,11],[-15,53],[-35,7],[22,47],[-35,17],[-115,-89],[-205,-1],[13,-35],[-2,-281],[-15,-17],[15,-34],[-1,-236],[-86,-1],[-250,0],[-31,-31],[24,-68],[-6,-40],[-29,-30],[-40,-26],[7,-48],[-39,23],[28,88],[-5,14],[-39,-27],[-14,-31]],[[149244,111970],[-48,-56],[-29,-22],[-14,-29],[-63,-63],[-14,-34],[-23,-10],[-10,-27],[-38,-29],[3,-17],[48,-12],[5,-33],[31,13],[38,-18],[28,-30],[46,-10],[25,-51],[28,9],[22,-16],[-1,-80],[47,-14],[0,20],[67,-8],[6,-15],[77,-30],[40,-37],[38,-21],[32,0],[0,77],[17,0],[15,38],[-31,19],[1,56],[-7,37]],[[149580,111577],[34,-1],[0,-37],[33,0],[1,37],[63,-1],[7,-32],[40,-81],[7,-25],[33,-55],[32,9],[17,-16]],[[149847,111375],[-2,-63],[-63,1],[0,-51],[-8,-46]],[[148763,118413],[158,-4],[228,-12],[211,-2],[229,-9]],[[149589,118386],[-4,-58],[23,-4],[-5,-80],[-20,-71],[14,-7],[39,37],[5,-45],[32,18],[16,26],[29,25],[51,57],[28,10],[34,-39],[28,21],[21,-40],[-8,-31],[15,-32],[19,13],[45,-3],[53,15],[23,-37],[43,13],[20,-61],[-41,15],[-4,-48],[10,-19],[4,-121],[20,5],[46,-30],[22,26],[8,48],[27,3],[37,31],[45,-34],[39,6],[66,-54],[36,-68],[0,-39],[16,-18],[35,2],[21,46],[48,-50],[-35,-112],[0,-39],[-21,-13],[-3,-54],[17,-29],[-10,-69],[-26,-18],[-19,-41],[22,-20],[-28,-20],[-300,11],[-30,39],[-34,-26],[-57,-71],[-24,-21],[-23,-43],[-53,-53],[-48,-58],[55,-75],[-41,-45],[-26,-12],[-76,-57],[-67,19],[-11,-42],[-23,-3],[-12,-70],[-30,23],[7,-55],[-9,-6],[-36,34],[18,-61],[-28,-13],[-24,-41],[11,-30],[-76,19],[-10,-28],[-7,-88],[-65,-50],[4,-62],[-18,-52],[-44,19],[-15,-54],[-17,-11],[-19,26],[-72,-100],[-25,0],[-18,-26],[0,-66],[-29,-14]],[[149150,116256],[-21,-27],[-35,0],[-14,-17],[0,-43],[28,1],[30,18],[22,-27],[46,-23],[-14,57],[42,33],[46,2],[0,15],[50,-8],[30,8],[14,-59],[37,3],[19,13],[7,42],[49,-1],[43,-17],[3,-33],[25,-18],[32,0],[13,-41],[29,9],[21,-15],[45,7],[17,-45],[52,-17],[0,-18],[34,-12],[49,-7],[10,-36],[-8,-15],[21,-28],[21,12],[40,-10],[77,18],[3,-44],[-30,-34],[30,-39],[26,3],[50,-46],[-33,-22],[6,-17]],[[150062,115778],[-6,-22],[-43,-32],[-14,-40],[-22,-26],[-5,-29],[16,-22],[1,-42],[-25,-40],[-24,-15],[14,-33],[-9,-37],[22,-39],[-30,-49],[-24,-26],[-40,-17],[-27,-32],[-14,10],[-57,-11],[-41,-1],[-15,-13],[-32,7],[-20,52],[-19,7],[-30,-37],[-75,-64],[-49,-548]],[[149494,114679],[-84,-1],[-388,0]],[[148709,124200],[56,28],[19,35],[35,34],[51,-26],[45,-77],[59,-24],[30,-37],[39,-8],[51,18],[35,40],[42,-13],[48,20]],[[149219,124190],[22,35],[37,11],[20,-14],[17,-33],[7,-98],[29,-27],[82,-12],[34,-18],[39,-40],[22,-46],[7,-64],[14,-38],[47,-69],[36,-73],[1,-108],[5,-42],[27,-47],[89,-25],[75,-37],[60,-20],[41,0],[106,39],[56,-12],[22,-24],[64,-14],[43,-20],[22,-34],[9,-47],[30,-29],[35,-11],[23,-19],[23,-94],[40,-17],[33,-4],[86,-47],[39,24],[15,77],[37,33],[143,43],[47,-23],[35,-41],[34,-12],[109,-20],[32,-17],[47,-38],[14,-63],[19,-25],[29,-3],[40,55],[28,15],[68,-28],[74,10],[32,26],[19,62],[16,30],[78,40],[32,44],[24,45],[37,5],[51,-6],[50,41],[67,26],[36,-25]],[[151774,123367],[7,-42],[-12,-76],[21,-56],[11,-53],[2,-64],[13,-56],[41,-51],[52,-32],[99,-3],[43,-33],[35,-64],[36,-52],[67,-51],[11,-28],[5,-53],[11,-35]],[[152215,122525],[-102,-1],[-19,29],[-45,-1],[-19,17],[-4,30],[-50,41],[-38,4],[-11,-41],[-53,-52],[-11,-43],[-150,58],[-86,-12],[-45,38],[-8,23],[-80,104],[-24,2],[-47,39],[-38,6],[-27,27],[-31,15],[-30,-1],[-17,-46],[2,-32],[-22,-37],[-19,-13],[-13,-37],[-20,-8],[-6,-28],[7,-108],[-11,-32],[11,-40],[-23,-18],[-55,-15],[-17,13],[-51,-1],[-15,-26],[-46,26],[2,23],[-46,63],[-13,52],[-26,16],[-18,-18],[-39,-15]],[[150862,122526],[-22,40],[-29,14],[-19,-8],[-27,30],[-34,4],[-70,32],[6,62],[-41,110],[-34,-2],[-6,42],[-21,8],[-126,-50],[-217,-110],[-112,83],[-18,29],[-30,65],[-11,116],[-39,23],[-26,-19],[-38,-4],[2,29],[-40,-9],[-20,25],[-54,-37],[-16,-35],[-50,-50],[-25,10],[-2,-33],[-23,-16],[-9,-80],[35,8],[19,-52],[-27,-26],[-36,8],[-38,-35],[-40,-2],[-24,-60],[-6,-30],[-22,-31],[-67,-67],[32,-22],[-21,-60],[10,-30],[-6,-44],[-22,-25],[-42,-25],[-27,23],[-8,-25],[-31,-4],[-46,12],[-19,-18],[-25,15],[19,30],[-22,68],[-15,19],[-10,49],[7,36],[-16,45],[-43,56],[-51,37],[2,40],[-27,33],[-14,58],[-12,6],[-100,-142],[-40,-34],[-89,-107],[-64,-48],[-74,-25],[-30,26],[-23,-4],[-18,20],[-85,-4],[-22,46],[-144,-91],[64,-8],[-66,-132],[-3,-113],[-10,-116],[5,-35],[-25,-45],[-10,-40],[-20,-9],[-24,-83],[4,-22],[-31,-39],[-19,-39],[-29,-9]],[[148735,127344],[181,0],[0,67],[34,0],[1,34],[30,8],[0,26],[60,0],[0,-17],[51,0]],[[149092,127462],[9,0],[-1,-150],[184,0],[-1,-215],[33,-10],[3,-363],[272,4],[64,-8],[310,-27],[-21,-332],[388,-32],[248,-23],[183,-14]],[[150763,126292],[10,-1],[-50,-220],[-9,-27],[-28,-127],[-36,-184],[-94,10]],[[149425,125319],[1,-106],[52,12],[-13,-213],[5,-2],[-14,-195],[-12,-184],[-59,13],[-59,2],[-59,10],[-31,-3],[-30,10],[-30,-6],[-62,11],[-56,1],[-50,8],[-18,-16],[-280,0]],[[149805,109732],[366,-2],[44,37],[51,3],[38,-6],[33,-25],[43,-7],[20,23],[34,9],[51,-10],[47,-39],[2,52],[19,21],[-14,33],[95,0],[30,-53],[22,28],[65,-83],[11,14],[43,-54],[-21,-53],[-120,-145],[-22,1],[-13,-43],[2,-38],[-14,-26],[5,-73],[-33,20],[-75,17],[-42,32],[-13,-36],[0,-55],[-30,0],[15,-38],[-2,-239],[-5,-24],[-41,30],[0,-67],[-46,1],[-31,-21],[0,-115],[-30,0],[-17,25],[-23,8],[-6,-50],[15,0],[-1,-132],[-30,0],[0,-57],[15,0],[-3,-154],[234,-3],[148,-3],[-5,-583],[-3,-212],[-2,-325],[-158,1],[-141,-3],[-52,41],[-31,-3],[-1,40],[-38,0],[-70,26],[-32,3],[-36,-35],[-20,-58],[-41,-13],[-3,-27],[26,-19],[8,-43],[-27,-25],[-7,-45],[-28,-58],[6,-56],[15,-52],[-7,-27],[37,-4],[-4,-57],[-1,-143],[24,0],[-1,-27],[-23,0],[-1,-175],[23,0],[0,-31],[-24,0],[-2,-257],[-5,-359],[-2,-275],[-178,2],[-4,-219],[17,-75],[49,-83],[2,-66],[-7,-25],[12,-25],[-15,-26],[3,-21],[-5,-391]],[[149869,104705],[-459,33],[-157,7],[-267,21],[-347,22],[-52,92],[-21,0],[-15,34],[4,28],[-14,28],[-2,31],[-14,34],[2,36],[14,29],[-16,29],[-9,68],[-44,91],[-21,18],[5,62],[-37,26],[3,63]],[[149452,112063],[0,-27],[25,-14],[31,2]],[[149508,112024],[12,-52],[-6,-70],[16,-2],[60,-96],[-10,-17],[23,-46],[21,-20],[-16,-31],[0,-36],[-12,-30],[-21,-12],[5,-35]],[[150037,125272],[-29,-453],[-18,-274]],[[149990,124545],[-398,37],[-56,14],[-13,-26],[16,-39],[-10,-32],[-27,-19],[5,-32],[21,-9],[25,10],[12,-22],[-18,-40],[-14,1],[-9,-44],[-24,-6],[-10,-30],[-34,-25],[-33,10],[-14,29],[10,48],[19,2],[6,80],[-27,26],[9,71],[13,11],[-1,38],[-35,6],[-12,-22],[-13,-53],[-30,-12],[-1,-21],[-41,17],[-16,21],[0,31],[-29,3],[-13,21],[-75,1],[-60,10],[-10,-166],[41,5],[15,-17],[64,-6],[60,28],[5,-33],[-12,-67],[-20,-11],[16,-44],[-41,-55],[-18,-5],[6,-39]],[[149593,112823],[0,-177],[48,-29],[23,5],[35,-29],[23,-39],[53,-33],[14,4],[52,-23],[-35,-32],[-30,-8],[-23,6],[-28,-28],[-11,-53],[-70,15],[-33,-12],[-23,-26],[3,-46],[-20,-20],[1,-33],[19,-60],[36,-33]],[[149627,112172],[53,-73],[38,-20],[1,-23],[-35,3],[-65,-33],[-19,11],[-28,-28],[-22,-1],[-5,33],[-22,3],[-15,-20]],[[150862,122526],[-19,-24],[-8,-38],[-46,-14],[18,-57],[-21,-20],[-6,-50],[-14,-5],[10,-43],[-43,-45],[-7,-21],[-27,-18],[-6,-37],[-33,-6],[-53,-58],[-32,-13],[24,-28],[23,27],[19,-34],[-37,-33],[-3,-28],[24,-41],[29,39],[27,2],[30,-33],[-16,-37],[39,9],[23,-9],[-6,-35],[26,-31],[66,-9],[3,-33],[-27,0],[-29,-35],[52,-28],[-20,-22],[24,-36],[19,27],[27,13],[-16,-212],[-82,-120],[-4,-37],[23,-71],[46,-3],[35,-54],[73,-13],[2,-27],[33,-6],[42,-44],[16,-2],[-10,-48],[64,-34],[17,-17],[2,-41],[25,-9],[34,-37],[-13,-23],[-44,-34],[-60,20],[-20,-19],[-79,39],[-10,18],[-49,-20],[-21,-40],[-3,-38],[-27,-46],[-69,-42],[-5,63],[-39,-18],[-149,66],[-18,27],[-132,96],[-58,-12],[-50,-63],[-34,-23],[-33,-42],[24,-55],[-38,1],[-53,-47],[12,-16],[-75,-153],[-54,70],[-40,19],[-44,-18],[-81,-23],[-72,6],[-81,-3],[-47,-17],[-44,-80],[-39,10],[-15,-17],[-22,11],[-32,-22],[-13,19],[-40,0],[-27,34],[-45,2]],[[149593,112941],[70,4],[9,-7],[60,23],[65,31],[27,-22],[59,20],[21,-19],[-18,-42],[24,-62],[0,-50],[-8,-36],[272,-143]],[[150174,112638],[-14,-43],[-30,-21],[-14,-37],[0,-28],[16,-39],[-34,-33],[-6,-30],[33,-36],[-17,-31],[16,-23],[12,-75],[-7,-40],[-23,-12],[63,-53],[60,-9],[-84,-99]],[[150145,112029],[-13,15],[-74,33],[-19,-7],[-14,36],[-23,-19],[9,-27],[-75,7],[11,25],[-72,13],[-22,-17],[-17,37],[-35,-21],[-11,23],[-30,-18],[-16,43],[-1,41],[-45,-13],[-28,7],[-43,-15]],[[150145,112029],[-116,-131],[301,-276],[1,-45],[-30,-28],[-24,-7],[-7,-60],[20,-10],[13,-26],[-23,-45],[-1,-33],[-38,-11],[-7,-56],[-32,25],[-55,-93],[-17,-3],[4,-36],[-36,-6],[-17,15],[-51,3],[-25,17],[-52,16],[-33,81],[-22,30],[-51,25]],[[150653,130267],[1,-60],[-23,-46],[-37,8],[2,-69],[-51,16],[-12,12],[-49,-2],[0,-85],[57,-60],[24,14],[33,-35],[46,21],[34,27],[243,4],[290,10],[78,0],[-2,-215],[182,0],[1,-169]],[[151470,129638],[-182,3],[-245,-2],[-1,101],[-119,-3],[-4,-358],[-5,-244],[-2,-222],[2,-351],[484,3],[2,-671],[-304,-2],[0,-35],[-182,0],[0,-194],[8,-203],[-5,-24],[-162,-2],[2,12],[-180,18],[-387,34],[-1,161],[1,295],[-1,443],[-181,-2],[0,-34],[-180,-1],[0,-101],[-182,-4],[-182,0],[1,-100],[-90,0],[1,-303],[-94,0],[1,-271],[-111,0],[-9,-51],[-33,4],[-34,-28],[-4,-44]],[[150123,132699],[184,1],[187,5],[-4,203],[188,5],[184,6],[0,10]],[[150862,132929],[233,7],[319,12],[18,-611]],[[151432,132337],[-109,-5],[-16,52],[-63,-1],[-5,151],[-366,-18],[-373,-14],[9,-207],[20,-405]],[[149589,118386],[251,-1],[161,-3],[198,-9],[289,-8],[24,42]],[[150512,118407],[84,-6],[236,-2]],[[150832,118399],[62,-56],[54,-88],[20,-61],[26,-114],[-4,-59],[-28,-59],[59,27],[18,-27],[25,-1],[32,-45],[38,15],[25,-115],[-1,-40],[-13,-20],[29,-70],[-16,-28],[-63,-20],[-23,36],[-33,-10],[-23,7],[-16,-38],[-35,-3],[-34,-37],[-19,-39],[8,-29],[-16,-18],[-36,15],[0,-64],[-30,-11],[15,-70],[52,-2],[-13,-21],[-49,-42],[55,-29],[30,-6],[29,10],[57,-63],[-40,-39],[13,-66],[64,2],[49,-8],[26,-24],[15,-50],[-28,-228],[-27,-34],[-19,27],[-48,28],[-54,-14],[-2,33],[-42,13],[-22,-19],[-15,9],[-56,-14],[-25,30],[-28,8],[-27,58],[-129,118],[-18,9],[-58,54],[-28,-10],[-2,-21],[32,-133],[-37,-44],[-8,-30],[-23,0],[-64,-53],[-23,3],[-23,-16],[-18,-34],[-24,-22],[103,-288],[15,-34],[4,-44],[18,-40],[28,-4],[13,-51],[26,6],[0,-280]],[[150532,116022],[-70,-2],[-26,-15],[-76,0],[-13,-27],[-35,-20],[-37,-41],[-36,-11],[-38,5],[-15,-10],[-30,-47],[-16,-48],[-40,-10],[-25,-25],[-13,7]],[[149494,114679],[445,-4],[456,2],[204,-3],[0,13],[187,2],[329,8],[290,10]],[[151405,114707],[15,-20],[-34,-53],[-11,-44],[25,-35],[-29,-6],[-18,-18],[-28,11],[-47,-74],[-25,-17],[-7,-23],[-53,-7],[-5,-47],[-41,-49],[6,-34],[-34,-5],[-20,-38],[-34,-34],[8,-38],[-11,-47],[-36,-33],[-6,-45],[20,-59],[2,-27],[54,-24],[18,-35],[33,-29],[27,-9],[35,-61],[38,-2],[18,-17],[39,10],[7,-38],[39,-41],[4,-24],[28,-7],[31,-50],[30,-18],[-3,-29],[15,-24],[37,-24],[29,-32],[56,-26],[13,18],[51,-1],[23,14],[28,-10],[39,12],[22,-13],[10,-26],[26,-23],[36,-140],[13,-81],[55,-52],[26,-100],[17,-29],[27,-23],[17,-56],[4,-103],[14,-32],[0,-32],[23,-67],[21,-22],[45,-26],[26,-60],[30,-38],[-9,-26],[28,-28],[32,-60],[21,-23],[-2,-30],[25,-82],[24,-56]],[[152262,112290],[-61,56],[-35,6],[-13,-18],[-32,37],[-23,-12],[-52,-9],[-27,8],[-38,-12],[-17,-17],[-37,-3],[-75,31],[-63,-2],[-26,38],[-72,17],[-25,21],[-13,47],[-54,12],[-26,-26],[-44,-1],[-31,-33],[-62,35],[-25,-11],[-34,46],[-60,-27],[-45,-56],[-44,-23],[-26,30],[-32,-33],[-18,3],[4,-70],[-5,-28],[-26,-12],[-17,46],[-41,-40],[-25,5],[-26,39],[-32,8],[-45,-17],[-27,39],[-51,40],[-70,-40],[-62,-50],[-40,152],[-20,19],[-39,-10],[-22,26],[-34,-2],[-35,17],[-45,-11],[-54,16],[-31,33],[-17,-13],[-63,54],[-1,30],[-31,29],[-9,34],[-79,-68],[-35,18]],[[149990,124545],[271,-21],[-2,-52],[44,3],[37,89],[161,143],[144,124],[339,-2],[-16,-134],[135,-11],[8,-32],[33,-10],[56,-3],[8,80],[29,-22],[19,39],[63,-27],[3,-25],[22,-18],[35,6],[32,21],[12,30],[64,43],[118,64],[19,-57],[40,-31],[2,-28],[23,-1],[1,-31],[22,-7],[-31,-35],[-4,-30],[61,-91],[216,-14],[-5,-69]],[[151949,124436],[-6,-92],[-30,2],[-17,-239],[-2,-69],[-14,-203],[-304,20],[-69,1],[11,-42],[21,-18],[-26,-20],[38,-57],[0,-46],[-88,17],[21,-56],[-9,-35],[-24,-4],[28,-123],[13,-8],[69,11],[13,17],[-5,29],[-22,51],[174,-6],[-1,-35],[-29,3],[0,-101],[85,-3],[-2,-63]],[[153201,120575],[-131,-134],[-144,-151],[-109,-110],[-164,-168],[-13,-27],[-49,-41],[-133,-42],[-108,-57],[-39,-37],[-27,-5],[-74,-63],[-41,-29],[-17,-24],[-77,-40],[-51,-35],[-11,-39],[-6,-73],[6,-66],[-32,-5],[-8,-42],[-18,7],[-37,-45],[-72,-5],[-4,-28],[-36,-20],[-25,-27],[19,-103],[-31,-47],[15,-20],[-18,-25],[-92,-50],[-50,-22],[-46,-3],[-13,-21],[-31,18],[-34,-9],[-39,7],[-8,-32],[-35,-22],[3,-41],[-48,-87],[0,-53],[-10,-24],[-44,-7],[-49,0],[-47,-21],[-101,-39],[-34,-7],[-60,-24],[-17,-15],[-45,-16],[-13,-22],[-37,-20],[-55,-9],[-61,13],[-63,-13],[-18,-21],[-38,-22],[-72,-26],[-7,-14],[-49,-28],[-41,-37]],[[151470,129638],[181,2],[-1,-65],[166,1],[5,-157],[450,-11],[64,0],[-1,17],[80,-1],[0,-17],[193,0],[21,-9],[103,-1],[4,151],[40,-11],[16,12],[76,-1],[22,-16],[4,53],[23,7],[19,-31],[50,2],[5,17],[-18,60],[-20,7],[-6,41],[41,0],[59,24],[-1,-24]],[[153045,129688],[-5,-422],[18,-28],[28,0],[56,40],[5,-43],[-30,-19],[-1,-33],[-43,11],[-18,-5],[-16,27],[-151,0],[-3,-173],[-276,5],[0,21],[-75,4],[-234,-2],[-211,3],[-259,8],[14,-509],[165,-2],[1,-151],[-4,-507]],[[152006,127913],[-207,3],[-2,-153],[-155,-3],[0,-22],[-43,-11],[7,-33],[-76,-2],[-70,-36],[-2,-185],[-206,1],[9,-35],[-76,-10],[-2,-228],[1,-366],[120,0],[4,-214],[0,-104],[-57,2]],[[151251,126517],[-114,4],[-355,5],[-19,-234]],[[152632,136704],[49,-318],[76,-486],[0,-15]],[[152757,135885],[-823,20],[-358,9],[-292,-6],[-299,-280],[-117,-110],[-121,-119],[-287,-265],[0,-12]],[[150473,134621],[1,-107],[183,0],[5,-398],[60,1],[-46,-73],[22,-59],[56,1],[2,-68],[93,1],[4,-498],[0,-102],[4,-215],[5,-175]],[[151432,132337],[2,-72]],[[151184,132327],[-5,152],[-120,-5],[4,-125],[-57,-74],[-34,8],[-29,-51],[-59,-43],[9,-281],[91,4],[0,34],[-16,16],[-39,-2],[-8,17],[92,3],[3,-33],[-27,-1],[7,-33],[81,2]],[[151077,131915],[6,-200],[-185,-7],[6,-201]],[[150904,131507],[-185,-7],[-6,201]],[[149935,110549],[215,-2],[44,1],[54,-12],[29,-50],[3,-41],[14,-21],[-4,-39],[302,68],[292,57],[16,-1],[18,-139],[31,-164],[63,-297],[111,60],[18,-23],[12,39],[98,57],[26,-18],[43,-14],[-27,41],[51,49],[21,-3],[27,-60],[34,-50],[44,-46],[11,-45],[19,-24],[2,-58],[15,-12],[16,-54],[44,-1],[32,-27],[39,-98],[-10,-63],[2,-26],[19,-9],[1,-42],[-17,-76]],[[151643,109406],[-131,-81],[-71,-48],[-222,-158],[181,-491],[190,-520],[164,118],[24,-36],[-108,-133],[35,-2],[25,-32],[1,-30],[22,-41],[28,-12],[27,-32],[24,0],[57,-38],[22,-50],[32,-25],[60,-12],[29,-71],[13,-8],[11,-36],[40,-52],[27,-13],[-65,-70],[-75,-50],[-25,-46],[-51,-8],[-10,-43],[-18,-26],[-49,-36],[-30,-41],[-25,-20],[-112,13],[-19,-10],[-34,24],[-27,-30],[-5,-277],[-23,0],[-2,-58],[-23,1],[-2,-29],[-22,2],[-1,-31],[-22,1],[-2,-106],[-40,-120],[-18,-17],[-23,-65],[-44,-14],[-18,-23],[19,-48],[-3,-49],[129,-4],[158,-3],[1,-33],[179,1],[23,-60],[19,-30],[297,-1]],[[152160,106297],[-1,-206],[-53,30],[-56,-23],[-3,-127],[16,1],[30,-92],[-108,-2],[-205,4],[-159,-1],[2,-201],[-2,-527],[-56,-23],[-7,-28],[-21,10],[6,115],[-25,34],[-10,72],[-215,7],[-1,128],[-13,6],[-51,-39],[3,-42],[-40,2],[2,-92],[42,-59],[32,26],[45,6],[-31,-36],[43,-51],[8,-36],[-1,-68],[11,-23],[71,-1],[-2,-60],[-32,0],[-10,-21],[-8,-57],[6,-26],[-5,-85],[1,-61],[-2,-165]],[[151361,104586],[-400,35],[-92,7]],[[150869,104628],[-277,22],[-355,28],[-44,4],[-324,23]],[[150904,131507],[5,-199],[185,4],[-5,201],[67,3],[-29,28],[-3,105],[64,1],[48,21],[31,0],[-1,34],[77,2],[-15,-35],[26,-60],[1,-27],[-47,-22],[-23,12],[-25,-45],[51,-27],[16,-30],[4,-38],[44,1]],[[151375,131436],[-11,-139],[14,-86],[10,-28],[-48,-197],[9,-28]],[[151077,131915],[178,7],[5,-6],[3,-111],[92,3],[-1,50],[81,2],[55,-89],[22,12],[-3,29],[64,10],[28,18],[35,-57],[-104,-60],[-32,-63],[-86,-1],[-30,-63],[14,-29],[20,-11]],[[151418,131556],[-43,-120]],[[151970,131936],[-127,-179],[-181,-60],[-69,-35],[-59,-8],[-58,-28],[-26,-22],[-32,-48]],[[152262,112290],[12,-24],[21,-10],[30,6],[18,-15],[28,-58],[63,-70],[51,-41],[23,6],[61,-56],[35,-18],[74,-78],[1,-36],[82,-75],[11,-41],[10,-81],[26,-33],[28,-55],[5,-72],[35,-41],[25,-8],[21,-32]],[[152922,111458],[-10,-40],[-20,-10],[-5,-30],[-55,33],[-19,20],[-23,-15],[-24,41],[-33,-18],[-18,-24],[-24,0],[-33,-42],[-4,-144],[63,-11],[20,-41],[-26,-56],[-15,-12],[-24,15],[-14,-16],[4,-54],[-6,-61],[28,-32],[21,-42],[-106,-111],[30,-15],[43,-40],[12,-33],[54,-25],[21,-31],[25,-57],[-18,-51],[-35,-121],[-23,-100],[-16,-109],[15,-127],[15,-163],[-30,-114],[-34,-107],[-57,-35],[-20,-23],[-74,-4],[-16,-31],[32,-56],[-56,-36],[-29,-77],[0,-22],[-29,-20],[-45,-56],[15,-56],[32,-26],[-4,-17],[-33,-22],[-9,20],[-30,-21],[9,-20],[-129,-106],[7,-53],[40,-55],[-61,-25],[-54,-8],[-16,-13],[-42,26],[9,204],[-199,112],[14,61],[-121,67],[-149,-17]],[[151518,126324],[13,17],[23,-19],[9,-57],[20,11],[-15,307],[53,-3],[-10,-57],[25,-6],[49,5],[34,-15],[8,-26],[91,-12],[48,-84],[-1,-15],[-58,-14],[-55,15],[-3,-38],[-18,-11],[29,-35],[24,-8],[2,31],[66,-4],[55,7],[3,54],[32,19],[-10,-173],[-9,0],[-5,-84]],[[151918,126129],[-44,3],[-4,-68],[30,-2],[-8,-118],[-58,5],[-4,-26],[-75,15],[-10,-10],[-35,20],[-30,-41],[-4,-49],[-36,1],[-9,-28],[-32,8],[-68,-13],[-7,31],[50,5],[-29,63],[-8,50],[11,31],[26,16],[41,-13],[-21,-34],[12,-40],[-5,-80],[19,13],[5,28],[23,-3],[4,47],[19,27],[-24,50],[-64,69],[19,35],[2,42],[-43,-4],[-7,-79],[12,-40],[-48,0],[-43,47],[-26,-71],[-42,4],[22,33],[-16,19],[-25,-22],[-1,-36],[-53,3],[15,46],[-30,7],[6,40],[-22,30],[3,56],[16,19],[-14,28],[5,35],[89,-5],[-1,24],[23,13],[27,-48],[43,-35],[8,-42],[38,-5],[33,16],[-5,38],[-69,15],[1,33],[26,1],[-8,41]],[[152757,135885],[48,-301],[97,-644],[55,-368],[-200,-582],[-71,-206],[-96,-289],[-53,-145],[-33,-118],[-22,-42],[18,-38],[-24,-57],[-44,-62],[-21,-90],[3,-62],[-23,-118],[19,-57],[4,-51],[-25,-66],[0,-36],[-43,-122],[2,-65],[-24,-71],[-38,-36],[-48,-59],[-7,-26],[-36,-13],[-28,21],[-29,-7],[-39,-49],[-87,-128]],[[150832,118399],[309,2],[24,-10],[214,1],[373,-2],[418,1],[213,5],[33,-3],[397,3],[64,-3],[378,-1],[18,51],[292,-9],[142,-1],[-48,-55]],[[153659,118378],[-3,-44],[-20,-6],[3,-34],[-28,-37],[17,-69],[-5,-18],[8,-71],[-31,-29],[0,-41],[-9,-34],[-33,-23],[11,-77],[27,-73],[-43,-23],[-32,2],[-51,46],[-56,-26],[-35,-23],[-39,-55],[-44,-27],[-16,-34]],[[153280,117682],[-66,-137],[-115,-249],[-33,15],[-12,-32],[-29,-15],[-79,-4],[-10,56],[-19,48],[-45,-17],[-58,39],[-49,-65],[-30,-9],[-39,20],[-74,-48],[-31,1],[-32,-24],[-54,-52],[-80,-173],[-70,-70],[-40,-12],[-30,-19],[-13,-24],[-31,24],[-52,8],[10,46],[-13,14],[14,67],[21,22],[-44,36],[-3,22],[-25,20],[-77,-48],[-6,-15],[-42,-34],[-95,-53],[-16,-28],[4,-55],[-6,-30],[-52,-69],[-14,25],[-35,38],[-36,8],[-38,-18],[-1,-34],[-24,-2],[18,-95],[10,-23],[-38,-23],[7,-62],[-44,-37],[-48,-90],[-34,-32],[-63,33],[-67,5],[-28,-29],[-38,-25],[-61,-3],[-17,-43],[-25,-38],[-22,-10],[-64,3],[-23,-24],[1,-48],[-27,-33],[-28,-16],[-12,-39],[-21,-7],[-39,25],[-26,-13],[-24,-49],[-35,-11],[-6,-20],[-45,-32],[-38,1],[-18,-34],[-23,-16],[-22,-51],[-20,-12],[-35,6],[-72,1],[-25,-7],[-31,36],[-62,-29],[-34,8]],[[151739,98706],[73,-1],[3,30],[65,1],[17,-88],[29,-1],[21,16],[7,-33],[84,0],[46,-73],[8,3],[17,-91],[20,1]],[[152129,98470],[1,-74],[55,-15],[25,-13],[31,-45],[15,-74],[4,-153],[9,-43],[28,-26],[-122,0],[-13,-15],[-49,8],[-43,-1],[-41,-17],[0,-29],[20,-4],[0,-42],[32,-42],[4,-166],[6,-23],[-37,0],[-9,-40],[-48,-34],[-23,58],[1,18],[-105,0]],[[151870,97698],[1,69],[13,42],[-2,36],[-109,197],[-42,103],[-10,65],[-2,53],[18,126],[15,45],[6,84],[-4,31],[14,68],[-19,25],[-10,64]],[[151251,126517],[-7,-98],[32,-27],[63,9],[29,14],[-6,28],[40,19],[4,24],[25,-1],[1,35],[22,2],[-10,-60],[31,-18],[21,15],[22,-135]],[[151918,126129],[240,-18],[247,-16],[17,12],[70,-6],[-1,-12],[404,-30],[-12,-205],[153,-11],[-6,-105],[89,-6],[146,-7],[362,-22]],[[153627,125703],[91,-5],[-5,-203],[90,-4],[-3,-178],[-159,8],[-40,-14],[-15,-85],[2,-37],[27,-2],[-5,-116],[-83,5],[-35,23],[-63,3],[-4,-104],[-30,3],[-14,-306],[30,-1],[-1,-34],[30,-2],[-3,-68],[-213,12],[-11,-206],[-186,12],[-359,27],[-26,-411],[-177,17],[17,238],[-118,7],[-64,8],[6,84],[-60,10],[-57,1],[-64,9],[2,29],[-178,13]],[[152006,127913],[59,-1],[0,35],[185,-3],[2,152],[14,-16],[30,18],[6,70],[-2,50],[38,0],[8,-22],[24,-4],[9,-58],[-16,-27],[10,-38],[46,-1],[-1,-31],[-30,-15],[0,-41],[-15,-34],[60,2],[4,-205],[181,1],[2,-193],[-60,-10],[-422,-2],[0,-64],[16,2],[-21,-412],[-155,11],[-10,-168],[433,-29],[-2,-43],[206,-13],[148,-1],[110,-3],[-7,-166]],[[152856,126654],[-12,-338],[345,-15],[-2,-55],[-10,-22],[-4,-52],[5,-40],[170,-10],[289,-14],[-10,-405]],[[151399,130799],[68,-220],[481,-340],[130,-94],[445,0],[248,170],[380,263],[333,230]],[[153484,130808],[5,-1071],[26,-6],[0,-63],[65,-1],[7,-23],[45,3],[20,-73],[-6,-23],[1,-71]],[[153647,129480],[-61,-10],[-32,16],[-2,31],[-37,0],[0,31],[-23,0],[-2,-71],[-91,4],[6,-66],[-28,-16],[-33,11],[1,71],[-12,28],[16,39],[28,2],[5,26],[31,22],[23,39],[-30,55],[-37,-9],[-170,3]],[[153199,129686],[-154,2]],[[151405,114707],[141,56],[227,85],[142,56],[13,-12],[-9,-36],[28,7]],[[151947,114863],[24,-47],[52,16],[3,12],[59,11],[80,0],[59,21],[-14,-44],[18,-49],[-13,-40],[29,-9],[60,8],[-9,-26],[15,-41],[-14,-23],[31,-60],[-4,-26],[50,-101],[10,-49],[-3,-78],[5,-48],[29,-54],[25,-30],[29,17],[26,0],[47,-49],[-9,-47],[-45,-23],[3,-21],[39,-17],[56,-12],[49,21],[12,14],[46,-19],[-18,-17],[3,-34],[20,-8],[55,12],[22,26],[27,-4],[1,46],[-16,17],[39,61],[-12,31],[31,25],[23,-4],[24,14],[47,-42],[30,-67],[23,-12],[25,4],[30,-71],[-7,-27],[36,-25],[11,-20],[63,-52],[9,4],[39,-30],[30,-2],[64,-107],[38,-22],[42,-7],[10,9]],[[153381,113768],[56,-15],[28,-31],[64,-20],[16,5],[53,-39],[21,17],[21,-13],[47,-11],[22,-49],[-30,-51],[-59,-114],[-32,-14],[-23,-45],[29,-17],[25,-29],[27,-59],[39,-56],[81,-69],[-15,-54],[-21,16],[-48,-54],[37,-58],[30,-14],[48,8],[44,-62],[-47,-45],[11,-61],[77,-24],[9,-67],[-19,-53],[-40,-58],[31,-22],[14,-28],[40,1],[19,-19],[31,18],[16,-12]],[[153983,112570],[-14,-47],[-76,-210],[-60,-175],[-7,-29],[-228,-261],[-281,-322],[-72,-87],[-114,-128]],[[153131,111311],[-11,7],[-42,66],[-42,32],[-30,10],[-22,32],[-43,-12],[-19,12]],[[153131,111311],[18,-28],[24,-78],[82,-42],[12,-12],[21,-57],[-29,-23],[8,-39],[-14,-33],[6,-35],[-21,-42],[34,-45],[8,-27],[54,-35],[57,-24],[-25,-40],[27,-13],[17,-31],[-20,-16],[-7,-36],[39,-46],[29,-15],[7,-25],[25,-7],[33,19],[18,-43],[-17,-31],[-1,-38],[38,-62],[62,-57],[40,-11],[53,-41],[50,3]],[[153759,110301],[36,-53],[19,-15],[21,-42],[40,-17],[47,-34],[29,-44],[-12,-99],[-18,9],[13,-68],[31,-39],[28,-94],[22,-29],[-9,-42],[26,-21],[22,-1],[13,-58],[-13,-13],[5,-73],[18,-38],[-12,-28],[21,-19],[-16,-30],[-17,-61],[34,-32],[2,-48],[18,-38],[-40,-51],[46,-78],[54,-35],[-2,-20],[58,-28],[31,8],[39,-42],[-7,-20],[45,-43],[18,-3],[10,-42],[51,-69],[-12,-75],[4,-28],[43,-71],[-4,-33]],[[154441,108644],[-2,-13],[-57,-49],[-62,-38],[-27,-9],[-4,-31],[-17,-40],[9,-12],[-60,-68],[-34,-52],[-45,-9],[-32,57],[-4,67],[-19,3],[-33,-23],[-18,-30],[4,-71],[-298,-120],[-246,-85],[8,-47],[13,-11],[17,-52],[25,-2],[35,-35],[-68,-95],[-76,-66],[-23,-11],[-47,-61],[-14,-36],[-16,-6],[-25,-54],[10,-14],[2,-52],[-21,-36],[4,-17],[-31,-20],[-11,-31],[-6,-53],[-27,-25],[-17,-33],[-8,-39],[-37,-9],[-2,-31],[-25,4],[-16,18],[-12,49],[-22,-15],[-32,26],[-61,-13],[0,-50],[-30,1],[-1,-32],[28,0],[0,-30],[-69,1],[0,-401],[0,-71],[-23,-1],[0,-27],[24,0],[0,-199],[-35,0],[-101,110],[-34,85],[-35,18],[-11,20],[-76,52],[-48,60],[-64,40],[-29,3],[-48,52],[-55,43],[-36,70],[-40,1],[0,-89],[-167,1],[-2,-265],[51,-1],[-2,-205],[-49,1],[-1,-244]],[[152594,115147],[14,5],[34,-19],[11,13],[65,22],[148,-14],[209,-10]],[[153075,115144],[32,-54],[-14,-40],[73,-59],[17,-91],[44,-30],[22,-34],[-12,-41],[65,-8],[30,-26],[55,20],[14,58],[24,-17],[22,1],[8,-35],[20,0],[39,-136],[23,-102],[32,0],[26,-47],[-39,-70],[-64,-104],[-64,-364],[-24,-77],[-23,-120]],[[151947,114863],[21,31],[19,-8],[19,37],[46,3],[39,51],[26,3],[23,30],[20,-14],[25,32],[23,-4],[64,30],[19,30],[32,-17],[15,16],[27,-1],[19,27],[51,7],[22,-28],[14,18],[19,59],[31,15],[15,24],[31,-82],[27,25]],[[153199,129686],[-3,-293],[149,-1],[-2,-175],[61,1],[-3,-86],[21,-51],[36,1],[32,23],[0,-58],[-147,-3],[0,-102],[-49,-3],[6,-103],[65,1],[0,17],[57,3],[-14,39],[81,0],[0,-171],[-300,1],[-2,-169],[-240,5],[2,-211],[5,-33],[-4,-190],[2,-315],[392,-2],[358,2],[3,365],[285,-14],[34,-53],[-6,-95],[33,-9],[10,263],[21,-27],[54,-2],[-14,34],[31,11],[1,22],[-32,1],[4,53],[29,-1],[5,124],[8,27],[-5,43],[255,-2]],[[154418,128553],[19,0],[-8,-199],[93,-9],[3,-23],[35,-4],[29,29]],[[154589,128347],[0,-396],[-176,3],[-1,-16],[-60,3],[-6,-169],[-120,3],[-7,-196],[90,-4],[-6,-204],[-88,3],[-31,15],[-4,-118],[-42,16],[-9,-13],[-127,8],[-3,-52],[-30,-32],[-43,2],[-1,-85],[-169,4],[-11,-339],[-71,3],[-5,-166],[-317,14],[-348,13],[-148,10]],[[154441,108644],[19,-21],[22,-59],[21,13],[21,-27],[-15,-23],[24,-49],[-1,-70],[-29,-11],[-9,-52],[-13,-9],[19,-55],[32,-48],[5,-55],[-13,-19],[17,-53],[0,-66],[42,-26],[38,-37],[54,-12],[32,34],[28,-12],[24,-40],[39,-21],[43,-62],[54,-15],[99,-4],[124,0]],[[155118,107845],[-47,-51],[-14,-109],[-10,-25],[-36,-45],[-57,-54],[-31,-69],[-35,-65],[-31,-33],[-8,-30],[-26,-38],[-51,-25],[-19,-59],[-21,-24],[-2,-32],[-26,-46],[-19,-19],[-48,-13],[11,-60],[-32,-107],[6,-40],[-17,-63],[-10,-76],[-6,-83],[-20,-25],[-12,-50],[-29,-44],[-29,-14],[-31,-69],[-5,-43],[-37,-54],[28,-53],[1,-50],[-18,-61],[1,-146],[-8,-45],[-23,-43],[-31,-92],[-19,-41],[-36,-27],[-55,-7],[-1,-30],[11,-77],[-19,-66],[-39,-39],[-36,-11],[-13,-51],[14,-44],[50,-41],[13,-34],[-4,-54],[-16,-32],[-44,-39],[-8,-98],[-38,-166],[-19,-39],[-22,-79],[52,-32],[20,-33],[12,-60]],[[154179,104790],[-90,0],[-40,-8],[-54,5],[-41,35],[-69,-7],[-7,-33],[-20,21],[-14,-15],[-20,24],[-53,11],[-26,-8],[-2,30],[-37,-20],[-19,55],[-92,-15],[-23,12],[-13,35],[-46,28],[-22,-8],[-16,31],[-56,5],[-36,13],[-25,-5],[-21,17],[-15,51],[-15,18],[-15,-33],[-28,4],[-34,24],[-22,-22],[2,-50],[-16,-39],[-25,1],[-22,22],[-22,4],[-11,-19],[19,-49],[-9,-16],[-36,-18],[0,-53],[6,-42],[-22,-73],[8,-50],[29,-91],[16,-26],[15,-54],[2,-32],[-20,-84],[6,-41],[-4,-84],[-32,-92],[5,-36],[-15,-11],[10,-99],[-44,-32],[-46,6],[-17,19],[-20,-10],[-35,1],[-47,-14],[-35,46],[-17,46],[-12,62],[10,40],[-5,33],[10,64],[-18,36],[-20,17],[-9,44],[-15,25],[10,46],[31,25],[-386,37]],[[152427,104494],[-457,39],[-216,19],[-393,34]],[[152623,95715],[111,3],[67,-17],[37,-26],[421,-2],[39,-101],[10,-49],[1,-63],[28,-48],[44,43],[21,31],[65,17],[1,-29],[77,-20],[28,-1],[1,-37],[21,-23],[5,-74],[72,1],[35,-5],[19,-26],[30,6],[36,-15],[44,1]],[[153836,95281],[5,-411],[-154,-4],[3,-239],[-139,-2],[5,-27],[1,-93],[9,-48],[-25,-1],[3,-277],[8,-34],[92,1],[-1,-65],[-18,-41],[164,-157],[-52,-28],[-29,-102],[13,-70],[-3,-79],[24,0],[0,-237]],[[153742,93367],[-33,-8],[-66,4],[-21,12],[-27,39],[-15,51],[-15,29],[-8,37],[-27,52],[-25,34],[-15,76],[-19,26],[-15,66],[8,47],[-13,40],[-35,75],[-29,91],[-14,105],[-14,245],[-11,35],[-15,110],[-34,126],[-20,47],[-37,54],[-57,57],[-47,-10],[-70,-46],[-26,-10],[-68,15],[-51,52],[-24,38],[-21,49],[-68,43],[-32,48],[-15,54],[-18,105],[-29,68],[-9,81],[-37,68],[-26,58],[-6,30],[12,131],[-7,81],[-20,43]],[[153647,129480],[1,-88],[-33,0],[0,-170],[32,0],[-3,-327],[78,0],[5,-20],[-16,-40],[51,8],[37,-42],[-1,-124]],[[153798,128677],[-32,-37],[-25,1],[-22,-23],[2,-36],[29,-1],[30,-27],[170,0],[30,18],[-8,53],[82,26],[53,-12],[0,36],[-38,12],[1,29],[37,18],[1,79],[31,-1],[40,17],[7,65],[385,-4],[0,-165],[-151,2],[-2,-174]],[[153484,130808],[125,85],[36,0],[97,69],[204,154]],[[153946,131116],[2,-223],[6,-578],[4,-420],[-1,-71],[-30,1],[-9,-85],[117,-1],[1,-95],[-35,-9],[-1,-58],[-44,-15],[0,-105],[18,-23],[32,0],[11,-46],[-106,2],[-30,80],[-16,7],[-32,-21],[-28,14],[-52,50],[-11,20],[-44,10],[-17,-29],[4,-128],[31,0],[-1,-87],[-45,1],[0,-85],[126,1]],[[153796,129223],[0,-174],[6,0],[-1,-123],[-45,-18],[63,-21],[27,8],[16,-30],[-43,-13],[-10,27],[-23,-14],[41,-29],[6,-42],[53,0],[3,22],[40,-20],[35,5],[23,-24],[3,-28],[-75,11],[-2,-32],[44,9],[29,-56],[10,-38],[-18,-5],[-49,10],[2,47],[-41,-4],[-17,33],[-39,-4],[-15,-51],[-21,8]],[[154589,128347],[1,206],[133,-1],[-1,172],[117,-2],[65,3],[277,-3],[0,-169],[303,-2]],[[155484,128551],[-1,-196]],[[155483,128355],[1,-610]],[[155484,127745],[-103,-53],[-29,22],[-38,-12],[-58,-68],[-1,-48],[18,-17],[40,-62],[15,-78],[29,-45],[7,-26],[-28,-97],[1,-61],[-32,-22],[39,-55],[-8,-51],[20,-69],[-23,-60],[-12,-70],[-35,-24],[-27,-49],[-10,-70],[-29,-42],[-30,-63],[-8,-67],[2,-55],[-35,-35],[-12,-27],[13,-70],[-18,-82],[3,-88],[-24,-22],[-14,-35],[13,-76],[-23,-7],[-39,21],[-22,-32],[26,-57],[0,-40],[-37,-25],[-16,-26],[7,-69],[-6,-31],[-54,-50],[-15,-31],[7,-24],[27,-29],[29,-61],[-6,-25],[-33,-14],[-18,-25],[-1,-78],[-22,-74],[-18,-9],[-40,4],[-25,-9],[-58,-57],[-37,-43],[-48,-44],[-108,-130],[-34,-69],[-32,-49],[-57,-14],[-23,-18],[-40,-64],[-1,-25],[-26,-14],[-22,8],[-42,-9],[-42,-26],[-78,-65],[-63,-8],[-18,28],[-17,75],[-34,40],[-43,9],[-27,-21],[-41,-56],[-68,-53],[-24,-33],[-12,-104],[0,-41],[-14,-21],[-54,21],[-58,3],[-51,-7],[-30,-42],[8,-65],[-15,-17],[-39,-11],[-23,-60],[-25,-30],[16,-63],[6,-89],[-8,-37]],[[153549,124176],[-37,-36],[-57,10],[-11,-10],[2,-43],[15,-31],[47,-49],[14,-26],[-14,-48],[-13,-69],[4,-20],[36,-52],[-6,-18],[-40,1],[-46,46],[-27,-6],[-20,-34],[-7,-63],[-16,-26],[-50,-38],[-28,10]],[[153983,112570],[6,22],[37,-19],[31,12],[16,-21],[32,-6],[9,20],[-69,95],[-6,20],[51,111],[46,3],[35,41],[56,99],[32,-5],[29,-18],[42,-62],[39,6],[76,-72],[-2,28],[18,26],[-20,52],[134,-15],[42,43],[39,10],[8,-9],[122,45],[214,38],[-68,-200],[28,-19],[208,-243],[25,28],[17,1]],[[155210,112581],[-18,-43],[0,-121],[-4,-5],[-101,-8],[-151,-30],[-116,-37],[-26,-49],[-42,23],[-8,54],[-38,-7],[-9,26],[26,16],[-3,40],[16,51],[18,23],[40,29],[17,-29],[54,36],[-17,28],[7,36],[-22,1],[1,31],[26,26],[-35,46],[14,59],[-64,32],[-7,-35],[-49,-5],[3,-42],[-29,9],[-71,-10],[-33,-26],[-40,-1],[-21,-25],[32,-71],[-54,-52],[38,-57],[33,-65],[43,-15],[30,-41],[4,-34],[45,-106],[-8,-50],[3,-59],[-28,-30],[0,-57],[-15,-130],[-19,-47],[2,-52],[35,-4],[5,43],[30,40],[74,-9],[8,4],[45,-33],[11,-21],[-30,-15],[-16,-26],[-36,-17],[-21,3],[-80,-57],[92,-145],[3,-39],[-12,-29],[-46,-49],[24,-27],[-7,-23],[-60,18],[-19,-29],[2,-42],[-28,-26],[1,-34],[67,-8],[53,7],[47,-20],[13,-28],[-24,-55],[41,0],[41,-57],[25,-7],[7,-27],[61,12],[8,-22],[-5,-50],[-34,-92],[-3,-54],[21,-74],[-24,-39],[9,-54],[-8,-20],[-59,41],[-38,49],[-20,1],[-83,69],[-37,25],[-17,0],[-64,70],[-45,9],[-62,53],[-52,12],[-26,61],[-26,5],[15,-98],[-12,-320],[1,-123],[-6,-84],[-6,-17],[47,-83],[-32,-23],[-34,5],[-69,-24],[-128,-1],[-139,63],[-140,53],[-113,-145]],[[156213,121532],[45,-21],[33,36],[25,5],[24,-16],[63,1],[65,-130],[11,-11],[124,-29],[92,11],[46,-40],[44,-55],[51,64],[31,0],[34,-25],[4,-21],[-14,-52],[-34,-58],[-42,-96],[-225,88],[-45,-43],[1,-18],[-36,-60],[-36,-25],[-43,-83],[-38,-7],[-25,-35],[-117,-105],[7,-33],[92,-185],[-64,-77],[-8,-37],[-25,-45],[-20,-61],[-48,-62],[17,-32],[185,-105],[-30,-5],[-15,-59],[-74,-64],[4,-100],[-35,-6],[-16,-21],[-37,12],[-35,-66],[-70,-66],[13,-27],[41,-20],[38,-45]],[[156472,118273],[-349,0],[-286,3],[-304,21],[-382,21],[-169,-7],[-101,6]],[[154881,118317],[-168,5],[-67,7],[-73,1],[-112,8],[-187,10],[-138,-1],[-108,5],[-53,8],[-68,0],[-126,15],[-122,3]],[[153827,93435],[160,3],[187,-1],[77,2],[317,-1],[187,1],[171,3],[0,-103],[83,3],[261,-1],[426,-1],[76,2]],[[155772,93342],[4,-171],[-29,-11],[3,-120],[14,-6],[-23,-76],[-26,-47],[-83,-125],[-70,-103],[26,1],[0,-42],[26,4],[7,-47],[-16,-51],[-27,-18],[114,-255],[23,22],[168,102],[23,-28],[158,-65]],[[156064,92306],[-21,-30],[-39,-23],[-46,10],[-13,-19],[-27,-74],[17,-35],[5,-34],[-6,-46],[-26,-60],[-16,-21],[-35,-19],[-24,0],[-9,-40],[-48,-106],[-38,-60],[-52,-37],[-4,-50],[-26,-53],[-47,-34],[-1,-28],[-21,-51],[-25,-28],[-71,-25],[-17,-40],[-21,-25],[-45,-28],[-29,-26],[-18,-33],[-36,-47],[-51,-54],[-36,-13],[-53,-49],[-58,-36],[-17,-30],[-43,-34],[-46,0],[-38,-26],[-24,-3],[-42,-55],[-23,-20],[-40,-8],[-24,-25],[-36,-21],[-68,-56],[-36,-8],[-39,-58],[-46,-16],[-76,8],[-36,28],[-16,-20],[-41,-21],[-32,0],[-19,-18],[-37,-15],[-23,-31],[-27,-15],[-34,-1],[-98,-39],[-47,-23],[-56,2],[-48,-35],[-37,-5],[-63,26],[-20,-26],[11,-41],[2,-42],[-10,-39],[-22,-34],[-40,-30],[-33,-4],[-38,-39],[-106,-35],[-54,-22],[-29,2],[-29,17],[-23,27],[-18,69],[3,39],[-25,-11],[11,-71],[-12,-49],[-38,-51],[-44,-23],[-40,-9],[-44,5],[-26,-19],[-56,4],[-33,29],[-19,46],[-2,58],[10,33],[-77,15],[-44,44],[-25,62],[-19,-28],[-33,-26],[-81,-7],[-37,6],[-48,45],[-21,53],[0,73],[14,40],[29,44],[42,45],[43,21],[57,2],[31,-9],[49,-42],[38,-22],[61,62],[41,21],[40,30],[31,4],[40,17],[39,-6],[95,77],[27,8],[44,37],[31,3],[28,19],[21,34],[40,23],[82,69],[25,17],[23,28],[68,40],[27,11],[22,32],[53,42],[27,8],[29,24],[37,8],[18,16],[34,10],[53,-25],[17,-22],[19,18],[53,10],[29,-13],[30,23],[35,7],[50,-11],[29,-19],[31,-58],[37,-16],[27,-32],[15,-38],[57,8],[50,-42],[38,8],[26,23],[38,17],[23,0],[33,18],[18,34],[23,20],[47,10],[32,27],[-18,26],[-54,-33],[-23,2],[-39,22],[-25,46],[-8,56],[-41,47],[-14,41],[-28,22],[-13,31],[-10,72],[-22,71],[-27,43],[-9,34],[-34,16],[-24,32],[-23,46],[-29,12],[-25,29],[-18,51],[0,50],[-31,48],[-16,41],[-14,63],[2,37],[16,44],[23,126],[2,31],[17,46],[-15,46],[0,78],[-17,31],[-8,40],[-39,52],[-20,37],[-27,127],[-74,134],[-13,59],[-25,42],[-41,9],[-41,43],[-29,90],[-28,39],[-15,53],[-67,34],[-28,23],[-38,50],[-40,17],[-25,25]],[[151595,90699],[4,50],[12,37],[21,32],[49,33],[52,76],[54,20],[104,0],[53,-57],[-1,-78],[-53,-118],[-6,-29],[-38,-44],[-32,-20],[-41,-3],[-40,18],[-44,-12],[-47,9],[-36,33],[-11,53]],[[153075,115144],[470,-22],[265,-16],[500,-28],[244,-16],[120,-13]],[[154674,115049],[-22,-8],[-6,-31],[19,-13],[10,-37],[-28,-26],[-11,-29],[-1,-55],[26,-41],[131,111],[36,34],[79,-125],[100,-171],[62,-101],[-24,-268],[270,-4]],[[155315,114285],[101,-2]],[[155416,114283],[5,-37],[23,-40],[44,-37],[0,-21],[36,-78],[11,-45],[18,-15],[10,-33],[58,-58],[-5,-41],[32,-32],[-2,-27],[51,-57],[3,-42],[14,-24],[1,-39],[27,-37],[4,-24],[27,-23],[12,-29],[-4,-57],[8,-37],[-2,-47],[37,-59],[1,-23],[26,-21],[-6,-54],[24,-46],[34,-19],[15,-38],[58,34],[24,64],[22,-1],[3,-93],[17,-46],[46,-50],[-1,-28],[38,-101],[-1,-74],[-73,-81],[15,-34],[43,-63],[23,-11],[20,-35],[30,-32],[69,-22],[39,-43],[10,-23]],[[156300,112504],[-41,-91],[-69,-2],[-19,-18],[-129,-99],[-25,-12],[-13,122],[-63,-22],[13,-57],[-32,-72],[6,-17],[34,-5],[20,-23],[-22,-50],[-54,10],[-38,-34],[-15,6],[-17,34],[-8,43],[-45,46],[-35,6],[-16,-57],[13,-56],[21,9],[10,-64],[27,-18],[33,-69],[12,-39],[39,-54],[-13,-22],[-198,-43],[0,-49],[8,-72],[-67,-8],[13,28],[-8,33],[-29,-2],[-8,-56],[-38,2],[-19,-47],[-11,-45],[-57,-71],[-19,12],[-30,71],[-39,11],[-19,42],[-21,21],[-21,66],[31,32],[18,54],[-5,52],[-24,34],[0,46],[-27,37],[28,93],[-30,62],[21,43],[-11,29],[19,39],[-24,10],[-16,31],[0,38],[22,8],[41,84],[-21,46],[-23,17],[-10,72],[-36,-21],[-54,-17]],[[153946,131116],[190,135],[196,143],[226,48],[127,29],[41,6],[197,46],[559,127]],[[155482,131650],[1,-285],[0,-535],[0,-509],[0,-336],[0,-633]],[[155483,129352],[-29,0],[0,39],[-126,0],[1,-181],[-149,-1],[-1,94],[9,35],[-9,51],[-155,-2],[-303,-2],[0,-176],[-298,5],[-1,-166],[-168,1],[2,168],[-147,3],[-1,-325],[-35,-1],[0,-27],[-60,1],[-25,83],[-47,11],[-4,-27],[-28,-39],[-2,71],[-27,-25],[-15,13],[31,44],[-5,51],[57,10],[7,43],[-46,1],[-1,43],[-22,-1],[1,60],[-24,16],[-67,1]],[[155483,129352],[1,-335],[0,-466]],[[156300,112504],[60,-58],[49,-18],[44,-33],[2,-18],[41,-24],[-8,-33],[69,-92],[40,5],[32,-9],[17,-43],[33,-35],[42,-1],[58,52],[-28,53],[28,21],[63,-63],[20,-4],[45,-64],[20,-13],[61,-1],[25,12],[-8,-69],[-42,-9],[-5,-46],[-83,-42],[1,-22],[218,-77],[37,20],[50,1],[13,20],[37,20],[16,-2],[27,41],[47,-8],[19,-28],[25,-9],[12,-44],[-34,-14],[-13,-43],[-44,-71],[-28,-30],[-26,-53],[-15,-51],[-2,-42],[-16,-45],[-20,-76],[11,-54],[-75,-83],[-22,-47],[-64,-46],[-11,-21],[-71,-102],[-10,-51],[-11,-10],[-34,-62],[-15,-42],[-28,-25],[-40,-58],[-5,-39],[26,-49],[52,-12],[56,-32],[53,-15],[42,-53],[65,-32],[18,23],[49,-47],[8,-28]],[[157173,110574],[-6,-14],[-43,3],[-22,-36],[-43,-104],[-24,-10],[-24,27],[-99,-40],[-49,-34],[-27,-76],[-23,-23],[-44,-80],[-18,-13],[-23,-61],[-52,-59],[-12,-46],[10,-24],[-18,-39],[-13,4],[-32,-32],[-59,12],[-114,-72],[-25,-35],[-13,-68],[20,-35],[0,-48],[15,-10],[-2,-52],[-64,-38],[-24,44],[9,32],[-5,43],[-38,12],[-30,-22],[-44,48],[-13,-3],[-24,55],[-52,39],[29,94],[-21,42],[9,34],[24,-37],[29,-2],[21,-15],[26,-37],[18,-49],[41,10],[-1,26],[-16,27],[-11,126],[9,93],[28,90],[49,67],[-11,59],[-17,14],[-15,44],[-25,15],[34,91],[36,25],[10,20],[22,-11],[13,28],[68,-7],[29,45],[11,29],[-19,22],[31,15],[-8,24],[10,51],[-43,85],[-18,16],[-41,-18],[-19,2],[4,35],[-22,19],[-22,-8],[-41,6],[-13,12],[-74,-81],[-21,-39],[-203,-49],[34,-7],[-8,-64],[24,-56],[-17,-45],[-18,-23],[-23,72],[-163,-248],[49,-64],[-30,-7],[-46,-63],[-11,-37],[-3,-76],[43,-120],[21,-23],[-56,-76],[21,-39],[16,24],[19,-14],[-10,-61],[-23,-35],[-16,-39],[26,-13],[186,-58],[16,1],[13,-45],[23,-39],[-11,-50],[-14,-32],[-36,2],[-14,-31],[27,-64],[24,11],[24,-13],[40,26],[22,-9],[15,-30],[-30,-38],[-29,-15],[-45,-42],[-19,14],[-29,-25],[-29,-51],[2,-32],[-28,-15],[18,-38],[-21,-37],[-20,14],[-24,47],[-37,21],[-17,23],[-23,-6],[-67,31],[-23,0],[-7,25],[-35,3],[-2,22],[-50,-45],[-9,-26],[-33,-7],[10,-45],[43,30],[11,-10],[-17,-39],[10,-48],[-40,-35],[-5,-30],[19,-23],[-57,-13],[-31,-28],[-27,12],[-40,-45],[-52,-4],[-40,-21],[-31,-5],[-55,41],[-92,-17],[-18,-25],[-14,30],[-19,-22],[-20,11],[-27,-35],[-27,10],[-36,-28],[-9,-45],[46,13],[2,-79],[-15,-25],[-26,-6],[-13,-25],[-43,137],[-18,-5],[-28,-76],[-1,-40],[30,-1],[-22,-42],[3,-19],[-51,-37],[-6,-53],[-24,18],[-45,-3],[-21,-75],[-1,-46],[-78,14],[-34,0],[19,-36],[4,-47],[-8,-31],[-31,-29],[13,-75],[27,-51],[18,0],[49,-52],[-20,-80],[22,-8],[32,17],[0,-40],[42,-18],[3,-26],[-19,-29],[4,-22],[256,1]],[[155127,107950],[4,-68],[-13,-37]],[[155484,127745],[0,-373]],[[155484,127372],[2,-35],[-2,-260],[-1,-410],[1,-651],[-1,-392],[425,-1],[327,1]],[[156235,125624],[160,-2],[430,0],[300,1]],[[157125,125623],[1,-182],[-3,-40],[-1,-216],[-6,0],[-3,-433],[-5,-149],[3,-35],[-2,-136],[27,-5],[72,53],[5,27],[75,82],[31,9],[10,31],[54,31],[36,-11],[12,53],[45,33],[-4,43],[39,21],[27,-3],[27,58],[23,-7],[34,14],[-8,22],[27,31],[35,9],[-4,25],[27,4],[-5,26],[20,19],[19,51],[57,2],[28,7],[5,-22],[36,-13],[85,-49],[4,34],[32,73],[27,0],[20,41],[40,40],[65,106],[26,-15],[-8,64],[49,52],[-10,35],[17,29],[28,-4],[-9,-32],[23,-9],[24,18],[24,-30],[-21,-19],[-26,10],[-23,-19],[17,-33],[38,-15],[30,-40],[46,-23],[8,-18],[51,-25]],[[158416,125193],[-52,-75],[-21,-12],[-41,-79],[-59,-37],[-27,-46],[-22,-74],[-20,-43],[-37,-57],[-11,-1],[-15,-48],[-58,-13],[-54,-75],[-7,-33],[-52,-42],[-40,-65],[-20,-47],[-6,-39],[-55,-105],[12,-19],[-16,-26],[3,-26],[-46,-76],[-11,-49],[-26,-62],[19,-38],[-7,-50],[57,-165],[-44,-69],[-19,-12],[8,-39],[-50,-97],[-34,-50],[-146,144],[-150,144],[-67,68],[-19,-4],[-50,19],[-20,-5],[-87,15],[-51,-7],[-436,144],[13,21],[3,70],[-38,72],[-39,-2],[-22,-28],[-17,0],[-22,-51],[-16,-89],[-23,-79],[-13,-62],[-164,-34],[-116,-18],[46,137],[-23,28],[-13,37],[-96,-1],[-37,78],[-25,37],[-50,25],[-16,-2],[-30,39],[-19,-3],[-13,-28],[-83,7],[-236,80],[-25,16],[-111,6],[-17,25],[-60,23],[-29,-31],[-20,-5],[-31,-36],[-31,8],[-12,-27],[-26,-18],[0,-22],[-31,-51],[-43,13],[-1,-28],[19,-174],[175,-241],[-22,-4],[-32,-29],[-47,7],[-50,-32],[-235,-201],[-211,-172],[-20,68],[-35,32],[-28,5],[-23,39],[0,25],[63,72],[0,43],[15,12],[-8,126],[-9,52],[17,22],[-1,66],[-16,31],[-29,23],[0,41],[-23,17],[-45,2],[-25,11],[-61,70],[-40,-11],[-13,-23],[-24,24],[-39,-6],[-7,15],[-67,-22],[-18,159],[-22,9],[-5,31],[-71,49],[11,58],[29,24],[0,17],[-148,-101],[-51,-14],[-203,-199],[-44,-54],[-261,160]],[[158416,125193],[59,10],[66,-30],[19,-16],[61,12],[38,-14],[54,-5],[13,20],[4,61],[29,-29],[35,25],[-14,22],[-37,26],[-12,38],[19,10],[59,-29],[17,26],[-39,33],[-15,24],[10,23],[83,-30],[-13,41],[34,-9],[6,35],[67,-22],[42,-23],[30,-5],[20,49],[48,52],[-5,31],[41,3],[13,26],[33,16],[106,-33],[45,-31],[60,-71],[49,-82],[46,-5],[29,22],[11,-34],[24,-7],[20,32],[55,-18],[7,43],[32,-16],[42,-7],[12,-44],[-9,-46],[-61,-7],[-16,-30],[31,-29],[6,-56],[53,-49],[48,-9],[24,23],[23,-18],[-44,-22],[6,-31],[-11,-28],[18,-19],[-25,-28],[26,-17],[51,-11],[28,-76],[-27,-28],[15,-32],[-4,-28],[-21,-19],[6,-25],[57,-29]],[[159893,124699],[-25,-22],[-19,-40],[-37,-135],[-24,-34],[-19,-48],[-13,-69],[-24,-44],[-11,-44],[-318,301],[-201,186],[-165,164],[-132,119],[0,-89],[-21,-43],[27,-46],[-37,-69],[41,-13],[-32,-83],[-42,-56],[-50,-83],[31,-31],[-9,-29],[-53,-77],[20,-36],[35,-35],[-37,-34],[-19,-48],[-31,-41],[-32,-11],[-58,-64],[-16,-32],[-28,-26]],[[158594,124087],[-43,-57],[33,-33],[-29,-35],[-51,-88],[-44,37],[-27,-29],[-20,-48],[-33,-51],[-13,-1],[-50,-44],[-1,61],[-29,-12],[-31,-61],[-46,-36],[-32,-67],[-43,-107],[-53,-109],[-196,202],[-10,-11],[-12,-53],[-19,-11],[-15,-62],[-28,2],[-16,-72],[-24,-30],[-22,-57],[-10,-49],[13,-35],[-13,-61],[-43,0],[-17,-16],[-32,-77],[-11,-62],[-40,-96],[-35,-63],[-7,-73],[-24,-38],[-23,-15],[-4,-36],[-19,3],[-39,-73],[-52,-29],[-91,36],[-168,69],[-70,178],[-24,39],[-177,94]],[[157173,110574],[13,4],[39,-39],[11,-27],[88,-77],[29,-2],[24,-14],[40,0],[21,-9],[15,-28],[-39,-64],[50,-123]],[[157464,110195],[-18,-7],[-9,-42],[-33,-65],[-4,-47],[-31,-55],[-37,-19],[-41,-5],[-69,12],[-39,18],[-30,-42],[-58,-21],[-28,-63],[-14,-49],[-19,-30],[-41,-30],[-39,-15],[-22,-44],[-20,-20],[-40,-15],[-39,-77],[-47,-55],[-57,-21],[-50,-28],[-10,-62],[-21,-46],[-29,-37],[-47,-25],[-13,-31],[-30,-35],[-99,-67],[-46,-50],[-24,-43],[-26,-21],[-42,-8],[-39,13],[-92,-26],[-10,-58],[-41,-57],[-72,-19],[-50,12],[-19,-20],[-51,-35],[-10,-63],[-22,-36],[-48,-25],[-19,-50],[-48,-38],[-9,-34],[-24,-36],[-27,-18],[3,-67],[-11,-39],[-20,-38],[-25,-25],[-37,-19],[-43,2],[-55,-28],[-47,-36],[-33,-54],[-7,-44],[-27,-46],[-29,-22],[-37,-1],[-13,-21],[-32,-21],[-44,-3],[-24,-41],[-40,-46],[-67,-48],[4,-13]],[[155832,94268],[0,-29],[64,1],[1,-34],[59,0],[1,-34],[26,0],[1,-38],[63,6],[-1,17],[33,36],[13,37],[-24,9],[-16,38],[28,1],[-1,26],[-22,7],[16,106],[27,0],[14,17],[-3,36],[33,180],[-32,0]],[[156112,94650],[-14,10],[-39,0],[0,43],[-26,-1],[-2,137],[78,1],[0,49],[-13,0],[-1,123],[26,-1],[-2,51],[-12,1],[1,98],[13,26],[3,221],[12,17]],[[156136,95425],[49,8],[9,-46],[-4,-218],[-14,-54],[4,-33],[24,0],[10,91],[-4,94],[-12,33],[4,156],[-13,54],[28,58],[6,136]],[[156223,95704],[13,-25],[21,21],[83,-2]],[[156340,95698],[-7,-70],[1,-55],[7,-43],[-10,-134],[1,-127],[-13,-157],[-28,-219],[-12,-163],[-4,-241],[-38,-383]],[[156237,94106],[-150,1],[-2,-26],[-50,-2],[-10,25],[-30,-14],[-188,70],[-1,104],[26,4]],[[155416,114283],[98,0],[150,-5],[378,-8],[456,-15],[179,2],[136,-3],[210,-252],[289,-347],[158,-206],[89,-111],[205,-253]],[[157764,113085],[382,-472],[262,-325],[191,-239],[66,-89]],[[158665,111960],[-53,-31],[-50,-6],[-112,-47],[-88,-49],[-127,-110],[-78,-87],[-103,-134],[-37,-53],[-73,-117],[-24,-56],[-33,-59],[-65,-74],[-58,-129],[-26,-74],[-9,-149],[-24,-50],[-18,-84],[19,-18],[34,-55],[14,-61],[-7,-41],[-15,-28],[-38,-36],[-39,-9],[-33,-47],[-31,-27],[-6,-34],[-28,-49],[-20,-17],[-42,-7],[-31,-27]],[[158594,124087],[128,-60],[24,9],[-1,49],[64,83],[49,0],[64,22],[-9,-74],[10,-43],[24,-23],[12,-76],[234,23],[19,43],[86,-55],[61,15],[84,-90]],[[157125,125623],[397,2],[283,2],[295,0],[367,0],[442,-1],[386,-1],[267,1],[410,-4],[316,-1]],[[160634,124018],[-41,17],[-46,39],[-56,27],[-74,-2],[-52,10],[-64,20],[-32,71],[-59,33],[-14,62],[15,52],[16,28],[42,15],[9,42],[28,44],[-43,49],[-88,44],[-33,53],[-11,42],[-32,-11],[-42,2],[-45,15],[-49,36],[-34,-14],[-36,7]],[[160695,123797],[-20,7],[-51,-5],[-25,18],[-64,18],[1,44],[-18,43],[-33,33],[-36,-42],[-27,16],[-27,-10],[-49,-73],[34,-67],[22,-3],[19,41],[36,-71],[43,4],[19,26],[29,-9],[-26,-53],[-29,-39],[-41,-24],[-47,27],[-13,-65],[-48,-12],[-55,-34],[55,-50],[23,44],[34,3],[38,-9],[46,17],[37,-11],[-10,-49],[0,-46],[51,-32],[30,-48],[11,27],[27,-46],[-5,-36],[-45,-78],[-26,19]],[[160555,123272],[-25,-7],[-28,39],[-43,10],[-70,-4],[-9,-29],[-19,-10],[-37,3],[-33,22],[-7,31],[-47,24],[-39,-20],[47,94],[32,25],[9,33],[-67,14],[-99,-10],[-37,5],[-128,-49]],[[159745,122869],[20,-42],[0,-22],[27,-31],[13,-58],[22,-12],[2,-52],[33,-29],[6,-25],[37,23],[34,9],[26,-8],[65,-37],[0,-34],[18,-9],[4,-48],[-15,0],[-16,-33],[22,-10],[20,-39],[-30,-56],[43,-26],[71,-15],[26,-47],[3,-30],[23,-29],[26,12],[19,-34],[34,9],[54,-1],[42,-20],[18,-36],[-59,-86],[-52,-68],[-241,-334],[-25,-29],[-2,-26],[46,-47],[39,-23],[21,20],[46,-74],[28,-11],[17,-34],[40,-24],[14,-29],[61,26],[37,-69],[-10,-20],[0,-62],[26,-14],[-17,-28],[43,-21],[-13,-53],[46,-6],[4,23],[23,24],[13,-19],[26,8],[16,-51],[-26,-17],[12,-23],[42,5],[-1,-45],[20,-49],[19,-2],[16,23],[53,7],[10,-30],[-21,-35],[12,-31],[67,13],[17,-15],[-14,-47],[12,-16],[39,22],[65,-14],[-4,-83],[48,-19],[-2,-27],[29,-18],[9,16],[43,-38],[32,-13],[0,-33],[30,-13],[30,12],[-17,33],[45,4],[11,-60],[-26,-37],[41,-13],[6,50],[34,27],[29,-7],[-3,-39],[18,-8],[30,16],[-11,57],[21,10],[23,-20],[-16,-55],[-22,-41],[22,-19],[20,7],[52,56],[19,-45],[22,-31],[4,-31],[39,-24],[21,-22],[15,-39],[-23,-13],[-21,-61],[-35,1],[-50,35],[-54,-8],[-30,-17],[-28,-29],[4,-91],[-19,-24]],[[161177,120204],[-21,15],[0,26],[-80,26],[-23,31],[-39,-15],[-45,32],[-53,29],[-40,1],[-37,36],[-13,36],[-54,11],[-5,19],[-43,39],[-62,88],[-15,-4],[-82,53],[-20,1],[-46,37],[-30,8],[-23,28],[-45,23],[-18,28],[6,22],[-33,35],[-55,-98],[1,-30],[-34,-25],[-17,-73],[-29,-26],[-20,-71],[17,-62],[27,-22]],[[160246,120402],[-46,-44],[-63,11],[-91,-47],[-62,-54],[-59,-9],[-59,-25],[-40,-5],[-25,15],[-29,-8],[-45,-69],[-42,-16],[-41,26],[-1,40],[10,37],[-5,39],[41,-3],[25,18],[38,8],[16,43],[2,33],[226,240],[-81,61],[-47,5],[-38,45],[-47,5],[-39,-15],[-17,17],[-10,47],[-40,23],[-72,69],[-11,32],[-21,8],[-40,-33],[-12,-39],[18,-36],[-2,-26],[-19,-19],[-40,-1],[-54,41],[-47,2],[-39,33]],[[160246,120402],[10,-16],[47,18],[38,-16],[23,-24],[-13,-38],[13,-20],[34,-2],[5,-34],[32,-57],[28,-12],[49,3],[24,-10],[10,-34],[44,-15],[16,21],[9,41],[23,1],[-2,-43],[-26,-39],[-10,-54],[30,-27],[46,2],[-5,-55],[-56,-44],[-23,16],[-13,-28],[32,-65],[-36,-30],[-72,7],[-29,47],[-19,-10],[-60,-3],[-73,-37],[9,-26],[-7,-53],[36,-17],[0,-38],[60,25],[62,-2],[5,35],[18,15],[15,-24],[69,-70],[79,-74],[13,13],[72,-55],[29,16],[11,-25],[61,-6],[16,-35],[31,2],[8,-42],[40,-8],[23,16],[76,-47],[27,12],[5,-126],[20,-129],[182,134],[198,123],[17,25],[12,42],[14,8],[1,37],[11,23],[-5,29],[13,34],[24,-73],[0,-23],[-19,-67],[0,-31],[13,-31],[32,-20],[44,1],[41,-16],[30,-59],[17,-2],[21,-29],[29,-14],[6,-25],[40,-19],[12,-33],[12,-81],[-5,-44],[46,-10],[11,26],[20,5],[41,-17],[3,-46],[29,-59],[8,-35],[-32,-55],[44,-64],[123,27],[12,56],[24,14],[27,-17],[22,37],[28,7]],[[162246,118960],[-3,-14],[38,-148],[27,-14],[68,-15],[72,-95],[24,-9],[22,-46],[-18,-32],[-66,-30],[-1,-266]],[[162409,118291],[-269,0],[-417,0],[-284,1],[-102,-1],[-178,4],[0,-19]],[[161159,118276],[-242,1],[-131,-1],[-27,8],[-55,-7],[-265,0],[-621,2]],[[160671,123044],[-33,-29],[-14,-69],[-27,-28],[-14,-51]],[[160583,122867],[-30,48],[-35,-37],[-33,37],[14,42],[24,39],[18,69],[-28,3],[-29,19],[-21,42],[-40,-2],[-31,63],[18,18],[25,-10],[25,20],[35,-18],[64,51],[-4,21]],[[128865,106196],[-129,270],[-147,313],[-18,35],[39,26],[165,119],[186,130],[143,102],[155,114],[206,146],[120,-261],[46,-95],[286,208],[49,37]],[[129966,107340],[351,-44],[253,185],[443,316]],[[131013,107797],[9,-36],[-25,-37],[20,-39],[-4,-37],[27,0],[14,22],[22,-27],[-10,-18],[23,-32],[-21,-50],[-12,-58],[36,-12],[27,-32],[-11,-36],[26,-23],[7,-33],[-16,-67],[32,-1],[16,-31],[36,-9],[9,-15],[42,3],[4,-20],[31,-7],[13,-86],[-20,-34],[12,-24],[59,6],[24,-21],[15,-30],[23,3],[9,-66],[-9,-40],[28,-62],[17,-11],[22,22],[7,25],[-13,59],[34,24],[27,-49],[13,-39],[-3,-29],[-16,-39],[6,-75],[-52,-4],[-8,-49],[30,-29],[-3,-33]],[[131510,106621],[-9,-27],[24,-8],[11,-27],[-5,-35],[23,-19],[-1,-70],[21,-40],[11,-73],[26,-21],[1,-48],[-25,-25],[-132,-3],[-60,-25],[-76,-43],[-26,54],[-52,14],[42,-101],[-38,-22],[-14,33],[-45,-16],[-45,48],[-23,-7],[-8,-33],[6,-31],[-63,12],[-10,-18],[7,-69],[-56,-3],[-29,8],[4,-74],[-125,-7],[-1,-79],[-25,-4],[-47,-34],[-30,-58],[-34,-29],[-14,-44],[-14,-14],[15,-67],[24,-30],[-9,-47],[-21,-64],[36,-25],[-6,-51],[6,-34],[17,-21],[31,-10],[9,-23],[-18,-60],[31,-68],[-4,-18],[28,-35],[8,-26],[-1,-109],[-15,-14],[20,-28],[13,-45],[-12,-34],[14,-31],[-5,-31],[-21,-28],[13,-50],[-5,-19],[14,-49],[-17,-84],[-18,-38],[14,-48],[24,-34],[2,-79],[45,-106],[-12,-42],[16,-15],[14,-55],[25,4],[37,-29],[-10,-32],[-31,0],[-19,-69],[-44,-11],[9,-40],[-3,-65],[-17,-17]],[[130856,103906],[-9,27],[12,20],[-9,65],[-29,-6],[5,31],[-31,24],[-10,-39],[-56,-30],[-43,-12],[-10,-14],[-27,14],[-29,43],[-14,2],[-43,-38],[-32,0],[-98,-56],[-53,-7],[-41,-17],[-21,-20],[-27,4],[-44,-19],[-24,10],[-19,-20],[-59,-27],[-52,-12],[-46,2],[-30,45],[-32,1],[-36,15],[-21,-10],[-16,22],[-22,55],[-3,27],[-30,41],[-2,19],[-28,13],[-3,19],[-57,54],[-39,18],[-10,29],[-26,-3],[-25,-18],[14,-36],[-80,-31],[-10,-31],[-27,9],[-26,-12],[10,-81],[-44,35],[-17,-17],[-59,-7],[-18,35],[-13,-44],[-32,-15],[-33,-46],[-13,-34],[-45,-22],[-64,63],[-82,58],[-17,-12],[-27,18],[-43,9],[-81,-37],[-34,28],[-86,58],[-24,-32],[-89,66],[-24,82],[-47,34],[-9,-2],[-48,33],[-28,-42],[-23,17],[-11,-28],[-22,3],[5,-44],[27,-21],[-13,-31],[-16,-5],[-16,-39],[-36,6],[-5,30],[-55,9],[-26,13],[-40,-13],[-9,27],[-25,30]],[[128306,104139],[31,6],[11,37],[20,1],[30,19],[41,8],[9,43],[30,3],[20,-15],[87,61],[32,1],[35,-26],[17,-26],[23,-9],[25,23],[17,-19],[55,-30],[33,-6],[47,-56],[16,10],[28,-20],[16,-35],[13,4],[55,-39],[283,126],[-106,376],[-77,268],[-70,39],[89,317],[14,13],[283,210],[-79,167],[-248,512],[-103,-82],[-118,176]],[[155765,93877],[70,0],[-1,34],[106,4],[5,-34],[95,3],[2,-75],[24,-1],[2,-75],[26,17],[8,-43],[-8,-50],[-31,-40],[5,-49],[-22,-1],[4,-107],[-15,-78],[32,-35]],[[156067,93347],[-39,13],[-24,-23],[-29,50],[-25,9],[-14,47],[-27,42],[-2,51],[-10,33]],[[155897,93569],[-5,51],[-24,-1],[-1,34],[-26,5],[-2,61],[26,0],[-3,106],[-26,-1],[1,-32],[-89,1],[-2,40],[19,44]],[[157414,126362],[-111,-215],[34,1],[12,-40],[-5,-38],[24,-31],[1,-29],[-15,-35],[42,-41],[19,-60],[31,-5],[31,28],[59,35],[28,-20],[-3,-33],[23,-39],[23,-18],[60,194],[30,-25],[31,3],[74,122],[7,60],[39,13],[38,0],[20,25],[5,61],[28,90],[-8,26],[28,38],[13,33],[43,2],[50,-14],[139,-80],[28,-1],[35,72],[19,-12],[99,328],[25,46],[4,27],[23,38],[-12,51],[14,4],[12,61],[52,100],[60,41],[11,89],[-120,87],[-47,-35],[-24,-10],[-30,14],[21,92],[14,24],[3,50],[-18,15],[9,55],[19,54],[17,6],[18,41],[-13,45],[-45,4],[-21,-9],[-8,31],[-92,-103],[-8,15],[6,149],[-41,24],[-15,36],[-62,-1],[-40,-132],[-85,-243],[-96,-239],[-22,37],[-44,19],[-17,-33],[-49,-58],[-38,20],[-31,-48],[-30,4],[-11,34],[18,21],[-49,8],[-12,32],[-69,-2],[-24,32],[-52,17],[-24,-35],[-15,52],[-16,8],[-26,-19],[-5,62],[-44,-17],[-37,-5],[-25,11],[-41,1],[-17,40],[-27,-2],[-11,36],[-37,-8],[-9,72],[15,31]],[[157167,127494],[114,171],[256,398],[0,313]],[[157537,128376],[424,-7],[124,-5],[98,-1],[-2,-102],[0,-305],[8,-12],[179,-1],[292,4],[239,-3],[-15,18],[360,24],[24,-9],[-36,-34],[-48,-27],[-55,-39],[-27,-49],[37,-61],[2,-20],[48,-50],[-28,-52],[10,-27],[-30,-58],[18,-35],[30,-28],[24,22],[24,65],[12,-2],[-30,-81],[-10,-84],[35,0],[2,-34],[-39,-101],[-57,-108],[26,3],[29,-16],[-16,-33],[55,-79],[29,26],[165,-51],[75,-6],[-1,-24],[63,-44],[53,-50],[50,-24],[22,40],[127,205]],[[159827,127121],[15,23],[77,-266],[49,60],[25,-45],[17,-72],[-7,-30],[16,-20],[37,35],[18,-18],[0,-43],[-16,-18]],[[160058,126727],[-20,-23],[22,-42],[8,-41],[72,-77],[8,-37],[23,-31],[5,-37],[70,-159],[33,-31],[32,-45],[-27,-65]],[[160284,126139],[13,-286],[6,-232]],[[156235,125624],[11,19],[-16,29],[3,34],[-47,54],[10,74],[-10,63],[-54,72],[10,32],[-24,58],[27,38],[24,8],[-20,44],[28,33],[-11,55],[40,53],[35,-30],[64,50],[-16,31],[-5,57],[36,-1],[20,12],[35,-50],[27,20],[-1,33],[-17,101],[-46,18],[-20,-4],[-10,-29],[-31,-3],[0,33],[-17,26],[34,21],[19,24],[-16,45],[11,15],[-8,33],[26,57],[39,19],[99,-50],[48,6],[18,-14],[7,-32],[-43,-117],[31,3],[176,1],[64,-48],[34,2],[28,-13],[19,-31],[24,-15],[20,21],[54,3],[20,28],[60,17],[57,64],[38,6],[36,-18],[32,-45],[57,-31],[12,-27],[60,-38],[20,-69],[78,-9]],[[157949,117077],[3,31],[90,98],[-1,-19],[38,7],[34,-14],[13,28],[57,22],[7,505],[221,-5],[5,284],[138,-2],[92,2],[0,54],[15,109],[18,39],[16,0],[37,56]],[[161159,118276],[-6,-26],[24,-24],[-9,-38],[-16,-5],[-21,-69],[-20,-4],[-1,-131],[24,-34],[40,-25],[21,-1],[65,-33],[29,-7],[20,-19],[40,-10],[32,3],[1,37],[-13,26],[-11,96],[21,25],[8,75],[78,31],[-18,43],[53,30],[28,-39],[3,-34],[22,-11],[-10,-30],[20,-6],[62,5],[26,-29],[17,41],[25,28],[15,-15],[32,-84],[-36,1],[-35,-10],[-2,-53],[-29,-11],[-43,-30],[-15,19],[-49,20],[-33,4],[5,-49],[-12,-38],[8,-40],[58,-34],[3,-35],[-26,-73],[-30,-10],[10,-67],[-40,-89],[-20,-19],[-13,-84],[1,-86],[14,-51],[28,-67],[43,44],[17,52],[27,27],[-13,70],[6,69],[-20,45],[18,31],[33,35],[80,-29],[3,-72],[19,5],[22,49],[32,20],[56,-14],[20,31],[11,39],[124,44],[7,28],[-72,145],[38,62],[21,12],[26,46],[40,14],[43,-17],[8,-25],[52,-72],[2,-37],[23,-65],[31,-23],[37,-41],[28,25],[37,-37],[31,-49],[-31,-11],[-54,26],[-29,-78],[-6,-56],[-31,-13],[-40,11],[-22,43],[-20,8],[-34,-35],[-44,-25],[-24,-53],[7,-29],[-10,-77],[-81,82],[-30,-40],[-21,-12],[-20,-68],[-62,-77],[-35,-10],[-5,-67],[-37,-75],[-22,-30],[-42,-76],[30,-25],[56,-6],[0,-91],[41,-30],[9,-33],[2,-55],[-17,-93],[-25,12],[-12,-74],[-75,-218],[26,-12],[-10,-29],[-77,0],[10,30],[-85,131],[33,228],[-60,-13],[-34,-19],[19,-41],[-44,-41],[-11,-39],[-22,-30],[-29,-62],[-44,-6],[-18,12],[-6,86],[-25,10],[-4,33],[-39,-32],[-33,28],[10,56],[-12,68],[-20,42],[-36,12],[-34,-43],[-40,-15],[-25,-40],[-16,3],[-19,-40],[-31,-23],[-5,-32],[34,-38],[-20,-28],[-44,-14],[-41,6],[-58,48],[-10,50],[-3,74],[19,47],[-18,30],[-5,46],[-46,-12],[-25,3],[-5,-34],[-44,-35],[21,-16],[-8,-27],[19,-43],[-3,-58],[-20,-69],[4,-41],[-9,-25],[-46,2],[-24,10],[-8,22],[16,27],[-213,108],[-31,-16],[-24,-48],[-38,2],[-9,-28],[15,-37],[18,-2],[2,-37],[52,2],[1,-62],[26,4],[21,-23],[-8,-23],[27,-20],[9,-23],[-18,-91],[22,-11],[25,-38],[51,-16],[21,13],[29,-25],[54,-8],[46,10],[38,-4],[44,-28],[-7,-29],[69,-74],[28,-12],[34,47],[25,12],[35,-28],[-24,-70],[11,-35],[-63,49],[-43,-6],[-24,8],[-77,-79],[1,-104],[-81,111],[8,15],[-24,37],[10,39],[-7,29],[52,27],[0,27],[-20,21],[-37,6],[-54,-40],[-28,-4],[-37,22],[-31,32],[-59,4],[-4,-35],[-14,-19],[-6,-52],[-21,5],[-9,-45],[7,-55],[-25,1],[10,90],[-34,23],[7,46],[-19,31],[-1,25],[29,56],[-57,14],[-29,-1],[-49,28],[-23,-38],[-47,-18],[-64,-33],[-42,17],[-15,39],[-28,7],[-29,-9],[-25,-96],[-26,-7],[-3,-52],[-15,-57],[-21,-26],[7,-80],[-32,-59],[7,-17],[-11,-57],[6,-43],[42,-10],[12,7],[24,46],[25,8],[30,-9],[18,-26],[59,-27],[14,-15],[-15,-33],[-27,-9],[22,-91],[58,-110],[54,-21],[28,-20],[22,36],[29,-6],[25,11],[18,36],[43,-10],[1,-69],[37,-19],[20,-35],[31,-2],[35,11],[19,-39],[63,-54],[-10,-51],[28,-10],[17,50],[-11,37],[11,76],[38,-11],[7,-37],[52,-25],[39,-39],[38,5],[8,-31],[66,-36],[20,-36],[20,-14],[37,-88],[31,-16],[25,-37],[21,-55],[-25,-1],[-30,-54],[-37,43],[13,14],[15,57],[-29,-16],[-3,-40],[-34,32],[-54,22],[-44,-30],[-10,-21],[-49,-1],[-6,-31],[-189,134],[-188,157],[-48,29],[-76,31]],[[160196,115268],[26,37],[-25,6],[-22,-35],[-31,-12],[-31,6],[-23,66],[-9,51],[-24,7],[-15,-25],[-20,12],[-32,63],[-4,76],[-31,-10],[-34,76],[-63,-15],[-9,-76],[-29,-19],[22,-69],[23,-7],[16,-24],[-1,-39],[-17,-67],[14,-58],[-36,-4],[-32,28],[-37,7],[-55,2]],[[159717,115245],[11,256],[34,67],[-19,10],[-48,-2],[-36,10],[-54,-49],[-24,-30],[-14,25],[-43,27],[7,-32],[24,-27],[-46,-17],[-11,-34],[-33,38],[-7,-29],[-33,-19],[13,-81],[-14,-60],[-28,-50],[12,-33],[-44,-28],[-2,68],[-19,10],[4,55],[-25,-4],[-5,59],[7,42],[22,24],[37,-4],[18,11],[13,43],[1,58],[-4,84],[31,17],[33,46],[61,-20],[41,-72],[28,27],[27,62],[-13,24],[3,50],[13,27],[32,-4],[58,18],[3,51],[1,200],[28,-4],[16,29],[-12,37],[-29,47],[-5,69],[-42,45],[-47,-5],[-47,-35],[-5,31],[-38,9],[-35,40],[32,27],[9,54],[28,5],[25,58],[-5,47],[21,11],[60,0],[-12,-61],[8,-28],[41,4],[-4,-41],[23,4],[82,37],[56,-65],[21,1],[23,-18],[64,-85],[194,168],[34,25],[-50,55],[-3,79],[11,60],[-20,2],[-9,26],[-45,44],[-10,42],[39,3],[48,28],[-15,31],[-25,14],[-81,-5],[-29,-21],[-113,13],[3,-42],[-40,1],[-68,39],[-22,-30],[-54,7],[-39,38],[51,80],[-15,18],[-44,23],[-24,5],[-5,-36],[-22,-12],[19,77],[39,-17],[11,17],[28,-8],[20,51],[-33,39],[-33,8],[-22,27],[7,54],[-33,34],[-41,26],[-22,-11],[-33,-55],[-29,-83],[-30,2],[-130,-18],[5,-41],[-30,-27],[-15,-48],[-1,-54],[16,-33],[79,-40],[-43,-97],[-16,26],[-48,-9],[-9,48],[-26,4],[-21,-17],[-23,71],[-37,-2],[-19,17],[18,49],[189,410],[-195,30],[-77,-227],[-407,53],[22,101],[19,112],[72,17],[115,-16],[9,20],[47,4],[66,199],[-67,12],[1,18],[40,76],[-16,121],[-30,-10],[-65,1],[-29,-12],[-2,-65],[-31,-108],[-50,6],[-71,20],[13,41],[-67,16],[-19,11],[-1,-110],[4,-180],[-26,-22],[-40,19],[-65,0],[-44,30],[-22,-5],[-57,-40],[-42,-3],[-74,-130],[-36,-101],[28,-22],[-7,-53],[-25,-42],[-26,-11],[0,-74],[-8,-32],[13,-39],[-16,-13],[-4,-38],[-17,-30]],[[158182,116851],[-25,-5],[-34,12],[-8,18],[-54,10],[-20,-94],[-62,19],[23,43],[-8,21],[1,48],[-19,37],[-34,21],[0,44],[13,36],[49,-3],[-10,26],[-45,-7]],[[163741,126215],[43,31],[16,-22],[-1,-81],[26,-34],[34,-26],[51,13],[19,126],[31,55],[5,36]],[[163965,126313],[13,-13],[43,6],[20,-40],[22,25],[-19,29],[17,17],[19,43],[32,-27],[30,16],[12,24],[53,25]],[[164207,126418],[11,-38]],[[164218,126380],[-62,-65],[-27,-9]],[[164129,126306],[-36,-27],[-17,-43],[-18,-19],[-69,-29],[-25,-34],[-2,-41],[13,-46],[-15,-53],[-21,-15],[-66,-11],[-45,-40],[-80,-29],[-92,0],[-37,-21],[-56,-56]],[[163563,125842],[-15,42],[-30,51],[33,0],[33,13],[0,28],[-26,51],[19,54],[21,22],[12,-38],[26,5],[8,-41],[-16,-17],[-10,-35],[32,-23],[65,6],[35,20],[-47,54],[2,29],[38,28],[-23,46],[17,27],[-26,30],[30,21]],[[17336,151],[10,56],[30,50],[41,24],[34,4],[45,-32],[19,-37],[15,-69],[-1,-38],[-22,-76],[-31,-29],[-59,-4],[-34,10],[-18,16],[-27,66],[-2,59]],[[14972,1006],[13,76],[24,30],[64,27],[49,-11],[24,16],[25,3],[37,-19],[21,-26],[32,-127],[57,30],[19,2],[100,-12],[56,2],[28,-26],[16,-48],[-1,-137],[-5,-42],[-15,-35],[-27,-29],[-35,-10],[-41,16],[-58,-29],[-48,22],[-23,60],[-18,30],[-31,23],[-10,39],[-3,47],[-33,-28],[-21,-8],[-34,4],[-13,17],[-46,-13],[-31,7],[-54,69],[-18,46],[0,34]],[[13138,657],[24,69],[39,52],[33,17],[20,23],[105,15],[20,35],[17,8],[35,44],[27,49],[50,16],[21,-4],[63,-54],[32,9],[35,-4],[36,-14],[41,-64],[8,-56],[17,-22],[7,-39],[-2,-44],[-28,-63],[-34,-15],[-45,-6],[-43,16],[-71,-10],[-17,-11],[-19,-56],[-23,-32],[-89,-87],[-21,-10],[-56,16],[-18,29],[-28,11],[-30,56],[-46,12],[-50,55],[-10,59]],[[12743,8220],[5,39],[42,60],[26,14],[31,2],[61,-13],[27,-22],[8,-27],[4,-125],[-13,-39],[-20,-24],[-26,-9],[-78,3],[-35,16],[-21,24],[-11,39],[0,62]],[[102668,119331],[324,0],[333,0],[459,-1],[436,1],[371,1]],[[104591,119332],[0,-225],[3,-165],[358,0],[0,-55],[-31,-59],[4,-74],[8,-32],[-17,-29],[-2,-29],[-23,-86],[25,-111],[3,-71],[-19,-59],[-37,-38],[-5,-25],[6,-65],[13,-11],[39,-82],[-35,-41],[33,-109],[-8,-42],[-31,-28],[-3,-31],[-28,-46],[-20,-11],[-28,32],[-39,-22],[5,-54],[-11,-11],[-30,16],[-24,-34],[-38,-19],[-10,-39],[-32,8],[-30,-7],[-23,-19],[-29,12],[-20,-12],[-11,-31],[-29,-23],[-36,6],[-9,-28],[-78,-29],[-40,16],[-47,-24],[-26,-44],[-67,-36],[-66,-63],[-28,19],[-40,-37],[-26,-13],[-13,-46],[5,-33],[-20,-23],[-16,-41],[-31,5],[-18,-11],[-37,20],[-33,-4],[-21,10],[-16,-21],[-13,-55],[-24,-28],[-11,-34],[9,-63],[13,-22],[9,-56],[18,-6],[10,-35],[-19,-26],[5,-36],[-14,-48],[37,-48],[1,-67],[-26,-54],[-4,-64],[-19,-59],[-43,-38],[-24,-39],[-56,-8],[-25,4],[-53,28],[-66,3],[-27,28],[-24,40],[-31,20],[-10,40],[-57,65],[-16,-8],[-19,-55],[-31,4],[-14,28],[1,28],[-20,41],[-22,22],[-40,10],[-14,56],[3,59],[-11,22],[-28,4],[3,33],[-19,31],[-31,10],[-16,43],[-8,46],[4,32],[-21,10],[-21,41],[-59,6],[-37,11],[-34,30],[-6,49],[-13,10],[-2,-518],[0,-189],[-38,4],[-6,-34],[-18,-33],[-37,41],[-43,-30],[-1,-23],[-29,-33],[-46,-37],[34,-25],[55,-12],[24,-57],[53,-88],[43,41],[5,26],[35,3],[0,-33],[29,0],[20,20],[29,2],[8,65],[331,-474],[419,0],[32,32],[0,45],[55,7],[62,-4],[64,-47],[31,5],[39,-10],[26,-25],[16,-35],[17,-16],[81,-48],[173,-139],[23,-37],[12,-48],[14,-8],[101,-25],[132,-44],[66,-38],[31,-3],[64,15],[29,-11],[33,-35],[38,19],[20,-23],[-3,-35],[26,-13],[42,-60],[56,-16],[66,15],[43,-11],[21,30],[29,22],[-3,-90],[1,-167],[167,-3],[2,-405],[156,2],[337,0],[-8,-31],[-7,-78],[-29,-14],[-30,-50],[-8,-29],[3,-71],[25,-28],[8,-40],[-20,-7],[22,-49],[25,-4],[41,35],[69,24],[6,-32],[40,-13],[30,37],[17,-20],[-18,-48],[17,-37],[26,-29],[1,-39],[-10,-36],[15,-16],[0,-52],[-26,0],[-1,-31],[-56,-20],[-30,-36],[-1,-31],[27,-38],[-1,-47],[22,0],[8,-38],[22,0],[0,-106],[29,0],[1,-30],[23,-24],[60,-7],[-4,-42],[36,-24],[-4,-31],[30,-4],[21,-67],[-7,-29],[35,-6],[-22,-43],[-4,-39],[45,-49],[48,-44],[13,7],[33,-45],[1,-40],[15,-10],[20,-40],[16,23],[-6,71],[17,47],[-5,41],[75,44],[12,25],[44,10],[8,22],[27,22],[6,55],[36,17],[12,25],[-7,31],[26,7],[-7,-69],[6,-31],[36,21],[20,-8],[-55,-44],[-46,-67],[39,8],[33,16],[38,-19],[12,25],[27,21],[33,7],[-8,-40],[3,-59],[10,-33],[29,-3],[22,44],[-27,1],[7,68],[50,29],[20,-34],[68,6],[7,14],[71,22],[24,16],[14,-46],[25,-33],[38,-18],[52,-10],[40,-42],[46,-2],[35,22],[25,-38],[20,5],[34,-16],[-19,-33],[0,-28],[22,-14],[16,29],[-1,25],[35,-18],[15,-32],[29,-14],[11,-29],[45,-32],[21,0],[64,-42],[14,-38],[47,-20],[19,5],[7,34],[45,32],[31,4],[0,-453],[0,-476],[3,-118],[4,-38],[58,-331],[-24,-22],[-57,-29],[-6,-32],[-53,3],[-27,-7],[-18,-24],[-34,-9],[-8,-20],[-64,-20],[-34,-72],[-17,-20],[-69,51],[8,74],[-38,74],[22,104],[-30,1],[1,68],[-31,51],[-16,45],[1,43],[-34,46],[-33,-60],[-24,-27],[-14,-53],[8,-21],[-38,-83],[-61,-41],[-24,3],[-51,-49],[-21,-5],[-29,-35],[-44,-16],[40,-68],[37,-10],[22,-35],[27,40],[-4,30],[46,61],[43,41],[141,-390],[27,-70],[113,-316],[17,-114],[-108,0],[-7,52],[-93,-22],[-44,-28],[42,-127],[43,-43],[5,-64],[-82,0],[0,-34],[-54,1],[-18,33],[0,-226],[-38,5],[-20,-20],[-86,34],[-39,-4],[-38,-18],[-22,-29],[0,-30],[27,-18],[-2,-101],[-27,0],[0,-33],[-41,0],[1,-34],[-39,-1],[-1,29],[-40,0],[-12,-26],[-81,0],[0,34],[-28,-1],[0,38],[-28,7],[-39,-13],[-1,236],[-40,7],[-48,-8],[-179,-1],[0,202]],[[106392,110554],[163,2],[-3,400],[6,0],[0,202],[-40,2],[0,66],[-123,-1],[0,23]],[[106395,111248],[20,54],[3,36],[42,28],[37,376],[-54,-11],[1,49],[-30,19],[-14,30],[-31,16],[-47,1],[-7,-17],[-55,-1],[0,134],[-109,0],[0,30],[20,51],[-5,37],[-15,27],[0,55],[-83,0],[0,-99],[-27,16],[-54,4],[0,79],[-138,2]],[[105849,112164],[-55,0],[1,163],[-22,9],[-49,-2],[-29,-15],[-18,-47],[-20,-68],[-80,0],[-27,-11],[-1,-33],[-29,0],[1,-95],[-23,-70],[-39,0],[-5,-91],[10,-21],[0,-92],[-18,0],[-18,-34],[-25,0],[-4,24],[-32,68],[-23,-27],[-151,0],[0,134],[-109,0],[0,-67],[27,0],[0,-133],[-13,32],[-96,0],[0,-33],[-22,-1],[0,-62],[-41,0],[0,-101],[-27,0],[0,-33],[225,-1],[6,-34],[25,1],[2,-44],[-13,-35],[0,-223],[13,0],[0,-73]],[[105170,111149],[-52,1],[-25,-7],[-149,-70],[-34,-3],[-509,166],[-272,70],[-84,27],[-248,57],[-2,-153],[1,-289],[0,-289],[1,-53],[-1,-201],[0,-355],[0,-507],[-446,-2],[-120,-65],[-43,-26],[-42,-4],[0,-73],[-107,0],[0,-35],[-109,0],[1,-33],[-98,0],[-27,-131],[-2,-38],[-391,-1],[-229,-1],[0,84],[-290,-2],[-7,-67],[-81,-1],[7,51],[-34,0],[-28,16],[0,101],[16,0],[11,33],[27,-9],[0,28],[-18,25],[-9,59]],[[105170,111149],[28,-1],[0,-94],[81,0],[0,33],[54,0],[7,34],[20,0],[-3,100],[48,0],[9,49],[27,18],[27,1],[0,-33],[41,1]],[[105509,111257],[14,0],[-1,-101],[-54,-1],[-1,-33],[-26,-1],[0,-33],[81,3],[-1,-33],[28,0],[2,-72],[-27,1],[0,-9]],[[105524,110978],[-23,-12],[-58,-9],[-27,8],[-1,-314],[164,0],[0,-264],[-2,-596],[0,-442],[85,-5],[-4,96],[161,1],[0,102],[271,0],[-1,57],[163,0],[1,-67],[53,-1],[0,-102],[-54,-5],[0,-83],[-28,-3],[0,-399],[352,0],[0,-13],[343,0],[20,-18],[0,-51],[40,-47],[14,0],[0,-134],[47,0],[7,21],[57,1],[0,-85],[27,9],[54,0],[0,25],[37,1],[30,-15],[0,-52],[14,-50],[26,16],[36,0],[14,-18],[0,-48],[31,0]],[[107373,108482],[0,-34],[31,0],[-4,-33],[7,-67],[153,-2],[1,-97],[54,-49],[2,-21],[52,-67],[7,-62],[20,-17],[0,-90],[-107,0],[-2,-154],[-37,-1],[-1,-16],[-64,-1],[6,-101],[-105,-1],[-15,-31],[9,-57],[-34,-32],[1,-23],[24,-29],[3,-30],[-49,2],[49,-78],[0,-159],[20,1],[16,-24],[-29,-74],[319,1],[0,11],[366,0],[270,-2],[-1,-270],[-13,0],[-1,-334],[2,-1],[0,-315]],[[108323,106225],[-349,0],[-109,2],[-394,-4],[-117,1],[-331,157],[-313,146],[-276,129],[-341,158],[-163,76],[-349,161],[-477,217],[-339,152],[-241,109],[-400,176],[-528,245],[-456,209],[-282,128],[-309,141],[-407,183],[-381,169],[-296,131],[-4,29],[19,8],[-14,33],[17,25],[-18,74],[16,14],[6,47],[-15,52],[16,20],[27,-1],[5,21],[23,21],[21,40],[10,42],[39,94]],[[105849,112164],[0,-169],[14,-4],[0,-63],[-42,0],[0,-33],[-55,-2],[1,35],[-43,-1],[9,-34],[-14,-34],[-25,0],[18,-130],[-27,0],[0,-34],[-54,-1],[-1,-67],[28,2],[1,-88],[-1,-182]],[[105658,111359],[-162,-3],[0,-79],[13,-20]],[[105658,111359],[0,-34],[55,1]],[[105713,111326],[54,-1],[0,-58],[14,-3],[0,-73],[144,0],[0,-34],[20,0],[0,-34],[14,-32],[-29,0],[1,-168],[-29,-27],[0,-27],[-27,1],[-1,-43],[-27,-8],[-80,-1],[-1,-32],[-102,-1]],[[105664,110785],[-137,195],[-3,-2]],[[105713,111326],[0,67],[27,0],[27,33],[55,1],[16,-34],[-3,-33],[70,1],[0,-51],[-28,0],[0,-30],[28,12],[34,-1],[7,-16],[41,0],[0,-84],[81,0],[-1,-59],[-27,-8],[0,-34],[55,9],[62,43]],[[106157,111142],[20,-18],[0,-34],[27,1],[-3,-135],[-52,0],[11,-40],[0,-52],[14,0],[0,-109],[-109,-1]],[[106065,110754],[-379,-2],[-22,33]],[[106395,111248],[-14,20],[-26,-19],[-30,-44],[-93,-5],[0,-41],[-62,0],[-13,-17]],[[106392,110554],[-189,0],[-137,-3],[-1,203]],[[104591,119332],[308,0],[522,1],[475,0],[393,0],[533,1]],[[106822,119334],[413,-1],[135,3],[409,0],[496,3],[33,-14],[279,1],[505,1],[547,-1],[136,2],[402,1],[374,-1]],[[110551,119328],[0,-365],[0,-454],[0,-327],[-1,-297],[1,-597],[-1,-291],[0,-540],[-1,-541],[0,-370],[1,-437]],[[110550,115109],[0,-521],[0,-345],[0,-647],[-1,-342],[0,-459],[0,-402],[0,-289],[-1,-312],[1,-284],[0,-560],[-1,-145],[0,-566],[0,-671],[-1,-413],[1,-399]],[[110548,108754],[-283,0],[-1,-5],[-322,8],[-305,-2],[-475,1],[-346,-1],[-318,-1],[-162,2],[1,200],[-374,0],[-246,0],[-22,-6],[0,-35],[-27,-33],[0,-100],[-27,0],[0,-66],[-61,-5],[4,-35],[-26,2],[2,-31],[-26,2],[-1,-84],[-27,0],[0,50],[-14,17],[-25,-3],[-3,23],[-25,30],[-73,0],[-6,-64],[-22,-24],[31,-41],[29,-1],[5,-52],[-30,-18]],[[110548,108754],[-1,-615],[-1,-371],[-1,-469],[0,-584],[-1,-150],[0,-341]],[[110544,106224],[-316,3],[-394,0],[-342,0],[-249,1],[-197,-2],[-220,2],[-173,-2],[-330,-1]],[[124464,98973],[334,4],[197,3],[411,5],[347,6],[0,-17],[482,13],[21,7],[27,-22],[6,35],[14,12],[29,-35],[357,1],[-2,111],[1,519],[-2,349],[2,51],[-3,431],[-4,441],[0,523],[283,-142],[289,-146],[-4,71],[-15,66],[31,92],[32,28],[18,-3],[13,40],[38,64],[-6,40],[36,53],[0,43],[-18,17],[3,104],[-45,14],[0,25],[-46,0]],[[127290,101776],[46,33],[-2,29],[47,23],[2,62],[-29,13],[37,36],[-7,14],[-37,-13],[-19,63],[46,62],[-23,17],[22,27],[86,63],[20,-77],[39,-23]],[[127518,102105],[5,-13],[43,26],[32,-18],[1,-36],[27,-26],[29,-47],[29,-14],[6,-41],[47,1],[28,-34],[-6,-34],[-21,-17],[-3,-24],[21,-122],[18,-29],[42,31],[202,-3],[-14,-158],[-62,-46],[11,-25],[-44,-58],[33,-117],[19,-26],[-4,-70],[-29,-22],[17,-16],[-4,-33],[-23,-37],[10,-24],[-38,-31],[66,-152],[-143,-154],[-61,-70],[-104,-108],[36,-49],[68,-108],[42,-64],[-373,-403],[1,-260],[0,-473],[0,-550],[-365,-1],[-373,0],[1,-711],[5,-577],[2,-537],[-247,3],[1,-617],[-1,-156],[1,-346],[377,-3],[303,-1],[318,-2],[-120,-364],[-150,-417],[199,-40],[-1,-84],[26,-5],[11,-53],[-7,-55],[1,-50],[-47,10],[6,-35],[-14,-126],[20,-22],[22,5],[41,-8],[7,67],[88,-18],[-7,-66],[-38,7],[-4,-33],[38,-8],[-8,-63],[-12,0],[-12,-101],[-25,5],[-8,-66],[12,-33]],[[127462,94150],[-25,25],[-20,60],[7,30],[-53,18],[-3,-27],[-28,2],[-50,61],[-38,33],[5,28],[-9,32],[-28,3],[-65,-40],[5,29],[-17,13],[-20,-13],[-35,33],[-28,-20],[-5,34],[-27,4],[6,27],[-29,6],[-22,-13],[-18,17],[-14,-37],[-49,-18],[-19,14],[-4,43],[-34,14],[-8,26],[-41,50],[-30,-6],[9,45],[-7,33],[-43,-10],[-18,29],[-15,50],[-35,25],[-34,-27],[-32,16],[-53,-29],[-9,41],[-25,7],[-19,44],[-11,-50],[-31,12],[5,32],[-34,24],[-20,-21],[-37,0],[-18,37],[-24,13],[-39,-38],[-31,-1],[-12,26],[-34,42],[14,38],[3,37],[13,32],[-20,65],[-37,58],[-61,24],[-1,54],[-17,142],[-35,81],[-15,88],[2,72],[-49,48],[-4,98],[-31,64],[-10,63],[-19,35],[-23,17],[-34,1],[-19,33],[11,62],[-24,36],[-47,15],[-34,35],[-7,45],[24,23],[-41,55],[-19,46],[-23,-16],[-25,29],[3,36],[-11,65],[26,28],[7,37],[-18,26],[17,45],[-14,61],[16,19],[5,42],[-10,73],[-16,22],[2,71],[-17,33],[-21,9],[-23,-18],[-25,30],[13,36],[-11,35],[-54,5],[-14,25],[26,18],[27,35],[-5,30],[25,64],[7,76],[-13,62],[1,26],[25,63],[-3,23],[-25,27],[-49,-4],[10,105],[17,47],[-30,36],[-19,60],[-20,20],[-38,-28],[2,38],[-41,54],[-37,-9],[-19,-27],[-42,22],[12,28],[-17,27],[-26,3],[-30,-14],[-27,26],[-26,62],[-31,44],[-20,46],[-33,-1],[-16,23],[-18,75],[-31,-26],[-16,13],[-11,56],[-35,6],[-14,126],[-32,33],[-5,26],[17,55],[-10,30],[-27,14],[-15,41],[-16,11],[-3,31],[11,63],[-49,5],[-42,22],[-26,59],[-20,111],[-54,42],[-4,42],[-16,21],[-33,81],[-52,20],[-34,29],[-28,-1],[-24,28],[-60,40]],[[131098,119328],[0,-419],[0,-516],[-1,-637],[1,-365],[-253,-1],[-215,3],[0,-200],[423,-1],[0,-201],[-84,0],[7,-13],[-30,-35],[-6,-36],[-23,0],[-15,-21],[-7,-47],[-44,-68],[28,0],[-3,-83]],[[130876,116688],[-80,-1],[0,-504],[-170,-1],[-166,2],[-338,-1],[-2,-202],[-5,-206]],[[130115,115775],[-320,2],[-461,0],[-33,1],[1,232],[0,371],[-458,2],[-382,1],[0,-404],[5,0],[0,-335]],[[128467,115645],[-168,-1],[0,-67],[-28,1],[-4,-59],[-51,-8],[-16,-32],[-26,24],[-1,26],[-19,15],[-23,-32],[-57,11],[-22,50],[-20,-1],[1,-42],[-13,-24],[-85,49],[-16,26],[-121,-2],[1,-403],[6,1],[0,-267],[-3,-1],[1,-539],[-233,0],[-606,0],[-316,1],[0,-604],[-276,0],[0,101],[-161,0],[38,-46],[-15,-6],[9,-57],[-26,8],[-35,-15],[-30,11],[-35,-10],[-34,-60],[13,-40],[-32,-6],[-21,-94],[-17,-17],[-1,-70],[-15,-52],[13,-20],[-24,-18],[4,-56],[10,-31],[34,-31],[23,-45],[1,-18],[-23,-20]],[[126048,113175],[-43,35],[-5,31],[-18,21],[-33,12],[13,52],[-34,-1],[-8,25],[-50,-11],[-14,31],[-44,45],[-4,32],[-26,7],[-31,-39],[-2,-57],[15,-15],[-15,-42],[-3,-39],[-16,-7],[-30,28],[-17,-32],[-23,39],[-21,18],[-33,5],[-20,27],[-28,11],[-51,-3],[-31,12],[-23,-23],[0,-39],[-24,-39],[-38,-2],[-38,20],[-25,-20],[-23,14],[-25,-4],[-19,18],[-32,57],[-42,24],[-19,39],[-29,17],[-48,72],[-12,50],[-49,32],[-56,90],[-52,46],[-51,19],[-27,-37],[-46,-5],[0,483],[0,753],[0,489],[0,492],[0,401],[0,636],[0,307],[0,560],[0,364],[-526,-1],[-296,0],[-475,0],[-236,1],[-197,-2],[-627,1],[-531,0],[-103,2],[-506,0],[-638,0],[-594,0]],[[120069,118175],[1,748],[0,408]],[[128467,115645],[0,-67],[390,0],[-1,234],[112,0],[0,33],[139,1],[0,-67],[-28,0],[0,-100],[-56,0],[0,-101],[277,-1],[1,-402],[-1,-24],[1,-439],[-1,-173],[40,16],[46,-8],[29,-27],[26,3],[58,-32],[51,33],[25,30],[17,38],[45,33],[28,-15],[40,-75],[52,6],[48,40],[37,-38],[-3,-45],[15,-22],[55,-2],[21,-71],[31,-29],[45,27],[12,34],[-4,29],[-36,48],[31,39],[38,-8],[33,-64],[40,-7],[41,16],[29,24],[32,-5],[2,-37],[19,-42],[24,-24],[25,13],[34,82]],[[130326,114499],[49,13],[38,-33],[46,15],[0,-529],[-167,1],[1,-404],[-259,0],[-322,1],[-1,-400],[-82,-1],[0,-370],[-55,0],[0,-235],[-2,-134],[55,0],[0,-135]],[[129627,112288],[-16,-13]],[[129611,112275],[-46,-31],[-23,43],[-12,-27],[20,-114],[-21,-51],[-39,-57],[-29,-20],[-25,41],[-21,11],[-28,-16],[6,-30],[40,-9],[15,-45],[-42,-8],[-28,-22],[-2,-38],[14,-53],[-2,-47],[-15,-35],[-44,-29],[-48,17],[-30,36],[-11,34],[-20,15],[4,47],[-24,50],[1,35],[16,30],[24,2],[20,20],[-3,36],[-26,103],[-43,35],[-25,-6],[-26,-23],[-6,-65],[-11,-26],[-27,-5],[-23,19],[-32,42],[-10,-48],[-19,-24],[-22,7],[-27,-66],[-27,-30],[-82,0],[-27,12],[-31,45],[18,60],[2,52],[-12,24],[-50,38],[-17,3],[-90,-52],[-49,16],[-12,37],[8,19],[-10,62],[-17,30],[-39,30],[-44,23],[-41,-9],[-16,-20],[-19,-55],[-35,-42],[-49,-5],[6,-36],[-28,0],[-5,-32],[-34,-23],[-6,-43],[-44,-42],[-48,-20],[-21,1],[-51,40],[-47,28],[-27,-2],[-28,18],[-15,27],[42,38],[6,51],[-31,18],[26,33],[16,75],[-18,0],[-21,33],[-71,-26],[-39,-1],[-68,22],[1,26],[-31,34],[31,29],[-27,19],[-30,52],[2,31],[25,33],[19,52],[-20,27],[2,29],[-33,18],[-22,-22],[-24,-46],[-26,-25],[-49,6],[-37,19],[-14,22],[-38,-12],[-69,12],[-35,35],[-65,17],[-28,-18],[-12,-37],[-15,-11],[0,-55],[-20,-14],[-12,-37],[-38,1],[-5,-18],[-31,-5],[-32,-24],[-28,22],[-74,109],[-41,69],[-41,26],[-26,-9],[-37,18],[-45,-36],[-29,-36],[-16,6],[-56,-1],[-6,-19],[-28,-6],[-15,28],[-59,40],[-42,19],[-37,-1],[-9,-27],[-42,42],[-53,35],[-48,67],[-40,-14],[-24,35],[-34,-42],[-38,7],[-30,-15],[-38,27],[-64,-22],[-26,40],[-30,-28],[-52,17],[0,29],[-15,78],[6,47],[-19,6],[-9,57],[11,28],[-1,41]],[[130115,115775],[2,-143],[41,-4],[18,29],[15,-22],[42,-23],[24,1],[-4,43],[-37,27],[8,28],[-22,13],[46,30],[34,-51],[35,-6],[21,26],[-7,21],[25,32],[41,-10],[7,21],[0,-549],[0,-265],[-77,0],[-1,-474]],[[128477,102235],[50,98],[-32,15],[-16,25],[-27,-8],[-36,41],[-29,1],[-22,22],[-4,50],[-51,45],[-16,62]],[[128294,102586],[-6,21],[65,72],[25,74],[-33,49],[-25,71],[56,8],[30,-40],[13,-34],[49,40],[56,-3],[6,30],[-23,14],[-42,51],[-8,27],[8,39],[-24,171],[-34,25],[85,110],[9,-11],[247,328],[2,5]],[[128750,103633],[11,-54],[41,-15],[42,20],[-4,-36],[-30,-59],[17,-17],[32,35],[19,7],[21,28],[6,34],[24,-12],[-11,-42],[32,-5],[25,14],[5,-26],[-20,-22],[-5,-41],[12,-18],[35,-9],[11,-47],[-40,-19],[7,-30],[27,11],[57,-39],[19,20],[25,-18],[34,38],[7,-16],[34,-19],[27,-31],[50,-38],[11,-45],[-10,-29],[-2,-73],[-42,-124],[1,-52],[-195,-259],[295,-327],[-20,-35],[237,6],[202,4],[34,-37],[16,-92],[63,1],[166,-256],[200,-303],[-154,-166],[29,-37],[56,42],[360,295],[42,29],[66,251],[207,275],[33,-10],[21,-22],[40,9],[33,-25],[10,-26]],[[130959,102221],[42,-23],[4,-53],[24,-16],[5,-50],[-22,0],[2,-65],[46,-11],[-2,-27],[-53,-12],[-1,-32],[45,-81],[18,-1],[19,-27],[24,10],[17,-53],[14,2],[10,-69],[27,-16],[16,-52],[-20,-11],[3,-26],[54,-39],[37,-20],[-7,-27],[28,-75],[36,3],[14,-13]],[[131339,101437],[9,-9],[-50,-67],[46,-58],[-21,-26],[31,-39],[-20,-57],[21,-50],[-10,-41],[4,-32],[19,-22],[37,3],[19,-41],[44,-26],[-3,-19],[-25,-24],[8,-106],[18,-19],[3,-49],[94,3],[79,-40],[15,-29],[-10,-31],[17,-50],[29,-24],[69,-79],[0,-46],[18,-23],[59,-1],[41,19],[-4,-29],[18,-139]],[[131894,100286],[-58,-33],[-343,-259],[-44,-30],[-153,-99],[-320,-191],[-164,-111],[-120,-102],[-21,-58],[-35,-34],[-42,-12],[-33,-48],[-17,-68],[-36,-51],[-32,-26],[-48,-25],[-165,-110],[-138,-119],[-75,-74],[-126,-134],[-155,-184],[-48,-70],[-100,-159],[-33,-60],[-39,-165],[-39,-40],[-20,-7],[-45,-77],[-118,-254],[-63,-167]],[[129264,97519],[-90,19],[-31,15],[-131,-51],[-104,-2],[-340,1],[-56,-2],[-312,-3],[-27,52],[-25,16],[-6,49],[-17,26],[-47,6],[-38,31],[13,325],[-1,251],[214,256],[13,54],[-17,44],[31,29],[59,20],[36,-1],[0,-33],[26,-1],[-1,-33],[100,-7],[-9,-67],[26,-5],[-9,-66],[-25,5],[-2,-50],[65,-15],[-1,-28],[60,8],[-3,52],[61,103],[78,-2],[1,51],[-8,49],[-41,17],[-81,173],[146,291],[162,322],[337,378],[-7,75],[-26,59],[23,271],[-13,33],[27,78],[-28,34],[-22,50],[7,48],[-30,51],[-49,23],[-5,-26],[-26,-12],[-59,-3],[-20,39],[430,463],[89,92],[-212,338],[-203,310],[-150,-160],[-9,26],[-24,5],[-17,36],[-28,9],[-22,-9],[-5,39],[-56,48],[-9,29],[-33,15],[-40,48],[-13,29],[-54,10],[9,32],[-21,21],[-9,62],[-43,30],[-8,15],[-2,71],[-34,8],[-26,37],[-12,-12],[-37,34],[-3,35],[-23,58]],[[129018,109256],[2,-89],[41,-2],[11,28],[27,0],[27,37],[0,56],[19,28],[6,67],[23,4],[24,66],[-18,7],[-19,35],[-40,-12],[-40,10],[25,27],[45,9],[34,-18],[35,2],[16,14],[49,-1],[2,26],[72,44],[36,-16],[34,43],[29,-4],[11,-39],[0,-54],[-17,-50],[-61,-6],[1,19],[33,13],[-1,24],[-39,-1],[-2,-20],[-39,-12],[38,-23],[-27,-63],[30,-38],[41,0],[-1,34],[30,-1],[12,-29]],[[129467,109371],[-3,-334],[424,-5],[376,-3]],[[130264,109029],[36,-29],[4,-34],[-10,-22],[9,-24],[-7,-38],[24,-33],[28,-77],[43,-28],[23,-30],[1,-46],[-32,-64],[8,-39],[77,-37],[15,12],[37,-37],[58,-33],[15,4],[39,-17],[20,-44],[-1,-36],[17,-25],[62,-5],[8,-33],[19,-7],[32,-61],[12,-10],[47,6],[5,-22],[-32,-33],[15,-52],[34,-14],[52,9],[16,-33],[-19,-37],[4,-24],[-9,-49],[28,-33],[53,12],[-4,-42],[7,-38],[-4,-31],[19,-58]],[[129966,107340],[-196,418],[-82,181],[-70,-51],[-94,201],[-136,293],[-2,264],[1,392],[-358,8],[-6,38],[-26,6],[-27,-18],[4,-25],[-59,1]],[[128915,109048],[-3,151],[14,37],[82,1],[10,19]],[[131435,119329],[0,-133],[-36,0],[0,-343],[0,-453],[-4,0],[-1,-403],[29,0],[0,-67],[-28,0],[0,-100],[29,0],[-1,-33],[28,-1],[2,-200],[27,0],[0,-102],[50,0],[0,-100],[170,0],[1,-28],[21,-39],[17,5],[41,-15],[-1,-51],[25,-37],[-30,-37],[373,0],[200,-1],[-1,-81],[-27,0],[0,-71],[-20,-49],[-22,0],[-42,-55],[14,-39],[1,-41],[-21,-51],[39,-70],[40,-10],[2,-50],[-34,-40],[-20,-48],[-114,0],[-30,15],[-40,-13],[-60,-34],[-40,1],[-50,10],[-64,-26],[-71,-12],[-34,-51],[-27,29],[-31,-1],[-28,32],[1,95],[-16,22],[-2,34],[-267,-2],[-507,3]],[[131753,102988],[0,-48],[23,-7],[5,-31],[26,0],[1,-36],[-14,-19],[-30,41],[-18,-23],[-88,-2],[1,-218],[196,1],[14,30],[41,-8],[-4,-51],[30,-5],[35,-38],[13,13],[43,-12],[1,-67],[-26,-69],[10,-20]],[[132012,102419],[-11,-22],[-20,5],[-3,-55],[-34,-19],[-45,22],[-16,45],[-17,18],[3,23],[-16,25],[2,38],[-30,7],[1,29],[-182,-4],[-7,-15],[-47,-42]],[[131590,102474],[-99,82]],[[131491,102556],[-1,90],[52,-1],[-2,107],[-51,2],[-7,67],[-26,-1],[-1,34],[38,0],[17,10],[56,1],[-3,42],[9,22],[22,2],[-1,40],[20,63],[38,-37],[10,21],[23,3],[13,-33],[36,-19],[20,19]],[[133484,111555],[-4,-24],[-27,-15],[-42,16],[-50,-3],[-7,24],[36,22],[-6,33],[-33,-19],[-16,61],[-20,-31],[-29,11],[-24,28],[-19,-43],[-35,-8],[-14,23],[29,36],[-21,20],[-31,-23],[-82,18],[-26,43],[33,26],[-30,27],[-34,-15],[-25,20],[-21,-7],[-22,72],[-23,-14],[4,-39],[-51,2],[-26,24],[-16,39],[-38,21],[-17,35],[-2,36],[-30,-7],[-17,24],[15,32],[-33,16],[-7,55],[-20,-20],[-26,19],[-22,-5],[-58,14],[-15,51],[-8,64],[-16,4],[-10,-69],[-16,-11],[-15,36],[32,27],[-16,13],[-37,-22],[-29,27],[16,22],[-13,25],[-43,1],[-23,23],[-42,15],[-29,21],[-22,-6],[-4,-23],[-28,-32],[5,-49],[-9,-48],[-21,0],[0,34],[-29,-12],[11,-31],[-4,-34],[-40,-1],[-30,25],[-20,-26],[-40,-18],[-75,-3],[-26,11],[-24,-9],[-33,14],[6,33],[-51,-27],[-21,3],[0,42],[-45,-31],[-27,20],[5,24],[-7,56],[-23,21],[-23,2],[-25,18],[-11,-31],[-19,-3],[-17,-45],[-17,-7],[-43,9],[-37,-47],[-36,-7],[-34,25],[-36,-10],[-8,-44],[16,-28],[-30,-36],[-47,37],[-25,-3],[-5,-41],[-18,-17],[-58,38],[-90,78],[-34,-59],[-82,-20],[-35,-24],[-45,-9],[-56,23],[-27,0],[4,-37],[-37,22],[-42,-7],[1,-41],[-18,-18],[-8,-73],[-23,-47],[-64,-28],[-16,2],[-52,44],[-42,8],[-25,-61],[0,-50],[-20,-60],[-44,-25],[-20,8],[-18,66],[-66,90],[-10,34],[-17,16],[-112,-14],[-25,36],[-1,41],[-24,40],[-64,-9],[-22,20],[-56,31],[-9,26],[27,38],[22,14],[19,32],[-11,15],[-59,0],[-40,42],[-29,-3],[-12,-41],[-5,-73],[-10,-30],[-36,-43],[-75,-16],[-13,7],[-16,70],[-23,26],[-60,13],[-14,-50],[-15,-14],[-25,14],[-26,35],[-20,65],[-6,87],[-28,57],[-27,-9]],[[132252,103037],[32,18],[0,-29],[19,-11],[2,-25],[34,1],[21,-27],[-4,-74],[8,-17]],[[132364,102873],[16,-31],[2,-59],[16,-26],[50,30],[25,-24],[1,-35],[-25,-12],[-2,-61],[-22,-36],[-45,-30],[24,-44],[0,-67],[29,-2],[15,-24],[2,-54],[-47,-5],[0,-24],[-36,-1],[-20,-32],[-5,-33],[19,-32]],[[132361,102271],[21,-31],[-19,-25],[-29,40],[-26,-27],[-71,-7],[-31,-11]],[[132206,102210],[-28,135],[20,15],[40,-8],[3,44],[-51,9],[-22,-8]],[[132168,102397],[-33,147],[20,39],[27,17],[1,51],[32,1],[21,-50],[-5,-41],[44,-53],[-4,99],[35,-1],[-10,63],[40,21],[-25,31],[-6,47],[10,44],[-14,30],[0,83],[-23,39],[-21,-17],[-43,-2],[-27,-12],[-14,-43],[13,-21],[-33,-113],[-31,-15],[-5,-33],[4,-73],[-23,10],[-29,34],[17,19],[-17,58],[0,20],[-40,40],[-4,46],[0,130],[13,20],[36,-11],[39,0],[65,-19],[-1,20],[44,2],[31,33]],[[131339,101437],[79,105],[21,-27],[49,66],[127,-58],[29,-20],[52,19],[-11,24],[33,45],[26,-4],[17,30],[-4,26],[16,75],[39,26],[3,29],[-16,41],[9,30],[138,2],[30,164],[43,3],[2,-100],[-20,-64],[3,-285],[12,50],[-1,29],[88,3],[62,42],[-39,8],[-16,21],[8,42],[23,-17],[47,33],[48,-47],[29,17],[28,-10],[15,30],[23,4],[7,-24],[34,20],[-65,142],[26,205],[30,7],[-3,-30],[26,-59],[21,-9],[11,-32],[72,16]],[[132490,102005],[20,6],[54,105],[31,6],[43,-21],[31,-54],[57,-41],[83,-28],[44,33],[29,12],[55,2],[29,26],[14,34],[19,19],[23,-48],[26,-14],[34,6],[48,24],[38,3],[47,22],[87,27],[51,31],[37,-1],[36,-51],[-1,-22],[40,9],[37,31],[81,19],[17,16],[-3,39],[12,19],[27,-8],[16,51],[40,-13],[-6,638],[-133,-1],[-3,262],[-2,259],[10,9],[39,-39],[61,23],[14,-14],[26,14],[90,20],[23,41],[-3,37],[8,43],[27,4],[26,-14],[60,53],[54,-35],[48,-11],[35,-15],[5,-32],[20,-13],[12,-26],[21,-10],[8,-25],[-20,-32],[-10,-44],[16,-15],[37,-4],[21,-21],[21,1],[7,-35],[-11,-24],[6,-31],[53,3],[19,-17],[5,-25],[40,2],[5,-25],[37,-23],[27,11],[16,-24],[69,-19],[25,-52],[8,-58],[-3,-39],[-21,-110]],[[134542,102210],[-54,8],[-42,49],[-49,8],[-200,0],[-145,-68],[-386,-220],[-9,-1],[-194,-110],[-198,-126],[-40,-35],[23,-28],[19,-63],[-8,-50],[-21,-50],[-38,-44],[-41,-9],[-33,12],[-44,-53],[-15,-29],[-35,-35],[-106,-77],[-113,-90],[-81,-79],[-58,-48],[-136,-84],[-12,-83],[-18,-38],[-53,-56],[-65,-98],[-74,-90],[-41,-42],[-59,-48],[-27,-29],[-22,-57],[-49,-38],[-76,-28],[-29,0],[-119,-95]],[[132310,109993],[91,-1],[13,31],[4,40],[16,-5],[1,-266],[-1,-496],[30,27],[96,42],[36,47],[36,21],[45,0],[87,82],[26,0],[-19,-46],[15,-45],[-24,-11],[8,-54],[1,-62],[-35,-1],[-4,-44],[-14,-57],[-1,-102],[-10,-30],[-21,3],[7,-55],[21,-4],[45,26],[198,101],[98,160],[34,8],[14,-19],[37,5],[3,314],[307,-230],[184,2],[59,24],[58,59],[20,-13],[27,11],[6,40],[35,-4],[28,13],[24,-61],[-8,-26],[16,-23],[79,-15],[17,57],[47,39],[45,0],[24,-39],[-18,-37],[14,-37],[24,-5],[50,13]],[[134879,105863],[-490,-42],[-201,-55],[-19,-46],[-319,-92],[-325,-97],[-21,-15],[-20,30],[-35,9],[-36,26],[-18,-2],[-57,35],[-17,-6],[-52,49],[-55,-5],[-35,25],[-30,1],[-31,25],[-32,-8],[-22,6],[-27,25],[-113,60],[-2,8]],[[132922,105794],[-15,4],[3,70],[-25,72],[8,20],[-21,73],[-37,19],[1,14],[30,56],[-26,25],[-10,29],[3,35],[-14,15],[-50,22],[-15,-7],[-19,22],[12,82],[-20,15],[-29,52],[-29,28]],[[132669,106440],[217,234],[-44,36],[-5,29],[11,26],[-4,27],[-32,-21],[-18,24],[-4,71],[-39,76],[4,33],[-5,53],[-21,32],[5,51],[11,12],[-16,35],[-1,44],[33,-8],[29,23],[-17,22],[-58,26],[-6,25],[36,7],[1,21],[29,60],[-2,33],[-75,1],[-1,675],[-361,-4],[-386,-2],[-31,36],[26,100],[-11,41],[-26,31],[-2,23],[32,26],[-4,36],[20,25],[10,49],[-11,78],[16,44],[-2,29],[-35,23],[-35,47],[-21,58],[-51,42],[-3,15],[-84,93],[0,474],[20,-25],[20,-3],[13,-24],[57,-43],[21,-54],[64,-26],[56,-5],[24,5],[4,87],[-5,96],[20,21],[-5,30],[-27,26],[-19,43],[6,28],[-30,20],[7,36],[29,35],[20,-3],[3,107],[55,18],[45,62],[31,21],[21,65],[40,0],[7,17],[36,-3],[-4,53],[37,-21],[10,22],[-4,52],[20,5]],[[136188,137512],[130,1],[491,-1],[218,-10],[158,0],[2,167],[-2,267],[0,176],[-33,0],[1,203],[518,-3],[255,0],[-1,-202],[24,-1],[0,-208],[192,1],[1,-200],[171,0],[4,25],[30,25],[78,-8],[5,-52],[24,12],[26,51],[93,-52],[43,9],[-1,147],[28,11],[3,-34],[98,0],[0,67],[95,0],[1,-68],[20,-33],[-60,-62],[0,-38],[88,0],[0,41],[48,1],[0,-42],[161,0],[1,-413],[-1,-392],[-191,1],[-1,-402],[191,0],[0,50],[32,-1],[8,-25],[87,0],[-5,59],[29,8],[0,-42],[24,-33],[-47,-4],[30,-50],[33,1],[0,36],[383,0],[1,-226],[-2,-177],[9,1],[1,-607],[28,0],[39,88],[32,-3],[1,-24],[30,-36],[47,-23],[186,-12],[206,-1],[0,-187],[57,-31],[28,16],[39,67],[55,-5],[66,22],[13,-49],[14,-8],[60,0],[-4,23],[51,26],[-18,121],[-19,39],[-49,29],[11,36],[-32,55],[-10,48],[-1,53],[33,26],[-3,44],[20,11],[27,-9],[11,59],[-1,44],[46,-9],[29,-25],[4,60],[32,14],[-32,56],[36,49],[-8,45],[-280,-1],[2,405],[182,-1],[0,109],[-16,0],[-8,42],[22,0],[2,453],[336,0],[408,2],[229,-10],[193,0]],[[141773,137094],[1,-260],[-3,-753]],[[141771,136081],[-376,1],[-212,5],[0,-629],[1,-210],[-3,-296],[0,-260],[-188,1],[-106,-5]],[[140887,134688],[-237,0],[-378,3],[-214,-3],[2,-201],[188,2],[-1,-51],[-25,0],[2,-37],[23,-13],[1,-303],[-187,-1],[-1,-400],[-66,6],[-90,-21],[-31,1],[0,-175],[2,-233],[0,-169],[3,-394],[1,-482],[-1,-151]],[[143608,139636],[-1,-156],[-187,11],[-295,10],[-95,0],[0,-598],[-4,-200],[-394,4],[-3,-402],[66,-1],[-5,-202],[-368,1],[-169,1],[1,-206],[-382,0],[1,-216],[-1,-318],[1,-270]],[[140887,134688],[16,-25],[1,-38],[19,-23],[72,-16],[-24,-37],[8,-26],[62,-7],[24,7],[48,-15],[39,5],[29,-17],[-3,-262],[1,-149],[-26,-23],[-61,-24],[-34,3],[-42,-71],[-25,-25],[-11,-42],[10,-19],[563,2],[0,-30],[93,-1],[107,4],[193,0],[165,5]],[[142111,133864],[0,-223],[-5,-179],[-2,-609],[149,-3]],[[142253,132850],[-27,-69],[0,-67],[-54,2],[6,-41],[-26,-67],[-53,-37],[-41,11],[-14,-36],[-33,13],[2,-119],[17,-19],[-7,-25],[-25,-25],[0,-25],[36,-3],[27,-50],[16,10],[2,35],[54,22],[19,-26],[3,-117],[10,-60],[31,0],[2,-69],[-30,-32],[-31,-16]],[[142111,133864],[0,201],[7,0],[-3,202],[185,0],[48,32],[-2,-63],[50,-15],[20,46],[230,0],[24,-20],[28,-49],[23,19],[1,42],[15,7],[254,-4],[0,134],[-42,-33],[-16,4],[-5,80],[-20,-18],[-29,1],[0,34],[124,-1],[26,23],[23,-23],[205,-2],[379,-1],[0,-288],[1,-116],[-35,-1],[-3,-283],[1,-122]],[[143600,133650],[-4,-203],[37,-14],[12,-47],[-4,-25],[76,1],[3,-63],[-15,-14],[-79,2],[3,-19],[33,-7],[66,1],[7,-58],[-38,-1],[0,-24],[-56,-1],[0,-33],[36,-9],[105,9],[-2,-100]],[[143780,133045],[-31,0],[-6,33],[-80,21],[-72,-3],[-37,14],[-103,-31],[-6,-50],[-42,-2],[1,142],[-16,-22],[-40,9],[-26,-28],[-57,0],[-18,18],[12,33],[-9,51],[-29,17],[-289,1],[-85,2],[0,-407],[-246,-1],[-1,-49],[-81,-3],[-30,4],[-13,48],[-223,8]],[[141771,136081],[64,-1],[526,-1],[132,2],[1,-67],[-44,5],[-30,15],[-11,-30],[7,-36],[22,-9],[48,-59],[10,-22],[0,-199],[191,1],[-2,197],[190,3],[-1,203],[190,0],[-1,-335],[2,-276],[-1,-97],[382,-1],[-1,-107],[189,1],[-3,671],[1,137],[244,-2],[1,202],[202,-1],[409,1],[393,-1],[394,2],[121,2]],[[145088,133647],[-10,2],[-394,-2],[-44,3],[-517,0],[-298,0],[8,-35],[1,-76],[-20,-1],[-11,34],[-41,27],[2,52],[-164,-1]],[[143780,133045],[107,-1],[-1,-84],[53,-1],[21,-88],[14,-30],[445,0],[462,0],[285,0]],[[147513,105446],[-9,-26],[10,-73],[-27,-50],[-16,-91],[-49,-40],[-13,-26],[-66,10],[-23,10],[-23,-7],[-33,-28],[-22,-46],[-21,-8],[-24,-46],[18,-24],[-34,-31],[-41,-15],[-22,-35],[8,-70],[-30,-81],[-34,-31],[-12,-67],[-51,-37],[-15,-20],[11,-51],[-2,-62],[22,-2],[12,-63],[13,-7],[4,-56],[-16,-9],[13,-37],[16,-18],[3,-39],[-16,-45],[-11,-6],[-27,-50],[-24,-12],[-31,15],[-26,-2],[-46,-34],[-19,-57],[2,-35],[-3,-229],[-8,-180]],[[146851,103635],[-210,110],[-82,40],[-149,61],[-40,13],[-146,36],[-141,15],[-57,-3],[-21,10],[-82,16],[-90,10],[-106,-6],[-158,-24],[-150,-30],[-144,-39],[-101,-20],[-73,-20],[-44,-17],[-130,-26],[-58,-7],[-61,19],[-38,-18],[-117,-34],[-72,-13],[-122,-35]],[[150869,104628],[13,-22],[8,-52],[-50,-36],[-4,-38],[-21,-27],[14,-36],[-7,-23],[18,-36],[-21,-11],[-22,-75],[1,-42],[19,-19],[-23,-33],[-1,-28],[64,-10],[-39,-83],[24,-23],[12,-32],[-47,-20],[-15,-22],[20,-51],[19,-12],[6,-51],[0,-101],[160,0],[1,-137],[-3,-32],[0,-159],[-3,-274],[0,-260],[28,0],[0,-151],[54,0],[-1,-102],[-27,-41],[-15,-40],[2,-38],[-11,-75],[-23,-66],[-54,18],[-127,-100]],[[150818,102288],[-50,10],[-25,24],[-25,61],[-48,33],[-54,29],[-47,96],[-11,80],[-2,53],[-30,33],[-14,43],[-18,24],[-16,42],[-76,81],[-77,15],[-23,9],[-42,39],[-43,22],[-34,58],[-46,7],[-36,37],[-15,34],[-19,8],[-28,33],[-65,22],[-20,16],[-22,38],[-104,-27],[-22,-53],[-28,-27],[-68,-25],[-52,8],[-31,22],[-22,0],[-22,-39],[13,-40],[0,-44],[-30,-67],[-7,-41],[-29,-67],[-20,-22],[-43,-24],[-71,-5],[-60,25],[-39,7],[-28,-37],[-32,-22],[-44,-3],[-16,-87],[-31,-57],[-46,-21],[-23,-29],[-41,-19],[-42,-11],[-44,-35],[-26,-47],[-82,-100],[-59,-43],[-45,-23],[-38,-10],[-64,-43],[-18,-21],[-78,-61],[-103,-45],[-34,-6],[-27,-19],[-38,-7],[-35,12],[-50,65],[-22,17],[-32,6],[-46,27],[-57,56],[-40,22],[-90,17],[-22,-35],[-33,-26],[-59,0],[-28,16],[-52,81],[-24,51],[-27,87],[-16,64],[-21,125],[-7,98],[8,85],[18,48],[20,28],[-93,25],[-55,37],[-75,80],[-71,120],[-121,67],[-92,76],[-50,69],[-42,44],[-100,85],[-90,68],[-83,50]],[[153280,117682],[28,-14],[11,-39],[-6,-50],[-18,-9],[-1,-52],[37,-62],[45,10],[44,-58],[28,-132],[215,25],[23,-9],[181,-3],[45,-46],[44,2],[31,-25],[17,10],[22,-38],[31,6],[27,-17],[52,-77],[48,-33],[25,-61],[-23,-169],[15,-101],[-16,-125],[15,-68]],[[154200,116547],[-20,-5],[-27,-61],[-88,-173],[-126,-189],[-10,-7],[-50,-101],[-46,-15],[-63,20],[-66,-12],[-40,16],[-10,18],[-42,17],[-20,54],[-21,-12],[-27,20],[-25,-9],[-9,-32],[-38,-3],[-1,-17],[-49,-23],[-23,-74],[-206,-41],[-23,40],[-24,23],[-28,-30],[-86,-6],[-118,-42],[-89,69],[-69,28],[-63,73],[5,22],[36,39],[-27,49],[-7,34],[10,32],[-23,39],[9,27],[20,17],[0,25],[-24,36],[-35,10],[-35,35],[-15,-39],[-47,-71],[-48,-4],[-25,-43],[-36,-4],[-9,-19],[-74,-11],[-26,-16],[-27,1],[-24,-22],[-41,-14],[-19,38],[-26,-24],[-2,-51],[-35,-53],[-27,4],[-16,-14],[1,-27],[28,-22],[25,2],[41,-39],[31,5],[30,-15],[15,-23],[-17,-40],[9,-43],[63,3],[-8,-35],[31,-35],[-29,-56],[26,-37],[39,1],[39,37],[44,31],[79,-24],[-7,36],[25,27],[17,-8],[19,29],[106,-76],[-23,-59],[16,-97],[14,-28],[-31,-47],[-39,-86],[-7,-36],[-25,-13],[-32,-61],[-11,-213]],[[152427,104494],[4,-327],[-1,-103],[0,-348],[-1,-258],[156,11],[364,5],[124,0],[0,101],[148,-1],[301,7]],[[153522,103581],[88,4],[11,-13],[1,-73],[-6,-77],[8,-5],[2,-89],[-14,-25],[-3,-79],[15,-54],[-38,2],[-12,-24],[61,-59],[-2,-75],[46,-147],[5,-97],[-238,-5],[-15,-24],[-63,-60],[-45,-5],[-29,-11],[-23,-29],[-12,-57],[-13,-20],[-58,-1],[-48,-18],[-35,-48],[-32,0],[-1,-21],[-42,-6],[-35,15],[-65,8],[-22,-9],[-77,-57],[-83,0],[0,44],[-37,-10],[-102,0],[8,-12],[-1,-106],[14,0],[10,-50],[20,-5],[10,-44],[53,-2],[37,6],[-15,-37],[25,-66],[-3,-58],[14,-26],[19,-6],[-11,-42],[13,-37],[-2,-114],[4,-35],[-67,0],[34,-71],[35,-117]],[[152806,101634],[19,-101],[27,-108],[0,-47],[8,-31],[-53,-35],[-36,0],[0,-51],[15,-1],[-6,-49],[-26,4],[-1,-125],[12,-48],[-165,-238],[-21,24],[-62,41],[-25,-9],[-37,52],[-56,39],[-33,-24],[-35,-5],[-40,5],[-18,-19],[-31,-13],[-26,5],[-14,-39],[-16,-9],[-53,28],[-46,11],[-23,18],[-34,-7],[-24,-31],[-45,-37],[1,-9],[-147,-193]],[[151815,100632],[-15,64],[7,43],[13,27],[-14,42],[4,62],[-17,31],[-7,34],[-34,2],[-41,29],[-31,13],[-26,27],[-44,-16],[-34,-42],[-39,-14],[-30,5],[-51,-12],[-55,18],[-52,54],[-16,39],[-20,82],[2,44],[-11,29],[1,67],[-34,41],[-7,20],[-25,12],[-32,42],[-9,34],[-2,71],[4,64],[-33,42],[-41,21],[-19,23],[-17,53],[0,33],[-32,12],[-37,46],[-13,53],[-18,17],[-27,6],[-57,34],[-22,24],[-16,40],[-22,119],[-8,81],[0,68],[6,32],[-26,40]],[[152129,98470],[0,137],[104,2],[0,76],[54,34],[49,-6],[0,-86],[19,-25],[39,10],[0,33],[33,16]],[[152427,98661],[7,47],[46,-5],[0,-59],[45,0],[0,-68],[28,-28],[15,22],[36,28],[25,-37],[7,-38],[-1,-116],[27,0],[0,-33],[26,0],[0,-39],[-39,-10],[0,-53],[-48,-4],[3,-79]],[[152604,98189],[-12,-136],[-13,-62],[-26,-55],[-13,-93],[-53,-51],[-26,-68],[-25,-25]],[[152436,97699],[-157,-1],[-79,-47],[-223,-127],[-122,0]],[[151855,97524],[3,83],[15,70],[-3,21]],[[151963,99520],[424,0],[365,3],[0,101],[313,0],[-2,-383]],[[153063,99241],[0,-125],[-79,1],[0,-202],[-178,0],[-257,-2],[-145,2],[-32,-54],[-13,-37],[1,-90],[-5,-21],[44,12],[3,-52],[25,-12]],[[151739,98706],[5,63],[-14,28],[-5,47],[5,51],[-10,100],[3,30],[23,60],[20,23],[66,18],[28,-9],[11,51],[27,43],[4,47],[-11,33],[-1,47],[37,112],[24,33],[12,37]],[[152436,97699],[253,1],[1,-108],[-39,6],[-67,-19],[11,-59],[0,-42],[63,-120],[22,-51],[45,-5],[-1,-202],[30,-2],[-3,-410],[311,-3],[-2,-190],[0,-216],[-311,2],[-1,-203],[-286,2]],[[152462,96080],[-35,79],[-13,41],[-50,107],[-21,84],[-16,36],[-7,54],[-44,139],[-15,60],[-25,38],[-39,38],[-27,52],[-14,79],[-73,114],[-43,105],[-47,61],[-30,81],[-17,61],[-79,135],[-12,80]],[[152806,101634],[34,26],[5,-16],[47,1],[-19,57],[-20,27],[59,1],[13,34],[-3,26],[74,1],[40,21],[44,38],[56,-4],[26,-29],[102,-1],[36,-67],[100,4],[1,-69],[-26,-18],[118,-426],[42,1],[0,-83],[131,3],[51,-27],[3,-188],[33,-19],[15,-67],[27,-52],[-4,-66]],[[153791,100742],[-50,-4],[-53,15],[1,-15],[-96,2],[-194,0],[-75,-2],[4,-17],[1,-143],[-7,-9],[-72,0],[1,-51],[-14,-3],[0,54],[-13,-1],[0,-219],[-2,-346],[1,-143],[-6,-628]],[[153217,99232],[-44,-8],[-14,29],[-20,12],[-51,-7],[-25,-17]],[[151963,99520],[13,37],[-2,53],[8,31],[-10,36],[0,71],[15,108],[18,39],[-20,69],[-39,72],[-5,42],[-31,80],[-5,46],[5,33],[-21,43],[-19,67],[-1,47],[30,107],[-16,39],[-5,36],[-39,22],[-24,34]],[[153217,99232],[23,-27],[5,-88],[33,-1],[6,-38],[0,-97],[-11,0],[0,-59],[65,-7],[0,-24],[67,-18],[0,-51],[13,-57],[-1,-77],[-24,-78],[21,-10],[9,-59],[39,2],[18,-8]],[[153480,98535],[-6,-50],[17,-9],[-6,-67],[45,0],[0,-43],[20,-13],[0,-38],[-23,-10],[0,-151],[-13,-33],[-48,-17],[-14,23],[-37,-16],[-2,-43],[-36,58],[-119,11],[-60,36],[-132,-1],[-2,131],[-36,-44],[-36,-9],[-70,-39],[-51,14],[-27,33],[-22,-32],[-53,-25],[-14,13],[-29,-32],[-53,71],[-69,-64]],[[154179,104790],[1,-25],[-18,-59],[-24,-31],[-12,-82],[-2,-61],[3,-87],[8,-70],[32,-93],[5,-45],[-3,-61],[45,-51],[13,-39],[-7,-68],[-22,-40],[0,-54],[7,-89],[17,-107]],[[154222,103728],[-184,-2],[5,-338],[-166,-5],[0,37],[-45,-5],[-21,19],[-68,18],[-42,-28],[-46,-1]],[[153655,103423],[-19,49],[2,68],[18,44],[-44,12],[15,89],[13,30],[-116,2],[0,17],[24,38],[7,58],[20,5],[0,41],[22,8],[13,-22],[39,22],[25,-14],[13,18],[47,-19],[14,16],[34,-16],[-50,-24],[-16,8],[-4,-48],[66,14],[3,38],[33,-1],[32,-19],[0,29],[-42,45],[-49,5],[5,22],[29,18],[-3,45],[18,54],[-22,19],[-22,0],[-21,-37],[-35,20],[-14,31],[3,69],[10,48],[-51,2],[-28,26],[-8,-14],[-29,47],[-18,8],[-48,68],[-26,-35],[-8,-36],[38,-119],[42,-35],[-18,-21],[-20,0],[-18,54],[-30,19],[-27,1],[80,-116],[19,0],[4,-34],[21,-30],[-13,-29],[-24,-14],[1,-54],[-29,-4],[21,-36],[2,-64],[-33,0],[-34,19],[-57,-32],[30,-35],[0,-25],[29,-1],[5,-51],[26,-32],[20,-51]],[[153655,103423],[-1,-89],[-14,-46],[1,-79],[28,-50],[73,-59],[23,-26],[16,-42],[1,-33],[-14,-51],[14,-93],[29,-84],[23,-84],[29,-45],[10,-29],[-19,-31],[-23,23],[-58,17],[2,-72],[-66,-14],[-28,-75],[7,-69],[51,-24],[1,-43],[-14,-40],[-27,-17],[-13,12],[-29,-15],[0,31],[-19,16],[-20,-10],[-15,27],[-25,-1],[-1,37],[26,1],[-2,26],[-139,93],[-70,27],[1,-36],[-18,-22],[-8,-33],[-78,3],[1,-67],[-53,-1],[-1,-80],[-33,-9],[-44,-26],[-39,-2],[-56,-36],[-1,-283],[46,54],[35,16],[63,5],[51,29],[30,-24],[18,23],[16,-12],[48,10],[28,14],[1,-80],[104,2],[2,-134],[53,1],[0,-136],[115,2],[12,-27],[1,-41],[-24,-9],[-9,-28],[14,-49],[26,-12],[25,-64],[9,-64],[24,-37],[10,-60],[31,-9],[27,9],[24,-6],[14,-36],[30,-16],[44,-125],[4,-60],[21,-10],[35,8],[19,-31],[-2,-45],[14,-4],[23,-41],[46,-28],[35,-58],[10,-32],[32,-21],[-10,-18]],[[154158,100776],[-12,-49],[24,-21],[0,-55],[-11,-37],[8,-27],[-18,-16],[22,-59],[-9,-34],[26,-2],[33,-29],[149,-4],[2,-24],[23,-46],[-4,-36],[-95,0],[-13,-40],[-30,29],[-15,44],[-57,-11],[11,35],[0,39],[-47,19],[-21,-55],[-59,6],[9,-54],[-2,-67],[-12,-59],[-30,-52],[-59,-3],[0,34],[-47,0],[0,-106],[60,-63],[18,-25],[0,-30],[25,-44],[23,2],[29,19],[55,-2],[1,-21],[-43,-13],[-24,-19],[2,-46]],[[154070,99854],[4,-58],[50,1],[-2,-41],[11,-44],[-32,-15],[0,-70],[-6,-68],[-87,-1],[1,56],[35,44],[-20,9],[-21,39],[-23,14],[-3,44],[-46,17],[0,46],[12,26],[0,76],[-13,27],[-68,-1],[-23,-34],[-148,3],[-2,367],[14,0],[5,44],[178,0],[-1,51],[-28,0],[2,159],[-75,0],[7,45],[0,152]],[[154070,99854],[28,9],[53,1],[1,-40],[31,-27]],[[153711,98594],[-14,-33],[-13,8],[-90,-2],[-3,-40],[-31,-15],[-17,15],[-63,8]],[[154200,116547],[39,-10],[-29,-35],[-14,-52],[-5,-52],[-20,-24],[0,-50],[36,-33],[19,13],[-10,50],[19,47],[20,6],[-12,57],[15,30],[6,39],[22,25],[35,15],[15,19],[34,-15],[33,31],[14,-4],[85,15],[2,-35],[15,-19],[5,-34],[30,-30]],[[154554,116501],[25,-18],[5,-26],[33,-42],[7,-57],[28,-16],[47,11],[32,-18],[26,-55],[22,-23],[20,-63],[46,-51],[-28,-37],[15,-32],[-20,-16],[-18,-40],[-5,-46],[10,-35],[-2,-37],[-14,-24],[29,-53],[-9,-29],[13,-40],[-25,-50],[1,-95],[-46,-29],[9,-28],[37,20],[35,-29],[-15,-28],[-38,2],[-23,-24],[5,-21],[-32,-62],[-22,-85],[11,-46],[-9,-64],[12,-23],[7,-61],[-6,-64],[-43,-18]],[[154926,97690],[150,2],[1,-195],[153,-1]],[[155230,97496],[2,-253],[2,-358],[0,-399],[-114,-135],[-131,-145],[-83,-96]],[[154906,96110],[-94,-439],[-359,-2]],[[154453,95669],[-259,2],[-153,-1],[0,34],[-38,1],[-1,-35],[-167,2],[-1,-189],[2,-202]],[[152623,95715],[-5,35],[-57,112],[-32,55],[-67,163]],[[154222,103728],[55,-296],[47,-289],[32,-134],[17,-48],[23,-107],[7,-122],[29,-144],[30,-86],[29,-131],[46,-161],[55,-157],[68,-222],[-6,-1],[72,-221],[70,-200],[24,-89],[53,-155],[50,-90],[46,-100],[129,-289],[66,-145],[92,-195]],[[155256,100346],[-109,1],[-233,0],[-137,-2]],[[154777,100345],[-79,-2],[-4,109],[-25,24],[-182,-2],[-1,206],[-37,83],[-69,-17],[-22,15],[-155,-2],[-4,34],[-41,-17]],[[154777,100345],[5,-410],[-259,-2],[13,-48],[13,0],[0,-68],[-58,-1]],[[154453,95669],[42,-35],[28,-1],[1,-202],[76,1],[2,-118],[-77,-1],[2,-205],[3,-212],[-8,-12],[-148,-2],[-25,-11],[-51,-1],[5,-392],[255,7],[243,4],[114,3],[1,-200],[20,-1],[248,-56],[21,-3],[384,-2],[8,-1]],[[155597,94229],[-5,-12],[10,-65],[2,-191],[103,-1],[1,-55],[46,6],[11,-34]],[[155897,93569],[-53,-2],[0,-39],[-31,-23],[2,-113],[-44,-1],[1,-49]],[[153827,93435],[-27,18],[-16,-45],[-42,-41]],[[154881,118317],[-27,-49],[7,-46],[-21,-46],[-56,-96],[-18,-15],[43,-78],[-31,-40],[44,-42],[12,-38],[24,2],[19,-17],[19,-48],[37,-31],[-7,-208],[39,11],[63,30],[17,-14],[30,19],[-2,32],[18,9],[29,-23],[101,10],[19,-38],[33,1],[33,75],[63,-35],[17,17],[53,19],[17,-14],[3,-48],[74,-5],[56,12],[346,-5],[310,-5],[-12,-578],[-5,-143]],[[156228,116892],[-21,-14],[-31,60],[-21,5],[-2,72],[-36,-7],[-23,65],[-48,7],[-63,50],[3,43],[29,25],[-5,36],[41,28],[-18,16],[-29,4],[-22,35],[11,16],[-16,49],[-52,-43],[-10,30],[-32,51],[-18,-17],[21,-26],[-14,-40],[19,-41],[32,-91],[24,-26],[-1,-38],[-22,-13],[12,-44],[-46,-28],[-9,-46],[83,1],[0,63],[23,5],[22,-15],[56,-127],[28,-38],[-24,-29],[-33,-74],[-35,-40],[-21,-44],[-73,-2],[-7,-36],[8,-26],[-27,-38],[-45,9],[-34,-18],[-20,8],[-9,-55],[15,-69],[-29,-2],[-48,12],[-39,30],[-32,52],[-51,30],[-24,-19],[4,-23],[-19,-27],[5,-18],[36,-42],[-14,-46],[6,-23],[51,-25],[-12,-39],[-22,-22],[-6,-43],[-33,-31],[-17,21],[-32,-9],[-9,-17],[-80,-10],[-22,-17],[-106,-14],[-34,4],[-14,-31],[-27,-28],[-37,-2],[-69,-22],[-3,-14]],[[155111,116110],[-25,150],[38,157],[-24,20],[-69,12],[-31,11],[-4,-44],[-33,-48],[-17,24],[-18,-14],[-98,13],[-16,14],[-4,140],[13,21],[44,39],[53,-14],[49,4],[49,152],[30,5],[8,24],[-49,43],[16,27],[-22,36],[8,36],[-39,29],[-252,5],[-1,-31],[-56,-232],[-35,-72],[-72,-116]],[[155111,116110],[25,-145],[4,-90],[-74,1],[-6,-30],[56,-182],[-22,-31],[17,-15],[36,-52],[-18,-29],[-20,-8],[-22,-39],[-4,-30],[-34,26],[-46,3],[2,34],[31,-16],[25,43],[1,43],[-43,-35],[-38,4],[-33,-11],[-36,-41],[-36,-7],[-30,-43],[5,-51],[-7,-11],[32,-35],[-44,-12],[-18,-41],[-33,-13],[-15,-36],[24,-6],[2,-111],[39,10],[14,-62],[-42,-20],[53,-77],[58,-55],[21,50],[-15,37],[2,113],[25,51],[24,23],[41,3],[31,40],[16,-26],[-38,-64],[30,-20],[12,25],[26,-8],[32,-52],[-10,-19],[30,-78],[26,20],[-26,40],[26,39],[-16,21],[15,32]],[[155166,115167],[24,-16],[35,31],[16,-4],[47,42],[41,5],[27,22],[78,-60],[-123,-145],[31,-29],[-30,-56],[-27,0],[-19,-18],[-5,-40],[23,-31],[69,-75],[-17,-115],[-14,-53],[-2,-171],[12,-40],[-10,-57],[2,-35],[-9,-37]],[[155256,100346],[61,-128],[160,-294],[23,-98],[8,-59],[40,-111],[12,-46],[2,-45],[-19,-63],[-60,-80],[-23,-128],[-16,-150],[16,-85],[54,-363],[62,-178],[49,-136],[47,-115],[39,-118],[73,-209],[50,-224],[3,-33],[21,-42],[28,-148]],[[155886,97493],[-316,2],[-340,1]],[[154906,96110],[214,0],[267,-2],[0,-67],[26,-1],[154,-201],[86,-109],[42,-63],[36,-64],[51,-3],[-1,-34],[26,-2],[-1,-35],[20,-2],[3,89],[57,-7],[-2,-49],[38,-1],[-8,-34],[51,8],[19,-41],[43,0],[23,38],[76,-3],[1,33],[34,-4],[-3,27],[-71,13],[3,55],[28,12],[2,67],[38,-2],[8,33],[44,-1],[14,-9],[-1,-47]],[[156136,95425],[1,25],[-39,10],[-245,10],[-143,8],[19,-13],[24,-70],[24,-34],[87,-79],[44,-79],[28,-59],[17,-65],[0,-104],[-23,-137],[-1,-58],[-24,-47],[1,-50],[-72,31],[-2,-291],[120,2],[37,12],[9,-49],[34,58],[5,48],[48,1],[2,71],[26,-4],[5,66],[-6,22]],[[155832,94268],[-3,58],[-106,-138],[-118,42],[-8,-1]],[[156228,116892],[31,-5],[33,34],[-18,34],[40,68],[15,-26],[18,38],[-13,17],[24,37],[3,64],[-12,20],[19,29],[6,29],[35,-26],[7,16],[43,-1],[53,-39],[29,-3],[4,-23],[82,13],[14,17],[6,106],[-20,59],[24,50],[55,58],[27,6],[13,-22],[28,-14],[1,-53],[-48,-7],[-23,-48],[0,-47],[50,14],[-6,-67],[-19,-5],[1,-36],[-31,-23],[-3,-28],[75,24],[17,-42],[-55,-67],[-25,-43],[-60,19],[-40,3],[-18,-14],[-51,-8],[-9,-25],[-37,-25],[4,99],[11,38],[-18,15],[10,31],[-28,16],[0,24],[-40,-3],[-29,-45],[-11,-99],[-25,-30],[14,-74],[-11,-18],[-101,-72]],[[156269,116832],[-42,-6]],[[156227,116826],[-52,15],[-2,-34],[19,-48],[-56,-25],[-29,-2],[-45,-34],[-31,-35],[-60,-22],[-36,-52],[-18,1],[-15,-47],[-31,-20],[-9,-21],[-31,0],[-14,-41],[-31,-36],[3,-32],[-23,-19],[-47,-12],[-35,14],[-31,-42],[10,-41],[-54,-54],[1,-38],[-28,-46],[-16,21],[-44,-52],[-4,-41],[-33,0],[-38,14],[-7,-15],[-75,27],[0,-12],[-67,-46],[-3,-42],[-36,25],[-30,-5],[-5,-43],[29,-44],[-12,-65],[-24,0],[0,-57],[-19,-16],[-1,-38],[44,-91],[-32,-27],[-21,-64],[-20,-40],[41,-37],[41,-180],[25,-20],[-9,-29],[-42,-54],[-5,-29],[-27,-5],[-27,23],[1,-46]],[[155886,97493],[28,-108],[26,-57],[2,-52],[23,-89],[38,-114],[31,-103],[67,-211],[50,-136],[2,-39],[21,-89],[27,-78],[39,-143],[25,-137],[42,-205],[33,-189],[0,-45]],[[156067,93347],[38,-48],[52,-50]],[[156157,93249],[2,-62],[-11,-30],[1,-68],[-11,-33],[36,-5],[32,-25],[27,-63],[-1,-44],[-20,-55],[-37,-32],[-56,0],[-3,-66],[-15,-46],[1,-43],[-24,-92],[27,-27],[20,-51],[-1,-59],[-60,-142]],[[156237,94106],[-18,-271],[-24,-168],[9,-54],[9,-96],[-4,-100],[-13,-87],[-15,-44],[-24,-37]],[[155484,127372],[249,0],[136,143],[105,113],[41,-55],[2,-35],[-23,-20],[37,-30]],[[156031,127488],[-3,-36],[32,-29],[15,-34],[36,-10],[13,-60],[58,-46],[-17,-15],[18,-35],[74,-49],[32,-39],[34,7],[6,-39],[-37,-42],[30,-27],[36,32],[51,-43],[48,-15],[1,-85],[32,5],[11,-20],[34,6],[27,28],[-2,49],[40,18],[42,-11],[20,138],[14,40],[22,-4],[-1,38],[-28,79],[13,38]],[[156682,127327],[11,-44],[16,-1],[54,-37],[-30,-24],[50,-35],[10,12],[50,-6],[73,14],[21,-16],[28,-55],[12,1],[88,-60],[54,27],[35,-2],[30,20],[20,26],[34,-55],[36,-8],[-28,-37],[45,-37],[12,-58],[55,-9],[11,-13],[42,-10],[21,38],[19,60],[25,17],[261,-209],[-56,-109],[-9,-30],[-21,-3],[4,-38],[-32,-5],[-11,-75],[-27,-44],[-41,21],[-25,-48],[-46,-23],[-18,-51],[-41,-59]],[[155482,131650],[297,66],[396,89],[500,282]],[[156675,132087],[0,-326],[1,-245]],[[156676,131516],[-32,-11],[-56,-44],[-40,-23],[-49,-9],[-47,-37],[-42,-20],[-98,-74],[-76,-50],[31,-27],[29,-57],[-172,-92],[-35,-1],[14,-32],[-35,-20],[9,-32],[-95,-43],[-3,-121],[-95,1],[-2,-184],[95,-1],[-1,-95],[290,3],[539,3],[107,-4],[-1,-538],[-49,0],[-10,44],[-48,1],[-12,-45],[-126,1],[0,8],[-95,2],[-1,-46],[-32,-10],[-1,-25],[-67,-30],[0,-27],[-25,-1],[-1,-27],[-22,-29],[-32,0],[2,-29],[-27,1],[2,-28],[-37,-1],[0,-30],[-27,2],[-2,-25],[0,-736],[310,3],[171,-1],[21,-23],[-8,-44],[11,-16],[0,-48],[44,28],[6,26],[-16,24],[37,10],[19,-28],[28,29],[-2,37],[106,-17],[38,-15],[7,-87],[22,-7],[48,45],[19,30],[2,44],[31,-10],[37,75],[-7,25],[16,38],[51,-143],[23,-36],[-11,-21],[-3,-104],[142,26],[101,23],[1,-147],[-8,-318]],[[157167,127494],[-22,9],[-48,-21],[-27,41],[-23,-1],[-55,51],[-15,45],[23,37],[-15,19],[-24,-13],[-33,51],[-12,36],[-42,34],[-3,25],[-47,34],[-39,-24],[-63,-1],[-124,7],[-27,-3],[-136,5],[-368,2],[-4,90],[-18,520],[-26,2],[-19,-34],[-25,-7],[-17,-26],[-370,-11],[-105,-6]],[[156227,116826],[-10,-266],[34,-1],[31,-33],[16,0],[48,36],[29,-63],[41,1],[-4,-119],[138,-85],[-1,-11],[-69,-39],[-1,-49],[42,-50],[-19,-32],[-99,0],[-7,-233],[269,6],[7,-82],[17,-56],[69,-348],[-3,-59],[22,-56],[40,-14],[19,-106],[36,-54],[27,-12],[25,-57],[21,-12],[28,-55],[-4,-44],[-11,-32],[20,-43],[111,-6],[36,-15],[31,-35],[13,-35],[28,-15],[24,-40],[26,-17],[34,-50]],[[157281,114645],[26,-37],[13,-43],[1,-65],[17,-114],[7,-19],[-31,-76],[16,-53],[25,-56],[20,11],[13,-62],[50,27],[15,-6],[85,43],[17,26],[-39,25],[75,36],[44,45],[9,-22],[33,-17],[6,24],[42,-4],[17,17],[-3,35],[39,-33],[28,35],[26,2],[10,28],[36,31],[29,-25],[39,-6],[23,-28],[23,27],[67,-134],[29,-74],[18,-88],[26,-40],[25,-22],[25,-46],[1,-35],[-23,-34],[2,-22],[-23,-62],[-3,-70],[-12,-30],[-25,-28],[8,-24],[-9,-46],[8,-36],[17,-32],[-37,-33],[-2,-21],[-62,-69],[-69,-14],[-31,-49],[2,-67],[-40,-14],[-19,-37],[7,-28],[-31,-26],[-21,-38],[2,-36],[-15,-24],[-18,6],[-25,-33]],[[156031,127488],[80,-4],[1,-29],[18,-6],[34,15],[29,-4],[33,-30],[16,-29],[32,23],[21,-5],[3,-41],[22,-7],[58,25],[5,24],[33,-1],[40,-27],[57,-2],[-1,24],[27,19],[-10,76],[-19,-2],[-3,57],[147,6],[-18,21],[-3,78],[60,7],[47,41],[14,-15],[-14,-28],[-44,-21],[2,-21],[28,-44],[-6,-33],[-50,-13],[-11,-34],[-51,3],[-25,-26],[1,-19],[42,-15],[24,-71],[7,-49],[25,-4]],[[157949,117077],[-18,19],[-34,-9],[-133,3],[1,55],[-43,2],[-8,76],[-27,110],[-16,1],[-10,-241],[-118,4],[-16,39],[38,25],[7,18],[1,57],[-11,50],[15,38],[-33,35],[15,9],[16,52],[-22,23],[13,67],[-4,28],[15,41],[-51,1],[-225,8],[-3,-292],[-29,-34],[-46,57],[-29,26],[-50,-19],[-12,-47],[58,-43],[-39,-28],[46,-33],[20,23],[18,-20],[31,16],[45,-2],[35,19],[1,23],[36,47],[31,56],[53,-2],[-5,-304],[-3,-227],[25,-72],[0,-49],[18,-25]],[[157502,116658],[-307,-1],[0,269],[-170,14],[-2,-154],[-374,23],[-380,23]],[[157502,116658],[17,-26],[25,-2],[13,-28],[21,1],[11,-42],[-43,3],[-69,-35],[-54,-34],[7,-50],[27,-34],[21,3],[24,-39],[-6,-51],[-25,-54],[8,-52],[28,16],[51,-27],[46,63],[23,-14],[-8,-25],[9,-28],[40,-18],[21,-27],[28,-9],[48,-32],[30,-39],[8,-56],[34,-46],[58,-26],[29,-39],[-168,-247],[13,-18],[37,3],[24,-34],[58,-34],[3,-26],[27,-21],[40,-54],[12,10],[34,-32],[29,10],[13,-13],[53,86],[25,-3],[-39,-254],[-21,-46],[-27,2],[-58,-29],[48,-65],[-7,-9],[11,-58],[-34,-16],[24,-53],[-46,-19],[-22,-20],[-87,-20],[-38,-36],[19,-15],[-9,-40],[-34,-3],[-26,17],[-44,-44],[0,-27],[46,-80],[43,-3],[62,37],[34,-22],[-5,67],[41,4],[-20,34],[-25,-3],[-1,35],[30,11],[16,21],[42,-32],[35,2],[25,-90],[40,-4],[8,84],[-14,30],[0,28],[13,47],[-7,28],[31,71],[23,30],[37,21],[71,10],[15,-19],[25,5],[13,47],[28,40],[20,56],[-13,46],[28,32],[-5,55],[-14,61],[-59,83],[-56,87],[-33,4],[-41,23],[-44,65],[-18,12],[-43,49],[-108,51],[-29,88],[88,140],[-129,63],[41,165],[-39,23],[-14,-2],[-36,24],[-47,-23],[-30,-72],[-18,114],[-33,51],[66,19],[57,-4],[3,76],[8,43],[18,0],[24,50],[-26,121],[191,10],[-5,-26],[42,-73],[40,-15],[18,4],[50,70],[54,-43],[-30,-59],[3,-49],[27,0],[0,-30]],[[158248,116491],[-26,-3],[-4,-30],[-30,-7],[-42,12],[-20,-6],[-4,36],[-46,0],[-2,-59],[25,-42],[13,7],[34,-13],[28,-25],[14,-38],[-11,-46],[-37,-3],[-5,-41],[5,-45],[28,-54],[-41,1],[6,-51],[-12,-49],[-18,-21],[232,-108]],[[158335,115906],[29,-8],[4,-27],[19,-18],[24,0],[16,-53],[36,-34],[32,-61],[17,-68],[32,-29],[22,-68],[32,-22],[18,-41],[-13,-41],[-68,-41],[-4,-58],[-24,-22],[-28,-43],[0,-39],[-22,-34],[7,-28],[-21,-20],[12,-79],[-4,-45],[-12,-25],[6,-26],[-21,-15],[-9,-38],[-27,-23],[-37,-53],[-39,-24],[-16,4],[-35,-39],[-38,1],[-20,-13],[30,-57],[35,-9],[9,-34],[-58,-22],[15,-23],[-3,-45],[-45,-66],[-33,-39],[-14,3],[-15,45],[-69,-2],[-15,11],[-58,-80],[-37,48],[-123,92],[-151,-169],[-32,28],[-5,19],[-38,15],[-44,110],[22,14],[11,27],[-48,63],[-42,21],[-19,31],[-70,-19],[-12,-15],[-45,-90],[-44,20],[-24,-8]],[[158182,116851],[108,-107],[21,-25],[15,18],[37,17],[-5,-37],[-30,-5],[4,-94],[32,4],[21,-10],[-12,-35],[5,-19],[56,7],[-8,20],[42,32],[26,54],[-53,14],[-29,-6],[-14,29],[14,43],[22,-5],[13,-41],[22,15],[40,-19],[0,45],[41,-5],[21,32],[7,34],[30,-10],[14,-50],[-10,-120],[-10,-32],[11,-15],[-15,-36],[10,-14],[-6,-62],[10,-11],[9,-59],[21,-3],[-17,-43],[-46,-44],[-55,24],[-35,-12],[-52,6],[5,63],[-33,8],[-29,27],[-9,-59],[-29,-5],[-18,17],[-34,58],[13,24],[-55,32]],[[156676,131516],[0,-576],[1,-50],[214,1],[241,-2],[351,1],[198,2],[186,-1],[207,-3],[197,1],[241,4],[396,-1],[116,-1],[231,3],[197,-4],[351,0],[263,2]],[[160066,130892],[5,-270],[209,-2],[0,62],[193,5],[6,-201],[-74,-1],[1,-109],[-12,-4],[-42,-64],[-2,-36],[8,-44],[15,-17],[33,7],[1,-42],[-330,-6],[9,-569],[20,0],[14,-45],[17,-21],[36,-73],[3,-30],[21,-22],[43,-12],[37,-35],[6,-56],[25,-22],[17,-39],[25,-13],[48,-67],[45,-46],[33,-10],[0,-21],[45,-2],[48,-55],[-4,-20],[33,-32],[170,-240],[32,0],[0,-60],[-95,-116],[-118,-192],[-134,-145],[-22,-6],[-96,-48],[-243,-144],[-93,-38],[-46,-35],[8,-31],[-39,-27],[-11,-33],[7,-25],[26,-7],[-101,-103],[-33,-14],[-78,-109],[-31,-67],[39,-115],[-30,-37],[-95,-154],[-19,-8],[-9,-36],[39,1],[30,-16],[-4,-25],[25,-37],[29,9],[31,-20],[13,18],[77,1]],[[158335,115906],[95,105],[139,160],[66,73],[81,98],[11,-5],[115,88],[193,159],[20,-3],[10,-61],[19,-75],[28,-9],[0,-29],[17,-18],[22,6],[45,-40],[0,-39],[58,-216],[96,-41],[-143,-388],[2,-59],[13,-21],[-26,-40],[5,-42],[-60,-9],[-66,-52],[-45,9],[-32,-23],[-27,-67],[91,-137],[135,-52],[-3,-35],[137,-34],[52,42],[36,4],[57,-25],[19,-43],[29,2],[37,19],[18,-10],[32,-48],[23,32],[78,35],[5,128]],[[160196,115268],[32,-164],[-149,-234],[-204,-146],[75,-67],[6,-19],[42,-72],[3,-37],[-13,-98],[-10,-116],[-17,-102],[-6,-154],[-172,-1],[-171,2],[-51,5],[-34,-13],[-70,-1],[-21,34],[-61,-15],[-28,6],[-24,-12],[-29,7],[-21,-9],[-1,-34],[-67,-66],[-164,-308],[-17,-15],[23,-44],[2,-27],[29,-35],[44,-12],[8,-26],[43,-26],[-125,-152],[16,-32],[54,-38],[16,-38],[65,10],[9,18],[53,7],[44,-36],[19,3],[11,-37],[69,-14],[25,-20],[-5,-70],[33,-20],[33,-81],[38,-39],[-14,-66],[7,-27],[53,16],[-6,56],[7,33],[25,6],[0,-47],[30,-21],[34,12],[21,36],[-33,12],[2,43],[-49,11],[-44,-7],[35,84],[10,72],[-68,1],[-15,-12],[-40,25],[-22,33],[22,37],[-11,26],[40,3],[15,-20],[37,-7],[16,31],[30,0],[6,-26],[25,6],[36,32],[53,21],[16,30],[35,11],[-13,57],[50,19],[22,50],[63,89],[144,199],[59,-199],[13,-49],[14,-21],[22,4],[31,-30],[77,-136]],[[160263,113317],[-50,-40],[-63,-66],[-61,-70],[-15,-24],[-30,-23],[-51,-68],[-19,-36],[-36,-29],[-29,-55],[-21,-28],[-13,-46],[-26,-33],[-10,-48],[-33,-38],[-17,-31],[-23,-79],[-47,-140],[-53,-221],[-33,-72],[-15,-58],[-7,-55],[8,-116],[-7,-46],[-31,-48],[-40,-24],[-33,-2],[-56,33],[-19,51],[-2,34],[-63,55],[-21,47],[-125,34],[-59,4],[-125,-3],[-124,-18],[-91,-28],[-158,-70]],[[161023,123876],[146,-168],[-204,-234]],[[161177,120204],[-18,-58],[17,-5],[32,42],[18,-12],[-11,-34],[11,-14],[-10,-76],[13,-33],[-16,-23],[-1,-33],[14,-30],[-21,-34],[6,-48],[101,4],[27,-16],[65,-95],[26,-13],[27,12],[15,47],[40,33],[-3,27],[51,1],[32,-16],[34,-55],[13,-58],[21,26],[26,10],[2,46],[54,-99],[48,31]],[[161790,119731],[-20,-57],[32,-59],[-15,-29],[-22,-11],[-23,10],[-9,34],[-26,34],[-28,1],[34,-69],[60,-109],[97,-82],[22,36],[-24,38],[17,12],[44,-10],[32,-20],[18,65],[20,-11],[-6,-26],[15,-46],[65,-5],[10,16],[45,25],[0,-35],[-25,-38],[14,-14],[-21,-42],[2,-50],[-35,-6],[15,-31],[-13,-149],[19,-19],[-10,-34],[93,19],[20,-21],[11,67],[-26,16],[-11,-35],[-25,46],[-22,-2],[-12,20],[-3,41],[68,-3],[5,-21],[31,-8],[-2,-32],[27,-7],[41,-82],[1,-104],[-24,16]],[[160284,126139],[107,116],[274,71],[69,10],[37,52],[210,222],[26,1],[-11,77],[51,-7],[16,36],[-23,19],[-16,39],[-38,-8],[-7,-20],[-51,-22],[-66,-6],[-6,87],[20,108],[18,51],[124,10],[49,11],[93,42],[52,-23],[8,-38],[-6,-44],[62,-36],[3,-21],[-61,-8],[-10,-18],[41,-49],[30,-10],[17,-39],[45,-11],[69,-53]],[[161410,126678],[9,-9],[11,-98],[35,-25]],[[161465,126546],[38,-41],[53,-91],[146,-40],[58,13],[10,-54],[46,-72],[5,-48],[35,-67],[38,-30],[91,-50],[19,-56],[4,-53],[41,-43],[20,-57],[35,-28],[41,-58],[22,-22],[13,-37],[43,-68],[1,-20]],[[162224,125624],[-433,-1],[-299,0],[-451,-3],[-356,0]],[[160583,122867],[-58,-127],[-3,-91],[24,-138],[27,-38],[6,-37],[30,-23],[47,-1],[48,20],[65,11],[41,51],[80,0],[19,15],[33,56],[19,5],[36,-44],[6,-114],[-25,-48],[47,-73],[31,-13],[30,-41],[8,-39],[-8,-23],[21,-50],[52,-20],[68,-65],[53,-19],[61,13],[157,-18],[142,-30],[23,-96],[26,-27],[69,-50],[2,-23],[29,-43],[-1,-42],[31,-18],[50,-13],[49,-73],[33,-36],[117,-49],[128,-91],[34,-40]],[[162230,121385],[-1,-4]],[[162229,121381],[4,-27],[113,-578],[34,-191],[6,-387],[3,-596],[-221,-3],[-29,-6],[-12,-24],[-68,-15],[-10,23],[-26,15],[-42,-11],[-10,-29],[-39,-8],[-53,19],[-75,124],[-14,44]],[[161204,124974],[6,79],[22,18],[20,114],[83,334],[2,-50],[44,-11],[20,9],[36,-27],[22,-31],[22,-12],[13,24],[49,-3],[8,33],[31,-2],[19,17],[35,-5],[20,-21],[53,30],[2,-93],[9,-39],[19,-22],[24,-62],[0,-40],[35,-46],[23,5],[66,-45],[26,-12],[20,-52],[-60,-46],[-32,-6],[-58,-40],[-20,2],[9,46],[-31,68],[-37,16],[-7,37],[-24,-1],[-70,-35],[-16,-36]],[[161587,125069],[-31,-16],[-13,-25],[49,-43],[4,-49],[-53,5],[-17,27],[-39,90],[-20,13],[-21,-23],[-14,74],[-19,42],[-45,-51],[-17,-36],[-33,17],[-35,-43],[10,-51],[26,-10],[-20,-32],[-26,-16],[13,-30],[8,-52],[-22,4],[3,-43],[31,-4],[-23,-49],[23,-18],[43,26],[38,-24],[45,45],[33,-2]],[[161465,124795],[41,-27],[71,13],[4,-43],[23,-31],[15,27],[23,-13],[-1,83],[66,4],[25,-12],[-50,-82],[17,-32],[1,-45],[-33,-19],[-70,-2],[-6,-12],[-63,-23],[-19,-50],[-15,7],[-26,-38],[1,-27],[-31,-28],[-73,7],[-7,20],[-28,-2],[-27,-31],[-35,-8],[-8,23],[-36,-78],[-34,15],[-14,59],[-19,36],[-40,-52],[-7,-34],[-45,-67],[-34,7],[-18,35],[-1,59],[-36,31],[-20,40],[-26,9],[-7,22],[-59,35],[-43,5],[-6,20]],[[161067,123990],[90,177],[21,54],[24,35],[31,-41],[44,-16],[22,-35],[-12,-17],[5,-31],[33,45],[6,-34],[38,-18],[38,-28],[36,5],[29,-19],[7,26],[58,51],[-15,47],[29,23],[-9,52],[87,-38],[-2,51],[88,-20],[-3,18],[28,26],[49,16],[-17,-38],[23,-19],[45,-18],[4,-41],[32,-11],[13,-90],[19,-10],[-39,-33],[1,-41],[-62,-48],[-26,26],[-26,-43],[-20,-18],[11,-45],[-20,-47]],[[161727,123843],[-32,-55],[-59,2],[-22,-12],[-26,38],[1,36],[-35,28],[-15,82],[-47,54],[-40,5],[-24,23],[-27,-7],[-23,23],[-45,4],[-38,-33],[-12,27],[-35,39],[-10,33],[-30,4],[-22,18],[-33,-10],[-2,-45],[-36,-64],[-23,-67],[16,-88],[-13,-29],[35,-5],[27,19],[12,-16],[36,-6],[49,31],[56,54],[15,-25],[-4,-45],[56,37],[31,-8],[11,-44],[-31,-12],[24,-75],[-5,-25],[35,-2],[-18,-68],[35,-28],[-16,-83],[-30,-4],[-34,-21],[-60,-4],[-46,18],[-25,-56],[-58,-20],[-15,44],[-18,-26],[-71,-49],[-17,4],[-65,-66],[-44,2]],[[161727,123843],[17,-9],[80,-80],[78,-60],[32,-17]],[[161934,123677],[-9,-57],[-7,-95],[-33,-147],[-14,-94],[59,-466],[9,-26],[133,-252],[35,-211],[140,-397],[37,-110],[-21,-179],[-33,-258]],[[161465,124795],[-69,57],[-13,63],[-38,44],[17,37],[10,48],[30,12],[24,-33],[27,-8],[29,-48],[31,-28],[48,-25],[25,15],[66,-45],[-8,-51],[60,-17],[17,8],[17,49],[28,-19],[48,16],[33,-13],[7,-42],[-28,-32],[-20,8],[-26,-16],[-35,14],[-8,-27],[-34,-38],[15,-41],[34,0],[16,-40],[-40,-38],[2,-43],[-74,5],[-21,-9],[-40,19],[-33,-31],[25,-15],[-10,-45],[-29,-1],[-30,-18],[-32,-41],[-30,9],[-24,-24],[-55,22],[-30,2],[15,-64],[-45,-38],[-50,-29],[-37,0],[0,-28],[29,-46],[16,14],[27,-36],[25,-16],[31,12],[60,-43],[38,-4],[41,33],[8,50],[-2,82],[9,53],[13,17],[-11,38],[52,-6],[25,9],[19,-24],[25,-6],[1,-24],[24,-7],[38,31],[37,9],[32,29],[24,-17],[220,-99],[40,-7]],[[162051,124318],[-8,-73],[5,-159],[-25,-130],[-57,-127],[-25,-104],[-7,-48]],[[162409,118291],[251,0],[261,1]],[[162921,118292],[11,-117],[64,-339],[60,-240],[65,-217],[140,-361],[24,-56],[86,-233],[49,-141],[22,-30],[9,-38],[36,-87],[32,-141],[17,-114],[10,-100],[-3,-114],[-20,-102],[-11,-128],[-6,-127],[-20,-106],[-25,-148],[-8,-77],[-24,-103],[-16,-34],[-23,-24],[-44,-23],[-32,2],[-67,36],[-54,-18],[-75,-36],[-55,-33],[-46,-12],[-113,-58],[-72,-42],[-86,-60],[-46,-45],[-20,-29],[-55,-59],[-21,-16],[-41,-4],[-158,-167],[-149,-178],[-48,-50],[-104,-136],[-92,-138],[-53,-88],[-57,-104],[-35,-86],[-17,-69],[-23,-45],[-51,-34],[-60,11],[-34,37],[-18,58],[-27,52],[-4,42],[-98,37],[-25,20],[-89,11],[-109,-11],[-135,-25],[-150,-35],[-125,-49],[-24,-17],[-48,-13],[-87,-52],[-62,-48],[-119,-117],[-73,-40],[-122,-83],[-104,-84]],[[160066,130892],[165,1],[596,-1],[298,5],[161,1],[571,-7]],[[161857,130891],[351,-2],[420,2],[380,-3],[298,3]],[[163306,130891],[304,1],[29,-16],[-2,-42],[22,-14],[29,-45],[26,13],[23,-36],[18,-74],[-6,-45],[75,-69],[31,28],[56,-27],[18,-22],[27,8],[41,-20],[1,-48],[44,-25],[-30,-87],[19,-13],[26,7],[25,-17],[11,-29],[-3,-38],[8,-51],[-30,-12],[26,-45],[-10,-33],[14,-27],[9,-103],[-48,-29],[44,-52],[10,-31],[21,-14],[18,-43],[-12,-27],[56,-57],[10,-66],[38,-8],[24,16],[52,-26],[3,-26],[26,-11],[1,-42],[58,10],[28,-27],[37,28],[16,-10],[12,-37],[62,5]],[[164563,129563],[32,-5],[-10,-26],[7,-30],[36,-20],[8,-25],[27,-27],[-6,-23]],[[164657,129407],[-41,-23],[-55,-5],[-27,-48],[-30,-5],[0,-25],[-60,-56],[-42,-89],[-16,-51],[12,-14],[-36,-92],[-26,-32],[-38,-67],[-35,-21],[-30,-34],[-28,-14],[-15,-37]],[[164190,128794],[-33,-20],[-42,12],[-59,121],[-170,27],[-6,-88],[14,-120],[-69,24],[15,-35],[-10,-19],[18,-27],[2,-62],[21,-12],[25,43],[23,-38],[0,-47],[-53,-30],[-27,3],[-68,53],[12,37],[-24,10],[-16,-30],[-126,-148],[-96,184],[60,207],[0,22],[21,42],[37,-10],[54,248],[-106,-10],[-207,-13],[-17,-30],[-37,14],[-27,-37],[-12,32],[-55,52],[-11,-3],[-35,58],[119,7],[-7,166],[-73,-4],[-75,54],[42,62],[68,3],[34,43],[-90,64],[50,-1],[-32,43],[2,21],[35,17],[4,-27],[70,-68],[34,43],[-29,29],[12,15],[-26,26],[4,33],[-8,59],[14,15],[53,6],[-48,46],[2,14],[60,4],[17,63],[-117,-10],[-24,-86],[-22,-50],[-74,-83],[-70,-41],[-124,-208],[-1,-43],[-62,39]],[[162924,129455],[-38,22],[-21,29],[-3,63],[99,181],[-48,41],[52,104],[-8,13],[71,143],[15,15],[-114,-1],[-137,4],[-329,3],[-41,-3],[-2,19],[-130,-9],[-14,-107],[-34,-209],[-129,-465],[-154,-4],[-179,-218],[-112,-131],[-136,-8],[-80,41],[-9,-79],[1,-105],[-34,-97],[-30,-98],[3,-12],[-30,-130],[91,18],[116,32],[15,-19],[-62,-64],[-35,-12],[-31,-32],[-40,-16],[-32,-24],[-29,-35],[-25,-78],[-56,-84],[-17,-78],[6,-111],[-15,-56],[-24,-41],[-37,-30],[-38,-66],[-36,-43],[-4,-52],[-19,-40],[-29,-21],[-14,-24],[17,-56],[-5,-63],[25,-43],[25,-16],[6,-50],[-18,-31],[-31,-20],[-36,-47],[-17,1],[-20,70],[-59,-36],[-88,-45],[-48,-42],[-75,-58],[-34,-9],[-53,28],[-20,40],[-67,-22],[33,-163],[12,-113],[-58,-19],[-21,18],[3,39],[-89,-68],[-56,-17],[1,20],[27,37],[60,52],[-2,25],[-45,-23],[-50,-39],[-74,-75],[-100,-81],[-34,-1],[-74,-77],[-15,30]],[[162924,129455],[-18,-42],[-71,-53],[-9,14],[-38,-49],[35,-52],[-14,-35],[5,-37],[-34,-40],[-39,-2],[-26,-21],[72,-59],[27,23],[61,33],[28,-23],[47,56],[198,10],[6,-156],[9,-34],[19,-16],[27,6],[18,-46],[-72,-61],[7,-30],[45,-18],[5,-24],[57,-62],[23,-42],[103,-144],[-123,-83],[28,-52],[-210,-138],[-28,100],[-46,-4],[-11,-35],[-29,-27],[-58,47],[-200,-121],[-112,141],[-49,-25],[-283,110],[-66,-78],[-55,-75],[-35,-189],[-171,-90],[-234,-126],[-57,-26],[-148,-79],[-12,-11],[262,-238]],[[161758,127552],[-232,-193],[-105,-64],[48,-163],[-61,-28],[-18,27],[-27,-11],[43,-66],[4,-69],[19,-22],[-4,-71],[37,-50],[-3,-71],[-14,-3],[-17,-66],[-18,-24]],[[161587,125069],[37,-18],[17,33],[40,-8],[-5,-33],[11,-41],[32,-15],[-57,-47],[27,-38],[42,67],[26,-39],[28,24],[19,-28],[-17,-37],[41,-2],[27,-13],[0,-20],[73,-19],[94,104],[102,27],[-23,17],[-11,37],[-20,21],[14,20],[50,-9],[16,-18],[59,43],[24,30],[49,-16],[31,30],[-9,56],[28,28],[18,-19],[27,44],[-7,25],[17,18],[26,-16],[40,12],[13,-21],[70,-150],[7,-89],[-26,-74],[-37,-38],[-75,-40],[-26,-22],[-172,-216],[-85,-112],[-44,-79],[-27,-110]],[[161465,126546],[41,78],[20,-5],[33,27],[28,3],[59,58],[38,3],[183,86]],[[161867,126796],[49,23],[201,39],[246,140],[94,-88],[72,73],[8,30],[24,29],[22,-13],[14,24],[35,-27],[35,-15],[12,54],[-15,23],[51,30],[-5,42],[27,5],[28,-35],[-17,-62],[50,-23],[-26,-51],[-29,20],[-22,-34],[-51,23],[-29,-28]],[[162641,126975],[-49,27],[-21,-18],[-21,11],[-26,-22],[21,-57],[25,0],[-21,-62],[-17,-14],[266,-253],[-24,-19],[-120,-71],[-46,-8],[-17,-38],[-48,-20],[-15,-40],[-37,14],[-46,29],[-45,-15],[-42,0],[-46,-52],[59,-71],[-24,-3],[39,-152],[30,15],[40,-144],[-73,-3],[-10,-37],[37,-22],[18,-27],[21,-57],[38,-22],[35,-34],[20,3],[24,64],[33,12],[51,-9],[50,-28],[23,-25],[32,-1],[-4,-28],[97,9],[-16,134],[1,71],[28,27],[-38,97],[-49,36],[-58,-21],[-3,33],[34,13],[22,-10],[32,68],[76,25],[55,9],[5,-48],[29,-7],[4,-46],[-11,-15],[-23,-99],[141,-43],[43,-31],[37,18],[9,-25],[7,-72],[-29,42],[-16,-15],[-59,-11],[4,-43],[-28,-10],[-6,37],[-99,-3],[14,-157],[-33,-7],[-21,-32],[-2,-96]],[[162898,125626],[-510,-3],[-164,1]],[[162898,125626],[37,0]],[[162935,125626],[0,-172],[36,-650],[29,-539],[28,-518],[21,-393],[35,-647],[290,-13],[183,-5],[254,-3],[366,0],[21,1]],[[164198,122687],[-21,-184],[-30,-117],[-3,-27],[-33,-52],[-73,-226],[-58,-221],[-16,-45],[-49,-108]],[[163915,121707],[-131,-2],[-233,-31],[-358,-44],[-37,-64],[1,-45],[-69,19],[-21,-2],[-90,-31],[-62,-67],[-129,-2],[-110,-10],[14,90],[-78,17],[-92,1],[-115,-58],[-176,-97]],[[161758,127552],[150,-137],[34,-1],[78,33],[47,13],[58,-2],[73,6],[58,27],[75,14],[26,24],[78,39],[41,9],[23,32],[22,-11],[18,19],[29,-22],[14,9],[30,143],[157,85],[61,39],[16,0],[58,33],[18,22],[81,54],[26,32],[41,19],[13,18],[134,40],[50,28],[57,17],[53,5],[103,22],[40,18],[53,11],[65,33],[33,24],[43,10],[-18,-53],[24,2],[14,20],[28,-27],[17,-32],[37,13],[14,-112],[-47,-44],[-121,-12],[-6,-48],[71,4],[13,-99],[-154,-25],[51,-33],[10,-35],[-13,-16],[4,-36],[49,2],[30,24],[28,2],[33,20],[20,-3],[21,55],[58,15]],[[163877,127839],[19,-17],[-35,-53],[19,-59],[-13,-35]],[[163867,127675],[-97,-61],[-56,-46],[-183,-171],[-117,-161],[-9,8]],[[163405,127244],[-129,119],[-32,-83],[-56,-39],[-13,47],[32,46],[-116,-9],[-59,83],[-38,-53],[-106,100],[11,14],[-23,39],[-52,-10],[-25,-14],[-12,-44],[-23,-22],[-125,-71],[-6,-55],[-98,-30],[-47,124],[-72,-24],[-4,-49],[8,-50],[-24,-30],[-36,-14],[-19,19],[-25,-23],[-198,9],[-54,49],[-46,-108],[27,4],[7,-58],[-70,-34],[-45,13],[-27,-1],[5,-63],[31,-12],[12,-52],[-75,-15],[-34,-16],[18,-135]],[[163915,121707],[-113,-213],[-34,-72],[-17,-50],[-40,-86],[-26,-35],[-41,-35],[-45,-13],[-42,9],[-37,17],[-69,-115],[-28,-88],[-14,-19],[-45,-124],[0,-33],[-27,-63],[-14,-55],[17,-33],[4,-70],[-21,-55],[-21,-26],[-30,-61],[-33,-80],[-14,-101],[-62,-113],[-1,-71],[-19,-42],[-36,-27],[-57,-85],[-27,-69],[5,-67],[-24,-80],[-58,-104],[-39,-49],[-28,-14],[-18,-35],[-30,-36],[-24,-13],[-32,-44],[-25,-126],[-35,-143],[2,-4],[82,-445],[20,-70],[28,-79],[38,-126],[36,-172]],[[164190,128794],[35,-13],[-69,-47],[-20,-61],[-70,-49],[-29,-9],[-66,-55],[-8,-33],[21,-15],[7,-40],[35,-67],[26,-24],[5,-42],[35,-51],[-1,-34],[-16,-24],[-42,2],[-10,-19],[22,-38],[-43,-80]],[[164002,128095],[-44,-38],[-52,10],[-9,-32],[-30,-29],[22,-41],[-33,-98],[21,-28]],[[163405,127244],[-11,-29],[17,-55],[-37,30],[-60,14],[-16,-28],[35,-25],[-16,-26],[77,-61],[-83,-128],[110,-91],[32,36],[24,-20]],[[163477,126861],[-19,-19],[11,-74],[-5,-34],[120,-105],[20,-12],[-3,-36],[-35,-40],[-45,-23],[-27,5],[-45,-17],[9,-35],[57,22],[43,-84],[41,26],[9,-15],[-85,-55],[17,-33],[-78,-79],[28,-19],[-138,-95],[7,-23],[-37,-16],[-6,-41],[-25,-18],[-13,23],[-27,-19],[-36,58],[-38,25],[-24,42],[-41,-30],[-21,-27],[-21,31],[8,36],[-19,10],[-40,-19],[-14,35],[30,33],[1,27],[-58,-13],[-6,48],[-30,-7],[-9,26],[7,59],[17,35],[69,9],[-12,73],[-19,3],[-22,44],[-29,-4],[-28,32],[-16,55],[39,-1],[6,-13],[44,-5],[53,12],[31,23],[-15,32],[4,35],[-16,27],[-23,9],[-17,24],[75,60],[90,162],[-72,69],[34,57],[-95,46],[-26,41],[-90,30],[-13,-35],[-30,-35],[18,-15],[-12,-45],[33,-61],[30,-20],[-32,-169],[-41,8],[11,32],[-33,12],[-32,27],[-27,5],[-29,-13],[-42,-52],[-38,14],[-7,59],[-22,-17],[-15,46]],[[163477,126861],[38,-23],[54,-46],[76,109],[61,-54]],[[163706,126847],[-7,-16],[31,-35],[-14,-27],[28,-30],[23,1],[23,-19],[16,25],[63,26],[58,-51],[-7,-31],[32,-28],[-1,-31],[-38,34],[-20,-30],[-34,26],[-27,-11],[-23,34],[-31,18],[-14,-27],[48,-38],[-3,-21],[33,-28],[17,20],[27,-24],[19,0],[-5,-39],[11,-21],[-15,-22],[-26,20],[-33,-3],[-36,-17],[-36,6],[-44,43],[-56,-32],[13,38],[29,42],[11,56],[-56,-17],[-60,-90],[-22,-7],[13,-34],[-61,-27],[24,-19],[73,-23],[30,-22]],[[163659,126416],[-33,-26],[46,-84],[14,8],[55,-99]],[[163563,125842],[-40,-32]],[[163523,125810],[-40,31],[-64,32],[-74,20],[-56,4],[-74,-10],[-88,-35],[-53,-38],[-31,-31],[-54,-79],[-31,-78],[-23,0]],[[163523,125810],[15,-13],[-52,-27],[-18,-23]],[[163468,125747],[-15,-20],[-25,-76],[-2,-39],[-18,-4],[-29,-40],[-14,-70],[-31,-46],[-39,-39],[10,-66],[64,-54],[1,-26],[-33,-58],[10,-27],[-2,-74],[-49,-6],[-7,-29],[5,-64],[125,-157],[18,-34],[39,-41],[100,-126],[95,-114],[114,-214],[90,-185],[36,-53],[242,-618]],[[164153,123467],[1,-101],[18,-137],[2,-125],[13,-45],[13,-195],[2,-71],[-4,-106]],[[163659,126416],[9,-5],[58,25],[34,-43],[65,90],[55,-47],[19,28],[79,-68],[-13,-83]],[[163706,126847],[19,25],[24,-34],[45,65],[184,-164],[202,-175],[55,-30],[11,-44],[-4,-31],[-35,-41]],[[163867,127675],[11,-48],[-9,-21],[35,-33],[24,3],[36,23],[56,-19],[49,-60],[9,-142],[-12,-55],[15,-80],[46,-39],[56,13],[45,-27],[32,-89],[7,-43]],[[164568,126693],[23,-14],[23,-39],[-3,-31]],[[164611,126609],[-27,-28],[-33,-6],[-41,-28],[-43,16],[-17,-8],[-15,-48],[-37,-42],[-75,-33],[-44,-7],[-61,-45]],[[164129,126306],[28,-28],[-14,-35],[32,-51],[41,-32],[13,-36],[-25,-24],[29,-15],[20,-45],[31,-32],[46,-224]],[[164330,125784],[-17,-33],[152,-199],[25,-38],[-174,-220],[-225,231],[-83,2],[-10,35],[-55,-6],[-31,-15],[58,87],[25,13],[-10,42],[10,31],[-59,59],[-55,25],[-67,-88],[-22,33],[11,25],[-54,6],[-3,40],[-44,-50],[-22,-9],[-36,-35],[-25,-40],[-38,0],[-22,34],[-27,63],[-51,-16],[-13,-14]],[[164330,125784],[41,-21],[63,20],[47,-15],[24,-27],[29,-49],[77,-66],[270,98],[84,-7],[173,27],[50,-131],[87,-80],[18,37],[19,6],[42,-19],[-1,32],[24,58],[47,-41],[43,22],[22,-33],[29,-24],[11,38],[-17,81],[3,45],[22,18],[14,-32],[41,-16],[-17,-32],[-42,-114],[-82,-158],[-78,-162],[-26,-37],[-32,-60],[-13,-11],[-41,0],[-2,-19],[26,-57],[101,-1]],[[165386,125054],[-27,-52],[-26,-70],[-34,-55],[-60,-84],[-39,-38],[-19,-46],[-47,-31],[-60,-9],[-49,-17],[-74,-93],[-24,-48],[-50,-47],[-76,-132],[-33,-45],[-31,-66],[3,-70],[-30,-54],[-33,-26],[-52,-94],[-20,-81],[-34,-47],[-38,-26],[-42,-51],[-23,-43],[-40,-28],[-50,-5],[-56,-20],[-5,-9],[-164,-200]],[[164002,128095],[16,-15],[93,-35],[92,-146],[23,13],[67,103],[37,38],[-3,20],[29,23],[57,32],[36,65],[9,38],[31,35],[-9,41],[62,70]],[[164542,128377],[57,21],[30,-29],[53,2],[41,28],[27,49],[19,0],[46,-94],[22,31],[40,-28],[27,-36],[-21,-31],[-43,8],[-37,-35],[-33,10],[-35,-66],[28,-18],[6,-28],[-11,-32],[-26,-24],[16,-50],[-30,-36],[-1,-51],[159,54],[11,-57],[32,-13],[24,-70],[100,48],[9,-71],[21,13],[45,57],[18,0],[32,41],[5,29],[27,25],[94,-4]],[[165294,128020],[8,-82],[23,-49],[21,-1],[29,-34],[-20,-19],[-53,-30],[14,-86],[-42,-43]],[[165274,127676],[-88,-12]],[[164657,129407],[138,-91],[236,-161],[136,-100],[109,-75],[107,-69]],[[165383,128911],[82,-49],[440,-288],[14,0]],[[165919,128574],[-4,-36],[-37,-157]],[[165878,128381],[-34,28],[-11,34],[-43,29],[-21,-96],[-19,-36],[-23,-72],[-35,-13],[-17,32],[-48,-9],[-31,9],[11,31],[21,20],[-5,23],[-30,37],[-59,4],[-15,51],[11,50],[-47,24]],[[165483,128527],[-86,11],[-37,25],[-37,60],[34,98],[-40,4],[-40,24],[-24,-2],[-46,-26],[-27,-113],[-57,13],[-65,62],[-11,21],[-85,-31],[8,46],[15,38],[-26,22],[-51,-63],[-79,58],[-83,81],[-46,-55],[-30,-117],[-2,-81],[-159,-180],[33,-45]],[[164611,126609],[28,33],[-7,44],[15,8],[107,-81],[49,-28],[23,3],[93,-235],[28,-85],[96,-272],[24,-64],[264,313],[49,16],[-2,39],[-28,53],[-15,44],[18,7],[149,-81],[-3,81],[17,93],[66,88],[14,-21],[23,-145],[63,-17],[17,96],[42,-4]],[[165741,126494],[65,0]],[[165806,126494],[-12,-52],[-20,-125],[-21,-103],[-32,-235],[-13,-158],[-16,-131],[-18,-61],[-20,-38],[-54,-132],[-44,-81],[-93,-190],[-77,-134]],[[165483,128527],[2,-70],[-42,-1],[1,-26],[-17,-41],[16,-22],[34,-15],[-9,-37],[-28,-64],[107,-87],[-16,-33]],[[165531,128131],[-56,9],[-6,-30]],[[165469,128110],[-20,7],[-7,34],[8,34],[-46,14],[-18,-46],[-21,-8],[-15,-51],[15,-30],[-17,-42],[-20,9],[-34,-11]],[[165236,127065],[71,-72],[-12,-45],[34,3],[64,-30],[10,45],[-6,87],[39,17],[-10,37],[-3,98],[119,50],[4,-43],[71,-9],[17,-96],[13,-13],[57,46],[43,15],[40,0],[0,-64],[-19,-11],[-20,-39],[-30,-24],[-47,-21],[30,-37],[-5,-22],[15,-39],[36,8],[5,-32],[-13,-51],[-23,2],[-4,-64],[36,9],[-8,-78],[-12,-38],[-14,-100],[-7,-14],[34,-46]],[[165469,128110],[-26,-91],[40,-14],[14,-35],[-36,-27],[25,-19],[47,26],[55,-20],[15,37],[20,14],[31,-2],[17,-20],[-7,-34],[-78,-86],[-25,-43],[-69,68],[-78,-8],[-26,-34],[-37,-4],[85,-87]],[[165436,127731],[-5,-92]],[[165431,127639],[-18,26],[-26,-12],[-94,-16],[-19,39]],[[165431,127639],[-18,-75],[-26,-4],[-30,-39],[7,-48],[-13,-13],[-7,-42],[9,-23],[39,-23],[205,50],[89,24]],[[165686,127446],[145,37],[99,-82]],[[165930,127401],[3,-86],[-3,-66],[0,-183],[-6,-79],[-12,-84],[-13,-57],[-41,-133],[-53,-194],[1,-25]],[[165531,128131],[3,-16],[-35,-82],[33,4],[61,25],[9,-52],[26,-6],[29,34],[13,44],[25,55],[28,34],[20,9],[18,-21],[-6,-21],[21,-26]],[[165776,128112],[-46,-94],[-20,-131],[-42,-103]],[[165668,127784],[-142,-31],[-60,10],[-30,-32]],[[165878,128381],[-22,-73]],[[165856,128308],[-59,-152]],[[165797,128156],[-21,-44]],[[168088,132578],[43,-153],[-226,-39],[-35,-209],[-13,-16],[23,-44],[-22,-139],[8,-25],[-68,-12],[-5,-110],[55,10],[-5,-89],[-108,-20],[7,-181],[101,17],[37,0],[23,-15],[51,6],[22,29],[68,12],[81,-8],[46,13],[27,-186],[68,10],[13,-106],[59,9],[-10,30],[34,36],[25,-33],[39,17],[17,48],[33,10],[20,-15],[17,28],[41,7],[16,14],[45,1],[45,-103],[18,-22],[20,55],[29,40],[19,-18],[84,-2],[24,35],[17,-142],[162,17],[27,-201],[14,-73],[15,-50],[-13,-35],[10,-27]],[[169086,130949],[-164,6],[-136,2],[-109,7],[-247,3],[-360,6],[-71,-10],[-14,-13],[-40,14],[-146,15],[-88,-2],[7,-15],[-36,-64]],[[167682,130898],[-66,-10],[5,90],[-76,2],[-217,3],[-201,7]],[[167127,130990],[-482,20],[-86,-2]],[[166559,131008],[-15,0],[-17,85],[90,362],[148,591],[145,572]],[[168180,132574],[297,-13],[297,-11]],[[168774,132550],[29,-24],[17,-56],[-42,-31],[-2,-73],[9,-29],[60,-70],[-9,-32],[24,-39],[184,-182],[71,75],[36,-6],[8,79],[44,-4],[36,10],[65,52],[39,-50],[14,-39],[-27,-139],[15,-4],[1,-146],[-12,-46],[39,12],[48,-21],[-11,-49],[69,-16],[77,-110]],[[169556,131612],[66,-95],[-10,-8]],[[169612,131509],[-20,3],[-39,-19],[-24,-95],[30,-53],[42,-8],[-24,-93],[3,-21],[65,-90],[45,0],[2,-167],[50,10],[14,-42]],[[169756,130934],[-234,-10]],[[169522,130924],[-251,-8],[-53,-4]],[[169218,130912],[-2,36],[-130,1]],[[169688,137862],[0,73],[22,77],[28,12],[63,90],[-10,39],[17,61],[43,86],[-36,69],[21,20],[50,10],[29,21],[-9,30],[41,12],[44,33],[18,27],[51,-13],[3,-37],[42,-37],[8,-27],[44,11],[39,-30],[26,21],[27,-19],[20,7],[34,91],[21,41],[21,7]],[[170462,136177],[-55,-3],[3,-106],[-87,-5],[-243,20],[-85,-247],[-9,-106],[-38,-13],[-12,15],[1,69],[-23,101],[-43,31],[-16,82],[-48,-9],[20,-103],[40,-25],[18,-83],[-9,-51],[24,-66],[31,0],[-57,-108],[33,-247],[-132,-23],[-187,-29],[6,-41],[-168,-20],[-29,-16],[-34,49],[-29,3],[5,-62],[-42,-122],[19,-11],[22,-35],[80,-1],[212,33],[9,-73],[98,-111],[48,-49],[-33,-21],[-29,27],[-71,-71],[-38,-7],[-33,26],[-21,37],[-104,-13],[-10,-59],[5,-42],[-29,-89],[-25,-20],[-35,14],[-37,-31],[25,-22],[-19,-44],[31,-47],[29,-21],[-2,-34],[24,-35],[35,-27],[23,9],[17,-78],[26,-46],[49,12],[37,26],[52,-38],[237,-181],[217,-176],[-18,-24],[188,-171],[-78,-130],[28,-20],[-21,-32],[-25,23],[-28,-45],[27,-6],[-38,-75],[-261,67],[-80,25],[-44,7],[-31,-20],[-55,-81],[1,-15],[-204,-36],[28,-133],[23,-131],[42,7],[19,-108],[-11,-2],[33,-238],[14,24],[50,-6],[11,12],[51,-35],[11,9],[-8,54],[-16,47],[-2,59],[35,56],[15,36],[19,-32],[24,-149],[63,-4],[40,-54],[22,23],[-2,68],[166,27],[148,11],[20,12],[28,-42],[4,-58]],[[170294,132784],[-25,9],[-54,-30],[-31,-41],[7,-123],[-66,21],[-34,-10],[-36,-38],[-41,-67],[-57,0],[-267,11],[-388,13],[-528,21]],[[170294,132784],[82,-26],[17,62]],[[170393,132820],[85,-52],[-32,-48],[-3,-24],[-59,-109],[-91,15],[-27,-41],[-15,-56],[26,-58],[-24,-40],[-4,-32],[27,-21],[6,-39],[-36,-11],[-29,-28],[-24,23],[13,20],[-130,92],[-32,0],[6,-29],[-10,-53],[-29,-19],[1,-20],[-59,-102],[29,-24],[-6,-16],[21,-31],[-3,-35],[-15,-16],[-7,-58],[49,-37]],[[170021,131971],[-38,-26],[-61,-65],[-22,-32],[-47,26],[-32,-41],[-31,20],[-10,-19],[-42,-10],[-22,-116],[-6,-51],[-46,0],[-55,-9],[-53,-36]],[[170021,131971],[27,-15],[17,39],[33,31],[45,-54],[68,48],[-2,66],[55,33],[25,-69],[46,2],[24,-30],[-5,-33],[39,5],[43,-72],[12,12],[28,-43],[29,0],[17,26],[33,4],[-14,-85],[66,-50]],[[170607,131786],[-87,-75],[-22,25],[-37,1],[7,26],[28,25],[-34,33],[-27,12],[-2,41],[-35,-3],[-33,-37],[-46,-25],[-44,34],[-24,-31],[15,-31],[21,23],[28,-45],[-39,-3],[-33,-28],[-30,-2]],[[170213,131726],[-78,15],[-68,-30],[-15,-59],[-94,-35],[33,-98],[9,-52],[-41,-7],[-52,-114],[-67,-18],[4,-21],[-44,1],[-22,-10],[-32,-39],[-22,17],[-30,3],[-8,57],[66,57],[-11,34],[-30,1],[1,36],[-58,19],[1,26],[-43,0]],[[170213,131726],[-11,-23],[28,-46],[54,50],[25,-5],[-20,-62]],[[170289,131640],[-51,-65],[-20,21],[-41,-48],[-10,-33],[-51,-11],[-35,-142],[-28,-5],[-10,-44],[1,-76],[-39,-3],[6,-71],[25,-65],[13,23],[52,18],[-2,34],[22,33],[79,47],[42,-39],[28,-88],[-11,-64],[91,52],[41,-255],[-51,13],[10,-31],[0,-41],[12,-25],[86,-57],[12,-40],[28,-1]],[[170160,130158],[-94,162],[-103,64],[-23,47],[-10,53],[19,29],[-11,20],[13,42],[-11,38],[4,45],[-68,-12],[0,291],[-120,-3]],[[170494,135038],[7,-84],[13,-270],[6,-159],[35,-44],[-20,-27],[15,-48],[-8,-45],[-26,-51],[22,-18],[-8,-38],[9,-32],[-41,-59],[2,-81],[17,-37],[2,-30],[32,-38],[35,7],[19,-28],[35,-90],[22,-15],[36,-49],[27,-8],[12,-26],[26,-11],[14,-33],[-10,-20],[-6,-54],[-13,-13],[-9,-93],[15,-49],[87,-72],[17,-29],[32,-18],[50,4],[8,-70],[109,-136],[33,-17],[46,-94],[11,-49]],[[171147,133014],[-49,-11],[-70,19],[-35,23],[-34,61],[-23,-43],[-27,-23],[-2,-80],[-12,-44]],[[170895,132916],[-136,-6],[-43,-26],[-59,50],[-31,10],[-40,-5],[-56,-36],[-102,-23],[-35,-60]],[[170607,131786],[26,-5],[78,22],[161,17]],[[170872,131820],[-3,-63],[-225,-3],[-18,-128],[-50,-13],[-18,-23],[-43,-3],[-20,31],[-33,-19],[-29,8],[0,46],[78,1],[5,34],[-56,-2],[-60,66],[-33,-5],[-11,-24],[39,-18],[-24,-64],[23,-15],[-7,-58],[6,-45],[-63,-12],[0,-65],[27,-41],[-26,-17],[15,-22],[53,5],[4,-28],[44,-18],[-4,-41],[-29,-74],[-118,175],[-44,54],[-6,46],[-14,15],[63,84],[18,42],[-24,14]],[[170872,131820],[160,11]],[[171032,131831],[-67,-293],[10,-58],[56,-38],[13,-21],[6,-59],[-10,-57],[29,-48]],[[170895,132916],[-22,-37],[22,-79],[-4,-85],[36,-129],[19,-18],[65,29],[55,7],[121,-36],[31,-40],[25,-61],[18,-104],[0,-25],[-31,-72],[-37,-54],[-58,-40],[-38,-50],[-65,-291]],[[174439,135584],[-13,-41],[-59,-56],[-26,-41],[-60,-33],[-53,3],[-64,-18],[-48,14],[-27,23],[-23,-5],[-33,-43],[41,-3],[59,-43],[24,-68],[-9,-56],[-24,-35],[-62,-46],[-40,-5],[-56,-65],[4,-62],[-24,-57],[-46,-40],[-35,-8],[-40,5],[-80,36],[-30,41],[-9,29],[-63,15],[-31,27],[-23,50],[3,52],[-53,38],[-14,-39],[-28,-38],[-92,-63],[-30,-11],[-40,0],[-33,15],[-31,28],[-16,31],[-41,-24],[31,-36],[15,-43],[0,-43],[-18,-50],[-27,-36],[-57,-41],[-40,-9],[-52,17],[-44,48],[-10,26],[-10,69],[15,61],[-34,27],[-96,-39],[-50,-33],[-22,-43],[-5,-67],[-26,-41],[-49,-27],[-102,-4],[-53,25],[-34,-32],[-20,-51],[-31,-33],[-48,-18],[-58,10],[-36,-25],[-73,-1],[-473,-283],[-177,-227],[-31,-53],[-49,-31],[-43,-74],[-9,-44],[-27,-39],[-83,-57],[-113,-25],[-6,-29],[-35,-52],[11,-21],[10,-55],[-21,-65],[-3,-83],[44,33],[75,-2],[41,-36],[26,-64],[-5,-53],[-38,-51],[-45,-20],[-53,4],[-51,37],[-14,23],[-10,47],[-24,5],[-15,-35],[-27,-25],[-13,-65],[-14,-25],[65,-22],[25,-31],[21,-65],[-9,-40],[-4,-86],[-25,-51],[-34,-28]],[[176269,76234],[7,39],[25,48],[35,24],[49,15],[65,55],[-21,78],[8,51],[17,44],[47,61],[24,21],[88,32],[55,2],[83,-11],[76,-45],[58,-10],[37,-13],[39,20],[51,2],[23,-6],[51,9],[53,-9],[57,-32],[85,30],[60,10],[72,-1],[63,-7],[65,-15],[58,-21],[40,33],[59,11],[59,-7],[56,1],[46,-24],[43,-7],[41,4],[39,-13],[37,-4],[28,11],[102,-5],[34,-12],[97,-4],[32,-13],[51,11],[96,-36],[26,9],[62,-13],[30,-28],[39,-3],[44,-18],[75,-12],[53,-43],[22,-37],[29,-18],[20,-28],[33,24],[18,31],[34,21],[60,-19],[60,-34],[88,-57],[45,-24],[63,-6],[25,47],[24,18],[48,1],[63,-37],[31,-37],[26,0],[80,24],[43,-19],[21,-28],[21,-46],[16,-56],[4,-69],[-35,-103],[-32,-41],[-25,-13],[-40,6],[-16,-17],[-38,-11],[-31,9],[-30,34],[-24,1],[-31,19],[-28,32],[-40,21],[-32,35],[-59,4],[8,-42],[-14,-72],[-38,-43],[-70,-16],[-12,-18],[-21,-60],[48,55],[22,13],[72,19],[25,-7],[27,-24],[58,7],[60,-10],[44,-18],[80,-4],[40,-25],[33,-38],[21,-42],[5,-38],[-13,-72],[-41,-48],[-58,-23],[-41,-7],[-34,-21],[-26,0],[-38,-15],[-26,1],[-17,-17],[-73,-30],[-47,2],[-28,12],[-30,-22],[-55,-9],[-61,29],[-35,39],[-26,59],[-5,35],[0,70],[19,59],[-76,-62],[-36,-3],[-42,-46],[-17,-60],[-19,-22],[-15,-69],[-20,-31],[-33,-20],[0,-37],[-24,-60],[-21,-22],[-27,-12],[-39,-48],[-40,-9],[-34,-22],[-71,-18],[-44,7],[-48,-59],[-25,-9],[-49,9],[-42,30],[-59,-65],[-18,-10],[-36,-1],[-49,11],[-53,-42],[-47,-5],[-45,21],[-18,16],[-32,8],[-31,-10],[-56,-3],[-15,-12],[-41,-4],[-48,29],[-21,-21],[-37,-7],[-28,-41],[-54,-39],[-27,-9],[-28,4],[-36,29],[-19,38],[-6,33],[10,79],[-17,-4],[-36,15],[-43,-7],[-48,-35],[-39,13],[-26,24],[-76,11],[-42,-4],[-58,-36],[-89,-21],[-57,-37],[-32,7],[-61,1],[-46,16],[-60,3],[-22,11],[-113,12],[-20,8],[-32,-33],[-50,-10],[-25,8],[-36,33],[-43,67],[-9,49],[0,94],[10,52],[-2,60],[9,43],[-8,41],[12,68],[28,36],[-6,43],[3,67],[11,52],[22,53],[-22,77],[-49,22],[-23,27],[-16,34],[-53,141],[-5,48]],[[175922,76285],[9,47],[21,35],[27,25],[40,14],[31,-6],[44,-43],[24,-63],[-2,-54],[-29,-59],[-24,-23],[-29,-12],[-35,4],[-30,22],[-36,49],[-11,64]],[[175205,75787],[6,33],[33,43],[28,15],[30,-2],[33,-21],[23,-37],[10,-40],[67,7],[28,-14],[37,-46],[18,-37],[12,-47],[1,-76],[-9,-37],[-40,-75],[-25,-29],[-52,-31],[-46,-2],[-35,15],[-36,27],[-48,51],[-27,52],[-8,50],[18,59],[-13,46],[-5,96]],[[179996,74650],[8,47],[20,42],[-12,70],[20,85],[28,46],[27,25],[26,12],[33,1],[32,-14],[34,31],[58,14],[52,2],[49,-21],[33,-40],[18,14],[29,47],[46,22],[37,-2],[50,-25],[26,-24],[17,-28],[42,-41],[21,-49],[5,-45],[-18,-68],[-24,-33],[-33,-24],[-26,-8],[-47,-41],[-63,-39],[-22,-2],[-74,-27],[-76,-39],[-51,-11],[-36,-1],[-22,14],[-41,-1],[-22,10],[-32,-22],[-48,-2],[-30,23],[-23,42],[-11,60]],[[179686,76042],[5,50],[20,41],[-3,37],[15,58],[20,43],[7,36],[1,54],[19,48],[31,30],[31,16],[31,-1],[38,-23],[15,-20],[51,25],[39,-12],[19,25],[27,16],[48,-4],[26,-119],[15,-34],[54,-2],[47,29],[25,-9],[11,-41],[33,-22],[21,4],[98,-15],[20,-14],[44,-4],[-5,-46],[10,-56],[-42,-80],[4,-42],[-26,-34],[-26,-9],[-40,5],[-45,28],[-39,-5],[-44,-36],[2,-52],[-11,-40],[-18,-31],[-24,-20],[-38,-9],[-45,28],[-21,35],[-10,41],[-44,31],[-20,45],[-53,-1],[-28,-10],[-34,0],[-46,33],[-30,-53],[-26,-20],[-52,-1],[-40,37],[-17,70]],[[129231,109802],[-1,90],[-26,20],[8,79],[47,33],[2,80],[52,-22],[5,-25],[161,-1],[24,-5],[32,14],[4,-19],[49,24],[24,-3],[-11,47],[11,44],[39,39],[67,48],[23,-8],[10,31],[22,12]],[[129773,110280],[-3,-228],[64,-2]],[[129834,110050],[-1,-143],[-30,-45],[-32,9],[-4,-31],[11,-60],[-13,-33]],[[129765,109747],[-12,10]],[[129753,109757],[-3,47],[-29,1],[-11,70],[-25,-7],[-4,-100],[31,-8],[-38,-53],[-67,-4],[-8,-17],[-38,-1],[0,19],[-52,0],[2,-49],[-81,2],[-103,-33],[-69,-1],[-14,-19],[-2,-33],[-53,-3]],[[129189,109568],[1,95],[30,32],[0,38],[11,14],[0,55]],[[132310,109993],[-117,1],[-567,-5],[45,-517],[0,-29],[-36,-30],[-21,16],[-28,44],[-64,25],[-3,10],[-46,18],[0,24],[-32,-1],[-18,13],[-21,-18],[-62,3],[-26,17],[-22,34],[-61,46],[-29,60],[-223,3],[-348,7],[0,-63],[-349,-2]],[[130282,109649],[3,390],[79,0],[0,48],[10,45]],[[130374,110132],[26,9],[1,21],[30,25],[-3,67],[18,18],[7,95],[33,70],[25,21],[0,115],[-46,3],[-21,64],[16,98],[-18,21],[32,28],[-8,74],[-12,34],[-32,0],[-8,28],[-31,-39],[0,-35],[-43,0],[-9,36],[-43,2],[-12,-11],[-101,4],[-6,-62],[-13,-52],[-14,21],[-45,1],[1,-58],[-69,-11],[-15,-33],[-234,2]],[[129780,110688],[5,330],[-11,18],[-162,7]],[[129612,111043],[1,477],[-3,519],[1,236]],[[132168,102397],[5,-26],[-68,8],[-3,25],[-29,-12],[5,35],[-16,8],[13,58],[-15,14]],[[132060,102507],[30,56],[-23,6],[0,23],[-38,20],[-4,77],[-33,0],[-19,31],[-41,12],[-34,44],[-35,-1],[10,-44],[-28,0],[-8,24],[-23,7],[-4,34],[-24,0],[0,26],[24,20],[38,-24],[13,38],[47,-5],[-14,46],[-1,49],[-21,-1],[-9,25],[-2,43],[29,11],[6,56],[-7,35],[-21,43],[50,31],[30,34],[50,2],[41,40],[42,24],[34,-15],[14,-27],[-18,-22],[16,-17],[27,6],[37,-34],[15,-26],[43,-8],[-23,-83],[20,-1],[6,-25]],[[131753,102988],[-1,77],[-27,25],[0,45]],[[131725,103135],[24,0],[2,68],[-6,66],[18,0],[35,47],[10,-4],[84,2],[25,-8],[52,-1],[18,11],[2,36],[47,4],[23,-21],[26,6],[15,-21],[23,0],[63,-71],[-4,-23],[31,-19],[45,10],[264,312]],[[132522,103529],[103,-402],[-29,-10],[-19,-20],[0,-24],[-39,-1],[8,-62],[-34,-51],[-35,7],[-35,-26],[-21,-67],[-57,0]],[[132060,102507],[-48,-88]],[[166149,128284],[213,183]],[[166362,128467],[246,76]],[[166608,128543],[252,77]],[[166860,128620],[0,-207],[46,-30],[38,-9],[27,-18],[-21,-26],[-15,-58],[1,-42],[-10,-40],[-25,-30],[2,-28]],[[166903,128132],[-40,-5],[-1,-45],[-226,-76],[5,-39],[-38,-9],[-50,3],[-4,26],[-82,1]],[[166467,127988],[-7,49],[-27,25],[-72,-35],[-95,-21],[-44,2],[2,-30],[-12,-27],[-27,-8]],[[166185,127943],[-34,19]],[[166151,127962],[18,30],[-64,77],[-31,-13],[-47,20]],[[166027,128076],[4,33],[18,22],[28,-12],[23,26],[-2,34],[35,45],[16,60]],[[102681,128580],[324,0],[331,0],[361,0],[439,0],[502,1],[548,202],[511,4],[12,-58],[24,-35],[11,-32],[50,-31],[24,-66],[30,-14],[44,-4],[29,19],[17,-16],[68,22],[11,31],[28,16],[52,0],[21,-28],[105,-43],[28,-62],[-63,-4],[39,-68],[24,-75],[21,-24],[-10,-23],[34,-9],[13,-24],[50,-19],[9,20],[43,-14],[21,-24],[-9,-30],[32,-18],[11,-34],[-16,-83],[44,-36],[-2,-65],[25,-39]],[[106517,127917],[-90,-4],[-149,0],[-37,-5]],[[106241,127908],[-41,13],[-23,-4],[-41,16],[-45,-4],[0,17],[-101,-3],[-71,3],[9,-36],[-10,-14],[0,-51],[-60,0],[0,-90],[-16,-27],[-50,-5],[-195,-3],[-8,-15],[32,-40],[1,-43],[-11,-12],[5,-55],[-7,-41],[7,-39],[-14,-19],[25,-96],[-64,-30],[4,-57],[24,-31],[-9,-41],[1,-48],[17,-24],[-8,-29],[29,-55],[-25,-15],[-11,-38],[16,-44],[-6,-70],[19,-33],[0,-40],[20,-32],[19,-7],[-9,-37],[19,-8],[3,-42],[-20,-34],[-22,-18],[-4,-54],[39,-61],[-11,-38],[-21,-8],[-4,-45],[-15,-14],[18,-48],[-12,-64],[31,-11],[43,-68],[36,-8],[12,-35],[-2,-70],[29,-7],[6,-29],[30,-19],[12,-31],[-7,-26],[-35,-35],[17,-63],[-1,-54],[-16,-47],[-53,-86],[-102,1],[-32,-89],[-18,-29],[-74,-70],[-65,-67],[-46,-126],[-40,-90],[224,1],[30,-65],[-30,0],[0,-33],[30,-51],[-1,-270],[8,0],[0,-101],[184,1],[-1,-34],[89,-1],[0,52],[91,0],[-1,67],[59,2],[-2,34],[277,3],[-1,79],[292,5],[411,8]],[[106998,124933],[0,-229],[2,-67],[1,-640],[2,-155],[-1,-163],[0,-297],[-1,-184],[-12,0],[0,-201],[2,-198],[555,0],[415,0],[624,0],[422,0],[38,-45],[-16,-50],[-24,-26],[37,-73],[-21,-24],[-24,-48],[30,-10],[19,-23],[20,35],[24,-23],[-21,-42],[29,-38],[11,-55],[23,-24],[-2,-42],[25,-11],[-5,-38],[13,-18],[27,26],[14,-65],[18,-27],[-47,-15],[2,-22],[42,-31],[-19,-21],[1,-32],[-45,-48],[-3,-51],[-37,-16],[-11,-35],[-51,-32],[-22,22],[-27,-30],[-32,-61],[-1,-50],[-28,-19],[-16,-41],[5,-37],[-31,-28],[-35,31],[-35,-7],[-14,-34],[-23,-17],[-7,-34],[-59,-51],[-5,-35],[11,-32],[-11,-46],[-15,-11],[-76,15],[-21,-19],[-2,-46],[-22,-4],[-4,33],[-17,16],[-93,4],[-38,-10],[-26,-19],[4,-64],[-31,-18],[-20,-34],[-5,-52],[-54,3],[-7,-18],[21,-66],[34,3],[-9,-84],[-33,-28],[-3,-28],[-27,-22],[3,-65],[-26,-58],[-33,2],[-14,-35],[-33,13],[-16,-9],[-6,-50],[-54,-33],[-4,-70],[-49,-36],[-40,-66],[-9,-76],[28,-2],[11,-20],[-49,-17],[-74,9],[-20,-55],[-23,-12],[33,-39],[36,0],[-11,-65],[-20,-19],[-25,15],[-24,-17],[47,-55],[-30,-70],[-56,-50],[-54,5],[-61,49],[-30,6],[-6,-20],[13,-30],[39,-19],[6,-45],[-48,-21],[-9,-31],[19,-29],[-33,-26],[10,-60],[-28,-21],[8,-34],[-17,-63],[-36,6],[-18,-65],[-36,-7],[9,-29],[-12,-25],[-35,8],[-19,-39],[-33,11],[-41,-15],[-19,-23],[-22,20],[-14,-10],[-43,-2],[-30,12],[-21,-39],[-29,2],[-19,31],[-22,-6],[-13,-31],[-47,-73],[-35,26],[-15,-42],[29,-28],[-14,-39],[-13,-1],[-34,76],[-46,28],[-10,-37],[33,-27],[-38,-32],[-12,-29],[-26,18],[-20,-26],[-37,-16],[-63,7],[-8,-8]],[[106241,127908],[-6,-29],[16,-16],[-2,-61],[-34,1],[-26,27],[0,27],[-48,0],[9,-46],[-23,-3],[19,-81],[-47,-2],[0,-198],[-30,0],[-1,-117],[-33,-65],[3,-41],[61,-75],[55,-50],[10,-23],[45,-29],[44,-41],[2,-170],[67,-54],[-14,-61],[12,-16],[0,-65],[119,0],[15,-16],[-1,-129],[-64,-74],[-111,-163],[-7,-23],[-2,-66],[-20,-45],[-36,-42],[-18,-33],[39,-43],[-1,-28],[14,-23],[32,-20],[0,-32],[31,-29],[-14,-33],[-12,-87],[209,2],[268,-2],[228,0],[93,2],[1,-605],[-1,-195],[-84,0],[0,-103]],[[110542,125107],[-19,4],[-38,-17],[-14,-49],[-17,-21],[-456,1],[-425,-1],[-452,-1],[0,18],[-111,0],[14,51],[-12,20],[-7,55],[-14,-1],[12,69],[-15,31],[26,54],[-12,25],[24,33],[5,73],[23,0],[18,40],[-15,90],[34,7],[-19,47],[-4,34],[32,4],[20,-29],[18,48],[21,-2],[16,84],[70,8],[-26,18],[13,20],[-518,0],[-483,1],[0,12],[-350,1],[-185,2],[1,200],[-54,0],[0,423],[-7,0],[-1,300],[0,506],[-10,0],[2,581],[-51,-5],[-23,-44],[6,-34],[-28,-69],[3,-21],[-24,-34],[-55,-2],[-32,-37],[-38,13],[-39,30],[-64,-9],[-20,-36],[-6,-39],[-16,-20],[-53,21],[-13,15],[-77,29],[-102,65],[-38,40],[-76,23],[-23,64],[1,40],[-16,29],[-20,-22],[-40,9],[11,-45],[-67,-50],[-2,-26],[-20,-27],[7,-27],[-11,-23],[-60,29],[-40,-6],[-7,23],[-29,31],[-5,29],[-23,15],[-17,34],[17,84],[-20,24]],[[99519,147083],[609,0],[528,-2],[484,-1],[436,2],[601,2],[463,-6],[588,-3],[540,1],[750,2],[684,0],[391,0],[640,-2],[338,-3],[362,1],[410,2],[306,1],[562,1],[393,1],[555,1],[402,1],[392,1],[682,-3],[380,0],[570,0],[466,1],[614,0],[453,0],[95,1],[420,0],[343,0],[553,-1],[469,0],[271,0],[420,0],[524,0],[412,-1],[415,-1],[379,0],[451,1],[551,1]],[[110550,115109],[214,5],[0,-34],[27,18],[84,-1],[-18,-43],[20,-45],[-20,-21],[13,-26],[44,26],[15,-10],[1,-35],[-33,-41],[50,-42],[48,-26],[37,4],[37,32],[-25,25],[-6,40],[67,36],[91,16],[24,-4],[55,-32],[24,-1],[48,38],[1,150],[-2,145],[2,97],[8,11],[66,22],[38,2],[552,-2],[185,-2],[419,0],[1,100],[166,0],[0,-101],[133,-3],[265,4],[215,1],[40,-128],[28,-71]],[[113464,115213],[8,-29],[168,-495],[87,-260],[-8,72],[26,35],[29,22],[28,37],[20,-7],[36,19],[347,-2],[0,-23],[98,0],[30,133],[18,4],[35,30],[39,11],[14,15],[45,-20],[39,-40],[19,-31],[49,1],[23,25],[119,9],[16,-52],[20,-7],[-9,-46],[-17,-43],[3,-94],[-45,-27],[0,-45],[-84,0],[-1,-138],[-262,2],[0,-32],[-105,2],[-16,-49],[31,-18],[32,6],[-1,-30],[66,0],[-11,-31],[65,11],[64,-16],[46,-34],[28,27],[32,-21],[-1,-28],[30,-5],[1,-250],[-9,0],[2,-203],[82,1],[3,-606],[275,1],[412,0],[361,1],[404,-1],[285,0],[0,266],[1,537],[35,-1],[-1,331],[0,292],[0,384]],[[116465,114803],[-1,403],[261,1],[394,-1],[394,-1],[394,0],[395,-1],[0,-422],[-2,-183],[-6,0],[0,-429],[1,-378],[616,-1],[-1,-230],[-2,-467],[441,-2],[3,-99],[1,-240],[-29,0],[1,-117],[-28,0],[7,-63],[214,230],[0,-48],[14,0],[0,51],[20,17],[74,0],[1,-34],[83,1],[0,-33],[27,-1],[1,-34],[163,-1],[0,-67],[103,0]],[[120004,112654],[1,-214],[-7,-519],[-3,-135],[-5,-374],[-7,-570],[-3,-178],[-9,-583],[0,-568],[0,-538]],[[119971,108975],[0,-682],[1,-324]],[[119972,107969],[0,-200],[-490,0],[-587,-1],[-550,0],[-244,0],[-337,0],[-418,1],[-424,0],[-394,-1],[-281,1],[-476,2],[-30,2],[-390,0]],[[115351,107773],[-201,0],[-197,-2],[-579,-2],[-33,-47],[24,-44],[3,-58],[-12,-22],[28,-15],[-44,-34],[-8,-24],[23,-20],[-9,-47],[34,-45],[20,-16],[-5,-28],[27,-13],[17,-27],[47,-7],[32,-43],[-2,-13]],[[114516,107266],[-6,2],[-344,0],[-394,-1],[-290,0],[-374,0],[-340,1],[-374,-1],[-525,0],[1,-422],[-1,-174],[0,-445],[-460,0],[-326,0],[-171,-2],[-368,0]],[[115351,107773],[3,-332],[2,-414],[-8,7],[-341,0],[-17,-10],[-6,-36],[-25,13],[-72,93],[-34,-34],[-26,-14],[-26,7]],[[114801,107053],[-42,55],[-11,40],[-57,45],[-25,7],[-29,23],[-23,-10],[-11,-22],[-28,-4],[-48,58],[-11,21]],[[113464,115213],[182,-2],[365,-2],[135,1],[7,-15],[3,-73],[140,2],[-24,37],[-32,0],[-42,49],[113,0],[63,-11],[31,10],[24,48],[-16,61],[-38,24],[60,82],[13,45],[16,7],[26,-17],[9,20],[50,0],[22,39],[19,15],[128,-8],[0,25],[71,1],[-2,192],[49,30],[121,-43],[-2,-320],[5,-25],[1,-128],[36,22],[23,-26],[29,-16],[53,-13],[0,-190],[-55,0],[-1,-229],[-4,-6],[185,0],[317,3],[197,-2],[197,2],[215,0],[312,1]],[[120069,118175],[-62,0],[1,-423],[1,-734],[0,-482],[-1,-385],[-1,-534],[-1,-657],[0,-454],[0,-385]],[[120006,114121],[-1,-218],[0,-640],[-1,-609]],[[119972,107969],[414,0],[4,-3],[1,-554],[1,-170],[-2,-280],[317,-1],[369,0],[561,1],[424,-1],[378,0],[364,-1],[-3,-468],[-5,-357],[-4,-496],[432,6],[426,8],[376,5],[382,2],[210,-1],[-2,-643],[1,-428],[-1,-538],[0,-236],[380,0],[191,1]],[[125186,103815],[-6,-501],[-252,-1],[1,11],[-79,9],[-9,-133],[-26,2],[-20,-298],[-33,-32],[6,-31],[-7,-47],[-12,-19],[7,-39],[16,-28],[6,-41],[-25,-12],[-11,-23],[22,-78],[-12,-21],[5,-31],[-59,-28],[27,-10],[2,-27],[45,-42],[-21,-31],[36,-72],[-11,-20],[414,3],[233,5],[178,2],[206,-1],[135,-4],[234,-3],[223,-2],[12,-24],[-17,-66],[12,-21],[-9,-26],[19,-29],[13,17],[60,7],[233,366],[26,4],[39,-12],[23,29],[37,8],[57,28],[28,7],[45,-21],[48,8],[18,18],[50,4],[62,-31],[73,-16],[22,-28],[-11,-32],[-5,-54],[6,-57],[-17,-14],[-49,22],[-13,-46],[12,-75],[-25,0],[-5,-39],[-26,3],[-27,-41],[12,-28],[-6,-28],[-23,-5],[-15,63]],[[127058,102163],[-18,36],[-38,28],[-11,38],[-32,-23],[-29,23],[-35,1],[-19,13],[-13,-71],[3,-26],[-15,-51],[-33,-85],[-47,25],[-17,-50],[-28,-7],[-19,-26],[0,-42],[48,-50],[16,-56],[23,-15],[35,13],[35,-1],[81,41],[-19,-59],[0,-70],[-13,-7],[22,-62],[-4,-16],[0,-87],[32,34],[15,-44],[48,52],[19,-16],[34,-4],[0,49],[18,7],[58,0],[0,-33]],[[127155,101622],[4,-53],[39,-2],[71,11],[25,14],[17,27],[16,72],[-16,8],[-12,30],[-24,13],[15,34]],[[124464,98973],[-8,69],[-10,20],[-35,-3],[-18,14],[-58,102],[11,39],[-2,37],[-40,66],[-5,27],[-39,64],[-12,38],[21,66],[-8,45],[-42,59],[10,17],[28,9],[14,32],[-82,32],[-28,51],[-10,37],[22,55],[-2,22],[-53,29],[-24,28],[3,71],[-26,1],[-27,31],[-33,17],[-16,71],[6,56],[-2,55],[-47,93],[8,24],[-5,34],[-15,15],[-2,29],[-48,24],[6,31],[-28,33],[0,23],[-18,32],[0,36],[-25,15],[-21,-14],[-12,58],[-20,41],[7,23],[-2,104],[-18,72],[-6,99],[-18,61],[-28,34],[-27,10],[-43,45],[-3,26],[-29,14],[-28,39],[15,29],[-13,56],[-41,89],[-53,30],[-35,33],[-34,12],[-14,62],[-20,4],[-30,34],[-36,22],[-15,32],[-84,39],[-16,23],[-9,41],[-26,32],[-11,55],[-21,25],[-5,42],[-43,25],[-44,-3],[-23,23],[-35,-3],[-31,63],[-3,24],[-30,13],[-67,11],[-31,-11],[-10,38],[32,66],[-18,90],[8,33],[-23,28],[-29,-35],[4,-57],[-21,-44],[-32,31],[0,70],[18,59],[-22,42],[-53,7],[-25,-22],[-14,59],[-5,55],[-36,35],[2,39],[-29,29],[24,32],[-17,23],[-40,-42],[-19,-3],[-11,86],[-37,-9],[-34,-42],[-61,-9],[7,83],[-11,30],[-41,-28],[-15,-68],[-46,11],[-36,-11],[-27,-34],[-26,38],[-29,-24],[-13,24],[-35,-19],[-12,30],[-22,-11],[-77,42],[-9,-23],[-36,10],[-5,20],[17,26],[-34,11],[10,-39],[-30,5],[-19,32],[-41,-31],[-55,10],[-22,-33],[-14,30],[-19,11],[-15,-15],[-15,33],[-27,13],[-4,-37],[-26,14],[-21,-17],[-34,15],[-4,-29],[-17,-14],[-35,3],[-20,19],[-51,-5],[-43,24],[-25,26],[-46,79],[-52,-20],[-14,18],[-48,12],[-61,56],[-32,5],[-4,-32],[-30,8],[-14,-33],[-22,-24],[3,-30],[-23,-73],[0,-23],[-19,-17],[7,-28],[-31,-12],[-47,27],[-61,-2],[-22,24],[-16,-12],[-28,7],[3,-41],[-55,-51],[-28,61],[-10,-31],[-27,-20],[-40,-5],[-13,-24],[-36,-6],[-49,17],[-23,-46],[4,-37],[-15,-22],[8,-43],[-65,-81],[-7,-38],[-1,-64],[-45,-8],[10,-33],[-19,-17],[-7,-68],[-47,-47],[2,-67],[-11,-51],[-14,-20],[-15,-72],[9,-34],[-10,-15],[12,-33],[-13,-41],[-18,-13],[0,-37],[-24,-14],[-27,8],[-3,-37],[-21,-69],[7,-36],[-22,-31],[-6,-42],[29,-37],[26,-12],[6,-39],[-17,-23],[-33,-11],[-16,24],[-12,-64],[-25,6],[-28,-38],[-44,19],[-30,-26],[3,-32],[-29,-84],[-12,0],[-19,-55],[-32,-1],[-72,-93],[-10,-52],[13,-25],[-31,-68],[-1,-33],[-28,0],[-28,-28],[-27,21],[-52,16],[-73,-16],[-24,35],[-22,-43],[-10,54],[-83,46],[18,29],[-5,24],[-23,5],[-14,-54],[-52,-1],[-3,28],[-22,-4],[-20,14],[-30,45],[-25,19],[-31,1],[0,44],[-24,24],[-23,46],[-38,13],[-1,37],[-51,43],[-36,-14],[-26,5],[-23,32],[-36,-16],[-26,5],[-10,20],[-74,35],[-24,-9],[-37,65],[-22,26],[-4,31],[-29,-30],[-7,16],[10,48],[-13,40],[-25,-16],[-23,36],[-19,-11],[-18,20],[-41,3],[-55,18],[-21,-8],[-22,25],[-19,-4],[-47,17],[-7,-9],[-76,37],[-55,43],[-1,16],[-41,19],[-39,64],[-23,-5],[-31,15],[-17,25],[-26,17],[-18,34],[-2,35],[-21,37],[-26,18],[-4,27],[7,47],[-34,-7],[-7,40],[-43,41],[-47,14],[-7,10],[-66,-9],[-50,52],[-17,1],[-22,31],[-6,36],[-85,74],[-22,12],[-17,45],[-32,25],[-25,-2],[-18,63],[-30,36],[-9,137],[-30,25],[5,46],[-20,26],[-12,47],[-12,5],[-23,52],[-2,28],[-31,28],[-7,45],[-19,16],[-21,53],[-26,33],[-11,47],[-4,50],[4,34],[-17,83],[-17,37],[5,27],[-10,34],[34,73],[-14,46],[6,37],[-7,33],[10,18],[3,91],[-16,29],[-13,58],[-1,42],[-11,7],[-33,54],[-25,0],[-17,35],[-1,56],[-39,36],[-18,33],[-23,8],[2,67],[-15,27],[-27,-2],[-34,40],[18,53],[-22,30],[-7,87],[-12,72],[3,34],[-28,58],[3,26],[-16,18],[-2,38],[-17,33],[-14,1],[-5,40],[-18,-8],[-41,26],[-19,-2],[-19,58],[-4,64],[-24,23],[-10,32],[-30,-16],[-56,16],[0,28],[-21,8],[-19,32],[-17,2],[-29,61],[-43,28],[-28,-5],[9,38],[-47,35],[-50,49],[-51,-16],[-60,46],[-45,-18],[-3,33],[-32,35],[-75,30],[-20,81],[-23,26],[-45,23],[-14,35],[-25,1],[-6,20],[-44,39],[-5,40],[-22,-6],[-26,45],[-39,11],[-31,70],[-12,86],[-17,17],[-17,48],[-35,31],[-22,2],[-10,38],[-94,47],[-18,31],[-34,34],[-51,10],[-15,68],[-17,10],[-64,101],[-54,99],[-41,6],[-21,49],[-36,1],[-25,60],[2,33],[-12,26],[-25,3],[-59,63],[-108,11],[-15,9],[-39,49],[-35,5],[-36,25],[-28,40],[-43,22],[-31,44],[-7,41],[-21,34],[-12,55],[-14,22],[-41,33],[-14,59],[-30,98],[-42,80],[-20,62]],[[120006,114121],[264,0],[393,0],[401,-3],[587,5],[0,-335],[1,-671],[405,-1],[277,-1],[0,-551],[100,1],[-1,-33],[35,-1],[0,-69],[110,0],[0,17],[61,1],[47,-99],[9,-5],[72,0],[-1,33],[38,1],[-1,196],[168,2],[0,84],[187,3],[0,-591],[2,-397],[2,-470],[0,-238],[455,2],[197,2],[196,-3],[260,0],[134,1],[197,-2],[394,1],[197,2],[368,1],[616,-2],[452,-3],[139,-3],[201,0],[318,2],[0,-293],[-6,-277],[-3,-328]],[[127277,110099],[-1,-129],[-234,5],[0,-510],[-67,-39],[-74,-11],[-23,11],[-39,35],[-110,2],[-55,27],[-77,25],[-39,0],[-3,34],[-23,-9],[-73,-2],[-2,-83],[43,1],[0,-67],[-81,-1],[-45,24],[3,37],[-15,51],[-31,-2],[-10,46],[-18,-4],[-7,-48],[17,-38],[26,-32],[-52,-32],[-25,14],[-39,0],[0,-446],[-386,1],[-455,-1],[-2,-401],[0,-213],[-1,-388],[-130,2],[-147,-2],[-317,2],[-357,0],[-141,-2],[-252,4],[-284,5],[2,92],[0,273],[5,653],[-329,1],[-206,4],[-274,0],[-4,-353],[-6,-289],[-5,-377],[-280,0],[-339,0],[-186,1],[4,374],[6,580],[-3,682],[-1,386],[-290,-2],[-525,-5],[4,-268],[1,-228],[4,-511],[-447,-1],[-397,0],[-406,1],[-108,-3]],[[129612,111043],[-292,15],[-164,6],[-235,12],[-15,-571]],[[128906,110505],[-38,3],[0,-41],[-34,12],[-1,24],[-53,7],[-15,12],[-77,2],[-40,14],[-3,38],[-20,15],[2,66],[-11,17],[13,29],[-25,10],[-4,-56],[-24,1],[-36,-41],[17,-46],[14,-3],[-4,-51],[5,-67],[31,-1],[0,-32],[84,-17],[12,-45],[-25,-43],[6,-49],[-5,-24],[11,-40],[-85,7],[-19,22],[-41,-2],[-16,28],[-50,1],[0,-33],[14,-21],[-17,-46],[-18,-83],[-279,9],[-314,7]],[[127861,110088],[-300,4],[-284,7]],[[127861,110088],[-6,-388],[-8,-502],[-3,-138],[131,-3],[367,-1],[210,-4]],[[128552,109052],[2,-139],[-2,-54],[3,-354],[-264,-5],[-256,-192],[-54,11],[-122,-91],[-11,54],[-24,36],[-39,-39],[-33,6],[-48,-3],[-59,-33],[-24,2],[-22,39],[8,32],[-67,64],[-91,37],[51,-109],[49,-89],[-83,-144],[25,-62],[22,0],[8,-39],[-29,-6],[14,-82],[14,-36],[-27,-39],[-15,-43],[37,-27],[-5,-22],[12,-27],[31,24],[149,-320],[-484,-365],[76,-152],[133,-273],[102,-207],[-466,-417],[-10,-74],[20,-15],[22,6],[22,-51],[2,-74],[-33,-27],[38,-92],[36,65],[34,2],[16,-49],[18,-20],[0,-24],[-24,-4],[-18,-22],[13,-30],[41,-24],[17,-42],[-31,-40],[27,-54],[-17,-36],[9,-39],[35,-8],[16,-15],[-5,-33],[-44,-15],[-6,-73],[-13,-25],[15,-19],[26,-3],[19,-24],[-3,-55],[44,18],[26,-19],[-20,-38],[-21,-1],[-17,-54],[-29,-19],[15,-26],[-12,-33],[10,-24],[77,-9],[5,-14],[-33,-44],[-18,-1],[-15,-38],[16,-66],[-56,-6],[0,-25],[33,-39],[1,-43],[28,-66],[-19,-24],[1,-31],[20,-26],[36,24],[18,-6],[20,-30],[1,-167]],[[127396,104267],[-95,37],[-337,-7],[-196,-1],[-198,1],[-197,-3],[-372,2],[-106,3],[4,-493],[-425,5],[-288,4]],[[127396,104267],[355,-139],[-75,-162],[-196,-735],[272,-284],[-8,42],[79,34],[-12,30],[26,38],[24,-14],[42,1],[34,37],[-4,129],[34,8],[15,31],[-10,130],[44,1],[49,-51],[34,0],[12,20],[-3,34],[56,14],[23,31],[-28,12],[10,56],[47,107],[-69,21],[-41,28],[-23,3],[-47,55],[-1,32],[31,52],[-11,21],[30,12],[23,-11],[32,23],[24,5],[30,-20],[26,-57],[10,-65],[28,-19],[8,21],[34,25],[27,44],[30,11],[-5,-45],[15,-14]],[[128367,103759],[3,-66],[39,-25],[-7,-34],[-42,8],[-44,34],[-19,-43],[-16,10],[-37,-71],[-21,-69],[47,-2],[48,-22],[-21,-38],[-5,-38],[1,-85],[-46,25],[-23,-22],[-31,0],[-19,-15],[0,-24],[-41,-32],[-10,-65],[-11,-24],[9,-61],[24,-34],[-14,-38],[-33,-51],[-10,-50],[-19,-28],[-34,-6],[-12,-13],[-17,-53],[17,-15],[-106,-138],[-60,-116],[-73,-93],[-30,28],[-8,-33],[-38,-19],[-120,-102],[-64,-56],[-66,-38],[-62,-20],[-12,-36],[-46,34],[-34,-18],[13,-38],[-2,-43],[-39,-56],[7,-25],[2,-57],[-33,-23],[35,-12],[17,-43],[-11,-29],[-37,-28],[-48,4],[5,27],[-39,5]],[[127174,101887],[0,54],[24,63],[-27,71],[-20,2],[0,-62],[-33,9],[-59,28],[-3,-40],[-18,-26],[-27,31],[25,18],[11,75],[-9,34],[20,19]],[[127174,101887],[-12,22],[-42,0],[-20,-26],[-8,-41],[6,-53],[39,-12],[14,-33],[4,-48],[25,0],[11,-27],[-5,-47],[-31,0]],[[127518,102105],[2,40],[19,14],[5,38],[-7,25],[50,39],[12,-11],[52,43],[-13,13],[170,106],[142,158],[88,126],[107,119],[17,-5],[25,-30],[12,-42],[-2,-60],[36,-22],[23,-52],[38,-18]],[[128477,102235],[-129,-248],[-11,-27],[-166,-314],[160,-237],[227,-325],[-27,-26],[-196,-211],[284,-449],[-321,-336],[-15,18],[-59,-12],[-16,22],[-55,22],[-41,35],[-29,35],[-275,-131],[155,-385],[64,-163],[223,-561],[-150,-160],[-5,-39],[19,-84],[-21,-10],[-515,3],[2,-759],[2,-561],[1,-520],[388,-5],[0,-439],[0,-346],[1,-705],[44,-10],[-18,-140],[8,-41],[-32,7],[-13,-104],[-7,1],[-12,-100],[151,-32],[73,-3],[0,-724],[-25,36],[-13,-25],[-49,11],[-33,-12],[-18,19],[-1,45],[-113,30],[-20,31],[-156,32],[6,47],[-12,59],[-21,14],[-15,-23],[-38,-333],[-25,-11],[-4,-50]],[[127629,94041],[-29,29],[-43,-11],[-31,49],[-25,18],[21,32],[-33,14],[-27,-22]],[[128367,103759],[27,-12],[20,26],[23,3],[18,-20],[57,-6],[18,20],[-35,27],[8,40],[-38,57]],[[128465,103894],[-64,54],[1,16],[38,7],[19,-17],[0,-30],[16,-24],[67,7],[29,-9],[9,25],[22,12],[30,-14],[8,-33],[-7,-48],[-25,-65],[31,-31],[6,-43],[35,-48],[36,-24],[34,4]],[[128552,109052],[194,0],[169,-4]],[[128865,106196],[-316,-238],[-310,-234],[54,14],[37,-73],[2,-22],[-14,-55],[-26,-4],[-48,6],[-8,14],[8,43],[-50,10],[-3,31],[-106,-80],[3,-72],[41,-80],[71,-164],[19,-54],[-80,-107],[-132,-172],[-137,-373],[32,-22],[27,5],[34,-16],[21,28],[33,15],[35,-42],[28,-13],[-8,-32],[11,-24],[43,-55],[31,-24],[-6,-55],[25,-35],[-3,-13]],[[128173,104303],[-22,-44],[-29,11],[-26,-28],[-6,-23],[-25,-21],[10,-54],[22,-27],[29,12],[21,-7],[40,-62],[66,-40],[8,-23],[35,-19],[42,-2],[8,-20],[-43,-31],[-34,27],[-27,-63],[47,-51],[35,21],[37,-16],[27,6],[43,35],[34,10]],[[128906,110505],[-10,-446],[58,-11],[0,-37],[29,19],[32,-4],[20,-27],[-10,-116],[43,1],[0,-30],[27,0],[5,-61],[-12,-50],[0,-34],[34,1],[0,20],[26,11],[1,33],[48,-1],[34,29]],[[129189,109568],[-34,-7],[-14,28],[-21,-17],[-43,-1],[-11,61],[-28,10],[-6,32],[-30,1],[-26,41],[-81,-53],[13,-64],[29,-24],[6,-34],[39,2],[3,34],[30,30],[23,0],[-3,-62],[12,-57],[-26,-3],[-19,-22],[0,-39],[-30,-28],[-36,-51],[26,-31],[36,-11],[21,7],[-1,-54]],[[129264,97519],[-55,-157],[-79,-250],[-10,-39],[-63,-289],[-20,-125],[-17,-200],[-5,-136],[0,-94],[11,-188],[25,-218],[28,-165],[49,-235],[59,-197],[2,-35],[44,-198],[45,-233],[47,-289],[8,-57],[18,-196],[2,-84],[23,-37],[6,-30],[-2,-55],[-10,-30],[11,-150],[-89,-8],[2,-32],[-49,20],[-21,-26],[-31,22],[-47,-20],[-11,-15],[-47,9],[-5,-40],[-19,3],[-53,-43],[-39,18],[-37,-45],[24,-63],[-15,-45],[-8,-45],[-43,14],[-41,-11],[-27,17],[-43,92],[-22,-22],[-19,3],[1,37],[-38,-23],[-5,30],[-15,22],[4,27],[-45,28],[-37,13],[2,55],[-28,-11],[-13,36],[-24,39],[-47,62],[-23,6],[0,24],[-47,-13],[0,17],[-46,-19],[-37,19],[-23,-4],[-41,10],[-22,60],[-71,-17],[-30,12],[-16,18],[-24,-11],[-69,-16],[-21,20],[-24,-23],[-33,31],[-56,-12],[-14,9],[-11,-51],[-33,9],[-37,39],[-18,-10],[-15,20],[-52,-15],[-10,-22],[-44,43],[-29,-17],[-21,4]],[[128306,104139],[-10,17],[-32,21],[-19,-1],[-57,60],[-15,67]],[[129780,110688],[-7,-408]],[[129753,109757],[-23,-33],[38,-31],[-12,-24],[-32,-17],[-1,-83],[26,0],[2,36],[45,-28],[7,-30],[-65,-26],[12,-20],[39,6],[31,15],[-2,-43],[-37,-20],[0,-26],[35,3],[0,-32],[-73,-6],[-34,2],[-18,-24],[-35,58],[-56,-8],[-13,-37],[-54,20],[-17,34],[-20,-23],[-29,-8],[0,-41]],[[129765,109747],[41,-11],[-1,-30],[-19,-34],[19,-25],[70,-36],[15,-25],[44,68]],[[129934,109654],[23,-34],[70,43],[7,20],[29,1],[-25,-50],[-8,-34],[54,-67],[8,-18],[2,-149],[40,-17],[12,15],[26,-6],[-15,-39],[25,-43],[-22,-34],[-41,-46],[40,-29],[13,2],[7,-53],[28,-38],[8,-25],[49,-24]],[[129834,110050],[299,-7],[28,22],[2,111],[41,-4],[33,-22],[62,10],[10,18],[25,-14],[16,-30],[24,-2]],[[130282,109649],[-1,-40],[-20,4],[-18,83],[-82,-1],[-3,-45],[-24,5],[-19,23],[23,19],[-29,34],[6,35],[-11,15],[-27,-34],[-30,29],[23,47],[-19,13],[0,51],[-28,-16],[-50,-1],[-12,-13],[40,-45],[-5,-12],[-64,33],[-13,-29],[-16,7],[-10,-38],[25,-24],[32,-7],[0,-33],[-18,-35],[2,-20]],[[130856,103906],[53,-56],[37,12],[-4,-33],[13,-43],[-12,-53],[23,-9],[-33,-43],[26,-9],[213,19],[48,0],[187,20],[2,-360],[50,-5],[36,18],[23,-5],[46,20],[21,-8],[12,20],[24,-14],[72,80],[34,-7],[17,7],[25,37],[19,-35],[83,-1],[-9,-33],[14,-23],[-4,-34],[-98,25],[-10,-20],[-25,-2],[7,-68],[-57,-6],[-31,52],[-30,-22],[7,-80],[36,1],[5,-38],[46,-9],[-5,-45],[8,-21]],[[131491,102556],[-118,97],[-197,-110],[-32,-1],[1,-27],[-97,-1],[0,-25],[33,6],[11,-27],[-16,-34],[-3,-31],[-24,19],[-40,-15],[21,-37],[22,22],[22,-27],[-25,-19],[23,-23],[-12,-99],[-101,-3]],[[132669,106440],[-19,45],[-14,-6],[-43,24],[-14,34],[-62,3],[-16,46],[24,35],[-8,34],[-40,43],[-29,5],[-9,68],[-42,37],[-33,-28],[-94,8],[-26,38],[-304,-56],[-292,-62],[7,-34],[-145,-53]],[[131590,102474],[-43,-13],[1,-102],[28,16],[91,1],[28,12],[79,-58],[-30,-41],[31,-21],[46,-71],[-35,-1],[0,-55],[27,-56],[66,-29],[52,-40],[9,12],[-1,66],[-39,38],[-22,5],[-10,35],[188,3],[27,16],[46,-7],[23,32],[54,-6]],[[132361,102271],[39,8],[31,-13],[1,-68],[-23,0],[31,-48],[13,13],[23,-25],[-4,-38],[40,-64],[-22,-31]],[[132922,105794],[-152,-242],[-71,-84],[-340,-419],[31,-14],[10,-25],[27,-16],[30,-38],[10,-57],[-21,-36],[-1,-70],[20,-47],[35,4],[-14,-39],[5,-32],[18,-15],[26,33],[14,-6],[39,25],[2,-21],[46,-25],[-1,-25],[26,-101],[-26,-20],[-17,-27],[11,-17],[40,4],[59,-8],[25,-13],[15,-27],[47,5],[30,-11],[26,-25],[51,1],[19,-11],[-4,-25],[-31,-15],[-23,-31],[2,-34],[37,-20],[-258,-170],[-41,-23],[-77,-53],[-133,-84],[109,-411]],[[157794,133511],[19,1],[11,-41],[54,13],[-1,-65],[58,-1],[29,18],[-2,-75],[63,-36],[0,51],[23,-12],[68,-1],[33,-38],[35,8],[4,25],[38,-1],[51,10],[19,34],[14,-62],[0,-87],[44,-8],[0,-475],[-66,0],[0,-17],[-198,4],[-15,41],[4,62],[-35,56],[-20,57]],[[158024,132972],[1,57],[-21,54],[-21,21],[-47,4],[-20,25],[-58,39],[-13,22],[-5,50],[18,29],[19,62],[-12,23],[-106,28],[26,67],[-18,31],[27,27]],[[157385,132481],[265,147],[227,125],[109,106],[38,113]],[[157794,133511],[16,27],[-17,69],[7,60],[-14,26],[7,26],[-5,74],[-23,20],[-205,434],[120,65],[199,102],[391,201],[97,59],[100,0],[394,-7],[394,-2],[206,1]],[[159461,134666],[0,-304],[-1,-289],[114,-37],[75,-18],[105,-16],[-41,-139],[-255,2],[-1,-70],[51,-20],[-5,-60],[-47,-2],[0,-200],[144,2],[-72,-218],[114,-6],[129,2],[107,-4],[0,-35],[16,-8],[195,0],[13,37],[339,3]],[[160441,133286],[197,0]],[[160638,133286],[2,-416],[-36,0],[-3,-55],[-24,-76],[-33,-51],[-11,-34],[-38,-66],[-25,-76],[-6,-74],[-55,-87],[-32,-29],[-1,-29],[-67,-66],[-322,8],[-2,-104],[-94,0],[-3,-148],[-185,8],[-1,100],[-319,1],[5,6],[-419,1],[-249,-5],[1,39],[-75,-19],[-56,-23],[-26,-21],[-50,9],[-42,-20],[-38,-31],[-27,2],[-27,-16],[-77,-5],[-16,-22],[-32,-14],[-34,-27],[-21,17],[-24,-9],[-42,-35],[-94,-6],[-25,16],[-46,47],[-25,10],[-15,49],[-33,45],[-7,37],[-56,26],[-53,-6],[-35,20],[-21,42],[-30,12],[-18,-11],[-151,139],[-140,142]],[[156675,132087],[450,252],[260,142]],[[160638,133286],[0,12],[177,0],[1,-63],[267,1],[128,10],[266,15],[-12,-40],[-9,-66],[-15,-18],[4,-59],[-8,-65],[3,-34],[26,-75],[2,-102],[-32,-83],[10,-143],[22,-63],[38,-41],[16,-29],[30,-108],[82,-3],[245,12],[0,-20],[304,11]],[[162183,132335],[20,-499],[194,6],[8,-19],[24,-150],[-11,-25],[24,-37],[1,-74],[20,1],[12,-48],[-26,-1],[25,-63],[-9,-40],[0,-61],[-46,-3],[11,-256],[-22,-24],[-25,-6],[-24,37],[-11,47],[-32,3],[-27,-23],[-36,-9],[-31,38],[-52,-36],[-7,-54],[-40,-13],[-23,19],[-20,-5],[-15,-50],[-24,-40],[-27,9],[-82,4],[-29,22],[-34,-19],[1,-44],[-13,-31]],[[159461,134666],[469,0],[309,1],[176,-1]],[[160415,134666],[17,-591],[4,-498],[5,-291]],[[160415,134666],[415,-1],[198,-4],[351,1],[36,126],[29,55]],[[161444,134843],[371,-28],[196,-17],[197,-14]],[[162208,134784],[0,-133],[74,0],[-11,-116],[-15,-46],[-26,-45],[-74,-24],[-19,-15],[-84,6],[-37,29],[5,-103],[72,-58],[36,-47],[37,-60],[146,-51],[-66,-213],[23,-9],[13,-65],[53,-58],[83,-30],[46,-33],[13,-46],[52,6],[62,-51],[21,8],[35,-67],[-2,-32],[21,-31],[-27,-56],[19,-38],[74,-2],[21,-449],[12,-233],[-290,-25],[-306,-20],[14,-342]],[[162208,134784],[201,-15],[158,-18],[-5,90],[55,-7],[340,-35],[12,-148],[17,-357],[350,-118],[271,186],[187,124],[209,142],[20,-273],[19,-202],[14,-182],[-35,-13],[-14,-32],[-52,-16],[-28,-73],[-6,-34],[63,-40],[50,-24],[56,4],[-1,-18],[88,13],[-15,126],[204,-100],[37,-385],[28,11],[49,-28],[19,12],[56,-59]],[[164555,133315],[25,-38],[6,-75],[-18,-167],[-18,-146],[-182,81],[-15,-107],[-10,-46],[-19,-16],[-147,95],[-159,98],[-62,-113],[-111,-7],[-2,54],[-49,-5],[-2,-78],[7,-22],[-16,-23],[-3,-94],[-34,-26],[-10,-42],[-18,-9],[-8,-74],[-27,-67],[-22,-23],[-1,-72],[8,-59],[-22,-22],[1,-44],[17,-13],[-12,-52],[-55,-33],[-8,-37],[-40,-85],[5,-29],[-14,-18],[8,-42],[20,-37],[18,-79],[-28,-23],[-22,-46],[5,-35],[17,-17],[-15,-23],[6,-29],[-25,-36],[-6,-290],[-103,1],[1,-82],[-31,20],[-48,-11],[0,-66],[-31,0],[-4,-31],[4,-284]],[[166895,133075],[-167,1],[-19,20],[-64,14],[-28,-32],[-274,-8],[-41,-7],[-15,-13]],[[166287,133050],[-29,7],[5,68],[-77,18],[-30,19],[-14,53],[21,52],[17,15],[13,51],[39,46],[-8,64],[-234,-31],[21,-202],[-412,-52],[-1,8],[-282,4],[-334,1]],[[164982,133171],[-84,1],[-343,143]],[[161444,134843],[174,318],[197,356],[96,219],[135,94],[63,149],[41,11],[65,-1],[85,41],[43,42],[4,96],[48,36],[53,7],[82,74],[70,37],[49,-11],[32,15],[58,44],[65,61],[80,87],[20,91],[66,102],[62,63],[101,113],[70,64],[177,198],[44,35],[85,83],[16,38],[26,2],[43,34],[40,48],[17,-6],[50,47],[-9,23],[54,38],[71,34],[15,23],[25,0],[60,36],[39,8],[9,43],[59,27],[51,6],[94,67],[19,44],[32,13],[102,0],[31,38],[34,2],[63,36],[39,-3],[14,-23],[46,2],[5,-25],[46,-10],[46,30],[29,-9],[356,-6],[193,-12],[291,-1],[434,23],[176,4],[194,1],[319,13],[149,4]],[[164982,133171],[24,-202],[24,29],[53,42],[21,-351],[136,16],[56,1],[41,29],[24,-27],[-17,-64],[-44,-1],[-29,-21],[52,-77],[51,11],[59,-19],[59,15],[-7,-115],[-38,-112],[-64,-100],[-12,-58],[25,-56],[-4,-75],[-25,-55],[-32,-117],[2,-29],[230,38],[210,37],[80,12],[152,32],[84,13],[-2,59],[18,45],[18,20],[58,-6],[14,26],[54,-4],[37,10],[67,-28],[12,38],[-40,31],[-25,46],[-30,24],[19,24],[23,4],[53,264],[-70,-12],[-9,95],[-10,35],[16,83],[-11,29],[3,37],[-26,92],[5,38],[-18,40],[9,46],[29,47]],[[166559,131008],[-3,-115],[-34,-558],[-16,-321],[-14,-214]],[[166492,129800],[-79,-2],[-147,-27],[-144,258],[-103,24],[-11,76],[5,113],[-11,19],[-31,-28],[-14,17],[-33,10],[-8,53],[-53,-12],[-18,-18],[-9,-85],[6,-35],[-15,-137],[-2,-81],[-158,-22],[-22,59],[-35,-17],[-14,20],[-56,19],[13,-76],[-93,27],[-3,-8],[-101,34],[2,55],[-22,8],[-64,-41],[-24,-28],[-33,-20],[-36,-5],[-50,-26],[-53,-51],[-24,-50],[-18,-12],[-16,-35],[-29,-29],[-120,-9],[-302,-16],[-13,-6],[15,-63],[-18,-33],[12,-57]],[[165668,127784],[28,-36],[54,-40],[5,-27],[33,-28],[23,26]],[[165811,127679],[16,-41],[-13,-17]],[[165814,127621],[-47,-11],[-75,21],[3,-89]],[[165695,127542],[-9,-96]],[[166492,129800],[-10,-186],[-11,-162]],[[166471,129452],[-12,-188],[108,-191],[-336,-226]],[[166231,128847],[-4,79],[-8,39],[-27,71],[11,53],[-36,-6],[-19,-25],[-33,-2],[-3,34],[17,37],[-31,246],[-306,-46],[-22,-6],[-306,-322],[-81,-88]],[[165797,128156],[22,-15],[-17,-31],[20,-18]],[[165822,128092],[-28,-56],[-14,7],[-32,-64],[11,-38]],[[165759,127941],[-15,-26],[17,-18],[-33,-67],[34,-16],[-48,-52],[27,-34],[15,29],[27,9]],[[165783,127766],[19,-26],[9,-61]],[[165822,128092],[19,-14],[24,49]],[[165865,128127],[25,-18]],[[165890,128109],[-18,-45],[23,-19],[-32,-51],[-1,-20],[29,-18]],[[165891,127956],[1,-24]],[[165892,127932],[-60,-19],[-40,34],[-33,-6]],[[165892,127932],[16,-39],[34,-26],[55,17]],[[165997,127884],[5,-36]],[[166002,127848],[-93,-22],[-7,29],[-53,29],[-76,4],[11,-42]],[[165784,127846],[-12,-43],[11,-37]],[[165784,127846],[42,-12],[61,-9],[17,-12],[-27,-43],[2,-21],[-21,-23],[-8,-32],[13,-46],[18,-24],[-67,-3]],[[165856,128308],[30,-13],[21,24],[48,-19]],[[165955,128300],[-19,-28]],[[165936,128272],[-36,-9],[-34,-37],[-9,-31],[8,-68]],[[166231,128847],[-50,-33],[114,-206],[-4,-61]],[[166291,128547],[-41,23],[-19,-14],[-31,-70],[-44,23],[-3,43],[-34,30],[-29,46],[-22,-7],[-24,-36],[-46,51],[-23,-60],[-56,17],[0,-19]],[[166002,127848],[25,-90],[-36,-2],[24,-35],[-2,-49],[-25,-43],[-46,-32],[-247,-55]],[[165936,128272],[12,-42],[26,-36],[32,-27],[-13,-46],[-39,-25],[-32,0],[-32,13]],[[165955,128300],[1,-21],[46,-4],[33,-15],[-4,69],[118,-45]],[[166027,128076],[-22,-38],[2,-51],[-42,-21],[-5,16],[-41,9],[-3,-25],[-25,-10]],[[166151,127962],[-17,-15],[-32,10],[-33,-16],[-4,-38],[-68,-19]],[[166185,127943],[28,-38],[29,1],[8,-35],[-14,-40],[-34,-48],[-43,-19],[16,-66],[-11,-36],[-27,-56],[78,2],[0,-104]],[[166215,127504],[-123,-5],[-66,-22],[-80,-50],[-16,-26]],[[166291,128547],[71,-80]],[[166467,127988],[31,-83],[0,-37],[50,-2],[1,-36],[-20,-24],[13,-44],[22,6],[-1,-295]],[[166563,127473],[-107,18],[-113,13],[-128,0]],[[166471,129452],[58,1],[8,-35],[25,-13],[24,-68],[120,31],[73,23],[23,-75],[163,123],[17,-16],[24,34],[30,63],[-36,33],[67,63],[11,34],[0,62],[85,0]],[[167163,129712],[1,-17],[41,-39],[-24,-119],[6,-32],[-34,-4],[-8,-27],[-50,-43],[18,-38],[32,-44],[39,-30],[8,-35],[21,-35],[-17,-12],[-18,-64],[-22,29],[-56,-27],[1,-37],[-30,-48],[13,-86],[-18,-67]],[[167066,128937],[-87,-33],[-18,6],[-15,-35],[-35,-30],[-53,22],[3,-102],[-103,-10],[-11,-65],[-35,-61],[-104,-1],[0,-85]],[[166903,128132],[56,6],[13,-15],[49,11],[9,13],[57,11],[6,27],[50,2],[-5,-53],[105,14],[3,-51],[14,-13],[1,-109],[-11,-19],[-93,-29],[-25,22],[-36,-60],[-2,-118],[44,-117]],[[167138,127654],[-204,-85],[-39,-26],[-82,13],[-82,-26],[-44,-19],[-55,-13],[-69,-25]],[[167127,130990],[-60,-297],[-58,-285],[61,9],[14,-24],[22,13],[-5,32],[11,22],[47,41],[23,-24],[-4,-24],[19,-26],[104,-1],[106,20],[20,77],[-23,6],[-4,26],[20,96],[40,4],[15,57],[217,-9],[5,-35],[-8,-50],[-22,-59],[1,-66],[-24,-5],[-2,-76],[8,-103],[20,2],[31,-24],[1,-47],[18,-156],[-108,-12],[-3,25],[-98,-15],[-24,171],[-158,-25],[24,-168],[71,11],[8,-85],[-21,-118],[99,16],[25,-34],[37,-10],[-6,53],[30,7],[16,-38],[28,44],[77,13]],[[167717,129919],[12,-187],[-44,-4],[-37,20],[-86,27],[7,-32],[-63,-126],[-48,27],[-56,11],[27,99],[-22,35],[-45,26],[-34,-18],[-42,45],[-45,-8],[-9,-27],[-37,3],[22,-40],[-39,-1],[-15,-57]],[[167717,129919],[-1,32],[34,7],[27,20],[29,-9],[-9,-39],[18,-46],[32,3],[25,17],[24,-27],[48,5],[75,-20]],[[168019,129862],[15,-43],[-6,-57],[-124,-25],[9,-34],[-14,-50],[44,-48],[-110,-21],[-1,-125],[7,-72],[15,-31],[24,-16],[29,-44],[-19,-41],[-17,-60]],[[167871,129195],[-16,11],[-11,-52],[-22,8],[-30,-17],[-44,13],[-42,-23],[-11,29],[-28,7],[-14,-20],[-37,-16],[-20,29],[-30,4],[-22,-34],[-68,0],[18,41],[-19,59],[-52,-6],[10,-46],[-48,-23],[-33,-72],[-35,-7],[-12,-25],[-35,0],[-2,-23],[-32,-23],[-25,26],[-23,-20],[-30,-45],[19,-50],[-56,-1],[-55,18]],[[167871,129195],[48,14],[41,-6],[30,5],[55,-52],[28,16],[16,-17],[94,4],[50,18],[63,-9],[71,18],[18,23],[108,4],[16,6],[314,1]],[[168823,129220],[-50,-33],[-94,-28],[-170,-45],[-438,-122],[-349,-98],[-394,-112],[-394,-142],[-74,-20]],[[167682,130898],[-6,-29],[112,-37],[-14,-55],[161,-15],[-15,-21],[174,26],[-8,-205],[34,9],[-17,-118],[49,8],[19,-156],[-83,-13],[-16,-49],[20,-21],[45,1],[24,-15],[1,-39],[-20,-13],[8,-29],[-31,-15],[-13,-35],[-61,-10],[23,-59],[-24,-3],[3,-45],[-23,-43],[-5,-55]],[[168823,129220],[49,33],[141,45],[35,-13]],[[169048,129285],[183,-279]],[[169231,129006],[1,-190],[14,-13],[7,-67],[-27,-70],[-67,-60],[-75,-43],[-76,-24],[-105,-60],[-394,-206],[-197,-112],[-394,-169],[-197,-74],[-124,-61],[-72,-28],[-220,-115],[-91,-36],[-76,-24]],[[169218,130912],[2,-178],[11,-372],[6,-264],[-8,-315],[-8,-238],[-36,5],[-34,-20],[0,-35],[15,-21],[-8,-48],[13,-53],[-44,-51],[-15,-3],[-40,25],[-24,-59]],[[169408,128948],[13,82],[43,86],[4,43],[26,56],[51,35],[54,11],[34,-19],[31,-33],[38,-71],[12,-54],[-8,-53],[20,-61],[-4,-47],[-19,-53],[-16,-22],[-42,-29],[-64,-14],[-67,1],[-30,14],[-59,57],[-17,71]],[[169522,130924],[50,-358],[123,24],[24,-41],[25,-24],[30,30],[28,-18],[1,-23],[30,-28],[-19,-32],[-31,-3],[12,-52],[87,-4],[-1,-68],[22,-47],[35,-45],[26,-51],[-42,-33],[-43,-52],[-8,-69],[-4,-77],[-18,-85],[-6,-99],[-16,-35],[6,-71],[-32,-70],[-48,-145],[-35,-61],[-43,-95]],[[169675,129292],[-27,3],[-77,28],[-36,-19],[-97,-37],[-20,-18],[-106,-31],[-81,-8],[0,-204]],[[170338,129578],[-57,-46],[-197,-78],[-197,-89],[-166,-61],[-46,-12]]],"objects":{"us":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"08","GEOID":"2908","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":51543589873,"AWATER":444586815,"INTPTLAT":"+37.1941281","INTPTLON":"-090.9345152"}},{"arcs":[[10,11,12,13,14,15]],"type":"Polygon","properties":{"STATEFP":"19","CD114FP":"03","GEOID":"1903","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":22765146940,"AWATER":153087143,"INTPTLAT":"+41.2095427","INTPTLON":"-094.6403809"}},{"arcs":[[16,17,18,19,20]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"13","GEOID":"1713","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15005445873,"AWATER":215865613,"INTPTLAT":"+39.5156354","INTPTLON":"-089.5198424"}},{"arcs":[[21,22,23,24,25,26,27,28,29,30]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"16","GEOID":"1716","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20506303303,"AWATER":180730724,"INTPTLAT":"+41.3915234","INTPTLON":"-088.7991966"}},{"arcs":[[31,32,33,34,35,36]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"06","GEOID":"1706","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":981206645,"AWATER":27262385,"INTPTLAT":"+42.1751029","INTPTLON":"-088.2198760"}},{"arcs":[[37,38,39,40,41,-26]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"01","GEOID":"1701","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":669268355,"AWATER":2127354,"INTPTLAT":"+41.5466708","INTPTLON":"-087.8357472"}},{"arcs":[[42,43,44]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"05","GEOID":"4705","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3233297566,"AWATER":72166636,"INTPTLAT":"+36.1873306","INTPTLON":"-087.0740252"}},{"arcs":[[-28,45,46,47,48,49,50,51,52]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"04","GEOID":"1804","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16452896591,"AWATER":68061594,"INTPTLAT":"+40.3810879","INTPTLON":"-086.8594124"}},{"arcs":[[53,54,55,56,57,58,59,60]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"06","GEOID":"2606","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9188370960,"AWATER":4065699318,"INTPTLAT":"+42.1640521","INTPTLON":"-086.1560519"}},{"arcs":[[61,62,63,64,65,66]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"04","GEOID":"2604","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":21906541533,"AWATER":520883669,"INTPTLAT":"+43.7315525","INTPTLON":"-084.7503993"}},{"arcs":[[67,68,69,70,71,72]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"11","GEOID":"1311","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2774576062,"AWATER":69102200,"INTPTLAT":"+34.1804322","INTPTLON":"-084.6514936"}},{"arcs":[[73,-64,74,75,76,77,78,79,80,-57]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"07","GEOID":"2607","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10949926008,"AWATER":526908508,"INTPTLAT":"+42.0936084","INTPTLON":"-084.3049549"}},{"arcs":[[81,82,83]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"10","GEOID":"3910","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2926088188,"AWATER":15298289,"INTPTLAT":"+39.7013631","INTPTLON":"-083.9586972"}},{"arcs":[[84,85,86,87]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"09","GEOID":"2609","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":475658444,"AWATER":13179295,"INTPTLAT":"+42.5296604","INTPTLON":"-083.0547224"}},{"arcs":[[88,89,90,91,92,93]],"type":"Polygon","properties":{"STATEFP":"54","CD114FP":"03","GEOID":"5403","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":25240977193,"AWATER":191831525,"INTPTLAT":"+37.9911687","INTPTLON":"-081.2182732"}},{"arcs":[[94,95,96,97]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"09","GEOID":"1209","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4421754194,"AWATER":521023417,"INTPTLAT":"+28.1318105","INTPTLON":"-081.2016531"}},{"arcs":[[98,99,100,101,102,103,104,105]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"05","GEOID":"5105","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":25978125712,"AWATER":391512916,"INTPTLAT":"+37.3323415","INTPTLON":"-078.7235580"}},{"arcs":[[106,107,108,109,110,111,112,113,114]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"08","GEOID":"2408","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2226216466,"AWATER":24164984,"INTPTLAT":"+39.4222969","INTPTLON":"-077.2420034"}},{"arcs":[[115,116,117,118,119]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"08","GEOID":"5108","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":386530038,"AWATER":28921796,"INTPTLAT":"+38.7795583","INTPTLON":"-077.1395037"}},{"arcs":[[120,121,122,123]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"12","GEOID":"3412","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1067734223,"AWATER":18347466,"INTPTLAT":"+40.3742188","INTPTLON":"-074.5740550"}},{"arcs":[[124,125,126,127,128,129]],"type":"Polygon","properties":{"STATEFP":"50","CD114FP":"00","GEOID":"5000","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23872224593,"AWATER":1034382802,"INTPTLAT":"+44.0604795","INTPTLON":"-072.6733274"}},{"arcs":[[130,131,132,133]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"09","GEOID":"2509","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3149242726,"AWATER":5148998637,"INTPTLAT":"+41.6903601","INTPTLON":"-070.4943141"}},{"arcs":[[134,135,136,137]],"type":"Polygon","properties":{"STATEFP":"23","CD114FP":"02","GEOID":"2302","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":71374290758,"AWATER":7014266805,"INTPTLAT":"+45.4804458","INTPTLON":"-069.0560711"}},{"arcs":[[138]],"type":"Polygon","properties":{"STATEFP":"66","CD114FP":"98","GEOID":"6698","NAMELSAD":"Delegate District (at Large)","LSAD":"C4","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":543558314,"AWATER":934345914,"INTPTLAT":"+13.4382886","INTPTLON":"+144.7729493"}},{"arcs":[[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]]],"type":"MultiPolygon","properties":{"STATEFP":"69","CD114FP":"98","GEOID":"6998","NAMELSAD":"Delegate District (at Large)","LSAD":"C4","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":472262566,"AWATER":4644320317,"INTPTLAT":"+14.9300771","INTPTLON":"+145.6425305"}},{"arcs":[[[151]],[[152]],[[153]],[[154]],[[155,156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]]],"type":"MultiPolygon","properties":{"STATEFP":"15","CD114FP":"02","GEOID":"1502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16092700286,"AWATER":11321053767,"INTPTLAT":"+19.8281713","INTPTLON":"-155.4950401"}},{"arcs":[[-156,169]],"type":"Polygon","properties":{"STATEFP":"15","CD114FP":"01","GEOID":"1501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":541433186,"AWATER":456670649,"INTPTLAT":"+21.3226396","INTPTLON":"-157.9059542"}},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"STATEFP":"02","CD114FP":"00","GEOID":"0200","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1477946338495,"AWATER":245391672906,"INTPTLAT":"+63.3461909","INTPTLON":"-152.8370690"}},{"arcs":[[220,221,222,223,224,225]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"06","GEOID":"5306","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17878855764,"AWATER":5089870747,"INTPTLAT":"+47.6388468","INTPTLON":"-123.5509260"}},{"arcs":[[226,227,228,229,230,231,232]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"02","GEOID":"0602","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":33546458437,"AWATER":4122538872,"INTPTLAT":"+40.0940587","INTPTLON":"-123.4649741"}},{"arcs":[[233,234,235,236]],"type":"Polygon","properties":{"STATEFP":"41","CD114FP":"01","GEOID":"4101","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7788193458,"AWATER":770381732,"INTPTLAT":"+45.7211995","INTPTLON":"-123.3412706"}},{"arcs":[[237,238,239,-227,240]],"type":"Polygon","properties":{"STATEFP":"41","CD114FP":"04","GEOID":"4104","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":44742395292,"AWATER":2227325925,"INTPTLAT":"+43.4904305","INTPTLON":"-123.2455428"}},{"arcs":[[-235,241,242,-238,243]],"type":"Polygon","properties":{"STATEFP":"41","CD114FP":"05","GEOID":"4105","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13438318567,"AWATER":1207536256,"INTPTLAT":"+45.0283647","INTPTLON":"-123.1951639"}},{"arcs":[[244,245,246,-224]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"10","GEOID":"5310","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2141250199,"AWATER":233336680,"INTPTLAT":"+47.0417220","INTPTLON":"-122.7558152"}},{"arcs":[[247,248,-221,249]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"02","GEOID":"5302","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2629115311,"AWATER":2689486228,"INTPTLAT":"+48.3728481","INTPTLON":"-122.6259158"}},{"arcs":[[[250,251,252,253,254,255]],[[256]]],"type":"MultiPolygon","properties":{"STATEFP":"06","CD114FP":"14","GEOID":"0614","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":672277732,"AWATER":827548174,"INTPTLAT":"+37.5746758","INTPTLON":"-122.4947940"}},{"arcs":[[257,258,-230]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"05","GEOID":"0605","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4482867913,"AWATER":318962871,"INTPTLAT":"+38.5158063","INTPTLON":"-122.4625595"}},{"arcs":[[-232,259,260,-251,261]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"12","GEOID":"0612","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":101086657,"AWATER":211580326,"INTPTLAT":"+37.7855141","INTPTLON":"-122.4340005"}},{"arcs":[[-249,262,263,-222]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"07","GEOID":"5307","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":373037824,"AWATER":340660751,"INTPTLAT":"+47.5784260","INTPTLON":"-122.3913575"}},{"arcs":[[264,265,-245,-223,-264]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"09","GEOID":"5309","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":475344959,"AWATER":104685434,"INTPTLAT":"+47.4571224","INTPTLON":"-122.2612893"}},{"arcs":[[-225,-247,266,267,268,269,-237,270]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"03","GEOID":"5303","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23605486524,"AWATER":1212123418,"INTPTLAT":"+46.2707510","INTPTLON":"-122.2621597"}},{"arcs":[[271,-252,-261,272]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"13","GEOID":"0613","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":250595885,"AWATER":127431128,"INTPTLAT":"+37.7789619","INTPTLON":"-122.2392482"}},{"arcs":[[-270,273,-242,-234]],"type":"Polygon","properties":{"STATEFP":"41","CD114FP":"03","GEOID":"4103","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2782975803,"AWATER":82810362,"INTPTLAT":"+45.3899979","INTPTLON":"-122.1990897"}},{"arcs":[[-255,274,275,276,277]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"18","GEOID":"0618","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1803034371,"AWATER":329896892,"INTPTLAT":"+37.2021322","INTPTLON":"-122.1537117"}},{"arcs":[[278,279,280,281,282,283,-258,-229]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"03","GEOID":"0603","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16016009350,"AWATER":456718941,"INTPTLAT":"+39.0319525","INTPTLON":"-122.0895732"}},{"arcs":[[-259,-284,284,285,-273,-260,-231]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"11","GEOID":"0611","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1278249894,"AWATER":92424585,"INTPTLAT":"+37.9038693","INTPTLON":"-122.0009326"}},{"arcs":[[286,287,-275,-254]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"17","GEOID":"0617","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":477488962,"AWATER":24431172,"INTPTLAT":"+37.4410278","INTPTLON":"-121.9665776"}},{"arcs":[[-286,288,289,290,-287,-253,-272]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"15","GEOID":"0615","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1552875750,"AWATER":69374049,"INTPTLAT":"+37.6571363","INTPTLON":"-121.8362453"}},{"arcs":[[291,292,-265,-263,-248,293]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"01","GEOID":"5301","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16022151732,"AWATER":1095021326,"INTPTLAT":"+48.3674893","INTPTLON":"-121.6579122"}},{"arcs":[[-291,294,295,296,-276,-288]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"19","GEOID":"0619","NAMELSAD":"Congressional District 19","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2372242343,"AWATER":15213802,"INTPTLAT":"+37.2162355","INTPTLON":"-121.5290231"}},{"arcs":[[-240,297,298,299,-279,-228]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"01","GEOID":"0601","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":72745820349,"AWATER":1947859056,"INTPTLAT":"+40.7319880","INTPTLON":"-121.5105160"}},{"arcs":[[300,301,-281]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"06","GEOID":"0606","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":453510665,"AWATER":11103487,"INTPTLAT":"+38.5940335","INTPTLON":"-121.4797679"}},{"arcs":[[-283,302,303,304,-289,-285]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"09","GEOID":"0609","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3242797049,"AWATER":136796396,"INTPTLAT":"+38.0108733","INTPTLON":"-121.3071466"}},{"arcs":[[-277,-297,305,306,307,308]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"20","GEOID":"0620","NAMELSAD":"Congressional District 20","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12624185548,"AWATER":1574913163,"INTPTLAT":"+36.3732865","INTPTLON":"-121.2752181"}},{"arcs":[[-302,309,-303,-282]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"07","GEOID":"0607","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1421426289,"AWATER":13615373,"INTPTLAT":"+38.4794773","INTPTLON":"-121.2153712"}},{"arcs":[[-305,310,311,-295,-290]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"10","GEOID":"0610","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4710544130,"AWATER":59087113,"INTPTLAT":"+37.5863656","INTPTLON":"-121.0540832"}},{"arcs":[[-266,-293,312,-267,-246]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"08","GEOID":"5308","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19062432118,"AWATER":368571687,"INTPTLAT":"+47.3623665","INTPTLON":"-121.0394032"}},{"arcs":[[-312,313,314,315,-306,-296]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"16","GEOID":"0616","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7354278768,"AWATER":118616551,"INTPTLAT":"+37.1086529","INTPTLON":"-120.5188666"}},{"arcs":[[[316]],[[317,318]],[[-308,319,320,321,322,323]]],"type":"MultiPolygon","properties":{"STATEFP":"06","CD114FP":"24","GEOID":"0624","NAMELSAD":"Congressional District 24","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17832799687,"AWATER":3683662579,"INTPTLAT":"+34.9196335","INTPTLON":"-120.1128450"}},{"arcs":[[-300,324,325,326,327,-314,-311,-304,-310,-301,-280]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"04","GEOID":"0604","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":33247296220,"AWATER":858147109,"INTPTLAT":"+37.9824523","INTPTLON":"-119.9279734"}},{"arcs":[[328,329,-320,-307,-316]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"21","GEOID":"0621","NAMELSAD":"Congressional District 21","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17430392398,"AWATER":35944103,"INTPTLAT":"+36.0867145","INTPTLON":"-119.8515001"}},{"arcs":[[-313,-292,330,331,332,-268]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"04","GEOID":"5304","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":49858115741,"AWATER":807517049,"INTPTLAT":"+47.2946268","INTPTLON":"-119.7071777"}},{"arcs":[[-243,-274,-269,-333,333,334,335,-298,-239]],"type":"Polygon","properties":{"STATEFP":"41","CD114FP":"02","GEOID":"4102","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":179856895770,"AWATER":1902717547,"INTPTLAT":"+43.8374944","INTPTLON":"-119.5968497"}},{"arcs":[[-328,336,-329,-315]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"22","GEOID":"0622","NAMELSAD":"Congressional District 22","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3017827354,"AWATER":9715410,"INTPTLAT":"+36.4768606","INTPTLON":"-119.3895513"}},{"arcs":[[[337,338,339,340,-323]],[[341,-318]],[[342]]],"type":"MultiPolygon","properties":{"STATEFP":"06","CD114FP":"26","GEOID":"0626","NAMELSAD":"Congressional District 26","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2432374538,"AWATER":807090323,"INTPTLAT":"+34.1670228","INTPTLON":"-119.1299548"}},{"arcs":[[343,344,345,346,347,348,349,-340]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"33","GEOID":"0633","NAMELSAD":"Congressional District 33","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":747448594,"AWATER":489617624,"INTPTLAT":"+34.0470000","INTPTLON":"-118.7831347"}},{"arcs":[[350,351,-344,-339,352]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"30","GEOID":"0630","NAMELSAD":"Congressional District 30","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":352103956,"AWATER":5012017,"INTPTLAT":"+34.2018725","INTPTLON":"-118.5469560"}},{"arcs":[[-337,-327,353,354,-321,-330]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"23","GEOID":"0623","NAMELSAD":"Congressional District 23","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":25636042190,"AWATER":100586550,"INTPTLAT":"+35.6106838","INTPTLON":"-118.5390568"}},{"arcs":[[355,-351,356]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"29","GEOID":"0629","NAMELSAD":"Congressional District 29","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":238367009,"AWATER":1621911,"INTPTLAT":"+34.2666953","INTPTLON":"-118.4303132"}},{"arcs":[[[357,358,359,360,361,362]],[[363]],[[364]]],"type":"MultiPolygon","properties":{"STATEFP":"06","CD114FP":"47","GEOID":"0647","NAMELSAD":"Congressional District 47","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":560002790,"AWATER":1176469688,"INTPTLAT":"+33.3673364","INTPTLON":"-118.4807090"}},{"arcs":[[365,366,367,-347]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"37","GEOID":"0637","NAMELSAD":"Congressional District 37","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":143131706,"AWATER":351787,"INTPTLAT":"+34.0168971","INTPTLON":"-118.3717636"}},{"arcs":[[-368,368,369,-348]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"43","GEOID":"0643","NAMELSAD":"Congressional District 43","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":186580212,"AWATER":555896,"INTPTLAT":"+33.9031099","INTPTLON":"-118.3363034"}},{"arcs":[[370,371,372,-345,-352,-356]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"28","GEOID":"0628","NAMELSAD":"Congressional District 28","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":565796998,"AWATER":2415551,"INTPTLAT":"+34.2500576","INTPTLON":"-118.2914520"}},{"arcs":[[373,374,-371,-357,-353,-338,-322,-355]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"25","GEOID":"0625","NAMELSAD":"Congressional District 25","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4378760030,"AWATER":30951865,"INTPTLAT":"+34.5880600","INTPTLON":"-118.2802686"}},{"arcs":[[-349,-370,375,376,-363,377]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"44","GEOID":"0644","NAMELSAD":"Congressional District 44","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":205536404,"AWATER":66883685,"INTPTLAT":"+33.8187502","INTPTLON":"-118.2509834"}},{"arcs":[[-346,-373,378,379,-366]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"34","GEOID":"0634","NAMELSAD":"Congressional District 34","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":123458364,"AWATER":784655,"INTPTLAT":"+34.0746549","INTPTLON":"-118.2282686"}},{"arcs":[[-380,380,381,-376,-369,-367]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"40","GEOID":"0640","NAMELSAD":"Congressional District 40","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":149406790,"AWATER":1743217,"INTPTLAT":"+33.9698668","INTPTLON":"-118.1792067"}},{"arcs":[[-382,382,383,384,-358,-377]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"38","GEOID":"0638","NAMELSAD":"Congressional District 38","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":262667699,"AWATER":3822532,"INTPTLAT":"+33.9394788","INTPTLON":"-118.0626041"}},{"arcs":[[-375,385,386,387,388,-383,-381,-379,-372]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"27","GEOID":"0627","NAMELSAD":"Congressional District 27","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1812793199,"AWATER":7559686,"INTPTLAT":"+34.2650833","INTPTLON":"-117.9348875"}},{"arcs":[[389,390,-384,-389]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"32","GEOID":"0632","NAMELSAD":"Congressional District 32","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":321774529,"AWATER":5320498,"INTPTLAT":"+34.0895637","INTPTLON":"-117.9141422"}},{"arcs":[[-361,391,392,393,394]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"48","GEOID":"0648","NAMELSAD":"Congressional District 48","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":377328407,"AWATER":282589732,"INTPTLAT":"+33.6229098","INTPTLON":"-117.9050955"}},{"arcs":[[395,396,-392,-360]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"46","GEOID":"0646","NAMELSAD":"Congressional District 46","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":185673009,"AWATER":2402661,"INTPTLAT":"+33.7908040","INTPTLON":"-117.8963627"}},{"arcs":[[397,398,-334,-332]],"type":"Polygon","properties":{"STATEFP":"53","CD114FP":"05","GEOID":"5305","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":40075236172,"AWATER":598819872,"INTPTLAT":"+47.5732049","INTPTLON":"-117.8675495"}},{"arcs":[[-391,399,400,401,-396,-359,-385]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"39","GEOID":"0639","NAMELSAD":"Congressional District 39","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":529385490,"AWATER":3117073,"INTPTLAT":"+33.9403775","INTPTLON":"-117.8349361"}},{"arcs":[[-397,-402,402,403,-393]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"45","GEOID":"0645","NAMELSAD":"Congressional District 45","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":855913031,"AWATER":5327953,"INTPTLAT":"+33.7142584","INTPTLON":"-117.6683553"}},{"arcs":[[-390,-388,404,405,406,-400]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"35","GEOID":"0635","NAMELSAD":"Congressional District 35","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":437439791,"AWATER":309741,"INTPTLAT":"+34.0445697","INTPTLON":"-117.5832116"}},{"arcs":[[-404,407,408,409,410,-394]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"49","GEOID":"0649","NAMELSAD":"Congressional District 49","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1432623041,"AWATER":512378639,"INTPTLAT":"+33.3147856","INTPTLON":"-117.3795192"}},{"arcs":[[411,412,413,-405,-387]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"31","GEOID":"0631","NAMELSAD":"Congressional District 31","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":565007001,"AWATER":6412076,"INTPTLAT":"+34.1096748","INTPTLON":"-117.3533294"}},{"arcs":[[-299,-336,414,415,416,417,418,419,-325]],"type":"Polygon","properties":{"STATEFP":"32","CD114FP":"02","GEOID":"3202","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":144600357804,"AWATER":1316079286,"INTPTLAT":"+40.6511506","INTPTLON":"-117.3296838"}},{"arcs":[[-414,420,421,-406]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"41","GEOID":"0641","NAMELSAD":"Congressional District 41","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":819873792,"AWATER":4240410,"INTPTLAT":"+33.9180748","INTPTLON":"-117.2974203"}},{"arcs":[[-407,-422,422,423,-408,-403,-401]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"42","GEOID":"0642","NAMELSAD":"Congressional District 42","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2424227185,"AWATER":44673127,"INTPTLAT":"+33.6799530","INTPTLON":"-117.2275227"}},{"arcs":[[-410,424,425,426,427]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"52","GEOID":"0652","NAMELSAD":"Congressional District 52","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":691527661,"AWATER":296833864,"INTPTLAT":"+32.8571730","INTPTLON":"-117.1653367"}},{"arcs":[[428,429,-426]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"53","GEOID":"0653","NAMELSAD":"Congressional District 53","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":350757638,"AWATER":6842137,"INTPTLAT":"+32.7183139","INTPTLON":"-117.0314815"}},{"arcs":[[-420,430,431,432,433,-412,-386,-374,-354,-326]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"08","GEOID":"0608","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":85126210480,"AWATER":450307265,"INTPTLAT":"+35.6625568","INTPTLON":"-116.8195456"}},{"arcs":[[-424,434,435,-429,-425,-409]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"50","GEOID":"0650","NAMELSAD":"Congressional District 50","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7219205047,"AWATER":43666727,"INTPTLAT":"+33.1135481","INTPTLON":"-116.6225898"}},{"arcs":[[-399,436,437,438,-415,-335]],"type":"Polygon","properties":{"STATEFP":"16","CD114FP":"01","GEOID":"1601","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":102093841972,"AWATER":1316117424,"INTPTLAT":"+45.2967502","INTPTLON":"-116.0358424"}},{"arcs":[[439,440,441,442,443,-431,-419]],"type":"Polygon","properties":{"STATEFP":"32","CD114FP":"04","GEOID":"3204","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":132083026429,"AWATER":628297894,"INTPTLAT":"+38.0856467","INTPTLON":"-116.0264961"}},{"arcs":[[-413,-434,444,445,-435,-423,-421]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"36","GEOID":"0636","NAMELSAD":"Congressional District 36","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15313284807,"AWATER":201938200,"INTPTLAT":"+33.7300127","INTPTLON":"-115.7393369"}},{"arcs":[[-427,-430,-436,-446,446,447,448]],"type":"Polygon","properties":{"STATEFP":"06","CD114FP":"51","GEOID":"0651","NAMELSAD":"Congressional District 51","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12410188755,"AWATER":870584665,"INTPTLAT":"+32.9962491","INTPTLON":"-115.5254214"}},{"arcs":[[-443,449]],"type":"Polygon","properties":{"STATEFP":"32","CD114FP":"01","GEOID":"3201","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":270624134,"AWATER":16683,"INTPTLAT":"+36.1335429","INTPTLON":"-115.1515423"}},{"arcs":[[-450,-442,450,-432,-444]],"type":"Polygon","properties":{"STATEFP":"32","CD114FP":"03","GEOID":"3203","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7378105732,"AWATER":103447326,"INTPTLAT":"+35.6631939","INTPTLON":"-115.1539667"}},{"arcs":[[451,452,453,-416,-439]],"type":"Polygon","properties":{"STATEFP":"16","CD114FP":"02","GEOID":"1602","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":111948989280,"AWATER":1081502469,"INTPTLAT":"+43.4439320","INTPTLON":"-113.3642650"}},{"arcs":[[454,455,456,457,458,459,-453,460]],"type":"Polygon","properties":{"STATEFP":"56","CD114FP":"00","GEOID":"5600","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":251465042238,"AWATER":1861255811,"INTPTLAT":"+42.9918024","INTPTLON":"-107.5419255"}},{"arcs":[[461,-459,462,463,464,465,466]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"03","GEOID":"0803","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":128801006581,"AWATER":388542092,"INTPTLAT":"+38.7432544","INTPTLON":"-107.3448493"}},{"arcs":[[-458,467,468,469,470,471,472,-463]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"02","GEOID":"0802","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19517171072,"AWATER":235702876,"INTPTLAT":"+40.1370840","INTPTLON":"-105.7090836"}},{"arcs":[[-473,473,-464]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"05","GEOID":"0805","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18818285227,"AWATER":61264203,"INTPTLAT":"+38.8154076","INTPTLON":"-105.3441513"}},{"arcs":[[474,475,-470]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"07","GEOID":"0807","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":886374748,"AWATER":24940809,"INTPTLAT":"+39.8261495","INTPTLON":"-105.0422236"}},{"arcs":[[-476,476,477,-471]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"01","GEOID":"0801","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":491987823,"AWATER":7057884,"INTPTLAT":"+39.7322859","INTPTLON":"-104.9087582"}},{"arcs":[[-475,-469,478,-477]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"06","GEOID":"0806","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1227588153,"AWATER":22111653,"INTPTLAT":"+39.7550881","INTPTLON":"-104.7653511"}},{"arcs":[[-472,-478,-479,-468,-457,479,480,481,482,-465,-474]],"type":"Polygon","properties":{"STATEFP":"08","CD114FP":"04","GEOID":"0804","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":98686018168,"AWATER":435843057,"INTPTLAT":"+39.0706831","INTPTLON":"-103.4138530"}},{"arcs":[[483,484,485,486]],"type":"Polygon","properties":{"STATEFP":"38","CD114FP":"00","GEOID":"3800","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":178711991307,"AWATER":4398999691,"INTPTLAT":"+47.4421698","INTPTLON":"-100.4608163"}},{"arcs":[[487,-486,488,489,490,491,-455]],"type":"Polygon","properties":{"STATEFP":"46","CD114FP":"00","GEOID":"4600","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":196349394266,"AWATER":3379810671,"INTPTLAT":"+44.4467957","INTPTLON":"-100.2381762"}},{"arcs":[[-492,492,493,494,495,496,-480,-456]],"type":"Polygon","properties":{"STATEFP":"31","CD114FP":"03","GEOID":"3103","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":174655542739,"AWATER":1063670008,"INTPTLAT":"+41.5394730","INTPTLON":"-100.2229693"}},{"arcs":[[-497,497,498,499,-481]],"type":"Polygon","properties":{"STATEFP":"20","CD114FP":"01","GEOID":"2001","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":136083658508,"AWATER":594784170,"INTPTLAT":"+38.7315950","INTPTLON":"-099.4080367"}},{"arcs":[[500,501,502,-499]],"type":"Polygon","properties":{"STATEFP":"20","CD114FP":"04","GEOID":"2004","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":37076641119,"AWATER":188668258,"INTPTLAT":"+37.5544654","INTPTLON":"-097.7439831"}},{"arcs":[[503,-16,504,-14,505,-494]],"type":"Polygon","properties":{"STATEFP":"31","CD114FP":"01","GEOID":"3101","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":22996552423,"AWATER":249252681,"INTPTLAT":"+41.3744593","INTPTLON":"-096.8286623"}},{"arcs":[[-15,-505]],"type":"Polygon","properties":{"STATEFP":"31","CD114FP":"02","GEOID":"3102","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1320334610,"AWATER":43372086,"INTPTLAT":"+41.2286220","INTPTLON":"-096.1609050"}},{"arcs":[[506,507,508,509,510,-489,-485]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"07","GEOID":"2707","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":86584437209,"AWATER":5042010384,"INTPTLAT":"+46.5530202","INTPTLON":"-095.6759048"}},{"arcs":[[-496,511,512,513,514,515,516,-501,-498]],"type":"Polygon","properties":{"STATEFP":"20","CD114FP":"02","GEOID":"2002","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":36631037175,"AWATER":530219778,"INTPTLAT":"+38.4822777","INTPTLON":"-095.4246400"}},{"arcs":[[517,518,519,-513]],"type":"Polygon","properties":{"STATEFP":"20","CD114FP":"03","GEOID":"2003","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1961346008,"AWATER":33224585,"INTPTLAT":"+38.8950035","INTPTLON":"-094.7906431"}},{"arcs":[[520,521,522,-11,-504,-493,-491]],"type":"Polygon","properties":{"STATEFP":"19","CD114FP":"04","GEOID":"1904","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":58937778712,"AWATER":264745073,"INTPTLAT":"+42.6286385","INTPTLON":"-094.6450983"}},{"arcs":[[523,524,525,526,527,528,-509]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"06","GEOID":"2706","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7464777770,"AWATER":404568113,"INTPTLAT":"+45.3368069","INTPTLON":"-093.8520551"}},{"arcs":[[529,530,-519]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"05","GEOID":"2905","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6281339584,"AWATER":89724655,"INTPTLAT":"+39.1414460","INTPTLON":"-093.7839363"}},{"arcs":[[-511,531,532,533,-521,-490]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"01","GEOID":"2701","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":31014152686,"AWATER":539985246,"INTPTLAT":"+43.8989394","INTPTLON":"-093.7117418"}},{"arcs":[[-515,534,-10,535,536]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"07","GEOID":"2907","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16246596751,"AWATER":248400655,"INTPTLAT":"+36.9910613","INTPTLON":"-093.7063517"}},{"arcs":[[-9,537,538,539,540,-536]],"type":"Polygon","properties":{"STATEFP":"05","CD114FP":"03","GEOID":"0503","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13983476340,"AWATER":375017958,"INTPTLAT":"+36.1382877","INTPTLON":"-094.0624489"}},{"arcs":[[541,542,-528]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"03","GEOID":"2703","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1365133848,"AWATER":144420539,"INTPTLAT":"+44.9958803","INTPTLON":"-093.5286204"}},{"arcs":[[-520,-531,543,544,-1,-535,-514]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"04","GEOID":"2904","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":37311563597,"AWATER":745100676,"INTPTLAT":"+38.2824253","INTPTLON":"-093.3189947"}},{"arcs":[[-527,545,546,-542]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"05","GEOID":"2705","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":351510165,"AWATER":16642555,"INTPTLAT":"+44.9810128","INTPTLON":"-093.2963594"}},{"arcs":[[-13,547,548,-21,549,-544,-530,-518,-512,-495,-506]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"06","GEOID":"2906","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":47134020177,"AWATER":527100043,"INTPTLAT":"+39.9480143","INTPTLON":"-093.2935421"}},{"arcs":[[-540,550,551,552,553,554,555]],"type":"Polygon","properties":{"STATEFP":"05","CD114FP":"04","GEOID":"0504","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":57855934634,"AWATER":1048904358,"INTPTLAT":"+34.2241915","INTPTLON":"-093.2211206"}},{"arcs":[[556,-554,557,558,559,560]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"04","GEOID":"2204","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":32209264435,"AWATER":1107931303,"INTPTLAT":"+31.7920472","INTPTLON":"-093.1796062"}},{"arcs":[[-526,561,562,-546]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"04","GEOID":"2704","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":861425138,"AWATER":84706367,"INTPTLAT":"+45.0027128","INTPTLON":"-092.9773663"}},{"arcs":[[563,564,565,-524,-508]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"08","GEOID":"2708","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":72280157559,"AWATER":12449248665,"INTPTLAT":"+47.2503395","INTPTLON":"-092.9638683"}},{"arcs":[[-529,-543,-547,-563,566,-532,-510]],"type":"Polygon","properties":{"STATEFP":"27","CD114FP":"02","GEOID":"2702","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6314597520,"AWATER":243142780,"INTPTLAT":"+44.4789680","INTPTLON":"-092.8530418"}},{"arcs":[[567,-559,568,569,570,571,572]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"03","GEOID":"2203","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18087440399,"AWATER":5595387465,"INTPTLAT":"+29.9296153","INTPTLON":"-092.4423609"}},{"arcs":[[-539,573,-551]],"type":"Polygon","properties":{"STATEFP":"05","CD114FP":"02","GEOID":"0502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12894843907,"AWATER":303337813,"INTPTLAT":"+35.0995256","INTPTLON":"-092.3792648"}},{"arcs":[[-523,574,575,576,-548,-12]],"type":"Polygon","properties":{"STATEFP":"19","CD114FP":"02","GEOID":"1902","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":31758345975,"AWATER":431494396,"INTPTLAT":"+41.2085154","INTPTLON":"-092.1491879"}},{"arcs":[[-534,577,578,-575,-522]],"type":"Polygon","properties":{"STATEFP":"19","CD114FP":"01","GEOID":"1901","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":31206210006,"AWATER":228642475,"INTPTLAT":"+42.5277596","INTPTLON":"-091.8961228"}},{"arcs":[[-553,579,580,581,582,583,584,-569,-558]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"05","GEOID":"2205","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":37434105215,"AWATER":1114287011,"INTPTLAT":"+31.7664463","INTPTLON":"-091.8235236"}},{"arcs":[[-550,-20,585,586,587,588,-2,-545]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"03","GEOID":"2903","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17745436539,"AWATER":368131837,"INTPTLAT":"+38.5781714","INTPTLON":"-091.5631850"}},{"arcs":[[-8,589,590,591,592,593,594,-580,-552,-574,-538]],"type":"Polygon","properties":{"STATEFP":"05","CD114FP":"01","GEOID":"0501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":50035024220,"AWATER":1235265144,"INTPTLAT":"+35.2939086","INTPTLON":"-091.2583060"}},{"arcs":[[595,596,597,-570,-585]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"06","GEOID":"2206","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10447602619,"AWATER":1012437654,"INTPTLAT":"+30.2957806","INTPTLON":"-091.0085262"}},{"arcs":[[598,-597]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"02","GEOID":"2202","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3285411614,"AWATER":522155120,"INTPTLAT":"+30.0467435","INTPTLON":"-090.5684985"}},{"arcs":[[599,600,-588]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"02","GEOID":"2902","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1206406434,"AWATER":37418577,"INTPTLAT":"+38.6029696","INTPTLON":"-090.5323369"}},{"arcs":[[-595,601,602,-581]],"type":"Polygon","properties":{"STATEFP":"28","CD114FP":"02","GEOID":"2802","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":40280272922,"AWATER":959085891,"INTPTLAT":"+33.1763295","INTPTLON":"-090.3508287"}},{"arcs":[[603,-600,-587]],"type":"Polygon","properties":{"STATEFP":"29","CD114FP":"01","GEOID":"2901","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":583673927,"AWATER":27126111,"INTPTLAT":"+38.7283860","INTPTLON":"-090.2962282"}},{"arcs":[[-576,-579,604,605,-31,606]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"17","GEOID":"1717","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17956603398,"AWATER":338969478,"INTPTLAT":"+41.3894669","INTPTLON":"-090.2186532"}},{"arcs":[[-577,-607,-30,607,-17,-549]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"18","GEOID":"1718","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":27236501013,"AWATER":382224178,"INTPTLAT":"+40.2271844","INTPTLON":"-090.0691183"}},{"arcs":[[608,-591,609,610,-593]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"09","GEOID":"4709","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1251946135,"AWATER":54609411,"INTPTLAT":"+35.1676342","INTPTLON":"-089.9788605"}},{"arcs":[[-598,-599,-596,-584,611,612,-571]],"type":"Polygon","properties":{"STATEFP":"22","CD114FP":"01","GEOID":"2201","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10439396669,"AWATER":14395703699,"INTPTLAT":"+29.6505540","INTPTLON":"-089.8804530"}},{"arcs":[[-603,613,614,615,-582]],"type":"Polygon","properties":{"STATEFP":"28","CD114FP":"03","GEOID":"2803","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":33032795123,"AWATER":342924091,"INTPTLAT":"+32.0149304","INTPTLON":"-089.7405887"}},{"arcs":[[-601,-604,-586,-19,616,617,-3,-589]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"12","GEOID":"1712","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12971361001,"AWATER":462655606,"INTPTLAT":"+37.9933075","INTPTLON":"-089.4278909"}},{"arcs":[[[-7,618,-5,619,620,621,-610,-590]],[[-609,-592]]],"type":"MultiPolygon","properties":{"STATEFP":"47","CD114FP":"08","GEOID":"4708","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17742770435,"AWATER":382978546,"INTPTLAT":"+35.8508609","INTPTLON":"-089.1018305"}},{"arcs":[[622,623,624,-612,-583,-616]],"type":"Polygon","properties":{"STATEFP":"28","CD114FP":"04","GEOID":"2804","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20835103731,"AWATER":2217384456,"INTPTLAT":"+30.9941864","INTPTLON":"-089.0903341"}},{"arcs":[[-611,-622,625,626,627,628,-614,-602,-594]],"type":"Polygon","properties":{"STATEFP":"28","CD114FP":"01","GEOID":"2801","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":27383797448,"AWATER":408991883,"INTPTLAT":"+34.1975177","INTPTLON":"-089.0035117"}},{"arcs":[[-18,-608,-29,-53,629,630,-617]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"15","GEOID":"1715","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":38062213848,"AWATER":353578884,"INTPTLAT":"+38.9051694","INTPTLON":"-088.4420793"}},{"arcs":[[631,632,-37,633,-24]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"14","GEOID":"1714","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4137784871,"AWATER":62451338,"INTPTLAT":"+42.0255473","INTPTLON":"-088.4458531"}},{"arcs":[[-36,634,-38,-25,-634]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"11","GEOID":"1711","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":727505350,"AWATER":14393991,"INTPTLAT":"+41.6427983","INTPTLON":"-088.1459487"}},{"arcs":[[635,636,637,-33]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"08","GEOID":"1708","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":532292872,"AWATER":10747820,"INTPTLAT":"+42.0096662","INTPTLON":"-088.0966439"}},{"arcs":[[638,639,640,-636,-32,-633]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"10","GEOID":"1710","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":776447458,"AWATER":31669301,"INTPTLAT":"+42.2800078","INTPTLON":"-087.9399324"}},{"arcs":[[-35,641,642,643,-39,-635]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"03","GEOID":"1703","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":614092706,"AWATER":12799708,"INTPTLAT":"+41.6789774","INTPTLON":"-087.8919745"}},{"arcs":[[644,645,646,647,-642,-34,-638]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"05","GEOID":"1705","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":248167134,"AWATER":1377952,"INTPTLAT":"+41.9303655","INTPTLON":"-087.8309020"}},{"arcs":[[648,649,-45,650,651,-626,-621]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"07","GEOID":"4707","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23725054173,"AWATER":416736965,"INTPTLAT":"+35.6333869","INTPTLON":"-087.8333474"}},{"arcs":[[-641,652,-645,-637]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"09","GEOID":"1709","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":272940465,"AWATER":1558242,"INTPTLAT":"+42.0526844","INTPTLON":"-087.8101853"}},{"arcs":[[-42,653,654,-46,-27]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"02","GEOID":"1702","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2798908521,"AWATER":25364917,"INTPTLAT":"+41.2562081","INTPTLON":"-087.7901148"}},{"arcs":[[655,656,657,658,-624]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"01","GEOID":"0101","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15713026281,"AWATER":2275882448,"INTPTLAT":"+31.0020519","INTPTLON":"-087.7879717"}},{"arcs":[[659,-643,-648]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"04","GEOID":"1704","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":135857813,"AWATER":889689,"INTPTLAT":"+41.8318687","INTPTLON":"-087.7100236"}},{"arcs":[[-647,660,-40,-644,-660]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"07","GEOID":"1707","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":161935704,"AWATER":4773294,"INTPTLAT":"+41.8633320","INTPTLON":"-087.7321218"}},{"arcs":[[-615,-629,661,662,663,-656,-623]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"07","GEOID":"0107","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":26304093951,"AWATER":330576867,"INTPTLAT":"+32.4492349","INTPTLON":"-087.6405014"}},{"arcs":[[664,665,-61,666,-654,-41,-661,-646,-653,-640]],"type":"Polygon","properties":{"STATEFP":"17","CD114FP":"ZZ","GEOID":"17ZZ","NAMELSAD":"Congressional Districts not defined","LSAD":"00","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"F","ALAND":57881,"AWATER":4071165966,"INTPTLAT":"+41.8863071","INTPTLON":"-087.6135293"}},{"arcs":[[667,668,669,670,-662,-628]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"04","GEOID":"0104","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23022866978,"AWATER":572885003,"INTPTLAT":"+34.1181796","INTPTLON":"-087.2138079"}},{"arcs":[[-52,671,672,673,-630]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"08","GEOID":"1808","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18792405027,"AWATER":277641845,"INTPTLAT":"+38.7330167","INTPTLON":"-087.1993471"}},{"arcs":[[[-618,-631,-674,674,675,676,-649,-620,-4]],[[-619,-6]]],"type":"MultiPolygon","properties":{"STATEFP":"21","CD114FP":"01","GEOID":"2101","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":31293390163,"AWATER":1224895056,"INTPTLAT":"+37.0846029","INTPTLON":"-087.1849382"}},{"arcs":[[-667,-60,677,-47,-655]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"01","GEOID":"1801","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2996689840,"AWATER":624729701,"INTPTLAT":"+41.4970344","INTPTLON":"-087.1798166"}},{"arcs":[[-671,678,679,-663]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"06","GEOID":"0106","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10803479813,"AWATER":176071775,"INTPTLAT":"+33.2602118","INTPTLON":"-086.7134267"}},{"arcs":[[680,681,-668,-627,-652]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"05","GEOID":"0105","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9524262561,"AWATER":461158047,"INTPTLAT":"+34.7550739","INTPTLON":"-086.7101631"}},{"arcs":[[-565,682,683,-67,684,685,686,687,688]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"01","GEOID":"2601","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":64823251194,"AWATER":75783538262,"INTPTLAT":"+46.1573045","INTPTLON":"-086.4369120"}},{"arcs":[[[689,690,691,-87]],[[692,693]],[[694,-54,-666,695]],[[-686,696,697]]],"type":"MultiPolygon","properties":{"STATEFP":"26","CD114FP":"ZZ","GEOID":"26ZZ","NAMELSAD":"Congressional Districts not defined","LSAD":"00","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"F","ALAND":0,"AWATER":4875243120,"INTPTLAT":"+42.6363171","INTPTLON":"-086.5447420"}},{"arcs":[[-697,-685,-66,698,-55,-695,699,700,701]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"02","GEOID":"2602","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8507367969,"AWATER":7462252333,"INTPTLAT":"+43.3975406","INTPTLON":"-086.3188626"}},{"arcs":[[-678,-59,702,703,-48]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"02","GEOID":"1802","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10252900076,"AWATER":132018111,"INTPTLAT":"+41.2487244","INTPTLON":"-086.2367980"}},{"arcs":[[-51,704,705,706,707,708,-672]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"09","GEOID":"1809","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11620857452,"AWATER":145811939,"INTPTLAT":"+38.7829414","INTPTLON":"-086.2122933"}},{"arcs":[[709,710,-705,-50]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"07","GEOID":"1807","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":787140388,"AWATER":4748773,"INTPTLAT":"+39.7468732","INTPTLON":"-086.1390065"}},{"arcs":[[-664,-680,711,712,713,714,-657]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"02","GEOID":"0102","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":26266692521,"AWATER":306846884,"INTPTLAT":"+31.7020846","INTPTLON":"-086.0768417"}},{"arcs":[[-673,-709,715,716,717,718,-675]],"type":"Polygon","properties":{"STATEFP":"21","CD114FP":"02","GEOID":"2102","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18590760488,"AWATER":399959933,"INTPTLAT":"+37.5446206","INTPTLON":"-085.9904901"}},{"arcs":[[-44,719,720,721,-681,-651]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"04","GEOID":"4704","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15500289213,"AWATER":241901116,"INTPTLAT":"+35.2621448","INTPTLON":"-086.6288782"}},{"arcs":[[-704,722,723,-710,-49]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"05","GEOID":"1805","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4985231367,"AWATER":40954042,"INTPTLAT":"+40.2486316","INTPTLON":"-085.8695988"}},{"arcs":[[-677,724,725,-720,-43,-650]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"06","GEOID":"4706","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16769383649,"AWATER":325257503,"INTPTLAT":"+36.1947713","INTPTLON":"-085.7784340"}},{"arcs":[[-670,726,727,728,-712,-679]],"type":"Polygon","properties":{"STATEFP":"01","CD114FP":"03","GEOID":"0103","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19538947327,"AWATER":470563663,"INTPTLAT":"+33.1505639","INTPTLON":"-085.7002277"}},{"arcs":[[-708,729,-716]],"type":"Polygon","properties":{"STATEFP":"21","CD114FP":"03","GEOID":"2103","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":827228829,"AWATER":41535215,"INTPTLAT":"+38.1892208","INTPTLON":"-085.6972712"}},{"arcs":[[-711,-724,730,731,732,733,-706]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"06","GEOID":"1806","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16075649515,"AWATER":106608469,"INTPTLAT":"+39.4752185","INTPTLON":"-085.3763377"}},{"arcs":[[-65,-74,-56,-699]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"03","GEOID":"2603","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6810499317,"AWATER":177748440,"INTPTLAT":"+42.7200275","INTPTLON":"-085.2372759"}},{"arcs":[[-58,-81,734,735,-731,-723,-703]],"type":"Polygon","properties":{"STATEFP":"18","CD114FP":"03","GEOID":"1803","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10826767442,"AWATER":135312883,"INTPTLAT":"+41.0967951","INTPTLON":"-085.2362774"}},{"arcs":[[736,737,-73,738,739,-727,-669,-682,-722]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"14","GEOID":"1314","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9384315442,"AWATER":51592866,"INTPTLAT":"+34.4305862","INTPTLON":"-085.0978762"}},{"arcs":[[-740,740,741,742,743,-728]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"03","GEOID":"1303","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9935642339,"AWATER":215289310,"INTPTLAT":"+33.1505217","INTPTLON":"-084.7286640"}},{"arcs":[[-739,-72,744,745,746,-741]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"13","GEOID":"1313","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1849893422,"AWATER":25863234,"INTPTLAT":"+33.6298272","INTPTLON":"-084.5687751"}},{"arcs":[[-726,747,748,749,750,751,-737,-721]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"03","GEOID":"4703","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11837020194,"AWATER":372481465,"INTPTLAT":"+35.7616459","INTPTLON":"-084.5094443"}},{"arcs":[[-734,752,753,754,-89,755,756,-717,-730,-707]],"type":"Polygon","properties":{"STATEFP":"21","CD114FP":"04","GEOID":"2104","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11334285918,"AWATER":290203822,"INTPTLAT":"+38.5689729","INTPTLON":"-084.4370062"}},{"arcs":[[-736,757,758,759,-84,760,-732]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"08","GEOID":"3908","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6346923033,"AWATER":40176664,"INTPTLAT":"+39.8995035","INTPTLON":"-084.1608061"}},{"arcs":[[-729,-744,761,762,-713]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"02","GEOID":"1302","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":24931996996,"AWATER":449447372,"INTPTLAT":"+31.8162371","INTPTLON":"-084.4190306"}},{"arcs":[[-71,763,764,-745]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"05","GEOID":"1305","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":686233909,"AWATER":5100404,"INTPTLAT":"+33.7069846","INTPTLON":"-084.4011185"}},{"arcs":[[-761,-83,765,766,-753,-733]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"01","GEOID":"3901","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1779250489,"AWATER":26627555,"INTPTLAT":"+39.3360790","INTPTLON":"-084.3467724"}},{"arcs":[[767,768,-764,-70]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"06","GEOID":"1306","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":774046187,"AWATER":14122487,"INTPTLAT":"+34.0130473","INTPTLON":"-084.3456797"}},{"arcs":[[-757,769,-718]],"type":"Polygon","properties":{"STATEFP":"21","CD114FP":"06","GEOID":"2106","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11125102078,"AWATER":119861708,"INTPTLAT":"+38.0534473","INTPTLON":"-084.1547782"}},{"arcs":[[-69,770,771,772,-768]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"07","GEOID":"1307","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1016917582,"AWATER":25618480,"INTPTLAT":"+34.0401920","INTPTLON":"-084.0829587"}},{"arcs":[[-769,-773,773,-746,-765]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"04","GEOID":"1304","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1286295892,"AWATER":22908651,"INTPTLAT":"+33.6996000","INTPTLON":"-084.0505632"}},{"arcs":[[-80,774,775,-758,-735]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"05","GEOID":"3905","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":14572482294,"AWATER":72238678,"INTPTLAT":"+41.1557510","INTPTLON":"-084.0447886"}},{"arcs":[[-63,776,777,778,-75]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"08","GEOID":"2608","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3893103537,"AWATER":99752492,"INTPTLAT":"+42.6477730","INTPTLON":"-083.9453541"}},{"arcs":[[-749,779,780,781,782,-750]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"02","GEOID":"4702","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6012643682,"AWATER":279133843,"INTPTLAT":"+36.0503257","INTPTLON":"-083.8211985"}},{"arcs":[[-752,783,784,785,-771,-68,-738]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"09","GEOID":"1309","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13496387535,"AWATER":412947645,"INTPTLAT":"+34.5061129","INTPTLON":"-083.6870501"}},{"arcs":[[786,787,-754,-767]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"02","GEOID":"3902","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8343984222,"AWATER":77250488,"INTPTLAT":"+39.0188676","INTPTLON":"-083.5519463"}},{"arcs":[[-719,-770,-756,-94,788,-780,-748,-725,-676]],"type":"Polygon","properties":{"STATEFP":"21","CD114FP":"05","GEOID":"2105","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":29095485548,"AWATER":313027357,"INTPTLAT":"+37.3688281","INTPTLON":"-083.5218984"}},{"arcs":[[789,790,791,792,-759,-776]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"04","GEOID":"3904","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12082200183,"AWATER":122466513,"INTPTLAT":"+40.3871749","INTPTLON":"-083.9357033"}},{"arcs":[[-684,793,794,-694,795,-777,-62]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"05","GEOID":"2605","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6083579622,"AWATER":4835388655,"INTPTLAT":"+44.0818763","INTPTLON":"-083.6900106"}},{"arcs":[[796,-85,797,798,799,-76,-779]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"11","GEOID":"2611","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1085446544,"AWATER":55801941,"INTPTLAT":"+42.5300018","INTPTLON":"-083.4539962"}},{"arcs":[[800,801,802,803,804,-762,-743]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"08","GEOID":"1308","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":22576437686,"AWATER":354972977,"INTPTLAT":"+31.7798073","INTPTLON":"-083.4515115"}},{"arcs":[[-800,805,806,-77]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"12","GEOID":"2612","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1044089809,"AWATER":71946879,"INTPTLAT":"+42.2051522","INTPTLON":"-083.4498411"}},{"arcs":[[807,808,-806,-799]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"13","GEOID":"2613","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":478784802,"AWATER":5411425,"INTPTLAT":"+42.3803814","INTPTLON":"-083.3125530"}},{"arcs":[[-88,-692,809,-808,-798]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"14","GEOID":"2614","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":480908598,"AWATER":97628209,"INTPTLAT":"+42.3892242","INTPTLON":"-082.9218407"}},{"arcs":[[-747,-774,-772,-786,810,811,-801,-742]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"10","GEOID":"1310","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18374795796,"AWATER":469246252,"INTPTLAT":"+33.4242062","INTPTLON":"-083.0623090"}},{"arcs":[[812,813]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"03","GEOID":"3903","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":590662417,"AWATER":11211751,"INTPTLAT":"+39.9662072","INTPTLON":"-082.9474950"}},{"arcs":[[814,-690,-86,-797,-778,-796,-693,-795]],"type":"Polygon","properties":{"STATEFP":"26","CD114FP":"10","GEOID":"2610","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10727947217,"AWATER":5439803225,"INTPTLAT":"+43.4559041","INTPTLON":"-082.8824074"}},{"arcs":[[815,816,817,-782]],"type":"Polygon","properties":{"STATEFP":"47","CD114FP":"01","GEOID":"4701","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10727776894,"AWATER":207561390,"INTPTLAT":"+36.2125013","INTPTLON":"-082.7999170"}},{"arcs":[[818,819,820]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"13","GEOID":"1213","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":481831648,"AWATER":600687939,"INTPTLAT":"+27.8657577","INTPTLON":"-082.7478275"}},{"arcs":[[-82,-760,-793,821,-814,822,823,-787,-766]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"15","GEOID":"3915","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12274022119,"AWATER":99412530,"INTPTLAT":"+39.5778602","INTPTLON":"-082.7562053"}},{"arcs":[[824,825,-823,-813,-822,-792]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"12","GEOID":"3912","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5884524481,"AWATER":76565092,"INTPTLAT":"+40.2393230","INTPTLON":"-082.6136769"}},{"arcs":[[-79,826,827,828,829,-790,-775]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"09","GEOID":"3909","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1203433223,"AWATER":4312230708,"INTPTLAT":"+41.4032532","INTPTLON":"-082.5481185"}},{"arcs":[[830,831,832,833,834,-811,-785]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"03","GEOID":"4503","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13644928825,"AWATER":518870465,"INTPTLAT":"+34.3638666","INTPTLON":"-082.3382037"}},{"arcs":[[-812,-835,835,836,837,-802]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"12","GEOID":"1312","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":21201485836,"AWATER":375889494,"INTPTLAT":"+32.4133308","INTPTLON":"-082.2238419"}},{"arcs":[[838,839,-832,840]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"04","GEOID":"4504","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3365082966,"AWATER":44755518,"INTPTLAT":"+34.9417009","INTPTLON":"-082.1701563"}},{"arcs":[[-830,841,842,843,-825,-791]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"07","GEOID":"3907","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10009771518,"AWATER":64676659,"INTPTLAT":"+40.4811635","INTPTLON":"-082.3929179"}},{"arcs":[[-838,844,845,846,847,-803]],"type":"Polygon","properties":{"STATEFP":"13","CD114FP":"01","GEOID":"1301","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20880734361,"AWATER":2248723578,"INTPTLAT":"+31.3174384","INTPTLON":"-081.9425449"}},{"arcs":[[848,849,850]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"19","GEOID":"1219","NAMELSAD":"Congressional District 19","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1943097018,"AWATER":1597472727,"INTPTLAT":"+26.4316252","INTPTLON":"-081.9067678"}},{"arcs":[[-829,851,852,-842]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"16","GEOID":"3916","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3121946601,"AWATER":31001538,"INTPTLAT":"+40.9821546","INTPTLON":"-081.7406039"}},{"arcs":[[853,854,855,-852,-828]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"11","GEOID":"3911","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":633330868,"AWATER":1310790085,"INTPTLAT":"+41.6132500","INTPTLON":"-081.5310366"}},{"arcs":[[-824,-826,-844,856,857,858,859,860,-90,-755,-788]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"06","GEOID":"3906","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18686415337,"AWATER":202098705,"INTPTLAT":"+39.7714087","INTPTLON":"-081.5750390"}},{"arcs":[[861,862,-836,-834]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"02","GEOID":"4502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7828035043,"AWATER":225626053,"INTPTLAT":"+33.6330620","INTPTLON":"-081.3792888"}},{"arcs":[[-93,863,-106,864,865,-816,-781,-789]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"09","GEOID":"5109","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23605159061,"AWATER":154525039,"INTPTLAT":"+37.0008348","INTPTLON":"-081.3250552"}},{"arcs":[[[866,867,868]],[[869]]],"type":"MultiPolygon","properties":{"STATEFP":"12","CD114FP":"26","GEOID":"1226","NAMELSAD":"Congressional District 26","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5435281215,"AWATER":7255131098,"INTPTLAT":"+25.1426313","INTPTLON":"-081.0277073"}},{"arcs":[[870,871,872,873,874,-862,-833,-840]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"05","GEOID":"4505","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":14259581170,"AWATER":265569396,"INTPTLAT":"+34.5302283","INTPTLON":"-081.0109378"}},{"arcs":[[875,876,877,-855]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"14","GEOID":"3914","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5060012471,"AWATER":3734225462,"INTPTLAT":"+41.7511641","INTPTLON":"-081.0194752"}},{"arcs":[[-856,-878,878,-857,-843,-853]],"type":"Polygon","properties":{"STATEFP":"39","CD114FP":"13","GEOID":"3913","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2316332541,"AWATER":70035044,"INTPTLAT":"+41.1496303","INTPTLON":"-080.9786969"}},{"arcs":[[-875,879,880,881,-845,-837,-863]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"06","GEOID":"4506","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20883164570,"AWATER":863195414,"INTPTLAT":"+33.2082080","INTPTLON":"-080.5239865"}},{"arcs":[[882,883,884,885,886,-860]],"type":"Polygon","properties":{"STATEFP":"54","CD114FP":"01","GEOID":"5401","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16254295416,"AWATER":176409446,"INTPTLAT":"+39.3819864","INTPTLON":"-080.2684973"}},{"arcs":[[-861,-887,887,888,889,-91]],"type":"Polygon","properties":{"STATEFP":"54","CD114FP":"02","GEOID":"5402","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20771304990,"AWATER":121228518,"INTPTLAT":"+38.8387542","INTPTLON":"-080.1737613"}},{"arcs":[[890,891,-881]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"01","GEOID":"4501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4009015627,"AWATER":2197030776,"INTPTLAT":"+32.7140628","INTPTLON":"-080.1606245"}},{"arcs":[[892,893,894,895,896,897]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"22","GEOID":"1222","NAMELSAD":"Congressional District 22","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":447767785,"AWATER":483588289,"INTPTLAT":"+26.4032877","INTPTLON":"-080.0777882"}},{"arcs":[[898,899,900,-891,-880,-874]],"type":"Polygon","properties":{"STATEFP":"45","CD114FP":"07","GEOID":"4507","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13868489363,"AWATER":959318434,"INTPTLAT":"+34.0834783","INTPTLON":"-079.4988485"}},{"arcs":[[-92,-890,901,-99,-864]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"06","GEOID":"5106","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15357993814,"AWATER":105180378,"INTPTLAT":"+38.1365430","INTPTLON":"-079.1992544"}},{"arcs":[[902,-115,903,-888,-886]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"06","GEOID":"2406","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5055929740,"AWATER":98328889,"INTPTLAT":"+39.5376137","INTPTLON":"-078.8843351"}},{"arcs":[[-904,-114,-116,904,905,-100,-902,-889]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"10","GEOID":"5110","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3553763018,"AWATER":35974470,"INTPTLAT":"+39.0758983","INTPTLON":"-077.8564837"}},{"arcs":[[906,907,908,-102]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"07","GEOID":"5107","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":7190981166,"AWATER":170813356,"INTPTLAT":"+37.9680399","INTPTLON":"-077.7465299"}},{"arcs":[[-909,909,910,911,912,-103]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"04","GEOID":"5104","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11164129653,"AWATER":180037484,"INTPTLAT":"+36.9745621","INTPTLON":"-077.3068003"}},{"arcs":[[-120,913,914,-905]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"11","GEOID":"5111","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":479535989,"AWATER":21593862,"INTPTLAT":"+38.7913163","INTPTLON":"-077.2942908"}},{"arcs":[[915,916,917,918,919,920]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"17","GEOID":"4817","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19816654953,"AWATER":308022636,"INTPTLAT":"+31.1536017","INTPTLON":"-096.6657676"}},{"arcs":[[921,922,923]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"24","GEOID":"1224","NAMELSAD":"Congressional District 24","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":274835160,"AWATER":36847686,"INTPTLAT":"+25.9071014","INTPTLON":"-080.2191263"}},{"arcs":[[924,925,926,927,928,929,-107,-903,-885,930]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"09","GEOID":"4209","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":14840774817,"AWATER":94924656,"INTPTLAT":"+40.1415784","INTPTLON":"-078.6736544"}},{"arcs":[[931,-104,-913,932,933,934,935]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"01","GEOID":"3701","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":14227676034,"AWATER":414257294,"INTPTLAT":"+36.1119104","INTPTLON":"-077.5009008"}},{"arcs":[[936,937,938,939,940,941]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"01","GEOID":"4201","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":202032462,"AWATER":30932445,"INTPTLAT":"+39.9277355","INTPTLON":"-075.2142852"}},{"arcs":[[[942]],[[943]],[[944]],[[945]]],"type":"MultiPolygon","properties":{"STATEFP":"60","CD114FP":"98","GEOID":"6098","NAMELSAD":"Delegate District (at Large)","LSAD":"C4","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":197749662,"AWATER":1307107436,"INTPTLAT":"-14.2661268","INTPTLON":"-170.6646074"}},{"arcs":[[946,947,948,949,950,951,-447,-445,-433,-451,-441]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"04","GEOID":"0404","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":85986138620,"AWATER":503963005,"INTPTLAT":"+34.5909175","INTPTLON":"-113.2045275"}},{"arcs":[[-448,-952,952,953,954,955,956]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"03","GEOID":"0403","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":40633375850,"AWATER":8411271,"INTPTLAT":"+32.4238155","INTPTLON":"-112.4025904"}},{"arcs":[[957,958,-953,-951]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"08","GEOID":"0408","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1398012598,"AWATER":4391235,"INTPTLAT":"+33.6955808","INTPTLON":"-112.2995738"}},{"arcs":[[-959,959,960,961,-954]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"07","GEOID":"0407","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":530617544,"AWATER":1645136,"INTPTLAT":"+33.4278191","INTPTLON":"-112.1187678"}},{"arcs":[[-961,962,963,964]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"09","GEOID":"0409","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":426482311,"AWATER":3389600,"INTPTLAT":"+33.4060068","INTPTLON":"-111.9499956"}},{"arcs":[[-950,965,-963,-960,-958]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"06","GEOID":"0406","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1618585153,"AWATER":10779717,"INTPTLAT":"+33.6655181","INTPTLON":"-111.8885888"}},{"arcs":[[-964,-966,-949,966]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"05","GEOID":"0405","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":760241568,"AWATER":2272683,"INTPTLAT":"+33.3397081","INTPTLON":"-111.7124518"}},{"arcs":[[967,968,969,970,971,-955,-962,-965,-967,-948]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"01","GEOID":"0401","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":142550296795,"AWATER":354326243,"INTPTLAT":"+34.9710133","INTPTLON":"-110.7259249"}},{"arcs":[[-972,972,973,-956]],"type":"Polygon","properties":{"STATEFP":"04","CD114FP":"02","GEOID":"0402","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20300724551,"AWATER":138380234,"INTPTLAT":"+31.9166176","INTPTLON":"-109.9387277"}},{"arcs":[[974,975,976,977]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"28","GEOID":"4828","NAMELSAD":"Congressional District 28","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":24291224380,"AWATER":299389839,"INTPTLAT":"+27.8486342","INTPTLON":"-098.9136118"}},{"arcs":[[-482,-500,-503,978,979,980,981,982,983]],"type":"Polygon","properties":{"STATEFP":"40","CD114FP":"03","GEOID":"4003","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":88362563246,"AWATER":813197765,"INTPTLAT":"+36.1070688","INTPTLON":"-098.8397654"}},{"arcs":[[984,985,986,987,-982]],"type":"Polygon","properties":{"STATEFP":"40","CD114FP":"04","GEOID":"4004","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":25323181645,"AWATER":407769657,"INTPTLAT":"+34.5865916","INTPTLON":"-097.7501307"}},{"arcs":[[988,-985,-981]],"type":"Polygon","properties":{"STATEFP":"40","CD114FP":"05","GEOID":"4005","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5371380475,"AWATER":59056719,"INTPTLAT":"+35.3078792","INTPTLON":"-096.9896037"}},{"arcs":[[989,990,991,992,993,994,995]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"27","GEOID":"4827","NAMELSAD":"Congressional District 27","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":23622537439,"AWATER":4536906806,"INTPTLAT":"+28.7829945","INTPTLON":"-096.8414071"}},{"arcs":[[996,997,998,-917,999,1000]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"06","GEOID":"4806","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5564763518,"AWATER":255717101,"INTPTLAT":"+32.2350539","INTPTLON":"-096.6658786"}},{"arcs":[[-502,-517,1001,-979]],"type":"Polygon","properties":{"STATEFP":"40","CD114FP":"01","GEOID":"4001","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4226104901,"AWATER":143411697,"INTPTLAT":"+36.2117411","INTPTLON":"-095.7895823"}},{"arcs":[[1002,1003,1004,1005]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"07","GEOID":"4807","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":419730021,"AWATER":3144993,"INTPTLAT":"+29.7241654","INTPTLON":"-095.5003071"}},{"arcs":[[-989,-980,-1002,-516,-537,-541,-556,1006,-986]],"type":"Polygon","properties":{"STATEFP":"40","CD114FP":"02","GEOID":"4002","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":54379812758,"AWATER":1950614933,"INTPTLAT":"+35.1433031","INTPTLON":"-095.4417722"}},{"arcs":[[1007,1008,1009,1010,1011]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"29","GEOID":"4829","NAMELSAD":"Congressional District 29","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":484457250,"AWATER":10436501,"INTPTLAT":"+29.6881608","INTPTLON":"-095.1998072"}},{"arcs":[[1012,1013,-573,1014,-994]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"14","GEOID":"4814","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6324922468,"AWATER":2551227886,"INTPTLAT":"+29.4337172","INTPTLON":"-094.8926947"}},{"arcs":[[1015,-561,1016,1017,1018]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"01","GEOID":"4801","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20379600524,"AWATER":951809925,"INTPTLAT":"+31.9516781","INTPTLON":"-094.5520460"}},{"arcs":[[1019,1020,1021,1022,-605,-578,-533,-567]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"03","GEOID":"5503","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":28779745101,"AWATER":827068899,"INTPTLAT":"+44.0562970","INTPTLON":"-090.8917476"}},{"arcs":[[-689,1023,-1020,-562,-525,-566]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"07","GEOID":"5507","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":59666388405,"AWATER":7706029593,"INTPTLAT":"+45.6989971","INTPTLON":"-090.6553345"}},{"arcs":[[1024,1025,1026,-22,-606,-1023]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"02","GEOID":"5502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11750220587,"AWATER":189203227,"INTPTLAT":"+42.9842952","INTPTLON":"-089.7508660"}},{"arcs":[[1027,1028,1029,-1026]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"05","GEOID":"5505","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4897055602,"AWATER":165097243,"INTPTLAT":"+43.1995893","INTPTLON":"-088.5314618"}},{"arcs":[[1030,-687,-698,-702,1031,-1028,-1025,-1022]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"06","GEOID":"5506","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":12739210946,"AWATER":7318114833,"INTPTLAT":"+43.7792439","INTPTLON":"-088.2744226"}},{"arcs":[[-1030,1032,-700,-696,-665,-639,-632,-23,-1027]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"01","GEOID":"5501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4475418306,"AWATER":2524257850,"INTPTLAT":"+42.6952148","INTPTLON":"-088.0463951"}},{"arcs":[[-1024,-688,-1031,-1021]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"08","GEOID":"5508","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17628788869,"AWATER":8181086532,"INTPTLAT":"+44.8312557","INTPTLON":"-087.9368111"}},{"arcs":[[-1032,-701,-1033,-1029]],"type":"Polygon","properties":{"STATEFP":"55","CD114FP":"04","GEOID":"5504","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":332656367,"AWATER":2454584430,"INTPTLAT":"+42.9083954","INTPTLON":"-087.8433732"}},{"arcs":[[-715,1033,1034,-658]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"01","GEOID":"1201","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10404041286,"AWATER":1921180639,"INTPTLAT":"+30.6628014","INTPTLON":"-086.6624661"}},{"arcs":[[-714,-763,-805,1035,1036,-1034]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"02","GEOID":"1202","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":22309020193,"AWATER":3787038975,"INTPTLAT":"+30.2827085","INTPTLON":"-084.7303769"}},{"arcs":[[-783,-818,1037,1038,-841,-831,-784,-751]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"11","GEOID":"3711","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":17710962233,"AWATER":191335184,"INTPTLAT":"+35.5532217","INTPTLON":"-082.7875543"}},{"arcs":[[-804,-848,1039,1040,1041,1042,-1036]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"03","GEOID":"1203","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18924328909,"AWATER":1443486198,"INTPTLAT":"+29.8346239","INTPTLON":"-082.7358289"}},{"arcs":[[-820,1043,1044,1045,1046,1047]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"14","GEOID":"1214","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":687483907,"AWATER":665984370,"INTPTLAT":"+27.8336178","INTPTLON":"-082.5127178"}},{"arcs":[[1048,1049,-1044,-819,1050]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"12","GEOID":"1212","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2291185310,"AWATER":475526115,"INTPTLAT":"+28.2687180","INTPTLON":"-082.4917735"}},{"arcs":[[-1047,1051,1052]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"16","GEOID":"1216","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2267480986,"AWATER":823562757,"INTPTLAT":"+27.3102013","INTPTLON":"-082.4213186"}},{"arcs":[[-1042,1053,1054,1055,-1049,1056]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"11","GEOID":"1211","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6510979548,"AWATER":1027597335,"INTPTLAT":"+28.8585656","INTPTLON":"-082.2414631"}},{"arcs":[[-1056,1057,1058,-1045,-1050]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"15","GEOID":"1215","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2119985736,"AWATER":145652184,"INTPTLAT":"+28.0441411","INTPTLON":"-082.0787039"}},{"arcs":[[1059,1060,1061,-1040,-847]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"04","GEOID":"1204","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4859795621,"AWATER":587464913,"INTPTLAT":"+30.4272430","INTPTLON":"-081.8611534"}},{"arcs":[[-1062,1062,1063,1064,-1054,-1041]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"05","GEOID":"1205","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3510750927,"AWATER":466830244,"INTPTLAT":"+29.3852027","INTPTLON":"-081.7512099"}},{"arcs":[[-1065,1065,-98,1066,-1058,-1055]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"10","GEOID":"1210","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2927356889,"AWATER":697336498,"INTPTLAT":"+28.5160226","INTPTLON":"-081.7411765"}},{"arcs":[[1067,1068,-871,-839,-1039]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"10","GEOID":"3710","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6669523132,"AWATER":101611536,"INTPTLAT":"+35.4391869","INTPTLON":"-081.6293598"}},{"arcs":[[-1046,-1059,-1067,-97,1069,1070,1071,1072,-849,1073,-1052]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"17","GEOID":"1217","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16497970863,"AWATER":1871188672,"INTPTLAT":"+27.2998234","INTPTLON":"-081.5442020"}},{"arcs":[[-1061,1074,1075,1076,-1063]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"06","GEOID":"1206","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6493690835,"AWATER":1789304336,"INTPTLAT":"+29.4576319","INTPTLON":"-081.3518251"}},{"arcs":[[-1077,1077,-95,-1066,-1064]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"07","GEOID":"1207","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1330795295,"AWATER":166994670,"INTPTLAT":"+28.7257089","INTPTLON":"-081.2196197"}},{"arcs":[[-1073,1078,1079,-924,1080,-867,1081,-850]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"25","GEOID":"1225","NAMELSAD":"Congressional District 25","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8375266427,"AWATER":386742957,"INTPTLAT":"+26.0228204","INTPTLON":"-081.0812494"}},{"arcs":[[-866,1082,1083,1084,-1068,-1038,-817]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"05","GEOID":"3705","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9251133393,"AWATER":64390794,"INTPTLAT":"+36.1450801","INTPTLON":"-080.9605925"}},{"arcs":[[1085,1086,-872,-1069,-1085]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"09","GEOID":"3709","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2218364564,"AWATER":116829570,"INTPTLAT":"+35.3796327","INTPTLON":"-080.8384032"}},{"arcs":[[-1078,-1076,1087,1088,-1070,-96]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"08","GEOID":"1208","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4537004521,"AWATER":1710091827,"INTPTLAT":"+28.1646486","INTPTLON":"-080.6989059"}},{"arcs":[[-1072,1089,-895,1090,-893,1091,-1079]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"20","GEOID":"1220","NAMELSAD":"Congressional District 20","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6283742249,"AWATER":702360339,"INTPTLAT":"+26.5089242","INTPTLON":"-080.6770960"}},{"arcs":[[-1084,1092,1093,1094,-1086]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"12","GEOID":"3712","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1424086045,"AWATER":18955910,"INTPTLAT":"+35.6462622","INTPTLON":"-080.4424707"}},{"arcs":[[-1089,1095,-896,-1090,-1071]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"18","GEOID":"1218","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3917848951,"AWATER":979157081,"INTPTLAT":"+27.1383614","INTPTLON":"-080.3794999"}},{"arcs":[[-1081,-923,1096,1097,-868]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"27","GEOID":"1227","NAMELSAD":"Congressional District 27","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":541609936,"AWATER":954825589,"INTPTLAT":"+25.5731796","INTPTLON":"-080.3060967"}},{"arcs":[[-894,-1091]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"21","GEOID":"1221","NAMELSAD":"Congressional District 21","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":676243090,"AWATER":8800785,"INTPTLAT":"+26.4684780","INTPTLON":"-080.2111126"}},{"arcs":[[-1092,-898,1098,-1097,-922,-1080]],"type":"Polygon","properties":{"STATEFP":"12","CD114FP":"23","GEOID":"1223","NAMELSAD":"Congressional District 23","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":433683301,"AWATER":300316284,"INTPTLAT":"+26.0736056","INTPTLON":"-080.3460073"}},{"arcs":[[1099,1100,1101,-931,-884]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"18","GEOID":"4218","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5368517143,"AWATER":17435303,"INTPTLAT":"+40.1705353","INTPTLON":"-080.0275169"}},{"arcs":[[1102,1103,1104,-926,1105,-858,-879,-877]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"03","GEOID":"4203","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9973638772,"AWATER":2115958030,"INTPTLAT":"+41.4076083","INTPTLON":"-080.0035571"}},{"arcs":[[1106,1107,-899,-873,-1087,-1095]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"08","GEOID":"3708","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11685622970,"AWATER":169715196,"INTPTLAT":"+35.1224465","INTPTLON":"-079.9609413"}},{"arcs":[[1108,-1101]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"14","GEOID":"4214","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":542048505,"AWATER":26842230,"INTPTLAT":"+40.4325410","INTPTLON":"-079.9056963"}},{"arcs":[[-865,-105,-932,1109,1110,-1093,-1083]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"06","GEOID":"3706","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9516332615,"AWATER":147995262,"INTPTLAT":"+36.3104201","INTPTLON":"-079.6783783"}},{"arcs":[[-859,-1106,-925,-1102,-1109,-1100,-883]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"12","GEOID":"4212","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5602307611,"AWATER":59304564,"INTPTLAT":"+40.4284125","INTPTLON":"-079.4864996"}},{"arcs":[[-1094,-1111,1111,1112,1113,-1107]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"02","GEOID":"3702","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8409234752,"AWATER":128676543,"INTPTLAT":"+35.4457540","INTPTLON":"-079.2972255"}},{"arcs":[[-936,1114,-1112,-1110]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"04","GEOID":"3704","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2707773493,"AWATER":56103916,"INTPTLAT":"+35.6243203","INTPTLON":"-078.9951446"}},{"arcs":[[1115,1116,-927,-1105]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"05","GEOID":"4205","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":27742738757,"AWATER":213229360,"INTPTLAT":"+41.3871737","INTPTLON":"-078.5706769"}},{"arcs":[[1117,-934,1118,1119,-900,-1108,-1114]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"07","GEOID":"3707","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15962355528,"AWATER":1123713110,"INTPTLAT":"+34.6883051","INTPTLON":"-078.3199580"}},{"arcs":[[-1115,-935,-1118,-1113]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"13","GEOID":"3713","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5906372694,"AWATER":87134848,"INTPTLAT":"+35.7832200","INTPTLON":"-078.2128103"}},{"arcs":[[1120,-117,-113]],"type":"Polygon","properties":{"STATEFP":"11","CD114FP":"98","GEOID":"1198","NAMELSAD":"Delegate District (at Large)","LSAD":"C4","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":158364990,"AWATER":18633403,"INTPTLAT":"+38.9041031","INTPTLON":"-077.0172290"}},{"arcs":[[1121,1122,-910,-908]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"03","GEOID":"5103","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2453495533,"AWATER":548366464,"INTPTLAT":"+37.2135279","INTPTLON":"-076.9511350"}},{"arcs":[[1123,1124,1125,1126,-108,-930]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"04","GEOID":"4204","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3931313199,"AWATER":41441032,"INTPTLAT":"+39.9218557","INTPTLON":"-076.9116159"}},{"arcs":[[-101,-906,-915,1127,1128,1129,-1122,-907]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"01","GEOID":"5101","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":9542309067,"AWATER":2192254635,"INTPTLAT":"+37.8454783","INTPTLON":"-076.9116128"}},{"arcs":[[1130,1131,1132,-110]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"07","GEOID":"2407","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1264536007,"AWATER":14751870,"INTPTLAT":"+39.2868101","INTPTLON":"-076.9965521"}},{"arcs":[[-1121,-112,1133,1134,-118]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"04","GEOID":"2404","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":771344292,"AWATER":48249870,"INTPTLAT":"+39.0562471","INTPTLON":"-076.5924708"}},{"arcs":[[-914,-119,-1135,1135,1136,-1128]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"05","GEOID":"2405","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3837152337,"AWATER":2069385210,"INTPTLAT":"+38.4718173","INTPTLON":"-076.7120357"}},{"arcs":[[-1133,1137,1138,-1136,-1134,-111]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"03","GEOID":"2403","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":788547078,"AWATER":252321735,"INTPTLAT":"+39.1572215","INTPTLON":"-076.6768633"}},{"arcs":[[-933,-912,1139,1140,-1119]],"type":"Polygon","properties":{"STATEFP":"37","CD114FP":"03","GEOID":"3703","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20228655381,"AWATER":10851829652,"INTPTLAT":"+35.4057865","INTPTLON":"-076.6296737"}},{"arcs":[[1141,1142,1143,1144,1145,1146,1147,-928,-1117]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"10","GEOID":"4210","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":21698029750,"AWATER":298832373,"INTPTLAT":"+41.3726930","INTPTLON":"-076.5231891"}},{"arcs":[[-1148,1148,1149,-1124,-929]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"11","GEOID":"4211","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8693348304,"AWATER":193080454,"INTPTLAT":"+40.8813886","INTPTLON":"-076.4517604"}},{"arcs":[[-1132,1150,-1138]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"02","GEOID":"2402","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":902930408,"AWATER":440381767,"INTPTLAT":"+39.3395186","INTPTLON":"-076.4287016"}},{"arcs":[[1151,1152,1153,1154,-1126]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"16","GEOID":"4216","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2583911637,"AWATER":105135750,"INTPTLAT":"+40.0208820","INTPTLON":"-076.2131977"}},{"arcs":[[-1127,-1155,1155,1156,1157,1158,-1129,-1137,-1139,-1151,-1131,-109]],"type":"Polygon","properties":{"STATEFP":"24","CD114FP":"01","GEOID":"2401","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10300761240,"AWATER":4036014271,"INTPTLAT":"+38.7684710","INTPTLON":"-075.9588863"}},{"arcs":[[1159,1160,1161,1162,-1152,-1125,-1150]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"15","GEOID":"4215","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3328124890,"AWATER":33967140,"INTPTLAT":"+40.5291972","INTPTLON":"-075.9626302"}},{"arcs":[[-1130,-1159,1163,-1140,-911,-1123]],"type":"Polygon","properties":{"STATEFP":"51","CD114FP":"02","GEOID":"5102","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2570965335,"AWATER":4674373082,"INTPTLAT":"+37.4077643","INTPTLON":"-075.8875288"}},{"arcs":[[-1147,1164,1165,-1160,-1149]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"17","GEOID":"4217","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4489061946,"AWATER":59182222,"INTPTLAT":"+40.8854972","INTPTLON":"-075.7970882"}},{"arcs":[[1166,1167,-1153,-1163]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"06","GEOID":"4206","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2228751201,"AWATER":29628414,"INTPTLAT":"+40.0601223","INTPTLON":"-075.6344885"}},{"arcs":[[-1168,1168,1169,1170,-942,1171,1172,-1156,-1154]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"07","GEOID":"4207","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2233888247,"AWATER":21404312,"INTPTLAT":"+39.8980922","INTPTLON":"-075.9217800"}},{"arcs":[[-1173,1173,1174,1175,-1157]],"type":"Polygon","properties":{"STATEFP":"10","CD114FP":"00","GEOID":"1000","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5047105127,"AWATER":1398742998,"INTPTLAT":"+38.9985380","INTPTLON":"-075.4416616"}},{"arcs":[[1176,-937,-1171]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"02","GEOID":"4202","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":192027437,"AWATER":3460343,"INTPTLAT":"+40.0151623","INTPTLON":"-075.2221966"}},{"arcs":[[1177,-938,-1177,-1170]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"13","GEOID":"4213","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":401885238,"AWATER":2643777,"INTPTLAT":"+40.1240017","INTPTLON":"-075.1595354"}},{"arcs":[[-1162,1178,-124,1179,1180,-939,-1178,-1169,-1167]],"type":"Polygon","properties":{"STATEFP":"42","CD114FP":"08","GEOID":"4208","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1831099436,"AWATER":49241182,"INTPTLAT":"+40.3360801","INTPTLON":"-075.1511554"}},{"arcs":[[-1172,-941,1181,1182,-1174]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"01","GEOID":"3401","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":906592881,"AWATER":51952358,"INTPTLAT":"+39.7919878","INTPTLON":"-075.0580299"}},{"arcs":[[-1183,1183,1184,-1175]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"02","GEOID":"3402","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5419985905,"AWATER":2031556045,"INTPTLAT":"+39.3926472","INTPTLON":"-074.9086734"}},{"arcs":[[1185,1186,1187,1188,-121,-1179,-1161,-1166]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"07","GEOID":"3407","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2512723917,"AWATER":47207825,"INTPTLAT":"+40.6317476","INTPTLON":"-074.7895041"}},{"arcs":[[-1146,1189,1190,1191,1192,1193,-1186,-1165]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"05","GEOID":"3405","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2567585494,"AWATER":83505352,"INTPTLAT":"+41.1862500","INTPTLON":"-074.8281371"}},{"arcs":[[-940,-1181,1194,1195,1196,-1184,-1182]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"03","GEOID":"3403","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2330128389,"AWATER":619956529,"INTPTLAT":"+39.8989216","INTPTLON":"-074.4763738"}},{"arcs":[[1197,1198,1199,-1187,-1194]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"11","GEOID":"3411","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1308416001,"AWATER":68782323,"INTPTLAT":"+40.9020572","INTPTLON":"-074.4504622"}},{"arcs":[[1200,-1195,-1180,-123]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"04","GEOID":"3404","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1792058621,"AWATER":48806003,"INTPTLAT":"+40.1653131","INTPTLON":"-074.3167410"}},{"arcs":[[-1188,-1200,1201,1202,1203]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"10","GEOID":"3410","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":196662389,"AWATER":12863200,"INTPTLAT":"+40.7089641","INTPTLON":"-074.2090452"}},{"arcs":[[-1189,-1204,1204,1205,1206,-1196,-1201,-122]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"06","GEOID":"3406","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":557538215,"AWATER":503814232,"INTPTLAT":"+40.3549202","INTPTLON":"-074.2026491"}},{"arcs":[[-1199,1207,1208,1209,-1202]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"08","GEOID":"3408","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":141733826,"AWATER":37427246,"INTPTLAT":"+40.7230432","INTPTLON":"-074.1085907"}},{"arcs":[[-1193,1210,1211,1212,-1208,-1198]],"type":"Polygon","properties":{"STATEFP":"34","CD114FP":"09","GEOID":"3409","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":246915922,"AWATER":19228539,"INTPTLAT":"+40.8607823","INTPTLON":"-074.0738236"}},{"arcs":[[-128,1213,1214,1215,1216,1217]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"01","GEOID":"2501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6087286879,"AWATER":129397696,"INTPTLAT":"+42.3310418","INTPTLON":"-072.8641797"}},{"arcs":[[-127,1218,1219,1220,1221,1222,1223,1224,-1214]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"02","GEOID":"2502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":4216564942,"AWATER":221665872,"INTPTLAT":"+42.3850416","INTPTLON":"-072.1186908"}},{"arcs":[[1225,-138,1226,1227,-1219,-126]],"type":"Polygon","properties":{"STATEFP":"33","CD114FP":"02","GEOID":"3302","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":16806881512,"AWATER":400677019,"INTPTLAT":"+43.7641775","INTPTLON":"-071.7213985"}},{"arcs":[[-1228,1228,1229,1230,-1220]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"03","GEOID":"2503","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1962575051,"AWATER":76203449,"INTPTLAT":"+42.5895154","INTPTLON":"-071.5728279"}},{"arcs":[[-1231,1231,1232,1233,-1221]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"05","GEOID":"2505","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":686614096,"AWATER":58509767,"INTPTLAT":"+42.3553663","INTPTLON":"-071.2984404"}},{"arcs":[[-1234,1234,1235,-131,1236,-1222]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"04","GEOID":"2504","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1730872501,"AWATER":86459561,"INTPTLAT":"+41.9972151","INTPTLON":"-071.2275363"}},{"arcs":[[-137,1237,1238,1239,-1229,-1227]],"type":"Polygon","properties":{"STATEFP":"33","CD114FP":"01","GEOID":"3301","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6381144596,"AWATER":625513419,"INTPTLAT":"+43.4649591","INTPTLON":"-071.2004055"}},{"arcs":[[-1233,1240,1241,-1235]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"07","GEOID":"2507","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":162473270,"AWATER":97425176,"INTPTLAT":"+42.3166876","INTPTLON":"-071.0094420"}},{"arcs":[[-1242,1242,1243,-132,-1236]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"08","GEOID":"2508","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":845478509,"AWATER":447479738,"INTPTLAT":"+42.1947343","INTPTLON":"-070.9440053"}},{"arcs":[[-1240,1244,-1243,-1241,-1232,-1230]],"type":"Polygon","properties":{"STATEFP":"25","CD114FP":"06","GEOID":"2506","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1364317936,"AWATER":864176425,"INTPTLAT":"+42.6171124","INTPTLON":"-070.8853911"}},{"arcs":[[-136,1245,-1238]],"type":"Polygon","properties":{"STATEFP":"23","CD114FP":"01","GEOID":"2301","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8511484178,"AWATER":4734294259,"INTPTLAT":"+43.8377318","INTPTLON":"-069.9390676"}},{"arcs":[[[1246]],[[1247]],[[1248]]],"type":"MultiPolygon","properties":{"STATEFP":"72","CD114FP":"98","GEOID":"7298","NAMELSAD":"Resident Commissioner District (at Large)","LSAD":"C3","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":8867867645,"AWATER":4923406204,"INTPTLAT":"+18.2176480","INTPTLON":"-066.4107992"}},{"arcs":[[[1249]],[[1250]]],"type":"MultiPolygon","properties":{"STATEFP":"78","CD114FP":"98","GEOID":"7898","NAMELSAD":"Delegate District (at Large)","LSAD":"C4","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":347962916,"AWATER":1550265400,"INTPTLAT":"+18.2758499","INTPTLON":"-064.8903849"}},{"arcs":[[1251,1252,1253,1254,1255,1256]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"24","GEOID":"4824","NAMELSAD":"Congressional District 24","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":680645100,"AWATER":23184756,"INTPTLAT":"+32.9194727","INTPTLON":"-097.0127238"}},{"arcs":[[-987,-1007,-555,-557,-1016,1257,1258,1259,1260,1261]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"04","GEOID":"4804","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":26237677155,"AWATER":1010363159,"INTPTLAT":"+33.2982880","INTPTLON":"-095.4180633"}},{"arcs":[[-1012,1262,1263]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"18","GEOID":"4818","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":609345587,"AWATER":4419928,"INTPTLAT":"+29.8185500","INTPTLON":"-095.2535750"}},{"arcs":[[1264,1265,1266,-1008,-1264,1267,-1003]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"02","GEOID":"4802","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":799720228,"AWATER":54789647,"INTPTLAT":"+30.0473686","INTPTLON":"-095.1782923"}},{"arcs":[[1268,1269,1270,1271,1272,1273,1274,1275,1276]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"03","GEOID":"3603","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":660290869,"AWATER":301947096,"INTPTLAT":"+40.8604959","INTPTLON":"-073.5053788"}},{"arcs":[[-418,1277,1278,1279,1280,-968,-947,-440]],"type":"Polygon","properties":{"STATEFP":"49","CD114FP":"02","GEOID":"4902","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":103638076153,"AWATER":2945583941,"INTPTLAT":"+38.7449472","INTPTLON":"-112.5531266"}},{"arcs":[[1281,-1280]],"type":"Polygon","properties":{"STATEFP":"49","CD114FP":"04","GEOID":"4904","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6603580737,"AWATER":374142687,"INTPTLAT":"+39.8793168","INTPTLON":"-111.8444529"}},{"arcs":[[-454,-460,-462,1282,-1278,-417]],"type":"Polygon","properties":{"STATEFP":"49","CD114FP":"01","GEOID":"4901","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":50651765020,"AWATER":3222708814,"INTPTLAT":"+40.9604767","INTPTLON":"-111.3327276"}},{"arcs":[[-1279,-1283,-467,-969,-1281,-1282]],"type":"Polygon","properties":{"STATEFP":"49","CD114FP":"03","GEOID":"4903","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":51991590524,"AWATER":457501023,"INTPTLAT":"+38.6967640","INTPTLON":"-110.2164022"}},{"arcs":[[1283,-487,-488,-461,-452,-438]],"type":"Polygon","properties":{"STATEFP":"30","CD114FP":"00","GEOID":"3000","NAMELSAD":"Congressional District (at Large)","LSAD":"C1","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":376964776680,"AWATER":3868193267,"INTPTLAT":"+47.0511771","INTPTLON":"-109.6348174"}},{"arcs":[[-971,1284,1285,1286,1287,1288,1289,1290,1291,-973]],"type":"Polygon","properties":{"STATEFP":"35","CD114FP":"02","GEOID":"3502","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":185805163025,"AWATER":418245836,"INTPTLAT":"+33.3853203","INTPTLON":"-106.2994586"}},{"arcs":[[1292,1293,-1291]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"16","GEOID":"4816","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1840228113,"AWATER":3691978,"INTPTLAT":"+31.9108030","INTPTLON":"-106.3104239"}},{"arcs":[[1294,-1286]],"type":"Polygon","properties":{"STATEFP":"35","CD114FP":"01","GEOID":"3501","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":11914085488,"AWATER":17975697,"INTPTLAT":"+34.7715617","INTPTLON":"-106.0510913"}},{"arcs":[[-466,-483,-984,1295,1296,-1287,-1295,-1285,-970]],"type":"Polygon","properties":{"STATEFP":"35","CD114FP":"03","GEOID":"3503","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":116442177819,"AWATER":319452471,"INTPTLAT":"+36.0098339","INTPTLON":"-105.8318748"}},{"arcs":[[-1290,1297,1298,1299,1300,-975,1301,-1293]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"23","GEOID":"4823","NAMELSAD":"Congressional District 23","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":150372534602,"AWATER":449356467,"INTPTLAT":"+30.3892100","INTPTLON":"-102.3267561"}},{"arcs":[[-1297,1302,1303,-1288]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"19","GEOID":"4819","NAMELSAD":"Congressional District 19","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":66914092826,"AWATER":282504947,"INTPTLAT":"+33.2452902","INTPTLON":"-101.2097385"}},{"arcs":[[-983,-988,-1262,1304,1305,1306,-1303,-1296]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"13","GEOID":"4813","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":99325308090,"AWATER":766222982,"INTPTLAT":"+34.8376887","INTPTLON":"-100.5978721"}},{"arcs":[[-1304,-1307,1307,1308,1309,-1298,-1289]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"11","GEOID":"4811","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":72085445748,"AWATER":573570932,"INTPTLAT":"+31.7322926","INTPTLON":"-100.0636956"}},{"arcs":[[-1310,1310,1311,1312,-1299]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"21","GEOID":"4821","NAMELSAD":"Congressional District 21","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15335041906,"AWATER":91792231,"INTPTLAT":"+30.0578898","INTPTLON":"-098.9753677"}},{"arcs":[[-1313,1313,-1300]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"20","GEOID":"4820","NAMELSAD":"Congressional District 20","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":517193676,"AWATER":1485839,"INTPTLAT":"+29.4743174","INTPTLON":"-098.6224612"}},{"arcs":[[1314,-990,1315,1316,-977]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"15","GEOID":"4815","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20212567211,"AWATER":154626758,"INTPTLAT":"+27.7500112","INTPTLON":"-098.2634106"}},{"arcs":[[-1312,1317,1318,-991,-1315,-976,-1301,-1314]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"35","GEOID":"4835","NAMELSAD":"Congressional District 35","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1537892540,"AWATER":19684204,"INTPTLAT":"+29.9155235","INTPTLON":"-097.8840940"}},{"arcs":[[1319,-1000,-916,1320,1321,-1318,-1311,-1309]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"25","GEOID":"4825","NAMELSAD":"Congressional District 25","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19742159194,"AWATER":316389931,"INTPTLAT":"+31.5007907","INTPTLON":"-097.8159131"}},{"arcs":[[-1306,1322,-1257,1323,-1001,-1320,-1308]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"12","GEOID":"4812","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3732596186,"AWATER":86674036,"INTPTLAT":"+32.8211790","INTPTLON":"-097.6645106"}},{"arcs":[[-996,1324,-1316]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"34","GEOID":"4834","NAMELSAD":"Congressional District 34","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":21214043423,"AWATER":3364150775,"INTPTLAT":"+26.7738163","INTPTLON":"-097.9253663"}},{"arcs":[[-921,1325,-1321]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"31","GEOID":"4831","NAMELSAD":"Congressional District 31","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5579807939,"AWATER":136790956,"INTPTLAT":"+30.8288177","INTPTLON":"-097.5354116"}},{"arcs":[[-1305,-1261,1326,-1252,-1323]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"26","GEOID":"4826","NAMELSAD":"Congressional District 26","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2349631043,"AWATER":191542824,"INTPTLAT":"+33.1846148","INTPTLON":"-097.1341729"}},{"arcs":[[-1256,1327,-997,-1324]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"33","GEOID":"4833","NAMELSAD":"Congressional District 33","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":548947579,"AWATER":16596620,"INTPTLAT":"+32.7564438","INTPTLON":"-097.1069479"}},{"arcs":[[-1328,-1255,1328,1329,-998]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"30","GEOID":"4830","NAMELSAD":"Congressional District 30","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":922873505,"AWATER":32981424,"INTPTLAT":"+32.6586215","INTPTLON":"-096.7990089"}},{"arcs":[[1330,-1259,1331,-1329,-1254]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"32","GEOID":"4832","NAMELSAD":"Congressional District 32","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":484486531,"AWATER":31838376,"INTPTLAT":"+32.9203834","INTPTLON":"-096.6536360"}},{"arcs":[[-1327,-1260,-1331,-1253]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"03","GEOID":"4803","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1245609118,"AWATER":97780944,"INTPTLAT":"+33.1594063","INTPTLON":"-096.6130717"}},{"arcs":[[-1326,-920,1332,-1265,-1006,1333,-992,-1319,-1322]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"10","GEOID":"4810","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13135231447,"AWATER":185876901,"INTPTLAT":"+29.9766245","INTPTLON":"-096.5921553"}},{"arcs":[[-1258,-1019,1334,-918,-999,-1330,-1332]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"05","GEOID":"4805","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13064428483,"AWATER":494102314,"INTPTLAT":"+32.2257951","INTPTLON":"-095.7316676"}},{"arcs":[[-1005,1335,-1010,1336,-1013,-993,-1334]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"22","GEOID":"4822","NAMELSAD":"Congressional District 22","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":2677364772,"AWATER":60510841,"INTPTLAT":"+29.5107172","INTPTLON":"-095.6773946"}},{"arcs":[[-1335,-1018,1337,-1266,-1333,-919]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"08","GEOID":"4808","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":15680137801,"AWATER":412776273,"INTPTLAT":"+30.8332407","INTPTLON":"-095.5436034"}},{"arcs":[[-1004,-1268,-1263,-1011,-1336]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"09","GEOID":"4809","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":429172558,"AWATER":5210296,"INTPTLAT":"+29.6454702","INTPTLON":"-095.4942070"}},{"arcs":[[-1267,-1338,-1017,-560,-568,-1014,-1337,-1009]],"type":"Polygon","properties":{"STATEFP":"48","CD114FP":"36","GEOID":"4836","NAMELSAD":"Congressional District 36","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":18456322847,"AWATER":1241890366,"INTPTLAT":"+30.4291930","INTPTLON":"-094.4314897"}},{"arcs":[[1338,1339]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"26","GEOID":"3626","NAMELSAD":"Congressional District 26","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":567556897,"AWATER":35634220,"INTPTLAT":"+42.9618255","INTPTLON":"-078.8409831"}},{"arcs":[[1340,-1339,1341,1342,1343,1344]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"27","GEOID":"3627","NAMELSAD":"Congressional District 27","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":10290370344,"AWATER":3222844351,"INTPTLAT":"+43.0008504","INTPTLON":"-078.3168825"}},{"arcs":[[1345,-1345,1346,1347,-1142,-1116,-1104]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"23","GEOID":"3623","NAMELSAD":"Congressional District 23","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":19092559559,"AWATER":1602400181,"INTPTLAT":"+42.3442440","INTPTLON":"-077.8458079"}},{"arcs":[[1348,1349,-1343]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"25","GEOID":"3625","NAMELSAD":"Congressional District 25","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1321405516,"AWATER":1831736465,"INTPTLAT":"+43.3233952","INTPTLON":"-077.7154890"}},{"arcs":[[1350,1351,1352,-1347,-1344,-1350]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"24","GEOID":"3624","NAMELSAD":"Congressional District 24","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":6186436469,"AWATER":3271882478,"INTPTLAT":"+43.2103194","INTPTLON":"-076.6480936"}},{"arcs":[[-1353,1353,1354,-1143,-1348]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"22","GEOID":"3622","NAMELSAD":"Congressional District 22","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":13150575882,"AWATER":386910918,"INTPTLAT":"+42.8707006","INTPTLON":"-075.6626639"}},{"arcs":[[-130,1355,1356,1357,-1354,-1352,1358]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"21","GEOID":"3621","NAMELSAD":"Congressional District 21","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":39147329059,"AWATER":3339511976,"INTPTLAT":"+44.0083839","INTPTLON":"-074.6092313"}},{"arcs":[[-1358,1359,-1356,-129,-1218,1360,1361,-1144,-1355]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"19","GEOID":"3619","NAMELSAD":"Congressional District 19","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":20556949456,"AWATER":430653891,"INTPTLAT":"+42.2278105","INTPTLON":"-074.4256329"}},{"arcs":[[-1203,-1210,1362,1363,1364,1365,-1205]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"11","GEOID":"3611","NAMELSAD":"Congressional District 11","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":169861399,"AWATER":126902111,"INTPTLAT":"+40.5669743","INTPTLON":"-074.1263136"}},{"arcs":[[1366,1367,1368,-1190,-1145,-1362]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"18","GEOID":"3618","NAMELSAD":"Congressional District 18","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3505386191,"AWATER":162160235,"INTPTLAT":"+41.4116573","INTPTLON":"-074.0809815"}},{"arcs":[[-1213,1369,1370,1371,1372,-1363,-1209]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"10","GEOID":"3610","NAMELSAD":"Congressional District 10","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":36379646,"AWATER":23229782,"INTPTLAT":"+40.7030361","INTPTLON":"-074.0066780"}},{"arcs":[[-1357,-1360]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"20","GEOID":"3620","NAMELSAD":"Congressional District 20","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3189342922,"AWATER":81980459,"INTPTLAT":"+42.7488819","INTPTLON":"-073.9883663"}},{"arcs":[[1373,1374,1375,1376,1377,-1371]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"12","GEOID":"3612","NAMELSAD":"Congressional District 12","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":38311108,"AWATER":7282926,"INTPTLAT":"+40.7510262","INTPTLON":"-073.9504201"}},{"arcs":[[-1378,1378,1379,1380,1381,-1372]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"07","GEOID":"3607","NAMELSAD":"Congressional District 7","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":41806002,"AWATER":2675060,"INTPTLAT":"+40.6909783","INTPTLON":"-073.9106486"}},{"arcs":[[1382,-1364,-1373,-1382]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"09","GEOID":"3609","NAMELSAD":"Congressional District 9","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":40267196,"AWATER":502409,"INTPTLAT":"+40.6421839","INTPTLON":"-073.9472006"}},{"arcs":[[1383,1384,1385,-1374,-1370,-1212]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"13","GEOID":"3613","NAMELSAD":"Congressional District 13","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":26315652,"AWATER":7203614,"INTPTLAT":"+40.8388622","INTPTLON":"-073.9329821"}},{"arcs":[[-1369,1386,1387,-1191]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"17","GEOID":"3617","NAMELSAD":"Congressional District 17","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":990927520,"AWATER":149926159,"INTPTLAT":"+41.1595319","INTPTLON":"-073.9193555"}},{"arcs":[[-1383,-1381,1388,-1365]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"08","GEOID":"3608","NAMELSAD":"Congressional District 8","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":74744000,"AWATER":46974581,"INTPTLAT":"+40.6214380","INTPTLON":"-073.9110774"}},{"arcs":[[1389,-1375,-1386]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"15","GEOID":"3615","NAMELSAD":"Congressional District 15","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":37598152,"AWATER":6263939,"INTPTLAT":"+40.8240670","INTPTLON":"-073.8911572"}},{"arcs":[[-1390,-1385,1390,-1277,1391,-1376]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"14","GEOID":"3614","NAMELSAD":"Congressional District 14","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":73725753,"AWATER":39260843,"INTPTLAT":"+40.8097822","INTPTLON":"-073.8370035"}},{"arcs":[[-1392,-1276,1392,-1379,-1377]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"06","GEOID":"3606","NAMELSAD":"Congressional District 6","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":77166989,"AWATER":711425,"INTPTLAT":"+40.7348618","INTPTLON":"-073.8234555"}},{"arcs":[[-1389,-1380,-1393,-1275,1393,1394,-1206,-1366]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"05","GEOID":"3605","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":134524364,"AWATER":184532186,"INTPTLAT":"+40.5965625","INTPTLON":"-073.8272118"}},{"arcs":[[-1192,-1388,1395,-1269,-1391,-1384,-1211]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"16","GEOID":"3616","NAMELSAD":"Congressional District 16","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":202993290,"AWATER":76385505,"INTPTLAT":"+40.9397352","INTPTLON":"-073.7910880"}},{"arcs":[[-1274,1396,1397,-1394]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"04","GEOID":"3604","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":287194430,"AWATER":168289425,"INTPTLAT":"+40.6369483","INTPTLON":"-073.6059099"}},{"arcs":[[-1368,1398,1399,1400,-1270,-1396,-1387]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"04","GEOID":"0904","NAMELSAD":"Congressional District 4","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1193371808,"AWATER":214388570,"INTPTLAT":"+41.1968011","INTPTLON":"-073.3885143"}},{"arcs":[[1401,1402,-1397,-1273]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"02","GEOID":"3602","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":470635209,"AWATER":374797482,"INTPTLAT":"+40.6853292","INTPTLON":"-073.2884866"}},{"arcs":[[-1361,-1217,1403,1404,-1399,-1367]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"05","GEOID":"0905","NAMELSAD":"Congressional District 5","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":3232924723,"AWATER":87367292,"INTPTLAT":"+41.6943231","INTPTLON":"-073.2099985"}},{"arcs":[[-1405,1405,1406,1407,-1400]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"03","GEOID":"0903","NAMELSAD":"Congressional District 3","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1218123124,"AWATER":68645344,"INTPTLAT":"+41.3856882","INTPTLON":"-072.8773022"}},{"arcs":[[-1408,1408,1409,-1271,-1401]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"ZZ","GEOID":"09ZZ","NAMELSAD":"Congressional Districts not defined","LSAD":"00","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"F","ALAND":0,"AWATER":1095331974,"INTPTLAT":"+41.1666065","INTPTLON":"-072.8424645"}},{"arcs":[[-1216,1410,-1406,-1404]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"01","GEOID":"0901","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1749409154,"AWATER":51351303,"INTPTLAT":"+41.9284627","INTPTLON":"-073.0173833"}},{"arcs":[[-1410,1411,1412,1413,-1402,-1272]],"type":"Polygon","properties":{"STATEFP":"36","CD114FP":"01","GEOID":"3601","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1683486679,"AWATER":3359897981,"INTPTLAT":"+40.9838845","INTPTLON":"-072.5495221"}},{"arcs":[[-1215,-1225,1414,-1412,-1409,-1407,-1411]],"type":"Polygon","properties":{"STATEFP":"09","CD114FP":"02","GEOID":"0902","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":5148623217,"AWATER":297839616,"INTPTLAT":"+41.6536870","INTPTLON":"-072.2065086"}},{"arcs":[[[1415]],[[-1224,1416,1417,-1413,-1415]]],"type":"MultiPolygon","properties":{"STATEFP":"44","CD114FP":"02","GEOID":"4402","NAMELSAD":"Congressional District 2","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":1982354906,"AWATER":694777592,"INTPTLAT":"+41.5696012","INTPTLON":"-071.6155143"}},{"arcs":[[-1223,-1237,-134,1418,-1417]],"type":"Polygon","properties":{"STATEFP":"44","CD114FP":"01","GEOID":"4401","NAMELSAD":"Congressional District 1","LSAD":"C2","CDSESSN":"114","MTFCC":"G5200","FUNCSTAT":"N","ALAND":695404707,"AWATER":628696553,"INTPTLAT":"+41.6306771","INTPTLON":"-071.3286718"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment