Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active April 27, 2017 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarryStevens/3b2b47a50de220e901244c2ee54b0716 to your computer and use it in GitHub Desktop.
Save HarryStevens/3b2b47a50de220e901244c2ee54b0716 to your computer and use it in GitHub Desktop.
Contiguous Cartogram I
height: 530
license: gpl-3.0
(function(exports) {
/*
* d3.cartogram is a d3-friendly implementation of An Algorithm to Construct
* Continuous Area Cartograms:
*
* <http://chrisman.scg.ulaval.ca/G360/dougenik.pdf>
*
* It requires topojson to decode TopoJSON-encoded topologies:
*
* <http://github.com/mbostock/topojson/>
*
* Usage:
*
* var cartogram = d3.cartogram()
* .projection(d3.geo.albersUsa())
* .value(function(d) {
* return Math.random() * 100;
* });
* d3.json("path/to/topology.json", function(topology) {
* var features = cartogram(topology);
* d3.select("svg").selectAll("path")
* .data(features)
* .enter()
* .append("path")
* .attr("d", cartogram.path);
* });
*/
d3.cartogram = function() {
function carto(topology, geometries) {
// copy it first
topology = copy(topology);
// objects are projected into screen coordinates
var projectGeometry = projector(projection);
// project the arcs into screen space
var tf = transformer(topology.transform),
projectedArcs = topology.arcs.map(function(arc) {
var x = 0, y = 0;
return arc.map(function(coord) {
coord[0] = (x += coord[0]);
coord[1] = (y += coord[1]);
return projection(tf(coord));
});
});
// path with identity projection
var path = d3.geo.path()
.projection(ident);
var objects = object(projectedArcs, {type: "GeometryCollection", geometries: geometries})
.geometries.map(function(geom) {
return {
type: "Feature",
id: geom.id,
properties: properties.call(null, geom, topology),
geometry: geom
};
});
var values = objects.map(value),
totalValue = sum(values);
// no iterations; just return the features
if (iterations <= 0) {
return objects;
}
var i = 0,
targetSizeError = 1;
while (i++ < iterations) {
var areas = objects.map(path.area),
totalArea = sum(areas),
sizeErrors = [],
meta = objects.map(function(o, j) {
var area = Math.abs(areas[j]), // XXX: why do we have negative areas?
v = +values[j],
desired = totalArea * v / totalValue,
radius = Math.sqrt(area / Math.PI),
mass = Math.sqrt(desired / Math.PI) - radius,
sizeError = Math.max(area, desired) / Math.min(area, desired);
sizeErrors.push(sizeError);
// console.log(o.id, "@", j, "area:", area, "value:", v, "->", desired, radius, mass, sizeError);
return {
id: o.id,
area: area,
centroid: path.centroid(o),
value: v,
desired: desired,
radius: radius,
mass: mass,
sizeError: sizeError
};
});
var sizeError = mean(sizeErrors),
forceReductionFactor = 1 / (1 + sizeError);
// console.log("meta:", meta);
// console.log(" total area:", totalArea);
// console.log(" force reduction factor:", forceReductionFactor, "mean error:", sizeError);
projectedArcs.forEach(function(arc) {
arc.forEach(function(coord) {
// create an array of vectors: [x, y]
var vectors = meta.map(function(d) {
var centroid = d.centroid,
mass = d.mass,
radius = d.radius,
theta = angle(centroid, coord),
dist = distance(centroid, coord),
Fij = (dist > radius)
? mass * radius / dist
: mass *
(Math.pow(dist, 2) / Math.pow(radius, 2)) *
(4 - 3 * dist / radius);
return [
Fij * Math.cos(theta),
Fij * Math.sin(theta)
];
});
// using Fij and angles, calculate vector sum
var delta = vectors.reduce(function(a, b) {
return [
a[0] + b[0],
a[1] + b[1]
];
}, [0, 0]);
delta[0] *= forceReductionFactor;
delta[1] *= forceReductionFactor;
coord[0] += delta[0];
coord[1] += delta[1];
});
});
// break if we hit the target size error
if (sizeError <= targetSizeError) break;
}
return {
features: objects,
arcs: projectedArcs
};
}
var iterations = 8,
projection = d3.geo.albers(),
properties = function(id) {
return {};
},
value = function(d) {
return 1;
};
// for convenience
carto.path = d3.geo.path()
.projection(ident);
carto.iterations = function(i) {
if (arguments.length) {
iterations = i;
return carto;
} else {
return iterations;
}
};
carto.value = function(v) {
if (arguments.length) {
value = d3.functor(v);
return carto;
} else {
return value;
}
};
carto.projection = function(p) {
if (arguments.length) {
projection = p;
return carto;
} else {
return projection;
}
};
carto.feature = function(topology, geom) {
return {
type: "Feature",
id: geom.id,
properties: properties.call(null, geom, topology),
geometry: {
type: geom.type,
coordinates: topojson.object(topology, geom).coordinates
}
};
};
carto.features = function(topo, geometries) {
return geometries.map(function(f) {
return carto.feature(topo, f);
});
};
carto.properties = function(props) {
if (arguments.length) {
properties = d3.functor(props);
return carto;
} else {
return properties;
}
};
return carto;
};
var transformer = d3.cartogram.transformer = function(tf) {
var kx = tf.scale[0],
ky = tf.scale[1],
dx = tf.translate[0],
dy = tf.translate[1];
function transform(c) {
return [c[0] * kx + dx, c[1] * ky + dy];
}
transform.invert = function(c) {
return [(c[0] - dx) / kx, (c[1]- dy) / ky];
};
return transform;
};
function sum(numbers) {
var total = 0;
for (var i = numbers.length - 1; i-- > 0;) {
total += numbers[i];
}
return total;
}
function mean(numbers) {
return sum(numbers) / numbers.length;
}
function angle(a, b) {
return Math.atan2(b[1] - a[1], b[0] - a[0]);
}
function distance(a, b) {
var dx = b[0] - a[0],
dy = b[1] - a[1];
return Math.sqrt(dx * dx + dy * dy);
}
function projector(proj) {
var types = {
Point: proj,
LineString: function(coords) {
return coords.map(proj);
},
MultiLineString: function(arcs) {
return arcs.map(types.LineString);
},
Polygon: function(rings) {
return rings.map(types.LineString);
},
MultiPolygon: function(rings) {
return rings.map(types.Polygon);
}
};
return function(geom) {
return types[geom.type](geom.coordinates);
};
}
// identity projection
function ident(c) {
return c;
}
function copy(o) {
return (o instanceof Array)
? o.map(copy)
: (typeof o === "string" || typeof o === "number")
? o
: copyObject(o);
}
function copyObject(o) {
var obj = {};
for (var k in o) obj[k] = copy(o[k]);
return obj;
}
function object(arcs, o) {
function arc(i, points) {
if (points.length) points.pop();
for (var a = arcs[i < 0 ? ~i : i], k = 0, n = a.length; k < n; ++k) {
points.push(a[k]);
}
if (i < 0) reverse(points, n);
}
function line(arcs) {
var points = [];
for (var i = 0, n = arcs.length; i < n; ++i) arc(arcs[i], points);
return points;
}
function polygon(arcs) {
return arcs.map(line);
}
function geometry(o) {
o = Object.create(o);
o.coordinates = geometryType[o.type](o.arcs);
return o;
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs) { return arcs.map(polygon); }
};
return o.type === "GeometryCollection"
? (o = Object.create(o), o.geometries = o.geometries.map(geometry), o)
: geometry(o);
}
function reverse(array, n) {
var t, j = array.length, i = j - n; while (i < --j) t = array[i], array[i++] = array[j], array[j] = t;
}
})(this);
state_ut population_2011 sex_ratio
Uttar Pradesh 199281477 908
Maharashtra 112372972 946
Bihar 103804637 916
West Bengal 91347736 947
Madhya Pradesh 72597565 931
Tamil Nadu 72138958 995
Rajasthan 68621012 926
Karnataka 61130704 968
Gujarat 60383628 918
Andhra Pradesh 49386799 993
Odisha 41947358 978
Telangana 35286757 988
Kerala 33387677 1,084
Jharkhand 32966238 947
Assam 31169272 954
Punjab 27704236 893
Chhattisgarh 25540196 991
Haryana 25353081 877
Jammu & Kashmir 12548926 883
Uttarakhand 10116752 963
Himachal Pradesh 6864602 974
Tripura 3671032 961
Meghalaya 2964007 986
Manipur 2721756 987
Nagaland 1980602 931
Goa 1457723 968
Arunachal Pradesh 1382611 920
Mizoram 1091014 975
Sikkim 607688 889
NCT of Delhi 16753235 866
Puducherry 1244464 1,038
Chandigarh 1054686 818
Andaman & Nicobar Islands 379944 878
Dadra & Nagar Haveli 342853 775
Daman & Diu 242911 618
Lakshadweep 64429 946
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[94968,1888],[-22,-49],[15,-39],[34,-12],[43,10],[56,-53],[3,-77],[-13,-29],[28,-79],[-7,-114],[20,-19],[-20,-64],[6,-74],[60,-41],[9,-49],[33,-37],[-8,-53],[15,-60],[39,7],[71,-74],[-2,-51],[-46,24],[-10,34],[-53,-16],[-6,-41],[47,-30],[6,-57],[49,-83],[-58,10],[-63,-94],[25,-65],[-57,-24],[-15,-52],[19,-56],[-29,-43],[-2,-87],[45,-23],[16,-31],[-33,-49],[5,-23],[-57,-63],[-64,61],[-59,7],[-31,-56],[12,-41],[-51,-133],[-58,2],[-46,25],[3,88],[17,26],[-10,43],[-85,132],[28,40],[-18,37],[-29,-4],[-30,38],[15,56],[-8,52],[-33,13],[-6,77],[-52,-29],[-32,63],[37,20],[1,60],[-21,61],[-36,-8],[-13,74],[-55,58],[-44,-11],[-13,69],[-47,34],[-47,-4],[-49,105],[15,90],[-41,109],[8,38],[55,29],[-28,23],[-40,0],[0,38],[42,48],[29,1],[13,62],[-18,80],[63,59],[42,-9],[44,13],[41,-29],[49,25],[79,92],[40,-30],[54,35],[60,-49],[25,34],[5,67],[42,33],[102,12]],[[94466,2682],[26,-51],[5,-99],[49,-61],[81,-59],[2,-65],[-66,-61],[-11,-59],[-44,-74],[-91,-21],[-2,-15],[-76,-68],[-32,-84],[-59,-58],[-26,-5],[-65,97],[18,75],[-24,67],[31,59],[-17,151],[5,47],[62,-10],[51,51],[33,-32],[27,11],[17,44],[42,23],[47,4],[-7,195],[24,-2]],[[93243,4944],[53,-18],[39,-32],[-18,-64],[7,-44],[-30,-50],[70,-40],[65,26],[12,-37],[99,-86],[12,-77],[33,-87],[-47,-75],[-73,101],[-61,31],[-48,0],[-63,-22],[-35,-55],[-31,-15],[-98,36],[-20,34],[1,101],[-46,35],[-15,-46],[-39,31],[-4,43],[-28,73],[44,43],[13,104],[37,46],[66,-14],[60,47],[45,11]],[[93855,4957],[58,-5],[69,-127],[2,-82],[-11,-61],[-1,-84],[-23,-14],[-74,70],[-115,86],[-52,56],[84,93],[-2,60],[42,-29],[4,-37],[34,-20],[-15,94]],[[93975,5339],[37,-88],[8,-147],[24,-32],[5,-43],[-29,-24],[-75,115],[35,53],[-40,45],[9,53],[-39,54],[65,14]],[[93774,5760],[44,-9],[26,-36],[4,-58],[-30,-77],[-59,-50],[-42,-17],[-14,-106],[21,-9],[70,-130],[12,-38],[49,-28],[15,-57],[-17,-106],[-69,-1],[-8,-51],[-67,1],[-11,-66],[4,-60],[-54,-1],[-20,56],[-3,112],[53,-20],[57,75],[33,-2],[0,100],[-37,3],[-27,-42],[-80,-85],[-9,115],[-42,69],[-37,79],[-19,98],[-5,120],[84,40],[48,55],[4,80],[19,16],[107,30]],[[92697,5888],[53,-92],[5,-52],[-52,-14],[-61,85],[6,42],[49,31]],[[92299,6244],[19,-29],[38,-5],[-7,-66],[-35,-78],[5,-33],[-26,-95],[21,-43],[80,-89],[91,-50],[61,-22],[39,-41],[-10,-68],[-49,-12],[-115,51],[-91,51],[-46,15],[-71,87],[-4,27],[-57,91],[2,118],[34,66],[3,62],[38,37],[28,-7],[52,33]],[[91991,6696],[45,-41],[9,-77],[-53,2],[-33,50],[32,66]],[[94101,7102],[23,-59],[-8,-28],[13,-79],[51,-40],[-15,-66],[20,-31],[20,-115],[-50,6],[-35,42],[30,17],[-5,89],[-14,70],[-42,74],[12,120]],[[91068,9695],[87,-94],[25,-78],[0,-61],[25,-62],[-18,-97],[-36,-16],[-17,-36],[-37,-23],[-58,-5],[-49,30],[-59,3],[-91,-14],[-26,28],[-24,60],[6,106],[0,152],[12,28],[150,-15],[25,24],[26,100],[59,-30]],[[90045,16172],[74,-60],[74,-74],[-7,-76],[25,-63],[1,-92],[87,-64],[-14,-112],[0,-71],[23,-84],[31,-74],[-2,-75],[-66,-21],[-15,-30],[12,-54],[-41,-12],[-80,-88],[-22,-54],[18,-90],[69,-23],[18,-37],[-55,-76],[-36,-31],[-12,-50],[-36,-71],[-65,-24],[-52,-4],[-63,28],[-71,68],[-48,31],[-58,19],[-56,-1],[-64,-64],[-59,1],[-15,27],[46,56],[24,74],[35,43],[16,97],[23,31],[-39,114],[-59,84],[-43,4],[-8,103],[9,109],[-17,63],[13,96],[-17,32],[3,55],[67,-25],[46,23],[40,46],[31,84],[71,74],[47,29],[-10,69],[81,35],[52,74],[51,1],[43,30]],[[90741,17700],[-2,-97],[-44,24],[6,58],[40,15]],[[90502,18566],[10,-35],[96,-60],[24,-57],[-4,-35],[36,-102],[-50,-35],[-3,-45],[-49,-13],[15,-59],[34,-4],[76,-40],[-4,-60],[-97,-63],[-58,10],[-39,-39],[-68,11],[-80,-9],[-36,29],[-26,47],[42,51],[-16,83],[115,3],[18,25],[-1,129],[-47,66],[14,90],[20,63],[56,76],[22,-27]],[[90200,18675],[32,-41],[-26,-40],[-34,54],[28,27]],[[90384,18754],[39,-8],[-17,-85],[-33,11],[11,82]],[[90336,18691],[-32,-11],[-14,37],[18,50],[29,3],[-1,-79]],[[90391,18871],[27,-60],[-68,-22],[1,71],[40,11]],[[88977,18868],[43,18],[81,-10],[26,-19],[-7,-53],[6,-90],[17,-44],[-16,-53],[-33,-21],[-31,30],[-76,4],[-72,32],[-20,58],[29,86],[-27,56],[50,23],[30,-17]],[[90129,18930],[16,-44],[65,2],[4,-74],[-37,-44],[-57,1],[-22,32],[6,123],[25,4]],[[91944,19842],[118,31],[30,-40],[-50,-77],[-44,-2],[-96,64],[-22,6],[-5,67],[69,-49]],[[90923,20351],[38,-8],[5,-41],[-80,-36],[-34,27],[11,36],[60,22]],[[90328,20389],[23,-24],[31,-119],[-47,-41],[-7,184]],[[91733,20647],[89,-37],[42,-66],[-12,-61],[68,-134],[10,-58],[28,-11],[67,-176],[0,-31],[-31,-45],[-46,-4],[-25,23],[-14,50],[-59,106],[-41,46],[-78,32],[-52,127],[-44,16],[-50,-2],[-20,58],[82,52],[50,98],[36,17]],[[91796,20905],[50,-21],[-17,-70],[-10,-87],[7,-61],[-27,-14],[-45,40],[-21,43],[-38,14],[-12,53],[-5,92],[45,-8],[73,19]],[[92273,21058],[12,-31],[-31,-40],[-19,50],[38,21]],[[91693,21068],[105,-26],[33,-96],[-17,-25],[-48,-6],[-78,48],[-25,73],[30,32]],[[91934,21127],[-11,-97],[36,-66],[-14,-22],[9,-71],[56,-64],[14,-93],[-29,-57],[-74,97],[-65,20],[5,105],[-27,120],[20,54],[80,74]],[[92103,21301],[41,-58],[18,-72],[-19,-90],[36,-46],[-27,-50],[21,-65],[-32,-94],[-37,-19],[-32,54],[-50,49],[-27,69],[-31,21],[15,71],[59,161],[35,70],[30,-1]],[[91588,21356],[21,-30],[-57,-37],[6,58],[30,9]],[[90708,21416],[32,-41],[16,-72],[-7,-44],[15,-40],[-26,-38],[45,-12],[66,23],[83,-21],[-9,-95],[-74,-190],[2,-80],[21,-36],[41,-15],[6,-51],[66,-43],[17,-87],[-54,-12],[-57,59],[-38,-61],[38,-15],[10,-46],[51,-23],[-31,-66],[-69,9],[-40,-40],[-23,-46],[-10,-66],[29,-55],[10,-123],[-8,-75],[24,-32],[6,126],[52,108],[65,30],[75,-16],[10,-69],[-29,-86],[23,-54],[1,-62],[-38,-128],[-5,-82],[-20,-56],[-13,-182],[-18,-30],[-23,-103],[-46,-44],[11,-57],[-50,25],[-36,-3],[-22,30],[-49,-34],[-4,-93],[-34,-30],[-33,-56],[-57,12],[-11,-34],[29,-73],[95,89],[77,14],[-15,90],[18,34],[53,-32],[37,-4],[45,-42],[-3,-68],[-34,-17],[20,-41],[1,-92],[-30,-74],[-18,-77],[-35,-42],[18,-27],[-40,-80],[12,-53],[-57,-118],[-31,42],[-68,50],[-48,-33],[-92,70],[-10,82],[23,35],[-32,36],[17,46],[-51,31],[-45,-74],[-12,96],[-29,32],[-16,52],[11,52],[35,3],[67,-22],[34,66],[-42,11],[-28,-29],[-67,36],[-63,129],[26,35],[4,51],[-24,42],[9,30],[-76,20],[-7,-67],[-40,-19],[-37,114],[9,169],[-5,119],[-15,78],[-32,13],[5,60],[-21,13],[-42,-47],[-41,88],[32,80],[14,102],[43,33],[-13,32],[28,38],[51,27],[25,68],[43,-75],[27,-26],[23,-133],[23,48],[32,-11],[-2,-93],[33,-5],[3,167],[-22,38],[21,76],[5,60],[-2,197],[52,152],[-25,66],[22,165],[19,37],[27,105],[24,130],[68,161],[82,15],[18,54],[29,17]],[[90834,21425],[24,-44],[91,-6],[2,-82],[19,-26],[-19,-79],[-55,-3],[-101,37],[11,65],[-7,103],[35,35]],[[91460,21475],[18,-11],[32,-78],[-52,-12],[-33,19],[-38,-40],[-42,56],[13,40],[46,1],[56,25]],[[92121,21493],[25,-67],[54,-39],[6,-102],[-66,64],[-64,22],[-5,34],[20,82],[30,6]],[[90900,21606],[-26,-133],[-30,-1],[22,87],[34,47]],[[90967,21549],[-32,-19],[-19,49],[51,19],[0,-49]],[[95036,21632],[39,-61],[-19,-45],[-61,-10],[-35,26],[16,70],[60,20]],[[90765,21637],[39,-2],[-8,-63],[-32,-124],[-31,-10],[-16,118],[15,91],[33,-10]],[[91585,21683],[-7,-62],[36,-65],[-58,-95],[8,-52],[-36,-2],[15,84],[-33,56],[-37,17],[-7,47],[31,14],[72,-39],[-2,84],[18,13]],[[91182,21667],[110,4],[63,-15],[3,-48],[52,-14],[-17,-45],[3,-65],[-27,-26],[-62,-13],[10,-39],[39,-45],[5,-78],[23,-44],[-98,38],[-25,-25],[27,-100],[-26,-47],[-41,30],[-42,-1],[-11,-66],[-38,-81],[-5,-96],[-40,14],[-41,-24],[26,-28],[-8,-47],[-113,-73],[-23,41],[-47,3],[-15,22],[-1,67],[30,102],[38,98],[27,99],[16,101],[-20,36],[17,72],[-77,23],[-21,42],[29,109],[55,-37],[55,94],[-38,84],[56,6],[43,-28],[51,37],[58,-37]],[[91308,22067],[49,-3],[66,-52],[-104,-50],[-9,36],[-59,27],[6,40],[51,2]],[[91664,22158],[18,-31],[-32,-53],[-33,-25],[-4,-78],[-33,-82],[-53,17],[-1,42],[34,43],[-12,21],[13,67],[35,46],[68,33]],[[90623,22596],[37,-11],[-28,-64],[-31,49],[22,26]],[[90756,23717],[9,-40],[3,-131],[-6,-31],[47,-87],[-22,-13],[3,-114],[-39,35],[14,23],[-11,132],[-38,58],[5,108],[35,60]],[[90825,23855],[-36,-108],[-26,33],[24,70],[38,5]],[[91064,24044],[18,-71],[-20,-10],[-66,49],[19,25],[49,7]],[[91454,24056],[27,-5],[13,-69],[68,-50],[4,-97],[25,-20],[29,-106],[36,-75],[-19,-61],[-55,-44],[1,-28],[104,-80],[24,-52],[-16,-37],[17,-43],[-15,-58],[-7,-169],[-21,-76],[6,-89],[-6,-101],[16,-66],[28,-54],[24,-82],[-38,-143],[11,-31],[-36,-39],[-33,46],[-31,-51],[-41,-25],[17,-33],[70,21],[-43,-103],[-71,-28],[-8,-63],[-79,-38],[-47,21],[-46,-19],[-36,36],[-66,-12],[-34,25],[-32,-15],[35,-109],[129,-177],[30,12],[-3,-83],[26,-11],[-34,-70],[-29,13],[-64,-14],[-19,-21],[-66,-14],[-72,39],[-59,-34],[-19,25],[-68,16],[-56,-78],[-50,22],[-85,6],[-35,24],[-37,95],[-2,128],[15,18],[-27,75],[12,65],[-6,93],[30,74],[-22,75],[8,63],[23,27],[-27,32],[-23,73],[18,28],[-3,50],[33,61],[-10,37],[13,46],[-30,94],[42,90],[89,65],[-13,52],[41,53],[31,17],[116,-27],[21,43],[-10,60],[-33,-21],[-27,-47],[-64,8],[-34,-14],[-52,101],[39,21],[4,73],[-9,64],[-31,54],[-35,142],[10,153],[65,37],[48,45],[52,16],[2,38],[45,-11],[44,20],[-7,97],[46,32],[71,-5],[31,-45],[32,25],[12,-24],[-9,-32],[14,-6],[107,23],[0,48],[48,1],[37,20],[11,67]],[[91371,24121],[-16,-64],[-47,38],[7,31],[56,-5]],[[90703,24352],[49,-8],[40,-42],[-10,-93],[15,-32],[-7,-133],[11,-29],[-11,-121],[-20,-46],[-41,-42],[-5,-40],[-50,-28],[3,-65],[-42,-33],[-30,-81],[-24,21],[9,69],[-17,65],[-37,70],[-9,62],[61,79],[19,87],[2,74],[32,91],[-44,27],[10,42],[52,91],[44,15]],[[91851,24373],[-51,-44],[-46,-74],[4,-132],[-36,40],[0,48],[-45,1],[13,51],[-38,42],[25,35],[49,-73],[75,84],[50,22]],[[91556,24477],[47,8],[-1,-60],[20,-48],[-87,10],[-21,49],[42,41]],[[90779,24767],[-62,-98],[-15,66],[77,32]],[[91921,25659],[-4,-82],[-35,14],[11,80],[28,-12]],[[91248,26105],[10,-35],[-43,-45],[-47,7],[2,52],[78,21]],[[96531,26116],[-41,-29],[-50,27],[24,74],[25,20],[60,7],[-18,-99]],[[91939,26616],[30,-83],[11,-63],[7,-114],[-29,-133],[-24,-36],[25,-75],[-9,-63],[56,-81],[39,-18],[-25,-40],[72,-168],[69,-45],[-55,-29],[-20,-84],[-34,40],[-76,19],[0,112],[-54,-9],[-83,22],[-87,-74],[-14,60],[-34,42],[-24,-14],[-27,-98],[41,-32],[55,-2],[24,-23],[70,0],[33,-45],[12,-58],[-13,-60],[64,19],[63,-8],[-25,-42],[20,-37],[43,-28],[-7,-75],[-50,-38],[8,-42],[-35,-85],[-11,-49],[18,-32],[-10,-57],[12,-59],[-20,-59],[8,-171],[-53,-118],[-23,-6],[-25,-68],[-41,14],[-43,-35],[-50,23],[-59,-52],[-12,40],[-60,51],[25,79],[-58,-3],[-37,-28],[-47,-136],[18,-77],[29,-3],[9,-50],[31,12],[43,-67],[-44,-57],[-62,16],[-15,55],[6,39],[-57,19],[-32,-28],[-7,-54],[-23,-17],[5,-70],[-30,-52],[-38,4],[-16,-35],[20,-94],[45,-12],[3,-64],[-61,-17],[-54,-4],[9,30],[0,20],[-16,9],[-33,-24],[-15,35],[-59,19],[-32,-1],[-27,59],[25,130],[-32,14],[-2,51],[22,27],[-12,60],[69,-16],[-12,58],[33,11],[10,42],[-85,-7],[-39,29],[31,132],[-13,28],[24,95],[22,10],[8,57],[44,14],[-34,93],[59,11],[59,-10],[9,56],[-44,28],[-70,16],[8,65],[40,18],[-20,35],[-4,71],[33,30],[-5,111],[14,21],[68,-13],[15,74],[-62,12],[-55,60],[71,97],[-47,41],[-8,67],[29,33],[-4,59],[22,88],[37,-22],[36,62],[-57,29],[12,70],[42,-8],[25,-30],[30,52],[-9,44],[48,15],[-6,46],[-28,19],[5,55],[-15,45],[113,37],[3,59],[79,-2],[19,25],[-26,39],[10,32],[-42,21],[11,38],[53,14],[61,-7],[13,21],[56,-2],[32,-58],[56,5],[6,26],[-41,66],[21,67],[57,-34],[43,-50],[11,91],[50,0]],[[91889,27022],[32,-58],[3,-56],[20,-45],[-27,-28],[-59,77],[-30,9],[-52,-26],[-34,48],[20,40],[57,7],[70,32]],[[48877,37406],[-248,-106],[-65,-44],[-126,-66],[-18,30],[33,38],[-43,60],[35,20],[34,-17],[49,21],[94,13],[-10,-41],[110,51],[63,42],[92,-1]],[[61366,48133],[-49,-99],[-44,15],[-58,-28],[-18,-52],[35,-27],[-3,-37],[-52,-45],[-94,-159],[-87,-90],[-133,-117],[-129,-163],[-62,-30],[-5,-94],[-31,-25],[-40,-114],[-20,-82],[-143,-118],[-86,-87],[-100,-131],[-45,-48],[-63,-93],[-1,-55],[-91,-54],[-31,-46],[-91,-93],[-62,-95],[-104,-10],[0,-60],[-48,13],[-42,-29],[-5,-49],[-72,-41],[-55,-49],[20,-25],[48,53],[41,25],[79,22],[71,52],[17,-11],[-246,-209],[-81,-77],[-38,-48],[-107,-83],[-82,-93],[-91,-89],[-94,-103],[-53,-74],[-68,2],[-89,-18],[-27,-20],[-90,-18],[-79,33],[-74,16],[-86,43],[-12,-38],[132,-39],[110,-57],[53,4],[68,39],[76,17],[57,-34],[-4,-74],[-29,-47],[-159,-87],[-64,-60],[-191,-76],[-109,-53],[-84,-65],[-42,11],[-40,33],[-18,-34],[20,-31],[-129,-43],[-61,-38],[-44,-65],[-343,-125],[-141,-81],[-131,-64],[-41,-39],[-65,-36],[-24,-39],[-140,-81],[-95,-72],[-64,-72],[-111,-10],[33,-40],[-19,-114],[-25,-41],[-140,-108],[-154,-95],[-108,35],[34,-107],[-5,-47],[-56,-63],[-55,-42],[-34,-46],[19,-98],[-12,-35],[-103,-103],[-38,-52],[-73,-48],[-42,-88],[-2,-45],[-61,-55],[-57,-21],[-56,-47],[-18,-75],[-41,-56],[-86,-53],[-70,-68],[-50,13],[-46,70],[-64,-33],[-3,-45],[130,-72],[-56,-72],[-161,-87],[-20,-28],[-106,-52],[-125,-31],[-24,32],[-51,-66],[-45,-22],[-107,-32],[-68,-34],[-71,-51],[-9,-49],[-44,-45],[-177,-69],[-134,-75],[-160,-73],[-94,-61],[-113,-38],[-209,-92],[-167,-93],[-102,-68],[-187,-101],[-96,-66],[-162,-102],[-131,-105],[-62,-65],[-168,-146],[-63,-43],[-132,-147],[-40,-30],[-104,-99],[-62,-77],[-66,-57],[-130,-137],[-65,-112],[-18,-96],[-47,-156],[-48,4],[-16,-137],[9,-38],[41,-14],[16,-46],[59,-41],[78,-17],[45,-67],[41,44],[93,-7],[19,-29],[-10,-42],[38,-19],[8,158],[-3,240],[-44,106],[-53,41],[42,27],[61,-129],[16,-67],[13,-168],[0,-144],[-99,-359],[9,-106],[-24,-10],[-54,30],[-37,-16],[32,-38],[51,-20],[-10,-83],[61,15],[8,50],[34,-13],[-59,-85],[-63,-51],[-41,-63],[40,-104],[-73,6],[-16,-75],[-40,11],[-14,-45],[32,-25],[-23,-82],[-104,-26],[39,-36],[107,21],[13,-20],[-92,-26],[-114,-14],[-100,-42],[-107,-69],[-68,-53],[-88,-34],[29,50],[7,55],[114,147],[-9,25],[-64,-15],[-59,-44],[-36,-72],[-42,-54],[-18,-129],[-127,-59],[-128,-76],[-230,-105],[-147,-105],[-18,46],[25,97],[-47,-27],[-24,-107],[-44,-28],[-106,-17],[-167,-58],[-37,-6],[-172,-89],[-115,-70],[-99,-51],[-91,-36],[-10,21],[43,116],[0,54],[-36,-3],[-2,-92],[-20,-19],[-11,-59],[-27,-37],[-26,9],[-6,54],[-62,36],[-122,39],[-213,15],[-74,24],[0,33],[-59,111],[-9,-97],[-95,-36],[-52,3],[-111,-20],[-190,-17],[-106,-21],[-5,36],[-47,25],[40,32],[29,-18],[-3,99],[-31,-15],[-67,-71],[-51,-13],[-77,38],[-61,-5],[-70,-20],[-30,-41],[43,-41],[-105,-56],[-107,-19],[-47,-69],[74,-28],[-9,-60],[11,-45],[-161,-158],[-41,-86],[-4,-46],[-39,-115],[-55,-310],[-15,-33],[-74,-100],[-49,-121],[0,-103],[19,-71],[-36,-1],[-51,31],[-58,81],[-37,-16],[134,-148],[-138,-97],[-86,-49],[-60,-61],[-66,-43],[-40,-68],[-80,-103],[-62,-114],[15,-94],[42,-96],[-16,-51],[-60,62],[-155,129],[-34,-16],[73,-52],[25,-39],[84,-73],[-7,-39],[-100,-76],[-54,-30],[-28,4],[-104,100],[-55,69],[-29,64],[-48,71],[-10,52],[-39,-32],[56,-71],[57,-129],[73,-78],[14,-54],[-136,-19],[-63,-22],[-40,-35],[-43,-4],[-55,26],[-49,-2],[-25,28],[13,54],[-12,43],[39,50],[-9,49],[2,96],[11,57],[-30,102],[-97,108],[-95,67],[-94,23],[-145,-11],[-84,-17],[-103,-2],[-131,-43],[-97,-4],[-142,-59],[24,39],[-129,-13],[33,-47],[-122,-73],[-203,-89],[-152,-82],[-121,-77],[-54,-45],[-91,-111],[-36,-27],[-86,-107],[-37,-29],[-66,-124],[-30,-41],[-45,-100],[-21,-118],[-38,-144],[-62,1],[-41,44],[-75,57],[-23,-47],[-124,-11],[17,-33],[115,12],[52,26],[20,-33],[81,-63],[-3,-63],[-29,-75],[22,-19],[-28,-40],[-21,-87],[-46,-50],[-114,-171],[-85,-99],[-80,-134],[-33,-79],[-33,-136],[-27,-52],[-16,-80],[11,-94],[18,-68],[-13,-80],[-46,-8],[8,-45],[-32,-71],[-21,-105],[-30,-94],[-16,-152],[-4,-95],[9,-106],[20,-88],[36,-50],[39,-242],[44,-191],[28,-193],[-67,-37],[6,-32],[52,-33],[19,-82],[67,-181],[59,-76],[14,-72],[-50,-20],[33,-33],[37,47],[23,-10],[32,-79],[21,-136],[44,-118],[38,-40],[-6,-50],[-123,-59],[-107,-79],[-40,-13],[-51,-39],[81,-18],[55,63],[48,38],[101,43],[89,-11],[-14,-53],[-14,-143],[-20,-132],[-9,-150],[-23,-262],[0,-109],[-80,-184],[-27,-127],[7,-49],[-32,-27],[1,-39],[-33,-207],[1,-138],[61,-364],[31,-123],[-36,-27],[55,-96],[39,-2],[113,-309],[60,-152],[85,-188],[-2,-71],[23,-11],[17,-66],[-5,-116],[-31,-166],[-16,-128],[5,-108],[28,-144],[43,-113],[51,-105]],[[44717,26584],[-18,-10],[-42,-214],[-43,-147],[-61,60],[-169,18],[-119,25],[-3,36],[-124,17],[-9,-63],[-112,-3],[-2,135],[35,44],[-16,39],[-80,-13],[-21,-34],[-103,12],[-37,29],[-66,-22],[2,-65],[59,19],[48,-52],[66,-9],[-3,-58],[-112,13],[-120,-80],[-43,-63],[-3,-92],[8,-38],[-45,-38],[-56,5],[-13,-20],[12,-76],[55,-11],[12,-31],[-50,-63],[-54,-86],[-55,30],[-25,-41],[-123,-84],[-44,8],[-28,-41],[-101,-4],[-88,7],[-48,-76],[-27,-10],[-96,80],[-29,-89],[-92,-30],[2,-26],[115,-85],[113,-61],[0,-40],[-36,-1],[-108,-89],[-23,13],[-21,65],[-52,30],[-10,-32],[-60,-46],[-38,33],[24,49],[-15,58],[-41,-40],[-36,29],[10,44],[39,38],[-19,49],[-40,49],[-22,-54],[-34,25],[-77,-4],[-11,-49],[-33,-8],[-72,34],[-46,-29],[-12,-52],[-75,9],[-39,38],[-50,77],[-21,126],[-48,18],[-92,-4],[-69,26],[-91,11],[-139,-10],[-158,-74],[41,-33],[73,-36],[61,5],[-10,-79],[-25,-34],[-18,-78],[13,-99],[93,69],[35,-51],[-88,-32],[-4,-94],[-84,7],[-50,-7],[-57,-33],[7,-30],[-36,-49],[-49,27],[-4,-109],[12,-37],[-123,-24],[-33,-88],[-38,2],[4,68],[-51,31],[-41,-7],[-10,66],[-55,-6],[-34,45],[-14,-57],[-25,-26],[-38,31],[-44,-28],[29,-45],[-30,-75],[-25,-21],[-52,-7],[-47,-88],[-42,-55],[27,-58],[-22,-88],[-66,-33],[-41,10],[-83,50],[-56,6],[-80,-46],[-50,6],[-56,55],[-3,38],[-102,45],[-11,27],[-83,5],[-70,72],[-69,-19],[-14,-24],[-50,-7],[-34,25],[-24,-15],[-58,6],[-21,-67],[-29,6],[-28,-66],[41,-16],[48,6],[38,-36],[-169,-14],[-10,22],[4,172],[11,48],[-69,11],[-24,-53],[-97,-6],[-116,23],[-86,-88],[-141,-30],[-52,28],[-86,13],[-32,-202],[-158,53],[-35,-64],[-78,-75],[-1,-33],[66,-76],[-33,-6],[65,-132],[-81,-19],[-69,-159],[-6,-63],[-48,-74],[23,-107],[-35,-25],[6,-48],[-27,-28],[-9,-70],[-81,-61],[-46,-90],[31,-10],[-31,-73],[25,-40],[-41,-47],[-63,-21],[-31,93],[-80,104],[-55,-1],[52,-74],[57,-24],[-59,-44],[2,-94],[-18,-24],[-54,-17],[-61,12],[8,-175],[-129,-10],[-24,22],[-69,-28],[-117,-6],[-29,12],[-115,91],[-26,-5],[-51,50],[-68,11],[-23,58],[-74,94],[-94,2],[-43,-12],[3,-61],[-104,7],[-39,31],[19,46],[95,31],[31,66],[-35,105],[5,22]],[[37175,23458],[32,36],[46,197],[-3,137],[47,8],[33,28],[48,-29],[102,-7],[3,72],[65,-11],[0,34],[-39,8],[20,74],[40,-13],[41,67],[9,72],[17,12],[87,-102],[36,-26],[37,41],[54,-56],[53,-8],[34,51],[35,-6],[10,-81],[68,-54],[-3,105],[-112,94],[-33,12],[-26,-53],[-33,102],[35,20],[49,65],[-5,55],[41,1],[90,-21],[13,62],[-22,42],[-19,97],[4,65],[35,2],[23,36],[77,33],[62,12],[-23,67],[13,46],[44,12],[8,63],[-27,73],[47,37],[52,7],[-11,44],[23,37],[71,3],[41,16],[-13,60],[-46,68],[57,59],[-42,30],[10,83],[45,60],[20,52],[-39,38],[-26,84],[-48,-80],[-68,12],[-30,-79],[-32,17],[-40,67],[-115,65],[-15,63],[-112,-46],[-26,73],[-51,0],[-89,-53],[-31,41],[-59,23],[3,33],[101,-23],[8,38],[-51,39],[-57,23],[-44,-6],[-4,32],[50,97],[9,44],[-22,130],[-10,108],[17,58],[0,110],[21,67],[46,76],[2,48],[43,86],[-26,47],[-38,12],[-136,-14],[-116,22],[-77,-18],[-98,-3],[-58,-15],[-81,50],[-19,-39],[-53,18],[-22,-54],[-50,-45],[-33,30],[-2,58],[52,62],[1,83],[-30,19],[-94,9],[-6,85],[-47,17],[-144,-10],[-99,-46],[-3,58],[-52,55],[-7,93],[78,-29],[75,14],[15,101],[-91,91],[39,65],[58,45],[26,59],[-39,104],[36,71],[-14,75],[-28,49],[-116,5],[-15,67],[-110,57],[7,-89],[-19,-43],[-83,6],[-40,28],[-73,0],[-14,-50],[-57,-112],[-66,18],[-23,180],[28,53],[82,16],[24,19],[-17,120],[19,91],[-65,9],[-39,-86],[-44,-13],[-33,-61],[-37,-40],[-31,-6],[-81,55],[-10,78],[-91,-18],[-120,1],[-59,15],[-29,-52],[17,-89],[37,-22],[24,-68],[1,-43],[-62,-34],[-30,-44],[-61,-3],[-45,-32],[23,-46],[-41,-45],[-152,-27],[-57,-44],[5,-116],[-12,-90],[-33,-26],[-24,119],[-101,-36],[7,98],[-79,-6],[-129,-61],[-6,-53],[78,-21],[12,-24],[-79,-27],[-42,56],[-32,3],[-52,-50],[-56,-5],[-39,-51],[-29,16],[-32,91],[-74,0],[-17,-27],[43,-46],[5,-71],[-24,-74],[-50,3],[-19,61],[-58,9],[-28,-14],[20,-64],[-32,-36],[-99,-7],[-18,78],[44,66],[5,69],[16,52],[-14,24],[-30,139],[18,56],[-56,9],[-44,-55],[-44,11],[-30,32],[15,49],[44,59],[0,32],[-77,-14],[-115,-1],[1,27],[-51,29],[-27,-5],[-92,-77],[-27,4],[-15,55],[-34,68],[-79,-44],[-130,-26],[9,65],[-34,16],[-19,83],[5,49],[-54,6],[-32,-103],[-30,36],[-60,-87],[-65,20],[26,156],[-19,63],[-65,-35],[-13,-34],[33,-131],[-9,-36],[-86,8],[-52,-63],[76,-31],[45,-37],[15,-39],[-29,-58],[17,-53],[47,-58],[-17,-68],[-108,3],[-52,-18],[-105,38],[-55,-29],[1,-62],[-77,5],[-92,119],[-57,2],[-31,-145],[-70,38],[-2,27],[-40,142],[17,28],[-8,44],[-56,23],[11,34],[46,35],[8,44],[29,-1],[44,44],[42,169],[89,16],[-20,110],[-64,36],[-39,49],[-71,36],[19,97],[-71,58],[-99,40],[-29,54],[-36,8],[26,97],[124,19],[13,50],[-26,57],[-62,22],[-31,103],[-76,67],[-37,-27],[-107,34],[28,110],[20,11],[76,-16],[21,22],[52,10],[18,91],[62,-54],[103,-11],[74,9],[51,-8],[-22,-177],[10,-83],[-23,-55],[51,-34],[-14,-85],[13,-32],[168,-24],[2,-30],[79,-4],[112,15],[26,-92],[23,-35],[1,-45],[74,-29],[63,71],[86,-23],[90,20],[88,-6],[49,57],[59,28],[26,-82],[51,29],[42,48],[37,-7],[13,-37],[61,-107],[75,-22],[-37,-122],[70,-34],[-74,-117],[22,-61],[156,4],[24,-67],[82,57],[31,56],[-64,20],[-9,84],[77,29],[8,99],[-38,31],[-126,-11],[-40,-19],[-10,49],[38,100],[-78,34],[-46,1],[-88,26],[43,120],[45,-1],[42,49],[41,23],[27,72],[58,51],[-21,59],[-138,-52],[-18,74],[107,21],[22,71],[26,23],[1,45],[74,18],[51,-18],[148,-3],[93,-44],[45,-8],[36,82],[-23,34],[-16,93],[-25,37],[-11,53],[23,50],[11,79],[-11,43],[-45,14],[-19,33],[-91,-45],[-41,21],[-5,125],[-55,-19],[-6,62],[-115,33],[-59,-47],[-19,-47],[4,-39],[56,-132],[41,-3],[30,-144],[21,-25],[1,-54],[-88,-49],[-27,4],[-27,97],[-79,52],[14,53],[0,100],[-237,28],[-59,-2],[12,102],[-6,113],[-86,-22],[-48,-43],[-48,-14],[-34,15],[-99,-2],[-62,46],[-57,16],[-45,29],[-75,-28],[-3,-66],[-19,-48],[-52,-54],[-18,-101],[32,-19],[-21,-138],[-54,-47],[-74,-1],[-56,58],[-40,60],[-61,3],[-108,-35],[-80,26],[-115,-16],[-51,23],[-44,95],[-4,30],[88,57],[6,29],[-27,44],[-74,17],[-89,37],[-76,125],[16,152],[51,16],[61,75],[105,-55],[12,37],[-4,141],[55,1],[58,98],[-3,31],[-104,15],[-144,7],[-46,-13],[-51,-40],[-38,-8],[-24,24],[-35,95],[-39,40],[-164,72],[-50,99],[-30,102],[-64,66],[38,303],[36,65],[17,65],[46,107],[-37,67],[-29,107],[114,9],[57,22],[27,-9],[13,76],[36,-8],[-25,109],[34,33],[9,93],[-21,109],[52,3],[19,181],[-3,103],[-87,-11],[-49,-39],[-46,49],[-69,-3],[-123,27],[-25,51],[30,24],[16,45],[38,20],[18,42],[-14,69],[-36,77],[5,43],[90,101],[91,-62],[60,-10],[86,-61],[60,-109],[44,12],[92,-3],[138,-25],[60,-44],[56,-11],[6,39],[64,36],[83,-7],[88,6],[7,-21],[-28,-72],[140,-21],[12,87],[32,21],[70,4],[24,45],[35,109],[8,100],[74,53],[24,52],[-5,43],[-65,17],[6,52],[77,-1],[25,76],[-23,99],[-63,94],[-76,12],[10,48],[34,5],[28,66],[93,-2],[-64,78],[-1,57],[-120,16],[-8,114],[-14,32],[-150,-31],[-28,10],[5,62],[-76,56],[-17,26],[22,97],[-11,30],[-46,38],[9,67],[-13,66],[-80,50],[-37,75],[-74,57],[-21,35],[5,60],[90,-26],[35,12],[78,-11],[9,98],[-20,200],[19,86],[-6,121],[155,45],[46,47],[54,-34],[75,-74],[33,133],[-90,77],[-92,46],[21,18],[10,53],[-30,5],[0,44],[-108,13],[-15,37],[13,66],[58,106],[18,69],[-21,7],[9,98],[-133,10],[-22,24],[41,83],[71,91],[50,90],[40,40],[103,58],[94,23],[50,40],[102,19],[36,18],[83,0],[123,11],[48,19],[53,-24],[71,-16],[66,12],[54,-20],[144,-6],[84,-40],[61,13],[56,-4],[69,26],[151,-57],[112,-5],[45,-21]],[[34520,35813],[147,-28],[84,-5],[62,-21],[67,19],[72,-49],[51,-62],[72,-26],[91,-10],[121,49],[125,-41],[38,3],[70,-29],[75,-15],[129,40],[81,1],[42,65],[77,14],[73,-43],[77,-33],[166,-9],[77,-51],[30,-7],[56,141],[44,29],[41,-18],[3,-101],[30,-5],[55,-102],[139,-65],[32,-3],[64,30],[-4,55],[144,0],[22,69],[40,82],[-5,50],[94,65],[83,25],[56,53],[20,122],[42,103],[-31,121],[62,36],[89,-25],[89,3],[56,70],[34,22],[110,28],[52,47],[80,36],[56,7],[112,-7],[165,-30],[138,-42],[52,-24],[46,1],[64,54],[100,102],[50,10],[72,-29],[79,-78],[40,-61],[67,-60],[101,-53],[94,-22],[133,10],[122,89],[51,62],[55,98],[14,61],[-24,67],[-12,86],[5,37],[53,31],[38,-4],[36,-57],[24,-132],[61,-45],[45,-3],[34,29],[42,65],[-4,46],[-56,122],[9,102],[64,44],[125,59],[123,43],[103,62],[83,3],[97,-26],[201,-1],[148,-68],[51,-12],[115,53],[64,75],[18,196],[-8,143],[-17,52],[-43,49],[4,121],[24,173],[27,56],[36,23],[-4,48],[-41,83],[4,63],[19,43],[113,106],[20,59],[107,23],[91,33],[96,15],[212,4],[88,8],[61,44],[28,60],[173,84],[55,12],[91,-8],[100,25],[81,52],[53,47],[63,5],[61,-14],[54,4],[28,47],[102,64],[147,9],[41,21],[62,87],[90,36],[32,-18],[99,-134],[58,4],[133,27],[43,-37],[27,-49],[38,-104],[42,-45],[80,-28],[70,8],[57,36],[55,69],[69,129],[93,75],[59,78],[56,52],[14,102],[23,41],[44,124],[-103,48],[-28,51],[-5,52],[-71,2],[-82,40],[12,55],[54,117],[102,114],[32,112],[142,-8],[13,95],[67,-24],[53,22],[51,-6],[32,63],[91,87],[56,83],[45,-10],[5,-95],[21,-19],[61,25],[53,-57],[33,-8],[78,30],[100,-131],[46,-82],[24,-125],[20,-46],[22,-160],[67,-15],[-9,-44],[88,-3],[53,-171],[24,33],[55,22],[18,25],[2,71],[70,-29],[16,-51],[110,-54],[14,-98],[55,-7],[68,-49],[106,-27],[44,5],[122,-28],[24,31],[104,56],[1,27],[-44,57],[-116,71],[29,45],[9,127],[81,19],[-17,114],[26,16],[-19,75],[-54,2],[-140,90],[-41,-53],[-109,45],[-21,-82],[-32,-23],[-127,92],[-167,47],[-138,53],[35,48],[5,50],[57,28],[8,44],[-40,36],[2,42],[-43,87],[86,77],[18,5],[22,-91],[50,-48],[23,-66],[95,-31],[25,79],[69,4],[48,71],[8,104],[36,71],[121,49],[73,39],[42,56],[49,-11],[80,-61],[66,-11],[62,-26],[-16,-32],[78,-28],[33,-41],[-65,-47],[-14,-51],[57,-17],[97,26],[31,30],[155,-16],[77,-38],[144,-28],[28,-18],[112,-20],[34,-47],[46,28],[52,70],[-9,69],[23,50],[6,56],[-34,61],[43,51],[13,85],[69,-20],[56,0],[34,19],[6,93],[-24,32],[-11,91],[31,15],[62,-1],[94,-65],[108,-34],[75,20],[77,8],[66,70],[9,36],[58,-37],[83,37],[125,43],[101,27],[64,4],[65,86],[-35,47],[3,151],[36,66],[32,20],[106,-22],[143,4],[36,-10],[81,68],[46,87],[77,114],[30,12],[46,-26],[26,-66],[81,-44],[50,-8],[112,26],[17,41],[50,11],[29,26],[58,93],[56,55],[78,114],[9,45],[-8,65],[17,51],[-1,78],[12,114],[84,130],[-78,67],[33,78],[82,80],[38,58],[34,83],[65,83],[7,120],[33,47],[101,51],[51,75],[70,11],[121,6],[38,13],[49,55],[22,59],[94,77],[35,9],[52,-13],[40,45],[69,8],[44,48],[-6,32],[-42,71],[-47,31],[-39,57]],[[50257,43529],[103,80],[55,87],[120,59],[50,-1],[194,69],[53,45],[83,16],[58,31],[185,124],[11,41],[-12,41],[86,51],[76,-48],[54,-1],[4,34],[42,46],[74,-50],[58,5],[79,-21],[12,-51],[55,19],[61,5],[49,-81],[1,-40],[73,-8],[78,-56],[70,-8],[17,-48],[43,2],[52,24],[13,95],[-17,58],[-30,36],[33,52],[77,48],[61,-81],[65,41],[29,-38],[24,26],[26,81],[0,57],[-41,45],[-7,97],[19,32],[-8,59],[90,-67],[28,57],[-61,86],[-58,6],[-84,44],[-16,82],[51,21],[48,57],[-43,26],[33,35],[25,136],[25,21],[87,-2],[56,52],[19,63],[21,23],[-33,48],[-70,-9],[-27,-32],[-56,-4],[-31,38],[40,19],[41,46],[14,39],[60,38],[30,74],[-34,42],[-11,58],[-41,46],[60,47],[73,116],[109,99],[38,79],[61,77],[76,78],[27,-85],[62,-35],[34,8],[59,-16],[16,-140],[-42,-48],[49,-50],[3,-34],[65,29],[22,-16],[-32,-79],[-34,-35],[-3,-73],[53,-24],[25,20],[53,-17],[25,-27],[44,0],[43,-44],[-8,-46],[37,-11],[-3,-38],[-42,-3],[28,-80],[-53,-3],[-49,-50],[42,-18],[12,-39],[-20,-43],[14,-95],[75,-29],[14,-38],[68,-42],[59,63],[-11,48],[75,131],[122,22],[17,48],[54,24],[63,-6],[45,26],[17,33],[60,11],[63,90],[-23,65],[35,29],[0,47],[-42,114],[85,77],[71,-3],[2,-20],[63,-36],[4,-38],[43,3],[79,-35],[54,26],[24,-80],[-23,-53],[67,-89],[91,20],[19,-37],[48,-4],[53,27],[61,-9],[18,42],[40,36],[72,13],[103,-32],[62,28],[38,59],[-41,62],[25,49],[-14,32],[-58,-42],[-20,65],[-71,21],[-6,29],[76,60],[55,56],[12,41],[51,55],[16,49],[56,71],[-5,32],[-58,5],[-75,-29],[-69,50],[5,41],[-31,23],[41,52],[64,35],[-47,40],[32,67],[53,2],[25,-49],[32,23],[24,55],[-22,42],[-5,55],[20,35],[122,-16],[93,59],[17,101],[77,36],[-14,46],[74,46],[85,-31],[21,66],[39,53],[-21,43],[19,27],[63,-28],[98,-6],[11,53],[39,74],[91,36],[70,-2],[19,48],[81,43],[45,41],[39,-43],[95,48],[-6,62],[53,39],[-20,23],[-67,22],[-57,74],[-19,41],[-40,17],[-32,63],[4,50],[51,-14],[31,-51],[34,24],[-60,57],[-11,60],[-59,12],[-14,-148],[-46,-6],[-37,45],[45,36],[-15,77],[-51,36],[-20,95],[79,-11],[21,72],[74,11],[28,-57],[55,0],[42,20],[75,-15],[22,-71],[80,-78],[23,-39],[47,-9],[25,54],[-14,51],[-30,39],[-7,67],[97,3],[10,98],[-44,42],[-8,64],[-24,13],[10,53],[65,22],[12,-34],[45,-45],[48,38],[20,-65],[10,-91],[-74,8],[7,-61],[73,-24],[60,2],[13,90],[61,85],[-24,46],[6,46],[31,16],[21,-46],[-11,-58],[78,-6],[13,101],[20,29],[45,7],[17,31],[-37,69],[0,38],[91,84],[41,12],[-6,-52],[18,-28],[60,-10],[-18,-33],[47,-100],[-2,-50],[102,-120],[36,-89],[21,-24],[63,-2],[11,-40],[-55,-19],[3,-55],[76,-38],[38,-142],[34,-81],[39,-6],[56,-60],[32,25],[-11,44],[-58,100],[-41,-1],[-5,55],[-27,33],[-2,66],[37,37],[60,20],[31,41],[46,-5],[11,-60],[42,-41],[50,-129],[-10,-59],[29,-45],[-16,-49],[67,-1],[20,-20],[7,-62],[-20,-60],[25,-83],[77,-48],[22,-81],[48,5],[45,-18],[46,6],[95,-37],[23,-40],[59,25],[50,3],[48,-15],[34,18],[59,-2],[45,-25],[28,18],[27,-47],[50,-26],[5,-50],[35,-10],[26,-64],[96,-25],[33,29],[50,10],[33,-27],[18,51],[26,21],[90,32],[76,-23],[39,30],[97,41],[109,-54],[47,6],[93,62],[61,-35],[44,-10],[12,27],[62,23],[-11,66],[54,12],[1,81],[-23,14],[-14,107],[47,-15],[17,-35],[40,0],[34,63],[-73,42],[11,20],[105,-53],[11,53],[87,30],[73,90],[-51,95],[17,44],[75,68],[-52,67],[12,67],[83,-50],[72,-28],[23,104],[42,51],[76,65],[64,4],[28,26],[70,8],[22,48],[68,10],[-16,-105],[17,-64],[35,-23],[34,27],[13,51],[45,86],[90,9],[65,-19],[19,72],[-20,40],[-36,13],[-48,-46],[-43,15],[-20,62],[-43,16],[-31,105],[55,-23],[115,18],[77,-1],[17,52],[-3,84],[60,-27],[77,5],[16,-29],[-47,-94],[14,-42],[237,-147]],[[51884,39022],[-30,-36],[-52,-8],[16,-34],[54,-31],[81,5],[140,-78],[85,14],[69,50],[29,66],[-19,68],[-32,2],[-31,-71],[-63,-13],[-160,-4],[-38,50],[36,53],[-8,27],[-77,-60]],[[100107,77818],[-15,42],[9,59],[-73,91],[12,79],[86,113],[-101,54],[-31,53],[-29,110],[-53,98],[81,50],[24,31],[63,0],[15,136],[-31,55],[-31,-1],[-38,111],[30,30],[-73,77],[18,64],[-16,143]],[[99954,79213],[30,1],[37,-38],[45,34],[44,4],[38,-51],[109,76],[1,28],[118,95],[144,92],[66,31],[23,-43],[50,39],[74,25],[52,49],[139,19],[30,75],[-27,33],[35,35],[-16,39],[18,32],[-35,75],[80,89],[24,53],[71,34],[17,45],[35,-10],[54,27],[71,-44],[7,-20],[68,-13],[13,-35],[45,-49],[63,7],[100,33],[10,-12],[176,80],[64,-7],[87,14],[24,28],[93,31],[102,18],[23,25],[58,10],[14,-28],[186,52],[1,-57],[42,-50],[96,-11],[31,108],[126,69],[84,29],[25,78],[87,56],[13,47],[60,2],[6,45],[-55,87],[4,23],[-102,130],[-75,-13],[0,40],[-73,13],[-82,-26],[-41,-112],[-37,59],[1,52],[-28,17],[-66,-59],[-57,5],[13,57],[40,28],[-16,42],[62,33],[19,64],[-3,53],[34,20],[-41,53],[11,131],[-70,-2],[-38,51],[-45,4],[-30,48],[-39,11],[11,84],[-97,19],[-7,40],[-33,21],[1,34],[37,14],[15,52],[-82,45],[5,73],[52,20],[-5,31],[-76,30],[-8,63],[-45,60],[98,33],[-15,72],[95,99],[5,25],[57,76],[75,47],[33,50],[80,22],[68,67],[11,40],[60,23],[10,30],[54,38],[0,48],[36,2],[63,92],[-11,59],[48,42],[45,62],[-76,3],[-484,33],[-810,-75],[-67,-63],[-65,3],[-23,-78],[-78,-35],[-1,-44],[-64,-17],[-39,-63],[-486,-154],[-251,114],[-296,-88],[-154,-55],[-529,-172],[-48,-48],[-73,-21],[-79,16],[-40,-22],[-211,-55],[-170,-57],[-67,14],[-19,-48],[-26,-7],[-18,-81],[-102,-57],[-78,4],[-34,-32],[-89,-34],[-27,-46],[-63,-20],[-81,26],[-15,-32],[-69,21],[-52,-15],[-5,-53],[-50,2],[-77,-32],[-31,-43],[-55,-3],[-58,-29],[-85,-10],[-48,-51],[-100,-14],[-74,-30],[-40,-43],[-57,-29],[-63,0],[-87,-76],[-23,51],[-64,53],[-20,47],[-36,20],[-66,-56],[-57,9],[-75,-49],[-43,2],[-39,29],[-121,20],[-53,57],[-36,-38],[-46,-5],[-13,40],[-68,40],[49,55],[-16,32],[-103,-13],[-80,-110],[35,-14],[-5,-51],[18,-48],[52,-20],[59,-51],[12,-133],[-141,-64],[-35,-36],[-63,-1],[-76,-53],[-65,-23],[11,-45],[-72,-71],[-87,-68],[-40,-50],[-74,-53],[-94,-160],[-72,-40],[-154,-73],[-70,-81],[-91,-75],[-65,-84],[-140,-123],[-57,-67],[-68,-100],[-102,-99],[-40,-11],[-76,-74],[-11,-55],[21,-45],[39,-16],[20,-40],[-2,-49],[37,-83],[-32,-36],[-72,-25],[-41,5],[-38,-37],[-50,32],[-20,-75],[-183,-94],[-160,-188],[-76,-18],[-113,-8],[-149,-45],[-50,6],[-166,-22],[-135,-39],[-79,2],[-74,59],[-42,8],[-328,29],[-300,-28],[-164,-27],[-141,-40],[-278,-45],[-64,-46],[-85,34],[-113,-24],[-70,-4],[-81,53],[-170,73],[-124,60],[-4,79],[-62,46],[-101,45],[-133,23],[-189,67],[-60,9],[-205,-27],[-116,22],[-86,27],[-32,-54],[-42,-24],[20,-33],[3,-88],[-222,-100],[-117,-11],[-180,30],[-168,-13],[-49,-10],[-76,-67],[-51,2],[-45,-70],[-173,37],[-185,-44],[3,-58],[-101,-27],[-81,38],[-221,-83],[-120,7],[-155,-9],[-46,14]],[[88539,78649],[3,53],[31,97],[-19,67],[20,42],[-15,61],[-41,28],[4,97],[-86,50],[-12,75],[-47,49],[-70,-1],[-32,71],[-31,33],[-1,73],[-20,69],[53,92],[-45,62],[4,68],[114,70],[4,52],[46,81],[-14,83],[-95,66],[33,38],[78,23],[117,-33],[64,27],[-6,66],[-54,34],[-91,34],[-71,67],[5,70],[-43,51],[-9,82],[31,82],[-45,49],[6,49],[-19,44],[-54,20],[-27,64],[8,85],[-28,8],[-82,-29],[-37,-37],[-50,7],[-40,-21],[-57,-3],[-61,42],[-90,-12],[-28,20],[-69,-2],[-34,36],[-51,2],[-77,-53],[-70,14],[-132,-31],[-63,34],[-87,-12],[-72,14],[-11,69],[-76,45],[-137,-78],[-33,63],[-87,56],[-42,111],[-55,-8],[-47,89],[-55,49],[-17,36],[55,60],[-3,34],[-48,46],[-20,53],[34,74],[85,76],[8,44],[39,46],[28,-8],[51,51],[20,101],[2,59],[38,43],[-32,53],[-11,115],[-108,78],[-124,-22],[-72,124],[88,54],[55,-18],[35,23],[49,-31],[53,14],[75,-14],[101,10],[92,-135],[57,-35],[136,-39],[91,-8],[122,30],[42,-22],[47,17],[20,-108],[43,-17],[22,-42],[34,-109],[37,-10],[30,-50],[110,18],[39,-44],[97,53],[39,86],[38,3],[67,72],[60,-9],[139,-41],[65,8],[108,81],[131,120],[134,103],[163,78],[126,22],[77,-2],[45,-32],[64,-181],[84,-111],[32,-4],[127,48],[109,17],[12,81],[114,29],[110,-87],[42,9],[139,131],[32,19],[51,-5],[107,-89],[62,13],[92,140],[72,81],[57,27],[115,33],[65,28],[119,132],[106,149],[36,68],[-43,47],[-24,59],[-96,125],[-52,40],[-68,16],[64,216],[91,73],[118,58],[172,126],[62,72],[29,7],[44,-26],[-7,-51],[38,-50],[43,31],[206,98],[38,42],[28,77],[37,30],[70,23],[84,52],[79,-41],[15,-66],[38,-15],[74,84],[50,43],[-44,144],[90,9],[96,27],[86,-9],[62,33],[47,44],[111,-32],[144,-2],[49,20],[58,70],[-12,80],[11,64],[34,89],[-21,30],[-131,69],[-28,55],[92,48],[80,100],[173,105],[48,151],[61,89],[-28,101],[8,30],[103,34],[18,99],[17,25],[51,-5],[144,42],[82,13],[66,37],[59,53],[41,-30],[37,-63],[27,6],[19,83],[61,35],[84,-40],[22,-49],[35,-9],[101,3],[169,-15],[118,23],[173,68],[52,3],[118,36],[161,-81],[38,11],[124,92],[93,49],[79,-15],[143,-106],[57,-24],[56,26],[83,108],[32,72],[-2,77],[13,33],[122,95],[1,34],[-61,55],[1,33],[54,51],[-19,84],[74,39],[56,8],[52,80],[129,125],[214,135],[69,56],[12,76],[54,69],[9,113],[37,72],[109,176],[37,23],[122,105],[112,123],[36,9],[195,-1],[50,27],[32,129],[17,17],[137,71],[64,55],[234,-40],[142,8],[92,40],[53,85],[7,96],[136,101],[31,46],[34,140],[50,-7],[90,-59],[42,-15],[124,-93],[95,-87],[43,-62],[67,-53],[90,-104],[26,-63],[-19,-116],[18,-62],[43,8],[137,64],[94,5],[76,-33],[97,-53],[181,-11],[101,-73],[102,-41],[-16,48],[-52,58],[3,50],[128,-71],[142,-27],[75,-7],[56,-88],[30,-20],[89,-2],[117,-28],[71,-4],[162,12],[38,-3],[-11,-63],[13,-32],[-5,-67],[61,-43],[134,20],[57,-30],[101,-36],[238,-47],[43,28],[121,-17],[73,113],[33,21],[23,72],[10,133],[17,65],[27,11],[160,-57],[-5,204],[-30,108],[29,29],[151,9],[7,96],[41,76],[24,2],[96,-52],[156,86],[70,60],[36,54],[49,-8],[44,16],[61,54],[7,50],[119,107],[21,0],[29,-72],[43,5],[89,64],[50,-8],[69,54],[81,94],[202,-29],[80,-6],[134,109],[79,42],[75,85],[77,60],[93,19],[45,-27],[75,-113],[136,-111],[28,-64],[65,-72],[38,-79],[-10,-138],[74,-61],[25,-74],[60,-59],[29,-64],[62,-40],[55,13],[101,-3],[72,91],[121,32],[67,71],[43,-7],[66,-107],[-19,-89],[-61,-62],[-48,-142],[-45,-42],[-143,-10],[-63,-24],[-112,-8],[-42,-39],[-79,-14],[-38,-33],[-63,-126],[-55,-44],[-59,-27],[-168,-27],[-36,-12],[82,-52],[51,-44],[38,-65],[16,-64],[72,-126],[-16,-77],[-94,-50],[-4,-36],[-33,-35],[66,-60],[13,-64],[30,-6],[42,30],[156,67],[74,53],[28,65],[97,95],[44,59],[103,55],[93,76],[82,10],[74,-3],[173,13],[86,32],[68,56],[153,72],[25,3],[-137,-270],[-41,-64],[37,-112],[49,-7],[47,26],[29,-20],[9,-68],[55,-106],[-10,-93],[5,-51],[35,-38],[58,-104],[79,-104],[41,-24],[48,-68],[28,-76],[-2,-54],[-22,-45],[-87,-124],[-96,-38],[-103,-1],[-90,-41],[-64,-49],[-74,-15],[49,-76],[41,-84],[-4,-22],[-78,-61],[-106,-65],[-60,-73],[-21,-9],[-56,37],[-27,-15],[23,-49],[-21,-61],[-110,7],[-60,-14],[-73,-86],[-39,-32],[135,-81],[40,-51],[-18,-67],[-95,-37],[-23,-29],[-141,-92],[-115,-86],[5,-27],[138,-22],[56,-73],[189,32],[33,-118],[45,-6],[26,-71],[87,25],[34,159],[98,108],[80,21],[62,-5],[50,-20],[87,64],[64,29],[31,42],[75,40],[70,12],[150,-9],[94,6],[62,-57],[131,-72],[63,-8],[87,-61],[62,-162],[30,-14],[163,-13],[95,4],[38,39],[134,29],[78,-88],[22,-72],[99,-20],[79,-64],[83,-30],[97,39],[50,49],[58,76],[53,5],[97,40],[75,-43],[49,-10],[121,-115],[39,-97],[86,-31],[117,21],[36,-75],[26,-22],[100,12],[51,-8],[90,-48],[24,-48],[77,-16],[65,-53],[86,-35],[96,-98],[-31,-37],[-75,37],[-153,-146],[-22,-58],[56,-93],[-4,-20],[-106,-102],[-10,-64],[15,-28],[74,-18],[127,10],[29,-21],[-22,-40],[33,-52],[80,-20],[61,-40],[-13,-35],[-76,-12],[-48,-101],[1,-90],[-11,-73],[45,-54],[-34,-50],[38,-85],[-89,-43],[-79,35],[-83,-18],[11,88],[-56,71],[-194,-79],[-34,-22],[-39,-55],[-126,-100],[-77,-88],[-52,-22],[-28,-53],[-85,-29],[-48,-65],[-81,-20],[-15,-19],[23,-52],[-31,-99],[-18,-6],[-88,45],[-72,-41],[-40,12],[-80,-45],[-86,-216],[-6,-57],[-120,13],[-60,-26],[-42,-82],[-43,-59],[-81,-41],[6,-107],[55,-20],[6,-118],[32,-28],[49,-83],[-16,-56],[-66,-90],[-16,-44],[2,-74],[79,-48],[30,-92],[89,-46],[12,-53],[25,-23],[-25,-38],[48,-49],[12,-44],[45,-29],[22,-99],[50,-38],[87,-49],[11,-71],[49,-16],[8,-34],[85,-90],[45,-24],[4,-104],[19,-25],[60,-23],[27,-36],[12,-58],[48,-30],[36,3],[22,-63],[41,-27],[17,-73],[-58,-41],[-36,-92],[-57,4],[-60,64],[-23,5],[-109,-44],[-60,5],[-120,120],[-115,48],[-53,50],[-109,28],[-136,8],[-58,20],[-135,75],[-10,76],[98,69],[10,42],[-28,80],[-69,4],[-39,45],[-22,101],[-50,17],[-71,75],[-54,98],[-108,41],[-120,-2],[-104,65],[-23,-38],[-46,-22],[-87,27],[-89,-17],[-95,20],[-82,-64],[9,-47],[-94,-60],[-50,-15],[-115,-106],[-51,10],[-63,34],[-52,-16],[-56,29],[-34,-13],[-104,3],[-64,-39],[-91,-20],[-101,22],[-61,-46],[-44,30],[-92,24],[-76,-31],[-43,-58],[-42,-6],[-122,28],[-60,-59],[-81,-17],[-53,-43],[-68,1],[-182,-82],[-57,-8],[-47,-56],[-64,-15],[-43,-40],[-78,-26],[-24,-33],[-48,-129],[-101,-115],[-39,-57],[-82,-166],[-77,-59],[-76,-30],[-56,-53],[-87,-44],[-71,8],[-74,-28],[-83,28],[-132,-126],[-70,-102],[10,-74],[-41,-58],[21,-60],[-12,-27],[-90,-80],[-35,-15],[-66,14],[-18,32],[-93,59],[-38,-21],[-45,-82],[-52,-18],[-17,-117],[-77,-110],[-136,18],[-44,45],[-63,3],[-48,-26],[-67,-70],[-47,-119],[-69,-109],[-66,-18],[-42,-70],[-45,-37],[-24,-57],[-46,-45],[-62,0],[-84,-34],[-66,-41],[-71,2],[-106,-43],[-57,-42],[-35,20],[-78,7],[-37,42],[-7,50],[-60,29],[-23,-29]],[[99954,79213],[-152,-144],[-104,-74],[-35,-13],[-26,-65],[-86,-56],[-79,-17],[-40,-29],[-61,-9],[-62,-51],[-81,-4],[-51,-24],[-55,40],[-50,60],[-87,-20],[-20,53],[-53,-37],[-47,-9],[-55,-30],[-62,-68],[-67,-132],[-47,-29],[-24,-44],[-42,-32],[-30,-116],[-60,-24],[20,-49],[-108,-43],[-17,-45],[-45,-44],[-39,39],[-51,-71],[-76,-44],[-92,-78],[-123,-35],[-113,-16],[-47,81],[-37,-10],[-25,-45],[11,-31],[-14,-60],[-36,11],[-73,-58],[7,60],[-73,19],[-64,-38],[-28,1],[-17,-55],[-64,-53],[-112,-15],[-35,-57],[-15,-63],[-74,-54],[-91,-34],[-15,-57],[33,-73],[-38,-110],[8,-27],[-38,-72],[-68,-18],[-2,-47],[-98,-18],[3,-50],[-104,-64],[-27,-64],[-49,17],[-35,53],[-24,108],[6,66],[-12,34],[-1,95],[-11,21],[-73,-77],[-84,-127],[-106,-84],[-38,-78],[-54,-36],[-40,-113],[12,-168],[-20,-83],[-34,-29],[41,-62],[-41,-19],[-95,9],[-55,-22],[-21,-52],[-38,15],[-20,-69],[-57,-72],[-39,-20],[4,-39],[-27,-59],[-65,-17],[-41,-85],[-23,-120],[-84,-66],[-49,-110],[24,-43],[-36,-97],[20,-29],[-29,-35],[-30,-88],[18,-42],[-93,-118],[-12,-80],[-29,-57],[21,-41],[-17,-89],[49,-52],[7,-63],[42,-73],[-12,-25],[-72,-56],[-73,-17],[-20,-37],[-70,-15],[-7,-23],[-76,-66],[-39,-74],[-115,67],[-35,-1],[-66,-61],[-21,-81],[-41,-39],[-44,-8],[-59,126],[6,50],[39,41],[-16,36],[40,120],[-22,50],[3,56],[-29,84],[-45,30],[-17,-42],[-71,-51],[3,-19],[-124,-60],[-43,-2],[-64,-46],[12,-79],[57,-141],[-89,-49],[-16,-46],[-35,-16],[-74,-3],[-73,-76],[-24,-96],[-110,-53],[-33,-33],[-38,-5],[-30,-59],[-76,-56],[18,-31],[-23,-68],[-86,-70],[-67,-85],[-70,-63],[-65,-6],[-175,-90],[-35,-37],[-8,-59],[-62,-7],[-61,-100],[-47,-34],[-57,3],[-45,-47],[26,-46],[64,-38],[52,-103],[42,-14],[27,-47],[0,-64],[99,-65],[65,8],[81,-50],[31,-73],[-7,-49],[39,-69],[16,-52],[-97,-139],[37,-30],[-20,-44],[64,-63]],[[93580,72449],[-52,-57],[-56,-9],[-79,-56],[-10,-46],[-63,-12],[-61,-81],[1,-40],[-66,-94],[-61,-102],[-22,-70],[14,-76],[-57,-190],[-45,-16],[-65,-106],[11,-23],[-44,-43],[-46,16],[-61,-8],[-16,-53],[-55,-67],[-8,-57],[36,-5],[-17,-55],[42,-88],[-14,-59],[-57,-29],[34,-98],[-74,-78],[-16,-84],[-102,-105],[-37,-108],[6,-64],[-69,-10],[-64,-44],[-96,54],[-69,-15],[-57,-275],[-31,-89],[-48,5],[64,-88],[21,-83],[-10,-54],[-42,-20],[17,-78],[-37,-25],[27,-39],[-42,-59],[81,-53],[-38,-45],[-59,20],[6,-59],[-74,-64],[-16,-54],[16,-44],[-42,-19],[11,-35],[-32,-34],[47,-84],[-1,-45],[-38,-11],[-22,-126],[26,-69],[-86,-34],[-57,3]],[[91826,68913],[-75,25],[-73,-53],[-34,35],[-57,-36],[-90,68],[-23,-72],[-40,3],[-38,30],[-46,-23],[-32,10],[-42,-28],[-18,-39],[-52,-24],[-23,68],[19,23],[-103,87],[-79,207],[-63,180],[-43,-54],[3,-23],[-40,-103],[-48,-85],[-61,-186],[-64,-122],[-19,-68],[-123,-51],[-25,-51],[-25,-10],[-70,26],[-25,-89],[0,-97],[-29,-130],[-87,-33],[-87,20],[-51,-16],[-12,-84],[-66,-194],[-154,-48],[-34,-53],[10,-23],[-68,-25],[-98,63],[6,65],[-18,55],[-53,44],[-3,64],[16,165],[-170,-7],[-270,6],[-25,-3]],[[89224,68327],[-310,-9],[190,440],[34,103],[-33,35],[-6,48],[-25,36],[2,68],[-64,42],[-30,52],[-2,77],[33,38],[-22,53]],[[88991,69310],[0,310],[-41,109],[34,36],[31,74],[-1,43],[-40,57],[-10,67],[28,66],[39,26],[48,-8],[32,43],[17,138],[-22,64],[21,65],[47,25],[-31,56],[-11,106],[-89,17],[5,64],[-44,45],[61,80],[-6,40],[-31,33],[26,30],[73,8],[56,-8],[49,31],[33,2],[28,-60],[62,-30],[42,-40],[28,19],[115,-71],[13,-30],[64,-26],[30,32],[49,-21],[52,6],[48,57],[49,4],[85,-33],[39,4],[-12,67],[4,83],[-42,97],[16,44],[-124,0],[-13,40],[53,39],[-63,27],[-42,-5],[-54,24],[-10,68],[25,101],[-6,47]],[[89701,71372],[48,8],[49,28],[45,-15],[10,78],[53,112],[15,87],[156,-9],[24,24],[-29,53],[-2,56],[57,-10],[49,-26],[105,4],[62,-28],[43,-2],[43,-25],[31,28],[9,49],[43,53],[43,12],[27,73],[52,36],[62,-3],[40,36],[157,67],[43,-15],[77,-4],[70,41],[17,31],[-62,39],[-52,7],[-28,63],[44,44],[-25,32],[72,38],[11,32],[-31,83],[16,38],[-14,58],[-44,28],[-44,-17],[-38,74],[-52,76],[-5,34],[-62,-29],[-19,37],[-46,13],[-25,48],[-73,67],[-51,-26],[-35,83],[-161,-51],[-5,116],[-22,34],[-6,57],[-98,-29],[-14,65],[49,56],[150,81],[86,84],[19,88],[40,41],[-1,57],[-26,28],[-47,-19],[-37,-65],[-81,-19],[-23,-33],[-56,-17],[-55,29],[-43,55],[-17,72],[5,75],[-149,32],[-25,-11],[-46,38],[-61,144],[-59,73],[-115,20],[-26,89],[54,41],[-32,41],[-60,-6],[-2,42],[-80,4],[-42,23],[-44,-4],[-32,-38],[-41,-7],[-47,-31],[-122,-14],[-132,-48],[-124,-10],[-44,22],[-53,-70],[-69,-38],[-82,-77],[-51,167],[-24,21],[55,55],[2,63],[-24,48],[-27,104],[8,113],[37,36],[9,44],[57,71],[1,79],[82,72],[80,45],[-9,38],[-81,-12],[-13,39],[-60,-37],[-77,26],[5,67],[-19,48],[41,55],[-6,22],[96,81],[34,2],[203,169],[170,185],[-103,-41],[-120,-13],[-108,33],[-84,-16],[-41,49],[-34,-7],[-68,-49],[-65,-75],[-89,15],[-58,-4],[-111,-54],[-39,-7],[-61,25],[-121,-5],[-46,12],[-48,-59],[-117,-44],[-46,0],[-30,-58],[-38,41],[5,44],[-35,22],[-90,11],[-51,105],[24,160],[-81,28],[-101,52],[-26,2],[-42,-58],[-23,4],[-43,-70],[-43,17],[-71,-78],[-104,-47],[-30,-113],[-13,-203],[1,-95],[-188,-190],[-79,33],[-136,103],[70,18],[29,79],[-48,82],[30,74],[-3,69],[-44,18],[-86,-25],[-32,37],[-46,12],[-21,-22],[-18,-100],[-39,-60],[-13,-46],[-52,-25],[0,-25],[-69,-15],[4,-67],[-67,-79],[34,-21],[-36,-66],[-65,-29],[-32,-77],[30,-33],[-30,-22],[-23,7],[-101,-68],[-63,47],[-43,1],[-237,-52],[-60,-33],[-96,-139],[-35,-71],[-64,-84],[-15,-38],[-75,3],[-116,-95],[-96,30],[-34,31],[2,96],[-35,50],[41,134],[-10,19],[54,98],[-36,57],[-52,-49],[-96,29],[-79,-32],[-40,-41],[-146,-8],[-55,-14],[-17,41],[15,40],[-62,10],[-26,-37],[-79,-66],[-54,-7],[-17,20],[42,90],[1,32],[50,37],[10,84],[-58,-15],[-106,22],[-65,-10],[-2,71],[-33,111],[-45,21],[-110,15],[12,-116],[-66,63],[-68,87],[-49,-36],[-182,23],[-86,-27],[-57,-79],[-14,-50],[-75,10],[5,42],[-68,-25],[13,68],[-14,32],[26,64],[-81,-33],[-46,13],[-100,-5],[-38,-56],[-140,-51],[-39,-25],[-9,-71],[-39,3],[-29,50],[4,28],[80,70],[-88,37],[-12,19],[-86,24],[-28,-74],[-66,-39],[-103,-109],[-26,32],[28,74],[23,17],[8,99],[-77,95],[-29,54],[-60,53],[-45,22],[-73,-61],[-107,-41],[-41,13],[-24,52],[-54,33],[-116,-15],[-68,-29],[-36,-50],[-26,-6],[-21,-55],[-139,-41],[-273,-39],[-16,30],[-54,-18],[-30,-45],[-36,45],[-65,5],[-41,24],[-27,-24],[-97,-3],[-31,-61],[-65,-22],[15,-29],[-106,-52],[-41,-65],[-37,-31],[-77,9],[-61,-57],[61,-39],[-2,-27],[-46,-58],[-65,-44],[-55,-6],[-9,-23],[-107,-14],[27,-53],[-4,-74],[16,-68],[-80,-86],[0,-31],[-43,-21],[-98,19],[-5,-66],[90,-96],[10,-32],[58,-30],[37,-109],[124,-83],[10,-42],[79,-12],[51,-60],[-60,-94],[-85,25],[-24,-63],[-173,-43],[-146,-22],[-73,-71],[-3,-61],[35,-101],[0,-27],[-59,-61],[-27,3]],[[80193,73118],[3,88],[23,93],[-26,57],[52,40],[33,111],[-18,46],[33,106],[-7,64],[-35,88],[-88,142],[31,59],[0,36],[-60,0],[-38,57],[-5,50],[55,74],[-19,49],[-27,121],[-45,49],[61,80],[3,117],[16,40],[124,138],[50,97],[-29,25],[-130,-15],[-49,25],[60,58],[89,56],[-104,112],[-31,9],[1,-81],[-62,10],[11,135],[-31,58],[-52,-79],[-21,15],[42,55],[-62,67],[49,21],[0,57],[-56,50],[5,79],[-60,2],[-23,23],[18,76],[-62,81],[-52,21],[-56,-3],[-5,32]],[[79699,75809],[-56,45],[-9,30],[59,26],[-2,91],[-14,51],[63,41],[-48,32],[6,49],[55,5],[19,42],[-60,67],[78,27],[62,-10],[-30,53],[-1,60],[42,-17],[70,54],[4,87],[82,35],[85,17],[3,57],[48,-13],[52,16],[9,10],[-15,45],[-84,-23],[-12,25],[22,61],[43,-8],[38,93],[53,56],[3,61],[-65,93],[11,68],[-4,62],[27,37],[12,155],[-11,30],[58,25],[-20,41],[19,71],[-57,9],[-17,66],[61,44],[-21,52],[12,105],[-53,79]],[[80216,77911],[11,19],[-5,88],[15,22],[99,-49],[117,-7],[136,2],[99,14],[65,30],[65,-15],[94,-6],[83,12],[223,66],[225,84],[-22,131],[44,113],[75,81],[42,18],[134,-11],[104,-27],[78,9],[126,100],[35,76],[202,23],[46,-15],[117,-100],[277,-191],[74,-46],[41,-42],[77,-14],[76,0],[107,-23],[69,-68],[77,25],[35,-2],[76,-47],[126,5],[26,22],[79,-6],[147,2],[254,22],[96,-4],[111,13],[181,13],[75,11],[168,-36],[46,2],[80,82],[50,70],[150,-39],[187,11],[81,-10],[128,1],[94,-16],[121,-78],[153,-21],[86,38],[74,47],[83,131],[23,2],[171,-108],[87,-63],[54,-8],[362,58],[123,65],[110,-25],[95,-40],[66,28],[110,2],[177,103],[100,51],[111,95],[80,141],[162,15],[165,-84],[45,-28],[21,-39],[95,-76],[116,-28],[141,-12],[157,80],[4,52],[35,47]],[[80040,76431],[45,1],[-36,81],[-46,14],[-41,-35],[78,-61]],[[60398,68379],[-38,53],[30,19],[22,-52],[-14,-20]],[[73739,77267],[99,-103],[49,-7],[74,42],[11,62],[40,-2],[24,28],[41,-2],[39,-33],[88,66],[8,-77],[-146,-95],[-54,-55],[46,-42],[8,-44],[101,-20],[29,-77],[53,9],[32,-61],[59,-47],[-47,-23],[-97,-101],[31,-57],[64,-3],[47,26],[24,-15],[56,-102],[-62,-81],[-42,29],[-48,-44],[-13,-41],[-66,-48],[-8,-56],[-112,-60],[-41,2],[-24,-51],[-120,-34],[-26,-36],[5,-50],[-69,-11],[-85,-85],[-82,-98],[-84,-37],[-55,23],[-40,-58],[-55,-31],[-18,-45],[-29,-11],[-62,73],[-47,-19],[-8,-113],[31,-15],[-24,-48],[-41,-2],[6,-96],[-81,1],[-25,-60],[-32,11],[-35,75],[-137,-97],[-3,-42],[-44,2],[-52,-43],[-26,-2],[-6,-96],[-54,-141],[18,-84],[-26,-62],[22,-43],[-85,-21],[-12,-36],[47,-31],[-3,-106],[27,-55],[122,-27],[35,11],[25,-30],[47,19],[96,-50],[-86,-74],[41,-50],[44,-20],[-47,-61],[11,-74],[-12,-33],[78,8],[69,-61],[25,-57],[66,-55],[-4,-19],[69,-24],[48,2],[17,-28],[109,-51],[48,-3],[41,-48],[-28,-46],[10,-115],[-38,-14],[14,-53],[-17,-40],[24,-45],[-38,-29],[1,-42],[-35,-17],[44,-67],[-25,-49],[40,-28],[30,-46],[84,-83],[-3,-64],[-24,-43],[-56,-12],[-56,13],[-57,57],[-43,-25],[-65,33],[-22,52],[-61,67],[-32,19],[-47,-13],[-69,4],[-78,-65],[-9,-46],[-79,34],[8,-41],[-43,-10],[-23,-37],[-11,-61],[10,-48],[-109,-4],[-31,-27],[1,-48],[-63,-43],[-82,56],[-37,-77],[-40,-18],[25,-36],[-35,-76],[10,-69],[40,-27],[45,5],[-5,-68],[-22,-64],[37,-63],[37,4],[70,-41],[31,-37],[80,-23],[22,-77],[-24,-41],[-3,-54],[-51,-14],[-47,-60],[41,-82],[-15,-36],[-105,55],[-51,9]],[[72559,72120],[-16,100],[-279,40],[1,58],[-62,39],[8,85],[-34,28],[-120,-12],[-94,33],[-72,-17],[-95,65],[24,49],[-30,13],[-46,-39],[-72,-11],[-34,-136],[5,-57],[-53,-2],[-46,43],[-52,1],[-33,50],[-31,-39],[22,-69],[30,-48],[-30,-13],[-55,-82],[-2,-180],[-63,11],[-234,117],[-54,-19],[-33,-62],[-49,26],[-91,14],[-26,23],[-24,-134],[-24,-73],[-9,-77],[-38,-61],[-17,-79],[8,-57],[-16,-41],[-77,17],[-43,43],[-69,-20],[-23,-53],[-83,14],[-87,-88],[-41,-11],[-68,-129],[-43,-26],[-11,-53],[37,-78],[-5,-109],[-14,-81],[24,-41],[-28,-54],[4,-50],[30,-35],[5,-41],[-40,-90],[-54,-11],[-35,-26],[-33,10],[-31,-32],[-55,-93],[-40,3],[-11,-62],[68,-42],[-48,-72],[13,-81],[-44,-54],[25,-34],[2,-44],[-39,-67],[-2,-51],[-59,-93],[-22,-131],[-17,-51],[23,-67],[-85,10],[-40,33],[-24,-45],[-65,50],[-100,50],[-74,-21],[11,63],[-68,1],[22,-49],[-63,-43],[-4,-33],[-74,-95],[31,-90],[3,-78],[-114,93],[-55,-28],[-25,-38],[-59,14],[-6,56],[-70,4],[-35,-22],[-11,120],[-51,81],[-140,-2],[-35,-46],[4,-53],[-52,-53],[-48,9],[-86,-36],[-33,6],[-67,-38],[-84,25],[-16,35],[-85,33],[2,39],[-70,19],[-59,-55],[-3,-49],[-56,-39],[-50,-14],[12,-42],[-41,-52],[-86,2],[-66,-70],[-57,-130],[6,-176],[-12,-56],[-84,-12],[-8,-55],[12,-49],[-19,-72],[-58,-33],[-45,33],[-68,9],[-63,83],[-94,60],[-73,102],[-125,-7],[-59,18],[-10,47],[-81,20],[24,58],[31,-2],[36,86],[33,39],[-19,70],[-22,22],[31,60],[-21,43],[56,63],[-34,28],[-64,17],[-98,-16],[-65,12],[-37,46],[-79,58],[-6,-80],[-77,-24],[-108,-5],[-49,62],[-71,15],[-28,32],[-27,118],[30,48],[27,83],[-34,116],[-70,120],[-70,40],[-86,21],[-81,-15],[43,54],[-19,65],[-74,-32],[-81,-18],[-22,-55],[-84,-15],[-27,-55],[-73,-6],[-84,33],[-63,51],[-33,63],[-53,62],[9,23],[-44,34],[-89,29],[-98,8],[-34,-11],[-27,-49],[-124,18],[-43,53],[-107,39],[-58,-139],[-32,-14],[-28,-57],[12,-82],[-12,-74],[-30,-60],[-63,-77],[-111,-26],[38,-48],[14,-54],[-11,-40],[42,-122],[-6,-78],[-22,-68],[-75,-15],[-132,27],[-38,49],[-80,21],[-43,-25],[-14,-51],[26,-72],[-43,-18],[-75,13],[15,-53],[-23,-71],[-59,-30],[-52,21],[-6,51],[-30,30],[-83,-11],[-57,-33],[-87,-13],[-82,35],[-29,0],[-75,-49],[-47,-11],[-119,-7],[-72,-13],[-78,16],[-55,-8],[-12,-29],[10,-86],[-102,3],[-56,-36],[-15,-35],[-42,-33],[-76,6],[-47,-17],[-101,-5],[-39,-12],[61,-135],[-79,-44],[-122,-36],[-21,-40],[-39,-19],[-23,-49],[-44,-3],[-56,24],[33,84],[7,123],[-27,-16],[-58,-81],[-79,40],[-79,-36],[-75,-15],[-81,-142],[-76,-16],[-83,24],[-82,-22],[-19,84],[-23,18],[-52,94],[9,157],[-47,16],[-17,-36],[-57,32],[-49,-52],[-26,68],[20,162],[-49,52],[-66,-15],[-23,33],[-43,-46],[-14,-50],[-140,-33],[-8,-32],[-56,-60],[-68,-2],[-46,-41],[-56,-22],[-18,-59],[-29,-39],[6,-71],[-35,-75],[-57,19],[-87,13],[-68,-4],[-106,44],[-49,-59],[25,-52],[-74,-40],[-90,10],[19,-59],[-29,-31],[25,-53],[-30,-23],[-25,-64],[-64,-118],[-55,62],[15,47],[-77,10],[-27,82],[-35,-17],[-102,-11],[19,108],[-102,34],[-37,45],[-10,40],[-77,-12],[-95,36],[8,21],[-45,38],[17,79],[-57,64],[-80,13],[-30,58],[33,58],[102,35],[17,51],[-27,76],[-63,98],[-33,73],[-88,-7],[1,-89],[-41,-15],[-89,23],[2,38],[-53,-12],[-11,-59],[-32,8],[-31,48],[-50,-1],[-53,-28],[36,-72],[-12,-51],[-67,8],[-28,20],[40,62],[-68,26],[-36,-43],[14,-95],[-56,-26],[-9,-45],[-47,-21],[-33,26],[-43,63],[-10,41],[12,75],[-42,43],[-22,96],[-47,29],[6,48],[-30,21],[-24,69],[-50,26],[-33,39],[-119,35],[-48,-89],[-25,-73],[-55,-79],[-108,-111],[-223,-59],[-38,19],[-217,-31],[-64,-24],[-123,-51],[-118,-22],[-53,9],[-74,32],[-139,2],[-165,-11],[-107,14],[-107,36],[-163,3]],[[56694,69404],[-18,59],[88,28],[27,71],[2,69],[-28,71],[30,40],[33,8],[16,47],[-67,9],[-18,50],[-68,35],[8,65],[50,41],[-87,105],[-33,-1],[10,99],[-13,27],[-47,-13],[-17,2],[-35,-7],[-43,42],[-26,50],[-85,72],[-91,34],[33,105],[-20,86],[-29,28],[-52,89],[-53,29],[36,39],[-46,88],[25,43],[-4,161],[-48,33],[-13,60],[20,50],[-7,72],[-90,20],[-11,89],[50,49],[-9,39],[17,84],[21,22],[8,95],[51,-8],[14,68],[-20,13],[4,70],[-37,37],[18,78],[-16,34],[21,45],[40,-10],[103,42],[50,90],[28,75],[89,17],[36,22],[64,-28],[43,52],[31,67],[41,16],[62,-2],[134,106],[103,17],[43,29],[99,30],[35,-16],[44,53],[39,-4],[4,52],[47,36],[111,23],[-37,48],[103,17],[20,36],[143,35],[6,-48],[45,-16],[6,42],[70,0],[53,38],[32,63],[-9,33],[66,18],[65,-3],[-18,52],[-85,16],[-1,46],[87,-12],[65,42],[14,44],[35,22],[25,49],[6,67],[74,20],[104,142],[87,22],[258,190],[52,26],[179,58],[12,59],[-37,168],[49,66],[42,31],[50,12],[87,1],[16,-27],[47,36],[71,-17],[99,-71],[19,-122],[65,-32],[270,-4],[32,35],[73,0],[19,125],[8,129],[21,30],[85,-4],[56,-30],[39,50],[31,-17],[-27,-39],[46,-21],[25,-47],[6,-68],[80,-17],[2,65],[91,11],[53,-62],[13,-51],[84,21],[-3,-51],[64,17],[39,-18],[56,59],[77,-34],[23,66],[2,81],[-13,57],[148,11],[65,-33],[65,-9],[-16,52],[-42,44],[-53,30],[8,46],[27,19],[39,-19],[2,78],[-126,106],[-58,40],[-91,45],[-9,-44],[-64,17],[-3,82],[9,87],[-82,-21],[-78,66],[-70,-22],[-20,20],[-110,15],[-26,22],[-55,102],[-4,27],[-81,26],[-129,83],[-29,-3],[-110,-42],[-83,1],[-99,74],[-75,38],[-15,23],[-143,69],[-35,-43],[-73,36],[-19,104],[-113,84],[-33,34],[-44,75],[-92,84],[-37,13],[-118,0],[-26,46],[1,78],[-90,53],[36,69],[-52,16],[-39,44],[-4,47],[63,74],[19,41],[-59,22],[-10,34],[96,20],[8,-28],[148,-28],[69,60],[67,7],[10,78],[105,-16],[44,-49],[15,61],[52,27],[-12,23],[12,117],[38,52],[-53,83],[0,86],[15,54],[-64,8],[-138,35],[-132,17],[-14,-22],[-58,24],[-24,47],[-70,22],[-73,94],[-1,39],[-95,22],[-26,-49],[-137,12],[-163,47],[17,221],[-17,44],[104,26],[57,-24],[0,-32],[73,6],[32,78],[98,-26],[51,27],[61,14],[62,31],[6,70],[78,108],[33,20],[20,64],[-18,51],[2,67],[95,-14],[170,5],[-12,-42],[69,-14],[128,1],[99,-44],[112,-22],[49,-31],[26,28],[58,0],[8,35],[105,-1],[94,20],[73,-20],[30,26],[132,21],[-35,60],[-10,111],[-131,30],[-152,21],[-26,125],[-28,68],[-48,76],[-72,-8],[-44,-35],[-90,-45],[-66,103],[41,39],[48,100],[14,63],[-35,51],[31,34],[3,56],[-23,54],[-63,43],[-72,5],[-47,-39],[-74,-30],[3,-42],[-31,-32],[-68,19],[-70,64],[-5,115],[-31,29],[-77,4],[-31,-62],[-61,4],[-90,50],[-17,57],[1,100],[-33,25],[-13,40],[43,52],[-20,24],[31,89],[-36,59],[-15,52],[19,99],[-62,0],[-44,36],[-64,29],[-14,39],[53,2],[48,60],[8,32],[-33,37],[-52,-25],[-158,-48],[-52,13],[-8,69],[10,49],[45,47],[-10,35],[65,97],[62,63],[-23,73],[-69,63],[5,44],[-49,41],[-85,16],[-86,37],[-24,63],[2,35],[84,61],[26,45],[-8,48],[-57,54],[-75,-15],[-57,-40],[-66,-20],[-94,63],[74,32],[27,49]],[[58028,80415],[52,67],[21,55],[-27,39],[-51,28],[-30,50],[-75,62],[-7,24],[38,54],[41,13],[48,-32],[170,11],[77,35],[52,-30],[62,13],[63,-27],[63,29],[92,-37],[138,71],[26,106],[65,21],[52,48],[1,60],[56,28],[24,-34],[39,-1],[74,26],[-17,-68],[21,-57],[128,-65],[79,-10],[5,-71],[105,10],[53,-8],[18,-59],[44,-22],[26,-97],[-6,-29],[62,-48],[35,26],[60,-34],[77,-28],[103,-10],[53,8],[39,-22],[115,8],[133,-32],[44,-33],[56,20],[146,-31],[147,-9],[149,-43],[72,-7],[60,-89],[124,-224],[57,-129],[-21,-82],[1,-82],[-31,-40],[38,-64],[-8,-52],[-41,-123],[14,-21],[-27,-55],[-76,-68],[-16,-103],[122,-52],[83,-18],[183,-82],[45,-30],[21,49],[32,21],[52,-41],[5,-39],[46,14],[49,67],[38,10],[107,-49],[-10,-49],[144,-66],[26,-22],[115,-6],[109,-35],[66,-68],[-29,-99],[111,-17],[34,-83],[159,-21],[-25,-36],[-52,-21],[-21,-73],[70,-19],[78,-4],[74,16],[67,66],[220,-10],[114,2],[-5,-117],[-9,-36],[-46,-59],[19,-65],[44,-34],[-8,-36],[55,-76],[31,-10],[70,19],[81,-28],[139,-16],[44,2],[107,-42],[93,85],[38,-21],[59,66],[59,24],[20,39],[60,-18],[45,12],[63,-32],[76,32],[18,51],[60,-21],[7,45],[34,27],[56,-10],[83,96],[37,-14],[46,27],[33,74],[44,-44],[78,34],[56,66],[47,-7],[25,-74],[126,-33],[104,-53],[75,-57],[4,-39],[32,-46],[-1,-68],[-22,-114],[21,-39],[-31,-55],[-11,-169],[16,-45],[28,-19],[23,-77],[99,-51],[123,-26],[15,-46],[44,-40],[45,-2],[1,41],[80,-19],[18,-65],[-35,-76],[39,-10],[66,47],[45,16],[50,64],[40,26],[118,27],[28,46],[18,87],[71,38],[73,-15],[70,2],[57,40],[155,-29],[18,-34],[186,-86],[45,2],[16,-95],[69,36],[120,4],[24,-79],[76,-18],[57,30],[72,62],[62,12],[86,-14],[53,27],[129,-13],[-9,-41],[58,-6],[139,-38],[7,-36],[109,-40],[101,-24],[170,-105],[138,-3],[47,-42],[18,-59],[63,-69],[167,-46],[64,-75],[213,-62],[22,-36],[79,-26],[55,-42],[44,31],[31,56],[28,-1],[37,47],[83,-40],[104,-30],[72,-3],[86,61],[113,24],[-15,76],[14,22],[131,7],[5,91],[113,40],[52,-10],[33,34],[48,-3],[61,25],[111,154],[-1,55],[98,-3],[9,-36],[1,-140],[13,-17],[52,-332],[139,-115],[101,-66],[124,-4],[-12,37],[93,-4],[35,-28],[31,30],[58,4],[71,-26],[5,-134],[88,3],[46,-31],[39,21],[18,-32],[84,-60],[63,47],[-9,98],[35,68],[48,20],[39,42],[148,9],[57,45],[69,28],[58,0],[146,-37],[118,-46],[20,-52],[117,-44],[13,-45],[71,-5],[17,38],[56,10],[87,-2],[-5,50],[101,41],[2,75],[55,1],[23,-27],[56,-6],[34,-60],[41,-17],[17,44],[36,-4],[15,-38],[46,4],[35,50],[15,49],[-11,67],[70,66],[74,-32],[56,-41],[-6,-37],[78,-18],[40,45],[-4,61],[18,20],[82,32],[54,4],[35,-73],[-39,-38],[87,-7],[-17,-60],[56,-53],[121,-79],[86,-19],[6,-79],[66,-69],[78,2],[8,85],[22,29],[81,54],[137,140],[19,46],[-25,29],[45,46],[-16,37],[11,58],[-29,74],[34,65],[12,53]],[[32030,93754],[-20,-92],[7,-36],[36,-26],[7,-39],[-69,-92],[8,-19]],[[31999,93450],[-35,-4],[-60,-61],[-87,34],[-95,49],[-25,-5],[-42,72],[-44,23],[4,60],[-55,65],[-39,5],[0,53],[64,39],[38,-4],[41,28],[61,71],[50,18],[52,-44],[-15,-43],[43,-12],[57,47],[27,-32],[-45,-32],[37,-26],[39,15],[60,-12]],[[58557,61581],[-31,31],[-65,-41],[-2,-63],[78,-45],[59,-21],[32,-52],[63,-12],[10,-19],[-6,-121],[-94,-113],[-47,-92],[-2,-42],[-85,-18],[-42,-28],[-54,13],[-84,-19],[-52,13],[-38,-28],[-31,-50],[-92,-3],[-41,19],[-66,-68],[-51,-10],[-25,-32],[-7,-77],[-17,-19],[-67,-4],[-72,-61],[-27,-67],[-95,-63],[-194,17],[-52,-19],[-80,-62],[-43,-1],[-98,-110],[-49,-151],[-50,-69],[-93,-103],[-38,-53],[61,-44],[99,-90],[-62,-42],[-67,7],[-100,-5],[-22,-83],[5,-46],[54,-61],[-52,-119],[3,-49],[83,-77],[-16,-45],[127,-24],[47,-60],[-63,-77],[-44,-75],[46,-74],[2,-36],[-40,-54],[-60,18],[-97,-10],[-13,-34],[32,-18],[1,-96],[-53,1],[-114,57],[-27,-56],[-63,-46],[32,-34],[12,-59],[-19,-36],[38,-31],[-23,-53],[-80,-131],[-25,-13],[-66,11],[-39,-29],[-5,-45],[77,-77],[95,-43],[62,-18],[5,-54],[-54,4],[-25,-83],[-53,11],[-28,38],[1,56],[23,48],[-24,18],[-102,-51],[-122,-92],[-46,-61],[-22,-96],[13,-89],[-43,-56],[-31,-105],[-41,-50],[27,-40],[5,-79],[26,-82],[73,-31],[42,-103],[46,-39],[-3,-64],[13,-42],[-9,-44],[31,-49],[-54,-37],[-49,4],[-148,61],[-57,9],[-36,25],[-146,41],[3,-62],[-18,-53],[-41,-53],[-3,-48],[17,-68],[52,-24],[7,-40],[-26,-67],[-38,27],[-55,3],[-39,-43],[-26,6],[-40,-62],[18,-106],[-42,-87],[13,-40],[-43,-67],[-21,-64],[-4,-71],[-60,-34],[-56,3],[-101,-103],[-53,-16],[-43,26],[-48,-13],[-88,14],[-43,31],[-71,12],[-41,48],[-70,54],[-114,48],[-54,-7],[-34,77],[-51,-49],[-75,-19],[-73,19],[-85,-55],[-58,25],[-62,11],[-25,20],[-102,-19],[-113,-68],[-90,68],[-135,1],[-76,-22],[-60,19],[-83,-29],[-96,-5],[-7,-51],[50,-45],[-30,-31],[20,-59],[-71,-97],[-61,-22],[-1,-29],[49,-106],[-50,-72],[-16,-48],[-83,-75],[-57,-77],[-50,-99],[-64,-47],[-61,-19],[-22,-29],[-73,-31],[-39,-38],[5,-104],[-25,-102],[-66,-43],[10,-32],[-33,-25],[-63,33],[-78,-12],[-36,41],[6,43],[-22,56],[-69,29],[-55,-23],[-44,23],[12,50],[-47,4],[-46,-169],[-4,-81],[21,-115],[-13,-124],[39,-116],[5,-56],[-14,-60],[30,-81],[34,-24],[19,-42],[-13,-42],[20,-81],[-35,-56],[-9,-46],[-63,-36],[14,-74],[-20,-39],[-48,-45],[67,-63],[24,-57],[36,-26],[82,-25],[28,-224],[34,-2],[47,84],[35,-63],[-6,-74],[29,-7],[13,-42],[-18,-61],[-53,-29],[10,-56],[-8,-43],[-47,-83],[-15,-80],[25,-42],[58,-30],[23,-28],[22,-78],[-1,-43],[-85,-59],[33,-86],[-36,-8],[35,-145],[-23,-32],[-6,-59],[-84,-72],[15,-45],[-31,-17],[29,-44],[15,-56],[15,-116],[-14,-115],[18,-42],[107,-21],[62,-32],[127,-20],[53,-45],[44,-20],[82,-11],[72,6],[120,-51],[23,-35],[60,-17],[59,5],[34,42],[99,7],[186,-25],[38,-38],[-5,-142],[-34,-157],[1,-51],[32,-91],[31,3],[-24,-87],[-47,-84],[-56,-13],[-139,7],[-15,-46],[-47,-39],[-37,-69],[-74,-19],[-51,-39],[-25,18],[3,83],[-28,19],[0,101],[95,127],[-24,23],[-49,-11],[-40,32],[-83,-11],[-54,51],[-25,-36],[-39,44],[-52,4],[-3,39],[-81,21],[-65,-23],[-59,32],[-105,-25],[-93,-58],[-77,-106],[-43,-31],[-62,-65],[-47,33],[-33,81],[-73,94],[-11,61],[-44,74],[-52,106],[-3,50],[-25,53],[-34,19],[-81,84],[-74,-28],[-24,-41],[-74,3],[-67,57],[-127,66],[-58,-9],[-68,50],[-17,36],[-38,1],[-25,44],[-68,22],[-33,-57],[-66,-48],[-25,-50],[-35,37],[-8,83],[-21,25],[-53,2],[-35,36],[-36,72],[-109,101],[-38,-9],[-44,-48],[-24,-51],[-96,-119],[-58,11],[-50,-89],[-32,-107],[-18,-100],[-35,-79],[43,-45],[-12,-92],[47,-60],[147,-82],[153,-53],[78,-39],[-11,-73],[15,-45],[69,-112],[27,-16],[44,26],[110,-24],[86,-3],[28,-32],[-16,-86],[6,-30],[-39,-40],[-11,-114],[-23,-39],[4,-43],[31,-91],[-2,-99],[19,-76],[-52,-104],[-9,-57],[34,-72],[-14,-49],[21,-53],[-18,-51],[-32,-17],[-37,-76],[138,8],[41,48],[78,-24],[-3,-62],[29,-17],[11,-62],[-19,-49],[38,-33],[-1,-37],[46,-75],[190,22],[48,-66],[-21,-27],[-14,-112],[-28,-43],[-58,17],[-36,-17],[5,-69],[77,-40],[63,-22],[11,-49],[-35,-13],[-19,-100],[-38,-36],[-24,-63],[-1,-163],[36,-59],[-20,-46],[65,-48],[-2,-76],[22,-23],[-39,-98],[-31,-28],[37,-53],[24,47],[54,-34],[39,-2],[-17,-57],[11,-35],[45,-6],[-13,-47],[-53,-71],[105,-153],[63,-431],[-19,-20],[-76,26],[-105,-59],[-54,-21],[-1,-55],[-46,-99],[25,-85],[-32,-118],[18,-35],[-58,-69],[-54,-13],[-6,-48],[-56,11],[-84,-17],[-47,-172],[-41,19],[-125,7],[-67,-21],[-88,-62],[-59,-10],[-77,-58],[21,-49],[-49,-47],[0,-104],[-118,27],[-83,70],[-18,-128],[43,-6],[97,-63],[13,-27],[92,-38],[-32,-46],[4,-61],[-99,-7],[-43,27],[-29,-28],[-14,-112],[-53,3],[-44,-45],[-29,-2],[-52,-65],[3,-45],[-193,-192],[-131,-111],[-6,-45],[-57,-213],[-169,-7],[-153,-17],[-33,-32],[42,-59],[-105,-31],[-60,-28],[-83,2],[-95,-110],[-73,-43],[-74,-12],[-16,-41],[8,-47],[-78,-206],[38,-45],[28,-58],[-3,-35],[-36,-74],[-12,-144],[-50,-92],[-2,-42],[-49,-32],[-28,-83],[19,-97],[-22,-79],[14,-37],[-36,-74],[-45,-33],[-38,-95],[14,-75],[-41,-105],[-26,-5],[-98,54],[-29,-4],[-20,-52],[-2,-58],[30,-49],[-50,-82],[2,-75]],[[48876,43189],[-102,15],[-157,7],[-63,-10],[-163,9],[-150,81],[-80,55],[-120,21],[-142,-95],[-87,-43],[-89,-121],[-65,-13],[-87,26],[-74,105],[-31,85],[-9,103],[-28,193],[-36,33],[-24,105],[-20,169],[-39,150],[14,46],[-50,111],[-32,36],[16,40],[4,124],[86,80],[4,95],[-72,-4],[-37,-39],[-119,-72],[-42,-15],[-143,-8],[-24,39],[-15,100],[-9,124],[45,-6],[23,33],[-31,73],[-73,8],[-57,22],[-26,-33],[6,-129],[-29,-53],[-48,-48],[-131,-13],[-64,7],[-39,27],[-8,88],[3,96],[189,95],[14,42],[-40,22],[-41,73],[-34,25],[-46,68],[-1,57],[-81,173],[6,42],[-32,59],[49,65],[-59,7],[-81,53],[15,60],[-45,39],[-9,35],[-110,72],[-52,85],[-15,97],[-70,28],[-48,74],[-72,48],[-50,16],[-22,31],[-111,64],[-79,116],[-47,7],[-36,36],[-94,-16],[-47,14],[-121,-61],[-58,-14],[-76,-53],[-54,43],[-40,-43],[-53,-28],[-38,39],[-45,98],[-85,249],[-69,99],[-38,27]],[[44736,46736],[-47,71],[-52,49],[5,43],[46,24],[64,-14],[28,22],[40,72],[34,28],[71,10],[102,59],[9,50],[-48,125],[-52,73],[-48,44],[-64,84],[-78,67],[-23,61],[18,92],[-5,91],[17,39],[59,65],[26,57],[-24,69],[100,71],[23,40],[-8,52],[43,51],[-39,91],[14,66],[40,24],[37,60],[62,25],[70,44],[18,59],[-33,84],[7,60],[35,41],[114,28],[66,42],[31,34],[42,115],[51,116],[39,34],[71,14],[50,27],[65,102],[103,91],[50,3],[42,-83],[6,-94],[68,-161],[51,-27],[173,85],[54,-9],[23,-45],[-6,-100],[62,-18],[66,13],[115,5],[63,83],[80,62],[42,5],[13,27],[134,90],[14,42],[-72,34],[-39,31],[-16,56],[-76,115],[74,20],[100,42],[120,4],[68,51],[23,36],[-8,131],[-40,77],[-99,20],[-42,36],[-27,88],[-52,36],[-128,-19],[-69,31],[-8,64],[-23,21],[-137,71],[-141,8],[-78,-7],[-21,64],[34,186],[1,75],[-74,56],[-45,46],[-76,41],[-115,36],[-43,64],[-75,39],[-39,39],[17,143],[-98,68],[-72,3],[-28,-17],[-55,11],[-61,-65],[57,-31],[29,-89],[-17,-32],[-42,49],[-53,31],[-36,-9],[-93,25],[-65,-14],[-9,88],[73,-27],[53,4],[106,70],[31,37],[24,76],[83,46],[-29,97],[-26,20],[-80,18],[-62,-39],[-110,37],[-44,26],[13,89],[70,19],[69,60],[34,-29],[43,4],[19,-49],[40,-23],[78,-12],[70,24],[21,69],[28,18],[-5,54],[43,57],[-2,53],[-41,34],[34,130],[-2,43],[19,68],[-42,77],[20,95],[-62,57],[-74,17],[-20,39],[-56,-4],[-117,27],[-27,-56],[-64,-1],[-122,54],[-35,56],[38,90],[69,23],[-5,58],[-52,41],[-56,113],[12,11],[124,27],[137,68],[71,19],[69,4],[61,-20],[92,98],[23,47],[36,19],[121,30],[78,4],[42,21],[0,47],[-40,73],[-14,78],[-60,61],[14,81],[51,80],[-33,51],[32,62],[25,272],[12,37],[-12,57],[36,43],[-26,91],[35,52],[-73,14],[-37,22],[-51,4],[-73,-17],[-28,-42],[-118,-56],[-72,8],[-27,67],[-42,51],[0,49],[30,40],[109,85],[68,9],[57,36],[52,-1],[43,23],[-13,76],[-55,52],[-16,43],[-5,95],[-33,71],[-8,103],[27,93],[19,16],[-20,102],[-2,168],[-54,166],[-91,-10],[-191,-3],[-9,35],[-66,134],[-3,80],[-53,68],[80,84],[12,72],[-28,82],[4,39],[-26,72],[13,87],[20,36],[49,165],[65,-5],[77,46],[51,1],[42,78],[53,-15],[97,24],[39,43],[65,31],[52,11],[46,49],[61,28],[24,29],[23,83],[37,53],[67,34],[-1,51],[-60,76]],[[46174,56927],[24,25],[31,83],[47,55],[28,61],[4,52],[24,49],[-6,51],[76,71],[30,49],[15,55],[-31,92],[9,80],[23,88],[-63,66],[22,62],[-37,52],[0,75],[45,51],[-9,103],[-25,10],[-19,99],[61,86],[-4,82],[13,64],[51,100],[82,5],[76,-71],[106,31],[1,64],[35,90],[39,69],[23,98],[-23,64],[36,40],[-16,23],[10,51],[-53,44],[-3,84],[42,77],[-9,73],[-37,2],[-19,37],[93,6],[31,66],[28,97],[34,43],[1,88],[38,105],[45,21],[26,138],[29,51],[41,25],[81,-7],[42,-23],[56,-121],[-8,-92],[57,-39],[76,51],[18,33],[-25,43],[24,53],[-50,57],[-72,21],[9,36],[49,28],[108,7],[12,127],[-27,73],[50,19],[2,34],[-37,64],[14,59],[109,59],[51,10],[36,-20],[45,20],[45,120],[63,66],[3,71],[-20,66],[24,57],[-33,70],[-21,82],[13,108],[1,86],[19,32],[141,58],[36,72],[48,53],[60,5],[21,-26],[6,-80],[29,-20],[79,-20],[63,29],[56,52],[18,82],[73,21],[88,-67],[44,31],[-4,103],[30,33],[93,-40],[51,5],[63,-39],[7,-78],[15,-30],[-6,-59],[21,-69],[29,-14],[65,28],[24,43],[-11,55],[52,27],[40,-56],[14,116],[124,-10],[38,59],[12,44],[36,28],[33,-13],[13,52],[46,12],[53,-39],[55,9],[1,57],[21,16],[92,-27],[18,-24],[60,-5],[48,29],[-9,57],[15,22],[53,-8],[43,55],[-34,40],[4,82],[138,162],[75,-12],[56,38],[33,80],[52,-27],[13,-82],[31,-8],[51,68],[12,49],[-37,84],[-34,113],[9,26],[50,8],[5,45],[75,77],[-36,74],[5,57],[-55,133],[31,66],[0,87],[98,27],[132,10],[110,43],[-4,82],[54,-6],[44,46],[55,31],[46,59],[98,35],[8,29],[-20,175],[-38,50],[-31,73],[28,83],[44,29],[1,32],[53,-6],[62,12],[40,24],[46,-3],[36,-25],[96,13],[123,134],[91,-26],[58,-3],[53,-18],[45,32],[17,76],[68,40],[1,73],[-52,17],[12,129],[23,45],[-16,71],[89,132],[13,34],[53,20],[19,36],[-7,147],[-101,39],[-83,115],[-86,-30],[-37,35],[2,77],[-24,58],[-69,-2],[-96,-26],[-18,-46],[-96,19],[-33,38],[33,65],[-27,52],[-61,-41],[-44,26],[-32,-31],[-31,48],[17,31],[-14,61],[-37,48],[-41,24],[-12,37],[7,83],[-53,34],[-67,104],[-46,11],[-91,-65],[-63,-18],[-43,10],[-87,-20],[-64,44],[4,44],[-50,59],[-152,14],[-31,50],[-70,-1],[-37,-36],[-47,-87],[-50,-40],[-95,33],[-47,-1],[-4,-69],[-22,-45],[-61,-42],[-51,12],[-45,63],[6,133],[-17,34],[-93,4],[-27,132],[39,32],[54,-5],[29,18],[-6,54],[31,74],[14,109],[111,-2],[23,90],[88,39],[52,109],[-56,73],[23,34],[-33,34],[-110,53],[14,81],[-3,50],[-45,102],[-18,19],[-60,0],[-40,70],[60,75],[-54,41],[27,78],[26,19],[55,-2],[83,39],[36,31],[23,-39],[44,-31],[10,-70],[56,-15],[19,-88],[68,-10],[22,-77],[169,-104],[77,1],[68,-20],[74,47],[79,11],[33,41],[119,37],[83,112],[126,-78],[44,17],[142,23],[40,-42],[87,-38],[-15,-41],[53,-45],[98,-3],[22,-10],[146,24],[62,-20],[132,26],[10,51],[63,23],[53,36],[11,-34],[-28,-48],[62,-42],[19,-43],[39,-9],[88,55],[82,-18],[74,-35],[35,12],[78,-30],[70,1],[79,29],[73,-38],[130,18],[49,-5],[47,27],[53,-3],[71,-52],[9,-36],[115,-16],[47,28],[58,11],[-18,69],[-46,48],[78,11],[139,-16],[74,52],[87,11],[42,75],[42,-6],[30,54],[-52,71],[32,69],[100,23],[74,50],[60,-14],[111,4],[21,53],[78,10],[57,47],[25,42],[40,7]],[[54138,67202],[48,7],[104,-70],[52,-83],[68,-60],[162,-76],[51,-58],[55,-12],[112,27],[31,-4],[163,18],[91,-31],[95,12],[151,46],[66,78],[83,31],[81,12],[6,45],[39,31],[35,78],[-11,48],[29,65],[77,47],[37,54],[45,-14],[70,50],[14,45],[-12,42],[28,74],[30,49],[109,90]],[[56047,67743],[82,-17],[42,19],[97,-7],[33,-20],[31,-51],[91,8],[29,-114],[54,-47],[116,-15],[113,-52],[26,-57],[-34,-36],[1,-86],[17,-48],[98,-131],[-6,-74],[21,-64],[24,-21],[77,-9],[10,-52],[-57,-29],[14,-26],[73,-4],[72,-33],[109,-24],[72,3],[25,-17],[8,-62],[51,-30],[36,22],[50,-20],[1,-51],[56,-70],[6,-67],[63,-69],[-1,-89],[20,-71],[-9,-35],[-63,-56],[-2,-30],[53,-59],[56,-33],[29,-39],[-33,-33],[18,-54],[63,-20],[37,-86],[41,-5],[75,-62],[55,10],[228,-47],[58,-6],[136,-32],[-21,120],[7,69],[29,44],[34,6],[100,26],[117,6],[-20,-47],[69,-79],[14,-48],[3,-86],[-9,-84],[-36,-91],[-15,-83],[-43,-25],[-47,-69],[-20,-58],[-35,-51],[36,-82],[-12,-74],[-31,-57],[-3,-73],[59,-57],[87,-27],[53,89],[84,-6],[24,-86],[75,-85],[-38,-85],[14,-63],[-49,-200],[6,-77],[22,-51],[-7,-45],[-45,-47],[-38,-65],[-17,-54],[17,-61],[70,-54],[52,-68],[78,10],[63,-40],[28,-47],[52,-8],[16,-85],[-28,-72],[5,-55],[72,-166],[-2,-51],[16,-44],[74,28],[13,23],[-11,70],[39,108],[40,4],[37,-33],[-11,-43],[75,-108],[75,16],[50,-35],[66,29],[36,-69],[104,25],[43,35],[50,10],[143,-16],[27,-52],[0,-38],[42,-51],[-10,-86],[-57,-59],[21,-15],[-3,-94],[-22,-36],[-44,-15],[-106,-4],[-33,-40],[-10,-126],[-29,-71],[-73,-46],[-18,-93],[-93,6],[-129,-116],[26,-181],[-17,-46],[-48,-48],[-66,-3],[-61,-55],[-58,-17],[-55,-43],[-158,9],[-49,-16],[-50,15],[-119,-165],[-100,-27],[-13,-33],[-47,-36],[-21,-118],[21,-36],[-9,-36]],[[18579,52204],[10,-96],[-79,-77],[4,-60],[-65,-42],[-68,84],[-70,19],[-100,4],[-71,58],[-150,12],[4,-113],[-51,15],[-51,50],[-45,80],[-35,21],[28,96],[-26,21],[-23,-87],[-71,-18],[-45,68],[48,105],[0,74],[-37,13],[-21,127]],[[17665,52558],[15,52],[-18,32],[-107,50],[-63,84],[24,62],[59,36],[42,-22],[63,-62],[56,22],[4,57],[100,-6],[34,14],[72,-7],[7,94],[27,34],[75,17],[58,-11],[31,51],[8,63],[48,-13],[29,-77],[-24,-113],[69,5],[28,47],[73,-1],[59,-19],[6,-101],[-45,-12],[-20,33],[-54,-42],[-37,-80],[-46,-15],[-84,-108],[-53,20],[-64,-49],[-23,-72],[37,-41],[-7,-114],[37,-27],[41,68],[44,-55],[54,-3],[120,80],[-39,87],[102,-9],[45,11],[55,-19],[52,-1],[66,-40],[-4,-42],[-33,-32],[-69,-26],[-14,-41],[19,-83],[59,-30]],[[17081,53188],[49,136],[28,14],[-12,69],[23,80],[70,93]],[[17239,53580],[49,-31],[91,-15],[40,-68],[-16,-24],[-57,20],[-53,-78],[36,-33],[100,21],[25,-24],[-8,-39],[-53,-46],[27,-83],[-47,-10],[-145,23],[-68,-27],[-79,22]],[[10135,54609],[48,-21],[82,14],[20,-30],[119,-57],[-79,-39],[-77,-1],[-77,29],[-63,-6],[-13,-41],[-55,-1],[-43,41],[-48,-1],[-4,35],[32,42],[158,36]],[[10380,54584],[49,45],[32,-13]],[[10461,54616],[-81,-32]],[[21954,34745],[63,-12],[114,19],[7,71],[55,42],[23,-63],[56,-15],[7,-47],[40,5],[28,64],[50,-4],[38,-44],[15,-117],[30,-28],[-8,-105],[-33,-30],[-8,-65],[68,-46],[39,-49],[16,-61],[-20,-51],[-91,-63],[-4,-28],[60,-95],[38,-86],[0,-39],[-26,-36],[33,-88],[-7,-50],[27,-29],[59,-3],[84,-51],[-21,-39],[21,-55],[-18,-53],[17,-64],[51,-80],[-28,-39],[-59,-4],[-60,16],[-95,-45],[-32,-62],[-39,-3],[22,-62],[144,-54],[55,-144],[19,-28],[-41,-86],[-49,-61],[-31,-12],[14,-91],[-18,-56],[-27,-15],[23,-126],[30,-26],[-1,-33],[27,-56],[-49,-39],[2,-33],[-104,-120],[46,-61],[-44,-69],[-68,0],[-8,-43],[-63,-20],[-48,-78],[-33,23],[4,41],[-65,61],[-54,-10],[-23,-55],[29,-74],[-14,-33],[-77,36],[-49,4],[-15,-27],[-71,-6],[-67,-70]],[[21840,31790],[-43,47],[-61,-1],[-65,29],[0,124],[46,60],[-39,13],[-26,57],[32,27],[-104,82],[-49,3],[-75,66],[11,36],[-20,44],[9,27],[-54,12],[-26,52],[-50,25],[-58,8],[-21,29],[-50,17],[32,38],[-25,30],[54,16],[34,34],[-5,46],[73,50],[-13,102],[-27,-6],[19,-75],[-22,-16],[-25,122],[-63,236],[-28,79],[-50,198],[-37,117],[-46,98],[-34,24],[-100,-37],[-38,36],[-86,42],[-20,52],[-50,20],[-10,55],[92,-53],[23,51],[36,-32],[52,27],[17,-41],[46,26],[50,-27],[100,31],[50,-17],[99,16],[-53,31],[39,59],[-32,15],[-75,-70],[-43,6],[-58,41],[-60,14],[-61,77],[-29,-14],[-68,24],[-64,4],[13,110],[96,84],[-74,4],[-31,-49],[-65,20],[-42,-33],[-43,37],[-23,122],[-38,121],[-28,29],[-37,122],[49,11],[30,30],[-11,88],[-63,-74],[-30,39],[-84,258],[-26,25],[-27,101],[-42,19]],[[20315,35040],[64,-4],[31,-18],[62,9],[50,-15],[29,46],[100,0],[40,-28],[41,7],[20,28],[65,30],[47,-9],[21,44],[1,47],[31,20],[9,39],[59,84],[39,-17],[-3,-40],[44,-50],[-25,-69],[21,-20],[84,-20],[137,-3],[21,-71],[29,-47],[-6,-57],[53,-37],[1,-73],[15,-34],[-24,-60],[25,-60],[53,-33],[45,-45],[96,-17],[28,18],[14,45],[153,21],[82,50],[75,24],[12,20]],[[16617,56241],[99,-37],[6,-49],[-30,-59],[6,-41],[-45,-68],[-32,44],[-47,181],[43,29]],[[15420,58029],[36,-50],[9,-50],[-49,-9],[-22,63],[26,46]],[[16788,58234],[86,-28],[0,-47],[-89,-14],[-43,65],[46,24]],[[15129,58560],[30,-58],[-13,-62],[-42,86],[25,34]],[[5334,61333],[56,-33],[51,-101],[-30,-14],[-44,-59],[-106,44],[-58,41],[-15,35],[20,32],[126,55]],[[4129,61390],[62,-7],[34,-34],[-28,-49],[-59,10],[-41,27],[32,53]],[[3518,61404],[43,-14],[-10,-46],[-84,24],[-55,-30],[-1,-89],[-47,17],[-11,52],[23,24],[101,54],[41,8]],[[4214,61598],[112,-15],[31,-38],[-50,-38],[-55,13],[-72,49],[34,29]],[[6535,61692],[6,-55],[-58,9],[18,45],[34,1]],[[6411,61699],[49,-30],[36,-63],[0,-44],[-96,-24],[-76,2],[17,128],[70,31]],[[6746,61855],[58,-27],[8,-71],[-75,-56],[-77,-28],[-82,-4],[-26,59],[36,70],[98,24],[60,33]],[[8396,63428],[-2,-22],[-58,-47],[-17,16],[77,53]],[[8372,63648],[-40,-123],[-49,-82],[-52,-5],[10,71],[27,40],[104,99]],[[8497,63700],[-47,-57],[-19,21],[66,36]],[[1376,64670],[24,-46],[148,-11],[28,-30],[10,-78],[-157,-41],[10,-46],[-61,16],[-67,51],[0,70],[63,-39],[22,16],[-37,75],[17,63]],[[1488,64691],[78,-24],[21,-60],[-54,14],[-63,52],[18,18]],[[1183,64782],[80,-21],[30,-80],[-89,7],[-24,34],[3,60]],[[1491,64906],[40,-63],[61,-43],[13,-64],[-61,48],[-34,-16],[-37,56],[-38,30],[-12,50],[68,2]],[[1299,65025],[65,-30],[-6,-21],[50,-59],[-30,-54],[-24,93],[-55,71]],[[1186,65228],[46,-30],[6,-47],[-61,-23],[-5,66],[14,34]],[[1061,65321],[51,-28],[29,-62],[-15,-50],[-2,-67],[-17,-89],[-69,5],[-26,105],[8,81],[-47,-14],[-53,-66],[-54,2],[-30,39],[50,9],[35,-18],[33,99],[107,54]],[[1090,65402],[22,-58],[-47,-21],[-2,60],[27,19]],[[1086,65612],[-18,-65],[-45,-13],[-21,28],[84,50]],[[1095,65775],[12,-84],[-71,-92],[-87,-62],[-19,-49],[-26,3],[-1,74],[44,80],[33,7],[48,41],[14,62],[21,6],[18,-13],[9,4],[5,23]],[[1007,65790],[33,-35],[-18,-55],[-37,70],[22,20]],[[999,65885],[32,-8],[6,-81],[-94,6],[-24,49],[80,34]],[[1104,65897],[22,-14],[0,-81],[-45,10],[-2,-23],[7,-9],[0,-28],[-23,13],[-20,-5],[-4,15],[9,76],[56,46]],[[637,66589],[69,-52],[77,-27],[52,34],[52,9],[-5,-73],[-33,-93],[10,-114],[-102,-271],[-70,-77],[-49,-29],[-44,-115],[-61,-36],[-88,-10],[-43,-30],[-59,19],[-17,40],[44,44],[-38,29],[-44,-40],[-35,-6],[-89,-46],[-18,35],[-112,23],[-30,28],[-4,52],[36,55],[83,19],[66,-8],[12,22],[110,12],[45,78],[41,33],[74,94],[8,46],[86,60],[4,86],[-15,28],[52,92],[6,72],[29,17]],[[450,66662],[18,-9],[34,-71],[-24,-55],[0,-96],[32,-120],[-107,-30],[-35,-48],[-67,-35],[-38,43],[30,42],[-7,46],[19,51],[-16,32],[50,145],[75,27],[-4,32],[-26,19],[66,27]],[[1153,66689],[39,-19],[54,-86],[-39,-59],[12,-37],[24,-16],[-19,-78],[-109,-71],[-85,25],[-102,-1],[71,121],[-25,65],[-7,59],[28,36],[158,61]],[[775,66875],[78,-30],[29,-23],[0,-36],[51,-63],[-50,-114],[-91,-81],[-86,30],[-28,49],[-75,-1],[-50,-45],[-36,4],[77,75],[-15,72],[53,51],[62,39],[11,52],[70,21]],[[229,66883],[25,-26],[-14,-45],[-50,-44],[-15,-33],[-65,20],[-1,74],[120,54]],[[973,67110],[25,-16],[-28,-162],[14,-43],[-37,-45],[-56,-23],[-37,31],[-79,28],[-74,-17],[-12,-61],[-62,1],[2,64],[-21,59],[20,45],[44,14],[68,-1],[70,24],[56,34],[26,48],[81,20]],[[1292,67139],[26,-47],[54,-8],[8,-13],[-3,-21],[12,-2],[67,3],[9,-32],[-138,-169],[-45,17],[-44,-76],[-49,29],[-63,12],[-14,92],[99,48],[63,54],[12,28],[-31,65],[37,20]],[[1152,67223],[-7,-31],[26,-53],[54,-15],[4,-69],[-59,-69],[-54,-20],[-27,-44],[-32,-113],[-100,-45],[-50,13],[-12,34],[41,17],[54,61],[-3,68],[10,115],[19,18],[-49,24],[-72,-12],[58,124],[199,-3]],[[637,67253],[62,-30],[97,-10],[121,10],[-57,-130],[-59,-52],[-70,-22],[-75,-6],[-48,-20],[-30,-73],[22,-54],[-3,-57],[-42,-88],[5,-76],[-67,-44],[-18,62],[-31,4],[-45,-17],[-20,-13],[0,-10],[27,-17],[-1,-24],[-79,-27],[-45,-146],[13,-56],[-17,-31],[0,-48],[-21,-53],[43,-63],[-41,-63],[-65,5],[-69,73],[-48,31],[-52,92],[39,72],[84,51],[-5,46],[-25,27],[-32,116],[5,67],[20,32],[69,-1],[25,53],[48,36],[15,84],[63,71],[13,68],[67,20],[108,-26],[60,40],[15,50],[4,100],[40,47]],[[16025,59072],[-1,1]],[[16024,59073],[-32,67],[-6,106],[-14,39],[3,93],[16,138],[40,138],[31,188],[77,282],[52,104],[1,1],[1,1],[0,1],[2,2],[1,3],[4,6],[0,0],[2,3],[0,0],[7,11],[0,0],[2,2],[0,1],[1,2],[1,1],[0,0],[0,1],[1,1],[0,1],[2,3],[0,0],[2,3],[0,0],[1,1],[1,1],[0,1],[1,0],[1,2],[1,1],[4,5],[1,1],[3,2],[2,2],[1,1],[0,1],[2,2],[0,0],[91,74],[56,21],[2,0],[90,4],[75,-21],[152,-110],[103,-10],[77,-34],[44,9],[53,73],[30,72],[64,102],[68,35],[30,-27],[80,-17],[80,-51],[62,29],[48,5],[47,52],[29,60],[0,34],[-91,-92],[-43,-14],[-62,1],[-29,47],[-23,106],[-33,2],[-123,-67],[-104,-79],[-98,-54],[-139,20],[-99,3],[-61,53],[-63,75],[-7,36],[-71,21],[-106,-20],[-46,-22],[-84,-74],[-46,-20],[-13,38],[-47,-60],[-42,11],[15,106],[-51,-45],[3,-66],[-61,-54],[-63,-99],[-12,-35],[-49,13],[73,163],[-87,1],[-79,130],[-52,99],[-111,35],[-41,-11],[-16,36],[47,46],[35,84],[1,34],[-49,40],[-18,53],[-47,-26],[85,-95],[-94,-60],[-23,-50],[13,-70],[42,-26],[86,3],[20,-58],[-11,-133],[12,-91],[-59,-100],[-38,53],[-31,13],[-23,68],[20,32],[-13,65],[-49,-10],[18,-72],[-34,-57],[14,-90],[63,-30],[34,-43],[-16,-49],[5,-43],[-37,-12],[-19,59],[-48,16],[-21,-45],[12,-51],[-53,-64],[-68,47],[-28,-2],[12,99],[-26,34],[-11,-125],[42,-76],[0,-34],[-36,-35],[15,-36],[-22,-60],[-23,-122],[-62,-237],[-24,-108],[-18,-144],[-30,27],[-24,87],[4,83],[-36,25],[13,77],[20,48],[-57,53],[-13,69],[166,92],[41,-43],[24,35],[-23,36],[17,30],[-3,70],[-101,-56],[10,-52],[-73,-46],[-77,-37],[-22,-36],[11,-98],[-34,-12],[-89,-64],[49,-20],[39,30],[27,-13],[-39,-184],[-29,-31],[47,-29],[18,-55],[43,-41],[52,-103],[7,-50],[-11,-52],[15,-136],[3,-175],[37,-106],[1,-35],[-31,-20],[-1,1],[0,0],[-1,2],[0,1],[-4,8],[-8,20],[-8,21],[-1,1],[-1,3],[-1,2],[0,0],[-1,2],[0,1],[-1,0],[-1,4],[-17,53],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-4,-94],[43,-108],[76,-131],[18,-89],[66,-93],[12,-58],[-139,-220],[-16,-61],[4,-58],[-40,-151],[-70,-179],[-41,-65],[-94,-110],[-104,-88],[-15,-52],[-169,-202],[-44,-94],[5,-55],[-49,-37],[0,-49],[-57,-74],[25,-65],[82,-38],[17,-67],[-105,-46],[-48,-44],[-66,-26],[-31,-46],[-112,-40],[-52,-35],[-51,0],[-47,-41],[-21,-41],[-30,15],[-42,-23],[-134,-25],[-101,-41],[-33,-46],[-37,2],[-63,-40],[-107,-45],[-8,14],[-92,-55],[37,-71],[-76,2],[-12,-30],[-66,-25],[-16,-24],[-148,7],[-90,-50],[-27,-4],[-52,-44],[-86,1],[-49,-28],[-8,-64],[-57,-23],[-148,-34],[-72,-35],[-5,1],[-46,-2],[-51,-25],[-42,22],[-48,-19],[-11,-48],[34,-37],[-29,-24],[-55,7],[-43,-52],[-17,-58],[-53,-34],[-53,2],[-41,-51],[-153,-13],[-36,42],[-31,-8],[15,-55],[-36,-25],[-183,-28],[-234,-116],[-72,-20],[-43,-31],[-66,-3],[-31,-56],[-128,-23],[-63,-40],[-19,-59],[-189,4],[-62,-31],[12,-43],[-75,-12],[-38,-20],[-27,17],[-110,16],[0,0],[-1,1]],[[10380,54584],[26,35],[-26,21],[-80,-29],[-118,-20],[-40,16],[-9,27],[-49,-27],[-93,-16],[-45,-25],[-21,-52],[-106,-33],[-13,-54],[-54,1],[-65,35],[-38,41],[-130,45],[-52,-10],[-117,62],[-35,8],[-118,90],[-53,14],[-44,-5],[-31,22],[-78,10],[-27,21],[-85,18],[-23,27],[-58,20],[-49,43],[-32,-12],[-35,31],[-141,69],[-71,54],[-15,-11],[-119,59],[-50,38],[-118,123],[-77,32],[-29,-7],[-59,52],[-90,50],[-270,204],[-47,58],[-45,19],[-114,103],[-141,118],[-74,88],[-141,104],[-114,129],[-31,19],[-166,193],[-33,27],[-310,363],[-148,185],[-364,434],[-24,50],[-25,9],[-218,250],[-150,144],[-174,194],[-84,84],[-64,0],[-50,37],[-125,115],[-151,149],[-97,104],[-71,43],[-88,77],[-103,100],[-87,112],[-90,50],[-99,82],[-205,184],[-124,123],[-92,99],[-334,374],[-124,157],[-110,101],[-133,169],[-53,49],[-135,174],[-49,45],[-20,43],[15,48],[-46,89],[-31,111],[25,82],[34,-3],[19,35],[0,99],[45,91],[57,96],[33,24],[45,67],[202,117],[24,30],[49,15],[-19,-97],[-28,-10],[-86,-80],[43,-83],[51,-56],[49,-13],[63,34],[38,34],[52,-39],[91,11],[28,37],[35,3],[27,35],[68,1],[34,-123],[-62,-32],[-36,-74],[1,-44],[-24,-27],[0,-73],[-36,-53],[33,-60],[134,-123],[75,-32],[57,5],[68,38],[86,9],[39,17],[26,47],[38,-4],[62,34],[34,35],[22,102],[98,-33],[124,-7],[9,-16],[74,2],[49,21],[27,35],[44,19],[46,-22],[79,31],[5,69],[39,44],[46,20],[38,65],[-27,25],[7,62],[-33,57],[52,3],[60,-64],[43,-22],[33,-147],[53,5],[51,-21],[45,-54],[66,6],[-4,64],[72,-32],[68,2],[20,113],[40,28],[104,2],[-24,100],[35,51],[-28,74],[49,5],[47,28],[29,47],[48,-64],[-6,-67],[25,-44],[58,14],[63,-78],[51,-36],[53,6],[32,43],[49,105],[-2,34],[47,17],[72,-35],[63,9],[62,63],[62,27],[6,62],[38,58],[81,46],[4,54],[30,5],[78,50],[128,23],[69,4],[45,52],[28,-33],[61,-30],[270,6],[36,20],[58,-7],[31,21],[46,92],[34,23],[5,66],[30,18],[-11,37],[75,50],[95,155],[-14,45],[38,51],[-48,7],[10,46],[50,-6],[-2,77],[30,37],[33,-9],[81,60],[29,35],[1,54],[61,107],[78,123],[-5,34],[67,126],[78,111],[41,37],[72,34],[59,57],[32,109],[39,57],[49,47],[58,99],[73,196],[8,49],[-186,-41],[-51,-32],[-119,-119],[-18,-110],[8,-10],[-4,-125],[-36,-73],[-75,-36],[-68,-19],[-85,25],[-57,33],[-8,23],[-63,-23],[-72,43],[-60,64],[-61,27],[-38,-76],[-60,-33],[-121,-2],[-53,-34],[-75,38],[-36,35],[-79,3],[89,-72],[17,-41],[-26,-33],[-97,-61],[-89,-1],[-47,-18],[-54,1],[-23,-20],[-63,-12],[-27,21],[-127,-7],[-142,-27],[-54,0],[-10,-30],[-120,-78],[-90,27],[-43,2],[-101,-38],[-54,-29],[-3,-2],[-1,-1],[-5,-2],[0,0],[-2,-1],[-8,-3],[-5,-2],[-1,0],[-4,-2],[-53,-6],[-96,-79],[-85,-41],[-30,-64],[8,-38],[-117,-165],[-14,-52],[-62,16],[-78,58],[-63,1],[-57,35],[-43,-11],[-45,16],[-5,-41],[-133,20],[-62,45],[-113,47],[-70,-4],[-103,10],[27,-35],[-72,-19],[-52,22],[-51,-6],[-76,69],[-135,74],[-114,33],[-42,-9],[-104,47],[-67,0],[-125,-33],[-29,15],[-133,32],[-95,9],[-63,33],[-71,53],[-110,48],[-122,96],[-141,84],[-59,42],[-57,24],[-91,53],[-62,26],[-159,96],[-63,47],[-59,27],[-251,159],[-118,80],[-101,49],[-83,22],[-104,95],[-127,96],[-176,107],[-41,95],[-55,29],[-153,137],[-2,43],[54,29],[2,-68],[50,20],[-29,60],[74,-1],[66,12],[21,47],[41,15],[-14,39],[-57,-22],[-41,96],[7,19],[108,-1],[-43,39],[-17,67],[-42,-16],[14,98],[-14,33],[-40,3],[-35,35],[-27,70],[-91,39],[-32,-53],[-57,52],[28,47],[-22,74],[-90,11],[-11,96],[-24,2],[-65,55],[-24,50],[6,62],[-22,61],[-3,70],[-43,96],[37,-2],[-6,100],[-17,18],[-5,66],[25,43],[-15,110],[34,38],[9,48],[61,19],[33,56],[4,41],[70,39],[43,84],[81,39],[57,14],[33,65],[99,41],[90,155],[75,48],[35,37],[156,35],[29,33],[-34,33],[13,33],[-104,9],[-30,15],[-78,2],[-21,-34],[-61,-31],[-17,-27],[-67,-10],[-111,17],[-38,-18],[-45,-54],[-37,-91],[-111,-162],[-35,10],[6,48],[-39,46],[4,42],[30,26],[-9,65],[-29,30],[71,12],[61,48],[22,60],[34,30],[22,66],[43,18],[111,72],[23,51],[-51,81],[-69,15],[4,-72],[-32,8],[-74,-2],[1,26],[-9,9],[-51,9],[-24,48],[51,79],[440,0],[290,1],[19,7],[32,615],[2,8],[26,560],[-2,48],[-22,37],[158,72],[42,-5],[38,21],[54,-139],[0,-96],[33,-139],[29,-31],[72,7],[23,40],[38,141],[29,52],[44,38],[106,69],[51,-53],[45,-65],[48,-150],[86,-40],[62,25],[66,60],[193,107],[22,-1],[351,-133],[429,167],[245,-40],[98,7],[133,28],[46,-2],[65,-34],[63,-10],[101,16],[191,43],[91,33],[61,-39],[410,-380],[55,-47],[302,0],[248,-5],[275,2],[235,-5],[81,32],[94,73],[33,80],[59,115],[72,183],[45,17],[110,16],[123,27],[136,52],[96,9],[215,92],[180,22],[73,0],[110,61],[103,48],[122,23],[171,56],[123,30],[116,47],[96,-48],[-28,-82],[-44,-86],[-75,-54],[35,-116],[30,-74],[16,-123],[-28,-67],[29,-26],[55,-14],[177,-79],[92,-17],[71,0],[123,-15],[46,15],[92,-4],[87,7],[189,30],[53,47],[44,19],[70,3],[67,40],[10,33],[-81,40],[-14,86],[147,102],[16,24],[114,89],[54,8],[90,48],[54,-54],[46,-7],[81,8],[77,38],[34,59],[42,36],[126,36],[36,43],[8,47],[-56,67],[-91,7],[-207,-9],[-105,38],[-12,28],[2,77],[25,138],[4,81],[-63,73],[19,98],[-17,72],[7,56],[75,122],[95,32],[144,88],[83,75]],[[10775,70032],[45,-47],[194,-78],[94,-24],[374,-139],[46,52],[29,58],[32,27],[112,43],[41,-104],[48,-24],[34,27],[36,-5],[28,30],[57,13],[108,81],[85,17],[52,41],[128,5],[53,14],[53,-32],[118,22],[55,-49],[69,26],[105,-71],[20,-50],[42,-26],[91,25],[112,57],[110,-1],[144,57],[53,6],[52,-38],[17,-59],[-22,-94],[36,-20],[94,-7],[43,-42],[39,75],[-23,102],[32,89],[38,13],[46,-39],[68,15],[52,-30],[-27,-62],[58,-75],[122,43],[97,73],[-13,40],[16,41],[49,33],[125,36],[43,41],[121,-35],[26,-87],[-36,-25],[9,-61],[117,-76],[32,-7],[95,9],[40,-71],[90,-25],[113,41],[51,50],[70,-48],[96,6],[70,-36],[47,7],[33,-24],[59,11],[34,44],[51,-19],[-18,-62],[-26,-34],[-104,-32],[-51,58],[-88,-4],[-95,-74],[76,-117],[68,31],[19,-77],[139,15],[4,52],[90,-13],[105,-203],[43,-1],[87,30],[79,-15],[21,-43],[-36,-56],[-7,-72],[72,-88],[28,-67],[3,-54],[85,-7],[75,17],[9,33],[-35,125],[41,-11],[9,67],[105,157],[119,-66],[53,-61],[260,-63],[127,14],[17,-30],[-18,-43],[3,-87],[48,-109],[41,-62],[55,-56],[60,-15],[90,13],[158,-11],[51,27],[145,3],[60,-20],[60,-37],[86,-98],[37,38],[45,12],[117,76],[52,20],[-14,44],[-87,67],[57,52],[42,60],[-5,46],[-31,72],[30,23],[88,99],[34,-68],[108,0],[23,29],[138,86],[17,-13],[-2,-73],[32,-62],[6,-95],[-9,-48],[-36,-12],[-43,-88],[49,-36],[48,5],[60,-70],[66,-23],[92,-48],[76,19],[76,77],[76,-42],[-56,-56],[-20,-63],[-89,3],[-9,-101],[-42,-31],[-82,38],[-23,-11],[-23,-109],[-85,-68],[-56,-97],[38,-26],[-73,-40],[-33,-140],[30,-38],[95,-88],[25,-49],[89,-69],[30,-3],[61,-41],[74,-19],[31,7],[88,-40],[-55,-123],[-30,-36],[-1,-48],[83,-50],[23,-33],[86,-50],[84,65],[59,-2],[59,94],[73,43],[30,78],[-10,84],[12,43],[128,-10],[0,-96],[100,-61],[63,-84],[-17,-137],[5,-69],[41,-92],[-9,-82],[3,-118],[-46,-29],[-43,3],[-36,-43],[-99,-200],[36,-62],[12,-65],[-44,-119],[55,-97],[52,10],[38,57],[76,-18],[43,-68],[69,-37],[15,-50],[67,-55],[23,-65],[24,-16],[61,6],[31,-37],[2,-93],[-14,-61],[16,-49],[-38,-38],[45,-73],[49,-24],[97,81],[67,86],[24,8],[116,-5],[39,-11],[86,-79],[68,-33],[-40,-59],[-1,-127],[-42,-49],[-5,-123],[79,-67],[0,-39],[-54,-28],[-12,-93],[-30,-81],[76,-46],[58,44],[94,27],[38,-12],[48,-144],[33,-24],[29,47],[114,132],[68,-94],[42,4],[121,43],[37,-26],[-2,-37],[113,-136],[38,-68],[9,-40],[57,-61],[-3,-60],[74,-5],[92,21],[14,18],[4,79],[13,28],[57,31],[32,-17],[46,-67],[12,-73],[63,-20],[73,-13],[52,-106],[38,20],[3,-62],[153,12],[62,-16],[27,-65],[59,-18],[23,-32],[13,-148],[-55,-79],[-8,-58],[16,-50],[70,-14],[35,-68],[103,-22],[23,22],[1,54],[67,79],[157,-53],[45,-27],[37,-61],[28,-101],[32,-44],[-23,-48],[2,-45],[102,-61],[47,-65]],[[22700,63681],[18,-79],[80,-48],[23,-106],[57,-90],[-51,-11],[-57,-49],[23,-44],[45,-44],[7,-36],[47,-41],[26,-49],[69,-41],[68,74],[50,16],[24,-19],[48,24],[42,-41],[13,-74],[47,-140],[-52,-170],[-96,-22],[0,-93],[-52,-99],[-82,-115],[-23,-151],[-45,-88],[-3,-101],[-11,-19],[-64,-9],[-133,30],[-10,-21],[-114,11],[-61,24],[-48,-11],[-33,-36],[4,-43],[-78,-42],[-38,-112],[-29,-14],[-17,-55],[-54,11],[-29,-66],[-70,-33],[-57,-49],[-15,-58],[-96,27],[-20,44],[-61,8],[-79,47],[-65,5],[-83,-34],[-14,-47],[10,-52],[-33,-33],[9,-65],[65,38],[16,36],[98,-8],[16,-77],[-34,-11],[-9,-80],[82,14],[22,-27],[-20,-66],[16,-47],[67,-49],[27,3],[3,58],[36,68],[57,11],[-1,-66],[19,-30],[43,39],[52,8],[-14,80],[30,52],[50,-44],[1,-115],[43,-11],[27,22],[51,-3],[62,-25],[38,-33],[36,-123],[-59,27],[-7,-54],[-59,-36],[-35,11],[-14,-83],[-39,-2],[-36,38],[-6,-77],[-26,-19],[-10,-69],[-17,-13],[-211,41],[-19,79],[-45,19],[-18,55],[-45,5],[-17,-41],[-87,-8],[15,-74],[-29,-41],[-7,-99],[-27,0],[0,-77],[20,-38],[51,-30],[9,-72],[-18,-109],[141,-11],[33,-25],[-3,-99],[16,-82],[32,-19],[-5,-60],[-26,-55],[17,-30],[-8,-63],[13,-47],[82,36],[57,-17],[39,-57],[-48,-17],[-22,-44],[5,-41],[-94,-27],[12,-50],[-59,-19],[-32,-44],[-57,-25],[-3,-65],[61,-11],[137,-48],[-2,-43],[-37,-22],[10,-61]],[[22039,59353],[-29,-3],[-147,-61],[-193,-58],[-88,-66],[-160,-72],[-71,-44],[-144,-76],[-83,-8],[-74,-62],[-59,-8],[-83,8],[-50,-14],[-65,-45],[11,-52],[52,7],[42,-46],[-12,-26],[27,-83],[-43,-36],[56,-82],[69,-49],[23,-30],[70,-44],[23,-40],[6,-129],[-46,-87],[-57,-24],[-37,12],[-56,-34],[-60,26],[-107,-20],[-47,-37],[71,-89],[66,-16],[34,-175],[60,-166],[40,-59],[183,68],[2,26],[101,2],[6,-41],[81,36],[6,72],[26,3],[17,-57],[49,-6],[-15,77],[81,-6],[75,47],[80,-12],[79,38],[76,-11],[162,1],[25,-20],[64,4],[18,23],[88,8],[50,-87],[32,-34],[70,30],[45,49],[66,-55],[50,-3],[23,43],[60,49],[73,28],[24,-93],[66,-8],[-8,-80],[-21,-94],[-53,-23],[-28,-40],[-125,-15],[-34,-39],[-70,-3],[-21,53],[-58,-11],[-1,-65],[-81,3],[-57,29],[-60,-14],[-33,-39],[-52,3],[-21,32],[-68,-9],[-7,-41],[-151,30],[-35,88],[-50,-94],[-16,-93],[-23,-52],[-44,5],[-94,-25],[-77,-35],[-27,-27],[-73,-17],[-24,-73],[6,-117],[-19,-54],[-13,-129],[-55,-48],[-155,-89],[-125,30],[-97,-10],[15,-98],[-60,-80],[4,-103],[55,-1],[-50,-91],[-39,1],[-59,38],[-24,-51],[-37,-16],[-99,14],[-43,-4],[24,-61],[-42,-52],[-53,4],[-34,44],[-119,6],[-36,-27],[-131,-48],[4,80],[-66,19],[-24,70],[-23,10],[-69,-41],[2,-54],[84,1],[45,-64],[19,-70],[62,11],[46,-8],[8,-49],[70,3],[54,-32],[58,44],[21,-20],[78,-16],[31,-84],[98,-52],[43,13],[60,-14],[73,65],[4,-94],[-60,-58],[65,-78],[124,-105],[94,-49],[102,-13],[27,-52],[-45,-32],[-25,-59],[5,-53],[76,-70],[39,-62],[14,-52],[0,-146],[52,-33],[4,-84],[-23,-38],[-7,-75],[9,-81],[24,-32],[9,-72],[-107,-73],[-63,28],[-56,2],[-43,-38],[-13,-53],[-38,-53],[-77,31],[-75,-32],[11,-79],[59,6],[21,-74],[-15,-46],[12,-82],[-30,-30],[-48,-7],[-72,-49],[-70,3],[-27,-40],[-59,-34],[-59,-62],[-39,26],[-136,17],[-92,-55],[-39,-5],[-55,53],[-53,11],[-26,129],[-28,51],[-114,77],[-64,24],[-42,-15],[-67,86],[-53,15],[-119,-77],[-41,87],[37,40],[-55,122],[-27,18],[-62,-29],[-42,-51],[34,-31],[-48,-60],[-14,-51],[-77,-17],[-57,-31],[-4,-39],[93,-70],[47,-115],[54,-2],[96,-43],[19,-77],[-15,-80],[70,-13],[-106,-102],[14,-74],[-101,-111],[-67,-147],[-4,-57],[-26,0],[-93,-59],[-24,-35],[1,-68],[60,43],[26,-9],[39,-171],[0,-67],[43,-150],[-46,-21],[-16,-77],[8,-99],[29,-76],[-13,-42],[-65,-4],[-42,-17],[-10,51],[-72,-55],[-34,5],[-19,61],[-33,-52],[-61,22],[-32,-7],[-62,19],[-60,-43],[-16,-85],[11,-80],[-94,-57],[-21,-44],[-97,7],[-37,-28],[-38,-2]],[[17665,52558],[-106,21],[-50,22],[-86,11],[-20,-17],[-58,19],[-46,-16],[0,-56],[-80,-1],[-26,-70],[-37,-25],[-17,-105],[-100,-32],[-1,-91],[-53,20],[-96,5],[-77,18]],[[16812,52261],[23,80],[8,128],[30,47],[-12,106],[-17,66],[43,106],[9,80],[33,92],[-7,54],[65,103],[94,65]],[[17239,53580],[105,125],[-9,113],[10,47],[40,58],[6,36],[-11,151],[-84,301],[-37,88],[-23,105],[-30,50],[7,44],[-42,76],[-29,89],[-4,63],[-47,139],[-59,114],[-21,62],[4,126],[66,14],[85,56],[-66,14],[-122,-69],[-4,-63],[-34,3],[-29,40],[-68,169],[-10,83],[-24,44],[-21,107],[13,73],[107,-3],[-33,32],[-65,24],[-107,-21],[-22,19],[37,47],[-14,91],[20,25],[4,78],[35,52],[-88,58],[-40,11],[-60,-19],[-26,-117],[9,-61],[-15,-34],[9,-44],[-27,-44],[-58,14],[-36,37],[-10,97],[6,92],[-16,19],[-4,154],[-7,21],[18,173],[-44,-12],[-51,82],[5,76],[-36,36],[1,75],[16,55],[107,131],[12,141],[77,79],[62,92],[65,36],[46,104],[1,2],[10,10],[-27,-11],[-33,-54],[-39,-2],[-87,-49],[25,107],[20,34],[1,1],[26,35],[23,135],[0,3],[11,21],[0,0],[1,2],[0,0],[71,24],[7,0],[44,9],[-4,12],[-1,-1],[-56,10],[-22,23],[0,0],[-54,-17],[-39,-36],[-109,46],[-66,72],[0,55],[-18,44],[68,101],[7,32],[38,14],[35,-13],[46,43],[46,-1],[122,92],[0,0],[65,-50],[94,20],[1,1],[0,0],[4,15],[138,-11],[70,22],[50,31],[2,1],[3,1],[1,1],[1,1],[1,0],[0,1],[41,52],[-129,-46],[-68,7],[-66,24],[-73,77],[-22,2],[-92,-43],[-48,12],[-63,-8],[-44,14],[-39,-20],[-98,4],[-89,12],[-148,-62],[-36,-27],[-42,-4],[-41,29],[-45,56],[-4,61],[-19,40],[45,89],[38,27],[14,52],[0,33],[13,47],[0,2],[26,108],[0,0],[1,3],[1,1],[1,1],[2,6],[0,1],[1,1],[3,6],[0,1],[1,1],[1,1],[0,1],[0,0],[5,6],[0,0],[1,1],[0,0],[2,1],[0,1],[1,1],[17,30],[1,1],[0,0],[53,51],[71,88],[49,44],[41,104],[-5,49],[27,35],[-77,74],[-8,36],[-73,-70],[5,-74],[-19,-54],[-39,-19],[-93,-16],[-111,12]],[[22167,61086],[-13,88],[-51,-22],[31,-66],[33,0]],[[34793,92269],[56,-29],[7,-25],[-82,-131],[19,-44],[-17,-58],[-142,-95],[-28,-34],[-18,-70],[-88,-104],[-85,-176],[-64,-29],[-34,-49],[-86,0],[-47,-88],[26,-19],[-64,-109],[29,-42],[-60,-31],[-70,-6],[-61,-34],[-94,-77],[-126,-16],[-101,-47],[10,-56],[-43,-111],[-41,-67],[-56,-28],[-13,-58],[-109,-138],[-50,-35],[-35,-77],[19,-29],[-9,-85],[-55,-105],[5,-66],[-49,-49],[-13,-92],[-75,-56],[-51,-13],[2,-45],[-22,-61],[101,-122],[9,-61],[-64,-19],[-20,-65],[41,-54],[-6,-31],[-74,-44],[-89,-181],[16,-41],[44,-52],[29,-94],[-75,-33],[-17,-43],[47,-84],[62,-35],[33,-67],[-29,-41],[8,-74],[53,-24],[27,-33],[-13,-38],[-41,-40],[4,-45],[28,-47],[46,-24],[-27,-33],[-80,-28],[11,-105],[28,-22],[70,3],[28,-110],[-44,-60],[8,-21],[-56,-91],[48,-83],[2,-54],[-58,-38],[2,-38],[31,-43],[14,-99],[-47,-75],[-3,-34],[44,-76],[-52,-83],[0,-47],[63,-57],[58,-36],[19,-48],[1,-66],[107,-106],[45,-18],[39,-42],[-39,-93],[-48,-80],[0,-58],[53,-41],[-31,-60],[91,-50],[-17,-31],[-66,-30],[-64,-11],[-13,-38],[32,-52]],[[33347,86339],[-12,-17],[-71,-7],[-94,-74],[-15,66],[-24,27],[-70,3],[-38,25],[-60,8],[-28,39],[-37,-45],[-59,1],[-45,-80],[-23,-63],[-92,-5],[-63,15],[-37,-10],[-22,-42],[-48,23],[-19,-46],[-49,3],[-18,-67],[20,-33],[13,-82],[-31,-57],[45,-50],[1,-40],[-35,-76],[49,-46],[-32,-85],[5,-25],[-65,-11],[-24,-20],[-19,-62],[58,-61],[-38,-35],[-49,35],[-62,-19],[-58,19],[-63,-137],[-40,-49],[-56,5],[-8,-34],[17,-100],[71,-36],[9,-23],[75,-70],[0,-59],[67,34],[40,-11],[53,17],[81,-22],[89,54],[137,-51],[22,38],[-49,31],[29,42],[36,-37],[64,-20],[32,-36],[56,-20],[58,25],[130,-104],[-23,-68],[27,-74],[35,-59],[89,-26],[87,-107],[51,16],[97,4],[63,21],[66,39],[14,50],[-16,47],[-50,26],[4,37],[56,58],[42,3],[89,50],[107,-30],[114,72]],[[33903,84941],[84,-44],[14,-47],[44,-38],[81,-19],[0,-49],[103,-16],[38,-90],[143,-71],[-19,-75],[60,-57],[31,-83],[-34,-32],[-69,-35],[-2,-28],[59,-41],[52,-65],[-12,-103],[-76,3],[-18,-45],[166,-61],[99,1],[-12,-55],[-75,-42],[29,-88],[-16,-21],[-79,44],[-32,-4],[11,-105],[51,41],[119,-18],[16,-36],[-39,-45],[-122,-28],[-13,-67],[15,-91],[-30,-39],[-68,-35],[-15,-69],[52,-99],[-20,-45],[107,-105],[20,-47],[86,-66],[-32,-36],[-63,-42],[20,-31],[77,0],[1,-63],[-63,-68],[-29,22],[-70,-22],[-28,47],[-60,-43],[22,-81],[-18,-68],[-42,-37],[-60,-27],[-74,63],[-42,2],[-35,-51],[40,-89],[-72,-1],[-70,19],[-79,-28],[-49,12],[-38,-30],[-19,-43],[-41,-42],[-89,-4],[6,-37],[-55,-51]],[[33670,82197],[-49,37],[-36,-72],[-68,-46],[-46,46],[-57,14],[-47,81],[-24,-27],[5,-65],[-49,-43],[-50,13],[69,70],[-31,30],[-84,-15],[14,-39],[-23,-62],[-44,-10],[-49,17],[-78,-11],[-77,58],[-29,36],[-60,8],[-67,33],[-53,-85],[-3,-43],[60,-48],[40,-54],[43,18],[33,-27],[27,-84],[-92,-37],[-33,17],[-45,63],[-77,-7],[-23,-29],[-40,12],[-56,-141],[-33,-159],[0,-32],[-134,70],[-38,-56],[-54,-15],[-66,90],[12,38],[73,44],[-43,61],[-53,12],[-16,44],[24,44],[6,117],[13,55],[31,34],[10,50],[-23,53],[27,58],[70,-7],[12,82],[-19,84],[5,69],[45,6],[3,90],[-74,23],[2,109],[20,100],[-23,75],[30,58],[19,116],[23,68],[32,46],[57,284],[-74,18],[-1,26],[-76,27],[-33,38],[-104,77],[59,52],[-49,22],[-76,4],[-9,51],[-112,1],[-36,-39],[-67,4],[0,-60],[-57,-26],[21,-91],[-17,-52],[-135,-41],[-59,-69],[-108,13],[-42,-65],[-31,-3],[-30,-67],[-115,-4],[-12,-17],[0,-96],[11,-91],[32,-42],[2,-57],[-86,-33],[-141,-3],[-56,-37],[-61,-65],[-77,-48],[-58,31],[17,54],[11,92],[-11,35],[11,53],[-46,24],[-54,-39],[-44,4],[-27,42],[-61,-12],[-74,10],[8,60],[96,-14],[51,25],[-103,84],[-23,-8],[-56,35],[31,67],[58,9],[18,-26],[76,3],[1,62],[-31,43],[-73,19],[9,44],[-131,10],[-36,-25],[-112,8],[-15,-27],[-60,-11],[-63,21],[-24,89],[-64,44],[-101,23],[-74,-2],[-36,-16],[-3,-40],[75,-23],[90,-52],[30,-40],[91,-42],[-45,-59],[-43,-25],[-88,18],[-40,-40],[86,-27],[62,-83],[49,11],[10,-40],[-61,-140],[-75,-34],[-98,35],[0,75],[-68,67],[-76,18],[-28,-8],[-38,-48],[-93,-4],[-31,21],[-84,-6],[-1,-40],[98,-73],[-28,-34],[-80,1],[-58,-68],[-18,-47],[26,-48],[69,-29],[-18,-123],[-26,-51],[7,-72],[107,-42],[4,-43],[-35,-25],[11,-69],[44,-33],[3,-30],[64,-27],[-57,-49],[-51,11],[-51,-74],[-27,-19],[-112,80],[-56,21],[3,53],[-23,30],[-126,55],[-30,-68],[-74,24],[-39,-36],[-149,57],[-15,-20],[-111,28],[-1,112],[-29,24],[38,39],[-80,40],[-100,-11],[-19,64],[55,70],[22,-43],[69,-12],[38,82],[-19,17],[69,87],[-50,-2],[-66,18],[4,48],[121,13],[-12,41],[-49,13],[6,74],[62,11],[71,-12],[24,75],[61,49],[-7,60],[-60,-11],[-48,-80],[-65,-39],[-37,25],[49,53],[-39,53],[-67,0],[-85,37],[24,47],[128,84],[52,4],[17,28],[-4,60],[62,27],[61,59],[143,-20],[-5,-91],[67,-8],[36,50],[-67,68],[-34,103],[-76,16],[30,83],[-62,11],[-39,35],[-54,23],[-14,44],[42,109],[-119,58],[-70,111],[-48,-22],[6,78],[-107,26],[4,43],[-22,50],[-94,44],[-1,39],[-50,-13],[-41,16],[-138,27],[-25,44],[-95,21],[-55,-38],[-64,12],[-18,52],[73,71],[0,46],[-26,26],[-160,59],[6,57],[-172,47],[-97,85],[6,49],[-107,56],[-28,-6],[-37,167],[4,41],[-40,26],[-90,2],[-29,40],[-79,-8],[-25,112],[-35,22],[1,106],[-11,24],[-21,198],[-55,155],[-65,60],[20,35],[-3,49],[21,24],[17,83],[-57,77],[-36,13],[1,151],[-79,110],[7,46],[107,13],[20,78],[50,55],[-20,138],[-22,17],[-117,20],[-144,-14],[-7,21],[29,76],[-40,58],[2,33],[-184,22],[10,98],[-9,60],[57,70],[-129,55],[24,31],[5,76],[72,3],[45,71],[-15,96],[-38,30],[4,31],[45,44],[-14,84],[-60,8],[-80,-36],[-28,-28],[-19,-83],[-112,38],[31,62],[8,104],[-23,59],[-72,-45],[-85,-33],[-19,-74],[-82,8],[-53,-18],[-44,-66],[-43,-1],[-61,37],[-57,96],[-59,-16],[-12,-42],[-49,-31],[-125,-11],[-21,-63],[-112,22],[-56,26],[9,30],[-53,67],[-2,34],[-39,57],[-59,18],[-67,-30],[-55,-47],[-52,36],[-88,4],[-39,52],[-9,37],[39,54],[-17,56],[-38,20],[-32,104],[-63,26],[-80,61],[-66,-6],[-25,44],[-53,25],[-148,-16],[-125,-150],[-164,-24],[-76,59],[-83,-15],[-143,29],[-24,-70],[-7,-91],[-171,-11],[16,102],[-35,64],[-65,62],[-11,77],[-66,63],[-77,11],[-8,96],[21,60],[137,-11],[27,-14],[47,83],[4,48],[71,108],[-1,45],[-45,21],[-102,74],[-5,118],[19,162],[39,31],[-27,76],[24,80],[33,64],[36,117],[-7,75],[14,48],[-48,54],[-53,1],[-25,-53],[-125,2],[-44,-48],[-53,-3],[-146,14],[-25,170],[20,56],[78,96],[53,23],[99,26],[78,103],[-38,91],[-36,54],[-84,7],[-22,13],[52,139]],[[23471,90563],[42,7],[69,-47],[89,-28],[47,-44],[200,-43],[1,73],[34,33],[118,71],[9,46],[45,41],[106,-38],[49,28],[144,20],[93,71],[57,-31],[18,-45],[104,-55],[83,0],[35,36],[48,-60],[0,-53],[79,38],[31,-30],[70,-153],[99,-50],[-1,-36],[75,-95],[59,44],[31,-12],[87,67],[52,-27],[51,16],[46,130],[26,11],[66,-71],[-8,-114],[-59,-36],[4,-54],[68,-27],[11,-44],[-51,-29],[-12,-49],[45,-16],[84,12],[24,-82],[38,-30],[65,28],[-36,29],[22,110],[73,38],[27,36],[69,-35],[-12,-132],[54,-38],[16,-58],[52,-77],[-35,-74],[-86,-8],[-41,-74],[39,-61],[-33,-61],[-50,-10],[-61,-34],[-4,-26],[57,-52],[0,-76],[42,-30],[54,1],[81,-63],[8,-30],[-45,-65],[25,-15],[38,-78],[36,-27],[137,37],[58,2],[46,68],[6,36],[-90,58],[28,65],[73,50],[38,149],[105,2],[-45,65],[104,97],[63,-6],[18,89],[49,57],[1,48],[48,56],[36,-4],[89,46],[-31,50],[33,35],[230,-133],[19,-54],[69,49],[52,-4],[45,-23],[25,-85],[21,-6],[89,25],[75,-10],[35,28],[11,76],[57,-8],[58,19],[36,-13],[45,-61],[33,-21],[37,13],[32,209],[15,14],[143,0],[86,51],[90,-71],[89,32],[33,-12],[1,-46],[53,-96],[41,-25],[34,-68],[57,-21],[67,33],[61,-65],[75,-25],[30,7],[112,-8],[116,73],[76,18],[64,-27],[63,95],[59,32],[12,96],[62,22],[82,-59],[84,79],[102,6],[71,51],[31,53],[30,1],[27,-10],[8,41],[62,5],[50,57],[-62,63],[-103,-4],[-54,38],[-3,115],[-58,21],[47,69],[92,-8],[-33,84],[16,29],[-12,68],[-24,54],[8,54],[67,18],[14,30],[-55,29],[42,52],[84,128],[79,86],[-85,10],[-57,34],[-39,42],[29,35],[-37,62],[30,13],[150,-145],[106,-21],[49,19],[73,-39],[58,3],[76,71],[-85,85],[83,5],[57,-90],[40,-15],[57,15],[-20,71],[63,47],[-76,99],[66,62],[42,13],[37,-18],[31,-70],[-23,-64],[14,-62],[38,-42],[37,1],[-7,-56],[28,-87],[116,-4],[27,-10],[38,-80],[121,24],[173,141],[33,18],[68,68],[74,55],[-18,60],[62,58],[-2,81],[-22,16],[-106,20],[28,41],[-9,36],[-37,21],[-33,54],[-54,7],[-104,-83],[-7,94],[130,44],[124,21],[137,94],[41,1],[40,51],[-8,25],[65,27],[34,-5],[97,76],[54,60],[-30,31],[-70,-9],[25,46],[-49,15],[-18,50],[98,44],[-5,61],[88,24],[34,48],[32,-12],[-9,-43],[61,-39],[103,-12],[54,42],[35,44],[27,-52],[92,-46],[6,-55],[52,-46],[-15,-77],[40,-20],[39,17],[71,79],[39,23],[-6,50],[-61,7],[-28,98],[-43,33],[19,73],[6,78],[-10,55],[68,16],[13,23],[9,30],[7,68],[-130,62],[64,41],[14,29],[-26,33],[31,96],[23,33],[-44,34],[-7,45],[-60,28],[-24,39],[-68,14],[17,121],[-29,6],[-57,-64],[-18,29],[-60,-14],[4,99]],[[32030,93754],[69,113],[-49,47],[-5,81],[-16,28],[-98,39],[-119,133],[-24,67],[27,50]],[[31815,94312],[150,94],[15,-36],[-17,-56],[47,-74],[111,-68],[34,11],[63,49],[87,44],[50,-109],[40,-59],[3,-66],[57,-32],[40,-71],[56,-13],[38,-35],[28,56],[42,4],[8,-99],[-43,-46],[59,-42],[1,-55],[31,-40],[56,5],[20,47],[50,-27],[110,-15],[94,-55],[84,-93],[105,-72],[6,-80],[-9,-54],[36,-61],[-18,-153],[-66,-64],[-100,-58],[-5,-4],[40,-75],[56,-37],[119,-23],[58,-27],[53,-76],[0,-29],[-2,-57],[47,-10],[55,26],[93,-16],[44,-70],[174,-51],[43,33],[88,-1],[40,-77],[87,15],[51,-46],[5,-52],[114,79],[72,96],[39,-30],[-11,-69],[-51,-63],[-51,-17],[-35,-45],[69,-19],[96,7],[26,25],[87,22],[6,61],[62,61],[59,-123],[63,-78],[83,-49],[36,-1]],[[37798,100652],[61,-12],[38,-57],[83,-6],[63,-79],[-42,-75],[2,-57],[89,-33],[59,-87],[91,2],[60,-30],[-85,-109],[-7,-53],[-41,-44],[-56,-31],[-25,-82],[21,-176],[-10,-56],[-93,-122],[161,-13],[152,28],[71,-6],[185,-118],[-7,-58],[11,-60],[-20,-66],[-54,-51],[52,-44],[30,-94],[36,-23],[83,-10],[71,-30],[17,-74],[31,-39],[94,-81],[14,-46],[131,-111],[43,-52],[126,-17],[-38,-141],[-58,-151],[-47,-47],[-4,-58],[-25,-52],[-6,-149],[-11,-45],[-70,-37],[-32,-45],[-6,-82],[44,-90],[79,-26],[-48,-74],[36,-57],[26,-109],[22,-40],[48,-27],[119,18],[17,-112],[41,-47],[117,-83],[15,-50],[-30,-57],[-95,-95],[-108,-41],[-67,-66],[-107,-31],[-15,-41],[-39,-36],[31,-53],[3,-80],[105,12],[133,-111],[56,-36],[7,-32],[-18,-104],[-61,-61],[118,-39],[71,-43],[26,-35],[23,-70],[-42,-95],[71,-31],[71,-82],[44,-119],[101,-46]],[[39730,95684],[12,-98],[35,-43],[58,-3],[2,-65],[39,-47],[95,-44],[20,-48],[2,-95],[41,-33],[28,-77],[-115,-9],[-87,-40],[-80,10],[-29,33],[-33,-2],[-26,-39],[-62,-7],[-66,34],[-38,54],[-52,17],[-71,65],[-67,121],[-9,42],[19,40],[-30,23],[-89,-30],[-80,-12],[-107,11],[-92,-3],[-72,27],[-61,0],[-34,-21],[-46,41],[-8,44],[-70,22],[-61,42],[-126,-8],[-38,-25],[-71,-81],[-85,-11],[-163,0],[-13,67],[-83,91],[-91,61],[-19,-35],[-62,-12],[-17,56],[-88,101],[-48,11],[-146,-22],[-68,12],[-19,-87],[-90,21],[-77,-96],[-58,-46],[-96,9],[-24,-45],[-57,-9],[-50,33],[-87,-1],[-48,-60],[-58,-8],[-20,-31],[-80,-52],[-142,0],[-89,-29],[-51,-54],[1,-51],[-32,-6],[-56,39],[-86,-7],[-54,53],[-149,-86],[-46,8],[-81,-83],[-6,-50],[-101,-53],[-4,-62],[-28,-54],[-68,-27],[-73,-80],[38,-79],[24,-15],[-11,-55],[22,-42],[-64,-44],[-8,-48],[-33,-46],[-157,27],[-66,-51],[-11,-55],[12,-39],[37,-22],[-4,-46],[81,-7],[16,15],[80,7],[28,-52],[-54,-65],[-11,-94],[22,-53],[-89,26],[-26,60],[-51,3],[-10,-67],[-38,-52],[46,-57],[-91,-109],[-15,-55],[-41,-60],[-60,-40],[21,-88],[49,-3],[87,-82],[38,-54],[-28,-52],[0,-45],[77,-38],[43,-42],[49,-6],[-40,-48],[24,-41],[-13,-49],[27,-42],[-82,10],[2,-61],[-93,9],[-9,-34],[52,-33],[36,-77],[31,-28],[61,-22],[30,16],[72,-3],[24,-89],[-49,-104],[-41,-21],[-76,-6],[-171,-104],[-38,-2],[-107,-76],[-12,-24],[-65,-11],[-79,14],[-36,-63],[-99,5],[-84,-28],[-67,-52],[0,-49]],[[34749,92347],[48,-57],[-4,-21]],[[31815,94312],[-59,45],[-19,44],[-38,4],[-46,36],[-7,44],[-43,50],[-68,36],[-96,-10],[-56,47],[-100,42],[-59,46],[13,69],[-31,45],[-23,78],[39,28],[-17,70],[26,70],[52,54],[-8,30],[-60,7],[-67,31],[35,92],[-32,24],[1,100],[30,14],[51,63],[86,41],[-71,64],[-109,-52],[-40,38],[33,54],[62,44],[-115,115],[-67,-60],[-24,-35],[-40,-2],[-26,57],[-63,50],[-47,-37],[-36,1],[-81,144],[-77,-80],[9,63],[-75,76],[-137,209],[-43,49],[41,24],[-100,172],[-24,-46],[9,-54],[-46,-39],[-64,-18],[-51,5],[9,-83],[42,-6],[1,-134],[-52,8],[-74,-20],[23,-62],[-44,-42],[-108,-38],[-21,36],[-120,-8],[-62,-30],[-124,6],[-25,76],[1,60],[-99,46],[-17,33],[-3,82],[70,57],[14,28],[-36,57],[-13,52],[-56,45],[-50,117],[-25,34],[1,50],[-65,94],[-24,71],[-151,214],[3,44],[-77,48],[-76,122],[8,64],[-27,23],[-10,50],[-70,54],[6,38],[-42,111],[-31,28],[7,35],[-53,124],[-32,12],[-13,50],[-41,79],[115,26],[11,33],[-22,62],[-87,163],[-50,105],[-62,92],[-5,38],[-105,74],[-91,19],[-19,32],[-83,7],[-70,20],[-77,48],[-96,103],[-53,40],[-87,-5],[-37,30],[-30,62],[-159,70],[-35,-2],[-154,-41],[-73,61],[118,70],[167,181],[24,73],[-21,47],[-133,34],[-7,46],[16,147],[111,81],[86,33],[108,13],[117,25],[67,48],[33,63],[112,118],[186,183],[104,75],[200,51],[33,51],[-71,94],[-74,52],[-31,39],[-118,108],[-14,85],[19,65],[52,82],[8,68]],[[28504,100848],[131,168],[59,96],[1,56],[-93,88],[1,77],[40,81],[16,82],[-6,59],[-46,50],[-97,172],[-134,91],[-61,23],[-47,41],[-50,67],[-27,90],[47,42],[-6,60],[35,41],[96,18],[124,-17],[122,-57],[85,-69],[39,-54],[44,3],[139,59],[80,53],[46,15],[41,77],[53,11],[102,86],[45,25],[46,123],[-3,18],[128,20],[89,50],[134,18],[103,4],[78,16],[67,76],[73,203],[63,63],[88,39],[74,63],[86,43],[7,21],[89,78],[85,22],[52,-26],[75,-5],[51,11],[49,-14],[100,63],[90,17],[52,-4],[49,39],[143,-21],[-8,-43],[50,-20],[8,-56],[101,-44],[51,8],[39,28],[126,9],[43,29],[64,-16],[58,8],[17,53],[29,17],[66,106],[9,58],[-26,39],[31,19],[81,-3],[42,-48],[93,28],[25,-23],[-40,-45],[-26,-61],[28,-39],[-57,-46],[12,-35],[-31,-45],[20,-69],[51,-53],[44,-17],[18,-67],[68,-36],[60,34],[31,-23],[28,-66],[36,-9],[-14,-56],[72,-120],[27,-65],[165,-77],[134,-96],[137,39],[86,-53],[27,-2],[33,-48],[83,17],[22,37],[123,-26],[0,-89],[36,-5],[3,-87],[39,-82],[34,58],[27,12],[29,-62],[172,-78],[-16,-50],[87,-70],[40,45],[59,-65],[53,-28],[61,5],[21,-64],[40,-59],[53,-14],[76,25],[23,83],[-14,38],[46,43],[30,53],[60,25],[54,-36],[58,22],[38,-70],[71,-16],[109,97],[36,-20],[93,23],[94,95],[92,39],[44,68],[117,9],[38,12],[56,45],[55,13],[44,104],[53,-32],[58,0],[18,-35],[46,11],[40,-29],[49,-65],[85,-80],[113,-86],[-11,-54],[-53,-3],[-42,-102],[23,-24],[116,-50],[34,-38],[62,15],[84,-45],[50,-48],[29,-62],[-8,-40],[51,-58],[69,0],[58,-36],[10,-36],[-43,-174],[-11,-76],[62,-53],[26,-66],[43,-57],[51,-30],[6,-56],[83,-134],[38,-14],[113,-5],[68,19],[21,52],[-26,41],[36,51],[86,-12],[21,73],[75,70],[85,-78],[38,26],[35,83],[62,34],[66,-7],[50,-52],[65,5],[87,41],[43,74],[83,32],[51,0],[85,39],[11,27],[-41,71],[212,100],[104,-13],[-6,-104],[24,-56],[-38,-77],[-17,-108],[29,-132],[18,-34],[48,-25],[-179,-117],[-33,-32],[-130,-29],[9,-189],[-76,-83],[102,-118],[16,-7],[170,143],[97,66]],[[28504,100848],[-129,-151],[-47,-111],[-77,-86],[-95,-47],[-122,5],[-60,-122],[-67,-105],[-99,-68],[-137,-46],[-205,-27],[-176,-82],[-59,-46],[-19,-35],[-31,-164],[-42,-72],[-36,-11],[-18,44],[1,87],[-38,0],[-45,29],[22,84],[-152,-48],[-65,-10],[-135,19],[-173,62],[-28,-12]],[[26472,99935],[-55,-4],[-25,-26],[-107,67],[-13,59],[-98,-8],[-6,66],[-66,-7],[-98,61],[-28,-19],[-50,31],[35,37],[-44,46],[-138,-26],[-50,-35],[-31,7],[-14,97],[-26,80],[-24,10],[-11,64],[-30,13],[-45,-36],[-60,36],[-70,9],[-79,65],[-42,-32],[-16,-73],[-49,-52],[-48,-19],[-107,8],[-59,-24],[-39,75],[-80,-10],[-70,5],[-68,48],[6,23],[-70,18],[-47,-9],[-115,25],[-10,-38],[-108,-34],[-59,19],[-61,-19],[-62,18],[-71,-15],[-26,43],[-69,-2],[-34,21],[1,99],[26,54],[-93,41],[-11,20],[38,45],[-8,26],[-60,-1],[-15,47],[6,78],[-42,17],[-5,59],[46,9],[6,58],[47,10],[23,42],[49,15],[35,39],[-51,51],[-62,19],[-43,99],[49,155],[27,38],[41,134],[66,112],[5,96],[-91,-23],[-46,-30],[-57,15],[-51,-52],[-10,-41],[66,-56],[-1,-40],[-59,1],[-18,-44],[23,-59],[-29,-14],[-40,31],[-84,-12],[-23,-24],[-59,2],[-33,41],[-32,-4],[-39,-50],[-63,-11],[-72,14],[-22,64],[-68,7],[-39,40],[-42,3],[-24,44],[-77,-19],[-66,17],[-48,-15],[-21,-54],[-50,-33],[-108,22],[-108,69],[-50,40],[-36,52],[10,42],[-19,35],[-58,22],[-72,1],[-75,47],[-100,12],[-16,52],[-39,47],[-56,10],[-34,38],[-54,5],[-153,47],[-33,-3],[-117,41],[-97,22],[-12,74],[-140,-3],[-97,23],[30,48],[4,47],[-107,36],[-37,69],[-122,-3],[-36,30],[-85,35],[-99,-1],[-91,20],[-69,-8],[-26,-84],[-34,-50],[-75,-22],[-24,35],[38,74],[-34,56],[-36,23],[-114,116],[-19,90],[-37,12],[-136,73],[-62,3],[-50,-15],[-98,5],[-23,53],[18,109],[-8,56],[41,8],[32,75],[31,22],[11,61],[-4,79],[-19,33],[-70,12],[-32,25],[-1,54],[-73,58],[-28,121],[20,56],[-50,32],[-25,94],[-64,52],[20,53],[-47,48],[33,117],[55,64],[27,115],[31,1],[100,51],[-2,32],[-38,51],[-47,-1],[-20,55],[35,86],[72,57],[22,34],[-47,32],[13,96],[-8,27],[-69,61],[17,46],[-66,2],[-53,50],[-44,12],[25,59],[0,46],[-24,63],[5,45],[106,94],[22,64],[-1,47],[-23,101],[-92,58],[-30,57],[11,73],[34,99],[9,71],[47,73],[16,77],[-14,59],[-42,51],[-93,74],[-46,81],[-56,130],[-26,83],[-3,78],[-38,193],[-28,66],[8,57],[-21,50],[9,53],[-23,42],[11,47],[-12,76],[2,114],[14,58],[-56,57],[-29,66],[1,50],[33,74],[-13,46],[-30,3],[-22,-54],[-64,106],[-19,71],[-56,48],[8,38],[-96,39],[-24,84],[55,20],[42,124],[19,96],[-11,110],[45,80],[11,52],[-25,85],[39,48],[6,105],[18,35],[47,16],[33,-17],[116,26],[38,-20],[91,8],[67,61],[98,-21],[47,8],[97,-15],[76,-77],[42,8],[37,81],[-3,83],[112,130],[14,55],[-101,33],[-12,19],[25,73],[40,23],[38,82],[56,34],[92,180],[69,62],[88,38],[45,-12],[50,14],[80,-6],[46,30],[38,47],[38,6],[49,-22],[30,27],[81,13],[77,-29],[36,25],[29,50],[71,7],[42,36],[24,75],[99,19],[114,35],[31,60],[4,86],[15,27],[81,32],[32,43],[-40,110],[11,54],[-23,33],[162,90],[16,30],[-40,46],[-116,56],[107,192],[76,28],[53,3],[15,28],[-87,69],[24,63],[-56,-2],[-104,33],[-107,-31],[-46,14],[-87,63],[-21,58],[-42,14],[-105,-41],[-113,112],[-58,37],[-108,4],[-85,-10],[-68,74],[-130,50],[-57,12],[-69,-7],[-58,-48],[-112,-55],[-61,43],[15,95],[29,100],[-101,175],[2,138],[34,95],[109,176],[58,55],[136,57],[15,21],[-31,146],[-4,98],[-83,15],[-106,33],[-52,66],[-86,-15],[-92,6],[-61,28],[-63,49],[-54,-2],[-67,-37],[-131,-24],[-49,3],[-96,61],[-62,-20],[-49,1],[-75,43],[-123,-24],[-98,-6],[-56,-22],[-138,157],[-97,27],[-109,17],[-153,56],[-102,79],[-109,98],[-108,47],[-174,123],[-24,77],[16,115],[-8,69],[11,61],[25,38],[7,72],[23,52],[-71,26],[-52,37],[-71,76],[-79,32],[-86,-88],[-66,-35],[-89,2],[-35,32],[-62,-9],[-111,-53],[-105,-8],[-72,12],[-22,25],[-9,104],[-163,-16],[-101,38],[-18,-49],[-98,-29],[-3,-45],[-77,-46],[-39,4],[-63,44],[-45,9],[-53,-19],[-83,-68],[-36,-14],[-114,64],[-54,67],[-43,-3],[-52,22],[-62,-3],[-31,20],[-92,118],[-134,45],[-14,36],[4,103],[66,41],[21,63],[5,67],[64,-1],[33,46],[5,45],[46,30],[-36,90],[-134,24],[-68,62],[14,64],[4,100],[59,87],[79,56],[-36,73],[-47,44],[35,69],[10,70],[81,54],[11,81],[32,51],[139,48],[110,-49],[93,11],[11,35],[115,32],[45,48],[55,35],[104,18],[75,77],[62,35],[25,59],[54,49],[56,27],[49,0],[66,56],[25,41],[-12,66],[13,39],[-47,52],[83,41],[82,56],[87,-13],[49,30],[65,-9],[58,-27],[43,70],[-50,18],[8,64],[55,75],[54,34],[147,50],[46,93],[61,39],[9,59],[72,92],[-55,56],[-25,73],[14,94],[-35,59],[1,68],[74,-50],[95,5],[53,46],[99,32],[81,49],[47,-37],[12,-36],[91,-10],[67,37],[153,0],[77,-10],[57,36],[113,-1],[31,68],[76,-5],[93,13],[80,38],[100,-50],[71,8],[107,-72],[68,21],[52,-44],[61,26],[69,-12],[48,28],[50,-18],[7,-67],[116,-32],[60,23],[32,-16],[137,-28],[36,23],[54,75],[87,0],[78,-24],[79,3],[67,47],[66,-11],[146,-54],[66,-3],[62,29],[-14,38],[30,36],[-19,94],[-83,84],[-52,67],[-110,-2],[-70,42],[-20,56],[-86,5],[-55,15],[-101,60],[-65,-3],[-28,96],[-139,111],[33,104],[77,2],[140,-63],[39,29],[91,-15],[23,-22],[71,7],[31,-42],[66,5],[24,45],[55,3],[80,-19],[128,-90],[36,25],[55,-15],[74,-66],[50,-66],[105,-62],[97,8],[97,-77],[31,10],[119,115],[131,-23],[68,57],[44,177],[56,45],[192,-27],[84,-41],[49,0],[82,64],[109,50],[139,107],[55,53],[102,47],[97,25],[38,57],[178,9],[65,-13],[94,1],[49,-11],[34,-38],[43,-89],[89,-20],[2,56],[38,256],[-28,59],[91,27],[195,28],[96,67],[87,11],[37,-58],[0,-51],[36,-93],[90,-56],[40,53],[57,18],[78,-22],[126,3],[30,-31],[-2,-68],[17,-37],[58,-53],[21,-36],[76,-83],[96,-144],[52,-1],[17,65],[32,36],[133,70],[52,40],[64,6],[38,47],[88,-27],[76,-38],[89,-66],[33,-1],[147,57],[57,38],[82,75],[28,56],[79,80],[25,62],[61,2],[146,57],[53,-20],[56,18],[142,15],[45,-16],[1,-188],[35,-99],[73,-64],[45,-8],[54,34],[46,-2],[53,-61],[-9,-61],[-62,-77],[24,-52],[-4,-44],[30,-21],[64,17],[32,-41],[16,-100],[38,-116],[60,-72],[181,-75],[159,-45],[83,-41],[86,-15],[31,-52],[100,-102],[86,-102],[57,-95],[108,-159],[50,-94],[56,-73],[78,-59],[136,-74],[159,-39],[106,-73],[168,-91],[154,-48],[119,-22],[107,6],[160,-33],[97,-62],[110,-94],[109,-125],[69,-60],[94,-11],[148,-124],[60,-31],[158,11],[99,44],[104,-7],[181,-150],[114,-52],[17,-77],[50,-75],[-66,-68],[88,-41],[95,-117],[85,-17],[52,-32],[96,-24],[67,-77],[142,-29],[133,75],[102,-105],[120,-86],[34,-42],[2,-44],[37,-104],[34,-35],[127,-52],[93,-49],[56,-14],[16,-125],[-81,-5],[-55,-30],[-51,-70],[0,-29],[-94,-77],[-23,-37],[45,-41],[66,-85],[97,-88],[25,-34],[31,-106],[36,-48],[102,-56],[81,-13],[45,-25],[109,-104],[54,-33],[95,-29],[120,-3],[136,-32],[107,6],[102,34],[76,49],[141,-5],[11,-38],[50,-19],[21,-41],[90,-50],[-11,-71],[46,-34],[68,5],[33,-21],[72,-2],[9,-47],[160,-23],[36,44],[29,-37],[115,-43],[41,75],[114,-6],[40,-52],[6,-36],[46,-8],[77,-125],[85,-7],[40,-71],[-4,-74],[-36,-45],[110,-66],[33,-80],[-18,-39],[-1,-61],[86,-44],[0,-33],[-42,-27],[-96,16],[-23,-28],[-124,46],[-55,63],[-50,18],[-122,-14],[-86,-39],[80,-105],[18,-64],[68,-2],[40,-58],[138,-22],[56,-33],[75,-5],[53,35],[102,43],[91,22],[49,-21],[75,-5],[37,17],[80,-43],[155,-12],[99,59],[56,-57],[67,16],[153,1],[-9,86],[6,63],[48,31],[77,-81],[74,-30],[56,14],[55,51],[64,-3],[108,-69],[52,-50],[41,23],[79,-70],[17,5],[55,97],[45,-18],[144,-122],[34,39],[-59,42],[0,66],[-116,64],[15,78],[87,107],[22,60],[-8,113],[96,-86],[124,23],[81,-10],[80,-87],[36,-54],[56,28],[67,-17],[53,-40],[45,-11],[36,42],[35,9],[-18,102],[55,137],[-18,52],[90,-10],[51,116],[-8,49],[143,-66],[69,-14],[8,35],[55,56],[-17,164],[22,43],[59,14],[52,-17],[131,-3],[148,48],[44,22],[34,70],[47,37],[40,76],[47,-3],[106,-40],[154,-7],[55,-34],[146,112],[63,2],[11,59],[112,23],[88,55],[87,101],[84,20],[39,-10],[102,47],[119,-6],[65,11],[58,-32],[74,-22],[72,0],[146,25],[187,52],[97,16],[68,47],[45,-11],[18,-35],[123,-101],[72,-26],[132,-4],[200,-38],[80,7],[65,46],[86,78],[51,65],[14,46],[-36,112],[7,78],[30,55],[64,68],[98,31],[179,12],[202,-5],[123,26],[33,-18],[21,-139],[39,-141],[51,-72],[32,-21],[88,-14],[170,-15],[85,-16],[154,-85],[93,-19],[298,-85],[188,-70],[39,-47],[71,-19],[186,-12],[269,-56],[28,10],[106,107],[49,37],[131,58],[68,14],[100,-12],[68,-54],[76,-94],[74,-195],[111,-97],[65,-164],[36,-24],[274,-77],[177,-60],[143,-79],[69,-75],[62,-189],[33,-193],[31,-125],[-39,-36],[-76,-10],[-61,-78],[10,-123],[-1,-84],[-47,-171],[-130,-264],[-22,-97],[-4,-92],[-51,-95],[-75,-83],[-41,-62],[-21,-117],[22,-179],[8,-108],[-8,-89],[-48,-202],[-39,-69],[-35,-91],[-101,-212],[-62,-100],[-84,-75],[-41,-79],[-22,-148],[21,-174],[-14,-122],[-91,-41],[-293,-66],[-76,-25],[-62,24],[-102,16],[-147,-10],[-40,-24],[-92,-84],[-17,-55],[-60,-16],[-88,-48],[-31,-32],[76,-116],[-80,-41],[-44,-63],[-2,-44],[61,-11],[28,-30],[103,-51],[18,-43],[-10,-91],[-68,-46],[-99,-20],[-88,5],[-38,-12],[-180,2],[-43,19],[-45,-14],[-32,33],[-161,14],[-57,34],[-49,-42],[-136,-43],[-129,-19],[3,-24],[66,-88],[4,-107],[56,-32],[60,5],[4,-46],[-25,-45],[31,-116],[-10,-101],[60,-111],[61,-87],[-30,-169],[-18,-36],[-54,-44],[-58,-13],[-44,-34],[-43,25],[-54,-7],[-60,-119],[-20,-122],[20,-50],[-124,-133],[-100,-34],[-51,-59],[-23,-87],[59,-49],[29,-58],[-68,-55],[-77,50],[-86,24],[-258,38],[-116,-14],[-53,35],[-150,17],[-80,-6],[-71,81],[-66,-22],[-35,7],[-29,-129],[-47,-42],[-68,-18],[-106,8],[-146,54],[-61,50],[-49,7],[-135,-55],[-140,-47],[-49,-98],[-80,-89],[9,-35],[48,-39],[59,-117],[46,-42],[-21,-31],[33,-24],[3,-52],[53,-115],[27,-39],[109,-200],[58,-89],[60,24],[25,-56],[39,42],[57,-80],[-97,-32],[-4,-50],[-58,-55],[-21,-66],[31,-55],[93,-53],[66,3],[53,37],[22,-35],[-6,-87],[22,-76],[33,-60],[0,-34],[-115,31],[-33,20],[-130,-2],[-113,-55],[-36,-4],[-149,37],[-113,51],[-14,-225],[46,-64],[47,-129],[5,-106],[-22,-41],[-19,-92],[9,-128],[26,-79],[36,-16],[14,-106],[59,-28],[11,-53],[28,-18],[49,-98],[90,18],[30,-24],[264,-135],[137,-18],[37,10],[98,-6],[23,13],[117,-8],[119,21],[137,-53],[71,-14],[69,-29],[44,-2],[142,39],[224,-57],[78,-13],[28,-24],[-16,-161],[-46,-108],[-166,-255],[-59,-155],[59,-120],[1,-70],[-42,-33],[-173,-44],[-8,-23],[81,-30],[48,-47],[58,-7],[-2,-65],[27,-19],[69,10],[48,-33],[154,-162],[65,-114],[41,-53],[50,-40],[133,-175],[40,-69],[76,-87],[52,-33],[58,12],[42,-50],[46,-104],[-96,-117],[-83,-113],[-42,-21],[-190,-255],[-50,-46],[-120,-78],[-52,-132],[-29,-39],[-88,-21],[-64,10],[-28,29],[-18,137],[-56,17],[-147,60],[-80,-6],[-26,-73],[-59,-84],[-66,-63],[-97,0],[-35,-94],[-172,-105],[-174,-8],[-60,-40],[9,-47],[26,-24],[22,-61],[-15,-65],[-65,-26],[-39,-115],[-202,25],[-100,-20],[-70,-32],[-77,-126],[-55,-23],[-69,108],[-145,63],[-65,39],[-104,95],[-61,91],[-98,-16],[-19,9],[-26,92],[-49,75],[-31,80],[-35,132],[-46,88],[-1,58],[66,62],[10,36],[-17,79],[-49,37],[-61,106],[24,122],[-29,43],[-44,-62],[-98,-79],[-71,-18],[-87,7],[-67,-19],[-53,-87],[-33,-84],[-74,-54],[-38,40],[-76,38],[-55,6],[-139,-35],[-77,-74],[-70,-34],[-87,10],[-47,-13],[-59,-40],[-49,-82],[-13,-69],[-100,-21]],[[72559,72120],[-11,-82],[-50,-184],[-7,-99],[13,-109],[26,-46],[74,-63],[130,-55],[108,-67],[61,-75],[83,-87],[12,-49],[88,-94],[116,-101],[31,-48],[12,-106],[-25,-59],[-53,-17],[-152,-82],[-82,-12],[32,-39],[-41,-90],[-75,4],[42,-77],[-28,-40],[-18,-64],[-56,-51],[-61,18],[-58,0],[-15,-49],[42,-5],[53,-54],[103,-35],[38,38],[35,-53],[50,-15],[9,-28],[-26,-47],[1,-46],[-38,-49],[33,-37],[61,-25],[-37,-194],[24,-17],[7,-56],[-17,-39],[-52,-16],[-15,-66],[-79,-8],[-66,-38],[-87,33],[-5,28],[-53,38],[-87,23],[-28,-42],[68,-35],[37,-67],[-32,-26],[13,-82],[-10,-101],[49,28],[-10,-87],[33,-32],[-11,-67],[-46,-4],[-53,-71],[15,-32],[-16,-48],[82,-19],[-44,-27],[-3,-69],[-28,-20],[-28,-65],[-78,-105],[12,-41],[-46,-71],[-58,-61],[-34,-11],[-62,23],[-16,-95],[-78,-58],[-13,-25],[-72,-6],[-28,-33],[-27,47],[-42,-24],[27,-48],[-20,-72],[56,-21],[67,-2],[14,-41],[81,-78],[-26,-99],[-35,-7],[-86,31],[-60,-4],[-49,32],[-63,6],[-40,-17],[-73,4],[-39,-23],[62,-31],[70,-60],[-1,-22],[-85,-12],[-15,-51],[-31,-14],[3,-75],[-38,-18],[-76,19],[-66,64],[-92,45],[-3,-73],[-21,-45],[58,-14],[-43,-75],[-11,-42],[62,-25],[4,-43],[-28,-48],[-111,-44],[-85,21],[-36,-15],[10,-36],[63,-38],[-72,-60],[-76,44],[-89,28],[-17,21],[-122,28],[-24,-48],[-48,-8],[-64,17],[-17,20],[33,51],[30,0],[0,53],[-69,5],[-89,-8],[-26,-13],[-144,59],[-33,-18],[-8,-50],[49,-104],[60,-11],[22,-41],[-32,-57],[69,-49],[51,-7],[0,-66],[-25,-19],[35,-138],[-8,-33],[-102,-59],[-19,106],[-27,31],[-30,-38],[-5,-60],[11,-111],[34,-67],[-35,-44],[-61,-20],[-35,17],[16,60],[45,41],[-51,18],[-56,-19],[-48,-42],[-26,59],[-39,-19],[-37,32],[-114,29],[-30,-22],[9,-45],[28,-20],[60,-78],[46,-24],[-66,-98],[-35,22],[-55,-20],[-68,18],[-38,39],[-41,-17],[-43,28],[-59,15],[-83,80],[-45,15],[-75,46],[-81,15],[-63,33],[-27,-59],[-46,-26],[-66,42],[-5,47],[-64,54],[-44,1],[-73,-68],[26,-23],[-7,-56],[27,-78],[-53,20],[-8,66],[-38,-8],[-61,-79],[-87,-42],[-43,11],[-10,55],[-50,13],[30,-71],[-13,-61],[71,-84],[11,-59],[-14,-63],[-42,-19],[-23,-92],[-28,-70],[4,-43],[-124,-35],[-75,-3],[-24,63],[-76,13],[-102,-29],[-128,-27],[-122,-44],[-90,-2],[-3,-34],[-94,-63],[-136,-67],[-62,0],[-113,23],[-55,-21],[-79,8],[-26,-29],[6,-59],[-45,5],[-51,-35],[-27,-52],[-63,3],[-31,-18],[7,-48],[-67,-58],[-25,-55],[3,-36],[33,-44],[-40,-37],[-12,-65],[63,-24],[-56,-34],[-24,-35],[10,-35],[-51,-9],[9,-34],[-33,-20],[-19,40],[-97,-54],[49,-69],[-49,-24],[-66,29],[-6,48],[-50,1],[-76,-23],[24,-36],[-24,-22],[-81,64],[10,55],[29,24],[13,54],[-49,1],[-17,-55],[-65,11],[-89,64],[-135,9],[9,65],[37,40],[-2,58],[-43,32],[38,94],[-18,48],[-36,24],[-44,-13],[-27,28],[-66,0],[-50,-24],[-56,2],[-5,40],[-75,2],[-51,17],[-8,-32],[-38,-11],[-52,-43],[-1,-38],[81,-131],[1,-51],[58,-9],[-27,-48],[-77,-9],[-111,-45],[-139,-66],[-55,-17],[-76,28],[-41,36],[-56,17],[-63,1],[-30,-24],[-24,-75],[12,-160],[58,-7],[-4,-30],[27,-51],[41,-40],[-109,-48],[17,-48],[2,-87],[24,-25],[-64,-34],[3,-46],[-103,-88],[-27,-69],[16,-77],[0,-127],[16,-73],[83,9],[73,-83],[0,-56],[85,-41],[54,-72],[107,-1],[29,34],[70,8],[42,23],[103,-4],[30,-18],[70,13],[43,-57],[-16,-67],[96,-41],[40,12],[40,-53],[48,-8],[41,19],[82,-51],[-13,-69],[51,-40],[6,-46],[38,-7],[57,-102],[94,9],[10,-67],[32,-24],[181,15],[67,59],[77,6],[7,-35],[111,-56],[103,30],[75,-23],[2,-25],[45,-39],[86,80],[173,-37],[127,18],[-1,-26],[56,-66],[81,59],[29,-28],[-13,-48],[-41,-16],[-34,-53],[-72,13],[-44,-47],[-62,43],[-30,-9],[-14,-44],[-78,-22],[-17,-45],[59,-54],[54,-21],[-45,-53],[-15,-95],[-52,7],[-6,-55],[10,-69],[-46,-77],[-20,-126],[88,-54],[52,-12],[45,-52],[48,-93],[32,3],[70,-85],[12,57],[88,2],[58,-22],[116,-86],[38,-1],[99,-59],[70,-72],[0,-94],[-16,-82],[7,-49],[51,-22],[13,-62],[78,-13],[123,31],[80,-22],[105,-2],[42,-52],[-11,-40],[72,-25],[-4,-77],[25,-16],[5,-104],[26,-38],[-33,-37],[-132,22],[-31,-37],[24,-78],[46,-108],[152,-25],[95,-40],[48,-40],[-21,-68],[10,-37],[-44,-108],[1,-65],[160,-101],[47,-8],[12,-60],[-10,-114],[-101,9],[-31,19],[-110,5],[-88,-42],[15,47],[-38,3],[9,-93],[63,-3],[-36,-95],[-32,15],[-161,-37],[-93,28]],[[68616,60395],[-150,17],[-45,41],[0,26],[-80,-4],[-10,100],[-40,30],[-28,-9],[-41,36],[-97,24],[-42,61],[-98,-10],[-45,33],[-56,-4],[-4,62],[-58,21],[-29,66],[-60,13],[-20,-38],[-37,-9],[-38,-40],[-73,5],[3,-68],[-55,2],[-48,36],[-77,38],[-55,46],[-85,32],[0,24],[-49,57],[-52,27],[-28,68],[-57,57],[-6,40],[-47,39],[-30,78],[-54,-23],[-136,39],[-30,-2],[-66,83],[-22,-10],[-84,34],[-102,10],[-97,25],[-30,-10],[-39,28],[-36,74],[-83,133],[-41,40],[-72,40],[-75,-78],[37,-37],[-120,-99],[-56,3],[-42,-38],[-10,-69],[-49,-102],[36,-43],[110,-89],[58,8],[48,-166],[-18,-76],[-39,-52],[-49,-42],[102,-34],[-54,-52],[44,-45],[-65,-78],[-10,-36],[-46,-31],[1,-38],[-58,-55],[86,-109],[90,-65],[35,-53],[-44,-49],[-13,-59],[-45,-49],[-17,-51],[30,-74],[-50,-76],[-38,-39],[-13,-45],[-121,-206],[-51,1],[-62,-57],[3,-32],[-37,-117],[-32,46],[-85,-14],[-114,7],[-67,-25],[-26,39],[-53,6],[-62,-12],[-87,43],[-17,73],[10,25],[62,53],[12,31],[-31,58],[65,101],[98,-27],[60,27],[-57,61],[-2,36],[-47,34],[-41,-40],[-65,-40],[-58,-20],[-43,-59],[-88,-46],[-127,-8],[-24,-29],[-136,162],[-50,-34],[-148,-28],[-33,26],[-103,38],[-55,-17],[-13,31],[-112,66],[-73,20],[-107,75],[-173,79],[-58,10],[-34,-25],[-82,9],[-19,-65],[14,-51],[-30,-16],[-31,25],[-82,-8],[-29,-36],[-56,-34],[-96,-105],[-32,-78],[-91,-186],[-37,-48],[-59,41],[-1,103],[-15,23],[-101,46],[-16,39],[-54,1],[-87,33],[-81,-28],[-37,53],[-34,17],[-3,46],[-109,42],[-95,14],[-62,-37],[-26,9],[-65,-92],[-56,-12],[-25,56],[144,67],[16,14],[27,99],[-21,65],[83,79],[-3,45],[43,79],[40,96],[-5,50],[23,29],[-14,83],[128,74],[34,-2],[-1,92],[-70,-7],[-34,18],[26,94],[-40,1],[-30,28],[4,48],[29,68],[-31,137],[-40,38],[-3,50],[-22,34],[52,43],[8,67],[-81,25],[-73,-38],[-115,-44],[-24,0],[-125,-57],[-29,35],[-78,-51],[-51,-21],[9,-33],[-45,-24],[-102,-8],[7,33],[-16,64],[-83,-41],[-59,8],[-13,-26],[-86,16],[-42,47],[-180,-7],[-32,-106],[-66,7],[-128,-16],[-82,15],[-28,-9],[-110,57],[-221,-22],[-107,-23],[-62,11],[-20,-20],[-72,2],[-101,-53],[-6,-75],[-63,-29],[-29,15],[-77,-56],[-4,-49],[-116,-32],[-84,20],[-47,-16],[-93,-8],[-37,-16],[-129,-6],[-15,18],[-70,23],[-73,101],[-194,-8],[-39,46],[-115,67],[-61,77],[-10,96],[16,85],[-31,25],[-85,2],[-23,25],[-77,33],[-79,83],[-91,8],[-52,35],[-61,-1]],[[56047,67743],[57,36],[37,62],[31,119],[78,171],[-6,118],[15,35],[38,18],[40,84],[4,39],[-25,67],[-58,28],[-18,51],[102,93],[75,5],[40,35],[33,98],[-12,56],[-37,65],[-115,33],[7,97],[-41,2],[-31,70],[42,97],[1,81],[26,19],[98,26],[131,20],[135,36]],[[22659,35316],[-42,-39],[-40,-1],[-81,34],[11,47],[-10,48],[90,37],[24,-59],[48,-67]],[[34665,45060],[41,-32],[36,28],[49,-28],[71,-20],[-41,-63],[-39,-22],[-33,-61],[46,-93],[-55,-108],[34,-105],[69,-40],[-16,-94],[26,-111],[-11,-59],[-75,-29],[-37,-2],[-40,-55],[-40,-33],[23,-27],[4,-47],[79,-16],[39,-23],[27,-57],[54,31],[12,-30],[46,-22],[24,-48],[64,3],[27,-93],[-34,-26],[-1,-63],[-56,8],[-33,-16],[-12,-162],[-62,3],[-55,17],[-8,-38],[35,-74],[-92,-52],[-15,-94],[-34,-45],[-39,-16],[-66,2],[0,-59],[-56,-40],[-24,-74],[69,-11],[117,-72],[42,11],[-14,-66],[-38,-50],[-46,-35],[-44,7],[-124,-44],[-18,-36],[-117,-30],[-24,-44],[-21,-118],[19,-98],[-18,-78],[-20,-32],[-2,-89],[79,-17],[48,-46],[59,4],[25,-89],[18,-10],[96,127],[34,-8],[43,-85],[138,35],[26,-36],[-3,-64],[92,-13],[18,-28],[89,-13],[42,10],[35,-45],[81,-44],[-14,-100],[-134,32],[-52,-35],[-85,-9],[-1,-100],[-55,-6],[-84,44],[-3,-96],[-88,21],[-57,24],[-86,-54],[2,-57],[59,-26],[26,-28],[-46,-49],[25,-55],[-26,-39],[-81,-32],[-61,2],[-27,53],[-88,9],[-7,-79],[25,-20],[-25,-117],[-58,-105],[69,-6],[7,-42],[-64,-56],[-55,-32],[-17,-80],[-46,18],[-93,-69],[47,-32],[-6,-75],[-77,-9],[-8,-53],[-32,-58],[26,-40],[32,-10],[3,-42],[84,-24],[18,-33],[111,-47],[18,13],[89,-41],[-8,-44],[61,-64],[5,-60],[56,-109],[-4,-44],[27,-56],[-60,-34],[-18,-33],[3,-86],[-56,-60],[14,-139],[-53,-32],[3,-89],[12,-27],[11,-137],[-14,-79],[22,-75],[34,-32],[-16,-77],[-85,13],[-34,-9],[7,-57],[-22,-104],[-29,-86],[52,-27],[29,25],[87,-20],[-14,-119],[-12,-23],[-57,7],[-34,-29],[-76,-15],[1,-32],[41,-18],[18,-48],[42,-8],[64,51],[37,-20],[-65,-141],[36,-10],[-26,-93],[-73,0],[-59,-62],[-109,0],[37,-72],[53,-11],[-2,-102],[-126,-25],[-45,-36],[-10,-71],[-156,-12],[-57,32],[-46,9],[-17,-70],[-150,-22],[-61,0],[86,-81],[23,-67],[75,-105],[83,-35],[95,-23],[74,-45],[76,13],[144,-67],[59,9],[38,37],[161,13],[107,-29],[32,-1],[60,-66],[72,-45],[65,-22],[46,-30],[24,-63],[-9,-64],[-28,-37],[-59,45],[-81,-41],[-34,-96],[-35,28],[-86,-8],[-9,-39],[-42,-31],[5,-99],[81,-4],[-7,-33],[-50,-8],[-1,-100],[-25,-33],[-17,-79],[16,-43],[-5,-124],[33,-4],[52,-43],[-43,-25],[-18,-69],[37,-25],[-13,-74],[-32,-92],[40,-98],[32,-13],[-17,-115],[34,-37],[-1,-77],[-19,-88]],[[37175,23458],[-81,9],[-32,24],[-90,15],[-29,-19],[-80,35],[-59,3],[-23,66],[-104,64],[-39,66],[-38,-6],[-5,44],[-91,31],[-66,12],[-49,-30],[-3,-42],[-55,-36],[46,-40],[-16,-31],[-74,1],[0,57],[-38,48],[-51,-5],[2,58],[-41,7],[6,39],[-37,6],[-22,-39],[27,-40],[-26,-64],[-88,35],[23,87],[46,24],[21,44],[-51,7],[-20,39],[-51,-22],[-49,-4],[-19,-33],[-210,2],[-13,-36],[-83,-47],[-29,8],[-31,-46],[65,-29],[-36,-95],[30,-37],[-43,-22],[-60,-84],[50,-57],[-26,-45],[-73,-17],[-25,-43],[43,-15],[-48,-107],[-62,17],[-23,-34],[22,-42],[-7,-31],[-48,-8],[-16,32],[-38,14],[-7,-61],[-24,-27],[-102,-3],[9,81],[-60,11],[-79,-16],[-158,-49],[-9,-58],[37,-85],[-58,-62],[-2,-82],[-43,-102],[24,-83],[8,-116],[99,-14],[-12,-46],[-98,-91],[79,-14],[76,81],[30,-32],[-31,-205],[14,-43],[-18,-34],[-21,-122],[-23,-78],[-47,-18],[-18,-50],[-65,-48],[-46,-105],[-41,-18],[-9,-35],[-71,-11],[-19,-44],[-61,-13],[-33,25],[-54,-12],[-31,-31],[-27,-102],[40,-42],[-29,-88],[62,-48],[107,-23],[101,41],[64,-29],[131,14],[48,18],[93,-34],[98,6],[170,-59],[68,-4],[25,-17],[48,-75],[4,-73],[99,-78],[-2,-32],[-37,-35],[-38,-89],[-95,-62],[-114,-170],[-96,-223],[4,-52],[-37,-9],[-67,11],[-168,-54],[-21,12],[-46,-22],[-94,26],[-90,-36],[-123,32],[-24,-32],[-30,-125],[5,-30],[-87,34],[5,-91],[-15,-90],[20,-20],[-18,-61],[-33,-67],[-6,-59],[-37,-76],[-68,-37],[-41,6],[-73,48],[-99,8],[-35,-56],[-73,-20],[-154,153],[-24,-33],[-135,49],[-18,-56],[-37,-17],[-138,-4],[-89,-34],[-106,-9],[-37,-43],[-91,8],[2,-67],[23,-129],[-49,40],[-75,3],[-8,22],[-88,110],[43,56],[-34,28],[-42,-7],[-51,-62],[-20,12],[35,75],[-33,43],[-68,31],[-53,-14],[-65,6],[8,-39],[-56,-101],[-57,63],[-32,-18],[-34,16],[-100,9],[-43,-68],[2,-60],[-28,-101],[-102,-101],[-87,-194],[-1,-77],[34,-23],[45,-84],[-13,-52],[-42,-18],[-72,51],[-31,-4],[-102,29],[-109,12],[-467,-13],[-66,-13],[-123,20],[-79,28],[-24,90],[-25,135],[-102,92],[-33,15],[-70,-61],[-43,-17],[-83,-90],[-104,17]],[[30512,19176],[-49,20],[-30,72],[3,93],[56,26],[3,31],[-46,75],[-8,36],[-51,-28],[-26,9],[-42,-35],[-61,15],[-36,-37],[-42,0],[-91,52],[-39,126],[-61,34],[-32,62],[-81,-4],[-33,-18],[-96,18],[-48,77],[6,47],[-14,68],[-72,57],[-80,-15],[-49,4],[-39,-15],[-49,-49],[-34,-6],[-32,31],[-2,99],[4,202],[-3,166],[-62,-36],[-68,-1],[-161,-112],[-41,9],[-54,-12],[-21,-33],[-82,5],[-104,35],[-64,-11],[-43,18],[-58,-4],[-101,23],[-95,64],[-25,51],[-52,17],[-23,38],[12,72],[-58,52],[-7,31],[-38,24],[-14,75],[20,73],[-23,24],[-121,17],[-89,-25],[-40,-32],[-41,-8],[0,64],[-61,20],[3,65],[-65,8],[-21,-36],[-40,-12],[-35,17],[-38,43],[-21,99],[-27,45],[-67,26],[-73,-10],[-77,16],[-24,58],[-67,41],[-14,48],[-58,42],[18,47],[-47,33],[-7,36],[-73,134],[-37,8],[-42,82],[-57,36],[-33,-27],[-103,13],[-1,29],[-53,86],[-23,78],[28,27],[14,72],[-37,30],[-53,3],[-24,32],[-45,12],[-49,80],[18,85],[-14,89],[71,-4],[23,-21],[43,9],[70,49],[7,24],[-37,119],[-38,-28],[-25,33],[-53,-21],[-49,-36],[8,-57],[-61,-42],[-55,-8],[-7,105],[-16,29],[-76,6],[-37,22],[1,77],[-48,13],[-40,-10],[-32,85],[-6,53],[22,42],[37,3],[17,39],[92,-24],[46,33],[-2,31],[-73,11],[-25,43],[-92,49],[-24,-10],[-31,-63],[-44,-54],[-38,-20],[-6,-39],[-57,-5],[-33,42],[-17,93],[-41,34],[10,74],[-70,9],[-46,-42],[-57,12],[-50,71],[33,16],[41,86],[-62,35],[-47,-8],[-72,19],[-31,61],[-47,13],[-25,-20],[9,-54],[-16,-37],[-47,-33],[-84,8],[-18,41],[6,66],[45,-3],[-4,65],[-22,44],[-43,16],[-71,-15],[-18,-28],[-42,23],[34,36],[-44,18],[-32,42],[63,87],[-17,51],[4,47],[-128,-51],[-62,26],[-92,-31],[-130,-60],[-33,-28],[-36,25],[-44,-4]],[[24709,23441],[-13,58],[-52,75],[-64,152],[-22,101],[-56,146],[-30,250],[-33,180],[-28,102],[-4,92],[-34,59],[41,3],[-15,79],[-48,2],[-12,109],[-52,260],[-38,72],[-38,188],[-53,140],[-8,89],[47,40],[-25,57],[-87,87],[-1,156],[-31,172],[23,26],[28,-128],[41,-50],[79,0],[24,-50],[25,10],[-29,85],[-86,21],[-28,24],[0,39],[37,19],[26,71],[81,-19],[-47,85],[-62,-33],[-36,-91],[-20,4],[-10,72],[-33,-2],[-14,38],[-14,115],[-3,94],[-23,163],[-10,124],[-31,122],[45,-29],[36,58],[46,-11],[-10,-63],[50,-18],[71,79],[82,5],[14,29],[-92,11],[-91,21],[-33,58],[-60,33],[11,24],[63,58],[-65,17],[-37,-79],[-10,-123],[-34,8],[-38,47],[-34,130],[-3,67],[-27,61],[-16,194],[-51,221],[-29,91],[55,-41],[19,43],[-67,28],[-37,48],[-42,164],[-28,27],[-16,48],[-31,35],[-64,16],[-44,29],[0,50],[-54,25],[-26,40],[-37,140],[69,-2],[-4,35],[-83,28],[-10,87],[-55,142],[2,79],[-22,75],[-13,118],[-36,113],[-41,29],[-30,72],[-41,167],[54,-29],[33,-37],[45,22],[98,-44],[71,-15],[-39,63],[-53,27],[-10,56],[-35,25],[-131,-12],[-60,48],[-49,72],[-22,147],[-17,78],[6,48],[-29,104],[21,41],[-59,9],[-43,168],[-50,90],[-19,91],[28,40],[31,5],[21,-49],[-19,-50],[26,-37],[2,-96],[18,-37],[82,-19],[15,88],[56,4],[-72,61],[-53,81],[-24,57],[-29,26],[-5,43],[-31,9],[-21,59],[-41,-86],[-1,-41],[-41,-35],[-38,-9],[-60,15],[-22,78],[21,52],[-23,37],[-50,122],[73,17],[55,28],[137,-46],[90,10],[81,51],[8,38],[-86,-52],[-102,-22],[-67,42],[-97,8],[-52,-37],[-77,28],[-22,42],[24,79],[-32,97],[11,34],[-13,61],[-74,66],[35,30],[-11,35],[-96,98],[-46,-11],[2,-33],[-77,-13],[-13,-49],[-76,99],[-48,25],[38,57],[-51,-3],[-14,-59],[-59,93],[-132,43],[-18,69],[43,-17],[32,27],[7,108],[77,5],[45,-14],[-5,-71],[53,61],[-2,47],[31,18],[-10,39],[57,33],[89,19],[40,-32],[28,44],[-94,17],[11,43],[-131,-31],[-11,-38],[-71,-45],[-43,-2],[-18,-44],[-93,-1],[-20,78],[-39,56],[1,52],[-33,10]],[[21954,34745],[-52,19],[-52,42],[9,25],[64,-6],[59,30],[30,86],[-22,34],[-3,51],[94,47],[28,59],[109,3],[53,33],[23,79],[67,31],[18,-23],[-19,-83],[32,-59],[56,-4],[56,38],[68,-54],[77,35],[42,32],[21,54],[78,-27],[52,40],[40,90],[-24,60],[20,60],[56,35],[-8,42],[-125,4],[-3,43],[63,64],[49,8],[20,-80],[54,-32],[34,34],[-48,65],[12,15],[-15,76],[-25,14],[162,195],[54,125],[-1,60],[53,94],[24,70],[-9,24],[-102,40],[-93,-23],[-95,-62],[-42,5],[12,67],[-40,23],[72,80],[50,43],[42,3],[12,35],[60,38],[37,-21],[74,-12],[92,-58],[27,56],[2,42],[-22,116],[25,153],[56,27],[1,51],[-37,40],[19,45],[-19,31],[-71,62],[-30,-30],[-47,10],[-8,26],[-69,5],[-75,30],[-5,91],[-111,-20],[-4,57],[-38,13],[-65,-25],[-28,-49],[-67,-34],[-31,53],[29,42],[46,5],[-43,125],[-53,6],[42,61],[-39,51],[31,13],[-17,43],[27,81],[41,3],[22,-91],[37,-6],[-8,55],[34,48],[-16,47],[-81,-10],[-20,77],[24,20],[-18,104],[-63,-8],[-55,37],[-40,-2],[-6,60],[19,110],[-41,5],[-31,-57],[7,-26],[-51,-26],[-32,59],[11,31],[58,8],[30,22],[-38,55],[-18,70],[17,23],[114,-60],[27,-106],[36,17],[-6,149],[37,36],[52,-29],[72,42],[-11,-72],[32,-4],[53,-40],[38,32],[-1,93],[30,75],[94,16],[18,45],[50,24],[94,17],[-4,66],[-25,48],[1,74],[47,31],[31,-85],[36,-45],[55,15],[74,-3],[79,10],[-6,-160],[58,-7],[16,-36],[-37,-38],[0,-46],[53,-30],[67,14],[93,49],[37,50],[50,4],[2,89],[25,13],[60,-27],[54,21],[44,-8],[15,42],[-126,87],[42,102],[90,44],[0,139],[8,18],[90,-7],[53,10],[65,40],[36,42],[42,15],[15,31],[79,-12],[14,20],[172,38],[17,40],[140,-8],[116,5],[-30,62],[0,95],[-15,179],[94,52],[43,42],[57,-8],[12,107],[-54,4],[-96,75],[6,37],[37,23],[60,-43],[45,22],[71,-26],[66,66],[99,-17],[16,-50],[50,39],[65,2],[65,29],[41,2],[2,-101],[46,-46],[44,2],[18,-37],[55,-29],[10,-76],[114,-34],[66,34],[11,-16],[-35,-107],[174,-4],[41,86],[101,-8],[54,52],[34,105],[-23,32],[-4,172],[80,5],[145,-8],[53,17],[45,46],[86,30],[135,-51],[47,63],[90,23],[54,-37],[27,-41],[12,-79],[89,27],[48,54],[48,-11],[102,2],[-2,166],[22,7],[126,-19],[4,-130],[95,-15],[32,-58],[98,30],[27,21],[-37,75],[17,168],[-4,37],[-67,-20],[-38,23],[15,39],[55,60],[58,4],[10,32],[-26,166],[-76,-2],[-3,76],[-79,107],[-13,39],[10,63],[99,69],[24,39],[-15,186],[-9,35],[-93,7],[-28,84],[-70,37],[37,99],[-10,53],[-108,35],[-21,124],[138,34],[-1,118],[37,141],[22,12],[16,64],[52,-16],[47,-54],[69,-22],[0,-70],[38,-91],[63,-17],[53,13],[55,40],[80,-53],[41,-6],[47,-109],[32,-23],[76,-12],[23,43],[-5,66],[21,85],[63,4],[63,-50],[12,-73],[21,-10],[44,41],[2,56],[37,23],[27,-44],[7,-140],[-10,-64],[64,-30],[75,-85],[40,3],[110,45],[107,5],[56,51],[79,-7],[67,21],[32,-9],[38,-77],[19,-9],[57,67],[30,59],[71,16],[61,-53],[95,-46],[2,-158],[45,-12],[11,65],[-20,71],[-4,65],[39,30],[171,26],[5,28],[52,17],[21,-65],[75,-6],[21,-101],[154,-4],[-16,54],[114,26],[26,-87],[6,-67],[109,5],[42,96],[65,44],[-9,85],[-171,22],[30,128],[11,104],[-34,4],[-112,-13],[-11,143],[71,13],[83,53],[-21,37],[-77,-14],[2,77],[74,21],[-20,76],[-78,24],[-21,82],[-10,122],[153,13],[34,11],[125,13],[31,68],[17,89],[88,44],[137,20],[-17,35],[6,171],[138,7],[0,170],[54,0],[80,17],[31,-91],[5,-141],[66,16],[43,79],[20,108],[38,49],[47,-48],[13,-105],[75,-32],[27,-48],[19,-81],[56,-2],[46,-28],[6,98],[32,8],[10,85],[89,31],[-36,43],[12,77],[-32,29],[26,40],[74,-24],[35,28],[52,3],[13,37],[37,11],[44,105],[-84,95],[-41,23],[-63,2],[11,159],[94,2],[32,-84],[105,-33],[20,57],[92,-1],[-5,31],[82,28],[102,-18],[30,16],[40,68],[61,2],[10,84],[-22,2],[23,188],[-7,187],[128,17],[-13,31],[15,69],[-21,41],[10,33],[54,23],[15,35],[-56,51],[-78,3],[-36,20],[34,80],[-24,32],[30,51],[39,-12],[38,117],[139,7],[23,-77],[97,-16],[-8,61],[41,21],[62,-41],[3,-46],[27,-35],[106,-8],[39,30],[45,-21],[28,58],[-77,108],[94,45],[69,2],[30,55],[35,124],[32,11],[6,69],[39,32],[51,-29],[54,14],[-6,49],[-26,20],[-8,67],[54,4],[64,121],[-22,9],[35,72],[53,20],[-45,60],[27,88],[67,7],[23,31],[112,56],[69,26],[15,57],[31,5],[61,-97],[44,72],[58,-4],[-19,-70],[20,-113],[114,-12],[35,-36],[-8,-39],[-59,-49],[23,-48],[-20,-51],[-95,-71],[-43,-15],[26,-40],[69,-9],[42,-19],[57,-6],[106,27],[2,-95],[31,-47],[74,-39],[56,34],[44,-11],[20,29],[56,34],[-16,79],[42,20],[74,-53],[38,-9]],[[33730,45777],[0,-39],[-25,-34],[-70,-32],[-25,12],[24,85],[96,8]],[[30512,19176],[41,-101],[-48,-33],[-94,1],[-59,-12],[-12,-69],[-23,-44],[-76,-42],[-54,-17],[-26,39],[-65,-43],[-49,-51],[-27,63],[-47,11],[-26,37],[-168,-111],[64,-158],[-36,-21],[43,-95],[-17,-136],[66,54],[30,-18],[45,23],[36,-34],[123,-82],[48,54],[20,-17],[83,-24],[108,-78],[74,22],[-8,-73],[116,-94],[33,-36],[91,-24],[139,-55],[-3,-57],[76,4],[31,16],[6,-120],[-34,-44],[0,-54],[-63,-132],[-94,-40],[-155,-84],[-13,-119],[-18,-21],[55,-56],[51,23],[-2,49],[80,16],[69,-3],[56,-45],[56,-4],[44,15],[110,15],[90,-5],[78,-38],[205,130],[4,32],[66,17],[110,-97],[-32,-32],[12,-54],[-55,-19],[-64,-57],[-11,-29],[39,-98],[70,-16],[25,-23],[48,10],[21,-59],[-24,-65],[43,-37],[3,-51],[-45,-27],[10,-64],[52,-3],[14,-29],[46,-27],[-38,-30],[-167,30],[-80,-59],[-39,-70],[-7,-77],[-65,-76],[-20,-71],[-28,-52],[20,-35],[119,-68],[58,-6],[120,-77],[61,15],[48,-20],[41,8],[46,-40],[120,-38],[26,-44],[52,-50],[25,-43],[-30,-43],[12,-31],[45,4],[28,-34],[105,0],[34,-113],[-16,-80],[-51,-118],[-15,-53],[-74,-134],[56,-32],[16,-97],[-7,-39],[-75,-21],[-28,9],[-148,0],[-6,-48],[23,-38],[-3,-39],[25,-24],[53,-12],[-15,-92],[17,-34],[-21,-60],[28,-33],[-43,-150],[3,-41],[-13,-163],[-37,-92],[57,-81],[-26,-30],[56,-56],[32,-48],[-13,-53],[-30,-34],[-29,-165],[45,-45],[70,-4],[37,31],[6,-92],[55,-42],[28,-5],[27,-47],[2,-40],[63,-37],[69,25],[42,-33],[73,-9],[45,-39],[39,44],[138,86],[74,25],[28,102],[101,84],[70,33],[81,25],[74,52],[107,88],[68,-12],[151,-11],[2,-46],[-30,-88],[65,-112],[70,-91],[-22,-34],[24,-81],[56,3],[32,-18],[21,-52],[-24,-22],[-35,-85],[-19,-96],[7,-104],[-29,-67],[-104,27],[-24,-28],[-57,-30],[-33,10],[-23,-42],[26,-86],[34,-20],[98,-112],[24,-17],[44,-76],[-30,-50],[26,-32],[-10,-33],[18,-53],[43,-35],[-9,-41],[-34,-42],[-36,2],[-67,-79],[-19,-67],[-46,-45],[8,-65],[-27,-46],[37,-47],[34,-1],[20,-41],[-32,-48],[-23,-64],[38,-4],[51,-63],[5,-34],[-43,-26],[-47,-8],[10,-96],[-23,-70],[8,-61],[-68,-25],[-3,-70],[10,-44],[-45,-101],[-51,-48],[-19,-70],[6,-41],[-28,-23],[3,-48],[71,-17],[42,34],[37,-7],[3,-33],[98,-89],[26,12],[77,-41],[39,6],[94,80],[66,23],[62,-100],[28,23],[46,85],[14,-29],[-14,-39],[16,-40],[-35,-41],[40,-32],[15,-87],[75,-69],[60,32],[-2,-39],[37,-40],[-31,-22],[-21,-116],[-37,-63],[-44,-6],[-32,23],[-64,-73],[1,-27],[-48,-72],[22,-45],[-6,-60],[-22,-10],[3,-98],[-76,-103],[-59,10],[10,-76],[-34,-50],[-40,-17],[27,-108],[-24,-3],[-14,-120],[-16,-29],[28,-61],[-62,-73],[-39,-1],[-11,-42],[44,-13],[14,-42],[-1,-86],[-53,-51],[-18,-47],[-78,-46],[-8,-34],[-50,-36],[-23,-52],[12,-40],[-47,-79],[-47,-24],[-51,-8],[-25,-59],[-55,-38],[8,-46],[33,-9],[14,-42],[43,-34],[18,-62],[43,-22],[20,-38],[1,-122],[50,24],[50,-31],[-19,-28],[15,-53],[66,-31],[12,-52],[47,-15],[28,-141],[-60,-80],[-13,-43],[-37,-14],[-10,-83],[-60,-25],[-2,-46],[-55,13],[2,-50],[-26,-52],[-79,10],[44,-117],[46,-31],[31,-62],[10,-49],[-12,-35],[42,-83],[52,-48],[24,-40],[35,-21],[1,-59],[86,-105],[51,-131],[-47,-80],[-18,-61],[-56,-22],[-36,-30],[-61,63],[-29,-2],[-44,-41],[16,-20],[30,-110],[38,-37],[2,-51],[-77,-11],[-23,-29],[-10,-72],[-97,-124],[-48,21],[-22,-17],[32,-63],[50,-67],[-21,-38],[-5,-53],[-47,-7],[-56,11],[-48,-40],[-16,-44],[-56,-17],[-32,-53]],[[32987,5993],[-23,11],[-139,118],[-134,127],[-50,14],[-26,67],[-62,11],[-37,55],[-7,72],[-125,136],[-167,205],[-108,148],[-25,49],[-60,72],[-116,159],[-49,75],[-93,101],[-104,151],[-83,103],[-23,42],[-152,195],[-2,38],[-60,48],[-37,61],[-114,147],[-85,83],[-48,28],[-35,-14],[-58,38],[-15,30],[-14,85],[-36,95],[-46,202],[-60,175],[-95,215],[-61,92],[-27,92],[-38,70],[-69,177],[-68,150],[-36,112],[-64,165],[-75,140],[-53,129],[-44,148],[-68,319],[-15,139],[-28,138],[-5,86],[-31,113],[-28,182],[-15,206],[-4,108],[-25,213],[-53,289],[-19,82],[-41,104],[-23,98],[7,60],[-84,128],[-20,79],[-47,104],[-44,202],[-21,67],[-33,143],[-22,40],[-11,96],[-44,40],[-56,130],[-1,98],[-22,25],[-48,199],[-39,109],[-20,83],[-157,394],[-39,48],[13,51],[-40,64],[-11,70],[74,9],[15,32],[-46,22],[-17,32],[-3,71],[-37,-23],[38,-99],[-48,-36],[14,-79],[-22,0],[-27,97],[-56,158],[-73,140],[-111,273],[-18,21],[-28,86],[-49,93],[-38,142],[-34,38],[-42,84],[-25,123],[-30,188],[-80,378],[-3,79],[-24,86],[-31,150],[-55,176],[-13,56],[-44,95],[-43,66],[50,19],[-33,51],[-44,-12],[-19,40],[-87,278],[-96,259],[-33,44],[0,114],[-40,43],[-72,132],[-34,84],[-86,105],[-85,44],[-62,-5],[-58,63],[-63,219],[-69,160],[-44,153],[-99,247],[-37,66]],[[27203,19279],[26,42],[-55,7]],[[27174,19328],[-67,90],[-111,91],[-28,65],[-37,-15],[-36,79],[-95,87],[-66,108],[-37,27],[-59,73],[-59,-33],[-40,10],[-5,47],[-91,109],[-35,13],[3,37],[-45,88],[-7,42],[51,1],[73,-55],[27,26],[-62,60],[-34,16],[-19,81],[-55,-9],[-52,23],[42,-84],[-48,11],[-53,69],[-32,67],[-59,90],[-70,25],[-29,-39],[-69,-33],[-7,53],[-64,148],[-57,151],[-147,363],[-145,397],[-94,199],[-88,198],[-64,78],[-81,145],[-28,78],[5,37],[-20,58],[-35,-15],[-32,99],[-47,103],[-37,111],[-109,264],[-88,227],[-42,70],[-24,67],[-57,115]],[[27264,19378],[6,-3],[0,46],[-38,19],[4,92],[-48,-19],[14,-21],[4,-55],[-29,-6],[-6,-45],[45,-24],[48,16]],[[21890,17371],[-71,-5],[-111,39],[-150,108],[-58,59],[-66,94],[-49,102],[-9,61],[18,60],[40,42],[49,17],[76,-14],[142,-69],[83,-62],[64,-67],[66,-89],[36,-67],[20,-90],[-6,-44],[-31,-49],[-43,-26]],[[13539,19836],[-17,-55],[-94,39],[-71,0],[-50,15],[-78,145],[-22,176],[-19,55],[-63,61],[6,55],[144,166],[46,-6],[55,-124],[29,-119],[30,-49],[52,-134],[3,-41],[33,-155],[16,-29]],[[15094,12711],[-90,-14],[-21,36],[35,152],[58,64],[34,20],[26,61],[137,111],[35,61],[42,-23],[30,-124],[-29,-80],[-44,-88],[-79,-103],[-59,-25],[-75,-48]],[[14775,18492],[-64,7],[-52,40],[-32,80],[-6,112],[53,105],[55,87],[34,19],[56,-26],[17,-37],[-19,-151],[19,-219],[-61,-17]],[[14467,17324],[-46,-198],[-28,-48],[-59,-29],[-61,25],[-65,127],[-90,120],[32,9],[58,-24],[154,20],[40,20],[92,78],[-27,-100]],[[13747,21593],[-35,12],[-10,49],[4,76],[-24,60],[0,73],[-13,155],[65,35],[85,-59],[22,-38],[-2,-126],[-22,-115],[-48,-106],[-22,-16]],[[18046,6140],[67,2],[-5,-38],[-41,-84],[5,-60],[-73,-82],[-37,-6],[-88,21],[-32,38],[-3,87],[13,19],[157,102],[37,1]],[[20204,12875],[-21,6],[-69,79],[-5,110],[54,67],[34,62],[54,72],[27,-65],[-44,-125],[-17,-106],[2,-70],[-15,-30]],[[16508,14924],[14,-65],[-131,-77],[0,43],[63,101],[54,-2]],[[20293,15858],[111,-2],[15,-19],[-97,-43],[-54,4],[-7,58],[32,2]],[[17849,18397],[-34,43],[-11,54],[50,-16],[8,-67],[-13,-14]],[[16774,19288],[-36,-62],[-34,34],[29,48],[41,-20]],[[16785,17008],[-19,35],[20,38],[41,-21],[-42,-52]],[[46174,56927],[-31,-17],[-113,-29],[-34,19],[-57,3],[-37,25],[-5,41],[-76,6],[11,57],[-101,44],[-65,80],[-70,4],[-55,27],[-37,-11],[-101,29],[-19,-56],[-1,-55],[-35,-10],[-46,17],[-62,1],[-18,18],[-38,105],[33,61],[49,59],[-38,106],[-62,43],[-33,57],[-18,116],[-18,21],[-103,49],[-50,39],[21,23],[-37,74],[-38,14],[-53,-7],[-28,65],[-46,27],[-17,45],[-40,37],[-146,-2],[-59,54],[-61,2],[-43,-40],[-43,-8],[-78,-66],[-94,16],[-32,-61],[-59,-28],[-45,-56],[-68,-68],[-138,8],[-121,-85],[-30,8],[-51,71],[-38,11],[-127,-16],[-33,-53],[-9,-62],[-97,-2],[-121,27],[-24,26],[-94,36],[-26,48],[-97,87],[-220,82],[-69,-44],[-74,-1],[-33,-40],[-99,-13],[-28,-73],[-37,-13],[-118,2],[-121,-49],[-59,18],[-87,-15],[-11,26],[21,56],[-66,59],[-59,39],[4,47],[-32,39],[53,55],[-36,32],[-6,43],[-46,111],[-112,51],[-66,-20],[-65,33],[-43,1],[-62,-64],[-122,19],[-50,19],[-97,16],[-18,-10],[-120,31],[-49,59],[-52,33],[-107,25],[22,-34],[-47,-57],[-14,-75],[38,-39],[-6,-53],[-38,-30],[-255,41],[-25,-82],[-49,-45],[-61,-10],[-45,-26],[18,-37],[-59,-40],[-24,31],[-114,-13],[-74,7],[-79,-16],[-56,67],[-73,-5],[-46,-45],[-81,-48],[-101,-5],[-2,-114],[-30,-33],[64,-45],[6,-76],[48,-17],[-17,-124],[-42,0],[-92,51],[-38,-59],[-125,40],[-28,-23],[-77,5],[-143,-8],[-46,-86],[-29,28],[-13,60],[-54,16],[-28,-82],[-54,-33],[-76,27],[-73,42],[-92,-13],[-81,21],[-61,-26],[-58,42],[-76,-6],[-72,75],[-19,34],[-85,38],[-106,15],[-66,-41],[-39,-46],[-89,-6],[-17,-28],[-49,25],[-31,-8],[8,71],[-18,72],[-25,40],[6,59],[-32,54],[33,95],[-67,32],[-56,1],[-36,32],[-29,-14],[22,-76],[-62,-68],[-70,18],[-20,30],[-67,-58],[-62,-11],[-7,48],[-68,6],[-39,24],[-59,-12],[52,-74],[-84,-27],[-29,6],[-45,-35],[-41,-11],[-128,19],[-31,-21],[-6,-95],[24,-57],[-30,-61],[-156,-98],[-129,-68],[-107,-67],[-75,-15],[-88,-57],[-74,-17],[-72,-52],[-145,-15],[-9,-47],[-51,-4],[-96,-29],[-58,27],[-75,10],[-62,24],[-106,57],[-69,14],[-22,-85],[-105,-23],[-69,-2],[-30,-69],[-123,-29],[-3,72],[-43,12],[-16,63],[-68,-93],[-30,58],[-60,21],[-167,-16],[19,-74],[-16,-19],[-145,31],[-30,66],[17,31],[-55,52],[-63,37],[-29,-122],[-32,-51],[-88,4],[-14,49],[-5,99],[-46,83],[0,78],[-45,40],[-70,22],[3,64],[-68,106],[-14,65],[24,37],[69,8],[57,47],[99,-13],[75,5],[28,-27],[64,-27],[90,-18],[50,-25],[83,3],[66,48],[-5,32],[-56,42],[-62,-16],[-11,20],[5,97],[-17,131],[13,23],[-40,71],[-7,91],[-30,30],[-31,97],[-32,45],[-46,6],[-12,50],[-78,86],[-77,34],[-17,52],[-80,-30],[-180,-28],[-94,3],[-143,17],[-59,-17],[-164,11],[4,-42],[32,-50],[-14,-47],[-58,19],[-35,-52],[-124,8],[-11,-69],[-53,-24],[-85,40],[14,71],[-62,18],[-24,-40],[-65,-9],[-98,42],[-100,-22],[-93,8],[-35,-48],[-94,-35],[-89,-63],[-48,-11],[-69,-61],[-249,-199],[-38,-55],[-35,-1],[-147,56],[-69,-86],[-142,18],[-43,-77],[-13,-60],[20,-106],[-84,-49],[27,-47],[60,-45],[20,-36],[-28,-92],[-31,-24],[-121,-67],[-22,-108],[-20,-26],[-236,-153],[-147,-116],[-11,-39],[131,-185],[-10,-135],[-59,0],[-40,-74],[-1,-92],[-30,-49],[-136,23],[-43,21],[-58,7],[-112,-64],[-32,-1],[-109,34],[-33,-38],[-28,-141],[-35,-50],[-29,-3],[-18,-92],[-71,-32],[-81,2],[-9,-51],[-71,-24],[-51,-42],[-56,11],[-98,-11],[-140,0],[-57,-7],[-47,68],[-126,4],[-29,-9],[-161,-6],[-57,-16],[0,76],[-122,81],[16,54],[-43,65],[-54,31],[50,52],[58,-19],[89,-9],[21,68],[-25,29],[8,49],[-15,62],[-68,36],[50,101],[-52,112],[-59,38],[-7,38],[-75,206],[-31,54],[-172,-83],[-66,49],[-127,37],[-57,10],[-60,65],[-193,-16],[-106,38],[-44,-5],[-50,-43],[-72,9],[-40,-24],[-116,26],[-157,-18],[-55,30],[-139,-7],[-123,-43],[-55,10],[-108,-6],[-38,47],[-104,-6],[-37,-47],[-97,-9],[-26,-19],[-88,57],[-89,17],[-119,10],[-119,-13],[-17,13],[-83,-16],[-21,-24],[-71,7],[-86,69],[-28,-38],[-122,-4],[-66,11],[-5,76],[-94,-23],[-84,-11],[-39,35],[-41,6],[-46,-22],[-118,64],[-216,86],[-86,79],[-44,95],[-18,80],[-51,92],[-41,50],[-27,56],[-148,30],[-17,33],[-111,55],[-83,19],[-134,43],[-52,27],[-34,48],[-151,7],[-35,-29],[-59,-22],[-43,-34],[-82,23],[-4,-25],[-96,23],[-63,4],[-163,38],[-72,28],[-86,63],[-46,16],[-189,37],[-69,6],[-15,70],[-93,21],[1,58],[-46,67],[-67,-10],[-67,26],[5,107],[16,41],[-37,60],[-16,117],[30,55],[20,137],[3,116],[36,88],[-48,54],[4,44],[-70,49],[-13,32],[-78,43],[-46,-10],[-30,18],[-32,61],[5,128],[-33,59],[-175,-42],[-38,-71],[-76,-80],[-45,-25],[-133,-13],[-33,-22],[-35,-115],[-319,-43],[-55,8],[-102,87],[-64,17]],[[22700,63681],[93,31],[44,38],[6,38],[111,85],[85,-4],[71,-21],[45,-50],[81,-30],[167,14],[5,27],[81,22],[45,66],[-6,53],[231,50],[66,71],[108,74],[53,76],[68,-19],[104,-8],[112,68],[19,71],[-118,-42],[-61,1],[-26,35],[99,54],[-78,116],[-104,11],[-78,-55],[-74,10],[-21,49],[-41,34],[-106,-1],[-35,51],[-37,4],[-34,-51],[-36,6],[-17,51],[-31,37],[-7,53],[-54,-4],[4,38],[68,9],[16,18],[11,98],[54,3],[45,73],[3,141],[94,41],[54,85],[1,38],[169,21],[39,67],[43,4],[24,42],[87,38],[56,-28],[29,8],[32,74],[80,21],[38,72],[40,19],[42,-7],[25,-48],[60,26],[41,34],[79,31],[38,58],[28,10],[20,60],[43,63],[44,23],[30,42],[59,-3],[66,32],[-3,50],[-31,19],[-24,80],[-53,32],[2,44],[47,33],[5,88],[60,62],[-32,90],[30,31],[-8,42],[-37,85],[-65,9],[11,140],[10,35],[-33,42],[-6,46],[35,173],[32,49],[-7,42],[31,20],[44,77],[81,51],[35,68],[-2,49],[58,42],[19,60],[-44,44],[-6,121],[-53,42],[-21,107],[-75,43],[-9,70],[-45,24],[11,47],[-101,67],[-11,50],[-63,115],[24,33],[71,34],[-2,45],[-31,15],[-10,49],[-70,64],[-82,-31],[-76,6],[-65,21],[-92,-20],[-89,6],[-43,22],[10,68],[97,80],[10,125],[-6,72],[66,78],[37,85],[48,-3],[6,60],[114,108],[-2,47],[-60,15],[-26,-27],[-58,6],[24,68],[-38,51],[-83,4],[-48,-39],[-48,29],[-33,-7],[-82,58],[-16,25],[-56,-7],[-10,4],[10,53],[48,46],[71,6],[3,60],[31,47],[-33,129],[84,36],[73,19],[-25,101],[43,70],[37,19],[14,41],[31,7],[-14,56],[-78,-7],[-60,7],[5,41],[46,117],[-36,63],[86,47],[-14,160],[39,3],[32,-122],[60,-130],[52,-91],[4,-39],[63,-32],[24,-82],[54,-46],[53,-6],[154,23],[78,126],[-3,23],[133,31],[-34,99],[10,74],[100,0],[4,79],[-31,82],[-54,15],[-104,-27],[-91,4],[-61,15],[-27,-28],[-45,-1],[-18,36],[-76,20],[-24,42],[-72,0],[-3,-72],[-33,-8],[-43,62],[74,36],[6,44],[-11,94],[-58,107],[-3,48],[-46,25],[-11,61],[1,99],[31,107],[76,28],[33,-35],[19,-113],[84,18],[40,-7],[46,-44],[-23,-83],[21,-32],[68,-20],[66,3],[-14,-66],[69,-15],[51,14],[131,-14],[80,-60],[34,2],[112,109],[30,8],[31,-37],[107,36],[-14,89],[16,25],[-15,168],[17,57],[51,-2],[28,34],[86,30],[16,84],[-12,35],[-39,26],[16,65],[29,-5],[26,37],[42,-44],[57,-31],[18,31],[80,-16],[39,14],[67,-8],[84,18],[53,-7],[66,13],[96,-5],[49,-13],[8,-64],[-82,-30],[-39,-43],[15,-22],[0,-73],[30,-24],[23,-51],[-12,-48],[-33,-49],[-29,-121],[-20,15],[-33,77],[-11,63],[-36,20],[-19,97],[-35,0],[-36,-58],[35,-85],[34,-12],[11,-42],[-34,-35],[-43,-12],[-28,-56],[7,-40],[99,-39],[22,-33],[64,-7],[54,68],[89,-8],[81,-27],[132,54],[62,3],[-26,-112],[-65,-35],[-132,-49],[-74,-38],[-51,-4],[-64,-71],[-47,7],[-10,44],[-51,92],[-47,25],[-110,18],[-53,-7],[77,85],[7,57],[-32,28],[-66,-50],[-16,65],[-41,-34],[-25,-53],[98,-143],[49,-3],[40,-38],[-19,-60],[-109,-5],[-41,-41],[-14,-83],[-38,0],[-20,-111],[32,-1],[79,-147],[43,49],[78,-23],[66,14],[137,-47],[173,-14],[48,-30],[120,-20],[206,-44],[117,17],[83,46],[108,41],[64,-24],[110,35],[116,-134],[77,10],[94,41],[77,102],[229,127],[66,17],[48,-10],[51,13],[71,-36],[83,-78],[40,-25],[12,-49],[-51,-192],[58,5],[18,-64],[-18,-54],[9,-31],[-45,-30],[-22,-40],[41,-18],[49,22],[80,-29],[6,-63],[32,-36],[99,-18],[23,-22],[-43,-42],[5,-40],[66,-47],[-11,-43],[-47,-49],[-62,26],[-6,-46],[54,-17],[23,-51],[-14,-55],[4,-86],[-21,-39],[-157,-89],[-51,-17],[-68,14],[-18,32],[-43,23],[10,111],[-38,30],[-51,10],[-19,-66],[-110,-120],[-5,-72],[-72,-22],[-22,-55],[36,-2],[-6,-160],[68,-81],[32,-65],[60,-8],[60,23],[58,-54],[-2,-156],[51,-71],[-69,-7],[-9,-43],[-49,-25],[-69,-9],[-21,-52],[7,-39],[-22,-31],[-49,-110],[-26,-86],[69,6],[61,-25],[41,-97],[47,33],[36,-60],[69,19],[7,-47],[-12,-93],[-185,-38],[2,-101],[-33,-94],[-30,7],[-4,-63],[-54,-17],[-36,7],[-9,-58],[-45,-29],[-85,-15],[-18,65],[-44,48],[8,77],[-32,9],[-29,52],[-37,-8],[-66,-51],[-25,-72],[-139,-5],[-50,-26],[-54,29],[9,71],[-18,20],[-53,0],[-76,35],[-65,67],[-84,-172],[-42,-48],[-59,-45],[-11,-107],[-17,-59],[-2,-68],[114,-39],[62,-74],[47,-12],[78,-47],[91,-73],[26,-92],[-35,9],[-15,-43],[37,-40],[64,-2],[-3,-58],[127,22],[27,-21],[94,-5],[36,-41],[63,-26],[42,-35],[41,58],[-30,123],[85,-12],[33,41],[-24,72],[31,10],[13,64],[-77,15],[-32,35],[16,105],[31,-15],[65,7],[80,-47],[35,-34],[9,-96],[68,-8],[53,76],[31,-12],[56,32],[132,58],[51,-1],[43,-37],[37,28],[62,17],[59,32],[39,-9],[61,79],[102,42],[19,39],[-2,123],[-13,29],[-61,61],[0,109],[49,23],[62,-5],[135,80],[24,53],[38,38],[76,16],[130,44],[23,26],[68,-14],[42,11],[-20,93],[28,48],[-19,49],[-3,98],[-38,36],[10,106],[108,118],[8,32],[-45,146],[27,43],[73,15],[10,76],[50,63],[77,-81],[-43,-102],[36,-61],[7,-142],[34,-62],[29,25],[90,18],[107,-45],[40,7],[9,74],[105,54],[63,12],[67,-20],[141,-91],[33,-11],[44,-52],[39,18],[4,50],[46,-8],[64,-32],[38,48],[41,-1],[18,-44],[65,-21],[42,-47],[8,-82],[47,-62],[117,19],[93,49],[-10,42],[-42,37],[21,49],[54,24],[43,40],[-37,63],[98,-15],[9,81],[88,-2],[26,39],[41,-18],[76,11],[23,47],[30,9],[14,-93],[21,-48],[-54,-64],[-41,-85],[-10,-67],[38,-19],[62,-67],[72,-38],[33,34],[95,6],[51,-29],[82,-152],[37,-21],[51,24],[48,-3],[105,52],[64,3],[48,-31],[51,-3],[41,179],[19,46],[63,-7],[40,47],[-5,37],[-41,4],[-45,44],[-11,44],[-71,59],[-85,94],[-40,73],[-17,88],[-52,61],[-22,57],[-7,71],[45,29],[4,81],[-29,76],[31,113],[-35,21],[38,103],[-17,72],[-45,42],[-74,141],[45,17],[71,48],[75,-7],[32,-35],[3,-55],[49,2],[41,82],[48,-17],[20,-31],[-14,-187],[98,-79],[71,-28],[55,18],[17,38],[48,-4],[117,108],[3,62],[26,46],[68,-9],[12,69],[40,77],[-3,83],[-18,37],[10,62],[-6,124],[-83,158],[-14,78],[-52,47],[-56,-5],[-45,15],[-74,56],[-30,73],[-2,36],[-65,17],[-90,-59],[-68,-11],[-61,32],[-96,-22],[-59,14],[7,69],[-40,59],[-75,73],[-50,89],[33,7],[98,50],[95,2],[118,-8],[74,36],[43,4],[61,40],[22,50],[-130,59],[-4,36],[44,51],[-64,51],[-60,-14],[8,61],[-79,75],[-20,67],[11,79],[-1,75],[28,19],[20,71],[70,-1],[194,56],[57,30],[11,42],[44,42],[83,4],[43,-25],[44,-1],[55,-24],[122,-30],[49,32],[89,11],[51,78],[109,-3],[26,40],[-7,43],[25,16],[71,-7],[32,19],[87,-26],[77,10],[77,26],[82,-59],[43,-67],[25,-13],[110,50],[60,5],[73,41],[0,22],[68,31],[15,259],[46,-7],[55,25],[-16,26],[-27,104],[-54,19],[-43,56],[-64,18],[-9,42],[-40,43],[63,53],[30,80],[-11,56],[-29,50],[-40,-3],[-14,-32],[-48,6],[28,46],[45,119],[-42,47],[-1,31],[63,98],[-26,43],[-39,-6],[-143,55],[-82,-50],[-86,-94],[-127,-79],[-20,-23],[-12,-94],[4,-70],[-74,-4],[8,-46],[-36,-27],[-64,14],[-73,-8],[-140,85],[-149,18],[-45,-60],[-39,-14],[-50,17],[-20,-51],[-37,-42],[-116,3],[-126,-18],[-23,-73],[-40,-13],[-49,15],[2,71],[-91,80],[-42,18],[-97,11],[-89,21],[-79,-14],[-181,-43],[-10,-15],[-174,78],[-32,41],[-42,20],[-82,-8],[-87,62],[-79,74],[-40,-21],[-59,52],[-26,3],[-13,63],[-37,103],[-91,42],[-14,29],[-4,92],[-64,94],[-16,50],[-65,77],[7,80],[-46,115],[23,106],[-4,104],[-35,18],[-22,40],[42,95],[-80,42],[-42,45],[17,90],[77,41],[87,9],[14,50],[-30,88],[27,124],[74,106],[65,57],[68,109],[46,34],[70,-20],[56,15],[15,81],[22,40],[56,18],[66,4],[148,-42],[70,6],[108,76],[-33,40],[27,40],[59,-12],[67,18],[43,35],[46,71],[-3,51],[20,33],[51,36],[12,36],[-37,72],[39,32],[18,9],[92,63],[44,87],[2,31],[46,45],[125,18],[36,13],[207,124],[38,84],[71,66],[106,39],[119,4],[44,32],[32,53],[16,63],[16,24],[59,32],[105,-4],[26,23],[109,-33],[161,104],[108,53],[85,76],[68,75],[13,74],[24,49],[41,7],[20,35],[44,13],[73,43],[73,-36],[59,25],[113,-15],[27,54],[-49,66],[5,44],[175,30],[115,-7],[63,8],[53,34],[53,66],[65,10],[37,31],[74,13],[61,47],[42,65],[103,55],[61,49],[89,-34],[70,13],[48,43],[14,57],[32,50],[103,42],[113,-12],[57,17],[43,70],[-15,106],[81,60],[137,20],[35,49],[8,84],[47,46],[134,-14],[108,55],[86,101],[73,-9],[73,-35],[65,-6],[44,-31],[53,-14],[47,33],[-5,147],[10,54],[83,45],[-2,49],[-57,37],[-1,69],[37,44],[50,7],[100,-42],[112,-1],[12,38],[-59,73],[-9,28],[46,22],[69,-11],[66,24]],[[37125,78405],[49,5],[120,-66],[36,17],[10,97],[53,57],[46,16],[108,1],[65,21],[78,-10],[86,-170],[54,-7],[95,24],[31,-32],[42,-80],[46,-32],[126,-29],[87,-11],[69,-51],[77,-28],[40,-28],[134,-6],[68,74],[143,-23],[32,20],[36,71],[141,30],[22,-10],[-11,-62],[28,-8],[56,50],[78,-100],[135,9],[47,-14],[109,-154],[89,-84],[67,-1],[78,35],[164,-65],[6,-19],[-48,-76],[41,-38],[59,54],[74,36],[34,-4],[30,-42],[-53,-104],[60,-80],[9,-64],[-53,-22],[-34,-41],[-9,-79],[43,32],[25,-31],[0,-91],[130,-58],[-7,-44],[68,-71],[41,-13],[10,-72],[-61,-92],[5,-20],[76,-38],[32,3],[57,39],[64,-16],[61,-32],[-28,-47],[-7,-61],[-62,-21],[-51,23],[-23,-48],[33,-67],[-2,-44],[-36,-16],[-9,-40],[147,-35],[24,-35],[13,-112],[-66,-29],[-40,24],[-75,-108],[-74,-13],[-41,-52],[1,-59],[58,-33],[-82,-69],[-51,16],[-32,59],[-29,13],[-69,-13],[-27,-21],[21,-44],[45,1],[56,-33],[12,-59],[-68,-46],[-39,28],[-59,-43],[59,-61],[43,-17],[-10,-70],[-53,-17],[-58,19],[-38,-5],[-60,-65],[82,-46],[20,-67],[68,-50],[38,4],[10,-59],[-22,-30],[-55,-1],[-24,-54],[-29,-3],[-88,-87],[23,-43],[-19,-47],[-8,-90],[-26,-21],[-40,-78],[17,-54],[-55,-9],[-42,-32],[-36,-60],[-66,-39],[40,-65],[-22,-42],[9,-46],[-96,-18],[-42,-45],[-9,-59],[80,-43],[-9,-126],[-27,-30],[-54,42],[-2,61],[-93,41],[-63,-51],[20,-31],[45,29],[29,-39],[-14,-32],[-77,0],[-73,-95],[-15,-53],[-50,-36],[-58,-13],[-3,-43],[55,-67],[113,-40],[16,-56],[58,-85],[0,-113],[-23,-82],[-39,-27],[-106,-17],[-123,-40],[-31,21],[-49,-7],[-86,-45],[-41,-4],[-43,-36],[-62,-75],[-105,31],[-8,52],[-51,2],[-23,-46],[-29,-1],[-34,-43],[-79,14],[-47,-13],[-72,33],[-60,0],[-74,34],[-38,-5],[-78,-62],[-41,-46],[-58,48],[-27,-14],[-65,-112],[0,-97],[40,-68],[8,-42],[-55,-2],[-48,-31],[-30,-67],[-31,-23],[-61,-7],[-49,32],[-46,-92],[-10,-104],[-81,-76],[-41,-5],[-20,-63],[107,-48],[30,-73],[-13,-35],[-46,-27],[-27,-38],[31,-25],[106,-26],[0,-58],[63,-69],[-26,-60],[51,-33],[23,-62],[76,-18],[-37,-48],[-1,-53],[67,-25],[51,-63],[41,-12],[58,12],[-8,-60],[-78,1],[8,-48],[74,-64],[-68,-16],[-83,24],[-46,-15],[-41,-56],[-44,-32],[-127,-44],[-27,-36],[20,-151],[27,-70],[-13,-65],[-26,-44],[-77,-41],[-64,-81],[-99,-61],[-25,-41],[-156,-104],[-53,-75],[-108,-43],[-27,-56],[8,-89],[80,-21],[81,-116],[63,-142],[-23,-72],[24,-86],[91,-119],[23,-77],[40,-64],[-42,-82],[7,-42],[42,-87],[-7,-72],[-47,-175],[-115,-42],[-29,-38],[12,-35],[68,-43],[6,-87],[87,-25],[24,-39],[-35,-51],[25,-49],[85,-56],[105,-89],[68,-25],[31,-46],[51,-19],[14,-35],[-60,-61],[-41,-68],[-33,-26],[8,-51],[40,-31],[7,-38],[75,-45],[89,-90],[79,15],[16,41],[56,10],[31,30],[-5,61],[26,47],[102,54],[28,110],[53,73],[38,32],[54,-15],[48,-62],[93,-54],[95,-14],[24,-53],[33,-16],[41,-93],[67,-22],[-21,-54],[17,-39],[35,16],[86,-64],[54,-112],[45,-4],[65,-38],[73,19],[30,53],[71,-53],[32,31],[45,13],[-22,-65],[26,-63],[27,-21],[36,-106],[26,-19],[52,16],[18,94],[63,-20],[41,44],[72,-4],[58,21],[27,39],[-7,98],[114,74],[11,64],[-19,46],[92,69],[68,84],[64,65],[-4,65],[51,172],[26,40],[-22,75],[-37,-10],[-116,5],[-35,55],[-68,14],[-37,58],[-7,39],[48,48],[45,-17],[-3,-41],[67,-4],[86,47],[-11,20],[-71,29],[2,55],[-16,76],[19,40],[-56,43],[-64,66],[-33,90],[-42,37],[-41,101],[-32,28],[-38,-22],[-26,-71],[-43,23],[-40,-32],[-10,-46],[-73,-14],[-34,10],[-30,-38],[-63,-20],[-92,37],[-15,35],[0,100],[-29,89],[18,37],[37,16],[19,78],[46,42],[-18,153],[4,44],[-20,47],[5,110],[49,39],[10,39],[-29,61],[-30,120],[-66,37],[-56,6],[-33,33],[-73,13],[-24,41],[-104,30],[-42,89],[-12,74],[-107,70],[-7,22],[34,63],[19,163],[26,38],[-8,102],[-46,82],[-34,36],[-86,24],[4,114],[-17,118],[-88,174],[-31,100],[27,122],[-60,47],[-61,5],[-39,24],[-17,38],[-58,-25],[-32,48],[-27,-7],[-131,-84],[-67,11],[-26,29],[4,63],[69,25],[69,-40],[8,40],[68,66],[65,-71],[74,18],[60,78],[-29,17],[-20,136],[62,-28],[41,-39],[75,13],[12,34],[-6,64],[-27,30],[-50,-2],[15,45],[86,-22],[27,25],[12,49],[32,31],[41,-3],[18,-36],[54,10],[13,40],[-18,51],[23,29],[71,14],[46,-20],[42,34],[28,-8],[41,-75],[-116,-87],[-36,56],[-27,-20],[22,-98],[108,-29],[21,28],[63,-45],[-22,-69],[118,-37],[106,36],[5,25],[-25,112],[-1,42],[-67,9],[18,35],[183,43],[48,-5],[15,31],[-83,35],[-89,-47],[-50,33],[-14,39],[-58,28],[-29,30],[7,104],[48,39],[16,-59],[48,-34],[60,26],[62,3],[133,-59],[75,-55],[-57,-27],[-52,6],[12,-44],[63,-14],[63,71],[13,58],[-41,94],[-71,49],[26,48],[156,32],[6,35],[-34,43],[22,50],[42,14],[91,-5],[31,-63],[26,65],[59,-33],[1,-79],[-36,-27],[-46,12],[-11,-42],[68,-87],[2,-56],[-21,-44],[-62,-65],[-37,-20],[96,-73],[49,53],[65,-11],[38,-72],[-18,-35],[10,-59],[28,-30],[-5,-63],[-96,-10],[-36,-67],[-38,-4],[-42,32],[-75,20],[-6,61],[133,-14],[28,46],[46,29],[-29,26],[-103,-14],[-53,-40],[-98,-6],[-49,-42],[-88,-97],[21,-77],[-38,-4],[-25,-45],[-44,-35],[-84,15],[-32,-45],[37,-40],[39,35],[31,-31],[-24,-90],[66,-78],[42,-69],[41,2],[16,77],[28,50],[17,66],[35,33],[-18,75],[-39,24],[71,66],[3,41],[33,9],[84,-29],[25,28],[61,-55],[43,50],[48,10],[-11,-140],[64,-81],[-20,-28],[-40,6],[-38,-21],[17,-56],[-28,-12],[-55,20],[-28,29],[-36,-4],[-45,-95],[-44,-11],[-46,14],[-19,-71],[54,-67],[-6,-37],[-47,-62],[7,-46],[29,-63],[87,72],[28,51],[60,67],[106,39],[60,-16],[49,-68],[50,-13],[17,79],[-26,24],[6,39],[-84,41],[4,43],[50,83],[21,11],[73,-15],[14,-34],[-5,-68],[54,6],[-11,-57],[111,-35],[1,-26],[-51,-35],[-68,-92],[42,-50],[-39,-70],[-13,-49],[63,-24],[71,53],[23,85],[74,78],[24,-63],[106,-50],[-43,-77],[64,-57],[-38,-44],[69,-27],[18,29],[68,-25],[45,-1],[39,23],[2,44],[-41,10],[-1,54],[61,23],[44,-32],[4,-58],[92,-19],[58,-27],[-3,103],[-47,-10],[-41,32],[42,38],[94,12],[32,-31],[11,-47],[-28,-42],[81,-40],[21,52],[70,-10],[50,82],[-47,91],[-68,55],[-20,83],[13,65],[-29,81],[73,-30],[26,-50],[38,-31],[54,11],[5,-54],[22,-30],[53,52],[-44,34],[23,30],[-4,165],[-30,13],[-64,-58],[-40,16],[-65,61],[-56,-57],[-34,5],[-21,46],[14,120],[65,69],[51,5],[12,43],[113,-12],[32,-18],[2,-59],[28,-50],[-42,-41],[71,-22],[12,-90],[47,10],[-5,96],[30,3],[109,-55],[-3,-66],[111,-11],[76,55],[5,35],[75,-2],[22,-66],[-74,17],[-24,-51],[-69,-57],[-26,-65],[57,-16],[1,-33],[-39,-38],[-84,23],[-21,-75],[-74,-75],[-14,-83],[32,-68],[2,-43],[47,-28],[26,9],[35,69],[27,19],[35,-46],[-22,-57],[26,-16],[75,67],[50,22],[-36,-134],[41,-35],[68,-18],[38,65],[63,10],[-12,93],[55,46],[80,125],[69,24],[19,-63],[91,-55],[-13,-44],[41,-6],[51,39],[48,-38],[123,-22],[39,38],[113,-14],[70,10],[50,28],[43,-9],[66,-60],[71,-19],[63,-37],[41,0],[40,-42],[51,-15],[55,8],[-49,70],[34,92],[76,34],[-43,29],[7,82],[-39,103],[41,62],[-37,22],[-29,45],[59,25],[42,43],[78,-30],[47,31],[27,-81],[28,68],[80,82],[24,-25],[52,11],[52,-13],[75,21],[-13,73],[69,50],[-10,90],[40,72],[61,-9],[122,9],[49,49],[37,-8],[51,-37],[74,-14],[37,59],[82,41],[0,45],[106,23],[4,89],[93,-9],[47,26],[69,-23],[39,93],[66,-14],[80,-68],[51,-62],[16,-76],[-40,-55],[34,-94],[-10,-110],[-24,-35],[35,-58],[107,-14],[31,-35],[31,-72],[75,-53],[47,32],[31,-10],[9,-86],[37,-84],[24,-30],[21,-69],[-31,-35],[-106,-9],[-141,-87],[-4,-41],[67,-36],[11,-22],[-30,-44],[-59,-26],[-28,-102],[29,-49],[-78,-13],[-87,-28],[-29,34],[-41,12],[-14,-62],[-40,-54],[43,-33],[40,-2],[92,-69],[43,-2],[45,70],[37,-18],[40,38],[34,-3],[18,-66],[35,5],[-5,70],[-32,6],[25,59],[-55,13],[12,44],[44,-11],[55,62],[47,-33],[12,52],[47,-21],[67,42],[19,-64],[52,15],[5,-45],[33,-52],[78,5],[-24,-47],[-74,7],[-69,37],[-76,-57],[53,-32],[17,-43],[50,-28],[-22,-69],[78,-24],[13,51],[38,14],[43,48],[161,-10],[-24,58],[22,47],[-133,42],[-42,3],[-4,36],[34,33],[-44,60],[35,44],[-47,9],[-47,39],[129,-3],[35,-75],[91,-55],[61,28],[30,41],[39,11],[104,-47],[-25,57],[-30,20],[-15,52],[36,74],[-25,13],[14,93],[42,-24],[-1,-50],[72,5],[27,-56],[-37,-5],[-51,-91],[34,-20],[88,-2],[33,-21],[12,-44],[39,8],[15,33],[41,-20],[-28,-67],[7,-41],[198,69],[24,-36],[66,6],[91,-9],[20,31],[-20,57],[-92,27],[-20,32],[-99,18],[-6,97],[-61,-3],[82,81],[46,-53],[57,25],[56,-3],[30,22],[30,-37],[58,36],[77,-61],[33,-79],[38,67],[-21,54],[36,104],[-21,96],[123,-15],[32,27],[30,-72],[72,-50],[-76,-95],[-36,17],[-39,-81],[30,-82],[-33,-56],[41,-34],[-17,-33],[-109,-77],[-45,-84],[41,-38],[38,-66],[-52,-67],[-43,0],[-23,-49],[-73,5],[-27,-43],[42,-27],[-3,-48],[69,-31],[53,-8],[80,6],[119,44],[31,37],[147,61],[30,-17],[-4,-68],[33,-44],[98,-5],[6,-33],[71,42],[62,-31],[1,55],[35,33],[61,-9],[124,-1],[15,-54],[33,-55],[143,-120],[44,89],[45,0],[34,164],[100,-52],[39,-40],[26,17],[2,58],[-19,63],[41,30],[-4,35],[-36,35],[69,45],[101,133],[52,106],[-31,41],[22,32],[-49,71],[45,45],[7,95],[55,47],[-22,46],[134,9],[-2,-86],[15,-76],[31,9],[0,49],[-23,46],[9,43],[63,35],[22,-24],[50,4],[63,-100],[83,-68],[65,3],[49,41],[30,-8],[39,-76],[-11,-12],[-89,5],[-31,-23],[123,-40],[83,-12],[-2,-24],[94,-46],[41,28],[10,54],[38,42],[-54,15],[-57,41],[-1,67],[49,-13],[5,54],[32,16],[66,-40],[1,36],[32,58],[-61,27],[8,56],[72,-10],[96,15],[30,25],[80,-46],[-23,-61],[87,-10],[53,-39],[-102,-75],[-4,-52],[117,-46],[34,-31],[-63,-36],[-20,-35],[-56,-32],[51,-40],[1,-31],[50,-7],[51,19],[41,52],[49,12],[15,-56],[51,3],[19,-31],[-4,-50],[87,-23],[29,8],[12,51],[59,-17],[21,-38],[43,-29],[80,-32],[75,-52],[140,37],[62,-48],[101,-19],[104,-75],[9,-159],[29,-44],[-6,-41],[-44,-59],[-7,-50],[23,-33],[95,-43],[-6,-48],[59,-73],[45,-11],[159,33],[26,12],[72,-23],[151,-83],[62,-5],[67,-47],[45,-69],[52,6],[22,41],[100,-47],[52,34],[80,-16],[51,3],[-26,-66],[-46,6],[24,-72],[-26,-78],[101,-30],[-10,31],[-51,31],[36,29],[68,24],[40,-44],[41,8],[-30,-70],[6,-143],[-53,-43],[0,-63],[71,4],[19,-37],[61,61],[82,-66],[25,-144],[-20,-43],[60,-15],[76,42],[59,-19],[17,-42],[39,-24],[91,-18],[87,2],[20,33],[-33,44],[-8,73],[31,84],[-23,35],[-14,66],[21,45],[47,39],[45,4],[60,-61],[1,-50],[103,23],[38,-32],[117,11],[20,-82],[20,-20],[165,43],[51,42],[181,55],[79,49],[28,-2],[74,-52],[39,-42],[-16,-106],[38,-25],[94,17],[58,-10],[73,7],[11,-16],[9,-172],[104,9],[16,-184],[-73,-26],[-129,-18],[-3,43],[-44,-3],[-64,21],[-7,-81],[5,-90],[78,-53],[-11,-48],[-37,-43],[26,-23],[-18,-37],[-1,-135],[-39,-40],[-29,-121],[42,-54],[155,7],[-3,-57],[18,-42],[-18,-111],[23,-27],[-7,-77],[-50,-95],[-2,-125],[-85,-50],[18,-87],[15,-128],[-48,-45],[-10,-69],[-118,20],[-33,49],[-32,7],[-19,-62],[-31,-31],[23,-42],[140,-105],[26,-63],[66,7],[56,-29],[50,-8],[42,19],[-39,-134],[-59,-49],[22,-70],[76,-28],[87,3],[43,-22],[-10,-95],[33,-53]],[[41497,71376],[50,12],[41,44],[0,46],[-53,26],[-3,39],[-65,38],[-10,61],[-25,36],[-4,53],[-52,28],[-19,47],[-35,-86],[18,-38],[75,-28],[14,-73],[-11,-56],[-60,-77],[55,-22],[84,-50]],[[41393,71964],[-33,21],[-22,-48],[46,-15],[9,42]],[[44736,46736],[-77,-65],[-79,-20],[-41,19],[-46,-14],[-48,-85],[-80,17],[-34,62],[-137,-58],[-54,-14],[-91,97],[-27,0],[-48,55],[-57,17],[-50,99],[-53,18],[-23,61],[-72,27],[-43,2],[-183,40],[-58,50],[-83,131],[117,26],[29,29],[21,54],[7,72],[0,235],[-36,145],[12,183],[-32,81],[-36,19],[-94,-8],[-73,-38],[-43,-4],[-9,30],[15,69],[-12,172],[49,73],[129,74],[75,75],[54,14],[6,44],[-74,108],[-9,89],[44,129],[49,96],[61,53],[7,35],[-24,109],[28,63],[10,93],[21,103],[-51,97],[-50,58],[-3,71],[-79,73],[-47,57],[-32,16],[-89,17],[-186,141],[-18,28],[-25,97],[-86,43],[-29,52],[-29,16],[-138,21],[-102,-77],[-129,-26],[-142,-7],[-68,-38],[-52,-100],[-24,-123],[-35,-25],[-95,36],[-67,59],[-18,88],[-103,-26],[-6,-93],[-74,-51],[-49,-5],[-36,-25],[-45,84],[-63,57],[-102,-1],[-44,25],[-114,85],[-8,37],[-104,10],[-72,-8],[-27,-24],[-35,96],[-43,25],[-140,57],[-68,-7],[3,-39],[40,-49],[6,-36],[-39,-71],[-11,-127],[-78,-64],[-28,-46],[3,-54],[44,-36],[-8,-44],[-109,-22],[-74,35],[-45,69],[-62,61],[-132,45],[-7,59],[-23,10],[-84,-7],[-39,10],[-44,55],[-123,-21],[-68,76],[-27,10],[-53,-44],[-88,4],[-1,42],[87,68],[2,41],[-47,54],[-11,50],[23,125],[-27,37],[-67,25],[-32,-12],[-71,22],[-45,-13],[-47,-36],[-119,4],[16,90],[1,68],[-24,134],[-42,106],[-27,14],[-114,-16],[-84,81],[-81,-12],[-92,15],[-81,-50],[-54,74],[-198,61],[-108,28],[-58,35],[-69,-23],[-218,39],[-51,-29],[-33,-86],[-36,3],[-65,91],[-43,-1],[-134,27],[-114,52],[-44,63],[-7,104],[-68,14],[-109,1],[-49,46],[43,36],[-23,46],[-68,-13],[-46,-154],[-13,-92],[33,-15],[133,-26],[9,-24],[-20,-56],[12,-20],[79,-30],[24,-44],[3,-52],[-26,-106],[-28,-63],[-29,-13],[-1,-82],[-83,-38],[-25,-52],[-112,-3],[-60,-104],[67,-33],[42,-122],[44,-75],[1,-126],[-42,-19],[-12,-33],[-65,-1],[59,-81],[17,-130],[39,-69],[7,-80],[-11,-37],[-43,-29],[-89,19],[-79,-93],[-103,16],[-34,-28],[-63,-76],[-59,17],[20,-63],[-11,-107],[-18,-60],[27,-56],[38,-27],[-15,-112],[-37,-94],[12,-115],[-12,-30],[-124,-45],[-85,63],[-102,-3],[-63,36],[-27,-32],[-65,-27],[-35,30],[5,60],[-14,31],[-68,31],[-34,69],[-24,18],[-97,31],[-32,47],[-104,79],[-83,-37],[-52,-54],[-71,12],[-19,-34],[-101,-40],[4,-71],[50,-16],[94,-11],[18,-38],[-19,-44],[-59,16],[-64,-19],[3,-36],[-36,-108],[-23,-34],[-29,-84],[32,-44],[-14,-84],[-57,-88],[18,-54],[24,-18],[-11,-107],[-50,-8],[-50,73],[-56,-18],[4,-57],[-29,-51],[14,-78],[-97,19],[-35,23],[-16,-131],[26,-35],[15,-79],[-3,-70],[52,-19],[21,31],[111,-8],[-16,-128],[152,11],[-19,-82],[-16,-4],[-14,-74],[60,-20],[46,16],[46,-7],[23,-91],[40,-5],[2,-62],[97,-34],[16,-49],[54,-17],[-6,-78],[-51,-2],[-78,30],[-260,-86],[-37,-84],[-16,-68],[-48,-110],[-28,-43],[-2,-51],[-58,-85],[0,-40],[-64,25],[-2,43],[-41,21],[-30,-67],[-62,-54],[-12,-130],[49,-83],[19,-63],[-3,-63],[-71,-147],[-58,12],[-110,-54],[-25,2],[-68,-55],[-46,36],[26,52],[-44,16],[-42,-12],[-118,-13],[4,-48],[-19,-47],[12,-32],[-38,-47],[62,-45],[-7,-67],[-38,27],[-53,11],[-21,-67],[-90,-4],[12,-30],[126,-17],[-4,-41],[-83,-32],[-51,22],[-67,-1],[-9,-51],[108,-37],[-21,-117],[-29,-10],[-75,-80],[-7,-60],[29,-39],[97,-32],[50,-51],[12,-38],[-75,-66]],[[20315,35040],[-11,34],[-48,33],[52,56],[-28,21],[-37,129],[-38,51],[-64,175],[-41,-9],[-7,52],[-60,116],[-37,54],[-55,11],[-36,43],[-97,53],[-32,-22],[-66,28],[-46,91],[-4,28],[-41,21],[5,66],[20,50],[-30,128],[-103,77],[37,42],[-1,86],[22,24],[-21,81],[8,50],[-39,21],[-35,48],[-33,192],[-36,19],[-23,80],[-23,121],[-50,163],[-43,60],[0,65],[-25,26],[-4,98],[-52,18],[-1,77],[65,27],[44,1],[1,39],[-48,5],[-41,-35],[-31,7],[-59,186],[-25,49],[-9,82],[-38,14],[-25,123],[-31,11],[-17,101],[39,63],[59,22],[12,55],[-67,32],[-23,65],[42,15],[46,-5],[95,85],[35,-50],[1,-65],[73,99],[-24,27],[-97,31],[-48,-54],[-65,-6],[23,48],[-63,30],[27,34],[-17,108],[45,43],[-63,17],[-40,99],[-28,104],[-3,80],[42,82],[11,50],[-46,51],[-44,94],[6,113],[-3,87],[-44,30],[28,129],[-19,87],[21,23],[16,81],[48,-71],[90,-27],[-22,48],[-48,12],[-27,56],[-83,45],[-5,88],[-25,35],[-38,-24],[-22,30],[-5,87],[27,10],[57,-36],[50,62],[-8,58],[39,-12],[36,24],[-71,25],[-39,122],[-41,12],[7,48],[-14,77],[22,18],[-47,56],[-15,66],[-72,47],[38,24],[-2,76],[-41,37],[-34,77],[-33,102],[-33,-12],[-25,32],[-9,50],[18,33],[54,8],[40,-20],[43,48],[-2,36],[-65,18],[21,42],[-35,36],[-15,64],[6,41],[-49,63],[-32,10],[-34,-25],[-38,21],[-26,40],[62,47],[19,95],[-15,42],[22,69],[-28,94],[-12,78],[-27,44],[-65,53],[-53,64],[-6,66],[35,24],[29,72],[-56,51],[-53,152],[27,9],[-53,87],[-25,101],[83,63],[-5,37],[-109,277],[-40,73],[-21,119],[-32,64],[-28,88],[-27,41],[-47,20],[-2,97],[-39,46],[-41,25],[-20,107],[-1,90],[-30,18],[-45,90],[29,43],[38,-12],[17,47],[50,22],[-8,34],[-52,-24],[-38,-49],[-22,63],[-26,19],[-45,-6],[34,95],[-40,92],[-33,29],[-41,95],[51,50],[5,62],[-16,100],[-20,61],[-88,72],[-55,-26],[-21,35],[32,46],[-3,66],[-22,58],[-4,68],[54,17],[29,46],[26,73],[-32,66],[-40,35],[-108,70],[-4,28],[54,33],[-3,35],[-52,32],[-16,49],[-12,105],[-46,108],[28,32],[12,114],[25,18],[-11,137],[63,-23],[28,43],[-37,27],[-50,118],[-68,94],[-80,70],[-23,74],[3,151],[-35,57],[-1,47],[23,41],[7,88],[19,74],[-21,67],[17,119],[-199,349],[-18,59],[55,94],[4,40],[-46,31],[-58,-51],[-24,27],[75,138],[20,134],[26,17],[-16,78],[4,100],[18,42],[1,135],[-16,50],[-67,59],[-17,-51],[-43,2],[13,91],[-22,47],[39,32],[10,86],[-38,16],[-19,84],[11,81],[-2,120],[11,126],[36,17],[22,102],[-37,27],[-120,142],[4,60],[-20,169],[-28,124],[11,86],[-68,55],[-8,78],[-47,57],[-22,72],[17,145],[26,46],[-3,67],[-57,44],[-37,103],[11,90],[61,27],[-33,80],[-37,38],[-72,-11],[6,124],[-25,62],[59,46],[-4,75],[103,35],[33,46],[-10,33],[-75,-47],[-46,6],[-26,-26],[-55,66],[-38,-37],[-39,105],[3,95],[40,-11],[41,12],[21,38],[-5,62],[-21,42],[-9,70],[-46,72],[16,34],[51,-10],[47,35],[10,35],[55,6],[91,-41],[-14,-35],[55,-128],[54,10],[48,-70],[37,11],[-38,127],[31,36],[-18,44],[7,65],[-28,57],[-72,-33],[-78,23],[2,81],[-19,66],[37,77],[-51,42],[-26,68],[1,65],[19,45],[42,40],[31,133]],[[98048,73026],[-16,-129],[-27,-55],[-80,-24],[-18,-18],[-27,-83],[-5,-84],[-84,-144],[-54,-129],[2,-87],[-51,-199],[60,-81],[42,-22],[66,3],[62,-63],[110,-37],[36,-28],[60,8],[37,-39],[83,-28],[36,-25],[-1,-136],[20,-103],[-1,-46],[-31,-150],[-60,-93],[-48,-30],[-37,-60],[-5,-38],[64,-102],[-49,-32],[-48,-103],[-3,-31],[-46,-51],[-85,-52],[-2,-42],[-55,-55],[-24,-75],[0,-57],[-28,-41],[-7,-76],[29,-78],[-58,-81],[-25,-86],[-74,-44],[-24,16],[5,59],[-30,1],[-26,-73],[-30,27],[-43,-7],[-16,-36],[24,-57],[-9,-70],[-37,-101],[-74,-126],[-83,-93],[-48,-41],[-73,-26],[-93,-216],[-40,-105],[-97,-22],[30,-71],[-41,-29],[28,-33],[-2,-88],[-31,-70],[-125,-53],[77,-59],[-32,-53],[-96,-113],[-93,-11],[5,-182],[-54,-150],[-67,-55],[-38,-146],[-5,-89],[-77,-47],[-18,-97],[5,-90],[-10,-51],[11,-67],[-46,-106],[-44,-15],[37,-56],[-51,-89],[-79,-113],[-58,-107],[5,-107],[-70,5],[-28,-40],[-5,-154],[-25,-142],[-82,12],[-15,-38],[-46,-13],[-29,38],[-3,55],[-36,42],[-30,64],[-75,-2],[-91,29],[-30,69],[-94,63],[-60,-11],[-118,11],[-58,64],[-121,26],[-92,-8],[-34,-28],[-37,-2],[-40,-35],[-65,0],[-41,-23],[-79,-8],[-30,12],[-10,56],[-43,79],[-30,8],[-44,50],[-42,85],[-58,18],[-24,-37],[-231,47],[-54,-24],[-39,34],[-91,7],[-42,-17],[17,-77],[-43,-69],[-45,-24],[-63,12],[-42,72],[-42,-35],[-9,-57],[-90,-17],[-57,-53],[-159,92],[-22,34],[3,78],[-51,92],[-34,20],[-41,132],[-64,69],[-90,35],[-138,38],[-73,-30],[29,-88],[-17,-55]],[[93070,67544],[-92,3],[-90,-10],[-52,-69],[-69,-39],[-11,39],[37,93],[5,59],[-58,49],[-79,5],[-5,-49],[-32,-93],[-84,24],[-68,-10],[-32,30],[11,39],[-42,49],[-39,17],[-48,-35],[-21,-59],[-63,-34],[-42,5],[5,68],[-47,40],[-37,74],[-95,-48],[-59,18],[-39,33],[-49,3],[-49,42],[-90,-1],[-10,35],[46,20],[25,45],[1,49],[46,29],[-8,53],[28,32],[-29,47],[50,22],[26,69],[-21,73],[-41,69],[26,69],[-21,35],[100,147],[30,98],[-80,14],[-8,47],[10,60],[-19,22],[27,41],[-88,50]],[[93580,72449],[-5,-93],[15,-25],[126,-14],[-25,-87],[4,-36],[57,18],[76,-13],[50,20],[31,-16],[43,-74],[58,-30],[10,-63],[55,-7],[111,189],[21,60],[108,178],[-3,67],[56,10],[21,119],[70,-14],[23,14],[19,54],[62,35],[1,42],[24,41],[66,48],[62,26],[34,73],[69,86],[18,75],[-23,42],[-71,43],[-55,-33],[-28,8],[-6,61],[28,99],[28,-11],[105,25],[44,-1],[20,45],[42,28],[95,-22],[110,42],[191,-19],[80,-27],[56,57],[118,15],[-7,79],[123,-70],[39,-3],[56,-70],[61,3],[38,-71],[-15,-35],[172,-35],[35,31],[18,63],[55,-4],[55,25],[34,-9],[-5,-79],[120,-133],[107,8],[19,17],[63,-2],[46,34],[59,-67],[40,0],[58,54],[131,51],[89,59],[82,27],[35,-4],[20,40],[-12,90],[28,66],[53,12],[110,100],[64,-7],[8,-21],[78,63],[63,76],[29,4],[95,116],[29,66],[89,-43],[-36,-59],[-41,-105],[28,-40],[-41,-91],[-63,-99],[17,-70],[11,-111],[-22,-105],[63,-30],[47,-50],[75,-39],[66,-52],[123,-48],[41,-7],[47,17]],[[89701,71372],[-76,13],[-67,41],[-70,21],[-58,-4],[-25,28],[-5,88],[-64,11],[-56,-35],[-42,1],[-251,97],[-74,57],[36,39],[-72,15],[-88,-8],[-149,78],[-4,53],[-45,35],[-177,79],[-46,7],[-58,-22],[-75,5],[-57,22],[-74,-32],[-28,-37],[-134,46],[-125,-2],[-200,-30],[-67,14],[-128,-36],[-150,-9],[-72,18],[4,-70],[-13,-20],[-122,37],[-82,-78],[-63,-4],[-41,-30],[-38,5],[-32,-25],[-51,25],[-35,62],[-51,-14],[-13,66],[5,53],[-86,-13],[-19,-27],[-76,-47],[-96,-25],[-74,1],[-55,-41],[-82,6],[-15,52],[-77,1],[-53,23],[-66,66],[-37,-25],[-59,16],[-43,-12],[-74,39],[-41,-18],[-65,19],[-25,30],[-109,7],[-4,26],[-60,43],[-35,9],[-47,-36],[-81,-1],[-64,12],[-73,-2],[-45,-16],[-82,5],[-89,-16],[-102,12],[-95,23],[-66,-38],[-104,-14],[-100,-30],[-197,-42],[-174,-32],[-62,16],[-82,-25],[-185,15],[-39,15],[-70,58],[-55,0],[-55,-67],[-70,0],[-35,-41],[-42,40],[-100,-20],[-51,40],[-42,9],[-13,48],[-50,4],[-56,-48],[-147,2],[-142,-12],[-177,-9],[-161,-61],[-52,-8],[-31,-27],[-107,29],[-23,19],[-118,22],[-94,48],[-75,69],[-85,-18],[-65,9],[-59,34],[-56,-10],[-98,32],[-71,-2],[-99,51],[-104,28],[-175,3],[-43,41],[-105,36],[-47,47],[-186,62],[-106,53],[-32,61],[-159,-6],[-78,33],[-65,-49],[-79,-32],[-127,34],[19,88],[-41,46],[-32,68],[-23,87],[6,73],[38,60],[30,121],[70,111],[1,54]],[[93070,67544],[-5,-42],[23,-47],[-20,-27],[13,-44],[-11,-116],[52,-19],[16,-65],[34,-60],[39,-32],[85,-30],[-11,-168],[5,-181],[8,-65],[43,-64],[-24,-128],[10,-76],[39,-90],[-3,-80],[72,-62],[31,-54],[-32,-42],[-29,-71],[16,-136],[1,-142],[-33,-81],[12,-34],[-7,-85],[-66,-88],[-12,-92],[10,-38],[-37,-164],[4,-86],[59,-91],[-66,-54],[9,-38],[-83,-7],[-39,-31],[50,-85],[-10,-52],[17,-101],[-22,-43],[11,-103],[60,-125],[-27,-51],[-8,-91],[-42,-147],[19,-26],[43,17],[11,-36],[-106,-86],[-11,-83],[-35,-42],[21,-26],[-19,-51],[-29,0],[-47,-114],[-42,-54],[-23,2],[-48,-54],[-86,-10],[-39,26],[-55,-23],[-71,60],[-51,92],[-52,45],[-43,14],[-43,-9],[-56,-35],[-45,35],[-51,11],[-33,-52],[11,-48],[-16,-36],[16,-51],[-25,-47],[50,-28],[18,-51],[-19,-63],[34,-57],[7,-75],[47,-32],[-13,-35],[-89,-1],[-1,-77],[-30,-94],[-32,-26],[-3,-99],[-35,-36],[18,-46],[-63,-23],[50,-258],[-40,-66],[-15,-102],[33,-59],[-12,-47],[26,-59],[29,-30],[-14,-48],[80,-63],[24,-60],[10,-84],[-61,-45],[-50,-77],[1,-56],[-16,-34],[71,-22],[-1,-79],[29,-76],[-14,-45],[41,-64],[41,-25],[69,-4],[57,-94],[-7,-53],[24,-40],[-12,-49],[15,-26],[-14,-52],[17,-48],[8,-83],[-11,-49],[15,-45],[5,-126],[25,-78],[-67,-44],[-144,-6],[-19,-27],[37,-48],[10,-74],[40,-38],[-26,-70],[-31,-16],[-88,4],[-40,76],[-65,1],[-77,38],[-102,-20],[-27,-51],[31,-96],[-30,-105],[46,-43],[26,-56],[-3,-44],[-50,-11],[-47,23],[-86,2],[-6,-79],[-51,-115],[-3,-63],[39,-111],[-4,-106],[-38,-24],[-49,48],[-23,64],[-24,13],[-24,68],[-40,11],[-50,-45],[-12,-39],[-42,-49],[-44,-120],[1,-61],[-38,16],[-4,106],[-38,122],[-73,71],[-16,120],[-26,27],[-52,-21],[-47,55],[-40,13],[-31,62],[-105,53],[-72,27],[-13,41],[-103,50],[-19,41],[-91,16],[-32,-21],[4,-38],[-13,-153],[-49,24],[23,-252],[-10,-66],[-24,-38],[-65,5],[-123,-119],[-45,19],[-20,52],[-38,37],[19,59],[-22,45],[13,56],[-25,55],[-4,50],[-78,161],[-32,31],[17,40],[54,22],[30,-17],[18,-50],[42,-1],[21,111],[1,55],[-55,46],[9,74],[-27,51],[-8,163],[-47,94],[13,135],[-34,162],[-33,93],[0,37],[-31,110],[-4,111],[-22,97],[-10,212],[-31,110],[-32,42],[-1,39],[34,18],[-16,129],[-29,45],[30,31],[-30,49],[-2,77],[-22,153],[-37,133],[-50,40],[-61,21],[-18,113],[-39,114],[-32,32],[13,149],[-5,71],[-37,75],[-44,-17],[-78,117],[-44,-21],[-23,65],[-51,-3],[-31,20],[11,112],[-16,32],[36,30],[27,106],[-22,63],[8,55],[35,61],[-28,76],[-11,68],[-35,-4],[-11,47],[-26,23],[26,82],[-38,48],[17,41],[-16,150],[-18,30],[10,42],[-16,111],[19,13],[161,3],[-47,99],[24,31],[-43,89],[14,50],[-31,54],[-38,30],[43,48],[2,75],[-24,47],[-70,55],[-11,60],[16,32],[-38,38],[-11,59],[-58,-20],[-3,92],[12,44],[-22,47],[-29,163],[12,35],[-41,29],[7,76],[-19,143],[-56,24],[0,72],[14,41],[-54,2],[-18,68],[51,108],[11,63],[-15,57],[-35,51],[-52,37]],[[89120,66274],[-10,50],[6,122],[-31,175],[101,7],[-17,55],[-30,42],[10,44],[32,18],[9,37],[82,-17],[44,28],[-13,71],[17,63],[30,30],[-11,48],[-54,41],[-8,43],[5,96],[35,20],[26,56],[-7,48],[-37,61],[8,54],[-14,53],[18,24],[-13,61],[38,38],[9,103],[-5,140],[32,31],[-30,76],[7,73],[-22,82],[-44,20],[-55,64],[-13,67],[9,29]],[[100107,77818],[-67,-100],[-50,-45],[-89,-23],[-39,-52],[-62,-41],[-9,-85],[8,-66],[-59,-80],[-43,8],[-45,-56],[22,-71],[-64,-66],[-4,-38],[-42,-34],[-83,-109],[-8,-64],[76,7],[80,-111],[-15,-88],[62,-13],[52,-40],[-27,-129],[19,-48],[-22,-26],[13,-170],[-39,-69],[33,-73],[-31,-68],[79,-96],[-53,-43],[-9,-80],[-34,-77],[41,-102],[-26,-58],[-1,-48],[22,-35],[42,6],[50,-30],[53,16],[72,-56],[-7,-40],[-66,-82],[-3,-72],[-89,-111],[-86,-73],[-41,-77],[-102,-67],[-80,-15],[-108,-106],[-33,-74],[11,-52],[-25,-61],[65,-100],[16,-103],[44,-40],[8,-42],[-23,-64],[26,-79],[-69,-83],[-90,-11],[-40,-66],[-56,-68],[-150,-113],[-29,-41],[-32,-94],[-21,-101],[-35,-45],[-58,-20],[-30,-41],[64,-80],[-192,-14],[-60,-50],[-30,-88],[-60,-128],[-104,-20],[-43,-34],[-60,42],[-37,-50],[-214,-53],[-23,-23]],[[33347,86339],[66,-15],[46,-108],[-14,-85],[-70,7],[-1,-51],[31,-50],[38,-12],[59,-55],[33,-51],[39,-7],[13,-47],[29,-29],[63,-14],[28,-41],[2,-45],[30,-11],[49,31],[64,-7],[-14,-48],[29,-46],[-36,-49],[-16,-141],[62,-46],[25,-37],[-4,-51],[-108,-47],[-50,-67],[6,-72],[29,-42],[68,-57],[57,-79],[3,-26]],[[43173,16526],[-2,-283],[-11,-55],[2,-291]],[[43162,15897],[-69,11],[-1,57],[-61,27],[-4,31],[46,20],[-20,87],[-38,-4],[-63,22],[-9,54],[-89,-1],[-23,39],[-59,-8],[5,19],[-10,5],[1,13],[-7,4],[-10,-11],[-6,2],[4,20],[-43,9],[4,17],[1,7],[-23,-2],[15,31],[17,5],[30,29],[-7,20],[-37,-19],[-18,-2],[-3,65],[29,2],[57,0],[49,-34],[20,-1],[1,24],[-28,36],[5,29],[-5,13],[-30,6],[-1,41],[1,14],[26,16],[22,-16],[35,-20],[73,-1],[6,-33],[35,-15],[32,54],[35,20],[87,2],[-2,-28],[41,-27]],[[27203,19279],[-29,49]],[[42520,19751],[45,-7],[9,-36],[-55,-4],[1,47]],[[43007,19823],[-47,-185]],[[42960,19638],[-41,10],[-51,-23],[-25,35],[-30,-63],[-98,25],[-60,34],[22,26],[16,2],[1,20],[10,2],[3,27],[25,-3],[12,1],[-13,18],[1,34],[-7,9],[-8,49],[3,4],[15,7],[17,13],[95,-46],[0,-32],[34,-3],[25,38],[49,0],[-1,4],[17,5],[2,12],[4,1],[6,-14],[17,-10],[7,3]],[[42498,19756],[-88,5],[-10,35],[19,72],[47,-19],[-5,-49],[39,-13],[-2,-31]],[[42373,20012],[1,24],[49,-25],[-2,-39],[50,-13],[5,-26],[-52,-44],[-86,13],[-27,31],[-64,-15],[-9,91],[32,-10],[85,43],[18,-30]],[[42568,20369],[-15,-73],[-34,-21],[-54,37],[5,43],[59,-4],[39,18]],[[42400,20296],[-2,-27],[60,-9],[44,-43],[-4,-62],[-32,-4],[-20,-34],[-52,-11],[-1,-13],[-51,12],[6,46],[-35,33],[-1,60],[35,16],[3,49],[-19,123],[-20,48],[10,55],[26,25],[-6,38],[86,-10],[12,-16],[-36,-71],[-24,-112],[39,-41],[-18,-52]],[[43129,20301],[-64,-217],[-56,-253]],[[43009,19831],[4,42],[-23,19],[-6,13],[-71,8],[-24,-69],[-9,-3],[-40,41],[25,37],[3,61],[-42,7],[-19,-96],[-39,-11],[9,57],[-45,6],[-1,-3],[-42,-2],[-49,26],[9,76],[-51,0],[-6,-11],[-8,-4],[-19,2],[-52,-17],[5,45],[72,8],[11,99],[32,-27],[0,-75],[62,-17],[32,11],[-3,38],[33,19],[-78,84],[7,61],[-81,-6],[-24,47],[20,28],[69,23],[-24,34],[-2,55],[-130,7],[-31,-19],[-33,14],[17,69],[1,15],[45,-1],[14,37],[105,43],[-3,-82],[56,-74],[71,2],[36,64],[56,-31],[10,-39],[-37,-36],[-57,-18],[-42,20],[-4,-48],[70,-31],[13,-78],[-1,-67],[1,-12],[39,32],[1,53],[61,23],[28,46],[58,-31],[15,36],[3,37],[45,23],[13,-64],[65,-26]],[[42881,19995],[18,8],[5,-1],[3,-18],[-4,-43],[18,-1],[20,54],[25,54],[-56,47],[-40,-30],[11,-70]],[[43193,20497],[-58,23],[8,84],[5,24],[16,47],[92,-27]],[[43256,20648],[-56,-117],[-7,-34]],[[23471,90563],[-194,6],[-143,20],[-90,-9],[-177,12],[-127,15],[-117,9],[-41,-4],[-100,1],[-104,17],[-140,3],[-117,12],[-316,23],[-246,5],[-98,-3],[-161,7],[-155,-3],[-37,103],[17,83],[48,141],[73,57],[92,120],[73,111],[-6,62],[10,112],[17,48],[-6,42]],[[21426,91553],[-9,142],[-22,119],[-39,51],[-48,111],[-137,180],[-80,47],[31,32],[92,60],[37,46],[38,16],[105,86],[17,37],[-11,36],[-125,-20],[17,71],[-18,45],[1,86],[59,-37],[-4,-71],[64,5],[14,100],[51,49],[14,36],[55,16],[46,71],[72,-6],[57,34],[20,-68],[42,-7],[88,84],[5,38],[-53,17],[86,70],[4,99],[47,33],[50,100],[43,-17],[130,84],[39,50],[48,20],[79,93],[10,53],[36,67],[129,13],[71,34],[-35,50],[-6,40],[-46,54],[30,19],[43,-16],[70,26],[30,29],[-45,39],[28,57],[49,42],[32,103],[201,48],[-65,70],[30,63],[66,18],[66,50],[64,-3],[9,128],[74,37],[47,-4],[33,35],[-36,31],[122,29],[52,-42],[35,48],[126,76],[-24,47],[23,87],[55,53],[3,32],[65,16],[49,-12],[12,-46],[129,16],[41,23],[83,6],[60,28],[41,41],[4,56],[38,35],[-14,78],[-43,53],[-57,-8],[-41,32],[-103,-48],[6,51],[-74,-10],[-53,-23],[30,-61],[-14,-81],[-31,9],[-83,-34],[-72,17],[-6,111],[-31,31],[-111,43],[-6,123],[-12,49],[28,23],[-2,46],[23,46],[-14,53],[12,54],[31,43],[-41,97],[21,22],[49,114],[-5,52],[35,46],[-9,52],[20,78],[84,31],[44,35],[6,57],[47,95],[107,29],[35,-46],[58,45],[-50,53],[45,75],[-140,111],[-34,41],[-57,-18],[-27,40],[2,54],[96,31],[18,26],[14,121],[-100,49],[-40,41],[-19,67],[-52,8],[-35,37],[-43,151],[-30,32],[7,62],[-35,34],[-72,37],[-6,20],[-73,71],[65,34],[12,41],[42,-3],[89,42],[62,3],[24,27],[-26,31],[-3,43],[39,54],[-19,34],[40,64],[-14,53],[60,50],[36,52],[51,38],[8,73],[91,-8],[56,60],[48,5],[5,46],[89,46],[50,3],[42,-25],[33,15],[-8,60],[97,5],[129,59],[121,38],[34,-22],[35,80],[-8,68],[37,44],[61,12],[-14,47],[45,6],[56,36],[-20,55],[64,26],[75,-6],[27,47],[70,13],[149,-58],[-9,-31],[109,-1],[22,-35],[41,44],[138,24],[39,42],[38,-17],[66,19],[126,79],[119,-11],[23,-47],[50,41],[50,19],[0,45],[31,21],[-1,54],[45,3],[13,-48],[37,-8],[22,-42],[52,43],[33,3],[75,66],[17,48],[-16,43],[75,41],[24,64],[44,19],[-7,67],[-22,16],[70,89],[105,0],[49,35],[16,44],[-20,29],[1,50],[32,40],[-40,38],[-51,-12],[-21,42],[-89,36],[49,97],[-31,29],[25,55]],[[33670,82197],[73,-26],[32,-47],[-11,-123],[35,-76],[-53,-28],[22,-65],[82,0],[35,-21],[4,-103],[27,-111],[-37,-60],[-71,-79],[-8,-22],[54,-58],[35,18],[55,-32],[-43,-66],[-30,-21],[12,-64],[24,-31],[-28,-32],[28,-54],[45,-19],[88,-5],[59,-65],[6,-78],[51,-22],[30,-40],[52,-16],[-33,-58],[-21,-85],[43,-35],[19,-68],[129,-58],[34,13],[79,-24],[45,-53],[124,-100],[92,-36],[25,-25],[69,44],[86,1],[-11,-92],[-80,-55],[64,-49],[-9,-60],[23,-48],[38,13],[78,-97],[-18,-61],[10,-33],[54,-7],[60,-50],[-28,-55],[-40,-41],[-88,-21],[-59,18],[-36,-25],[5,-56],[-53,-55],[18,-43],[-51,-33],[-32,6],[-69,-25],[-43,0],[-56,-45],[-58,15],[-42,-34],[59,-44],[-15,-69],[45,-15],[73,55],[72,-10],[4,-70],[-29,-44],[6,-52],[54,23],[50,-17],[38,-32],[62,-6],[44,-46],[25,44],[84,-16],[51,102],[50,-16],[-8,-46],[43,-53],[11,-49],[26,-26],[69,0],[0,101],[49,30],[31,-39],[5,-41],[-33,-98],[-81,13],[-84,-49],[-80,-7],[-39,-36],[-40,23],[-25,-26],[-138,-83],[-41,-32],[-34,18],[-18,-45],[-227,-60],[-84,-38],[-50,-8],[-101,-55],[-17,-57],[-52,-28],[-52,-3],[13,-55],[-32,-40],[81,-92],[-4,-40],[-36,-90],[0,-62],[83,42],[49,-44],[-59,-89],[119,28],[48,51],[-46,81],[31,82],[32,153],[58,-11],[-6,-67],[32,-23],[56,13],[43,-14],[65,11],[27,29],[135,10],[28,54],[32,-7],[120,38],[36,23],[18,46],[54,17],[109,11],[8,72],[-26,13],[49,78],[91,15],[18,43],[43,1],[88,-62],[61,25],[35,-23],[80,-12],[48,-28],[82,-27],[69,-63],[47,46],[25,51],[72,-6],[48,-51],[78,50],[45,-59],[62,53],[82,-10],[30,-71],[-17,-32],[66,-29],[33,39],[4,71],[-11,49],[67,2],[98,-54],[59,31],[-28,74],[65,-6],[9,42],[-27,46],[26,19],[91,9],[189,-41],[66,-27],[28,56],[62,-80],[106,-7],[3,-32],[-35,-74],[-85,-42],[-12,-44],[-80,-20],[-55,23],[53,-109],[35,-27],[-15,-49]],[[10775,70032],[-25,11],[-102,112],[-37,106],[-47,85],[-55,149],[-43,88],[-41,57],[-31,67],[-70,95],[-24,49],[-83,97],[-40,79],[-73,235],[-44,199],[-30,194],[-41,192],[-124,124],[-18,25],[-172,164],[-49,63],[-110,98],[-28,40],[-20,83],[-34,97],[-78,95],[-182,173],[21,106],[0,121],[31,277],[-43,22],[5,254],[10,121],[5,160],[-18,77],[-38,66],[-71,37],[-110,1],[-57,-13],[-134,-65],[-123,-40],[-157,0],[-242,-24],[-95,-22],[-91,19],[-333,121],[-48,38],[-43,132],[-60,94],[-76,85],[-77,68],[-93,56],[-47,97],[-83,116],[-34,65],[-94,132],[-27,225],[-22,268],[2,102],[117,160],[109,163],[70,171],[21,66],[8,100],[-31,119],[-1,54],[66,236],[3,55],[-24,197],[20,228],[-16,85],[-9,125],[-12,51],[-34,36],[-92,49],[-75,54],[-75,32],[-186,24],[-167,-35],[-108,-16],[-350,-29],[-151,31],[-140,41],[-92,59],[-144,126],[-97,61],[-150,58],[-118,61],[-129,48],[-187,91],[-142,54],[-34,44],[-57,143],[-21,71],[13,92],[41,158],[61,557],[85,197],[49,150],[42,77],[99,234],[79,60],[158,137],[67,81],[123,121],[218,154],[97,100],[75,49],[90,76],[68,46],[68,59],[95,115],[59,86],[48,93],[54,71],[89,80],[75,55],[146,95],[56,96],[73,191],[58,115],[78,202],[18,64],[45,94],[30,96],[50,101],[72,80],[159,153],[102,124],[105,70],[149,80],[62,48],[167,183],[70,63],[68,4],[184,33],[125,44],[76,15],[188,-28],[167,-77],[98,-127],[182,-165],[32,-43],[15,-128],[-2,-81],[26,-165],[126,-178],[60,-121],[112,-104],[182,-41],[145,-9],[97,-15],[84,8],[167,73],[305,146],[136,43],[61,33],[322,136],[130,47],[80,17],[159,51],[401,76],[106,15],[34,-7],[108,7],[307,-4],[207,19],[66,-9],[200,2],[21,15],[126,38],[251,106],[345,121],[144,63],[16,45],[15,111],[24,112],[2,86],[29,107],[7,62],[32,119],[45,70],[87,99],[115,169],[82,70],[94,66],[81,67],[158,113],[65,53],[150,179],[80,77],[53,63],[114,365],[77,224],[26,56],[23,95],[63,176],[25,118],[30,72],[36,50],[135,135],[8,18],[142,169],[67,54],[163,59],[142,67],[130,71],[118,76],[135,69],[233,145],[225,124],[111,51],[381,153],[67,33],[95,29],[150,63],[58,38],[37,91],[119,252],[27,85],[159,190],[72,74],[87,102],[51,80],[35,73],[132,222],[36,80],[90,154],[76,153],[41,52],[72,147],[61,104],[94,144],[43,92],[41,149],[43,112],[54,206],[106,323],[20,91],[48,172],[27,65],[73,286],[52,68],[281,120],[94,28],[67,32],[79,21],[81,40],[183,65],[157,34],[207,62],[166,36],[149,51],[45,50],[116,102],[170,118],[45,41],[104,72],[127,69],[32,36]],[[76132,79646],[-71,-42],[-54,26],[-23,82],[-36,35],[-65,24],[-40,-14],[-52,-56],[-77,21],[-73,79],[-101,26],[-188,-42],[-75,-34],[34,-36],[9,-45],[-38,-16],[-97,-97],[-33,5],[-74,-50],[-45,-95],[-84,-31],[-164,65],[-87,0],[-59,20],[-27,28],[-62,-22],[-13,46],[-59,46],[-35,-15],[-65,25],[-166,-44],[-69,60],[-129,-2],[-76,-80],[-23,-10],[-235,106],[-21,39],[1,63],[-37,37],[-21,62],[29,33],[-63,59],[-94,28],[-87,-16]],[[73387,79914],[60,122],[-3,82],[36,81],[25,87],[50,68],[10,34],[-14,60],[-58,55],[-5,60],[17,95],[19,29],[62,44],[-7,98],[-68,82],[-12,84],[48,70],[36,89],[-10,59],[60,49],[-14,69],[23,41],[81,55],[31,39],[22,95],[35,58],[72,61],[16,65],[-12,73],[31,123],[75,54],[13,50],[54,102],[-46,96],[-34,30],[76,54],[17,62],[-87,62],[-166,27],[18,33],[-15,51],[-45,67],[10,53],[45,49],[-18,49],[56,50],[54,-23],[74,-51],[78,6],[32,80],[54,-8],[43,13],[20,-54],[33,-22],[55,31],[49,8],[31,37],[90,8],[42,38],[80,33],[96,0],[93,-40],[48,23],[39,52],[52,43],[130,46],[37,67],[38,32],[71,15],[119,-48],[71,112],[8,76],[46,16],[29,-13],[79,45],[75,26],[-33,93],[51,14],[43,-41],[18,-63],[28,-21],[79,-98],[71,20],[105,-13],[96,1],[40,-10],[115,-88],[63,-79],[110,-60],[43,-95],[-4,-100],[16,-35],[-28,-35],[-1,-60],[84,-27],[41,-89],[37,-28],[7,-156],[-4,-64],[-30,-45],[-65,-37],[5,-74],[-17,-81],[9,-74],[28,-79],[-45,-84],[-42,-25],[25,-42],[4,-123],[-54,-73],[-36,-29],[-46,-3],[-17,-151],[-67,-70],[-7,-36],[-68,-44],[29,-107],[50,-35],[-20,-125],[9,-16],[-15,-97],[7,-47],[42,-34],[-3,-40],[34,-37],[22,-86],[30,-18],[77,-85],[68,31],[30,-27],[9,-45],[44,-15],[40,-110],[120,-39],[-48,-80],[4,-50],[-42,-71],[-59,-23],[-40,-40],[-32,14],[-106,3],[-126,-61],[-2,-105],[-41,-73],[-18,-78],[-69,-13],[-28,-26],[8,-54],[-33,-39]],[[39793,9493],[-12,-28],[-64,-18],[-5,42],[81,4]],[[40341,9514],[-23,-4],[-69,29],[32,27],[64,-32],[-4,-20]],[[41229,9919],[-36,-84],[65,-91],[72,-83],[122,-91],[108,-91],[-59,-3],[-144,99],[-114,90],[-81,44],[-173,72],[-100,-1],[-57,-10],[-20,60],[-33,17],[18,44],[84,20],[100,-12],[39,8],[71,89],[100,34],[60,-47],[2,-39],[-24,-25]],[[43009,19831],[-2,-8]],[[42960,19638],[-7,-111],[-86,-323],[-39,-238],[-3,-135],[17,-159],[16,-57],[38,-52],[48,-131],[73,-143],[52,-282],[-38,-34],[89,-15],[7,-32],[-22,-72],[13,-177],[32,-139],[28,-203],[12,-173],[3,-234],[-4,-306],[-16,-96]],[[43162,15897],[5,-247],[-1,-186],[10,-137],[14,-46],[4,-393],[5,-24],[7,-273],[11,-100],[5,-191],[19,-304],[31,-195],[-111,-35],[-110,-17],[-81,-22],[-39,31],[-6,40],[-97,82],[-74,22],[-39,54],[-78,4],[34,-45],[-39,-29],[-101,48],[-152,53],[-91,-77],[130,-8],[120,-34],[70,-48],[86,-23],[90,42],[14,-44],[79,-26],[-12,-36],[-182,27],[-202,45],[-51,-5],[-130,46],[-194,25],[-72,1],[43,83],[34,6],[120,-15],[49,8],[6,41],[-47,30],[-67,-20],[-120,26],[-62,26],[19,-57],[-1,-56],[-68,-59],[-137,20],[-162,30],[-137,1],[-50,-13],[-39,-30],[-47,-62],[-58,16],[15,-46],[-89,-17],[-43,-55],[-68,-29],[-24,-45],[-63,-58],[-13,-47],[22,-47],[-61,-79],[-42,-19],[-37,-56],[-7,-54],[-35,-62],[16,-81],[-25,-79],[24,-108],[45,-22],[23,-81],[39,-21],[6,-34],[-48,-28],[-104,-85],[-53,-104],[-48,-65],[-104,-81],[-36,-49],[-23,-76],[-94,-87],[-21,-42],[12,-78],[-10,-24],[-57,-50],[-89,-109],[-24,-70],[-70,-85],[-39,-20],[-61,-55],[-56,-80],[-81,-75],[-54,-116],[-23,-85],[-60,-138],[-68,-88],[-40,-66],[-24,-85],[3,-67],[-17,-146],[1,-40],[-64,-42],[-13,-41],[22,-85],[108,-158],[103,-110],[111,-133],[107,-100],[131,-111],[42,-21],[63,10],[79,-31],[72,15],[99,-20],[144,-2],[-9,-37],[-128,-12],[-207,-59],[-163,10],[-229,50],[-81,-3],[-89,-15],[-99,-46],[-38,-41],[-101,32],[-37,-6],[-195,-68],[-141,-61],[-131,-44],[-52,-5],[-21,-25],[-3,-61],[-99,29],[-78,-4],[-57,-25],[-44,-49],[22,-68],[-79,-4],[-111,-35],[-55,-32],[-41,-44],[-94,29],[-80,2],[-133,-27],[-52,6],[-42,-25],[-162,-42],[-91,-56],[-103,-80],[-82,-55],[-26,-36],[-116,-65],[-8,-38],[-59,-29],[-34,0],[-55,-57],[3,-24],[-113,-78],[-92,-75],[-78,-130],[-21,-58],[-10,-66],[-41,-63],[-26,-341],[1,-136],[37,31],[55,-17],[58,20],[-33,-77],[-50,16],[-50,-31],[-37,-106],[-70,-91],[-8,-64],[-46,-162],[2,-28],[55,-145],[-26,-149],[-37,-65],[8,-92],[23,-54],[-15,-57],[-87,-82],[-142,-183],[-27,-138],[13,-43],[-83,-45],[-246,-94],[-99,-111],[-29,-18],[-112,-42],[-72,-78],[-76,-39],[-204,-57],[-102,-80],[-12,-26],[12,-62],[-42,-38],[-36,-3],[-47,-55],[-75,-38],[-222,-48],[-65,11],[-76,-27],[-169,-43],[-96,-77],[-15,-71],[25,-52],[-38,-44],[-103,9],[-86,-5],[-184,36],[-240,71],[-107,63],[-76,7],[-85,-15],[-27,18],[-38,82],[-86,67],[-97,24],[-45,30],[-17,44],[-39,34],[-67,34],[-67,51],[-69,82],[-148,98],[-105,100]],[[44717,26584],[53,-113],[33,-143],[33,-86],[60,-93],[-30,-11],[3,-65],[-87,29],[-10,-50],[23,-22],[-7,-72],[63,-22],[83,-46],[16,66],[50,-351],[0,-74],[-17,-91],[-33,-98],[-92,-364],[-32,-79],[-4,-49],[12,-135],[-37,-48],[-23,-66],[-23,-167],[-69,-294],[-31,-234],[-4,-145],[-14,-183],[31,-47],[-6,-57],[-64,-159],[-54,-174],[-78,-232],[-49,-197],[-28,-79],[-60,-134],[0,-152],[-16,-37],[-38,3],[0,-42],[-67,-46],[26,-57],[-217,-283],[-43,-44],[-164,-245],[-16,-15],[-107,-202],[0,-12],[-110,-171],[-46,-82],[-198,-319],[-73,-147]],[[43193,20497],[-44,-111],[-20,-85]],[[48876,43189],[90,-7],[18,46],[43,19],[43,-24],[81,37],[40,-6],[41,-79],[111,15],[158,38],[40,37],[38,6],[92,-46],[42,0],[117,93],[12,66],[25,47],[38,34],[54,3],[39,28],[36,-36],[19,-56],[204,125]],[[89120,66274],[-53,-9],[-37,-47],[10,-55],[-34,-48],[3,-52],[-52,-68],[-46,32],[18,66],[0,50],[-31,55],[-100,12],[-19,77],[4,39],[-84,-14],[-31,-23],[-35,-82],[-80,-74],[-31,-46],[-63,-1],[-32,-107],[-40,-9],[-104,4],[-110,60],[-46,87],[-60,177],[-29,16],[-72,-26],[-11,-57],[30,-60],[-62,-26],[-22,-40],[5,-66],[34,-70],[-5,-77],[43,-84],[-16,-74],[4,-60],[22,-37],[17,-90],[-20,-76],[34,-27],[29,-116],[-118,-45],[-13,-36],[10,-88],[-35,-16],[-91,17],[-72,-22],[-96,-102],[-69,-20],[-29,-38],[5,-75],[-62,-98],[-67,-62],[-16,-56],[-51,-45],[-40,-118],[3,-99],[48,-77],[6,-119],[46,-82],[20,-94],[2,-83],[36,-138],[52,-14],[-90,-102],[-55,-4],[-31,21],[-38,-39],[31,-82],[-44,-8],[-95,-109],[-65,-46],[-55,-53],[-45,13],[-122,-48],[-41,7],[-78,-46],[-63,-96],[-52,54],[5,36],[-49,38],[-60,-27],[-78,46],[10,65],[-56,-2],[15,75],[-23,28],[23,35],[-47,25],[5,69],[-69,239],[-47,55],[39,46],[-48,13],[-40,32],[18,60],[-7,35],[28,39],[-79,2],[-28,30],[45,26],[-18,54],[-70,-10],[-21,15],[46,49],[-50,100],[-31,18],[-119,-6],[-58,-62],[8,-59],[-43,-19],[-26,-118],[15,-135],[27,-37],[23,-131],[21,-25],[4,-69],[47,-86],[-27,-29],[-78,-8],[-83,50],[-53,80],[-44,107],[-35,129],[-26,34],[-5,289],[-43,136],[11,38],[-49,14],[-3,43],[52,43],[-23,29],[-64,16],[21,77],[-2,41],[-50,102],[-21,78],[8,38],[-44,68],[6,36],[-48,61],[-28,83],[-8,78],[-43,38],[-48,-1],[-17,48],[-46,8],[0,74],[25,55],[-56,20],[-4,39],[-75,100],[2,33],[-58,22],[-9,101],[11,67],[-8,75],[170,-54],[0,127],[-10,29],[-174,-1],[-19,87],[8,69],[34,65],[133,33],[102,-35],[13,101],[-10,61],[24,81],[71,117],[-42,103],[-9,50],[-26,35],[14,69],[37,36],[-18,61],[99,-12],[27,31],[-40,54],[71,130],[23,-38],[51,30],[10,44],[101,5],[23,-35],[84,14],[81,-37],[-22,88],[60,95],[1,35],[31,87],[-67,58],[-17,58],[2,83],[171,15],[153,-46],[100,-2],[18,-40],[192,-40],[60,0],[33,17],[46,-23],[54,24],[-10,58],[100,5],[47,50],[9,42],[-17,98],[24,34],[17,96],[41,27],[-30,132],[48,47],[46,-104],[54,-148],[29,-26],[176,-70],[43,-4],[24,30],[-20,73],[-47,302],[55,-19],[124,-72],[61,4],[62,-36],[61,46],[27,-40],[-23,-37],[25,-56],[60,-67],[39,-60],[27,-70],[65,-15],[30,42],[19,137],[33,104],[9,73],[45,116],[2,66],[-42,140],[-22,44],[2,68],[83,37],[44,36],[50,-74],[59,-41],[49,38],[-47,50],[-65,124],[47,-3],[30,33],[39,11],[16,-33],[67,-2],[30,-27],[215,-11],[109,30],[6,53],[50,102],[31,14],[90,-15],[-21,70],[-44,249],[16,84],[44,11],[95,-40],[92,-63],[46,2]],[[43979,86213],[44,-22],[136,9],[53,-15],[88,-81],[157,-136],[92,-42],[86,10],[54,-19],[32,-39],[-32,-69],[74,-66],[67,-8],[84,-40],[13,-71],[24,-48],[107,-57],[-1,-39],[39,-32],[80,-10],[145,32],[52,-38],[56,-19],[44,-90],[-8,-52],[60,-13],[38,-45],[90,-61],[34,22],[-12,48],[-29,16],[-10,106],[-32,138],[-3,93],[56,49],[82,43],[44,7],[123,-47],[-25,-70],[116,-74],[59,-22],[56,19],[86,-13],[3,-44],[31,-19],[19,-76],[49,1],[-10,-65],[29,-43],[42,-17],[48,7],[46,-23],[30,24],[92,-38],[0,-46],[59,-42],[-4,-63],[137,-34],[66,-71],[88,-21],[-4,49],[53,10],[49,-11],[60,-37],[-25,-45],[-6,-58],[35,-46],[71,-10],[110,-34],[29,-37],[90,16],[49,38],[43,-12],[4,-53],[50,13],[37,-45],[-66,-58],[55,-40],[11,44],[51,-18],[119,-86],[89,-35],[209,-27],[179,-43],[76,-109],[9,-31],[-6,-116],[15,-44],[195,-227],[38,-14],[63,-69],[1,-67],[25,-53],[-48,-38],[60,-92],[124,9],[63,31],[-29,68],[30,30],[132,3],[45,-11],[77,-57],[21,-78],[105,-88],[-22,-116],[245,-134],[74,-36],[61,-49],[105,-41],[87,-58],[146,-51],[104,-4],[155,-141],[47,-34],[98,-92],[94,-69],[57,-1],[74,-47],[179,-128],[73,-12],[69,20],[-6,67],[47,30],[15,41],[50,52],[51,83],[301,-30],[81,7],[43,-73],[66,-83],[62,-37],[19,-33],[98,-30],[28,29],[125,-68],[50,-10],[84,-84],[105,-53],[68,-60],[28,-39],[57,-39],[183,-85],[113,-86],[30,-68],[156,-102],[106,-46],[68,0],[39,26],[109,24],[98,-14],[82,13],[74,33],[48,-5],[19,24],[75,3],[35,34],[45,-7],[55,22],[112,5],[32,15],[36,-36],[40,-89],[-14,-103],[63,-38],[0,-44],[41,-37],[-23,-75],[63,-114],[-31,-71],[-20,-80],[29,-92],[-43,-44],[33,-37],[133,-1],[133,-18],[86,23],[155,-20],[157,17],[45,-22],[35,-83],[104,-38],[176,-44],[111,-18],[219,5],[183,21],[83,-7],[79,-67],[39,-72],[114,-61],[95,-82],[-9,-75],[34,-58],[65,-47],[56,-21],[109,17],[60,25],[60,59],[2,40],[62,29],[14,63],[41,38],[-2,64],[-51,45],[0,32],[56,76],[-41,42],[24,51],[99,0],[83,-12],[268,-14],[314,-5],[159,-67],[371,-194],[265,-110],[60,-34],[100,-84]],[[34749,92347],[54,31],[33,-17],[84,9],[48,-22],[50,21],[102,-100],[39,0],[88,-134],[49,-45],[150,-56],[226,-132],[130,-47],[66,-33],[22,16],[107,-40],[61,-32],[46,-63],[-41,-59],[-51,-38],[-31,-113],[-89,-91],[-63,-115],[-71,-92],[-40,-20],[-20,-44],[-44,-13],[-60,45],[-20,-7],[-39,-87],[-39,-57],[-26,-65],[57,-56],[-22,-36],[-54,-22],[-37,-44],[-9,-46],[-40,-26],[52,-61],[-15,-51],[-40,-27],[-39,-75],[37,-17],[15,-59],[-48,-41],[-33,-58],[-30,7],[1,-86],[37,-44],[62,-14],[-3,-60],[36,-29],[12,-81],[83,-94],[4,-85],[-15,-78],[27,-35],[-42,-74],[92,-29],[55,-41],[-19,-63],[107,-50],[48,11],[32,37],[58,26],[57,55],[96,-17],[61,54],[91,12],[17,-107],[23,-6],[42,-61],[8,-57],[43,-53],[-14,-39],[13,-70],[-53,-16],[-34,-30],[-19,-47],[107,-27],[7,-114],[91,7],[107,-17],[38,79],[-23,35],[28,48],[57,33],[71,-8],[38,54],[7,44],[61,33],[29,47],[71,52],[19,69],[99,13],[60,47],[42,73],[103,29],[38,-53],[123,89],[142,120],[107,151],[72,-39],[128,-49],[99,-5],[43,-42],[103,-38],[80,-14],[51,-28],[10,-64],[37,-37],[27,-96],[14,-157],[71,-105],[170,-169],[166,-108],[67,-20],[199,-152],[123,-1],[46,-15],[99,-82],[73,-31],[42,0],[73,-29],[27,4],[155,-39],[128,-13],[-14,-128],[-35,-57],[-91,-56],[-22,-35],[-92,-35],[-11,-33],[-54,7],[-111,-106],[-55,-9],[-45,36],[-58,-54],[-59,-23],[6,-67],[141,-90],[-26,-13],[153,-112],[51,-22],[65,33],[41,-25],[45,4],[36,-23],[35,-56],[64,-73],[30,-54],[0,-47],[21,-107],[-16,-49],[52,-7],[34,32],[76,-29],[27,39],[56,23],[46,-42],[16,-68],[34,-15],[29,-66],[61,5],[47,29],[-7,30],[-59,7],[4,56],[58,13],[-25,58],[44,15],[46,-64],[50,6],[49,-17],[103,-79],[63,8],[48,-17],[43,-38],[3,-81],[-31,-67],[33,-85],[80,-34],[-40,-94],[52,-45],[53,33],[54,-8],[24,27],[125,-87],[6,-27],[92,-69],[54,-68],[61,-41],[44,16],[157,-25],[37,72],[73,-134],[37,8],[44,-23],[-9,-60],[8,-59],[-20,-64],[32,-41],[25,-75],[47,-2],[36,25],[97,-10],[62,31],[55,-17],[59,2],[37,29],[59,77],[37,1],[40,-47],[-24,-95],[12,-33],[95,17],[59,64],[99,4],[43,-34],[86,-39],[45,-2],[25,36],[42,-1],[8,38],[70,12],[16,36],[69,22],[45,-7],[36,40],[36,-15],[54,9],[60,-56],[45,-22],[20,-61],[-54,-66],[29,-24],[-17,-65],[-55,-13],[37,-40],[88,36],[-11,70],[43,57],[93,2],[41,-43],[54,-16],[-15,-54],[-93,19],[-21,-49],[99,-48],[102,20],[12,-26],[-34,-35],[86,-82],[35,-78],[3,-48],[26,-24],[87,-35],[131,-2],[94,80],[57,81],[42,97],[-54,66],[121,138]],[[39730,95684],[37,30],[-3,80],[28,56],[-1,93],[26,49],[115,55],[72,20],[47,41],[5,46],[45,83],[102,107],[10,115],[41,51],[33,7],[72,-55],[88,-40],[107,-36],[73,-108],[54,-48],[52,-104],[77,-79],[86,-58],[-2,-66],[100,-93],[-6,-50],[-47,-57],[0,-59],[35,-28],[72,-6],[37,-57],[58,-137],[-24,-58],[10,-42],[55,-82],[94,-76],[73,-9],[58,-28],[79,-8],[29,-76],[10,-74],[51,-11],[25,-154],[32,-7],[164,21],[51,-12],[80,4],[15,-61],[40,-29],[24,-46],[-12,-36],[67,-15],[-17,-71],[76,-56],[82,-18],[51,-44],[97,73],[125,35],[8,54],[40,10],[114,-21],[117,36],[49,60],[28,0],[54,-51],[187,-61],[72,25],[81,-15],[43,-55],[51,-155],[74,-18],[64,-116],[72,3],[123,-42],[117,-70],[95,-80],[71,1],[23,-44],[71,-52],[16,-77],[108,-78],[37,4],[48,51],[42,9],[8,59],[73,3],[30,-19],[64,-80],[21,-89],[62,-25],[58,30],[53,-96],[-24,-70],[-27,-31],[-14,-68],[-77,-28],[-60,-41],[-8,-38],[73,-57],[32,-40],[-36,-69],[1,-34],[43,-13],[-20,-71],[19,-59],[108,-66],[140,36],[102,-27],[37,-53],[195,-106],[48,-13],[71,30],[85,-100],[124,-46],[105,-13],[33,-18],[37,-61],[82,-62],[15,26],[93,24],[40,84],[38,4],[63,-29],[205,-144],[43,1],[144,-107],[117,-63],[66,-56],[38,-49],[48,-106],[37,-41],[106,-69],[128,-50],[140,-29],[123,-46],[88,-14],[99,-34],[99,-20],[62,-30],[34,-48],[-6,-65],[33,-72],[4,-44],[-55,-4],[-128,-42],[-48,16],[-162,-56],[-57,36],[2,84],[-34,44],[-36,-10],[-74,-124],[-55,-48],[31,-84],[-6,-78],[-87,-53],[-36,-61],[-63,-5],[-50,-22],[-80,-110],[-59,-31],[-40,-41],[-4,-62],[-64,-117],[-33,-19],[-39,14],[-36,-22],[-84,-79],[-40,-56],[-84,-8],[-111,21],[-106,-40],[-78,-78],[-25,-41],[7,-111],[-44,-72],[-2,-43],[-25,-45],[-48,-21],[-62,-71],[-52,-26],[-38,-44],[-17,-63],[-25,-10],[-72,29],[-60,-13],[-45,30],[-34,-27],[-84,-34],[-29,-117],[-61,-46],[-41,5],[-17,-36],[2,-59],[74,-154],[16,-66],[96,-75],[14,-55],[-42,-78],[2,-69],[-36,-44],[-24,-62],[-37,1],[-141,-92],[-2,-43],[33,-20],[-23,-64],[-53,-20],[-71,-66],[-8,-47],[-49,20],[-37,-74],[41,-54],[-58,-21],[-24,35],[-45,-26],[-83,-17],[7,-147],[106,-55],[13,-79],[-21,-34],[33,-32],[4,-51],[34,-14],[8,-52],[74,-17],[8,-96],[-41,-59],[-18,-138],[-20,-49],[21,-125],[-43,-28],[-20,37],[-80,21],[-44,25],[-8,-57],[45,-48],[11,-56],[-8,-43],[40,-61],[-8,-22],[-81,-47],[-37,-50],[-77,2],[-49,35],[-60,19],[-88,-58],[-52,-53],[-59,-126],[28,-52],[-50,-96],[1,-79],[28,-39],[-50,-12],[-13,-62],[-69,-16],[-51,-75],[-26,-70],[-56,-99],[-12,-59],[1,-228],[25,-63]],[[75166,57975],[21,-24],[97,-41],[12,-86],[-7,-74],[-92,-4],[-91,56],[-1,47],[18,81],[43,45]],[[73982,57980],[0,-34],[32,-60],[1,-66],[-45,26],[-17,130],[29,4]],[[76413,58004],[27,-24],[126,-34],[61,-50],[43,-79],[-15,-28],[-92,-13],[-79,5],[-67,39],[-28,66],[24,118]],[[76021,58121],[28,-105],[77,-42],[-36,-42],[-25,-61],[-53,1],[-44,19],[-24,46],[18,136],[28,51],[31,-3]],[[75312,58127],[75,-27],[53,-34],[45,-48],[10,-87],[-41,-56],[-95,-41],[-49,97],[-98,50],[6,32],[46,67],[-14,69],[16,35],[46,-57]],[[76189,58165],[-13,-53],[12,-59],[75,-78],[14,-30],[-38,-45],[-89,-18],[-54,14],[5,49],[24,16],[3,19],[-17,14],[-56,23],[-28,92],[19,41],[51,6],[76,37],[16,-28]],[[76898,58138],[12,-4],[37,13],[35,4],[25,-72],[-27,-52],[-64,1],[-53,16],[-13,41],[-48,74],[53,116],[28,-48],[2,-66],[13,-23]],[[75459,58334],[33,-131],[27,-15],[22,-51],[16,-78],[-40,-12],[-72,50],[-58,16],[-10,48],[59,73],[-12,90],[35,10]],[[75515,58344],[53,-56],[-7,-34],[-59,-54],[-28,104],[41,40]],[[76967,58389],[19,-16],[14,-119],[-22,-25],[2,-46],[24,-16],[102,22],[10,-90],[43,-30],[4,-36],[-32,-38],[-105,-11],[-27,161],[-17,11],[-38,-4],[-26,-12],[-23,8],[-6,74],[-33,64],[-7,86],[71,-15],[47,32]],[[76309,58393],[13,-10],[-13,-157],[-37,-33],[-71,34],[-68,-4],[-36,39],[-64,38],[105,2],[16,38],[53,10],[47,29],[55,14]],[[74475,58391],[65,-4],[65,-65],[18,-41],[-18,-64],[29,-48],[-62,-110],[-92,-50],[-24,81],[40,141],[-18,90],[-41,55],[38,15]],[[75004,58403],[61,-137],[-71,-210],[-36,11],[-16,42],[-61,68],[-4,150],[64,64],[63,12]],[[75904,58417],[22,-101],[36,-42],[106,-88],[-60,-61],[-141,178],[37,114]],[[74081,58449],[45,-80],[-68,-24],[-15,-25],[19,-50],[60,-21],[34,4],[25,-116],[-64,-61],[-34,-62],[-38,90],[-42,152],[-7,69],[25,73],[60,51]],[[77243,58453],[23,-30],[28,-96],[71,-91],[12,-62],[-9,-54],[-92,-64],[-68,-1],[-87,93],[4,57],[-13,40],[11,74],[-30,80],[14,27],[56,21],[80,6]],[[76943,58472],[58,-20],[97,-88],[16,-48],[-23,-101],[-37,-35],[-55,-3],[-12,51],[22,31],[-11,108],[-30,41],[-52,41],[27,23]],[[75343,58508],[50,-25],[44,11],[22,-55],[34,-28],[0,-49],[-74,-24],[6,-107],[-48,-53],[-12,-59],[-39,12],[-48,65],[17,39],[-19,99],[-38,79],[34,20],[32,60],[39,15]],[[76592,58543],[114,-75],[16,-53],[66,-42],[22,-47],[-18,-73],[-43,-94],[-13,-54],[-64,65],[-70,45],[-9,75],[-38,55],[-2,102],[39,96]],[[74850,58489],[35,-48],[25,-64],[-56,-45],[-8,-122],[27,-62],[50,-62],[-28,-34],[-43,4],[-40,-95],[-55,67],[-14,64],[14,66],[-28,134],[72,70],[20,47],[-10,38],[-59,23],[34,111],[22,-18],[4,-50],[38,-24]],[[74142,58609],[190,-39],[-40,-80],[40,-13],[44,-82],[91,-111],[11,-27],[-68,-138],[-20,-91],[5,-66],[58,-39],[4,-24],[-54,-67],[-78,-21],[-82,24],[-29,43],[19,63],[-46,67],[-59,45],[65,61],[8,37],[-19,45],[4,50],[-24,23],[-66,-3],[-35,33],[6,34],[55,13],[20,30],[-33,69],[7,120],[26,44]],[[76755,58609],[76,-17],[65,-30],[0,-27],[19,-16],[1,-84],[49,-43],[-43,-31],[-81,15],[-103,73],[32,58],[-15,102]],[[74676,58617],[-21,-74],[1,-43],[20,-47],[46,-18],[55,2],[20,-18],[-47,-50],[-101,-54],[-76,90],[42,67],[-23,105],[35,40],[49,0]],[[77044,58620],[75,-31],[48,-60],[64,-45],[-129,-50],[-20,65],[-51,63],[13,58]],[[76402,58625],[109,-17],[15,-21],[-58,-71],[-35,-89],[3,-105],[16,-55],[54,-123],[-32,-65],[-42,-23],[-91,35],[-23,41],[43,70],[9,52],[-21,79],[7,47],[-58,52],[-71,-25],[-9,87],[35,8],[-18,25],[17,32],[45,-9],[37,14],[68,61]],[[74749,58618],[20,-22],[-11,-64],[-24,-20],[-74,-10],[1,49],[43,64],[45,3]],[[73121,58543],[-38,7],[64,83],[28,-49],[-54,-41]],[[75479,58670],[5,-64],[13,-35],[107,-45],[-1,-53],[-88,-31],[-46,26],[17,73],[-16,44],[-40,52],[49,33]],[[74444,58463],[-29,-69],[-62,83],[-3,40],[30,56],[13,100],[37,-44],[26,-136],[-12,-30]],[[77024,58700],[44,-21],[-54,-37],[8,-74],[47,-65],[11,-63],[-37,-10],[-39,27],[-66,21],[45,44],[-17,32],[-51,-30],[-13,37],[-19,20],[-35,7],[54,61],[31,10],[56,55],[35,-14]],[[75581,58719],[50,-66],[27,-128],[-43,-92],[-37,-35],[-30,37],[68,31],[8,56],[-130,66],[11,90],[12,21],[64,20]],[[74338,58721],[52,-39],[-16,-42],[-37,24],[-32,47],[33,10]],[[75021,58713],[61,11],[-18,-74],[-11,-138],[-38,-42],[-7,-61],[-50,-4],[-31,-21],[-23,42],[10,44],[-23,60],[13,52],[-14,43],[48,42],[24,65],[21,18],[38,-37]],[[75975,58786],[39,-103],[4,-13],[20,4],[6,-13],[40,-14],[49,-51],[-25,-39],[2,-67],[86,-31],[-71,-68],[22,-53],[-9,-30],[-57,-4],[-45,21],[-8,-29],[89,-62],[-26,-30],[-59,64],[-76,60],[-18,93],[-42,117],[3,28],[60,142],[-4,73],[20,5]],[[75339,58798],[31,-8],[61,-57],[12,-31],[-34,-38],[-3,-62],[35,-53],[2,-43],[-43,-20],[-71,28],[-34,-27],[-29,-48],[-75,126],[1,85],[40,67],[48,49],[59,32]],[[74885,58801],[15,-7],[4,-22],[21,-20],[29,7],[-2,-44],[-63,-72],[-8,-35],[17,-35],[-16,-34],[15,-61],[-79,37],[-10,60],[-67,103],[144,123]],[[77023,58803],[63,0],[-25,-109],[-72,23],[34,86]],[[76102,58739],[18,-59],[-35,-31],[-37,11],[-6,17],[-23,1],[0,49],[38,26],[45,-14]],[[76389,58773],[-20,-34],[-5,-57],[33,-53],[-68,-62],[-78,-5],[-19,74],[34,39],[8,45],[52,61],[34,62],[29,-70]],[[76238,58542],[-13,-13],[8,-22],[-35,-20],[-74,10],[-9,37],[37,60],[-51,42],[54,60],[38,84],[3,40],[33,32],[32,-57],[-20,-60],[28,-33],[-41,-52],[-7,-52],[17,-56]],[[76713,58858],[16,-11],[55,-2],[9,-19],[-39,-53],[4,-16],[-37,-32],[20,-14],[-66,-143],[-40,15],[23,84],[-10,38],[-54,61],[7,31],[34,10],[30,31],[48,20]],[[75118,58893],[48,-48],[9,-39],[-53,-54],[-95,8],[-39,42],[22,28],[56,24],[52,39]],[[76808,58942],[45,-85],[79,-11],[-12,-68],[-65,11],[-22,-13],[-34,-63],[23,-36],[54,-15],[-40,-45],[-87,11],[-21,32],[17,48],[-17,18],[35,31],[20,56],[16,10],[-8,22],[-36,3],[-9,47],[30,7],[8,31],[24,9]],[[75516,58953],[31,-13],[16,-44],[41,-19],[-25,-37],[12,-91],[-57,-3],[-45,19],[-33,59],[19,85],[41,44]],[[74550,58994],[73,-21],[4,-136],[32,-56],[3,-39],[68,-34],[-7,-73],[-77,-7],[-51,-26],[-13,-36],[19,-115],[-48,-43],[-55,-7],[-42,34],[14,51],[-22,118],[-80,119],[-66,11],[-15,51],[21,26],[69,35],[86,30],[28,56],[-14,36],[13,14],[60,12]],[[76492,59012],[-2,-31],[80,-22],[-8,-23],[20,-66],[-2,-82],[22,-62],[41,-40],[-21,-75],[5,-44],[25,-18],[69,2],[15,-18],[-32,-58],[-125,84],[-16,76],[-49,36],[-100,15],[15,40],[9,91],[-15,80],[7,50],[62,65]],[[73831,59050],[75,-174],[47,-52],[-23,-66],[27,-136],[0,-79],[-64,-206],[8,-52],[-3,-103],[-75,-91],[-71,-14],[-96,14],[-102,34],[-76,43],[-17,97],[27,171],[63,65],[41,172],[183,341],[56,36]],[[76245,59064],[11,-21],[-23,-19],[13,-19],[35,29],[17,-15],[70,14],[24,-28],[-26,-89],[-3,-61],[-35,-61],[-62,-70],[-2,82],[-33,51],[-73,20],[41,135],[26,34],[20,18]],[[76947,59122],[129,-65],[63,-55],[-10,-132],[-29,-43],[-44,-19],[-60,-5],[-1,-43],[-26,-50],[-43,-46],[-51,26],[-60,8],[29,60],[61,-3],[32,19],[13,55],[-30,35],[-57,-1],[-19,57],[53,69],[53,39],[-39,82],[36,12]],[[75625,59139],[19,-15],[1,-28],[28,-39],[-11,-20],[51,-1],[27,-11],[-15,-58],[2,-79],[-26,-106],[3,-68],[-17,-16],[-60,33],[-38,95],[31,26],[-6,37],[-33,10],[-13,39],[-43,38],[32,77],[41,67],[27,19]],[[76347,59152],[65,-23],[24,-32],[-5,-37],[-32,-47],[-42,27],[-44,-17],[14,111],[20,18]],[[75405,59138],[30,15],[22,-67],[-13,-97],[-36,-111],[-67,-18],[-41,29],[-12,60],[44,25],[-8,58],[36,41],[-7,90],[52,-25]],[[74976,59167],[52,-44],[87,-33],[25,-136],[-8,-49],[-39,0],[-41,-43],[-47,-20],[-42,-76],[-44,-8],[-15,40],[-11,8],[-21,-3],[-56,-55],[-39,137],[30,94],[-2,64],[63,55],[10,62],[59,-6],[39,13]],[[75981,59176],[32,-31],[77,-10],[37,-70],[52,-9],[13,-45],[-38,-106],[3,-46],[43,-17],[-49,-134],[-28,-23],[-20,74],[-4,62],[-48,-67],[-41,-18],[-23,48],[-37,13],[-22,36],[-28,89],[8,70],[53,105],[20,79]],[[75193,59197],[13,-11],[-36,-53],[-32,-26],[-49,34],[43,47],[61,9]],[[75693,59233],[99,-33],[-51,-127],[-1,-29],[-72,-5],[9,28],[-23,20],[-4,37],[-19,29],[62,80]],[[73823,59252],[36,-45],[-56,-64],[-47,58],[18,41],[49,10]],[[76420,59218],[75,-28],[58,23],[52,-9],[68,20],[36,34],[112,-71],[99,-42],[-18,-48],[36,-76],[-45,-17],[-35,-34],[-25,-51],[-7,1],[-28,48],[-1,-20],[-21,-18],[-6,-25],[-31,-9],[-31,-31],[-41,-21],[-49,-39],[-35,31],[7,37],[-16,95],[-63,7],[-26,55],[0,55],[-18,48],[-52,52],[5,33]],[[76002,59273],[32,-48],[44,-2],[38,29],[76,-9],[65,-28],[26,10],[54,-66],[-20,-30],[-5,-45],[-40,-27],[-14,-37],[-21,-1],[23,23],[-3,20],[-16,6],[-7,-4],[-35,-35],[-18,33],[-52,9],[-27,59],[-36,20],[-44,-3],[-34,34],[-11,40],[25,52]],[[76083,59459],[34,-19],[-19,-62],[97,-68],[32,40],[10,-35],[18,-13],[48,-6],[-21,-47],[-39,-22],[-47,29],[-53,12],[-107,-21],[-39,67],[10,140],[76,5]],[[75766,59613],[53,0],[88,-53],[66,-19],[-49,-58],[-38,-63],[-2,-53],[-50,-52],[-78,44],[-92,-6],[-15,58],[25,112],[43,40],[23,50],[26,0]],[[73847,59642],[8,-23],[-49,-61],[-30,-65],[-102,-152],[-26,-65],[-23,-4],[-91,-73],[-40,10],[7,67],[32,108],[51,119],[27,35],[61,45],[117,30],[58,29]],[[76332,59614],[34,9],[98,-16],[68,26],[31,-47],[91,3],[17,-23],[-7,-78],[19,-69],[-7,-68],[6,-88],[-37,-26],[-151,-15],[-57,22],[-60,59],[-60,-3],[-72,17],[3,34],[-11,12],[-22,-14],[-18,-32],[-91,61],[19,53],[-26,37],[37,53],[6,74],[57,2],[91,58],[42,-41]],[[76151,59740],[42,-6],[16,-53],[43,-28],[-49,-38],[-60,7],[-9,54],[-28,56],[45,8]],[[76665,59715],[-4,-103],[-91,-16],[-23,50],[-26,4],[-37,58],[181,7]],[[77085,59737],[89,-7],[29,-56],[74,-82],[37,-107],[-34,-151],[-21,-51],[-122,-32],[-42,43],[-72,48],[13,38],[56,63],[-9,31],[-96,8],[-57,35],[9,54],[-32,28],[66,131],[60,40],[10,-22],[11,-11],[8,7],[19,13],[4,-20]],[[76329,59776],[26,0],[44,-39],[4,-93],[-71,-6],[-26,30],[-38,-8],[-56,25],[43,68],[22,1],[14,9],[15,27],[23,-14]],[[76546,59847],[-2,-62],[69,-42],[-28,-27],[-76,3],[-38,-14],[34,-60],[-58,-21],[-31,16],[-8,93],[-51,50],[33,29],[20,-24],[15,31],[61,28],[60,0]],[[76670,59867],[-42,-45],[-7,-48],[-71,12],[-4,92],[40,-12],[58,21],[26,-20]],[[76297,59871],[43,-18],[45,23],[34,-65],[-40,3],[-29,-29],[-44,10],[-13,-8],[-15,-28],[-22,0],[-8,16],[-20,-6],[-15,-41],[-121,42],[36,79],[50,26],[29,66],[62,24],[28,-94]],[[76351,60019],[44,7],[64,-30],[10,-55],[63,-55],[-4,-29],[-54,-9],[-50,-23],[-37,56],[-53,-22],[-29,12],[-24,104],[25,51],[45,-7]],[[76526,60191],[77,-9],[52,-65],[8,-42],[76,-111],[-21,-69],[-33,-17],[-44,16],[-48,-20],[-41,7],[-69,54],[-26,77],[-43,36],[82,36],[12,34],[-45,72],[63,1]],[[76840,60277],[39,1],[22,-74],[68,-87],[4,-51],[-17,-84],[-43,-117],[-50,-39],[-75,-5],[-39,-26],[-13,-39],[7,-121],[27,-97],[55,0],[-40,101],[-4,100],[18,41],[71,-6],[12,-44],[58,-42],[-44,-82],[38,-49],[-11,-66],[56,-17],[23,-52],[46,40],[18,-28],[-68,-62],[7,-60],[54,-26],[45,-54],[-23,-72],[-85,15],[-87,55],[-90,34],[-48,48],[-21,81],[-48,123],[12,64],[-30,94],[12,36],[-35,78],[25,56],[45,30],[37,48],[-4,52],[-24,42],[-50,44],[-16,72],[-39,42],[10,33],[83,-39],[66,74],[25,6],[21,29]],[[77032,60316],[41,-13],[5,-122],[30,-63],[99,-60],[-1,-22],[-51,-66],[-15,-65],[29,-150],[-74,-16],[-17,51],[-27,-45],[-20,29],[-59,-13],[-27,-67],[-57,38],[-1,45],[65,71],[13,64],[40,105],[7,69],[-37,75],[-34,34],[-17,99],[108,22]],[[75897,60353],[136,-57],[31,13],[91,-20],[15,-47],[75,-42],[-85,-91],[-46,-4],[-66,-48],[-47,-76],[-127,-91],[-23,-38],[21,-80],[49,-40],[102,-44],[40,-70],[-24,-37],[-49,-21],[-67,7],[-25,24],[-79,38],[-40,5],[-6,108],[-35,114],[-67,97],[13,64],[46,94],[10,66],[92,79],[29,58],[36,39]],[[76450,60277],[24,21],[23,42],[25,-33],[15,-86],[-60,-5],[-32,-23],[29,-44],[-5,-53],[-81,-36],[-25,-27],[-40,17],[-44,-24],[-13,-41],[-64,-12],[-21,-19],[-11,-56],[-72,-43],[-38,-94],[-49,-2],[-79,33],[-8,51],[121,106],[42,108],[41,33],[30,-3],[93,77],[58,70],[23,3],[73,-56],[30,26],[-6,32],[-48,99],[37,4],[9,-44],[23,-21]],[[76775,60417],[80,-13],[25,-108],[-61,-5],[0,-34],[-48,-27],[-26,8],[-56,59],[23,47],[4,46],[15,49],[44,-22]],[[76968,61032],[-7,-43],[20,-25],[-17,-120],[12,-47],[38,1],[46,-30],[48,-60],[-102,-19],[6,-47],[77,-54],[-22,-49],[24,-20],[58,14],[4,-82],[21,-45],[90,-82],[17,-44],[-31,-90],[25,-70],[28,-17],[-48,-63],[-43,71],[-69,35],[-31,38],[14,86],[-32,76],[-74,16],[-46,-21],[-67,37],[-24,106],[-54,53],[22,81],[-8,85],[4,131],[15,48],[-5,67],[36,23],[13,82],[23,34],[50,-14],[-11,-42]],[[76514,61096],[48,-47],[33,-58],[52,-30],[19,-68],[-36,-4],[-70,69],[-50,29],[-19,94],[23,15]],[[76216,61494],[38,-7],[32,-50],[35,-19],[9,-106],[56,-29],[-41,-52],[-46,43],[-11,66],[-35,84],[-40,45],[3,25]],[[76646,61682],[30,-110],[-19,-93],[-28,-40],[12,-58],[-15,-23],[19,-26],[12,-57],[27,-41],[-19,-47],[6,-41],[62,-48],[-86,-51],[-50,-40],[-28,48],[20,58],[-77,39],[-25,89],[23,44],[-15,33],[13,50],[-6,57],[30,11],[-20,52],[-58,10],[34,29],[11,11],[7,25],[24,11],[3,37],[67,76],[46,-5]],[[76729,61746],[56,-36],[77,-18],[34,-67],[23,-138],[26,-64],[61,-57],[-21,-111],[31,-42],[-59,-46],[-48,-16],[-21,-27],[27,-43],[-20,-18],[-2,-64],[-58,-75],[8,-42],[-19,-49],[-9,-81],[-40,2],[-93,96],[-27,139],[-13,33],[72,47],[35,-17],[2,71],[-67,40],[39,24],[2,30],[-56,64],[-3,36],[-31,42],[15,42],[-9,26],[34,39],[31,83],[-36,45],[-8,79],[-22,56],[89,17]],[[79253,75009],[50,-35],[-11,-33],[-106,-34],[2,50],[65,52]],[[76281,75970],[12,-56],[-52,-72],[21,-115],[-17,-48],[-67,-4],[-6,43],[-27,23],[58,44],[-51,15],[0,42],[48,10],[12,97],[-40,30],[-16,77],[59,37],[67,-49],[13,-49],[-14,-25]],[[75877,76127],[35,-85],[45,-7],[29,-46],[38,-103],[-79,-14],[13,89],[-87,34],[-29,72],[35,60]],[[75772,76208],[-50,-59],[-35,42],[50,46],[35,-29]],[[76132,79646],[-3,-20],[127,-29],[55,5],[39,-43],[57,-32],[63,-3],[57,-39],[42,7],[5,-121],[27,-153],[-31,-108],[8,-210],[61,17],[17,61],[65,68],[29,7],[41,-48],[60,-26],[27,-36],[6,-54],[-53,-31],[1,-30],[78,-57],[82,-13],[158,68],[14,-32],[56,-40],[12,-67],[41,6],[93,-26],[34,-39],[-27,-48],[61,-60],[-15,-41],[7,-51],[39,-53],[31,-1],[29,-51],[73,9],[90,39],[62,-51],[88,36],[82,12],[60,-17],[139,70],[112,74],[31,-52],[117,91],[44,13],[47,-19],[18,-78],[74,-3],[67,-20],[76,-5],[18,-17],[-6,-62],[29,-32],[79,-14],[58,1],[56,55],[63,8],[65,-28],[48,14],[29,-54],[164,-48],[58,-51],[48,27],[50,-44],[-43,-97],[-51,-19],[-45,-37],[-6,-28],[72,-26],[31,15],[61,-17],[40,81],[78,-14],[47,6],[60,-28],[25,-30],[123,50],[-16,-56],[80,-84],[112,62],[93,-14],[91,-30]],[[79699,75809],[-44,-48],[-23,28],[-59,129],[-41,34],[37,56],[-15,53],[-70,-31],[-58,26],[-29,-52],[40,-78],[-60,-26],[90,-22],[-22,-60],[-47,47],[-82,0],[0,-53],[-26,-23],[-50,5],[36,-159],[32,7],[40,-35],[-90,-10],[-19,-41],[60,-23],[20,26],[58,14],[13,-100],[53,-44],[-21,-20],[-104,0],[-18,-54],[-81,-21],[-37,-70],[13,-90],[15,-19],[3,-73],[-56,-46],[-53,-6],[-50,18],[-13,56],[20,54],[-32,35],[-32,-16],[-108,6],[-98,-36],[-168,75],[16,28],[-24,70],[-72,2],[-54,-71],[-1,-48],[-140,3],[-47,22],[-71,86],[-89,44],[-71,11],[-4,46],[-40,-12],[-40,51],[32,71],[-32,7],[-131,123],[-176,20],[-57,32],[-26,59],[-2,58],[-48,62],[-1,32],[39,54],[-10,58],[-30,78],[-37,26],[-16,58],[-72,100],[21,72],[33,-57],[38,24],[20,69],[-71,28],[-66,-6],[8,71],[-28,85],[-8,70],[23,51],[-26,24],[-67,-22],[-97,16],[-42,31],[-85,18],[-47,31],[-16,-41],[-54,-4],[18,51],[8,93],[-76,59],[-53,-46],[-12,-61],[-65,0],[0,-73],[-58,-26],[10,-63],[-11,-28],[17,-78],[35,8],[83,-17],[29,-57],[29,9],[81,-9],[4,-40],[41,-23],[-10,-58],[-35,-35],[50,-43],[95,-33],[85,-13],[40,-39],[2,-73],[-31,4],[-14,-48],[-57,15],[-59,-13],[-64,11],[-116,-21],[-57,39],[-84,106],[-33,28],[-66,10],[-105,-9],[-30,-40],[-13,-78],[67,-74],[-123,-16],[-96,74],[-19,115],[9,60],[-83,49],[-78,-38],[-73,44],[-60,-79],[-57,-1],[-29,-36],[-77,-7],[-10,-43],[-35,-22],[-44,11],[-22,79],[47,41],[45,3],[-54,90],[60,31],[-2,-44],[111,-15],[43,29],[41,81],[-16,55],[-41,-41],[-99,-30],[-15,92],[-32,63],[7,50],[-31,79],[-113,26],[-15,41],[-73,35],[2,78],[-27,57],[-32,16],[-58,-21],[-3,-57],[-104,15],[-73,97],[-76,14],[-25,54],[-43,56],[-38,-11],[-75,118],[-35,5],[-76,-20],[-65,41],[-25,73],[-19,215],[-43,27],[-64,-51],[-67,-150],[1,-33],[-37,-90],[-31,-144],[-47,-39],[-24,-49],[21,-74],[70,-66],[12,55],[-12,57],[49,19],[76,-32],[41,22],[34,-63],[65,27],[46,-44],[56,17],[87,-24],[-12,-48],[37,-12],[5,-75],[55,-82],[6,-45],[42,-37],[-26,-41],[40,-66],[-54,-34],[2,54],[-67,-15],[-2,-29],[-94,42],[-20,50],[-40,-51],[-40,-87],[-87,-19],[12,-61],[-86,1],[-15,-31],[-57,-14],[-54,-50],[-50,-116],[32,-112],[-20,-52],[-50,-22],[-37,-41],[-72,7],[-44,-12],[-91,-49],[-80,3],[-54,-49],[-75,-27],[-26,-44],[-30,7],[-74,-63],[-21,-57],[-4,-59],[-48,-49],[-1,-100],[52,-15],[34,-49],[-44,-45],[-1,-68],[21,-46],[-126,-33],[13,-66],[-45,-49],[-2,-29],[-42,-34],[4,-99],[-36,-38],[-62,-27],[-16,-46],[-4,-81],[34,-38],[-15,-49],[43,-22],[30,-43],[-50,-39],[-2,-79],[12,-51],[30,-12],[-2,-50],[58,-1],[45,-16],[4,-69],[49,35],[55,6],[45,40],[98,-32],[2,30],[69,6],[23,27],[92,26],[35,-3],[25,-77],[-24,-40],[64,-22],[44,-54],[61,-31],[15,-59],[43,14],[112,-79],[48,-21],[-4,-56],[54,-15],[3,-32],[64,-31],[14,-47],[35,-18],[53,19],[78,-21],[14,-87],[-14,-115],[-23,-33],[79,-66],[83,-7],[17,-15],[0,-80],[29,-36],[107,-48],[27,-51],[41,-34],[81,-26],[67,-10],[51,30],[61,-61],[64,-4],[24,-58],[80,-32],[73,4],[43,-10],[42,56],[-5,32],[91,10],[50,-38],[73,31],[-26,78],[28,21],[61,-30],[61,32],[48,-124],[77,-37],[9,-64],[-6,-67],[-24,-19],[26,-56],[-48,-101],[60,-18],[23,-126],[47,-44],[36,-11],[14,-49],[62,-49],[47,43],[22,-16],[32,-71],[44,-3],[32,-30],[93,-12],[79,10],[18,-19],[61,-6],[27,-128],[-49,18],[-42,-7],[-51,-51],[-36,-9],[-31,-35],[30,-137],[-88,-28],[34,-87],[-57,-12],[-54,-48],[-37,43],[-54,25],[-48,-27],[-27,56],[-40,36],[-40,8],[-17,32],[-50,-9],[-5,-52],[-91,-80],[-105,16],[-12,39],[-59,-17],[-90,23],[-38,44],[-148,36],[-64,-26],[-166,10],[-117,-50],[-16,-46],[-76,-27],[-14,51],[-38,23],[-48,-24],[-66,56],[-42,-9],[-92,56],[-74,-69],[-89,20],[25,-118],[44,-101],[-6,-53],[-43,-33],[-8,-52],[21,-40],[0,-114],[-49,-68],[48,-72],[-32,-92],[-51,6],[-46,-88],[-18,-59],[-34,-16],[2,-54],[-20,-50],[-53,-2],[-46,35],[-90,-49],[-23,-64],[-32,-28],[10,-41],[41,-19],[3,-60],[-39,-53],[-40,34],[-48,-12],[-48,34],[-85,19],[-8,-48],[-30,-3],[4,87],[-10,54],[-45,85],[-51,63],[-65,23],[-60,-8],[-63,-37],[-44,-5],[-74,-54],[-46,-3],[18,-48],[78,-80],[4,-29],[-31,-69],[51,-40],[-53,-48],[-56,1],[-11,-75],[-95,-50],[-37,-106],[5,-33],[-103,-52],[-37,-2],[9,-133],[-39,-74],[-56,-42],[-12,-29],[-49,-32],[-66,-77],[14,-43],[66,-48],[60,-64],[62,-98],[6,-26],[122,-203],[92,-97],[70,-58],[71,-27],[44,-37],[63,-101],[77,-41],[103,-9],[99,-38],[133,-145],[137,-107],[42,-20],[79,-9],[191,36],[95,-26],[89,-50],[65,-25],[49,-36],[60,-3],[69,-74],[32,-86],[59,3],[21,74],[40,10],[15,-34],[66,-27],[22,27],[62,-6],[45,-33],[53,4],[18,23],[58,7],[105,-15],[85,-50],[30,-54],[25,-89],[-21,-147],[-2,-219],[43,-58],[3,-58],[-58,-42],[-67,-28],[-47,-3],[1,-82],[88,9],[15,-14],[-12,-117],[52,-40],[10,-82],[-5,-81],[-31,-34],[3,-41],[105,53],[46,-81],[-111,-11],[-24,-28],[-3,-68],[24,-28],[6,-73],[-33,-17],[1,-60],[-107,-2],[-2,-59],[-44,3],[-25,-41],[-68,-20],[-8,-46],[-71,-16],[-46,-26],[-39,48],[-41,-1],[-42,-32],[-29,21],[-60,-42],[38,-33],[5,-66],[52,-69],[-55,-18],[19,-46],[-41,-46],[-64,-8],[-12,-23],[68,-60],[-18,-65],[-9,-94],[-27,-38],[36,-175],[-45,-94],[3,-22],[57,-15],[43,5],[13,-44],[-10,-45],[-32,-32],[21,-26],[73,4],[135,29],[-16,-44],[33,-50],[26,-104],[23,-31],[84,-42],[41,-84],[85,-39],[33,3],[13,-45],[33,-23],[11,-39],[52,18],[50,-22],[1,50],[32,20],[63,-5],[14,-62],[-44,-61],[6,-95],[-33,-17],[-61,23],[-26,-90],[11,-36],[-27,-47],[1,-40],[35,-77],[-57,-67],[-48,-9],[8,-78],[38,-40],[-12,-44],[-59,10],[-9,-32],[-40,-2],[-18,31],[-48,-61],[43,-19],[28,-56],[29,-16],[-13,-66],[99,-60],[38,-9],[38,18],[34,-27],[32,-59],[106,-4],[-23,85],[4,45],[81,-20],[13,-28],[68,-51],[51,20],[53,-13],[120,14],[63,-70],[79,-37],[103,76],[39,-18],[-2,-75],[-27,-30],[-77,-2],[-22,-50],[-66,-31],[-24,-65],[0,-54],[-36,-44],[-50,-23],[-39,-60],[-43,-2],[-58,-37],[3,-45],[-17,-61],[25,-33],[20,-123],[-24,-41],[-15,-112],[2,-82],[-26,-53],[51,-18],[80,-5],[0,-88],[62,-31],[-38,-55],[21,-106],[86,-37],[50,37],[38,-80],[42,-56],[-5,-54],[-27,-89],[-2,-46],[-71,-29],[-69,-83],[0,-123],[38,-36],[29,-62],[75,-69],[-38,-81],[-6,-41],[-52,-49],[-16,-38],[37,-82],[55,-16],[2,-23],[-62,-47],[-18,-28],[8,-77],[-153,-29],[-66,-74],[-35,5],[-12,-60],[-35,-73],[-41,-7],[-6,-31],[58,-13],[-27,-166],[26,-30],[-23,-61],[-52,17],[-34,39],[-57,36],[-12,100],[-42,27],[-15,33],[-88,63],[-69,13],[-41,-6],[-31,-16],[-93,70],[-64,-5],[1,-21],[77,14],[23,-26],[64,-37],[35,20],[35,1],[57,-15],[37,-34],[-1,-39],[38,-44],[37,-88],[9,-61],[63,-51],[107,1],[28,-88],[-11,-99],[28,-66],[115,-89],[74,-122],[95,-56],[-28,-132],[13,-39],[67,-42],[10,-67],[-102,12],[-22,15],[-15,-30],[-37,-129],[55,-67],[-14,-37],[-56,44],[-40,-2],[-23,-33],[-49,15],[-21,94],[-26,39],[-16,4],[-19,-18],[-35,-35],[-14,55],[-32,11],[-28,-53],[23,-2],[42,-87],[-23,-24],[-62,54],[-36,5],[-44,-44],[-18,28],[-65,25],[-12,35],[-77,19],[-7,43],[-43,-55],[-68,23],[-59,34],[-69,-2],[-35,24],[-117,-10],[-11,43],[78,59],[51,133],[-25,0],[-29,-91],[-96,-106],[10,-42],[30,-19],[74,5],[40,-14],[-32,-80],[-35,-30],[-60,-84],[8,-46],[-52,-54],[-26,-95],[28,-144],[0,-43],[32,-58],[-78,-90],[-52,-142],[-8,-58],[35,-87],[26,-34],[-15,-63],[-31,-57],[-90,-66],[-29,51],[-23,-15],[-70,27],[-20,-26],[31,-67],[-35,-46],[-6,-52],[-33,-16],[-109,81],[-12,46],[52,78],[42,27],[-68,9],[-71,-18],[-35,-57],[-58,9],[14,79],[-74,-26],[-36,-34],[-29,20],[-30,-25],[-14,-54],[-56,-6],[-12,-131],[-30,-51],[24,-141],[-40,-46],[-66,26],[0,41],[-29,43],[-3,141],[-109,25],[-34,-10],[-19,-16],[8,-42],[-27,-55],[-139,-51],[-33,-32],[-5,-34],[24,-59],[51,-61],[14,-58],[-102,9],[-139,27],[3,50],[-63,165],[-86,117],[-52,114],[6,48],[41,113],[-7,54],[-50,45],[-27,57],[92,86],[63,86],[68,121],[10,74],[20,54],[8,87],[-12,61],[-38,103],[-1,69],[-27,66],[-56,80],[-90,45],[-127,19],[-47,23],[-163,4],[-10,25],[47,58],[21,63],[1,60],[41,74],[19,86],[-60,-5],[-37,-72],[-12,-122],[-39,-65],[-58,-63],[-85,9],[-120,64],[-36,30],[-89,132],[2,95],[-12,47],[4,122],[-11,86],[-19,50],[-4,66],[-80,81],[-24,60],[-100,-3],[-1,-42],[69,-10],[64,-70],[48,-153],[15,-94],[-8,-59],[-43,-45],[11,-59],[6,-133],[81,-81],[45,-28],[14,-57],[56,-49],[103,-38],[61,38],[56,-18],[58,-60],[74,-10],[76,18],[109,-27],[39,-65],[176,-224],[-18,-45],[-81,-100],[-68,-54],[-73,-34],[-168,-116],[-79,-33],[-90,86],[-40,50],[24,51],[-20,29],[-110,83],[-24,51],[-105,4],[23,-36],[45,17],[32,-46],[76,-65],[25,-117],[54,-60],[75,-46],[-62,-124],[-54,-124],[-66,-179],[-43,-74],[-61,-135],[1,-21],[-54,-74],[-129,-122],[-59,-36],[-50,-14],[-1,-31],[-79,-77],[-20,-33],[-123,-116],[-81,-60],[-110,-54],[-75,-22],[-20,10],[-55,-62],[-139,-92],[-146,-47],[-304,-47],[-41,-13],[-37,14],[-22,-26],[-89,-25],[-162,-20]],[[71438,57986],[-16,47],[1,64],[-53,77],[-34,-3],[18,93],[18,33],[10,117],[-62,87],[-42,-2],[3,124],[-69,19],[-110,-13],[-16,32],[-64,-16],[-21,32],[-39,10],[-19,33],[-129,0],[-69,34],[-21,43],[-46,-24],[-93,174],[-39,49],[9,60],[-46,93],[17,44],[47,55],[-62,49],[-2,81],[-50,-5],[-43,17],[-54,-15],[-74,49],[-53,-15],[-3,-111],[-69,-55],[-92,3],[-54,-17],[-30,-32],[-15,-61],[24,-24],[-11,-47],[6,-54],[-151,3],[-87,17],[-38,79],[-56,38],[-25,47],[28,129],[34,50],[20,58],[39,41],[13,41],[-45,89],[15,65],[-32,49],[-83,17],[-86,80],[-5,30],[-49,37],[-48,-6],[-45,16],[-86,2],[-225,46],[-23,-25],[-36,13],[-32,69],[-63,5],[6,38],[-27,25],[-1,61],[-37,31],[-69,-28],[-72,-11],[-136,-2],[6,79],[-16,57],[37,144]],[[73739,77267],[-20,64],[31,55],[65,18],[9,67],[-7,52],[26,27],[-1,39],[73,56],[28,119],[-2,58],[74,146],[8,43],[-3,151],[-15,64],[3,50],[-33,124],[-26,37],[26,52],[-13,64],[-104,83],[0,150],[-20,35],[-50,30],[-8,27],[44,115],[-11,27],[-60,1],[-85,74],[-26,104],[-62,-9],[-86,27],[-65,68],[-16,44],[4,70],[-53,61],[-65,29],[4,74],[31,35],[47,103],[-3,67],[14,60],[-5,86]],[[67364,51584],[-33,17],[14,42],[88,63],[8,-31],[-62,-39],[-15,-52]],[[68911,53170],[-25,81],[33,23],[5,-87],[-13,-17]],[[68865,53274],[-27,35],[11,79],[35,71],[2,98],[-20,24],[41,33],[21,-115],[-63,-225]],[[69215,54799],[80,-16],[128,3],[8,-30],[-68,-5],[-128,8],[-20,40]],[[71438,57986],[-59,-10],[-99,-50],[-75,-60],[-40,-90],[-51,-3],[-30,65],[-38,32],[-101,14],[8,-33],[51,-21],[11,-25],[72,-55],[-29,-39],[-97,35],[-154,0],[-164,-11],[-139,-3],[-123,-28],[-202,-88],[-139,-95],[-57,-72],[-33,-24],[-70,9],[-15,-80],[-90,-84],[-201,-119],[-73,-60],[-72,-84],[-89,-175],[-52,-85],[-60,-120],[-59,-63],[-43,-65],[-48,-106],[-26,-84],[-9,-64],[7,-84],[36,-162],[75,-196],[86,-136],[49,-119],[86,-169],[49,-84],[21,-63],[37,-44],[57,-102],[8,-43],[-4,-104],[-22,-115],[-57,-23],[-62,19],[-260,6],[-55,-18],[-28,-27],[-97,-50],[-29,-69],[-62,12],[-2,-66],[58,-30],[35,9],[28,88],[98,69],[89,2],[60,-39],[164,13],[35,-14],[125,37],[53,-36],[4,-67],[22,-33],[14,-68],[-45,-40],[-90,9],[-110,20],[-118,-10],[-9,-32],[72,-14],[41,11],[107,1],[12,-26],[95,-2],[62,-17],[1,-44],[-307,-201],[-112,-97],[-171,-129],[-121,-68],[-132,-108],[-65,-92],[-58,38],[22,-86],[-31,-76],[-90,4],[42,-56],[-21,-76],[1,-118],[-13,-37],[-53,-36],[61,-42],[13,51],[43,-15],[16,-42],[83,42],[27,-37],[-5,-86],[16,-128],[-100,-71],[-238,-132],[-73,-23],[3,-38],[-242,-122],[-81,-49],[-17,-22],[-100,-66],[-72,-58],[-31,-38],[-175,-296],[-67,-59],[-69,-94],[-52,1],[-51,-96],[-29,-87],[-28,-29],[-65,10],[-13,-74],[-39,-28],[10,-64],[-16,-43],[-58,-8],[-193,-43],[-105,-43],[-52,-45],[-54,-3],[17,44],[-51,42],[-36,-32],[-6,-64],[38,-27],[-10,-28],[-119,-44],[-110,-20],[-199,-65],[-76,-30],[-89,-6],[-85,-43],[-265,-32],[-281,-63],[-43,-25],[-243,-75],[-460,-157],[-194,-106],[-53,-39],[-221,-102],[-24,-22],[-354,-163],[-85,-32],[-180,-98],[-67,-44],[-100,-48],[-355,-242],[-151,-109],[-136,-120],[-187,-141],[-101,-93],[-27,-93],[-60,-33],[-208,-135],[-85,-61],[-110,-66],[-107,-78],[-176,-156],[-191,-207],[-113,-148],[-33,-59],[-22,-64],[-65,-132],[-28,-31]]],"transform":{"scale":[0.000270221450865098,0.0002560189528291815],"translate":[68.18624899229724,6.757034477359298]},"objects":{"india_state":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]]],"type":"MultiPolygon","properties":{"ST_NM":"Andaman & Nicobar Islands","population_2011":379944,"sex_ratio":878},"id":"andaman-nicobar-islands"},{"arcs":[[[57]],[[58,59,60,61,62],[63]]],"type":"MultiPolygon","properties":{"ST_NM":"Andhra Pradesh","population_2011":49386799,"sex_ratio":993},"id":"andhra-pradesh"},{"arcs":[[64,65,66]],"type":"Polygon","properties":{"ST_NM":"Arunachal Pradesh","population_2011":1382611,"sex_ratio":920},"id":"arunachal-pradesh"},{"arcs":[[67,68,69,70,71,72,73,74,75,-66],[76]],"type":"Polygon","properties":{"ST_NM":"Assam","population_2011":31169272,"sex_ratio":954},"id":"assam"},{"arcs":[[[77]],[[78,79,80,81]]],"type":"MultiPolygon","properties":{"ST_NM":"Bihar","population_2011":103804637,"sex_ratio":916},"id":"bihar"},{"arcs":[[82,83]],"type":"Polygon","properties":{"ST_NM":"Chandigarh","population_2011":1054686,"sex_ratio":818},"id":"chandigarh"},{"arcs":[[84,85,86,87,88,89]],"type":"Polygon","properties":{"ST_NM":"Chhattisgarh","population_2011":25540196,"sex_ratio":991},"id":"chhattisgarh"},{"arcs":[[90,91]],"type":"Polygon","properties":{"ST_NM":"Dadra & Nagar Haveli","population_2011":342853,"sex_ratio":775},"id":"dadra-nagar-haveli"},{"arcs":[[[92,93]],[[94]],[[95,96]]],"type":"MultiPolygon","properties":{"ST_NM":"Daman & Diu","population_2011":242911,"sex_ratio":618},"id":"daman-diu"},{"arcs":[[97,98,99]],"type":"Polygon","properties":{"ST_NM":"Goa","population_2011":1457723,"sex_ratio":968},"id":"goa"},{"arcs":[[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136,-137,136,137,-96,138,139,140,141,-92,142,143,-94,144],[145]]],"type":"MultiPolygon","properties":{"ST_NM":"Gujarat","population_2011":60383628,"sex_ratio":918},"id":"gujarat"},{"arcs":[[146,147,148,149,150,-83,151,152]],"type":"Polygon","properties":{"ST_NM":"Haryana","population_2011":25353081,"sex_ratio":877},"id":"haryana"},{"arcs":[[153,154,155,-153,156,157]],"type":"Polygon","properties":{"ST_NM":"Himachal Pradesh","population_2011":6864602,"sex_ratio":974},"id":"himachal-pradesh"},{"arcs":[[-158,158,159]],"type":"Polygon","properties":{"ST_NM":"Jammu & Kashmir","population_2011":12548926,"sex_ratio":883},"id":"jammu-kashmir"},{"arcs":[[160,161,-90,162,-80],[-78]],"type":"Polygon","properties":{"ST_NM":"Jharkhand","population_2011":32966238,"sex_ratio":947},"id":"jharkhand"},{"arcs":[[[163]],[[164,-61,165,166,167,-98,168]],[[169]]],"type":"MultiPolygon","properties":{"ST_NM":"Karnataka","population_2011":61130704,"sex_ratio":968},"id":"karnataka"},{"arcs":[[170,171,172,173,-167],[174]],"type":"Polygon","properties":{"ST_NM":"Kerala","population_2011":33387677,"sex_ratio":null},"id":"kerala"},{"arcs":[[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]]],"type":"MultiPolygon","properties":{"ST_NM":"Lakshadweep","population_2011":64429,"sex_ratio":946},"id":"lakshadweep"},{"arcs":[[[-146]],[[-88,188,-141,189,190],[191],[192]]],"type":"MultiPolygon","properties":{"ST_NM":"Madhya Pradesh","population_2011":72597565,"sex_ratio":931},"id":"madhya-pradesh"},{"arcs":[[-87,193,-169,-100,194,-143,-91,-142,-189],[-170],[-164]],"type":"Polygon","properties":{"ST_NM":"Maharashtra","population_2011":112372972,"sex_ratio":946},"id":"maharashtra"},{"arcs":[[195,196,-69,197]],"type":"Polygon","properties":{"ST_NM":"Manipur","population_2011":2721756,"sex_ratio":987},"id":"manipur"},{"arcs":[[198,-73]],"type":"Polygon","properties":{"ST_NM":"Meghalaya","population_2011":2964007,"sex_ratio":986},"id":"meghalaya"},{"arcs":[[-197,199,200,-70]],"type":"Polygon","properties":{"ST_NM":"Mizoram","population_2011":1091014,"sex_ratio":975},"id":"mizoram"},{"arcs":[[201,-198,-68,-65]],"type":"Polygon","properties":{"ST_NM":"Nagaland","population_2011":1980602,"sex_ratio":931},"id":"nagaland"},{"arcs":[[202,-148]],"type":"Polygon","properties":{"ST_NM":"NCT of Delhi","population_2011":16753235,"sex_ratio":866},"id":"nct-of-delhi"},{"arcs":[[[203,204]],[[205,-173]],[[-175]],[[206]],[[207,208]],[[209]],[[210]],[[211]],[[212]],[[213,214],[215]],[[216,217]],[[-64]]],"type":"MultiPolygon","properties":{"ST_NM":"Puducherry","population_2011":1244464,"sex_ratio":null},"id":"puducherry"},{"arcs":[[-152,-84,-151,218,219,-159,-157]],"type":"Polygon","properties":{"ST_NM":"Punjab","population_2011":27704236,"sex_ratio":893},"id":"punjab"},{"arcs":[[-150,220,-190,-140,221,-219]],"type":"Polygon","properties":{"ST_NM":"Rajasthan","population_2011":68621012,"sex_ratio":926},"id":"rajasthan"},{"arcs":[[222,223]],"type":"Polygon","properties":{"ST_NM":"Sikkim","population_2011":607688,"sex_ratio":889},"id":"sikkim"},{"arcs":[[[224]],[[225]],[[226]],[[-216]],[[-215,227,-209,228,-205,229,-171,-166,-60,230,-217,231],[-211],[-213],[-212],[-210],[-207]]],"type":"MultiPolygon","properties":{"ST_NM":"Tamil Nadu","population_2011":72138958,"sex_ratio":995},"id":"tamil-nadu"},{"arcs":[[-86,232,-62,-165,-194]],"type":"Polygon","properties":{"ST_NM":"Telangana","population_2011":35286757,"sex_ratio":988},"id":"telangana"},{"arcs":[[-71,-201,233]],"type":"Polygon","properties":{"ST_NM":"Tripura","population_2011":3671032,"sex_ratio":961},"id":"tripura"},{"arcs":[[[-192]],[[-193]],[[234,-81,-163,-89,-191,-221,-149,-203,-147,-156,235]]],"type":"MultiPolygon","properties":{"ST_NM":"Uttar Pradesh","population_2011":199281477,"sex_ratio":908},"id":"uttar-pradesh"},{"arcs":[[-236,-155,236]],"type":"Polygon","properties":{"ST_NM":"Uttarakhand","population_2011":10116752,"sex_ratio":963},"id":"uttarakhand"},{"arcs":[[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[-77]],[[323,-75,324,325,-161,-79,326,-223]]],"type":"MultiPolygon","properties":{"ST_NM":"West Bengal","population_2011":91347736,"sex_ratio":947},"id":"west-bengal"},{"arcs":[[[327]],[[328]],[[329]],[[330]],[[-326,331,-63,-233,-85,-162]]],"type":"MultiPolygon","properties":{"ST_NM":"Odisha","population_2011":41947358,"sex_ratio":978},"id":"odisha"}]}}}
<!DOCTYPE html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="legendholder">
<button id="click_to_run" onclick="do_update()">View by Population</button>
<button id="click_to_normal" onclick="do_normal()">View Normal</button>
</div>
<div id="map-wrapper"></div>
<script src="https://d3js.org/d3.v2.min.js"></script>
<script src="topojson.js"></script>
<script src="cartogram.js"></script>
<script src="scripts.js"></script>
</body>
</html>
var width = window.innerWidth,
height = window.innerHeight,
margin = {top: 0, bottom: 0, left: 0, right: 0};
var svg = d3.select("#map-wrapper").append("svg")
.attr("width", width - margin.left - margin.right)
.attr("height", height - margin.top - margin.bottom);
var states = svg.append("g")
.attr("id", "states")
.selectAll("path");
var projection = d3.geo.albers()
.origin([79.375986, 23.368801])
.scale(1000);
var topology,
geometries,
carto_features;
var pop_data = d3.map();
var carto = d3.cartogram()
.projection(projection)
.properties(function (d) {
// this adds the "properties" properties to the geometries
return d.properties;
});
d3.csv("data.csv", function(data){
data.forEach(function(d){
pop_data.set(d.state_ut, [d.population_2011, d.sex_ratio])
});
});
d3.json("geo.json", function(data){
topology = data;
geometries = topology.objects['india_state'].geometries;
var features = carto.features(topology, geometries),
path = d3.geo.path()
.projection(projection);
states = states.data(features)
.enter()
.append("path")
.attr("class", "state")
.attr("id", function (d) { return slugify(d.properties.ST_NM); })
.attr("fill", "white")
.attr("d", path)
.attr("stroke", "black");
});
function do_update() {
d3.select("#click_to_run").text("thinking...");
setTimeout(function () {
carto.value(function (d) {
var ret = +pop_data.get(d.properties['ST_NM'])[0]
return ret;
});
if (carto_features == undefined)
carto_features = carto(topology, geometries).features;
states.data(carto_features)
.text(function (d) {
return d.properties.ST_NM;
})
states.transition()
.duration(3750)
.each("end", function () {
d3.select("#click_to_run").text("View by Population")
})
.attr("d", carto.path);
}, 10);
}
function do_normal() {
d3.select("#click_to_normal").text("thinking...");
setTimeout(function () {
var features = carto.features(topology, geometries),
path = d3.geo.path()
.projection(projection);
states.data(features)
.transition()
.duration(3750)
.each("end", function () {
d3.select("#click_to_normal").text("View Normal")
})
.attr("d", path);
}, 10);
};
function slugify(text){
return text.toString().toLowerCase()
.replace(/\s+/g, '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
topojson = (function() {
function merge(topology, arcs) {
var arcsByEnd = {},
fragmentByStart = {},
fragmentByEnd = {};
arcs.forEach(function(i) {
var e = ends(i);
(arcsByEnd[e[0]] || (arcsByEnd[e[0]] = [])).push(i);
(arcsByEnd[e[1]] || (arcsByEnd[e[1]] = [])).push(~i);
});
arcs.forEach(function(i) {
var e = ends(i),
start = e[0],
end = e[1],
f, g;
if (f = fragmentByEnd[start]) {
delete fragmentByEnd[f.end];
f.push(i);
f.end = end;
if (g = fragmentByStart[end]) {
delete fragmentByStart[g.start];
var fg = g === f ? f : f.concat(g);
fragmentByStart[fg.start = f.start] = fragmentByEnd[fg.end = g.end] = fg;
} else if (g = fragmentByEnd[end]) {
delete fragmentByStart[g.start];
delete fragmentByEnd[g.end];
var fg = f.concat(g.map(function(i) { return ~i; }).reverse());
fragmentByStart[fg.start = f.start] = fragmentByEnd[fg.end = g.start] = fg;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else if (f = fragmentByStart[end]) {
delete fragmentByStart[f.start];
f.unshift(i);
f.start = start;
if (g = fragmentByEnd[start]) {
delete fragmentByEnd[g.end];
var gf = g === f ? f : g.concat(f);
fragmentByStart[gf.start = g.start] = fragmentByEnd[gf.end = f.end] = gf;
} else if (g = fragmentByStart[start]) {
delete fragmentByStart[g.start];
delete fragmentByEnd[g.end];
var gf = g.map(function(i) { return ~i; }).reverse().concat(f);
fragmentByStart[gf.start = g.end] = fragmentByEnd[gf.end = f.end] = gf;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else if (f = fragmentByStart[start]) {
delete fragmentByStart[f.start];
f.unshift(~i);
f.start = end;
if (g = fragmentByEnd[end]) {
delete fragmentByEnd[g.end];
var gf = g === f ? f : g.concat(f);
fragmentByStart[gf.start = g.start] = fragmentByEnd[gf.end = f.end] = gf;
} else if (g = fragmentByStart[end]) {
delete fragmentByStart[g.start];
delete fragmentByEnd[g.end];
var gf = g.map(function(i) { return ~i; }).reverse().concat(f);
fragmentByStart[gf.start = g.end] = fragmentByEnd[gf.end = f.end] = gf;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else if (f = fragmentByEnd[end]) {
delete fragmentByEnd[f.end];
f.push(~i);
f.end = start;
if (g = fragmentByEnd[start]) {
delete fragmentByStart[g.start];
var fg = g === f ? f : f.concat(g);
fragmentByStart[fg.start = f.start] = fragmentByEnd[fg.end = g.end] = fg;
} else if (g = fragmentByStart[start]) {
delete fragmentByStart[g.start];
delete fragmentByEnd[g.end];
var fg = f.concat(g.map(function(i) { return ~i; }).reverse());
fragmentByStart[fg.start = f.start] = fragmentByEnd[fg.end = g.start] = fg;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else {
f = [i];
fragmentByStart[f.start = start] = fragmentByEnd[f.end = end] = f;
}
});
function ends(i) {
var arc = topology.arcs[i], p0 = arc[0], p1 = [0, 0];
arc.forEach(function(dp) { p1[0] += dp[0], p1[1] += dp[1]; });
return [p0, p1];
}
var fragments = [];
for (var k in fragmentByEnd) fragments.push(fragmentByEnd[k]);
return fragments;
}
function mesh(topology, o, filter) {
var arcs = [];
if (arguments.length > 1) {
var geomsByArc = [],
geom;
function arc(i) {
if (i < 0) i = ~i;
(geomsByArc[i] || (geomsByArc[i] = [])).push(geom);
}
function line(arcs) {
arcs.forEach(arc);
}
function polygon(arcs) {
arcs.forEach(line);
}
function geometry(o) {
geom = o;
geometryType[o.type](o.arcs);
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs) { arcs.forEach(polygon); }
};
o.type === "GeometryCollection"
? o.geometries.forEach(geometry)
: geometry(o);
if (arguments.length < 3) for (var i in geomsByArc) arcs.push([i]);
else for (var i in geomsByArc) if (filter((geom = geomsByArc[i])[0], geom[geom.length - 1])) arcs.push([i]);
} else {
for (var i = 0, n = topology.arcs.length; i < n; ++i) arcs.push([i]);
}
return object(topology, {type: "MultiLineString", arcs: merge(topology, arcs)});
}
function object(topology, o) {
var tf = topology.transform,
kx = tf.scale[0],
ky = tf.scale[1],
dx = tf.translate[0],
dy = tf.translate[1],
arcs = topology.arcs;
function arc(i, points) {
if (points.length) points.pop();
for (var a = arcs[i < 0 ? ~i : i], k = 0, n = a.length, x = 0, y = 0, p; k < n; ++k) points.push([
(x += (p = a[k])[0]) * kx + dx,
(y += p[1]) * ky + dy
]);
if (i < 0) reverse(points, n);
}
function line(arcs) {
var points = [];
for (var i = 0, n = arcs.length; i < n; ++i) arc(arcs[i], points);
return points;
}
function polygon(arcs) {
return arcs.map(line);
}
function geometry(o) {
o = Object.create(o);
o.coordinates = geometryType[o.type](o.arcs);
return o;
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs) { return arcs.map(polygon); }
};
return o.type === "GeometryCollection"
? (o = Object.create(o), o.geometries = o.geometries.map(geometry), o)
: geometry(o);
}
function reverse(array, n) {
var t, j = array.length, i = j - n; while (i < --j) t = array[i], array[i++] = array[j], array[j] = t;
}
return {
version: "0.0.3",
mesh: mesh,
object: object
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment