Skip to content

Instantly share code, notes, and snippets.

@ozanyusufoglu
Last active September 12, 2017 09:07
Show Gist options
  • Save ozanyusufoglu/8cb453c091138829f41fabfd4bc7ed0d to your computer and use it in GitHub Desktop.
Save ozanyusufoglu/8cb453c091138829f41fabfd4bc7ed0d to your computer and use it in GitHub Desktop.
zoomable v2
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://d3js.org/topojson.v2.min.js"></script>"
<style>
.background {
fill: none;
pointer-events: all;
}
#info {
position:absolute;
top: 10px;
left: 10px;
}
h1 {
font-family:arial;
font-size:2em;
color:#333;
}
#city-layer {
fill: #ccc;
cursor: pointer;
}
#city-layer .active {
fill : orange;
}
#city-mesh {
fill: none;
stroke: #fff;
stroke-width: 1.5px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
#town-mesh {
fill: none;
stroke: #fff;
stroke-width: 0.2px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
.town {
fill: #ccc ;
}
.town:hover, .city:hover {
fill: orange;
}
</style>
</head>
<body>
<script>
// feature zooming to polygons : https://bl.ocks.org/mbostock/2206590
// extract administrative geojson for whole turkey
// put the data layer on map
const d3 = require('d3');
const topojson = require('topojson')
var townData = []
var cityData = []
var townGeo = {};
var cityGeo = {};
var width = 700;
var height = 500;
var active = d3.select(null);
var svg = d3.select('body')
.append('svg')
.attr('width', width)
.attr('height', height)
svg.append('rect')
.attr('class', 'background')
.attr('width', width)
.attr('height', height)
.on('click', reset);
const g = svg.append('g');
const projection = d3.geoMercator()
const zoom = d3.zoom()
.scaleExtent([1, 8])
.on("zoom", zoomed);
svg.call(zoom);
var path = d3.geoPath().projection(projection);
var color = d3.scaleThreshold()
.domain([0, 50, 100, 125, 150, 500, 1000, 2000])
.range(['rgba(247,251,255,0.8)', 'rgb(222,235,247)', 'rgb(198,219,239)', 'rgb(158,202,225)', 'rgb(107,174,214)', 'rgb(66,146,198)', 'rgb(33,113,181)', 'rgb(8,81,156)', 'rgb(8,48,107)']);
d3.queue()
.defer(d3.json, './geodata/tr_simple.json')
.defer(d3.csv, './miscdata/pivot.csv')
.awaitAll(draw)
d3.request("http://localhost:8080/miscdata/tr_pop_per_region.txt")
.mimeType("application/json")
.response(function(xhr) {
return xhr.responseText
})
.get(parseTowns)
var cities;
var towns;
function draw(err, results) {
const tr = results[0]; //topojson
const data = results[1]; // city pop data
console.log('Exported population data:\n', data);
/* color.domain([
d3.min(data, function(d) {
return d.population;
}),
d3.max(data, function(d) {
return d.population;
})
]);
*/
cities = topojson.feature(tr, tr.objects.cities); // carry these to findPolygon
towns = topojson.feature(tr, tr.objects.towns)
cities.features.map(function(e, i) {
for (let i = 0; i < data.length; i++) {
if (e.properties.NAME_1 === data[i].city) {
var newProps = {
tr_id: data[i].tr_id,
name: e.properties.NAME_1,
provider_data : [{
name: "JTI",
value: 0
}, {
name: "PMI",
value: 0
}, {
name: "IT",
value: 0
}, {
name: "TEKEL",
value: 0
}, {
name: "ET",
value: 0
}, {
name: "BAT",
value: 0
}, {
name: "KTG",
value: 0
}, {
name: "BOGAZICI",
value : 0
}],
id: e.properties.ID_1
}
return e.properties = newProps;
}
}
})
console.log(cities)
projection.fitExtent([
[0, 0],
[width, height]
], cities);
g.append('g')
.attr('id', 'town-layer')
.selectAll('path')
.data(towns.features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'town')
.on('click', clicked)
.on('mouseover', function(d) {
var props = d.properties;
return document.getElementById('name').innerHTML = props;
})
// cities first
g.append('g')
.attr('id', 'city-layer')
.selectAll('path')
.data(cities.features)
.enter()
.append('path')
.attr('d', path)
.attr('class', 'city')
.on('click', clicked)
.on('mouseover', function(d) {
var props = d.properties;
return document.getElementById('name').innerHTML =
"<pre>" +
"Name: " + props.name + "\n" +
"Value: " + props.population + '\n' +
"ID: " + props.tr_id +
"</pre>"
})
update()
g.append('path')
.datum(topojson.mesh(tr, tr.objects.towns, function(a, b) {
return a !== b;
}))
.attr('id', 'town-mesh')
.attr('d', path)
g.append('path')
.datum(topojson.mesh(tr, tr.objects.cities, function(a, b) {
return a !== b;
}))
.attr('id', 'city-mesh')
.attr('d', path)
}
d3.interval(function(){
d3.request("https://jti-test.tsmgateway.com/api/analytics/location_sales?scope=last_90_days")
.mimeType("application/json")
.response(function(xhr) {
return JSON.parse(xhr.responseText).data
})
.get(findPolygon)
update()
}, 2000)
function clicked(d) {
if (active.node() === this) return reset();
active.classed("active", false);
active = d3.select(this).classed("active", true);
var bounds = path.bounds(d),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = Math.max(1, Math.min(8, 0.9 / Math.max(dx / width, dy / height))),
translate = [width / 2 - scale * x, height / 2 - scale * y];
svg.transition()
.duration(750)
.call(zoom.transform, d3.zoomIdentity.translate(translate[0], translate[1]).scale(scale));;
}
function reset() {
active.classed("active", false);
active = d3.select(null);
svg.transition()
.duration(750)
.call(zoom.transform, d3.zoomIdentity);
}
function zoomed() {
g.style("stroke-width", 1.5 / d3.event.scale + "px");
g.attr("transform", d3.event.transform);
function stopped() {
if (d3.event.defaultPrevented) d3.event.stopPropagation();
}
}
/*
// zoom to bounding box v1
function clicked(d) {
if (active.node() === this) return reset();
active.classed('active', false);
active = d3.select(this).classed('active', true);
var bounds = path.bounds(d),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = .9 / Math.max(dx / width, dy / height),
translate = [width / 2 - scale * x, height / 2 - scale * y];
g.transition()
.duration(750)
.style('stroke-width', 1.5 / scale + 'px')
.attr('transform', 'translate(' + translate + ')scale(' + scale + ')');
}
function reset() {
active.classed('active', false);
active = d3.select(null);
g.transition()
.duration(750)
.style('stroke-width', '1.5px')
.attr('transform', '');
}
*/
/* Bar chart için
svg.selectAll('rect')
.data(geojson.features)
.enter()
.append('rect')
.attr('transform', function(d) { return 'translate(' + path.centroid(d) + ')rotate(180)'; })
.attr('width','10px')
.attr('height',function(d){
return d.properties.value * 0.001
}).style('fill', function(d) {
var value = d.properties.value;
if (value) {
return color(value);
} else {
return '#ccc';
}
});
*/
function unwind(topojson) {
console.log('inside');
topojson.features.forEach(item => {
if (d3.geoArea(item) > 2 * Math.PI) {
item.geometry.coordinates = item.geometry.coordinates.map(f => f.map(e => e.reverse()));
item.properties.error = true;
}
})
}
function parseTowns(text) {
var lines = text.split(/\n/);
lines.forEach(function(e) {
let items = e.split(/\s/);
let dataObj = {
id: items[0],
name: items[1],
parent: items[2],
population: items[3],
admin_level: 2,
}
townData.push(dataObj)
})
}
function findPolygon(salesobj) {
salesobj.forEach(function(sale) {
var points = [sale.lon, sale.lat]
console.log(points)
cities.features.forEach(function(feature) {
if (d3.geoContains(feature, points)) {
feature.properties.provider_data[0].value++
}
})
})
}
function update(){
generateRandom();
d3.select("#city-layer").selectAll('path')
.data(cities.features)
.style('fill', function(d) {
var value = d.properties.provider_data[0].value
if (value) {
return color(value);
} else {
return '#ccc';
}
})
}
function generateRandom(){
console.log(towns.features);
var istanbul_towns = towns.features.filter(function(feature){
if( feature.properties.NAME_1 == "Istanbul")
return feature;
})
console.log(istanbul_towns);
istanbul_towns.forEach()
}
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[3165,46885],[22,-6]],[[3187,46879],[6,-3]],[[3193,46876],[33,-59],[53,0]],[[3279,46817],[18,-3]],[[3297,46814],[7,-25]],[[3304,46789],[-3,-4]],[[3301,46785],[0,-3]],[[3301,46782],[6,-4]],[[3307,46778],[0,-2]],[[3307,46776],[20,-3]],[[3327,46773],[9,-11]],[[3336,46762],[-4,-5]],[[3332,46757],[0,-17]],[[3332,46740],[4,-3]],[[3336,46737],[2,-10]],[[3338,46727],[5,-3]],[[3343,46724],[3,-17]],[[3346,46707],[-11,-12]],[[3335,46695],[3,-6]],[[3338,46689],[5,-4]],[[3343,46685],[18,-26]],[[3361,46659],[0,-3]],[[3361,46656],[-4,-10]],[[3357,46646],[0,-10]],[[3357,46636],[9,-48]],[[3366,46588],[-5,3]],[[3361,46591],[-18,4]],[[3343,46595],[-7,-4]],[[3336,46591],[0,-3]],[[3336,46588],[-4,-3]],[[3332,46585],[0,-39]],[[3332,46546],[15,-3]],[[3347,46543],[7,-26]],[[3354,46517],[-16,-3]],[[3338,46514],[0,-3]],[[3338,46511],[-6,-3]],[[3332,46508],[22,-52]],[[3354,46456],[3,-7]],[[3357,46449],[1,-19]],[[3358,46430],[10,-4]],[[3368,46426],[-2,-32]],[[3366,46394],[-5,-3]],[[3361,46391],[0,-10]],[[3361,46381],[5,-9]],[[3366,46372],[36,-19]],[[3402,46353],[1,-4]],[[3403,46349],[-9,-19]],[[3394,46330],[-3,-10]],[[3391,46320],[-48,-49]],[[3343,46271],[-7,-3]],[[3336,46268],[-23,-16]],[[3313,46252],[-9,7]],[[3304,46259],[0,-4]],[[3304,46255],[-7,-3]],[[3297,46252],[-21,-16]],[[3276,46236],[-5,-13]],[[3271,46223],[-53,-20]],[[3218,46203],[4,4]],[[3222,46207],[0,13]],[[3222,46220],[-4,6]],[[3218,46226],[-47,-35]],[[3171,46191],[-9,-4]],[[3162,46187],[-21,0]],[[3141,46187],[-4,4]],[[3137,46191],[-10,19]],[[3127,46210],[-3,10]],[[3124,46220],[0,13]],[[3124,46233],[0,9]],[[3124,46242],[-29,7],[-10,58],[-86,29]],[[2999,46336],[-4,3]],[[2995,46339],[-46,33]],[[2949,46372],[-18,3]],[[2931,46375],[-22,42]],[[2909,46417],[-5,3]],[[2904,46420],[-31,10]],[[2873,46430],[-25,3]],[[2848,46433],[-20,26]],[[2828,46459],[-8,3]],[[2820,46462],[-16,10]],[[2804,46472],[-9,3]],[[2795,46475],[-42,22]],[[2753,46497],[14,11]],[[2767,46508],[0,6]],[[2767,46514],[-5,6]],[[2762,46520],[-5,13]],[[2757,46533],[-7,7]],[[2750,46540],[-66,39]],[[2684,46579],[-6,3]],[[2678,46582],[-31,6],[-46,-45]],[[2601,46543],[-4,-3]],[[2597,46540],[-5,9]],[[2592,46549],[-5,3]],[[2587,46552],[-37,33]],[[2550,46585],[-24,3]],[[2526,46588],[-15,13]],[[2511,46601],[-5,3]],[[2506,46604],[-15,16]],[[2491,46620],[-10,16]],[[2481,46636],[0,14]],[[2481,46650],[-4,9]],[[2477,46659],[-22,62]],[[2455,46721],[-10,3]],[[2445,46724],[-15,16]],[[2430,46740],[-5,3]],[[2425,46743],[9,55],[107,3],[45,23]],[[2586,46824],[17,-3]],[[2603,46821],[16,-4]],[[2619,46817],[17,-3]],[[2636,46814],[36,10]],[[2672,46824],[11,6]],[[2683,46830],[1,10]],[[2684,46840],[9,-6]],[[2693,46834],[52,19]],[[2745,46853],[37,0]],[[2782,46853],[111,7],[100,-26]],[[2993,46834],[8,-4]],[[3001,46830],[8,-6]],[[3009,46824],[26,-3]],[[3035,46821],[11,23]],[[3046,46844],[5,6]],[[3051,46850],[68,26]],[[3119,46876],[16,6]],[[3135,46882],[2,7]],[[3137,46889],[28,-4]],[[3391,47719],[6,3]],[[3397,47722],[5,7]],[[3402,47729],[9,3]],[[3411,47732],[17,7],[8,-33],[-28,-6],[-17,19]],[[3157,47864],[5,-3]],[[3162,47861],[-16,-16]],[[3146,47845],[-14,3]],[[3132,47848],[3,13]],[[3135,47861],[6,3]],[[3141,47864],[16,0]],[[3232,47971],[59,-29]],[[3291,47942],[6,-4]],[[3297,47938],[11,-6]],[[3308,47932],[8,-3]],[[3316,47929],[16,0]],[[3332,47929],[11,3]],[[3343,47932],[15,13]],[[3358,47945],[11,4]],[[3369,47949],[-3,-20]],[[3366,47929],[-8,-3]],[[3358,47926],[-1,-7]],[[3357,47919],[-5,-3]],[[3352,47916],[-6,-10]],[[3346,47906],[-8,-3]],[[3338,47903],[-2,-6]],[[3336,47897],[-4,-3]],[[3332,47894],[-28,-20]],[[3304,47874],[-7,-3]],[[3297,47871],[0,-4]],[[3297,47867],[-21,-3]],[[3276,47864],[-19,17]],[[3257,47881],[-14,2]],[[3243,47883],[-8,7]],[[3235,47890],[-37,4]],[[3198,47894],[-5,25]],[[3193,47919],[-3,7]],[[3190,47926],[0,12]],[[3190,47938],[3,11]],[[3193,47949],[23,25]],[[3216,47974],[16,-3]],[[2275,51460],[14,-3]],[[2289,51457],[10,-16]],[[2299,51441],[7,-6]],[[2306,51435],[0,-36]],[[2306,51399],[-6,-7]],[[2300,51392],[-6,-9]],[[2294,51383],[-11,-3]],[[2283,51380],[0,-26]],[[2283,51354],[3,-13]],[[2286,51341],[17,-45]],[[2303,51296],[7,-3]],[[2310,51293],[1,-7]],[[2311,51286],[8,-3]],[[2319,51283],[22,-23]],[[2341,51260],[14,-3]],[[2355,51257],[108,0]],[[2463,51257],[28,-3]],[[2491,51254],[15,-45]],[[2506,51209],[6,-4]],[[2512,51205],[0,-3]],[[2512,51202],[8,-3]],[[2520,51199],[16,-20]],[[2536,51179],[0,-3]],[[2536,51176],[-3,-10]],[[2533,51166],[-5,-9]],[[2528,51157],[-8,-26]],[[2520,51131],[-4,-6]],[[2516,51125],[0,-52]],[[2516,51073],[0,-3]],[[2516,51070],[0,-3]],[[2516,51067],[0,-7]],[[2516,51060],[0,-75]],[[2516,50985],[4,-6]],[[2520,50979],[8,-13]],[[2528,50966],[5,-3]],[[2533,50963],[-13,-133]],[[2520,50830],[-4,-6]],[[2516,50824],[-5,-13]],[[2511,50811],[-5,-3]],[[2506,50808],[-25,-16]],[[2481,50792],[-4,-3]],[[2477,50789],[0,-49]],[[2477,50740],[4,-3]],[[2481,50737],[25,-30]],[[2506,50707],[5,-5]],[[2511,50702],[0,-43]],[[2511,50659],[-5,-6]],[[2506,50653],[-19,-10]],[[2487,50643],[-4,-7]],[[2483,50636],[-2,-9]],[[2481,50627],[-9,-7]],[[2472,50620],[-22,-25]],[[2450,50595],[-5,-4]],[[2445,50591],[5,-74]],[[2450,50517],[-5,-6]],[[2445,50511],[-3,-10]],[[2442,50501],[8,-7]],[[2450,50494],[13,-16]],[[2463,50478],[7,-3]],[[2470,50475],[11,-29]],[[2481,50446],[-4,-4]],[[2477,50442],[0,-2]],[[2477,50440],[-14,-3]],[[2463,50437],[-2,-7]],[[2461,50430],[-11,-20]],[[2450,50410],[11,-16]],[[2461,50394],[6,-3]],[[2467,50391],[49,-42],[71,-13]],[[2587,50336],[10,-3]],[[2597,50333],[39,19],[20,90]],[[2656,50442],[-8,7]],[[2648,50449],[91,10]],[[2739,50459],[18,3]],[[2757,50462],[27,26],[8,58]],[[2792,50546],[3,3]],[[2795,50549],[39,14],[11,-85]],[[2845,50478],[3,-13]],[[2848,50465],[-2,-12]],[[2846,50453],[-1,-7]],[[2845,50446],[-17,-74]],[[2828,50372],[-8,-3]],[[2820,50369],[-16,-20]],[[2804,50349],[-4,-3]],[[2800,50346],[-5,-10]],[[2795,50336],[-6,-3]],[[2789,50333],[-39,-23]],[[2750,50310],[-13,-7]],[[2737,50303],[-3,-9]],[[2734,50294],[-5,-3]],[[2729,50291],[-15,-4]],[[2714,50287],[-6,4]],[[2708,50291],[-16,-81]],[[2692,50210],[-14,-3]],[[2678,50207],[-106,-19]],[[2572,50188],[-11,-4]],[[2561,50184],[-20,-25]],[[2541,50159],[-16,-4]],[[2525,50155],[-5,-19]],[[2520,50136],[-4,-7]],[[2516,50129],[-5,-9]],[[2511,50120],[-11,-4]],[[2500,50116],[-58,4],[-42,-20]],[[2400,50100],[-61,0]],[[2339,50100],[-23,10]],[[2316,50110],[-5,3]],[[2311,50113],[-5,13]],[[2306,50126],[-6,3]],[[2300,50129],[-40,36]],[[2260,50165],[-14,-4]],[[2246,50161],[-28,-19]],[[2218,50142],[-5,-3]],[[2213,50139],[-3,0]],[[2210,50139],[-14,3]],[[2196,50142],[-8,-13]],[[2188,50129],[-49,-6]],[[2139,50123],[-12,-19]],[[2127,50104],[-9,-4]],[[2118,50100],[-64,-6],[-22,-26]],[[2032,50068],[-8,-3]],[[2024,50065],[-2,-7]],[[2022,50058],[-15,-3]],[[2007,50055],[-66,-3]],[[1941,50052],[-12,-3]],[[1929,50049],[-36,-27]],[[1893,50022],[-11,-2]],[[1882,50020],[-36,-10]],[[1846,50010],[-23,-4]],[[1823,50006],[-77,-22]],[[1746,49984],[-6,-3]],[[1740,49981],[-14,-20]],[[1726,49961],[-9,-3]],[[1717,49958],[0,3]],[[1717,49961],[-7,4]],[[1710,49965],[-106,-36]],[[1604,49929],[-14,-3]],[[1590,49926],[-15,-3]],[[1575,49923],[-5,-4]],[[1570,49919],[0,-3]],[[1570,49916],[-14,0]],[[1556,49916],[-6,-10]],[[1550,49906],[-2,-3]],[[1548,49903],[-3,-6]],[[1545,49897],[-6,-3]],[[1539,49894],[-66,-49],[-90,-10]],[[1383,49835],[-8,4]],[[1375,49839],[-45,-4]],[[1330,49835],[-11,4]],[[1319,49839],[-22,-4]],[[1297,49835],[-16,-3]],[[1281,49832],[-48,29],[-102,17]],[[1131,49878],[-15,-4]],[[1116,49874],[-44,-13]],[[1072,49861],[-6,-3]],[[1066,49858],[-10,-10]],[[1056,49848],[7,-3]],[[1063,49845],[1,-16]],[[1064,49829],[-4,-3]],[[1060,49826],[-14,-42]],[[1046,49784],[-7,-4]],[[1039,49780],[0,-3]],[[1039,49777],[-9,3]],[[1030,49780],[-19,10]],[[1011,49790],[-11,3]],[[1000,49793],[-31,-3]],[[969,49790],[-5,20]],[[964,49810],[-81,-17],[-29,26]],[[854,49819],[-24,4]],[[830,49823],[-72,-7]],[[758,49816],[-4,-6]],[[754,49810],[0,-33]],[[754,49777],[4,-3]],[[758,49774],[0,-3]],[[758,49771],[-14,-3]],[[744,49768],[-45,19]],[[699,49787],[-15,-3]],[[684,49784],[-40,-29]],[[644,49755],[-3,-4]],[[641,49751],[-4,-16]],[[637,49735],[-14,-3]],[[623,49732],[-24,-13]],[[599,49719],[-6,3]],[[593,49722],[-9,17]],[[584,49739],[-7,2]],[[577,49741],[-4,7]],[[573,49748],[-30,-7]],[[543,49741],[-11,10]],[[532,49751],[-5,4]],[[527,49755],[-1,13]],[[526,49768],[-5,3]],[[521,49771],[0,9]],[[521,49780],[0,10]],[[521,49790],[-19,52]],[[502,49842],[-4,3]],[[498,49845],[-5,22]],[[493,49867],[-5,27]],[[488,49894],[-12,22]],[[476,49916],[-11,3]],[[465,49919],[-28,16]],[[437,49935],[-30,7]],[[407,49942],[-20,0]],[[387,49942],[-11,3]],[[376,49945],[-51,72]],[[325,50017],[-8,3]],[[317,50020],[-161,57]],[[156,50077],[-3,8]],[[153,50085],[-48,15]],[[105,50100],[-7,4]],[[98,50104],[-32,3]],[[66,50107],[-7,3]],[[59,50110],[-14,3]],[[45,50113],[-3,-6]],[[42,50107],[-39,3]],[[3,50110],[-3,6]],[[0,50116],[33,185]],[[33,50301],[4,6]],[[37,50307],[0,3]],[[37,50310],[-4,7]],[[33,50317],[-14,68],[23,61]],[[42,50446],[8,7]],[[50,50453],[70,44]],[[120,50497],[8,-3]],[[128,50494],[25,7]],[[153,50501],[3,7]],[[156,50508],[73,41],[35,49]],[[264,50598],[6,3]],[[270,50601],[42,65]],[[312,50666],[5,3]],[[317,50669],[0,3]],[[317,50672],[4,3]],[[321,50675],[80,49]],[[401,50724],[14,3]],[[415,50727],[2,13]],[[417,50740],[4,3]],[[421,50743],[2,7]],[[423,50750],[5,3]],[[428,50753],[60,52]],[[488,50805],[46,3]],[[534,50808],[3,6]],[[537,50814],[5,4]],[[542,50818],[9,19]],[[551,50837],[25,3]],[[576,50840],[0,4]],[[576,50844],[11,-4]],[[587,50840],[75,49]],[[662,50889],[6,3]],[[668,50892],[16,3]],[[684,50895],[4,3]],[[688,50898],[35,36]],[[723,50934],[10,10]],[[733,50944],[41,22]],[[774,50966],[14,3]],[[788,50969],[47,52]],[[835,51021],[15,7]],[[850,51028],[36,16]],[[886,51044],[5,3]],[[891,51047],[0,3]],[[891,51050],[9,4]],[[900,51054],[0,6]],[[900,51060],[14,3]],[[914,51063],[2,7]],[[916,51070],[13,3]],[[929,51073],[17,16]],[[946,51089],[7,3]],[[953,51092],[0,3]],[[953,51095],[8,4]],[[961,51099],[0,3]],[[961,51102],[10,3]],[[971,51105],[43,20]],[[1014,51125],[16,2]],[[1030,51127],[0,11]],[[1030,51138],[5,3]],[[1035,51141],[17,-14],[129,14]],[[1181,51141],[11,-7]],[[1192,51134],[75,26]],[[1267,51160],[25,3]],[[1292,51163],[88,-32]],[[1380,51131],[20,3]],[[1400,51134],[40,-9],[44,41]],[[1484,51166],[6,4]],[[1490,51170],[5,29]],[[1495,51199],[14,3]],[[1509,51202],[36,23]],[[1545,51225],[11,3]],[[1556,51228],[40,16]],[[1596,51244],[29,3]],[[1625,51247],[34,39]],[[1659,51286],[6,3]],[[1665,51289],[9,23],[88,42],[59,-3]],[[1821,51351],[11,-3]],[[1832,51348],[0,-4]],[[1832,51344],[5,-3]],[[1837,51341],[14,7]],[[1851,51348],[9,3]],[[1860,51351],[2,9]],[[1862,51360],[-7,4]],[[1855,51364],[0,9]],[[1855,51373],[0,3]],[[1855,51376],[25,30]],[[1880,51406],[11,3]],[[1891,51409],[50,0]],[[1941,51409],[-4,-6]],[[1937,51403],[0,-4]],[[1937,51399],[4,-3]],[[1941,51396],[72,13]],[[2013,51409],[14,-3]],[[2027,51406],[0,6]],[[2027,51412],[6,7]],[[2033,51419],[21,19]],[[2054,51438],[14,3]],[[2068,51441],[-3,10]],[[2065,51451],[34,3]],[[2099,51454],[0,6]],[[2099,51460],[14,-6]],[[2113,51454],[42,13]],[[2155,51467],[14,-3]],[[2169,51464],[0,-4]],[[2169,51460],[5,-6]],[[2174,51454],[15,-10]],[[2189,51444],[16,-3]],[[2205,51441],[16,-22]],[[2221,51419],[4,-4]],[[2225,51415],[50,45]],[[8530,53170],[-5,-10]],[[8525,53160],[0,-13]],[[8525,53147],[5,-6]],[[8530,53141],[15,-33]],[[8545,53108],[-29,3]],[[8516,53111],[0,4]],[[8516,53115],[-13,3]],[[8503,53118],[-29,26]],[[8474,53144],[4,3]],[[8478,53147],[21,19]],[[8499,53166],[17,4]],[[8516,53170],[9,6]],[[8525,53176],[5,3]],[[8530,53179],[0,-9]],[[13207,54107],[6,-3]],[[13213,54104],[56,-104]],[[13269,54000],[13,-3]],[[13282,53997],[11,-39],[54,-19],[13,-42],[60,-29],[21,-68]],[[13441,53800],[8,-23]],[[13449,53777],[15,-39],[-3,-93],[33,-71]],[[13494,53574],[5,-20]],[[13499,53554],[26,-78]],[[13525,53476],[5,-2]],[[13530,53474],[40,-39]],[[13570,53435],[-9,-3]],[[13561,53432],[-56,-7]],[[13505,53425],[-2,-3]],[[13503,53422],[-95,-10]],[[13408,53412],[0,-16]],[[13408,53396],[0,-13]],[[13408,53383],[-5,-3]],[[13403,53380],[-56,-52],[8,-90],[25,-107],[23,-4]],[[13403,53127],[5,-5]],[[13408,53122],[5,-17]],[[13413,53105],[6,-3]],[[13419,53102],[14,-49],[-44,-45]],[[13389,53008],[-9,-6]],[[13380,53002],[3,-10]],[[13383,52992],[5,3]],[[13388,52995],[6,10]],[[13394,53005],[16,3]],[[13410,53008],[0,3]],[[13410,53011],[7,4]],[[13417,53015],[24,13]],[[13441,53028],[4,3]],[[13445,53031],[49,-26]],[[13494,53005],[5,3]],[[13499,53008],[4,-9]],[[13503,52999],[2,-4]],[[13505,52995],[20,-19]],[[13525,52976],[6,-4]],[[13531,52972],[149,-112]],[[13680,52860],[10,-3]],[[13690,52857],[25,-20]],[[13715,52837],[10,-3]],[[13725,52834],[0,-7]],[[13725,52827],[11,-6]],[[13736,52821],[0,-7]],[[13736,52814],[20,-3]],[[13756,52811],[41,-29]],[[13797,52782],[18,-7]],[[13815,52775],[24,-22]],[[13839,52753],[8,-3]],[[13847,52750],[70,-43]],[[13917,52707],[11,-3]],[[13928,52704],[40,-25]],[[13968,52679],[11,-4]],[[13979,52675],[39,-25]],[[14018,52650],[11,-3]],[[14029,52647],[11,-11]],[[14040,52636],[12,-3]],[[14052,52633],[124,-80]],[[14176,52553],[9,-4]],[[14185,52549],[28,-16]],[[14213,52533],[6,3]],[[14219,52536],[5,-9]],[[14224,52527],[17,-3]],[[14241,52524],[17,-20]],[[14258,52504],[8,-3]],[[14266,52501],[24,-16]],[[14290,52485],[9,-4]],[[14299,52481],[67,-41]],[[14366,52440],[19,0]],[[14385,52440],[243,-114]],[[14628,52326],[16,-3]],[[14644,52323],[0,-3]],[[14644,52320],[19,-3]],[[14663,52317],[7,-3]],[[14670,52314],[13,-4]],[[14683,52310],[109,-42]],[[14792,52268],[24,-6]],[[14816,52262],[34,-16]],[[14850,52246],[14,3]],[[14864,52249],[16,-13]],[[14880,52236],[23,-4]],[[14903,52232],[37,-12]],[[14940,52220],[21,-4]],[[14961,52216],[0,-3]],[[14961,52213],[25,-3]],[[14986,52210],[114,-26]],[[15100,52184],[20,4]],[[15120,52188],[11,-10]],[[15131,52178],[34,-3]],[[15165,52175],[91,-10],[148,35],[53,27]],[[15457,52227],[11,3]],[[15468,52230],[47,35]],[[15515,52265],[9,3]],[[15524,52268],[36,24]],[[15560,52292],[33,0]],[[15593,52292],[20,-170]],[[15613,52122],[-12,-193]],[[15601,51929],[-54,-111]],[[15547,51818],[-113,-137],[-128,-125],[-69,-49],[-84,-39],[-91,-63],[-67,-64]],[[14995,51341],[-128,-138],[-101,-122]],[[14766,51081],[-89,-153]],[[14677,50928],[59,-131],[42,-116],[80,-156],[45,-114],[62,-129],[19,-58],[9,-96],[-18,-126],[-67,-158],[-42,-185]],[[14866,49659],[-18,-60],[-57,-133]],[[14791,49466],[-19,-57],[-47,-216],[-69,-161],[-50,-214],[-65,-156],[-11,-118],[34,-80],[102,-86]],[[14666,48378],[93,-50]],[[14759,48328],[41,-37]],[[14800,48291],[48,-72]],[[14848,48219],[25,-92]],[[14873,48127],[2,-163]],[[14875,47964],[-25,-127],[-59,-132]],[[14791,47705],[-21,-57],[-59,-291]],[[14711,47357],[-58,-87]],[[14653,47270],[-78,-161],[-153,-217],[-48,-109]],[[14374,46783],[-62,-97]],[[14312,46686],[-88,-69],[-193,-109],[-128,-60],[-141,-86],[-104,-48],[-117,-74],[-128,-62],[-169,-95],[-136,-43],[-92,-42]],[[13016,45998],[-210,163],[-82,31],[-143,30]],[[12581,46222],[-161,96],[-106,49],[-117,70]],[[12197,46437],[-111,33]],[[12086,46470],[-89,8]],[[11997,46478],[-223,0],[-162,-22]],[[11612,46456],[-152,-71],[-117,-33],[-159,-20],[-117,-34],[-120,-63],[-162,-62],[-81,-43]],[[10704,46130],[-44,-45]],[[10660,46085],[-175,-112],[-128,-61],[-117,-72],[-103,-50],[-100,-70],[-68,-69],[-197,-223],[-114,-109],[-108,-37],[-103,29]],[[9447,45311],[-90,50],[-58,18]],[[9299,45379],[-154,17],[-319,2],[-93,-6],[-116,-34],[-210,-126],[-74,-82]],[[8333,45150],[-48,-130],[-45,-152],[-69,-160],[-20,-107]],[[8151,44601],[-10,-186],[2,-617]],[[8143,43798],[-8,-154]],[[8135,43644],[-14,-115],[51,-8]],[[8172,43521],[-60,-41]],[[8112,43480],[-10,-3]],[[8102,43477],[0,-3]],[[8102,43474],[-6,-4]],[[8096,43470],[-36,-9]],[[8060,43461],[-14,2]],[[8046,43463],[-5,7]],[[8041,43470],[-17,4]],[[8024,43474],[-33,12]],[[7991,43486],[-98,4]],[[7893,43490],[-33,-10]],[[7860,43480],[-12,-3]],[[7848,43477],[-20,-16]],[[7828,43461],[-13,-3]],[[7815,43458],[-20,-17]],[[7795,43441],[-6,-3]],[[7789,43438],[0,-3]],[[7789,43435],[-10,-4]],[[7779,43431],[-14,-19]],[[7765,43412],[-5,-6]],[[7760,43406],[-35,-23]],[[7725,43383],[-21,-3]],[[7704,43380],[-11,-7]],[[7693,43373],[-15,-3]],[[7678,43370],[-21,3]],[[7657,43373],[-9,-3]],[[7648,43370],[-97,-7]],[[7551,43363],[-12,-3]],[[7539,43360],[0,-3]],[[7539,43357],[-3,-3]],[[7536,43354],[-55,-42]],[[7481,43312],[-14,-4]],[[7467,43308],[-14,4]],[[7453,43312],[-11,0]],[[7442,43312],[-42,-13]],[[7400,43299],[-19,-3]],[[7381,43296],[-4,-6]],[[7377,43290],[-5,-1]],[[7372,43289],[-112,-32]],[[7260,43257],[-11,-4]],[[7249,43253],[-80,-41]],[[7169,43212],[-11,3]],[[7158,43215],[-79,16]],[[7079,43231],[-57,-3]],[[7022,43228],[-9,-7]],[[7013,43221],[-16,-3]],[[6997,43218],[-45,-6]],[[6952,43212],[-9,-3]],[[6943,43209],[0,-4]],[[6943,43205],[-10,-3]],[[6933,43202],[-17,-13]],[[6916,43189],[-9,-7]],[[6907,43182],[-5,-6]],[[6902,43176],[-11,-3]],[[6891,43173],[0,-3]],[[6891,43170],[-9,-4]],[[6882,43166],[-59,-16],[-46,23],[-85,-3],[-57,-20]],[[6635,43150],[-15,-3]],[[6620,43147],[-24,-13]],[[6596,43134],[-6,-3]],[[6590,43131],[-48,-33]],[[6542,43098],[-36,-3]],[[6506,43095],[-41,0],[-72,-35]],[[6393,43060],[-35,-3]],[[6358,43057],[-53,-23],[-47,-55]],[[6258,42979],[-5,-3]],[[6253,42976],[-75,-39]],[[6178,42937],[-9,-3]],[[6169,42934],[-22,-26]],[[6147,42908],[-5,-3]],[[6142,42905],[-9,-26]],[[6133,42879],[-5,-10]],[[6128,42869],[-20,3]],[[6108,42872],[-42,4]],[[6066,42876],[-114,-39]],[[5952,42837],[-6,-7]],[[5946,42830],[0,-2]],[[5946,42828],[-11,-4]],[[5935,42824],[-91,-10]],[[5844,42814],[-25,-3]],[[5819,42811],[-40,-16]],[[5779,42795],[-8,-3]],[[5771,42792],[-13,-23]],[[5758,42769],[-4,-7]],[[5754,42762],[-5,-16]],[[5749,42746],[-5,-9]],[[5744,42737],[-23,-117]],[[5721,42620],[-6,3]],[[5715,42623],[-47,33]],[[5668,42656],[-13,3]],[[5655,42659],[-20,23]],[[5635,42682],[-3,3]],[[5632,42685],[-48,16]],[[5584,42701],[-46,-3]],[[5538,42698],[-96,-42]],[[5442,42656],[-8,-3]],[[5434,42653],[-61,-30]],[[5373,42623],[-25,4]],[[5348,42627],[-8,7]],[[5340,42634],[-19,3]],[[5321,42637],[-96,29]],[[5225,42666],[-33,3]],[[5192,42669],[0,3]],[[5192,42672],[-38,-3]],[[5154,42669],[-99,9],[-39,-16]],[[5016,42662],[-11,-3]],[[5005,42659],[-7,-9]],[[4998,42650],[-34,-4]],[[4964,42646],[-92,-7]],[[4872,42639],[-5,-2]],[[4867,42637],[-50,-23],[-31,-51]],[[4786,42563],[-12,-4]],[[4774,42559],[-22,-61]],[[4752,42498],[-6,-3]],[[4746,42495],[-39,-62],[-69,13]],[[4638,42446],[-3,3]],[[4635,42449],[-3,19]],[[4632,42468],[11,20]],[[4643,42488],[-5,10]],[[4638,42498],[-3,3]],[[4635,42501],[-33,48]],[[4602,42549],[-6,3]],[[4596,42552],[-80,-19],[-26,-26]],[[4490,42507],[-8,4]],[[4482,42511],[-11,-10]],[[4471,42501],[0,-3]],[[4471,42498],[-2,-7]],[[4469,42491],[-7,4]],[[4462,42495],[-16,-4]],[[4446,42491],[-9,-3]],[[4437,42488],[-21,-45]],[[4416,42443],[8,-3]],[[4424,42440],[0,-11]],[[4424,42429],[-5,-2]],[[4419,42427],[-43,-30]],[[4376,42397],[-30,4]],[[4346,42401],[-6,-7]],[[4340,42394],[-11,-3]],[[4329,42391],[-109,3],[-25,-13]],[[4195,42381],[-8,4]],[[4187,42385],[-131,-7],[-38,-29]],[[4018,42349],[-20,-3]],[[3998,42346],[-11,6]],[[3987,42352],[-6,4]],[[3981,42356],[-53,6]],[[3928,42362],[-6,-4]],[[3922,42358],[-16,-22]],[[3906,42336],[-5,-3]],[[3901,42333],[-20,-16]],[[3881,42317],[-14,-3]],[[3867,42314],[-20,-17]],[[3847,42297],[-17,4]],[[3830,42301],[0,3]],[[3830,42304],[-38,-3]],[[3792,42301],[-26,22]],[[3766,42323],[-11,3]],[[3755,42326],[-80,-6],[-16,19]],[[3659,42339],[-4,3]],[[3655,42342],[-117,82]],[[3538,42424],[-19,3]],[[3519,42427],[-34,19]],[[3485,42446],[-36,3]],[[3449,42449],[-58,13],[-53,45]],[[3338,42507],[-9,4]],[[3329,42511],[-16,9]],[[3313,42520],[-12,4]],[[3301,42524],[-4,6]],[[3297,42530],[-4,3]],[[3293,42533],[-33,55]],[[3260,42588],[-19,3]],[[3241,42591],[6,46]],[[3247,42637],[0,6]],[[3247,42643],[0,3]],[[3247,42646],[5,32]],[[3252,42678],[19,88]],[[3271,42766],[5,7]],[[3276,42773],[4,9]],[[3280,42782],[3,3]],[[3283,42785],[10,100]],[[3293,42885],[4,7]],[[3297,42892],[4,7]],[[3301,42899],[3,2]],[[3304,42901],[7,10]],[[3311,42911],[10,0]],[[3321,42911],[6,7]],[[3327,42918],[9,3]],[[3336,42921],[2,6]],[[3338,42927],[5,4]],[[3343,42931],[15,19]],[[3358,42950],[10,3]],[[3368,42953],[35,23]],[[3403,42976],[5,10]],[[3408,42986],[0,57]],[[3408,43043],[-5,11]],[[3403,43054],[-1,64]],[[3402,43118],[6,7]],[[3408,43125],[5,12]],[[3413,43137],[5,4]],[[3418,43141],[25,29]],[[3443,43170],[4,12]],[[3447,43182],[0,33]],[[3447,43215],[-4,6]],[[3443,43221],[0,4]],[[3443,43225],[4,6]],[[3447,43231],[5,10]],[[3452,43241],[5,3]],[[3457,43244],[15,78],[2,93]],[[3474,43415],[4,0]],[[3478,43415],[0,4]],[[3478,43419],[0,42]],[[3478,43461],[16,45]],[[3494,43506],[5,3]],[[3499,43509],[34,94]],[[3533,43603],[5,3]],[[3538,43606],[17,87]],[[3555,43693],[5,13]],[[3560,43706],[4,36]],[[3564,43742],[5,6]],[[3569,43748],[16,94]],[[3585,43842],[4,3]],[[3589,43845],[25,39]],[[3614,43884],[6,3]],[[3620,43887],[24,26]],[[3644,43913],[11,0]],[[3655,43913],[0,3]],[[3655,43916],[6,3]],[[3661,43919],[14,19]],[[3675,43938],[6,4]],[[3681,43942],[58,35],[72,65]],[[3811,44042],[4,3]],[[3815,44045],[2,7]],[[3817,44052],[5,6]],[[3822,44058],[9,17]],[[3831,44075],[5,2]],[[3836,44077],[4,11]],[[3840,44088],[5,3]],[[3845,44091],[25,55]],[[3870,44146],[5,2]],[[3875,44148],[26,66]],[[3901,44214],[7,2]],[[3908,44216],[14,39]],[[3922,44255],[4,7]],[[3926,44262],[5,19]],[[3931,44281],[5,6]],[[3936,44287],[9,30]],[[3945,44317],[3,13]],[[3948,44330],[0,19]],[[3948,44349],[0,13]],[[3948,44362],[34,107]],[[3982,44469],[5,3]],[[3987,44472],[5,16]],[[3992,44488],[4,7]],[[3996,44495],[16,61]],[[4012,44556],[5,7]],[[4017,44563],[1,25]],[[4018,44588],[14,78],[24,35],[-8,81],[14,201],[-23,64],[-22,129],[0,58]],[[4017,45234],[-5,14]],[[4012,45248],[-11,99],[11,26]],[[4012,45373],[5,3]],[[4017,45376],[0,14]],[[4017,45390],[-5,6]],[[4012,45396],[-16,65]],[[3996,45461],[-4,2]],[[3992,45463],[-2,4]],[[3990,45467],[-1,3]],[[3989,45470],[-2,4]],[[3987,45474],[-5,3]],[[3982,45477],[-34,132]],[[3948,45609],[-6,4]],[[3942,45613],[-8,22]],[[3934,45635],[-3,3]],[[3931,45638],[-5,13]],[[3926,45651],[-6,3]],[[3920,45654],[-14,23]],[[3906,45677],[-5,3]],[[3901,45680],[-18,36],[-8,94]],[[3875,45810],[-5,3]],[[3870,45813],[0,45]],[[3870,45858],[5,4]],[[3875,45862],[22,28]],[[3897,45890],[9,4]],[[3906,45894],[20,22]],[[3926,45916],[10,3]],[[3936,45919],[9,16]],[[3945,45935],[3,3]],[[3948,45938],[30,56]],[[3978,45994],[12,3]],[[3990,45997],[2,9]],[[3992,46006],[4,4]],[[3996,46010],[16,55]],[[4012,46065],[0,35]],[[4012,46100],[-1,16]],[[4011,46116],[6,4]],[[4017,46120],[0,3]],[[4017,46123],[-5,3]],[[4012,46126],[-16,45]],[[3996,46171],[-4,10]],[[3992,46181],[0,13]],[[3992,46194],[4,3]],[[3996,46197],[0,29]],[[3996,46226],[-4,13]],[[3992,46239],[-5,13]],[[3987,46252],[-6,7]],[[3981,46259],[1,48]],[[3982,46307],[5,10]],[[3987,46317],[0,9]],[[3987,46326],[3,0]],[[3990,46326],[2,16]],[[3992,46342],[4,7]],[[3996,46349],[0,45],[55,81],[6,71],[-18,71]],[[4039,46617],[-2,0]],[[4037,46617],[-20,36]],[[4017,46653],[-6,3]],[[4011,46656],[-21,23]],[[3990,46679],[-8,3]],[[3982,46682],[-34,36]],[[3948,46718],[-3,3]],[[3945,46721],[-17,16]],[[3928,46737],[-8,3]],[[3920,46740],[-12,13]],[[3908,46753],[-7,4]],[[3901,46757],[-26,28]],[[3875,46785],[-8,4]],[[3867,46789],[-20,19]],[[3847,46808],[-7,3]],[[3840,46811],[46,42],[15,103]],[[3901,46956],[5,4]],[[3906,46960],[6,71]],[[3912,47031],[-1,0]],[[3911,47031],[-5,12]],[[3906,47043],[-11,4]],[[3895,47047],[6,71]],[[3901,47118],[5,3]],[[3906,47121],[16,33]],[[3922,47154],[9,3]],[[3931,47157],[0,-3]],[[3931,47154],[25,-7]],[[3956,47147],[31,90]],[[3987,47237],[-6,4]],[[3981,47241],[1,19]],[[3982,47260],[5,7]],[[3987,47267],[3,9]],[[3990,47276],[8,4]],[[3998,47280],[19,48]],[[4017,47328],[-5,23]],[[4012,47351],[0,22]],[[4012,47373],[6,14]],[[4018,47387],[19,60],[-20,49]],[[4017,47496],[-5,3]],[[4012,47499],[-16,30]],[[3996,47529],[-3,2]],[[3993,47531],[-6,10]],[[3987,47541],[-5,4]],[[3982,47545],[-34,71]],[[3948,47616],[0,22]],[[3948,47638],[0,30]],[[3948,47668],[-3,3]],[[3945,47671],[37,38]],[[3982,47709],[5,3]],[[3987,47712],[5,10]],[[3992,47722],[4,7]],[[3996,47729],[16,64]],[[4012,47793],[5,3]],[[4017,47796],[9,53]],[[4026,47849],[31,112],[7,120]],[[4064,48081],[4,7]],[[4068,48088],[10,128],[15,36]],[[4093,48252],[8,3]],[[4101,48255],[23,87]],[[4124,48342],[5,13]],[[4129,48355],[5,23]],[[4134,48378],[5,10]],[[4139,48388],[9,52]],[[4148,48440],[5,9]],[[4153,48449],[15,87]],[[4168,48536],[5,4]],[[4173,48540],[11,29]],[[4184,48569],[9,3]],[[4193,48572],[22,26]],[[4215,48598],[5,3]],[[4220,48601],[18,45]],[[4238,48646],[5,7]],[[4243,48653],[22,35]],[[4265,48688],[8,0]],[[4273,48688],[45,46]],[[4318,48734],[6,3]],[[4324,48737],[5,16]],[[4329,48753],[5,6]],[[4334,48759],[45,7]],[[4379,48766],[11,-4]],[[4390,48762],[15,-9]],[[4405,48753],[21,-3]],[[4426,48750],[11,-10]],[[4437,48740],[12,-3]],[[4449,48737],[42,-16]],[[4491,48721],[44,-3]],[[4535,48718],[45,-17]],[[4580,48701],[11,-3]],[[4591,48698],[61,-45]],[[4652,48653],[19,3]],[[4671,48656],[31,19],[79,-19]],[[4781,48656],[11,3]],[[4792,48659],[142,16],[16,16]],[[4950,48691],[5,4]],[[4955,48695],[40,32],[41,-9],[58,32]],[[5094,48750],[4,6]],[[5098,48756],[16,22]],[[5114,48778],[5,4]],[[5119,48782],[15,26]],[[5134,48808],[2,9]],[[5136,48817],[159,46]],[[5295,48863],[36,3]],[[5331,48866],[25,32]],[[5356,48898],[4,3]],[[5360,48901],[18,16]],[[5378,48917],[4,4]],[[5382,48921],[16,48],[39,19]],[[5437,48988],[5,4]],[[5442,48992],[29,78],[0,64],[28,48]],[[5499,49182],[3,0]],[[5502,49182],[47,14],[14,64],[39,45]],[[5602,49305],[5,4]],[[5607,49309],[5,12]],[[5612,49321],[3,7]],[[5615,49328],[0,4]],[[5615,49332],[8,0]],[[5623,49332],[9,135]],[[5632,49467],[3,7]],[[5635,49474],[20,90]],[[5655,49564],[3,3]],[[5658,49567],[2,7]],[[5660,49574],[8,3]],[[5668,49577],[33,48],[-33,120],[47,90]],[[5715,49835],[4,4]],[[5719,49839],[16,32],[89,-7]],[[5824,49864],[6,-3]],[[5830,49861],[0,-3]],[[5830,49858],[16,-3]],[[5846,49855],[4,-10]],[[5850,49845],[14,3]],[[5864,49848],[22,16]],[[5886,49864],[21,3]],[[5907,49867],[39,11]],[[5946,49878],[11,2]],[[5957,49880],[20,46]],[[5977,49926],[-5,3]],[[5972,49929],[80,93],[6,30]],[[6058,50052],[0,9]],[[6058,50061],[-17,110],[-21,49]],[[6020,50220],[-4,7]],[[6016,50227],[-41,80]],[[5975,50307],[-8,3]],[[5967,50310],[8,23]],[[5975,50333],[-8,3]],[[5967,50336],[0,58]],[[5967,50394],[8,7]],[[5975,50401],[2,6]],[[5977,50407],[0,3]],[[5977,50410],[39,46]],[[6016,50456],[6,3]],[[6022,50459],[30,6],[-32,78]],[[6020,50543],[-9,3]],[[6011,50546],[2,39]],[[6013,50585],[3,3]],[[6016,50588],[-3,13]],[[6013,50601],[3,7]],[[6016,50608],[0,103]],[[6016,50711],[4,10]],[[6020,50721],[16,35],[9,165],[-40,29],[76,39]],[[6081,50989],[16,3]],[[6097,50992],[105,-52]],[[6202,50940],[4,-3]],[[6206,50937],[52,3]],[[6258,50940],[11,-3]],[[6269,50937],[43,-13]],[[6312,50924],[11,-3]],[[6323,50921],[25,3]],[[6348,50924],[31,-3]],[[6379,50921],[39,62],[83,-27]],[[6501,50956],[20,4]],[[6521,50960],[24,25]],[[6545,50985],[9,4]],[[6554,50989],[0,3]],[[6554,50992],[6,3]],[[6560,50995],[10,13]],[[6570,51008],[4,3]],[[6574,51011],[11,4]],[[6585,51015],[14,-4]],[[6599,51011],[0,-6]],[[6599,51005],[5,-3]],[[6604,51002],[13,-7]],[[6617,50995],[36,-3]],[[6653,50992],[7,10]],[[6660,51002],[5,3]],[[6665,51005],[75,74]],[[6740,51079],[8,4]],[[6748,51083],[29,19]],[[6777,51102],[10,3]],[[6787,51105],[14,17]],[[6801,51122],[8,3]],[[6809,51125],[98,41]],[[6907,51166],[5,4]],[[6912,51170],[31,23]],[[6943,51193],[26,3]],[[6969,51196],[35,41]],[[7004,51237],[4,4]],[[7008,51241],[0,3]],[[7008,51244],[10,3]],[[7018,51247],[0,13]],[[7018,51260],[4,4]],[[7022,51264],[5,6]],[[7027,51270],[3,3]],[[7030,51273],[64,94]],[[7094,51367],[8,0]],[[7102,51367],[12,6]],[[7114,51373],[16,30]],[[7130,51403],[5,3]],[[7135,51406],[-5,51]],[[7130,51457],[5,10]],[[7135,51467],[0,7]],[[7135,51474],[14,3]],[[7149,51477],[11,22]],[[7160,51499],[4,10]],[[7164,51509],[0,6]],[[7164,51515],[0,10]],[[7164,51525],[5,10]],[[7169,51535],[5,3]],[[7174,51538],[18,52]],[[7192,51590],[4,3]],[[7196,51593],[10,29],[60,23],[3,96]],[[7269,51741],[22,4]],[[7291,51745],[20,10]],[[7311,51755],[5,6]],[[7316,51761],[1,10]],[[7317,51771],[10,3]],[[7327,51774],[53,49]],[[7380,51823],[-25,-4]],[[7355,51819],[-13,-12]],[[7342,51807],[-8,-4]],[[7334,51803],[-21,-3]],[[7313,51800],[3,7]],[[7316,51807],[4,9]],[[7320,51816],[5,3]],[[7325,51819],[6,29]],[[7331,51848],[8,3]],[[7339,51851],[47,72],[39,6]],[[7425,51929],[11,3]],[[7436,51932],[40,19]],[[7476,51951],[7,4]],[[7483,51955],[65,7]],[[7548,51962],[28,-4]],[[7576,51958],[17,-9]],[[7593,51949],[24,-4]],[[7617,51945],[12,-6]],[[7629,51939],[33,-4]],[[7662,51935],[16,23]],[[7678,51958],[4,4]],[[7682,51962],[18,55]],[[7700,52017],[7,2]],[[7707,52019],[2,7]],[[7709,52026],[5,3]],[[7714,52029],[45,75]],[[7759,52104],[12,3]],[[7771,52107],[49,45]],[[7820,52152],[4,9]],[[7824,52161],[19,43]],[[7843,52204],[3,6]],[[7846,52210],[30,10],[28,74]],[[7904,52294],[3,13]],[[7907,52307],[10,29]],[[7917,52336],[4,7]],[[7921,52343],[3,6]],[[7924,52349],[7,3]],[[7931,52352],[40,30]],[[7971,52382],[5,3]],[[7976,52385],[5,9]],[[7981,52394],[4,4]],[[7985,52398],[0,3]],[[7985,52401],[5,3]],[[7990,52404],[5,17]],[[7995,52421],[4,2]],[[7999,52423],[53,74]],[[8052,52497],[28,4]],[[8080,52501],[25,35]],[[8105,52536],[5,7]],[[8110,52543],[27,45]],[[8137,52588],[14,4]],[[8151,52592],[37,22]],[[8188,52614],[5,3]],[[8193,52617],[15,19]],[[8208,52636],[8,7]],[[8216,52643],[2,9]],[[8218,52652],[4,7]],[[8222,52659],[55,45]],[[8277,52704],[11,3]],[[8288,52707],[64,46]],[[8352,52753],[6,3]],[[8358,52756],[2,7]],[[8360,52763],[4,3]],[[8364,52766],[4,35]],[[8368,52801],[-8,7]],[[8360,52808],[-3,16]],[[8357,52824],[-5,10]],[[8352,52834],[-16,35]],[[8336,52869],[-4,13]],[[8332,52882],[0,10]],[[8332,52892],[4,13]],[[8336,52905],[16,16]],[[8352,52921],[5,3]],[[8357,52924],[62,32]],[[8419,52956],[16,4]],[[8435,52960],[7,9]],[[8442,52969],[7,4]],[[8449,52973],[18,22]],[[8467,52995],[2,7]],[[8469,53002],[31,26]],[[8500,53028],[8,3]],[[8508,53031],[17,25]],[[8525,53056],[5,7]],[[8530,53063],[34,33]],[[8564,53096],[14,3]],[[8578,53099],[6,12]],[[8584,53111],[5,7]],[[8589,53118],[17,13]],[[8606,53131],[5,3]],[[8611,53134],[0,4]],[[8611,53138],[23,9]],[[8634,53147],[10,10]],[[8644,53157],[6,3]],[[8650,53160],[30,23]],[[8680,53183],[25,3]],[[8705,53186],[1,7]],[[8706,53193],[3,6]],[[8709,53199],[0,22]],[[8709,53221],[-3,4]],[[8706,53225],[-5,6]],[[8701,53231],[0,10]],[[8701,53241],[7,6]],[[8708,53247],[1,3]],[[8709,53250],[5,-9]],[[8714,53241],[0,-3]],[[8714,53238],[36,22]],[[8750,53260],[5,6]],[[8755,53266],[-5,11]],[[8750,53277],[6,3]],[[8756,53280],[3,6]],[[8759,53286],[3,3]],[[8762,53289],[25,23]],[[8787,53312],[8,3]],[[8795,53315],[53,36],[88,-7],[106,39]],[[9042,53383],[42,3]],[[9084,53386],[20,-13]],[[9104,53373],[30,3]],[[9134,53376],[15,-9]],[[9149,53367],[11,-3]],[[9160,53364],[0,-4]],[[9160,53360],[8,-3]],[[9168,53357],[0,-3]],[[9168,53354],[13,3]],[[9181,53357],[0,3]],[[9181,53360],[9,-3]],[[9190,53357],[20,-22]],[[9210,53335],[16,-3]],[[9226,53332],[0,-4]],[[9226,53328],[12,4]],[[9238,53332],[41,-30],[67,-9],[34,-27],[50,20]],[[9430,53286],[6,3]],[[9436,53289],[86,20]],[[9522,53309],[8,3]],[[9530,53312],[0,3]],[[9530,53315],[20,3]],[[9550,53318],[0,3]],[[9550,53321],[13,4]],[[9563,53325],[39,-13]],[[9602,53312],[30,0]],[[9632,53312],[79,-13]],[[9711,53299],[16,0]],[[9727,53299],[15,-10]],[[9742,53289],[35,-3]],[[9777,53286],[45,10]],[[9822,53296],[20,-3]],[[9842,53293],[8,-7]],[[9850,53286],[17,3]],[[9867,53289],[3,0]],[[9870,53289],[24,-6]],[[9894,53283],[42,0]],[[9936,53283],[12,3]],[[9948,53286],[0,3]],[[9948,53289],[16,4]],[[9964,53293],[67,42]],[[10031,53335],[5,6]],[[10036,53341],[4,10]],[[10040,53351],[11,3]],[[10051,53354],[5,0]],[[10056,53354],[12,3]],[[10068,53357],[16,13]],[[10084,53370],[6,3]],[[10090,53373],[32,10]],[[10122,53383],[9,3]],[[10131,53386],[0,-3]],[[10131,53383],[6,-3]],[[10137,53380],[34,-16]],[[10171,53364],[11,-4]],[[10182,53360],[5,-12]],[[10187,53348],[5,-4]],[[10192,53344],[9,-9]],[[10201,53335],[6,-7]],[[10207,53328],[19,-26]],[[10226,53302],[5,-3]],[[10231,53299],[1,-6]],[[10232,53293],[10,-4]],[[10242,53289],[23,-25]],[[10265,53264],[3,-4]],[[10268,53260],[17,-19]],[[10285,53241],[7,-3]],[[10292,53238],[14,-20]],[[10306,53218],[7,-3]],[[10313,53215],[29,-22]],[[10342,53193],[14,-4]],[[10356,53189],[6,-10]],[[10362,53179],[11,4]],[[10373,53183],[34,-7]],[[10407,53176],[11,-3]],[[10418,53173],[3,-7]],[[10421,53166],[3,-3]],[[10424,53163],[35,-13]],[[10459,53150],[4,-6]],[[10463,53144],[21,-13],[89,13]],[[10573,53144],[24,3]],[[10597,53147],[4,-9]],[[10601,53138],[12,-7]],[[10613,53131],[11,16]],[[10624,53147],[27,3]],[[10651,53150],[59,13],[72,-25]],[[10782,53138],[18,3]],[[10800,53141],[46,32]],[[10846,53173],[9,-3]],[[10855,53170],[17,3]],[[10872,53173],[14,3]],[[10886,53176],[64,23]],[[10950,53199],[17,-4]],[[10967,53195],[32,4]],[[10999,53199],[9,3]],[[11008,53202],[48,-3]],[[11056,53199],[11,3]],[[11067,53202],[35,-3]],[[11102,53199],[49,10]],[[11151,53209],[8,3]],[[11159,53212],[35,26]],[[11194,53238],[4,6]],[[11198,53244],[35,91]],[[11233,53335],[4,2]],[[11237,53337],[13,11]],[[11250,53348],[8,3]],[[11258,53351],[32,25],[24,59]],[[11314,53435],[9,6]],[[11323,53441],[42,33]],[[11365,53474],[8,2]],[[11373,53476],[2,7]],[[11375,53483],[4,4]],[[11379,53487],[0,3]],[[11379,53490],[10,3]],[[11389,53493],[0,6]],[[11389,53499],[4,29]],[[11393,53528],[2,78]],[[11395,53606],[-11,0]],[[11384,53606],[0,3]],[[11384,53609],[-9,7]],[[11375,53616],[-5,9]],[[11370,53625],[-9,4]],[[11361,53629],[3,22]],[[11364,53651],[6,3]],[[11370,53654],[0,-3]],[[11370,53651],[25,0]],[[11395,53651],[59,-22],[50,48]],[[11504,53677],[0,16]],[[11504,53693],[0,10]],[[11504,53703],[-5,6]],[[11499,53709],[10,16]],[[11509,53725],[8,-3]],[[11517,53722],[43,23]],[[11560,53745],[7,3]],[[11567,53748],[0,4]],[[11567,53752],[11,3]],[[11578,53755],[12,16]],[[11590,53771],[5,3]],[[11595,53774],[0,6]],[[11595,53780],[-5,13]],[[11590,53793],[0,3]],[[11590,53796],[6,7]],[[11596,53803],[44,13],[87,-13],[36,29]],[[11763,53832],[10,-3]],[[11773,53829],[15,6]],[[11788,53835],[14,4]],[[11802,53839],[5,9]],[[11807,53848],[12,3]],[[11819,53851],[25,23]],[[11844,53874],[8,3]],[[11852,53877],[-3,39]],[[11849,53916],[0,7]],[[11849,53923],[3,6]],[[11852,53929],[6,-3]],[[11858,53926],[0,-16]],[[11858,53910],[0,-7]],[[11858,53903],[25,-26]],[[11883,53877],[10,-3]],[[11893,53874],[26,13]],[[11919,53887],[19,3]],[[11938,53890],[80,-22]],[[12018,53868],[3,6]],[[12021,53874],[17,13]],[[12038,53887],[15,-3]],[[12053,53884],[11,-10]],[[12064,53874],[19,3]],[[12083,53877],[25,26]],[[12108,53903],[6,4]],[[12114,53907],[16,-4]],[[12130,53903],[19,-6]],[[12149,53897],[40,-49]],[[12189,53848],[8,-3]],[[12197,53845],[14,-13]],[[12211,53832],[8,-3]],[[12219,53829],[0,-3]],[[12219,53826],[6,-3]],[[12225,53823],[50,-11],[52,-55]],[[12327,53757],[10,-2]],[[12337,53755],[75,-58]],[[12412,53697],[19,3]],[[12431,53700],[103,16],[24,25]],[[12558,53741],[4,7]],[[12562,53748],[5,9]],[[12567,53757],[0,14]],[[12567,53771],[-5,6]],[[12562,53777],[-8,3]],[[12554,53780],[4,13]],[[12558,53793],[20,7]],[[12578,53800],[40,23]],[[12618,53823],[5,3]],[[12623,53826],[25,13]],[[12648,53839],[6,3]],[[12654,53842],[74,35]],[[12728,53877],[11,-3]],[[12739,53874],[21,23]],[[12760,53897],[5,3]],[[12765,53900],[16,13]],[[12781,53913],[4,3]],[[12785,53916],[0,3]],[[12785,53919],[16,4]],[[12801,53923],[0,6]],[[12801,53929],[8,3]],[[12809,53932],[37,30],[94,35],[45,-7]],[[12985,53990],[5,4]],[[12990,53994],[31,42]],[[13021,54036],[6,3]],[[13027,54039],[3,0]],[[13030,54039],[13,6]],[[13043,54045],[3,7]],[[13046,54052],[11,3]],[[13057,54055],[9,62]],[[13066,54117],[10,6]],[[13076,54123],[32,35],[94,26],[5,-77]],[[11212,57365],[-22,-178]],[[11190,57187],[-71,-197]],[[11119,56990],[-22,-190],[-2,-991]],[[11095,55809],[10,-274]],[[11105,55535],[-42,-52]],[[11063,55483],[-5,-3]],[[11058,55480],[-22,-32]],[[11036,55448],[-16,-10]],[[11020,55438],[-17,-16]],[[11003,55422],[-4,-7]],[[10999,55415],[-27,-26]],[[10972,55389],[-9,-6]],[[10963,55383],[-7,-16]],[[10956,55367],[-4,-3]],[[10952,55364],[-31,-36]],[[10921,55328],[-5,-13]],[[10916,55315],[-3,-19]],[[10913,55296],[-3,-3]],[[10910,55293],[-28,-7]],[[10882,55286],[-7,-3]],[[10875,55283],[-14,-58]],[[10861,55225],[0,-23]],[[10861,55202],[0,-7]],[[10861,55195],[-4,-12]],[[10857,55183],[-5,-20]],[[10852,55163],[-5,-3]],[[10847,55160],[-3,-19]],[[10844,55141],[-5,-3]],[[10839,55138],[-68,-16]],[[10771,55122],[-2,2]],[[10769,55124],[-73,-2]],[[10696,55122],[-20,2]],[[10676,55124],[-5,-6]],[[10671,55118],[-17,-3]],[[10654,55115],[-11,-10]],[[10643,55105],[-24,3]],[[10619,55108],[-54,-45],[-99,-23]],[[10466,55040],[-7,-3]],[[10459,55037],[-43,-16]],[[10416,55021],[-20,-3]],[[10396,55018],[-64,-16]],[[10332,55002],[-19,-3]],[[10313,54999],[0,-4]],[[10313,54995],[-10,-3]],[[10303,54992],[-63,-26]],[[10240,54966],[-9,-3]],[[10231,54963],[-89,-23]],[[10142,54940],[-11,-3]],[[10131,54937],[-31,-32]],[[10100,54905],[-24,-4]],[[10076,54901],[-29,-6]],[[10047,54895],[-7,-3]],[[10040,54892],[-82,-58]],[[9958,54834],[-8,-4]],[[9950,54830],[-2,-6]],[[9948,54824],[-4,-3]],[[9944,54821],[-21,-26]],[[9923,54795],[-7,-4]],[[9916,54791],[-18,-19]],[[9898,54772],[-20,-6]],[[9878,54766],[-14,-20]],[[9864,54746],[-5,-3]],[[9859,54743],[-21,-25]],[[9838,54718],[-13,-4]],[[9825,54714],[-73,-55]],[[9752,54659],[-8,-3]],[[9744,54656],[-6,-13]],[[9738,54643],[-21,-3]],[[9717,54640],[-15,-20]],[[9702,54620],[-8,-3]],[[9694,54617],[-16,-16]],[[9678,54601],[-25,3]],[[9653,54604],[-42,-23]],[[9611,54581],[-9,-2]],[[9602,54579],[-5,-7]],[[9597,54572],[-15,-3]],[[9582,54569],[-25,-13]],[[9557,54556],[-7,-3]],[[9550,54553],[-7,-7]],[[9543,54546],[-7,-3]],[[9536,54543],[-67,-26]],[[9469,54517],[-14,-3]],[[9455,54514],[-9,-13]],[[9446,54501],[-6,-4]],[[9440,54497],[-24,-25],[-83,-23]],[[9333,54449],[-14,-3]],[[9319,54446],[-74,-26]],[[9245,54420],[-19,-3]],[[9226,54417],[-2,-7]],[[9224,54410],[-9,-3]],[[9215,54407],[-17,-6]],[[9198,54401],[-24,-3]],[[9174,54398],[-1,-7]],[[9173,54391],[-14,-3]],[[9159,54388],[0,-3]],[[9159,54385],[-5,-7]],[[9154,54378],[-31,-16]],[[9123,54362],[-8,-3]],[[9115,54359],[0,-4]],[[9115,54355],[-6,-3]],[[9109,54352],[-10,-13]],[[9099,54339],[-6,-3]],[[9093,54336],[-5,-6]],[[9088,54330],[-15,-3]],[[9073,54327],[-25,-20]],[[9048,54307],[-19,-3]],[[9029,54304],[-86,-16]],[[8943,54288],[-4,-4]],[[8939,54284],[-32,-16]],[[8907,54268],[-10,3]],[[8897,54271],[-16,-9]],[[8881,54262],[-14,-3]],[[8867,54259],[-75,-32]],[[8792,54227],[-22,-4]],[[8770,54223],[-5,-3]],[[8765,54220],[-10,-4]],[[8755,54216],[-24,-25]],[[8731,54191],[-5,-3]],[[8726,54188],[-15,-13]],[[8711,54175],[-19,-7]],[[8692,54168],[0,-3]],[[8692,54165],[-3,-4]],[[8689,54161],[-17,-41]],[[8672,54120],[-3,-3]],[[8669,54117],[-14,-23]],[[8655,54094],[-10,-4]],[[8645,54090],[-4,-9]],[[8641,54081],[-5,-20]],[[8636,54061],[-6,-12]],[[8630,54049],[-19,-4]],[[8611,54045],[-20,-26]],[[8591,54019],[-10,-2]],[[8581,54017],[0,-4]],[[8581,54013],[-3,-3]],[[8578,54010],[-44,-43],[-65,0],[-52,-21]],[[8417,53946],[-7,-4]],[[8410,53942],[-7,-10]],[[8403,53932],[-6,-3]],[[8397,53929],[-9,-13]],[[8388,53916],[-5,-3]],[[8383,53913],[-15,-101],[15,-126]],[[8383,53686],[5,-6]],[[8388,53680],[11,-74]],[[8399,53606],[4,-4]],[[8403,53602],[10,-25]],[[8413,53577],[4,-3]],[[8417,53574],[5,-10]],[[8422,53564],[0,-17]],[[8422,53547],[-75,-12]],[[8347,53535],[-23,3]],[[8324,53538],[-52,-23],[7,-67]],[[8279,53448],[4,-7]],[[8283,53441],[0,-13]],[[8283,53428],[-4,-3]],[[8279,53425],[-25,-45]],[[8254,53380],[-7,-4]],[[8247,53376],[0,-3]],[[8247,53373],[-6,-3]],[[8241,53370],[-59,-3],[-67,36]],[[8115,53403],[-28,-4]],[[8087,53399],[-97,-32]],[[7990,53367],[-20,-3]],[[7970,53364],[-32,-29]],[[7938,53335],[-4,-10]],[[7934,53325],[-5,-36]],[[7929,53289],[-5,-9]],[[7924,53280],[0,-39]],[[7924,53241],[5,-7]],[[7929,53234],[0,-32]],[[7929,53202],[-16,-3]],[[7913,53199],[-39,3],[-18,-45]],[[7856,53157],[-5,3]],[[7851,53160],[0,-3]],[[7851,53157],[-20,-3]],[[7831,53154],[-7,-27]],[[7824,53127],[0,-22]],[[7824,53105],[0,-3]],[[7824,53102],[0,-10]],[[7824,53092],[27,-129]],[[7851,52963],[5,-7]],[[7856,52956],[0,-90]],[[7856,52866],[-5,-6]],[[7851,52860],[-3,-14]],[[7848,52846],[-5,-3]],[[7843,52843],[-19,-42]],[[7824,52801],[-4,-3]],[[7820,52798],[-25,-35]],[[7795,52763],[-5,-4]],[[7790,52759],[-5,-16]],[[7785,52743],[-3,-6]],[[7782,52737],[-29,-33]],[[7753,52704],[-8,-2]],[[7745,52702],[-28,-39]],[[7717,52663],[-10,-4]],[[7707,52659],[-40,-45]],[[7667,52614],[-3,-3]],[[7664,52611],[-11,-19]],[[7653,52592],[-5,-4]],[[7648,52588],[-45,-64]],[[7603,52524],[-6,-4]],[[7597,52520],[-4,-6]],[[7593,52514],[-6,-3]],[[7587,52511],[-15,-14]],[[7572,52497],[-8,-3]],[[7564,52494],[0,-3]],[[7564,52491],[-6,-3]],[[7558,52488],[0,-42]],[[7558,52446],[4,-6]],[[7562,52440],[0,-3]],[[7562,52437],[-4,-4]],[[7558,52433],[-10,-16]],[[7548,52417],[-4,-3]],[[7544,52414],[-5,-7]],[[7539,52407],[-11,-6]],[[7528,52401],[-27,-26],[-64,16],[-40,-20]],[[7397,52371],[-5,-2]],[[7392,52369],[0,-10]],[[7392,52359],[-1,0]],[[7391,52359],[0,-13]],[[7391,52346],[-10,-7]],[[7381,52339],[-11,-39]],[[7370,52300],[-7,-2]],[[7363,52298],[-46,-59]],[[7317,52239],[-6,-3]],[[7311,52236],[-20,-32]],[[7291,52204],[-27,3]],[[7264,52207],[-53,-32]],[[7211,52175],[-5,-7]],[[7206,52168],[-132,-68],[-52,-16]],[[7022,52084],[-14,-3]],[[7008,52081],[-20,-16]],[[6988,52065],[-23,3]],[[6965,52068],[-49,-19]],[[6916,52049],[-3,-4]],[[6913,52045],[0,-3]],[[6913,52042],[-11,-3]],[[6902,52039],[-3,-6]],[[6899,52033],[-8,-4]],[[6891,52029],[-61,-78]],[[6830,51951],[-7,-2]],[[6823,51949],[-35,-30]],[[6788,51919],[-3,0]],[[6785,51919],[-48,-45]],[[6737,51874],[0,-10]],[[6737,51864],[4,-22]],[[6741,51842],[5,-7]],[[6746,51835],[0,-39]],[[6746,51796],[-5,-3]],[[6741,51793],[-4,-13]],[[6737,51780],[-6,-6]],[[6731,51774],[-15,-33]],[[6716,51741],[-4,-6]],[[6712,51735],[-45,-51]],[[6667,51684],[-7,-4]],[[6660,51680],[-28,-51]],[[6632,51629],[-15,-7]],[[6617,51622],[-43,-45]],[[6574,51577],[-4,-3]],[[6570,51574],[-6,-13]],[[6564,51561],[-8,-3]],[[6556,51558],[-5,-11]],[[6551,51547],[-22,-9]],[[6529,51538],[0,-3]],[[6529,51535],[-11,-4]],[[6518,51531],[-4,-16]],[[6514,51515],[-5,-6]],[[6509,51509],[-19,-16]],[[6490,51493],[-4,-3]],[[6486,51490],[-47,-36]],[[6439,51454],[-31,-32]],[[6408,51422],[-4,-3]],[[6404,51419],[-31,-23]],[[6373,51396],[-8,-4]],[[6365,51392],[-7,-6]],[[6358,51386],[-5,-3]],[[6353,51383],[-64,-26]],[[6289,51357],[-5,-3]],[[6284,51354],[-22,-26]],[[6262,51328],[-9,4]],[[6253,51332],[-45,-7]],[[6208,51325],[-6,-4]],[[6202,51321],[0,-3]],[[6202,51318],[7,0]],[[6209,51318],[-1,-9]],[[6208,51309],[-6,0]],[[6202,51309],[-21,-78],[-145,-49],[-61,0],[-28,-22]],[[5947,51160],[-17,-3]],[[5930,51157],[-61,-65],[-45,-3],[-44,-58]],[[5780,51031],[-14,-3]],[[5766,51028],[-51,-13],[-35,32],[-40,-19],[23,-68]],[[5663,50960],[5,-4]],[[5668,50956],[-25,-87],[20,-77]],[[5663,50792],[5,-13]],[[5668,50779],[47,-113],[39,-46]],[[5754,50620],[4,-6]],[[5758,50614],[16,-74]],[[5774,50540],[5,-4]],[[5779,50536],[46,-181]],[[5825,50355],[5,-3]],[[5830,50352],[0,-16]],[[5830,50336],[-5,-3]],[[5825,50333],[-65,-51]],[[5760,50282],[-11,-4]],[[5749,50278],[-28,-29]],[[5721,50249],[-11,-3]],[[5710,50246],[-38,-30]],[[5672,50216],[-12,-3]],[[5660,50213],[-36,-19]],[[5624,50194],[-6,0]],[[5618,50194],[0,-3]],[[5618,50191],[-3,0]],[[5615,50191],[0,-7]],[[5615,50184],[-6,-3]],[[5609,50181],[-2,-3]],[[5607,50178],[-5,-7]],[[5602,50171],[-11,-12]],[[5591,50159],[-1,-4]],[[5590,50155],[-36,-29]],[[5554,50126],[-6,-3]],[[5548,50123],[-3,-7]],[[5545,50116],[-4,-9]],[[5541,50107],[-14,-46]],[[5527,50061],[-9,-3]],[[5518,50058],[-75,-107]],[[5443,49951],[-6,-2]],[[5437,49949],[-25,-36]],[[5412,49913],[-5,-3]],[[5407,49910],[-1,-7]],[[5406,49903],[-10,-3]],[[5396,49900],[-31,-22]],[[5365,49878],[-5,-4]],[[5360,49874],[-62,-29]],[[5298,49845],[-3,-3]],[[5295,49842],[-30,-26],[-20,-75],[-66,-51]],[[5179,49690],[-7,-3]],[[5172,49687],[-27,-36]],[[5145,49651],[-14,-3]],[[5131,49648],[0,-3]],[[5131,49645],[-17,-4]],[[5114,49641],[-45,-22]],[[5069,49619],[-13,-3]],[[5056,49616],[-23,-14]],[[5033,49602],[-14,-3]],[[5019,49599],[0,-2]],[[5019,49597],[-14,-4]],[[5005,49593],[-27,-19]],[[4978,49574],[-11,-4]],[[4967,49570],[-64,-42]],[[4903,49528],[-5,-3]],[[4898,49525],[-65,-32]],[[4833,49493],[-9,-3]],[[4824,49490],[-41,-26]],[[4783,49464],[-14,-4]],[[4769,49460],[-8,-6]],[[4761,49454],[-5,-7]],[[4756,49447],[-4,-16]],[[4752,49431],[-5,-3]],[[4747,49428],[-61,-58]],[[4686,49370],[-9,-3]],[[4677,49367],[-77,-13],[-20,-87],[-89,-46]],[[4491,49221],[-6,4]],[[4485,49225],[-9,19]],[[4476,49244],[-5,3]],[[4471,49247],[-5,17]],[[4466,49264],[-17,3]],[[4449,49267],[-48,13],[-38,-20]],[[4363,49260],[-8,0]],[[4355,49260],[-31,-48]],[[4324,49212],[-9,-3]],[[4315,49209],[-38,-65],[-65,26],[-50,-13]],[[4162,49157],[-20,3]],[[4142,49160],[0,3]],[[4142,49163],[-10,3]],[[4132,49166],[-3,11]],[[4129,49177],[-5,5]],[[4124,49182],[-23,36]],[[4101,49218],[-5,10]],[[4096,49228],[-23,61],[51,62]],[[4124,49351],[10,9]],[[4134,49360],[0,7]],[[4134,49367],[5,6]],[[4139,49373],[29,52]],[[4168,49425],[5,3]],[[4173,49428],[34,71]],[[4207,49499],[5,7]],[[4212,49506],[3,19]],[[4215,49525],[0,6]],[[4215,49531],[23,66]],[[4238,49597],[5,5]],[[4243,49602],[86,120]],[[4329,49722],[9,3]],[[4338,49725],[21,43]],[[4359,49768],[9,9]],[[4368,49777],[1,7]],[[4369,49784],[7,3]],[[4376,49787],[4,6]],[[4380,49793],[5,3]],[[4385,49796],[23,49]],[[4408,49845],[7,3]],[[4415,49848],[1,7]],[[4416,49855],[8,3]],[[4424,49858],[16,45]],[[4440,49903],[4,13]],[[4444,49916],[18,126]],[[4462,50042],[4,7]],[[4466,50049],[5,12]],[[4471,50061],[5,4]],[[4476,50065],[6,12]],[[4482,50077],[8,4]],[[4490,50081],[1,7]],[[4491,50088],[8,3]],[[4499,50091],[25,48]],[[4524,50139],[3,3]],[[4527,50142],[25,85]],[[4552,50227],[5,3]],[[4557,50230],[14,35]],[[4571,50265],[1,0]],[[4572,50265],[10,26]],[[4582,50291],[4,3]],[[4586,50294],[10,48]],[[4596,50342],[4,4]],[[4600,50346],[35,80]],[[4635,50426],[3,11]],[[4638,50437],[0,16]],[[4638,50453],[0,6]],[[4638,50459],[28,38]],[[4666,50497],[5,4]],[[4671,50501],[71,71]],[[4742,50572],[14,7]],[[4756,50579],[21,103]],[[4777,50682],[6,3]],[[4783,50685],[3,6]],[[4786,50691],[3,4]],[[4789,50695],[0,3]],[[4789,50698],[10,0]],[[4799,50698],[23,32]],[[4822,50730],[9,4]],[[4831,50734],[38,90]],[[4869,50824],[3,10]],[[4872,50834],[22,42]],[[4894,50876],[-6,9]],[[4888,50885],[1,7]],[[4889,50892],[14,3]],[[4903,50895],[2,6]],[[4905,50901],[4,4]],[[4909,50905],[4,-4]],[[4913,50901],[4,4]],[[4917,50905],[13,80],[-13,43]],[[4917,51028],[-4,6]],[[4913,51034],[-5,13]],[[4908,51047],[-3,3]],[[4905,51050],[-2,6]],[[4903,51056],[-5,4]],[[4898,51060],[0,7]],[[4898,51067],[5,9]],[[4903,51076],[47,35]],[[4950,51111],[8,16]],[[4958,51127],[12,20]],[[4970,51147],[5,3]],[[4975,51150],[16,23],[-7,120]],[[4984,51293],[-4,6]],[[4980,51299],[-5,19]],[[4975,51318],[-5,14]],[[4970,51332],[0,16]],[[4970,51348],[0,9]],[[4970,51357],[0,46]],[[4970,51403],[5,3]],[[4975,51406],[0,16]],[[4975,51422],[-5,6]],[[4970,51428],[0,13]],[[4970,51441],[8,3]],[[4978,51444],[2,7]],[[4980,51451],[3,3]],[[4983,51454],[12,0]],[[4995,51454],[25,36],[-6,57]],[[5014,51547],[-5,11]],[[5009,51558],[-25,74]],[[4984,51632],[-4,3]],[[4980,51635],[-2,6]],[[4978,51641],[-3,0]],[[4975,51641],[0,4]],[[4975,51645],[-5,6]],[[4970,51651],[-15,19]],[[4955,51670],[-5,7]],[[4950,51677],[-33,36]],[[4917,51713],[-4,3]],[[4913,51716],[-5,9]],[[4908,51725],[-3,4]],[[4905,51729],[-2,3]],[[4903,51732],[-5,6]],[[4898,51738],[-4,10]],[[4894,51748],[-5,4]],[[4889,51752],[-17,19]],[[4872,51771],[-8,3]],[[4864,51774],[-95,100]],[[4769,51874],[-13,4]],[[4756,51878],[-34,54],[-72,39]],[[4650,51971],[-9,3]],[[4641,51974],[0,4]],[[4641,51978],[-11,3]],[[4630,51981],[-28,36]],[[4602,52017],[-6,2]],[[4596,52019],[-5,23]],[[4591,52042],[14,-3]],[[4605,52039],[61,29]],[[4666,52068],[11,3]],[[4677,52071],[14,62],[41,16],[4,67],[-48,110],[-45,13]],[[4643,52339],[-8,4]],[[4635,52343],[-134,-4]],[[4501,52339],[-16,-3]],[[4485,52336],[17,46]],[[4502,52382],[5,0]],[[4507,52382],[17,12]],[[4524,52394],[8,4]],[[4532,52398],[103,83]],[[4635,52481],[3,7]],[[4638,52488],[3,6]],[[4641,52494],[6,3]],[[4647,52497],[31,30]],[[4678,52527],[10,3]],[[4688,52530],[64,39],[25,42]],[[4777,52611],[6,3]],[[4783,52614],[31,42],[84,51],[135,14],[73,29]],[[5106,52750],[13,3]],[[5119,52753],[15,19]],[[5134,52772],[9,10]],[[5143,52782],[29,71],[43,52],[60,32]],[[5275,52937],[20,3]],[[5295,52940],[0,4]],[[5295,52944],[12,3]],[[5307,52947],[46,3]],[[5353,52950],[3,-10]],[[5356,52940],[-3,-51],[78,16]],[[5431,52905],[3,7]],[[5434,52912],[0,2]],[[5434,52914],[8,3]],[[5442,52917],[1,33],[70,97]],[[5513,53047],[11,3]],[[5524,53050],[75,55]],[[5599,53105],[10,3]],[[5609,53108],[43,23]],[[5652,53131],[17,3]],[[5669,53134],[16,75],[59,35]],[[5744,53244],[14,3]],[[5758,53247],[16,7]],[[5774,53254],[6,3]],[[5780,53257],[136,91],[23,25]],[[5939,53373],[7,3]],[[5946,53376],[1,49],[34,19],[96,4]],[[6077,53448],[9,12]],[[6086,53460],[5,10]],[[6091,53470],[4,10]],[[6095,53480],[8,23]],[[6103,53503],[35,3]],[[6138,53506],[34,25]],[[6172,53531],[9,7]],[[6181,53538],[21,42]],[[6202,53580],[10,3]],[[6212,53583],[0,13]],[[6212,53596],[25,23]],[[6237,53619],[10,-3]],[[6247,53616],[6,6]],[[6253,53622],[5,7]],[[6258,53629],[0,16]],[[6258,53645],[0,9]],[[6258,53654],[47,49]],[[6305,53703],[7,6]],[[6312,53709],[47,36]],[[6359,53745],[14,7]],[[6373,53752],[0,3]],[[6373,53755],[10,2]],[[6383,53757],[7,14]],[[6390,53771],[13,3]],[[6403,53774],[31,26],[81,16]],[[6515,53816],[10,3]],[[6525,53819],[4,7]],[[6529,53826],[58,-3]],[[6587,53823],[8,6]],[[6595,53829],[26,3]],[[6621,53832],[106,36]],[[6727,53868],[13,3]],[[6740,53871],[0,3]],[[6740,53874],[6,6]],[[6746,53880],[56,49]],[[6802,53929],[5,3]],[[6807,53932],[67,68],[59,22]],[[6933,54022],[8,4]],[[6941,54026],[3,7]],[[6944,54033],[10,3]],[[6954,54036],[48,25]],[[7002,54061],[8,4]],[[7010,54065],[0,3]],[[7010,54068],[12,16]],[[7022,54084],[106,94]],[[7128,54178],[11,3]],[[7139,54181],[35,29]],[[7174,54210],[1,10]],[[7175,54220],[39,39],[60,6]],[[7274,54265],[3,-3]],[[7277,54262],[40,9]],[[7317,54271],[10,4]],[[7327,54275],[7,6]],[[7334,54281],[5,3]],[[7339,54284],[20,30]],[[7359,54314],[21,3]],[[7380,54317],[12,13]],[[7392,54330],[5,6]],[[7397,54336],[19,33]],[[7416,54369],[15,2]],[[7431,54371],[66,39],[22,39]],[[7519,54449],[29,7]],[[7548,54456],[100,52]],[[7648,54508],[6,2]],[[7654,54510],[0,4]],[[7654,54514],[30,3]],[[7684,54517],[16,0]],[[7700,54517],[14,3]],[[7714,54520],[68,26]],[[7782,54546],[3,3]],[[7785,54549],[58,36]],[[7843,54585],[13,-4]],[[7856,54581],[48,11]],[[7904,54592],[13,-4]],[[7917,54588],[0,-3]],[[7917,54585],[14,-6]],[[7931,54579],[0,-4]],[[7931,54575],[7,-3]],[[7938,54572],[16,-10]],[[7954,54562],[47,0]],[[8001,54562],[26,10]],[[8027,54572],[24,-3]],[[8051,54569],[0,-4]],[[8051,54565],[22,-3]],[[8073,54562],[0,-3]],[[8073,54559],[12,-3]],[[8085,54556],[13,16]],[[8098,54572],[37,0]],[[8135,54572],[20,0]],[[8155,54572],[8,3]],[[8163,54575],[45,4]],[[8208,54579],[18,-4]],[[8226,54575],[26,-6]],[[8252,54569],[0,-4]],[[8252,54565],[92,20]],[[8344,54585],[20,-4]],[[8364,54581],[14,-16]],[[8378,54565],[11,4]],[[8389,54569],[24,35]],[[8413,54604],[14,7]],[[8427,54611],[67,32]],[[8494,54643],[5,4]],[[8499,54647],[4,16]],[[8503,54663],[5,6]],[[8508,54669],[17,94]],[[8525,54763],[5,6]],[[8530,54769],[25,110]],[[8555,54879],[4,6]],[[8559,54885],[2,13]],[[8561,54898],[8,3]],[[8569,54901],[0,7]],[[8569,54908],[5,6]],[[8574,54914],[10,20]],[[8584,54934],[5,6]],[[8589,54940],[34,36]],[[8623,54976],[7,3]],[[8630,54979],[4,6]],[[8634,54985],[10,4]],[[8644,54989],[0,3]],[[8644,54992],[28,3]],[[8672,54995],[25,10]],[[8697,55005],[4,3]],[[8701,55008],[5,10]],[[8706,55018],[3,3]],[[8709,55021],[7,55],[29,23]],[[8745,55099],[11,3]],[[8756,55102],[3,6]],[[8759,55108],[13,3]],[[8772,55111],[36,55]],[[8808,55166],[7,-3]],[[8815,55163],[0,-32]],[[8815,55131],[-4,-3]],[[8811,55128],[0,-4]],[[8811,55124],[4,-6]],[[8815,55118],[0,-3]],[[8815,55115],[-4,-4]],[[8811,55111],[-19,-28]],[[8792,55083],[-5,-7]],[[8787,55076],[24,-48]],[[8811,55028],[6,-4]],[[8817,55024],[19,-12]],[[8836,55012],[25,-4]],[[8861,55008],[57,-6]],[[8918,55002],[18,-3]],[[8936,54999],[67,16]],[[9003,55015],[18,6]],[[9021,55021],[47,39]],[[9068,55060],[14,3]],[[9082,55063],[27,20]],[[9109,55083],[23,6]],[[9132,55089],[27,13]],[[9159,55102],[14,3]],[[9173,55105],[8,10]],[[9181,55115],[12,3]],[[9193,55118],[27,20]],[[9220,55138],[9,3]],[[9229,55141],[0,3]],[[9229,55144],[5,6]],[[9234,55150],[25,23]],[[9259,55173],[4,6]],[[9263,55179],[2,10]],[[9265,55189],[6,6]],[[9271,55195],[25,30]],[[9296,55225],[8,3]],[[9304,55228],[22,19]],[[9326,55247],[7,3]],[[9333,55250],[13,16]],[[9346,55266],[8,4]],[[9354,55270],[42,55]],[[9396,55325],[11,3]],[[9407,55328],[0,4]],[[9407,55332],[8,2]],[[9415,55334],[40,46]],[[9455,55380],[14,3]],[[9469,55383],[2,6]],[[9471,55389],[6,4]],[[9477,55393],[5,6]],[[9482,55399],[15,4]],[[9497,55403],[25,29]],[[9522,55432],[5,3]],[[9527,55435],[9,22]],[[9536,55457],[7,3]],[[9543,55460],[0,7]],[[9543,55467],[4,9]],[[9547,55476],[3,14]],[[9550,55490],[2,13]],[[9552,55503],[-5,106]],[[9547,55609],[-4,6]],[[9543,55615],[-7,20]],[[9536,55635],[0,10]],[[9536,55645],[-9,61]],[[9527,55706],[-5,3]],[[9522,55709],[-26,168]],[[9496,55877],[-5,10]],[[9491,55887],[-16,52]],[[9475,55939],[-4,7]],[[9471,55946],[-5,16]],[[9466,55962],[-5,3]],[[9461,55965],[-17,38]],[[9444,56003],[-4,7]],[[9440,56010],[0,3]],[[9440,56013],[-8,3]],[[9432,56016],[0,29]],[[9432,56045],[8,7]],[[9440,56052],[0,3]],[[9440,56055],[-8,6]],[[9432,56061],[0,13]],[[9432,56074],[-2,4]],[[9430,56078],[-6,26]],[[9424,56104],[-19,2]],[[9405,56106],[0,4]],[[9405,56110],[0,3]],[[9405,56113],[0,10]],[[9405,56123],[-4,3]],[[9401,56126],[-11,65]],[[9390,56191],[-16,-3]],[[9374,56188],[-37,9]],[[9337,56197],[-13,3]],[[9324,56200],[0,-3]],[[9324,56197],[-5,3]],[[9319,56200],[-15,33]],[[9304,56233],[-8,3]],[[9296,56236],[-20,39]],[[9276,56275],[-27,3]],[[9249,56278],[-25,16]],[[9224,56294],[-4,3]],[[9220,56297],[-30,7]],[[9190,56304],[-6,-4]],[[9184,56300],[-7,7]],[[9177,56307],[-145,131],[-89,151]],[[8943,56589],[-37,117]],[[8906,56706],[5,159]],[[8911,56865],[18,59],[64,129]],[[8993,57053],[113,291]],[[9106,57344],[162,-29],[161,-9],[160,1]],[[9589,57307],[124,21]],[[9713,57328],[57,26],[117,102],[153,162],[91,73],[103,52],[139,88],[104,49],[142,84]],[[10619,57964],[144,29]],[[10763,57993],[89,-1],[86,-17],[95,-64],[61,-99],[109,-306]],[[11203,57506],[9,-141]],[[66107,59860],[17,-130]],[[66124,59730],[39,-89]],[[66163,59641],[55,-77],[128,-142],[68,-64]],[[66414,59358],[47,-38]],[[66461,59320],[130,-65]],[[66591,59255],[140,-87]],[[66731,59168],[105,-47],[140,-87]],[[66976,59034],[178,-72],[89,-28]],[[67243,58934],[153,-121],[72,-44]],[[67468,58769],[54,-19]],[[67522,58750],[166,-45],[173,-81],[200,-38],[79,-24]],[[68140,58562],[75,-217]],[[68215,58345],[70,-160],[21,-100]],[[68306,58085],[7,-106],[-3,-142]],[[68310,57837],[-28,-170]],[[68282,57667],[-67,-160],[-16,-69]],[[68199,57438],[-15,-222],[1,-416]],[[68185,56800],[8,-111],[21,-105],[53,-134],[31,-129]],[[68298,56321],[18,-176],[30,-129],[63,-169],[39,-313],[18,-61]],[[68466,55473],[56,-133],[29,-123],[26,-123]],[[68577,55094],[67,-161],[45,-215],[77,-191]],[[68766,54527],[26,-123]],[[68792,54404],[124,0],[26,-123]],[[68942,54281],[58,-133]],[[69000,54148],[20,-57],[30,-155]],[[69050,53936],[16,-60]],[[69066,53876],[79,-190],[13,-96]],[[69158,53590],[1,-132],[-14,-96]],[[69145,53362],[-84,-188]],[[69061,53174],[-45,-115],[-80,-156],[-42,-115]],[[68894,52788],[-66,-130],[-59,-137],[-89,-109]],[[68680,52412],[-125,-66]],[[68555,52346],[-115,-72],[-103,-49]],[[68337,52225],[-100,-69]],[[68237,52156],[-117,-107]],[[68120,52049],[-49,-38],[-152,-81],[-116,-74],[-150,-82]],[[67653,51774],[-87,-76]],[[67566,51698],[-259,-1],[-128,10]],[[67179,51707],[-91,23],[-145,70]],[[66943,51800],[-153,28],[-190,14],[-151,38]],[[66449,51880],[-116,58],[-62,17]],[[66271,51955],[-100,13],[-203,8],[-197,-25]],[[65771,51951],[-128,-49]],[[65643,51902],[-89,23],[-124,48]],[[65430,51973],[-122,73],[-128,118]],[[65180,52164],[-67,51],[-103,52],[-141,87],[-104,48],[-139,89],[-105,48],[-117,69],[-81,28],[-204,21],[-85,20],[-143,81]],[[63891,52758],[-128,61],[-173,119],[-72,28],[-114,68],[-103,48],[-117,69]],[[63184,53151],[-141,38]],[[63043,53189],[-294,22],[-116,-99]],[[62633,53112],[-45,-73]],[[62588,53039],[-67,-269],[-103,-193]],[[62418,52577],[-69,-48]],[[62349,52529],[-56,-14],[-220,-16],[-84,-15]],[[61989,52484],[-183,66],[-117,72]],[[61689,52622],[-101,51],[-44,34],[-69,91],[-106,243]],[[61369,53041],[-19,59],[-40,217]],[[61310,53317],[-22,54]],[[61288,53371],[-95,220]],[[61193,53591],[-31,55]],[[61162,53646],[-57,76],[-128,142]],[[60977,53864],[-140,117],[-78,36]],[[60759,54017],[-94,65]],[[60665,54082],[-98,106],[-59,99],[-16,51]],[[60492,54338],[-172,126]],[[60320,54464],[-124,128]],[[60196,54592],[-344,382],[-157,164],[-96,188]],[[59599,55326],[-62,74]],[[59537,55400],[-67,114],[-36,41]],[[59434,55555],[-87,69]],[[59347,55624],[-219,117],[-179,55],[-91,70]],[[58858,55866],[-20,11]],[[58838,55877],[-167,66]],[[58671,55943],[-86,72]],[[58585,56015],[-170,54],[-142,82],[-105,49],[-142,81]],[[58026,56281],[-176,58]],[[57850,56339],[-111,81],[-151,47]],[[57588,56467],[-50,22]],[[57538,56489],[-222,119]],[[57316,56608],[-140,88],[-222,118],[-154,39],[-100,4]],[[56700,56857],[-1052,-1]],[[55648,56856],[127,203]],[[55775,57059],[37,80],[20,102],[24,350]],[[55856,57591],[25,91]],[[55881,57682],[57,132],[24,127]],[[55962,57941],[1,131],[-23,127],[-41,79]],[[55899,58278],[-106,148]],[[55793,58426],[428,477]],[[56221,58903],[173,176]],[[56394,59079],[95,66]],[[56489,59145],[77,38],[93,72],[108,111],[293,328],[66,63]],[[57126,59757],[73,49]],[[57199,59806],[167,44]],[[57366,59850],[55,16],[119,64],[81,26]],[[57621,59956],[89,11],[273,3],[176,19],[151,47],[141,31]],[[58451,60067],[193,65]],[[58644,60132],[121,63],[117,34],[159,19]],[[59041,60248],[62,13]],[[59103,60261],[152,69]],[[59255,60330],[54,20],[283,46]],[[59592,60396],[151,67]],[[59743,60463],[108,25]],[[59851,60488],[84,-1],[167,301],[44,115]],[[60146,60903],[79,156],[41,117],[70,153]],[[60336,61329],[487,-10],[148,-28]],[[60971,61291],[142,-81]],[[61113,61210],[105,-48],[139,-89],[103,-52],[73,-55]],[[61533,60966],[115,-107],[100,-70]],[[61748,60789],[102,-50],[117,-73],[103,-50]],[[62070,60616],[140,-118]],[[62210,60498],[164,-195]],[[62374,60303],[33,-54]],[[62407,60249],[61,-138],[87,-109],[239,-139]],[[62794,59863],[112,-32],[242,-4]],[[63148,59827],[215,30]],[[63363,59857],[-1,47]],[[63362,59904],[37,48],[110,51]],[[63509,60003],[90,72]],[[63599,60075],[151,63],[99,68]],[[63849,60206],[62,16]],[[63911,60222],[67,8],[178,2]],[[64156,60232],[58,114],[148,107]],[[64362,60453],[150,77]],[[64512,60530],[145,79],[55,18]],[[64712,60627],[140,32],[173,83],[111,31]],[[65136,60773],[136,40],[119,70],[104,47],[139,88]],[[65634,61018],[103,51]],[[65737,61069],[83,58],[109,46]],[[65929,61173],[98,62]],[[66027,61235],[88,78],[109,35],[114,63]],[[66338,61411],[53,16],[84,-6]],[[66475,61421],[80,-46]],[[66555,61375],[106,-118],[53,-120]],[[66714,61137],[8,-163]],[[66722,60974],[-33,-154]],[[66689,60820],[-127,-102]],[[66562,60718],[-132,-133],[-192,-210],[-58,-73]],[[66180,60302],[-31,-54]],[[66149,60248],[-31,-91]],[[66118,60157],[-13,-131]],[[66105,60026],[2,-166]],[[74726,62573],[43,10]],[[74769,62583],[81,115]],[[74850,62698],[107,137]],[[74957,62835],[73,132],[54,169]],[[75084,63136],[25,110]],[[75109,63246],[206,-218]],[[75315,63028],[72,-109]],[[75387,62919],[117,-273]],[[75504,62646],[16,-61]],[[75520,62585],[50,-212]],[[75570,62373],[54,-133]],[[75624,62240],[25,-204]],[[75649,62036],[4,-317],[12,-102]],[[75665,61617],[17,-62]],[[75682,61555],[105,-243]],[[75787,61312],[32,-48]],[[75819,61264],[61,-58],[53,-26],[86,-17]],[[76019,61163],[117,2],[114,27]],[[76250,61192],[172,87]],[[76422,61279],[232,43],[92,27]],[[76746,61349],[5,-455],[-5,-114],[-15,-109],[-22,-68]],[[76709,60603],[-178,-397]],[[76531,60206],[-17,-60]],[[76514,60146],[-33,-154],[-73,-191]],[[76408,59801],[-25,-145]],[[76383,59656],[-5,-113],[0,-732]],[[76378,58811],[-15,-226],[-82,-36]],[[76281,58549],[-89,-74]],[[76192,58475],[46,-123],[43,-152]],[[76281,58200],[71,-160]],[[76352,58040],[54,-246],[66,-160]],[[76472,57634],[47,-216],[76,-190]],[[76595,57228],[27,-107],[17,-110],[17,-58],[101,-199],[18,-21]],[[76775,56733],[40,-34],[178,-118]],[[76993,56581],[103,-48],[119,-68],[85,-28],[92,-11],[128,-2]],[[77520,56424],[274,22]],[[77794,56446],[287,-34]],[[78081,56412],[126,-96]],[[78207,56316],[258,-131]],[[78465,56185],[92,-22],[190,-24]],[[78747,56139],[61,-16],[246,-128],[144,-83]],[[79198,55912],[272,-92]],[[79470,55820],[28,-57],[90,-74]],[[79588,55689],[34,-40]],[[79622,55649],[32,-47],[95,-212]],[[79749,55390],[23,-86]],[[79772,55304],[-6,-91],[-61,-156],[-22,-100]],[[79683,54957],[-11,-180],[5,-264],[-5,-220]],[[79672,54293],[-15,-130]],[[79657,54163],[-19,-59],[-62,-129]],[[79576,53975],[-47,-114]],[[79529,53861],[-52,-82],[-132,-182]],[[79345,53597],[-80,-169],[-34,-54]],[[79231,53374],[-114,-157]],[[79117,53217],[-80,-166],[-89,-107]],[[78948,52944],[-162,-112]],[[78786,52832],[27,-242]],[[78813,52590],[4,-153],[-4,-152]],[[78813,52285],[-19,-146],[-74,-196]],[[78720,51943],[-21,-106],[-10,-188]],[[78689,51649],[5,-323]],[[78694,51326],[-229,-137]],[[78465,51189],[-61,-25]],[[78404,51164],[-66,-14],[-170,-9],[-815,3]],[[77353,51144],[-10,-282],[1,-142]],[[77344,50720],[5,-106],[25,-133],[65,-161],[22,-105]],[[77461,50215],[14,-258]],[[77475,49957],[-12,-175],[-21,-63]],[[77442,49719],[-53,-64]],[[77389,49655],[-151,-102],[-150,-77]],[[77088,49476],[-112,-91],[-109,-94]],[[76867,49291],[-149,-82]],[[76718,49209],[-45,-35],[-125,-114],[-45,-31],[-52,-19],[-54,-2]],[[76397,49008],[-52,13]],[[76345,49021],[-142,68],[-139,38]],[[76064,49127],[-54,20],[-119,64],[-84,28],[-123,14],[-159,4]],[[75525,49257],[-191,-2],[-123,-13],[-59,-16]],[[75152,49226],[-144,-80]],[[75008,49146],[-76,-38]],[[74932,49108],[-54,-32],[-98,-90]],[[74780,48986],[-206,-232],[-72,-73]],[[74502,48681],[-76,-61]],[[74426,48620],[-59,-27],[-94,-18]],[[74273,48575],[-95,-4],[-735,5]],[[73443,48576],[-1536,2],[-312,-9]],[[71595,48569],[-161,11],[-274,3]],[[71160,48583],[-100,-14],[-61,-23]],[[70999,48546],[-97,-90],[-42,-71]],[[70860,48385],[-72,-76],[-79,-101],[-177,-117]],[[70532,48091],[-74,-36],[-194,-52]],[[70264,48003],[-147,-71],[-95,-22],[-101,-8]],[[69921,47902],[-618,4],[-202,-15]],[[69101,47891],[-62,-17],[-122,-59],[-117,-33],[-157,-19]],[[68643,47763],[-92,-25],[-74,-42],[-187,-138]],[[68290,47558],[0,278],[5,66]],[[68295,47902],[23,127]],[[68318,48029],[67,113],[128,149],[183,188]],[[68696,48479],[73,60],[128,70]],[[68897,48609],[117,96],[156,158]],[[69170,48863],[70,60],[122,65]],[[69362,48988],[44,27],[48,58]],[[69454,49073],[13,84]],[[69467,49157],[-10,28]],[[69457,49185],[-114,133]],[[69343,49318],[-50,37],[-149,81],[-41,37]],[[69103,49473],[-64,96]],[[69039,49569],[-45,110]],[[68994,49679],[-66,130],[-33,86]],[[68895,49895],[-62,110],[-95,129]],[[68738,50134],[-33,55],[-37,156]],[[68668,50345],[-14,162]],[[68654,50507],[-29,121]],[[68625,50628],[-62,164],[-12,96]],[[68551,50888],[-8,257],[-21,86],[-73,76]],[[68449,51307],[-157,96]],[[68292,51403],[-57,16],[-176,22],[-81,20],[-176,72]],[[67802,51533],[-105,30]],[[67697,51563],[-48,18],[-55,49],[-28,68]],[[68140,58562],[255,60]],[[68395,58622],[173,84],[167,44]],[[68735,58750],[54,17],[142,81],[105,49]],[[69036,58897],[142,80],[167,43]],[[69345,59020],[54,19]],[[69399,59039],[192,128],[328,143],[152,102]],[[70071,59412],[53,64]],[[70124,59476],[26,123]],[[70150,59599],[2,172]],[[70152,59771],[-8,106]],[[70144,59877],[-25,143],[-276,258]],[[69843,60278],[-47,39]],[[69796,60317],[-108,78]],[[69688,60395],[-107,189],[-21,54],[2,123]],[[69562,60761],[70,155]],[[69632,60916],[45,114],[81,154]],[[69758,61184],[58,142],[67,129]],[[69883,61455],[44,115]],[[69927,61570],[78,155],[44,116]],[[70049,61841],[76,156],[47,150],[44,96]],[[70216,62243],[87,70],[81,119]],[[70384,62432],[50,109],[136,193]],[[70570,62734],[31,49],[94,193]],[[70695,62976],[56,76],[125,145]],[[70876,63197],[107,154]],[[70983,63351],[77,168],[75,102],[173,185]],[[71308,63806],[75,51]],[[71383,63857],[117,22],[87,-5],[133,-44]],[[71720,63830],[91,-141]],[[71811,63689],[88,-71],[194,-106],[81,-26],[205,-25],[109,-32],[120,-60],[114,-24]],[[72722,63345],[118,-8],[88,-75]],[[72928,63262],[104,-51]],[[73032,63211],[164,-41]],[[73196,63170],[172,-83]],[[73368,63087],[195,-51],[142,-81],[105,-49],[142,-82],[221,-61]],[[74173,62763],[172,-84],[170,-37],[211,-69]],[[78268,9580],[9,-10]],[[78277,9570],[8,-3]],[[78285,9567],[2,-10]],[[78287,9557],[-2,-12]],[[78285,9545],[0,6]],[[78285,9551],[-8,6]],[[78277,9557],[-4,10]],[[78273,9567],[-7,3]],[[78266,9570],[0,4]],[[78266,9574],[-9,6]],[[78257,9580],[-5,10]],[[78252,9590],[16,-10]],[[78198,9638],[9,-13]],[[78207,9625],[8,-3]],[[78215,9622],[0,-3]],[[78215,9619],[-8,-13]],[[78207,9606],[-11,23]],[[78196,9629],[2,9]],[[77681,9703],[6,-7]],[[77687,9696],[0,-9]],[[77687,9687],[-6,6]],[[77681,9693],[-17,-3]],[[77664,9690],[0,10]],[[77664,9700],[17,3]],[[77714,9758],[0,-3]],[[77714,9755],[0,-14]],[[77714,9741],[0,-6]],[[77714,9735],[-5,-3]],[[77709,9732],[-12,16]],[[77697,9748],[0,10]],[[77697,9758],[0,3]],[[77697,9761],[17,-3]],[[77731,9810],[-25,2]],[[77706,9812],[25,-2]],[[77698,10029],[5,-7]],[[77703,10022],[14,-2]],[[77717,10020],[0,-10]],[[77717,10010],[-8,3]],[[77709,10013],[0,3]],[[77709,10016],[-12,4]],[[77697,10020],[0,2]],[[77697,10022],[-11,4]],[[77686,10026],[0,7]],[[77686,10033],[12,-4]],[[80790,10278],[0,39]],[[80790,10317],[0,-39]],[[80935,10339],[9,-13]],[[80944,10326],[-20,0]],[[80924,10326],[-42,-28]],[[80882,10298],[9,6]],[[80891,10304],[3,6]],[[80894,10310],[8,4]],[[80902,10314],[0,3]],[[80902,10317],[33,22]],[[81545,10469],[0,-4]],[[81545,10465],[11,-3]],[[81556,10462],[0,-6]],[[81556,10456],[-13,-10]],[[81543,10446],[-4,0]],[[81539,10446],[-24,-20]],[[81515,10426],[-1,7]],[[81514,10433],[-8,3]],[[81506,10436],[-2,7]],[[81504,10443],[7,6]],[[81511,10449],[4,0]],[[81515,10449],[10,7]],[[81525,10456],[0,3]],[[81525,10459],[20,10]],[[81667,10595],[18,-23]],[[81685,10572],[-9,-9]],[[81676,10563],[-1,-7]],[[81675,10556],[-8,39]],[[86812,24470],[-75,-191],[-42,-209]],[[86695,24070],[15,-192]],[[86710,23878],[8,-356],[8,-69]],[[86726,23453],[14,-67]],[[86740,23386],[131,-299],[155,-236]],[[87026,22851],[34,-71],[20,-119]],[[87080,22661],[0,-64]],[[87080,22597],[-22,-159]],[[87058,22438],[-23,-55]],[[87035,22383],[-52,-103],[-45,-115]],[[86938,22165],[-67,-128]],[[86871,22037],[-58,-141],[-79,-155]],[[86734,21741],[-125,-304]],[[86609,21437],[-19,-93]],[[86590,21344],[-616,3],[-102,-5]],[[85872,21342],[-96,-16],[-178,-79]],[[85598,21247],[-217,-69]],[[85381,21178],[-80,-61]],[[85301,21117],[-98,-118]],[[85203,20999],[-192,-87]],[[85011,20912],[-119,-95],[-153,-159]],[[84739,20658],[-68,-62],[-152,-86]],[[84519,20510],[-120,-101]],[[84399,20409],[-81,-100]],[[84318,20309],[-33,-55],[-45,-115]],[[84240,20139],[-76,-155],[-44,-117]],[[84120,19867],[-78,-155],[-44,-116]],[[83998,19596],[-78,-155],[-45,-115]],[[83875,19326],[-78,-155],[-44,-116]],[[83753,19055],[-78,-155],[-47,-114]],[[83628,18786],[-32,-56]],[[83596,18730],[-114,-155],[-52,-82]],[[83430,18493],[-47,-114],[-79,-155]],[[83304,18224],[-44,-114],[-51,-104]],[[83209,18006],[-22,-54]],[[83187,17952],[-21,-98],[-7,-137],[3,-596]],[[83162,17121],[8,-240]],[[83170,16881],[-10,-203],[6,-99]],[[83166,16579],[11,-64],[33,-86],[139,-238]],[[83349,16191],[-156,-244],[-58,-141],[-83,-155]],[[83052,15651],[-45,-114],[-75,-150]],[[82932,15387],[-7,-91]],[[82925,15296],[48,-98]],[[82973,15198],[20,-16]],[[82993,15182],[49,-17]],[[83042,15165],[68,19]],[[83110,15184],[163,87]],[[83273,15271],[138,91],[105,49],[140,89]],[[83656,15500],[77,37]],[[83733,15537],[94,65]],[[83827,15602],[129,115],[97,57],[84,21],[109,-90],[99,-55]],[[84345,15650],[106,-91],[45,-74]],[[84496,15485],[97,-213],[18,-62]],[[84611,15210],[18,-175]],[[84629,15035],[-10,-212]],[[84619,14823],[-22,-100]],[[84597,14723],[-56,-133],[-36,-164]],[[84505,14426],[-17,-250],[-20,-110]],[[84468,14066],[-59,-56],[-57,-79]],[[84352,13931],[-68,-62],[-60,-72]],[[84224,13797],[-131,-93],[-70,-64]],[[84023,13640],[-69,-71]],[[83954,13569],[-198,-223],[-59,-78]],[[83697,13268],[-80,-171],[-79,-153]],[[83538,12944],[-45,-114],[-61,-126]],[[83432,12704],[-14,-57]],[[83418,12647],[7,-93]],[[83425,12554],[43,-76]],[[83468,12478],[123,-106]],[[83591,12372],[-6,0]],[[83585,12372],[-8,-3]],[[83577,12369],[-17,-10]],[[83560,12359],[-7,-4]],[[83553,12355],[-15,-6]],[[83538,12349],[-25,-7]],[[83513,12342],[-5,-9]],[[83508,12333],[-8,0]],[[83500,12333],[0,-3]],[[83500,12330],[-6,-4]],[[83494,12326],[-14,-28]],[[83480,12298],[-20,-20]],[[83460,12278],[0,-19]],[[83460,12259],[-5,-27]],[[83455,12232],[-26,-25]],[[83429,12207],[-21,-32]],[[83408,12175],[-4,-23]],[[83404,12152],[-7,-29]],[[83397,12123],[0,-6]],[[83397,12117],[-7,-7]],[[83390,12110],[-13,-17]],[[83377,12093],[-19,-25]],[[83358,12068],[-6,-19]],[[83352,12049],[-14,-13]],[[83338,12036],[-1,-7]],[[83337,12029],[-5,-3]],[[83332,12026],[-8,-13]],[[83324,12013],[-3,-3]],[[83321,12010],[-3,-7]],[[83318,12003],[-10,-9]],[[83308,11994],[0,-26]],[[83308,11968],[10,-7]],[[83318,11961],[0,-16]],[[83318,11945],[-10,-10]],[[83308,11935],[-9,-35]],[[83299,11900],[-94,-22]],[[83205,11878],[-9,-17]],[[83196,11861],[-31,-55]],[[83165,11806],[0,-3]],[[83165,11803],[-8,-3]],[[83157,11800],[-11,-13]],[[83146,11787],[-23,-10]],[[83123,11777],[-3,-19]],[[83120,11758],[-18,-13]],[[83102,11745],[-7,-13]],[[83095,11732],[-10,-7]],[[83085,11725],[-1,-3]],[[83084,11722],[-10,-13]],[[83074,11709],[-3,-3]],[[83071,11706],[-4,-10]],[[83067,11696],[0,-28]],[[83067,11668],[0,-7]],[[83067,11661],[-27,-10]],[[83040,11651],[-8,-6]],[[83032,11645],[-8,-7]],[[83024,11638],[-9,-6]],[[83015,11632],[-23,-13]],[[82992,11619],[-11,0]],[[82981,11619],[-14,-6]],[[82967,11613],[0,-4]],[[82967,11609],[-11,-3]],[[82956,11606],[-5,-7]],[[82951,11599],[-11,-2]],[[82940,11597],[-1,-7]],[[82939,11590],[-8,-4]],[[82931,11586],[-2,-6]],[[82929,11580],[-4,-3]],[[82925,11577],[-15,-13]],[[82910,11564],[-20,-42]],[[82890,11522],[-4,-52]],[[82886,11470],[-7,-10]],[[82879,11460],[0,-2]],[[82879,11458],[-6,-4]],[[82873,11454],[-16,-48]],[[82857,11406],[-9,-10]],[[82848,11396],[-9,-9]],[[82839,11387],[-11,-7]],[[82828,11380],[-19,-4]],[[82809,11376],[0,-3]],[[82809,11373],[-25,-13]],[[82784,11360],[0,-3]],[[82784,11357],[-19,-26]],[[82765,11331],[-7,-16]],[[82758,11315],[-8,-3]],[[82750,11312],[0,-3]],[[82750,11309],[-17,-7]],[[82733,11302],[-4,-6]],[[82729,11296],[-42,-16]],[[82687,11280],[0,3]],[[82687,11283],[-23,-13]],[[82664,11270],[0,-13]],[[82664,11257],[0,-4]],[[82664,11253],[0,-3]],[[82664,11250],[-9,-3]],[[82655,11247],[0,-3]],[[82655,11244],[-18,-3]],[[82637,11241],[-6,-4]],[[82631,11237],[-14,-3]],[[82617,11234],[-11,-6]],[[82606,11228],[-4,-7]],[[82602,11221],[-8,-3]],[[82594,11218],[-27,-13]],[[82567,11205],[-19,-3]],[[82548,11202],[-26,-9]],[[82522,11193],[-20,-20]],[[82502,11173],[-5,-10]],[[82497,11163],[-16,-13]],[[82481,11150],[-11,-12]],[[82470,11138],[-7,-4]],[[82463,11134],[0,-7]],[[82463,11127],[-16,-12]],[[82447,11115],[-2,-7]],[[82445,11108],[-3,-6]],[[82442,11102],[3,-29]],[[82445,11073],[7,-13]],[[82452,11060],[-22,-17]],[[82430,11043],[-38,11]],[[82392,11054],[-20,9]],[[82372,11063],[-11,3]],[[82361,11066],[-51,0]],[[82310,11066],[0,4]],[[82310,11070],[-61,9]],[[82249,11079],[0,3]],[[82249,11082],[-38,7]],[[82211,11089],[-12,6]],[[82199,11095],[-36,4]],[[82163,11099],[0,-4]],[[82163,11095],[-17,-3]],[[82146,11092],[0,-3]],[[82146,11089],[-13,-3]],[[82133,11086],[0,3]],[[82133,11089],[-23,3]],[[82110,11092],[0,-3]],[[82110,11089],[-36,-3]],[[82074,11086],[-14,-7]],[[82060,11079],[-27,-3]],[[82033,11076],[0,-3]],[[82033,11073],[-24,-3]],[[82009,11070],[-5,-7]],[[82004,11063],[-20,-9]],[[81984,11054],[0,-4]],[[81984,11050],[-18,4]],[[81966,11054],[-4,-7]],[[81962,11047],[-33,-13]],[[81929,11034],[0,-3]],[[81929,11031],[-47,-16]],[[81882,11015],[-3,3]],[[81879,11018],[-47,-10]],[[81832,11008],[-5,-6]],[[81827,11002],[-17,-10]],[[81810,10992],[0,-4]],[[81810,10988],[-9,-2]],[[81801,10986],[-9,-10]],[[81792,10976],[-10,-4]],[[81782,10972],[-4,-6]],[[81778,10966],[-27,6]],[[81751,10972],[-31,14]],[[81720,10986],[0,16]],[[81720,11002],[0,16]],[[81720,11018],[-20,25]],[[81700,11043],[-24,14]],[[81676,11057],[-30,9]],[[81646,11066],[-1,0]],[[81645,11066],[-9,-3]],[[81636,11063],[-21,7]],[[81615,11070],[-20,-4]],[[81595,11066],[-36,-3]],[[81559,11063],[-12,-3]],[[81547,11060],[-2,-3]],[[81545,11057],[-6,-14]],[[81539,11043],[-20,14]],[[81519,11057],[-33,3]],[[81486,11060],[-21,6]],[[81465,11066],[0,-3]],[[81465,11063],[-10,3]],[[81455,11066],[-19,-6]],[[81436,11060],[-27,-3]],[[81409,11057],[-26,-23]],[[81383,11034],[-21,-16]],[[81362,11018],[-4,-10]],[[81358,11008],[-19,-16]],[[81339,10992],[0,3]],[[81339,10995],[-47,-16]],[[81292,10979],[-18,-16]],[[81274,10963],[-33,-3]],[[81241,10960],[-2,-4]],[[81239,10956],[-6,0]],[[81233,10956],[0,-2]],[[81233,10954],[-2,-1]],[[81231,10953],[-3,-6]],[[81228,10947],[-6,-3]],[[81222,10944],[-3,-7]],[[81219,10937],[-8,-20]],[[81211,10917],[0,-9]],[[81211,10908],[0,-23]],[[81211,10885],[-5,-16]],[[81206,10869],[-28,-9]],[[81178,10860],[0,-4]],[[81178,10856],[-9,-6]],[[81169,10850],[-2,-16]],[[81167,10834],[-6,-10]],[[81161,10824],[-3,-7]],[[81158,10817],[-51,7]],[[81107,10824],[0,-13]],[[81107,10811],[-32,-55]],[[81075,10756],[-3,-6]],[[81072,10750],[-15,-13]],[[81057,10737],[-11,-26]],[[81046,10711],[-8,-13]],[[81038,10698],[-13,-48]],[[81025,10650],[-4,-26]],[[81021,10624],[-14,-33]],[[81007,10591],[-14,-51]],[[80993,10540],[-4,-4]],[[80989,10536],[-3,-16]],[[80986,10520],[-11,-16]],[[80975,10504],[-6,-23]],[[80969,10481],[-14,-12]],[[80955,10469],[-3,-10]],[[80952,10459],[-5,-6]],[[80947,10453],[0,-7]],[[80947,10446],[-11,7]],[[80936,10453],[0,3]],[[80936,10456],[5,6]],[[80941,10462],[6,7]],[[80947,10469],[0,16]],[[80947,10485],[0,9]],[[80947,10494],[5,3]],[[80952,10497],[0,7]],[[80952,10504],[0,4]],[[80952,10508],[3,35]],[[80955,10543],[14,32]],[[80969,10575],[0,13]],[[80969,10588],[-23,-3]],[[80946,10585],[1,32]],[[80947,10617],[5,3]],[[80952,10620],[0,7]],[[80952,10627],[17,13]],[[80969,10640],[6,10]],[[80975,10650],[0,3]],[[80975,10653],[0,3]],[[80975,10656],[-20,-13]],[[80955,10643],[-19,-19]],[[80936,10624],[-1,-4]],[[80935,10620],[0,-3]],[[80935,10617],[-9,-22]],[[80926,10595],[-7,-4]],[[80919,10591],[-17,4]],[[80902,10595],[0,3]],[[80902,10598],[-6,-10]],[[80896,10588],[-5,-13]],[[80891,10575],[-5,-10]],[[80886,10565],[-1,-6]],[[80885,10559],[-3,0]],[[80882,10559],[0,-7]],[[80882,10552],[-6,-12]],[[80876,10540],[0,-20]],[[80876,10520],[-32,-23]],[[80844,10497],[-4,-35]],[[80840,10462],[0,-29]],[[80840,10433],[4,-32]],[[80844,10401],[21,-16]],[[80865,10385],[11,-23]],[[80876,10362],[6,-4]],[[80882,10358],[3,-5]],[[80885,10353],[6,-4]],[[80891,10349],[0,-3]],[[80891,10346],[13,-13]],[[80904,10333],[-10,3]],[[80894,10336],[-12,3]],[[80882,10339],[-8,7]],[[80874,10346],[-9,-23]],[[80865,10323],[1,-22]],[[80866,10301],[-1,-14]],[[80865,10287],[4,-9]],[[80869,10278],[-20,20],[8,67]],[[80857,10365],[-13,4]],[[80844,10369],[0,3]],[[80844,10372],[-29,3]],[[80815,10375],[0,3]],[[80815,10378],[-35,19]],[[80780,10397],[-12,0]],[[80768,10397],[-28,7]],[[80740,10404],[-5,6]],[[80735,10410],[-15,7]],[[80720,10417],[-11,-7]],[[80709,10410],[-21,-9]],[[80688,10401],[0,-4]],[[80688,10397],[-18,20]],[[80670,10417],[0,3]],[[80670,10420],[-18,6]],[[80652,10426],[0,4]],[[80652,10430],[-12,3]],[[80640,10433],[0,3]],[[80640,10436],[-48,7]],[[80592,10443],[-10,-10]],[[80582,10433],[-23,-52]],[[80559,10381],[-31,-35]],[[80528,10346],[-21,-32]],[[80507,10314],[-4,-16]],[[80503,10298],[0,-23]],[[80503,10275],[4,-10]],[[80507,10265],[25,-3]],[[80532,10262],[10,41]],[[80542,10303],[6,4]],[[80548,10307],[0,3]],[[80548,10310],[36,20]],[[80584,10330],[8,9]],[[80592,10339],[6,3]],[[80598,10342],[6,7]],[[80604,10349],[5,4]],[[80609,10353],[0,2]],[[80609,10355],[28,-68]],[[80637,10287],[0,-3]],[[80637,10284],[15,-9]],[[80652,10275],[-3,-16]],[[80649,10259],[-31,-17]],[[80618,10242],[0,-3]],[[80618,10239],[-6,-9]],[[80612,10230],[-3,-49]],[[80609,10181],[23,6]],[[80632,10187],[8,10]],[[80640,10197],[9,0]],[[80649,10197],[0,-16]],[[80649,10181],[0,-6]],[[80649,10175],[3,-7]],[[80652,10168],[5,-3]],[[80657,10165],[13,-65]],[[80670,10100],[14,-16]],[[80684,10084],[1,-7]],[[80685,10077],[25,16]],[[80710,10093],[13,14]],[[80723,10107],[6,6]],[[80729,10113],[6,7]],[[80735,10120],[5,-7]],[[80740,10113],[-11,-22]],[[80729,10091],[-6,-7]],[[80723,10084],[0,-35]],[[80723,10049],[37,-7]],[[80760,10042],[14,23]],[[80774,10065],[14,3]],[[80788,10068],[0,4]],[[80788,10072],[25,41]],[[80813,10113],[20,10]],[[80833,10123],[8,3]],[[80841,10126],[0,3]],[[80841,10129],[41,58]],[[80882,10187],[3,-6]],[[80885,10181],[6,10]],[[80891,10191],[0,3]],[[80891,10194],[-6,58]],[[80885,10252],[0,16]],[[80885,10268],[11,3]],[[80896,10271],[0,4]],[[80896,10275],[6,3]],[[80902,10278],[22,6]],[[80924,10284],[11,17]],[[80935,10301],[1,13]],[[80936,10314],[11,3]],[[80947,10317],[0,3]],[[80947,10320],[0,6]],[[80947,10326],[-11,23]],[[80936,10349],[-10,9]],[[80926,10358],[0,66]],[[80926,10424],[9,6]],[[80935,10430],[0,3]],[[80935,10433],[34,3]],[[80969,10436],[6,20]],[[80975,10456],[25,13]],[[81000,10469],[7,-36]],[[81007,10433],[15,0]],[[81022,10433],[0,3]],[[81022,10436],[24,-3]],[[81046,10433],[9,29]],[[81055,10462],[2,3]],[[81057,10465],[1,0]],[[81058,10465],[0,4]],[[81058,10469],[8,3]],[[81066,10472],[0,3]],[[81066,10475],[6,10]],[[81072,10485],[0,3]],[[81072,10488],[25,20]],[[81097,10508],[14,22]],[[81111,10530],[5,6]],[[81116,10536],[1,32]],[[81117,10568],[8,11]],[[81125,10579],[0,6]],[[81125,10585],[-9,3]],[[81116,10588],[-16,10]],[[81100,10598],[0,6]],[[81100,10604],[-3,23]],[[81097,10627],[-20,7]],[[81077,10634],[-5,6]],[[81072,10640],[-1,32],[87,0]],[[81158,10672],[0,3]],[[81158,10675],[11,-3]],[[81169,10672],[12,-9]],[[81181,10663],[38,-4]],[[81219,10659],[0,4]],[[81219,10663],[8,3]],[[81227,10666],[11,-7]],[[81238,10659],[18,7]],[[81256,10666],[3,6]],[[81259,10672],[15,3]],[[81274,10675],[0,4]],[[81274,10679],[4,6]],[[81278,10685],[14,20]],[[81292,10705],[13,13]],[[81305,10718],[0,6]],[[81305,10724],[0,16]],[[81305,10740],[4,6]],[[81309,10746],[14,-25]],[[81323,10721],[0,-3]],[[81323,10718],[2,-78],[-33,-4]],[[81292,10636],[-4,-9]],[[81288,10627],[-14,-3]],[[81274,10624],[-2,-7]],[[81272,10617],[-13,-13]],[[81259,10604],[-6,-9]],[[81253,10595],[5,-59]],[[81258,10536],[-5,-19]],[[81253,10517],[-14,-9]],[[81239,10508],[-1,-14]],[[81238,10494],[0,-9]],[[81238,10485],[0,-23]],[[81238,10462],[-5,-3]],[[81233,10459],[0,-58]],[[81233,10401],[5,-13]],[[81238,10388],[1,-16]],[[81239,10372],[17,-3]],[[81256,10369],[3,9]],[[81259,10378],[13,16]],[[81272,10394],[0,3]],[[81272,10397],[16,4]],[[81288,10401],[4,9]],[[81292,10410],[0,30]],[[81292,10440],[0,45]],[[81292,10485],[16,23]],[[81308,10508],[0,3]],[[81308,10511],[1,0]],[[81309,10511],[0,3]],[[81309,10514],[14,68]],[[81323,10582],[0,9]],[[81323,10591],[7,16]],[[81330,10607],[4,10]],[[81334,10617],[25,-10]],[[81359,10607],[3,-6]],[[81362,10601],[-3,-49]],[[81359,10552],[-1,-6]],[[81358,10546],[-8,-10]],[[81350,10536],[0,-6]],[[81350,10530],[-6,-16]],[[81344,10514],[-14,-13]],[[81330,10501],[-7,-4]],[[81323,10497],[0,-3]],[[81323,10494],[-14,-25]],[[81309,10469],[0,-16]],[[81309,10453],[14,-10]],[[81323,10443],[0,-10]],[[81323,10433],[7,-7]],[[81330,10426],[3,-29]],[[81333,10397],[-24,-16]],[[81309,10381],[0,-6]],[[81309,10375],[14,6]],[[81323,10381],[27,10]],[[81350,10391],[33,3]],[[81383,10394],[17,30]],[[81400,10424],[9,2]],[[81409,10426],[5,7]],[[81414,10433],[34,0]],[[81448,10433],[0,-3]],[[81448,10430],[-3,-4]],[[81445,10426],[-9,-9]],[[81436,10417],[-2,-13]],[[81434,10404],[5,6]],[[81439,10410],[86,4]],[[81525,10414],[0,-4]],[[81525,10410],[14,4]],[[81539,10414],[8,16]],[[81547,10430],[17,6]],[[81564,10436],[28,10]],[[81592,10446],[5,10]],[[81597,10456],[-5,3]],[[81592,10459],[-2,6]],[[81590,10465],[7,4]],[[81597,10469],[29,3]],[[81626,10472],[0,-3]],[[81626,10469],[16,0]],[[81642,10469],[4,-16]],[[81646,10453],[21,-13]],[[81667,10440],[29,-7]],[[81696,10433],[30,13]],[[81726,10446],[5,-6]],[[81731,10440],[6,-4]],[[81737,10436],[3,0]],[[81740,10436],[0,26]],[[81740,10462],[-3,16]],[[81737,10478],[-5,3]],[[81732,10481],[-12,-12]],[[81720,10469],[-20,-10]],[[81700,10459],[-5,10]],[[81695,10469],[-8,25]],[[81687,10494],[0,3]],[[81687,10497],[-17,4]],[[81670,10501],[0,-4]],[[81670,10497],[-5,23],[58,-6]],[[81723,10514],[5,-6]],[[81728,10508],[0,9]],[[81728,10517],[12,13]],[[81740,10530],[6,-3]],[[81746,10527],[5,-7]],[[81751,10520],[22,-12]],[[81773,10508],[25,-17]],[[81798,10491],[12,-3]],[[81810,10488],[0,-3]],[[81810,10485],[13,-13]],[[81823,10472],[8,-10]],[[81831,10462],[12,-9]],[[81843,10453],[0,-4]],[[81843,10449],[5,-3]],[[81848,10446],[3,-6]],[[81851,10440],[26,-14]],[[81877,10426],[2,-9]],[[81879,10417],[-17,9]],[[81862,10426],[-14,10]],[[81848,10436],[-5,4]],[[81843,10440],[-1,6]],[[81842,10446],[-10,-3]],[[81832,10443],[-6,10]],[[81826,10453],[-16,0]],[[81810,10453],[0,-4]],[[81810,10449],[-7,-3]],[[81803,10446],[-7,-10]],[[81796,10436],[-14,0]],[[81782,10436],[-6,-16]],[[81776,10420],[2,-16]],[[81778,10404],[25,-13]],[[81803,10391],[20,-3]],[[81823,10388],[0,3]],[[81823,10391],[19,3]],[[81842,10394],[0,3]],[[81842,10397],[6,4]],[[81848,10401],[14,9]],[[81862,10410],[-3,-13]],[[81859,10397],[0,-3]],[[81859,10394],[-7,-3]],[[81852,10391],[-4,-6]],[[81848,10385],[-6,-4]],[[81842,10381],[0,-3]],[[81842,10378],[-15,-9]],[[81827,10369],[-4,-7]],[[81823,10362],[-13,-16]],[[81810,10346],[0,-4]],[[81810,10342],[-12,-3]],[[81798,10339],[0,16]],[[81798,10355],[-6,-6]],[[81792,10349],[-2,-13]],[[81790,10336],[-8,-3]],[[81782,10333],[-6,-7]],[[81776,10326],[-28,-6]],[[81748,10320],[0,16]],[[81748,10336],[-8,-26]],[[81740,10310],[-20,-26]],[[81720,10284],[-24,-16]],[[81696,10268],[0,-3]],[[81696,10265],[-9,-3]],[[81687,10262],[0,-3]],[[81687,10259],[-6,-4]],[[81681,10255],[-14,-16]],[[81667,10239],[-21,-13]],[[81646,10226],[-4,-10]],[[81642,10216],[-6,-3]],[[81636,10213],[0,-3]],[[81636,10210],[-10,-3]],[[81626,10207],[-11,-13]],[[81615,10194],[-20,-13]],[[81595,10181],[-5,-6]],[[81590,10175],[-18,-10]],[[81572,10165],[-13,-10]],[[81559,10155],[-14,-7]],[[81545,10148],[-6,-9]],[[81539,10139],[-20,-10]],[[81519,10129],[-13,-6]],[[81506,10123],[-11,-7]],[[81495,10116],[-6,-6]],[[81489,10110],[-24,-10]],[[81465,10100],[0,-3]],[[81465,10097],[-10,-4]],[[81455,10093],[-7,-5]],[[81448,10088],[-8,0]],[[81440,10088],[0,-4]],[[81440,10084],[-4,0]],[[81436,10084],[0,-3]],[[81436,10081],[-27,-9]],[[81409,10072],[-6,-7]],[[81403,10065],[-9,-4]],[[81394,10061],[-10,-9]],[[81384,10052],[-22,-13]],[[81362,10039],[-4,-6]],[[81358,10033],[-16,-7]],[[81342,10026],[-9,-10]],[[81333,10016],[-24,-16]],[[81309,10000],[-1,-6]],[[81308,9994],[-16,-13]],[[81292,9981],[-14,-23]],[[81278,9958],[-4,-3]],[[81274,9955],[-2,-10]],[[81272,9945],[-13,-3]],[[81259,9942],[-6,-13]],[[81253,9929],[-14,-16]],[[81239,9913],[-1,-10]],[[81238,9903],[-5,-3]],[[81233,9900],[-6,-13]],[[81227,9887],[-5,-4]],[[81222,9883],[-3,-5]],[[81219,9878],[-8,-16]],[[81211,9862],[-9,-27]],[[81202,9835],[-14,-25]],[[81188,9810],[0,-7]],[[81188,9803],[-7,-16]],[[81181,9787],[-4,-59]],[[81177,9728],[-8,-38]],[[81169,9690],[0,-55]],[[81169,9635],[8,-52]],[[81177,9583],[0,-109]],[[81177,9474],[-8,-39]],[[81169,9435],[-2,-36]],[[81167,9399],[-6,-13]],[[81161,9386],[-12,-48]],[[81149,9338],[-21,-46]],[[81128,9292],[-3,-16]],[[81125,9276],[-8,-9]],[[81117,9267],[-1,-7]],[[81116,9260],[-5,-3]],[[81111,9257],[-14,-23]],[[81097,9234],[-20,-25]],[[81077,9209],[-5,-10]],[[81072,9199],[-6,-6]],[[81066,9193],[0,-4]],[[81066,9189],[-3,-3]],[[81063,9186],[-5,-4]],[[81058,9182],[-8,-16]],[[81050,9166],[-4,0]],[[81046,9166],[0,-3]],[[81046,9163],[-21,-13]],[[81025,9150],[-4,-6]],[[81021,9144],[-19,-6]],[[81002,9138],[-13,-10]],[[80989,9128],[-17,-3]],[[80972,9125],[0,-4]],[[80972,9121],[-25,-3]],[[80947,9118],[-11,-7]],[[80936,9111],[-10,-6]],[[80926,9105],[-7,-16]],[[80919,9089],[-17,-7]],[[80902,9082],[0,-3]],[[80902,9079],[-11,-3]],[[80891,9076],[0,-3]],[[80891,9073],[-20,-7]],[[80871,9066],[-6,-6]],[[80865,9060],[-25,-6]],[[80840,9054],[-25,-11]],[[80815,9043],[-27,-3]],[[80788,9040],[-28,-16]],[[80760,9024],[-20,-6]],[[80740,9018],[-11,-10]],[[80729,9008],[-6,-3]],[[80723,9005],[-13,-19]],[[80710,8986],[-1,0]],[[80709,8986],[0,-3]],[[80709,8983],[-7,-7]],[[80702,8976],[0,-4]],[[80702,8972],[-12,-25]],[[80690,8947],[-6,-32]],[[80684,8915],[-14,-20]],[[80670,8895],[-2,-6]],[[80668,8889],[-5,-7]],[[80663,8882],[-6,-22]],[[80657,8860],[-5,-13]],[[80652,8847],[-3,-36]],[[80649,8811],[-12,-3]],[[80637,8808],[-3,16]],[[80634,8824],[-16,-19]],[[80618,8805],[0,-7]],[[80618,8798],[-6,-13]],[[80612,8785],[-3,-12]],[[80609,8773],[-2,0]],[[80607,8773],[5,-23]],[[80612,8750],[6,-13]],[[80618,8737],[0,-7]],[[80618,8730],[-6,-9]],[[80612,8721],[-5,-7]],[[80607,8714],[-23,-7]],[[80584,8707],[0,4]],[[80584,8711],[-27,-4]],[[80557,8707],[-28,0]],[[80529,8707],[-22,14]],[[80507,8721],[-3,6]],[[80504,8727],[-11,7]],[[80493,8734],[0,3]],[[80493,8737],[-6,3]],[[80487,8740],[-11,13]],[[80476,8753],[-23,13]],[[80453,8766],[0,3]],[[80453,8769],[-16,7]],[[80437,8776],[-11,9]],[[80426,8785],[-23,10]],[[80403,8795],[0,3]],[[80403,8798],[-17,7]],[[80386,8805],[0,3]],[[80386,8808],[-13,3]],[[80373,8811],[0,3]],[[80373,8814],[-8,3]],[[80365,8817],[0,4]],[[80365,8821],[-12,3]],[[80353,8824],[-6,6]],[[80347,8830],[-21,10]],[[80326,8840],[-11,10]],[[80315,8850],[-11,3]],[[80304,8853],[-7,7]],[[80297,8860],[-22,6]],[[80275,8866],[0,3]],[[80275,8869],[-14,3]],[[80261,8872],[-14,10]],[[80247,8882],[-30,10]],[[80217,8892],[-20,13]],[[80197,8905],[-27,6]],[[80170,8911],[0,4]],[[80170,8915],[-19,3]],[[80151,8918],[-7,6]],[[80144,8924],[-30,7]],[[80114,8931],[0,3]],[[80114,8934],[-19,6]],[[80095,8940],[-34,7]],[[80061,8947],[0,3]],[[80061,8950],[-72,10]],[[79989,8960],[-20,6]],[[79969,8966],[-59,6]],[[79910,8972],[0,4]],[[79910,8976],[-53,3]],[[79857,8979],[-4,-7]],[[79853,8972],[-45,7]],[[79808,8979],[0,4]],[[79808,8983],[-31,3]],[[79777,8986],[0,2]],[[79777,8988],[-45,4]],[[79732,8992],[0,3]],[[79732,8995],[-49,7]],[[79683,9002],[-11,-10]],[[79672,8992],[-25,13]],[[79647,9005],[-12,3]],[[79635,9008],[-45,7]],[[79590,9015],[0,3]],[[79590,9018],[-41,0]],[[79549,9018],[-22,0]],[[79527,9018],[-87,-10]],[[79440,9008],[-25,0]],[[79415,9008],[-6,-9]],[[79409,8999],[-21,-4]],[[79388,8995],[-20,-7]],[[79368,8988],[-3,-5]],[[79365,8983],[-2,-4]],[[79363,8979],[-9,0]],[[79354,8979],[-19,-16]],[[79335,8963],[-22,-10]],[[79313,8953],[-3,-6]],[[79310,8947],[-6,-10]],[[79304,8937],[-1,-22]],[[79303,8915],[-5,-4]],[[79298,8911],[-14,-29]],[[79284,8882],[0,-3]],[[79284,8879],[11,-52]],[[79295,8827],[8,-3]],[[79303,8824],[0,-19]],[[79303,8805],[-13,-4]],[[79290,8801],[-5,-9]],[[79285,8792],[-26,-14]],[[79259,8778],[-27,-19]],[[79232,8759],[-18,-3]],[[79214,8756],[-7,-10]],[[79207,8746],[-23,-9]],[[79184,8737],[-5,-7]],[[79179,8730],[-6,-3]],[[79173,8727],[0,-3]],[[79173,8724],[-11,-10]],[[79162,8714],[-8,-13]],[[79154,8701],[-12,-6]],[[79142,8695],[0,-4]],[[79142,8691],[-8,-3]],[[79134,8688],[-5,-9]],[[79129,8679],[-6,-4]],[[79123,8675],[-1,-16]],[[79122,8659],[-8,-6]],[[79114,8653],[-6,-26]],[[79108,8627],[-25,9]],[[79083,8636],[-5,-13]],[[79078,8623],[-6,-6]],[[79072,8617],[-4,-10]],[[79068,8607],[-4,-3]],[[79064,8604],[-13,-25]],[[79051,8579],[-20,-7]],[[79031,8572],[-5,-6]],[[79026,8566],[-7,-7]],[[79019,8559],[-18,-3]],[[79001,8556],[-34,-4]],[[78967,8552],[0,-3]],[[78967,8549],[-20,-3]],[[78947,8546],[0,3]],[[78947,8549],[-25,-9]],[[78922,8540],[0,-4]],[[78922,8536],[-14,-16]],[[78908,8520],[0,-6]],[[78908,8514],[-6,-3]],[[78902,8511],[-5,-10]],[[78897,8501],[-6,-4]],[[78891,8497],[-4,-2]],[[78887,8495],[-7,-14]],[[78880,8481],[-8,-12]],[[78872,8469],[-25,-4]],[[78847,8465],[-17,4]],[[78830,8469],[-33,-23]],[[78797,8446],[-3,-10]],[[78794,8436],[-10,-10]],[[78784,8426],[0,-2]],[[78784,8424],[-4,-7]],[[78780,8417],[-14,-13]],[[78766,8404],[-21,0]],[[78745,8404],[0,48]],[[78745,8452],[0,7]],[[78745,8459],[-4,10]],[[78741,8469],[-6,6]],[[78735,8475],[-4,13]],[[78731,8488],[-3,9]],[[78728,8497],[-14,27]],[[78714,8524],[-20,32]],[[78694,8556],[-5,10]],[[78689,8566],[-14,6]],[[78675,8572],[-11,13]],[[78664,8585],[-9,13]],[[78655,8598],[0,13]],[[78655,8611],[-14,12]],[[78641,8623],[0,23]],[[78641,8646],[14,33]],[[78655,8679],[0,6]],[[78655,8685],[8,22]],[[78663,8707],[0,43]],[[78663,8750],[-8,3]],[[78655,8753],[0,3]],[[78655,8756],[-31,10]],[[78624,8766],[0,42]],[[78624,8808],[14,6]],[[78638,8814],[0,3]],[[78638,8817],[25,10]],[[78663,8827],[26,13]],[[78689,8840],[25,10]],[[78714,8850],[0,32]],[[78714,8882],[0,36]],[[78714,8918],[0,13]],[[78714,8931],[-20,-10]],[[78694,8921],[-5,-10]],[[78689,8911],[-6,7]],[[78683,8918],[0,3]],[[78683,8921],[-8,10]],[[78675,8931],[-12,16]],[[78663,8947],[0,3]],[[78663,8950],[1,6]],[[78664,8956],[50,4]],[[78714,8960],[21,12]],[[78735,8972],[-10,7]],[[78725,8979],[-70,-3]],[[78655,8976],[0,19]],[[78655,8995],[0,4]],[[78655,8999],[28,0]],[[78683,8999],[0,-4]],[[78683,8995],[6,-3]],[[78689,8992],[0,-4]],[[78689,8988],[35,4]],[[78724,8992],[4,7]],[[78728,8999],[3,3]],[[78731,9002],[0,38]],[[78731,9040],[-3,3]],[[78728,9043],[0,14]],[[78728,9057],[3,3]],[[78731,9060],[4,10]],[[78735,9070],[0,6]],[[78735,9076],[-7,29]],[[78728,9105],[16,3]],[[78744,9108],[1,7]],[[78745,9115],[39,0]],[[78784,9115],[0,-10]],[[78784,9105],[11,55]],[[78795,9160],[-1,6]],[[78794,9166],[-8,4]],[[78786,9170],[-17,26]],[[78769,9196],[-25,13]],[[78744,9209],[0,3]],[[78744,9212],[-13,6]],[[78731,9218],[0,3]],[[78731,9221],[-3,4]],[[78728,9225],[-12,16]],[[78716,9241],[-25,26]],[[78691,9267],[-2,6]],[[78689,9273],[-6,7]],[[78683,9280],[0,3]],[[78683,9283],[-8,6]],[[78675,9289],[-12,16]],[[78663,9305],[-22,14]],[[78641,9319],[-3,9]],[[78638,9328],[-14,10]],[[78624,9338],[-19,13]],[[78605,9351],[-12,9]],[[78593,9360],[-4,7]],[[78589,9367],[-26,9]],[[78563,9376],[-9,10]],[[78554,9386],[-21,6]],[[78533,9392],[0,4]],[[78533,9396],[-43,19]],[[78490,9415],[-8,10]],[[78482,9425],[-39,6]],[[78443,9431],[-11,10]],[[78432,9441],[-24,3]],[[78408,9444],[0,3]],[[78408,9447],[-17,4]],[[78391,9451],[-20,12]],[[78371,9463],[-34,0]],[[78337,9463],[-11,-19]],[[78326,9444],[-5,-3]],[[78321,9441],[-3,-6]],[[78318,9435],[-11,-4]],[[78307,9431],[-5,16]],[[78302,9447],[-17,20]],[[78285,9467],[0,3]],[[78285,9470],[-5,4]],[[78280,9474],[0,3]],[[78280,9477],[5,3]],[[78285,9480],[0,6]],[[78285,9486],[16,39]],[[78301,9525],[6,16]],[[78307,9541],[19,33]],[[78326,9574],[4,51]],[[78330,9625],[-23,-3]],[[78307,9622],[-5,-29]],[[78302,9593],[-15,9]],[[78287,9602],[-2,11]],[[78285,9613],[-5,3]],[[78280,9616],[-12,25]],[[78268,9641],[-11,4]],[[78257,9645],[-6,6]],[[78251,9651],[-25,26]],[[78226,9677],[-3,7]],[[78223,9684],[-7,3]],[[78216,9687],[0,3]],[[78216,9690],[-10,6]],[[78206,9696],[-10,23]],[[78196,9719],[0,-29]],[[78196,9690],[0,-6]],[[78196,9684],[0,-11]],[[78196,9673],[2,-16]],[[78198,9657],[-24,7]],[[78174,9664],[-12,-23]],[[78162,9641],[0,-35]],[[78162,9606],[3,-20]],[[78165,9586],[-3,-3]],[[78162,9583],[0,-3]],[[78162,9580],[-6,-3]],[[78156,9577],[-7,-7]],[[78149,9570],[-25,39]],[[78124,9609],[-4,29]],[[78120,9638],[-8,7]],[[78112,9645],[-17,19]],[[78095,9664],[-25,9]],[[78070,9673],[0,4]],[[78070,9677],[-10,10]],[[78060,9687],[-6,3]],[[78054,9690],[-19,13]],[[78035,9703],[-14,16]],[[78021,9719],[-6,26]],[[78015,9745],[25,-6]],[[78040,9739],[30,2]],[[78070,9741],[22,-9]],[[78092,9732],[3,0]],[[78095,9732],[50,3]],[[78145,9735],[12,26]],[[78157,9761],[5,3]],[[78162,9764],[14,10]],[[78176,9774],[-11,36]],[[78165,9810],[0,6]],[[78165,9816],[31,13]],[[78196,9829],[-51,16]],[[78145,9845],[-33,13]],[[78112,9858],[0,4]],[[78112,9862],[-8,2]],[[78104,9864],[-12,14]],[[78092,9878],[-21,22]],[[78071,9900],[-4,13]],[[78067,9913],[-7,13]],[[78060,9926],[-6,13]],[[78054,9939],[-19,77]],[[78035,10016],[-1,4]],[[78034,10020],[0,2]],[[78034,10022],[-13,4]],[[78021,10026],[0,3]],[[78021,10029],[-21,4]],[[78000,10033],[-11,6]],[[77989,10039],[-19,3]],[[77970,10042],[0,-3]],[[77970,10039],[-27,-19]],[[77943,10020],[-4,-7]],[[77939,10013],[-24,-3]],[[77915,10010],[0,-4]],[[77915,10006],[-25,4]],[[77890,10010],[-12,-16]],[[77878,9994],[-5,12]],[[77873,10006],[-14,36]],[[77859,10042],[-20,19]],[[77839,10061],[-2,7]],[[77837,10068],[-9,-3]],[[77828,10065],[-20,-43]],[[77808,10022],[-24,-2]],[[77784,10020],[-1,0]],[[77783,10020],[-14,16]],[[77769,10036],[0,38]],[[77769,10074],[6,3]],[[77775,10077],[0,4]],[[77775,10081],[8,3]],[[77783,10084],[0,4]],[[77783,10088],[-8,3]],[[77775,10091],[0,2]],[[77775,10093],[-6,11]],[[77769,10104],[-21,3]],[[77748,10107],[-11,-23]],[[77737,10084],[-4,-10]],[[77733,10074],[-16,0]],[[77717,10074],[-20,3]],[[77697,10077],[11,4]],[[77708,10081],[9,10]],[[77717,10091],[0,9]],[[77717,10100],[-19,7]],[[77698,10107],[5,6]],[[77703,10113],[0,3]],[[77703,10116],[-5,7]],[[77698,10123],[-20,-3]],[[77678,10120],[-14,23]],[[77664,10143],[0,-11]],[[77664,10132],[-6,-6]],[[77658,10126],[-6,-10]],[[77652,10116],[-5,16]],[[77647,10132],[-3,16]],[[77644,10148],[-7,7]],[[77637,10155],[-1,7]],[[77636,10162],[-33,-14]],[[77603,10148],[0,4]],[[77603,10152],[-11,3]],[[77592,10155],[0,4]],[[77592,10159],[-4,-4]],[[77588,10155],[-7,-7]],[[77581,10148],[-29,7]],[[77552,10155],[-2,7]],[[77550,10162],[-8,9]],[[77542,10171],[-20,20]],[[77522,10191],[-20,6]],[[77502,10197],[-5,-13]],[[77497,10184],[-26,-16]],[[77471,10168],[0,23]],[[77471,10191],[-7,3]],[[77464,10194],[0,3]],[[77464,10197],[-12,-3]],[[77452,10194],[-5,-7]],[[77447,10187],[-15,-9]],[[77432,10178],[-2,-30]],[[77430,10148],[-8,-3]],[[77422,10145],[0,3]],[[77422,10148],[-23,7]],[[77399,10155],[-3,0]],[[77396,10155],[-16,-10]],[[77380,10145],[0,-2]],[[77380,10143],[-6,-4]],[[77374,10139],[-8,-10]],[[77366,10129],[-5,-3]],[[77361,10126],[-1,-6]],[[77360,10120],[-7,-7]],[[77353,10113],[-12,-36]],[[77341,10077],[-20,-61]],[[77321,10016],[0,-39]],[[77321,9977],[20,7]],[[77341,9984],[12,16]],[[77353,10000],[7,3]],[[77360,10003],[0,-16]],[[77360,9987],[-7,-3]],[[77353,9984],[-9,-13]],[[77344,9971],[-3,-22]],[[77341,9949],[33,41]],[[77374,9990],[22,-9]],[[77396,9981],[-2,-59]],[[77394,9922],[0,-19]],[[77394,9903],[2,-22]],[[77396,9881],[-16,-3]],[[77380,9878],[0,-4]],[[77380,9874],[14,-7]],[[77394,9867],[5,-9]],[[77399,9858],[12,-3]],[[77411,9855],[3,-10]],[[77414,9845],[5,-6]],[[77419,9839],[6,-10]],[[77425,9829],[22,-10]],[[77447,9819],[0,-3]],[[77447,9816],[24,-4]],[[77471,9812],[14,-16]],[[77485,9796],[6,-6]],[[77491,9790],[9,-10]],[[77500,9780],[22,-9]],[[77522,9771],[14,-16]],[[77536,9755],[6,-4]],[[77542,9751],[11,-16]],[[77553,9735],[25,-19]],[[77578,9716],[8,-7]],[[77586,9709],[9,-3]],[[77595,9706],[11,-10]],[[77606,9696],[22,-6]],[[77628,9690],[30,-10]],[[77658,9680],[25,-7]],[[77683,9673],[0,-2]],[[77683,9671],[23,2]],[[77706,9673],[8,0]],[[77714,9673],[20,-2]],[[77734,9671],[0,-3]],[[77734,9668],[21,-11]],[[77755,9657],[12,-12]],[[77767,9645],[16,-13]],[[77783,9632],[4,-7]],[[77787,9625],[21,-9]],[[77808,9616],[11,-14]],[[77819,9602],[15,-16]],[[77834,9586],[3,-6]],[[77837,9580],[22,-26]],[[77859,9554],[14,-13]],[[77873,9541],[5,-3]],[[77878,9538],[0,-3]],[[77878,9535],[9,-6]],[[77887,9529],[2,-7]],[[77889,9522],[22,-20]],[[77911,9502],[12,-19]],[[77923,9483],[17,-9]],[[77940,9474],[3,-7]],[[77943,9467],[7,-4]],[[77950,9463],[0,-3]],[[77950,9460],[14,-13]],[[77964,9447],[6,-9]],[[77970,9438],[11,-10]],[[77981,9428],[14,-16]],[[77995,9412],[6,-3]],[[78001,9409],[0,-3]],[[78001,9406],[14,-7]],[[78015,9399],[3,-7]],[[78018,9392],[16,-9]],[[78034,9383],[0,-3]],[[78034,9380],[6,-4]],[[78040,9376],[14,-29]],[[78054,9347],[6,-3]],[[78060,9344],[0,-3]],[[78060,9341],[10,-3]],[[78070,9338],[0,-3]],[[78070,9335],[25,-23]],[[78095,9312],[11,-10]],[[78106,9302],[6,-3]],[[78112,9299],[0,-3]],[[78112,9296],[8,-4]],[[78120,9292],[4,-12]],[[78124,9280],[21,-23]],[[78145,9257],[12,-26]],[[78157,9231],[8,-3]],[[78165,9228],[0,-3]],[[78165,9225],[9,-7]],[[78174,9218],[0,-3]],[[78174,9215],[22,3]],[[78196,9218],[19,-13]],[[78215,9205],[-13,-6]],[[78202,9199],[5,-20]],[[78207,9179],[8,-2]],[[78215,9177],[1,-7]],[[78216,9170],[7,-10]],[[78223,9160],[4,-13]],[[78227,9147],[8,-6]],[[78235,9141],[0,-7]],[[78235,9134],[13,-16]],[[78248,9118],[9,-16]],[[78257,9102],[11,-10]],[[78268,9092],[12,-22]],[[78280,9070],[5,-4]],[[78285,9066],[2,-6]],[[78287,9060],[14,-13]],[[78301,9047],[6,-13]],[[78307,9034],[11,-7]],[[78318,9027],[3,-6]],[[78321,9021],[6,-3]],[[78327,9018],[11,-16]],[[78338,9002],[16,-10]],[[78354,8992],[0,-4]],[[78354,8988],[23,-16]],[[78377,8972],[14,-25]],[[78391,8947],[13,-7]],[[78404,8940],[4,-6]],[[78408,8934],[21,-19]],[[78429,8915],[18,-20]],[[78447,8895],[10,-3]],[[78457,8892],[4,-7]],[[78461,8885],[21,-9]],[[78482,8876],[8,-13]],[[78490,8863],[4,-3]],[[78494,8860],[16,-4]],[[78510,8856],[0,-3]],[[78510,8853],[9,-3]],[[78519,8850],[14,-6]],[[78533,8844],[6,-7]],[[78539,8837],[13,-4]],[[78552,8833],[0,-3]],[[78552,8830],[6,-3]],[[78558,8827],[5,-6]],[[78563,8821],[26,-7]],[[78589,8814],[4,-6]],[[78593,8808],[10,-16]],[[78603,8792],[2,-3]],[[78605,8789],[5,-16]],[[78610,8773],[14,-27]],[[78624,8746],[14,-16]],[[78638,8730],[3,-6]],[[78641,8724],[0,-62]],[[78641,8662],[-3,-12]],[[78638,8650],[-14,-10]],[[78624,8640],[-19,-4]],[[78605,8636],[-12,14]],[[78593,8650],[-8,22]],[[78585,8672],[-21,-3]],[[78564,8669],[-4,22]],[[78560,8691],[-6,4]],[[78554,8695],[0,3]],[[78554,8698],[-60,26]],[[78494,8724],[-12,10]],[[78482,8734],[-21,16]],[[78461,8750],[-32,26]],[[78429,8776],[-21,19]],[[78408,8795],[-31,16]],[[78377,8811],[-25,16]],[[78352,8827],[0,3]],[[78352,8830],[-15,3]],[[78337,8833],[-16,17]],[[78321,8850],[-16,6]],[[78305,8856],[-4,7]],[[78301,8863],[-14,6]],[[78287,8869],[0,3]],[[78287,8872],[-7,4]],[[78280,8876],[-32,29]],[[78248,8905],[-13,3]],[[78235,8908],[0,3]],[[78235,8911],[-12,4]],[[78223,8915],[0,3]],[[78223,8918],[-16,6]],[[78207,8924],[-11,10]],[[78196,8934],[-22,10]],[[78174,8944],[0,3]],[[78174,8947],[-17,6]],[[78157,8953],[-12,16]],[[78145,8969],[-24,10]],[[78121,8979],[-1,7]],[[78120,8986],[-10,2]],[[78110,8988],[-14,14]],[[78096,9002],[-42,29]],[[78054,9031],[-19,12]],[[78035,9043],[-15,14]],[[78020,9057],[0,3]],[[78020,9060],[-25,10]],[[77995,9070],[-6,9]],[[77989,9079],[-5,3]],[[77984,9082],[0,4]],[[77984,9086],[-11,3]],[[77973,9089],[-9,10]],[[77964,9099],[-25,12]],[[77939,9111],[-8,7]],[[77931,9118],[-8,3]],[[77923,9121],[-9,17]],[[77914,9138],[-24,3]],[[77890,9141],[-1,6]],[[77889,9147],[-10,3]],[[77879,9150],[-20,13]],[[77859,9163],[-20,10]],[[77839,9173],[0,4]],[[77839,9177],[-14,2]],[[77825,9179],[-16,23]],[[77809,9202],[-25,16]],[[77784,9218],[0,3]],[[77784,9221],[-9,-3]],[[77775,9218],[0,3]],[[77775,9221],[-8,4]],[[77767,9225],[-12,12]],[[77755,9237],[-21,13]],[[77734,9250],[-3,7]],[[77731,9257],[-14,7]],[[77717,9264],[0,3]],[[77717,9267],[-9,3]],[[77708,9270],[-5,6]],[[77703,9276],[-6,4]],[[77697,9280],[0,3]],[[77697,9283],[-10,3]],[[77687,9286],[-6,10]],[[77681,9296],[-28,16]],[[77653,9312],[0,3]],[[77653,9315],[-16,4]],[[77637,9319],[-9,9]],[[77628,9328],[-22,10]],[[77606,9338],[-4,6]],[[77602,9344],[-10,3]],[[77592,9347],[-15,13]],[[77577,9360],[-25,13]],[[77552,9373],[0,3]],[[77552,9376],[-11,4]],[[77541,9380],[-16,12]],[[77525,9392],[-23,14]],[[77502,9406],[-5,6]],[[77497,9412],[-25,7]],[[77472,9419],[0,3]],[[77472,9422],[-8,3]],[[77464,9425],[0,3]],[[77464,9428],[-14,7]],[[77450,9435],[-3,6]],[[77447,9441],[-15,6]],[[77432,9447],[0,4]],[[77432,9451],[-11,3]],[[77421,9454],[-7,6]],[[77414,9460],[-14,7]],[[77400,9467],[-6,10]],[[77394,9477],[-20,9]],[[77374,9486],[-5,7]],[[77369,9493],[-16,3]],[[77353,9496],[-9,13]],[[77344,9509],[-23,6]],[[77321,9515],[-5,7]],[[77316,9522],[-6,3]],[[77310,9525],[0,4]],[[77310,9529],[-11,2]],[[77299,9531],[-10,7]],[[77289,9538],[-20,10]],[[77269,9548],[0,3]],[[77269,9551],[-11,3]],[[77258,9554],[0,3]],[[77258,9557],[-9,4]],[[77249,9561],[-9,6]],[[77240,9567],[-22,13]],[[77218,9580],[-5,6]],[[77213,9586],[-8,4]],[[77205,9590],[0,3]],[[77205,9593],[-11,3]],[[77194,9596],[-6,10]],[[77188,9606],[-9,3]],[[77179,9609],[0,4]],[[77179,9613],[-14,6]],[[77165,9619],[-5,6]],[[77160,9625],[-16,7]],[[77144,9632],[-17,16]],[[77127,9648],[-12,3]],[[77115,9651],[-7,6]],[[77108,9657],[-14,11]],[[77094,9668],[-20,5]],[[77074,9673],[-8,7]],[[77066,9680],[-4,7]],[[77062,9687],[-19,13]],[[77043,9700],[-27,9]],[[77016,9709],[-12,13]],[[77004,9722],[-25,17]],[[76979,9739],[0,2]],[[76979,9741],[-8,4]],[[76971,9745],[-15,10]],[[76956,9755],[-24,9]],[[76932,9764],[-5,10]],[[76927,9774],[-15,6]],[[76912,9780],[-5,7]],[[76907,9787],[-14,3]],[[76893,9790],[0,3]],[[76893,9793],[-12,-3]],[[76881,9790],[-5,-6]],[[76876,9784],[-14,28]],[[76862,9812],[-11,14]],[[76851,9826],[-6,3]],[[76845,9829],[-3,13]],[[76842,9842],[-11,29]],[[76831,9871],[-8,10]],[[76823,9881],[-11,-17]],[[76812,9864],[-22,3]],[[76790,9867],[0,4]],[[76790,9871],[-9,3]],[[76781,9874],[-5,7]],[[76776,9881],[-36,32]],[[76740,9913],[-3,6]],[[76737,9919],[0,7]],[[76737,9926],[0,3]],[[76737,9929],[-11,3]],[[76726,9932],[0,3]],[[76726,9935],[-40,14]],[[76686,9949],[-16,12]],[[76670,9961],[-25,13]],[[76645,9974],[-30,20]],[[76615,9994],[-21,16]],[[76594,10010],[-4,6]],[[76590,10016],[-17,6]],[[76573,10022],[-9,11]],[[76564,10033],[-8,9]],[[76556,10042],[0,3]],[[76556,10045],[-12,7]],[[76544,10052],[-5,6]],[[76539,10058],[-16,7]],[[76523,10065],[-15,12]],[[76508,10077],[-14,7]],[[76494,10084],[-7,9]],[[76487,10093],[-20,11]],[[76467,10104],[-30,22]],[[76437,10126],[-23,13]],[[76414,10139],[-31,20]],[[76383,10159],[-25,19]],[[76358,10178],[0,3]],[[76358,10181],[-9,3]],[[76349,10184],[-18,20]],[[76331,10204],[-20,6]],[[76311,10210],[-5,6]],[[76306,10216],[-7,4]],[[76299,10220],[0,3]],[[76299,10223],[-16,3]],[[76283,10226],[-5,7]],[[76278,10233],[-6,3]],[[76272,10236],[0,3]],[[76272,10239],[-11,10]],[[76261,10249],[-8,6]],[[76253,10255],[-12,7]],[[76241,10262],[-19,13]],[[76222,10275],[-11,3]],[[76211,10278],[-9,9]],[[76202,10287],[-20,11]],[[76182,10298],[-5,9]],[[76177,10307],[-10,3]],[[76167,10310],[-15,10]],[[76152,10320],[-25,13]],[[76127,10333],[0,3]],[[76127,10336],[-9,3]],[[76118,10339],[-21,14]],[[76097,10353],[-22,9]],[[76075,10362],[0,3]],[[76075,10365],[-11,4]],[[76064,10369],[-17,12]],[[76047,10381],[-22,10]],[[76025,10391],[0,3]],[[76025,10394],[-10,3]],[[76015,10397],[-19,13]],[[75996,10410],[-10,4]],[[75986,10414],[0,6]],[[75986,10420],[-12,6]],[[75974,10426],[-28,7]],[[75946,10433],[-11,3]],[[75935,10436],[-19,10]],[[75916,10446],[-20,10]],[[75896,10456],[-5,6]],[[75891,10462],[-22,7]],[[75869,10469],[-4,6]],[[75865,10475],[-21,3]],[[75844,10478],[-6,3]],[[75838,10481],[-4,4]],[[75834,10485],[-21,9]],[[75813,10494],[-8,3]],[[75805,10497],[-10,4]],[[75795,10501],[-21,3]],[[75774,10504],[-14,7]],[[75760,10511],[-20,9]],[[75740,10520],[-2,7]],[[75738,10527],[-15,0]],[[75723,10527],[-11,6]],[[75712,10533],[-25,3]],[[75687,10536],[0,4]],[[75687,10540],[-24,3]],[[75663,10543],[-1,6]],[[75662,10549],[-13,3]],[[75649,10552],[0,4]],[[75649,10556],[-11,3]],[[75638,10559],[-6,0]],[[75632,10559],[-15,-3]],[[75617,10556],[-13,0]],[[75604,10556],[-37,3]],[[75567,10559],[0,4]],[[75567,10563],[-111,0]],[[75456,10563],[-5,2]],[[75451,10565],[-14,-2]],[[75437,10563],[-25,2]],[[75412,10565],[-26,3]],[[75386,10568],[-39,-3]],[[75347,10565],[-10,3]],[[75337,10568],[-6,-3]],[[75331,10565],[-30,7]],[[75301,10572],[0,-4]],[[75301,10568],[-3,0]],[[75298,10568],[42,82],[57,82]],[[75397,10732],[85,97],[97,79],[103,50]],[[75682,10958],[120,67],[53,19]],[[75855,11044],[88,13],[231,8]],[[76174,11065],[51,13]],[[76225,11078],[47,28]],[[76272,11106],[62,117]],[[76334,11223],[39,158]],[[76373,11381],[102,142],[59,128]],[[76534,11651],[22,181]],[[76556,11832],[-2,223],[-14,145]],[[76540,12200],[-17,69],[-64,161],[-25,140]],[[76434,12570],[-6,296]],[[76428,12866],[11,364],[-6,195]],[[76433,13425],[-108,125],[-117,231]],[[76208,13781],[-42,116],[-75,157],[-45,115],[-52,82]],[[75994,14251],[-84,97],[-125,91]],[[75785,14439],[-101,48],[-178,115]],[[75506,14602],[-19,18]],[[75487,14620],[-31,44],[-98,203]],[[75358,14867],[-14,62],[-21,226],[-11,64]],[[75312,15219],[-79,222]],[[75233,15441],[-39,320]],[[75194,15761],[-19,59],[-62,131]],[[75113,15951],[-44,115],[-73,157],[-55,246],[-77,191]],[[74864,16660],[-28,153],[-92,219],[-40,117]],[[74704,17149],[-78,156]],[[74626,17305],[-44,115],[-78,155],[-44,115]],[[74460,17690],[-79,155]],[[74381,17845],[-44,115],[-62,131]],[[74275,18091],[-27,89]],[[74248,18180],[-23,195]],[[74225,18375],[11,212]],[[74236,18587],[1,424],[28,169]],[[74265,19180],[67,116],[66,77]],[[74398,19373],[168,159]],[[74566,19532],[152,86],[62,55],[47,73],[28,130]],[[74855,19876],[5,138],[-3,282]],[[74857,20296],[-21,205]],[[74836,20501],[-18,60]],[[74818,20561],[-57,133],[-40,184]],[[74721,20878],[-17,60],[-75,157],[-45,114],[-52,102]],[[74532,21311],[-23,54],[-19,126]],[[74490,21491],[20,128],[67,117],[64,78],[142,142]],[[74783,21956],[81,52]],[[74864,22008],[61,20],[159,13],[191,-17]],[[75275,22024],[84,-29],[120,-65]],[[75479,21930],[110,-33],[519,-3],[148,13],[83,27]],[[76339,21934],[117,69]],[[76456,22003],[127,67],[70,58],[193,207]],[[76846,22335],[139,170]],[[76985,22505],[61,107]],[[77046,22612],[34,86]],[[77080,22698],[85,128]],[[77165,22826],[210,237]],[[77375,23063],[88,87],[68,54]],[[77531,23204],[71,34],[126,211],[37,109]],[[77765,23558],[-4,91],[-70,187],[-11,65]],[[77680,23901],[-14,210]],[[77666,24111],[1,178],[25,170],[120,269]],[[77812,24728],[52,68],[92,65],[195,65]],[[78151,24926],[122,-70]],[[78273,24856],[95,-61],[78,-36],[284,-45]],[[78730,24714],[151,-69]],[[78881,24645],[55,-20]],[[78936,24625],[282,-47]],[[79218,24578],[175,-83],[155,-29]],[[79548,24466],[159,-1]],[[79707,24465],[125,20],[204,92]],[[80036,24577],[62,13]],[[80098,24590],[158,21],[117,33]],[[80373,24644],[97,51]],[[80470,24695],[51,20],[267,56],[58,6],[67,30],[131,79]],[[81044,24886],[19,18]],[[81063,24904],[31,45],[77,149]],[[81171,25098],[39,115]],[[81210,25213],[45,214]],[[81255,25427],[56,133],[56,246]],[[81367,25806],[39,79],[125,210]],[[81531,26095],[186,106],[103,48]],[[81820,26249],[143,81],[167,42]],[[82130,26372],[55,18]],[[82185,26390],[143,81],[105,47]],[[82433,26518],[117,70],[53,21]],[[82603,26609],[83,21],[89,37]],[[82775,26667],[51,45]],[[82826,26712],[38,25],[112,43]],[[82976,26780],[42,24],[131,125]],[[83149,26929],[61,66],[42,23]],[[83252,27018],[91,34]],[[83343,27052],[40,22],[88,80],[203,127]],[[83674,27281],[248,126]],[[83922,27407],[165,44],[106,60],[77,102]],[[84270,27613],[79,150]],[[84349,27763],[86,235],[64,130]],[[84499,28128],[45,114],[78,156],[46,115]],[[84668,28513],[78,155],[45,115],[84,188],[50,193]],[[84925,29164],[111,297],[78,156]],[[85114,29617],[42,115],[78,156],[44,115]],[[85278,30003],[47,76],[118,132],[69,50]],[[85512,30261],[246,128],[197,48]],[[85955,30437],[53,22]],[[86008,30459],[184,108]],[[86192,30567],[147,96]],[[86339,30663],[131,55],[144,77]],[[86614,30795],[62,17]],[[86676,30812],[64,10],[265,8]],[[87005,30830],[197,-4],[64,-10],[90,-34]],[[87356,30782],[50,-38]],[[87406,30744],[89,-92]],[[87495,30652],[69,-108],[45,-115]],[[87609,30429],[70,-160],[18,-95],[20,-226]],[[87717,29948],[23,-90]],[[87740,29858],[61,-131],[44,-115],[78,-155]],[[87923,29457],[59,-141],[147,-236]],[[88129,29080],[-120,-97],[-111,-121],[-53,-82]],[[87845,28780],[-64,-139],[-128,-183]],[[87653,28458],[-33,-57],[-34,-123]],[[87586,28278],[-19,-193]],[[87567,28085],[-28,-121],[-62,-164]],[[87477,27800],[-43,-320]],[[87434,27480],[-81,-222]],[[87353,27258],[-11,-63]],[[87342,27195],[-18,-193],[-30,-121]],[[87294,26881],[-47,-106]],[[87247,26775],[-20,-58],[-55,-292],[-4,-68]],[[87168,26357],[-63,-181],[-29,-154]],[[87076,26022],[-18,-61],[-67,-161],[-57,-244],[-57,-133]],[[86877,25423],[-29,-130]],[[86848,25293],[-8,-107],[0,-472]],[[86840,24714],[-8,-142],[-20,-102]],[[105744,26468],[98,-2],[824,3],[225,8]],[[106891,26477],[287,-11],[223,10]],[[107401,26476],[91,22],[173,83]],[[107665,26581],[92,15],[286,22]],[[108043,26618],[59,16],[122,60]],[[108224,26694],[107,31],[175,21],[86,21],[144,78],[104,49]],[[108840,26894],[141,85],[103,52]],[[109084,27031],[73,56],[126,146]],[[109283,27233],[94,193]],[[109377,27426],[83,123]],[[109460,27549],[84,-79]],[[109544,27470],[48,-30]],[[109592,27440],[86,-26]],[[109678,27414],[88,-5]],[[109766,27409],[145,23]],[[109911,27432],[28,12]],[[109939,27444],[50,33],[132,117]],[[110121,27594],[47,26]],[[110168,27620],[97,-7]],[[110265,27613],[140,-64],[88,-71]],[[110493,27478],[45,-76],[17,-63]],[[110555,27339],[8,-97]],[[110563,27242],[-3,-100],[-8,-68],[-39,-223],[-41,-101]],[[110472,26750],[-17,-57]],[[110455,26693],[-26,-257]],[[110429,26436],[-28,-123],[-96,-217]],[[110305,26096],[-45,-84],[-61,-78]],[[110199,25934],[-70,-71]],[[110129,25863],[-125,-106]],[[110004,25757],[-76,-18]],[[109928,25739],[-114,-62]],[[109814,25677],[-103,-47],[-142,-86],[-105,-49],[-140,-85],[-103,-51]],[[109221,25359],[-73,-53],[-111,-112],[-103,-122]],[[108934,25072],[-52,-78],[-64,-140],[-87,-130]],[[108731,24724],[-164,-194],[-83,-132]],[[108484,24398],[-96,-216]],[[108388,24182],[-19,-60]],[[108369,24122],[-11,-65],[-8,-172],[3,-562]],[[108353,23323],[5,-139],[14,-163]],[[108372,23021],[-91,-170],[-37,-115]],[[108244,22736],[-30,-152],[-56,-101]],[[108158,22483],[-87,-70]],[[108071,22413],[-120,-68]],[[107951,22345],[-177,-145],[-150,-83],[-118,-77]],[[107506,22040],[-153,-73]],[[107353,21967],[-148,-98],[-33,-38]],[[107172,21831],[-16,-51]],[[107156,21780],[5,-54],[72,-172]],[[107233,21554],[14,-124],[-10,-63]],[[107237,21367],[-9,-30]],[[107228,21337],[-28,-53],[-86,-73],[-54,-19]],[[107060,21192],[-259,-29]],[[106801,21163],[-175,-79]],[[106626,21084],[-222,-61],[-143,-81]],[[106261,20942],[-103,-48]],[[106158,20894],[-186,-108]],[[105972,20786],[-175,-104]],[[105797,20682],[-129,-58],[-141,-86]],[[105527,20538],[-104,-49],[-91,-70]],[[105332,20419],[-41,-42]],[[105291,20377],[-76,-93],[-111,-204]],[[105104,20080],[-75,-28]],[[105029,20052],[-70,-53],[-90,-90]],[[104869,19909],[-200,-219],[-95,-86],[-128,-68]],[[104446,19536],[-142,-80],[-92,-22],[-130,-7]],[[104082,19427],[-524,4],[-227,15]],[[103331,19446],[-146,-20],[-134,-48]],[[103051,19378],[-94,-56],[-105,-48],[-138,-87]],[[102714,19187],[-103,-51],[-96,-76]],[[102515,19060],[-174,-182]],[[102341,18878],[-117,-98]],[[102224,18780],[-127,-65],[-245,-169]],[[101852,18546],[-67,-40],[-100,-4],[-53,13]],[[101632,18515],[-173,80],[-64,15]],[[101395,18610],[-167,26]],[[101228,18636],[-87,20],[-114,66]],[[101027,18722],[-124,63],[-37,31]],[[100866,18816],[-38,43]],[[100828,18859],[-76,159],[-36,55]],[[100716,19073],[-190,229]],[[100526,19302],[-111,121],[-70,66]],[[100345,19489],[-52,36]],[[100293,19525],[-81,36]],[[100212,19561],[-165,41]],[[100047,19602],[-174,84]],[[99873,19686],[-139,33]],[[99734,19719],[-54,17],[-120,63]],[[99560,19799],[-110,32]],[[99450,19831],[-176,19],[-133,46]],[[99141,19896],[-93,57]],[[99048,19953],[-103,50],[-142,84]],[[98803,20087],[-114,26],[-89,2],[-145,-27]],[[98455,20088],[-142,-83]],[[98313,20005],[-103,-50],[-139,-89],[-103,-50],[-119,-70]],[[97849,19746],[-53,-21]],[[97796,19725],[-86,-16],[-120,-4]],[[97590,19705],[-123,6],[-126,15]],[[97341,19726],[-170,175]],[[97171,19901],[-236,271]],[[96935,20172],[-86,55]],[[96849,20227],[-104,49],[-144,80]],[[96601,20356],[-84,20],[-175,18]],[[96342,20394],[-134,44]],[[96208,20438],[-95,55]],[[96113,20493],[-103,50],[-74,54]],[[95936,20597],[-90,88],[-105,118]],[[95741,20803],[-55,78],[-42,121],[-6,97]],[[95638,21099],[22,170]],[[95660,21269],[-23,201],[-2,268]],[[95635,21738],[25,128]],[[95660,21866],[45,84]],[[95705,21950],[102,122]],[[95807,22072],[89,90],[93,78]],[[95989,22240],[127,68],[64,54]],[[96180,22362],[54,67],[81,145]],[[96315,22574],[50,14],[88,61]],[[96453,22649],[96,108]],[[96549,22757],[55,98]],[[96604,22855],[64,141]],[[96668,22996],[145,180]],[[96813,23176],[108,47]],[[96921,23223],[98,62],[88,79],[167,3],[129,13]],[[97403,23380],[58,17],[146,71],[130,27]],[[97737,23495],[273,5]],[[98010,23500],[261,-29]],[[98271,23471],[26,87]],[[98297,23558],[83,133]],[[98380,23691],[106,116]],[[98486,23807],[125,81],[140,34]],[[98751,23922],[55,17]],[[98806,23939],[173,83],[92,16]],[[99071,24038],[128,6],[159,-2]],[[99358,24042],[125,-14]],[[99483,24028],[60,-17],[170,-87]],[[99713,23924],[193,-55],[144,-76],[142,-18],[111,28],[115,71],[103,50]],[[100521,23924],[140,89],[103,49]],[[100764,24062],[119,69]],[[100883,24131],[136,41]],[[101019,24172],[111,32]],[[101130,24204],[120,62],[118,32]],[[101368,24298],[160,18],[92,22]],[[101620,24338],[145,78],[118,42]],[[101883,24458],[-20,316]],[[101863,24774],[-16,63],[-71,194]],[[101776,25031],[-36,279],[-14,67]],[[101726,25377],[-55,134]],[[101671,25511],[-30,130],[-18,176]],[[101623,25817],[-30,129]],[[101593,25946],[-62,165]],[[101531,26111],[-16,129],[-8,201]],[[101507,26441],[239,60]],[[101746,26501],[144,82],[103,48],[140,88]],[[102133,26719],[103,51],[69,51],[149,136],[150,82],[141,87]],[[102745,27126],[103,48],[142,86]],[[102990,27260],[103,48],[140,86],[78,37]],[[103311,27431],[116,81],[125,119]],[[103552,27631],[103,92]],[[103655,27723],[78,18]],[[103733,27741],[142,65]],[[103875,27806],[138,33]],[[104013,27839],[55,18],[122,61]],[[104190,27918],[54,21]],[[104244,27939],[224,34]],[[104468,27973],[62,14]],[[104530,27987],[148,72],[103,25]],[[104781,28084],[70,-8]],[[104851,28076],[55,-48]],[[104906,28028],[100,-42],[165,-54],[142,-83]],[[105313,27849],[106,-46],[155,-85]],[[105574,27718],[-34,-226]],[[105540,27492],[-18,-62],[-68,-117],[-113,-127]],[[105341,27186],[-149,-127],[-122,-60],[-55,-49]],[[105015,26950],[-23,-45]],[[104992,26905],[0,-57],[37,-65]],[[105029,26783],[63,-44]],[[105092,26739],[96,-45],[118,-70],[106,-47]],[[105412,26577],[118,-68]],[[105530,26509],[117,-34],[97,-7]],[[46380,38948],[44,-217]],[[46424,38731],[103,-243],[45,-75],[81,-77]],[[46653,38336],[124,-66],[117,-72]],[[46894,38198],[103,-49],[118,-69]],[[47115,38080],[149,-38]],[[47264,38042],[159,-4],[126,15],[59,18]],[[47608,38071],[175,85]],[[47783,38156],[158,21]],[[47941,38177],[780,2],[144,-4],[134,-16]],[[48999,38159],[100,-44]],[[49099,38115],[-14,-285]],[[49085,37830],[3,-286],[6,-69]],[[49094,37475],[30,-127],[54,-133]],[[49178,37215],[22,-103]],[[49200,37112],[11,-254]],[[49211,36858],[-6,-293]],[[49205,36565],[-25,-139]],[[49180,36426],[-66,-160],[-59,-244],[-86,-190],[-54,-151],[-52,-90],[-45,-114]],[[48818,35477],[-67,-129],[-72,-166]],[[48679,35182],[-50,-73],[-97,-115]],[[48532,34994],[-31,-81],[-31,-123]],[[48470,34790],[-10,-164],[-17,-94],[-67,-161]],[[48376,34371],[-50,-214],[-68,-161],[-25,-90]],[[48233,33906],[-11,-164]],[[48222,33742],[15,-129]],[[48237,33613],[19,-59],[109,-245],[74,-110]],[[48439,33199],[135,-130]],[[48574,33069],[128,-66],[67,-49]],[[48769,32954],[86,-83],[102,-112]],[[48957,32759],[-110,-94]],[[48847,32665],[-126,-67]],[[48721,32598],[-45,-32],[-152,-138]],[[48524,32428],[-89,-60],[-82,-39]],[[48353,32329],[-141,-87]],[[48212,32242],[-126,-65]],[[48086,32177],[-45,-34]],[[48041,32143],[-174,-154],[-170,-100],[-196,-171]],[[47501,31718],[-127,-66],[-140,-87]],[[47234,31565],[-209,-87]],[[47025,31478],[-128,-79]],[[46897,31399],[-122,-107],[-165,-176]],[[46610,31116],[-42,-40]],[[46568,31076],[-89,-62]],[[46479,31014],[-108,-51],[-116,-72]],[[46255,30891],[-104,-49]],[[46151,30842],[-111,-92]],[[46040,30750],[-209,-217]],[[45831,30533],[-92,-64],[-77,-35]],[[45662,30434],[-114,-58],[-45,-12]],[[45503,30364],[-37,-1]],[[45466,30363],[-95,33],[-156,67]],[[45215,30463],[-85,54],[-54,66]],[[45076,30583],[-72,163]],[[45004,30746],[-31,49]],[[44973,30795],[-111,138],[-81,89],[-163,159]],[[44618,31181],[-67,95],[-103,99],[-50,24]],[[44398,31399],[-128,11],[-76,-20],[-48,-30],[-102,-100]],[[44044,31260],[-295,-333],[-807,-894],[-103,-110]],[[42839,29923],[-109,-97],[-126,-64]],[[42604,29762],[-111,-90]],[[42493,29672],[-206,-224],[-98,-115],[-100,-160],[-44,-32]],[[42045,29141],[-69,-144],[-115,-158],[-62,-62],[-91,-61]],[[41708,28716],[-181,-81]],[[41527,28635],[-100,-44]],[[41427,28591],[-190,-125]],[[41237,28466],[-84,-24]],[[41153,28442],[-175,-20]],[[40978,28422],[-111,-30],[-120,-60],[-195,-51]],[[40552,28281],[-52,-21],[-248,-138]],[[40252,28122],[-73,-64]],[[40179,28058],[-92,-97],[-184,-203]],[[39903,27758],[-138,-38],[-117,-70]],[[39648,27650],[-104,-49],[-89,-71],[-105,-108]],[[39350,27422],[-1019,-1129]],[[38331,26293],[-106,-102],[-136,-90],[-92,-111],[-45,-21]],[[37952,25969],[-45,-30],[-150,-132]],[[37757,25807],[-45,-34],[-125,-68],[-72,-53]],[[37515,25652],[-67,-64],[-214,-232]],[[37234,25356],[-80,-99]],[[37154,25257],[-48,-78],[-45,-115]],[[37061,25064],[-80,-189]],[[36981,24875],[-23,-257],[-20,-95],[-39,-79]],[[36899,24444],[-127,-193]],[[36772,24251],[50,-116],[48,-152]],[[36870,23983],[58,-127],[13,-120]],[[36941,23736],[-30,-83],[-136,-188],[-79,-160],[-50,-69],[-63,-54],[-100,-53]],[[36483,23129],[-45,-32],[-153,-137]],[[36285,22960],[-43,-34],[-269,-146]],[[35973,22780],[-161,-29]],[[35812,22751],[-134,-2],[-307,4]],[[35371,22753],[-84,75],[-79,42],[-95,18]],[[35113,22888],[-95,0]],[[35018,22888],[-125,-27],[-120,-63],[-83,-29],[-124,-12]],[[34566,22757],[-253,-4]],[[34313,22753],[-124,-21]],[[34189,22732],[-53,-25],[-109,-88]],[[34027,22619],[-70,95]],[[33957,22714],[-77,164]],[[33880,22878],[-62,131],[-19,58]],[[33799,23067],[-15,229]],[[33784,23296],[-136,42]],[[33648,23338],[-119,69],[-103,49],[-140,88],[-103,51],[-117,69]],[[33066,23664],[-55,22],[-95,16],[-98,3]],[[32818,23705],[-131,-4],[-138,-15]],[[32549,23686],[11,237]],[[32560,23923],[7,1346],[190,65],[67,30]],[[32824,25364],[115,73]],[[32939,25437],[85,40],[87,62]],[[33111,25539],[64,59],[86,78],[47,32]],[[33308,25708],[103,50],[140,87]],[[33551,25845],[128,64]],[[33679,25909],[173,153]],[[33852,26062],[44,35]],[[33896,26097],[126,68]],[[34022,26165],[24,17]],[[34046,26182],[48,38],[219,225],[125,85],[135,40]],[[34573,26570],[99,35]],[[34672,26605],[28,118]],[[34700,26723],[87,114]],[[34787,26837],[86,76]],[[34873,26913],[173,95]],[[35046,27008],[109,100]],[[35155,27108],[205,224]],[[35360,27332],[92,119],[28,52]],[[35480,27503],[98,262]],[[35578,27765],[28,103],[16,107]],[[35622,27975],[3,144],[-9,107]],[[35616,28226],[-30,101]],[[35586,28327],[-150,265]],[[35436,28592],[-76,245],[-78,155],[-45,115]],[[35237,29107],[-47,75],[-106,142]],[[35084,29324],[-46,75]],[[35038,29399],[-45,115],[-78,155],[-42,116]],[[34873,29785],[-76,157]],[[34797,29942],[-44,115],[-45,77]],[[34708,30134],[-55,70],[-86,79]],[[34567,30283],[-48,29],[-116,24]],[[34403,30336],[-189,-7],[-109,22]],[[34105,30351],[-54,17],[-122,62]],[[33929,30430],[-117,32],[-158,18]],[[33654,30480],[-92,24],[-72,41]],[[33490,30545],[-195,138]],[[33295,30683],[39,183],[56,134],[32,154]],[[33422,31154],[6,132],[153,173]],[[33581,31459],[70,108],[47,114]],[[33698,31681],[78,156],[42,116]],[[33818,31953],[80,155],[43,115]],[[33941,32223],[78,155]],[[34019,32378],[46,115],[79,155],[44,115],[62,131]],[[34250,32894],[25,90]],[[34275,32984],[22,226],[28,121]],[[34325,33331],[58,133],[44,191]],[[34427,33655],[190,85],[101,65],[118,105]],[[34836,33910],[76,53],[175,71]],[[35087,34034],[84,110],[83,79]],[[35254,34223],[150,80]],[[35404,34303],[117,72],[104,47]],[[35625,34422],[141,85],[129,65],[48,38]],[[35943,34610],[175,183],[58,75]],[[36176,34868],[48,81],[46,115],[78,156]],[[36348,35220],[43,115]],[[36391,35335],[78,156],[44,115],[165,293],[38,133],[20,125]],[[36736,36157],[28,123]],[[36764,36280],[72,158]],[[36836,36438],[42,118],[91,218]],[[36969,36774],[115,204]],[[37084,36978],[106,246],[25,90]],[[37215,37314],[22,226]],[[37237,37540],[19,93],[78,160]],[[37334,37793],[75,165],[78,101],[93,87]],[[37580,38146],[152,82],[117,73],[104,48]],[[37953,38349],[144,78],[56,15]],[[38153,38442],[194,26],[48,19]],[[38395,38487],[55,55],[61,95],[79,97]],[[38590,38734],[89,85],[108,80]],[[38787,38899],[29,44]],[[38816,38943],[80,147],[39,116]],[[38935,39206],[41,222]],[[38976,39428],[146,-30],[105,-43]],[[39227,39355],[175,-119]],[[39402,39236],[29,-45],[86,-177],[19,-57],[34,-186],[22,-60]],[[39592,38711],[33,-56],[81,-103]],[[39706,38552],[420,-470],[67,-70]],[[40193,38012],[73,-59],[112,-36]],[[40378,37917],[116,11],[53,20]],[[40547,37948],[117,69],[136,51]],[[40800,38068],[109,56]],[[40909,38124],[53,89],[5,32]],[[40967,38245],[-3,29],[232,55]],[[41196,38329],[105,46],[226,153],[20,81],[60,127]],[[41607,38736],[57,141]],[[41664,38877],[50,74],[80,87]],[[41794,39038],[67,55],[126,67]],[[41987,39160],[46,31],[151,136],[69,50],[103,50]],[[42356,39427],[142,81]],[[42498,39508],[112,29]],[[42610,39537],[503,-568]],[[43113,38969],[64,-57],[71,-33]],[[43248,38879],[91,5]],[[43339,38884],[70,41]],[[43409,38925],[183,145]],[[43592,39070],[231,83],[140,86]],[[43963,39239],[128,62],[117,74],[105,47],[140,86],[128,66],[70,59]],[[44651,39633],[89,91],[448,505]],[[45188,40229],[69,62],[79,41]],[[45336,40332],[145,5],[55,-16],[170,-88]],[[45706,40233],[86,-16],[120,-7],[8,-165]],[[45920,40045],[9,-63]],[[45929,39982],[124,-305],[67,-129]],[[46120,39548],[57,-140]],[[46177,39408],[78,-156],[125,-304]],[[144334,47684],[-6,-1146],[-8,-263],[237,-175],[127,-64]],[[144684,46036],[118,-66],[138,-26]],[[144940,45944],[65,7],[72,80]],[[145077,46031],[89,91],[101,197],[58,135],[70,90]],[[145395,46544],[77,44],[64,16]],[[145536,46604],[98,7],[410,-4]],[[146044,46607],[135,-9],[120,-35],[117,-70]],[[146416,46493],[103,-50],[117,-70],[115,-34],[96,-8]],[[146847,46331],[293,0],[25,-72],[31,-41],[172,-122]],[[147368,46096],[126,-62],[142,-85]],[[147636,45949],[105,-48],[140,-86]],[[147881,45815],[153,-88],[141,-127]],[[148175,45600],[75,-55]],[[148250,45545],[103,-52],[138,-87]],[[148491,45406],[105,-49],[140,-86],[105,-51],[139,-89]],[[148980,45131],[217,-113]],[[149197,45018],[53,-15]],[[149250,45003],[106,15]],[[149356,45018],[145,69]],[[149501,45087],[59,13]],[[149560,45100],[94,9],[740,4]],[[150394,45113],[159,-6],[145,-38]],[[150698,45069],[117,-70],[197,-106]],[[151012,44893],[48,-25]],[[151060,44868],[86,-22],[147,-16]],[[151293,44830],[404,6],[101,8]],[[151798,44844],[127,38],[327,181]],[[152252,45063],[94,32]],[[152346,45095],[136,14],[310,-1]],[[152792,45108],[139,4]],[[152931,45112],[190,35]],[[153121,45147],[63,33]],[[153184,45180],[109,-52]],[[153293,45128],[-11,-12]],[[153282,45116],[-65,-97]],[[153217,45019],[-13,-131]],[[153204,44888],[50,-338],[-17,-188],[-33,-81]],[[153204,44281],[-81,-197],[-320,-531],[-6,-177]],[[152797,43376],[62,-251],[28,-74]],[[152887,43051],[47,-117],[8,-68]],[[152942,42866],[-20,-94]],[[152922,42772],[-142,-237],[-7,-66],[58,-220],[5,-58]],[[152836,42191],[6,-89],[-75,-208],[-67,-95]],[[152700,41799],[-223,-38]],[[152477,41761],[-192,-103],[-156,-116]],[[152129,41542],[-192,-69]],[[151937,41473],[-131,-91],[-98,-29]],[[151708,41353],[-67,36],[-80,103],[-83,74],[-104,49]],[[151374,41615],[-213,164]],[[151161,41779],[-84,26],[-256,-41]],[[150821,41764],[-146,-51],[-38,-43],[-100,-67]],[[150537,41603],[-26,-161],[-24,-22]],[[150487,41420],[-78,7],[-32,23],[62,172],[-19,65],[-89,-11],[-154,50]],[[150177,41726],[-38,11]],[[150139,41737],[-150,24],[-120,-3]],[[149869,41758],[-48,-11],[-13,-53]],[[149808,41694],[15,-120]],[[149823,41574],[-19,-42]],[[149804,41532],[-152,-85],[-15,-36],[0,-112],[20,-70]],[[149657,41229],[-137,131],[-175,-71]],[[149345,41289],[-175,-86]],[[149170,41203],[-95,-17],[-133,-7]],[[148942,41179],[-232,2],[-130,12]],[[148580,41193],[-92,23],[-145,72],[-61,17]],[[148282,41305],[-128,14],[-220,7]],[[147934,41326],[-655,-4],[-176,4]],[[147103,41326],[-160,12],[-73,-52],[-92,-84]],[[146778,41202],[-108,-117],[-79,-99]],[[146591,40986],[-49,-80],[-59,-141]],[[146483,40765],[-117,-215]],[[146366,40550],[-201,-71],[-170,-88]],[[145995,40391],[-58,-10]],[[145937,40381],[-116,9]],[[145821,40390],[-28,9]],[[145793,40399],[-217,121]],[[145576,40520],[-100,71],[-115,107],[-100,69]],[[145261,40767],[-76,39],[-96,75]],[[145089,40881],[-109,114]],[[144980,40995],[-100,125],[-46,80],[-33,86]],[[144801,41286],[-81,137],[-63,73]],[[144657,41496],[-73,60]],[[144584,41556],[-114,39]],[[144470,41595],[-148,5],[-152,-18],[-139,-45]],[[144031,41537],[-137,123],[-72,46],[-114,29]],[[143708,41735],[-148,-4],[-86,-25],[-100,-73]],[[143374,41633],[-137,-135]],[[143237,41498],[-136,-113],[-57,-105],[-133,-182],[-89,-143]],[[142822,40955],[-150,-107]],[[142672,40848],[-103,-49]],[[142569,40799],[-126,-16],[-98,1]],[[142345,40784],[-158,16]],[[142187,40800],[-158,-6],[-143,-29]],[[141886,40765],[-49,-32]],[[141837,40733],[-56,-66]],[[141781,40667],[-34,-121]],[[141747,40546],[6,-95]],[[141753,40451],[17,-62],[69,-93]],[[141839,40296],[44,-34],[149,-84],[195,-158],[100,-54]],[[142327,39966],[103,-92]],[[142430,39874],[41,-83]],[[142471,39791],[12,-64]],[[142483,39727],[8,-170],[-6,-492]],[[142485,39065],[-9,-102]],[[142476,38963],[-14,-65],[-36,-80]],[[142426,38818],[-96,-167]],[[142330,38651],[-174,-118]],[[142156,38533],[-50,-24]],[[142106,38509],[-195,-48],[-53,-20]],[[141858,38441],[-121,-61]],[[141737,38380],[-221,-62]],[[141516,38318],[-78,-52],[-144,-123]],[[141294,38143],[-103,-41],[-165,-54]],[[141026,38048],[-145,-74],[-92,-22]],[[140789,37952],[-220,-33]],[[140569,37919],[-177,-81]],[[140392,37838],[-61,-17]],[[140331,37821],[-129,-12],[-364,-1],[-65,-6]],[[139773,37802],[-119,-34]],[[139654,37768],[-117,-68],[-104,-49]],[[139433,37651],[-141,-85],[-133,-54]],[[139159,37512],[-84,-48]],[[139075,37464],[-19,310]],[[139056,37774],[-10,96],[-25,90]],[[139021,37960],[-57,132],[-20,98]],[[138944,38190],[-6,138],[-2,386]],[[138936,38714],[-23,168]],[[138913,38882],[-117,273],[-67,129],[-56,141]],[[138673,39425],[-78,156],[-53,142]],[[138542,39723],[-127,265]],[[138415,39988],[-98,100]],[[138317,40088],[-237,116],[-50,82]],[[138030,40286],[-57,78]],[[137973,40364],[-229,261],[-78,97]],[[137666,40722],[-47,79],[-36,91]],[[137583,40892],[-76,126]],[[137507,41018],[-272,306],[-57,74]],[[137178,41398],[-53,109],[-44,219]],[[137081,41726],[-72,158]],[[137009,41884],[-44,115],[-79,155]],[[136886,42154],[-44,114]],[[136842,42268],[-75,159]],[[136767,42427],[-12,54]],[[136755,42481],[-11,205]],[[136744,42686],[65,30]],[[136809,42716],[36,33],[99,164]],[[136944,42913],[70,166],[78,157],[43,115]],[[137135,43351],[63,130],[26,95]],[[137224,43576],[10,70]],[[137234,43646],[4,254]],[[137238,43900],[-4,105],[-19,127],[-73,191]],[[137142,44323],[-21,104],[-9,147]],[[137112,44574],[-1,372],[-5,199],[8,214],[-8,99]],[[137106,45458],[-14,63],[-117,270]],[[136975,45791],[-91,109]],[[136884,45900],[-48,30]],[[136836,45930],[-169,92]],[[136667,46022],[-78,33],[-87,13]],[[136502,46068],[-239,10],[-59,8]],[[136204,46086],[-105,40]],[[136099,46126],[-93,57],[-105,48]],[[135901,46231],[-142,82],[-55,18]],[[135704,46331],[-168,41]],[[135536,46372],[-48,24]],[[135488,46396],[-171,90]],[[135317,46486],[-24,15]],[[135293,46501],[-97,101]],[[135196,46602],[-27,54]],[[135169,46656],[-104,267],[-13,64]],[[135052,46987],[-3,62]],[[135049,47049],[14,93]],[[135063,47142],[44,76]],[[135107,47218],[42,38]],[[135149,47256],[83,35],[92,11]],[[135324,47302],[126,0]],[[135450,47302],[223,-17]],[[135673,47285],[60,-13]],[[135733,47272],[173,-88],[112,-26]],[[136018,47158],[89,-3],[117,15]],[[136224,47170],[53,21],[117,71]],[[136394,47262],[153,89],[141,128]],[[136688,47479],[48,39],[151,81],[117,74]],[[137004,47673],[103,50],[75,56]],[[137182,47779],[117,106]],[[137299,47885],[49,39],[234,130]],[[137582,48054],[104,-64],[124,-99]],[[137810,47891],[153,-88]],[[137963,47803],[118,-68]],[[138081,47735],[86,-29],[97,-13]],[[138264,47693],[298,-3],[100,5]],[[138662,47695],[157,28]],[[138819,47723],[172,83],[164,47],[43,22]],[[139198,47875],[60,44]],[[139258,47919],[161,29],[221,20],[133,36],[72,54]],[[139845,48058],[48,21],[207,35]],[[140100,48114],[61,18],[392,207],[95,23]],[[140648,48362],[192,10]],[[140840,48372],[153,82]],[[140993,48454],[142,43],[159,17],[117,33],[120,62]],[[141531,48609],[221,65],[143,73],[114,18]],[[142009,48765],[112,-20]],[[142121,48745],[144,-71],[59,-18]],[[142324,48656],[94,-12]],[[142418,48644],[192,-12],[92,-15]],[[142702,48617],[150,-71]],[[142852,48546],[117,-33]],[[142969,48513],[159,-20],[117,-33]],[[143245,48460],[120,-61],[61,-16],[253,-38]],[[143679,48345],[175,-82],[110,-32]],[[143964,48231],[125,-9],[58,-18]],[[144147,48204],[61,-56]],[[144208,48148],[59,-103]],[[144267,48045],[52,-131],[14,-113],[1,-117]],[[69518,35185],[78,-156],[33,-86]],[[69629,34943],[76,-128]],[[69705,34815],[97,-115],[73,-34]],[[69875,34666],[110,-34]],[[69985,34632],[-11,-62]],[[69974,34570],[-16,-61],[-58,-132]],[[69900,34377],[-18,-58]],[[69882,34319],[-30,-156],[-39,-114]],[[69813,34049],[-51,-104],[-44,-115]],[[69718,33830],[-83,-154],[-45,-114]],[[69590,33562],[-61,-126],[-16,-59],[5,-93]],[[69518,33284],[19,-54]],[[69537,33230],[97,-211]],[[69634,33019],[93,-106],[123,-67],[68,-50],[120,-128]],[[70038,32668],[33,-50],[59,-141]],[[70130,32477],[75,-156],[75,-224]],[[70280,32097],[23,-81]],[[70303,32016],[70,-215]],[[70373,31801],[70,-160],[79,-308],[23,-8]],[[70545,31325],[14,-9]],[[70559,31316],[20,-34],[39,-156],[60,-180]],[[70678,30946],[3,-38],[146,-83]],[[70827,30825],[47,-36]],[[70874,30789],[119,-130]],[[70993,30659],[53,-98]],[[71046,30561],[12,-55]],[[71058,30506],[-68,-191]],[[70990,30315],[-16,-62]],[[70974,30253],[-28,-246],[-33,-134]],[[70913,29873],[-51,-128],[-16,-68]],[[70846,29677],[-14,-178]],[[70832,29499],[-5,-515],[-23,-199],[45,-101],[84,-155],[107,-245]],[[71040,28284],[34,-164],[3,-105]],[[71077,28015],[-2,-179],[-10,-171],[9,-139],[-8,-131],[-19,-61],[-46,-71]],[[71001,27263],[-92,-61],[-80,-18]],[[70829,27184],[-66,-58]],[[70763,27126],[-190,-117]],[[70573,27009],[-75,-84]],[[70498,26925],[-72,-162]],[[70426,26763],[-65,-129],[-33,-87]],[[70328,26547],[-27,-55]],[[70301,26492],[-149,-220]],[[70152,26272],[-72,-158]],[[70080,26114],[-47,-62],[-90,-30]],[[69943,26022],[-206,102],[-114,75],[-53,22],[-116,12]],[[69454,26233],[-86,-18]],[[69368,26215],[-243,-132],[-44,-35],[-69,-92],[-106,-243]],[[68906,25713],[-36,-152]],[[68870,25561],[-260,2],[-95,-5]],[[68515,25558],[-153,-41],[-113,-66]],[[68249,25451],[-103,-49],[-114,-65],[-121,-38]],[[67911,25299],[-220,-33]],[[67691,25266],[-177,-79]],[[67514,25187],[-160,-27]],[[67354,25160],[-267,-8],[-161,-28],[-147,-69],[-59,-16]],[[66720,25039],[-94,-13],[-190,-12],[-92,-16]],[[66344,24998],[-59,-22]],[[66285,24976],[-116,-58],[-126,-26]],[[66043,24892],[-98,-6]],[[65945,24886],[-473,3],[-164,-11]],[[65308,24878],[-94,-22],[-176,-82]],[[65038,24774],[-131,-20],[-239,-1]],[[64668,24753],[-229,18],[-199,-22]],[[64240,24749],[-95,-19],[-176,-81],[-130,-27],[-103,-6]],[[63736,24616],[-135,4],[-102,12],[-93,23],[-245,109]],[[63161,24764],[-88,69],[-50,70],[-47,109]],[[62976,25012],[-85,130]],[[62891,25142],[-164,196]],[[62727,25338],[-69,105]],[[62658,25443],[-45,114],[-78,156]],[[62535,25713],[-42,115],[-78,156]],[[62415,25984],[-44,115]],[[62371,26099],[-78,156],[-44,115]],[[62249,26370],[-79,156],[-44,115]],[[62126,26641],[-63,131],[-24,88]],[[62039,26860],[-30,155]],[[62009,27015],[-125,304],[-80,154]],[[61804,27473],[-95,218]],[[61709,27691],[-37,117],[-10,98]],[[61662,27906],[0,371]],[[61662,28277],[44,151]],[[61706,28428],[128,184],[63,110],[98,216]],[[61995,28938],[19,57],[28,156]],[[62042,29151],[39,114]],[[62081,29265],[81,172]],[[62162,29437],[-8,194],[8,164],[20,95]],[[62182,29890],[73,194]],[[62255,30084],[30,244]],[[62285,30328],[13,69]],[[62298,30397],[73,194],[56,246],[69,160]],[[62496,30997],[54,245],[67,160]],[[62617,31402],[54,249],[95,222]],[[62766,31873],[40,69],[97,97],[120,69]],[[63023,32108],[58,60]],[[63081,32168],[80,158]],[[63161,32326],[87,129]],[[63248,32455],[181,220],[45,78]],[[63474,32753],[19,51]],[[63493,32804],[108,52],[162,62],[117,71]],[[63880,32989],[128,64],[164,120]],[[64172,33173],[301,136],[140,87],[105,48]],[[64718,33444],[142,82],[55,18]],[[64915,33544],[167,43],[118,63],[147,36],[126,6],[771,-7]],[[66244,33685],[155,19]],[[66399,33704],[107,63]],[[66506,33767],[69,67],[353,397]],[[66928,34231],[134,143],[93,76]],[[67155,34450],[74,32]],[[67229,34482],[154,269]],[[67383,34751],[32,102]],[[67415,34853],[7,68]],[[67422,34921],[-6,125]],[[67416,35046],[-19,47]],[[67397,35093],[-14,17]],[[67383,35110],[-47,5]],[[67336,35115],[-56,291],[-78,191]],[[67202,35597],[-45,215]],[[67157,35812],[-76,190]],[[67081,36002],[-49,215]],[[67032,36217],[-76,188],[-17,94],[3,97]],[[66942,36596],[12,62],[72,157]],[[67026,36815],[50,112],[67,95]],[[67143,37022],[108,105]],[[67251,37127],[448,-501],[106,-112],[90,-78]],[[67895,36436],[127,-67],[71,-53]],[[68093,36316],[88,-87],[253,-279]],[[68434,35950],[96,-70]],[[68530,35880],[86,-23],[269,-9],[87,-13]],[[68972,35835],[53,-19],[119,-69]],[[69144,35747],[99,-51],[82,-77]],[[69325,35619],[31,-49]],[[69356,35570],[45,-113],[77,-156]],[[69478,35301],[40,-116]],[[81803,58857],[229,11]],[[82032,58868],[147,34],[179,-73],[144,-77],[160,-31],[169,-4]],[[82831,58717],[165,12]],[[82996,58729],[96,24],[120,63]],[[83212,58816],[151,38]],[[83363,58854],[268,6],[197,-25],[180,-60],[113,-99]],[[84121,58676],[66,-53]],[[84187,58623],[245,-132],[81,-22]],[[84513,58469],[113,3]],[[84626,58472],[99,44]],[[84725,58516],[225,109]],[[84950,58625],[45,35]],[[84995,58660],[174,153]],[[85169,58813],[126,67],[72,53],[90,86]],[[85457,59019],[144,169]],[[85601,59188],[45,84]],[[85646,59272],[25,128]],[[85671,59400],[5,99],[-5,304]],[[85671,59803],[86,74],[23,78],[8,108]],[[85788,60063],[131,10],[230,-2]],[[86149,60071],[95,-17]],[[86244,60054],[171,-91]],[[86415,59963],[197,-106]],[[86612,59857],[48,-24]],[[86660,59833],[92,-24],[225,-25]],[[86977,59784],[183,-46],[-20,-174]],[[87140,59564],[-4,-165]],[[87136,59399],[16,-95],[39,-82]],[[87191,59222],[58,-62]],[[87249,59160],[47,-31]],[[87296,59129],[98,-54],[215,-180],[167,-113]],[[87776,58782],[-90,-134]],[[87686,58648],[-42,-74],[-108,-240],[-13,-52]],[[87523,58282],[-1,-50]],[[87522,58232],[31,-102],[170,-235]],[[87723,57895],[120,-273]],[[87843,57622],[19,-95]],[[87862,57527],[28,-256],[66,-161]],[[87956,57110],[17,-58]],[[87973,57052],[5,-159],[-13,-61],[-75,-190],[-30,-256],[-18,-94]],[[87842,56292],[-119,-273]],[[87723,56019],[-69,-105],[-166,-193]],[[87488,55721],[-60,-75]],[[87428,55646],[-65,-104],[-170,-144]],[[87193,55398],[-117,-135],[-46,-76],[-73,-164]],[[86957,55023],[-119,-167],[-62,-100]],[[86776,54756],[-270,-141]],[[86506,54615],[-219,-186],[-149,-85]],[[86138,54344],[-92,-82],[-175,-183],[-95,-76]],[[85776,54003],[-195,-108]],[[85581,53895],[-107,-42]],[[85474,53853],[-89,-11]],[[85385,53842],[-212,-1],[-148,12]],[[85025,53853],[-86,22],[-120,61]],[[84819,53936],[-117,32]],[[84702,53968],[-158,19],[-92,26]],[[84452,54013],[-54,34]],[[84398,54047],[-50,41],[-184,193]],[[84164,54281],[-125,98]],[[84039,54379],[-169,94]],[[83870,54473],[-79,34]],[[83791,54507],[-94,16]],[[83697,54523],[-128,5],[-521,3],[-64,-4]],[[82984,54527],[-120,-30],[-86,-72],[-31,-48]],[[82747,54377],[-121,-266],[-43,-116]],[[82583,53995],[-88,-167],[-50,-122],[-81,-216]],[[82364,53490],[-103,-194],[-43,-115],[-80,-155],[-45,-114],[-50,-83]],[[82043,52829],[-131,-184]],[[81912,52645],[-63,-138],[-31,-48]],[[81818,52459],[-81,-77]],[[81737,52382],[-101,-51],[-139,-86],[-106,-46],[-142,-81]],[[81249,52118],[-197,-47],[-170,-90]],[[80882,51981],[-155,-85]],[[80727,51896],[-46,-43]],[[80681,51853],[-114,-117],[-155,-173]],[[80412,51563],[-112,-159]],[[80300,51404],[-47,-114]],[[80253,51290],[-72,-159]],[[80181,51131],[-17,-94]],[[80164,51037],[-8,-166]],[[80156,50871],[-866,-4],[-98,4],[-95,18]],[[79097,50889],[-86,45]],[[79011,50934],[-97,90]],[[78914,51024],[-133,161],[-87,141]],[[76746,61349],[210,-67]],[[76956,61282],[146,-75],[85,-27],[124,-13],[255,-3]],[[77566,61164],[121,-18],[55,-20]],[[77742,61126],[222,-120],[140,-88]],[[78104,60918],[192,-96]],[[78296,60822],[45,-16]],[[78341,60806],[63,-4],[262,-64],[203,-93]],[[78869,60645],[220,-33]],[[79089,60612],[117,-34],[150,-69]],[[79356,60509],[92,-15]],[[79448,60494],[284,-8],[125,-14],[82,-33],[109,-88]],[[80048,60351],[64,-59]],[[80112,60292],[89,-62]],[[80201,60230],[128,-73],[195,-171]],[[80524,59986],[44,-26]],[[80568,59960],[128,-74],[64,-59],[166,-173]],[[80926,59654],[110,-89]],[[81036,59565],[127,-66]],[[81163,59499],[67,-54],[79,-88],[47,-75],[28,-78]],[[81384,59204],[24,-135]],[[81408,59069],[76,-66]],[[81484,59003],[103,-81],[59,-34]],[[81646,58888],[157,-31]],[[65643,51902],[-174,-228],[-78,-121],[-49,-113]],[[65342,51440],[-50,-79],[-203,-244]],[[65089,51117],[-68,-105]],[[65021,51012],[-47,-114],[-78,-155],[-44,-115],[-78,-156]],[[64774,50472],[-44,-115],[-64,-130],[-48,-213]],[[64618,50014],[-16,-61],[-76,-191]],[[64526,49762],[-41,-320]],[[64485,49442],[-85,-219]],[[64400,49223],[-7,-159],[24,-90]],[[64417,48974],[64,-129],[45,-114]],[[64526,48731],[81,-155]],[[64607,48576],[44,-115],[62,-130]],[[64713,48331],[36,-151]],[[64749,48180],[2,-361]],[[64751,47819],[-11,-105],[-36,-123],[-114,-234],[-76,-75]],[[64514,47282],[-66,-32]],[[64448,47250],[-175,-117]],[[64273,47133],[-129,-60],[-117,-71],[-124,-65],[-42,-35]],[[63861,46902],[-36,-42]],[[63825,46860],[-48,-101]],[[63777,46759],[-105,-48],[-138,-45]],[[63534,46666],[-141,-84],[-105,-49]],[[63288,46533],[-92,-72],[-64,-65],[-376,-417]],[[62756,45979],[-129,-172]],[[62627,45807],[-19,-38]],[[62608,45769],[-47,-129],[-43,-153]],[[62518,45487],[-75,-194]],[[62443,45293],[-16,-103],[-9,-210],[-11,-103]],[[62407,44877],[-16,-66],[-64,-162],[-28,-181]],[[62299,44468],[-3,-190],[5,-153],[15,-172]],[[62316,43953],[-23,-236]],[[62293,43717],[-33,-154]],[[62260,43563],[-64,-167],[-42,-313]],[[62154,43083],[-73,-195]],[[62081,42888],[-25,-169],[-10,-212],[-32,-163]],[[62014,42344],[-57,-133]],[[61957,42211],[-29,-123],[-19,-98]],[[61909,41990],[-50,-101],[-109,-142],[-49,-73]],[[61701,41674],[-87,-208],[-8,-52]],[[61606,41414],[5,-27]],[[61611,41387],[20,-49]],[[61631,41338],[86,-110]],[[61717,41228],[325,-353],[199,-7],[164,-29]],[[62405,40839],[172,-83],[137,-35]],[[62714,40721],[49,-97],[46,-148],[60,-128]],[[62869,40348],[15,-88]],[[62884,40260],[-17,-89],[-64,-126],[-45,-112],[-73,-153]],[[62685,39780],[-2,-123]],[[62683,39657],[20,-54]],[[62703,39603],[111,-240],[153,-220],[56,-132]],[[63023,39011],[25,-49]],[[63048,38962],[33,-40],[69,-32],[89,41]],[[63239,38931],[90,107]],[[63329,39038],[30,49],[57,142]],[[63416,39229],[86,132]],[[63502,39361],[144,171],[56,76]],[[63702,39608],[31,53]],[[63733,39661],[78,161],[78,84],[117,90]],[[64006,39996],[99,-220],[42,-118]],[[64147,39658],[76,-155],[35,-92]],[[64258,39411],[54,-100],[136,-161]],[[64448,39150],[128,-123]],[[64576,39027],[150,-81]],[[64726,38946],[140,-86],[127,-65]],[[64993,38795],[173,-155]],[[65166,38640],[67,-50],[103,-51]],[[65336,38539],[140,-87],[277,-118],[193,-69]],[[65946,38265],[142,-83],[105,-47]],[[66193,38135],[114,-67],[73,-26],[173,-120]],[[66553,37922],[128,-61],[116,-73]],[[66797,37788],[129,-62],[142,-85],[130,-58]],[[67198,37583],[149,-95]],[[67347,37488],[36,-37]],[[67383,37451],[11,-25]],[[67394,37426],[2,-86],[-36,-73],[-109,-140]],[[63493,32804],[-92,218],[-42,118]],[[63359,33140],[-77,156],[-43,115],[-78,156],[-44,115],[-67,129]],[[63050,33811],[-55,142],[-79,155]],[[62916,34108],[-47,114],[-50,80],[-95,129],[-57,116]],[[62667,34547],[-18,162],[1,509],[5,199],[9,97]],[[62664,35514],[16,62]],[[62680,35576],[76,191]],[[62756,35767],[11,66]],[[62767,35833],[8,103],[5,1301],[-8,138]],[[62772,37375],[-42,153]],[[62730,37528],[-95,218]],[[62635,37746],[-78,155]],[[62557,37901],[-44,115],[-66,130],[-45,112]],[[62402,38258],[-64,110]],[[62338,38368],[-61,77],[-240,271],[-41,52]],[[61996,38768],[-36,53]],[[61960,38821],[-73,169],[-64,130],[-54,142]],[[61769,39262],[-54,103],[-74,170]],[[61641,39535],[-57,81],[-174,205],[-39,55]],[[61371,39876],[-33,58]],[[61338,39934],[-70,196],[-32,122],[-128,-149],[-343,-391]],[[60765,39712],[-120,-110]],[[60645,39602],[-67,-25]],[[60578,39577],[-45,9],[-139,56]],[[60394,39642],[-113,3]],[[60281,39645],[-56,-16]],[[60225,39629],[-48,-31]],[[60177,39598],[-56,-64],[-58,-138]],[[60063,39396],[-70,-159],[-25,-125]],[[59968,39112],[-17,-99],[-68,-128]],[[59883,38885],[-57,-67],[-88,-77],[-106,-56]],[[59632,38685],[-86,-62]],[[59546,38623],[-101,-92],[-64,-36]],[[59381,38495],[-50,0]],[[59331,38495],[-84,55]],[[59247,38550],[-145,129]],[[59102,38679],[-269,149]],[[58833,38828],[-111,18]],[[58722,38846],[-85,4]],[[58637,38850],[-195,-14],[-80,-32],[-69,-55]],[[58293,38749],[-64,-65]],[[58229,38684],[-248,-279],[-273,-300]],[[57708,38105],[-136,-167]],[[57572,37938],[-89,-192]],[[57483,37746],[-129,-194]],[[57354,37552],[-67,-137]],[[57287,37415],[-108,-11]],[[57179,37404],[-45,7],[-214,103],[-117,71],[-55,22]],[[56748,37607],[-121,20],[-350,6],[-125,-8]],[[56152,37625],[-117,-39]],[[56035,37586],[-95,-84]],[[55940,37502],[-94,-128]],[[55846,37374],[-75,-165],[-73,-86],[-236,-137]],[[55462,36986],[-81,-16]],[[55381,36970],[-81,20],[-68,46]],[[55232,37036],[-144,125],[-194,63]],[[54894,37224],[-115,77]],[[54779,37301],[-105,153]],[[54674,37454],[-171,120]],[[54503,37574],[-75,36],[-141,31]],[[54287,37641],[-104,44]],[[54183,37685],[-219,139]],[[53964,37824],[-115,-42]],[[53849,37782],[-201,-40],[-52,-20]],[[53596,37722],[-97,-50],[-117,-33],[-159,-19]],[[53223,37620],[-117,-33]],[[53106,37587],[-120,-61],[-111,-32]],[[52875,37494],[-109,-32]],[[52766,37462],[-141,-73],[-56,-9]],[[52569,37380],[-79,17]],[[52490,37397],[-116,67]],[[52374,37464],[-126,68]],[[52248,37532],[-91,82]],[[52157,37614],[-254,281],[-137,118],[-103,49]],[[51663,38062],[-141,85]],[[51522,38147],[-104,48],[-69,51],[-61,63]],[[51288,38309],[-101,145],[-46,115]],[[51141,38569],[-84,131]],[[51057,38700],[-83,98],[-89,90]],[[50885,38888],[-70,59]],[[50815,38947],[-129,64]],[[50686,39011],[-70,43]],[[50616,39054],[118,118],[77,59],[103,52],[140,85],[105,46],[241,133],[63,56],[56,106]],[[51519,39709],[13,67],[9,244],[9,104],[24,94],[56,133],[23,137]],[[51653,40488],[6,180]],[[51659,40668],[0,805],[-7,107]],[[51652,41580],[-32,129]],[[51620,41709],[-54,132],[-20,100],[-10,177],[5,577]],[[51541,42695],[-8,105],[-20,101],[-116,274]],[[51397,43175],[-78,155],[-48,113],[-50,83],[-130,183]],[[51091,43709],[-98,196],[-117,161]],[[50876,44066],[-58,105]],[[50818,44171],[-96,217]],[[50722,44388],[-19,58],[-45,215],[-72,158]],[[50586,44819],[-44,115],[-73,158]],[[50469,45092],[-56,245]],[[50413,45337],[-75,191]],[[50338,45528],[-17,163]],[[50321,45691],[3,278]],[[50324,45969],[54,102]],[[50378,46071],[200,238],[34,47],[27,81]],[[50639,46437],[-2,26]],[[50637,46463],[-92,265]],[[50545,46728],[-31,65],[-69,337]],[[50445,47130],[-37,74]],[[50408,47204],[-44,30],[-106,16]],[[50258,47250],[-175,2]],[[50083,47252],[-87,14],[-80,39]],[[49916,47305],[-71,60]],[[49845,47365],[-166,193],[-51,79],[-63,140]],[[49565,47777],[-86,131],[-145,169],[-87,130],[-59,140],[-96,180]],[[49092,48527],[-87,48],[-136,55]],[[48869,48630],[-140,85],[-105,50],[-118,68]],[[48506,48833],[-56,22]],[[48450,48855],[-133,18]],[[48317,48873],[-312,3],[-138,9]],[[47867,48885],[-96,23],[-145,69],[-100,25]],[[47526,49002],[-174,11],[-497,-4]],[[46855,49009],[-242,17]],[[46613,49026],[-64,18],[-178,81]],[[46371,49125],[-134,20]],[[46237,49145],[-174,5],[-916,-1],[-173,8],[-115,20]],[[44859,49177],[-362,-30],[-91,-13]],[[44406,49134],[-59,-17],[-117,-56]],[[44230,49061],[-59,-23]],[[44171,49038],[-281,-49],[-60,-23]],[[43830,48966],[-117,-57],[-96,-22]],[[43617,48887],[-239,-11],[-172,6]],[[43206,48882],[-154,10]],[[43052,48892],[-81,30],[-167,110]],[[42804,49032],[-18,20]],[[42786,49052],[-34,88]],[[42752,49140],[-8,67]],[[42744,49207],[3,434],[-15,142]],[[42732,49783],[-36,100],[-86,167]],[[42610,50050],[-33,46],[-84,78]],[[42493,50174],[-92,123]],[[42401,50297],[114,304]],[[42515,50601],[81,138]],[[42596,50739],[64,75],[399,443],[164,154],[153,79],[119,71]],[[43495,51561],[104,47]],[[43599,51608],[52,35],[92,87]],[[43743,51730],[70,104],[17,124]],[[43830,51958],[-14,57],[-65,156],[-11,63]],[[43740,52234],[-13,266]],[[43727,52500],[0,408],[13,231],[26,90]],[[43766,53229],[155,271],[175,-21]],[[44096,53479],[139,-37]],[[44235,53442],[120,-62],[54,-18]],[[44409,53362],[192,-56]],[[44601,53306],[117,-69],[105,-48]],[[44823,53189],[140,-88],[102,-53]],[[45065,53048],[75,-55],[115,-107],[100,-71]],[[45355,52815],[220,-117],[84,-21]],[[45659,52677],[147,-17]],[[45806,52660],[137,-36],[120,-62]],[[46063,52562],[58,-16],[123,-12]],[[46244,52534],[319,-2]],[[46563,52532],[123,-9],[89,-22],[173,-81]],[[46948,52420],[86,-16],[119,-8],[165,-2]],[[47318,52394],[130,-13],[61,-17]],[[47509,52364],[143,-72]],[[47652,52292],[61,-19],[162,-16]],[[47875,52257],[167,-4],[197,8]],[[48239,52261],[95,19],[58,27]],[[48392,52307],[171,142]],[[48563,52449],[132,67],[193,38],[125,47]],[[49013,52601],[69,49],[181,19]],[[49263,52669],[99,-6],[133,-29],[83,-42]],[[49578,52592],[68,-39]],[[49646,52553],[86,-20]],[[49732,52533],[155,-9],[159,4]],[[50046,52528],[123,21]],[[50169,52549],[175,82],[153,28]],[[50497,52659],[190,10],[149,35]],[[50836,52704],[120,62],[220,62],[145,75],[195,51]],[[51516,52954],[51,20]],[[51567,52974],[122,63],[55,17]],[[51744,53054],[167,43]],[[51911,53097],[143,80],[103,48]],[[52157,53225],[141,88],[101,54]],[[52399,53367],[191,160],[78,50],[84,27],[173,26],[178,-17],[232,-4]],[[53335,53609],[236,-2]],[[53571,53607],[119,-13],[79,-28]],[[53769,53566],[120,-63],[58,-18]],[[53947,53485],[61,-9]],[[54008,53476],[189,-10],[253,1]],[[54450,53467],[153,31]],[[54603,53498],[76,52]],[[54679,53550],[87,93]],[[54766,53643],[71,108]],[[54837,53751],[95,196]],[[54932,53947],[129,184],[82,169]],[[55143,54300],[151,208]],[[55294,54508],[33,56],[114,268]],[[55441,54832],[0,122]],[[55441,54954],[-71,185],[-39,185]],[[55331,55324],[-78,190],[-54,246]],[[55199,55760],[-78,191]],[[55121,55951],[-50,295]],[[55071,56246],[61,88]],[[55132,56334],[156,185]],[[55288,56519],[142,158]],[[55430,56677],[128,122],[90,57]],[[32359,3545],[0,-4]],[[32359,3541],[9,-3]],[[32368,3538],[10,-9]],[[32378,3529],[6,-4]],[[32384,3525],[0,-3]],[[32384,3522],[5,-7]],[[32389,3515],[0,-2]],[[32389,3513],[12,-17]],[[32401,3496],[0,-13]],[[32401,3483],[-12,-13]],[[32389,3470],[-16,-9]],[[32373,3461],[-14,-17]],[[32359,3444],[0,-3]],[[32359,3441],[-9,-3]],[[32350,3438],[0,-3]],[[32350,3435],[-11,-4]],[[32339,3431],[-7,-6]],[[32332,3425],[-14,-19]],[[32318,3406],[0,-4]],[[32318,3402],[-18,-23]],[[32300,3379],[-22,0]],[[32278,3379],[-19,14]],[[32259,3393],[0,19]],[[32259,3412],[16,23]],[[32275,3435],[12,26]],[[32287,3461],[3,3]],[[32290,3464],[0,13]],[[32290,3477],[8,6]],[[32298,3483],[2,10]],[[32300,3493],[25,29]],[[32325,3522],[0,3]],[[32325,3525],[7,4]],[[32332,3529],[7,16]],[[32339,3545],[20,0]],[[32545,3722],[0,-3]],[[32545,3719],[0,-7]],[[32545,3712],[-3,-12]],[[32542,3700],[-8,-20]],[[32534,3680],[-13,-29]],[[32521,3651],[-40,23]],[[32481,3674],[-5,9]],[[32476,3683],[0,13]],[[32476,3696],[0,4]],[[32476,3700],[16,3]],[[32492,3703],[7,6]],[[32499,3709],[5,3]],[[32504,3712],[17,4]],[[32521,3716],[10,10]],[[32531,3726],[14,-4]],[[33297,3777],[9,-6]],[[33306,3771],[3,-16]],[[33309,3755],[7,-4]],[[33316,3751],[0,-3]],[[33316,3748],[10,-6]],[[33326,3742],[7,-10]],[[33333,3732],[22,-13]],[[33355,3719],[0,-3]],[[33355,3716],[12,-13]],[[33367,3703],[0,-10]],[[33367,3693],[8,-3]],[[33375,3690],[0,-3]],[[33375,3687],[6,-4]],[[33381,3683],[2,-16]],[[33383,3667],[-36,-10]],[[33347,3657],[0,4]],[[33347,3661],[-14,6]],[[33333,3667],[-8,7]],[[33325,3674],[-9,3]],[[33316,3677],[-10,-3]],[[33306,3674],[-42,0]],[[33264,3674],[-9,-7]],[[33255,3667],[-11,-6]],[[33244,3661],[0,-6]],[[33244,3655],[11,-7]],[[33255,3648],[0,-4]],[[33255,3644],[0,-6]],[[33255,3638],[0,-13]],[[33255,3625],[-10,-25]],[[33245,3600],[-11,-4]],[[33234,3596],[-18,-3]],[[33216,3593],[-5,-7]],[[33211,3586],[-20,-6]],[[33191,3580],[-2,-19]],[[33189,3561],[-23,35]],[[33166,3596],[0,4]],[[33166,3600],[4,6]],[[33170,3606],[10,16]],[[33180,3622],[6,3]],[[33186,3625],[8,16]],[[33194,3641],[11,7]],[[33205,3648],[0,3]],[[33205,3651],[9,4]],[[33214,3655],[2,6]],[[33216,3661],[9,10]],[[33225,3671],[0,3]],[[33225,3674],[5,6]],[[33230,3680],[4,16]],[[33234,3696],[5,7]],[[33239,3703],[6,19]],[[33245,3722],[11,6]],[[33256,3728],[0,4]],[[33256,3732],[8,3]],[[33264,3735],[0,4]],[[33264,3739],[13,12]],[[33277,3751],[9,23]],[[33286,3774],[6,3]],[[33292,3777],[5,0]],[[32481,3813],[0,-19]],[[32481,3794],[-5,-14]],[[32476,3780],[-9,30]],[[32467,3810],[14,3]],[[32234,3919],[0,-3]],[[32234,3916],[8,-3]],[[32242,3913],[16,-13]],[[32258,3900],[-50,-10]],[[32208,3890],[0,7]],[[32208,3897],[0,6]],[[32208,3903],[0,3]],[[32208,3906],[6,4]],[[32214,3910],[3,6]],[[32217,3916],[17,3]],[[32290,3919],[-6,-16]],[[32284,3903],[-17,-3]],[[32267,3900],[0,6]],[[32267,3906],[0,4]],[[32267,3910],[11,3]],[[32278,3913],[12,6]],[[31167,3990],[0,-3]],[[31167,3987],[4,-3]],[[31171,3984],[16,9]],[[31187,3993],[9,-3]],[[31196,3990],[0,-3]],[[31196,3987],[21,-13]],[[31217,3974],[0,-3]],[[31217,3971],[15,3]],[[31232,3974],[0,3]],[[31232,3977],[46,-3]],[[31278,3974],[0,3]],[[31278,3977],[34,4]],[[31312,3981],[23,-10]],[[31335,3971],[17,-13]],[[31352,3958],[0,-3]],[[31352,3955],[-15,-3]],[[31337,3952],[-2,6]],[[31335,3958],[-9,-9]],[[31326,3949],[-19,-11]],[[31307,3938],[0,-2]],[[31307,3936],[-5,-4]],[[31302,3932],[0,-3]],[[31302,3929],[-21,-3]],[[31281,3926],[-5,-23]],[[31276,3903],[-6,-3]],[[31270,3900],[-8,-7]],[[31262,3893],[-14,-3]],[[31248,3890],[0,3]],[[31248,3893],[0,10]],[[31248,3903],[0,3]],[[31248,3906],[-9,26]],[[31239,3932],[-8,-39]],[[31231,3893],[-35,-12]],[[31196,3881],[0,-4]],[[31196,3877],[-11,4]],[[31185,3881],[-9,0]],[[31176,3881],[-31,9]],[[31145,3890],[-25,-3]],[[31120,3887],[-5,-3]],[[31115,3884],[-6,6]],[[31109,3890],[-9,7]],[[31100,3897],[0,13]],[[31100,3910],[6,12]],[[31106,3922],[0,4]],[[31106,3926],[9,3]],[[31115,3929],[0,3]],[[31115,3932],[11,23]],[[31126,3955],[0,3]],[[31126,3958],[0,13]],[[31126,3971],[0,6]],[[31126,3977],[8,13]],[[31134,3990],[0,3]],[[31134,3993],[6,4]],[[31140,3997],[6,7]],[[31146,4004],[21,-14]],[[32248,4029],[0,-3]],[[32248,4026],[0,-17]],[[32248,4009],[0,-2]],[[32248,4007],[-6,-3]],[[32242,4004],[-9,-4]],[[32233,4000],[-5,4]],[[32228,4004],[-3,19]],[[32225,4023],[23,6]],[[32275,4026],[0,-19]],[[32275,4007],[-8,-3]],[[32267,4004],[0,3]],[[32267,4007],[-8,6]],[[32259,4013],[0,19]],[[32259,4032],[16,-6]],[[31995,4068],[0,-3]],[[31995,4065],[27,6]],[[32022,4071],[0,-23]],[[32022,4048],[16,-6]],[[32038,4042],[0,-22]],[[32038,4020],[-5,-4]],[[32033,4016],[0,-3]],[[32033,4013],[-10,-4]],[[32023,4009],[-3,-5]],[[32020,4004],[-7,-11]],[[32013,3993],[0,-3]],[[32013,3990],[-11,-6]],[[32002,3984],[-5,-10]],[[31997,3974],[-34,-19],[-2,-45]],[[31961,3910],[0,-4]],[[31961,3906],[-5,-9]],[[31956,3897],[-9,-16]],[[31947,3881],[14,-4]],[[31961,3877],[0,7]],[[31961,3884],[22,13]],[[31983,3897],[19,-7]],[[32002,3890],[11,-9]],[[32013,3881],[0,-4]],[[32013,3877],[0,-22]],[[32013,3855],[0,-7]],[[32013,3848],[7,7]],[[32020,3855],[3,16]],[[32023,3871],[10,-4]],[[32033,3867],[0,-2]],[[32033,3865],[5,-4]],[[32038,3861],[3,-19]],[[32041,3842],[11,-7]],[[32052,3835],[1,7]],[[32053,3842],[33,0]],[[32086,3842],[0,-7]],[[32086,3835],[5,-3]],[[32091,3832],[0,-6]],[[32091,3826],[-5,-7]],[[32086,3819],[0,-3]],[[32086,3816],[-9,-6]],[[32077,3810],[0,-4]],[[32077,3806],[-5,-3]],[[32072,3803],[0,-4]],[[32072,3799],[-5,7]],[[32067,3806],[0,-10]],[[32067,3796],[0,-6]],[[32067,3790],[0,-3]],[[32067,3787],[-14,-13]],[[32053,3774],[-5,-10]],[[32048,3764],[-10,-3]],[[32038,3761],[-5,-6]],[[32033,3755],[-11,-4]],[[32022,3751],[0,-3]],[[32022,3748],[-9,-3]],[[32013,3745],[0,-3]],[[32013,3742],[-22,-20]],[[31991,3722],[0,-3]],[[31991,3719],[-10,-3]],[[31981,3716],[-6,-7]],[[31975,3709],[-20,-6]],[[31955,3703],[-10,-7]],[[31945,3696],[-39,4]],[[31906,3700],[5,-13]],[[31911,3687],[9,-7]],[[31920,3680],[0,-6]],[[31920,3674],[-9,-17]],[[31911,3657],[-16,-35]],[[31895,3622],[-14,-6]],[[31881,3616],[0,-4]],[[31881,3612],[-4,-6]],[[31877,3606],[0,-3]],[[31877,3603],[-6,-7]],[[31871,3596],[0,-3]],[[31871,3593],[-27,-9]],[[31844,3584],[-3,-7]],[[31841,3577],[-42,-13]],[[31799,3564],[0,3]],[[31799,3567],[-35,-10]],[[31764,3557],[-6,0]],[[31758,3557],[-53,-12]],[[31705,3545],[-1,0]],[[31704,3545],[-8,3]],[[31696,3548],[0,13]],[[31696,3561],[8,3]],[[31704,3564],[12,22]],[[31716,3586],[0,23]],[[31716,3609],[0,19]],[[31716,3628],[13,20]],[[31729,3648],[0,3]],[[31729,3651],[6,10]],[[31735,3661],[1,10]],[[31736,3671],[13,12]],[[31749,3683],[20,84]],[[31769,3767],[11,49]],[[31780,3816],[0,6]],[[31780,3822],[9,20]],[[31789,3842],[0,9]],[[31789,3851],[10,42]],[[31799,3893],[8,23]],[[31807,3916],[14,3]],[[31821,3919],[0,-3]],[[31821,3916],[6,-10]],[[31827,3906],[0,-3]],[[31827,3903],[12,7]],[[31839,3910],[7,42]],[[31846,3952],[1,6]],[[31847,3958],[0,3]],[[31847,3961],[5,7]],[[31852,3968],[4,13]],[[31856,3981],[5,3]],[[31861,3984],[10,6]],[[31871,3990],[6,14]],[[31877,4004],[0,3]],[[31877,4007],[4,2]],[[31881,4009],[0,4]],[[31881,4013],[10,3]],[[31891,4016],[9,13]],[[31900,4029],[5,3]],[[31905,4032],[6,13]],[[31911,4045],[9,10]],[[31920,4055],[2,6]],[[31922,4061],[25,7]],[[31947,4068],[0,3]],[[31947,4071],[48,-3]],[[34252,4104],[1,-10]],[[34253,4094],[0,-7]],[[34253,4087],[-1,-6]],[[34252,4081],[-16,3]],[[34236,4084],[2,16]],[[34238,4100],[14,4]],[[33957,4126],[8,-13]],[[33965,4113],[0,-3]],[[33965,4110],[4,-3]],[[33969,4107],[0,-13]],[[33969,4094],[-15,-13]],[[33954,4081],[-5,10]],[[33949,4091],[-12,3]],[[33937,4094],[0,13]],[[33937,4107],[7,6]],[[33944,4113],[0,3]],[[33944,4116],[5,4]],[[33949,4120],[8,6]],[[33916,4107],[0,13]],[[33916,4120],[19,9]],[[33935,4129],[0,3]],[[33935,4132],[9,4]],[[33944,4136],[7,-7]],[[33951,4129],[-14,-9]],[[33937,4120],[-2,-10]],[[33935,4110],[-19,-3]],[[31610,4314],[5,-13]],[[31615,4301],[4,-4]],[[31619,4297],[0,-3]],[[31619,4294],[5,-3]],[[31624,4291],[2,-6]],[[31626,4285],[12,-7]],[[31638,4278],[0,-13]],[[31638,4265],[-14,6]],[[31624,4271],[0,-3]],[[31624,4268],[-14,-6]],[[31610,4262],[-5,6]],[[31605,4268],[-8,7]],[[31597,4275],[-4,10]],[[31593,4285],[0,12]],[[31593,4297],[4,13]],[[31597,4310],[13,4]],[[34575,4365],[5,-9]],[[34580,4356],[0,-7]],[[34580,4349],[-7,-23]],[[34573,4326],[-14,16]],[[34559,4342],[7,7]],[[34566,4349],[9,16]],[[38607,4365],[-8,-13]],[[38599,4352],[4,-6]],[[38603,4346],[0,-4]],[[38603,4342],[4,-6]],[[38607,4336],[0,-6]],[[38607,4330],[-4,-4]],[[38603,4326],[0,-3]],[[38603,4323],[4,-3]],[[38607,4320],[-4,-19]],[[38603,4301],[-4,-4]],[[38599,4297],[0,-3]],[[38599,4294],[8,-36]],[[38607,4258],[0,-3]],[[38607,4255],[-4,-3]],[[38603,4252],[0,-6]],[[38603,4246],[6,-4]],[[38609,4242],[5,-12]],[[38614,4230],[0,-4]],[[38614,4226],[-7,-48]],[[38607,4178],[-14,3]],[[38593,4181],[-18,42]],[[38575,4223],[0,7]],[[38575,4230],[0,12]],[[38575,4242],[-7,4]],[[38568,4246],[0,3]],[[38568,4249],[0,6]],[[38568,4255],[-3,13]],[[38565,4268],[3,13]],[[38568,4281],[0,4]],[[38568,4285],[7,3]],[[38575,4288],[0,61]],[[38575,4349],[-10,3]],[[38565,4352],[0,4]],[[38565,4356],[0,2]],[[38565,4358],[28,14]],[[38593,4372],[14,3]],[[38607,4375],[0,-3]],[[38607,4372],[0,-7]],[[34595,4429],[0,-2]],[[34595,4427],[5,-3]],[[34600,4424],[0,-11]],[[34600,4413],[-9,-3]],[[34591,4410],[-5,0]],[[34586,4410],[-10,-2]],[[34576,4408],[-3,-7]],[[34573,4401],[-7,-4]],[[34566,4397],[-7,-12]],[[34559,4385],[-11,-10]],[[34548,4375],[0,-3]],[[34548,4372],[-9,-3]],[[34539,4369],[0,-4]],[[34539,4365],[-19,-9]],[[34520,4356],[0,2]],[[34520,4358],[-12,7]],[[34508,4365],[0,4]],[[34508,4369],[-5,-4]],[[34503,4365],[-3,-7]],[[34500,4358],[-17,-12]],[[34483,4346],[0,-4]],[[34483,4342],[-8,-3]],[[34475,4339],[0,-19]],[[34475,4320],[8,-3]],[[34483,4317],[0,-10]],[[34483,4307],[-10,-19]],[[34473,4288],[-9,-10]],[[34464,4278],[-9,-7]],[[34455,4271],[0,-3]],[[34455,4268],[-21,-10]],[[34434,4258],[-4,-3]],[[34430,4255],[-13,7]],[[34417,4262],[0,-4]],[[34417,4258],[-3,-3]],[[34414,4255],[-6,7]],[[34408,4262],[-3,9]],[[34405,4271],[-22,4]],[[34383,4275],[14,-23]],[[34397,4252],[11,-6]],[[34408,4246],[0,-4]],[[34408,4242],[6,-3]],[[34414,4239],[3,-6]],[[34417,4233],[0,-7]],[[34417,4226],[-3,-19]],[[34414,4207],[-6,-7]],[[34408,4200],[-5,-6]],[[34403,4194],[-6,-7]],[[34397,4187],[-12,-9]],[[34385,4178],[-46,-23]],[[34339,4155],[0,-7]],[[34339,4148],[5,-2]],[[34344,4146],[0,-7]],[[34344,4139],[-11,-13]],[[34333,4126],[-11,-16]],[[34322,4110],[-19,0]],[[34303,4110],[0,-3]],[[34303,4107],[-9,3]],[[34294,4110],[-6,16]],[[34288,4126],[0,6]],[[34288,4132],[4,10]],[[34292,4142],[11,6]],[[34303,4148],[3,14]],[[34306,4162],[7,6]],[[34313,4168],[1,7]],[[34314,4175],[8,6]],[[34322,4181],[2,13]],[[34324,4194],[-32,-16]],[[34292,4178],[-9,-13]],[[34283,4165],[-5,-3]],[[34278,4162],[-4,-7]],[[34274,4155],[-10,-7]],[[34264,4148],[-11,7]],[[34253,4155],[-21,4]],[[34232,4159],[0,3]],[[34232,4162],[-7,3]],[[34225,4165],[-14,-13]],[[34211,4152],[0,-4]],[[34211,4148],[-9,-2]],[[34202,4146],[0,-14]],[[34202,4132],[-16,4]],[[34186,4136],[0,3]],[[34186,4139],[-14,-3]],[[34172,4136],[-4,-13]],[[34168,4123],[0,-7]],[[34168,4116],[4,-6]],[[34172,4110],[0,-13]],[[34172,4097],[-9,-6]],[[34163,4091],[0,3]],[[34163,4094],[0,19]],[[34163,4113],[0,7]],[[34163,4120],[-25,-10]],[[34138,4110],[0,-3]],[[34138,4107],[-37,-7]],[[34101,4100],[-5,-6]],[[34096,4094],[-24,6]],[[34072,4100],[-1,7]],[[34071,4107],[-11,3]],[[34060,4110],[-5,6]],[[34055,4116],[-9,4]],[[34046,4120],[-5,-10]],[[34041,4110],[0,-16]],[[34041,4094],[2,-17]],[[34043,4077],[-36,0]],[[34007,4077],[0,4]],[[34007,4081],[-9,7]],[[33998,4088],[-4,9]],[[33994,4097],[-4,7]],[[33990,4104],[0,16]],[[33990,4120],[8,6]],[[33998,4126],[9,10]],[[34007,4136],[14,3]],[[34021,4139],[0,3]],[[34021,4142],[6,4]],[[34027,4146],[0,-4]],[[34027,4142],[14,4]],[[34041,4146],[6,9]],[[34047,4155],[8,4]],[[34055,4159],[2,6]],[[34057,4165],[14,6]],[[34071,4171],[0,4]],[[34071,4175],[9,3]],[[34080,4178],[17,9]],[[34097,4187],[14,4]],[[34111,4191],[7,7]],[[34118,4198],[12,2]],[[34130,4200],[0,3]],[[34130,4203],[16,11]],[[34146,4214],[0,3]],[[34146,4217],[4,2]],[[34150,4219],[8,11]],[[34158,4230],[5,3]],[[34163,4233],[0,3]],[[34163,4236],[23,6]],[[34186,4242],[5,10]],[[34191,4252],[11,6]],[[34202,4258],[0,4]],[[34202,4262],[9,6]],[[34211,4268],[2,7]],[[34213,4275],[19,10]],[[34232,4285],[9,6]],[[34241,4291],[42,6]],[[34283,4297],[9,10]],[[34292,4307],[30,7]],[[34322,4314],[17,12]],[[34339,4326],[25,4]],[[34364,4330],[25,-7]],[[34389,4323],[14,7]],[[34403,4330],[11,3]],[[34414,4333],[3,-3]],[[34417,4330],[0,-7]],[[34417,4323],[3,3]],[[34420,4326],[5,13]],[[34425,4339],[5,3]],[[34430,4342],[3,7]],[[34433,4349],[12,7]],[[34445,4356],[4,6]],[[34449,4362],[6,10]],[[34455,4372],[0,3]],[[34455,4375],[9,3]],[[34464,4378],[0,3]],[[34464,4381],[19,7]],[[34483,4388],[3,6]],[[34486,4394],[14,10]],[[34500,4404],[3,6]],[[34503,4410],[36,14]],[[34539,4424],[0,3]],[[34539,4427],[20,6]],[[34559,4433],[0,3]],[[34559,4436],[36,-7]],[[38589,4495],[0,-4]],[[38589,4491],[0,-7]],[[38589,4484],[4,-12]],[[38593,4472],[-11,-10]],[[38582,4462],[-7,-22]],[[38575,4440],[-7,-7]],[[38568,4433],[-6,-4]],[[38562,4429],[-19,-2]],[[38543,4427],[0,2]],[[38543,4429],[0,33]],[[38543,4462],[0,3]],[[38543,4465],[5,3]],[[38548,4468],[2,11]],[[38550,4479],[39,16]],[[30719,4498],[-13,-36]],[[30706,4462],[-15,-10]],[[30691,4452],[-5,10]],[[30686,4462],[0,36]],[[30686,4498],[5,13]],[[30691,4511],[15,3]],[[30706,4514],[0,3]],[[30706,4517],[13,-19]],[[34466,4540],[7,-17]],[[34473,4523],[25,-6]],[[34498,4517],[0,-19]],[[34498,4498],[-12,-19]],[[34486,4479],[0,2]],[[34486,4481],[-13,3]],[[34473,4484],[-9,17]],[[34464,4501],[2,39]],[[34528,4595],[0,-10]],[[34528,4585],[-8,-6]],[[34520,4579],[-4,-10]],[[34516,4569],[-13,-7]],[[34503,4562],[-5,-16]],[[34498,4546],[-12,0]],[[34486,4546],[-3,3]],[[34483,4549],[-8,3]],[[34475,4552],[-11,0]],[[34464,4552],[-26,10]],[[34438,4562],[0,23]],[[34438,4585],[7,6]],[[34445,4591],[0,4]],[[34445,4595],[21,0]],[[34466,4595],[20,16]],[[34486,4611],[42,-16]],[[30120,4675],[-4,-6]],[[30116,4669],[-28,-16]],[[30088,4653],[-4,-10]],[[30084,4643],[-7,-3]],[[30077,4640],[0,-3]],[[30077,4637],[-9,-3]],[[30068,4634],[0,-7]],[[30068,4627],[-25,-7]],[[30043,4620],[-9,-9]],[[30034,4611],[-8,-4]],[[30026,4607],[0,-3]],[[30026,4604],[-8,-6]],[[30018,4598],[-1,-7]],[[30017,4591],[-3,-3]],[[30014,4588],[-7,-3]],[[30007,4585],[0,-3]],[[30007,4582],[-15,-3]],[[29992,4579],[-19,-13]],[[29973,4566],[-6,-4]],[[29967,4562],[0,4]],[[29967,4566],[-5,9]],[[29962,4575],[0,4]],[[29962,4579],[5,9]],[[29967,4588],[0,7]],[[29967,4595],[6,28]],[[29973,4623],[20,14]],[[29993,4637],[10,3]],[[30003,4640],[0,3]],[[30003,4643],[25,3]],[[30028,4646],[18,20]],[[30046,4666],[21,9]],[[30067,4675],[4,0]],[[30071,4675],[30,7]],[[30101,4682],[15,9]],[[30116,4691],[11,-13]],[[30127,4678],[-7,-3]],[[30188,4701],[-6,-10]],[[30182,4691],[-23,-2]],[[30159,4689],[0,2]],[[30159,4691],[-14,3]],[[30145,4694],[-2,7]],[[30143,4701],[-5,4]],[[30138,4705],[0,22]],[[30138,4727],[7,3]],[[30145,4730],[4,13]],[[30149,4743],[11,3]],[[30160,4746],[19,4]],[[30179,4750],[9,-49]],[[39141,4934],[3,-7]],[[39144,4927],[8,-3]],[[39152,4924],[0,-3]],[[39152,4921],[11,-36]],[[39163,4885],[0,-3]],[[39163,4882],[6,-3]],[[39169,4879],[3,-13]],[[39172,4866],[2,-3]],[[39174,4863],[0,-3]],[[39174,4860],[8,-4]],[[39182,4856],[7,-12]],[[39189,4844],[13,-7]],[[39202,4837],[0,-9]],[[39202,4828],[-8,-4]],[[39194,4824],[0,-3]],[[39194,4821],[-5,-4]],[[39189,4817],[-6,-6]],[[39183,4811],[-9,6]],[[39174,4817],[0,4]],[[39174,4821],[-2,7]],[[39172,4828],[-9,16]],[[39163,4844],[-11,12]],[[39152,4856],[-3,13]],[[39149,4869],[-5,3]],[[39144,4872],[-3,7]],[[39141,4879],[-30,13]],[[39111,4892],[0,9]],[[39111,4901],[0,20]],[[39111,4921],[0,3]],[[39111,4924],[11,7]],[[39122,4931],[0,3]],[[39122,4934],[19,0]],[[36457,5215],[-5,-6]],[[36452,5209],[-3,-4]],[[36449,5205],[-25,20]],[[36424,5225],[25,-4]],[[36449,5221],[0,4]],[[36449,5225],[8,-10]],[[39792,7490],[6,-16]],[[39798,7474],[3,-11]],[[39801,7463],[-19,-5]],[[39782,7458],[-1,9]],[[39781,7467],[-10,7]],[[39771,7474],[-4,-4]],[[39767,7470],[0,-9]],[[39767,7461],[0,-3]],[[39767,7458],[-10,-11]],[[39757,7447],[-4,0]],[[39753,7447],[-13,11]],[[39740,7458],[0,9]],[[39740,7467],[21,10]],[[39761,7477],[0,3]],[[39761,7480],[6,10]],[[39767,7490],[0,6]],[[39767,7496],[4,3]],[[39771,7499],[21,-9]],[[48826,9651],[-4,6]],[[48822,9657],[-12,7]],[[48810,9664],[0,7]],[[48810,9671],[20,0],[-4,-20]],[[40090,11486],[3,-35]],[[40093,11451],[-17,3]],[[40076,11454],[0,10]],[[40076,11464],[0,22]],[[40076,11486],[0,7]],[[40076,11493],[14,-7]],[[47301,17730],[298,-1]],[[47599,17729],[130,-10],[92,-22],[176,-82]],[[47997,17615],[131,-20],[204,-4]],[[48332,17591],[661,5]],[[48993,17596],[232,-3]],[[49225,17593],[126,-14],[60,-17],[120,-61]],[[49531,17501],[109,-32]],[[49640,17469],[203,-26],[83,-33]],[[49926,17410],[50,-35]],[[49976,17375],[165,-143],[127,-72]],[[50268,17160],[99,-81],[110,-114],[458,-512]],[[50935,16453],[487,-543],[120,-125]],[[51542,15785],[86,-67]],[[51628,15718],[103,-50],[103,-83],[116,-118]],[[51950,15467],[103,-86],[65,-34],[91,-203]],[[52209,15144],[33,-96]],[[52242,15048],[79,-176],[131,-110]],[[52452,14762],[253,-274],[80,-78]],[[52785,14410],[64,-47]],[[52849,14363],[126,-63],[42,-34]],[[53017,14266],[161,-164],[212,-240]],[[53390,13862],[123,-162]],[[53513,13700],[38,-114],[48,-183],[75,-194]],[[53674,13209],[14,-103]],[[53688,13106],[19,-314]],[[53707,12792],[14,-67],[53,-135]],[[53774,12590],[19,-60]],[[53793,12530],[28,-243]],[[53821,12287],[14,-69]],[[53835,12218],[36,-86]],[[53871,12132],[65,-97]],[[53936,12035],[110,-33],[120,-62]],[[54166,11940],[81,-27],[118,-8],[160,16]],[[54525,11921],[173,-24],[84,-23]],[[54782,11874],[50,-25],[173,-120]],[[55005,11729],[122,-218]],[[55127,11511],[55,-142],[76,-157]],[[55258,11212],[42,-118],[97,-220]],[[55397,10874],[-8,-88],[-28,-120],[-56,-133]],[[55305,10533],[-20,-100]],[[55285,10433],[-11,-210]],[[55274,10223],[1,-141]],[[55275,10082],[8,-104],[20,-100],[56,-134]],[[55359,9744],[19,-56],[49,-215],[67,-161],[54,-245],[53,-131]],[[55601,8936],[25,-97]],[[55626,8839],[16,-88]],[[55642,8751],[55,-139]],[[55697,8612],[76,-87]],[[55773,8525],[112,-88],[33,-78]],[[55918,8359],[127,-265]],[[56045,8094],[96,-99]],[[56141,7995],[100,-53],[139,-118]],[[56380,7824],[133,-137],[117,-96],[100,-54],[104,-94],[91,-117]],[[56925,7326],[-42,-141],[-43,-255]],[[56840,6930],[-73,-191],[-25,-140],[-5,-147]],[[56737,6452],[0,-523]],[[56737,5929],[22,-215]],[[56759,5714],[60,-163],[14,-87]],[[56833,5464],[-2,-30]],[[56831,5434],[-12,-56],[-50,-130],[-25,-169]],[[56744,5079],[-13,-211],[-14,-103]],[[56717,4765],[-83,-224],[-32,-154]],[[56602,4387],[-16,-60]],[[56586,4327],[-65,-162],[-21,-102],[-20,-212],[-27,-95]],[[56453,3756],[-104,-243],[-59,-93]],[[56290,3420],[-116,-121]],[[56174,3299],[-5,4]],[[56169,3303],[-39,0]],[[56130,3303],[-1,-10]],[[56129,3293],[-2,-4]],[[56127,3289],[-8,-3]],[[56119,3286],[0,-3]],[[56119,3283],[-6,3]],[[56113,3286],[-14,10]],[[56099,3296],[-12,-4]],[[56087,3292],[-22,-32]],[[56065,3260],[-6,-16]],[[56059,3244],[-11,-23]],[[56048,3221],[-24,4]],[[56024,3225],[-25,16]],[[55999,3241],[-37,-10]],[[55962,3231],[-41,-23]],[[55921,3208],[-9,4]],[[55912,3212],[0,6]],[[55912,3218],[-16,13]],[[55896,3231],[0,-2]],[[55896,3229],[-3,-1]],[[55893,3228],[0,-3]],[[55893,3225],[-25,9]],[[55868,3234],[-36,23]],[[55832,3257],[-31,-6]],[[55801,3251],[-6,6]],[[55795,3257],[-5,3]],[[55790,3260],[0,4]],[[55790,3264],[-19,3]],[[55771,3267],[-9,32]],[[55762,3299],[-12,25]],[[55750,3324],[0,4]],[[55750,3328],[-8,10]],[[55742,3338],[-2,6]],[[55740,3344],[-9,3]],[[55731,3347],[-2,13]],[[55729,3360],[-7,3]],[[55722,3363],[-10,4]],[[55712,3367],[-22,-16]],[[55690,3351],[0,3]],[[55690,3354],[-20,6]],[[55670,3360],[-9,-9]],[[55661,3351],[-25,9]],[[55636,3360],[-2,16]],[[55634,3376],[-8,3]],[[55626,3379],[0,4]],[[55626,3383],[-6,7]],[[55620,3390],[-11,35]],[[55609,3425],[-40,-13]],[[55569,3412],[-21,-6]],[[55548,3406],[-12,6]],[[55536,3412],[-2,26]],[[55534,3438],[0,16]],[[55534,3454],[-3,7]],[[55531,3461],[-33,3]],[[55498,3464],[0,3]],[[55498,3467],[-11,16]],[[55487,3483],[-9,16]],[[55478,3499],[-20,23]],[[55458,3522],[0,26]],[[55458,3548],[-25,13]],[[55433,3561],[0,-4]],[[55433,3557],[-30,23]],[[55403,3580],[-11,4]],[[55392,3584],[-4,-4]],[[55388,3580],[-14,26]],[[55374,3606],[-21,35]],[[55353,3641],[-1,7]],[[55352,3648],[-19,7]],[[55333,3655],[-9,35]],[[55324,3690],[-22,10]],[[55302,3700],[-30,16]],[[55272,3716],[-25,10]],[[55247,3726],[-3,2]],[[55244,3728],[-16,-2]],[[55228,3726],[0,2]],[[55228,3728],[-11,4]],[[55217,3732],[-4,7]],[[55213,3739],[-16,3]],[[55197,3742],[-1,6]],[[55196,3748],[-24,-9]],[[55172,3739],[0,-4]],[[55172,3735],[-14,36]],[[55158,3771],[3,6]],[[55161,3777],[-9,6]],[[55152,3783],[-5,7]],[[55147,3790],[-31,-3]],[[55116,3787],[0,3]],[[55116,3790],[-6,4]],[[55110,3794],[-17,25]],[[55093,3819],[-27,29]],[[55066,3848],[-1,0]],[[55065,3848],[-8,3]],[[55057,3851],[-17,16]],[[55040,3867],[-24,7]],[[55016,3874],[0,-3]],[[55016,3871],[-11,3]],[[55005,3874],[0,3]],[[55005,3877],[0,16]],[[55005,3893],[0,7]],[[55005,3900],[-9,6]],[[54996,3906],[-5,16]],[[54991,3922],[-25,-9]],[[54966,3913],[-6,6]],[[54960,3919],[-23,13]],[[54937,3932],[-4,13]],[[54933,3945],[-4,10]],[[54929,3955],[0,3]],[[54929,3958],[-3,3]],[[54926,3961],[3,13]],[[54929,3974],[6,3]],[[54935,3977],[5,7]],[[54940,3984],[4,3]],[[54944,3987],[0,3]],[[54944,3990],[-4,3]],[[54940,3993],[0,4]],[[54940,3997],[4,3]],[[54944,4000],[-18,23]],[[54926,4023],[-13,-3]],[[54913,4020],[-3,6]],[[54910,4026],[-14,6]],[[54896,4032],[-16,-3]],[[54880,4029],[0,-3]],[[54880,4026],[-21,-6]],[[54859,4020],[-4,6]],[[54855,4026],[-20,6]],[[54835,4032],[-5,-9]],[[54830,4023],[-7,6]],[[54823,4029],[-19,26]],[[54804,4055],[-20,-10]],[[54784,4045],[-25,-16]],[[54759,4029],[-27,10]],[[54732,4039],[0,3]],[[54732,4042],[-3,68]],[[54729,4110],[-2,6]],[[54727,4116],[-14,4]],[[54713,4120],[0,-4]],[[54713,4116],[-10,0]],[[54703,4116],[0,4]],[[54703,4120],[-10,3]],[[54693,4123],[0,3]],[[54693,4126],[-19,3]],[[54674,4129],[0,-3]],[[54674,4126],[-20,22]],[[54654,4148],[-12,46]],[[54642,4194],[-10,25]],[[54632,4219],[-4,14]],[[54628,4233],[-4,9]],[[54624,4242],[-1,20]],[[54623,4262],[0,6]],[[54623,4268],[-34,33]],[[54589,4301],[0,3]],[[54589,4304],[-7,10]],[[54582,4314],[-11,32]],[[54571,4346],[-20,12]],[[54551,4358],[-3,23]],[[54548,4381],[-25,4]],[[54523,4385],[-5,39]],[[54518,4424],[-20,44]],[[54498,4468],[-5,7]],[[54493,4475],[-7,4]],[[54486,4479],[0,2]],[[54486,4481],[-10,3]],[[54476,4484],[-9,17]],[[54467,4501],[-20,6]],[[54447,4507],[-5,10]],[[54442,4517],[-14,10]],[[54428,4527],[-20,39]],[[54408,4566],[-16,9]],[[54392,4575],[-2,10]],[[54390,4585],[-14,13]],[[54376,4598],[-11,16]],[[54365,4614],[-7,4]],[[54358,4618],[-2,5]],[[54356,4623],[-16,4]],[[54340,4627],[-3,7]],[[54337,4634],[-15,12]],[[54322,4646],[-50,7]],[[54272,4653],[0,3]],[[54272,4656],[0,6]],[[54272,4662],[0,16]],[[54272,4678],[0,4]],[[54272,4682],[-6,9]],[[54266,4691],[-5,14]],[[54261,4705],[-6,3]],[[54255,4708],[-3,6]],[[54252,4714],[-13,3]],[[54239,4717],[0,4]],[[54239,4721],[-25,3]],[[54214,4724],[-33,9]],[[54181,4733],[-20,10]],[[54161,4743],[0,3]],[[54161,4746],[-11,4]],[[54150,4750],[0,3]],[[54150,4753],[-12,3]],[[54138,4756],[-19,23]],[[54119,4779],[-11,3]],[[54108,4782],[-3,7]],[[54105,4789],[-14,9]],[[54091,4798],[-8,0]],[[54083,4798],[-23,10]],[[54060,4808],[0,3]],[[54060,4811],[-21,10]],[[54039,4821],[-17,7]],[[54022,4828],[-12,2]],[[54010,4830],[-8,17]],[[54002,4847],[-22,9]],[[53980,4856],[-3,7]],[[53977,4863],[-9,6]],[[53968,4869],[9,13]],[[53977,4882],[-9,10]],[[53968,4892],[1,39]],[[53969,4931],[0,12]],[[53969,4943],[-1,10]],[[53968,4953],[-8,7]],[[53960,4960],[-11,39]],[[53949,4999],[-5,16]],[[53944,5015],[-17,12]],[[53927,5027],[0,-3]],[[53927,5024],[-9,7]],[[53918,5031],[-21,51]],[[53897,5082],[-20,27]],[[53877,5109],[-3,9]],[[53874,5118],[-11,10]],[[53863,5128],[0,3]],[[53863,5131],[-6,6]],[[53857,5137],[-8,10]],[[53849,5147],[-25,19]],[[53824,5166],[0,23]],[[53824,5189],[22,10]],[[53846,5199],[0,109]],[[53846,5308],[-22,85]],[[53824,5393],[-3,9]],[[53821,5402],[-5,4]],[[53816,5406],[-3,3]],[[53813,5409],[-9,6]],[[53804,5415],[3,36]],[[53807,5451],[6,16]],[[53813,5467],[0,10]],[[53813,5477],[-6,9]],[[53807,5486],[-14,27]],[[53793,5513],[-17,16]],[[53776,5529],[-8,22]],[[53768,5551],[-6,6]],[[53762,5557],[-10,7]],[[53752,5564],[-12,29]],[[53740,5593],[-3,7]],[[53737,5600],[-2,6]],[[53735,5606],[-9,0]],[[53726,5606],[-10,19]],[[53716,5625],[-14,16]],[[53702,5641],[0,7]],[[53702,5648],[-6,6]],[[53696,5654],[-5,7]],[[53691,5661],[-9,3]],[[53682,5664],[0,3]],[[53682,5667],[-6,4]],[[53676,5671],[-11,16]],[[53665,5687],[-21,22]],[[53644,5709],[-3,7]],[[53641,5716],[-7,7]],[[53634,5723],[-4,2]],[[53630,5725],[-4,3]],[[53626,5728],[-10,-9]],[[53616,5719],[-25,-10]],[[53591,5709],[0,14]],[[53591,5723],[-11,12]],[[53580,5735],[0,4]],[[53580,5739],[-9,3]],[[53571,5742],[-11,64]],[[53560,5806],[-23,16]],[[53537,5822],[-2,13]],[[53535,5835],[-50,4]],[[53485,5839],[-1,6]],[[53484,5845],[-16,-3]],[[53468,5842],[0,3]],[[53468,5845],[0,10]],[[53468,5855],[0,19]],[[53468,5874],[-12,4]],[[53456,5878],[-25,38]],[[53431,5916],[-13,22]],[[53418,5938],[0,4]],[[53418,5942],[-8,10]],[[53410,5952],[-4,9]],[[53406,5961],[-7,4]],[[53399,5965],[0,3]],[[53399,5968],[-9,6]],[[53390,5974],[-5,7]],[[53385,5981],[-45,42]],[[53340,6023],[-8,19]],[[53332,6042],[-25,35]],[[53307,6077],[-14,30]],[[53293,6107],[-9,6]],[[53284,6113],[-6,49]],[[53278,6162],[-24,32]],[[53254,6194],[-4,20]],[[53250,6214],[-7,16]],[[53243,6230],[0,6]],[[53243,6236],[-6,13]],[[53237,6249],[-14,36]],[[53223,6285],[-6,12]],[[53217,6297],[0,7]],[[53217,6304],[-14,19]],[[53203,6323],[-5,16]],[[53198,6339],[-14,30]],[[53184,6369],[-3,19]],[[53181,6388],[-17,22]],[[53164,6410],[0,3]],[[53164,6413],[-11,7]],[[53153,6420],[-6,16]],[[53147,6436],[0,29]],[[53147,6465],[0,32]],[[53147,6497],[1,14]],[[53148,6511],[-1,6]],[[53147,6517],[-14,19]],[[53133,6536],[0,4]],[[53133,6540],[-7,6]],[[53126,6546],[-7,22]],[[53119,6568],[-4,4]],[[53115,6572],[0,3]],[[53115,6575],[-9,13]],[[53106,6588],[-5,13]],[[53101,6601],[-7,29]],[[53094,6630],[-21,23]],[[53073,6653],[-1,6]],[[53072,6659],[-10,10]],[[53062,6669],[-1,13]],[[53061,6682],[-5,3]],[[53056,6685],[-14,29]],[[53042,6714],[-20,42]],[[53022,6756],[-2,10]],[[53020,6766],[-9,3]],[[53011,6769],[-20,36]],[[52991,6805],[-21,58]],[[52970,6863],[-4,13]],[[52966,6876],[-7,12]],[[52959,6888],[0,13]],[[52959,6901],[-7,10]],[[52952,6911],[-14,39]],[[52938,6950],[-7,10]],[[52931,6960],[0,3]],[[52931,6963],[-14,19]],[[52917,6982],[-3,13]],[[52914,6995],[-14,13]],[[52900,7008],[-11,16]],[[52889,7024],[-8,3]],[[52881,7027],[-1,11]],[[52880,7038],[-11,16]],[[52869,7054],[-8,9]],[[52861,7063],[-12,16]],[[52849,7079],[-22,16]],[[52827,7095],[-8,7]],[[52819,7102],[-9,16]],[[52810,7118],[-14,19]],[[52796,7137],[0,4]],[[52796,7141],[-18,13]],[[52778,7154],[-3,6]],[[52775,7160],[-40,13]],[[52735,7173],[-2,9]],[[52733,7182],[-8,10]],[[52725,7192],[-17,23]],[[52708,7215],[-25,3]],[[52683,7218],[-29,23]],[[52654,7241],[-21,45]],[[52633,7286],[-3,19]],[[52630,7305],[-15,7]],[[52615,7312],[-13,32]],[[52602,7344],[-5,3]],[[52597,7347],[-3,4]],[[52594,7351],[0,3]],[[52594,7354],[-11,10]],[[52583,7364],[0,3]],[[52583,7367],[-20,96]],[[52563,7463],[-3,17]],[[52560,7480],[-3,3]],[[52557,7483],[-8,13]],[[52549,7496],[-5,3]],[[52544,7499],[-1,30]],[[52543,7529],[-10,12]],[[52533,7541],[-9,26]],[[52524,7567],[-12,23]],[[52512,7590],[0,3]],[[52512,7593],[-8,3]],[[52504,7596],[-2,6]],[[52502,7602],[-9,7]],[[52493,7609],[0,4]],[[52493,7613],[-10,6]],[[52483,7619],[-10,16]],[[52473,7635],[-24,22]],[[52449,7657],[-1,7]],[[52448,7664],[-10,7]],[[52438,7671],[0,2]],[[52438,7673],[-4,4]],[[52434,7677],[-13,19]],[[52421,7696],[-20,20]],[[52401,7716],[-5,9]],[[52396,7725],[-8,7]],[[52388,7732],[-1,7]],[[52387,7739],[-5,3]],[[52382,7742],[-14,19]],[[52368,7761],[-20,26]],[[52348,7787],[-5,9]],[[52343,7796],[-6,7]],[[52337,7803],[0,3]],[[52337,7806],[-6,7]],[[52331,7813],[-15,22]],[[52316,7835],[-6,7]],[[52310,7842],[0,3]],[[52310,7845],[-12,13]],[[52298,7858],[-6,13]],[[52292,7871],[-15,7]],[[52277,7878],[-12,16]],[[52265,7894],[-5,3]],[[52260,7897],[-3,9]],[[52257,7906],[-8,10]],[[52249,7916],[-9,22]],[[52240,7938],[-14,14]],[[52226,7952],[0,6]],[[52226,7958],[-9,7]],[[52217,7965],[-11,16]],[[52206,7981],[-7,6]],[[52199,7987],[-12,23]],[[52187,8010],[-22,22]],[[52165,8032],[0,4]],[[52165,8036],[-9,3]],[[52156,8039],[0,3]],[[52156,8042],[-8,3]],[[52148,8045],[-9,10]],[[52139,8055],[-25,16]],[[52114,8071],[-4,6]],[[52110,8077],[-6,4]],[[52104,8081],[-20,26]],[[52084,8107],[-25,19]],[[52059,8126],[2,6]],[[52061,8132],[-16,13]],[[52045,8145],[-14,30]],[[52031,8175],[-6,9]],[[52025,8184],[0,3]],[[52025,8187],[-11,13]],[[52014,8200],[-8,14]],[[52006,8214],[-13,16]],[[51993,8230],[0,3]],[[51993,8233],[-7,3]],[[51986,8236],[-3,6]],[[51983,8242],[-8,4]],[[51975,8246],[0,3]],[[51975,8249],[-10,6]],[[51965,8255],[-11,13]],[[51954,8268],[-6,3]],[[51948,8271],[-3,4]],[[51945,8275],[-11,6]],[[51934,8281],[-11,10]],[[51923,8291],[-11,3]],[[51912,8294],[-9,10]],[[51903,8304],[-23,16]],[[51880,8320],[-2,13]],[[51878,8333],[-6,3]],[[51872,8336],[0,3]],[[51872,8339],[-8,3]],[[51864,8342],[-6,7]],[[51858,8349],[-5,0]],[[51853,8349],[-2,4]],[[51851,8353],[-15,9]],[[51836,8362],[-6,7]],[[51830,8369],[-4,6]],[[51826,8375],[-7,6]],[[51819,8381],[0,4]],[[51819,8385],[-7,3]],[[51812,8388],[-4,9]],[[51808,8397],[-35,4]],[[51773,8401],[0,6]],[[51773,8407],[-17,7]],[[51756,8414],[-4,6]],[[51752,8420],[-11,4]],[[51741,8424],[0,2]],[[51741,8426],[-19,10]],[[51722,8436],[0,4]],[[51722,8440],[-16,6]],[[51706,8446],[-29,3]],[[51677,8449],[-7,0]],[[51670,8449],[-35,3]],[[51635,8452],[-43,-9]],[[51592,8443],[-6,-7]],[[51586,8436],[-14,-3]],[[51572,8433],[-6,-16]],[[51566,8417],[0,-23]],[[51566,8394],[20,13]],[[51586,8407],[19,-3]],[[51605,8404],[0,-3]],[[51605,8401],[-8,-4]],[[51597,8397],[-22,-9],[-9,-81]],[[51566,8307],[-36,-13]],[[51530,8294],[-16,-3]],[[51514,8291],[-7,-4]],[[51507,8287],[0,4]],[[51507,8291],[-13,3]],[[51494,8294],[-8,4]],[[51486,8298],[-4,-4]],[[51482,8294],[-30,-9]],[[51452,8285],[12,9]],[[51464,8294],[11,7]],[[51475,8301],[-1,6]],[[51474,8307],[1,10]],[[51475,8317],[0,6]],[[51475,8323],[-4,46]],[[51471,8369],[3,16]],[[51474,8385],[0,32]],[[51474,8417],[-3,3]],[[51471,8420],[-7,26]],[[51464,8446],[-9,3]],[[51455,8449],[-5,16]],[[51450,8465],[-9,7]],[[51441,8472],[0,3]],[[51441,8475],[-5,3]],[[51436,8478],[0,3]],[[51436,8481],[-6,4]],[[51430,8485],[-9,12]],[[51421,8497],[-7,7]],[[51414,8504],[0,4]],[[51414,8508],[-10,3]],[[51404,8511],[0,6]],[[51404,8517],[-13,13]],[[51391,8530],[-8,16]],[[51383,8546],[-12,6]],[[51371,8552],[0,4]],[[51371,8556],[-20,12]],[[51351,8568],[0,4]],[[51351,8572],[-18,10]],[[51333,8582],[-7,9]],[[51326,8591],[-5,4]],[[51321,8595],[-11,6]],[[51310,8601],[-14,3]],[[51296,8604],[0,3]],[[51296,8607],[-11,4]],[[51285,8611],[-6,6]],[[51279,8617],[-16,3]],[[51263,8620],[0,3]],[[51263,8623],[-15,7]],[[51248,8630],[-30,0]],[[51218,8630],[-9,-3]],[[51209,8627],[0,-4]],[[51209,8623],[-15,4]],[[51194,8627],[-6,9]],[[51188,8636],[-11,4]],[[51177,8640],[0,3]],[[51177,8643],[-20,3]],[[51157,8646],[0,4]],[[51157,8650],[-19,-7]],[[51138,8643],[-1,-7]],[[51137,8636],[-8,-2]],[[51129,8634],[-5,0]],[[51124,8634],[-25,2]],[[51099,8636],[-6,-6]],[[51093,8630],[-39,10]],[[51054,8640],[-11,13]],[[51043,8653],[-9,3]],[[51034,8656],[0,3]],[[51034,8659],[-33,0]],[[51001,8659],[-8,10]],[[50993,8669],[-17,6]],[[50976,8675],[0,4]],[[50976,8679],[-12,6]],[[50964,8685],[-32,10]],[[50932,8695],[-31,-7]],[[50901,8688],[-3,7]],[[50898,8695],[-6,6]],[[50892,8701],[-2,6]],[[50890,8707],[-5,4]],[[50885,8711],[-14,10]],[[50871,8721],[-4,3]],[[50867,8724],[0,3]],[[50867,8727],[-6,7]],[[50861,8734],[-4,6]],[[50857,8740],[-4,3]],[[50853,8743],[0,3]],[[50853,8746],[-32,10]],[[50821,8756],[0,3]],[[50821,8759],[-17,7]],[[50804,8766],[-43,16]],[[50761,8782],[-32,3]],[[50729,8785],[0,-3]],[[50729,8782],[-11,3]],[[50718,8785],[-17,20]],[[50701,8805],[-11,9]],[[50690,8814],[0,3]],[[50690,8817],[-11,7]],[[50679,8824],[-14,6]],[[50665,8830],[-6,7]],[[50659,8837],[0,3]],[[50659,8840],[-31,13]],[[50628,8853],[-8,7]],[[50620,8860],[-22,9]],[[50598,8869],[0,3]],[[50598,8872],[-12,7]],[[50586,8879],[0,3]],[[50586,8882],[-13,7]],[[50573,8889],[-9,9]],[[50564,8898],[-9,3]],[[50555,8901],[0,-3]],[[50555,8898],[-30,13]],[[50525,8911],[0,4]],[[50525,8915],[-17,9]],[[50508,8924],[-3,4]],[[50505,8928],[-8,3]],[[50497,8931],[0,3]],[[50497,8934],[-13,3]],[[50484,8937],[0,3]],[[50484,8940],[-15,7]],[[50469,8947],[0,3]],[[50469,8950],[-25,6]],[[50444,8956],[0,4]],[[50444,8960],[-11,3]],[[50433,8963],[-6,6]],[[50427,8969],[-13,3]],[[50414,8972],[0,4]],[[50414,8976],[-25,7]],[[50389,8983],[0,3]],[[50389,8986],[-26,6]],[[50363,8992],[-14,7]],[[50349,8999],[-11,3]],[[50338,9002],[-5,0]],[[50333,9002],[-20,6]],[[50313,9008],[0,3]],[[50313,9011],[-17,4]],[[50296,9015],[-2,-4]],[[50294,9011],[-3,4]],[[50291,9015],[-23,12]],[[50268,9027],[-47,16]],[[50221,9043],[0,4]],[[50221,9047],[-41,13]],[[50180,9060],[0,3]],[[50180,9063],[-45,0]],[[50135,9063],[0,-3]],[[50135,9060],[-14,-3]],[[50121,9057],[0,-3]],[[50121,9054],[-11,-4]],[[50110,9050],[-8,-7]],[[50102,9043],[-12,-3]],[[50090,9040],[0,7]],[[50090,9047],[-35,3]],[[50055,9050],[-6,7]],[[50049,9057],[-17,3]],[[50032,9060],[-31,13]],[[50001,9073],[-16,13]],[[49985,9086],[0,3]],[[49985,9089],[-6,6]],[[49979,9095],[0,4]],[[49979,9099],[-14,3]],[[49965,9102],[-5,6]],[[49960,9108],[-20,3]],[[49940,9111],[-2,7]],[[49938,9118],[-23,10]],[[49915,9128],[-6,10]],[[49909,9138],[-5,6]],[[49904,9144],[0,3]],[[49904,9147],[-20,3]],[[49884,9150],[0,4]],[[49884,9154],[-10,9]],[[49874,9163],[-20,16]],[[49854,9179],[-9,3]],[[49845,9182],[-2,7]],[[49843,9189],[-8,4]],[[49835,9193],[0,3]],[[49835,9196],[-15,3]],[[49820,9199],[0,-3]],[[49820,9196],[-11,-7]],[[49809,9189],[-10,-10]],[[49799,9179],[-6,-2]],[[49793,9177],[0,-4]],[[49793,9173],[-23,4]],[[49770,9177],[-17,-17]],[[49753,9160],[-21,3]],[[49732,9163],[0,3]],[[49732,9166],[-4,4]],[[49728,9170],[0,3]],[[49728,9173],[-14,4]],[[49714,9177],[0,5]],[[49714,9182],[-7,4]],[[49707,9186],[0,3]],[[49707,9189],[0,10]],[[49707,9199],[0,-3]],[[49707,9196],[25,6]],[[49732,9202],[0,3]],[[49732,9205],[10,13]],[[49742,9218],[0,35]],[[49742,9253],[-10,23]],[[49732,9276],[0,4]],[[49732,9280],[-4,3]],[[49728,9283],[0,3]],[[49728,9286],[-7,6]],[[49721,9292],[0,4]],[[49721,9296],[-9,3]],[[49712,9299],[-5,6]],[[49707,9305],[-9,3]],[[49698,9308],[0,7]],[[49698,9315],[-16,4]],[[49682,9319],[-4,6]],[[49678,9325],[-2,3]],[[49676,9328],[0,3]],[[49676,9331],[-8,7]],[[49668,9338],[-1,13]],[[49667,9351],[-16,6]],[[49651,9357],[-3,7]],[[49648,9364],[-17,3]],[[49631,9367],[0,13]],[[49631,9380],[-20,12]],[[49611,9392],[0,-6]],[[49611,9386],[-15,0]],[[49596,9386],[0,4]],[[49596,9390],[-3,9]],[[49593,9399],[3,4]],[[49596,9403],[0,6]],[[49596,9409],[0,3]],[[49596,9412],[0,3]],[[49596,9415],[-23,-3]],[[49573,9412],[-6,16]],[[49567,9428],[0,26]],[[49567,9454],[0,26]],[[49567,9480],[-19,10]],[[49548,9490],[0,-4]],[[49548,9486],[-8,26]],[[49540,9512],[0,3]],[[49540,9515],[-7,3]],[[49533,9518],[0,7]],[[49533,9525],[-5,4]],[[49528,9529],[-11,9]],[[49517,9538],[-9,13]],[[49508,9551],[0,3]],[[49508,9554],[-8,3]],[[49500,9557],[0,4]],[[49500,9561],[-25,0]],[[49475,9561],[0,-4]],[[49475,9557],[-8,-3]],[[49467,9554],[0,-6]],[[49467,9548],[-36,22]],[[49431,9570],[-6,10]],[[49425,9580],[-5,3]],[[49420,9583],[0,3]],[[49420,9586],[-23,0]],[[49397,9586],[-2,7]],[[49395,9593],[-23,-10]],[[49372,9583],[0,-3]],[[49372,9580],[-8,-13]],[[49364,9567],[0,-3]],[[49364,9564],[-25,-3]],[[49339,9561],[0,-4]],[[49339,9557],[-8,13]],[[49331,9570],[0,7]],[[49331,9577],[-15,3]],[[49316,9580],[0,-3]],[[49316,9577],[-22,6]],[[49294,9583],[-10,10]],[[49284,9593],[-14,3]],[[49270,9596],[-4,-6]],[[49266,9590],[-13,3]],[[49253,9593],[-12,9]],[[49241,9602],[-8,4]],[[49233,9606],[-19,3]],[[49214,9609],[-40,-3]],[[49174,9606],[-11,3]],[[49163,9609],[-18,-3]],[[49145,9606],[-1,7]],[[49144,9613],[-14,6]],[[49130,9619],[-6,6]],[[49124,9625],[-14,10]],[[49110,9635],[0,3]],[[49110,9638],[-5,3]],[[49105,9641],[-6,7]],[[49099,9648],[-7,3]],[[49092,9651],[0,3]],[[49092,9654],[-12,7]],[[49080,9661],[-8,0]],[[49072,9661],[-8,-4]],[[49064,9657],[-11,4]],[[49053,9661],[-14,3]],[[49039,9664],[-1,7]],[[49038,9671],[-31,16]],[[49007,9687],[-10,-14]],[[48997,9673],[-9,-2]],[[48988,9671],[0,2]],[[48988,9673],[-9,4]],[[48979,9677],[-2,-20]],[[48977,9657],[-8,-9]],[[48969,9648],[-15,-13]],[[48954,9635],[-27,-6]],[[48927,9629],[-30,9]],[[48897,9638],[5,3]],[[48902,9641],[2,7]],[[48904,9648],[9,23]],[[48913,9671],[-9,2]],[[48904,9673],[0,4]],[[48904,9677],[-2,7]],[[48902,9684],[-5,6]],[[48897,9690],[-60,3]],[[48837,9693],[-15,19]],[[48822,9712],[-1,7]],[[48821,9719],[-8,9]],[[48813,9728],[-6,17]],[[48807,9745],[-22,16]],[[48785,9761],[0,3]],[[48785,9764],[-9,7]],[[48776,9771],[-8,13]],[[48768,9784],[-3,3]],[[48765,9787],[-3,6]],[[48762,9793],[-7,7]],[[48755,9800],[0,6]],[[48755,9806],[-11,10]],[[48744,9816],[0,3]],[[48744,9819],[-14,13]],[[48730,9832],[0,7]],[[48730,9839],[-11,6]],[[48719,9845],[-3,0]],[[48716,9845],[-14,10]],[[48702,9855],[0,3]],[[48702,9858],[-11,4]],[[48691,9862],[0,2]],[[48691,9864],[-9,3]],[[48682,9867],[0,4]],[[48682,9871],[-3,3]],[[48679,9874],[0,4]],[[48679,9878],[-9,5]],[[48670,9883],[-5,11]],[[48665,9894],[-5,3]],[[48660,9897],[-6,3]],[[48654,9900],[-3,6]],[[48651,9906],[-6,4]],[[48645,9910],[-4,6]],[[48641,9916],[-7,6]],[[48634,9922],[-8,10]],[[48626,9932],[-6,3]],[[48620,9935],[0,4]],[[48620,9939],[-11,6]],[[48609,9945],[0,4]],[[48609,9949],[-10,3]],[[48599,9952],[0,3]],[[48599,9955],[-9,3]],[[48590,9958],[0,3]],[[48590,9961],[-22,7]],[[48568,9968],[0,3]],[[48568,9971],[-8,3]],[[48560,9974],[-6,7]],[[48554,9981],[-14,3]],[[48540,9984],[0,3]],[[48540,9987],[-20,7]],[[48520,9994],[0,3]],[[48520,9997],[-22,9]],[[48498,10006],[0,4]],[[48498,10010],[-13,3]],[[48485,10013],[0,3]],[[48485,10016],[-7,4]],[[48478,10020],[0,2]],[[48478,10022],[-10,4]],[[48468,10026],[0,3]],[[48468,10029],[-9,4]],[[48459,10033],[0,3]],[[48459,10036],[-9,3]],[[48450,10039],[0,3]],[[48450,10042],[-15,7]],[[48435,10049],[-7,9]],[[48428,10058],[-10,3]],[[48418,10061],[0,4]],[[48418,10065],[-9,3]],[[48409,10068],[0,4]],[[48409,10072],[-11,2]],[[48398,10074],[0,3]],[[48398,10077],[-11,4]],[[48387,10081],[-5,7]],[[48382,10088],[-15,5]],[[48367,10093],[-10,17]],[[48357,10110],[-10,6]],[[48347,10116],[-5,10]],[[48342,10126],[-10,3]],[[48332,10129],[0,3]],[[48332,10132],[-14,4]],[[48318,10136],[-4,12]],[[48314,10148],[-7,7]],[[48307,10155],[0,4]],[[48307,10159],[-6,3]],[[48301,10162],[0,3]],[[48301,10165],[-4,6]],[[48297,10171],[-8,10]],[[48289,10181],[-6,3]],[[48283,10184],[0,3]],[[48283,10187],[-7,4]],[[48276,10191],[0,3]],[[48276,10194],[-20,6]],[[48256,10200],[0,4]],[[48256,10204],[-23,9]],[[48233,10213],[0,3]],[[48233,10216],[-10,20]],[[48223,10236],[0,6]],[[48223,10242],[-6,4]],[[48217,10246],[0,3]],[[48217,10249],[-11,13]],[[48206,10262],[-8,9]],[[48198,10271],[-1,4]],[[48197,10275],[-7,3]],[[48190,10278],[-1,3]],[[48189,10281],[-6,6]],[[48183,10287],[-16,14]],[[48167,10301],[-2,2]],[[48165,10303],[-9,0]],[[48156,10303],[0,7]],[[48156,10310],[-8,4]],[[48148,10314],[-15,9]],[[48133,10323],[-31,19]],[[48102,10342],[-10,4]],[[48092,10346],[-17,16]],[[48075,10362],[0,3]],[[48075,10365],[-14,7]],[[48061,10372],[0,3]],[[48061,10375],[-11,3]],[[48050,10378],[-20,10]],[[48030,10388],[-19,9]],[[48011,10397],[-14,17]],[[47997,10414],[-17,6]],[[47980,10420],[0,4]],[[47980,10424],[-10,2]],[[47970,10426],[-31,14]],[[47939,10440],[-8,6]],[[47931,10446],[0,3]],[[47931,10449],[-45,20]],[[47886,10469],[0,3]],[[47886,10472],[-6,3]],[[47880,10475],[-20,16]],[[47860,10491],[-11,6]],[[47849,10497],[0,4]],[[47849,10501],[-35,10]],[[47814,10511],[-6,6]],[[47808,10517],[-20,10]],[[47788,10527],[0,3]],[[47788,10530],[-10,3]],[[47778,10533],[-7,10]],[[47771,10543],[-28,9]],[[47743,10552],[-5,7]],[[47738,10559],[-14,-3]],[[47724,10556],[-2,12]],[[47722,10568],[-8,4]],[[47714,10572],[-1,3]],[[47713,10575],[-8,4]],[[47705,10579],[0,3]],[[47705,10582],[-8,3]],[[47697,10585],[0,3]],[[47697,10588],[-12,3]],[[47685,10591],[0,4]],[[47685,10595],[-13,6]],[[47672,10601],[0,3]],[[47672,10604],[-9,0]],[[47663,10604],[-5,3]],[[47658,10607],[-4,4]],[[47654,10611],[-7,3]],[[47647,10614],[-11,3]],[[47636,10617],[-4,7]],[[47632,10624],[-10,3]],[[47622,10627],[-7,7]],[[47615,10634],[-61,16]],[[47554,10650],[0,3]],[[47554,10653],[-11,3]],[[47543,10656],[0,3]],[[47543,10659],[-14,7]],[[47529,10666],[-3,6]],[[47526,10672],[-13,3]],[[47513,10675],[0,4]],[[47513,10679],[-9,3]],[[47504,10682],[-3,6]],[[47501,10688],[-21,10]],[[47480,10698],[-9,9]],[[47471,10707],[-45,7]],[[47426,10714],[0,4]],[[47426,10718],[-19,9]],[[47407,10727],[-14,10]],[[47393,10737],[-11,3]],[[47382,10740],[0,3]],[[47382,10743],[-20,3]],[[47362,10746],[0,4]],[[47362,10750],[-11,3]],[[47351,10753],[-19,13]],[[47332,10766],[-12,3]],[[47320,10769],[0,4]],[[47320,10773],[-21,5]],[[47299,10778],[-14,11]],[[47285,10789],[-26,9]],[[47259,10798],[0,3]],[[47259,10801],[-13,4]],[[47246,10805],[0,3]],[[47246,10808],[-51,16]],[[47195,10824],[0,3]],[[47195,10827],[-41,13]],[[47154,10840],[0,4]],[[47154,10844],[-14,2]],[[47140,10846],[0,4]],[[47140,10850],[-6,3]],[[47134,10853],[-8,3]],[[47126,10856],[-23,7]],[[47103,10863],[0,3]],[[47103,10866],[-25,3]],[[47078,10869],[0,4]],[[47078,10873],[-25,6]],[[47053,10879],[-28,16]],[[47025,10895],[-13,3]],[[47012,10898],[-9,10]],[[47003,10908],[-19,3]],[[46984,10911],[0,4]],[[46984,10915],[-5,2]],[[46979,10917],[0,4]],[[46979,10921],[-57,7]],[[46922,10928],[0,3]],[[46922,10931],[-13,3]],[[46909,10934],[0,3]],[[46909,10937],[-40,-6]],[[46869,10931],[-21,-7]],[[46848,10924],[-11,4]],[[46837,10928],[0,-4]],[[46837,10924],[-20,-3]],[[46817,10921],[-11,13]],[[46806,10934],[-15,3]],[[46791,10937],[0,3]],[[46791,10940],[-13,4]],[[46778,10944],[0,3]],[[46778,10947],[-11,16]],[[46767,10963],[-20,20]],[[46747,10983],[-5,3]],[[46742,10986],[0,2]],[[46742,10988],[-15,7]],[[46727,10995],[0,4]],[[46727,10999],[-11,3]],[[46716,11002],[-10,9]],[[46706,11011],[-9,10]],[[46697,11021],[0,3]],[[46697,11024],[-20,7]],[[46677,11031],[-5,6]],[[46672,11037],[-51,6]],[[46621,11043],[0,-3]],[[46621,11040],[-16,-3]],[[46605,11037],[0,-3]],[[46605,11034],[-9,-13]],[[46596,11021],[-11,0]],[[46585,11021],[-14,3]],[[46571,11024],[0,3]],[[46571,11027],[-19,27]],[[46552,11054],[0,3]],[[46552,11057],[14,3]],[[46566,11060],[9,10]],[[46575,11070],[5,3]],[[46580,11073],[0,3]],[[46580,11076],[6,3]],[[46586,11079],[11,10]],[[46597,11089],[8,16]],[[46605,11105],[0,3]],[[46605,11108],[5,7]],[[46610,11115],[0,29]],[[46610,11144],[-5,13]],[[46605,11157],[0,9]],[[46605,11166],[-8,13]],[[46597,11179],[-1,7]],[[46596,11186],[-5,7]],[[46591,11193],[0,3]],[[46591,11196],[-5,2]],[[46586,11198],[-1,7]],[[46585,11205],[-5,7]],[[46580,11212],[0,3]],[[46580,11215],[-48,35]],[[46532,11250],[-18,20]],[[46514,11270],[-10,6]],[[46504,11276],[0,4]],[[46504,11280],[-10,6]],[[46494,11286],[0,3]],[[46494,11289],[-11,7]],[[46483,11296],[-9,9]],[[46474,11305],[-19,13]],[[46455,11318],[-1,7]],[[46454,11325],[-10,13]],[[46444,11338],[0,3]],[[46444,11341],[-14,3]],[[46430,11344],[-1,7]],[[46429,11351],[-5,3]],[[46424,11354],[0,3]],[[46424,11357],[-19,26]],[[46405,11383],[0,4]],[[46405,11387],[-12,5]],[[46393,11392],[-10,7]],[[46383,11399],[-3,4]],[[46380,11403],[-1,9]],[[46379,11412],[-19,10]],[[46360,11422],[0,3]],[[46360,11425],[-9,3]],[[46351,11428],[0,3]],[[46351,11431],[-11,4]],[[46340,11435],[-7,6]],[[46333,11441],[-34,10]],[[46299,11451],[-20,16]],[[46279,11467],[-10,3]],[[46269,11470],[-1,7]],[[46268,11477],[-24,9]],[[46244,11486],[0,4]],[[46244,11490],[-35,12]],[[46209,11502],[-25,10]],[[46184,11512],[-16,10]],[[46168,11522],[0,3]],[[46168,11525],[-9,4]],[[46159,11529],[-32,12]],[[46127,11541],[-31,10]],[[46096,11551],[-9,7]],[[46087,11558],[-31,9]],[[46056,11567],[0,3]],[[46056,11570],[-13,0]],[[46043,11570],[-8,7]],[[46035,11577],[-20,3]],[[46015,11580],[-17,10]],[[45998,11590],[-36,3]],[[45962,11593],[-12,13]],[[45950,11606],[-14,-4]],[[45936,11602],[-11,7]],[[45925,11609],[-14,4]],[[45911,11613],[-5,6]],[[45906,11619],[-31,0]],[[45875,11619],[0,3]],[[45875,11622],[-16,3]],[[45859,11625],[0,4]],[[45859,11629],[-9,3]],[[45850,11632],[-21,3]],[[45829,11635],[-11,3]],[[45818,11638],[0,-3]],[[45818,11635],[-37,3]],[[45781,11638],[0,3]],[[45781,11641],[-16,-3]],[[45765,11638],[0,3]],[[45765,11641],[-50,7]],[[45715,11648],[-6,9]],[[45709,11657],[-29,0]],[[45680,11657],[-32,-3]],[[45648,11654],[-28,-6]],[[45620,11648],[0,-3]],[[45620,11645],[-32,-4]],[[45588,11641],[0,10]],[[45588,11651],[-5,6]],[[45583,11657],[0,4]],[[45583,11661],[-8,3]],[[45575,11664],[-11,4]],[[45564,11668],[-9,2]],[[45555,11670],[0,4]],[[45555,11674],[-25,6]],[[45530,11680],[0,4]],[[45530,11684],[-47,3]],[[45483,11687],[0,3]],[[45483,11690],[-64,3]],[[45419,11693],[0,3]],[[45419,11696],[-94,10]],[[45325,11706],[-37,3]],[[45288,11709],[-42,-6]],[[45246,11703],[-14,-13]],[[45232,11690],[-10,-3]],[[45222,11687],[0,-3]],[[45222,11684],[-22,19]],[[45200,11703],[-10,6]],[[45190,11709],[-19,10]],[[45171,11719],[0,3]],[[45171,11722],[-11,3]],[[45160,11725],[0,4]],[[45160,11729],[-23,10]],[[45137,11739],[0,2]],[[45137,11741],[-38,4]],[[45099,11745],[-12,6]],[[45087,11751],[-11,7]],[[45076,11758],[-25,3]],[[45051,11761],[-13,7]],[[45038,11768],[-45,3]],[[44993,11771],[-41,9]],[[44952,11780],[-43,4]],[[44909,11784],[-14,-4]],[[44895,11780],[-7,4]],[[44888,11784],[-31,-7]],[[44857,11777],[-4,-9]],[[44853,11768],[-10,3]],[[44843,11771],[0,3]],[[44843,11774],[-30,0]],[[44813,11774],[0,3]],[[44813,11777],[-9,3]],[[44804,11780],[0,4]],[[44804,11784],[-8,3]],[[44796,11787],[0,3]],[[44796,11790],[-25,-3]],[[44771,11787],[0,3]],[[44771,11790],[-9,3]],[[44762,11793],[-14,0]],[[44748,11793],[-30,3]],[[44718,11796],[-25,10]],[[44693,11806],[-25,4]],[[44668,11810],[-23,2]],[[44645,11812],[-14,0]],[[44631,11812],[-16,11]],[[44615,11823],[-17,3]],[[44598,11826],[-8,6]],[[44590,11832],[-14,-3]],[[44576,11829],[-9,3]],[[44567,11832],[-20,3]],[[44547,11835],[0,4]],[[44547,11839],[-21,0]],[[44526,11839],[-6,6]],[[44520,11845],[-53,3]],[[44467,11848],[0,3]],[[44467,11851],[-8,-3]],[[44459,11848],[-3,7]],[[44456,11855],[-20,6]],[[44436,11861],[-30,13]],[[44406,11874],[-73,13]],[[44333,11887],[-17,7]],[[44316,11894],[-28,3]],[[44288,11897],[-14,6]],[[44274,11903],[-61,7]],[[44213,11910],[0,3]],[[44213,11913],[-25,3]],[[44188,11916],[0,3]],[[44188,11919],[-50,3]],[[44138,11922],[-5,0]],[[44133,11922],[-36,-6]],[[44097,11916],[0,3]],[[44097,11919],[-36,3]],[[44061,11922],[-4,7]],[[44057,11929],[-13,3]],[[44044,11932],[-6,10]],[[44038,11942],[-6,7]],[[44032,11949],[-3,6]],[[44029,11955],[-32,29]],[[43997,11984],[0,3]],[[43997,11987],[-20,7]],[[43977,11994],[0,3]],[[43977,11997],[-26,6]],[[43951,12003],[-21,7]],[[43930,12010],[-68,19]],[[43862,12029],[0,4]],[[43862,12033],[-43,12]],[[43819,12045],[-25,0]],[[43794,12045],[-9,4]],[[43785,12049],[-11,9]],[[43774,12058],[-33,10]],[[43741,12068],[0,3]],[[43741,12071],[-17,3]],[[43724,12074],[-20,3]],[[43704,12077],[-33,-3]],[[43671,12074],[0,3]],[[43671,12077],[-45,7]],[[43626,12084],[-66,9]],[[43560,12093],[-11,0]],[[43549,12093],[0,4]],[[43549,12097],[-21,3]],[[43528,12100],[-25,10]],[[43503,12110],[-33,10]],[[43470,12120],[-6,-7]],[[43464,12113],[-36,0]],[[43428,12113],[-41,7]],[[43387,12120],[-9,0]],[[43378,12120],[-19,0]],[[43359,12120],[0,-4]],[[43359,12116],[-28,4]],[[43331,12120],[-44,-4]],[[43287,12116],[-20,-3]],[[43267,12113],[0,-3]],[[43267,12110],[-100,3]],[[43167,12113],[0,-3]],[[43167,12110],[-37,-3]],[[43130,12107],[-55,-7]],[[43075,12100],[-25,-3]],[[43050,12097],[-55,-4]],[[42995,12093],[-92,-5]],[[42903,12088],[-23,-14]],[[42880,12074],[-34,-3]],[[42846,12071],[0,-3]],[[42846,12068],[-89,-3]],[[42757,12065],[0,-4]],[[42757,12061],[-19,-3]],[[42738,12058],[-39,3]],[[42699,12061],[-86,4]],[[42613,12065],[-1,0]],[[42612,12065],[-44,9]],[[42568,12074],[0,-3]],[[42568,12071],[-36,-6]],[[42532,12065],[-9,-7]],[[42523,12058],[-36,3]],[[42487,12061],[0,4]],[[42487,12065],[-52,-7]],[[42435,12058],[0,-3]],[[42435,12055],[-118,-3]],[[42317,12052],[0,-3]],[[42317,12049],[-53,-7]],[[42264,12042],[-19,-3]],[[42245,12039],[0,-3]],[[42245,12036],[-59,-3]],[[42186,12033],[-22,-7]],[[42164,12026],[-61,-6]],[[42103,12020],[-5,0]],[[42098,12020],[-34,-4]],[[42064,12016],[0,-3]],[[42064,12013],[-20,-3]],[[42044,12010],[-30,-7]],[[42014,12003],[-6,-3]],[[42008,12000],[0,-3]],[[42008,11997],[-11,0]],[[41997,11997],[-46,3]],[[41951,12000],[0,-3]],[[41951,11997],[-45,0]],[[41906,11997],[0,-3]],[[41906,11994],[-58,-13]],[[41848,11981],[-7,9]],[[41841,11990],[-38,4]],[[41803,11994],[0,-7]],[[41803,11987],[-12,3]],[[41791,11990],[0,4]],[[41791,11994],[-11,3]],[[41780,11997],[0,3]],[[41780,12000],[-13,10]],[[41767,12010],[-7,19]],[[41760,12029],[-19,10]],[[41741,12039],[0,3]],[[41741,12042],[-11,3]],[[41730,12045],[0,4]],[[41730,12049],[-41,-7]],[[41689,12042],[0,-3]],[[41689,12039],[-14,-3]],[[41675,12036],[0,-3]],[[41675,12033],[-15,-4]],[[41660,12029],[-14,-9]],[[41646,12020],[-25,-7]],[[41621,12013],[-47,-16]],[[41574,11997],[-94,-10]],[[41480,11987],[-4,-16]],[[41476,11971],[-25,-6]],[[41451,11965],[0,3]],[[41451,11968],[-8,13]],[[41443,11981],[0,6]],[[41443,11987],[-13,3]],[[41430,11990],[-20,10]],[[41410,12000],[-6,3]],[[41404,12003],[-5,10]],[[41399,12013],[-6,3]],[[41393,12016],[-3,6]],[[41390,12022],[-11,4]],[[41379,12026],[0,3]],[[41379,12029],[-21,7]],[[41358,12036],[0,6]],[[41358,12042],[-6,13]],[[41352,12055],[0,3]],[[41352,12058],[-15,16]],[[41337,12074],[-28,-9]],[[41309,12065],[-11,3]],[[41298,12068],[0,3]],[[41298,12071],[-39,29]],[[41259,12100],[0,4]],[[41259,12104],[-11,-4]],[[41248,12100],[-10,7]],[[41238,12107],[-9,3]],[[41229,12110],[-2,6]],[[41227,12116],[-6,7]],[[41221,12123],[-5,13]],[[41216,12136],[-7,9]],[[41209,12145],[0,4]],[[41209,12149],[-16,10]],[[41193,12159],[-6,19]],[[41187,12178],[-10,16]],[[41177,12194],[0,3]],[[41177,12197],[-4,7]],[[41173,12204],[0,3]],[[41173,12207],[-16,3]],[[41157,12210],[0,3]],[[41157,12213],[-14,3]],[[41143,12216],[-5,7]],[[41138,12223],[-10,9]],[[41128,12232],[-2,14]],[[41126,12246],[-8,25]],[[41118,12271],[-1,7]],[[41117,12278],[-11,9]],[[41106,12287],[0,4]],[[41106,12291],[-55,12]],[[41051,12303],[0,4]],[[41051,12307],[-9,7]],[[41042,12314],[0,6]],[[41042,12320],[-7,10]],[[41035,12330],[0,3]],[[41035,12333],[-7,3]],[[41028,12336],[-3,6]],[[41025,12342],[0,4]],[[41025,12346],[-10,6]],[[41015,12352],[0,7]],[[41015,12359],[-11,32]],[[41004,12391],[-14,32]],[[40990,12423],[-25,3]],[[40965,12426],[-6,-9]],[[40959,12417],[-34,-7]],[[40925,12410],[-21,0]],[[40904,12410],[-11,-6]],[[40893,12404],[0,3]],[[40893,12407],[-23,0]],[[40870,12407],[0,3]],[[40870,12410],[-55,7]],[[40815,12417],[-25,-13]],[[40790,12404],[-7,-3]],[[40783,12401],[0,-3]],[[40783,12398],[-18,-7]],[[40765,12391],[-3,-6]],[[40762,12385],[-18,-10]],[[40744,12375],[0,-3]],[[40744,12372],[-7,-10]],[[40737,12362],[-14,-7]],[[40723,12355],[-14,-3]],[[40709,12352],[-9,-3]],[[40700,12349],[-2,-7]],[[40698,12342],[-7,-6]],[[40691,12336],[-13,-6]],[[40678,12330],[-5,-10]],[[40673,12320],[-9,-3]],[[40664,12317],[0,-7]],[[40664,12310],[-22,-9]],[[40642,12301],[-3,-10]],[[40639,12291],[-12,-7]],[[40627,12284],[-5,-9]],[[40622,12275],[-8,-4]],[[40614,12271],[0,-3]],[[40614,12268],[-20,-13]],[[40594,12255],[0,-3]],[[40594,12252],[-6,-3]],[[40588,12249],[-5,-6]],[[40583,12243],[-6,-4]],[[40577,12239],[0,-3]],[[40577,12236],[-5,-4]],[[40572,12232],[-5,-5]],[[40567,12227],[-18,-14]],[[40549,12213],[-5,-9]],[[40544,12204],[-6,-7]],[[40538,12197],[-16,-13]],[[40522,12184],[-23,-9]],[[40499,12175],[-2,-7]],[[40497,12168],[-1,-9]],[[40496,12159],[-8,-4]],[[40488,12155],[-14,-6]],[[40474,12149],[0,-4]],[[40474,12145],[-3,-3]],[[40471,12142],[-5,-3]],[[40466,12139],[0,-3]],[[40466,12136],[-9,-4]],[[40457,12132],[0,-6]],[[40457,12126],[-24,-16]],[[40433,12110],[-8,-10]],[[40425,12100],[-17,-22]],[[40408,12078],[-1,-1]],[[40407,12077],[-2,-3]],[[40405,12074],[-3,-3]],[[40402,12071],[0,-3]],[[40402,12068],[-6,0]],[[40396,12068],[-3,-7]],[[40393,12061],[-7,-3]],[[40386,12058],[0,-3]],[[40386,12055],[-4,-3]],[[40382,12052],[-21,-16]],[[40361,12036],[-9,-3]],[[40352,12033],[0,-4]],[[40352,12029],[-9,-9]],[[40343,12020],[-2,-7]],[[40341,12013],[-5,-3]],[[40336,12010],[0,-4]],[[40336,12006],[-9,-9]],[[40327,11997],[0,-3]],[[40327,11994],[-5,-7]],[[40322,11987],[0,-3]],[[40322,11984],[-12,-13]],[[40310,11971],[0,-3]],[[40310,11968],[-16,-19]],[[40294,11949],[-17,-101]],[[40277,11848],[-3,3]],[[40274,11851],[0,4]],[[40274,11855],[-13,3]],[[40261,11858],[0,3]],[[40261,11861],[-6,3]],[[40255,11864],[-3,0]],[[40252,11864],[-1,3]],[[40251,11867],[-5,11]],[[40246,11878],[-11,5]],[[40235,11883],[-5,7]],[[40230,11890],[2,-26]],[[40232,11864],[4,-6]],[[40236,11858],[0,-16]],[[40236,11842],[-6,-30]],[[40230,11812],[2,-25]],[[40232,11787],[4,0]],[[40236,11787],[10,9]],[[40246,11796],[0,-3]],[[40246,11793],[0,-3]],[[40246,11790],[0,-3]],[[40246,11787],[0,-10]],[[40246,11777],[0,3]],[[40246,11780],[6,4]],[[40252,11784],[13,9]],[[40265,11793],[6,3]],[[40271,11796],[0,7]],[[40271,11803],[9,3]],[[40280,11806],[0,6]],[[40280,11812],[5,4]],[[40285,11816],[9,13]],[[40294,11829],[3,3]],[[40297,11832],[0,7]],[[40297,11839],[5,6]],[[40302,11845],[0,3]],[[40302,11848],[8,-3]],[[40310,11845],[0,-13]],[[40310,11832],[-8,-9]],[[40302,11823],[-5,-7]],[[40297,11816],[-3,-6]],[[40294,11810],[-9,-10]],[[40285,11800],[-8,-4]],[[40277,11796],[0,-3]],[[40277,11793],[-6,-3]],[[40271,11790],[0,-3]],[[40271,11787],[-6,-7]],[[40265,11780],[-5,-6]],[[40260,11774],[-11,-3]],[[40249,11771],[0,-3]],[[40249,11768],[-17,3]],[[40232,11771],[0,3]],[[40232,11774],[-31,3]],[[40201,11777],[-7,-6]],[[40194,11771],[-9,-3]],[[40185,11768],[-5,-7]],[[40180,11761],[-14,-16]],[[40166,11745],[0,-4]],[[40166,11741],[-6,-6]],[[40160,11735],[0,-3]],[[40160,11732],[-6,-7]],[[40154,11725],[0,-3]],[[40154,11722],[-5,-3]],[[40149,11719],[-9,-19]],[[40140,11700],[-11,-7]],[[40129,11693],[0,-6]],[[40129,11687],[-8,-13]],[[40121,11674],[-6,-17]],[[40115,11657],[-16,-32]],[[40099,11625],[0,-3]],[[40099,11622],[-5,-3]],[[40094,11619],[0,-3]],[[40094,11616],[-4,-3]],[[40090,11613],[-5,-7]],[[40085,11606],[-9,-13]],[[40076,11593],[0,-3]],[[40076,11590],[-3,-4]],[[40073,11586],[-5,-19]],[[40068,11567],[-9,-13]],[[40059,11554],[-7,-16]],[[40052,11538],[-4,-7]],[[40048,11531],[-5,-12]],[[40043,11519],[-5,-4]],[[40038,11515],[-3,-6]],[[40035,11509],[-5,-3]],[[40030,11506],[-3,-7]],[[40027,11499],[-9,-9]],[[40018,11490],[0,-4]],[[40018,11486],[-5,-3]],[[40013,11483],[0,-3]],[[40013,11480],[-11,-13]],[[40002,11467],[0,-3]],[[40002,11464],[-7,-6]],[[39995,11458],[-2,-7]],[[39993,11451],[-8,-20]],[[39985,11431],[-6,-12]],[[39979,11419],[0,-7]],[[39979,11412],[-14,-29]],[[39965,11383],[0,-19]],[[39965,11364],[0,-29]],[[39965,11335],[-3,-17]],[[39962,11318],[-3,-6]],[[39959,11312],[6,-62]],[[39965,11250],[0,-41]],[[39965,11209],[-3,-78]],[[39962,11131],[-3,-29]],[[39959,11102],[-16,-116]],[[39943,10986],[-5,-7]],[[39938,10979],[-4,-13]],[[39934,10966],[-7,-16]],[[39927,10950],[0,-13]],[[39927,10937],[-10,-29]],[[39917,10908],[-4,-26]],[[39913,10882],[0,-16]],[[39913,10866],[4,-10]],[[39917,10856],[7,-10]],[[39924,10846],[3,-12]],[[39927,10834],[10,-26]],[[39937,10808],[0,-3]],[[39937,10805],[6,-4]],[[39943,10801],[-8,-9]],[[39935,10792],[-8,-3]],[[39927,10789],[0,-4]],[[39927,10785],[-10,-19]],[[39917,10766],[-4,-7]],[[39913,10759],[-4,-6]],[[39909,10753],[0,-3]],[[39909,10750],[-6,-16]],[[39903,10734],[0,-4]],[[39903,10730],[-7,-16]],[[39896,10714],[0,-12]],[[39896,10702],[-18,-91]],[[39878,10611],[0,-29]],[[39878,10582],[0,-42]],[[39878,10540],[18,-59]],[[39896,10481],[0,-6]],[[39896,10475],[7,-13]],[[39903,10462],[0,-3]],[[39903,10459],[6,-6]],[[39909,10453],[0,-4]],[[39909,10449],[4,-3]],[[39913,10446],[4,-6]],[[39917,10440],[7,-10]],[[39924,10430],[3,-6]],[[39927,10424],[7,-10]],[[39934,10414],[4,-10]],[[39938,10404],[5,-7]],[[39943,10397],[16,-48]],[[39959,10349],[3,-13]],[[39962,10336],[0,-19]],[[39962,10317],[-3,-14]],[[39959,10303],[-16,-132]],[[39943,10171],[-5,-16]],[[39938,10155],[-4,-171]],[[39934,9984],[-7,-10]],[[39927,9974],[-3,-6]],[[39924,9968],[-7,-13]],[[39917,9955],[-4,-6]],[[39913,9949],[-4,-7]],[[39909,9942],[0,-3]],[[39909,9939],[-6,-10]],[[39903,9929],[0,-3]],[[39903,9926],[-7,-10]],[[39896,9916],[0,-6]],[[39896,9910],[-18,-32]],[[39878,9878],[-4,-11]],[[39874,9867],[-7,-12]],[[39867,9855],[-5,-13]],[[39862,9842],[-5,-7]],[[39857,9835],[0,-3]],[[39857,9832],[-4,-6]],[[39853,9826],[-2,-10]],[[39851,9816],[-5,-6]],[[39846,9810],[-3,-14]],[[39843,9796],[-6,-9]],[[39837,9787],[0,-7]],[[39837,9780],[-5,-6]],[[39832,9774],[0,-7]],[[39832,9767],[-9,-16]],[[39823,9751],[0,-6]],[[39823,9745],[-5,-6]],[[39818,9739],[0,-7]],[[39818,9732],[-6,-10]],[[39812,9722],[0,-97]],[[39812,9625],[25,4]],[[39837,9629],[14,-13]],[[39851,9616],[-5,-7]],[[39846,9609],[-3,-9]],[[39843,9600],[-6,-7]],[[39837,9593],[0,-7]],[[39837,9586],[-5,-3]],[[39832,9583],[0,-6]],[[39832,9577],[-9,-20]],[[39823,9557],[0,-6]],[[39823,9551],[-5,-10]],[[39818,9541],[0,-12]],[[39818,9529],[0,-39]],[[39818,9490],[0,-4]],[[39818,9486],[5,-3]],[[39823,9483],[0,-3]],[[39823,9480],[9,-20]],[[39832,9460],[0,-9]],[[39832,9451],[-9,-39]],[[39823,9412],[0,-13]],[[39823,9399],[-5,-35]],[[39818,9364],[0,-29]],[[39818,9335],[5,-10]],[[39823,9325],[0,-10]],[[39823,9315],[5,-15]],[[39828,9300],[4,-11]],[[39832,9289],[0,-6]],[[39832,9283],[5,-7]],[[39837,9276],[0,-6]],[[39837,9270],[6,-13]],[[39843,9257],[3,-9]],[[39846,9248],[5,-4]],[[39851,9244],[2,-7]],[[39853,9237],[4,-3]],[[39857,9234],[0,-3]],[[39857,9231],[5,-3]],[[39862,9228],[5,-10]],[[39867,9218],[7,-9]],[[39874,9209],[4,-7]],[[39878,9202],[18,-25]],[[39896,9177],[0,-4]],[[39896,9173],[7,-7]],[[39903,9166],[0,-3]],[[39903,9163],[6,-9]],[[39909,9154],[0,-4]],[[39909,9150],[4,-3]],[[39913,9147],[4,-6]],[[39917,9141],[10,-13]],[[39927,9128],[0,3]],[[39927,9131],[7,3]],[[39934,9134],[3,7]],[[39937,9141],[11,3]],[[39948,9144],[11,-10]],[[39959,9134],[26,-9]],[[39985,9125],[0,-14]],[[39985,9111],[-6,-29]],[[39979,9082],[0,-3]],[[39979,9079],[16,-3]],[[39995,9076],[0,-6]],[[39995,9070],[32,-7]],[[40027,9063],[32,26]],[[40059,9089],[11,10]],[[40070,9099],[6,6]],[[40076,9105],[14,-3]],[[40090,9102],[4,-7]],[[40094,9095],[5,-3]],[[40099,9092],[0,-6]],[[40099,9086],[5,-7]],[[40104,9079],[0,-9]],[[40104,9070],[-5,-78]],[[40099,8992],[0,-4]],[[40099,8988],[-5,-5]],[[40094,8983],[0,-4]],[[40094,8979],[-4,-7]],[[40090,8972],[0,-3]],[[40090,8969],[-5,-6]],[[40085,8963],[0,-7]],[[40085,8956],[-15,-12]],[[40070,8944],[0,-4]],[[40070,8940],[-16,-3]],[[40054,8937],[5,-16]],[[40059,8921],[7,-26]],[[40066,8895],[10,-23]],[[40076,8872],[-3,-6]],[[40073,8866],[-3,-10]],[[40070,8856],[-11,-12]],[[40059,8844],[-5,-17]],[[40054,8827],[-6,-6]],[[40048,8821],[-5,-13]],[[40043,8808],[-5,-7]],[[40038,8801],[-3,-12]],[[40035,8789],[-5,-4]],[[40030,8785],[-3,-9]],[[40027,8776],[-9,-10]],[[40018,8766],[0,-4]],[[40018,8762],[-5,-3]],[[40013,8759],[0,-6]],[[40013,8753],[-6,-7]],[[40007,8746],[0,-3]],[[40007,8743],[-5,-3]],[[40002,8740],[-3,-6]],[[39999,8734],[-4,-4]],[[39995,8730],[-2,-13]],[[39993,8717],[-8,-12]],[[39985,8705],[-6,-7]],[[39979,8698],[0,-7]],[[39979,8691],[-16,-16]],[[39963,8675],[-1,-3]],[[39962,8672],[-5,-3]],[[39957,8669],[-12,-16]],[[39945,8653],[-7,-3]],[[39938,8650],[-4,-10]],[[39934,8640],[-7,-10]],[[39927,8630],[-3,-7]],[[39924,8623],[-7,-9]],[[39917,8614],[-4,-7]],[[39913,8607],[-4,-3]],[[39909,8604],[0,-3]],[[39909,8601],[-6,-6]],[[39903,8595],[0,-4]],[[39903,8591],[-7,-9]],[[39896,8582],[0,-3]],[[39896,8579],[-18,-33]],[[39878,8546],[-4,-10]],[[39874,8536],[-7,-12]],[[39867,8524],[-10,-13]],[[39857,8511],[-4,-7]],[[39853,8504],[-2,-9]],[[39851,8495],[-5,-7]],[[39846,8488],[-3,-10]],[[39843,8478],[-6,-9]],[[39837,8469],[0,-4]],[[39837,8465],[-5,-3]],[[39832,8462],[0,-3]],[[39832,8459],[-9,-16]],[[39823,8443],[0,-26]],[[39823,8417],[9,-16]],[[39832,8401],[0,-4]],[[39832,8397],[14,-6]],[[39846,8391],[0,-3]],[[39846,8388],[5,-3]],[[39851,8385],[0,-4]],[[39851,8381],[-28,-9]],[[39823,8372],[0,-3]],[[39823,8369],[9,-16]],[[39832,8353],[0,-4]],[[39832,8349],[11,-3]],[[39843,8346],[0,-4]],[[39843,8342],[31,4]],[[39874,8346],[0,3]],[[39874,8349],[0,-19]],[[39874,8330],[0,-4]],[[39874,8326],[-10,-6]],[[39864,8320],[0,-6]],[[39864,8314],[-27,0]],[[39837,8314],[0,3]],[[39837,8317],[-14,-10]],[[39823,8307],[-16,-16]],[[39807,8291],[-22,-10]],[[39785,8281],[-3,-6]],[[39782,8275],[-9,-7]],[[39773,8268],[0,-3]],[[39773,8265],[8,-3]],[[39781,8262],[4,-20]],[[39785,8242],[0,-48]],[[39785,8194],[-4,-7]],[[39781,8187],[-13,4]],[[39768,8191],[-1,3]],[[39767,8194],[0,13]],[[39767,8207],[-16,26]],[[39751,8233],[0,3]],[[39751,8236],[-29,-20]],[[39722,8216],[-7,7]],[[39715,8223],[-20,-9]],[[39695,8214],[0,-17]],[[39695,8197],[6,-19]],[[39701,8178],[0,-13]],[[39701,8165],[6,-45]],[[39707,8120],[8,-20]],[[39715,8100],[3,-23]],[[39718,8077],[-26,-9]],[[39692,8068],[-11,-3]],[[39681,8065],[-3,-10]],[[39678,8055],[-6,-10]],[[39672,8045],[0,-6]],[[39672,8039],[-5,-7]],[[39667,8032],[-6,-16]],[[39661,8016],[-10,-26]],[[39651,7990],[-1,-6]],[[39650,7984],[-8,-3]],[[39642,7981],[-5,-7]],[[39637,7974],[-8,-3]],[[39629,7971],[0,-3]],[[39629,7968],[-4,-7]],[[39625,7961],[0,-3]],[[39625,7958],[-8,-9]],[[39617,7949],[-9,-27]],[[39608,7922],[-4,-6]],[[39604,7916],[-4,-13]],[[39600,7903],[-10,-13]],[[39590,7890],[0,-3]],[[39590,7887],[-11,-9]],[[39579,7878],[-7,-20]],[[39572,7858],[-5,-7]],[[39567,7851],[0,-6]],[[39567,7845],[-8,-32]],[[39559,7813],[0,-7]],[[39559,7806],[-8,-13]],[[39551,7793],[0,-6]],[[39551,7787],[-12,-23]],[[39539,7764],[0,-6]],[[39539,7758],[-8,-7]],[[39531,7751],[0,-12]],[[39531,7739],[8,-7]],[[39539,7732],[0,-7]],[[39539,7725],[0,-2]],[[39539,7723],[0,-4]],[[39539,7719],[-17,-13]],[[39522,7706],[-16,13]],[[39506,7719],[-9,-7]],[[39497,7712],[0,-3]],[[39497,7709],[0,-19]],[[39497,7690],[0,-10]],[[39497,7680],[9,-16]],[[39506,7664],[0,-3]],[[39506,7661],[24,-4]],[[39530,7657],[1,-9]],[[39531,7648],[-11,-3]],[[39520,7645],[0,3]],[[39520,7648],[-34,-7]],[[39486,7641],[0,-3]],[[39486,7638],[-5,-6]],[[39481,7632],[5,-10]],[[39486,7622],[-5,-20]],[[39481,7602],[-15,-12]],[[39466,7590],[-35,3]],[[39431,7593],[-15,-10]],[[39416,7583],[-7,-13]],[[39409,7570],[0,-19]],[[39409,7551],[14,-3]],[[39423,7548],[13,-19]],[[39436,7529],[8,-4]],[[39444,7525],[1,-3]],[[39445,7522],[5,-7]],[[39450,7515],[0,-6]],[[39450,7509],[-5,-7]],[[39445,7502],[3,-16]],[[39448,7486],[2,-6]],[[39450,7480],[16,-10]],[[39466,7470],[0,-3]],[[39466,7467],[20,-4]],[[39486,7463],[0,-2]],[[39486,7461],[11,-10]],[[39497,7451],[0,-20]],[[39497,7431],[-8,-6]],[[39489,7425],[-12,0]],[[39477,7425],[-27,-16]],[[39450,7409],[0,-13]],[[39450,7396],[0,-45]],[[39450,7351],[0,-7]],[[39450,7344],[-5,-13]],[[39445,7331],[0,-26]],[[39445,7305],[-9,-19]],[[39436,7286],[-13,-38]],[[39423,7248],[-4,-4]],[[39419,7244],[0,-3]],[[39419,7241],[-21,-20]],[[39398,7221],[0,-6]],[[39398,7215],[-18,0]],[[39380,7215],[-10,10]],[[39370,7225],[-25,-10]],[[39345,7215],[-1,-6]],[[39344,7209],[-5,-4]],[[39339,7205],[-14,7]],[[39325,7212],[-11,6]],[[39314,7218],[-6,7]],[[39308,7225],[-16,6]],[[39292,7231],[-14,13]],[[39278,7244],[-18,4]],[[39260,7248],[0,-4]],[[39260,7244],[-7,-10]],[[39253,7234],[0,-6]],[[39253,7228],[7,-16]],[[39260,7212],[0,-3]],[[39260,7209],[-18,-7]],[[39242,7202],[-9,16]],[[39233,7218],[-19,-16]],[[39214,7202],[0,-3]],[[39214,7199],[-4,-7]],[[39210,7192],[-7,-6]],[[39203,7186],[0,-10]],[[39203,7176],[7,-6]],[[39210,7170],[4,-10]],[[39214,7160],[39,-23]],[[39253,7137],[7,-35]],[[39260,7102],[7,-42]],[[39267,7060],[13,-3]],[[39280,7057],[8,-10]],[[39288,7047],[0,-7]],[[39288,7040],[-14,3]],[[39274,7043],[-14,4]],[[39260,7047],[0,-4]],[[39260,7043],[-11,-3]],[[39249,7040],[0,-2]],[[39249,7038],[-25,0]],[[39224,7038],[-2,-11]],[[39222,7027],[0,-45]],[[39222,6982],[2,-10]],[[39224,6972],[-14,-19]],[[39210,6953],[-7,-13]],[[39203,6940],[-1,-9]],[[39202,6931],[-5,-20]],[[39197,6911],[-3,-19]],[[39194,6892],[-5,-7]],[[39189,6885],[-7,-36]],[[39182,6849],[-5,-5]],[[39177,6844],[0,-11]],[[39177,6833],[5,-5]],[[39182,6828],[-5,-33]],[[39177,6795],[-5,-6]],[[39172,6789],[-3,-13]],[[39169,6776],[0,-17]],[[39169,6759],[3,-13]],[[39172,6746],[5,-6]],[[39177,6740],[26,-23]],[[39203,6717],[11,-3]],[[39214,6714],[8,-6]],[[39222,6708],[16,-3]],[[39238,6705],[4,-10]],[[39242,6695],[7,-4]],[[39249,6691],[0,-3]],[[39249,6688],[4,-3]],[[39253,6685],[0,-13]],[[39253,6672],[0,-16]],[[39253,6656],[0,-3]],[[39253,6653],[-4,-7]],[[39249,6646],[0,-6]],[[39249,6640],[-7,-17]],[[39242,6623],[0,-38]],[[39242,6585],[7,-6]],[[39249,6579],[0,-7]],[[39249,6572],[4,-4]],[[39253,6568],[0,-2]],[[39253,6566],[7,-3]],[[39260,6563],[4,-7]],[[39264,6556],[10,-7]],[[39274,6549],[0,-3]],[[39274,6546],[4,-3]],[[39278,6543],[5,-10]],[[39283,6533],[5,-3]],[[39288,6530],[0,-6]],[[39288,6524],[4,-7]],[[39292,6517],[0,-6]],[[39292,6511],[5,-7]],[[39297,6504],[0,-3]],[[39297,6501],[8,-13]],[[39305,6488],[3,-10]],[[39308,6478],[5,-3]],[[39313,6475],[4,-19]],[[39317,6456],[8,-20]],[[39325,6436],[13,-29]],[[39338,6407],[6,-3]],[[39344,6404],[0,-3]],[[39344,6401],[14,-13]],[[39358,6388],[0,-3]],[[39358,6385],[0,19]],[[39358,6404],[0,3]],[[39358,6407],[0,13]],[[39358,6420],[0,13]],[[39358,6433],[12,10]],[[39370,6443],[0,3]],[[39370,6446],[35,-13]],[[39405,6433],[0,-6]],[[39405,6427],[0,-7]],[[39405,6420],[0,-10]],[[39405,6410],[4,-13]],[[39409,6397],[0,-12]],[[39409,6385],[7,-10]],[[39416,6375],[3,-10]],[[39419,6365],[4,-9]],[[39423,6356],[0,-36]],[[39423,6320],[-14,-3]],[[39409,6317],[-11,0]],[[39398,6317],[-7,-3]],[[39391,6314],[0,-7]],[[39391,6307],[-7,-3]],[[39384,6304],[-4,-26]],[[39380,6278],[4,-7]],[[39384,6271],[0,-16]],[[39384,6255],[7,-6]],[[39391,6249],[7,-7]],[[39398,6242],[7,7]],[[39405,6249],[0,13]],[[39405,6262],[4,6]],[[39409,6268],[0,3]],[[39409,6271],[7,10]],[[39416,6281],[0,-3]],[[39416,6278],[7,-3]],[[39423,6275],[2,-7]],[[39425,6268],[5,-13]],[[39430,6255],[4,-61]],[[39434,6194],[11,-26]],[[39445,6168],[0,-22]],[[39445,6146],[36,-3]],[[39481,6143],[8,-11]],[[39489,6132],[8,-3]],[[39497,6129],[0,-3]],[[39497,6126],[12,-6]],[[39509,6120],[0,-4]],[[39509,6116],[10,-3]],[[39519,6113],[40,10]],[[39559,6123],[0,9]],[[39559,6132],[0,4]],[[39559,6136],[8,7]],[[39567,6143],[0,-4]],[[39567,6139],[5,-3]],[[39572,6136],[7,-16]],[[39579,6120],[11,-23]],[[39590,6097],[0,-6]],[[39590,6091],[4,-4]],[[39594,6087],[6,-6]],[[39600,6081],[0,-29]],[[39600,6052],[-10,-29]],[[39590,6023],[-14,-3]],[[39576,6020],[-1,-10]],[[39575,6010],[-16,-10]],[[39559,6000],[0,-10]],[[39559,5990],[-29,-9]],[[39530,5981],[0,-4]],[[39530,5977],[-10,-3]],[[39520,5974],[0,-3]],[[39520,5971],[-11,-3]],[[39509,5968],[0,-3]],[[39509,5965],[-25,6]],[[39484,5971],[0,3]],[[39484,5974],[-39,13]],[[39445,5987],[0,3]],[[39445,5990],[-11,3]],[[39434,5993],[-9,-19]],[[39425,5974],[0,-36]],[[39425,5938],[-2,-3]],[[39423,5935],[-4,-2]],[[39419,5933],[-3,-33]],[[39416,5900],[-38,-6]],[[39378,5894],[0,-4]],[[39378,5890],[-14,4]],[[39364,5894],[0,3]],[[39364,5897],[-6,3]],[[39358,5900],[0,3]],[[39358,5903],[-13,10]],[[39345,5913],[-1,9]],[[39344,5922],[-5,4]],[[39339,5926],[0,7]],[[39339,5933],[-6,2]],[[39333,5935],[-8,3]],[[39325,5938],[0,-3]],[[39325,5935],[-28,-16]],[[39297,5919],[-14,-29]],[[39283,5890],[5,-6]],[[39288,5884],[-14,-55]],[[39274,5829],[-10,-7]],[[39264,5822],[-4,-6]],[[39260,5816],[-38,-10]],[[39222,5806],[-40,0]],[[39182,5806],[-8,-6]],[[39174,5800],[-2,-6]],[[39172,5794],[-23,-4]],[[39149,5790],[-5,-7]],[[39144,5783],[-23,-3]],[[39121,5780],[-3,7]],[[39118,5787],[-22,13]],[[39096,5800],[0,-4]],[[39096,5796],[-14,-19]],[[39082,5777],[-3,-19]],[[39079,5758],[-8,-19]],[[39071,5739],[0,-49]],[[39071,5690],[8,-33]],[[39079,5657],[4,-16]],[[39083,5641],[10,-12]],[[39093,5629],[9,-17]],[[39102,5612],[9,-6]],[[39111,5606],[0,-3]],[[39111,5603],[10,-3]],[[39121,5600],[11,0]],[[39132,5600],[6,6]],[[39138,5606],[3,-6]],[[39141,5600],[22,3]],[[39163,5603],[11,6]],[[39174,5609],[8,3]],[[39182,5612],[6,13]],[[39188,5625],[6,4]],[[39194,5629],[0,3]],[[39194,5632],[9,6]],[[39203,5638],[0,3]],[[39203,5641],[11,7]],[[39214,5648],[24,-7]],[[39238,5641],[11,-3]],[[39249,5638],[0,-3]],[[39249,5635],[11,-10]],[[39260,5625],[0,-58]],[[39260,5567],[-7,-19]],[[39253,5548],[0,-7]],[[39253,5541],[-4,-7]],[[39249,5534],[0,-5]],[[39249,5529],[-7,-11]],[[39242,5518],[0,-61]],[[39242,5457],[7,-13]],[[39249,5444],[0,-9]],[[39249,5435],[4,-7]],[[39253,5428],[0,-38]],[[39253,5390],[0,-7]],[[39253,5383],[-4,-7]],[[39249,5376],[-10,-3]],[[39239,5373],[-4,-10]],[[39235,5363],[-13,-9]],[[39222,5354],[0,-3]],[[39222,5351],[-19,-13]],[[39203,5338],[0,-3]],[[39203,5335],[-6,-4]],[[39197,5331],[-3,-7]],[[39194,5324],[-5,-5]],[[39189,5319],[-7,-17]],[[39182,5302],[-50,-10]],[[39132,5292],[-21,-9]],[[39111,5283],[-9,-16]],[[39102,5267],[-6,-10]],[[39096,5257],[-13,-6]],[[39083,5251],[-4,-7]],[[39079,5244],[-8,-7]],[[39071,5237],[-3,-6]],[[39068,5231],[-7,-3]],[[39061,5228],[-3,-7]],[[39058,5221],[-4,-3]],[[39054,5218],[0,-3]],[[39054,5215],[-7,-10]],[[39047,5205],[-9,-29]],[[39038,5176],[0,-26]],[[39038,5150],[0,-32]],[[39038,5118],[-11,-6]],[[39027,5112],[0,3]],[[39027,5115],[-9,3]],[[39018,5118],[0,10]],[[39018,5128],[-16,3]],[[39002,5131],[-8,-6]],[[38994,5125],[-37,6]],[[38957,5131],[0,-36]],[[38957,5095],[5,-22]],[[38962,5073],[3,-3]],[[38965,5070],[-8,-16]],[[38957,5054],[-2,6]],[[38955,5060],[-8,3]],[[38947,5063],[-1,7]],[[38946,5070],[-16,0]],[[38930,5070],[-4,-10]],[[38926,5060],[-14,-3]],[[38912,5057],[0,-3]],[[38912,5054],[-7,-4]],[[38905,5050],[-3,-29]],[[38902,5021],[-17,-22]],[[38885,4999],[0,-4]],[[38885,4995],[-20,-9]],[[38865,4986],[-19,-16]],[[38846,4970],[-9,-17]],[[38837,4953],[-5,-13]],[[38832,4940],[-6,-9]],[[38826,4931],[0,-4]],[[38826,4927],[0,-12]],[[38826,4915],[0,-11]],[[38826,4904],[9,-9]],[[38835,4895],[-3,-23]],[[38832,4872],[-6,-12]],[[38826,4860],[0,-10]],[[38826,4850],[0,-17]],[[38826,4833],[0,-3]],[[38826,4830],[-17,-6]],[[38809,4824],[-8,-10]],[[38801,4814],[-6,-6]],[[38795,4808],[0,-3]],[[38795,4805],[-10,-7]],[[38785,4798],[0,-3]],[[38785,4795],[-11,-3]],[[38774,4792],[-25,-7]],[[38749,4785],[-14,-3]],[[38735,4782],[-1,13]],[[38734,4795],[-10,3]],[[38724,4798],[0,3]],[[38724,4801],[-11,-6]],[[38713,4795],[0,-10]],[[38713,4785],[5,-6]],[[38718,4779],[0,-52]],[[38718,4727],[-8,-3]],[[38710,4724],[-1,-23]],[[38709,4701],[-14,4]],[[38695,4705],[-2,0]],[[38693,4705],[-20,-11]],[[38673,4694],[-14,-60]],[[38659,4634],[-14,-11]],[[38645,4623],[0,-3]],[[38645,4620],[-5,-2]],[[38640,4618],[0,2]],[[38640,4620],[-20,-9]],[[38620,4611],[-21,-16]],[[38599,4595],[-6,-10]],[[38593,4585],[-25,-10]],[[38568,4575],[-6,4]],[[38562,4579],[0,61]],[[38562,4640],[-2,13]],[[38560,4653],[2,25]],[[38562,4678],[3,16]],[[38565,4694],[3,20]],[[38568,4714],[7,13]],[[38575,4727],[0,94]],[[38575,4821],[-13,3]],[[38562,4824],[0,6]],[[38562,4830],[0,17]],[[38562,4847],[6,13]],[[38568,4860],[7,9]],[[38575,4869],[7,13]],[[38582,4882],[7,22]],[[38589,4904],[4,17]],[[38593,4921],[0,26]],[[38593,4947],[-31,6]],[[38562,4953],[-12,3]],[[38550,4956],[0,4]],[[38550,4960],[-21,35]],[[38529,4995],[0,29]],[[38529,5024],[14,36]],[[38543,5060],[0,3]],[[38543,5063],[5,7]],[[38548,5070],[2,6]],[[38550,5076],[15,13]],[[38565,5089],[3,6]],[[38568,5095],[7,10]],[[38575,5105],[39,10]],[[38614,5115],[4,29]],[[38618,5144],[2,9]],[[38620,5153],[8,7]],[[38628,5160],[0,10]],[[38628,5170],[4,3]],[[38632,5173],[0,3]],[[38632,5176],[8,16]],[[38640,5192],[0,4]],[[38640,5196],[5,3]],[[38645,5199],[0,3]],[[38645,5202],[8,7]],[[38653,5209],[0,44]],[[38653,5253],[-8,11]],[[38645,5264],[0,3]],[[38645,5267],[-5,3]],[[38640,5270],[0,3]],[[38640,5273],[-8,10]],[[38632,5283],[0,3]],[[38632,5286],[-4,13]],[[38628,5299],[0,9]],[[38628,5308],[-8,11]],[[38620,5319],[-2,5]],[[38618,5324],[-4,4]],[[38614,5328],[-5,13]],[[38609,5341],[-27,-3]],[[38582,5338],[-4,-10]],[[38578,5328],[-50,-13]],[[38528,5315],[-19,-3]],[[38509,5312],[-6,3]],[[38503,5315],[-7,45]],[[38496,5360],[-7,10]],[[38489,5370],[0,6]],[[38489,5376],[-21,7]],[[38468,5383],[0,-3]],[[38468,5380],[-29,-45]],[[38439,5335],[-31,-4]],[[38408,5331],[-10,13]],[[38398,5344],[0,3]],[[38398,5347],[-11,-3]],[[38387,5344],[-14,-36]],[[38373,5308],[-62,-3]],[[38311,5305],[0,-3]],[[38311,5302],[-5,-6]],[[38306,5296],[0,-7]],[[38306,5289],[0,-9]],[[38306,5280],[0,-13]],[[38306,5267],[-20,3]],[[38286,5270],[-14,35]],[[38272,5305],[-16,7]],[[38256,5312],[0,3]],[[38256,5315],[-11,4]],[[38245,5319],[-20,19]],[[38225,5338],[-20,16]],[[38205,5354],[0,3]],[[38205,5357],[-14,6]],[[38191,5363],[-11,17]],[[38180,5380],[-8,6]],[[38172,5386],[0,4]],[[38172,5390],[-6,3]],[[38166,5393],[-2,6]],[[38164,5399],[-9,3]],[[38155,5402],[0,4]],[[38155,5406],[-21,6]],[[38134,5412],[0,6]],[[38134,5418],[-12,10]],[[38122,5428],[0,3]],[[38122,5431],[-8,7]],[[38114,5438],[0,3]],[[38114,5441],[-14,10]],[[38100,5451],[-19,19]],[[38081,5470],[-6,4]],[[38075,5474],[-5,9]],[[38070,5483],[-9,7]],[[38061,5490],[0,3]],[[38061,5493],[-5,3]],[[38056,5496],[0,3]],[[38056,5499],[-6,3]],[[38050,5502],[-4,7]],[[38046,5509],[-22,16]],[[38024,5525],[0,7]],[[38024,5532],[-13,13]],[[38011,5545],[-20,16]],[[37991,5561],[-11,3]],[[37980,5564],[-2,6]],[[37978,5570],[-7,3]],[[37971,5573],[0,4]],[[37971,5577],[-7,3]],[[37964,5580],[-36,23]],[[37928,5603],[-9,9]],[[37919,5612],[0,4]],[[37919,5616],[-11,3]],[[37908,5619],[-29,16]],[[37879,5635],[-11,3]],[[37868,5638],[0,3]],[[37868,5641],[-11,4]],[[37857,5645],[0,3]],[[37857,5648],[-10,3]],[[37847,5651],[0,3]],[[37847,5654],[-12,7]],[[37835,5661],[0,3]],[[37835,5664],[-17,13]],[[37818,5677],[-5,7]],[[37813,5684],[-36,16]],[[37777,5700],[0,3]],[[37777,5703],[-23,13]],[[37754,5716],[-2,7]],[[37752,5723],[-14,5]],[[37738,5728],[0,4]],[[37738,5732],[-5,3]],[[37733,5735],[-9,4]],[[37724,5739],[-12,3]],[[37712,5742],[-5,6]],[[37707,5748],[-11,7]],[[37696,5755],[0,3]],[[37696,5758],[-28,-3]],[[37668,5755],[-10,9]],[[37658,5764],[-37,7]],[[37621,5771],[-8,6]],[[37613,5777],[-20,6]],[[37593,5783],[0,4]],[[37593,5787],[-11,3]],[[37582,5790],[-37,13]],[[37545,5803],[-25,7]],[[37520,5810],[-21,-10]],[[37499,5800],[-59,0]],[[37440,5800],[0,3]],[[37440,5803],[-20,3]],[[37420,5806],[0,-3]],[[37420,5803],[-19,3]],[[37401,5806],[-62,4]],[[37339,5810],[-71,3]],[[37268,5813],[-135,-13]],[[37133,5800],[-49,-6]],[[37084,5794],[0,2]],[[37084,5796],[-45,4]],[[37039,5800],[-16,3]],[[37023,5803],[-21,-3]],[[37002,5800],[0,-4]],[[37002,5796],[-41,4]],[[36961,5800],[-30,6]],[[36931,5806],[-29,-3]],[[36902,5803],[-96,-26]],[[36806,5777],[-9,-3]],[[36797,5774],[-36,-3]],[[36761,5771],[-47,-13]],[[36714,5758],[-9,-7]],[[36705,5751],[-27,-7]],[[36678,5744],[0,-2]],[[36678,5742],[-17,0]],[[36661,5742],[0,2]],[[36661,5744],[-7,-2]],[[36654,5742],[-8,-7]],[[36646,5735],[-21,-12]],[[36625,5723],[-10,-14]],[[36615,5709],[-10,-3]],[[36605,5706],[-9,-6]],[[36596,5700],[-22,-20]],[[36574,5680],[0,-6]],[[36574,5674],[-6,-3]],[[36568,5671],[-19,-14]],[[36549,5657],[-16,-3]],[[36533,5654],[0,-3]],[[36533,5651],[-11,-3]],[[36522,5648],[-7,-7]],[[36515,5641],[-11,-3]],[[36504,5638],[-2,-6]],[[36502,5632],[-8,-29]],[[36494,5603],[0,-3]],[[36494,5600],[0,-27]],[[36494,5573],[0,-12]],[[36494,5561],[8,-10]],[[36502,5551],[2,-10]],[[36504,5541],[8,-39]],[[36512,5502],[3,-6]],[[36515,5496],[7,0]],[[36522,5496],[0,-6]],[[36522,5490],[7,-7]],[[36529,5483],[0,-6]],[[36529,5477],[0,-16]],[[36529,5461],[0,-10]],[[36529,5451],[-10,-4]],[[36519,5447],[3,-45]],[[36522,5402],[8,-9]],[[36530,5393],[5,-10]],[[36535,5383],[0,-3]],[[36535,5380],[0,-7]],[[36535,5373],[0,-13]],[[36535,5360],[-6,-36]],[[36529,5324],[-14,4]],[[36515,5328],[0,3]],[[36515,5331],[-11,-3]],[[36504,5328],[0,-6]],[[36504,5322],[15,-7]],[[36519,5315],[-1,-13]],[[36518,5302],[-16,-13]],[[36502,5289],[0,-3]],[[36502,5286],[-19,-16]],[[36483,5270],[-6,-10]],[[36477,5260],[-4,-7]],[[36473,5253],[-4,-6]],[[36469,5247],[-12,-13]],[[36457,5234],[-14,0]],[[36443,5234],[-14,3]],[[36429,5237],[-6,23]],[[36423,5260],[0,26]],[[36423,5286],[0,16]],[[36423,5302],[0,3]],[[36423,5305],[9,19]],[[36432,5324],[6,14]],[[36438,5338],[0,3]],[[36438,5341],[5,3]],[[36443,5344],[0,7]],[[36443,5351],[0,16]],[[36443,5367],[-11,9]],[[36432,5376],[-20,-6]],[[36412,5370],[0,-3]],[[36412,5367],[-8,-10]],[[36404,5357],[-2,-10]],[[36402,5347],[-3,-3]],[[36399,5344],[-15,-13]],[[36384,5331],[0,-3]],[[36384,5328],[-5,-4]],[[36379,5324],[-9,-44]],[[36370,5280],[0,-7]],[[36370,5273],[-11,-39]],[[36359,5234],[-25,-25]],[[36334,5209],[0,-4]],[[36334,5205],[-5,-23]],[[36329,5182],[0,-2]],[[36329,5180],[-28,0]],[[36301,5180],[0,-4]],[[36301,5176],[-13,4]],[[36288,5180],[-7,-52]],[[36281,5128],[-13,-13]],[[36268,5115],[0,-13]],[[36268,5102],[0,-10]],[[36268,5092],[0,-13]],[[36268,5079],[0,-9]],[[36268,5070],[0,-10]],[[36268,5060],[-25,-10]],[[36243,5050],[0,-3]],[[36243,5047],[0,-6]],[[36243,5041],[0,-10]],[[36243,5031],[-16,-16]],[[36227,5015],[0,-4]],[[36227,5011],[-20,-3]],[[36207,5008],[-22,-3]],[[36185,5005],[-3,3]],[[36182,5008],[0,3]],[[36182,5011],[0,4]],[[36182,5015],[-4,3]],[[36178,5018],[0,3]],[[36178,5021],[-8,6]],[[36170,5027],[-5,-28]],[[36165,4999],[-16,-7]],[[36149,4992],[-12,3]],[[36137,4995],[-2,4]],[[36135,4999],[-14,3]],[[36121,5002],[-34,9]],[[36087,5011],[-12,-3]],[[36075,5008],[0,3]],[[36075,5011],[-8,7]],[[36067,5018],[-11,3]],[[36056,5021],[-14,3]],[[36042,5024],[0,10]],[[36042,5034],[-17,7]],[[36025,5041],[0,6]],[[36025,5047],[-10,0]],[[36015,5047],[0,-6]],[[36015,5041],[-14,-3]],[[36001,5038],[-29,9]],[[35972,5047],[0,16]],[[35972,5063],[0,13]],[[35972,5076],[-13,-3]],[[35959,5073],[0,-3]],[[35959,5070],[-11,-4]],[[35948,5066],[-17,26]],[[35931,5092],[-6,3]],[[35925,5095],[0,14]],[[35925,5109],[-11,6]],[[35914,5115],[0,3]],[[35914,5118],[-20,7]],[[35894,5125],[0,3]],[[35894,5128],[-5,3]],[[35889,5131],[0,3]],[[35889,5134],[-5,7]],[[35884,5141],[-4,9]],[[35880,5150],[-21,13]],[[35859,5163],[-29,0]],[[35830,5163],[-27,-3]],[[35803,5160],[-36,-19]],[[35767,5141],[-12,-4]],[[35755,5137],[-5,-6]],[[35750,5131],[-31,-13]],[[35719,5118],[0,-3]],[[35719,5115],[-10,-3]],[[35709,5112],[0,-3]],[[35709,5109],[-17,-11]],[[35692,5098],[-4,-6]],[[35688,5092],[-10,-3]],[[35678,5089],[0,-3]],[[35678,5086],[-14,-7]],[[35664,5079],[-8,-9]],[[35656,5070],[-9,-4]],[[35647,5066],[0,-3]],[[35647,5063],[-9,-3]],[[35638,5060],[0,-3]],[[35638,5057],[-10,-3]],[[35628,5054],[-4,-11]],[[35624,5043],[-7,-2]],[[35617,5041],[-4,-7]],[[35613,5034],[-5,-3]],[[35608,5031],[0,-4]],[[35608,5027],[-6,-3]],[[35602,5024],[-5,-6]],[[35597,5018],[-9,-3]],[[35588,5015],[-5,-7]],[[35583,5008],[-6,-3]],[[35577,5005],[0,-3]],[[35577,5002],[-14,-7]],[[35563,4995],[0,-3]],[[35563,4992],[-10,-3]],[[35553,4989],[-3,-7]],[[35550,4982],[-23,-16]],[[35527,4966],[-19,-19]],[[35508,4947],[-12,-10]],[[35496,4937],[0,-3]],[[35496,4934],[-10,-7]],[[35486,4927],[-15,-16]],[[35471,4911],[-8,-3]],[[35463,4908],[0,-4]],[[35463,4904],[-11,-5]],[[35452,4899],[0,-4]],[[35452,4895],[-9,-3]],[[35443,4892],[0,-4]],[[35443,4888],[-11,-6]],[[35432,4882],[-10,-10]],[[35422,4872],[-8,-3]],[[35414,4869],[0,-3]],[[35414,4866],[-9,-3]],[[35405,4863],[0,-3]],[[35405,4860],[-23,-13]],[[35382,4847],[0,-3]],[[35382,4844],[-10,-4]],[[35372,4840],[-6,-7]],[[35366,4833],[-11,-3]],[[35355,4830],[-11,-9]],[[35344,4821],[-23,-10]],[[35321,4811],[0,-3]],[[35321,4808],[-31,-13]],[[35290,4795],[-5,-10]],[[35285,4785],[-23,-6]],[[35262,4779],[0,-3]],[[35262,4776],[-11,-4]],[[35251,4772],[0,-3]],[[35251,4769],[-11,-3]],[[35240,4766],[-7,-6]],[[35233,4760],[-14,-7]],[[35219,4753],[0,-3]],[[35219,4750],[-20,-17]],[[35199,4733],[0,-3]],[[35199,4730],[-5,-3]],[[35194,4727],[-1,-6]],[[35193,4721],[-5,-4]],[[35188,4717],[-3,-9]],[[35185,4708],[-5,-7]],[[35180,4701],[8,-19]],[[35188,4682],[6,-10]],[[35194,4672],[-1,-6]],[[35193,4666],[-5,-4]],[[35188,4662],[0,-3]],[[35188,4659],[-14,-3]],[[35174,4656],[0,-3]],[[35174,4653],[-19,-3]],[[35155,4650],[-1,-10]],[[35154,4640],[-19,-3]],[[35135,4637],[0,-3]],[[35135,4634],[-15,0]],[[35120,4634],[0,16]],[[35120,4650],[7,6]],[[35127,4656],[0,6]],[[35127,4662],[8,7]],[[35135,4669],[0,3]],[[35135,4672],[13,17]],[[35148,4689],[-13,5]],[[35135,4694],[-6,4]],[[35129,4698],[0,3]],[[35129,4701],[-9,4]],[[35120,4705],[0,-4]],[[35120,4701],[-22,10]],[[35098,4711],[-5,10]],[[35093,4721],[-23,-10]],[[35070,4711],[-2,-17]],[[35068,4694],[-25,-3]],[[35043,4691],[-9,-6]],[[35034,4685],[-16,-3]],[[35018,4682],[0,-4]],[[35018,4678],[-25,4]],[[34993,4682],[0,3]],[[34993,4685],[-15,4]],[[34978,4689],[0,2]],[[34978,4691],[-25,3]],[[34953,4694],[-36,14]],[[34917,4708],[-14,-3]],[[34903,4705],[0,3]],[[34903,4708],[-27,-3]],[[34876,4705],[0,-4]],[[34876,4701],[-3,-3]],[[34873,4698],[-9,-4]],[[34864,4694],[-2,-5]],[[34862,4689],[-19,-4]],[[34843,4685],[0,4]],[[34843,4689],[-7,5]],[[34836,4694],[0,7]],[[34836,4701],[-18,4]],[[34818,4705],[0,3]],[[34818,4708],[-6,9]],[[34812,4717],[0,20]],[[34812,4737],[6,6]],[[34818,4743],[5,0]],[[34823,4743],[9,3]],[[34832,4746],[4,16]],[[34836,4762],[0,27]],[[34836,4789],[-4,9]],[[34832,4798],[-9,3]],[[34823,4801],[-5,7]],[[34818,4808],[-7,6]],[[34811,4814],[0,3]],[[34811,4817],[-19,-22]],[[34792,4795],[0,-3]],[[34792,4792],[-20,6]],[[34772,4798],[0,3]],[[34772,4801],[-5,7]],[[34767,4808],[-14,9]],[[34753,4817],[-13,7]],[[34740,4824],[0,4]],[[34740,4828],[-9,2]],[[34731,4830],[0,3]],[[34731,4833],[-9,7]],[[34722,4840],[-25,10]],[[34697,4850],[-32,3]],[[34665,4853],[-6,7]],[[34659,4860],[-3,-10]],[[34656,4850],[3,-39]],[[34659,4811],[-17,-10]],[[34642,4801],[0,-3]],[[34642,4798],[-12,-3]],[[34630,4795],[-5,-6]],[[34625,4789],[-14,3]],[[34611,4792],[-20,-3]],[[34591,4789],[-16,-4]],[[34575,4785],[0,-3]],[[34575,4782],[-9,-6]],[[34566,4776],[-2,-7]],[[34564,4769],[-5,-3]],[[34559,4766],[0,-4]],[[34559,4762],[-11,-6]],[[34548,4756],[0,4]],[[34548,4760],[-9,-4]],[[34539,4756],[0,4]],[[34539,4760],[-11,9]],[[34528,4769],[-8,0]],[[34520,4769],[5,-7]],[[34525,4762],[0,-12]],[[34525,4750],[-5,-10]],[[34520,4740],[0,-26]],[[34520,4714],[0,-3]],[[34520,4711],[5,-20]],[[34525,4691],[14,-32]],[[34539,4659],[0,-3]],[[34539,4656],[-11,-10]],[[34528,4646],[-20,-3]],[[34508,4643],[-22,-3]],[[34486,4640],[-2,-6]],[[34484,4634],[-14,-7]],[[34470,4627],[-6,-13]],[[34464,4614],[-15,-7]],[[34449,4607],[0,-3]],[[34449,4604],[-15,3]],[[34434,4607],[-17,-9]],[[34417,4598],[-9,3]],[[34408,4601],[-3,0]],[[34405,4601],[12,-22]],[[34417,4579],[0,3]],[[34417,4582],[0,-7]],[[34417,4575],[0,-13]],[[34417,4562],[3,-3]],[[34420,4559],[18,-23]],[[34438,4536],[7,-3]],[[34445,4533],[0,-3]],[[34445,4530],[10,-7]],[[34455,4523],[0,-12]],[[34455,4511],[0,-7]],[[34455,4504],[0,-13]],[[34455,4491],[-10,-3]],[[34445,4488],[0,-4]],[[34445,4484],[-7,4]],[[34438,4488],[-18,-16]],[[34420,4472],[-28,-13]],[[34392,4459],[0,-7]],[[34392,4452],[0,-3]],[[34392,4449],[0,-6]],[[34392,4443],[-3,-7]],[[34389,4436],[-4,-7]],[[34385,4429],[-2,-5]],[[34383,4424],[-5,-4]],[[34378,4420],[0,-7]],[[34378,4413],[-6,-5]],[[34372,4408],[0,-7]],[[34372,4401],[-8,-7]],[[34364,4394],[0,-3]],[[34364,4391],[-20,-6]],[[34344,4385],[0,-4]],[[34344,4381],[-30,4]],[[34314,4385],[-1,-20]],[[34313,4365],[-21,4]],[[34292,4369],[-4,6]],[[34288,4375],[-19,3]],[[34269,4378],[0,-3]],[[34269,4375],[-16,-6]],[[34253,4369],[-17,-4]],[[34236,4365],[-45,-16]],[[34191,4349],[-9,-7]],[[34182,4342],[-32,-6]],[[34150,4336],[0,-3]],[[34150,4333],[-18,-3]],[[34132,4330],[-14,6]],[[34118,4336],[-17,3]],[[34101,4339],[0,17]],[[34101,4356],[0,2]],[[34101,4358],[-15,-2]],[[34086,4356],[11,19]],[[34097,4375],[0,3]],[[34097,4378],[14,3]],[[34111,4381],[7,7]],[[34118,4388],[34,9]],[[34152,4397],[0,4]],[[34152,4401],[11,3]],[[34163,4404],[0,4]],[[34163,4408],[5,2]],[[34168,4410],[0,3]],[[34168,4413],[0,11]],[[34168,4424],[0,-4]],[[34168,4420],[-16,4]],[[34152,4424],[-22,0]],[[34130,4424],[-19,-4]],[[34111,4420],[-14,0]],[[34097,4420],[-101,-10]],[[33996,4410],[-20,-16]],[[33976,4394],[-7,-9]],[[33969,4385],[0,-4]],[[33969,4381],[-4,-3]],[[33965,4378],[0,-3]],[[33965,4375],[-11,-3]],[[33954,4372],[-5,-7]],[[33949,4365],[-14,-3]],[[33935,4362],[0,-4]],[[33935,4358],[-19,-12]],[[33916,4346],[0,-4]],[[33916,4342],[-12,-6]],[[33904,4336],[-9,-3]],[[33895,4333],[1,-10]],[[33896,4323],[9,-3]],[[33905,4320],[0,-6]],[[33905,4314],[0,-13]],[[33905,4301],[32,13]],[[33937,4314],[0,3]],[[33937,4317],[14,3]],[[33951,4320],[0,3]],[[33951,4323],[18,7]],[[33969,4330],[0,3]],[[33969,4333],[7,6]],[[33976,4339],[1,7]],[[33977,4346],[10,6]],[[33987,4352],[11,10]],[[33998,4362],[9,3]],[[34007,4365],[0,4]],[[34007,4369],[14,9]],[[34021,4378],[0,3]],[[34021,4381],[20,4]],[[34041,4385],[0,3]],[[34041,4388],[27,-3]],[[34068,4385],[0,-13]],[[34068,4372],[-21,-30]],[[34047,4342],[-1,-6]],[[34046,4336],[-25,-6]],[[34021,4330],[0,6]],[[34021,4336],[-25,-13]],[[33996,4323],[0,-3]],[[33996,4320],[-31,-10]],[[33965,4310],[0,-3]],[[33965,4307],[-11,-3]],[[33954,4304],[-5,-10]],[[33949,4294],[-5,-6]],[[33944,4288],[0,-3]],[[33944,4285],[0,-7]],[[33944,4278],[0,-10]],[[33944,4268],[-9,-10]],[[33935,4258],[0,-3]],[[33935,4255],[-9,-25]],[[33926,4230],[-10,-23]],[[33916,4207],[0,-4]],[[33916,4203],[-15,4]],[[33901,4207],[0,3]],[[33901,4210],[-16,7]],[[33885,4217],[0,2]],[[33885,4219],[-9,7]],[[33876,4226],[0,4]],[[33876,4230],[-11,0]],[[33865,4230],[0,3]],[[33865,4233],[-14,3]],[[33851,4236],[0,-22]],[[33851,4214],[-5,-4]],[[33846,4210],[0,-7]],[[33846,4203],[0,-9]],[[33846,4194],[0,-7]],[[33846,4187],[0,-3]],[[33846,4184],[0,-3]],[[33846,4181],[-42,3]],[[33804,4184],[0,3]],[[33804,4187],[-19,-6]],[[33785,4181],[0,-6]],[[33785,4175],[10,-10]],[[33795,4165],[0,-3]],[[33795,4162],[0,-10]],[[33795,4152],[0,-4]],[[33795,4148],[-21,-2]],[[33774,4146],[0,-4]],[[33774,4142],[-11,-6]],[[33763,4136],[-7,-13]],[[33756,4123],[-32,-7]],[[33724,4116],[-6,-12]],[[33718,4104],[-8,-4]],[[33710,4100],[0,-3]],[[33710,4097],[-6,-3]],[[33704,4094],[0,-3]],[[33704,4091],[-31,-23]],[[33673,4068],[-3,-7]],[[33670,4061],[0,-25]],[[33670,4036],[3,6]],[[33673,4042],[22,13]],[[33695,4055],[14,3]],[[33709,4058],[0,3]],[[33709,4061],[15,4]],[[33724,4065],[0,3]],[[33724,4068],[14,7]],[[33738,4075],[0,2]],[[33738,4077],[5,4]],[[33743,4081],[0,3]],[[33743,4084],[10,4]],[[33753,4088],[10,-7]],[[33763,4081],[21,-4]],[[33784,4077],[0,-2]],[[33784,4075],[11,2]],[[33795,4077],[15,0]],[[33810,4077],[8,11]],[[33818,4088],[8,6]],[[33826,4094],[0,3]],[[33826,4097],[20,3]],[[33846,4100],[0,4]],[[33846,4104],[31,6]],[[33877,4110],[10,0]],[[33887,4110],[9,-6]],[[33896,4104],[0,-20]],[[33896,4084],[-11,-7]],[[33885,4077],[-6,-6]],[[33879,4071],[-13,-10]],[[33866,4061],[-1,-9]],[[33865,4052],[-5,-4]],[[33860,4048],[0,-3]],[[33860,4045],[-4,-3]],[[33856,4042],[-5,-6]],[[33851,4036],[0,-7]],[[33851,4029],[-5,-3]],[[33846,4026],[0,-6]],[[33846,4020],[-12,3]],[[33834,4023],[0,6]],[[33834,4029],[-8,3]],[[33826,4032],[-22,-19]],[[33804,4013],[5,-6]],[[33809,4007],[0,-7]],[[33809,4000],[-5,-7]],[[33804,3993],[-9,-6]],[[33795,3987],[-10,0]],[[33785,3987],[-1,-6]],[[33784,3981],[-10,-7]],[[33774,3974],[0,-3]],[[33774,3971],[-14,-13]],[[33760,3958],[-7,-39]],[[33753,3919],[-15,-6]],[[33738,3913],[-20,-16]],[[33718,3897],[-8,-4]],[[33710,3893],[0,-3]],[[33710,3890],[-20,-16]],[[33690,3874],[0,-3]],[[33690,3871],[-20,-6]],[[33670,3865],[0,-4]],[[33670,3861],[-28,-6]],[[33642,3855],[0,-4]],[[33642,3851],[-22,-13]],[[33620,3838],[-2,-6]],[[33618,3832],[-25,-29]],[[33593,3803],[0,3]],[[33593,3806],[-14,-3]],[[33579,3803],[-17,-4]],[[33562,3799],[-39,-9]],[[33523,3790],[0,-3]],[[33523,3787],[5,-7]],[[33528,3780],[-2,-19]],[[33526,3761],[-29,-13]],[[33497,3748],[0,-3]],[[33497,3745],[-21,-17]],[[33476,3728],[-8,0]],[[33468,3728],[-45,14]],[[33423,3742],[-6,6]],[[33417,3748],[-9,7]],[[33408,3755],[-61,12]],[[33347,3767],[-17,4]],[[33330,3771],[0,3]],[[33330,3774],[-14,3]],[[33316,3777],[0,3]],[[33316,3780],[-7,3]],[[33309,3783],[0,4]],[[33309,3787],[0,9]],[[33309,3796],[0,3]],[[33309,3799],[7,7]],[[33316,3806],[0,4]],[[33316,3810],[9,6]],[[33325,3816],[5,10]],[[33330,3826],[3,3]],[[33333,3829],[3,9]],[[33336,3838],[20,17]],[[33356,3855],[0,3]],[[33356,3858],[11,9]],[[33367,3867],[0,4]],[[33367,3871],[8,3]],[[33375,3874],[0,3]],[[33375,3877],[6,4]],[[33381,3881],[5,6]],[[33386,3887],[9,3]],[[33395,3890],[0,3]],[[33395,3893],[5,4]],[[33400,3897],[8,16]],[[33408,3913],[0,3]],[[33408,3916],[12,3]],[[33420,3919],[6,7]],[[33426,3926],[14,6]],[[33440,3932],[8,6]],[[33448,3938],[41,8]],[[33489,3946],[0,3]],[[33489,3949],[28,16]],[[33517,3965],[0,3]],[[33517,3968],[6,3]],[[33523,3971],[0,3]],[[33523,3974],[-47,13]],[[33476,3987],[-9,10]],[[33467,3997],[-45,0]],[[33422,3997],[0,-4]],[[33422,3993],[-19,-3]],[[33403,3990],[0,-3]],[[33403,3987],[-5,-3]],[[33398,3984],[-17,-10]],[[33381,3974],[-15,-9]],[[33366,3965],[-5,-7]],[[33361,3958],[0,-3]],[[33361,3955],[-5,-3]],[[33356,3952],[-1,-7]],[[33355,3945],[-49,-7]],[[33306,3938],[0,-2]],[[33306,3936],[-19,-4]],[[33287,3932],[-10,13]],[[33277,3945],[-10,4]],[[33267,3949],[0,3]],[[33267,3952],[-3,16]],[[33264,3968],[0,6]],[[33264,3974],[-8,10]],[[33256,3984],[-1,6]],[[33255,3990],[-10,3]],[[33245,3993],[-1,7]],[[33244,4000],[-5,4]],[[33239,4004],[-8,3]],[[33231,4007],[-6,-3]],[[33225,4004],[0,-4]],[[33225,4000],[-20,-16]],[[33205,3984],[-19,-16]],[[33186,3968],[-5,-3]],[[33181,3965],[0,-4]],[[33181,3961],[-17,-3]],[[33164,3958],[-3,-3]],[[33161,3955],[-8,-3]],[[33153,3952],[-20,3]],[[33133,3955],[-19,6]],[[33114,3961],[0,4]],[[33114,3965],[-11,12]],[[33103,3977],[-12,32]],[[33091,4009],[-3,4]],[[33088,4013],[0,7]],[[33088,4020],[-5,3]],[[33083,4023],[0,6]],[[33083,4029],[-8,3]],[[33075,4032],[-45,4]],[[33030,4036],[-22,-10]],[[33008,4026],[0,-3]],[[33008,4023],[-14,-16]],[[32994,4007],[-5,-10]],[[32989,3997],[-15,-16]],[[32974,3981],[-2,-7]],[[32972,3974],[-12,-6]],[[32960,3968],[-6,-68]],[[32954,3900],[-5,-7]],[[32949,3893],[-11,-9]],[[32938,3884],[-5,-3]],[[32933,3881],[0,-4]],[[32933,3877],[-4,-6]],[[32929,3871],[-14,-6]],[[32915,3865],[-16,-7]],[[32899,3858],[-45,-45]],[[32854,3813],[-18,9]],[[32836,3822],[-9,10]],[[32827,3832],[-15,10]],[[32812,3842],[0,6]],[[32812,3848],[-8,3]],[[32804,3851],[-7,0]],[[32797,3851],[5,-6]],[[32802,3845],[0,-3]],[[32802,3842],[-5,-7]],[[32797,3835],[0,-3]],[[32797,3832],[-9,-33]],[[32788,3799],[0,-3]],[[32788,3796],[-5,-6]],[[32783,3790],[0,-3]],[[32783,3787],[-6,-7]],[[32777,3780],[0,-6]],[[32777,3774],[-4,-3]],[[32773,3771],[0,-7]],[[32773,3764],[-5,-6]],[[32768,3758],[-20,-26]],[[32748,3732],[-10,-6]],[[32738,3726],[0,-7]],[[32738,3719],[0,-23]],[[32738,3696],[-5,-6]],[[32733,3690],[-6,-7]],[[32727,3683],[0,-6]],[[32727,3677],[-9,-10]],[[32718,3667],[0,-3]],[[32718,3664],[-5,-3]],[[32713,3661],[-15,51]],[[32698,3712],[-5,7]],[[32693,3719],[0,9]],[[32693,3728],[-20,23]],[[32673,3751],[0,10]],[[32673,3761],[0,16]],[[32673,3777],[3,6]],[[32676,3783],[-3,4]],[[32673,3787],[-7,12]],[[32666,3799],[-6,7]],[[32660,3806],[0,13]],[[32660,3819],[6,3]],[[32666,3822],[2,7]],[[32668,3829],[5,3]],[[32673,3832],[0,10]],[[32673,3842],[-7,3]],[[32666,3845],[0,3]],[[32666,3848],[-6,7]],[[32660,3855],[0,3]],[[32660,3858],[-14,3]],[[32646,3861],[-5,6]],[[32641,3867],[5,7]],[[32646,3874],[20,36]],[[32666,3910],[0,6]],[[32666,3916],[-51,-13]],[[32615,3903],[-5,7]],[[32610,3910],[-15,-4]],[[32595,3906],[0,-6]],[[32595,3900],[-13,-3]],[[32582,3897],[-1,-7]],[[32581,3890],[-19,-3]],[[32562,3887],[8,-32]],[[32570,3855],[0,-4]],[[32570,3851],[-8,-6]],[[32562,3845],[-8,-10]],[[32554,3835],[0,3]],[[32554,3838],[-9,4]],[[32545,3842],[-16,-4]],[[32529,3838],[-14,0]],[[32515,3838],[-45,13]],[[32470,3851],[0,4]],[[32470,3855],[-10,3]],[[32460,3858],[0,7]],[[32460,3865],[11,25]],[[32471,3890],[10,13]],[[32481,3903],[-10,16]],[[32471,3919],[0,17]],[[32471,3936],[0,6]],[[32471,3942],[-11,13]],[[32460,3955],[-11,10]],[[32449,3965],[0,6]],[[32449,3971],[-18,13]],[[32431,3984],[-5,-3]],[[32426,3981],[-26,3]],[[32400,3984],[-11,13]],[[32389,3997],[-5,3]],[[32384,4000],[0,4]],[[32384,4004],[-5,9]],[[32379,4013],[-1,10]],[[32378,4023],[-3,29]],[[32375,4052],[-5,3]],[[32370,4055],[0,6]],[[32370,4061],[-25,10]],[[32345,4071],[-2,2]],[[32343,4073],[-4,2]],[[32339,4075],[-7,6]],[[32332,4081],[-7,3]],[[32325,4084],[-27,13]],[[32298,4097],[-14,3]],[[32284,4100],[3,52]],[[32287,4152],[3,3]],[[32290,4155],[0,7]],[[32290,4162],[8,9]],[[32298,4171],[0,4]],[[32298,4175],[20,6]],[[32318,4181],[0,6]],[[32318,4187],[7,7]],[[32325,4194],[0,4]],[[32325,4198],[7,19]],[[32332,4217],[4,13]],[[32336,4230],[9,6]],[[32345,4236],[0,6]],[[32345,4242],[5,7]],[[32350,4249],[0,6]],[[32350,4255],[18,13]],[[32368,4268],[10,3]],[[32378,4271],[0,-6]],[[32378,4265],[-3,-19]],[[32375,4246],[-5,-7]],[[32370,4239],[-2,-13]],[[32368,4226],[0,-16]],[[32368,4210],[10,-12]],[[32378,4198],[6,-14]],[[32384,4184],[0,-3]],[[32384,4181],[5,-10]],[[32389,4171],[12,4]],[[32401,4175],[9,6]],[[32410,4181],[0,-3]],[[32410,4178],[8,-13]],[[32418,4165],[22,-3]],[[32440,4162],[0,74]],[[32440,4236],[0,32]],[[32440,4268],[0,3]],[[32440,4271],[-1,39]],[[32439,4310],[0,20]],[[32439,4330],[0,3]],[[32439,4333],[0,3]],[[32439,4336],[0,26]],[[32439,4362],[-25,10]],[[32414,4372],[-5,6]],[[32409,4378],[-8,10]],[[32401,4388],[-3,13]],[[32398,4401],[0,7]],[[32398,4408],[0,5]],[[32398,4413],[-8,7]],[[32390,4420],[-20,4]],[[32370,4424],[-11,3]],[[32359,4427],[0,2]],[[32359,4429],[-14,7]],[[32345,4436],[0,4]],[[32345,4440],[-27,0]],[[32318,4440],[-20,-7]],[[32298,4433],[-8,-4]],[[32290,4429],[0,-2]],[[32290,4427],[-3,-10]],[[32287,4417],[-28,19]],[[32259,4436],[-16,4]],[[32243,4440],[-1,6]],[[32242,4446],[-5,3]],[[32237,4449],[-9,3]],[[32228,4452],[-20,-6]],[[32208,4446],[0,-3]],[[32208,4443],[-10,-7]],[[32198,4436],[-22,-7]],[[32176,4429],[-20,-2]],[[32156,4427],[-12,2]],[[32144,4429],[-7,-2]],[[32137,4427],[-4,-19]],[[32133,4408],[-16,-23]],[[32117,4385],[-3,-7]],[[32114,4378],[-20,-61]],[[32094,4317],[-8,0]],[[32086,4317],[-44,-3]],[[32042,4314],[0,-4]],[[32042,4310],[-22,0]],[[32020,4310],[0,4]],[[32020,4314],[-20,3]],[[32000,4317],[-3,-7]],[[31997,4310],[-14,-6]],[[31983,4304],[-2,-7]],[[31981,4297],[-11,-3]],[[31970,4294],[0,-3]],[[31970,4291],[-7,-3]],[[31963,4288],[-2,-7]],[[31961,4281],[-6,-3]],[[31955,4278],[0,-3]],[[31955,4275],[-35,13]],[[31920,4288],[-10,70]],[[31910,4358],[26,7]],[[31936,4365],[9,4]],[[31945,4369],[18,25]],[[31963,4394],[7,3]],[[31970,4397],[5,7]],[[31975,4404],[6,4]],[[31981,4408],[42,9]],[[32023,4417],[19,16]],[[32042,4433],[0,3]],[[32042,4436],[35,10]],[[32077,4446],[0,3]],[[32077,4449],[6,3]],[[32083,4452],[3,7]],[[32086,4459],[6,6]],[[32092,4465],[14,23]],[[32106,4488],[8,10]],[[32114,4498],[3,6]],[[32117,4504],[34,16]],[[32151,4520],[0,3]],[[32151,4523],[18,-3]],[[32169,4520],[0,-3]],[[32169,4517],[18,-3]],[[32187,4514],[11,-10]],[[32198,4504],[11,-3]],[[32209,4501],[0,-3]],[[32209,4498],[5,-3]],[[32214,4495],[0,-4]],[[32214,4491],[5,-3]],[[32219,4488],[0,-4]],[[32219,4484],[23,-5]],[[32242,4479],[16,16]],[[32258,4495],[9,3]],[[32267,4498],[31,-10]],[[32298,4488],[0,16]],[[32298,4504],[0,3]],[[32298,4507],[-8,7]],[[32290,4514],[-62,26]],[[32228,4540],[-9,3]],[[32219,4543],[0,-3]],[[32219,4540],[-11,3]],[[32208,4543],[-57,6]],[[32151,4549],[-18,7]],[[32133,4556],[0,3]],[[32133,4559],[-27,-3]],[[32106,4556],[-64,-26]],[[32042,4530],[0,-7]],[[32042,4523],[-9,-6]],[[32033,4517],[-10,-6]],[[32023,4511],[-12,-10]],[[32011,4501],[-8,-3]],[[32003,4498],[-61,-17]],[[31942,4481],[-20,-2]],[[31922,4479],[-27,5]],[[31895,4484],[-10,0]],[[31885,4484],[0,-3]],[[31885,4481],[-14,-2]],[[31871,4479],[0,-4]],[[31871,4475],[-10,4]],[[31861,4479],[0,2]],[[31861,4481],[-11,10]],[[31850,4491],[0,-3]],[[31850,4488],[-4,-4]],[[31846,4484],[-25,0]],[[31821,4484],[-5,7]],[[31816,4491],[-6,4]],[[31810,4495],[0,3]],[[31810,4498],[-5,3]],[[31805,4501],[-6,6]],[[31799,4507],[-19,52]],[[31780,4559],[0,3]],[[31780,4562],[-16,7]],[[31764,4569],[-4,0]],[[31760,4569],[-24,3]],[[31736,4572],[0,-3]],[[31736,4569],[-89,6]],[[31647,4575],[-7,0]],[[31640,4575],[-14,4]],[[31626,4579],[0,-4]],[[31626,4575],[-16,4]],[[31610,4579],[0,3]],[[31610,4582],[-13,3]],[[31597,4585],[0,3]],[[31597,4588],[-23,3]],[[31574,4591],[-17,-3]],[[31557,4588],[-30,3]],[[31527,4591],[-34,-9]],[[31493,4582],[-70,-7]],[[31423,4575],[0,4]],[[31423,4579],[-36,-4]],[[31387,4575],[0,-3]],[[31387,4572],[-36,-3]],[[31351,4569],[0,3]],[[31351,4572],[-13,7]],[[31338,4579],[-17,-4]],[[31321,4575],[-19,-6]],[[31302,4569],[-4,0]],[[31298,4569],[-36,3]],[[31262,4572],[-14,0]],[[31248,4572],[-42,-6]],[[31206,4566],[-27,13]],[[31179,4579],[-33,6]],[[31146,4585],[0,3]],[[31146,4588],[-37,3]],[[31109,4591],[0,4]],[[31109,4595],[-34,3]],[[31075,4598],[0,3]],[[31075,4601],[-19,-3]],[[31056,4598],[-6,0]],[[31050,4598],[-27,-3]],[[31023,4595],[-8,9]],[[31015,4604],[-11,3]],[[31004,4607],[-18,11]],[[30986,4618],[-13,5]],[[30973,4623],[0,4]],[[30973,4627],[-23,13]],[[30950,4640],[0,3]],[[30950,4643],[-2,3]],[[30948,4646],[-8,10]],[[30940,4656],[-17,13]],[[30923,4669],[0,6]],[[30923,4675],[-11,7]],[[30912,4682],[-9,9]],[[30903,4691],[-9,7]],[[30894,4698],[0,3]],[[30894,4701],[-11,4]],[[30883,4705],[0,3]],[[30883,4708],[-8,3]],[[30875,4711],[-5,0]],[[30870,4711],[-11,-3]],[[30859,4708],[0,-3]],[[30859,4705],[-22,-4]],[[30837,4701],[0,-7]],[[30837,4694],[-4,-5]],[[30833,4689],[0,-4]],[[30833,4685],[-5,-7]],[[30828,4678],[0,-6]],[[30828,4672],[-9,-6]],[[30819,4666],[0,-4]],[[30819,4662],[-7,-3]],[[30812,4659],[-9,-6]],[[30803,4653],[-5,-19]],[[30798,4634],[0,-4]],[[30798,4630],[-6,-3]],[[30792,4627],[-11,-7]],[[30781,4620],[-25,-19]],[[30756,4601],[0,-6]],[[30756,4595],[-4,-4]],[[30752,4591],[-13,7]],[[30739,4598],[5,22]],[[30744,4620],[0,10]],[[30744,4630],[5,16]],[[30749,4646],[3,10]],[[30752,4656],[4,3]],[[30756,4659],[0,3]],[[30756,4662],[25,16]],[[30781,4678],[2,7]],[[30783,4685],[22,9]],[[30805,4694],[7,0]],[[30812,4694],[10,4]],[[30822,4698],[0,3]],[[30822,4701],[14,4]],[[30836,4705],[1,6]],[[30837,4711],[5,6]],[[30842,4717],[0,4]],[[30842,4721],[6,6]],[[30848,4727],[-11,45]],[[30837,4772],[-15,7]],[[30822,4779],[0,3]],[[30822,4782],[-13,3]],[[30809,4785],[-28,13]],[[30781,4798],[-25,3]],[[30756,4801],[0,4]],[[30756,4805],[-40,3]],[[30716,4808],[-10,6]],[[30706,4814],[-34,3]],[[30672,4817],[0,-3]],[[30672,4814],[-25,7]],[[30647,4821],[0,12]],[[30647,4833],[-17,-3]],[[30630,4830],[-39,-2]],[[30591,4828],[0,-4]],[[30591,4824],[-16,-10]],[[30575,4814],[-9,-13]],[[30566,4801],[-6,-3]],[[30560,4798],[-3,-6]],[[30557,4792],[-7,-10]],[[30550,4782],[-4,-10]],[[30546,4772],[-10,-3]],[[30536,4769],[0,-3]],[[30536,4766],[-4,-4]],[[30532,4762],[0,-2]],[[30532,4760],[-14,-4]],[[30518,4756],[-4,-6]],[[30514,4750],[-17,-4]],[[30497,4746],[0,7]],[[30497,4753],[-4,7]],[[30493,4760],[0,6]],[[30493,4766],[-7,6]],[[30486,4772],[-1,10]],[[30485,4782],[-5,3]],[[30480,4785],[-3,20]],[[30477,4805],[-5,3]],[[30472,4808],[-8,22]],[[30464,4830],[-7,17]],[[30457,4847],[-8,38]],[[30449,4885],[0,23]],[[30449,4908],[0,7]],[[30449,4915],[-5,9]],[[30444,4924],[0,7]],[[30444,4931],[11,51]],[[30455,4982],[2,-6]],[[30457,4976],[12,-6]],[[30469,4970],[3,19]],[[30472,4989],[5,10]],[[30477,4999],[3,9]],[[30480,5008],[5,3]],[[30485,5011],[1,13]],[[30486,5024],[7,14]],[[30493,5038],[0,3]],[[30493,5041],[21,6]],[[30514,5047],[4,7]],[[30518,5054],[7,9]],[[30525,5063],[0,7]],[[30525,5070],[7,39]],[[30532,5109],[0,6]],[[30532,5115],[4,19]],[[30536,5134],[0,3]],[[30536,5137],[7,7]],[[30543,5144],[0,16]],[[30543,5160],[-7,13]],[[30536,5173],[-11,0]],[[30525,5173],[-11,-3]],[[30514,5170],[0,3]],[[30514,5173],[-34,3]],[[30480,5176],[0,4]],[[30480,5180],[-9,-4]],[[30471,5176],[-7,-13]],[[30464,5163],[-7,-3]],[[30457,5160],[0,-3]],[[30457,5157],[-13,-7]],[[30444,5150],[0,-3]],[[30444,5147],[-39,-10]],[[30405,5137],[-4,10]],[[30401,5147],[-7,6]],[[30394,5153],[0,4]],[[30394,5157],[-9,6]],[[30385,5163],[-16,33]],[[30369,5196],[-15,3]],[[30354,5199],[0,3]],[[30354,5202],[-10,3]],[[30344,5205],[0,4]],[[30344,5209],[-20,0]],[[30324,5209],[0,-7]],[[30324,5202],[-3,0]],[[30321,5202],[0,-6]],[[30321,5196],[-2,-4]],[[30319,5192],[-15,-19]],[[30304,5173],[-66,0]],[[30238,5173],[0,3]],[[30238,5176],[-54,4]],[[30184,5180],[0,2]],[[30184,5182],[-25,10]],[[30159,5192],[0,4]],[[30159,5196],[-14,-4]],[[30145,5192],[3,-39]],[[30148,5153],[34,-25]],[[30182,5128],[3,-7]],[[30185,5121],[10,-48]],[[30195,5073],[0,-49]],[[30195,5024],[-10,-19]],[[30185,5005],[-3,-10]],[[30182,4995],[-20,-35]],[[30162,4960],[-3,-20]],[[30159,4940],[-10,-36]],[[30149,4904],[-6,-16]],[[30143,4888],[-5,-3]],[[30138,4885],[-20,-16]],[[30118,4869],[-11,-6]],[[30107,4863],[-9,-16]],[[30098,4847],[-10,-3]],[[30088,4844],[0,3]],[[30088,4847],[-21,-23]],[[30067,4824],[0,-3]],[[30067,4821],[-5,-4]],[[30062,4817],[-16,-3]],[[30046,4814],[0,-3]],[[30046,4811],[-25,-3]],[[30021,4808],[-14,9]],[[30007,4817],[-6,4]],[[30001,4821],[0,3]],[[30001,4824],[-9,13]],[[29992,4837],[0,3]],[[29992,4840],[-5,4]],[[29987,4844],[0,3]],[[29987,4847],[5,9]],[[29992,4856],[-5,13]],[[29987,4869],[-11,3]],[[29976,4872],[0,4]],[[29976,4876],[0,3]],[[29976,4879],[0,3]],[[29976,4882],[-23,10]],[[29953,4892],[-5,12]],[[29948,4904],[-6,4]],[[29942,4908],[0,3]],[[29942,4911],[-14,4]],[[29928,4915],[0,9]],[[29928,4924],[-11,7]],[[29917,4931],[-2,6]],[[29915,4937],[-12,10]],[[29903,4947],[-11,6]],[[29892,4953],[-30,10]],[[29862,4963],[0,3]],[[29862,4966],[-11,4]],[[29851,4970],[0,12]],[[29851,4982],[-9,7]],[[29842,4989],[-6,10]],[[29836,4999],[0,6]],[[29836,5005],[-10,13]],[[29826,5018],[-1,-7]],[[29825,5011],[-13,-3]],[[29812,5008],[-11,0]],[[29801,5008],[-4,0]],[[29797,5008],[-2,3]],[[29795,5011],[-9,-3]],[[29786,5008],[-5,0]],[[29781,5008],[-25,3]],[[29756,5011],[-5,-3]],[[29751,5008],[-9,-3]],[[29742,5005],[0,-3]],[[29742,5002],[-11,3]],[[29731,5005],[0,3]],[[29731,5008],[-16,0]],[[29715,5008],[-15,3]],[[29700,5011],[0,7]],[[29700,5018],[0,3]],[[29700,5021],[14,3]],[[29714,5024],[6,17]],[[29720,5041],[-5,6]],[[29715,5047],[-25,29]],[[29690,5076],[-6,6]],[[29684,5082],[-3,7]],[[29681,5089],[-11,13]],[[29670,5102],[-1,7]],[[29669,5109],[-10,6]],[[29659,5115],[-3,6]],[[29656,5121],[-6,7]],[[29650,5128],[0,6]],[[29650,5134],[-5,3]],[[29645,5137],[0,4]],[[29645,5141],[-25,16]],[[29620,5157],[-4,9]],[[29616,5166],[-5,4]],[[29611,5170],[-5,6]],[[29606,5176],[-6,6]],[[29600,5182],[-2,7]],[[29598,5189],[-4,3]],[[29594,5192],[-3,4]],[[29591,5196],[-5,9]],[[29586,5205],[-6,4]],[[29580,5209],[-2,6]],[[29578,5215],[-9,6]],[[29569,5221],[-10,10]],[[29559,5231],[-1,6]],[[29558,5237],[-10,7]],[[29548,5244],[0,3]],[[29548,5247],[-20,17]],[[29528,5264],[-8,9]],[[29520,5273],[-3,3]],[[29517,5276],[-3,7]],[[29514,5283],[-6,3]],[[29508,5286],[0,3]],[[29508,5289],[-8,7]],[[29500,5296],[0,3]],[[29500,5299],[-20,16]],[[29480,5315],[-5,9]],[[29475,5324],[-6,4]],[[29469,5328],[0,3]],[[29469,5331],[-11,7]],[[29458,5338],[0,3]],[[29458,5341],[-11,6]],[[29447,5347],[0,4]],[[29447,5351],[-9,6]],[[29438,5357],[-5,6]],[[29433,5363],[-6,7]],[[29427,5370],[-5,6]],[[29422,5376],[-5,4]],[[29417,5380],[-3,6]],[[29414,5386],[-11,10]],[[29403,5396],[-6,10]],[[29397,5406],[-14,16]],[[29383,5422],[-5,6]],[[29378,5428],[-14,10]],[[29364,5438],[0,3]],[[29364,5441],[-7,6]],[[29357,5447],[0,4]],[[29357,5451],[-13,12]],[[29344,5463],[0,4]],[[29344,5467],[-3,3]],[[29341,5470],[0,4]],[[29341,5474],[-8,3]],[[29333,5477],[0,3]],[[29333,5480],[-6,3]],[[29327,5483],[-5,7]],[[29322,5490],[-15,12]],[[29307,5502],[0,4]],[[29307,5506],[-11,9]],[[29296,5515],[-3,7]],[[29293,5522],[-5,3]],[[29288,5525],[0,16]],[[29288,5541],[5,4]],[[29293,5545],[-19,6]],[[29274,5551],[-8,3]],[[29266,5554],[-14,36]],[[29252,5590],[-9,13]],[[29243,5603],[-2,9]],[[29241,5612],[0,23]],[[29241,5635],[2,-6]],[[29243,5629],[9,-13]],[[29252,5616],[5,-10]],[[29257,5606],[4,-3]],[[29261,5603],[5,-10]],[[29266,5593],[6,-7]],[[29272,5586],[5,-9]],[[29277,5577],[25,0]],[[29302,5577],[0,7]],[[29302,5584],[0,6]],[[29302,5590],[0,6]],[[29302,5596],[-9,7]],[[29293,5603],[-7,7]],[[29286,5610],[0,15]],[[29286,5625],[0,7]],[[29286,5632],[-4,3]],[[29282,5635],[0,3]],[[29282,5638],[145,58],[64,37]],[[29491,5733],[40,39],[47,73],[52,243]],[[29630,6088],[57,134],[32,144]],[[29719,6366],[26,238]],[[29745,6604],[63,157],[12,51]],[[29820,6812],[-6,95],[-53,123]],[[29761,7030],[-14,122]],[[29747,7152],[15,54]],[[29762,7206],[46,76]],[[29808,7282],[79,94]],[[29887,7376],[403,437],[86,87]],[[30376,7900],[68,57]],[[30444,7957],[127,66]],[[30571,8023],[70,51],[109,108],[354,397],[130,133]],[[31234,8712],[92,72],[83,39]],[[31409,8823],[87,60]],[[31496,8883],[145,147]],[[31641,9030],[122,164]],[[31763,9194],[56,95]],[[31819,9289],[83,208],[20,103],[9,180],[-4,556]],[[31927,10336],[6,218],[25,139],[72,194]],[[32030,10887],[12,69]],[[32042,10956],[28,244]],[[32070,11200],[19,61],[109,246],[52,81]],[[32250,11588],[114,156]],[[32364,11744],[160,322],[44,115],[61,131]],[[32629,12312],[26,93],[29,240],[32,182]],[[32716,12827],[325,51]],[[33041,12878],[106,45]],[[33147,12923],[162,136]],[[33309,13059],[38,44]],[[33347,13103],[79,161]],[[33426,13264],[88,128],[164,195]],[[33678,13587],[54,77],[125,271],[19,60]],[[33876,13995],[12,102],[5,317]],[[33893,14414],[11,138],[15,65],[74,191]],[[33993,14808],[29,257]],[[34022,15065],[10,63]],[[34032,15128],[19,59],[62,131]],[[34113,15318],[58,140],[117,188]],[[34288,15646],[95,77],[186,185]],[[34569,15908],[68,51],[103,49]],[[34740,16008],[141,87],[104,47]],[[34985,16142],[141,87],[104,47]],[[35230,16276],[141,87],[128,60]],[[35499,16423],[175,112],[82,2]],[[35756,16537],[84,18],[142,78]],[[35982,16633],[105,48]],[[36087,16681],[142,83],[222,60],[121,63]],[[36572,16887],[191,53]],[[36763,16940],[54,18],[144,82]],[[36961,17040],[104,47],[118,70]],[[37183,17157],[135,41]],[[37318,17198],[111,33],[145,74]],[[37574,17305],[60,18]],[[37634,17323],[220,19]],[[37854,17342],[159,-2]],[[38013,17340],[92,-12],[83,-36]],[[38188,17292],[78,-81]],[[38266,17211],[26,-53],[100,-244],[42,-214]],[[38434,16700],[22,-55],[73,-87]],[[38529,16558],[266,-151],[106,-37]],[[38901,16370],[134,10],[179,4]],[[39214,16384],[1553,-2],[106,9]],[[40873,16391],[67,13]],[[40940,16404],[180,81]],[[41120,16485],[98,23]],[[41218,16508],[176,11]],[[41394,16519],[325,-2],[122,-136],[71,96]],[[41912,16477],[57,110],[42,120]],[[42011,16707],[47,94],[40,184]],[[42098,16985],[16,60],[68,161],[44,216],[75,191]],[[42301,17613],[36,183]],[[42337,17796],[19,59]],[[42356,17855],[28,51]],[[42384,17906],[37,43]],[[42421,17949],[44,35],[175,79],[101,38]],[[42741,18101],[53,16]],[[42794,18117],[111,0],[55,-21]],[[42960,18096],[48,-36]],[[43008,18060],[45,-42],[189,-206]],[[43242,17812],[48,-35]],[[43290,17777],[110,-21]],[[43400,17756],[53,15],[112,68]],[[43565,17839],[103,51],[94,58]],[[43762,17948],[48,26]],[[43810,17974],[111,30]],[[43921,18004],[111,32],[120,61],[118,33]],[[44270,18130],[220,31]],[[44490,18161],[178,79],[222,62]],[[44890,18302],[200,130],[90,126],[77,75]],[[45257,18633],[53,27],[125,22]],[[45435,18682],[429,0],[98,7]],[[45962,18689],[97,16]],[[46059,18705],[84,-67]],[[46143,18638],[122,-120]],[[46265,18518],[82,-120],[44,-115],[61,-128],[23,-79],[110,-52]],[[46585,18024],[137,-51],[142,-85]],[[46864,17888],[103,-49],[117,-68],[87,-29],[130,-12]],[[139350,67021],[26,37]],[[139376,67058],[19,38]],[[139395,67096],[34,45],[213,-5]],[[139642,67136],[59,-2]],[[139701,67134],[20,0]],[[139721,67134],[58,-59],[20,-141],[-53,-67]],[[139746,66867],[-97,-53],[-17,-32]],[[139632,66782],[21,-253],[-72,-61],[-59,-21]],[[139522,66447],[-57,-43],[-36,-101],[8,-48]],[[139437,66255],[105,-106]],[[139542,66149],[22,-56],[-2,-66]],[[139562,66027],[106,-94],[64,-16]],[[139732,65917],[88,-85]],[[139820,65832],[46,-40],[75,33]],[[139941,65825],[42,101]],[[139983,65926],[39,175]],[[140022,66101],[80,43],[64,8]],[[140166,66152],[94,3],[54,-54],[11,-83],[-8,-84]],[[140317,65934],[18,-46]],[[140335,65888],[216,-96],[21,-26]],[[140572,65766],[92,-141]],[[140664,65625],[200,-78]],[[140864,65547],[32,-61],[0,-146],[27,-32]],[[140923,65308],[59,-48]],[[140982,65260],[47,-98],[-2,-66]],[[141027,65096],[0,-4]],[[141027,65092],[32,-61],[59,-48]],[[141118,64983],[72,-67],[56,-114]],[[141246,64802],[40,-63],[27,-44]],[[141313,64695],[97,-37],[86,-61]],[[141496,64597],[156,-11],[285,-166],[38,-53]],[[141975,64367],[84,-171]],[[142059,64196],[108,-202]],[[142167,63994],[207,-27]],[[142374,63967],[39,-59],[55,-16]],[[142468,63892],[68,5]],[[142536,63897],[80,-14],[116,-56],[31,-72]],[[142763,63755],[-28,-43]],[[142735,63712],[-19,-15]],[[142716,63697],[-5,-35],[-68,-50]],[[142643,63612],[-36,-38]],[[142607,63574],[-72,-79],[-125,-79],[-154,-61],[-102,-64]],[[142154,63291],[-34,-39],[62,-52],[119,-32]],[[142301,63168],[58,-16],[124,82],[61,24]],[[142544,63258],[72,-10]],[[142616,63248],[59,-20],[49,-53],[54,-127]],[[142778,63048],[220,-511],[14,-63]],[[143012,62474],[-56,-131]],[[142956,62343],[175,16]],[[143131,62359],[214,50],[50,18]],[[143395,62427],[14,-15]],[[143409,62412],[-35,-43],[-78,-144]],[[143296,62225],[-21,-54]],[[143275,62171],[-16,-68],[-9,-142],[3,-510]],[[143253,61451],[-17,-176]],[[143236,61275],[-125,-307]],[[143111,60968],[-127,-264]],[[142984,60704],[-90,-109]],[[142894,60595],[-145,-88],[-167,-140],[-105,-62],[-139,-35]],[[142338,60270],[-54,-18],[-144,-83]],[[142140,60169],[-112,-54],[-94,22]],[[141934,60137],[-178,6]],[[141756,60143],[-58,-12]],[[141698,60131],[-99,-54]],[[141599,60077],[-144,-125],[-73,-18]],[[141382,59934],[-125,-38],[-198,-44]],[[141059,59852],[-49,-25]],[[141010,59827],[-93,-56],[-105,-48]],[[140812,59723],[-140,-86],[-103,-50],[-67,-50]],[[140502,59537],[-80,-85]],[[140422,59452],[-123,-187],[-80,-209],[-48,-214],[-21,-57]],[[140150,58785],[-54,-134],[-16,-69]],[[140080,58582],[-14,-181],[2,-598]],[[140068,57803],[-7,-109],[-29,-131],[-56,-133],[-41,-184]],[[139935,57246],[-19,-61],[-48,-88],[-92,-133]],[[139776,56964],[-189,-88]],[[139587,56876],[-144,-79],[-54,-19]],[[139389,56778],[-167,-43]],[[139222,56735],[-145,-72],[-86,-20],[-203,-25]],[[138788,56618],[-81,-27],[-119,-67],[-104,-49],[-139,-88]],[[138345,56387],[-151,-90]],[[138194,56297],[-166,-144],[-51,-32]],[[137977,56121],[-125,-29],[-130,-5]],[[137722,56087],[-132,8]],[[137590,56095],[-158,22]],[[137432,56117],[-76,236]],[[137356,56353],[-79,156],[-45,114]],[[137232,56623],[-45,76],[-139,191]],[[137048,56890],[-75,166]],[[136973,57056],[-50,73],[-173,206]],[[136750,57335],[-83,123],[-46,114],[-82,122],[-192,232]],[[136347,57926],[-45,75],[-48,111]],[[136254,58112],[-88,110]],[[136166,58222],[-64,48],[-45,100],[-48,149]],[[136009,58519],[-69,160],[-39,185]],[[135901,58864],[-15,61]],[[135886,58925],[-74,158],[-44,115],[-71,158]],[[135697,59356],[-33,183]],[[135664,59539],[5,299],[-5,259]],[[135664,60097],[23,50]],[[135687,60147],[83,155],[44,115],[79,155],[47,114],[50,81]],[[135990,60767],[97,129]],[[136087,60896],[47,85]],[[136134,60981],[20,61],[59,246],[55,19]],[[136268,61307],[67,109],[94,117],[399,446],[64,68]],[[136892,62047],[136,116],[103,48],[117,72]],[[137248,62283],[153,74]],[[137401,62357],[107,98]],[[137508,62455],[89,119]],[[137597,62574],[13,26]],[[137610,62600],[78,223],[31,106],[-50,63],[-61,132]],[[137608,63124],[-78,154],[-43,116],[-80,155]],[[137407,63549],[-44,115]],[[137363,63664],[-82,188]],[[137281,63852],[-41,188],[-78,184]],[[137162,64224],[-42,118],[-72,158]],[[137048,64500],[-55,246]],[[136993,64746],[-57,132]],[[136936,64878],[-19,59],[-42,257]],[[136875,65194],[-9,36]],[[136866,65230],[-46,180]],[[136820,65410],[194,65],[64,3]],[[137078,65478],[75,-67]],[[137153,65411],[54,3],[22,37]],[[137229,65451],[-19,136],[-46,80]],[[137164,65667],[-29,56]],[[137135,65723],[-7,17]],[[137128,65740],[45,129],[25,27]],[[137198,65896],[59,21],[31,36],[10,60]],[[137298,66013],[34,33],[108,-11]],[[137440,66035],[61,128],[26,27]],[[137527,66190],[80,49],[-11,130]],[[137596,66369],[-24,37],[44,96]],[[137616,66502],[56,125],[10,70]],[[137682,66697],[-5,133]],[[137677,66830],[48,99]],[[137725,66929],[63,37]],[[137788,66966],[42,33],[44,87]],[[137874,67086],[40,24]],[[137914,67110],[116,-18],[54,27]],[[138084,67119],[125,35]],[[138209,67154],[98,29]],[[138307,67183],[132,44]],[[138439,67227],[53,16]],[[138492,67243],[115,4]],[[138607,67247],[130,5],[107,-11]],[[138844,67241],[97,-31],[55,-3]],[[138996,67207],[185,-114],[80,-19],[89,-53]],[[129631,66267],[148,-63],[106,-104]],[[129885,66100],[205,-146]],[[130090,65954],[72,-33],[71,12]],[[130233,65933],[100,25],[267,127]],[[130600,66085],[25,-12]],[[130625,66073],[56,-27],[22,-52]],[[130703,65994],[-6,-46],[-39,-32]],[[130658,65916],[-19,-56]],[[130639,65860],[17,-38],[45,-10]],[[130701,65812],[60,-15]],[[130761,65797],[143,6]],[[130904,65803],[64,3]],[[130968,65806],[164,-85]],[[131132,65721],[58,-26]],[[131190,65695],[53,-31],[20,-82],[80,-23]],[[131343,65559],[90,-44],[33,-72]],[[131466,65443],[66,-92],[36,-2],[57,38]],[[131625,65387],[55,28],[69,107],[17,61]],[[131766,65583],[153,51]],[[131919,65634],[65,25],[55,104],[86,107]],[[132125,65870],[1,49]],[[132126,65919],[2,42],[56,54]],[[132184,66015],[34,102],[125,38],[53,43]],[[132396,66198],[24,17]],[[132420,66215],[56,41]],[[132476,66256],[67,49],[64,93],[178,8]],[[132785,66406],[97,-106],[3,-63]],[[132885,66237],[26,-48],[34,-5]],[[132945,66184],[177,-8]],[[133122,66176],[186,-110],[54,-18]],[[133362,66048],[45,11]],[[133407,66059],[88,69],[118,93],[57,23]],[[133670,66244],[10,4]],[[133680,66248],[38,-7]],[[133718,66241],[84,-21],[78,52],[55,-11],[15,-82],[75,6],[131,34]],[[134156,66219],[52,0]],[[134208,66219],[159,66],[102,-5],[49,-57]],[[134518,66223],[68,-43],[39,-121]],[[134625,66059],[6,-22]],[[134631,66037],[44,25],[330,16],[116,-47]],[[135121,66031],[143,25],[58,-13]],[[135322,66043],[117,-98]],[[135439,65945],[119,-60]],[[135558,65885],[61,-79]],[[135619,65806],[71,-31],[55,13]],[[135745,65788],[94,9],[22,-24]],[[135861,65773],[25,-16]],[[135886,65757],[107,-58],[116,20]],[[136109,65719],[181,4],[57,-109],[122,-81]],[[136469,65533],[80,-85],[61,-29]],[[136610,65419],[210,-9]],[[135664,60097],[-94,-53]],[[135570,60044],[-132,-54],[-145,-75]],[[135293,59915],[-99,-23]],[[135194,59892],[-207,-9],[-1029,6]],[[133958,59889],[-90,-3]],[[133868,59886],[-89,-11],[-81,-26],[-119,-62]],[[133579,59787],[-220,-65],[-78,-51],[-206,-181]],[[133075,59490],[-64,-126]],[[133011,59364],[-84,-254]],[[132927,59110],[-22,-88]],[[132905,59022],[-75,-204],[-78,-193]],[[132752,58625],[-14,-103],[-11,-247],[-12,-102]],[[132715,58173],[-66,-166]],[[132649,58007],[-19,-57],[-48,-214]],[[132582,57736],[-66,-164]],[[132516,57572],[-20,-101],[-9,-155],[-28,-122],[-57,-133]],[[132402,57061],[-25,-94],[-9,-105]],[[132368,56862],[-8,-212],[-14,-103]],[[132346,56547],[-17,-61]],[[132329,56486],[-55,-133],[-43,-170],[-25,-49]],[[132206,56134],[-19,-19]],[[132187,56115],[-151,-104],[-75,-35]],[[131961,55976],[-195,-52],[-92,-47]],[[131674,55877],[-105,-25]],[[131569,55852],[-55,10]],[[131514,55862],[-99,66]],[[131415,55928],[-163,141],[-101,54]],[[131151,56123],[-142,85],[-195,71]],[[130814,56279],[-169,68],[-146,24]],[[130499,56371],[-152,6],[-151,-4]],[[130196,56373],[-145,-31]],[[130051,56342],[-77,-51],[-117,-106]],[[129857,56185],[-97,-70]],[[129760,56115],[-76,-41]],[[129684,56074],[-50,-36],[-142,-126]],[[129492,55912],[-48,-39],[-152,-87]],[[129292,55786],[-213,-185]],[[129079,55601],[-272,-148]],[[128807,55453],[-195,-48],[-53,-23]],[[128559,55382],[-239,-168]],[[128320,55214],[-90,52]],[[128230,55266],[-135,53],[-95,51]],[[128000,55370],[-132,36],[-86,-4]],[[127782,55402],[-47,127]],[[127735,55529],[-45,154],[-60,132]],[[127630,55815],[-31,128]],[[127599,55943],[-6,71],[1,213]],[[127594,56227],[36,163],[64,131],[46,114],[79,155]],[[127819,56790],[45,114],[82,155],[117,267]],[[128063,57326],[6,31]],[[128069,57357],[0,63],[-36,113]],[[128033,57533],[-98,154]],[[127935,57687],[-86,37]],[[127849,57724],[-166,11]],[[127683,57735],[-1025,-10],[-104,3]],[[126554,57728],[-103,12],[-96,31],[-112,65]],[[126243,57836],[-103,51],[-140,87],[-103,50]],[[125897,58024],[-71,44]],[[125826,58068],[0,135],[78,92],[83,122]],[[125987,58417],[59,139]],[[126046,58556],[50,74]],[[126096,58630],[261,295],[75,93]],[[126432,59018],[45,76],[36,90]],[[126513,59184],[23,49]],[[126536,59233],[50,74],[97,114]],[[126683,59421],[267,292],[95,117],[45,75],[46,114],[82,123],[158,181]],[[127376,60323],[97,136]],[[127473,60459],[67,149],[129,159]],[[127669,60767],[42,36]],[[127711,60803],[152,76],[117,71],[101,48],[64,55]],[[128145,61053],[60,93]],[[128205,61146],[78,237],[-36,90]],[[128247,61473],[-85,186],[-129,-4]],[[128033,61655],[-89,5],[-111,31]],[[127833,61691],[-220,120]],[[127613,61811],[-97,76]],[[127516,61887],[-188,214],[-52,79],[-62,140],[-88,129],[-164,192],[-51,80]],[[126911,62721],[-33,124]],[[126878,62845],[-9,297],[-6,64]],[[126863,63206],[-14,63]],[[126849,63269],[-130,299]],[[126719,63568],[-98,159],[-69,92]],[[126552,63819],[13,10]],[[126565,63829],[0,3]],[[126565,63832],[24,-3]],[[126589,63829],[7,10]],[[126596,63839],[42,29]],[[126638,63868],[12,16]],[[126650,63884],[7,3]],[[126657,63887],[1,6]],[[126658,63893],[8,10]],[[126666,63903],[5,6]],[[126671,63909],[25,10]],[[126696,63919],[15,10]],[[126711,63929],[31,26]],[[126742,63955],[10,9]],[[126752,63964],[11,4]],[[126763,63968],[0,3]],[[126763,63971],[6,4]],[[126769,63975],[3,5]],[[126772,63980],[22,14]],[[126794,63994],[9,22]],[[126803,64016],[10,14]],[[126813,64030],[0,9]],[[126813,64039],[14,13]],[[126827,64052],[1,6]],[[126828,64058],[24,13]],[[126852,64071],[0,10]],[[126852,64081],[20,22]],[[126872,64103],[11,14]],[[126883,64117],[17,35]],[[126900,64152],[3,6]],[[126903,64158],[20,36]],[[126923,64194],[10,10]],[[126933,64204],[9,3]],[[126942,64207],[0,3]],[[126942,64210],[8,3]],[[126950,64213],[5,16]],[[126955,64229],[23,20]],[[126978,64249],[17,23]],[[126995,64272],[35,19]],[[127030,64291],[9,9]],[[127039,64300],[9,4]],[[127048,64304],[11,9]],[[127059,64313],[6,0]],[[127065,64313],[0,4]],[[127065,64317],[16,6]],[[127081,64323],[8,7]],[[127089,64330],[11,3]],[[127100,64333],[11,6]],[[127111,64339],[48,17]],[[127159,64356],[0,3]],[[127159,64359],[27,3]],[[127186,64362],[0,3]],[[127186,64365],[25,3]],[[127211,64368],[4,-6]],[[127215,64362],[22,6]],[[127237,64368],[3,7]],[[127240,64375],[21,13]],[[127261,64388],[31,16]],[[127292,64404],[20,7]],[[127312,64411],[0,3]],[[127312,64414],[3,0]],[[127315,64414],[8,-3]],[[127323,64411],[17,-4]],[[127340,64407],[0,4]],[[127340,64411],[11,3]],[[127351,64414],[0,3]],[[127351,64417],[14,6]],[[127365,64423],[6,10]],[[127371,64433],[14,10]],[[127385,64443],[0,3]],[[127385,64446],[3,4]],[[127388,64450],[15,21]],[[127403,64471],[4,4]],[[127407,64475],[10,7]],[[127417,64482],[6,9]],[[127423,64491],[29,10]],[[127452,64501],[2,6]],[[127454,64507],[8,3]],[[127462,64510],[0,4]],[[127462,64514],[34,13]],[[127496,64527],[6,-4]],[[127502,64523],[21,4]],[[127523,64527],[0,3]],[[127523,64530],[22,16]],[[127545,64546],[12,16]],[[127557,64562],[6,4]],[[127563,64566],[2,6]],[[127565,64572],[12,6]],[[127577,64578],[0,7]],[[127577,64585],[22,29]],[[127599,64614],[19,16]],[[127618,64630],[6,3]],[[127624,64633],[0,4]],[[127624,64637],[28,3]],[[127652,64640],[0,3]],[[127652,64643],[17,3]],[[127669,64646],[16,10]],[[127685,64656],[20,4]],[[127705,64660],[0,2]],[[127705,64662],[14,-2]],[[127719,64660],[2,0]],[[127721,64660],[5,2]],[[127726,64662],[14,10]],[[127740,64672],[50,13]],[[127790,64685],[0,3]],[[127790,64688],[20,4]],[[127810,64692],[0,3]],[[127810,64695],[29,-3]],[[127839,64692],[0,3]],[[127839,64695],[22,-7]],[[127861,64688],[0,4]],[[127861,64692],[24,0]],[[127885,64692],[17,-4]],[[127902,64688],[8,-3]],[[127910,64685],[1,-9]],[[127911,64676],[10,3]],[[127921,64679],[15,6]],[[127936,64685],[5,7]],[[127941,64692],[14,3]],[[127955,64695],[6,6]],[[127961,64701],[52,3]],[[128013,64704],[9,7]],[[128022,64711],[16,3]],[[128038,64714],[0,3]],[[128038,64717],[18,3]],[[128056,64720],[27,11]],[[128083,64731],[9,-4]],[[128092,64727],[0,-3]],[[128092,64724],[24,23]],[[128116,64747],[12,19]],[[128128,64766],[5,3]],[[128133,64769],[9,7]],[[128142,64776],[25,12]],[[128167,64788],[11,14]],[[128178,64802],[8,2]],[[128186,64804],[1,7]],[[128187,64811],[7,4]],[[128194,64815],[4,9]],[[128198,64824],[21,26]],[[128219,64850],[12,23]],[[128231,64873],[8,6]],[[128239,64879],[0,3]],[[128239,64882],[8,4]],[[128247,64886],[4,9]],[[128251,64895],[7,3]],[[128258,64898],[0,4]],[[128258,64902],[14,19]],[[128272,64921],[8,20]],[[128280,64941],[9,12]],[[128289,64953],[0,4]],[[128289,64957],[8,3]],[[128297,64960],[6,19]],[[128303,64979],[5,3]],[[128308,64982],[1,7]],[[128309,64989],[0,29]],[[128309,65018],[-1,6]],[[128308,65024],[-5,4]],[[128303,65028],[-6,16]],[[128297,65044],[-5,3]],[[128292,65047],[-3,10]],[[128289,65057],[36,16]],[[128325,65073],[3,12]],[[128328,65085],[14,-2]],[[128342,65083],[20,16]],[[128362,65099],[0,6]],[[128362,65105],[6,10]],[[128368,65115],[7,3]],[[128375,65118],[4,6]],[[128379,65124],[21,52]],[[128400,65176],[14,36]],[[128414,65212],[6,10]],[[128420,65222],[0,3]],[[128420,65225],[8,3]],[[128428,65228],[3,10]],[[128431,65238],[16,19]],[[128447,65257],[6,10]],[[128453,65267],[0,3]],[[128453,65270],[8,0]],[[128461,65270],[12,23]],[[128473,65293],[6,9]],[[128479,65302],[5,32]],[[128484,65334],[20,46]],[[128504,65380],[0,6]],[[128504,65386],[2,0]],[[128506,65386],[9,19]],[[128515,65405],[6,4]],[[128521,65409],[4,6]],[[128525,65415],[4,3]],[[128529,65418],[0,10]],[[128529,65428],[13,7]],[[128542,65435],[0,3]],[[128542,65438],[15,26]],[[128557,65464],[2,3]],[[128559,65467],[5,0]],[[128564,65467],[1,10]],[[128565,65477],[11,6]],[[128576,65483],[0,10]],[[128576,65493],[8,0]],[[128584,65493],[8,19]],[[128592,65512],[3,4]],[[128595,65516],[0,3]],[[128595,65519],[12,13]],[[128607,65532],[0,3]],[[128607,65535],[0,3]],[[128607,65538],[8,0]],[[128615,65538],[5,10]],[[128620,65548],[3,3]],[[128623,65551],[12,4]],[[128635,65555],[0,2]],[[128635,65557],[25,14]],[[128660,65571],[5,16]],[[128665,65587],[20,67]],[[128685,65654],[13,13]],[[128698,65667],[43,7]],[[128741,65674],[16,16]],[[128757,65690],[11,7]],[[128768,65697],[0,2]],[[128768,65699],[20,14]],[[128788,65713],[13,16]],[[128801,65729],[6,13]],[[128807,65742],[2,3]],[[128809,65745],[9,0]],[[128818,65745],[3,9]],[[128821,65754],[22,16]],[[128843,65770],[0,-3]],[[128843,65767],[36,0]],[[128879,65767],[0,7]],[[128879,65774],[12,7]],[[128891,65781],[22,3]],[[128913,65784],[5,3]],[[128918,65787],[14,19]],[[128932,65806],[6,3]],[[128938,65809],[6,7]],[[128944,65816],[5,6]],[[128949,65822],[20,20]],[[128969,65842],[13,16]],[[128982,65858],[6,3]],[[128988,65861],[11,7]],[[128999,65868],[23,9]],[[129022,65877],[13,16]],[[129035,65893],[19,7]],[[129054,65900],[0,3]],[[129054,65903],[21,4]],[[129075,65907],[10,22]],[[129085,65929],[8,10]],[[129093,65939],[1,9]],[[129094,65948],[6,10]],[[129100,65958],[5,17]],[[129105,65975],[8,9]],[[129113,65984],[0,7]],[[129113,65991],[12,25]],[[129125,66016],[10,30]],[[129135,66046],[9,16]],[[129144,66062],[2,9]],[[129146,66071],[4,7]],[[129150,66078],[8,39]],[[129158,66117],[3,6]],[[129161,66123],[3,13]],[[129164,66136],[14,32]],[[129178,66168],[7,22]],[[129185,66190],[11,20]],[[129196,66210],[3,13]],[[129199,66223],[7,3]],[[129206,66226],[8,13]],[[129214,66239],[16,10]],[[129230,66249],[0,3]],[[129230,66252],[19,4]],[[129249,66256],[0,3]],[[129249,66259],[6,9]],[[129255,66268],[14,52]],[[129269,66320],[12,23]],[[129281,66343],[5,25]],[[129286,66368],[17,46]],[[129303,66414],[67,-35],[110,-9]],[[129480,66370],[62,-26]],[[129542,66344],[33,-58],[56,-19]],[[13564,17615],[13,-2]],[[13577,17613],[3,-85],[-49,10]],[[13531,17538],[-11,6]],[[13520,17544],[5,46]],[[13525,17590],[0,6]],[[13525,17596],[39,19]],[[14215,18572],[0,-23]],[[14215,18549],[-30,-9]],[[14185,18540],[5,13]],[[14190,18553],[25,19]],[[12337,20291],[-4,6]],[[12333,20297],[0,14]],[[12333,20311],[4,3]],[[12337,20314],[0,-23]],[[12014,20862],[4,-12]],[[12018,20850],[0,-7]],[[12018,20843],[3,-9]],[[12021,20834],[3,-13]],[[12024,20821],[4,-3]],[[12028,20818],[2,-4]],[[12030,20814],[8,-3]],[[12038,20811],[31,-58]],[[12069,20753],[5,-3]],[[12074,20750],[4,-13]],[[12078,20737],[5,-3]],[[12083,20734],[19,-26]],[[12102,20708],[9,-23]],[[12111,20685],[30,-42]],[[12141,20643],[3,-7]],[[12144,20636],[0,-16]],[[12144,20620],[6,-3]],[[12150,20617],[19,-9],[-14,-13],[-19,13],[-5,19],[-20,36]],[[12111,20663],[-3,3]],[[12108,20666],[-25,42]],[[12083,20708],[-5,6]],[[12078,20714],[-4,13]],[[12074,20727],[-5,4]],[[12069,20731],[-25,44]],[[12044,20775],[-5,7]],[[12039,20782],[-9,13]],[[12030,20795],[-6,3]],[[12024,20798],[-24,32]],[[12000,20830],[-3,4]],[[11997,20834],[-4,28]],[[11993,20862],[-5,11]],[[11988,20873],[0,22]],[[11988,20895],[5,3]],[[11993,20898],[21,-36]],[[10913,21344],[-3,-3]],[[10910,21341],[-18,-23]],[[10892,21318],[-7,-3]],[[10885,21315],[-10,39]],[[10875,21354],[16,3]],[[10891,21357],[22,-13]],[[25939,25501],[92,-124]],[[26031,25377],[27,-54],[26,-123]],[[26084,25200],[-87,-37],[-130,-132],[-115,-219],[-69,-168],[-106,-205]],[[25577,24439],[-116,-126]],[[25461,24313],[-28,-77],[-64,-127],[-43,-115],[-72,-159],[-19,-95],[-9,-164]],[[25226,23576],[61,-32],[53,-85],[40,-139],[91,-150]],[[25471,23170],[47,-147],[89,-96]],[[25607,22927],[98,-57],[79,-61]],[[25784,22809],[72,-76],[61,-87],[25,-60],[44,-166],[70,-125],[16,-53]],[[26072,22242],[29,-149],[64,-216]],[[26165,21877],[-28,-111]],[[26137,21766],[-101,-131]],[[26036,21635],[-64,-53],[-127,-65],[-139,-115],[-212,-234],[-89,-86],[-70,-53]],[[25335,21029],[-125,-67]],[[25210,20962],[-100,-103],[-78,-110]],[[25032,20749],[-128,-13],[-301,-5],[-100,7],[-126,29],[-144,73],[-54,18],[-114,14],[-120,-10],[-85,-33],[-73,-58],[-111,-121],[-189,-239]],[[23487,20411],[69,-67]],[[23556,20344],[9,-72]],[[23565,20272],[-29,-115]],[[23536,20157],[1,-59],[46,-113],[145,-210]],[[23728,19775],[48,-113],[81,-157]],[[23857,19505],[67,-179]],[[23924,19326],[-254,74],[-144,71],[-124,37],[-192,21]],[[23210,19529],[-133,-12]],[[23077,19517],[-178,0]],[[22899,19517],[-115,24]],[[22784,19541],[-142,82]],[[22642,19623],[-152,86]],[[22490,19709],[-68,64],[-327,363]],[[22095,20136],[-112,114]],[[21983,20250],[-72,55],[-76,40]],[[21835,20345],[-92,66],[-172,151]],[[21571,20562],[-53,23]],[[21518,20585],[-115,11]],[[21403,20596],[-110,-30],[-118,-67],[-110,-33]],[[21065,20466],[-135,-42],[-69,-52],[-61,-64],[-68,-95],[-72,-167],[-133,-210]],[[20527,19836],[-28,-111],[-55,-168],[-42,-86],[-57,-78],[-119,-104],[-59,-26],[-128,-18],[-331,2],[-130,-8],[-92,-22],[-145,-72],[-61,-18]],[[19280,19127],[-228,-16]],[[19052,19111],[-577,3]],[[18475,19114],[-217,-6],[-189,-23]],[[18069,19085],[-173,60],[-119,64],[-148,35],[-221,13]],[[17408,19257],[-149,36]],[[17259,19293],[-120,61],[-193,54],[-172,84],[-111,30]],[[16663,19522],[-111,30]],[[16552,19552],[-143,82]],[[16409,19634],[-103,48],[-141,87],[-177,74],[-96,31]],[[15892,19874],[-192,152],[-128,64],[-115,74],[-101,52],[-93,66]],[[15263,20282],[-123,118],[-45,32]],[[15095,20432],[-109,21],[-78,-33],[-64,-57]],[[14844,20363],[-74,-91],[-43,-78]],[[14727,20194],[-46,-115],[-76,-156],[-44,-116],[-51,-103]],[[14510,19704],[-38,-116]],[[14472,19588],[-22,-273]],[[14450,19315],[-1,-92],[-17,-93],[-71,-159],[-96,-237],[-24,-130]],[[14241,18604],[-106,-28]],[[14135,18576],[-6,-1]],[[14129,18575],[-27,-32]],[[14102,18543],[-7,-3]],[[14095,18540],[-25,-3]],[[14070,18537],[-7,6]],[[14063,18543],[-35,-6]],[[14028,18537],[-10,-4]],[[14018,18533],[-23,-19]],[[13995,18514],[-6,-4]],[[13989,18510],[-5,-2]],[[13984,18508],[-2,-4]],[[13982,18504],[-54,-29]],[[13928,18475],[-7,-3]],[[13921,18472],[-4,-13]],[[13917,18459],[-5,-13]],[[13912,18446],[0,-4]],[[13912,18442],[-8,-3]],[[13904,18439],[-31,-19]],[[13873,18420],[-6,-3]],[[13867,18417],[-24,-68]],[[13843,18349],[-4,-6]],[[13839,18343],[-3,-29]],[[13836,18314],[-5,-7]],[[13831,18307],[8,-71]],[[13839,18236],[0,-3]],[[13839,18233],[-24,-52]],[[13815,18181],[-4,-4]],[[13811,18177],[-10,-28]],[[13801,18149],[-4,-4]],[[13797,18145],[0,-31]],[[13797,18114],[-4,-14]],[[13793,18100],[0,-3]],[[13793,18097],[-10,3]],[[13783,18100],[-21,-6]],[[13762,18094],[-4,-4]],[[13758,18090],[-5,-9]],[[13753,18081],[-6,-3]],[[13747,18078],[-22,-4]],[[13725,18074],[-8,4]],[[13717,18078],[-27,-20],[-60,20]],[[13630,18078],[-19,3]],[[13611,18081],[5,36]],[[13616,18117],[4,3]],[[13620,18120],[0,3]],[[13620,18123],[-6,3]],[[13614,18126],[-17,7]],[[13597,18133],[-3,0]],[[13594,18133],[-53,3],[11,-52],[-74,-35],[-4,-87],[20,-14]],[[13494,17948],[5,-6]],[[13499,17942],[53,-65],[29,-65],[-11,-35]],[[13570,17777],[-9,-3]],[[13561,17774],[-50,-36]],[[13511,17738],[-17,3]],[[13494,17741],[-49,14]],[[13445,17755],[-4,2]],[[13441,17757],[0,11]],[[13441,17768],[0,12]],[[13441,17780],[-33,-39]],[[13408,17741],[-5,4]],[[13403,17745],[-53,78],[-47,28]],[[13303,17851],[-9,-3]],[[13294,17848],[-17,-16]],[[13277,17832],[-9,3]],[[13268,17835],[-4,7]],[[13264,17842],[-3,3]],[[13261,17845],[0,6]],[[13261,17851],[-14,4]],[[13247,17855],[-34,32]],[[13213,17887],[-5,16]],[[13208,17903],[-65,4],[-35,-30],[-1,-54]],[[13107,17823],[-11,-4]],[[13096,17819],[-14,-16]],[[13082,17803],[-10,-3]],[[13072,17800],[-21,-36]],[[13051,17764],[-8,-3]],[[13043,17761],[0,-4]],[[13043,17757],[-11,7]],[[13032,17764],[-30,-9],[-6,-65]],[[12996,17690],[-19,0]],[[12977,17690],[-93,0]],[[12884,17690],[-18,3]],[[12866,17693],[-45,4]],[[12821,17697],[-31,6]],[[12790,17703],[-9,29]],[[12781,17732],[4,3]],[[12785,17735],[0,13]],[[12785,17748],[-34,4]],[[12751,17752],[0,64]],[[12751,17816],[8,7]],[[12759,17823],[1,6]],[[12760,17829],[5,3]],[[12765,17832],[-111,-52],[-51,23]],[[12603,17803],[-5,0]],[[12598,17803],[9,32]],[[12607,17835],[18,4]],[[12625,17839],[14,16]],[[12639,17855],[6,3]],[[12645,17858],[8,29]],[[12653,17887],[-28,-3]],[[12625,17884],[-63,-10]],[[12562,17874],[-4,3]],[[12558,17877],[0,10]],[[12558,17887],[4,7]],[[12562,17894],[5,13]],[[12567,17907],[0,3]],[[12567,17910],[-28,-14]],[[12539,17896],[-5,-2]],[[12534,17894],[-6,-26]],[[12528,17868],[0,-7]],[[12528,17861],[-2,-10]],[[12526,17851],[-7,0]],[[12519,17851],[-21,0]],[[12498,17851],[-6,4]],[[12492,17855],[-61,25]],[[12431,17880],[-8,4]],[[12423,17884],[0,16]],[[12423,17900],[5,7]],[[12428,17907],[16,22]],[[12444,17929],[6,6]],[[12450,17935],[59,49]],[[12509,17984],[0,6]],[[12509,17990],[17,20]],[[12526,18010],[8,3]],[[12534,18013],[0,3]],[[12534,18016],[0,7]],[[12534,18023],[13,45]],[[12547,18068],[-21,6]],[[12526,18074],[2,39]],[[12528,18113],[5,4]],[[12533,18117],[1,6]],[[12534,18123],[3,3]],[[12537,18126],[30,26]],[[12567,18152],[8,4]],[[12575,18156],[-8,57]],[[12567,18213],[5,3]],[[12572,18216],[42,72]],[[12614,18288],[11,3]],[[12625,18291],[0,13]],[[12625,18304],[-7,3]],[[12618,18307],[-1,61],[-45,-19]],[[12572,18349],[-5,13]],[[12567,18362],[0,45]],[[12567,18407],[5,3]],[[12572,18410],[0,4]],[[12572,18414],[3,3]],[[12575,18417],[43,16]],[[12618,18433],[5,-7]],[[12623,18426],[101,16],[10,62]],[[12734,18504],[-5,4]],[[12729,18508],[-34,6],[-42,58]],[[12653,18572],[0,6]],[[12653,18578],[-10,74],[14,62],[-4,65]],[[12653,18779],[0,7]],[[12653,18786],[1,54]],[[12654,18840],[-9,3]],[[12645,18843],[19,126],[-16,52]],[[12648,19021],[-9,3]],[[12639,19024],[0,20]],[[12639,19044],[4,9]],[[12643,19053],[0,7]],[[12643,19060],[10,-16]],[[12653,19044],[29,32],[-4,97],[36,113],[-49,42],[17,71]],[[12682,19399],[-12,0]],[[12670,19399],[-47,20],[-48,-30]],[[12575,19389],[-8,-6]],[[12567,19383],[-3,-10]],[[12564,19373],[3,-6]],[[12567,19367],[0,-7]],[[12567,19360],[-16,4]],[[12551,19364],[-12,-20]],[[12539,19344],[-11,-7]],[[12528,19337],[6,30]],[[12534,19367],[3,6]],[[12537,19373],[17,26]],[[12554,19399],[4,13]],[[12558,19412],[0,10]],[[12558,19422],[0,6]],[[12558,19428],[-25,13]],[[12533,19441],[-5,3]],[[12528,19444],[-19,-16]],[[12509,19428],[-8,-3]],[[12501,19425],[-73,-77]],[[12428,19348],[-5,-4]],[[12423,19344],[-1,-7]],[[12422,19337],[-6,-3]],[[12416,19334],[0,-3]],[[12416,19331],[0,-6]],[[12416,19325],[-25,-16]],[[12391,19309],[-8,-4]],[[12383,19305],[3,20]],[[12386,19325],[6,3]],[[12392,19328],[31,32]],[[12423,19360],[8,4]],[[12431,19364],[13,19]],[[12444,19383],[4,3]],[[12448,19386],[41,49]],[[12489,19435],[8,3]],[[12497,19438],[9,13]],[[12506,19451],[3,3]],[[12509,19454],[0,52]],[[12509,19506],[0,9]],[[12509,19515],[-31,23],[9,77]],[[12487,19615],[11,4]],[[12498,19619],[5,32]],[[12503,19651],[3,7]],[[12506,19658],[-8,12]],[[12498,19670],[-6,7]],[[12492,19677],[9,97],[-37,16],[-6,43]],[[12458,19833],[-10,70]],[[12448,19903],[-4,4]],[[12444,19907],[-16,28]],[[12428,19935],[-5,-3]],[[12423,19932],[-25,-19],[18,-61]],[[12416,19852],[3,-4]],[[12419,19848],[4,-42]],[[12423,19806],[8,-3]],[[12431,19803],[-9,-10]],[[12422,19793],[-11,4]],[[12411,19797],[5,-49]],[[12416,19748],[3,-3]],[[12419,19745],[4,-23]],[[12423,19722],[5,-6]],[[12428,19716],[0,-16]],[[12428,19700],[-5,6]],[[12423,19706],[10,-32]],[[12433,19674],[-14,-4]],[[12419,19670],[-16,-61],[8,-126],[-19,-39]],[[12392,19444],[-9,4]],[[12383,19448],[-46,-59]],[[12337,19389],[-6,-3]],[[12331,19386],[2,23]],[[12333,19409],[4,10]],[[12337,19419],[38,177],[11,233]],[[12386,19829],[5,6]],[[12391,19835],[0,42]],[[12391,19877],[-5,10]],[[12386,19887],[0,87]],[[12386,19974],[9,4]],[[12395,19978],[21,71]],[[12416,20049],[3,6]],[[12419,20055],[4,13]],[[12423,20068],[5,3]],[[12428,20071],[0,13]],[[12428,20084],[-5,6]],[[12423,20090],[-37,39],[-49,-19]],[[12337,20110],[0,-10]],[[12337,20100],[-15,-19]],[[12322,20081],[-16,0]],[[12306,20081],[0,-3]],[[12306,20078],[-4,-4]],[[12302,20074],[-35,-41]],[[12267,20033],[-3,-4]],[[12264,20029],[-39,65]],[[12225,20094],[-5,6]],[[12220,20100],[0,20]],[[12220,20120],[5,9]],[[12225,20129],[17,91],[-3,123],[-14,55]],[[12225,20398],[-5,6]],[[12220,20404],[-4,19]],[[12216,20423],[-5,7]],[[12211,20430],[-16,55]],[[12195,20485],[-4,6]],[[12191,20491],[-20,90]],[[12171,20581],[24,-3]],[[12195,20578],[0,-2]],[[12195,20576],[-9,-4]],[[12186,20572],[5,-39]],[[12191,20533],[4,-3]],[[12195,20530],[16,-61]],[[12211,20469],[5,-7]],[[12216,20462],[4,-13]],[[12220,20449],[5,-6]],[[12225,20443],[25,-52]],[[12250,20391],[5,-4]],[[12255,20387],[31,-64],[-19,-23]],[[12267,20300],[-3,-3]],[[12264,20297],[0,-13]],[[12264,20284],[0,-6]],[[12264,20278],[6,-74]],[[12270,20204],[-6,-7]],[[12264,20197],[0,-42]],[[12264,20155],[6,-3]],[[12270,20152],[32,32]],[[12302,20184],[4,-3]],[[12306,20181],[41,16],[11,87]],[[12358,20284],[12,0]],[[12370,20284],[16,-3]],[[12386,20281],[5,3]],[[12391,20284],[25,43]],[[12416,20327],[3,9]],[[12419,20336],[0,10]],[[12419,20346],[-3,3]],[[12416,20349],[0,36]],[[12416,20385],[3,2]],[[12419,20387],[4,17]],[[12423,20404],[5,3]],[[12428,20407],[14,42]],[[12442,20449],[6,4]],[[12448,20453],[38,16]],[[12486,20469],[14,3]],[[12500,20472],[1,3]],[[12501,20475],[38,3]],[[12539,20478],[61,-16],[4,94],[35,13]],[[12639,20569],[4,7]],[[12643,20576],[0,32]],[[12643,20608],[-4,3]],[[12639,20611],[-5,29],[-59,58]],[[12575,20698],[-3,-6]],[[12572,20692],[-55,71]],[[12517,20763],[-14,-4]],[[12503,20759],[-73,55]],[[12430,20814],[-2,10]],[[12428,20824],[-6,19]],[[12422,20843],[-6,3]],[[12416,20846],[-24,7]],[[12392,20853],[-14,4]],[[12378,20857],[-61,12]],[[12317,20869],[-17,4]],[[12300,20873],[-30,32]],[[12270,20905],[-6,3]],[[12264,20908],[-69,45],[-46,7]],[[12149,20960],[-5,3]],[[12144,20963],[-55,16]],[[12089,20979],[-14,6]],[[12075,20985],[-37,16]],[[12038,21001],[-8,-3]],[[12030,20998],[0,-9]],[[12030,20989],[-5,-7]],[[12025,20982],[0,10]],[[12025,20992],[-1,16]],[[12024,21008],[0,4]],[[12024,21012],[-11,3]],[[12013,21015],[-13,25]],[[12000,21040],[-3,4]],[[11997,21044],[0,-59]],[[11997,20985],[0,-9]],[[11997,20976],[-73,71]],[[11924,21047],[-5,3]],[[11919,21050],[-9,17]],[[11910,21067],[-3,2]],[[11907,21069],[-19,30]],[[11888,21099],[-6,3]],[[11882,21102],[0,3]],[[11882,21105],[-14,3]],[[11868,21108],[-61,0]],[[11807,21108],[-16,3]],[[11791,21111],[-82,13],[-44,65],[-55,20]],[[11610,21209],[-12,2]],[[11598,21211],[-56,-2]],[[11542,21209],[-5,-3]],[[11537,21206],[-25,-11]],[[11512,21195],[-13,7]],[[11499,21202],[-73,23]],[[11426,21225],[-12,-3]],[[11414,21222],[-61,0]],[[11353,21222],[-17,-4]],[[11336,21218],[-13,20]],[[11323,21238],[-20,-4]],[[11303,21234],[-41,16]],[[11262,21250],[-14,4]],[[11248,21254],[-6,6]],[[11242,21260],[-12,3]],[[11230,21263],[0,3]],[[11230,21266],[-11,4]],[[11219,21270],[-43,29],[-79,19],[-91,-19]],[[11006,21299],[-14,3]],[[10992,21302],[7,68]],[[10999,21370],[12,3]],[[11011,21373],[-39,26]],[[10972,21399],[-25,-3]],[[10947,21396],[-34,-3]],[[10913,21393],[-7,6]],[[10906,21399],[-15,36]],[[10891,21435],[1,29]],[[10892,21464],[21,48]],[[10913,21512],[-7,-3]],[[10906,21509],[4,35]],[[10910,21544],[6,4]],[[10916,21548],[36,48]],[[10952,21596],[4,23]],[[10956,21619],[27,62],[0,48],[69,23]],[[11052,21752],[14,-4]],[[11066,21748],[0,-3]],[[11066,21745],[6,9]],[[11072,21754],[22,33],[57,-7]],[[11151,21780],[11,-3]],[[11162,21777],[22,-45],[35,13]],[[11219,21745],[18,-7]],[[11237,21738],[56,-41],[40,19]],[[11333,21716],[17,-3]],[[11350,21713],[4,6]],[[11354,21719],[16,3]],[[11370,21722],[19,19]],[[11389,21741],[4,7]],[[11393,21748],[32,-7]],[[11425,21741],[10,-3]],[[11435,21738],[21,-19]],[[11456,21719],[15,3]],[[11471,21722],[71,3],[68,-25]],[[11610,21700],[7,-3]],[[11617,21697],[64,-11],[81,36]],[[11762,21722],[6,3]],[[11768,21725],[39,10]],[[11807,21735],[6,3]],[[11813,21738],[25,16]],[[11838,21754],[11,4]],[[11849,21758],[3,10]],[[11852,21768],[6,3]],[[11858,21771],[10,16]],[[11868,21787],[14,3]],[[11882,21790],[115,23]],[[11997,21813],[31,6]],[[12028,21819],[80,29]],[[12108,21848],[3,4]],[[12111,21852],[63,51],[81,0],[72,29]],[[12327,21932],[10,3]],[[12337,21935],[79,36]],[[12416,21971],[7,3]],[[12423,21974],[5,4]],[[12428,21978],[50,41],[28,-3]],[[12506,22016],[3,-3]],[[12509,22013],[58,13]],[[12567,22026],[11,7]],[[12578,22033],[39,38]],[[12617,22071],[6,7]],[[12623,22078],[14,25]],[[12637,22103],[11,3]],[[12648,22106],[41,39]],[[12689,22145],[21,0]],[[12710,22145],[10,7]],[[12720,22152],[0,3]],[[12720,22155],[31,23]],[[12751,22178],[5,3]],[[12756,22181],[23,23]],[[12779,22204],[6,3]],[[12785,22207],[8,10]],[[12793,22217],[6,3]],[[12799,22220],[5,9]],[[12804,22229],[6,4]],[[12810,22233],[32,58]],[[12842,22291],[4,6]],[[12846,22297],[5,14]],[[12851,22311],[5,5]],[[12856,22316],[15,30]],[[12871,22346],[5,6]],[[12876,22352],[48,101],[31,119]],[[12955,22572],[5,6]],[[12960,22578],[25,91]],[[12985,22669],[5,10]],[[12990,22679],[34,187]],[[13024,22866],[3,10]],[[13027,22876],[5,32]],[[13032,22908],[5,19]],[[13037,22927],[0,17]],[[13037,22944],[4,19]],[[13041,22963],[5,55]],[[13046,23018],[5,16]],[[13051,23034],[6,68],[-6,129]],[[13051,23231],[-5,3]],[[13046,23234],[-5,26]],[[13041,23260],[-9,3]],[[13032,23263],[-5,10]],[[13027,23273],[-9,4]],[[13018,23277],[-58,84]],[[12960,23361],[-5,3]],[[12955,23364],[-99,0]],[[12856,23364],[-7,-3]],[[12849,23361],[0,3]],[[12849,23364],[-7,3]],[[12842,23367],[-27,74]],[[12815,23441],[-14,-3]],[[12801,23438],[0,10]],[[12801,23448],[8,3]],[[12809,23451],[0,22]],[[12809,23473],[-5,3]],[[12804,23476],[-5,20]],[[12799,23496],[-4,19]],[[12795,23515],[-5,10]],[[12790,23525],[-9,3]],[[12781,23528],[59,65],[2,97]],[[12842,23690],[4,3]],[[12846,23693],[0,16]],[[12846,23709],[-4,10]],[[12842,23719],[29,45]],[[12871,23764],[5,4]],[[12876,23768],[3,35]],[[12879,23803],[-8,3]],[[12871,23806],[61,-22],[53,22]],[[12985,23806],[5,3]],[[12990,23809],[-5,49]],[[12985,23858],[5,-3]],[[12990,23855],[0,-3]],[[12990,23852],[6,-4]],[[12996,23848],[-11,78]],[[12985,23926],[5,6]],[[12990,23932],[37,133]],[[13027,24065],[-6,3]],[[13021,24068],[-14,49],[23,28]],[[13030,24145],[16,4]],[[13046,24149],[0,6]],[[13046,24155],[84,-16]],[[13130,24139],[139,-9],[312,-4]],[[13581,24126],[170,10],[97,23],[145,76],[131,56],[64,38]],[[14188,24329],[94,24],[179,72],[69,49]],[[14530,24474],[175,151]],[[14705,24625],[143,84]],[[14848,24709],[72,87],[39,145]],[[14959,24941],[30,114],[56,85],[83,55],[65,16],[139,8],[428,-8],[641,0],[178,6],[148,16]],[[16727,25233],[150,-104],[111,-46],[95,-10],[159,19]],[[17242,25092],[175,84]],[[17417,25176],[84,22],[119,12]],[[17620,25210],[220,4]],[[17840,25214],[81,8],[108,31]],[[18029,25253],[150,67],[204,24],[20,91]],[[18403,25435],[52,108]],[[18455,25543],[51,72]],[[18506,25615],[122,-137],[198,2]],[[18826,25480],[128,18],[175,86],[176,73]],[[19305,25657],[187,67],[99,19],[204,8]],[[19795,25751],[368,-10],[189,7]],[[20352,25748],[128,-10],[89,-26],[81,-56]],[[20650,25656],[149,-33],[67,-6]],[[20866,25617],[100,-1],[132,18]],[[21098,25634],[120,44]],[[21218,25678],[47,44]],[[21265,25722],[163,57],[143,71]],[[21571,25850],[229,54],[167,53]],[[21967,25957],[97,37],[191,43],[176,83],[222,62],[142,79],[104,50],[117,72],[127,64],[142,85],[106,46]],[[23391,26578],[173,87]],[[23564,26665],[161,22]],[[23725,26687],[474,19]],[[24199,26706],[247,16]],[[24446,26722],[56,1]],[[24502,26723],[64,13],[111,-43]],[[24677,26693],[101,-59],[86,-78]],[[24864,26556],[-122,-136],[25,-72],[31,-40]],[[24798,26308],[130,-84],[126,-66]],[[25054,26158],[120,-21],[71,-26],[221,-120],[92,-74],[86,-89],[295,-327]],[[7608,40559],[6,-68],[-30,-32],[3,-46]],[[7587,40413],[5,-5]],[[7592,40408],[22,-95],[-42,10]],[[7572,40323],[-10,3]],[[7562,40326],[-20,0]],[[7542,40326],[-6,-3]],[[7536,40323],[-25,-58]],[[7511,40265],[-5,-3]],[[7506,40262],[-69,-13]],[[7437,40249],[-9,3]],[[7428,40252],[-6,45]],[[7422,40297],[14,4]],[[7436,40301],[9,19]],[[7445,40320],[8,6]],[[7453,40326],[28,14],[17,61],[44,26],[2,38]],[[7544,40465],[4,7]],[[7548,40472],[10,19]],[[7558,40491],[4,7]],[[7562,40498],[-14,22]],[[7548,40520],[-4,7]],[[7544,40527],[0,6]],[[7544,40533],[-8,3]],[[7536,40536],[0,7]],[[7536,40543],[31,7]],[[7567,40550],[16,12]],[[7583,40562],[25,-3]],[[7130,40869],[5,-6]],[[7135,40863],[4,-19]],[[7139,40844],[5,-4]],[[7144,40840],[2,-26]],[[7146,40814],[-16,-6]],[[7130,40808],[-45,-16],[-36,35]],[[7049,40827],[5,4]],[[7054,40831],[0,6]],[[7054,40837],[0,10]],[[7054,40847],[0,25]],[[7054,40872],[-5,7]],[[7049,40879],[0,3]],[[7049,40882],[5,6]],[[7054,40888],[76,-19]],[[7675,41005],[7,-6]],[[7682,40999],[18,-20]],[[7700,40979],[4,-9]],[[7704,40970],[5,-10]],[[7709,40960],[5,-7]],[[7714,40953],[3,-38]],[[7717,40915],[-10,-7]],[[7707,40908],[-93,0],[-42,35]],[[7572,40943],[0,7]],[[7572,40950],[15,10]],[[7587,40960],[6,3]],[[7593,40963],[4,7]],[[7597,40970],[4,2]],[[7601,40972],[25,46],[49,-13]],[[7437,41034],[-1,-71]],[[7436,40963],[-8,-7]],[[7428,40956],[0,-6]],[[7428,40950],[-3,-3]],[[7425,40947],[-3,-7]],[[7422,40940],[-6,-6]],[[7416,40934],[-16,-23]],[[7400,40911],[-9,10]],[[7391,40921],[1,13]],[[7392,40934],[5,3]],[[7397,40937],[19,81]],[[7416,41018],[0,6]],[[7416,41024],[6,19]],[[7422,41043],[15,-9]],[[8383,41095],[6,-2]],[[8389,41093],[0,-4]],[[8389,41089],[14,-13]],[[8403,41076],[0,-13]],[[8403,41063],[-4,-3]],[[8399,41060],[-2,-36],[-50,-13]],[[8347,41011],[-15,4]],[[8332,41015],[-25,16]],[[8307,41031],[-8,3]],[[8299,41034],[28,39]],[[8327,41073],[17,3]],[[8344,41076],[0,3]],[[8344,41079],[16,3]],[[8360,41082],[23,13]],[[7573,41105],[39,-16],[10,-51]],[[7622,41038],[-41,-4]],[[7581,41034],[-3,7]],[[7578,41041],[-14,-3]],[[7564,41038],[-13,0]],[[7551,41038],[-3,3]],[[7548,41041],[-53,-10],[-3,58],[44,4]],[[7536,41093],[3,-4]],[[7539,41089],[19,9]],[[7558,41098],[6,4]],[[7564,41102],[3,7]],[[7567,41109],[6,-4]],[[8202,41153],[-1,-12]],[[8201,41141],[-5,-4]],[[8196,41137],[0,-3]],[[8196,41134],[-16,-3]],[[8180,41131],[-34,-6]],[[8146,41125],[-9,3]],[[8137,41128],[0,6]],[[8137,41134],[6,3]],[[8143,41137],[43,20]],[[8186,41157],[16,-4]],[[8403,41315],[-4,-3]],[[8399,41312],[-11,-4]],[[8388,41308],[-6,4]],[[8382,41312],[-5,45]],[[8377,41357],[20,3]],[[8397,41360],[6,-45]],[[8644,41441],[6,-3]],[[8650,41438],[0,-16]],[[8650,41422],[-5,-4]],[[8645,41418],[-25,0]],[[8620,41418],[0,13]],[[8620,41431],[24,10]],[[8981,41444],[8,-3]],[[8989,41441],[-2,-39]],[[8987,41402],[-5,-3]],[[8982,41399],[-51,16]],[[8931,41415],[12,7]],[[8943,41422],[38,22]],[[8494,41474],[5,-7]],[[8499,41467],[4,-36]],[[8503,41431],[5,-9]],[[8508,41422],[0,-4]],[[8508,41418],[-5,-9]],[[8503,41409],[-4,-33]],[[8499,41376],[-25,-2]],[[8474,41374],[-27,12],[0,65],[47,23]],[[7386,41502],[5,-3]],[[7391,41499],[1,-6]],[[7392,41493],[5,-3]],[[7397,41490],[5,-39]],[[7402,41451],[-11,-4]],[[7391,41447],[-5,55]],[[7851,41622],[0,-13]],[[7851,41609],[-3,-9]],[[7848,41600],[-5,-4]],[[7843,41596],[74,-29]],[[7917,41567],[4,-3]],[[7921,41564],[10,-16]],[[7931,41548],[7,-3]],[[7938,41545],[8,6]],[[7946,41551],[24,3]],[[7970,41554],[11,7]],[[7981,41561],[4,-4]],[[7985,41557],[0,-6]],[[7985,41551],[0,-10]],[[7985,41541],[-15,-19]],[[7970,41522],[-4,-16]],[[7966,41506],[80,7]],[[8046,41513],[5,2]],[[8051,41515],[47,30]],[[8098,41545],[4,3]],[[8102,41548],[21,13]],[[8123,41561],[24,3]],[[8147,41564],[15,-19]],[[8162,41545],[-5,-4]],[[8157,41541],[-22,-28]],[[8135,41513],[8,-4]],[[8143,41509],[-33,-107]],[[8110,41402],[-25,-3]],[[8085,41399],[-80,10]],[[8005,41409],[-26,-3]],[[7979,41406],[-48,16]],[[7931,41422],[-10,3]],[[7921,41425],[-12,10]],[[7909,41435],[-14,-4]],[[7895,41431],[-71,20]],[[7824,41451],[-6,3]],[[7818,41454],[-33,-3]],[[7785,41451],[0,-16]],[[7785,41435],[5,-10]],[[7790,41425],[5,-7]],[[7795,41418],[3,-80],[22,-30]],[[7820,41308],[4,-3]],[[7824,41305],[19,-22]],[[7843,41283],[5,-3]],[[7848,41280],[23,-88],[33,0],[56,62]],[[7960,41254],[21,3]],[[7981,41257],[54,3]],[[8035,41260],[16,-3]],[[8051,41257],[0,-13]],[[8051,41244],[0,-3]],[[8051,41241],[20,-42]],[[8071,41199],[-5,-3]],[[8066,41196],[-42,-39],[49,-48],[25,-88]],[[8098,41021],[4,-6]],[[8102,41015],[19,-20]],[[8121,40995],[11,-9]],[[8132,40986],[84,13]],[[8216,40999],[10,3]],[[8226,41002],[73,16]],[[8299,41018],[5,-3]],[[8304,41015],[0,-4]],[[8304,41011],[-7,-12]],[[8297,40999],[2,-49]],[[8299,40950],[5,-3]],[[8304,40947],[34,-48],[-81,-7]],[[8257,40892],[-10,-4]],[[8247,40888],[-1,-6]],[[8246,40882],[-19,-3]],[[8227,40879],[-9,3]],[[8218,40882],[-16,-3]],[[8202,40879],[0,3]],[[8202,40882],[-9,-3]],[[8193,40879],[0,-3]],[[8193,40876],[-7,-4]],[[8186,40872],[-74,-3]],[[8112,40869],[-16,3]],[[8096,40872],[-41,10],[-28,-55],[-76,-13]],[[7951,40814],[-61,-3]],[[7890,40811],[-31,3]],[[7859,40814],[-11,3]],[[7848,40817],[-45,14]],[[7803,40831],[-8,9]],[[7795,40840],[0,36]],[[7795,40876],[-5,3]],[[7790,40879],[-5,9]],[[7785,40888],[-3,7]],[[7782,40895],[-17,16]],[[7765,40911],[-5,4]],[[7760,40915],[-46,74]],[[7714,40989],[0,6]],[[7714,40995],[23,107]],[[7737,41102],[-3,0]],[[7734,41102],[3,19]],[[7737,41121],[3,0]],[[7740,41121],[-36,23]],[[7704,41144],[-4,-3]],[[7700,41141],[-11,48],[45,10],[48,-23]],[[7782,41176],[17,4]],[[7799,41180],[-14,64]],[[7785,41244],[-3,7]],[[7782,41251],[-12,25]],[[7770,41276],[-17,4]],[[7753,41280],[0,6]],[[7753,41286],[-5,6]],[[7748,41292],[-30,49],[30,26]],[[7748,41367],[5,3]],[[7753,41370],[0,23]],[[7753,41393],[-5,6]],[[7748,41399],[0,23]],[[7748,41422],[5,3]],[[7753,41425],[0,10]],[[7753,41435],[-8,22]],[[7745,41457],[-41,33]],[[7704,41490],[-4,3]],[[7700,41493],[-99,25]],[[7601,41518],[0,11]],[[7601,41529],[61,60]],[[7662,41589],[5,4]],[[7667,41593],[42,19]],[[7709,41612],[8,4]],[[7717,41616],[68,12],[66,-6]],[[7592,41641],[11,-3]],[[7603,41638],[-2,-65]],[[7601,41573],[-4,-3]],[[7597,41570],[-24,-45]],[[7573,41525],[-6,-3]],[[7567,41522],[0,-16]],[[7567,41506],[5,-7]],[[7572,41499],[0,-32]],[[7572,41467],[0,-13]],[[7572,41454],[-24,-26]],[[7548,41428],[-4,-3]],[[7544,41425],[9,-94]],[[7553,41331],[-11,-3]],[[7542,41328],[-3,-6]],[[7539,41322],[-8,-3]],[[7531,41319],[-20,5]],[[7511,41324],[-5,4]],[[7506,41328],[-25,39],[30,45]],[[7511,41412],[-5,6]],[[7506,41418],[-69,29],[-17,33]],[[7420,41480],[0,22]],[[7420,41502],[5,7]],[[7425,41509],[3,4]],[[7428,41513],[0,16]],[[7428,41529],[-3,3]],[[7425,41532],[-3,6]],[[7422,41538],[-6,7]],[[7416,41545],[0,32]],[[7416,41577],[4,3]],[[7420,41580],[0,4]],[[7420,41584],[16,-4]],[[7436,41580],[9,16]],[[7445,41596],[13,-3]],[[7458,41593],[0,-4]],[[7458,41589],[0,-3]],[[7458,41586],[15,-51]],[[7473,41535],[14,-3]],[[7487,41532],[52,109],[53,0]],[[8524,41800],[-50,-26]],[[8474,41774],[4,3]],[[8478,41777],[35,19]],[[8513,41796],[11,4]],[[17278,53011],[-8,-3]],[[17270,53008],[-8,-6]],[[17262,53002],[-20,-3]],[[17242,52999],[-1,38]],[[17241,53037],[6,3]],[[17247,53040],[3,7]],[[17250,53047],[3,3]],[[17253,53050],[25,-39]],[[19769,53907],[4,-7]],[[19773,53900],[0,-3]],[[19773,53897],[-7,-3]],[[19766,53894],[-50,19]],[[19716,53913],[-8,3]],[[19708,53916],[33,46],[28,-55]],[[19549,54049],[23,-46]],[[19572,54003],[9,3]],[[19581,54006],[43,-9]],[[19624,53997],[10,-3]],[[19634,53994],[21,-62]],[[19655,53932],[4,-3]],[[19659,53929],[-26,10]],[[19633,53939],[-14,-4]],[[19619,53935],[-27,23]],[[19592,53958],[-11,4]],[[19581,53962],[0,-4]],[[19581,53958],[-14,4]],[[19567,53962],[-11,5]],[[19556,53967],[-17,4]],[[19539,53971],[-22,19]],[[19517,53990],[0,10]],[[19517,54000],[25,45]],[[19542,54045],[7,4]],[[16281,54042],[19,3]],[[16300,54045],[4,0]],[[16304,54045],[0,-3]],[[16304,54042],[-9,-20]],[[16295,54022],[-5,-3]],[[16290,54019],[0,-13]],[[16290,54006],[5,-3]],[[16295,54003],[0,-19]],[[16295,53984],[-5,-6]],[[16290,53978],[-1,-16]],[[16289,53962],[-5,-4]],[[16284,53958],[-11,-68]],[[16273,53890],[6,-3]],[[16279,53887],[5,-10]],[[16284,53877],[5,-6]],[[16289,53871],[1,-10]],[[16290,53861],[5,-3]],[[16295,53858],[0,-3]],[[16295,53855],[-5,-4]],[[16290,53851],[-6,-6]],[[16284,53845],[-19,-3]],[[16265,53842],[-62,3],[-5,45]],[[16198,53890],[-4,4]],[[16194,53894],[-16,19]],[[16178,53913],[-9,3]],[[16169,53916],[0,3]],[[16169,53919],[-7,4]],[[16162,53923],[0,9]],[[16162,53932],[5,7]],[[16167,53939],[27,23]],[[16194,53962],[4,9]],[[16198,53971],[16,42]],[[16214,54013],[4,13]],[[16218,54026],[35,62]],[[16253,54088],[6,2]],[[16259,54090],[22,-48]],[[19864,54107],[-5,-3]],[[19859,54104],[-4,-20]],[[19855,54084],[-10,-3]],[[19845,54081],[-40,3],[-7,36],[66,-13]],[[15473,54123],[4,-3]],[[15477,54120],[0,-23]],[[15477,54097],[-4,-3]],[[15473,54094],[-8,-13]],[[15465,54081],[-6,-3]],[[15459,54078],[-5,16]],[[15454,54094],[-5,3]],[[15449,54097],[-5,23]],[[15444,54120],[21,3]],[[15465,54123],[8,0]],[[15913,54556],[-5,-3]],[[15908,54553],[34,-39]],[[15942,54514],[-4,-6]],[[15938,54508],[-2,-49]],[[15936,54459],[6,-3]],[[15942,54456],[0,-3]],[[15942,54453],[11,-4]],[[15953,54449],[75,-16]],[[16028,54433],[5,4]],[[16033,54437],[34,35]],[[16067,54472],[9,-3]],[[16076,54469],[4,-16]],[[16080,54453],[4,-4]],[[16084,54449],[39,-45]],[[16123,54404],[14,3]],[[16137,54407],[25,0]],[[16162,54407],[5,-3]],[[16167,54404],[0,-22]],[[16167,54382],[-5,-7]],[[16162,54375],[-25,-65]],[[16137,54310],[-7,-3]],[[16130,54307],[-16,-13]],[[16114,54294],[-5,-6]],[[16109,54288],[-22,-23]],[[16087,54265],[-7,-6]],[[16080,54259],[-4,-13]],[[16076,54246],[-4,-3]],[[16072,54243],[0,-7]],[[16072,54236],[-5,-4]],[[16067,54232],[-33,-41]],[[16034,54191],[-6,-7]],[[16028,54184],[-11,-26]],[[16017,54158],[-4,-2]],[[16013,54156],[0,-11]],[[16013,54145],[4,-6]],[[16017,54139],[2,-26]],[[16019,54113],[8,-3]],[[16027,54110],[1,-6]],[[16028,54104],[5,-4]],[[16033,54100],[33,-16]],[[16066,54084],[6,-3]],[[16072,54081],[8,-3]],[[16080,54078],[-2,-17]],[[16078,54061],[-20,-3]],[[16058,54058],[-2,-6]],[[16056,54052],[-4,-3]],[[16052,54049],[0,-16]],[[16052,54033],[4,-4]],[[16056,54029],[2,-10]],[[16058,54019],[14,-2]],[[16072,54017],[37,-30]],[[16109,53987],[8,3]],[[16117,53990],[20,-19]],[[16137,53971],[-4,-6]],[[16133,53965],[0,-26]],[[16133,53939],[6,-4]],[[16139,53935],[14,-12]],[[16153,53923],[-30,0]],[[16123,53923],[-39,39]],[[16084,53962],[-12,3]],[[16072,53965],[0,-3]],[[16072,53962],[-5,-4]],[[16067,53958],[-3,-7]],[[16064,53951],[-12,-3]],[[16052,53948],[-18,26]],[[16034,53974],[-7,4]],[[16027,53978],[-80,51]],[[15947,54029],[-11,-3]],[[15936,54026],[-81,-42]],[[15855,53984],[-14,3]],[[15841,53987],[-34,30]],[[15807,54017],[-18,2]],[[15789,54019],[-67,-25]],[[15722,53994],[-8,3]],[[15714,53997],[-28,20]],[[15686,54017],[-6,2]],[[15680,54019],[-19,10]],[[15661,54029],[-11,4]],[[15650,54033],[-4,9]],[[15646,54042],[-25,3]],[[15621,54045],[-38,23],[8,55]],[[15591,54123],[5,3]],[[15596,54126],[0,16]],[[15596,54142],[-5,14]],[[15591,54156],[8,35]],[[15599,54191],[6,3]],[[15605,54194],[0,61]],[[15605,54255],[0,16]],[[15605,54271],[16,-3]],[[15621,54268],[15,-3]],[[15636,54265],[13,-10]],[[15649,54255],[12,-3]],[[15661,54252],[99,-23],[42,23]],[[15802,54252],[5,3]],[[15807,54255],[9,78],[-16,22]],[[15800,54355],[-4,7]],[[15796,54362],[-25,84]],[[15771,54446],[-5,3]],[[15766,54449],[-19,113]],[[15747,54562],[-3,10]],[[15744,54572],[0,9]],[[15744,54581],[8,4]],[[15752,54585],[12,-6]],[[15764,54579],[8,-4]],[[15772,54575],[24,-10]],[[15796,54565],[6,-6]],[[15802,54559],[3,6]],[[15805,54565],[2,4]],[[15807,54569],[4,10]],[[15811,54579],[27,-4]],[[15838,54575],[0,-3]],[[15838,54572],[9,-3]],[[15847,54569],[25,12]],[[15872,54581],[9,7]],[[15881,54588],[2,10]],[[15883,54598],[8,3]],[[15891,54601],[22,-45]],[[16641,54779],[5,-4]],[[16646,54775],[-5,4]],[[15624,54798],[5,-3]],[[15629,54795],[11,-36]],[[15640,54759],[-10,-3]],[[15630,54756],[-6,-58]],[[15624,54698],[5,-7]],[[15629,54691],[1,-25]],[[15630,54666],[-6,-7]],[[15624,54659],[-5,-19]],[[15619,54640],[10,-4]],[[15629,54636],[0,-12]],[[15629,54624],[-14,-7]],[[15615,54617],[-7,-9]],[[15608,54608],[-7,-4]],[[15601,54604],[0,-48]],[[15601,54556],[4,-3]],[[15605,54553],[16,-7]],[[15621,54546],[8,3]],[[15629,54549],[6,-19]],[[15635,54530],[-5,-6]],[[15630,54524],[-1,-7]],[[15629,54517],[-8,-3]],[[15621,54514],[-16,-91]],[[15605,54423],[-4,-3]],[[15601,54420],[-25,10]],[[15576,54430],[-7,3]],[[15569,54433],[-20,6]],[[15549,54439],[-11,-2]],[[15538,54437],[-8,12]],[[15530,54449],[-6,4]],[[15524,54453],[41,93],[-19,78],[23,67]],[[15569,54691],[7,4]],[[15576,54695],[20,9]],[[15596,54704],[9,7]],[[15605,54711],[-4,87]],[[15601,54798],[4,4]],[[15605,54802],[19,-4]],[[17000,54779],[3,-10]],[[17003,54769],[32,-32]],[[17035,54737],[4,6]],[[17039,54743],[0,3]],[[17039,54746],[5,4]],[[17044,54750],[25,6]],[[17069,54756],[5,3]],[[17074,54759],[0,4]],[[17074,54763],[7,-7]],[[17081,54756],[0,-3]],[[17081,54753],[0,-10]],[[17081,54743],[15,-19]],[[17096,54724],[10,3]],[[17106,54727],[49,7]],[[17155,54734],[9,12]],[[17164,54746],[17,39]],[[17181,54785],[7,4]],[[17188,54789],[0,-4]],[[17188,54785],[7,-6]],[[17195,54779],[7,-20]],[[17202,54759],[7,-3]],[[17209,54756],[2,-22]],[[17211,54734],[0,-16]],[[17211,54718],[0,-4]],[[17211,54714],[-6,-6]],[[17205,54708],[-17,-26]],[[17188,54682],[-2,-3]],[[17186,54679],[5,-16]],[[17191,54663],[0,-30]],[[17191,54633],[-11,-22]],[[17180,54611],[11,-3]],[[17191,54608],[9,-20]],[[17200,54588],[11,-3]],[[17211,54585],[0,-4]],[[17211,54581],[5,-6]],[[17216,54575],[76,-29],[14,33]],[[17306,54579],[-5,2]],[[17301,54581],[0,7]],[[17301,54588],[7,4]],[[17308,54592],[4,12]],[[17312,54604],[8,4]],[[17320,54608],[0,6]],[[17320,54614],[-4,6]],[[17316,54620],[-4,55]],[[17312,54675],[10,4]],[[17322,54679],[1,12]],[[17323,54691],[5,4]],[[17328,54695],[16,-10]],[[17344,54685],[14,-3]],[[17358,54682],[4,-19]],[[17362,54663],[5,-4]],[[17367,54659],[59,-26],[18,39]],[[17444,54672],[15,3]],[[17459,54675],[34,-9]],[[17493,54666],[4,6]],[[17497,54672],[51,0]],[[17548,54672],[9,-3]],[[17557,54669],[29,-26]],[[17586,54643],[12,-3]],[[17598,54640],[11,42]],[[17609,54682],[14,0]],[[17623,54682],[5,-74],[25,-13]],[[17653,54595],[53,3]],[[17706,54598],[20,68]],[[17726,54666],[19,3]],[[17745,54669],[14,-17]],[[17759,54652],[11,-2]],[[17770,54650],[9,-14]],[[17779,54636],[8,4]],[[17787,54640],[3,10]],[[17790,54650],[9,2]],[[17799,54652],[56,14]],[[17855,54666],[7,3]],[[17862,54669],[25,6]],[[17887,54675],[11,-3]],[[17898,54672],[54,7],[28,-55]],[[17980,54624],[11,-4]],[[17991,54620],[22,20]],[[18013,54640],[13,3]],[[18026,54643],[32,-7]],[[18058,54636],[10,-3]],[[18068,54633],[9,-16]],[[18077,54617],[6,3]],[[18083,54620],[13,7]],[[18096,54627],[8,-3]],[[18104,54624],[20,9]],[[18124,54633],[3,-9]],[[18127,54624],[0,-26]],[[18127,54598],[5,-6]],[[18132,54592],[17,3]],[[18149,54595],[5,3]],[[18154,54598],[18,-33],[58,20]],[[18230,54585],[17,-4]],[[18247,54581],[8,-2]],[[18255,54579],[12,-4]],[[18267,54575],[2,-6]],[[18269,54569],[11,-4]],[[18280,54565],[75,14],[19,-20]],[[18374,54559],[17,3]],[[18391,54562],[4,-13]],[[18395,54549],[8,-6]],[[18403,54543],[0,3]],[[18403,54546],[3,3]],[[18406,54549],[22,-29],[66,-12]],[[18494,54508],[33,-7]],[[18527,54501],[15,-36]],[[18542,54465],[39,0]],[[18581,54465],[52,13]],[[18633,54478],[9,3]],[[18642,54481],[16,-22]],[[18658,54459],[9,3]],[[18667,54462],[0,-3]],[[18667,54459],[6,-6]],[[18673,54453],[3,-30],[91,-19],[11,-26]],[[18778,54378],[0,10]],[[18778,54388],[23,13]],[[18801,54401],[6,-3]],[[18807,54398],[47,-20]],[[18854,54378],[21,-3]],[[18875,54375],[17,-16]],[[18892,54359],[6,-4]],[[18898,54355],[70,-6]],[[18968,54349],[11,-3]],[[18979,54346],[0,-3]],[[18979,54343],[11,-4]],[[18990,54339],[34,-3]],[[19024,54336],[14,0]],[[19038,54336],[0,3]],[[19038,54339],[27,-3]],[[19065,54336],[25,3]],[[19090,54339],[0,-3]],[[19090,54336],[64,-3]],[[19154,54333],[17,-6]],[[19171,54327],[34,-20]],[[19205,54307],[5,-3]],[[19210,54304],[61,-55]],[[19271,54249],[5,-3]],[[19276,54246],[1,-49]],[[19277,54197],[-6,-9]],[[19271,54188],[-25,-32]],[[19246,54156],[-5,-4]],[[19241,54152],[0,-3]],[[19241,54149],[0,-4]],[[19241,54145],[0,-3]],[[19241,54142],[8,-3]],[[19249,54139],[-3,-6]],[[19246,54133],[-9,-4]],[[19237,54129],[-7,-22]],[[19230,54107],[-3,-7]],[[19227,54100],[0,-10]],[[19227,54090],[8,-2]],[[19235,54088],[-3,-33]],[[19232,54055],[-5,-3]],[[19227,54052],[-33,-52],[16,-35]],[[19210,53965],[-5,0]],[[19205,53965],[-1,-33],[-78,-61]],[[19126,53871],[-2,-3]],[[19124,53868],[-4,-13]],[[19120,53855],[-10,-4]],[[19110,53851],[-5,0]],[[19105,53851],[-10,-3]],[[19095,53848],[-5,-9]],[[19090,53839],[-5,-4]],[[19085,53835],[-25,-32]],[[19060,53803],[-4,-13]],[[19056,53790],[-27,-16]],[[19029,53774],[-5,3]],[[19024,53777],[-39,-9]],[[18985,53768],[-3,-7]],[[18982,53761],[-33,-32]],[[18949,53729],[-6,-7]],[[18943,53722],[-48,-42]],[[18895,53680],[-3,4]],[[18892,53684],[-63,-26]],[[18829,53658],[-6,-4]],[[18823,53654],[-41,-52]],[[18782,53602],[-6,-12]],[[18776,53590],[-103,12]],[[18673,53602],[-8,-3]],[[18665,53599],[-3,-9]],[[18662,53590],[-6,-4]],[[18656,53586],[-16,-9]],[[18640,53577],[-4,3]],[[18636,53580],[-41,-49]],[[18595,53531],[-3,-9]],[[18592,53522],[-11,-29]],[[18581,53493],[-5,-6]],[[18576,53487],[-74,-23]],[[18502,53464],[-8,-4]],[[18494,53460],[-25,-12]],[[18469,53448],[-5,6]],[[18464,53454],[-45,-3]],[[18419,53451],[-8,3]],[[18411,53454],[0,-3]],[[18411,53451],[-11,-3]],[[18400,53448],[0,-4]],[[18400,53444],[-5,-3]],[[18395,53441],[-51,-45],[-9,-64]],[[18335,53332],[-5,3]],[[18330,53335],[-42,-7]],[[18288,53328],[-5,4]],[[18283,53332],[-3,9]],[[18280,53341],[-16,0]],[[18264,53341],[-1,-4]],[[18263,53337],[-2,-2]],[[18261,53335],[-19,-33]],[[18242,53302],[-3,-3]],[[18239,53299],[-78,-131]],[[18161,53168],[18,-60]],[[18179,53108],[4,-3]],[[18183,53105],[27,-32],[48,35]],[[18258,53108],[16,7]],[[18274,53115],[9,7]],[[18283,53122],[5,2]],[[18288,53124],[12,-6]],[[18300,53118],[-11,-3]],[[18289,53115],[0,-4]],[[18289,53111],[-6,-3]],[[18283,53108],[38,-61]],[[18321,53047],[4,-3]],[[18325,53044],[5,-23]],[[18330,53021],[8,-3]],[[18338,53018],[42,-74]],[[18380,52944],[6,-7]],[[18386,52937],[9,-20]],[[18395,52917],[5,-3]],[[18400,52914],[3,-6]],[[18403,52908],[3,-3]],[[18406,52905],[5,-7]],[[18411,52898],[5,-3]],[[18416,52895],[18,-10]],[[18434,52885],[5,-3]],[[18439,52882],[67,-9]],[[18506,52873],[8,-4]],[[18514,52869],[61,-26]],[[18575,52843],[6,-25]],[[18581,52818],[77,-26]],[[18658,52792],[4,3]],[[18662,52795],[0,-3]],[[18662,52792],[10,-3]],[[18672,52789],[11,-17]],[[18683,52772],[9,3]],[[18692,52775],[45,4]],[[18737,52779],[6,6]],[[18743,52785],[35,61],[93,30],[13,25]],[[18884,52901],[3,4]],[[18887,52905],[2,12]],[[18889,52917],[9,4]],[[18898,52921],[106,19]],[[19004,52940],[5,0]],[[19009,52940],[36,7]],[[19045,52947],[6,3]],[[19051,52950],[33,26]],[[19084,52976],[42,-3]],[[19126,52973],[33,19]],[[19159,52992],[62,7]],[[19221,52999],[0,-4]],[[19221,52995],[16,-3]],[[19237,52992],[34,0]],[[19271,52992],[6,-3]],[[19277,52989],[8,19]],[[19285,53008],[12,3]],[[19297,53011],[18,4]],[[19315,53015],[10,-4]],[[19325,53011],[16,-9]],[[19341,53002],[6,3]],[[19347,53005],[0,13]],[[19347,53018],[8,10]],[[19355,53028],[52,-10],[29,29]],[[19436,53047],[21,6]],[[19457,53053],[17,36]],[[19474,53089],[8,3]],[[19482,53092],[29,16]],[[19511,53108],[8,-3]],[[19519,53105],[55,-26],[39,20]],[[19613,53099],[21,-4]],[[19634,53095],[19,-3]],[[19653,53092],[10,3]],[[19663,53095],[1,16]],[[19664,53111],[11,4]],[[19675,53115],[48,29],[133,26]],[[19856,53170],[9,3]],[[19865,53173],[57,20]],[[19922,53193],[37,0]],[[19959,53193],[11,-17]],[[19970,53176],[9,-3]],[[19979,53173],[22,0]],[[20001,53173],[5,6]],[[20006,53179],[75,16],[81,36]],[[20162,53231],[6,3]],[[20168,53234],[3,7]],[[20171,53241],[7,3]],[[20178,53244],[39,16]],[[20217,53260],[15,-3]],[[20232,53257],[38,7]],[[20270,53264],[14,2]],[[20284,53266],[129,11]],[[20413,53277],[27,3]],[[20440,53280],[90,16],[231,0]],[[20761,53296],[-64,-98]],[[20697,53198],[-136,-188],[-32,-56]],[[20529,52954],[-85,-168]],[[20444,52786],[-192,-232]],[[20252,52554],[-74,-110]],[[20178,52444],[-38,-135]],[[20140,52309],[-5,-71],[0,-366]],[[20135,51872],[-7,-144],[-21,-103],[-56,-133]],[[20051,51492],[-31,-130]],[[20020,51362],[-9,-257],[0,-1118]],[[20011,49987],[74,-49]],[[20085,49938],[29,-57],[17,-104],[1,-196]],[[20132,49581],[103,-63]],[[20235,49518],[141,-208]],[[20376,49310],[111,-91],[145,-84],[90,-109],[117,-270],[52,-247],[73,-157],[44,-116],[73,-158],[44,-217],[19,-57],[96,-216],[63,-110],[95,-129],[56,-115],[19,-92]],[[21473,47142],[184,-12],[98,-45],[66,-58],[164,-174],[64,-60]],[[22049,46793],[126,-74]],[[22175,46719],[89,-61],[128,-117],[89,-61]],[[22481,46480],[128,-74]],[[22609,46406],[64,-59],[164,-174],[64,-59],[68,-43],[280,-126]],[[23249,45945],[98,-13],[271,-14],[164,-30],[145,-72],[114,-25],[200,-3],[100,11]],[[24341,45799],[120,27],[31,-131]],[[24492,45695],[71,-199],[53,-77],[165,-194],[87,-129],[80,-167]],[[24948,44929],[180,-222]],[[25128,44707],[106,-155],[60,-136]],[[25294,44416],[74,-85]],[[25368,44331],[214,-123],[76,-26]],[[25658,44182],[83,7]],[[25741,44189],[139,73],[114,26],[89,6],[184,-3],[142,-12]],[[26409,44279],[131,-94],[145,-69],[162,-230]],[[26847,43886],[-101,-144],[-49,-114]],[[26697,43628],[-62,-129],[-19,-59]],[[26616,43440],[-11,-97],[17,-161],[40,-103]],[[26662,43079],[-135,-232],[-32,-85],[-16,-130],[-3,-301],[-25,-193],[-75,-191]],[[26376,41947],[-33,-288],[-14,-62]],[[26329,41597],[-134,-300],[-53,-77],[-166,-194],[-87,-129],[-48,-113]],[[25841,40784],[-111,-160]],[[25730,40624],[-153,-173],[-114,-118],[-72,-61],[-129,-67],[-141,-86],[-104,-47],[-142,-80],[-195,-50],[-100,-53],[-191,-138]],[[24389,39751],[5,-229],[2,-584]],[[24396,38938],[-183,144],[-70,43],[-86,20],[-87,-3],[-82,-27],[-117,-71],[-103,-50],[-138,-90],[-105,-48],[-140,-88],[-103,-49],[-83,-58]],[[23099,38661],[-108,-46],[-100,-62],[-87,-79],[-206,-20],[-173,-82]],[[22425,38372],[-166,-44]],[[22259,38328],[-54,-18]],[[22205,38310],[-144,-82],[-103,-48]],[[21958,38180],[-143,-81],[-196,-51],[-171,-84],[-195,-50],[-172,-85],[-195,-50],[-173,-83],[-194,-53],[-73,-40]],[[20446,37603],[-87,-74],[-113,27]],[[20246,37556],[-267,145]],[[19979,37701],[-57,63]],[[19922,37764],[-38,80],[-53,241],[-62,131],[-42,115],[-74,159]],[[19653,38490],[-36,185]],[[19617,38675],[-37,116]],[[19580,38791],[-83,190]],[[19497,38981],[-28,56]],[[19469,39037],[-115,154],[-261,291]],[[19093,39482],[-111,115],[-98,73],[-169,50]],[[18715,39720],[-157,-22],[-227,-6],[-87,16],[-53,29],[-34,41],[-100,198],[-16,127],[20,127],[121,271],[78,156],[71,202],[-42,122],[-54,111],[-72,96]],[[18163,41188],[-122,-136],[-165,2],[-130,13],[-61,17],[-115,58]],[[17570,41142],[-144,38]],[[17426,41180],[-118,8]],[[17308,41188],[-122,0],[-123,-135]],[[17063,41053],[-122,135],[-120,-7]],[[16821,41181],[-137,-37]],[[16684,41144],[-119,-62],[-56,-14],[-114,-1],[-56,15]],[[16339,41082],[-170,81]],[[16169,41163],[-231,33],[-86,25],[-52,31]],[[15800,41252],[-190,162],[-125,73]],[[15485,41487],[-115,99],[-152,161],[-95,76],[-53,23],[-117,10]],[[14953,41856],[-70,-8],[-127,-80],[-128,-60]],[[14628,41708],[-140,-86],[-106,-46],[-198,-106]],[[14184,41470],[-80,7]],[[14104,41477],[-109,30]],[[13995,41507],[-122,59],[-153,27],[-190,11],[-147,37],[-222,118],[-117,70],[-56,21],[-128,19],[-268,4],[-100,5],[-97,19],[-92,38]],[[12303,41935],[-78,-132],[-75,-90],[-107,-89],[-127,-64],[-86,-72]],[[11830,41488],[-100,-104],[-457,-508]],[[11273,40876],[-303,-335]],[[10970,40541],[-348,-387],[-103,-104],[-68,-50],[-105,-48],[-139,-87],[-104,-49],[-133,-109]],[[9970,39707],[-109,-93],[-125,-68],[-117,-99],[-154,-159],[-121,-91],[-171,-62],[-33,-36],[-27,-69],[-165,17]],[[8948,39047],[-22,58]],[[8926,39105],[-8,10]],[[8918,39115],[0,3]],[[8918,39118],[-3,7]],[[8915,39125],[-9,22]],[[8906,39147],[-5,6]],[[8901,39153],[-28,30]],[[8873,39183],[-3,6]],[[8870,39189],[-33,55]],[[8837,39244],[-4,3]],[[8833,39247],[-18,23]],[[8815,39270],[-7,3]],[[8808,39273],[-11,29]],[[8797,39302],[-5,3]],[[8792,39305],[0,3]],[[8792,39308],[-5,4]],[[8787,39312],[-4,10]],[[8783,39322],[-4,3]],[[8779,39325],[-24,29]],[[8755,39354],[-5,3]],[[8750,39357],[-25,45]],[[8725,39402],[-5,7]],[[8720,39409],[-4,9]],[[8716,39418],[-5,4]],[[8711,39422],[0,16]],[[8711,39438],[5,7]],[[8716,39445],[4,119]],[[8720,39564],[5,13]],[[8725,39577],[0,42]],[[8725,39619],[-5,9]],[[8720,39628],[-4,16]],[[8716,39644],[-5,4]],[[8711,39648],[-2,7]],[[8709,39655],[-3,6]],[[8706,39661],[-5,10]],[[8701,39671],[-4,3]],[[8697,39674],[9,52]],[[8706,39726],[3,6]],[[8709,39732],[0,13]],[[8709,39745],[-3,16]],[[8706,39761],[-5,42]],[[8701,39803],[-4,10]],[[8697,39813],[-3,25]],[[8694,39838],[-5,4]],[[8689,39842],[-14,39]],[[8675,39881],[-9,3]],[[8666,39884],[-16,54]],[[8650,39938],[-5,4]],[[8645,39942],[-4,10]],[[8641,39952],[-5,3]],[[8636,39955],[-9,13]],[[8627,39968],[-4,3]],[[8623,39971],[-3,10]],[[8620,39981],[-4,3]],[[8616,39984],[-5,6]],[[8611,39990],[-5,7]],[[8606,39997],[-12,19]],[[8594,40016],[-10,7]],[[8584,40023],[0,3]],[[8584,40026],[-9,3]],[[8575,40029],[-1,7]],[[8574,40036],[-15,9]],[[8559,40045],[-79,30],[-30,32]],[[8450,40107],[-15,3]],[[8435,40110],[-5,6]],[[8430,40116],[-31,7]],[[8399,40123],[-7,6],[-230,10]],[[8162,40139],[-16,3]],[[8146,40142],[0,4]],[[8146,40146],[-23,3]],[[8123,40149],[-52,0]],[[8071,40149],[-6,-3]],[[8065,40146],[-21,-4]],[[8044,40142],[-24,4]],[[8020,40146],[-89,-17]],[[7931,40129],[-7,3]],[[7924,40132],[-25,14]],[[7899,40146],[-4,6]],[[7895,40152],[0,26]],[[7895,40178],[4,6]],[[7899,40184],[-61,30]],[[7838,40214],[-4,3]],[[7834,40217],[-55,6],[-56,-29]],[[7723,40194],[-6,4]],[[7717,40198],[-8,2]],[[7709,40200],[-27,14]],[[7682,40214],[-4,19]],[[7678,40233],[0,9]],[[7678,40242],[6,10]],[[7684,40252],[16,17]],[[7700,40269],[4,6]],[[7704,40275],[0,3]],[[7704,40278],[-4,3]],[[7700,40281],[0,32]],[[7700,40313],[4,4]],[[7704,40317],[3,6]],[[7707,40323],[11,3]],[[7718,40326],[0,4]],[[7718,40330],[21,3]],[[7739,40333],[39,32],[12,71]],[[7790,40436],[5,10]],[[7795,40446],[25,58]],[[7820,40504],[0,23]],[[7820,40527],[-25,61]],[[7795,40588],[0,10]],[[7795,40598],[25,64]],[[7820,40662],[4,4]],[[7824,40666],[16,19]],[[7840,40685],[44,4]],[[7884,40689],[31,2]],[[7915,40691],[6,3]],[[7921,40694],[3,7]],[[7924,40701],[5,4]],[[7929,40705],[47,51]],[[7976,40756],[14,6]],[[7990,40762],[5,10]],[[7995,40772],[4,4]],[[7999,40776],[38,-26]],[[8037,40750],[4,-7]],[[8041,40743],[35,-38]],[[8076,40705],[-11,-4]],[[8065,40701],[-14,-48]],[[8051,40653],[-5,-3]],[[8046,40650],[-9,-43],[34,-41]],[[8071,40566],[-5,-4]],[[8066,40562],[-9,-16],[-92,13],[-34,-16]],[[7931,40543],[-16,3]],[[7915,40546],[-59,-58],[39,-55],[51,3]],[[7946,40436],[30,4]],[[7976,40440],[15,12]],[[7991,40452],[8,4]],[[7999,40456],[38,35]],[[8037,40491],[7,-3]],[[8044,40488],[2,-9]],[[8046,40479],[5,-4]],[[8051,40475],[39,-42],[-39,-58],[42,-49]],[[8093,40326],[17,-6]],[[8110,40320],[31,-35]],[[8141,40285],[25,-4]],[[8166,40281],[30,23]],[[8196,40304],[5,3]],[[8201,40307],[0,52]],[[8201,40359],[-5,6]],[[8196,40365],[-20,45]],[[8176,40410],[-5,3]],[[8171,40413],[-8,17]],[[8163,40430],[-6,3]],[[8157,40433],[-2,16]],[[8155,40449],[-4,10]],[[8151,40459],[-16,-16]],[[8135,40443],[-11,-3]],[[8124,40440],[-22,0]],[[8102,40440],[-4,12]],[[8098,40452],[0,4]],[[8098,40456],[4,9]],[[8102,40465],[0,23]],[[8102,40488],[0,16]],[[8102,40504],[35,84]],[[8137,40588],[4,3]],[[8141,40591],[0,4]],[[8141,40595],[5,3]],[[8146,40598],[9,9]],[[8155,40607],[8,4]],[[8163,40611],[8,10]],[[8171,40621],[5,6]],[[8176,40627],[45,42],[70,-7],[8,27]],[[8299,40689],[19,-4]],[[8318,40685],[34,71]],[[8352,40756],[5,4]],[[8357,40760],[4,16]],[[8361,40776],[3,9]],[[8364,40785],[0,10]],[[8364,40795],[5,3]],[[8369,40798],[33,90]],[[8402,40888],[6,7]],[[8408,40895],[34,58]],[[8442,40953],[0,10]],[[8442,40963],[52,48],[51,-9],[24,25]],[[8569,41027],[5,11]],[[8574,41038],[21,19]],[[8595,41057],[10,3]],[[8605,41060],[0,3]],[[8605,41063],[6,3]],[[8611,41066],[5,16]],[[8616,41082],[15,7]],[[8631,41089],[66,36]],[[8697,41125],[8,3]],[[8705,41128],[1,6]],[[8706,41134],[10,7]],[[8716,41141],[4,19]],[[8720,41160],[0,6]],[[8720,41166],[-14,20]],[[8706,41186],[3,3]],[[8709,41189],[2,7]],[[8711,41196],[5,6]],[[8716,41202],[90,-10]],[[8806,41192],[9,4]],[[8815,41196],[52,41]],[[8867,41237],[9,4]],[[8876,41241],[25,29]],[[8901,41270],[5,3]],[[8906,41273],[20,13]],[[8926,41286],[13,3]],[[8939,41289],[29,26]],[[8968,41315],[14,0]],[[8982,41315],[0,4]],[[8982,41319],[11,3]],[[8993,41322],[7,6]],[[9000,41328],[3,-4]],[[9003,41324],[1,-2]],[[9004,41322],[3,-3]],[[9007,41319],[22,3]],[[9029,41322],[13,2]],[[9042,41324],[1,7]],[[9043,41331],[6,7]],[[9049,41338],[19,19]],[[9068,41357],[11,3]],[[9079,41360],[14,23]],[[9093,41383],[10,3]],[[9103,41386],[4,7]],[[9107,41393],[6,3]],[[9113,41396],[2,6]],[[9115,41402],[5,7]],[[9120,41409],[3,6]],[[9123,41415],[9,3]],[[9132,41418],[22,91]],[[9154,41509],[5,6]],[[9159,41515],[4,10]],[[9163,41525],[5,4]],[[9168,41529],[31,12]],[[9199,41541],[14,4]],[[9213,41545],[7,9]],[[9220,41554],[6,3]],[[9226,41557],[9,13]],[[9235,41570],[8,3]],[[9243,41573],[16,27]],[[9259,41600],[4,6]],[[9263,41606],[33,32]],[[9296,41638],[5,7]],[[9301,41645],[3,16]],[[9304,41661],[-3,10]],[[9301,41671],[15,3]],[[9316,41674],[8,3]],[[9324,41677],[-23,55]],[[9301,41732],[0,7]],[[9301,41739],[-50,-20],[12,197]],[[9263,41916],[-4,3]],[[9259,41919],[-25,7]],[[9234,41926],[-5,7]],[[9229,41933],[0,5]],[[9229,41938],[5,7]],[[9234,41945],[-10,26]],[[9224,41971],[-6,3]],[[9218,41974],[-3,3]],[[9215,41977],[-5,13]],[[9210,41990],[-4,7]],[[9206,41997],[0,13]],[[9206,42010],[0,32]],[[9206,42042],[7,19]],[[9213,42061],[5,4]],[[9218,42065],[11,3]],[[9229,42068],[5,7]],[[9234,42075],[4,9]],[[9238,42084],[3,7]],[[9241,42091],[63,-14],[15,39]],[[9319,42116],[5,4]],[[9324,42120],[2,6]],[[9326,42126],[9,3]],[[9335,42129],[9,3]],[[9344,42132],[11,-3]],[[9355,42129],[0,-48],[44,-16]],[[9399,42065],[8,3]],[[9407,42068],[0,3]],[[9407,42071],[9,-3]],[[9416,42068],[24,-16]],[[9440,42052],[6,3]],[[9446,42055],[20,3]],[[9466,42058],[11,-3]],[[9477,42055],[14,-16]],[[9491,42039],[5,-3]],[[9496,42036],[40,41]],[[9536,42077],[11,7]],[[9547,42084],[44,3]],[[9591,42087],[5,4]],[[9596,42091],[6,9]],[[9602,42100],[6,4]],[[9608,42104],[49,35]],[[9657,42139],[17,3]],[[9674,42142],[12,13]],[[9686,42155],[5,7]],[[9691,42162],[3,19]],[[9694,42181],[5,6]],[[9699,42187],[0,88]],[[9699,42275],[-5,6]],[[9694,42281],[-3,26]],[[9691,42307],[-5,3]],[[9686,42310],[-20,43]],[[9666,42353],[0,3]],[[9666,42356],[3,6]],[[9669,42362],[3,106],[20,20]],[[9692,42488],[7,3]],[[9699,42491],[7,81],[38,16]],[[9744,42588],[8,-3]],[[9752,42585],[53,-22]],[[9805,42563],[8,-4]],[[9813,42559],[34,-10]],[[9847,42549],[22,3]],[[9869,42552],[206,33]],[[10075,42585],[29,6]],[[10104,42591],[16,10]],[[10120,42601],[9,3]],[[10129,42604],[58,19]],[[10187,42623],[9,4]],[[10196,42627],[7,7]],[[10203,42634],[7,3]],[[10210,42637],[97,52]],[[10307,42689],[0,28]],[[10307,42717],[-1,65]],[[10306,42782],[6,3]],[[10312,42785],[5,20]],[[10317,42805],[4,6]],[[10321,42811],[0,19]],[[10321,42830],[-4,3]],[[10317,42833],[-5,23]],[[10312,42856],[0,36]],[[10312,42892],[5,19]],[[10317,42911],[9,4]],[[10326,42915],[17,119]],[[10343,43034],[8,4]],[[10351,43038],[19,64]],[[10370,43102],[3,7]],[[10373,43109],[4,12]],[[10377,43121],[5,7]],[[10382,43128],[0,87]],[[10382,43215],[-5,6]],[[10377,43221],[-4,27]],[[10373,43248],[-5,5]],[[10368,43253],[0,23]],[[10368,43276],[5,4]],[[10373,43280],[4,19]],[[10377,43299],[7,6]],[[10384,43305],[12,20]],[[10396,43325],[6,3]],[[10402,43328],[5,13]],[[10407,43341],[5,3]],[[10412,43344],[0,3]],[[10412,43347],[4,7]],[[10416,43354],[33,26]],[[10449,43380],[8,3]],[[10457,43383],[27,80]],[[10484,43463],[-21,75]],[[10463,43538],[-4,7]],[[10459,43545],[-5,38]],[[10454,43583],[-11,3]],[[10443,43586],[-19,33]],[[10424,43619],[-3,3]],[[10421,43622],[-11,13]],[[10410,43635],[-3,3]],[[10407,43638],[-5,9]],[[10402,43647],[-3,4]],[[10399,43651],[-26,26]],[[10373,43677],[-6,3]],[[10367,43680],[-16,20]],[[10351,43700],[-5,3]],[[10346,43703],[-25,32]],[[10321,43735],[-4,7]],[[10317,43742],[-5,6]],[[10312,43748],[-6,3]],[[10306,43751],[-13,16]],[[10293,43767],[-6,4]],[[10287,43771],[-19,23]],[[10268,43794],[-3,2]],[[10265,43796],[-25,20]],[[10240,43816],[-5,3]],[[10235,43819],[-135,-13],[-64,23],[-50,-7]],[[9986,43822],[-8,-3]],[[9978,43819],[-8,-9]],[[9970,43810],[-9,-4]],[[9961,43806],[-3,0]],[[9958,43806],[-8,-3]],[[9950,43803],[-5,10]],[[9945,43813],[-6,3]],[[9939,43816],[-41,23]],[[9898,43839],[-39,-7]],[[9859,43832],[-17,-22]],[[9842,43810],[-8,-4]],[[9834,43806],[-1,-19]],[[9833,43787],[-5,-4]],[[9828,43783],[-9,-32]],[[9819,43751],[-5,-9]],[[9814,43742],[-3,-23]],[[9811,43719],[-3,-3]],[[9808,43716],[-28,-100]],[[9780,43616],[-6,-7]],[[9774,43609],[-7,-3]],[[9767,43606],[-9,-3]],[[9758,43603],[0,3]],[[9758,43606],[-16,3]],[[9742,43609],[-15,8]],[[9727,43617],[-25,2]],[[9702,43619],[0,3]],[[9702,43622],[-50,-3]],[[9652,43619],[-11,-10]],[[9641,43609],[-8,-3]],[[9633,43606],[-6,-10]],[[9627,43596],[-25,-3]],[[9602,43593],[-14,-19]],[[9588,43574],[-13,-4]],[[9575,43570],[-25,-48]],[[9550,43522],[-28,3]],[[9522,43525],[-26,32]],[[9496,43557],[-6,4]],[[9490,43561],[-13,16]],[[9477,43577],[-6,3]],[[9471,43580],[-27,26]],[[9444,43606],[-8,3]],[[9436,43609],[-49,29],[-97,-22]],[[9290,43616],[-27,6]],[[9263,43622],[-18,13]],[[9245,43635],[-7,3]],[[9238,43638],[-68,19],[-61,-6]],[[9109,43651],[-22,3]],[[9087,43654],[-75,23],[-23,-20]],[[8989,43657],[-7,-3]],[[8982,43654],[-18,-22]],[[8964,43632],[-13,-3]],[[8951,43629],[-8,-13]],[[8943,43616],[-7,-4]],[[8936,43612],[0,-3]],[[8936,43609],[-5,-3]],[[8931,43606],[-33,-20],[-115,26]],[[8783,43612],[-18,-3]],[[8765,43609],[-3,16]],[[8762,43625],[-40,4]],[[8722,43629],[-78,-4]],[[8644,43625],[-10,-3]],[[8634,43622],[-7,-6]],[[8627,43616],[-11,-4]],[[8616,43612],[-25,-16]],[[8591,43596],[-7,-6]],[[8584,43590],[-3,-7]],[[8581,43583],[-3,-6]],[[8578,43577],[-139,-23],[-12,-22]],[[8427,43532],[-5,-3]],[[8422,43529],[-3,-7]],[[8419,43522],[-6,-4]],[[8413,43518],[-8,-9]],[[8405,43509],[-17,-3]],[[8388,43506],[-49,-16],[-87,32]],[[8252,43522],[-64,-4]],[[8188,43518],[-16,3]],[[15560,52292],[69,54]],[[15629,52346],[6,3]],[[15635,52349],[9,16]],[[15644,52365],[17,4]],[[15661,52369],[53,29]],[[15714,52398],[5,6]],[[15719,52404],[137,49]],[[15856,52453],[7,3]],[[15863,52456],[95,6]],[[15958,52462],[36,-3]],[[15994,52459],[58,-26]],[[16052,52433],[4,-7]],[[16056,52426],[17,-3]],[[16073,52423],[3,-6]],[[16076,52417],[57,-48]],[[16133,52369],[4,-4]],[[16137,52365],[-28,-29]],[[16109,52336],[8,-3]],[[16117,52333],[13,-7]],[[16130,52326],[23,-3]],[[16153,52323],[76,-19],[-15,-52]],[[16214,52252],[14,-3]],[[16228,52249],[45,26]],[[16273,52275],[8,-4]],[[16281,52271],[0,-3]],[[16281,52268],[23,3]],[[16304,52271],[47,-16]],[[16351,52255],[14,-3]],[[16365,52252],[61,3]],[[16426,52255],[28,7]],[[16454,52262],[52,9]],[[16506,52271],[6,4]],[[16512,52275],[25,16]],[[16537,52291],[6,3]],[[16543,52294],[59,36]],[[16602,52330],[25,-4]],[[16627,52326],[41,10]],[[16668,52336],[9,-3]],[[16677,52333],[21,-10]],[[16698,52323],[9,-3]],[[16707,52320],[5,-10]],[[16712,52310],[4,-3]],[[16716,52307],[2,-7]],[[16718,52300],[5,-2]],[[16723,52298],[29,-33]],[[16752,52265],[41,-6]],[[16793,52259],[6,-4]],[[16799,52255],[9,-9]],[[16808,52246],[21,-3]],[[16829,52243],[54,9]],[[16883,52252],[16,3]],[[16899,52255],[36,0]],[[16935,52255],[4,-3]],[[16939,52252],[44,-20]],[[16983,52232],[11,-2]],[[16994,52230],[81,2],[39,36]],[[17114,52268],[31,3]],[[17145,52271],[35,16]],[[17180,52287],[6,4]],[[17186,52291],[5,9]],[[17191,52300],[4,4]],[[17195,52304],[47,22]],[[17242,52326],[5,4]],[[17247,52330],[11,13]],[[17258,52343],[9,3]],[[17267,52346],[5,6]],[[17272,52352],[5,3]],[[17277,52355],[43,68]],[[17320,52423],[11,3]],[[17331,52426],[30,36]],[[17361,52462],[11,3]],[[17372,52465],[14,23]],[[17386,52488],[3,3]],[[17389,52491],[56,62]],[[17445,52553],[3,3]],[[17448,52556],[27,25]],[[17475,52581],[4,4]],[[17479,52585],[18,10]],[[17497,52595],[3,3]],[[17500,52598],[4,6]],[[17504,52604],[8,4]],[[17512,52608],[16,25]],[[17528,52633],[4,3]],[[17532,52636],[16,23]],[[17548,52659],[5,4]],[[17553,52663],[12,22]],[[17565,52685],[5,3]],[[17570,52688],[39,10]],[[17609,52698],[16,4]],[[17625,52702],[6,2]],[[17631,52704],[39,23]],[[17670,52727],[4,7]],[[17674,52734],[11,16]],[[17685,52750],[14,3]],[[17699,52753],[91,61]],[[17790,52814],[5,7]],[[17795,52821],[21,25],[55,0],[23,49]],[[17894,52895],[0,17]],[[17894,52912],[0,19]],[[17894,52931],[36,-3]],[[17930,52928],[46,22]],[[17976,52950],[4,6]],[[17980,52956],[0,7]],[[17980,52963],[0,3]],[[17980,52966],[5,10]],[[17985,52976],[3,3]],[[17988,52979],[19,16]],[[18007,52995],[11,4]],[[18018,52999],[0,71]],[[18018,53070],[-5,6]],[[18013,53076],[-1,7]],[[18012,53083],[-5,3]],[[18007,53086],[-10,9]],[[17997,53095],[-4,4]],[[17993,53099],[-11,3]],[[17982,53102],[-66,16]],[[17916,53118],[-26,4]],[[17890,53122],[-5,9]],[[17885,53131],[-15,3]],[[17870,53134],[-4,-3]],[[17866,53131],[-4,3]],[[17862,53134],[-46,36]],[[17816,53170],[-6,3]],[[17810,53173],[-20,3]],[[17790,53176],[-16,3]],[[17774,53179],[-7,10]],[[17767,53189],[-11,4]],[[17756,53193],[-18,6]],[[17738,53199],[-17,3]],[[17721,53202],[-17,19]],[[17704,53221],[-8,7]],[[17696,53228],[-22,29]],[[17674,53257],[-9,3]],[[17665,53260],[-26,23]],[[17639,53283],[-14,3]],[[17625,53286],[-71,26]],[[17554,53312],[-26,3]],[[17528,53315],[-16,-16]],[[17512,53299],[-9,-10]],[[17503,53289],[-3,-25]],[[17500,53264],[-3,-4]],[[17497,53260],[-24,-29]],[[17473,53231],[-9,-3]],[[17464,53228],[-63,-39],[-12,-55]],[[17389,53134],[-3,-7]],[[17386,53127],[-58,23]],[[17328,53150],[-5,7]],[[17323,53157],[28,29],[-15,48],[-44,16],[-15,101]],[[17277,53351],[-5,6]],[[17272,53357],[-19,46]],[[17253,53403],[-3,2]],[[17250,53405],[-25,33]],[[17225,53438],[-5,3]],[[17220,53441],[-100,52],[-23,42]],[[17097,53535],[-1,0]],[[17096,53535],[-2,7]],[[17094,53542],[-2,3]],[[17092,53545],[-6,2]],[[17086,53547],[-9,7]],[[17077,53554],[-3,10]],[[17074,53564],[-5,3]],[[17069,53567],[-25,29]],[[17044,53596],[-9,6]],[[17035,53602],[-35,27]],[[17000,53629],[-6,3]],[[16994,53632],[-59,48]],[[16935,53680],[8,4]],[[16943,53684],[15,48]],[[16958,53732],[0,6]],[[16958,53738],[30,42]],[[16988,53780],[3,4]],[[16991,53784],[5,6]],[[16996,53790],[4,3]],[[17000,53793],[0,65]],[[17000,53858],[-1,3]],[[16999,53861],[-8,16]],[[16991,53877],[-5,3]],[[16986,53880],[-23,33]],[[16963,53913],[-5,3]],[[16958,53916],[-19,19]],[[16939,53935],[-4,4]],[[16935,53939],[-2,7]],[[16933,53946],[-9,2]],[[16924,53948],[-3,7]],[[16921,53955],[-17,3]],[[16904,53958],[-19,9]],[[16885,53967],[-11,-2]],[[16874,53965],[-6,-7]],[[16868,53958],[-16,-3]],[[16852,53955],[-30,-13]],[[16822,53942],[-9,4]],[[16813,53946],[-14,9]],[[16799,53955],[-9,3]],[[16790,53958],[-92,7],[-41,48],[-3,48]],[[16654,54061],[-3,4]],[[16651,54065],[-5,9]],[[16646,54074],[-5,4]],[[16641,54078],[-14,19]],[[16627,54097],[-11,3]],[[16616,54100],[0,4]],[[16616,54104],[-10,3]],[[16606,54107],[0,3]],[[16606,54110],[-10,3]],[[16596,54113],[0,4]],[[16596,54117],[-14,3]],[[16582,54120],[0,3]],[[16582,54123],[-17,3]],[[16565,54126],[0,3]],[[16565,54129],[-5,4]],[[16560,54133],[-18,23]],[[16542,54156],[-7,2]],[[16535,54158],[-65,3],[-3,94],[-21,26]],[[16446,54281],[-6,3]],[[16440,54284],[-5,30]],[[16435,54314],[11,3]],[[16446,54317],[8,58],[-33,26]],[[16421,54401],[-4,6]],[[16417,54407],[20,32],[3,71]],[[16440,54510],[6,7]],[[16446,54517],[61,7]],[[16507,54524],[5,9]],[[16512,54533],[0,7]],[[16512,54540],[-9,3]],[[16503,54543],[-4,3]],[[16499,54546],[4,10]],[[16503,54556],[20,16]],[[16523,54572],[19,3]],[[16542,54575],[18,33]],[[16560,54608],[5,3]],[[16565,54611],[3,36]],[[16568,54647],[5,5]],[[16573,54652],[15,-2]],[[16588,54650],[14,2]],[[16602,54652],[5,11]],[[16607,54663],[9,3]],[[16616,54666],[22,19]],[[16638,54685],[8,-3]],[[16646,54682],[17,22]],[[16663,54704],[5,4]],[[16668,54708],[11,10]],[[16679,54718],[9,2]],[[16688,54720],[11,10]],[[16699,54730],[10,4]],[[16709,54734],[3,6]],[[16712,54740],[15,3]],[[16727,54743],[55,23]],[[16782,54766],[6,-3]],[[16788,54763],[-5,-68]],[[16783,54695],[10,-4]],[[16793,54691],[39,-3],[17,55]],[[16849,54743],[0,13]],[[16849,54756],[3,16]],[[16852,54772],[6,3]],[[16858,54775],[16,-35]],[[16874,54740],[5,-6]],[[16879,54734],[25,-55],[54,16]],[[16958,54695],[5,9]],[[16963,54704],[0,10]],[[16963,54714],[-8,6]],[[16955,54720],[-11,55]],[[16944,54775],[30,-3]],[[16974,54772],[12,13]],[[16986,54785],[5,6]],[[16991,54791],[9,-12]],[[15082,54898],[5,-3]],[[15087,54895],[13,-13]],[[15100,54882],[11,3]],[[15111,54885],[1,-19]],[[15112,54866],[5,-4]],[[15117,54862],[28,-38]],[[15145,54824],[3,-3]],[[15148,54821],[62,6],[13,-61]],[[15223,54766],[15,-3]],[[15238,54763],[49,-43]],[[15287,54720],[5,4]],[[15292,54724],[56,-26]],[[15348,54698],[-5,-3]],[[15343,54695],[-42,-39],[-50,-13],[-39,-45]],[[15212,54598],[-11,-3]],[[15201,54595],[-14,-16]],[[15187,54579],[-5,-7]],[[15182,54572],[0,-3]],[[15182,54569],[-1,0]],[[15181,54569],[-33,-39]],[[15148,54530],[-3,-6]],[[15145,54524],[-8,-36],[25,-65]],[[15162,54423],[6,-6]],[[15168,54417],[13,-16]],[[15181,54401],[9,-3]],[[15190,54398],[45,-16]],[[15235,54382],[3,3]],[[15238,54385],[0,-36]],[[15238,54349],[-6,-6]],[[15232,54343],[0,-4]],[[15232,54339],[-11,-3]],[[15221,54336],[-50,-22]],[[15171,54314],[-11,3]],[[15160,54317],[-73,-29]],[[15087,54288],[-8,-7]],[[15079,54281],[-14,-6]],[[15065,54275],[-9,-4]],[[15056,54271],[-20,-16]],[[15036,54255],[-5,-3]],[[15031,54252],[-5,-9]],[[15026,54243],[-15,-4]],[[15011,54239],[-57,-16]],[[14954,54223],[-7,-3]],[[14947,54220],[-2,-7]],[[14945,54213],[-5,-6]],[[14940,54207],[-17,-51]],[[14923,54156],[0,-4]],[[14923,54152],[0,-7]],[[14923,54145],[-9,-6]],[[14914,54139],[-20,-16]],[[14894,54123],[-5,-3]],[[14889,54120],[0,-3]],[[14889,54117],[-23,3]],[[14866,54120],[-38,13]],[[14828,54133],[6,3]],[[14834,54136],[2,9]],[[14836,54145],[5,7]],[[14841,54152],[0,9]],[[14841,54161],[-5,7]],[[14836,54168],[0,10]],[[14836,54178],[8,3]],[[14844,54181],[15,74],[-26,26]],[[14833,54281],[-5,3]],[[14828,54284],[-3,7]],[[14825,54291],[-5,3]],[[14820,54294],[-8,20]],[[14812,54314],[-23,0]],[[14789,54314],[-26,80]],[[14763,54394],[-4,16]],[[14759,54410],[39,62]],[[14798,54472],[21,3]],[[14819,54475],[0,3]],[[14819,54478],[6,0]],[[14825,54478],[3,13]],[[14828,54491],[5,3]],[[14833,54494],[42,39]],[[14875,54533],[5,3]],[[14880,54536],[9,23]],[[14889,54559],[5,10]],[[14894,54569],[25,165]],[[14919,54734],[6,-4]],[[14925,54730],[14,13]],[[14939,54743],[6,3]],[[14945,54746],[5,17]],[[14950,54763],[4,3]],[[14954,54766],[25,39]],[[14979,54805],[5,3]],[[14984,54808],[5,10]],[[14989,54818],[3,6]],[[14992,54824],[25,22]],[[15017,54846],[9,4]],[[15026,54850],[5,35]],[[15031,54885],[6,4]],[[15037,54889],[45,9]],[[14950,55105],[0,-3]],[[14950,55102],[4,-3]],[[14954,55099],[11,-7]],[[14965,55092],[19,-9]],[[14984,55083],[5,-16]],[[14989,55067],[3,-7]],[[14992,55060],[0,-13]],[[14992,55047],[-3,-7]],[[14989,55040],[0,-6]],[[14989,55034],[-13,3]],[[14976,55037],[-51,-3]],[[14925,55034],[-19,3]],[[14906,55037],[-67,-9]],[[14839,55028],[-5,-4]],[[14834,55024],[0,-3]],[[14834,55021],[-9,-3]],[[14825,55018],[-6,-6]],[[14819,55012],[-21,-4]],[[14798,55008],[-35,-29]],[[14763,54979],[-10,-6]],[[14753,54973],[-29,-29]],[[14724,54944],[-7,-4]],[[14717,54940],[-65,7]],[[14652,54947],[6,3]],[[14658,54950],[5,78],[26,9]],[[14689,55037],[14,3]],[[14703,55040],[47,11]],[[14750,55051],[9,5]],[[14759,55056],[30,23],[69,7]],[[14858,55086],[15,3]],[[14873,55089],[0,3]],[[14873,55092],[7,-6]],[[14880,55086],[59,16]],[[14939,55102],[11,3]],[[17049,56033],[0,-4]],[[17049,56029],[0,-10]],[[17049,56019],[-5,-9]],[[17044,56010],[-19,0]],[[17025,56010],[7,19]],[[17032,56029],[17,4]],[[14834,56184],[10,4]],[[14844,56188],[-11,-46]],[[14833,56142],[-5,-3]],[[14828,56139],[-8,-26]],[[14820,56113],[5,-7]],[[14825,56106],[3,-6]],[[14828,56100],[5,-3]],[[14833,56097],[3,-19]],[[14836,56078],[-8,-10]],[[14828,56068],[0,3]],[[14828,56071],[-9,3]],[[14819,56074],[-50,52],[29,35]],[[14798,56161],[5,11]],[[14803,56172],[31,12]],[[16400,56366],[-5,-7]],[[16395,56359],[-20,0]],[[16375,56359],[4,3]],[[16379,56362],[21,4]],[[16048,56417],[8,-3]],[[16056,56414],[0,3]],[[16056,56417],[8,-3]],[[16064,56414],[0,-4]],[[16064,56410],[8,-3]],[[16072,56407],[0,-3]],[[16072,56404],[4,-6]],[[16076,56398],[4,-7]],[[16080,56391],[7,-6]],[[16087,56385],[46,-52]],[[16133,56333],[6,-3]],[[16139,56330],[31,-3]],[[16170,56327],[9,3]],[[16179,56330],[49,45],[22,-65]],[[16250,56310],[3,-13]],[[16253,56297],[37,-3]],[[16290,56294],[24,-3]],[[16314,56291],[0,-3]],[[16314,56288],[1,3]],[[16315,56291],[-6,48]],[[16309,56339],[2,4]],[[16311,56343],[45,-20]],[[16356,56323],[5,-3]],[[16361,56320],[3,-23]],[[16364,56297],[-8,-3]],[[16356,56294],[-6,-26],[67,-41]],[[16417,56227],[7,-4]],[[16424,56223],[0,-3]],[[16424,56220],[11,-4]],[[16435,56216],[64,52]],[[16499,56268],[7,3]],[[16506,56271],[17,-16]],[[16523,56255],[20,-3]],[[16543,56252],[25,-19]],[[16568,56233],[5,-4]],[[16573,56229],[48,10]],[[16621,56239],[6,-3]],[[16627,56236],[14,-13]],[[16641,56223],[13,-3]],[[16654,56220],[9,-36]],[[16663,56184],[8,-3]],[[16671,56181],[2,-6]],[[16673,56175],[15,-7]],[[16688,56168],[10,-3]],[[16698,56165],[25,-4]],[[16723,56161],[4,-5]],[[16727,56156],[11,-4]],[[16738,56152],[45,-19]],[[16783,56133],[16,-4]],[[16799,56129],[16,-23]],[[16815,56106],[12,7]],[[16827,56113],[17,13]],[[16844,56126],[10,-3]],[[16854,56123],[0,-39]],[[16854,56084],[4,-6]],[[16858,56078],[-4,-59]],[[16854,56019],[9,-6]],[[16863,56013],[8,3]],[[16871,56016],[9,-3]],[[16880,56013],[24,20]],[[16904,56033],[15,3]],[[16919,56036],[-6,-26]],[[16913,56010],[-9,-4]],[[16904,56006],[-10,-12]],[[16894,55994],[-6,-4]],[[16888,55990],[-16,-44],[-82,-43]],[[16790,55903],[-7,-3]],[[16783,55900],[-46,-42]],[[16737,55858],[-5,-3]],[[16732,55855],[-9,-7]],[[16723,55848],[-7,-3]],[[16716,55845],[0,-3]],[[16716,55842],[-14,-7]],[[16702,55835],[-40,-32]],[[16662,55803],[-11,3]],[[16651,55806],[-38,17]],[[16613,55823],[-17,-4]],[[16596,55819],[-3,-6]],[[16593,55813],[-5,-4]],[[16588,55809],[-15,-45]],[[16573,55764],[-5,-7]],[[16568,55757],[-33,-2]],[[16535,55755],[-4,-7]],[[16531,55748],[-19,-16]],[[16512,55732],[-16,-3]],[[16496,55729],[0,-4]],[[16496,55725],[-20,4]],[[16476,55729],[-45,-43]],[[16431,55686],[-19,-2]],[[16412,55684],[-67,13]],[[16345,55697],[-27,3]],[[16318,55700],[-23,-19]],[[16295,55681],[-5,-4]],[[16290,55677],[0,-7]],[[16290,55670],[-6,14]],[[16284,55684],[-5,2]],[[16279,55686],[-6,-2]],[[16273,55684],[-20,-78]],[[16253,55606],[15,-3]],[[16268,55603],[5,-20]],[[16273,55583],[16,-3]],[[16289,55580],[0,-13]],[[16289,55567],[-8,-3]],[[16281,55564],[-52,-39]],[[16229,55525],[-9,-3]],[[16220,55522],[-42,-10]],[[16178,55512],[-8,-3]],[[16170,55509],[-33,-16]],[[16137,55493],[-7,-6]],[[16130,55487],[-46,-20]],[[16084,55467],[-28,-3]],[[16056,55464],[0,-4]],[[16056,55460],[-9,4]],[[16047,55464],[-14,-20]],[[16033,55444],[-5,-3]],[[16028,55441],[-17,-42]],[[16011,55399],[-13,-3]],[[15998,55396],[-40,26]],[[15958,55422],[-11,3]],[[15947,55425],[0,-3]],[[15947,55422],[-11,3]],[[15936,55425],[-16,-26]],[[15920,55399],[-3,-16]],[[15917,55383],[-4,-7]],[[15913,55376],[-7,-3]],[[15906,55373],[-15,0]],[[15891,55373],[-5,3]],[[15886,55376],[-3,7]],[[15883,55383],[-8,6]],[[15875,55389],[-9,4]],[[15866,55393],[-28,-4]],[[15838,55389],[-8,-16]],[[15830,55373],[-5,-16]],[[15825,55357],[-18,-13]],[[15807,55344],[-2,7]],[[15805,55351],[-5,29]],[[15800,55380],[-8,3]],[[15792,55383],[-45,13]],[[15747,55396],[-3,3]],[[15744,55399],[-50,10]],[[15694,55409],[-25,-4]],[[15669,55405],[0,4]],[[15669,55409],[-8,3]],[[15661,55412],[-17,0]],[[15644,55412],[-4,-3]],[[15640,55409],[-4,-10]],[[15636,55399],[-17,4]],[[15619,55403],[-3,6]],[[15616,55409],[-8,-4]],[[15608,55405],[-3,-29]],[[15605,55376],[-14,-3]],[[15591,55373],[-12,10]],[[15579,55383],[-11,-3]],[[15568,55380],[-38,-13]],[[15530,55367],[-25,3]],[[15505,55370],[-20,29]],[[15485,55399],[-5,10]],[[15480,55409],[-3,16]],[[15477,55425],[-4,3]],[[15473,55428],[-19,16]],[[15454,55444],[-6,4]],[[15448,55448],[-36,16]],[[15412,55464],[-5,3]],[[15407,55467],[-58,36]],[[15349,55503],[-3,3]],[[15346,55506],[-3,9]],[[15343,55515],[-5,4]],[[15338,55519],[-103,71]],[[15235,55590],[-23,-4]],[[15212,55586],[0,4]],[[15212,55590],[-16,3]],[[15196,55593],[-6,10]],[[15190,55603],[-17,3]],[[15173,55606],[9,39]],[[15182,55645],[0,22]],[[15182,55667],[-11,17]],[[15171,55684],[-6,6]],[[15165,55690],[38,39]],[[15203,55729],[4,6]],[[15207,55735],[0,6]],[[15207,55741],[-4,4]],[[15203,55745],[-2,39]],[[15201,55784],[6,3]],[[15207,55787],[0,104]],[[15207,55891],[-11,5]],[[15196,55896],[-4,7]],[[15192,55903],[-11,4]],[[15181,55907],[1,25]],[[15182,55932],[5,3]],[[15187,55935],[0,11]],[[15187,55946],[-9,5]],[[15178,55951],[-13,20]],[[15165,55971],[-12,7]],[[15153,55978],[-11,25]],[[15142,56003],[6,-3]],[[15148,56000],[-2,29]],[[15146,56029],[-4,4]],[[15142,56033],[23,51]],[[15165,56084],[0,3]],[[15165,56087],[0,3]],[[15165,56090],[8,10]],[[15173,56100],[-11,36],[64,48]],[[15226,56184],[6,-3]],[[15232,56181],[39,10],[41,68]],[[15312,56259],[20,3]],[[15332,56262],[14,19]],[[15346,56281],[2,-6]],[[15348,56275],[18,-7]],[[15366,56268],[7,-3]],[[15373,56265],[0,-10]],[[15373,56255],[-5,-6]],[[15368,56249],[27,-36]],[[15395,56213],[-18,-3]],[[15377,56210],[-3,-6]],[[15374,56204],[-8,-4]],[[15366,56200],[-18,-23]],[[15348,56177],[-5,-2]],[[15343,56175],[9,-23]],[[15352,56152],[25,4]],[[15377,56156],[0,-4]],[[15377,56152],[5,-3]],[[15382,56149],[31,-7]],[[15413,56142],[11,3]],[[15424,56145],[86,32]],[[15510,56177],[5,7]],[[15515,56184],[0,49]],[[15515,56233],[15,3]],[[15530,56236],[0,19]],[[15530,56255],[-11,-3]],[[15519,56252],[64,32],[77,10]],[[15660,56294],[6,3]],[[15666,56297],[28,10]],[[15694,56307],[20,7]],[[15714,56314],[16,-4]],[[15730,56310],[11,-3]],[[15741,56307],[50,16],[39,-35]],[[15830,56288],[25,6]],[[15855,56294],[0,6]],[[15855,56300],[6,-3]],[[15861,56297],[25,58]],[[15886,56355],[5,-3]],[[15891,56352],[40,-19],[16,52]],[[15947,56385],[5,9]],[[15952,56394],[0,7]],[[15952,56401],[21,3]],[[15973,56404],[40,3]],[[16013,56407],[4,16]],[[16017,56423],[2,7]],[[16019,56430],[4,3]],[[16023,56433],[0,4]],[[16023,56437],[10,-4]],[[16033,56433],[15,-16]],[[54732,69034],[-5,10]],[[54727,69044],[-7,6]],[[54720,69050],[0,3]],[[54720,69053],[0,10]],[[54720,69063],[0,6]],[[54720,69069],[12,7]],[[54732,69076],[0,4]],[[54732,69080],[0,-46]],[[57348,69593],[78,-156]],[[57426,69437],[57,-141]],[[57483,69296],[153,-241]],[[57636,69055],[42,-64],[85,-177]],[[57763,68814],[20,-54],[11,-92]],[[57794,68668],[-14,-101],[39,-164],[51,-147],[160,-311]],[[58030,67945],[15,-61]],[[58045,67884],[38,-186],[71,-159]],[[58154,67539],[43,-116],[104,-199],[70,-78],[156,-102]],[[58527,67044],[128,-61],[142,-86]],[[58797,66897],[106,-46],[199,-112]],[[59102,66739],[-177,-102],[-128,-59]],[[58797,66578],[-140,-87],[-105,-48]],[[58552,66443],[-140,-94],[-144,-85]],[[58268,66264],[-82,125]],[[58186,66389],[-33,37]],[[58153,66426],[-22,12]],[[58131,66438],[-52,6]],[[58079,66444],[-26,-5]],[[58053,66439],[-50,-28],[-123,-139]],[[57880,66272],[-49,-83],[-45,-113],[-69,-90]],[[57717,65986],[-42,-35],[-125,-63],[-117,-71],[-103,-49],[-82,-75]],[[57248,65693],[-31,-48],[-108,-243],[-25,-89]],[[57084,65313],[-28,-156],[-19,-58]],[[57037,65099],[-56,-133]],[[56981,64966],[-38,-184]],[[56943,64782],[-31,-91]],[[56912,64691],[-93,-133],[-222,-245]],[[56597,64313],[-70,-66]],[[56527,64247],[-49,-40],[-129,-66]],[[56349,64141],[-141,-86],[-104,-47],[-141,-87]],[[55963,63921],[-104,-49],[-141,-94]],[[55718,63778],[-148,-82]],[[55570,63696],[-154,-131]],[[55416,63565],[-46,-33],[-151,-77],[-144,-98]],[[55075,63357],[-29,-53]],[[55046,63304],[9,-50]],[[55055,63254],[-268,-54]],[[54787,63200],[-173,-83]],[[54614,63117],[-166,-47]],[[54448,63070],[-78,144]],[[54370,63214],[-97,177]],[[54273,63391],[-34,92]],[[54239,63483],[-78,156],[-44,114]],[[54117,63753],[-67,105]],[[54050,63858],[-59,72],[-190,211]],[[53801,64141],[-110,112],[-120,103],[-106,165]],[[53465,64521],[-45,89]],[[53420,64610],[-25,69],[-55,98]],[[53340,64777],[-54,69],[-1004,1115],[-284,311]],[[51998,66272],[-95,112],[-50,74]],[[51853,66458],[-22,49]],[[51831,66507],[-56,174],[-30,120]],[[51745,66801],[-7,42]],[[51738,66843],[3,0]],[[51741,66843],[0,4]],[[51741,66847],[6,3]],[[51747,66850],[1,25]],[[51748,66875],[-7,4]],[[51741,66879],[0,3]],[[51741,66882],[11,7]],[[51752,66889],[6,-10]],[[51758,66879],[15,-7]],[[51773,66872],[5,14]],[[51778,66886],[20,28]],[[51798,66914],[30,72]],[[51828,66986],[30,6]],[[51858,66992],[20,13]],[[51878,67005],[25,0]],[[51903,67005],[20,-16]],[[51923,66989],[0,9]],[[51923,66998],[0,7]],[[51923,67005],[6,3]],[[51929,67008],[0,4]],[[51929,67012],[25,9]],[[51954,67021],[8,7]],[[51962,67028],[11,6]],[[51973,67034],[13,-45]],[[51986,66989],[4,-3]],[[51990,66986],[3,-20]],[[51993,66966],[16,-13]],[[52009,66953],[5,-6]],[[52014,66947],[11,-4]],[[52025,66943],[11,-9]],[[52036,66934],[25,-4]],[[52061,66930],[0,-3]],[[52061,66927],[4,10],[-22,4]],[[52043,66941],[-12,12]],[[52031,66953],[-17,13]],[[52014,66966],[-8,13]],[[52006,66979],[-13,55]],[[51993,67034],[-3,26]],[[51990,67060],[16,-19]],[[52006,67041],[0,-4]],[[52006,67037],[37,4]],[[52043,67041],[18,0]],[[52061,67041],[32,25]],[[52093,67066],[21,23]],[[52114,67089],[25,3]],[[52139,67092],[0,4]],[[52139,67096],[57,0]],[[52196,67096],[0,3]],[[52196,67099],[10,3]],[[52206,67102],[9,6]],[[52215,67108],[27,7]],[[52242,67115],[4,6]],[[52246,67121],[30,13]],[[52276,67134],[0,3]],[[52276,67137],[19,7]],[[52295,67144],[3,7]],[[52298,67151],[33,2]],[[52331,67153],[0,4]],[[52331,67157],[42,13]],[[52373,67170],[14,9]],[[52387,67179],[11,4]],[[52398,67183],[0,3]],[[52398,67186],[25,6]],[[52423,67192],[6,13]],[[52429,67205],[23,3]],[[52452,67208],[0,4]],[[52452,67212],[47,10]],[[52499,67222],[0,6]],[[52499,67228],[13,-4]],[[52512,67224],[0,4]],[[52512,67228],[4,3]],[[52516,67231],[27,-3]],[[52543,67228],[9,-6]],[[52552,67222],[8,2]],[[52560,67224],[0,7]],[[52560,67231],[22,7]],[[52582,67238],[0,3]],[[52582,67241],[12,3]],[[52594,67244],[21,13]],[[52615,67257],[15,10]],[[52630,67267],[0,3]],[[52630,67270],[25,6]],[[52655,67276],[16,14]],[[52671,67290],[9,3]],[[52680,67293],[3,6]],[[52683,67299],[30,13]],[[52713,67312],[12,10]],[[52725,67322],[8,3]],[[52733,67325],[5,6]],[[52738,67331],[8,26]],[[52746,67357],[14,4]],[[52760,67361],[18,-7]],[[52778,67354],[7,3]],[[52785,67357],[1,7]],[[52786,67364],[10,6]],[[52796,67370],[0,3]],[[52796,67373],[14,10]],[[52810,67383],[6,19]],[[52816,67402],[14,4]],[[52830,67406],[0,9]],[[52830,67415],[-11,7]],[[52819,67422],[0,10]],[[52819,67432],[22,6]],[[52841,67438],[0,3]],[[52841,67441],[4,7]],[[52845,67448],[4,9]],[[52849,67457],[20,16]],[[52869,67473],[0,4]],[[52869,67477],[12,39]],[[52881,67516],[19,16]],[[52900,67532],[14,6]],[[52914,67538],[3,0]],[[52917,67538],[21,3]],[[52938,67541],[12,10]],[[52950,67551],[9,9]],[[52959,67560],[0,20]],[[52959,67580],[32,13]],[[52991,67593],[17,35]],[[53008,67628],[9,4]],[[53017,67632],[5,6]],[[53022,67638],[20,36]],[[53042,67674],[0,32]],[[53042,67706],[-22,26]],[[53020,67732],[-23,3]],[[52997,67735],[-5,19]],[[52992,67754],[16,11]],[[53008,67765],[12,2]],[[53020,67767],[2,7]],[[53022,67774],[25,7]],[[53047,67781],[0,3]],[[53047,67784],[25,3]],[[53072,67787],[0,16]],[[53072,67803],[25,3]],[[53097,67806],[1,7]],[[53098,67813],[24,3]],[[53122,67816],[1,6]],[[53123,67822],[8,4]],[[53131,67826],[2,3]],[[53133,67829],[0,7]],[[53133,67836],[14,12]],[[53147,67848],[0,17]],[[53147,67865],[0,25]],[[53147,67890],[4,13]],[[53151,67903],[78,10]],[[53229,67913],[8,7]],[[53237,67920],[6,6]],[[53243,67926],[0,3]],[[53243,67929],[7,7]],[[53250,67936],[4,9]],[[53254,67945],[50,13]],[[53304,67958],[3,13]],[[53307,67971],[21,6]],[[53328,67977],[17,26]],[[53345,68003],[9,4]],[[53354,68007],[3,12]],[[53357,68019],[22,10]],[[53379,68029],[11,17]],[[53390,68046],[8,6]],[[53398,68052],[1,6]],[[53399,68058],[5,4]],[[53404,68062],[6,19]],[[53410,68081],[8,3]],[[53418,68084],[0,3]],[[53418,68087],[13,16]],[[53431,68103],[4,33]],[[53435,68136],[-4,22]],[[53431,68158],[-13,23]],[[53418,68181],[-20,16]],[[53398,68197],[-13,7]],[[53385,68204],[5,16]],[[53390,68220],[14,-3]],[[53404,68217],[-5,16]],[[53399,68233],[-10,3]],[[53389,68236],[1,13]],[[53390,68249],[16,3]],[[53406,68252],[0,-3]],[[53406,68249],[4,13]],[[53410,68262],[-4,6]],[[53406,68268],[-7,-3]],[[53399,68265],[-1,-7]],[[53398,68258],[-3,14],[9,0]],[[53404,68272],[5,9]],[[53409,68281],[25,0]],[[53434,68281],[4,-6]],[[53438,68275],[22,-10]],[[53460,68265],[3,-9]],[[53463,68256],[21,-10]],[[53484,68246],[1,-7]],[[53485,68239],[5,19]],[[53490,68258],[-34,20]],[[53456,68278],[0,13]],[[53456,68291],[0,6]],[[53456,68297],[0,4]],[[53456,68301],[7,9]],[[53463,68310],[21,10]],[[53484,68320],[6,9]],[[53490,68329],[19,4]],[[53509,68333],[28,23]],[[53537,68356],[28,6]],[[53565,68362],[15,10]],[[53580,68372],[7,3]],[[53587,68375],[0,3]],[[53587,68378],[25,13]],[[53612,68391],[20,42]],[[53632,68433],[8,3]],[[53640,68436],[4,10]],[[53644,68446],[21,20]],[[53665,68466],[28,22]],[[53693,68488],[9,3]],[[53702,68491],[0,3]],[[53702,68494],[14,10]],[[53716,68504],[39,46]],[[53755,68550],[13,19]],[[53768,68569],[3,16]],[[53771,68585],[25,13]],[[53796,68598],[11,12]],[[53807,68610],[15,11]],[[53822,68621],[0,3]],[[53822,68624],[24,19]],[[53846,68643],[11,10]],[[53857,68653],[9,3]],[[53866,68656],[0,3]],[[53866,68659],[6,3]],[[53872,68662],[0,3]],[[53872,68665],[25,7]],[[53897,68672],[21,10]],[[53918,68682],[10,3]],[[53928,68685],[0,3]],[[53928,68688],[21,4]],[[53949,68692],[9,3]],[[53958,68695],[11,9]],[[53969,68704],[3,4]],[[53972,68708],[47,3]],[[54019,68711],[20,26]],[[54039,68737],[14,-4]],[[54053,68733],[27,-19]],[[54080,68714],[54,3]],[[54134,68717],[0,4]],[[54134,68721],[68,6]],[[54202,68727],[0,-3]],[[54202,68724],[32,-13]],[[54234,68711],[11,-32]],[[54245,68679],[46,38]],[[54291,68717],[4,-22]],[[54295,68695],[11,-3]],[[54306,68692],[0,3]],[[54306,68695],[5,3]],[[54311,68698],[31,16]],[[54342,68714],[3,49]],[[54345,68763],[0,3]],[[54345,68766],[0,6]],[[54345,68772],[-8,13]],[[54337,68785],[0,26]],[[54337,68811],[35,9]],[[54372,68820],[18,4]],[[54390,68824],[0,7]],[[54390,68831],[2,22]],[[54392,68853],[0,3]],[[54392,68856],[28,0]],[[54420,68856],[0,3]],[[54420,68859],[16,-9]],[[54436,68850],[0,-7]],[[54436,68843],[31,-9]],[[54467,68834],[65,19]],[[54532,68853],[5,3]],[[54537,68856],[0,23]],[[54537,68879],[-5,3]],[[54532,68882],[0,61]],[[54532,68943],[5,7]],[[54537,68950],[22,13]],[[54559,68963],[30,3]],[[54589,68966],[3,-6]],[[54592,68960],[4,-3]],[[54596,68957],[0,-4]],[[54596,68953],[11,-3]],[[54607,68950],[2,-3]],[[54609,68947],[0,3]],[[54609,68950],[0,3]],[[54609,68953],[0,4]],[[54609,68957],[14,9]],[[54623,68966],[6,13]],[[54629,68979],[3,3]],[[54632,68982],[10,7]],[[54642,68989],[0,3]],[[54642,68992],[12,3]],[[54654,68995],[0,3]],[[54654,68998],[39,13]],[[54693,69011],[0,3]],[[54693,69014],[-31,20]],[[54662,69034],[0,7]],[[54662,69041],[16,19]],[[54678,69060],[0,3]],[[54678,69063],[21,-3]],[[54699,69060],[33,-35]],[[54732,69025],[22,-4]],[[54754,69021],[0,-16]],[[54754,69005],[-25,-7]],[[54729,68998],[-2,-6]],[[54727,68992],[0,-16]],[[54727,68976],[5,-13]],[[54732,68963],[20,-3]],[[54752,68960],[11,13]],[[54763,68973],[7,-3]],[[54770,68970],[0,-17]],[[54770,68953],[-5,-3]],[[54765,68950],[-13,-7]],[[54752,68943],[0,-9]],[[54752,68934],[21,0]],[[54773,68934],[33,-7]],[[54806,68927],[17,-9]],[[54823,68918],[7,-4]],[[54830,68914],[5,-6]],[[54835,68908],[50,-19]],[[54885,68889],[0,-3]],[[54885,68886],[23,9]],[[54908,68895],[0,3]],[[54908,68898],[52,20]],[[54960,68918],[6,25]],[[54966,68943],[11,20]],[[54977,68963],[0,3]],[[54977,68966],[14,23]],[[54991,68989],[8,29]],[[54999,69018],[6,26]],[[55005,69044],[0,3]],[[55005,69047],[10,13]],[[55015,69060],[1,16]],[[55016,69076],[0,13]],[[55016,69089],[0,10]],[[55016,69099],[31,13]],[[55047,69112],[0,3]],[[55047,69115],[8,6]],[[55055,69121],[2,23]],[[55057,69144],[9,13]],[[55066,69157],[2,6]],[[55068,69163],[20,13]],[[55088,69176],[22,13]],[[55110,69189],[6,3]],[[55116,69192],[5,7]],[[55121,69199],[22,16]],[[55143,69215],[7,9]],[[55150,69224],[11,7]],[[55161,69231],[5,4]],[[55166,69235],[5,3]],[[55171,69238],[0,3]],[[55171,69241],[7,3]],[[55178,69244],[0,3]],[[55178,69247],[18,16]],[[55196,69263],[6,13]],[[55202,69276],[9,3]],[[55211,69279],[0,4]],[[55211,69283],[11,3]],[[55222,69286],[0,4]],[[55222,69290],[10,2]],[[55232,69292],[0,3]],[[55232,69295],[12,11]],[[55244,69306],[8,9]],[[55252,69315],[11,3]],[[55263,69318],[15,-3]],[[55278,69315],[24,0]],[[55302,69315],[0,-3]],[[55302,69312],[26,-20]],[[55328,69292],[11,-6]],[[55339,69286],[14,6]],[[55353,69292],[0,3]],[[55353,69295],[21,7]],[[55374,69302],[14,16]],[[55388,69318],[4,4]],[[55392,69322],[2,6]],[[55394,69328],[6,6]],[[55400,69334],[5,10]],[[55405,69344],[20,7]],[[55425,69351],[5,6]],[[55430,69357],[34,4]],[[55464,69361],[0,2]],[[55464,69363],[23,7]],[[55487,69370],[21,7]],[[55508,69377],[8,3]],[[55516,69380],[0,3]],[[55516,69383],[14,62]],[[55530,69445],[0,3]],[[55530,69448],[18,6]],[[55548,69454],[0,3]],[[55548,69457],[13,4]],[[55561,69461],[8,16]],[[55569,69477],[15,9]],[[55584,69486],[0,3]],[[55584,69489],[16,11]],[[55600,69500],[0,3]],[[55600,69503],[11,2]],[[55611,69505],[9,11]],[[55620,69516],[6,3]],[[55626,69519],[0,3]],[[55626,69522],[8,3]],[[55634,69525],[5,13]],[[55639,69538],[-3,39]],[[55636,69577],[-2,10]],[[55634,69587],[-8,13]],[[55626,69600],[0,6]],[[55626,69606],[0,10]],[[55626,69616],[10,0]],[[55636,69616],[23,-13]],[[55659,69603],[31,22]],[[55690,69625],[22,10]],[[55712,69635],[8,26]],[[55720,69661],[9,3]],[[55729,69664],[0,3]],[[55729,69667],[11,4]],[[55740,69671],[0,3]],[[55740,69674],[52,3]],[[55792,69677],[0,3]],[[55792,69680],[43,-3]],[[55835,69677],[14,6]],[[55849,69683],[19,7]],[[55868,69690],[0,3]],[[55868,69693],[17,3]],[[55885,69696],[16,14]],[[55901,69710],[47,9]],[[55948,69719],[14,-9]],[[55962,69710],[11,-4]],[[55973,69706],[3,-7]],[[55976,69699],[31,-28]],[[56007,69671],[9,42]],[[56016,69713],[11,6]],[[56027,69719],[0,3]],[[56027,69722],[47,13]],[[56074,69735],[61,-9]],[[56135,69726],[17,6]],[[56152,69732],[38,0]],[[56190,69732],[40,-3]],[[56230,69729],[11,19]],[[56241,69748],[5,3]],[[56246,69751],[3,7]],[[56249,69758],[9,9]],[[56258,69767],[0,4]],[[56258,69771],[25,135]],[[56283,69906],[28,17]],[[56311,69923],[33,0]],[[56344,69923],[50,6]],[[56394,69929],[17,3]],[[56411,69932],[10,10]],[[56421,69942],[15,6]],[[56436,69948],[0,4]],[[56436,69952],[97,0]],[[56533,69952],[0,3]],[[56533,69955],[34,6]],[[56567,69961],[16,7]],[[56583,69968],[14,-4]],[[56597,69964],[0,-3]],[[56597,69961],[30,-29]],[[56627,69932],[1,7]],[[56628,69939],[0,13]],[[56628,69952],[0,9]],[[56628,69961],[19,7]],[[56647,69968],[0,7]],[[56647,69975],[26,-7]],[[56673,69968],[0,-4]],[[56673,69964],[66,4]],[[56739,69968],[14,-4]],[[56753,69964],[97,-3]],[[56850,69961],[8,-6]],[[56858,69955],[45,-3]],[[56903,69952],[20,0]],[[56923,69952],[38,-7]],[[56961,69945],[23,-3]],[[56984,69942],[9,6]],[[56993,69948],[0,23]],[[56993,69971],[38,0]],[[57031,69971],[14,4]],[[57045,69975],[31,-23]],[[57076,69952],[20,9]],[[57096,69961],[14,14]],[[57110,69975],[0,25]],[[57110,70000],[27,2],[154,-268],[57,-141]],[[129656,31684],[123,-106],[89,-101],[80,-110],[29,-60]],[[129977,31307],[55,-245],[56,-134]],[[130088,30928],[27,-122],[28,-257]],[[130143,30549],[68,-186],[11,-64]],[[130222,30299],[36,-387],[17,-70]],[[130275,29842],[72,-197],[19,-189],[-2,-1456],[-12,-194],[-28,-135]],[[130324,27671],[-49,-127]],[[130275,27544],[-26,-123],[-19,-194]],[[130230,27227],[-28,-121],[-64,-164]],[[130138,26942],[-11,-63]],[[130127,26879],[-17,-194],[-20,-93],[-72,-159]],[[130018,26433],[-44,-115],[-79,-155]],[[129895,26163],[-42,-117],[-83,-198]],[[129770,25848],[-255,-108],[-143,-79],[-153,-29]],[[129219,25632],[-128,-3],[-195,5],[-148,14]],[[128748,25648],[22,-151],[3,-99],[-10,-97],[-47,-111]],[[128716,25190],[-59,-61],[-145,-83]],[[128512,25046],[-73,-59],[-88,-93],[-53,-81],[-97,-213]],[[128201,24600],[-23,-85]],[[128178,24515],[19,-125],[33,-58],[128,-152]],[[128358,24180],[71,-70]],[[128429,24110],[130,-93]],[[128559,24017],[76,-37]],[[128635,23980],[141,-87],[103,-49]],[[128879,23844],[173,-90]],[[129052,23754],[95,-16],[133,-5]],[[129280,23733],[933,3],[431,9],[89,-9],[78,-41]],[[130811,23695],[18,-26]],[[130829,23669],[19,-61],[8,-99],[-19,-137]],[[130837,23372],[-20,-62],[-128,-269]],[[130689,23041],[-153,-226]],[[130536,22815],[123,-109],[175,-185]],[[130834,22521],[112,-98]],[[130946,22423],[27,-12]],[[130973,22411],[56,-10]],[[131029,22401],[103,28]],[[131132,22429],[119,62]],[[131251,22491],[193,52],[144,84],[72,31]],[[131660,22658],[146,-12]],[[131806,22646],[92,-48],[38,-86],[9,-133]],[[131945,22379],[-137,-41]],[[131808,22338],[-117,-70]],[[131691,22268],[-105,-47],[-93,-57]],[[131493,22164],[-103,-43],[-141,-31],[-53,-22],[-117,-69],[-104,-48],[-141,-87],[-104,-47],[-141,-87],[-103,-49]],[[130486,21681],[-67,-50]],[[130419,21631],[-140,-147]],[[130279,21484],[-91,-109]],[[130188,21375],[-100,-101],[-313,-344]],[[129775,20930],[-107,-134]],[[129668,20796],[-84,-186],[-26,-43]],[[129558,20567],[-61,-81]],[[129497,20486],[-136,-11],[-126,-34]],[[129235,20441],[-147,-65],[-283,-49]],[[128805,20327],[-176,-79]],[[128629,20248],[-167,-30]],[[128462,20218],[-175,-4],[-1595,4]],[[126692,20218],[-174,6]],[[126518,20224],[-149,21],[-124,203],[-71,167]],[[126174,20615],[-78,155],[-42,117],[-78,155]],[[125976,21042],[-59,142],[-34,52]],[[125883,21236],[-38,49],[-231,259]],[[125614,21544],[-79,97],[-49,79]],[[125486,21720],[-36,84]],[[125450,21804],[-57,103]],[[125393,21907],[-89,116],[-57,104]],[[125247,22127],[-14,94]],[[125233,22221],[4,64]],[[125237,22285],[15,86]],[[125252,22371],[55,25]],[[125307,22396],[123,88]],[[125430,22484],[173,185]],[[125603,22669],[70,106]],[[125673,22775],[38,122]],[[125711,22897],[34,232]],[[125745,23129],[-92,24],[-179,67]],[[125474,23220],[-181,114]],[[125293,23334],[-42,33],[-97,166]],[[125154,23533],[-38,79]],[[125116,23612],[-17,95]],[[125099,23707],[5,96]],[[125104,23803],[17,62],[89,111]],[[125210,23976],[148,80]],[[125358,24056],[72,55]],[[125430,24111],[69,66],[126,144]],[[125625,24321],[67,106],[45,115]],[[125737,24542],[78,156],[55,141],[66,129]],[[125936,24968],[42,118],[98,218]],[[126076,25304],[31,184]],[[126107,25488],[22,54]],[[126129,25542],[52,105],[43,115],[81,154]],[[126305,25916],[44,115],[83,188]],[[126432,26219],[17,93],[30,122]],[[126479,26434],[54,134],[32,130],[29,244]],[[126594,26942],[75,194]],[[126669,27136],[16,67]],[[126685,27203],[11,103],[1,142]],[[126697,27448],[-12,139]],[[126685,27587],[-16,66],[-65,161]],[[126604,27814],[-21,102]],[[126583,27916],[-9,143],[0,284]],[[126574,28343],[1,347]],[[126575,28690],[0,474],[5,110]],[[126580,29274],[24,141]],[[126604,29415],[54,134],[31,128],[24,211],[14,68]],[[126727,29956],[62,163],[39,181]],[[126828,30300],[33,84]],[[126861,30384],[95,104],[123,65]],[[127079,30553],[118,71],[104,47],[141,87],[104,49]],[[127546,30807],[144,79]],[[127690,30886],[121,24]],[[127811,30910],[344,3]],[[128155,30913],[106,38],[34,42],[45,91]],[[128340,31084],[27,101],[-22,77]],[[128345,31262],[-120,213]],[[128225,31475],[109,101],[181,109],[63,25]],[[128578,31710],[98,16]],[[128676,31726],[137,4],[136,-6],[133,-20]],[[129082,31704],[157,20],[153,7]],[[129392,31731],[119,-5],[87,-16],[58,-26]],[[120850,54611],[44,-115],[60,-131]],[[120954,54365],[25,-95],[19,-315]],[[120998,53955],[33,-162]],[[121031,53793],[55,-134],[18,-102]],[[121104,53557],[8,-108],[0,-330]],[[121112,53119],[8,-145],[20,-103],[53,-134]],[[121193,52737],[24,-93],[9,-104]],[[121226,52540],[6,-210],[16,-100]],[[121248,52230],[25,-58]],[[121273,52172],[54,-65]],[[121327,52107],[71,-41],[79,-19]],[[121477,52047],[3,-164],[11,-63]],[[121491,51820],[55,-105],[40,-40]],[[121586,51675],[242,-133],[114,-32]],[[121942,51510],[194,-23],[61,-17],[117,-57],[124,-36],[194,-24]],[[122632,51353],[220,21],[89,-1]],[[122941,51373],[114,-26],[86,-74],[29,-52]],[[123170,51221],[16,-62]],[[123186,51159],[-2,-128],[-15,-62]],[[123169,50969],[-75,-158]],[[123094,50811],[-58,-140],[-109,-195],[-58,-55]],[[122869,50421],[-157,-98]],[[122712,50323],[-52,-21],[-140,-31],[-80,-28]],[[122440,50243],[-120,-68]],[[122320,50175],[-105,-48],[-140,-87],[-77,-37]],[[121998,50003],[-48,-29]],[[121950,49974],[-197,-170]],[[121753,49804],[-192,-118]],[[121561,49686],[-76,-88],[-81,-124],[-184,-110],[-128,-70]],[[121092,49294],[-189,-165]],[[120903,49129],[-50,-36]],[[120853,49093],[-220,-121],[-120,-35],[-133,-7],[-371,0]],[[120009,48930],[-167,3]],[[119842,48933],[-99,9],[-93,22]],[[119650,48964],[-175,82],[-94,18]],[[119381,49064],[-226,20],[-134,35]],[[119021,49119],[-100,49]],[[118921,49168],[-84,25],[-125,11],[-254,5],[-63,6]],[[118395,49215],[-61,11]],[[118334,49226],[-174,84]],[[118160,49310],[-219,65],[-120,65]],[[117821,49440],[-139,37]],[[117682,49477],[-178,-9]],[[117504,49468],[-81,-27],[-117,-71],[-103,-50]],[[117203,49320],[-141,-88],[-102,-50]],[[116960,49182],[-171,-93]],[[116789,49089],[-217,-82]],[[116572,49007],[-149,-51],[-234,-28],[-110,-30],[-120,-62]],[[115959,48836],[-221,-61]],[[115738,48775],[-27,-14]],[[115711,48761],[-97,-81],[-84,-101]],[[115530,48579],[-50,-83],[-62,-129]],[[115418,48367],[-46,-38]],[[115372,48329],[-48,-89]],[[115324,48240],[-94,-122]],[[115230,48118],[-151,-161],[-140,-95]],[[114939,47862],[-177,94],[-153,70],[-157,103]],[[114452,48129],[-39,33]],[[114413,48162],[-125,216]],[[114288,48378],[-56,141],[-60,128],[-17,89]],[[114155,48736],[16,90]],[[114171,48826],[122,263],[124,161]],[[114417,49250],[50,83],[75,167],[38,56]],[[114580,49556],[131,154],[97,92],[76,56]],[[114884,49858],[142,88]],[[115026,49946],[76,120],[49,211]],[[115151,50277],[54,133],[25,95]],[[115230,50505],[13,210],[-3,609],[4,177]],[[115244,51501],[24,135]],[[115268,51636],[67,160]],[[115335,51796],[30,122],[0,135],[11,62]],[[115376,52115],[15,62],[116,274]],[[115507,52451],[50,82]],[[115557,52533],[85,97]],[[115642,52630],[128,84],[141,33]],[[115911,52747],[54,16],[121,61]],[[116086,52824],[109,31],[176,18]],[[116371,52873],[111,29]],[[116482,52902],[114,54],[104,159]],[[116700,53115],[270,309],[88,127]],[[117058,53551],[45,114],[78,155]],[[117181,53820],[44,116],[51,104]],[[117276,54040],[39,115]],[[117315,54155],[28,156],[19,57]],[[117362,54368],[58,132],[17,61]],[[117437,54561],[9,63]],[[117446,54624],[261,0]],[[117707,54624],[128,-10],[89,-23],[145,-72],[161,-32],[167,-5],[134,7],[158,41]],[[118689,54530],[143,70]],[[118832,54600],[186,48],[111,-18]],[[119129,54630],[196,-8]],[[119325,54622],[97,8]],[[119422,54630],[92,22],[145,72],[92,23],[131,9]],[[119882,54756],[298,1]],[[120180,54757],[130,13],[61,16]],[[120371,54786],[145,72]],[[120516,54858],[109,33]],[[120625,54891],[123,0]],[[120748,54891],[29,-122],[73,-158]],[[36575,52942],[235,19]],[[36810,52961],[64,19],[177,80]],[[37051,53060],[200,23]],[[37251,53083],[88,80],[99,61]],[[37438,53224],[108,48]],[[37546,53272],[86,49]],[[37632,53321],[126,29]],[[37758,53350],[203,9],[308,-5],[164,-21]],[[38433,53333],[152,-72]],[[38585,53261],[52,-20],[173,-35],[152,4],[113,-21],[144,-81],[103,-49]],[[39322,53059],[139,-88]],[[39461,52971],[104,-50],[139,-88],[105,-48],[118,-69],[52,-22],[84,-20],[111,-29]],[[40174,52645],[116,-59],[74,-24]],[[40364,52562],[39,-103]],[[40403,52459],[61,-207]],[[40464,52252],[64,-130],[44,-116],[78,-155]],[[40650,51851],[44,-115],[78,-156]],[[40772,51580],[47,-114],[49,-82],[97,-128]],[[40965,51256],[36,-55],[125,-272],[51,-181]],[[41177,50748],[25,-85]],[[41202,50663],[-135,-12],[-230,-11]],[[40837,50640],[-156,-28]],[[40681,50612],[-120,-60],[-117,-34]],[[40444,50518],[-220,-32]],[[40224,50486],[-176,-82]],[[40048,50404],[-111,-32],[-92,-149]],[[39845,50223],[-10,-30]],[[39835,50193],[-12,-63],[-19,-192],[-28,-122]],[[39776,49816],[-56,-133],[-28,-123]],[[39692,49560],[-30,-122]],[[39662,49438],[-65,-161],[-16,-67]],[[39581,49210],[-11,-105],[-12,-254],[-13,-108]],[[39545,48743],[-64,-115],[-58,-141],[-48,-80],[-165,-194]],[[39210,48213],[-139,-120]],[[39071,48093],[-105,-51]],[[38966,48042],[-142,-80]],[[38824,47962],[-56,-16]],[[38768,47946],[-148,-12]],[[38620,47934],[-434,-2]],[[38186,47932],[-128,-175]],[[38058,47757],[-376,-414],[-94,-109]],[[37588,47234],[-32,-46]],[[37556,47188],[-54,-124]],[[37502,47064],[-191,-87]],[[37311,46977],[-263,15]],[[37048,46992],[-160,31],[-146,72],[-60,18]],[[36682,47113],[-160,17],[-129,2]],[[36393,47132],[-184,-14]],[[36209,47118],[-83,-29]],[[36126,47089],[-195,-106]],[[35931,46983],[-50,-30]],[[35881,46953],[-119,-108]],[[35762,46845],[-179,-195],[-140,-180],[-135,-300],[-15,-63]],[[35293,46107],[-16,-232]],[[35277,45875],[2,-169],[12,-129],[19,-61],[47,-72]],[[35357,45444],[40,-38],[117,-68],[61,-53]],[[35575,45285],[45,-71],[19,-59]],[[35639,45155],[11,-59]],[[35650,45096],[-118,-8]],[[35532,45088],[-86,-16]],[[35446,45072],[-174,-82]],[[35272,44990],[-90,-23]],[[35182,44967],[-126,-9],[-97,3]],[[34959,44961],[-155,29],[-174,83]],[[34630,45073],[-252,38],[-61,18],[-145,72],[-195,53]],[[33977,45254],[-171,85]],[[33806,45339],[-167,49],[-194,97],[-106,46],[-144,80],[-56,18]],[[33139,45629],[-109,23],[-45,98],[-49,149]],[[32936,45899],[-68,160],[-21,103]],[[32847,46162],[-28,244]],[[32819,46406],[-64,167],[-31,129],[-6,177],[6,105]],[[32724,46984],[14,100]],[[32738,47084],[42,130],[7,51]],[[32787,47265],[-19,76],[-111,224]],[[32657,47565],[223,-28],[336,-10],[125,13]],[[33341,47540],[56,19]],[[33397,47559],[59,59]],[[33456,47618],[87,164]],[[33543,47782],[32,141]],[[33575,47923],[4,74]],[[33579,47997],[-8,291],[-202,71]],[[33369,48359],[-77,46],[-70,62],[-108,117],[-78,100]],[[33036,48684],[-48,81]],[[32988,48765],[-45,114],[-82,156]],[[32861,49035],[-42,114],[-50,101]],[[32769,49250],[-18,54],[-5,91]],[[32746,49395],[25,83]],[[32771,49478],[45,102]],[[32816,49580],[22,126]],[[32838,49706],[8,132]],[[32846,49838],[30,122]],[[32876,49960],[56,133],[28,155],[0,135],[14,162]],[[32974,50545],[42,149]],[[33016,50694],[83,190]],[[33099,50884],[62,109]],[[33161,50993],[147,169]],[[33308,51162],[67,66]],[[33375,51228],[70,57],[148,83],[91,107],[47,111]],[[33731,51586],[67,128],[56,142]],[[33854,51856],[61,127],[15,88]],[[33930,52071],[-7,62]],[[33923,52133],[-114,268],[-85,187]],[[33724,52588],[-18,93]],[[33706,52681],[1,460],[-6,293]],[[33701,53434],[17,121],[25,90]],[[33743,53645],[64,131],[42,115]],[[33849,53891],[80,155]],[[33929,54046],[76,167]],[[34005,54213],[36,52]],[[34041,54265],[80,96],[150,165]],[[34271,54526],[64,68],[117,95]],[[34452,54689],[273,139]],[[34725,54828],[86,18]],[[34811,54846],[26,-123],[83,-187]],[[34920,54536],[65,-238],[96,-146],[56,-73]],[[35137,54079],[139,-161],[207,-216]],[[35483,53702],[89,-61],[81,-39]],[[35653,53602],[91,-70],[123,-129]],[[35867,53403],[281,-320],[111,-95],[67,-29]],[[36326,52959],[83,-13],[166,-4]],[[124361,43017],[98,-107]],[[124459,42910],[46,-36]],[[124505,42874],[124,-68]],[[124629,42806],[47,-31],[195,-176],[158,-108]],[[125029,42491],[42,-38]],[[125071,42453],[72,-20]],[[125143,42433],[117,-6],[349,6]],[[125609,42433],[125,-3],[117,-29]],[[125851,42401],[46,-32]],[[125897,42369],[70,-90],[45,-111]],[[126012,42168],[108,-242]],[[126120,41926],[61,-111],[129,-185]],[[126310,41630],[97,-196],[204,-268]],[[126611,41166],[-121,-87]],[[126490,41079],[-66,-70],[-69,-109]],[[126355,40900],[-96,-215]],[[126259,40685],[-19,-59]],[[126240,40626],[-13,-97],[2,-131],[14,-96]],[[126243,40302],[75,-191],[26,-169]],[[126344,39942],[10,-211],[33,-163]],[[126387,39568],[54,-133],[16,-67]],[[126457,39368],[23,-322],[14,-112]],[[126494,38934],[178,-46],[50,-27]],[[126722,38861],[94,-104],[65,-134]],[[126881,38623],[127,-185],[54,-120]],[[127062,38318],[13,-69],[8,-144]],[[127083,38105],[-5,-477],[-13,-251]],[[127065,37377],[-89,-81]],[[126976,37296],[-74,-89],[-46,-73]],[[126856,37134],[-48,-113]],[[126808,37021],[-87,-129]],[[126721,36892],[-144,-170],[-56,-76]],[[126521,36646],[-80,-167]],[[126441,36479],[-89,-128],[-146,-166]],[[126206,36185],[-57,-75],[-39,-88]],[[126110,36022],[-11,-96],[19,-126]],[[126118,35800],[70,-158],[39,-184]],[[126227,35458],[39,-115]],[[126266,35343],[52,-104],[42,-116]],[[126360,35123],[80,-155],[45,-114]],[[126485,34854],[87,-129],[167,-194]],[[126739,34531],[69,-104]],[[126808,34427],[45,-114],[75,-158],[16,-61]],[[126944,34094],[25,-128]],[[126969,33966],[29,-125]],[[126998,33841],[-106,-32],[-178,-75]],[[126714,33734],[-68,-49],[-128,-119],[-92,-64]],[[126426,33502],[-78,-38],[-116,-77]],[[126232,33387],[-70,-40],[-198,-107],[-106,-46],[-141,-86]],[[125717,33108],[-128,-61]],[[125589,33047],[-117,-74],[-103,-49]],[[125369,32924],[-140,-87]],[[125229,32837],[-105,-48],[-140,-88]],[[124984,32701],[-105,-47],[-142,-81]],[[124737,32573],[-168,-42]],[[124569,32531],[-103,-43]],[[124466,32488],[-94,-57]],[[124372,32431],[-103,-49],[-117,-69]],[[124152,32313],[-53,-22]],[[124099,32291],[-117,-16]],[[123982,32275],[-201,8]],[[123781,32283],[-206,-8],[-409,-4]],[[123166,32271],[-169,2]],[[122997,32273],[-100,9],[-95,23]],[[122802,32305],[-117,58]],[[122685,32363],[-59,26],[-189,54]],[[122437,32443],[-145,73],[-59,17]],[[122233,32533],[-227,16],[-402,-2]],[[121604,32547],[-408,6],[-100,-3]],[[121096,32550],[-129,-27]],[[120967,32523],[-53,-33]],[[120914,32490],[-72,-63],[-92,-131]],[[120750,32296],[-23,-64]],[[120727,32232],[-11,-69],[-11,-280],[-30,-164]],[[120675,31719],[-56,-134],[-56,-243],[-80,-210]],[[120483,31132],[-171,-166],[-57,-27]],[[120255,30939],[-64,-13],[-139,-8],[-984,6]],[[119068,30924],[26,80],[24,134]],[[119118,31138],[6,109]],[[119124,31247],[2,440]],[[119126,31687],[-25,176],[-108,241],[-45,74],[-60,59]],[[118888,32237],[-157,106]],[[118731,32343],[-53,63],[-38,68]],[[118640,32474],[-3,278],[6,98],[28,123],[57,133]],[[118728,33106],[48,215]],[[118776,33321],[80,190],[53,143],[90,163]],[[118999,33817],[34,37]],[[119033,33854],[72,17]],[[119105,33871],[47,-12]],[[119152,33859],[108,-62],[59,-19]],[[119319,33778],[61,-12],[120,3],[55,21]],[[119555,33790],[23,20]],[[119578,33810],[28,50],[17,86],[11,159],[24,87]],[[119658,34192],[64,159],[32,155]],[[119754,34506],[16,59]],[[119770,34565],[45,103],[25,114],[-8,62]],[[119832,34844],[-65,156]],[[119767,35000],[-44,115],[-64,129]],[[119659,35244],[-59,136],[-31,48]],[[119569,35428],[-63,56],[-50,24]],[[119456,35508],[-159,10]],[[119297,35518],[-31,156],[-25,189],[-16,59],[-73,158]],[[119152,36080],[-45,114],[-63,130]],[[119044,36324],[-20,60]],[[119024,36384],[-11,67],[-8,175],[3,428]],[[119008,37054],[-1,461],[11,102]],[[119018,37617],[31,98],[55,84]],[[119104,37799],[87,102],[348,376],[109,130],[58,83],[64,140]],[[119770,38630],[34,57]],[[119804,38687],[125,158],[-45,143],[-22,227],[-17,95]],[[119845,39310],[-111,267],[-30,43]],[[119704,39620],[-39,32]],[[119665,39652],[-93,11]],[[119572,39663],[-184,-91]],[[119388,39572],[-141,-86],[-278,-90]],[[118969,39396],[-3,-30]],[[118966,39366],[-20,-32]],[[118946,39334],[-183,-127]],[[118763,39207],[-104,-48],[-145,-80],[-197,-49],[-51,-22]],[[118266,39008],[-119,-68]],[[118147,38940],[-104,-49],[-141,-86],[-104,-48],[-141,-87],[-100,-52],[-81,-74]],[[117476,38544],[-106,-150]],[[117370,38394],[-178,-115],[-137,-40],[-88,-77],[-98,-54]],[[116869,38108],[-100,-30]],[[116769,38078],[63,149]],[[116832,38227],[101,147],[31,122],[67,159]],[[117031,38655],[16,125]],[[117047,38780],[-5,64]],[[117042,38844],[-12,61],[-69,158],[-20,93]],[[116941,39156],[-6,131]],[[116935,39287],[14,129],[20,59]],[[116969,39475],[64,130],[45,114]],[[117078,39719],[73,157],[18,61]],[[117169,39937],[29,155]],[[117198,40092],[139,329]],[[117337,40421],[156,267]],[[117493,40688],[139,-91]],[[117632,40597],[103,-45],[167,-46]],[[117902,40506],[145,-72]],[[118047,40434],[84,-21],[203,-20],[64,110]],[[118398,40503],[72,93],[95,60]],[[118565,40656],[166,41],[51,23]],[[118782,40720],[220,183]],[[119002,40903],[127,65]],[[119129,40968],[117,73],[101,51]],[[119347,41092],[120,89],[175,182],[120,92]],[[119762,41455],[109,30],[0,136]],[[119871,41621],[-89,72],[-103,46]],[[119679,41739],[-137,27],[-72,39]],[[119470,41805],[-37,38],[-31,78]],[[119402,41921],[0,29]],[[119402,41950],[18,54]],[[119420,42004],[36,35]],[[119456,42039],[153,93],[130,57]],[[119739,42189],[142,85],[104,50]],[[119985,42324],[50,35],[141,128],[75,55],[103,51]],[[120354,42593],[140,87],[105,47],[142,84]],[[120741,42811],[154,84]],[[120895,42895],[112,113]],[[121007,43008],[66,112]],[[121073,43120],[22,95]],[[121095,43215],[17,189]],[[121112,43404],[190,-44]],[[121302,43360],[174,-86],[164,-56],[99,-41]],[[121739,43177],[43,-47]],[[121782,43130],[156,-55]],[[121938,43075],[171,-85]],[[122109,42990],[58,-9]],[[122167,42981],[115,9]],[[122282,42990],[147,72]],[[122429,43062],[191,56]],[[122620,43118],[56,19],[142,82],[104,48],[142,82]],[[123064,43349],[195,50]],[[123259,43399],[172,84]],[[123431,43483],[111,30],[78,71]],[[123620,43584],[90,27],[42,-19]],[[123752,43592],[35,-79],[178,-9]],[[123965,43504],[56,-18]],[[124021,43486],[72,-46],[62,-62]],[[124155,43378],[55,-70]],[[124210,43308],[43,-76],[58,-141],[50,-74]],[[142221,36194],[67,-70],[434,-485],[2,-440]],[[142724,35199],[-10,-166]],[[142714,35033],[-25,-90]],[[142689,34943],[-96,-213]],[[142593,34730],[-64,-97]],[[142529,34633],[-41,-38]],[[142488,34595],[-123,-68],[-70,-53]],[[142295,34474],[-202,-201],[-117,-97],[-103,-51]],[[141873,34125],[-72,-53],[-90,-88],[-144,-170]],[[141567,33814],[-48,-80]],[[141519,33734],[-47,-114],[-87,-129],[-144,-170]],[[141241,33321],[-89,-129]],[[141152,33192],[-61,-139],[-32,-49]],[[141059,33004],[-142,-192],[-32,-53]],[[140885,32759],[-62,-132]],[[140823,32627],[-22,-67],[-59,-16],[-69,3],[-42,-218]],[[140631,32329],[-17,-62],[-73,-158]],[[140541,32109],[-46,-115],[-81,-155]],[[140414,31839],[-26,-63]],[[140388,31776],[-67,-125],[-54,-75],[-118,-136]],[[140149,31440],[-131,-109]],[[140018,31331],[-128,-63],[-117,-72]],[[139773,31196],[-105,-47],[-140,-87],[-105,-48]],[[139423,31014],[-140,-87],[-105,-47]],[[139178,30880],[-140,-86],[-83,-38]],[[138955,30756],[-134,-99]],[[138821,30657],[-105,-109],[-78,-93],[-47,-77]],[[138591,30378],[-21,-57],[-14,-97]],[[138556,30224],[0,-131]],[[138556,30093],[34,-155]],[[138590,29938],[65,-130],[44,-114],[52,-104]],[[138751,29590],[23,-53]],[[138774,29537],[47,-216]],[[138821,29321],[75,-191],[15,-61]],[[138911,29069],[11,-62],[14,-196]],[[138936,28811],[53,-185],[0,-51]],[[138989,28575],[-48,-153],[-39,-183]],[[138902,28239],[-70,-160]],[[138832,28079],[-19,-58]],[[138813,28021],[-11,-128]],[[138802,27893],[9,-64],[54,-116],[57,-75],[108,-117]],[[139030,27521],[92,-82],[109,-49],[244,-31]],[[139475,27359],[-127,-177]],[[139348,27182],[-50,-110],[-9,-64]],[[139289,27008],[0,-65],[19,-94]],[[139308,26849],[59,-102]],[[139367,26747],[91,-116]],[[139458,26631],[57,-102],[36,-85]],[[139551,26444],[103,-145],[120,-136]],[[139774,26163],[-65,-59]],[[139709,26104],[-88,-61],[-82,-41],[-131,-113],[-164,-175],[-111,-85],[-145,-71],[-70,-17]],[[138918,25541],[-68,27]],[[138850,25568],[-121,108]],[[138729,25676],[-44,36],[-147,86]],[[138538,25798],[-173,155]],[[138365,25953],[-67,52]],[[138298,26005],[-104,50],[-93,56]],[[138101,26111],[-98,41]],[[138003,26152],[-175,41]],[[137828,26193],[-25,12]],[[137803,26205],[-117,70],[-104,49]],[[137582,26324],[-141,90],[-71,36]],[[137370,26450],[-231,142],[-71,61]],[[137068,26653],[-42,27]],[[137026,26680],[-248,58]],[[136778,26738],[-94,65],[-113,32],[-192,15]],[[136379,26850],[-89,20]],[[136290,26870],[-97,67]],[[136193,26937],[-197,74],[-56,36]],[[135940,27047],[-181,156],[-109,80],[-127,135],[-53,71]],[[135470,27489],[-71,96],[-231,151]],[[135168,27736],[-103,46]],[[135065,27782],[-139,35],[-50,21]],[[134876,27838],[-122,63],[-154,30]],[[134600,27931],[-96,2]],[[134504,27933],[-159,-15]],[[134345,27918],[-59,-17],[-120,-63],[-131,-34]],[[134035,27804],[-161,-16],[-128,-52]],[[133746,27736],[-69,-59],[-192,-209],[-120,-145]],[[133365,27323],[-47,-80],[-43,-118],[-92,-218],[-147,115]],[[133036,27022],[-159,151],[-77,45]],[[132800,27218],[-109,2]],[[132691,27220],[-139,-69]],[[132552,27151],[-84,-23],[-87,-7]],[[132381,27121],[-89,5],[-85,21],[-120,63]],[[132087,27210],[-146,37],[-222,13]],[[131719,27260],[-94,16]],[[131625,27276],[-201,93]],[[131424,27369],[-169,37],[-198,58]],[[131057,27464],[-62,36],[-131,56]],[[130864,27556],[-114,63],[-127,37]],[[130623,27656],[-299,15]],[[129082,31704],[98,178]],[[129180,31882],[81,109],[91,102]],[[129352,32093],[120,112]],[[129472,32205],[109,53],[139,35]],[[129720,32293],[172,81],[88,21]],[[129980,32395],[158,9]],[[130138,32404],[546,-3],[395,2],[164,-11],[94,-24],[115,-60]],[[131452,32308],[151,-41],[128,-7]],[[131731,32260],[127,9],[92,25],[58,32]],[[132008,32326],[129,85],[197,101]],[[132334,32512],[106,46],[133,112],[223,248],[129,118]],[[132925,33036],[106,54]],[[133031,33090],[44,25]],[[133075,33115],[66,55],[103,105]],[[133244,33275],[185,207],[17,127]],[[133446,33609],[24,90]],[[133470,33699],[-59,177],[-144,301],[-58,81],[-196,229]],[[133013,34487],[-52,87]],[[132961,34574],[-17,62],[-2,128]],[[132942,34764],[47,114]],[[132989,34878],[39,42]],[[133028,34920],[77,43]],[[133105,34963],[61,12],[157,4]],[[133323,34979],[615,-19],[145,24]],[[134083,34984],[44,31]],[[134127,35015],[39,92]],[[134166,35107],[3,182],[-11,76]],[[134158,35365],[-47,159]],[[134111,35524],[184,101],[105,48]],[[134400,35673],[142,85],[103,49],[142,86],[103,49],[140,87],[105,49],[139,88]],[[135274,36166],[104,49],[117,69],[57,21],[190,21]],[[135742,36326],[296,1],[163,-6],[125,-19]],[[136326,36302],[54,-22]],[[136380,36280],[120,-62],[61,-18]],[[136561,36200],[130,-16],[265,-5]],[[136956,36179],[184,22]],[[137140,36201],[67,43],[69,82],[153,14]],[[137429,36340],[111,33]],[[137540,36373],[134,-61],[170,-97]],[[137844,36215],[94,-23],[132,-10],[472,0]],[[138542,36182],[166,10],[94,22]],[[138802,36214],[178,76],[176,23],[52,13]],[[139208,36326],[58,57]],[[139266,36383],[6,80]],[[139272,36463],[-14,48]],[[139258,36511],[-52,126],[-34,243]],[[139172,36880],[-33,129]],[[139139,37009],[-62,169],[-10,72]],[[139067,37250],[8,214]],[[141294,38143],[-20,-135],[-28,-263]],[[141246,37745],[-25,-88],[-59,-133],[-24,-126],[-9,-167]],[[141129,37231],[1,-201],[10,-97],[19,-61]],[[141159,36872],[45,-74]],[[141204,36798],[64,-55],[123,-63]],[[141391,36680],[119,-70],[104,-47],[141,-87]],[[141755,36476],[104,-47],[141,-86]],[[142000,36343],[103,-51]],[[142103,36292],[118,-98]],[[50853,60522],[170,-7],[977,1],[316,-6]],[[52316,60510],[397,8],[106,-3]],[[52819,60515],[103,-9],[100,-23],[115,-58]],[[53137,60425],[128,-38]],[[53265,60387],[69,-7],[284,-3]],[[53618,60377],[270,16],[-2,-522]],[[53886,59871],[-9,-160]],[[53877,59711],[-14,-101],[201,-54]],[[54064,59556],[56,-22]],[[54120,59534],[77,-51],[117,-105]],[[54314,59378],[73,-56],[244,-135]],[[54631,59187],[199,-68]],[[54830,59119],[71,-57],[75,-28],[143,-22]],[[55119,59012],[77,-27],[70,-57]],[[55266,58928],[173,-56]],[[55439,58872],[75,-34],[133,-87],[56,-58],[23,-49]],[[55726,58644],[39,-102],[28,-116]],[[42401,50297],[-114,54],[-137,50]],[[42150,50401],[-120,63],[-147,36]],[[41883,50500],[-223,13],[-147,36]],[[41513,50549],[-148,71]],[[41365,50620],[-163,43]],[[40364,52562],[125,178]],[[40489,52740],[52,107],[11,59]],[[40552,52906],[8,91],[-11,151]],[[40549,53148],[-18,58],[-60,103]],[[40471,53309],[-80,90],[-187,194],[-80,111],[-11,54]],[[40113,53758],[24,77],[31,45]],[[40168,53880],[156,173],[84,122],[36,90]],[[40444,54265],[73,122]],[[40517,54387],[96,113],[177,193],[241,11]],[[41031,54704],[835,-3],[171,10],[97,23],[147,72]],[[42281,54806],[189,51],[138,60]],[[42608,54917],[52,11]],[[42660,54928],[41,0],[120,116],[87,99],[53,83]],[[42961,55226],[31,100]],[[42992,55326],[10,73]],[[43002,55399],[4,111],[-6,569]],[[43000,56079],[3,227],[28,212]],[[43031,56518],[25,82]],[[43056,56600],[175,-105]],[[43231,56495],[127,-62],[117,-69]],[[43475,56364],[81,-26],[143,7]],[[43699,56345],[147,72]],[[43846,56417],[109,33]],[[43955,56450],[109,12],[220,1]],[[44284,56463],[119,14],[80,27]],[[44483,56504],[120,64],[90,24],[160,11]],[[44853,56603],[126,-8]],[[44979,56595],[92,-27],[125,-101]],[[45196,56467],[159,-172],[75,-62]],[[45430,56233],[58,-28],[95,-17],[97,0]],[[45680,56188],[93,17],[175,86]],[[45948,56291],[55,17],[362,50]],[[46365,56358],[78,106]],[[46443,56464],[118,103],[125,63],[153,100],[37,37],[40,118]],[[46916,56885],[6,103],[-6,513],[3,294]],[[46919,57795],[20,233]],[[46939,58028],[123,316]],[[47062,58344],[78,156],[41,118]],[[47181,58618],[65,177],[99,-20],[196,-16],[99,5]],[[47640,58764],[123,26],[120,61]],[[47883,58851],[84,27],[94,11],[192,11],[147,36]],[[48400,58936],[221,115]],[[48621,59051],[117,76],[128,62]],[[48866,59189],[184,115]],[[49050,59304],[83,120],[58,66]],[[49191,59490],[64,51],[118,71]],[[49373,59612],[74,84]],[[49447,59696],[32,84],[41,182]],[[49520,59962],[76,191]],[[49596,60153],[11,63]],[[49607,60216],[0,197]],[[49607,60413],[-20,95],[-25,54],[-142,231]],[[49420,60793],[194,-3],[134,-10],[95,-24],[147,-69]],[[49990,60687],[159,-29],[267,-9],[98,-13]],[[50514,60636],[62,-17],[146,-69],[131,-28]],[[39845,21934],[521,4]],[[40366,21938],[159,-8],[63,-12]],[[40588,21918],[54,-21],[222,-117],[75,-56]],[[40939,21724],[67,-69],[56,-78]],[[41062,21577],[28,-60]],[[41090,21517],[23,-128]],[[41113,21389],[-4,-208],[17,-121]],[[41126,21060],[16,-62]],[[41142,20998],[67,-160],[45,-216],[19,-57]],[[41273,20565],[57,-134],[27,-122],[11,-63],[15,-61]],[[41383,20185],[105,-245]],[[41488,19940],[62,-112]],[[41550,19828],[133,-178],[59,-92],[36,-34]],[[41778,19524],[67,-28]],[[41845,19496],[18,-93]],[[41863,19403],[21,-59],[50,-81],[80,-98]],[[42014,19165],[89,-91]],[[42103,19074],[118,-94]],[[42221,18980],[103,-51],[69,-50],[83,-83],[83,-122],[43,-115],[52,-103]],[[42654,18456],[39,-117]],[[42693,18339],[48,-238]],[[32716,12827],[-61,158],[-74,141]],[[32581,13126],[-74,169]],[[32507,13295],[-148,211]],[[32359,13506],[-80,164]],[[32279,13670],[-48,70]],[[32231,13740],[-64,55],[-123,66],[-116,74],[-104,49],[-142,83]],[[31682,14067],[-86,23],[-89,7]],[[31507,14097],[-87,-5],[-108,-41],[-42,-38]],[[31270,14013],[-63,-97]],[[31207,13916],[-48,-110],[-72,-108],[-173,-201]],[[30914,13497],[-137,-142],[-74,-59]],[[30703,13296],[-101,-54]],[[30602,13242],[-105,-66],[-48,-13]],[[30449,13163],[-50,9]],[[30399,13172],[-42,39]],[[30357,13211],[-22,110],[14,155]],[[30349,13476],[17,61]],[[30366,13537],[74,159]],[[30440,13696],[17,62],[14,131],[-8,232]],[[30463,14121],[-30,122],[-68,162]],[[30365,14405],[-63,249]],[[30302,14654],[30,125],[12,115]],[[30344,14894],[5,236],[-8,253],[13,94]],[[30354,15477],[31,119]],[[30385,15596],[58,133]],[[30443,15729],[37,186]],[[30480,15915],[17,61]],[[30497,15976],[74,157],[42,115],[79,156]],[[30692,16404],[47,114]],[[30739,16518],[69,104]],[[30808,16622],[164,195],[87,128]],[[31059,16945],[47,114],[45,74],[75,91],[125,119]],[[31351,17343],[87,166]],[[31438,17509],[58,174],[28,116]],[[31524,17799],[89,128]],[[31613,17927],[66,133],[31,154]],[[31710,18214],[39,114],[112,212]],[[31861,18540],[-12,90]],[[31849,18630],[-3,63],[17,140],[-152,89],[-98,49]],[[31613,18971],[-98,85]],[[31515,19056],[-47,94]],[[31468,19150],[-20,183]],[[31448,19333],[7,963],[-6,192]],[[31449,20488],[-15,160]],[[31434,20648],[179,80]],[[31613,20728],[30,29]],[[31643,20757],[9,51],[161,76]],[[31813,20884],[132,112],[89,21],[71,37],[65,57]],[[32170,21111],[166,174],[109,90],[103,52]],[[32548,21427],[131,112]],[[32679,21539],[145,152],[111,91],[103,51]],[[33038,21833],[131,112],[145,152]],[[33314,22097],[111,91]],[[33425,22188],[125,67]],[[33550,22255],[196,170]],[[33746,22425],[46,33]],[[33792,22458],[126,66],[44,35]],[[33962,22559],[65,60]],[[35371,22753],[-30,-122],[-31,-81],[76,-93]],[[35386,22457],[82,-124],[45,-114],[109,-159]],[[35622,22060],[95,-82]],[[35717,21978],[84,-33]],[[35801,21945],[88,-3]],[[35889,21942],[111,30]],[[36000,21972],[115,72]],[[36115,22044],[102,53],[67,50]],[[36284,22147],[107,101],[111,82]],[[36502,22330],[128,73]],[[36630,22403],[64,58],[166,173]],[[36860,22634],[65,59]],[[36925,22693],[172,98],[150,140]],[[37247,22931],[182,203],[84,83],[69,51]],[[37582,23268],[83,42],[86,62],[104,99]],[[37855,23471],[44,35]],[[37899,23506],[92,35]],[[37991,23541],[90,-16],[116,-66]],[[38197,23459],[109,-32],[55,-71],[54,-98],[35,-93],[78,-155]],[[38528,23010],[43,-115],[82,-124]],[[38653,22771],[201,-228]],[[38854,22543],[125,-126]],[[38979,22417],[68,-51],[82,-41]],[[39129,22325],[99,-71]],[[39228,22254],[163,-145],[242,-135]],[[39633,21974],[117,-34],[95,-6]],[[23455,55250],[17,-3]],[[23472,55247],[39,-6]],[[23511,55241],[11,-3]],[[23522,55238],[-2,-13]],[[23520,55225],[-5,-3]],[[23515,55222],[0,-10]],[[23515,55212],[-7,-3]],[[23508,55209],[-2,-10]],[[23506,55199],[-5,-4]],[[23501,55195],[-10,-22]],[[23491,55173],[-4,-3]],[[23487,55170],[0,-10]],[[23487,55160],[4,-10]],[[23491,55150],[0,-6]],[[23491,55144],[-4,-6]],[[23487,55138],[-26,-16]],[[23461,55122],[-6,-4]],[[23455,55118],[-69,-23]],[[23386,55095],[-5,-32]],[[23381,55063],[-4,-12]],[[23377,55051],[-7,-4]],[[23370,55047],[11,-45]],[[23381,55002],[0,-3]],[[23381,54999],[0,-14]],[[23381,54985],[5,-3]],[[23386,54982],[11,-71],[37,-84]],[[23434,54827],[5,-3]],[[23439,54824],[0,-52]],[[23439,54772],[-5,-22]],[[23434,54750],[-9,-71],[-31,-27]],[[23394,54652],[-24,-2]],[[23370,54650],[-15,-10]],[[23355,54640],[-5,-4]],[[23350,54636],[-30,-12]],[[23320,54624],[-12,-4]],[[23308,54620],[-34,-3]],[[23274,54617],[-5,3]],[[23269,54620],[0,4]],[[23269,54624],[-9,3]],[[23260,54627],[-16,23]],[[23244,54650],[-5,6]],[[23239,54656],[-1,13]],[[23238,54669],[-8,3]],[[23230,54672],[-17,36]],[[23213,54708],[-5,6]],[[23208,54714],[0,20]],[[23208,54734],[5,3]],[[23213,54737],[17,45]],[[23230,54782],[5,3]],[[23235,54785],[4,13]],[[23239,54798],[5,4]],[[23244,54802],[16,48]],[[23260,54850],[4,7]],[[23264,54857],[5,16]],[[23269,54873],[0,3]],[[23269,54876],[0,6]],[[23269,54882],[5,3]],[[23274,54885],[17,146]],[[23291,55031],[4,20]],[[23295,55051],[0,5]],[[23295,55056],[-4,7]],[[23291,55063],[-16,116]],[[23275,55179],[-6,4]],[[23269,55183],[-5,6]],[[23264,55189],[-4,3]],[[23260,55192],[-35,52]],[[23225,55244],[14,3]],[[23239,55247],[36,-13]],[[23275,55234],[36,4]],[[23311,55238],[83,22],[61,-10]],[[34725,55102],[56,-133],[30,-123]],[[32657,47565],[-170,-58]],[[32487,47507],[-144,-77],[-92,-22]],[[32251,47408],[-95,-8],[-198,-2]],[[31958,47398],[-229,1],[-130,9],[-117,33],[-117,70]],[[31365,47511],[-103,51],[-139,91],[-242,126]],[[30881,47779],[-56,8],[-103,-29]],[[30722,47758],[-189,-109],[-39,-33]],[[30494,47616],[-37,-39]],[[30457,47577],[-61,-135],[-94,-186]],[[30302,47256],[-47,-216]],[[30255,47040],[-75,-191]],[[30180,46849],[-15,-60]],[[30165,46789],[-41,-185]],[[30124,46604],[-39,-79],[-125,-196],[-21,-99]],[[29939,46230],[-69,-196]],[[29870,46034],[-31,-50]],[[29839,45984],[-141,-190]],[[29698,45794],[-87,-186]],[[29611,45608],[-33,-49],[-78,-98]],[[29500,45461],[-48,-73],[-133,-298],[-14,-67],[-22,-211],[-29,-129]],[[29254,44683],[-57,-134]],[[29197,44549],[-18,-101],[-8,-143]],[[29171,44305],[1,-368]],[[29172,43937],[-14,-145]],[[29158,43792],[-31,-89],[-65,-120]],[[29062,43583],[-30,-45]],[[29032,43538],[-69,-47]],[[28963,43491],[-56,-12],[-214,-12],[-92,-14]],[[28601,43453],[-176,-80]],[[28425,43373],[-95,-23],[-234,-11]],[[28096,43339],[-199,16]],[[27897,43355],[-62,18]],[[27835,43373],[-176,82]],[[27659,43455],[-252,36],[-87,29],[-193,107],[-105,88]],[[27022,43715],[-92,125],[-39,27]],[[26891,43867],[-44,19]],[[20761,53296],[167,36]],[[20928,53332],[25,3]],[[20953,53335],[102,0]],[[21055,53335],[60,2]],[[21115,53337],[39,-5]],[[21154,53332],[21,-4]],[[21175,53328],[48,-10]],[[21223,53318],[3,-3]],[[21226,53315],[38,-13]],[[21264,53302],[62,-3]],[[21326,53299],[11,-6]],[[21337,53293],[12,3]],[[21349,53296],[82,-26],[81,26],[129,6],[27,13]],[[21668,53315],[15,3]],[[21683,53318],[130,14]],[[21813,53332],[12,-4]],[[21825,53328],[91,-26]],[[21916,53302],[33,-6]],[[21949,53296],[0,-3]],[[21949,53293],[22,-4]],[[21971,53289],[11,-3]],[[21982,53286],[12,3]],[[21994,53289],[17,7]],[[22011,53296],[14,3]],[[22025,53299],[67,-19]],[[22092,53280],[44,-7]],[[22136,53273],[42,-13]],[[22178,53260],[28,-3]],[[22206,53257],[153,-19]],[[22359,53238],[195,3]],[[22554,53241],[116,6],[106,19],[136,-2]],[[22912,53264],[248,-4]],[[23160,53260],[-16,-22]],[[23144,53238],[-5,-4]],[[23139,53234],[-4,-6]],[[23135,53228],[-5,-3]],[[23130,53225],[-6,-10]],[[23124,53215],[-10,-3]],[[23114,53212],[-35,-29]],[[23079,53183],[-5,-4]],[[23074,53179],[-5,-6]],[[23069,53173],[-4,-3]],[[23065,53170],[-24,-36]],[[23041,53134],[-5,-3]],[[23036,53131],[-25,-39]],[[23011,53092],[-4,-3]],[[23007,53089],[-19,-36]],[[22988,53053],[-5,-3]],[[22983,53050],[-4,-22]],[[22979,53028],[-3,-4]],[[22976,53024],[-18,-55]],[[22958,52969],[-4,-3]],[[22954,52966],[-3,-19]],[[22951,52947],[-5,-7]],[[22946,52940],[0,-28]],[[22946,52912],[5,5]],[[22951,52917],[3,17]],[[22954,52934],[4,3]],[[22958,52937],[18,42]],[[22976,52979],[3,4]],[[22979,52983],[4,22]],[[22983,53005],[5,16]],[[22988,53021],[16,29]],[[23004,53050],[3,3]],[[23007,53053],[0,3]],[[23007,53056],[4,4]],[[23011,53060],[25,45]],[[23036,53105],[5,3]],[[23041,53108],[24,42]],[[23065,53150],[4,4]],[[23069,53154],[19,19]],[[23088,53173],[6,3]],[[23094,53176],[19,17]],[[23113,53193],[11,2]],[[23124,53195],[6,7]],[[23130,53202],[5,3]],[[23135,53205],[34,13]],[[23169,53218],[5,3]],[[23174,53221],[4,10]],[[23178,53231],[5,7]],[[23183,53238],[22,16]],[[23205,53254],[9,-4]],[[23214,53250],[14,-19]],[[23228,53231],[7,-10]],[[23235,53221],[48,-6],[86,-45]],[[23369,53170],[17,-7]],[[23386,53163],[56,-32]],[[23442,53131],[17,-4]],[[23459,53127],[49,-32]],[[23508,53095],[7,-3]],[[23515,53092],[0,-3]],[[23515,53089],[18,-3]],[[23533,53086],[145,-52]],[[23678,53034],[65,-26]],[[23743,53008],[16,-3]],[[23759,53005],[39,-16]],[[23798,52989],[9,-4]],[[23807,52985],[61,-25]],[[23868,52960],[36,-7]],[[23904,52953],[9,-6]],[[23913,52947],[16,-3]],[[23929,52944],[105,-23]],[[24034,52921],[26,-4]],[[24060,52917],[106,-9]],[[24166,52908],[16,-3]],[[24182,52905],[68,-42],[30,10]],[[24280,52873],[3,6]],[[24283,52879],[30,-16]],[[24313,52863],[-6,-3]],[[24307,52860],[-2,-17]],[[24305,52843],[11,3]],[[24316,52846],[0,4]],[[24316,52850],[13,3]],[[24329,52853],[0,4]],[[24329,52857],[9,3]],[[24338,52860],[23,0]],[[24361,52860],[16,-3]],[[24377,52857],[6,-7]],[[24383,52850],[11,3]],[[24394,52853],[17,13]],[[24411,52866],[36,3]],[[24447,52869],[31,13]],[[24478,52882],[14,3]],[[24492,52885],[13,10]],[[24505,52895],[3,3]],[[24508,52898],[5,7]],[[24513,52905],[4,7]],[[24517,52912],[0,67]],[[24517,52979],[-4,4]],[[24513,52983],[14,51]],[[24527,53034],[22,-3]],[[24549,53031],[81,0]],[[24630,53031],[23,3]],[[24653,53034],[45,22],[61,-9]],[[24759,53047],[5,3]],[[24764,53050],[1,-6]],[[24765,53044],[36,0]],[[24801,53044],[33,23]],[[24834,53067],[33,-4]],[[24867,53063],[44,48]],[[24911,53111],[4,4]],[[24915,53115],[2,7]],[[24917,53122],[23,2]],[[24940,53124],[0,-2]],[[24940,53122],[5,-4]],[[24945,53118],[20,0]],[[24965,53118],[2,-3]],[[24967,53115],[86,48]],[[25053,53163],[4,3]],[[25057,53166],[21,17]],[[25078,53183],[14,-4]],[[25092,53179],[17,10]],[[25109,53189],[8,4]],[[25117,53193],[17,12]],[[25134,53205],[15,4]],[[25149,53209],[55,0],[64,41],[62,4]],[[25330,53254],[21,-4]],[[25351,53250],[7,-6]],[[25358,53244],[36,-3]],[[25394,53241],[133,3],[20,-32],[58,16],[67,-39]],[[25672,53189],[14,-3]],[[25686,53186],[16,-10]],[[25702,53176],[6,-3]],[[25708,53173],[5,0]],[[25713,53173],[3,-3]],[[25716,53170],[1,-4]],[[25717,53166],[8,-3]],[[25725,53163],[69,-36]],[[25794,53127],[9,7]],[[25803,53134],[61,-29]],[[25864,53105],[50,-3]],[[25914,53102],[66,16]],[[25980,53118],[4,4]],[[25984,53122],[5,9]],[[25989,53131],[6,3]],[[25995,53134],[103,4]],[[26098,53138],[11,-4]],[[26109,53134],[11,-26]],[[26120,53108],[11,3]],[[26131,53111],[41,-12]],[[26172,53099],[7,-4]],[[26179,53095],[35,-42]],[[26214,53053],[6,-3]],[[26220,53050],[1,-6]],[[26221,53044],[4,-4]],[[26225,53040],[20,-22]],[[26245,53018],[5,-3]],[[26250,53015],[67,-55]],[[26317,52960],[28,-4]],[[26345,52956],[8,-12]],[[26353,52944],[9,-4]],[[26362,52940],[14,-16]],[[26376,52924],[9,-3]],[[26385,52921],[28,-32]],[[26413,52889],[8,-4]],[[26421,52885],[55,-42]],[[26476,52843],[15,-6]],[[26491,52837],[36,-23]],[[26527,52814],[10,-3]],[[26537,52811],[103,-3]],[[26640,52808],[9,3]],[[26649,52811],[64,3]],[[26713,52814],[6,4]],[[26719,52818],[27,22],[95,3],[72,-29]],[[26913,52814],[73,-3]],[[26986,52811],[5,3]],[[26991,52814],[67,4]],[[27058,52818],[12,3]],[[27070,52821],[18,9]],[[27088,52830],[15,4]],[[27103,52834],[34,6]],[[27137,52840],[10,3]],[[27147,52843],[31,10]],[[27178,52853],[9,-3]],[[27187,52850],[97,13]],[[27284,52863],[24,3]],[[27308,52866],[9,0]],[[27317,52866],[11,3]],[[27328,52869],[14,10]],[[27342,52879],[28,3]],[[27370,52882],[23,19]],[[27393,52901],[7,4],[29,0],[7,0]],[[27436,52905],[74,-16]],[[27510,52889],[69,-4]],[[27579,52885],[16,13]],[[27595,52898],[14,3]],[[27609,52901],[51,46]],[[27660,52947],[5,6]],[[27665,52953],[5,10]],[[27670,52963],[4,3]],[[27674,52966],[0,3]],[[27674,52969],[3,4]],[[27677,52973],[30,71]],[[27707,53044],[5,9]],[[27712,53053],[0,101]],[[27712,53154],[-5,6]],[[27707,53160],[-12,23],[46,103]],[[27741,53286],[5,7]],[[27746,53293],[5,9]],[[27751,53302],[4,3]],[[27755,53305],[25,71]],[[27780,53376],[5,4]],[[27785,53380],[0,9]],[[27785,53389],[0,7]],[[27785,53396],[47,58]],[[27832,53454],[6,6]],[[27838,53460],[8,62]],[[27846,53522],[22,0]],[[27868,53522],[15,-7]],[[27883,53515],[5,4]],[[27888,53519],[56,6]],[[27944,53525],[5,-3]],[[27949,53522],[5,-7]],[[27954,53515],[9,-3]],[[27963,53512],[6,-6]],[[27969,53506],[17,-3]],[[27986,53503],[46,16]],[[28032,53519],[40,3]],[[28072,53522],[97,23]],[[28169,53545],[6,2]],[[28175,53547],[61,30]],[[28236,53577],[9,3]],[[28245,53580],[0,3]],[[28245,53583],[8,3]],[[28253,53586],[66,4]],[[28319,53590],[48,0]],[[28367,53590],[34,23],[-20,67]],[[28381,53680],[-9,4]],[[28372,53684],[-2,9]],[[28370,53693],[7,7]],[[28377,53700],[0,36]],[[28377,53736],[-5,2]],[[28372,53738],[-16,14]],[[28356,53752],[-6,3]],[[28350,53755],[-30,16]],[[28320,53771],[-14,3]],[[28306,53774],[-17,16]],[[28289,53790],[-8,3]],[[28281,53793],[-61,46],[-46,71]],[[28174,53910],[-10,3]],[[28164,53913],[-11,13]],[[28153,53926],[-4,3]],[[28149,53929],[-10,19]],[[28139,53948],[-4,3]],[[28135,53951],[-41,20]],[[28094,53971],[-6,3]],[[28088,53974],[-20,20]],[[28068,53994],[-4,3]],[[28064,53997],[-78,81]],[[27986,54078],[-12,3]],[[27974,54081],[-16,16]],[[27958,54097],[-6,3]],[[27952,54100],[-59,84],[-70,29]],[[27823,54213],[-7,3]],[[27816,54216],[-75,-6]],[[27741,54210],[-25,-3]],[[27716,54207],[0,3]],[[27716,54210],[-11,3]],[[27705,54213],[-84,3]],[[27621,54216],[-15,4]],[[27606,54220],[-47,7]],[[27559,54227],[-8,2]],[[27551,54229],[-6,7]],[[27545,54236],[-19,-4]],[[27526,54232],[-117,-1]],[[27409,54231],[-59,83],[-120,134],[21,92],[57,113],[110,157],[55,150],[39,208]],[[27512,55168],[97,-26],[106,-13]],[[27715,55129],[182,-5],[334,0]],[[28231,55124],[153,0]],[[28384,55124],[270,3],[167,8]],[[28821,55135],[264,-13]],[[29085,55122],[239,10]],[[29324,55132],[97,22],[115,58]],[[29536,55212],[128,35]],[[29664,55247],[134,11]],[[29798,55258],[136,44],[164,109]],[[30098,55411],[187,-19],[114,-28]],[[30399,55364],[72,-43],[184,-140]],[[30655,55181],[175,-59]],[[30830,55122],[816,-3],[190,21]],[[31836,55140],[175,82]],[[32011,55222],[222,63],[142,81],[104,49]],[[32479,55415],[141,86],[177,73],[107,36],[53,27]],[[32957,55637],[131,54]],[[33088,55691],[173,88]],[[33261,55779],[62,14]],[[33323,55793],[224,6]],[[33547,55799],[154,-31]],[[33701,55768],[142,-82],[105,-49]],[[33948,55637],[117,-69],[135,-43]],[[34200,55525],[110,-32],[120,-63]],[[34430,55430],[139,-37]],[[34569,55393],[106,-11]],[[34675,55382],[31,-222],[19,-58]],[[46190,61876],[655,-728]],[[46845,61148],[92,-109],[63,-88]],[[47000,60951],[209,-21],[270,-3]],[[47479,60927],[265,1]],[[47744,60928],[170,-11],[95,-23]],[[48009,60894],[175,-81],[125,-19]],[[48309,60794],[197,-6],[914,5]],[[43056,56600],[100,148]],[[43156,56748],[119,144],[39,63]],[[43314,56955],[9,49]],[[43323,57004],[-9,51],[-74,106],[-235,249],[-111,107]],[[42894,57517],[-150,63]],[[42744,57580],[-154,103],[-63,86]],[[42527,57769],[-45,168],[-56,132]],[[42426,58069],[-30,133]],[[42396,58202],[-3,107]],[[42393,58309],[16,141]],[[42409,58450],[79,194],[60,177]],[[42548,58821],[37,83],[59,148]],[[42644,59052],[58,85],[61,34],[73,68],[78,52]],[[42914,59291],[83,40]],[[42997,59331],[87,66]],[[43084,59397],[100,103],[312,348]],[[43496,59848],[39,150]],[[43535,59998],[66,130]],[[43601,60128],[108,237],[14,58]],[[43723,60423],[-8,92]],[[43715,60515],[-27,51],[-78,74]],[[43610,60640],[-73,36]],[[43537,60676],[-86,65]],[[43451,60741],[-64,95]],[[43387,60836],[-48,109],[-74,128]],[[43265,61073],[-34,67]],[[43231,61140],[52,-3]],[[43283,61137],[45,3]],[[43328,61140],[50,0]],[[43378,61140],[6,0]],[[43384,61140],[41,-3]],[[43425,61137],[3,0]],[[43428,61137],[29,7]],[[43457,61144],[0,-4]],[[43457,61140],[18,4]],[[43475,61144],[0,-4]],[[43475,61140],[25,4]],[[43500,61144],[0,3]],[[43500,61147],[40,0]],[[43540,61147],[0,4]],[[43540,61151],[9,6]],[[43549,61157],[0,-3]],[[43549,61154],[19,3]],[[43568,61157],[2,13]],[[43570,61170],[3,3]],[[43573,61173],[8,6]],[[43581,61179],[18,16]],[[43599,61195],[0,-6]],[[43599,61189],[14,-6]],[[43613,61183],[7,3]],[[43620,61186],[25,-3]],[[43645,61183],[0,-4]],[[43645,61179],[18,4]],[[43663,61183],[2,6]],[[43665,61189],[2,-3]],[[43667,61186],[24,3]],[[43691,61189],[0,-6]],[[43691,61183],[50,3]],[[43741,61186],[46,3]],[[43787,61189],[59,6]],[[43846,61195],[20,13]],[[43866,61208],[11,3]],[[43877,61211],[0,-3]],[[43877,61208],[10,-6]],[[43887,61202],[0,-3]],[[43887,61199],[18,-4]],[[43905,61195],[99,16]],[[44004,61211],[17,4]],[[44021,61215],[6,7]],[[44027,61222],[17,3]],[[44044,61225],[13,9]],[[44057,61234],[36,10]],[[44093,61244],[6,6]],[[44099,61250],[23,17]],[[44122,61267],[30,10]],[[44152,61277],[17,22]],[[44169,61299],[31,13]],[[44200,61312],[24,-3]],[[44224,61309],[9,9]],[[44233,61318],[33,-3]],[[44266,61315],[0,3]],[[44266,61318],[22,4]],[[44288,61322],[0,3]],[[44288,61325],[17,6]],[[44305,61331],[0,7]],[[44305,61338],[50,3]],[[44355,61341],[0,-3]],[[44355,61338],[40,12]],[[44395,61350],[0,7]],[[44395,61357],[0,10]],[[44395,61367],[0,3]],[[44395,61370],[11,3]],[[44406,61373],[24,-19]],[[44430,61354],[1,-4]],[[44431,61350],[66,-2]],[[44497,61348],[25,-4]],[[44522,61344],[18,4]],[[44540,61348],[27,6]],[[44567,61354],[50,7]],[[44617,61361],[0,3]],[[44617,61364],[25,3]],[[44642,61367],[39,0]],[[44681,61367],[11,3]],[[44692,61370],[0,3]],[[44692,61373],[61,4]],[[44753,61377],[18,3]],[[44771,61380],[32,-3]],[[44803,61377],[15,9]],[[44818,61386],[19,3]],[[44837,61389],[0,-3]],[[44837,61386],[78,10]],[[44915,61396],[0,3]],[[44915,61399],[30,3]],[[44945,61402],[0,-3]],[[44945,61399],[9,-3]],[[44954,61396],[0,3]],[[44954,61399],[50,6]],[[45004,61405],[0,4]],[[45004,61409],[40,7]],[[45044,61416],[14,3]],[[45058,61419],[50,2]],[[45108,61421],[0,4]],[[45108,61425],[11,-4]],[[45119,61421],[2,7]],[[45121,61428],[23,-3]],[[45144,61425],[2,7]],[[45146,61432],[25,3]],[[45171,61435],[0,3]],[[45171,61438],[19,3]],[[45190,61441],[7,0]],[[45197,61441],[24,7]],[[45221,61448],[19,9]],[[45240,61457],[42,3]],[[45282,61460],[0,4]],[[45282,61464],[48,9]],[[45330,61473],[3,7]],[[45333,61480],[33,3]],[[45366,61483],[16,6]],[[45382,61489],[1,0]],[[45383,61489],[13,4]],[[45396,61493],[7,6]],[[45403,61499],[50,0]],[[45453,61499],[0,4]],[[45453,61503],[11,3]],[[45464,61506],[22,10]],[[45486,61516],[11,6]],[[45497,61522],[0,3]],[[45497,61525],[9,3]],[[45506,61528],[0,4]],[[45506,61532],[11,3]],[[45517,61535],[0,3]],[[45517,61538],[16,3]],[[45533,61541],[0,3]],[[45533,61544],[25,4]],[[45558,61548],[17,7]],[[45575,61555],[45,9]],[[45620,61564],[0,3]],[[45620,61567],[19,4]],[[45639,61571],[36,16]],[[45675,61587],[16,3]],[[45691,61590],[0,3]],[[45691,61593],[17,6]],[[45708,61599],[17,7]],[[45725,61606],[5,3]],[[45730,61609],[9,6]],[[45739,61615],[22,7]],[[45761,61622],[9,7]],[[45770,61629],[19,2]],[[45789,61631],[0,4]],[[45789,61635],[17,3]],[[45806,61638],[0,4]],[[45806,61642],[16,3]],[[45822,61645],[0,3]],[[45822,61648],[20,6]],[[45842,61654],[8,4]],[[45850,61658],[4,3]],[[45854,61661],[5,6]],[[45859,61667],[25,13]],[[45884,61680],[0,3]],[[45884,61683],[17,4]],[[45901,61687],[10,10]],[[45911,61697],[20,3]],[[45931,61700],[0,6]],[[45931,61706],[20,10]],[[45951,61716],[0,3]],[[45951,61719],[9,3]],[[45960,61722],[5,7]],[[45965,61729],[8,3]],[[45973,61732],[0,3]],[[45973,61735],[9,3]],[[45982,61738],[0,4]],[[45982,61742],[16,6]],[[45998,61748],[3,6]],[[46001,61754],[9,4]],[[46010,61758],[5,6]],[[46015,61764],[8,4]],[[46023,61768],[5,6]],[[46028,61774],[18,10]],[[46046,61784],[5,6]],[[46051,61790],[22,7]],[[46073,61797],[5,12]],[[46078,61809],[15,11]],[[46093,61820],[14,16]],[[46107,61836],[30,9]],[[46137,61845],[22,19]],[[46159,61864],[7,7]],[[46166,61871],[2,9]],[[46168,61880],[11,7]],[[46179,61887],[11,-11]],[[30302,14654],[-93,-58],[-117,-104]],[[30092,14492],[-128,-141],[-69,-105],[-24,-62],[-15,-100],[-3,-138],[6,-455]],[[29859,13491],[-20,-168],[-56,-117]],[[29783,13206],[-130,-182],[-98,-195]],[[29555,12829],[-130,-186],[-29,-55]],[[29396,12588],[-47,-110],[-71,-89],[-46,-31],[-113,-22]],[[29119,12336],[-112,20]],[[29007,12356],[-169,84]],[[28838,12440],[-138,17]],[[28700,12457],[-80,138],[-77,104]],[[28543,12699],[-104,121],[-410,452]],[[28029,13272],[-60,74]],[[27969,13346],[-50,80],[-45,114]],[[27874,13540],[-62,130]],[[27812,13670],[-24,91]],[[27788,13761],[-9,131],[0,302]],[[27779,14194],[-16,129]],[[27763,14323],[-9,31]],[[27754,14354],[-24,55],[-124,227]],[[27606,14636],[36,140]],[[27642,14776],[20,207],[-35,76]],[[27627,15059],[-68,129],[-59,140],[-86,121]],[[27414,15449],[-83,22],[-97,57],[-64,56],[-245,272],[-67,13],[-112,60],[-99,107],[-85,139]],[[26562,16175],[-131,68],[-107,45],[-142,81],[-54,18]],[[26128,16387],[-141,32],[-51,21]],[[25936,16440],[-120,64],[-111,30]],[[25705,16534],[-148,4],[-57,13],[-95,60],[-64,96],[-92,215],[-23,93],[-8,103],[-3,353]],[[25215,17471],[-20,137]],[[25195,17608],[-105,242],[-64,96]],[[25026,17946],[-92,62]],[[24934,18008],[-192,53],[-176,77]],[[24566,18138],[-92,13],[-222,6]],[[24252,18157],[-90,17],[-55,27],[-59,60],[-41,85],[-16,108],[-1,152],[11,428],[-6,178],[-33,98]],[[23962,19310],[-38,16]],[[24864,26556],[111,91],[149,79]],[[25124,26726],[199,134]],[[25323,26860],[109,191],[31,87],[13,101],[3,140],[-7,317]],[[25472,27696],[19,168]],[[25491,27864],[39,83]],[[25530,27947],[81,77],[124,64],[117,70],[104,47],[144,88],[76,36]],[[26176,28329],[167,100]],[[26343,28429],[159,59]],[[26502,28488],[81,-22],[174,-30],[54,-17],[144,-80],[103,-49],[143,-81],[220,-63],[146,-74],[221,-63]],[[27788,28009],[145,-72],[60,-17]],[[27993,27920],[60,-8],[317,-8],[124,-18],[174,-87],[131,-53]],[[28799,27746],[147,-71],[94,70]],[[29040,27745],[238,129],[85,21]],[[29363,27895],[139,7]],[[29502,27902],[121,32],[172,84]],[[29795,28018],[194,52]],[[29989,28070],[76,52],[117,106],[73,56]],[[30255,28284],[103,51]],[[30358,28335],[144,82],[111,28],[109,-94]],[[30722,28351],[125,-68]],[[30847,28283],[45,-32],[151,-135]],[[31043,28116],[46,-35]],[[31089,28081],[125,-68]],[[31214,28013],[45,-33]],[[31259,27980],[64,-60],[162,-174],[91,-73],[48,-23]],[[31624,27650],[51,-11]],[[31675,27639],[158,-8],[30,123]],[[31863,27754],[57,131],[25,94],[10,138],[4,317],[8,68]],[[31967,28502],[14,66],[74,159]],[[32055,28727],[34,85],[64,110],[98,128]],[[32251,29050],[50,82],[47,113]],[[32348,29245],[73,158],[27,124]],[[32448,29527],[28,122]],[[32476,29649],[75,195],[23,246],[21,103]],[[32595,30193],[34,80]],[[32629,30273],[81,141],[63,47],[152,48],[146,74],[134,51],[90,49]],[[128031,32309],[-81,-187],[-22,-93]],[[127928,32029],[-4,-197],[22,-96]],[[127946,31736],[60,-103],[124,-117]],[[128130,31516],[95,-41]],[[125252,22371],[-221,16]],[[125031,22387],[-196,-9]],[[124835,22378],[-92,-23],[-145,-71]],[[124598,22284],[-61,-17],[-129,-13]],[[124408,22254],[-298,-3],[-130,-8]],[[123980,22243],[-92,-23],[-146,-71],[-61,-18]],[[123681,22131],[-63,-9]],[[123618,22122],[-265,-10]],[[123353,22112],[-133,2]],[[123220,22114],[-160,20],[-61,24]],[[122999,22158],[-188,106],[-48,36],[-65,76]],[[122698,22376],[-83,162],[-97,89]],[[122518,22627],[-125,32],[-299,4]],[[122094,22663],[-131,19],[-58,24]],[[121905,22706],[-50,31],[-264,194],[-204,-185]],[[121387,22746],[-128,-147],[-52,-82]],[[121207,22517],[-97,-217],[-29,-88]],[[121081,22212],[-11,-68]],[[121070,22144],[-8,-385]],[[121062,21759],[-25,-168],[-25,-55],[-120,-202],[-78,-14]],[[120814,21320],[-125,-10]],[[120689,21310],[-443,-1],[-151,-27]],[[120095,21282],[-272,-150]],[[119823,21132],[-214,-183],[-176,-108]],[[119433,20841],[-92,-88]],[[119341,20753],[-244,-267],[-71,-63]],[[119026,20423],[-53,-33]],[[118973,20390],[-152,-30]],[[118821,20360],[-128,-3],[-321,6],[-86,76]],[[118286,20439],[-98,53],[-99,29]],[[118089,20521],[-114,-14],[-118,5]],[[117857,20512],[-84,20],[-119,62],[-108,29]],[[117546,20623],[-143,-15]],[[117403,20608],[-244,-135]],[[117159,20473],[-212,-181]],[[116947,20292],[-115,-52]],[[116832,20240],[-202,-16]],[[116630,20224],[-685,6],[-220,10]],[[115725,20240],[-70,247],[-67,161]],[[115588,20648],[-24,143],[-6,224],[10,1251],[-5,111]],[[115563,22377],[-27,143],[-32,64]],[[115504,22584],[-149,199]],[[115355,22783],[-104,151],[-44,26]],[[115207,22960],[-89,72]],[[115118,23032],[-164,174]],[[114954,23206],[-154,185]],[[114800,23391],[-50,72],[-194,15]],[[114556,23478],[-426,2],[-87,12]],[[114043,23492],[-108,49]],[[113935,23541],[-47,40],[-173,182]],[[113715,23763],[-115,97],[-102,55]],[[113498,23915],[-75,57],[-68,70]],[[113355,24042],[-85,102]],[[113270,24144],[-171,172],[-64,57]],[[113035,24373],[-122,70]],[[112913,24443],[-123,91]],[[112790,24534],[-136,142],[-353,397]],[[112301,25073],[-90,92],[-75,57],[-102,52]],[[112034,25274],[-142,80]],[[111892,25354],[-59,16],[-120,12],[-907,-5],[-92,3]],[[110714,25380],[-90,11],[-109,52]],[[110515,25443],[-164,146],[-50,35],[-198,94]],[[110103,25718],[-99,39]],[[109460,27549],[65,96]],[[109525,27645],[36,85]],[[109561,27730],[17,103],[10,210]],[[109588,28043],[25,169]],[[109613,28212],[56,134],[31,128]],[[109700,28474],[8,105],[-6,212]],[[109702,28791],[-32,128]],[[109670,28919],[-57,133],[-44,151]],[[109569,29203],[-50,132]],[[109519,29335],[197,81],[62,16]],[[109778,29432],[254,35]],[[110032,29467],[152,69]],[[110184,29536],[54,21],[283,47]],[[110521,29604],[173,72],[87,9],[74,-16]],[[110855,29669],[148,-152]],[[111003,29517],[84,-63],[219,-120]],[[111306,29334],[61,-17]],[[111367,29317],[96,-12],[333,-3],[98,7]],[[111894,29309],[95,17],[60,24]],[[112049,29350],[112,68],[103,50]],[[112264,29468],[142,80]],[[112406,29548],[64,17],[133,5]],[[112603,29570],[67,-9]],[[112670,29561],[93,-25],[233,72]],[[112996,29608],[145,74],[125,26],[196,6],[901,-9]],[[114363,29705],[98,5]],[[114461,29710],[64,9],[89,35]],[[114614,29754],[78,61],[117,124],[141,171]],[[114950,30110],[96,100],[106,133],[57,93]],[[115209,30436],[93,236]],[[115302,30672],[44,216]],[[115346,30888],[19,57],[89,171]],[[115454,31116],[57,59],[57,20]],[[115568,31195],[90,11],[229,-1],[166,-10]],[[116053,31195],[125,-28]],[[116178,31167],[120,-60],[139,-36]],[[116437,31071],[253,-21]],[[116690,31050],[65,-13]],[[116755,31037],[209,-88],[67,-14]],[[117031,30935],[103,-8],[1934,-3]],[[126998,33841],[50,-93],[31,-86],[60,-104]],[[127139,33558],[36,-47],[104,-102]],[[127279,33409],[124,-70]],[[127403,33339],[96,-65]],[[127499,33274],[153,-154]],[[127652,33120],[148,-166],[108,-153]],[[127908,32801],[45,-114],[64,-129]],[[128017,32558],[18,-58]],[[128035,32500],[7,-64],[-11,-127]],[[8737,55864],[18,-71]],[[8755,55793],[-10,-3]],[[8745,55790],[-14,-13]],[[8731,55777],[-9,-3]],[[8722,55774],[-30,26]],[[8692,55800],[-3,3]],[[8689,55803],[-5,36]],[[8684,55839],[8,3]],[[8692,55842],[30,19]],[[8722,55861],[15,3]],[[8897,55871],[-7,-3]],[[8890,55868],[7,3]],[[2976,57409],[5,-10]],[[2981,57399],[-7,0]],[[2974,57399],[-4,6]],[[2970,57405],[6,4]],[[2820,57839],[3,-4]],[[2823,57835],[25,-48]],[[2848,57787],[5,-3]],[[2853,57784],[20,-32]],[[2873,57752],[5,-7]],[[2878,57745],[0,-4]],[[2878,57741],[11,-3]],[[2889,57738],[29,-68]],[[2918,57670],[5,-3]],[[2923,57667],[11,-13]],[[2934,57654],[6,-3]],[[2940,57651],[3,-9]],[[2943,57642],[5,-20]],[[2948,57622],[-17,4]],[[2931,57626],[7,3]],[[2938,57629],[-60,100]],[[2878,57729],[-5,6]],[[2873,57735],[-45,81]],[[2828,57816],[-8,9]],[[2820,57825],[-6,10]],[[2814,57835],[-2,7]],[[2812,57842],[8,-3]],[[10732,71465],[42,-492]],[[10774,70973],[-30,-274],[-12,-71]],[[10732,70628],[-74,-195],[-20,-103],[-9,-144],[-2,-331],[-8,-107],[-20,-103],[-64,-161]],[[10535,69484],[-26,-177]],[[10509,69307],[-8,-334],[-33,-170],[-105,-246],[-121,-228],[-113,-125]],[[10129,68204],[18,-120],[45,-111],[78,-79],[243,-134],[128,-60],[153,-105],[50,-57],[25,-72]],[[10869,67466],[2,-600],[-19,-169],[-56,-118],[-130,-181],[-65,-140],[-110,-154],[-187,-217],[-97,-126]],[[10207,65761],[-129,-450]],[[10078,65311],[-127,-212],[-39,-81],[-23,-101],[-8,-105],[3,-177],[18,-103],[35,-87],[100,-159]],[[10037,64286],[-23,-172],[-8,-135],[3,-166],[33,-156],[111,-242],[148,-209],[33,-55],[31,-96],[16,-172],[-5,-247]],[[10376,62636],[-19,-137]],[[10357,62499],[-58,-117],[-129,-182]],[[10170,62200],[-81,-162],[-49,-66]],[[10040,61972],[-54,-64]],[[9986,61908],[-130,-4],[-111,-30],[-221,-117],[-141,-87],[-104,-47],[-141,-85],[-76,-37],[-89,-69],[-34,-44]],[[8939,61388],[-63,-136]],[[8876,61252],[-62,-130],[-19,-59]],[[8795,61063],[-14,-130],[0,-236]],[[8781,60697],[55,-11]],[[8836,60686],[100,-49]],[[8936,60637],[39,-40]],[[8975,60597],[59,-101]],[[9034,60496],[50,-127]],[[9084,60369],[14,-78]],[[9098,60291],[-8,-53],[-84,-209],[-81,-155],[-119,-273],[-58,-244],[-75,-192],[-18,-208],[-5,-682],[5,-140]],[[8655,58135],[26,-135]],[[8681,58000],[28,-58],[147,-209],[92,-190]],[[8948,57543],[158,-199]],[[9177,56307],[-123,-10]],[[9054,56297],[-58,-3]],[[8996,56294],[-60,-29]],[[8936,56265],[-21,-3]],[[8915,56262],[-37,-16]],[[8878,56246],[-11,-3]],[[8867,56243],[-22,-16]],[[8845,56227],[-12,-4]],[[8833,56223],[-18,-19]],[[8815,56204],[-4,-10]],[[8811,56194],[-19,-26]],[[8792,56168],[-9,-3]],[[8783,56165],[0,-7]],[[8783,56158],[-8,-6]],[[8775,56152],[-55,9]],[[8720,56161],[-34,4]],[[8686,56165],[-14,-7]],[[8672,56158],[-8,-2]],[[8664,56156],[-90,-17]],[[8574,56139],[-15,6]],[[8559,56145],[-51,-16]],[[8508,56129],[-16,-6]],[[8492,56123],[-15,-13]],[[8477,56110],[-6,-4]],[[8471,56106],[-29,-22],[-85,0]],[[8357,56084],[-8,3]],[[8349,56087],[-45,10]],[[8304,56097],[-7,-3]],[[8297,56094],[-101,-20]],[[8196,56074],[-10,4]],[[8186,56078],[-49,0]],[[8137,56078],[-10,-4]],[[8127,56074],[-136,4]],[[7991,56078],[-12,3]],[[7979,56081],[-17,0]],[[7962,56081],[0,-7]],[[7962,56074],[-22,4]],[[7940,56078],[-41,0]],[[7899,56078],[-20,-26],[-104,-10],[-43,32],[-50,-13]],[[7682,56061],[-7,-3]],[[7675,56058],[-82,-68]],[[7593,55990],[-9,-3]],[[7584,55987],[-22,3]],[[7562,55990],[-11,4]],[[7551,55994],[-3,6]],[[7548,56000],[-15,3]],[[7533,56003],[-75,-74]],[[7458,55929],[-7,-3]],[[7451,55926],[0,-3]],[[7451,55923],[-6,-4]],[[7445,55919],[-17,-55]],[[7428,55864],[-3,-3]],[[7425,55861],[0,-3]],[[7425,55858],[-17,-3]],[[7408,55855],[-11,-20]],[[7397,55835],[-5,-6]],[[7392,55829],[-75,-68]],[[7317,55761],[-8,3]],[[7309,55764],[-49,-3]],[[7260,55761],[-11,-4]],[[7249,55757],[-13,-9]],[[7236,55748],[-8,-3]],[[7228,55745],[-17,-16]],[[7211,55729],[-5,-4]],[[7206,55725],[-31,-51]],[[7175,55674],[-6,-4]],[[7169,55670],[-31,-12],[-45,-104],[-60,10]],[[7033,55564],[-6,3]],[[7027,55567],[-5,16]],[[7022,55583],[-18,7]],[[7004,55590],[-35,25]],[[6969,55615],[-8,4]],[[6961,55619],[-49,-39]],[[6912,55580],[-8,3]],[[6904,55583],[-50,10],[-47,49]],[[6807,55642],[-5,3]],[[6802,55645],[-15,9]],[[6787,55654],[-7,4]],[[6780,55658],[-40,42]],[[6740,55700],[-9,6]],[[6731,55706],[-64,46]],[[6667,55752],[-10,3]],[[6657,55755],[-53,25]],[[6604,55780],[-5,4]],[[6599,55784],[-3,9]],[[6596,55793],[-9,3]],[[6587,55796],[-8,10]],[[6579,55806],[-19,3]],[[6560,55809],[0,4]],[[6560,55813],[-18,3]],[[6542,55816],[-16,9]],[[6526,55825],[-33,4]],[[6493,55829],[-89,-10]],[[6404,55819],[-11,-3]],[[6393,55816],[-18,-10]],[[6375,55806],[-22,-3]],[[6353,55803],[-33,-10]],[[6320,55793],[-8,-3]],[[6312,55790],[0,-13]],[[6312,55777],[-9,-3]],[[6303,55774],[-36,-42]],[[6267,55732],[-5,-7]],[[6262,55725],[-4,-19]],[[6258,55706],[-7,-3]],[[6251,55703],[-4,-6]],[[6247,55697],[-8,-4]],[[6239,55693],[-42,-39],[-44,-3]],[[6153,55651],[-11,-3]],[[6142,55648],[-56,-6],[-100,39]],[[5986,55681],[-26,-4]],[[5960,55677],[-160,61],[-42,-16]],[[5758,55722],[-4,-3]],[[5754,55719],[-69,-10]],[[5685,55709],[-30,4]],[[5655,55713],[-37,-13]],[[5618,55700],[-8,-3]],[[5610,55697],[-17,-11]],[[5593,55686],[-11,4]],[[5582,55690],[-20,-16]],[[5562,55674],[-14,-7]],[[5548,55667],[-24,-32]],[[5524,55635],[-3,-3]],[[5521,55632],[-150,-68]],[[5371,55564],[-20,-3]],[[5351,55561],[-167,-30],[-75,11]],[[5109,55542],[-25,2]],[[5084,55544],[-93,10]],[[4991,55554],[-16,4]],[[4975,55558],[-66,25]],[[4909,55583],[-15,3]],[[4894,55586],[-42,-6],[-106,33],[-114,12],[-183,0],[-245,-48]],[[4204,55577],[-50,-7]],[[4154,55570],[0,-3]],[[4154,55567],[-37,-9]],[[4117,55558],[-13,-5]],[[4104,55553],[-12,-2]],[[4092,55551],[-13,-7]],[[4079,55544],[-17,-2]],[[4062,55542],[-45,-23],[-66,0],[-70,23]],[[3881,55542],[-19,2]],[[3862,55544],[-8,7]],[[3854,55551],[-32,7]],[[3822,55558],[0,3]],[[3822,55561],[-33,3]],[[3789,55564],[-58,13]],[[3731,55577],[-4,-3]],[[3727,55574],[-135,61]],[[3592,55635],[-12,3]],[[3580,55638],[-10,10]],[[3570,55648],[-10,3]],[[3560,55651],[-103,81]],[[3457,55732],[-8,3]],[[3449,55735],[0,3]],[[3449,55738],[-6,3]],[[3443,55741],[-49,52]],[[3394,55793],[-3,3]],[[3391,55796],[-33,33]],[[3358,55829],[-6,3]],[[3352,55832],[-6,10]],[[3346,55842],[-8,3]],[[3338,55845],[-2,10]],[[3336,55855],[-4,3]],[[3332,55858],[-19,33]],[[3313,55891],[-5,3]],[[3308,55894],[-1,6]],[[3307,55900],[-6,3]],[[3301,55903],[-18,32]],[[3283,55935],[-3,7]],[[3280,55942],[-4,9]],[[3276,55951],[-5,4]],[[3271,55955],[-19,74]],[[3252,56029],[-5,4]],[[3247,56033],[-25,48]],[[3222,56081],[-4,9]],[[3218,56090],[0,16]],[[3218,56106],[8,4]],[[3226,56110],[21,67]],[[3247,56177],[5,7]],[[3252,56184],[0,97]],[[3252,56281],[-5,10]],[[3247,56291],[0,9]],[[3247,56300],[0,10]],[[3247,56310],[0,100]],[[3247,56410],[5,7]],[[3252,56417],[0,58]],[[3252,56475],[-5,19]],[[3247,56494],[-17,110],[-37,84]],[[3193,56688],[0,7]],[[3193,56695],[0,6]],[[3193,56701],[-3,7]],[[3190,56708],[-5,16]],[[3185,56724],[-5,3]],[[3180,56727],[-4,7]],[[3176,56734],[-11,3]],[[3165,56737],[0,3]],[[3165,56740],[-21,3]],[[3144,56743],[-12,0]],[[3132,56743],[-5,4]],[[3127,56747],[0,3]],[[3127,56750],[-3,6]],[[3124,56756],[3,42]],[[3127,56798],[5,-19]],[[3132,56779],[23,-10]],[[3155,56769],[10,-3]],[[3165,56766],[0,71]],[[3165,56837],[-3,0]],[[3162,56837],[0,3]],[[3162,56840],[-5,6]],[[3157,56846],[-5,72]],[[3152,56918],[-1,0]],[[3151,56918],[-19,39]],[[3132,56957],[-5,3]],[[3127,56960],[-62,116]],[[3065,57076],[0,10]],[[3065,57086],[-14,32]],[[3051,57118],[-5,3]],[[3046,57121],[-62,78],[53,33],[22,104],[26,-31],[161,-63],[90,15]],[[3336,57257],[124,28]],[[3460,57285],[81,25],[67,43]],[[3608,57353],[134,88],[64,85]],[[3806,57526],[-9,70]],[[3797,57596],[31,159],[39,81]],[[3867,57836],[119,246],[21,58],[89,20],[397,236],[-7,139],[-123,42]],[[4363,58577],[47,71]],[[4410,58648],[-3,18],[79,65],[-42,44],[57,27],[-2,46],[67,25],[16,52]],[[4582,58925],[-10,22]],[[4572,58947],[-1,3]],[[4571,58950],[-24,54]],[[4547,59004],[-7,19],[43,87],[99,-86],[76,9],[36,35],[12,165]],[[4806,59233],[83,122]],[[4889,59355],[63,-148],[79,-86],[56,8],[61,64],[30,58],[-33,57],[-14,83]],[[5131,59391],[-42,65]],[[5089,59456],[-13,56]],[[5076,59512],[0,27],[178,7],[75,99],[251,67],[19,56],[-90,178],[-152,159],[21,69],[149,-27]],[[5527,60147],[5,3]],[[5532,60150],[13,13]],[[5545,60163],[3,3]],[[5548,60166],[3,4]],[[5551,60170],[1,2]],[[5552,60172],[3,5]],[[5555,60177],[4,6]],[[5559,60183],[3,5]],[[5562,60188],[28,44]],[[5590,60232],[3,4]],[[5593,60236],[3,4]],[[5596,60240],[19,28]],[[5615,60268],[3,6]],[[5618,60274],[3,7]],[[5621,60281],[2,5]],[[5623,60286],[15,53]],[[5638,60339],[2,7]],[[5640,60346],[6,18]],[[5646,60364],[2,4]],[[5648,60368],[20,63]],[[5668,60431],[1,7]],[[5669,60438],[2,2]],[[5671,60440],[1,5]],[[5672,60445],[0,3]],[[5672,60448],[2,7]],[[5674,60455],[2,6]],[[5676,60461],[1,5]],[[5677,60466],[0,25]],[[5677,60491],[0,5]],[[5677,60496],[0,11]],[[5677,60507],[-1,5]],[[5676,60512],[-25,35],[-3,69]],[[5648,60616],[-160,178]],[[5488,60794],[-68,-11],[-99,252],[-34,250]],[[5287,61285],[-5,34],[78,201]],[[5360,61520],[28,73],[-31,32]],[[5357,61625],[-56,-17],[-53,56]],[[5248,61664],[11,22]],[[5259,61686],[65,111]],[[5324,61797],[83,75]],[[5407,61872],[5,2]],[[5412,61874],[19,22]],[[5431,61896],[3,3]],[[5434,61899],[4,12]],[[5438,61911],[2,8]],[[5440,61919],[5,39]],[[5445,61958],[-2,5]],[[5443,61963],[-5,14]],[[5438,61977],[-3,4]],[[5435,61981],[-3,5]],[[5432,61986],[-1,2]],[[5431,61988],[-2,4]],[[5429,61992],[-6,9]],[[5423,62001],[-3,4]],[[5420,62005],[-11,13]],[[5409,62018],[-50,81]],[[5359,62099],[-141,233],[27,56]],[[5245,62388],[5,4]],[[5250,62392],[1,2]],[[5251,62394],[3,3]],[[5254,62397],[11,5]],[[5265,62402],[5,2]],[[5270,62404],[12,2]],[[5282,62406],[7,0]],[[5289,62406],[3,0]],[[5292,62406],[4,0]],[[5296,62406],[10,1]],[[5306,62407],[4,-1]],[[5310,62406],[27,6]],[[5337,62412],[5,6]],[[5342,62418],[1,2]],[[5343,62420],[3,4]],[[5346,62424],[3,4]],[[5349,62428],[2,5]],[[5351,62433],[0,6]],[[5351,62439],[0,6]],[[5351,62445],[-3,21]],[[5348,62466],[-3,4]],[[5345,62470],[-6,22]],[[5339,62492],[-2,5]],[[5337,62497],[-23,79]],[[5314,62576],[0,8]],[[5314,62584],[4,40]],[[5318,62624],[41,123]],[[5359,62747],[19,54]],[[5378,62801],[-5,60]],[[5373,62861],[-16,166]],[[5357,63027],[66,222],[73,43],[38,-5],[60,-87],[41,-27],[125,22]],[[5760,63195],[5,1]],[[5765,63196],[9,2]],[[5774,63198],[5,1]],[[5779,63199],[4,1]],[[5783,63200],[7,0]],[[5790,63200],[85,-8]],[[5875,63192],[5,-2]],[[5880,63190],[9,-2]],[[5889,63188],[5,-1]],[[5894,63187],[6,1]],[[5900,63188],[5,1]],[[5905,63189],[5,0]],[[5910,63189],[39,11]],[[5949,63200],[6,1]],[[5955,63201],[20,5]],[[5975,63206],[5,2]],[[5980,63208],[5,2]],[[5985,63210],[26,19]],[[6011,63229],[3,3]],[[6014,63232],[5,3]],[[6019,63235],[1,1]],[[6020,63236],[5,3]],[[6025,63239],[8,6]],[[6033,63245],[3,4]],[[6036,63249],[19,24]],[[6055,63273],[1,4]],[[6056,63277],[7,20]],[[6063,63297],[3,4]],[[6066,63301],[12,17]],[[6078,63318],[0,4]],[[6078,63322],[41,43]],[[6119,63365],[3,3]],[[6122,63368],[14,8]],[[6136,63376],[3,2]],[[6139,63378],[6,5]],[[6145,63383],[5,5]],[[6150,63388],[27,27]],[[6177,63415],[3,3]],[[6180,63418],[1,3]],[[6181,63421],[3,3]],[[6184,63424],[2,3]],[[6186,63427],[3,3]],[[6189,63430],[2,2]],[[6191,63432],[3,4]],[[6194,63436],[34,38]],[[6228,63474],[3,4]],[[6231,63478],[5,6]],[[6236,63484],[3,4]],[[6239,63488],[2,1]],[[6241,63489],[3,5]],[[6244,63494],[1,1]],[[6245,63495],[3,5]],[[6248,63500],[8,9]],[[6256,63509],[24,15]],[[6280,63524],[173,100]],[[6453,63624],[51,62]],[[6504,63686],[39,48]],[[6543,63734],[19,72]],[[6562,63806],[5,0]],[[6567,63806],[26,0]],[[6593,63806],[5,-1]],[[6598,63805],[5,0]],[[6603,63805],[1,0]],[[6604,63805],[5,1]],[[6609,63806],[3,0]],[[6612,63806],[5,2]],[[6617,63808],[59,17]],[[6676,63825],[3,5]],[[6679,63830],[8,11]],[[6687,63841],[1,4]],[[6688,63845],[14,18]],[[6702,63863],[2,6]],[[6704,63869],[2,2]],[[6706,63871],[3,6]],[[6709,63877],[4,46]],[[6713,63923],[2,5]],[[6715,63928],[47,61],[37,109]],[[6799,64098],[3,-1]],[[6802,64097],[16,-5]],[[6818,64092],[5,0]],[[6823,64092],[21,-2]],[[6844,64090],[5,-1]],[[6849,64089],[8,-2]],[[6857,64087],[3,-3]],[[6860,64084],[22,-1]],[[6882,64083],[3,4]],[[6885,64087],[13,24]],[[6898,64111],[3,4]],[[6901,64115],[15,30]],[[6916,64145],[2,5]],[[6918,64150],[0,2]],[[6918,64152],[1,8]],[[6919,64160],[0,6]],[[6919,64166],[16,52]],[[6935,64218],[3,3]],[[6938,64221],[19,5]],[[6957,64226],[4,0]],[[6961,64226],[54,-45],[42,10]],[[7057,64191],[4,2]],[[7061,64193],[19,11]],[[7080,64204],[5,3]],[[7085,64207],[9,8]],[[7094,64215],[6,4]],[[7100,64219],[10,15]],[[7110,64234],[4,3]],[[7114,64237],[14,6]],[[7128,64243],[5,1]],[[7133,64244],[2,0]],[[7135,64244],[4,0]],[[7139,64244],[4,-1]],[[7143,64243],[4,0]],[[7147,64243],[35,-2]],[[7182,64241],[4,-1]],[[7186,64240],[6,-3]],[[7192,64237],[-1,86],[69,18]],[[7260,64341],[71,-51]],[[7331,64290],[50,-90],[88,-79],[76,-2],[86,53],[86,94],[109,60]],[[7826,64326],[56,53],[27,59]],[[7909,64438],[23,282]],[[7932,64720],[17,123],[-15,102]],[[7934,64945],[-49,334]],[[7885,65279],[-25,37],[-67,42]],[[7793,65358],[-29,45],[-13,115]],[[7751,65518],[-1,10]],[[7750,65528],[21,259],[-32,95]],[[7739,65882],[-91,125],[36,138]],[[7684,66145],[-3,136]],[[7681,66281],[-22,96],[-55,96],[-9,87]],[[7595,66560],[6,7]],[[7601,66567],[7,4]],[[7608,66571],[4,4]],[[7612,66575],[5,18]],[[7617,66593],[1,20]],[[7618,66613],[33,110],[-39,158]],[[7612,66881],[-15,60]],[[7597,66941],[-36,144],[68,157],[-14,107],[-37,106],[-81,45],[-287,37],[-119,52],[-144,138]],[[6947,67727],[-82,126]],[[6865,67853],[-75,138],[-20,87]],[[6770,68078],[-107,72],[-81,26]],[[6582,68176],[-93,65],[-83,99],[-69,39],[-67,-1]],[[6270,68378],[-75,-27],[-112,-2]],[[6083,68349],[-225,117],[-131,137],[-31,71],[-192,324],[-16,125],[72,282]],[[5560,69405],[91,207]],[[5651,69612],[67,189],[78,181],[53,40],[279,6],[230,-9]],[[6358,70019],[177,0],[141,16]],[[6676,70035],[349,-11],[80,11],[105,91],[9,47]],[[7219,70173],[41,102]],[[7260,70275],[95,139]],[[7355,70414],[103,95],[-69,104],[11,38],[80,118],[14,56],[-55,102],[-67,80]],[[7372,71007],[-14,78]],[[7358,71085],[45,102]],[[7403,71187],[34,60],[113,113]],[[7550,71360],[51,38]],[[7601,71398],[81,40]],[[7682,71438],[85,70]],[[7767,71508],[9,97]],[[7776,71605],[23,54],[39,2],[133,-85],[162,-49],[122,3],[75,-14],[105,-44],[98,3],[80,-52],[71,-8],[56,20]],[[8740,71435],[64,-31]],[[8804,71404],[35,-5],[65,100]],[[8904,71499],[33,35]],[[8937,71534],[147,138],[29,-2]],[[9113,71670],[89,-41]],[[9202,71629],[292,-57],[56,-1],[80,64],[22,58],[75,67]],[[9727,71760],[39,21],[132,22]],[[9898,71803],[152,9],[148,33],[200,94],[136,5]],[[10534,71944],[71,9],[39,42]],[[10644,71995],[44,-17],[-42,-148],[-9,-162],[28,-119],[67,-84]],[[109519,29335],[-95,-15]],[[109424,29320],[-287,-14],[-94,-11]],[[109043,29295],[-59,-16],[-122,-59]],[[108862,29220],[-116,-32],[-159,-20]],[[108587,29168],[-140,-53]],[[108447,29115],[-153,-120]],[[108294,28995],[-180,183],[-129,108]],[[107985,29286],[-125,67]],[[107860,29353],[-67,54]],[[107793,29407],[-150,141],[-156,107]],[[107487,29655],[-37,105]],[[107450,29760],[-127,193]],[[107323,29953],[-164,125]],[[107159,30078],[-60,27]],[[107099,30105],[-64,14],[-135,8],[-307,-2],[-170,7]],[[106423,30132],[-97,17],[-143,61],[-55,15]],[[106128,30225],[-53,0]],[[106075,30225],[-95,-32]],[[105980,30193],[-117,117],[-108,65]],[[105755,30375],[-62,14],[-283,18]],[[105410,30407],[-90,21],[-146,78]],[[105174,30506],[-103,50],[-138,89]],[[104933,30645],[-103,50]],[[104830,30695],[-144,79]],[[104686,30774],[-91,22],[-223,14],[-93,10]],[[104279,30820],[-60,17]],[[104219,30837],[-173,77]],[[104046,30914],[-137,12]],[[103909,30926],[-83,137]],[[103826,31063],[-54,68],[-66,52],[-119,70]],[[103587,31253],[-90,107]],[[103497,31360],[-120,268],[-16,62]],[[103361,31690],[-36,186]],[[103325,31876],[-73,191]],[[103252,32067],[-16,152],[99,219]],[[103335,32438],[42,118],[78,155]],[[103455,32711],[33,87],[57,104]],[[103545,32902],[139,191]],[[103684,33093],[61,139],[89,128]],[[103834,33360],[144,171]],[[103978,33531],[87,130],[34,85]],[[104099,33746],[25,55],[88,119]],[[104212,33920],[84,80],[48,29]],[[104344,34029],[100,27]],[[104444,34056],[198,17],[228,0],[255,-25],[245,-4]],[[105370,34044],[121,34],[44,49]],[[105535,34127],[22,64],[11,106]],[[105568,34297],[-8,513],[0,462],[-3,251]],[[105557,35523],[-8,73]],[[105549,35596],[-16,70],[-64,162]],[[105469,35828],[-59,244],[-73,157]],[[105337,36229],[-46,114]],[[105291,36343],[-62,131],[-20,62]],[[105209,36536],[-19,177],[14,142]],[[105204,36855],[31,88]],[[105235,36943],[78,144],[36,42],[109,43],[160,4]],[[105618,37176],[162,-19]],[[105780,37157],[179,-71]],[[105959,37086],[177,189],[86,77]],[[106222,37352],[87,54]],[[106309,37406],[64,19]],[[106373,37425],[168,12]],[[106541,37437],[44,-149]],[[106585,37288],[125,-184],[47,-85]],[[106757,37019],[26,-132]],[[106783,36887],[7,-244]],[[106790,36643],[-4,-177]],[[106786,36466],[-17,-171],[-17,-64]],[[106752,36231],[-78,-188],[-8,-157]],[[106666,35886],[16,-62]],[[106682,35824],[65,-95],[46,-34],[198,-90]],[[106991,35605],[101,-40],[96,-16]],[[107188,35549],[193,-4],[125,25],[172,84]],[[107678,35654],[248,80],[90,45]],[[108016,35779],[63,18]],[[108079,35797],[163,15],[338,1]],[[108580,35813],[193,6]],[[108773,35819],[115,-17],[108,-33]],[[108996,35769],[122,-63],[220,-62]],[[109338,35644],[145,-74],[165,-43]],[[109648,35527],[57,-18],[143,-83]],[[109848,35426],[103,-47],[142,-82],[55,-18]],[[110148,35279],[112,-25]],[[110260,35254],[56,-17],[142,-81]],[[110458,35156],[105,-49],[142,-80],[165,-43]],[[110870,34984],[55,-20],[76,-51],[117,-106]],[[111118,34807],[74,-55],[103,-52]],[[111295,34700],[140,-88],[103,-49],[141,-87],[104,-49],[117,-69],[53,-21],[194,-51],[145,-77],[139,-46]],[[112431,34163],[112,-48]],[[112543,34115],[236,178],[104,50],[142,79],[197,49]],[[113222,34471],[170,90]],[[113392,34561],[103,49],[186,117]],[[113681,34727],[496,-9],[122,2]],[[114299,34720],[89,7],[86,21]],[[114474,34748],[170,83]],[[114644,34831],[193,53]],[[114837,34884],[100,72]],[[114937,34956],[178,186],[212,248],[106,162]],[[115433,35552],[46,105]],[[115479,35657],[84,156],[56,141],[69,129],[43,114]],[[115731,36197],[64,130],[25,90],[11,98]],[[115831,36515],[5,168],[-5,167],[-11,98]],[[115820,36948],[-15,63]],[[115805,37011],[-77,156]],[[115728,37167],[-45,113],[-61,124]],[[115622,37404],[-15,59],[20,124]],[[115627,37587],[33,54]],[[115660,37641],[62,74],[97,88],[100,127]],[[115919,37930],[67,71],[75,60]],[[116061,38061],[117,41]],[[116178,38102],[220,8]],[[116398,38110],[223,-10],[148,-22]],[[118849,47580],[1189,0]],[[120038,47580],[498,5],[159,-21]],[[120695,47564],[96,-64]],[[120791,47500],[50,-69],[59,-136]],[[120900,47295],[65,-129],[42,-116],[61,-130]],[[121068,46920],[25,-155]],[[121093,46765],[-11,-94]],[[121082,46671],[-76,-186]],[[121006,46485],[-17,-92],[17,-158]],[[121006,46235],[44,-87]],[[121050,46148],[128,-182]],[[121178,45966],[98,-194]],[[121276,45772],[103,-124]],[[121379,45648],[97,-79]],[[121476,45569],[221,-118],[53,-20]],[[121750,45431],[83,-20]],[[121833,45411],[45,-81]],[[121878,45330],[88,-41]],[[121966,45289],[193,-28]],[[122159,45261],[74,-41],[70,-92]],[[122303,45128],[22,-126]],[[122325,45002],[-21,-126],[-23,-54]],[[122281,44822],[-103,-215]],[[122178,44607],[-52,-81],[-115,-154],[-33,-56]],[[121978,44316],[-47,-113],[-81,-156]],[[121850,44047],[-93,-217]],[[121757,43830],[-44,-157]],[[121713,43673],[-6,-180]],[[121707,43493],[7,-144],[25,-172]],[[121112,43404],[-142,-17],[-175,-7],[-1897,2],[-103,5]],[[118795,43387],[-100,18],[-61,23]],[[118634,43428],[-116,58]],[[118518,43486],[-95,24],[-201,13]],[[118222,43523],[-375,-5],[-99,-11]],[[117748,43507],[-63,-18],[-147,-72]],[[117538,43417],[-220,-63],[-145,-73]],[[117173,43281],[-220,-63],[-146,-75]],[[116807,43143],[-228,-78],[-239,78],[-142,82]],[[116198,43225],[-105,50],[-142,83]],[[115951,43358],[-190,71]],[[115761,43429],[-250,-61],[-51,-21]],[[115460,43347],[-120,-66],[-55,-17]],[[115285,43264],[-168,-40],[-142,-81],[-103,-49]],[[114872,43094],[-49,-34]],[[114823,43060],[-134,-130],[-126,-141]],[[114563,42789],[-82,-97],[-71,-102],[-61,-139]],[[114349,42451],[-46,-74]],[[114303,42377],[-73,-90],[-100,-100]],[[114130,42187],[-165,-19]],[[113965,42168],[-205,-9],[-152,23]],[[113608,42182],[-27,16]],[[113581,42198],[-41,48],[-18,61],[-7,235]],[[113515,42542],[-20,94]],[[113495,42636],[-40,48],[-53,24]],[[113402,42708],[-89,9],[-93,-11]],[[113220,42706],[-59,-19],[-145,-75]],[[113016,42612],[-97,-26]],[[112919,42586],[-135,-12],[-210,-2],[-137,8],[-100,19],[-178,80],[-62,18],[-348,44],[-98,-17],[-117,3]],[[111534,42727],[-85,19],[-118,62]],[[111331,42808],[-149,37]],[[111182,42845],[-65,2]],[[111117,42847],[-126,-16]],[[110991,42831],[-152,-71]],[[110839,42760],[-115,-35]],[[110724,42725],[-220,-34]],[[110504,42691],[-55,-21]],[[110449,42670],[-153,-69]],[[110296,42601],[-129,-18],[-269,-6],[-98,-11]],[[109800,42566],[-61,-16],[-170,-81]],[[109569,42469],[-175,-42],[-120,-79],[-254,-279]],[[109020,42069],[-88,-87],[-72,-52]],[[108860,41930],[-126,-68]],[[108734,41862],[-136,-123],[-234,-257],[-90,-80]],[[108274,41402],[-128,-65]],[[108146,41337],[-141,-87]],[[108005,41250],[-104,-47],[-141,-88]],[[107760,41115],[-104,-47],[-164,-90]],[[107492,40978],[-91,-21],[-82,-18],[-53,-24],[-68,-52]],[[107198,40863],[-79,-85]],[[107119,40778],[-64,-100]],[[107055,40678],[-58,-141]],[[106997,40537],[-133,-248],[224,-198],[109,-62],[64,-14]],[[107261,40015],[64,-6],[331,-1]],[[107656,40008],[98,-5]],[[107754,40003],[94,-16],[103,-46]],[[107951,39941],[-32,-79],[-43,-172],[-25,-49]],[[107851,39641],[-38,-36],[-129,-89]],[[107684,39516],[-175,-89]],[[107509,39427],[-117,-72],[-105,-50]],[[107287,39305],[-145,-77]],[[107142,39228],[-90,-20],[-217,-9]],[[106835,39199],[-108,-30]],[[106727,39169],[-37,-39],[-50,-159]],[[106640,38971],[-53,-111],[-145,-213],[-116,-268]],[[106326,38379],[-5,-92]],[[106321,38287],[13,-58],[44,-102]],[[106378,38127],[53,-210]],[[106431,37917],[15,-60]],[[106446,37857],[75,-191]],[[106521,37666],[14,-96],[6,-133]],[[105959,37086],[-65,194],[-95,255],[-46,87],[-59,82]],[[105694,37704],[-112,126],[-72,69],[-78,58],[-103,50]],[[105329,38007],[-141,86]],[[105188,38093],[-104,49],[-139,87],[-103,50],[-119,69]],[[104723,38348],[-112,33]],[[104611,38381],[-92,8],[-537,-4],[-92,3]],[[103890,38388],[-92,11],[-83,28],[-117,69],[-128,61]],[[103470,38557],[-174,101]],[[103296,38658],[137,219]],[[103433,38877],[33,63],[118,272]],[[103584,39212],[21,110],[9,193]],[[103614,39515],[-2,1922],[7,196],[17,182],[-41,186]],[[103595,42001],[-19,58]],[[103576,42059],[-64,168]],[[103512,42227],[-28,244],[-20,103]],[[103464,42574],[-65,161],[-58,244]],[[103341,42979],[-66,160]],[[103275,43139],[-25,134]],[[103250,43273],[-4,212]],[[103246,43485],[11,209],[20,99]],[[103277,43793],[56,134],[34,160],[14,215]],[[103381,44302],[11,107]],[[103392,44409],[-18,209],[-4,169]],[[103370,44787],[21,195]],[[103391,44982],[56,116],[95,128]],[[103542,45226],[36,54],[73,168]],[[103651,45448],[99,212]],[[103750,45660],[64,95]],[[103814,45755],[92,60]],[[103906,45815],[81,21]],[[103987,45836],[0,130],[12,95]],[[103999,46061],[39,82]],[[104038,46143],[38,43]],[[104076,46186],[106,51]],[[104182,46237],[61,7]],[[104243,46244],[190,1],[156,23],[208,120]],[[104797,46388],[37,40],[80,164]],[[104914,46592],[-6,114]],[[104908,46706],[-30,53]],[[104878,46759],[-83,88],[-78,43],[-56,8],[-105,-29]],[[104556,46869],[-92,-49],[-151,-30],[-192,-13],[-147,-38],[-118,-65]],[[103856,46674],[-86,-24],[-87,-9]],[[103683,46641],[-146,15]],[[103537,46656],[-74,44],[-39,43]],[[103424,46743],[-44,115]],[[103380,46858],[8,158],[78,189],[17,59]],[[103483,47264],[44,185]],[[103527,47449],[25,54],[138,246]],[[103690,47749],[67,220],[38,75]],[[103795,48044],[53,72],[123,127]],[[103971,48243],[80,65],[154,-23],[230,-15]],[[104435,48270],[95,-13]],[[104530,48257],[59,-18],[116,-57],[126,-37]],[[104831,48145],[203,-11],[1072,-2]],[[106106,48132],[102,5],[96,22],[60,30]],[[106364,48189],[118,82],[38,38]],[[106520,48309],[25,56]],[[106545,48365],[14,63],[25,200]],[[106584,48628],[78,230]],[[106662,48858],[12,72],[34,301]],[[106708,49231],[169,-11],[243,-5]],[[107120,49215],[174,1]],[[107294,49216],[135,10],[97,22],[117,58]],[[107643,49306],[59,23]],[[107702,49329],[191,41],[75,23]],[[107968,49393],[207,-44],[85,-25]],[[108260,49324],[143,-82],[103,-49]],[[108506,49193],[170,-91],[194,-52]],[[108870,49050],[142,-82],[246,-129]],[[109258,48839],[86,-20],[148,-10]],[[109492,48809],[0,-135],[57,-12]],[[109549,48662],[54,-17],[245,-133],[52,-35],[139,-127]],[[110039,48350],[48,-39]],[[110087,48311],[153,-82],[115,-73],[103,-52]],[[110458,48104],[75,-55],[166,-146]],[[110699,47903],[151,-82],[92,-60]],[[110942,47761],[128,-62],[141,-86]],[[111211,47613],[104,-49]],[[111315,47564],[139,-88],[105,-48]],[[111559,47428],[170,-92],[193,-52],[145,-76]],[[112067,47208],[144,-28]],[[112211,47180],[181,0],[115,20]],[[112507,47200],[172,86],[84,22]],[[112763,47308],[211,10]],[[112974,47318],[122,-4]],[[113096,47314],[115,-10],[251,12],[117,14]],[[113579,47330],[57,16],[120,60],[117,34],[159,20],[117,33],[151,68]],[[114300,47561],[222,30]],[[114522,47591],[142,47]],[[114664,47638],[161,100],[42,36]],[[114867,47774],[72,88]],[[119021,49119],[-84,-166],[-56,-142],[-72,-159]],[[118809,48652],[-19,-95],[-16,-161],[-34,-152]],[[118740,48244],[-58,-131],[-17,-158],[17,-94]],[[118682,47861],[39,-80],[128,-201]],[[137432,56117],[133,-242],[29,-66]],[[137594,55809],[21,-103],[4,-107],[-17,-139]],[[137602,55460],[-75,-194],[-22,-107],[-7,-151]],[[137498,55008],[-4,-307],[-12,-150]],[[137482,54551],[-16,-71],[-73,-193]],[[137393,54287],[-41,-224],[10,-102]],[[137362,53961],[-6,-130]],[[137356,53831],[-18,-60],[-61,-130]],[[137277,53641],[-62,-136],[-55,-64]],[[137160,53441],[-43,-35],[-125,-63],[-117,-72],[-106,-47]],[[136769,53224],[-141,-86],[-104,-49]],[[136524,53089],[-141,-86]],[[136383,53003],[-104,-49],[-141,-86],[-103,-49],[-140,-87],[-105,-48]],[[135790,52684],[-140,-87]],[[135650,52597],[-105,-48],[-140,-88],[-222,-117]],[[135183,52344],[-81,-28],[-204,-24]],[[134898,52292],[-56,-11]],[[134842,52281],[-174,-82]],[[134668,52199],[-54,-18]],[[134614,52181],[-141,-33],[-51,-21]],[[134422,52127],[-120,-64],[-111,-30],[-31,-120]],[[134160,51913],[-64,-157]],[[134096,51756],[0,-123]],[[134096,51633],[18,-53]],[[134114,51580],[50,-101],[44,-114],[80,-155],[46,-115]],[[134334,51095],[46,-76]],[[134380,51019],[120,-168],[75,-161],[70,-89]],[[134645,50601],[98,-52]],[[134743,50549],[166,-40],[145,-73],[86,-21]],[[135140,50415],[232,-30]],[[135372,50385],[172,-82]],[[135544,50303],[84,-20]],[[135628,50283],[204,-23],[82,-31]],[[135914,50229],[115,-99]],[[136029,50130],[211,-236],[87,-87],[70,-52],[77,-38]],[[136474,49717],[97,-66],[129,-131]],[[136700,49520],[273,-305]],[[136973,49215],[95,-122]],[[137068,49093],[152,-323],[33,-86]],[[137253,48684],[57,-104]],[[137310,48580],[106,-142]],[[137416,48438],[46,-76],[120,-308]],[[136744,42686],[-111,-30]],[[136633,42656],[-120,-63],[-109,-32]],[[136404,42561],[-233,-31]],[[136171,42530],[-173,-81],[-56,-17],[-261,-35]],[[135681,42397],[-172,-89]],[[135509,42308],[-103,-49]],[[135406,42259],[-140,-87],[-105,-48],[-140,-86]],[[135021,42038],[-153,-83]],[[134868,41955],[-158,-155],[-60,-73]],[[134650,41727],[-38,-51]],[[134612,41676],[-44,-84],[-28,-122]],[[134540,41470],[80,-46]],[[134620,41424],[28,-44]],[[134648,41380],[50,-165],[65,-158],[16,-95],[-5,-96]],[[134774,40866],[-25,-91],[-42,-78]],[[134707,40697],[-114,-180]],[[134593,40517],[-112,-72]],[[134481,40445],[-208,-212],[-112,-91]],[[134161,40142],[-101,-52],[-74,-56]],[[133986,40034],[-92,-90],[-221,-244]],[[133673,39700],[-124,-96],[-56,-20]],[[133493,39584],[-165,-41],[-120,-63]],[[133208,39480],[-53,-19]],[[133155,39461],[-233,-31],[-109,-32]],[[132813,39398],[-120,-62]],[[132693,39336],[-114,-24]],[[132579,39312],[-119,-7]],[[132460,39305],[-137,-40],[-117,-70]],[[132206,39195],[-105,-48],[-140,-87],[-106,-46]],[[131855,39014],[-195,-95]],[[131660,38919],[-209,-20]],[[131451,38899],[-242,8]],[[131209,38907],[-85,22],[-171,84]],[[130953,39013],[-56,11]],[[130897,39024],[-147,15],[-113,28],[-48,28]],[[130589,39095],[-197,167],[-170,101]],[[130222,39363],[-140,151]],[[130082,39514],[-31,49]],[[130051,39563],[-60,140],[-67,105],[-101,122],[-326,358],[-103,121]],[[129394,40409],[-72,103],[-27,56]],[[129295,40568],[-62,137],[-53,71],[-81,85],[-69,51],[-103,49],[-140,86],[-127,65]],[[128660,41112],[-173,152]],[[128487,41264],[-97,58]],[[128390,41322],[-195,50],[-142,84]],[[128053,41456],[-78,38],[-324,-17],[-97,-9],[-92,-22]],[[127462,41446],[-120,-60],[-85,-26],[-284,-22],[-62,-9]],[[126911,41329],[-86,-29]],[[126825,41300],[-214,-134]],[[120748,54891],[136,41],[119,69],[103,49]],[[121106,55050],[140,88],[105,48],[142,80],[56,18]],[[121549,55284],[139,32],[53,21]],[[121741,55337],[117,69],[105,48],[140,88],[105,49]],[[122208,55591],[360,211],[128,59],[140,87]],[[122836,55948],[105,48]],[[122941,55996],[140,87],[105,47]],[[123186,56130],[140,87]],[[123326,56217],[103,50],[69,51],[151,136]],[[123649,56454],[122,71]],[[123771,56525],[94,64],[173,153]],[[124038,56742],[126,68]],[[124164,56810],[46,32],[195,171]],[[124405,57013],[128,65]],[[124533,57078],[139,87],[84,38],[89,61],[128,118]],[[124973,57382],[45,34],[148,84],[46,36]],[[125212,57536],[187,191]],[[125399,57727],[131,112]],[[125530,57839],[148,85]],[[125678,57924],[148,144]],[[50616,39054],[-74,-35]],[[50542,39019],[-109,-33],[-19,-229]],[[50414,38757],[-72,-192]],[[50342,38565],[-57,-241]],[[50285,38324],[-66,-93],[-44,-35]],[[50175,38196],[-123,-66],[-115,-72]],[[49937,38058],[-105,-49],[-117,-69],[-53,-20]],[[49662,37920],[-145,-6]],[[49517,37914],[-56,16],[-142,78]],[[49319,38008],[-133,56],[-87,51]],[[38976,39428],[-60,236],[-56,133]],[[38860,39797],[-19,57],[-45,216]],[[38796,40070],[-134,302]],[[38662,40372],[-120,159]],[[38542,40531],[-297,324]],[[38245,40855],[-115,112],[-113,82],[-48,62],[-66,121],[-45,112]],[[37858,41344],[-9,68]],[[37849,41412],[-6,104],[4,1140],[-410,453]],[[37437,43109],[-97,114]],[[37340,43223],[-67,97],[-58,137]],[[37215,43457],[-92,110]],[[37123,43567],[-142,78]],[[36981,43645],[-84,70],[-80,82],[-298,322],[-56,67],[-54,102]],[[36409,44288],[1,126]],[[36410,44414],[11,30]],[[36421,44444],[50,80],[115,146],[71,118],[61,72]],[[36718,44860],[54,161]],[[36772,45021],[36,115],[-215,79]],[[36593,45215],[-119,16],[-211,-4],[-85,-17]],[[36178,45210],[-52,-20]],[[36126,45190],[-120,-62],[-61,-17],[-129,-13],[-166,-2]],[[110137,57402],[73,-84]],[[110210,57318],[49,-106],[45,-74]],[[110304,57138],[118,-130],[71,-50]],[[110493,56958],[164,-58],[78,-35],[67,-131]],[[110802,56734],[76,-106],[128,-140],[95,-76]],[[111101,56412],[198,-104]],[[111299,56308],[49,-25]],[[111348,56283],[168,-40]],[[111516,56243],[103,-44]],[[111619,56199],[94,-56]],[[111713,56143],[105,-48],[142,-82],[54,-18]],[[112014,55995],[167,-42]],[[112181,55953],[172,-85]],[[112353,55868],[195,-49],[143,-81]],[[112691,55738],[128,-60],[175,-110]],[[112994,55568],[109,-8],[82,-26],[117,-68],[104,-49]],[[113406,55417],[139,-89],[103,-51]],[[113648,55277],[117,-71],[139,-38]],[[113904,55168],[150,2]],[[114054,55170],[111,32]],[[114165,55202],[193,106]],[[114358,55308],[47,32]],[[114405,55340],[72,87]],[[114477,55427],[32,86]],[[114509,55513],[36,183],[57,133]],[[114602,55829],[18,58],[46,217]],[[114666,56104],[74,190]],[[114740,56294],[47,216]],[[114787,56510],[95,207]],[[114882,56717],[46,82],[87,114],[95,86]],[[115110,56999],[105,-71],[64,-55],[58,-73]],[[115337,56800],[53,-81],[-11,-103],[-10,-286]],[[115369,56330],[-11,-104],[-21,-97],[-53,-118]],[[115284,56011],[-10,-77]],[[115274,55934],[6,-27]],[[115280,55907],[58,-57],[109,-13]],[[115447,55837],[244,7]],[[115691,55844],[112,-27]],[[115803,55817],[56,-57]],[[115859,55760],[89,-170],[56,-138],[86,-113]],[[116090,55339],[211,-128]],[[116301,55211],[106,-29]],[[116407,55182],[28,3]],[[116435,55185],[97,55]],[[116532,55240],[51,69],[69,183],[11,52]],[[116663,55544],[-30,107],[-106,145],[-47,117]],[[116480,55913],[-6,95]],[[116474,56008],[10,64]],[[116484,56072],[56,107]],[[116540,56179],[62,60],[128,85],[214,-179]],[[116944,56145],[75,-59],[54,-78]],[[117073,56008],[96,-150],[59,-141]],[[117228,55717],[31,-56]],[[117259,55661],[133,-181],[75,-118],[103,-61],[-16,-196]],[[117554,55105],[-14,-62]],[[117540,55043],[-70,-192]],[[117470,54851],[-16,-96],[-8,-131]],[[107968,49393],[118,160]],[[108086,49553],[41,78],[19,95]],[[108146,49726],[-3,97]],[[108143,49823],[-47,122]],[[108096,49945],[-61,78],[-156,175]],[[107879,50198],[-39,54]],[[107840,50252],[-31,60],[-22,95],[-6,98]],[[107781,50505],[1,134],[13,161],[-10,178]],[[107785,50978],[-4,406],[4,132],[24,127]],[[107809,51643],[46,87]],[[107855,51730],[61,77]],[[107916,51807],[247,266]],[[108163,52073],[122,99],[103,50],[117,73]],[[108505,52295],[128,59],[142,86],[76,36]],[[108851,52476],[94,64]],[[108945,52540],[62,61],[125,142]],[[109132,52743],[-14,223]],[[109118,52966],[-22,58],[-66,99]],[[109030,53123],[-39,43]],[[108991,53166],[-87,75],[-50,28]],[[108854,53269],[-126,71]],[[108728,53340],[-69,63],[-175,182]],[[108484,53585],[-120,90]],[[108364,53675],[-100,51],[-118,76]],[[108146,53802],[-153,70]],[[107993,53872],[-60,-25]],[[107933,53847],[-85,-17],[-88,-2]],[[107760,53828],[-112,28]],[[107648,53856],[-192,103]],[[107456,53959],[-86,72],[-47,75],[-18,67]],[[107305,54173],[-8,70]],[[107297,54243],[3,216],[25,174],[-22,176]],[[107303,54809],[-5,215],[8,177]],[[107306,55201],[42,155]],[[107348,55356],[97,217],[67,129]],[[107512,55702],[56,141]],[[107568,55843],[80,155],[44,115]],[[107692,56113],[79,156],[44,115],[76,156],[24,71]],[[107915,56611],[56,97]],[[107971,56708],[109,142]],[[108080,56850],[144,148]],[[108224,56998],[89,59]],[[108313,57057],[82,38],[67,49]],[[108462,57144],[125,126],[178,206]],[[108765,57476],[492,-4],[171,15]],[[109428,57487],[114,44],[225,154]],[[109767,57685],[212,-177],[158,-106]],[[100828,18859],[-184,31]],[[100644,18890],[-121,7],[-150,-7]],[[100373,18890],[-113,-38]],[[100260,18852],[-135,-121],[-128,-141]],[[99997,18590],[-102,-121],[-86,-128],[-45,-115]],[[99764,18226],[-76,-155],[-46,-115]],[[99642,17956],[-107,-156]],[[99535,17800],[-200,-243]],[[99335,17557],[-56,-92]],[[99279,17465],[-38,-33]],[[99241,17432],[-65,-28],[0,-315],[-13,-148]],[[99163,16941],[-25,-95]],[[99138,16846],[-67,-134],[-43,-106],[15,-153]],[[99043,16453],[10,-322],[10,-139]],[[99063,15992],[16,-65]],[[99079,15927],[72,-195],[40,-313],[74,-194],[26,-101]],[[99291,15124],[7,-155],[12,-96],[75,-191]],[[99385,14682],[45,-215]],[[99430,14467],[75,-140]],[[99505,14327],[61,-75],[485,-532],[127,-148],[70,-107],[61,-138],[137,-190]],[[100446,13137],[52,-110],[14,-96],[4,-133]],[[100516,12798],[-8,-195],[2,-532],[-12,-295]],[[100498,11776],[-2,-40]],[[100496,11736],[-103,-17],[-175,-65],[-150,-90]],[[100068,11564],[-238,-186],[-169,-101]],[[99661,11277],[-373,-136]],[[99288,11141],[-390,-173]],[[98898,10968],[-189,-123],[-196,-23]],[[98513,10822],[-270,33],[-58,-7]],[[98185,10848],[-134,-50]],[[98051,10798],[-128,-74],[-167,-17]],[[97756,10707],[-153,-62]],[[97603,10645],[-161,-124],[-267,-160]],[[97175,10361],[-200,-98],[-357,-259]],[[96618,10004],[-108,-106],[-101,-137]],[[96409,9761],[-58,198]],[[96351,9959],[-42,151]],[[96309,10110],[-33,55]],[[96276,10165],[-95,130],[-62,109]],[[96119,10404],[-33,86],[-64,131]],[[96022,10621],[-19,58],[-26,156]],[[95977,10835],[-16,61],[-114,274]],[[95847,11170],[-31,57],[-103,124]],[[95713,11351],[-48,40],[-83,42]],[[95582,11433],[-58,11],[-148,5]],[[95376,11449],[0,136],[-111,30],[-142,80],[-104,49]],[[95019,11744],[-139,96]],[[94880,11840],[-142,86],[-102,46]],[[94636,11972],[-107,42],[-241,135]],[[94288,12149],[-62,56]],[[94226,12205],[-47,73],[-41,181]],[[94138,12459],[-14,60],[-54,134]],[[94070,12653],[-28,122]],[[94042,12775],[-16,195],[-19,94],[-126,301],[-122,240]],[[93759,13605],[-33,55],[-70,68]],[[93656,13728],[-210,121],[-61,24]],[[93385,13873],[-99,15]],[[93286,13888],[-101,5],[-807,-2]],[[92378,13891],[-186,-111]],[[92192,13780],[-103,-51]],[[92089,13729],[-132,-109],[-11,-63]],[[91946,13557],[-16,-61],[-76,-189],[-47,-216]],[[91807,13091],[-47,-85],[-128,-184],[-64,-138]],[[91568,12684],[-70,-89],[-44,-34],[-124,-64],[-116,-72]],[[91214,12425],[-131,-66],[-48,-39]],[[91035,12320],[-164,-146],[-120,-70],[-63,-49]],[[90688,12055],[-112,-108],[-61,-99],[-16,-62]],[[90499,11786],[-4,-132],[15,-136]],[[90510,11518],[0,1]],[[90510,11519],[-309,173],[-56,32]],[[90145,11724],[-438,123]],[[89707,11847],[-80,126],[-39,-33],[-17,-70]],[[89571,11870],[-44,24]],[[89527,11894],[-108,-20],[-73,0]],[[89346,11874],[-72,17]],[[89274,11891],[-93,64],[-105,98]],[[89076,12053],[-86,62]],[[88990,12115],[-82,43]],[[88908,12158],[-110,92]],[[88798,12250],[-165,173],[-111,91]],[[88522,12514],[-101,52],[-69,51]],[[88352,12617],[-208,214]],[[88144,12831],[-64,63]],[[88080,12894],[-43,38],[-203,150]],[[87834,13082],[-103,144]],[[87731,13226],[125,196],[40,79]],[[87896,13501],[47,216]],[[87943,13717],[74,191]],[[88017,13908],[56,245],[40,79],[110,166],[24,102]],[[88247,14500],[64,198],[78,155]],[[88389,14853],[46,115]],[[88435,14968],[82,123]],[[88517,15091],[58,69],[370,404]],[[88945,15564],[120,136],[72,96]],[[89137,15796],[80,131]],[[89217,15927],[157,117]],[[89374,16044],[162,174]],[[89536,16218],[89,145]],[[89625,16363],[50,118]],[[89675,16481],[88,120]],[[89763,16601],[196,229],[100,150]],[[90059,16980],[136,37],[69,31]],[[90264,17048],[46,34]],[[90310,17082],[172,153]],[[90482,17235],[127,67]],[[90609,17302],[110,92],[166,172],[111,92],[101,52],[131,115]],[[91228,17825],[136,151]],[[91364,17976],[86,58]],[[91450,18034],[25,4]],[[91475,18038],[50,-12]],[[91525,18026],[81,-69]],[[91606,17957],[51,-69]],[[91657,17888],[47,-104]],[[91704,17784],[14,-101]],[[91718,17683],[8,-132],[22,-127]],[[91748,17424],[53,-134]],[[91801,17290],[29,-132],[18,-178]],[[91848,16980],[28,-126]],[[91876,16854],[53,-135],[36,-181]],[[91965,16538],[18,-59],[49,-72],[65,-53]],[[92097,16354],[83,-28],[178,-28]],[[92358,16298],[108,60]],[[92466,16358],[196,141]],[[92662,16499],[120,218],[71,167],[53,77]],[[92906,16961],[42,49]],[[92948,17010],[123,105],[101,53]],[[93172,17168],[125,103],[164,169]],[[93461,17440],[74,64],[129,69]],[[93664,17573],[119,68],[81,26],[203,25]],[[94067,17692],[57,11]],[[94124,17703],[174,81],[56,15]],[[94354,17799],[259,39]],[[94613,17838],[148,70]],[[94761,17908],[147,35]],[[94908,17943],[223,13],[92,17],[175,82],[59,17],[125,14]],[[95582,18086],[193,-1],[128,-15],[108,-29]],[[96011,18041],[192,64],[142,72]],[[96345,18177],[61,22]],[[96406,18199],[131,12]],[[96537,18211],[67,-4]],[[96604,18207],[83,-16],[157,50]],[[96844,18241],[219,120]],[[97063,18361],[47,32],[92,107]],[[97202,18500],[96,215],[32,88],[15,142]],[[97345,18945],[2,256],[-6,525]],[[103976,59476],[3,-12]],[[103979,59464],[-20,0]],[[103959,59464],[-8,3]],[[103951,59467],[0,6]],[[103951,59473],[20,17]],[[103971,59490],[0,-10]],[[103971,59480],[5,-4]],[[109881,61218],[5,-7]],[[109886,61211],[25,-3]],[[109911,61208],[0,-2]],[[109911,61206],[21,-11]],[[109932,61195],[7,0]],[[109939,61195],[9,-3]],[[109948,61192],[0,-9]],[[109948,61183],[0,-4]],[[109948,61179],[14,-12]],[[109962,61167],[5,-4]],[[109967,61163],[1,-6]],[[109968,61157],[21,3]],[[109989,61160],[15,-3]],[[110004,61157],[-18,-17]],[[109986,61140],[-47,-45]],[[109939,61095],[-81,-222]],[[109858,60873],[-103,-147],[-8,-188]],[[109747,60538],[-21,-149]],[[109726,60389],[-71,-125],[-55,-201],[-64,-161],[-26,-177],[-4,-148]],[[109506,59577],[8,-552],[-15,-230],[11,-200],[25,-159]],[[109535,58436],[54,-135]],[[109589,58301],[28,-129],[31,-243]],[[109648,57929],[33,-87],[86,-157]],[[106708,49231],[-134,87]],[[106574,49318],[-151,82]],[[106423,49400],[-166,143],[-104,61]],[[106153,49604],[-56,14],[-175,19]],[[105922,49637],[-109,31]],[[105813,49668],[-120,62],[-55,17]],[[105638,49747],[-141,33],[-51,23]],[[105446,49803],[-117,70],[-273,141]],[[105056,50014],[-88,18],[-185,20]],[[104783,50052],[-114,-28]],[[104669,50024],[-123,-58],[-130,-90]],[[104416,49876],[-137,-63]],[[104279,49813],[-102,-28]],[[104177,49785],[-81,17]],[[104096,49802],[-114,67]],[[103982,49869],[-103,49],[-140,90],[-103,52],[-67,50],[-128,119],[-94,63]],[[103347,50292],[-78,37],[-140,88],[-103,50]],[[103026,50467],[-46,33]],[[102980,50500],[-87,76],[-112,120],[-144,120],[-98,54]],[[102539,50870],[-78,77]],[[102461,50947],[-16,25]],[[102445,50972],[-37,124]],[[102408,51096],[-5,68],[0,280]],[[102403,51444],[-6,105]],[[102397,51549],[-19,99],[-55,133],[-25,93]],[[102298,51874],[-11,102],[-4,282],[-11,138]],[[102272,52396],[-14,65]],[[102258,52461],[-55,134],[-31,129],[-17,176]],[[102155,52900],[-30,129],[-45,106]],[[102080,53135],[-28,131]],[[102052,53266],[-28,245]],[[102024,53511],[-75,194],[-28,123]],[[101921,53828],[-8,164],[-17,95]],[[101896,54087],[-72,159],[-55,142]],[[101769,54388],[-93,193]],[[101676,54581],[-2,227]],[[101674,54808],[-86,120]],[[101588,54928],[-32,119]],[[101556,55047],[-27,122],[-76,191]],[[101453,55360],[-33,188],[-61,233],[-133,199]],[[101226,55980],[-59,139]],[[101167,56119],[-30,51],[-121,168]],[[101016,56338],[-32,49],[-74,164],[-139,192],[-46,76]],[[100725,56819],[-46,115],[-82,156]],[[100597,57090],[-45,115],[-51,94]],[[100501,57299],[-21,69]],[[100480,57368],[8,43]],[[100488,57411],[31,24]],[[100519,57435],[39,-22]],[[100558,57413],[29,238],[20,94]],[[100607,57745],[75,158]],[[100682,57903],[43,114],[82,155],[43,115],[63,130],[37,151]],[[100950,58568],[39,149]],[[100989,58717],[42,78]],[[101031,58795],[111,180],[14,64]],[[101156,59039],[73,222]],[[101229,59261],[66,130],[103,304]],[[101398,59695],[14,76]],[[101412,59771],[0,3]],[[101412,59774],[3,-3]],[[101415,59771],[22,-13]],[[101437,59758],[0,-4]],[[101437,59754],[25,-2]],[[101462,59752],[105,0]],[[101567,59752],[32,-4]],[[101599,59748],[28,10]],[[101627,59758],[13,-20]],[[101640,59738],[33,-13]],[[101673,59725],[4,4]],[[101677,59729],[2,-13]],[[101679,59716],[15,0]],[[101694,59716],[36,-16]],[[101730,59700],[8,-10]],[[101738,59690],[0,-7]],[[101738,59683],[10,-2]],[[101748,59681],[0,-4]],[[101748,59677],[26,-3]],[[101774,59674],[25,-10]],[[101799,59664],[30,-6]],[[101829,59658],[25,-7]],[[101854,59651],[22,-13]],[[101876,59638],[15,13]],[[101891,59651],[34,0]],[[101925,59651],[0,-3]],[[101925,59648],[5,-6]],[[101930,59642],[-5,0]],[[101925,59642],[-25,3]],[[101900,59645],[-9,-7]],[[101891,59638],[3,-12]],[[101894,59626],[0,-4]],[[101894,59622],[17,-3]],[[101911,59619],[0,3]],[[101911,59622],[14,-26]],[[101925,59596],[5,-6]],[[101930,59590],[9,-3]],[[101939,59587],[22,3]],[[101961,59590],[24,-3]],[[101985,59587],[0,-4]],[[101985,59583],[56,-9],[120,3]],[[102161,59577],[2,0]],[[102163,59577],[34,6]],[[102197,59583],[0,-3]],[[102197,59580],[14,-3]],[[102211,59577],[8,6]],[[102219,59583],[19,7]],[[102238,59590],[10,-7]],[[102248,59583],[15,4]],[[102263,59587],[34,6]],[[102297,59593],[45,10]],[[102342,59603],[27,6]],[[102369,59609],[23,-3]],[[102392,59606],[20,13]],[[102412,59619],[38,10]],[[102450,59629],[3,6]],[[102453,59635],[8,-4]],[[102461,59631],[0,4]],[[102461,59635],[42,7]],[[102503,59642],[0,3]],[[102503,59645],[28,3]],[[102531,59648],[3,6]],[[102534,59654],[14,4]],[[102548,59658],[0,-4]],[[102548,59654],[31,-6]],[[102579,59648],[7,0]],[[102586,59648],[65,10]],[[102651,59658],[0,3]],[[102651,59661],[28,3]],[[102679,59664],[17,-6]],[[102696,59658],[32,-10]],[[102728,59648],[0,-3]],[[102728,59645],[4,0]],[[102732,59645],[0,-3]],[[102732,59642],[24,-4]],[[102756,59638],[0,-16]],[[102756,59622],[-8,-10]],[[102748,59612],[0,-16]],[[102748,59596],[9,-9]],[[102757,59587],[0,-4]],[[102757,59583],[24,-13]],[[102781,59570],[26,-12]],[[102807,59558],[25,3]],[[102832,59561],[9,-17]],[[102841,59544],[43,-3]],[[102884,59541],[7,-6]],[[102891,59535],[18,-10]],[[102909,59525],[0,-3]],[[102909,59522],[0,-26]],[[102909,59496],[12,-16]],[[102921,59480],[8,-13]],[[102929,59467],[0,-3]],[[102929,59464],[9,-4]],[[102938,59460],[3,-6]],[[102941,59454],[21,-16]],[[102962,59438],[31,-29]],[[102993,59409],[25,-10]],[[103018,59399],[9,-13]],[[103027,59386],[5,-3]],[[103032,59383],[1,-13]],[[103033,59370],[32,-20]],[[103065,59350],[9,-6]],[[103074,59344],[16,-3]],[[103090,59341],[14,-10]],[[103104,59331],[15,-6]],[[103119,59325],[3,0]],[[103122,59325],[13,-3]],[[103135,59322],[19,-10]],[[103154,59312],[20,-3]],[[103174,59309],[0,-4]],[[103174,59305],[14,-3]],[[103188,59302],[17,-13]],[[103205,59289],[14,-3]],[[103219,59286],[5,-3]],[[103224,59283],[1,0]],[[103225,59283],[0,-3]],[[103225,59280],[10,-3]],[[103235,59277],[14,-7]],[[103249,59270],[4,-7]],[[103253,59263],[7,0]],[[103260,59263],[0,-3]],[[103260,59260],[14,-3]],[[103274,59257],[0,-3]],[[103274,59254],[28,-10]],[[103302,59244],[8,-6]],[[103310,59238],[67,-4]],[[103377,59234],[28,7]],[[103405,59241],[6,6]],[[103411,59247],[11,10]],[[103422,59257],[9,9]],[[103431,59266],[25,14]],[[103456,59280],[2,6]],[[103458,59286],[14,32]],[[103472,59318],[0,7]],[[103472,59325],[9,3]],[[103481,59328],[-1,-13]],[[103480,59315],[0,-19]],[[103480,59296],[12,16]],[[103492,59312],[0,10]],[[103492,59322],[0,19]],[[103492,59341],[8,-3]],[[103500,59338],[0,-7]],[[103500,59331],[8,-3]],[[103508,59328],[3,10]],[[103511,59338],[20,10]],[[103531,59348],[10,41]],[[103541,59389],[-30,0]],[[103511,59389],[0,-3]],[[103511,59386],[-11,-3]],[[103500,59383],[0,-3]],[[103500,59380],[-14,-3]],[[103486,59377],[-3,-10]],[[103483,59367],[-3,6]],[[103480,59373],[11,13]],[[103491,59386],[9,3]],[[103500,59389],[8,4]],[[103508,59393],[0,3]],[[103508,59396],[37,0]],[[103545,59396],[7,6]],[[103552,59402],[9,3]],[[103561,59405],[1,7]],[[103562,59412],[30,4]],[[103592,59416],[5,-7]],[[103597,59409],[15,-13]],[[103612,59396],[2,-26]],[[103614,59370],[22,-22]],[[103636,59348],[11,-20]],[[103647,59328],[15,-3]],[[103662,59325],[2,-7]],[[103664,59318],[9,-3]],[[103673,59315],[16,-6]],[[103689,59309],[19,-4]],[[103708,59305],[15,-3]],[[103723,59302],[19,3]],[[103742,59305],[1,7]],[[103743,59312],[66,0]],[[103809,59312],[0,3]],[[103809,59315],[16,3]],[[103825,59318],[11,-3]],[[103836,59315],[9,-6]],[[103845,59309],[3,-10]],[[103848,59299],[22,-19]],[[103870,59280],[3,-7]],[[103873,59273],[53,-7]],[[103926,59266],[13,11]],[[103939,59277],[7,3]],[[103946,59280],[0,3]],[[103946,59283],[28,13]],[[103974,59296],[2,9]],[[103976,59305],[66,-3]],[[104042,59302],[15,10]],[[104057,59312],[22,6]],[[104079,59318],[0,4]],[[104079,59322],[26,-4]],[[104105,59318],[7,-6]],[[104112,59312],[45,0]],[[104157,59312],[25,13]],[[104182,59325],[23,9]],[[104205,59334],[18,14]],[[104223,59348],[34,2]],[[104257,59350],[11,-16]],[[104268,59334],[8,-9]],[[104276,59325],[1,-10]],[[104277,59315],[5,-3]],[[104282,59312],[14,-10]],[[104296,59302],[15,-9]],[[104311,59293],[7,-7]],[[104318,59286],[26,7]],[[104344,59293],[0,3]],[[104344,59296],[22,6]],[[104366,59302],[0,3]],[[104366,59305],[33,0]],[[104399,59305],[0,4]],[[104399,59309],[19,6]],[[104418,59315],[0,3]],[[104418,59318],[37,4]],[[104455,59322],[0,-4]],[[104455,59318],[34,4]],[[104489,59322],[33,16]],[[104522,59338],[97,0]],[[104619,59338],[59,0]],[[104678,59338],[20,-4]],[[104698,59334],[4,-6]],[[104702,59328],[23,3]],[[104725,59331],[9,10]],[[104734,59341],[16,-3]],[[104750,59338],[2,6]],[[104752,59344],[25,6]],[[104777,59350],[28,17]],[[104805,59367],[25,19]],[[104830,59386],[0,3]],[[104830,59389],[15,4]],[[104845,59393],[0,3]],[[104845,59396],[11,3]],[[104856,59399],[0,3]],[[104856,59402],[20,14]],[[104876,59416],[35,25]],[[104911,59441],[6,3]],[[104917,59444],[0,4]],[[104917,59448],[11,9]],[[104928,59457],[9,10]],[[104937,59467],[19,3]],[[104956,59470],[11,10]],[[104967,59480],[16,10]],[[104983,59490],[3,6]],[[104986,59496],[15,10]],[[105001,59506],[11,3]],[[105012,59509],[14,10]],[[105026,59519],[11,6]],[[105037,59525],[2,7]],[[105039,59532],[23,22]],[[105062,59554],[11,20]],[[105073,59574],[5,3]],[[105078,59577],[1,13]],[[105079,59590],[33,16]],[[105112,59606],[9,23]],[[105121,59629],[22,9]],[[105143,59638],[6,7]],[[105149,59645],[33,0]],[[105182,59645],[13,13]],[[105195,59658],[8,3]],[[105203,59661],[0,3]],[[105203,59664],[12,10]],[[105215,59674],[3,7]],[[105218,59681],[16,9]],[[105234,59690],[1,7]],[[105235,59697],[5,3]],[[105240,59700],[14,58]],[[105254,59758],[14,-4]],[[105268,59754],[0,4]],[[105268,59758],[17,3]],[[105285,59761],[0,7]],[[105285,59768],[8,9]],[[105293,59777],[13,16]],[[105306,59793],[15,4]],[[105321,59797],[0,3]],[[105321,59800],[24,22]],[[105345,59822],[20,39]],[[105365,59861],[9,3]],[[105374,59864],[2,13]],[[105376,59877],[25,39]],[[105401,59916],[59,10]],[[105460,59926],[6,16]],[[105466,59942],[3,13]],[[105469,59955],[0,3]],[[105469,59958],[0,4]],[[105469,59962],[5,6]],[[105474,59968],[6,13]],[[105480,59981],[41,6]],[[105521,59987],[0,-3]],[[105521,59984],[5,-3]],[[105526,59981],[10,-10]],[[105536,59971],[19,-9]],[[105555,59962],[0,-4]],[[105555,59958],[30,4]],[[105585,59962],[0,2]],[[105585,59964],[23,7]],[[105608,59971],[0,3]],[[105608,59974],[24,-3]],[[105632,59971],[-2,23]],[[105630,59994],[0,3]],[[105630,59997],[3,0]],[[105633,59997],[14,-3]],[[105647,59994],[3,-30]],[[105650,59964],[11,-9]],[[105661,59955],[0,-3]],[[105661,59952],[22,3]],[[105683,59955],[5,-10]],[[105688,59945],[11,-3]],[[105699,59942],[3,-7]],[[105702,59935],[6,-6]],[[105708,59929],[3,-6]],[[105711,59923],[22,-27]],[[105733,59896],[8,-38]],[[105741,59858],[11,-10]],[[105752,59848],[0,-3]],[[105752,59845],[6,-3]],[[105758,59842],[6,-17]],[[105764,59825],[8,-12]],[[105772,59813],[0,-4]],[[105772,59809],[14,-9]],[[105786,59800],[6,-23]],[[105792,59777],[14,-6]],[[105806,59771],[11,-10]],[[105817,59761],[7,-3]],[[105824,59758],[0,-4]],[[105824,59754],[14,-6]],[[105838,59748],[1,-6]],[[105839,59742],[14,-4]],[[105853,59738],[22,-9]],[[105875,59729],[8,-4]],[[105883,59725],[0,-9]],[[105883,59716],[9,-3]],[[105892,59713],[0,-4]],[[105892,59709],[31,-6]],[[105923,59703],[21,3]],[[105944,59706],[26,-9]],[[105970,59697],[74,-14]],[[106044,59683],[1,3]],[[106045,59686],[0,4]],[[106045,59690],[61,3]],[[106106,59693],[0,4]],[[106106,59697],[16,3]],[[106122,59700],[0,3]],[[106122,59703],[25,3]],[[106147,59706],[7,7]],[[106154,59713],[46,3]],[[106200,59716],[31,13]],[[106231,59729],[26,13]],[[106257,59742],[14,16]],[[106271,59758],[11,6]],[[106282,59764],[0,-3]],[[106282,59761],[24,10]],[[106306,59771],[6,10]],[[106312,59781],[11,6]],[[106323,59787],[0,3]],[[106323,59790],[8,3]],[[106331,59793],[1,7]],[[106332,59800],[24,16]],[[106356,59816],[8,13]],[[106364,59829],[9,7]],[[106373,59836],[0,3]],[[106373,59839],[8,3]],[[106381,59842],[11,13]],[[106392,59855],[15,6]],[[106407,59861],[5,7]],[[106412,59868],[14,6]],[[106426,59874],[0,3]],[[106426,59877],[6,3]],[[106432,59880],[14,16]],[[106446,59896],[13,7]],[[106459,59903],[4,7]],[[106463,59910],[24,16]],[[106487,59926],[11,13]],[[106498,59939],[15,9]],[[106513,59948],[0,4]],[[106513,59952],[25,19]],[[106538,59971],[11,13]],[[106549,59984],[8,3]],[[106557,59987],[0,4]],[[106557,59991],[6,3]],[[106563,59994],[2,6]],[[106565,60000],[23,16]],[[106588,60016],[10,14]],[[106598,60030],[11,5]],[[106609,60035],[0,7]],[[106609,60042],[9,4]],[[106618,60046],[0,3]],[[106618,60049],[9,6]],[[106627,60055],[0,3]],[[106627,60058],[13,10]],[[106640,60068],[9,13]],[[106649,60081],[10,3]],[[106659,60084],[1,6]],[[106660,60090],[5,4]],[[106665,60094],[4,7]],[[106669,60101],[10,2]],[[106679,60103],[0,3]],[[106679,60106],[14,14]],[[106693,60120],[6,9]],[[106699,60129],[11,7]],[[106710,60136],[20,25]],[[106730,60161],[14,13]],[[106744,60174],[5,10]],[[106749,60184],[14,13]],[[106763,60197],[0,3]],[[106763,60200],[8,7]],[[106771,60207],[12,-7]],[[106783,60200],[13,4]],[[106796,60204],[3,6]],[[106799,60210],[25,3]],[[106824,60213],[6,10]],[[106830,60223],[11,3]],[[106841,60226],[0,3]],[[106841,60229],[8,4]],[[106849,60233],[3,10]],[[106852,60243],[22,41]],[[106874,60284],[0,10]],[[106874,60294],[1,17]],[[106875,60311],[19,-17]],[[106894,60294],[6,-3]],[[106900,60291],[2,-7]],[[106902,60284],[25,7]],[[106927,60291],[19,9]],[[106946,60300],[4,4]],[[106950,60304],[7,10]],[[106957,60314],[6,16]],[[106963,60330],[0,3]],[[106963,60333],[19,-3]],[[106982,60330],[4,35]],[[106986,60365],[10,3]],[[106996,60368],[20,20]],[[107016,60388],[0,10]],[[107016,60398],[0,9]],[[107016,60407],[31,13]],[[107047,60420],[0,3]],[[107047,60423],[9,4]],[[107056,60427],[18,-4]],[[107074,60423],[-7,-3]],[[107067,60420],[-4,-42]],[[107063,60378],[18,0]],[[107081,60378],[5,10]],[[107086,60388],[20,-17]],[[107106,60371],[32,-19]],[[107138,60352],[20,19]],[[107158,60371],[15,-16]],[[107173,60355],[36,13]],[[107209,60368],[13,10]],[[107222,60378],[3,4]],[[107225,60382],[14,6]],[[107239,60388],[0,3]],[[107239,60391],[9,7]],[[107248,60398],[0,3]],[[107248,60401],[16,9]],[[107264,60410],[19,7]],[[107283,60417],[50,-3]],[[107333,60414],[0,3]],[[107333,60417],[61,3]],[[107394,60420],[15,10]],[[107409,60430],[34,6]],[[107443,60436],[18,-16]],[[107461,60420],[43,7]],[[107504,60427],[0,3]],[[107504,60430],[17,6]],[[107521,60436],[5,7]],[[107526,60443],[24,6]],[[107550,60449],[6,6]],[[107556,60455],[9,4]],[[107565,60459],[2,7]],[[107567,60466],[4,-4]],[[107571,60462],[5,7]],[[107576,60469],[9,3]],[[107585,60472],[0,3]],[[107585,60475],[14,13]],[[107599,60488],[7,3]],[[107606,60491],[11,7]],[[107617,60498],[0,3]],[[107617,60501],[7,4]],[[107624,60505],[13,16]],[[107637,60521],[8,3]],[[107645,60524],[0,2]],[[107645,60526],[8,4]],[[107653,60530],[3,7]],[[107656,60537],[20,16]],[[107676,60553],[14,12]],[[107690,60565],[6,4]],[[107696,60569],[0,3]],[[107696,60572],[10,6]],[[107706,60578],[1,7]],[[107707,60585],[20,26]],[[107727,60611],[11,13]],[[107738,60624],[18,6]],[[107756,60630],[4,7]],[[107760,60637],[21,16]],[[107781,60653],[7,12]],[[107788,60665],[10,4]],[[107798,60669],[3,7]],[[107801,60676],[6,3]],[[107807,60679],[5,9]],[[107812,60688],[22,10]],[[107834,60698],[7,13]],[[107841,60711],[8,6]],[[107849,60717],[13,17]],[[107862,60734],[9,2]],[[107871,60736],[0,4]],[[107871,60740],[13,10]],[[107884,60750],[3,6]],[[107887,60756],[15,-3]],[[107902,60753],[0,-3]],[[107902,60750],[16,-3]],[[107918,60747],[0,3]],[[107918,60750],[22,3]],[[107940,60753],[0,3]],[[107940,60756],[14,3]],[[107954,60759],[0,4]],[[107954,60763],[6,3]],[[107960,60766],[22,16]],[[107982,60782],[6,4]],[[107988,60786],[5,6]],[[107993,60792],[29,13]],[[108022,60805],[5,-26]],[[108027,60779],[16,-7]],[[108043,60772],[1,-6]],[[108044,60766],[24,-16]],[[108068,60750],[6,-7]],[[108074,60743],[9,-3]],[[108083,60740],[0,-4]],[[108083,60736],[42,-2]],[[108125,60734],[0,-3]],[[108125,60731],[28,-11]],[[108153,60720],[0,4]],[[108153,60724],[43,10]],[[108196,60734],[4,0]],[[108200,60734],[46,-3]],[[108246,60731],[3,-7]],[[108249,60724],[53,-7]],[[108302,60717],[23,14]],[[108325,60731],[34,0]],[[108359,60731],[0,3]],[[108359,60734],[11,2]],[[108370,60736],[11,7]],[[108381,60743],[21,0]],[[108402,60743],[11,-23]],[[108413,60720],[43,4]],[[108456,60724],[0,3]],[[108456,60727],[17,4]],[[108473,60731],[5,5]],[[108478,60736],[14,-2]],[[108492,60734],[0,2]],[[108492,60736],[16,4]],[[108508,60740],[0,3]],[[108508,60743],[23,-3]],[[108531,60740],[13,-9]],[[108544,60731],[7,-4]],[[108551,60727],[7,4]],[[108558,60731],[45,-4]],[[108603,60727],[-2,-10]],[[108601,60717],[-18,-19]],[[108583,60698],[31,-26]],[[108614,60672],[29,4]],[[108643,60676],[132,9]],[[108775,60685],[20,3]],[[108795,60688],[0,4]],[[108795,60692],[20,3]],[[108815,60695],[33,6]],[[108848,60701],[23,7]],[[108871,60708],[58,12]],[[108929,60720],[52,4]],[[108981,60724],[29,12]],[[109010,60736],[14,4]],[[109024,60740],[2,3]],[[109026,60743],[6,7]],[[109032,60750],[9,3]],[[109041,60753],[0,3]],[[109041,60756],[10,3]],[[109051,60759],[1,7]],[[109052,60766],[10,3]],[[109062,60769],[0,3]],[[109062,60772],[14,14]],[[109076,60786],[36,2]],[[109112,60788],[15,10]],[[109127,60798],[5,7]],[[109132,60805],[76,9]],[[109208,60814],[24,7]],[[109232,60821],[25,0]],[[109257,60821],[0,3]],[[109257,60824],[6,0]],[[109263,60824],[19,6]],[[109282,60830],[45,7]],[[109327,60837],[20,10]],[[109347,60847],[33,9]],[[109380,60856],[13,10]],[[109393,60866],[46,7]],[[109439,60873],[11,13]],[[109450,60886],[46,3]],[[109496,60889],[3,6]],[[109499,60895],[9,7]],[[109508,60902],[0,3]],[[109508,60905],[11,3]],[[109519,60908],[0,3]],[[109519,60911],[26,13]],[[109545,60924],[16,13]],[[109561,60937],[9,4]],[[109570,60941],[0,3]],[[109570,60944],[25,13]],[[109595,60957],[7,6]],[[109602,60963],[3,3]],[[109605,60966],[6,3]],[[109611,60969],[19,20]],[[109630,60989],[17,9]],[[109647,60998],[0,3]],[[109647,61001],[17,11]],[[109664,61012],[2,6]],[[109666,61018],[6,3]],[[109672,61021],[12,13]],[[109684,61034],[13,10]],[[109697,61044],[5,13]],[[109702,61057],[14,3]],[[109716,61060],[0,3]],[[109716,61063],[6,4]],[[109722,61067],[14,16]],[[109736,61083],[15,9]],[[109751,61092],[4,7]],[[109755,61099],[14,16]],[[109769,61115],[6,6]],[[109775,61121],[20,23]],[[109795,61144],[6,3]],[[109801,61147],[5,10]],[[109806,61157],[22,16]],[[109828,61173],[12,16]],[[109840,61189],[7,3]],[[109847,61192],[0,3]],[[109847,61195],[6,4]],[[109853,61199],[3,7]],[[109856,61206],[25,12]],[[151236,22078],[22,-127]],[[151258,21951],[0,-132],[-34,-155],[-69,-129],[-47,-112],[-62,-119]],[[151046,21304],[-8,-110]],[[151038,21194],[28,-48],[120,-75],[71,-18],[46,11],[191,95],[139,92],[103,51],[117,72]],[[151853,21374],[81,28]],[[151934,21402],[119,10]],[[152053,21412],[117,-13],[56,-18],[142,-79],[56,-18]],[[152424,21284],[147,-13],[117,19],[54,25]],[[152742,21315],[166,144]],[[152908,21459],[98,69]],[[153006,21528],[76,41],[74,56]],[[153156,21625],[93,91],[156,171],[122,154]],[[153527,22041],[67,140]],[[153594,22181],[81,136]],[[153675,22317],[119,156],[97,166]],[[153891,22639],[39,54]],[[153930,22693],[73,-71],[109,31]],[[154112,22653],[33,-12],[78,-99],[30,-152]],[[154253,22390],[128,-109],[37,-63],[30,-117]],[[154448,22101],[-45,-157]],[[154403,21944],[-167,-252],[-63,-76]],[[154173,21616],[-98,-77]],[[154075,21539],[-80,-136]],[[153995,21403],[-15,-113],[36,-63]],[[154016,21227],[14,-26],[78,-42]],[[154108,21159],[135,-209],[136,-62]],[[154379,20888],[45,-42],[25,-55],[4,-327]],[[154453,20464],[-44,-77],[-128,-152]],[[154281,20235],[-9,-39],[40,-104],[-78,-257],[-3,-117],[91,-236]],[[154322,19482],[14,-110],[-24,-43]],[[154312,19329],[-92,-56],[-62,-336],[39,-42],[126,-66]],[[154323,18829],[253,-54]],[[154576,18775],[69,-33],[49,-71],[49,-120],[69,-109]],[[154812,18442],[51,-195],[119,-20]],[[154982,18227],[121,-3],[25,-13]],[[155128,18211],[94,-48],[56,-52]],[[155278,18111],[133,-291],[374,-286],[169,-187]],[[155954,17347],[95,-247],[-2,-82]],[[156047,17018],[-7,-56],[-33,-62],[-103,-130]],[[155904,16770],[-161,-131],[-97,-111]],[[155646,16528],[-53,-106]],[[155593,16422],[-6,-48],[72,-439]],[[155659,15935],[23,-82],[124,-157]],[[155806,15696],[15,-130],[-9,-41]],[[155812,15525],[-8,-32],[-214,175]],[[155590,15668],[-61,49],[-64,-1],[-60,-42]],[[155405,15674],[-68,24]],[[155337,15698],[-112,59]],[[155225,15757],[-123,41],[-75,10],[-180,-13]],[[154847,15795],[-73,12]],[[154774,15807],[-76,43]],[[154698,15850],[-136,78],[-59,23],[-60,-10],[-50,-33]],[[154393,15908],[-42,-28],[-186,-182],[-142,-63],[-73,-91]],[[153950,15544],[-108,-176],[-81,-167]],[[153761,15201],[-129,-23],[-85,-59],[-45,-71]],[[153502,15048],[-20,-117],[-67,-74]],[[153415,14857],[-304,-174]],[[153111,14683],[-142,-100],[-249,-78]],[[152720,14505],[-165,-87],[-284,10],[-106,-41],[-58,-45]],[[152107,14342],[-17,-68]],[[152090,14274],[131,-147]],[[152221,14127],[3,-51],[-31,-70],[-151,-175]],[[152042,13831],[-88,-161]],[[151954,13670],[-8,0]],[[151946,13670],[-59,-100],[-19,-112]],[[151868,13458],[-12,-72],[-58,39]],[[151798,13425],[-76,52],[-175,5]],[[151547,13482],[-61,41]],[[151486,13523],[-47,48],[-68,236]],[[151371,13807],[-136,272],[-8,87],[45,138]],[[151272,14304],[-48,105]],[[151224,14409],[-148,122],[-75,91],[-75,159],[-24,112]],[[150902,14893],[0,95]],[[150902,14988],[47,119],[72,118],[84,110]],[[151105,15335],[47,60],[34,92]],[[151186,15487],[38,104],[114,-32],[100,16]],[[151438,15575],[107,80]],[[151545,15655],[69,149],[2,110],[-83,204]],[[151533,16118],[-10,23],[25,266]],[[151548,16407],[-26,110],[-95,184]],[[151427,16701],[-242,314]],[[151185,17015],[-178,60],[-13,6],[-159,77]],[[150835,17158],[-118,95],[-95,13]],[[150622,17266],[-97,63],[-119,112]],[[150406,17441],[-92,-14]],[[150314,17427],[-150,-23],[-146,7],[-96,24]],[[149922,17435],[-59,15],[-111,65],[-174,-15],[-57,50]],[[149521,17550],[-26,-4],[-55,-81]],[[149440,17465],[-125,-185]],[[149315,17280],[-70,-43]],[[149245,17237],[-1,-1],[-108,-42]],[[149136,17194],[-59,-24]],[[149077,17170],[-64,-66],[-19,-85]],[[148994,17019],[-11,-48]],[[148983,16971],[-128,-218],[0,-13]],[[148855,16740],[-161,-116]],[[148694,16624],[-287,-127],[-203,-30]],[[148204,16467],[-203,-32],[-368,5]],[[147633,16440],[-8,3]],[[147625,16443],[-282,35],[-89,-33],[-59,0],[-88,46]],[[147107,16491],[-47,0],[-85,-43]],[[146975,16448],[-30,1]],[[146945,16449],[-59,58],[-35,-6]],[[146851,16501],[-65,-50],[-248,3],[-322,65]],[[146216,16519],[-281,92]],[[145935,16611],[-47,104],[-81,56]],[[145807,16771],[-170,-61],[-285,93],[-163,87]],[[145189,16890],[-87,106]],[[145102,16996],[-48,73],[-61,139]],[[144993,17208],[-32,53]],[[144961,17261],[-57,76],[-145,167],[-55,76]],[[144704,17580],[-28,57],[-20,96],[-5,98]],[[144651,17831],[6,140]],[[144657,17971],[-4,239],[0,434]],[[144653,18644],[-2,981],[3,113]],[[144654,19738],[27,179],[67,161]],[[144748,20078],[50,213]],[[144798,20291],[75,190],[15,68]],[[144888,20549],[11,144]],[[144899,20693],[3,403],[5,72]],[[144907,21168],[34,136]],[[144941,21304],[105,238]],[[145046,21542],[73,158]],[[145119,21700],[16,66],[14,175],[-2,289]],[[145147,22230],[122,0],[76,-72],[67,-27]],[[145412,22131],[47,7]],[[145459,22138],[35,31]],[[145494,22169],[20,60],[339,2],[167,-11],[93,-23],[145,-72],[56,-16],[130,-16],[169,-3]],[[146613,22090],[340,1],[167,12]],[[147120,22103],[93,24],[170,80]],[[147383,22207],[116,9],[56,-9]],[[147555,22207],[58,-22],[111,-65]],[[147724,22120],[103,-51],[112,-67],[59,-24]],[[147998,21978],[60,-14],[187,-24]],[[148245,21940],[134,-24],[179,62]],[[148558,21978],[144,86],[105,48],[198,111]],[[149005,22223],[79,-9]],[[149084,22214],[110,-32],[118,-65]],[[149312,22117],[86,-22],[180,-11]],[[149578,22084],[90,6]],[[149668,22090],[139,37],[119,71]],[[149926,22198],[103,49],[140,88],[103,49],[140,88],[105,50]],[[150517,22522],[139,90],[165,83]],[[150821,22695],[70,18],[52,-16]],[[150943,22697],[109,-100]],[[151052,22597],[64,-112]],[[151116,22485],[44,-217]],[[151160,22268],[76,-190]],[[85635,10563],[0,-4]],[[85635,10559],[24,-7]],[[85659,10552],[0,-3]],[[85659,10549],[-10,-6]],[[85649,10543],[-6,-3]],[[85643,10540],[-3,3]],[[85640,10543],[-10,9]],[[85630,10552],[5,11]],[[85304,14036],[227,-17]],[[85531,14019],[59,-17],[120,-62],[84,-27],[94,-11]],[[85888,13902],[223,-11],[91,-22]],[[86202,13869],[220,-115],[67,-51]],[[86489,13703],[37,-42]],[[86526,13661],[31,-48],[61,-134]],[[86618,13479],[49,-76],[117,-57]],[[86784,13346],[171,-96]],[[86955,13250],[97,-25],[239,-10],[440,11]],[[89571,11870],[81,-212]],[[89652,11658],[0,-12]],[[89652,11646],[-3,-73]],[[89649,11573],[-64,-132]],[[89585,11441],[-197,-252]],[[89388,11189],[-107,-138],[-47,-101],[-27,-123],[11,-53],[80,-168]],[[89298,10606],[29,-192]],[[89327,10414],[-14,-75],[-75,-114],[-71,-178]],[[89167,10047],[-102,-98]],[[89065,9949],[-118,-250],[-24,-125]],[[88923,9574],[-8,-103]],[[88915,9471],[103,-349],[19,-111],[9,-138],[-34,-198]],[[89012,8675],[-31,-74],[-39,-211]],[[88942,8390],[-66,-174]],[[88876,8216],[-79,-122],[-167,-128],[0,-48]],[[88630,7918],[33,-60],[-18,-70]],[[88645,7788],[105,-210],[6,-255]],[[88756,7323],[41,-41]],[[88797,7282],[17,-43]],[[88814,7239],[11,-160],[65,-153],[14,-114]],[[88904,6812],[54,-89]],[[88958,6723],[109,-34]],[[89067,6689],[73,16],[56,-17]],[[89196,6688],[8,-38],[-26,-153],[62,-176]],[[89240,6321],[-2,-64],[-26,-33]],[[89212,6224],[-102,-123]],[[89110,6101],[-34,-92],[31,-57],[80,10],[161,80]],[[89348,6042],[73,5],[75,-25]],[[89496,6022],[56,-43],[23,-48],[0,-84],[-1,-53]],[[89574,5794],[17,-140],[194,-63]],[[89785,5591],[45,-55],[-11,-59]],[[89819,5477],[-55,-124],[3,-56]],[[89767,5297],[25,-66],[85,-125]],[[89877,5106],[-44,-127]],[[89833,4979],[-134,-82],[-77,-93]],[[89622,4804],[-279,-1]],[[89343,4803],[-108,-133]],[[89235,4670],[-73,-13],[-73,11],[-208,169]],[[88881,4837],[-45,4],[-170,-51]],[[88666,4790],[-120,117],[-161,0],[-49,-29]],[[88336,4878],[-60,-66],[-27,13]],[[88249,4825],[-87,40],[-25,-20],[-27,-163]],[[88110,4682],[-61,-154],[-36,-31]],[[88013,4497],[-50,-13]],[[87963,4484],[-110,77],[-181,34],[-103,67]],[[87569,4662],[-80,71],[-76,37]],[[87413,4770],[-49,-36],[2,-122]],[[87366,4612],[45,-153]],[[87411,4459],[-37,-114]],[[87374,4345],[-80,-15],[-58,-90]],[[87236,4240],[-40,-133],[93,-207]],[[87289,3900],[30,-104]],[[87319,3796],[-87,-277],[32,-127]],[[87264,3392],[7,-99],[21,-53]],[[87292,3240],[46,-49],[29,-79],[-75,-181]],[[87292,2931],[49,-183],[3,-76],[-20,-71]],[[87324,2601],[-74,-99],[-22,-62],[13,-188],[-31,-103],[-35,-39]],[[87175,2110],[-48,-33],[-94,-32]],[[87033,2045],[-103,4],[-220,136],[-117,-89]],[[86593,2096],[-40,-55],[-25,-135],[92,-226]],[[86620,1680],[-28,-38]],[[86592,1642],[-105,-41]],[[86487,1601],[-87,10]],[[86400,1611],[-127,81],[-71,24],[-117,-12]],[[86085,1704],[-94,-27]],[[85991,1677],[-131,-104],[-55,-93],[-54,-93],[-94,-197]],[[85657,1190],[-56,-196],[15,-22]],[[85616,972],[52,-179]],[[85668,793],[-50,-568]],[[85618,225],[-105,-218]],[[85513,7],[-54,-7]],[[85459,0],[-70,46],[-57,166]],[[85332,212],[-50,140],[-62,102]],[[85220,454],[-144,119],[-163,37],[-224,72]],[[84689,682],[-154,49],[-72,3]],[[84463,734],[-150,7]],[[84313,741],[-51,44],[-13,72]],[[84249,857],[57,218],[9,184]],[[84315,1259],[-53,112],[-64,72],[-58,7]],[[84140,1450],[-62,-19],[-106,-61]],[[83972,1370],[-244,-141]],[[83728,1229],[-122,-38]],[[83606,1191],[-109,131],[-33,28],[-4,104]],[[83460,1454],[0,19]],[[83460,1473],[20,78]],[[83480,1551],[14,42]],[[83494,1593],[5,23]],[[83499,1616],[0,6]],[[83499,1622],[11,13]],[[83510,1635],[0,3]],[[83510,1638],[23,-6]],[[83533,1632],[11,9]],[[83544,1641],[6,3]],[[83550,1644],[3,7]],[[83553,1651],[0,4]],[[83553,1655],[0,6]],[[83553,1661],[-3,29]],[[83550,1690],[0,3]],[[83550,1693],[10,3]],[[83560,1696],[4,7]],[[83564,1703],[7,3]],[[83571,1706],[0,3]],[[83571,1709],[14,19]],[[83585,1728],[9,14]],[[83594,1742],[9,6]],[[83603,1748],[0,3]],[[83603,1751],[7,4]],[[83610,1755],[4,12]],[[83614,1767],[25,13]],[[83639,1780],[2,7]],[[83641,1787],[14,7]],[[83655,1794],[0,3]],[[83655,1797],[1,6]],[[83656,1803],[8,3]],[[83664,1806],[11,16]],[[83675,1822],[6,7]],[[83681,1829],[0,3]],[[83681,1832],[8,6]],[[83689,1838],[5,16]],[[83694,1854],[20,23]],[[83714,1877],[20,29]],[[83734,1906],[11,4]],[[83745,1910],[0,6]],[[83745,1916],[5,3]],[[83750,1919],[25,19]],[[83775,1938],[5,-2]],[[83780,1936],[4,2]],[[83784,1938],[0,23]],[[83784,1961],[0,23]],[[83784,1984],[8,20]],[[83792,2004],[0,12]],[[83792,2016],[5,23]],[[83797,2039],[20,32]],[[83817,2071],[13,16]],[[83830,2087],[7,4]],[[83837,2091],[0,3]],[[83837,2094],[5,3]],[[83842,2097],[2,3]],[[83844,2100],[6,10]],[[83850,2110],[20,10]],[[83870,2120],[8,12]],[[83878,2132],[12,10]],[[83890,2142],[11,0]],[[83901,2142],[7,4]],[[83908,2146],[0,3]],[[83908,2149],[34,42]],[[83942,2191],[16,26]],[[83958,2217],[0,13]],[[83958,2230],[3,11]],[[83961,2241],[0,1]],[[83961,2242],[12,13]],[[83973,2255],[0,33]],[[83973,2288],[-12,52]],[[83961,2340],[-14,51]],[[83947,2391],[-5,6]],[[83942,2397],[-2,10]],[[83940,2407],[-12,20]],[[83928,2427],[-6,32]],[[83922,2459],[-14,20]],[[83908,2479],[-2,16]],[[83906,2495],[-5,3]],[[83901,2498],[-6,22]],[[83895,2520],[-5,7]],[[83890,2527],[-3,13]],[[83887,2540],[-9,16]],[[83878,2556],[-8,26]],[[83870,2582],[-14,29]],[[83856,2611],[0,3]],[[83856,2614],[-6,7]],[[83850,2621],[-5,19]],[[83845,2640],[-8,6]],[[83837,2646],[-1,10]],[[83836,2656],[-6,13]],[[83830,2669],[-13,45]],[[83817,2714],[-20,46]],[[83797,2760],[-5,16]],[[83792,2776],[-6,9]],[[83786,2785],[-2,13]],[[83784,2798],[-4,7]],[[83780,2805],[-14,51]],[[83766,2856],[-21,48]],[[83745,2904],[-4,30]],[[83741,2934],[-7,13]],[[83734,2947],[-3,12]],[[83731,2959],[-4,11]],[[83727,2970],[-13,45]],[[83714,3015],[-20,42]],[[83694,3057],[-5,6]],[[83689,3063],[-8,7]],[[83681,3070],[0,23]],[[83681,3093],[-6,5]],[[83675,3098],[-14,39]],[[83661,3137],[-5,7]],[[83656,3144],[-1,13]],[[83655,3157],[0,6]],[[83655,3163],[-11,23]],[[83644,3186],[-8,19]],[[83636,3205],[-12,32]],[[83624,3237],[-3,14]],[[83621,3251],[-5,3]],[[83616,3254],[-6,19]],[[83610,3273],[-5,7]],[[83605,3280],[-2,9]],[[83603,3289],[-9,19]],[[83594,3308],[-9,27]],[[83585,3335],[-14,25]],[[83571,3360],[0,3]],[[83571,3363],[-7,11]],[[83564,3374],[-4,16]],[[83560,3390],[-7,9]],[[83553,3399],[-3,10]],[[83550,3409],[-6,9]],[[83544,3418],[-11,29]],[[83533,3447],[-23,43]],[[83510,3490],[-2,6]],[[83508,3496],[-9,13]],[[83499,3509],[0,4]],[[83499,3513],[-5,2]],[[83494,3515],[-14,46]],[[83480,3561],[-31,25]],[[83449,3586],[0,-2]],[[83449,3584],[-38,22]],[[83411,3606],[-4,10]],[[83407,3616],[1,0]],[[83408,3616],[0,3]],[[83408,3619],[21,-23]],[[83429,3596],[14,0]],[[83443,3596],[0,7]],[[83443,3603],[-5,6]],[[83438,3609],[-9,19]],[[83429,3628],[0,20]],[[83429,3648],[-21,32]],[[83408,3680],[-1,36]],[[83407,3716],[-10,16]],[[83397,3732],[0,3]],[[83397,3735],[0,13]],[[83397,3748],[0,3]],[[83397,3751],[-9,10]],[[83388,3761],[-11,22]],[[83377,3783],[-8,4]],[[83369,3787],[0,3]],[[83369,3790],[-11,4]],[[83358,3794],[-6,5]],[[83352,3799],[0,14]],[[83352,3813],[0,22]],[[83352,3835],[-14,23]],[[83338,3858],[-1,13]],[[83337,3871],[-5,6]],[[83332,3877],[-14,29]],[[83318,3906],[-10,20]],[[83308,3926],[-6,16]],[[83302,3942],[-15,23]],[[83287,3965],[0,6]],[[83287,3971],[0,3]],[[83287,3974],[0,3]],[[83287,3977],[-11,10]],[[83276,3987],[-3,10]],[[83273,3997],[-5,3]],[[83268,4000],[-2,9]],[[83266,4009],[-9,4]],[[83257,4013],[-9,16]],[[83248,4029],[-22,32]],[[83226,4061],[-3,7]],[[83223,4068],[0,3]],[[83223,4071],[0,4]],[[83223,4075],[-7,6]],[[83216,4081],[-20,35]],[[83196,4116],[-20,13]],[[83176,4129],[-3,7]],[[83173,4136],[-25,3]],[[83148,4139],[0,3]],[[83148,4142],[-27,72]],[[83121,4214],[-29,51]],[[83092,4265],[-7,13]],[[83085,4278],[0,7]],[[83085,4285],[-11,9]],[[83074,4294],[-7,16]],[[83067,4310],[-13,23]],[[83054,4333],[-3,9]],[[83051,4342],[-5,4]],[[83046,4346],[-4,6]],[[83042,4352],[-7,4]],[[83035,4356],[-3,16]],[[83032,4372],[-8,16]],[[83024,4388],[-7,22]],[[83017,4410],[-16,23]],[[83001,4433],[0,7]],[[83001,4440],[-9,12]],[[82992,4452],[-28,52]],[[82964,4504],[-21,36]],[[82943,4540],[0,3]],[[82943,4543],[0,3]],[[82943,4546],[-4,16]],[[82939,4562],[-8,39]],[[82931,4601],[-2,10]],[[82929,4611],[-4,3]],[[82925,4614],[-15,29]],[[82910,4643],[-20,26]],[[82890,4669],[-4,9]],[[82886,4678],[-7,7]],[[82879,4685],[-3,13]],[[82876,4698],[-3,3]],[[82873,4701],[-14,29]],[[82859,4730],[-20,36]],[[82839,4766],[-5,10]],[[82834,4776],[-6,13]],[[82828,4789],[0,6]],[[82828,4795],[0,6]],[[82828,4801],[0,7]],[[82828,4808],[-8,13]],[[82820,4821],[-13,29]],[[82807,4850],[-20,26]],[[82787,4876],[-3,6]],[[82784,4882],[-16,10]],[[82768,4892],[-14,9]],[[82754,4901],[-4,3]],[[82750,4904],[-2,30]],[[82748,4934],[-11,3]],[[82737,4937],[-3,10]],[[82734,4947],[-17,13]],[[82717,4960],[-14,22]],[[82703,4982],[-5,4]],[[82698,4986],[-1,6]],[[82697,4992],[-10,10]],[[82687,5002],[-9,19]],[[82678,5021],[-14,29]],[[82664,5050],[0,7]],[[82664,5057],[-6,13]],[[82658,5070],[-5,19]],[[82653,5089],[-6,6]],[[82647,5095],[-3,7]],[[82644,5102],[-5,3]],[[82639,5105],[-2,4]],[[82637,5109],[-9,12]],[[82628,5121],[-22,29]],[[82606,5150],[0,3]],[[82606,5153],[-12,4]],[[82594,5157],[-21,39]],[[82573,5196],[-21,19]],[[82552,5215],[0,3]],[[82552,5218],[-10,13]],[[82542,5231],[0,6]],[[82542,5237],[-6,10]],[[82536,5247],[-14,33]],[[82522,5280],[-6,6]],[[82516,5286],[0,6]],[[82516,5292],[-14,16]],[[82502,5308],[-5,16]],[[82497,5324],[-14,14]],[[82483,5338],[-13,16]],[[82470,5354],[-23,9]],[[82447,5363],[-2,7]],[[82445,5370],[-14,16]],[[82431,5386],[-1,7]],[[82430,5393],[-8,3]],[[82422,5396],[-5,22]],[[82417,5418],[-4,7]],[[82413,5425],[-2,19]],[[82411,5444],[-9,36]],[[82402,5480],[-6,10]],[[82396,5490],[-16,9]],[[82380,5499],[0,3]],[[82380,5502],[-8,11]],[[82372,5513],[-5,12]],[[82367,5525],[-4,4]],[[82363,5529],[-2,3]],[[82361,5532],[0,32]],[[82361,5564],[-1,9]],[[82360,5573],[-8,30]],[[82352,5603],[0,35]],[[82352,5638],[8,7]],[[82360,5645],[1,9]],[[82361,5654],[6,17]],[[82367,5671],[0,54]],[[82367,5725],[-6,36]],[[82361,5761],[-1,6]],[[82360,5767],[-13,10]],[[82347,5777],[-6,42]],[[82341,5819],[0,46]],[[82341,5865],[30,29]],[[82371,5894],[9,6]],[[82380,5900],[0,3]],[[82380,5903],[12,46]],[[82392,5949],[10,22]],[[82402,5971],[11,10]],[[82413,5981],[17,12]],[[82430,5993],[15,20]],[[82445,6013],[5,7]],[[82450,6020],[47,19]],[[82497,6039],[5,16]],[[82502,6055],[14,10]],[[82516,6065],[0,3]],[[82516,6068],[12,7]],[[82528,6075],[24,9]],[[82552,6084],[25,39]],[[82577,6123],[9,13]],[[82586,6136],[6,3]],[[82592,6139],[2,7]],[[82594,6146],[8,6]],[[82602,6152],[4,7]],[[82606,6159],[20,60]],[[82626,6219],[7,107]],[[82633,6326],[11,-9]],[[82644,6317],[0,3]],[[82644,6320],[34,16]],[[82678,6336],[36,26]],[[82714,6362],[19,13]],[[82733,6375],[1,6]],[[82734,6381],[16,7]],[[82750,6388],[4,6]],[[82754,6394],[57,-3]],[[82811,6391],[0,3]],[[82811,6394],[59,10]],[[82870,6404],[9,6]],[[82879,6410],[39,7]],[[82918,6417],[13,12]],[[82931,6429],[8,4]],[[82939,6433],[4,13]],[[82943,6446],[21,22]],[[82964,6468],[10,49]],[[82974,6517],[7,19]],[[82981,6536],[3,39]],[[82984,6575],[3,4]],[[82987,6579],[8,164]],[[82995,6743],[25,19]],[[83020,6762],[0,4]],[[83020,6766],[15,3]],[[83035,6769],[11,13]],[[83046,6782],[5,3]],[[83051,6785],[3,7]],[[83054,6792],[13,13]],[[83067,6805],[7,28]],[[83074,6833],[11,7]],[[83085,6840],[0,4]],[[83085,6844],[7,5]],[[83092,6849],[14,50]],[[83106,6899],[0,6]],[[83106,6905],[0,3]],[[83106,6908],[14,16]],[[83120,6924],[3,16]],[[83123,6940],[20,23]],[[83143,6963],[14,19]],[[83157,6982],[14,-3]],[[83171,6979],[5,-10]],[[83176,6969],[20,-13]],[[83196,6956],[72,0]],[[83268,6956],[5,4]],[[83273,6960],[6,9]],[[83279,6969],[20,39]],[[83299,7008],[9,46]],[[83308,7054],[10,25]],[[83318,7079],[0,42]],[[83318,7121],[0,7]],[[83318,7128],[3,13]],[[83321,7141],[0,3]],[[83321,7144],[0,6]],[[83321,7150],[0,4]],[[83321,7154],[0,16]],[[83321,7170],[3,16]],[[83324,7186],[8,55]],[[83332,7241],[6,3]],[[83338,7244],[20,7]],[[83358,7251],[11,6]],[[83369,7257],[0,3]],[[83369,7260],[8,10]],[[83377,7270],[13,42]],[[83390,7312],[7,3]],[[83397,7315],[0,-3]],[[83397,7312],[10,-7]],[[83407,7305],[1,-6]],[[83408,7299],[11,-3]],[[83419,7296],[10,0]],[[83429,7296],[11,6]],[[83440,7302],[7,3]],[[83447,7305],[2,7]],[[83449,7312],[6,3]],[[83455,7315],[5,10]],[[83460,7325],[0,3]],[[83460,7328],[0,7]],[[83460,7335],[20,12]],[[83480,7347],[19,13]],[[83499,7360],[11,4]],[[83510,7364],[3,6]],[[83513,7370],[20,22]],[[83533,7392],[11,30]],[[83544,7422],[6,6]],[[83550,7428],[3,16]],[[83553,7444],[7,19]],[[83560,7463],[4,17]],[[83564,7480],[7,6]],[[83571,7486],[0,4]],[[83571,7490],[23,3]],[[83594,7493],[0,-3]],[[83594,7490],[9,-4]],[[83603,7486],[13,-9]],[[83616,7477],[20,3]],[[83636,7480],[39,22]],[[83675,7502],[16,10]],[[83691,7512],[0,3]],[[83691,7515],[23,10]],[[83714,7525],[17,16]],[[83731,7541],[35,13]],[[83766,7554],[6,7]],[[83772,7561],[48,3]],[[83820,7564],[7,6]],[[83827,7570],[9,4]],[[83836,7574],[11,12]],[[83847,7586],[9,4]],[[83856,7590],[0,3]],[[83856,7593],[20,7]],[[83876,7600],[2,6]],[[83878,7606],[12,7]],[[83890,7613],[5,6]],[[83895,7619],[31,3]],[[83926,7622],[0,3]],[[83926,7625],[22,10]],[[83948,7635],[17,10]],[[83965,7645],[5,3]],[[83970,7648],[8,3]],[[83978,7651],[14,10]],[[83992,7661],[0,7]],[[83992,7668],[9,5]],[[84001,7673],[11,17]],[[84012,7690],[6,6]],[[84018,7696],[0,4]],[[84018,7700],[10,12]],[[84028,7712],[1,11]],[[84029,7723],[25,32]],[[84054,7755],[10,19]],[[84064,7774],[4,3]],[[84068,7777],[4,13]],[[84072,7790],[6,6]],[[84078,7796],[1,17]],[[84079,7813],[24,58]],[[84103,7871],[11,23]],[[84114,7894],[6,3]],[[84120,7897],[0,3]],[[84120,7900],[9,3]],[[84129,7903],[3,3]],[[84132,7906],[30,10]],[[84162,7916],[0,3]],[[84162,7919],[13,3]],[[84175,7922],[10,13]],[[84185,7935],[5,3]],[[84190,7938],[0,4]],[[84190,7942],[17,16]],[[84207,7958],[3,7]],[[84210,7965],[14,9]],[[84224,7974],[4,13]],[[84228,7987],[7,3]],[[84235,7990],[10,23]],[[84245,8013],[15,16]],[[84260,8029],[3,10]],[[84263,8039],[13,19]],[[84276,8058],[0,3]],[[84276,8061],[8,20]],[[84284,8081],[12,29]],[[84296,8110],[8,10]],[[84304,8120],[0,3]],[[84304,8123],[9,3]],[[84313,8126],[2,6]],[[84315,8132],[25,20]],[[84340,8152],[16,10]],[[84356,8162],[9,6]],[[84365,8168],[1,7]],[[84366,8175],[21,51]],[[84387,8226],[9,16]],[[84396,8242],[3,2]],[[84399,8244],[0,2]],[[84399,8246],[2,3]],[[84401,8249],[4,3]],[[84405,8252],[2,19]],[[84407,8271],[8,20]],[[84415,8291],[0,7]],[[84415,8298],[0,6]],[[84415,8304],[5,26]],[[84420,8330],[20,19]],[[84440,8349],[29,13]],[[84469,8362],[22,10]],[[84491,8372],[10,6]],[[84501,8378],[11,3]],[[84512,8381],[9,7]],[[84521,8388],[22,3]],[[84543,8391],[4,10]],[[84547,8401],[24,13]],[[84571,8414],[11,10]],[[84582,8424],[15,6]],[[84597,8430],[0,3]],[[84597,8433],[24,13]],[[84621,8446],[8,6]],[[84629,8452],[23,13]],[[84652,8465],[0,4]],[[84652,8469],[25,12]],[[84677,8481],[14,10]],[[84691,8491],[11,4]],[[84702,8495],[3,2]],[[84705,8497],[19,11]],[[84724,8508],[8,6]],[[84732,8514],[11,3]],[[84743,8517],[1,3]],[[84744,8520],[9,4]],[[84753,8524],[10,3]],[[84763,8527],[0,3]],[[84763,8530],[19,10]],[[84782,8540],[0,3]],[[84782,8543],[20,10]],[[84802,8553],[0,3]],[[84802,8556],[5,0]],[[84807,8556],[0,3]],[[84807,8559],[7,4]],[[84814,8563],[0,3]],[[84814,8566],[16,9]],[[84830,8575],[0,4]],[[84830,8579],[23,9]],[[84853,8588],[14,13]],[[84867,8601],[7,3]],[[84874,8604],[0,3]],[[84874,8607],[9,4]],[[84883,8611],[0,3]],[[84883,8614],[22,9]],[[84905,8623],[14,13]],[[84919,8636],[5,4]],[[84924,8640],[1,6]],[[84925,8646],[8,7]],[[84933,8653],[0,3]],[[84933,8656],[25,16]],[[84958,8672],[12,16]],[[84970,8688],[5,7]],[[84975,8695],[14,12]],[[84989,8707],[31,14]],[[85020,8721],[0,3]],[[85020,8724],[7,3]],[[85027,8727],[3,3]],[[85030,8730],[6,4]],[[85036,8734],[5,12]],[[85041,8746],[20,10]],[[85061,8756],[0,3]],[[85061,8759],[19,7]],[[85080,8766],[14,10]],[[85094,8776],[6,2]],[[85100,8778],[0,4]],[[85100,8782],[16,7]],[[85116,8789],[4,19]],[[85120,8808],[20,6]],[[85140,8814],[7,13]],[[85147,8827],[18,10]],[[85165,8837],[0,3]],[[85165,8840],[25,7]],[[85190,8847],[14,19]],[[85204,8866],[7,3]],[[85211,8869],[0,3]],[[85211,8872],[11,4]],[[85222,8876],[0,3]],[[85222,8879],[25,10]],[[85247,8889],[6,22]],[[85253,8911],[8,7]],[[85261,8918],[1,19]],[[85262,8937],[8,7]],[[85270,8944],[3,9]],[[85273,8953],[22,13]],[[85295,8966],[11,20]],[[85306,8986],[6,2]],[[85312,8988],[9,7]],[[85321,8995],[46,10]],[[85367,9005],[9,6]],[[85376,9011],[6,4]],[[85382,9015],[0,3]],[[85382,9018],[19,6]],[[85401,9024],[36,26]],[[85437,9050],[41,-3]],[[85478,9047],[6,-9]],[[85484,9038],[43,-4]],[[85527,9034],[11,-16]],[[85538,9018],[16,3]],[[85554,9021],[5,22]],[[85559,9043],[20,14]],[[85579,9057],[0,-6]],[[85579,9051],[-11,-24]],[[85568,9027],[11,-9]],[[85579,9018],[30,13]],[[85609,9031],[21,0]],[[85630,9031],[13,29]],[[85643,9060],[17,3]],[[85660,9063],[0,-3]],[[85660,9060],[3,-13]],[[85663,9047],[6,-7]],[[85669,9040],[15,30]],[[85684,9070],[6,-10]],[[85690,9060],[11,-13]],[[85701,9047],[0,3]],[[85701,9050],[8,7]],[[85709,9057],[-8,22]],[[85701,9079],[0,7]],[[85701,9086],[0,6]],[[85701,9092],[-17,3]],[[85684,9095],[0,4]],[[85684,9099],[-21,3]],[[85663,9102],[-3,13]],[[85660,9115],[30,-4]],[[85690,9111],[0,-3]],[[85690,9108],[23,-3]],[[85713,9105],[8,42]],[[85721,9147],[0,13]],[[85721,9160],[-2,13]],[[85719,9173],[21,84]],[[85740,9257],[0,3]],[[85740,9260],[0,10]],[[85740,9270],[0,3]],[[85740,9273],[-5,23]],[[85735,9296],[0,74]],[[85735,9370],[0,13]],[[85735,9383],[0,16]],[[85735,9399],[0,39]],[[85735,9438],[3,29]],[[85738,9467],[16,19]],[[85754,9486],[20,20]],[[85774,9506],[6,3]],[[85780,9509],[7,6]],[[85787,9515],[3,0]],[[85790,9515],[0,3]],[[85790,9518],[22,23]],[[85812,9541],[12,39]],[[85824,9580],[16,3]],[[85840,9583],[4,7]],[[85844,9590],[21,158]],[[85865,9748],[17,75]],[[85882,9823],[-5,9]],[[85877,9832],[-12,35]],[[85865,9867],[-24,7]],[[85841,9874],[0,-3]],[[85841,9871],[-15,-7]],[[85826,9864],[-14,-13]],[[85812,9851],[-21,0]],[[85791,9851],[0,11]],[[85791,9862],[25,12]],[[85816,9874],[24,7]],[[85840,9881],[4,58]],[[85844,9939],[0,6]],[[85844,9945],[2,45]],[[85846,9990],[-6,26]],[[85840,10016],[-8,10]],[[85832,10026],[-2,10]],[[85830,10036],[-4,6]],[[85826,10042],[-14,39]],[[85812,10081],[-22,7]],[[85790,10088],[-3,0]],[[85787,10088],[0,19]],[[85787,10107],[0,3]],[[85787,10110],[4,6]],[[85791,10116],[-4,16]],[[85787,10132],[-7,0]],[[85780,10132],[0,4]],[[85780,10136],[-6,12]],[[85774,10148],[-14,52]],[[85760,10200],[-6,10]],[[85754,10210],[0,3]],[[85754,10213],[-14,33]],[[85740,10246],[-5,19]],[[85735,10265],[-14,19]],[[85721,10284],[-12,42]],[[85709,10326],[-5,4]],[[85704,10330],[-3,6]],[[85701,10336],[0,13]],[[85701,10349],[20,87]],[[85721,10436],[0,65]],[[85721,10501],[-20,32]],[[85701,10533],[8,3]],[[85709,10536],[6,-6]],[[85715,10530],[20,-3]],[[85735,10527],[45,6]],[[85780,10533],[-15,10]],[[85765,10543],[6,58]],[[85771,10601],[-2,0]],[[85769,10601],[-3,8]],[[85766,10609],[-1,2]],[[85765,10611],[-3,6]],[[85762,10617],[-24,-6]],[[85738,10611],[0,-4]],[[85738,10607],[0,33]],[[85738,10640],[-3,16]],[[85735,10656],[-14,-10]],[[85721,10646],[-20,-22]],[[85701,10624],[-13,-4]],[[85688,10620],[0,-3]],[[85688,10617],[-28,-6]],[[85660,10611],[-9,13]],[[85651,10624],[34,6]],[[85685,10630],[5,10]],[[85690,10640],[11,3]],[[85701,10643],[0,3]],[[85701,10646],[8,4]],[[85709,10650],[-8,55]],[[85701,10705],[-8,22]],[[85693,10727],[-3,10]],[[85690,10737],[0,6]],[[85690,10743],[0,19]],[[85690,10762],[-6,20]],[[85684,10782],[0,45]],[[85684,10827],[6,71]],[[85690,10898],[11,23]],[[85701,10921],[3,10]],[[85704,10931],[5,3]],[[85709,10934],[12,16]],[[85721,10950],[14,10]],[[85735,10960],[3,35]],[[85738,10995],[28,-3]],[[85766,10992],[3,0]],[[85769,10992],[11,3]],[[85780,10995],[0,4]],[[85780,10999],[7,6]],[[85787,11005],[3,6]],[[85790,11011],[17,39],[-2,104],[-14,48]],[[85791,11202],[0,3]],[[85791,11205],[0,68]],[[85791,11273],[-4,10]],[[85787,11283],[-7,9]],[[85780,11292],[0,4]],[[85780,11296],[0,3]],[[85780,11299],[0,3]],[[85780,11302],[-6,10]],[[85774,11312],[-14,23]],[[85760,11335],[-6,19]],[[85754,11354],[0,3]],[[85754,11357],[-14,16]],[[85740,11373],[-5,10]],[[85735,11383],[-14,20]],[[85721,11403],[-11,22]],[[85710,11425],[-9,6]],[[85701,11431],[0,7]],[[85701,11438],[-11,16]],[[85690,11454],[-6,16]],[[85684,11470],[-15,13]],[[85669,11483],[0,7]],[[85669,11490],[-1,3]],[[85668,11493],[-5,3]],[[85663,11496],[-8,16]],[[85655,11512],[-6,3]],[[85649,11515],[0,4]],[[85649,11519],[-6,10]],[[85643,11529],[-13,22]],[[85630,11551],[-20,29]],[[85610,11580],[-4,10]],[[85606,11590],[-7,7]],[[85599,11597],[-1,25]],[[85598,11622],[-5,7]],[[85593,11629],[-14,28]],[[85579,11657],[-25,27]],[[85554,11684],[-6,-7]],[[85548,11677],[-8,-3]],[[85540,11674],[-13,-10]],[[85527,11664],[0,6]],[[85527,11670],[11,10]],[[85538,11680],[7,4]],[[85545,11684],[0,25]],[[85545,11709],[-5,3]],[[85540,11712],[-13,23]],[[85527,11735],[-20,20]],[[85507,11755],[-4,16]],[[85503,11771],[-15,16]],[[85488,11787],[-14,29]],[[85474,11816],[-6,10]],[[85468,11826],[0,9]],[[85468,11835],[-14,43]],[[85454,11878],[-5,16]],[[85449,11894],[-12,19]],[[85437,11913],[-14,29]],[[85423,11942],[-5,3]],[[85418,11945],[-1,6]],[[85417,11951],[-11,17]],[[85406,11968],[-5,13]],[[85401,11981],[-17,16]],[[85384,11997],[-2,9]],[[85382,12006],[-4,4]],[[85378,12010],[-14,29]],[[85364,12039],[-8,10]],[[85356,12049],[-10,19]],[[85346,12068],[-20,25]],[[85326,12093],[-5,14]],[[85321,12107],[-6,3]],[[85315,12110],[-3,6]],[[85312,12116],[-9,7]],[[85303,12123],[-6,9]],[[85297,12132],[-25,10]],[[85272,12142],[-2,-6]],[[85270,12136],[-8,-4]],[[85262,12132],[-1,-6]],[[85261,12126],[-5,-3]],[[85256,12123],[-14,-16]],[[85242,12107],[-20,-16]],[[85222,12091],[-5,-7]],[[85217,12084],[-6,-3]],[[85211,12081],[-3,-7]],[[85208,12074],[-7,-3]],[[85201,12071],[-11,-13]],[[85190,12058],[-6,3]],[[85184,12061],[13,13]],[[85197,12074],[7,10]],[[85204,12084],[4,4]],[[85208,12088],[0,3]],[[85208,12091],[12,6]],[[85220,12097],[2,7]],[[85222,12104],[20,16]],[[85242,12120],[14,16]],[[85256,12136],[6,3]],[[85262,12139],[0,3]],[[85262,12142],[8,7]],[[85270,12149],[2,19]],[[85272,12168],[-10,3]],[[85262,12171],[-1,13]],[[85261,12184],[-5,4]],[[85256,12188],[-11,19]],[[85245,12207],[-23,29]],[[85222,12236],[-5,7]],[[85217,12243],[-6,6]],[[85211,12249],[0,3]],[[85211,12252],[-7,3]],[[85204,12255],[-14,13]],[[85190,12268],[-6,10]],[[85184,12278],[-14,16]],[[85170,12294],[-5,9]],[[85165,12303],[-6,7]],[[85159,12310],[-8,4]],[[85151,12314],[-12,51]],[[85139,12365],[-19,10]],[[85120,12375],[-6,10]],[[85114,12385],[-14,13]],[[85100,12398],[-36,19]],[[85064,12417],[-5,0],[-3,6],[-8,3]],[[85048,12426],[0,4]],[[85048,12430],[-9,3]],[[85039,12433],[0,4]],[[85039,12437],[-9,3]],[[85030,12440],[-19,13]],[[85011,12453],[-22,16]],[[84989,12469],[-3,6]],[[84986,12475],[-16,6]],[[84970,12481],[-11,16]],[[84959,12497],[-25,23]],[[84934,12520],[-21,20]],[[84913,12540],[-53,35]],[[84860,12575],[-7,13]],[[84853,12588],[-20,13]],[[84833,12601],[-5,7]],[[84828,12608],[0,9]],[[84828,12617],[5,-3]],[[84833,12614],[14,-6]],[[84847,12608],[0,3]],[[84847,12611],[6,6]],[[84853,12617],[0,13]],[[84853,12630],[-18,6]],[[84835,12636],[-7,0]],[[84828,12636],[-14,-9]],[[84814,12627],[-6,3]],[[84808,12630],[5,3]],[[84813,12633],[1,13]],[[84814,12646],[-12,17]],[[84802,12663],[-24,25]],[[84778,12688],[-1,-25]],[[84777,12663],[8,-10]],[[84785,12653],[9,-3]],[[84794,12650],[0,-4]],[[84794,12646],[8,-3]],[[84802,12643],[0,-10]],[[84802,12633],[-17,3]],[[84785,12636],[-8,10]],[[84777,12646],[-14,13]],[[84763,12659],[-14,7]],[[84749,12666],[-5,3]],[[84744,12669],[0,3]],[[84744,12672],[-40,23]],[[84704,12695],[-5,16]],[[84699,12711],[-16,3]],[[84683,12714],[-15,10]],[[84668,12724],[-18,13]],[[84650,12737],[-3,6]],[[84647,12743],[-15,10]],[[84632,12753],[-5,6]],[[84627,12759],[-30,30]],[[84597,12789],[-29,9]],[[84568,12798],[-6,3]],[[84562,12801],[0,4]],[[84562,12805],[-15,3]],[[84547,12808],[-4,9]],[[84543,12817],[-27,-3]],[[84516,12814],[-4,7]],[[84512,12821],[-16,3]],[[84496,12824],[-5,6]],[[84491,12830],[-14,0]],[[84477,12830],[0,4]],[[84477,12834],[-6,3]],[[84471,12837],[-6,9]],[[84465,12846],[-8,4]],[[84457,12850],[-17,10]],[[84440,12860],[-20,25]],[[84420,12885],[-4,-6]],[[84416,12879],[-11,6]],[[84405,12885],[0,4]],[[84405,12889],[-14,3]],[[84391,12892],[0,-3]],[[84391,12889],[-25,12]],[[84366,12901],[-3,7]],[[84363,12908],[-7,6]],[[84356,12914],[0,3]],[[84356,12917],[-2,4]],[[84354,12921],[-19,3]],[[84335,12924],[-25,7]],[[84310,12931],[0,3]],[[84310,12934],[-6,3]],[[84304,12937],[0,3]],[[84304,12940],[-16,4]],[[84288,12944],[-3,-7]],[[84285,12937],[-9,3]],[[84276,12940],[0,4]],[[84276,12944],[-31,12]],[[84245,12956],[-21,4]],[[84224,12960],[-14,-4]],[[84210,12956],[-26,0]],[[84184,12956],[-20,-16]],[[84164,12940],[-10,-16]],[[84154,12924],[-14,-12]],[[84140,12912],[0,-4]],[[84140,12908],[-8,-3]],[[84132,12905],[0,-4]],[[84132,12901],[-12,-3]],[[84120,12898],[-3,-3]],[[84117,12895],[-5,-3]],[[84112,12892],[-8,-7]],[[84104,12885],[-25,-19]],[[84079,12866],[0,-3]],[[84079,12863],[-11,-3]],[[84068,12860],[0,-4]],[[84068,12856],[-11,-3]],[[84057,12853],[-6,-9]],[[84051,12844],[0,-39]],[[84051,12805],[8,-32]],[[84059,12773],[9,-7]],[[84068,12766],[4,-10]],[[84072,12756],[6,-19]],[[84078,12737],[0,-10]],[[84078,12727],[-6,-25]],[[84072,12702],[-4,-11]],[[84068,12691],[-9,-3]],[[84059,12688],[3,42]],[[84062,12730],[-3,13]],[[84059,12743],[-8,30]],[[84051,12773],[-22,41]],[[84029,12814],[0,3]],[[84029,12817],[0,4]],[[84029,12821],[-11,6]],[[84018,12827],[-12,-3]],[[84006,12824],[-5,-10]],[[84001,12814],[-9,-6]],[[83992,12808],[0,-3]],[[83992,12805],[0,-7]],[[83992,12798],[0,-6]],[[83992,12792],[0,-23]],[[83992,12769],[0,-10]],[[83992,12759],[9,-29]],[[84001,12730],[7,-12]],[[84008,12718],[1,-4]],[[84009,12714],[0,-3]],[[84009,12711],[-3,-13]],[[84006,12698],[-5,-23]],[[84001,12675],[-9,4]],[[83992,12679],[0,9]],[[83992,12688],[0,39]],[[83992,12727],[0,3]],[[83992,12730],[-16,29]],[[83976,12759],[-3,10]],[[83973,12769],[-12,-10]],[[83961,12759],[-14,-25]],[[83947,12734],[-7,-4]],[[83940,12730],[0,-6]],[[83940,12724],[-12,-17]],[[83928,12707],[-6,-9]],[[83922,12698],[-16,-7]],[[83906,12691],[0,-3]],[[83906,12688],[-5,-3]],[[83901,12685],[-14,-10]],[[83887,12675],[-15,-3]],[[83872,12672],[0,-3]],[[83872,12669],[-21,-3]],[[83851,12666],[-6,-10]],[[83845,12656],[-9,-3]],[[83836,12653],[0,-3]],[[83836,12650],[-6,-7]],[[83830,12643],[-13,-48]],[[83817,12595],[-20,-43]],[[83797,12552],[-5,-16]],[[83792,12536],[-6,-3]],[[83786,12533],[0,-3]],[[83786,12530],[-6,-3]],[[83780,12527],[-14,-16]],[[83766,12511],[-21,-14]],[[83745,12497],[-23,-5]],[[83722,12492],[-27,-4]],[[83695,12488],[-20,-3]],[[83675,12485],[0,-7]],[[83675,12478],[-5,-3]],[[83670,12475],[-1,-6]],[[83669,12469],[-25,-10]],[[83644,12459],[-8,-3]],[[83636,12456],[-15,-7]],[[83621,12449],[3,-45]],[[83624,12404],[20,-3]],[[83644,12401],[-5,-16]],[[83639,12385],[0,-26]],[[83639,12359],[0,-4]],[[83639,12355],[2,-6]],[[83641,12349],[14,-10]],[[83655,12339],[0,-3]],[[83655,12336],[9,-6]],[[83664,12330],[6,-10]],[[83670,12320],[5,-3]],[[83675,12317],[0,-7]],[[83675,12310],[6,-16]],[[83681,12294],[0,-23]],[[83681,12271],[8,-44]],[[83689,12227],[2,-33]],[[83691,12194],[-10,-3]],[[83681,12191],[0,3]],[[83681,12194],[-6,10]],[[83675,12204],[0,16]],[[83675,12220],[-5,12]],[[83670,12232],[0,7]],[[83670,12239],[0,16]],[[83670,12255],[-6,55]],[[83664,12310],[-8,4]],[[83656,12314],[-1,3]],[[83655,12317],[0,3]],[[83655,12320],[-11,13]],[[83644,12333],[-9,13]],[[83635,12346],[-11,9]],[[83624,12355],[-14,23]],[[83610,12378],[-16,-3]],[[83594,12375],[-3,-3]],[[84468,14066],[162,-24],[216,-9],[458,3]],[[146868,50754],[55,-83],[-3,-72]],[[146920,50599],[-41,-28],[-114,-13],[-252,-80]],[[146513,50478],[-69,-90],[-39,-74],[-31,-140]],[[146374,50174],[15,-120],[58,-102]],[[146447,49952],[58,-58],[79,-46]],[[146584,49848],[191,-77],[56,-51]],[[146831,49720],[37,-56],[94,-73]],[[146962,49591],[153,-39],[264,37]],[[147379,49589],[206,-181],[84,-62]],[[147669,49346],[114,-38],[80,-78],[107,-60]],[[147970,49170],[156,-66],[138,-121],[106,-57]],[[148370,48926],[112,-47],[140,8]],[[148622,48887],[122,7]],[[148744,48894],[105,10],[154,-22],[106,49],[78,60]],[[149187,48991],[88,34],[114,-4],[128,-24]],[[149517,48997],[196,56]],[[149713,49053],[158,21],[172,-26],[165,13],[87,-70],[105,22]],[[150400,49013],[95,3],[67,28]],[[150562,49044],[13,6]],[[150575,49050],[53,-20],[178,32],[89,38]],[[150895,49100],[46,-13],[125,2],[58,74],[62,-12]],[[151186,49151],[35,56],[170,39]],[[151391,49246],[159,-19],[50,-64],[72,-23],[40,-59],[61,36],[78,3]],[[151851,49120],[117,-69]],[[151968,49051],[89,-62],[245,-225]],[[152302,48764],[41,-38],[97,-19]],[[152440,48707],[46,-43]],[[152486,48664],[22,0]],[[152508,48664],[156,0],[58,-47]],[[152722,48617],[236,-196]],[[152958,48421],[84,-104],[51,-24]],[[153093,48293],[103,-9]],[[153196,48284],[35,-27]],[[153231,48257],[171,-258],[106,-191],[52,-48]],[[153560,47760],[92,-41],[139,-174]],[[153791,47545],[28,-93],[25,-215]],[[153844,47237],[78,-100],[134,-105]],[[154056,47032],[55,-107],[14,-252]],[[154125,46673],[23,-39],[53,-22]],[[154201,46612],[142,55],[11,-65]],[[154354,46602],[-42,-85],[131,-110]],[[154443,46407],[74,-34],[232,-178]],[[154749,46195],[67,9],[64,57],[56,2],[24,-55]],[[154960,46208],[-44,-133],[39,-115]],[[154955,45960],[92,34],[47,-32]],[[155094,45962],[37,-67],[24,-153],[17,-36]],[[155172,45706],[92,-38],[66,-66],[90,-208]],[[155420,45394],[41,-48],[81,-13]],[[155542,45333],[28,-53]],[[155570,45280],[-2,-75],[103,-66]],[[155671,45139],[72,-116],[52,-21]],[[155795,45002],[73,-95],[20,-189],[53,-180],[-12,-234],[-52,163]],[[155877,44467],[-293,252],[-456,540],[-354,147]],[[154774,45406],[-75,42],[-103,108],[-39,60]],[[154557,45616],[-108,263],[-28,132]],[[154421,46011],[-29,47],[-64,15]],[[154328,46073],[-72,-12],[-67,-33]],[[154189,46028],[-103,-101],[-50,-79],[-236,-262],[-148,-152],[-223,-162]],[[153429,45272],[-136,-144]],[[143964,48231],[-1,268]],[[143963,48499],[-33,156]],[[143930,48655],[-125,271],[-36,54]],[[143769,48980],[-115,154],[-33,55]],[[143621,49189],[-123,270],[-8,31]],[[143490,49490],[-8,161],[13,64],[85,174],[50,65]],[[143630,49954],[49,23]],[[143679,49977],[132,-5]],[[143811,49972],[136,-72]],[[143947,49900],[78,-21]],[[144025,49879],[58,7]],[[144083,49886],[80,44],[85,90],[35,54]],[[144283,50074],[31,123]],[[144314,50197],[-19,87]],[[144295,50284],[-65,151]],[[144230,50435],[-4,147]],[[144226,50582],[8,27]],[[144234,50609],[32,47]],[[144266,50656],[149,101]],[[144415,50757],[49,24]],[[144464,50781],[121,23]],[[144585,50804],[127,3]],[[144712,50807],[413,-3],[184,7],[163,-10],[228,7],[92,22],[145,73]],[[145937,50903],[220,66]],[[146157,50969],[53,33],[148,127]],[[146358,51129],[95,59]],[[146453,51188],[53,20]],[[146506,51208],[161,-202]],[[146667,51006],[75,-48],[33,-115],[93,-89]],[[47109,23688],[0,-657],[-3,-107],[-25,-172],[-56,-134]],[[47025,22618],[-21,-56],[-48,-215]],[[46956,22347],[-65,-161],[-21,-102]],[[46870,22084],[-17,-177],[-30,-129],[-56,-134],[-48,-215]],[[46719,21429],[-19,-57]],[[46700,21372],[-56,-133],[-28,-123],[-8,-132]],[[46608,20984],[-31,-154]],[[46577,20830],[-45,-107],[-30,-128],[-17,-177]],[[46485,20418],[-30,-130]],[[46455,20288],[-51,-122],[-19,-103]],[[46385,20063],[-13,-185]],[[46372,19878],[-4,-297],[-11,-145]],[[46357,19436],[-16,-69],[-65,-161]],[[46276,19206],[-30,-121]],[[46246,19085],[-41,-149],[-43,-77]],[[46162,18859],[-103,-154]],[[45466,30363],[-52,-173],[-12,-217]],[[45402,29973],[17,-151],[22,-56]],[[45441,29766],[29,-51]],[[45470,29715],[96,-115]],[[45566,29600],[388,-427],[127,-127]],[[46081,29046],[87,-62]],[[46168,28984],[83,-39],[70,-51]],[[46321,28894],[64,-63]],[[46385,28831],[104,-113],[672,-749],[99,-105]],[[47260,27864],[64,-57]],[[47324,27807],[147,-81],[67,-50]],[[47538,27676],[83,-82]],[[47621,27594],[108,-129],[184,-181]],[[47913,27284],[67,-49],[151,-86]],[[48131,27149],[70,-61]],[[48201,27088],[172,-187]],[[48373,26901],[64,-110]],[[48437,26791],[27,-161]],[[48464,26630],[-16,-196]],[[48448,26434],[-33,-85],[-79,-148],[-72,-76],[-158,-101],[-153,-71],[-176,-111],[-187,-91]],[[47590,25751],[-195,-49],[-53,-25]],[[47342,25677],[-119,-99],[-165,-192],[-50,-81],[-47,-114]],[[46961,25191],[-63,-130],[-17,-60]],[[46881,25001],[-15,-162],[4,-101]],[[46870,24738],[14,-138],[-12,-134],[3,-131]],[[46875,24335],[16,-93],[51,-151]],[[46942,24091],[3,-72]],[[46945,24019],[63,-183]],[[47008,23836],[101,-148]],[[28063,58178],[-5,3]],[[28058,58181],[5,-3]],[[28316,58620],[4,-23]],[[28320,58597],[7,-2]],[[28327,58595],[23,-49]],[[28350,58546],[5,-22]],[[28355,58524],[-30,-10]],[[28325,58514],[-5,3]],[[28320,58517],[-4,9]],[[28316,58526],[-5,4]],[[28311,58530],[-20,39]],[[28291,58569],[4,7]],[[28295,58576],[16,41]],[[28311,58617],[5,3]],[[27111,58743],[-5,-39]],[[27106,58704],[-28,-3]],[[27078,58701],[19,39]],[[27097,58740],[14,3]],[[28231,58840],[24,-3]],[[28255,58837],[9,-10]],[[28264,58827],[2,-6]],[[28266,58821],[-2,-78]],[[28264,58743],[-5,-3]],[[28259,58740],[-9,-23]],[[28250,58717],[-5,-3]],[[28245,58714],[-1,-6]],[[28244,58708],[-5,-4]],[[28239,58704],[-56,-64]],[[28183,58640],[-8,-4]],[[28175,58636],[-1,-16]],[[28174,58620],[-5,-19]],[[28169,58601],[0,-20]],[[28169,58581],[5,-9]],[[28174,58572],[4,-42]],[[28178,58530],[0,-16]],[[28178,58514],[-4,-26]],[[28174,58488],[-8,-3]],[[28166,58485],[-6,-75],[-96,10]],[[28064,58420],[-6,10]],[[28058,58430],[-3,48]],[[28055,58478],[8,4]],[[28063,58482],[0,3]],[[28063,58485],[6,3]],[[28069,58488],[0,49]],[[28069,58537],[-5,3]],[[28064,58540],[-1,13]],[[28063,58553],[-5,3]],[[28058,58556],[-20,39],[15,52]],[[28053,58647],[-4,16]],[[28049,58663],[9,22]],[[28058,58685],[11,3]],[[28069,58688],[9,103],[19,4]],[[28097,58795],[3,3]],[[28100,58798],[30,13]],[[28130,58811],[12,3]],[[28142,58814],[22,23]],[[28164,58837],[19,3]],[[28183,58840],[48,0]],[[26916,58827],[-16,-3]],[[26900,58824],[0,3]],[[26900,58827],[-4,3]],[[26896,58830],[0,20]],[[26896,58850],[9,3]],[[26905,58853],[11,-26]],[[27944,58947],[5,-3]],[[27949,58944],[5,-16]],[[27954,58928],[4,-4]],[[27958,58924],[16,-51]],[[27974,58873],[5,-10]],[[27979,58863],[7,-55],[-70,-39]],[[27916,58769],[-20,3]],[[27896,58772],[-17,-13]],[[27879,58759],[-17,4]],[[27862,58763],[-21,35]],[[27841,58798],[-11,-3]],[[27830,58795],[-7,-9]],[[27823,58786],[0,-7]],[[27823,58779],[-18,-26]],[[27805,58753],[-45,3]],[[27760,58756],[-5,10]],[[27755,58766],[0,16]],[[27755,58782],[0,26]],[[27755,58808],[0,10]],[[27755,58818],[25,28]],[[27780,58846],[11,4]],[[27791,58850],[32,16]],[[27823,58866],[14,3]],[[27837,58869],[26,29]],[[27863,58898],[8,4]],[[27871,58902],[-3,22]],[[27868,58924],[15,13]],[[27883,58937],[0,4]],[[27883,58941],[5,3]],[[27888,58944],[56,3]],[[27780,58969],[7,-3]],[[27787,58966],[-2,-42]],[[27785,58924],[-8,-3]],[[27777,58921],[3,48]],[[27637,58973],[5,-4]],[[27642,58969],[59,-9],[25,-81]],[[27726,58879],[-5,-3]],[[27721,58876],[-9,-19]],[[27712,58857],[-5,-4]],[[27707,58853],[-42,-35]],[[27665,58818],[-8,-4]],[[27657,58814],[-51,26]],[[27606,58840],[-14,6]],[[27592,58846],[0,4]],[[27592,58850],[-7,3]],[[27585,58853],[0,58]],[[27585,58911],[5,3]],[[27590,58914],[9,10]],[[27599,58924],[5,4]],[[27604,58928],[0,32]],[[27604,58960],[-12,3]],[[27592,58963],[45,10]],[[27585,59277],[5,-4]],[[27590,59273],[9,-13]],[[27599,59260],[7,-3]],[[27606,59257],[0,-19]],[[27606,59238],[6,-4]],[[27612,59234],[0,-39]],[[27612,59195],[-3,-6]],[[27609,59189],[-5,-13]],[[27604,59176],[-9,-3]],[[27595,59173],[0,-3]],[[27595,59170],[-30,-3]],[[27565,59167],[-51,-10],[-35,68]],[[27479,59225],[-4,3]],[[27475,59228],[-11,49],[103,28],[18,-28]],[[29236,63028],[7,-59]],[[29243,62969],[18,10]],[[29261,62979],[50,0]],[[29311,62979],[8,-3]],[[29319,62976],[5,-3]],[[29324,62973],[3,-13]],[[29327,62960],[1,-3]],[[29328,62957],[5,3]],[[29333,62960],[20,6]],[[29353,62966],[4,-9]],[[29357,62957],[40,-13]],[[29397,62944],[0,2]],[[29397,62946],[17,-5]],[[29414,62941],[0,-4]],[[29414,62937],[8,-3]],[[29422,62934],[0,-4]],[[29422,62930],[13,-3]],[[29435,62927],[0,-2]],[[29435,62925],[12,-11]],[[29447,62914],[0,-3]],[[29447,62911],[2,-3]],[[29449,62908],[6,-3]],[[29455,62905],[5,3]],[[29460,62908],[7,-3]],[[29467,62905],[0,-3]],[[29467,62902],[21,-7]],[[29488,62895],[7,-6]],[[29495,62889],[13,-3]],[[29508,62886],[17,-11]],[[29525,62875],[34,-2]],[[29559,62873],[0,2]],[[29559,62875],[5,4]],[[29564,62879],[0,3]],[[29564,62882],[9,-7]],[[29573,62875],[7,0]],[[29580,62875],[18,-2]],[[29598,62873],[0,-4]],[[29598,62869],[13,-3]],[[29611,62866],[0,3]],[[29611,62869],[17,-3]],[[29628,62866],[27,-3]],[[29655,62863],[9,-4]],[[29664,62859],[5,7]],[[29669,62866],[12,-7]],[[29681,62859],[19,-9]],[[29700,62850],[15,-7]],[[29715,62843],[16,-6]],[[29731,62837],[3,-10]],[[29734,62827],[6,-6]],[[29740,62821],[0,3]],[[29740,62824],[72,-3]],[[29812,62821],[0,-3]],[[29812,62818],[19,0]],[[29831,62818],[0,-4]],[[29831,62814],[20,0]],[[29851,62814],[0,4]],[[29851,62818],[11,-4]],[[29862,62814],[8,-3]],[[29870,62811],[3,-3]],[[29873,62808],[3,-6]],[[29876,62802],[16,-4]],[[29892,62798],[9,0]],[[29901,62798],[28,-3]],[[29929,62795],[13,-7]],[[29942,62788],[14,0]],[[29956,62788],[6,-13]],[[29962,62775],[5,-6]],[[29967,62769],[11,0]],[[29978,62769],[28,3]],[[30006,62772],[0,3]],[[30006,62775],[20,-9]],[[30026,62766],[2,-7]],[[30028,62759],[10,-6]],[[30038,62753],[0,-3]],[[30038,62750],[91,6]],[[30129,62756],[8,0]],[[30137,62756],[42,10]],[[30179,62766],[31,3]],[[30210,62769],[3,-3]],[[30213,62766],[6,-3]],[[30219,62763],[21,0]],[[30240,62763],[11,3]],[[30251,62766],[0,3]],[[30251,62769],[29,10]],[[30280,62779],[10,6]],[[30290,62785],[14,7]],[[30304,62792],[15,6]],[[30319,62798],[2,-3]],[[30321,62795],[9,-20]],[[30330,62775],[46,-9]],[[30376,62766],[6,-10]],[[30382,62756],[23,-13]],[[30405,62743],[0,-3]],[[30405,62740],[30,-6]],[[30435,62734],[0,-3]],[[30435,62731],[9,-4]],[[30444,62727],[42,-3]],[[30486,62724],[7,-10]],[[30493,62714],[0,-3]],[[30493,62711],[21,-10]],[[30514,62701],[0,-3]],[[30514,62698],[33,-3]],[[30547,62695],[14,-3]],[[30561,62692],[2,-4]],[[30563,62688],[0,-3]],[[30563,62685],[33,-13]],[[30596,62672],[0,-3]],[[30596,62669],[15,-6]],[[30611,62663],[0,-4]],[[30611,62659],[11,-3]],[[30622,62656],[19,-3]],[[30641,62653],[8,0]],[[30649,62653],[12,-7]],[[30661,62646],[0,-6]],[[30661,62640],[58,-10]],[[30719,62630],[12,-6]],[[30731,62624],[7,-4]],[[30738,62620],[0,-3]],[[30738,62617],[11,-3]],[[30749,62614],[0,-3]],[[30749,62611],[34,-10]],[[30783,62601],[26,0]],[[30809,62601],[74,-9]],[[30883,62592],[0,-4]],[[30883,62588],[11,-3]],[[30894,62585],[0,-3]],[[30894,62582],[6,-4]],[[30900,62578],[25,-16]],[[30925,62562],[20,-6]],[[30945,62556],[0,-3]],[[30945,62553],[3,-4]],[[30948,62549],[50,-16]],[[30998,62533],[0,-3]],[[30998,62530],[42,-7]],[[31040,62523],[16,-6]],[[31056,62517],[30,-7]],[[31086,62510],[0,-3]],[[31086,62507],[29,-3]],[[31115,62504],[0,-3]],[[31115,62501],[19,-10]],[[31134,62491],[11,-9]],[[31145,62482],[36,-4]],[[31181,62478],[15,-9]],[[31196,62469],[0,-3]],[[31196,62466],[4,-4]],[[31200,62462],[17,-7]],[[31217,62455],[14,-2]],[[31231,62453],[0,-3]],[[31231,62450],[29,-7]],[[31260,62443],[0,-4]],[[31260,62439],[61,7]],[[31321,62446],[5,-7]],[[31326,62439],[11,-3]],[[31337,62436],[31,-3]],[[31368,62433],[0,-3]],[[31368,62430],[34,-10]],[[31402,62420],[11,-3]],[[31413,62417],[14,-3]],[[31427,62414],[16,-10]],[[31443,62404],[61,-16]],[[31504,62388],[25,-6]],[[31529,62382],[15,-7]],[[31544,62375],[0,-3]],[[31544,62372],[16,-4]],[[31560,62368],[14,-9]],[[31574,62359],[30,-4]],[[31604,62355],[15,-6]],[[31619,62349],[35,-6]],[[31654,62343],[9,-4]],[[31663,62339],[25,-6]],[[31688,62333],[0,-3]],[[31688,62330],[20,-3]],[[31708,62327],[0,-4]],[[31708,62323],[47,-6]],[[31755,62317],[0,-4]],[[31755,62313],[25,0]],[[31780,62313],[0,-2]],[[31780,62311],[27,-4]],[[31807,62307],[0,-3]],[[31807,62304],[23,-4]],[[31830,62300],[0,-3]],[[31830,62297],[67,-9]],[[31897,62288],[23,-7]],[[31920,62281],[10,-3]],[[31930,62278],[0,-3]],[[31930,62275],[12,-3]],[[31942,62272],[0,3]],[[31942,62275],[21,-3]],[[31963,62272],[12,6]],[[31975,62278],[20,3]],[[31995,62281],[0,-3]],[[31995,62278],[38,10]],[[32033,62288],[0,3]],[[32033,62291],[9,3]],[[32042,62294],[11,17]],[[32053,62311],[0,22]],[[32053,62333],[-6,-10]],[[32047,62323],[-9,4]],[[32038,62327],[10,6]],[[32048,62333],[-1,22]],[[32047,62355],[25,-6]],[[32072,62349],[0,-3]],[[32072,62346],[14,6]],[[32086,62352],[5,7]],[[32091,62359],[0,29]],[[32091,62388],[-5,6]],[[32086,62394],[-13,-6]],[[32073,62388],[0,-10]],[[32073,62378],[-7,0]],[[32066,62378],[-13,4]],[[32053,62382],[-11,-10]],[[32042,62372],[-9,-4]],[[32033,62368],[0,4]],[[32033,62372],[0,6]],[[32033,62378],[0,4]],[[32033,62382],[33,12]],[[32066,62394],[0,4]],[[32066,62398],[7,3]],[[32073,62401],[0,3]],[[32073,62404],[19,10]],[[32092,62414],[0,-3]],[[32092,62411],[31,0]],[[32123,62411],[0,-4]],[[32123,62407],[10,-13]],[[32133,62394],[1,7]],[[32134,62401],[28,-26]],[[32162,62375],[8,7]],[[32170,62382],[6,-4]],[[32176,62378],[0,-3]],[[32176,62375],[13,3]],[[32189,62378],[5,6]],[[32194,62384],[20,-6]],[[32214,62378],[0,10]],[[32214,62388],[14,3]],[[32228,62391],[0,-3]],[[32228,62388],[5,-4]],[[32233,62384],[0,-9]],[[32233,62375],[1,-13]],[[32234,62362],[0,-10]],[[32234,62352],[8,-6]],[[32242,62346],[0,-7]],[[32242,62339],[3,-6]],[[32245,62333],[3,-6]],[[32248,62327],[10,-4]],[[32258,62323],[1,7]],[[32259,62330],[8,6]],[[32267,62336],[0,3]],[[32267,62339],[8,-3]],[[32275,62336],[8,-9]],[[32283,62327],[26,-30]],[[32309,62297],[0,-3]],[[32309,62294],[9,3]],[[32318,62297],[0,-3]],[[32318,62294],[0,-3]],[[32318,62291],[0,-3]],[[32318,62288],[14,-7]],[[32332,62281],[0,-3]],[[32332,62278],[18,-3]],[[32350,62275],[0,-3]],[[32350,62272],[25,-4]],[[32375,62268],[14,0]],[[32389,62268],[1,-3]],[[32390,62265],[10,-3]],[[32400,62262],[9,-3]],[[32409,62259],[0,-3]],[[32409,62256],[17,0]],[[32426,62256],[0,-4]],[[32426,62252],[23,-7]],[[32449,62245],[0,-3]],[[32449,62242],[21,-2]],[[32470,62240],[9,-7]],[[32479,62233],[22,-7]],[[32501,62226],[30,-3]],[[32531,62223],[0,-3]],[[32531,62220],[29,6]],[[32560,62226],[10,14]],[[32570,62240],[26,-11]],[[32596,62229],[6,-3]],[[32602,62226],[0,-3]],[[32602,62223],[8,-3]],[[32610,62220],[2,-10]],[[32612,62210],[3,-13]],[[32615,62197],[-3,-3]],[[32612,62194],[3,-3]],[[32615,62191],[5,-3]],[[32620,62188],[3,-4]],[[32623,62184],[18,-10]],[[32641,62174],[0,4]],[[32641,62178],[14,-4]],[[32655,62174],[0,4]],[[32655,62178],[5,3]],[[32660,62181],[8,0]],[[32668,62181],[17,3]],[[32685,62184],[2,7]],[[32687,62191],[6,3]],[[32693,62194],[0,3]],[[32693,62197],[9,4]],[[32702,62201],[11,0]],[[32713,62201],[20,3]],[[32733,62204],[0,3]],[[32733,62207],[13,-6]],[[32746,62201],[0,-4]],[[32746,62197],[6,-3]],[[32752,62194],[6,10]],[[32758,62204],[19,-7]],[[32777,62197],[41,4]],[[32818,62201],[29,3]],[[32847,62204],[0,-3]],[[32847,62201],[21,0]],[[32868,62201],[0,-3]],[[32868,62198],[0,-17]],[[32868,62181],[0,-13]],[[32868,62168],[26,-23]],[[32894,62145],[10,-9]],[[32904,62136],[15,6]],[[32919,62142],[13,10]],[[32932,62152],[7,-3]],[[32939,62149],[21,-10]],[[32960,62139],[20,-3]],[[32980,62136],[17,3]],[[32997,62139],[8,0]],[[33005,62139],[5,-3]],[[33010,62136],[0,-7]],[[33010,62129],[28,7]],[[33038,62136],[0,-3]],[[33038,62133],[4,-7]],[[33042,62126],[4,-6]],[[33046,62120],[28,-3]],[[33074,62117],[0,-4]],[[33074,62113],[9,-3]],[[33083,62110],[17,-16]],[[33100,62094],[11,3]],[[33111,62097],[3,13]],[[33114,62110],[7,7]],[[33121,62117],[20,9]],[[33141,62126],[23,19]],[[33164,62145],[10,0]],[[33174,62145],[6,7]],[[33180,62152],[1,6]],[[33181,62158],[24,4]],[[33205,62162],[0,-10]],[[33205,62152],[25,10]],[[33230,62162],[11,-23]],[[33241,62139],[14,0]],[[33255,62139],[1,6]],[[33256,62145],[8,7]],[[33264,62152],[0,6]],[[33264,62158],[11,16]],[[33275,62174],[9,-48]],[[33284,62126],[22,-3]],[[33306,62123],[3,0]],[[33309,62123],[7,6]],[[33316,62129],[0,7]],[[33316,62136],[9,6]],[[33325,62142],[6,7]],[[33331,62149],[16,-4]],[[33347,62145],[0,-3]],[[33347,62142],[51,20]],[[33398,62162],[0,-4]],[[33398,62158],[22,-3]],[[33420,62155],[3,-6]],[[33423,62149],[14,-4]],[[33437,62145],[10,0]],[[33447,62145],[20,-3]],[[33467,62142],[0,-9]],[[33467,62133],[-9,-10]],[[33458,62123],[0,-3]],[[33458,62120],[0,-3]],[[33458,62117],[0,-4]],[[33458,62113],[14,-3]],[[33472,62110],[1,0]],[[33473,62110],[5,3]],[[33478,62113],[-2,7]],[[33476,62120],[2,13]],[[33478,62133],[11,3]],[[33489,62136],[9,0]],[[33498,62136],[8,-3]],[[33506,62133],[11,-10]],[[33517,62123],[14,-3]],[[33531,62120],[20,-7]],[[33551,62113],[0,-3]],[[33551,62110],[8,-4]],[[33559,62106],[8,-5]],[[33567,62101],[9,2]],[[33576,62103],[0,-2]],[[33576,62101],[3,-4]],[[33579,62097],[0,-7]],[[33579,62090],[-3,-16]],[[33576,62074],[0,-6]],[[33576,62068],[24,16]],[[33600,62084],[0,3]],[[33600,62087],[42,-9]],[[33642,62078],[0,-7]],[[33642,62071],[20,-6]],[[33662,62065],[0,-3]],[[33662,62062],[22,-7]],[[33684,62055],[6,-4]],[[33690,62051],[0,-2]],[[33690,62049],[20,-3]],[[33710,62046],[14,-7]],[[33724,62039],[10,-23]],[[33734,62016],[0,-3]],[[33734,62013],[25,0]],[[33759,62013],[4,-6]],[[33763,62007],[11,-7]],[[33774,62000],[0,-3]],[[33774,61997],[11,3]],[[33785,62000],[0,-3]],[[33785,61997],[10,-13]],[[33795,61984],[0,-6]],[[33795,61978],[6,-4]],[[33801,61974],[3,0]],[[33804,61974],[56,-22]],[[33860,61952],[0,-4]],[[33860,61948],[25,-3]],[[33885,61945],[19,-6]],[[33904,61939],[31,-4]],[[33935,61935],[9,-3]],[[33944,61932],[8,-3]],[[33952,61929],[42,-6]],[[33994,61923],[0,-4]],[[33994,61919],[25,-9]],[[34019,61910],[24,-10]],[[34043,61900],[0,3]],[[34043,61903],[25,-3]],[[34068,61900],[12,3]],[[34080,61903],[6,7]],[[34086,61910],[2,22]],[[34088,61932],[-8,13]],[[34080,61945],[21,3]],[[34101,61948],[29,10]],[[34130,61958],[2,6]],[[34132,61964],[9,-3]],[[34141,61961],[8,0]],[[34149,61961],[14,7]],[[34163,61968],[0,-4]],[[34163,61964],[5,-6]],[[34168,61958],[3,-3]],[[34171,61955],[0,-3]],[[34171,61952],[3,-4]],[[34174,61948],[15,-33]],[[34189,61915],[49,-149],[73,-159]],[[34311,61607],[20,-102]],[[34331,61505],[2,-137],[-12,-64]],[[34321,61304],[-27,-57]],[[34294,61247],[-126,-88],[-113,-59],[-93,-13],[-211,-12]],[[33751,61075],[-144,-28]],[[33607,61047],[-171,-82]],[[33436,60965],[-195,-51],[-272,-148]],[[32969,60766],[-184,-172]],[[32785,60594],[-156,-80]],[[32629,60514],[-119,-74],[-54,-23]],[[32456,60417],[-125,-20],[-159,1],[-153,35],[-77,52],[-140,122]],[[31802,60607],[-81,43]],[[31721,60650],[-122,22]],[[31599,60672],[-287,13]],[[31312,60685],[-127,27],[-34,-205]],[[31151,60507],[-36,-123],[-51,-80],[-103,-121]],[[30961,60183],[-66,-68],[-97,-75]],[[30798,60040],[-81,-32]],[[30717,60008],[-40,-8],[-16,-3],[-28,-123]],[[30633,59874],[-53,-131],[-13,-57]],[[30567,59686],[5,-85],[36,-139]],[[30608,59462],[-14,-49]],[[30594,59413],[-69,-76]],[[30525,59337],[-23,-14]],[[30502,59323],[-98,-46],[-119,-68]],[[30285,59209],[-129,-59]],[[30156,59150],[-174,-121],[-17,-20]],[[29965,59009],[-23,-47],[-25,-111]],[[29917,58851],[-44,-106]],[[29873,58745],[-58,-62]],[[29815,58683],[-48,-30]],[[29767,58653],[-175,-67]],[[29592,58586],[-78,-19]],[[29514,58567],[-31,-19]],[[29483,58548],[-8,37]],[[29475,58585],[-11,26]],[[29464,58611],[-40,-10]],[[29424,58601],[-2,-6]],[[29422,58595],[-5,2]],[[29417,58597],[-3,7]],[[29414,58604],[-8,7]],[[29406,58611],[-9,9]],[[29397,58620],[-16,4]],[[29381,58624],[-7,6]],[[29374,58630],[-7,3]],[[29367,58633],[-10,0]],[[29357,58633],[-13,-3]],[[29344,58630],[0,-3]],[[29344,58627],[-11,-3]],[[29333,58624],[-11,-10]],[[29322,58614],[-15,-3]],[[29307,58611],[-14,0]],[[29293,58611],[-5,-3]],[[29288,58608],[-14,6]],[[29274,58614],[-8,3]],[[29266,58617],[0,3]],[[29266,58620],[-9,7]],[[29257,58627],[0,16]],[[29257,58643],[4,4]],[[29261,58647],[2,9]],[[29263,58656],[9,3]],[[29272,58659],[6,7]],[[29278,58666],[0,16]],[[29278,58682],[0,3]],[[29278,58685],[-6,3]],[[29272,58688],[0,4]],[[29272,58692],[-6,3]],[[29266,58695],[-5,6]],[[29261,58701],[-4,3]],[[29257,58704],[0,4]],[[29257,58708],[-14,6]],[[29243,58714],[-2,6]],[[29241,58720],[-9,7]],[[29232,58727],[0,4]],[[29232,58731],[0,12]],[[29232,58743],[-5,10]],[[29227,58753],[-9,3]],[[29218,58756],[-10,13]],[[29208,58769],[-22,13]],[[29186,58782],[-6,9]],[[29180,58791],[-17,11]],[[29163,58802],[-2,6]],[[29161,58808],[-40,3]],[[29121,58811],[-9,7]],[[29112,58818],[-7,0]],[[29105,58818],[0,3]],[[29105,58821],[-15,3]],[[29090,58824],[0,3]],[[29090,58827],[-10,3]],[[29080,58830],[-20,-3]],[[29060,58827],[6,-41]],[[29066,58786],[5,0]],[[29071,58786],[9,-4]],[[29080,58782],[0,-19]],[[29080,58763],[-20,6]],[[29060,58769],[0,3]],[[29060,58772],[-11,10]],[[29049,58782],[-33,4]],[[29016,58786],[-22,5]],[[28994,58791],[-9,20]],[[28985,58811],[-6,7]],[[28979,58818],[-3,6]],[[28976,58824],[-6,10]],[[28970,58834],[-4,6]],[[28966,58840],[-7,3]],[[28959,58843],[-5,7]],[[28954,58850],[-8,3]],[[28946,58853],[-5,6]],[[28941,58859],[-45,14]],[[28896,58873],[-3,6]],[[28893,58879],[-17,6]],[[28876,58885],[0,4]],[[28876,58889],[-22,9]],[[28854,58898],[-19,13]],[[28835,58911],[-11,3]],[[28824,58914],[0,4]],[[28824,58918],[-15,3]],[[28809,58921],[-25,9]],[[28784,58930],[-20,4]],[[28764,58934],[0,3]],[[28764,58937],[-16,4]],[[28748,58941],[-25,9]],[[28723,58950],[-16,7]],[[28707,58957],[-48,19],[-56,-7]],[[28603,58969],[-10,4]],[[28593,58973],[-6,6]],[[28587,58979],[-4,3]],[[28583,58982],[-30,48]],[[28553,59030],[-33,26]],[[28520,59056],[-8,4]],[[28512,59060],[-20,19]],[[28492,59079],[-9,4]],[[28483,59083],[-103,64],[-25,-9]],[[28355,59138],[-10,-7]],[[28345,59131],[-11,9]],[[28334,59140],[-15,7]],[[28319,59147],[-3,7]],[[28316,59154],[-7,3]],[[28309,59157],[-12,16]],[[28297,59173],[-8,3]],[[28289,59176],[0,3]],[[28289,59179],[-8,7]],[[28281,59186],[-15,29]],[[28266,59215],[-7,3]],[[28259,59218],[-15,29]],[[28244,59247],[-5,7]],[[28239,59254],[-34,74]],[[28205,59328],[-5,6]],[[28200,59334],[-17,39]],[[28183,59373],[-5,7]],[[28178,59380],[-4,13]],[[28174,59393],[-5,3]],[[28169,59396],[-14,25]],[[28155,59421],[-6,4]],[[28149,59425],[-10,16]],[[28139,59441],[-4,7]],[[28135,59448],[-5,16]],[[28130,59464],[-5,3]],[[28125,59467],[-25,39]],[[28100,59506],[-3,3]],[[28097,59509],[-4,10]],[[28093,59519],[-5,3]],[[28088,59522],[-25,32]],[[28063,59554],[-5,4]],[[28058,59558],[-39,68],[-33,5],[-25,55]],[[27961,59686],[-7,4]],[[27954,59690],[-36,23]],[[27918,59713],[-19,3]],[[27899,59716],[-28,36]],[[27871,59752],[-8,2]],[[27863,59754],[-36,-6]],[[27827,59748],[-9,4]],[[27818,59752],[-33,35]],[[27785,59787],[-5,3]],[[27780,59790],[-54,39]],[[27726,59829],[-5,7]],[[27721,59836],[-31,25]],[[27690,59861],[-25,-3]],[[27665,59858],[-61,19]],[[27604,59877],[-9,7]],[[27595,59884],[-5,15]],[[27590,59899],[0,4]],[[27590,59903],[-6,7]],[[27584,59910],[-33,19]],[[27551,59929],[-6,3]],[[27545,59932],[-24,3]],[[27521,59935],[-3,-6]],[[27518,59929],[-39,-33]],[[27479,59896],[-4,4]],[[27475,59900],[-35,13]],[[27440,59913],[-11,-6]],[[27429,59907],[-25,38]],[[27404,59945],[5,3]],[[27409,59948],[25,4]],[[27434,59952],[9,-4]],[[27443,59948],[16,23],[-14,87]],[[27445,60058],[-2,4]],[[27443,60062],[0,3]],[[27443,60065],[-7,3]],[[27436,60068],[-7,10]],[[27429,60078],[-18,0]],[[27411,60078],[-52,-26]],[[27359,60052],[-17,-3]],[[27342,60049],[-33,25],[-11,84]],[[27298,60158],[-4,3]],[[27294,60161],[29,49]],[[27323,60210],[6,3]],[[27329,60213],[-37,30],[-25,57],[-45,49]],[[27222,60349],[-14,3]],[[27208,60352],[3,30]],[[27211,60382],[3,2]],[[27214,60384],[-11,59]],[[27203,60443],[11,-4]],[[27214,60439],[8,13]],[[27222,60452],[-5,39]],[[27217,60491],[-3,10]],[[27214,60501],[0,6]],[[27214,60507],[-3,14]],[[27211,60521],[0,67]],[[27211,60588],[3,4]],[[27214,60592],[14,9]],[[27228,60601],[9,3]],[[27237,60604],[197,165]],[[27434,60769],[11,3]],[[27445,60772],[8,10]],[[27453,60782],[11,10]],[[27464,60792],[0,3]],[[27464,60795],[6,3]],[[27470,60798],[44,29]],[[27514,60827],[7,3]],[[27521,60830],[5,7]],[[27526,60837],[8,3]],[[27534,60840],[17,10]],[[27551,60850],[8,3]],[[27559,60853],[8,162],[29,45]],[[27596,61060],[8,3]],[[27604,61063],[5,32]],[[27609,61095],[3,4]],[[27612,61099],[0,3]],[[27612,61102],[-3,3]],[[27609,61105],[-5,13]],[[27604,61118],[-5,10]],[[27599,61128],[0,32]],[[27599,61160],[5,3]],[[27604,61163],[31,10]],[[27635,61173],[7,3]],[[27642,61176],[15,19]],[[27657,61195],[9,4]],[[27666,61199],[8,39]],[[27674,61238],[3,6]],[[27677,61244],[10,52]],[[27687,61296],[-13,109]],[[27674,61405],[-4,20]],[[27670,61425],[0,23]],[[27670,61448],[4,3]],[[27674,61451],[0,13]],[[27674,61464],[3,6]],[[27677,61470],[13,29]],[[27690,61499],[5,7]],[[27695,61506],[76,42]],[[27771,61548],[14,0]],[[27785,61548],[56,67],[91,65],[6,78],[-20,19]],[[27918,61777],[-2,4]],[[27916,61781],[-12,9]],[[27904,61790],[-3,13]],[[27901,61803],[-4,6]],[[27897,61809],[-1,4]],[[27896,61813],[-8,19]],[[27888,61832],[0,4]],[[27888,61836],[0,3]],[[27888,61839],[-5,13]],[[27883,61852],[-45,28]],[[27838,61880],[-20,4]],[[27818,61884],[0,3]],[[27818,61887],[-14,-3]],[[27804,61884],[-31,35]],[[27773,61919],[3,4]],[[27776,61923],[-50,38]],[[27726,61961],[0,7]],[[27726,61968],[15,39]],[[27741,62007],[5,3]],[[27746,62010],[5,22]],[[27751,62032],[4,3]],[[27755,62035],[18,49]],[[27773,62084],[4,13]],[[27777,62097],[0,4]],[[27777,62101],[-1,5]],[[27776,62106],[-19,30]],[[27757,62136],[-9,3]],[[27748,62139],[-2,6]],[[27746,62145],[-5,7]],[[27741,62152],[0,58]],[[27741,62210],[5,3]],[[27746,62213],[2,10]],[[27748,62223],[7,6]],[[27755,62229],[86,36],[21,29],[-10,78],[120,39]],[[27972,62411],[11,3]],[[27983,62414],[49,19]],[[28032,62433],[11,3]],[[28043,62436],[20,7]],[[28063,62443],[5,3]],[[28068,62446],[20,20]],[[28088,62466],[5,3]],[[28093,62469],[1,6]],[[28094,62475],[9,3]],[[28103,62478],[11,87]],[[28114,62565],[7,10]],[[28121,62575],[3,10]],[[28124,62585],[-5,7]],[[28119,62592],[-6,35]],[[28113,62627],[8,3]],[[28121,62630],[64,49]],[[28185,62679],[-19,-3]],[[28166,62676],[0,12]],[[28166,62688],[9,4]],[[28175,62692],[64,39]],[[28239,62731],[5,-4]],[[28244,62727],[12,13]],[[28256,62740],[8,3]],[[28264,62743],[25,29],[61,-9],[30,22],[-8,49]],[[28372,62834],[25,3]],[[28397,62837],[65,-10]],[[28462,62827],[5,4]],[[28467,62831],[19,71]],[[28486,62902],[6,3]],[[28492,62905],[20,3]],[[28512,62908],[19,3]],[[28531,62911],[31,-22]],[[28562,62889],[11,-3]],[[28573,62886],[111,-33],[34,3]],[[28718,62856],[46,3]],[[28764,62859],[6,7]],[[28770,62866],[4,13]],[[28774,62879],[0,10]],[[28774,62889],[-4,3]],[[28770,62892],[-2,10]],[[28768,62902],[16,-4]],[[28784,62898],[4,-12]],[[28788,62886],[5,-11]],[[28793,62875],[52,-6]],[[28845,62869],[20,-13]],[[28865,62856],[9,3]],[[28874,62859],[5,7]],[[28879,62866],[6,3]],[[28885,62869],[0,4]],[[28885,62873],[8,6]],[[28893,62879],[13,26]],[[28906,62905],[0,22]],[[28906,62927],[-5,7]],[[28901,62934],[-5,3]],[[28896,62937],[-3,20]],[[28893,62957],[-8,12]],[[28885,62969],[0,7]],[[28885,62976],[8,3]],[[28893,62979],[2,6]],[[28895,62985],[31,-3]],[[28926,62982],[3,-6]],[[28929,62976],[22,-13]],[[28951,62963],[4,6]],[[28955,62969],[21,4]],[[28976,62973],[3,-7]],[[28979,62966],[6,-3]],[[28985,62963],[2,-3]],[[28987,62960],[9,-3]],[[28996,62957],[45,3]],[[29041,62960],[3,13]],[[29044,62973],[36,-4]],[[29080,62969],[14,-16]],[[29094,62953],[2,-3]],[[29096,62950],[9,0]],[[29105,62950],[7,-4]],[[29112,62946],[0,-2]],[[29112,62944],[6,2]],[[29118,62946],[0,4]],[[29118,62950],[12,10]],[[29130,62960],[6,16]],[[29136,62976],[10,13]],[[29146,62989],[5,6]],[[29151,62995],[12,0]],[[29163,62995],[0,3]],[[29163,62998],[17,4]],[[29180,63002],[8,13]],[[29188,63015],[44,16]],[[29232,63031],[0,3]],[[29232,63034],[4,-6]],[[20627,66640],[20,-30]],[[20647,66610],[10,-2]],[[20657,66608],[32,-49]],[[20689,66559],[13,-3]],[[20702,66556],[3,-6]],[[20705,66550],[6,-4]],[[20711,66546],[2,-6]],[[20713,66540],[8,-7]],[[20721,66533],[14,-19]],[[20735,66514],[6,-7]],[[20741,66507],[65,-64]],[[20806,66443],[-14,-4]],[[20792,66439],[0,-3]],[[20792,66436],[-20,-3]],[[20772,66433],[0,-3]],[[20772,66430],[-1,-7]],[[20771,66423],[17,-25]],[[20788,66398],[3,-14]],[[20791,66384],[12,-6]],[[20803,66378],[21,-3]],[[20824,66375],[0,3]],[[20824,66378],[4,6]],[[20828,66384],[63,7],[37,-62]],[[20928,66329],[5,-2]],[[20933,66327],[5,-14]],[[20938,66313],[4,-3]],[[20942,66310],[50,-13]],[[20992,66297],[2,-3]],[[20994,66294],[25,-16]],[[21019,66278],[4,-3]],[[21023,66275],[0,-30]],[[21023,66245],[7,-9]],[[21030,66236],[14,6]],[[21044,66242],[14,-6]],[[21058,66236],[22,-26]],[[21080,66210],[7,-3]],[[21087,66207],[22,-10]],[[21109,66197],[11,-3]],[[21120,66194],[13,-16]],[[21133,66178],[3,-4]],[[21136,66174],[0,-9]],[[21136,66165],[0,-16]],[[21136,66149],[0,-13]],[[21136,66136],[14,-3]],[[21150,66133],[36,-26]],[[21186,66107],[7,3]],[[21193,66110],[0,-3]],[[21193,66107],[5,-4]],[[21198,66103],[17,-29]],[[21215,66074],[5,-3]],[[21220,66071],[19,-13]],[[21239,66058],[36,-3]],[[21275,66055],[51,-42]],[[21326,66013],[8,-3]],[[21334,66010],[6,-16]],[[21340,65994],[20,-3]],[[21360,65991],[61,-36]],[[21421,65955],[16,-3]],[[21437,65952],[15,-10]],[[21452,65942],[5,-3]],[[21457,65939],[10,-10]],[[21467,65929],[6,-3]],[[21473,65926],[4,-7]],[[21477,65919],[8,-3]],[[21485,65916],[11,-9]],[[21496,65907],[10,-4]],[[21506,65903],[65,-35]],[[21571,65868],[6,-4]],[[21577,65864],[30,-16]],[[21607,65848],[14,-3]],[[21621,65845],[31,-20]],[[21652,65825],[5,-3]],[[21657,65822],[11,-9]],[[21668,65813],[11,-4]],[[21679,65809],[50,-32]],[[21729,65777],[11,-3]],[[21740,65774],[18,-13]],[[21758,65761],[11,-3]],[[21769,65758],[19,-13]],[[21788,65745],[11,-3]],[[21799,65742],[14,-13]],[[21813,65729],[6,-3]],[[21819,65726],[14,-16]],[[21833,65710],[10,-4]],[[21843,65706],[0,-3]],[[21843,65703],[6,-4]],[[21849,65699],[26,-12]],[[21875,65687],[8,-4]],[[21883,65683],[13,-9]],[[21896,65674],[4,-3]],[[21900,65671],[0,-4]],[[21900,65667],[11,-3]],[[21911,65664],[19,-13]],[[21930,65651],[14,-3]],[[21944,65648],[6,-10]],[[21950,65638],[14,-3]],[[21964,65635],[71,-48]],[[22035,65587],[12,-4]],[[22047,65583],[53,-35]],[[22100,65548],[9,-4]],[[22109,65544],[46,-19]],[[22155,65525],[1,-3]],[[22156,65522],[27,-19]],[[22183,65503],[8,-3]],[[22191,65500],[71,-46]],[[22262,65454],[5,-3]],[[22267,65451],[0,-7]],[[22267,65444],[25,-3]],[[22292,65441],[0,-3]],[[22292,65438],[9,-3]],[[22301,65435],[2,-3]],[[22303,65432],[3,-4]],[[22306,65428],[17,-10]],[[22323,65418],[5,-3]],[[22328,65415],[3,-6]],[[22331,65409],[20,-4]],[[22351,65405],[0,-3]],[[22351,65402],[8,-3]],[[22359,65399],[49,-26]],[[22408,65373],[4,-3]],[[22412,65370],[10,-9]],[[22422,65361],[10,0]],[[22432,65361],[0,-4]],[[22432,65357],[10,-3]],[[22442,65354],[17,-13]],[[22459,65341],[14,-3]],[[22473,65338],[52,-36]],[[22525,65302],[10,-3]],[[22535,65299],[38,-20]],[[22573,65279],[16,-3]],[[22589,65276],[42,-19]],[[22631,65257],[14,-3]],[[22645,65254],[18,-10]],[[22663,65244],[7,-3]],[[22670,65241],[29,-19]],[[22699,65222],[10,-4]],[[22709,65218],[1,-10]],[[22710,65208],[25,-3]],[[22735,65205],[21,-10]],[[22756,65195],[10,-3]],[[22766,65192],[44,-25]],[[22810,65167],[11,-4]],[[22821,65163],[27,-19]],[[22848,65144],[4,-4]],[[22852,65140],[10,-6]],[[22862,65134],[9,-3]],[[22871,65131],[108,-68]],[[22979,65063],[12,-3]],[[22991,65060],[72,-46]],[[23063,65014],[9,-2]],[[23072,65012],[11,-10]],[[23083,65002],[11,-4]],[[23094,64998],[0,-3]],[[23094,64995],[10,-6]],[[23104,64989],[14,-10]],[[23118,64979],[15,-3]],[[23133,64976],[19,-10]],[[23152,64966],[3,-3]],[[23155,64963],[19,-16]],[[23174,64947],[11,-4]],[[23185,64943],[53,-25]],[[23238,64918],[11,-4]],[[23249,64914],[15,-12]],[[23264,64902],[22,-4]],[[23286,64898],[3,-6]],[[23289,64892],[6,-3]],[[23295,64889],[0,-3]],[[23295,64886],[5,-4]],[[23300,64882],[147,-67]],[[23447,64815],[25,-4]],[[23472,64811],[23,-13]],[[23495,64798],[13,-3]],[[23508,64795],[67,-36]],[[23575,64759],[6,4]],[[23581,64763],[55,-55]],[[23636,64708],[4,-4]],[[23640,64704],[16,-12]],[[23656,64692],[8,-4]],[[23664,64688],[23,-23]],[[23687,64665],[6,-3]],[[23693,64662],[24,-22]],[[23717,64640],[9,-3]],[[23726,64637],[20,-16]],[[23746,64621],[11,-4]],[[23757,64617],[18,-12]],[[23775,64605],[12,-4]],[[23787,64601],[17,-13]],[[23804,64588],[13,-3]],[[23817,64585],[37,-23]],[[23854,64562],[16,-3]],[[23870,64559],[40,-32]],[[23910,64527],[10,-4]],[[23920,64523],[20,-22]],[[23940,64501],[9,-3]],[[23949,64498],[77,-55]],[[24026,64443],[4,-4]],[[24030,64439],[24,-16]],[[24054,64423],[11,-3]],[[24065,64420],[20,-9]],[[24085,64411],[6,-4]],[[24091,64407],[50,-39],[55,-16]],[[24196,64352],[9,-3]],[[24205,64349],[75,13]],[[24280,64362],[36,-3]],[[24316,64359],[55,-26]],[[24371,64333],[7,-3]],[[24378,64330],[21,-13]],[[24399,64317],[8,-4]],[[24407,64313],[25,-13]],[[24432,64300],[4,-3]],[[24436,64297],[63,-9]],[[24499,64288],[20,3]],[[24519,64291],[19,52]],[[24538,64343],[40,-4]],[[24578,64339],[30,-35]],[[24608,64304],[-5,-4]],[[24603,64300],[-25,-3]],[[24578,64297],[-6,-3]],[[24572,64294],[0,-3]],[[24572,64291],[6,-3]],[[24578,64288],[14,-16]],[[24592,64272],[8,-4]],[[24600,64268],[3,0]],[[24603,64268],[5,-3]],[[24608,64265],[17,-25]],[[24625,64240],[8,-4]],[[24633,64236],[36,-29]],[[24669,64207],[25,-3]],[[24694,64204],[9,-14]],[[24703,64190],[11,-2]],[[24714,64188],[2,-7]],[[24716,64181],[34,-10]],[[24750,64171],[19,-9]],[[24769,64162],[7,-4]],[[24776,64158],[46,-32]],[[24822,64126],[14,-3]],[[24836,64123],[3,-6]],[[24839,64117],[17,-4]],[[24856,64113],[5,-3]],[[24861,64110],[4,-3]],[[24865,64107],[36,-20]],[[24901,64087],[14,-9]],[[24915,64078],[16,-7]],[[24931,64071],[9,3]],[[24940,64074],[0,4]],[[24940,64078],[5,3]],[[24945,64081],[16,29]],[[24961,64110],[17,3]],[[24978,64113],[18,0]],[[24996,64113],[14,-3]],[[25010,64110],[7,-7]],[[25017,64103],[18,-3]],[[25035,64100],[46,-32]],[[25081,64068],[7,-3]],[[25088,64065],[15,-13]],[[25103,64052],[6,-3]],[[25109,64049],[23,-23]],[[25132,64026],[10,4]],[[25142,64030],[20,-17]],[[25162,64013],[15,3]],[[25177,64016],[16,10]],[[25193,64026],[6,-3]],[[25199,64023],[21,-4]],[[25220,64019],[12,-3]],[[25232,64016],[16,-19]],[[25248,63997],[6,-3]],[[25254,63994],[31,-19]],[[25285,63975],[5,-4]],[[25290,63971],[14,-10]],[[25304,63961],[11,3]],[[25315,63964],[48,-22]],[[25363,63942],[11,-3]],[[25374,63939],[45,-65]],[[25419,63874],[0,-13]],[[25419,63861],[-23,-19]],[[25396,63842],[-6,-3]],[[25390,63839],[36,-33]],[[25426,63806],[7,3]],[[25433,63809],[13,16]],[[25446,63825],[12,-3]],[[25458,63822],[41,-19]],[[25499,63803],[22,0]],[[25521,63803],[0,10]],[[25521,63813],[18,3]],[[25539,63816],[22,20]],[[25561,63836],[8,3]],[[25569,63839],[41,6]],[[25610,63845],[11,-3]],[[25621,63842],[4,-6]],[[25625,63836],[7,-4]],[[25632,63832],[18,-19]],[[25650,63813],[11,-7]],[[25661,63806],[31,-25],[10,-55]],[[25702,63726],[6,-4]],[[25708,63722],[25,20]],[[25733,63742],[5,3]],[[25738,63745],[7,9]],[[25745,63754],[11,0]],[[25756,63754],[5,-3]],[[25761,63751],[5,-35]],[[25766,63716],[3,-3]],[[25769,63713],[23,-23]],[[25792,63690],[10,-7]],[[25802,63683],[15,-32]],[[25817,63651],[5,-3]],[[25822,63648],[11,-17],[167,-41],[19,-19]],[[26019,63571],[6,-4]],[[26025,63567],[15,-7]],[[26040,63560],[10,4]],[[26050,63564],[20,16]],[[26070,63580],[5,3]],[[26075,63583],[4,7]],[[26079,63590],[10,3]],[[26089,63593],[34,-68]],[[26123,63525],[6,-3]],[[26129,63522],[82,-23]],[[26211,63499],[14,-3]],[[26225,63496],[42,-26]],[[26267,63470],[3,-3]],[[26270,63467],[17,-19],[144,3]],[[26431,63451],[20,6]],[[26451,63457],[51,7],[57,-32]],[[26559,63432],[10,-4]],[[26569,63428],[14,-7]],[[26583,63421],[19,-5]],[[26602,63416],[10,-11]],[[26612,63405],[17,-3]],[[26629,63402],[11,-16]],[[26640,63386],[4,-3]],[[26644,63383],[39,-29]],[[26683,63354],[46,3]],[[26729,63357],[34,-3]],[[26763,63354],[25,0]],[[26788,63354],[28,-26]],[[26816,63328],[19,-3]],[[26835,63325],[31,-74]],[[26866,63251],[12,-10]],[[26878,63241],[4,6]],[[26882,63247],[34,0]],[[26916,63247],[11,-9]],[[26927,63238],[1,-4]],[[26928,63234],[77,-6]],[[27005,63228],[11,-3]],[[27016,63225],[25,-17]],[[27041,63208],[6,-2]],[[27047,63206],[0,-4]],[[27047,63202],[8,-3]],[[27055,63199],[0,-4]],[[27055,63195],[22,-3]],[[27077,63192],[6,-6]],[[27083,63186],[25,-3]],[[27108,63183],[0,-4]],[[27108,63179],[19,-3]],[[27127,63176],[20,-3]],[[27147,63173],[14,-3]],[[27161,63170],[162,-23]],[[27323,63147],[64,4]],[[27387,63151],[13,5]],[[27400,63156],[18,7]],[[27418,63163],[0,39],[38,36]],[[27456,63238],[0,22]],[[27456,63260],[12,26]],[[27468,63286],[2,-7]],[[27470,63279],[51,-19]],[[27521,63260],[10,3]],[[27531,63263],[25,20]],[[27556,63283],[4,-4]],[[27560,63279],[25,-9]],[[27585,63270],[3,-3]],[[27588,63267],[11,-7]],[[27599,63260],[22,3]],[[27621,63263],[10,0]],[[27631,63263],[14,-3]],[[27645,63260],[12,-38]],[[27657,63222],[8,-7]],[[27665,63215],[51,19]],[[27716,63234],[11,-3]],[[27727,63231],[14,-36]],[[27741,63195],[5,4]],[[27746,63199],[0,3]],[[27746,63202],[9,4]],[[27755,63206],[18,48]],[[27773,63254],[12,0]],[[27785,63254],[27,-55]],[[27812,63199],[4,3]],[[27816,63202],[16,0]],[[27832,63202],[0,-3]],[[27832,63199],[5,-39]],[[27837,63160],[0,-6]],[[27837,63154],[21,16]],[[27858,63170],[10,3]],[[27868,63173],[15,3]],[[27883,63176],[5,-3]],[[27888,63173],[5,-13]],[[27893,63160],[0,-16]],[[27893,63144],[0,-13]],[[27893,63131],[4,-3]],[[27897,63128],[19,19]],[[27916,63147],[5,4]],[[27921,63151],[23,-33]],[[27944,63118],[0,-13]],[[27944,63105],[10,-6]],[[27954,63099],[4,3]],[[27958,63102],[49,-16]],[[28007,63086],[11,-3]],[[28018,63083],[4,-23]],[[28022,63060],[13,3]],[[28035,63063],[4,-22]],[[28039,63041],[0,-7]],[[28039,63034],[44,-10]],[[28083,63024],[10,-3]],[[28093,63021],[0,-13]],[[28093,63008],[-5,-6]],[[28088,63002],[0,-33]],[[28088,62969],[0,-9]],[[28088,62960],[-19,-10]],[[28069,62950],[-5,-4]],[[28064,62946],[-1,-5]],[[28063,62941],[-10,-7]],[[28053,62934],[-20,-52]],[[28033,62882],[-9,-3]],[[28024,62879],[3,-65]],[[28027,62814],[5,-3]],[[28032,62811],[7,-61]],[[28039,62750],[-4,-10]],[[28035,62740],[-25,-32]],[[28010,62708],[-3,-10]],[[28007,62698],[-28,-13]],[[27979,62685],[-7,3]],[[27972,62688],[-23,-12]],[[27949,62676],[-5,-7]],[[27944,62669],[-11,-23]],[[27933,62646],[-11,-3]],[[27922,62643],[-25,-10]],[[27897,62633],[-4,-3]],[[27893,62630],[-5,-6]],[[27888,62624],[0,-4]],[[27888,62620],[0,-3]],[[27888,62617],[-6,-3]],[[27882,62614],[-14,-32]],[[27868,62582],[-5,-7]],[[27863,62575],[-26,-54]],[[27837,62521],[-5,-4]],[[27832,62517],[-16,-32]],[[27816,62485],[-4,-3]],[[27812,62482],[-27,-27]],[[27785,62455],[-8,-2]],[[27777,62453],[-22,-71]],[[27755,62382],[-4,-20]],[[27751,62362],[-5,-19]],[[27746,62343],[-5,-4]],[[27741,62339],[-25,-32],[-74,-29]],[[27642,62278],[-11,-6]],[[27631,62272],[-22,-59],[-49,-12]],[[27560,62201],[-6,-4]],[[27554,62197],[-23,-29]],[[27531,62168],[-5,-3]],[[27526,62165],[-56,-39]],[[27470,62126],[-14,-3]],[[27456,62123],[39,-68]],[[27495,62055],[5,-4]],[[27500,62051],[18,-16]],[[27518,62035],[6,-3]],[[27524,62032],[55,-32]],[[27579,62000],[5,-3]],[[27584,61997],[1,-10]],[[27585,61987],[5,-3]],[[27590,61984],[5,-13]],[[27595,61971],[4,-7]],[[27599,61964],[0,-6]],[[27599,61958],[7,-6]],[[27606,61952],[3,-7]],[[27609,61945],[3,-6]],[[27612,61939],[5,-46],[43,-52]],[[27660,61841],[5,-2]],[[27665,61839],[5,-14]],[[27670,61825],[4,-3]],[[27674,61822],[0,-2]],[[27674,61820],[2,-7]],[[27676,61813],[14,-16]],[[27690,61797],[9,-4]],[[27699,61793],[2,-6]],[[27701,61787],[6,3]],[[27707,61790],[14,-16]],[[27721,61774],[5,-6]],[[27726,61768],[0,-65]],[[27726,61703],[-5,-6]],[[27721,61697],[-45,-62]],[[27676,61635],[-10,-4]],[[27666,61631],[0,-2]],[[27666,61629],[-6,-3]],[[27660,61626],[-45,-120]],[[27615,61506],[-6,-3]],[[27609,61503],[-5,-14]],[[27604,61489],[-5,-6]],[[27599,61483],[0,-10]],[[27599,61473],[-4,-6]],[[27595,61467],[-5,-68]],[[27590,61399],[2,-16]],[[27592,61383],[12,-6]],[[27604,61377],[5,-16]],[[27609,61361],[3,-30]],[[27612,61331],[0,-19]],[[27612,61312],[0,-3]],[[27612,61309],[0,-3]],[[27612,61306],[0,-39]],[[27612,61267],[0,-4]],[[27612,61263],[0,-6]],[[27612,61257],[0,-3]],[[27612,61254],[-6,-7]],[[27606,61247],[-7,-6]],[[27599,61241],[-4,-3]],[[27595,61238],[-32,-20]],[[27563,61218],[-17,-3]],[[27546,61215],[-25,-7]],[[27521,61208],[-3,-2]],[[27518,61206],[0,-82]],[[27518,61124],[3,-3]],[[27521,61121],[5,-13]],[[27526,61108],[0,-3]],[[27526,61105],[-2,-26]],[[27524,61079],[-6,-3]],[[27518,61076],[-17,-9]],[[27501,61067],[-6,-4]],[[27495,61063],[-14,-42]],[[27481,61021],[-8,-13]],[[27473,61008],[-33,-90]],[[27440,60918],[-6,-7]],[[27434,60911],[-16,-29]],[[27418,60882],[-7,-6]],[[27411,60876],[0,-3]],[[27411,60873],[-8,-4]],[[27403,60869],[-13,-6]],[[27390,60863],[-8,-4]],[[27382,60859],[-3,-6]],[[27379,60853],[-4,-3]],[[27375,60850],[0,-3]],[[27375,60847],[-5,-4]],[[27370,60843],[-66,-29]],[[27304,60814],[-10,-3]],[[27294,60811],[-63,-45],[-84,-23]],[[27147,60743],[-10,0]],[[27137,60743],[-4,-3]],[[27133,60740],[0,-4]],[[27133,60736],[-5,-2]],[[27128,60734],[-1,-7]],[[27127,60727],[-7,-3]],[[27120,60724],[0,-4]],[[27120,60720],[-4,0]],[[27116,60720],[-13,-28]],[[27103,60692],[-6,-7]],[[27097,60685],[0,-3]],[[27097,60682],[-39,-42]],[[27058,60640],[-3,-7]],[[27055,60633],[-39,-41]],[[27016,60592],[-10,-4]],[[27006,60588],[-9,-10]],[[26997,60578],[-16,-3]],[[26981,60575],[0,-3]],[[26981,60572],[-4,-3]],[[26977,60569],[-16,-20]],[[26961,60549],[-26,-3]],[[26935,60546],[-10,7]],[[26925,60553],[-23,3]],[[26902,60556],[-28,55]],[[26874,60611],[-8,9]],[[26866,60620],[0,7]],[[26866,60627],[0,19]],[[26866,60646],[-47,39],[-61,16]],[[26758,60701],[-4,10]],[[26754,60711],[-35,84]],[[26719,60795],[-14,7]],[[26705,60802],[-37,38],[-14,52],[56,52]],[[26710,60944],[9,3]],[[26719,60947],[10,27]],[[26729,60974],[-10,34]],[[26719,61008],[-4,7]],[[26715,61015],[-5,25]],[[26710,61040],[-5,4]],[[26705,61044],[-4,6]],[[26701,61050],[-11,-3]],[[26690,61047],[3,-32]],[[26693,61015],[4,-7]],[[26697,61008],[8,-19]],[[26705,60989],[5,-4]],[[26710,60985],[0,-6]],[[26710,60979],[-5,-13]],[[26705,60966],[-4,-6]],[[26701,60960],[-21,-3]],[[26680,60957],[-61,-52],[5,-57]],[[26624,60848],[9,-34]],[[26633,60814],[2,0],[0,-3]],[[26635,60811],[5,-6]],[[26640,60805],[9,-3]],[[26649,60802],[44,-30]],[[26693,60772],[4,-3]],[[26697,60769],[7,-19]],[[26704,60750],[6,-16]],[[26710,60734],[5,-14]],[[26715,60720],[7,-3]],[[26722,60717],[28,-68],[64,-45],[52,-71]],[[26866,60533],[9,-3]],[[26875,60530],[16,-13]],[[26891,60517],[11,-3]],[[26902,60514],[73,-20]],[[26975,60494],[27,-3]],[[27002,60491],[39,0],[-7,-116],[-18,-29]],[[27016,60346],[-6,-3]],[[27010,60343],[-18,-20]],[[26992,60323],[-6,-3]],[[26986,60320],[-72,-6]],[[26914,60314],[-18,2]],[[26896,60316],[-55,-2]],[[26841,60314],[-67,-3]],[[26774,60311],[-3,-11]],[[26771,60300],[-27,4]],[[26744,60304],[-31,-4]],[[26713,60300],[-44,-3]],[[26669,60297],[-17,10]],[[26652,60307],[-20,4]],[[26632,60311],[-25,-49]],[[26607,60262],[-5,-3]],[[26602,60259],[-9,-23]],[[26593,60236],[-5,-3]],[[26588,60233],[-34,-49]],[[26554,60184],[-5,-3]],[[26549,60181],[-62,-29]],[[26487,60152],[-14,3]],[[26473,60155],[0,-3]],[[26473,60152],[-5,-3]],[[26468,60149],[0,-4]],[[26468,60145],[-17,-6]],[[26451,60139],[-13,-3]],[[26438,60136],[-15,-23]],[[26423,60113],[-10,-3]],[[26413,60110],[-21,-36],[-61,-22]],[[26331,60052],[-5,-3]],[[26326,60049],[-84,6],[-22,-25]],[[26220,60030],[-39,-23]],[[26181,60007],[-6,-4]],[[26175,60003],[-10,-39]],[[26165,59964],[-4,-2]],[[26161,59962],[-55,-17]],[[26106,59945],[-6,3]],[[26100,59948],[-25,14]],[[26075,59962],[-5,6]],[[26070,59968],[-36,19],[-109,10],[-13,-26]],[[25912,59971],[-4,-7]],[[25908,59964],[0,-9]],[[25908,59955],[-10,-3]],[[25898,59952],[-20,-88],[-26,-28]],[[25852,59836],[-5,-7]],[[25847,59829],[-48,-26]],[[25799,59803],[-7,-3]],[[25792,59800],[-1,-10]],[[25791,59790],[-5,-3]],[[25786,59787],[0,-3]],[[25786,59784],[-3,-3]],[[25783,59781],[-14,3]],[[25769,59784],[-6,3]],[[25763,59787],[0,3]],[[25763,59790],[-10,3]],[[25753,59793],[-45,4]],[[25708,59797],[-5,-4]],[[25703,59793],[10,-29]],[[25713,59764],[-16,-3]],[[25697,59761],[-101,26]],[[25596,59787],[-5,3]],[[25591,59790],[-16,35]],[[25575,59825],[-4,4]],[[25571,59829],[-5,10]],[[25566,59839],[-6,3]],[[25560,59842],[-74,54]],[[25486,59896],[-6,4]],[[25480,59900],[-109,84]],[[25371,59984],[-8,3]],[[25363,59987],[-20,16]],[[25343,60003],[-5,4]],[[25338,60007],[-34,26]],[[25304,60033],[-10,2]],[[25294,60035],[0,4]],[[25294,60039],[-17,10]],[[25277,60049],[-20,16]],[[25257,60065],[-3,3]],[[25254,60068],[-2,6]],[[25252,60074],[-28,7]],[[25224,60081],[-17,-16]],[[25207,60065],[-14,3]],[[25193,60068],[-2,-6]],[[25191,60062],[-9,-4]],[[25182,60058],[-44,-6]],[[25138,60052],[-9,-3]],[[25129,60049],[-20,-19]],[[25109,60030],[-6,-4]],[[25103,60026],[-10,-10]],[[25093,60016],[-29,-6]],[[25064,60010],[-4,-13]],[[25060,59997],[-7,-6]],[[25053,59991],[-25,-36],[-41,9]],[[24987,59964],[-22,-2]],[[24965,59962],[-20,0]],[[24945,59962],[-20,-4]],[[24925,59958],[-3,0]],[[24922,59958],[-5,-3]],[[24917,59955],[-61,-10]],[[24856,59945],[-6,-3]],[[24850,59942],[-14,0]],[[24836,59942],[-14,-3]],[[24822,59939],[-67,35]],[[24755,59974],[-5,7]],[[24750,59981],[-52,10]],[[24698,59991],[-32,-20]],[[24666,59971],[-13,3]],[[24653,59974],[0,-3]],[[24653,59971],[-28,-3]],[[24625,59968],[-16,-16]],[[24609,59952],[-9,-4]],[[24600,59948],[0,-3]],[[24600,59945],[-6,-6]],[[24594,59939],[-11,-68]],[[24583,59871],[-20,-3]],[[24563,59868],[-14,35]],[[24549,59903],[-14,-7]],[[24535,59896],[-18,-51]],[[24517,59845],[-14,-3]],[[24503,59842],[-47,13]],[[24456,59855],[-4,-13]],[[24452,59842],[0,-6]],[[24452,59836],[0,-7]],[[24452,59829],[-8,-20]],[[24444,59809],[-8,4]],[[24436,59813],[2,51],[-47,4]],[[24391,59868],[-5,-4]],[[24386,59864],[-9,0]],[[24377,59864],[-25,4]],[[24352,59868],[-16,-4]],[[24336,59864],[-29,-3]],[[24307,59861],[-178,-16]],[[24129,59845],[-50,-3]],[[24079,59842],[-25,-3]],[[24054,59839],[-14,3]],[[24040,59842],[-91,49]],[[23949,59891],[-6,2]],[[23943,59893],[-23,17]],[[23920,59910],[-7,3]],[[23913,59913],[-48,58]],[[23865,59971],[-3,3]],[[23862,59974],[16,100],[-13,27]],[[23865,60101],[-3,19]],[[23862,60120],[0,109]],[[23862,60229],[0,39]],[[23862,60268],[0,4]],[[23862,60272],[0,6]],[[23862,60278],[0,6]],[[23862,60284],[3,36]],[[23865,60320],[5,37]],[[23870,60357],[9,25]],[[23879,60382],[3,19]],[[23882,60401],[-17,35]],[[23865,60436],[-3,7]],[[23862,60443],[-39,45],[-45,10]],[[23778,60498],[-10,3]],[[23768,60501],[-78,13]],[[23690,60514],[-28,3]],[[23662,60517],[0,-3]],[[23662,60514],[-40,-4]],[[23622,60510],[-16,-48]],[[23606,60462],[5,4]],[[23611,60466],[0,-7]],[[23611,60459],[-8,-6]],[[23603,60453],[-27,-14]],[[23576,60439],[-11,-3]],[[23565,60436],[-35,-32]],[[23530,60404],[-5,-3]],[[23525,60401],[0,-3]],[[23525,60398],[-10,-4]],[[23515,60394],[-7,-12]],[[23508,60382],[-7,-7]],[[23501,60375],[-35,-94]],[[23466,60281],[-2,-3]],[[23464,60278],[-5,-16]],[[23459,60262],[-4,-6]],[[23455,60256],[-3,-30]],[[23452,60226],[-5,-6]],[[23447,60220],[-8,-62]],[[23439,60158],[-5,-9]],[[23434,60149],[0,-7]],[[23434,60142],[-3,-13]],[[23431,60129],[-20,-12]],[[23411,60117],[-11,3]],[[23400,60120],[-11,22]],[[23389,60142],[-9,3]],[[23380,60145],[-111,75]],[[23269,60220],[-11,3]],[[23258,60223],[-39,26]],[[23219,60249],[-16,7]],[[23203,60256],[-43,12],[-13,39]],[[23147,60307],[-8,4]],[[23139,60311],[0,3]],[[23139,60314],[-12,6]],[[23127,60320],[-3,10]],[[23124,60330],[-11,3]],[[23113,60333],[-39,35]],[[23074,60368],[-11,3]],[[23063,60371],[-19,13]],[[23044,60384],[-12,4]],[[23032,60388],[-50,29]],[[22982,60417],[-14,3]],[[22968,60420],[-41,29]],[[22927,60449],[-5,10]],[[22922,60459],[-1,7]],[[22921,60466],[-8,6]],[[22913,60472],[-11,16]],[[22902,60488],[-11,3]],[[22891,60491],[-23,30]],[[22868,60521],[-3,3]],[[22865,60524],[-8,13]],[[22857,60537],[-16,6]],[[22841,60543],[-25,22]],[[22816,60565],[-14,4]],[[22802,60569],[-15,12]],[[22787,60581],[-10,4]],[[22777,60585],[-3,7]],[[22774,60592],[-8,0]],[[22766,60592],[-10,12]],[[22756,60604],[-7,4]],[[22749,60608],[-45,25]],[[22704,60633],[-14,4]],[[22690,60637],[-39,22]],[[22651,60659],[-8,4]],[[22643,60663],[-29,22]],[[22614,60685],[-15,3]],[[22599,60688],[-45,27]],[[22554,60715],[-14,2]],[[22540,60717],[0,3]],[[22540,60720],[-8,4]],[[22532,60724],[-45,23]],[[22487,60747],[-14,6]],[[22473,60753],[-30,10]],[[22443,60763],[-9,3]],[[22434,60766],[-12,6]],[[22422,60772],[-8,3]],[[22414,60775],[-91,46],[-47,6]],[[22276,60827],[-7,3]],[[22269,60830],[-21,17]],[[22248,60847],[-7,3]],[[22241,60850],[-63,3],[-45,29]],[[22133,60882],[-22,4]],[[22111,60886],[-56,16]],[[22055,60902],[-28,3]],[[22027,60905],[0,3]],[[22027,60908],[-21,3]],[[22006,60911],[-40,-9]],[[21966,60902],[-25,3]],[[21941,60905],[-5,3]],[[21936,60908],[-3,3]],[[21933,60911],[-23,7]],[[21910,60918],[-35,3]],[[21875,60921],[-40,36]],[[21835,60957],[-6,3]],[[21829,60960],[-57,16]],[[21772,60976],[-12,-3]],[[21760,60973],[-2,-7]],[[21758,60966],[-6,-3]],[[21752,60963],[-25,-10]],[[21727,60953],[-33,4]],[[21694,60957],[-28,3]],[[21666,60960],[-28,6]],[[21638,60966],[-36,-3]],[[21602,60963],[-56,-3],[-64,36]],[[21482,60996],[-47,5]],[[21435,61001],[0,4]],[[21435,61005],[-18,3]],[[21417,61008],[-22,7]],[[21395,61015],[-10,-3]],[[21385,61012],[-31,9]],[[21354,61021],[-33,3]],[[21321,61024],[-82,4]],[[21239,61028],[-13,-4]],[[21226,61024],[-42,4]],[[21184,61028],[-50,-4]],[[21134,61024],[-39,20]],[[21095,61044],[-15,3]],[[21080,61047],[0,3]],[[21080,61050],[-10,3]],[[21070,61053],[-28,36],[-62,23],[-8,55]],[[20972,61167],[-16,6]],[[20956,61173],[-28,19]],[[20928,61192],[-11,-3]],[[20917,61189],[-56,6]],[[20861,61195],[-33,4]],[[20828,61199],[-57,-42]],[[20771,61157],[-5,-3]],[[20766,61154],[-53,-42]],[[20713,61112],[-22,-4]],[[20691,61108],[-59,23],[-156,20]],[[20476,61151],[-28,-4]],[[20448,61147],[0,-3]],[[20448,61144],[-13,0]],[[20435,61144],[-112,-13]],[[20323,61131],[-19,-3]],[[20304,61128],[-22,-16]],[[20282,61112],[-5,-4]],[[20277,61108],[-65,-9]],[[20212,61099],[-31,-4]],[[20181,61095],[-8,0]],[[20173,61095],[-16,-3]],[[20157,61092],[-39,-16]],[[20118,61076],[-17,3]],[[20101,61079],[-40,-26]],[[20061,61053],[-10,-3]],[[20051,61050],[-42,-58]],[[20009,60992],[-117,226],[-86,155]],[[19806,61373],[-44,115],[-78,156]],[[19684,61644],[-57,141],[-155,264]],[[19472,62049],[45,101],[47,150]],[[19564,62300],[69,160],[45,212],[41,80]],[[19719,62752],[79,77],[125,63]],[[19923,62892],[192,105]],[[20115,62997],[88,70]],[[20203,63067],[37,61]],[[20240,63128],[36,129]],[[20276,63257],[28,123],[56,134],[30,130],[17,175],[20,103],[66,161],[50,214],[84,224],[16,141],[3,367],[7,144],[21,103],[54,134],[25,88],[41,403]],[[20794,65901],[22,82],[75,118],[-189,194]],[[20702,66295],[-69,47]],[[20633,66342],[-79,34]],[[20554,66376],[-77,58]],[[20477,66434],[-28,73],[14,53],[72,70],[92,42]],[[20627,66672],[0,-26]],[[20627,66646],[0,-6]],[[9916,25670],[9,-3]],[[9925,25667],[-2,-16]],[[9923,25651],[-7,-6]],[[9916,25645],[-22,-3]],[[9894,25642],[0,25]],[[9894,25667],[22,3]],[[10978,25903],[-12,4]],[[10966,25907],[12,-4]],[[9699,25929],[-7,-3]],[[9692,25926],[0,-3]],[[9692,25923],[-11,-7]],[[9681,25916],[-4,23],[22,-10]],[[9268,27179],[0,-9]],[[9268,27170],[-5,-19]],[[9263,27151],[-4,-11]],[[9259,27140],[0,36]],[[9259,27176],[6,3]],[[9265,27179],[3,0]],[[9271,27263],[-3,-3]],[[9268,27260],[-5,-19]],[[9263,27241],[-4,-3]],[[9259,27238],[4,52]],[[9263,27290],[11,3]],[[9274,27293],[-3,-30]],[[6305,27574],[4,-7]],[[6309,27567],[0,-12]],[[6309,27555],[-4,-23]],[[6305,27532],[-2,-7]],[[6303,27525],[-20,3]],[[6283,27528],[22,46]],[[6251,27713],[0,-4]],[[6251,27709],[7,-3]],[[6258,27706],[-5,-61]],[[6253,27645],[-20,3]],[[6233,27648],[6,61]],[[6239,27709],[12,4]],[[9003,27726],[6,-4]],[[9009,27722],[0,-13]],[[9009,27709],[-6,-3]],[[9003,27706],[-16,13]],[[8987,27719],[-6,13]],[[8981,27732],[22,-6]],[[6403,27742],[-3,-33]],[[6400,27709],[-7,-3]],[[6393,27706],[-10,-13]],[[6383,27693],[-8,-3]],[[6375,27690],[-17,0]],[[6358,27690],[-5,13]],[[6353,27703],[-5,26]],[[6348,27729],[10,3]],[[6358,27732],[0,3]],[[6358,27735],[17,-6]],[[6375,27729],[0,3]],[[6375,27732],[15,3]],[[6390,27735],[0,3]],[[6390,27738],[13,4]],[[4426,28859],[14,-41]],[[4440,28818],[4,-10]],[[4444,28808],[0,-4]],[[4444,28804],[0,-12]],[[4444,28792],[-20,3]],[[4424,28795],[-5,3]],[[4419,28798],[-4,33]],[[4415,28831],[-5,25]],[[4410,28856],[0,10]],[[4410,28866],[16,-7]],[[8247,29279],[5,-6]],[[8252,29273],[0,-35]],[[8252,29238],[-5,-4]],[[8247,29234],[-1,7]],[[8246,29241],[-14,3]],[[8232,29244],[0,-3]],[[8232,29241],[-14,-3]],[[8218,29238],[-5,22]],[[8213,29260],[0,3]],[[8213,29263],[34,16]],[[6408,29580],[-5,3]],[[6403,29583],[-3,7]],[[6400,29590],[-7,3]],[[6393,29593],[-14,19]],[[6379,29612],[-14,4]],[[6365,29616],[0,3]],[[6365,29619],[-3,3]],[[6362,29622],[-4,20]],[[6358,29642],[0,3]],[[6358,29645],[4,10]],[[6362,29655],[8,6]],[[6370,29661],[3,6]],[[6373,29667],[6,4]],[[6379,29671],[41,16],[33,-91],[-45,-16]],[[9154,29790],[5,-3]],[[9159,29787],[14,-26]],[[9173,29761],[-19,-3]],[[9154,29758],[-25,-59]],[[9129,29699],[-6,-3]],[[9123,29696],[-3,-9]],[[9120,29687],[-5,-4]],[[9115,29683],[-2,-9]],[[9113,29674],[-9,-3]],[[9104,29671],[-5,12]],[[9099,29683],[-4,13]],[[9095,29696],[0,7]],[[9095,29703],[4,12]],[[9099,29715],[8,17]],[[9107,29732],[6,3]],[[9113,29735],[2,10]],[[9115,29745],[0,3]],[[9115,29748],[-2,6]],[[9113,29754],[0,16]],[[9113,29770],[2,7]],[[9115,29777],[5,4]],[[9120,29781],[4,6]],[[9124,29787],[8,3]],[[9132,29790],[22,0]],[[6521,29842],[4,-75]],[[6525,29767],[-7,-2]],[[6518,29765],[-32,16]],[[6486,29781],[4,3]],[[6490,29784],[19,32]],[[6509,29816],[5,9]],[[6514,29825],[4,20]],[[6518,29845],[3,-3]],[[6379,29893],[-4,4]],[[6375,29897],[-5,16]],[[6370,29913],[0,19]],[[6370,29932],[9,-39]],[[6362,29968],[3,3]],[[6365,29971],[0,4]],[[6365,29975],[5,5]],[[6370,29980],[16,-5],[-13,-23],[-11,16]],[[9160,30048],[14,-45],[-45,-26]],[[9129,29977],[-6,-2]],[[9123,29975],[0,-4]],[[9123,29971],[-10,4]],[[9113,29975],[0,2]],[[9113,29977],[-4,3]],[[9109,29980],[0,30]],[[9109,30010],[4,3]],[[9113,30013],[2,6]],[[9115,30019],[5,4]],[[9120,30023],[4,9]],[[9124,30032],[10,3]],[[9134,30035],[15,17]],[[9149,30052],[11,-4]],[[6506,30081],[8,-3]],[[6514,30078],[4,-16]],[[6518,30062],[0,-4]],[[6518,30058],[0,-23]],[[6518,30035],[0,-9]],[[6518,30026],[0,-7]],[[6518,30019],[0,-6]],[[6518,30013],[0,-13]],[[6518,30000],[3,-6]],[[6521,29994],[-31,-36]],[[6490,29958],[-4,6]],[[6486,29964],[0,104]],[[6486,30068],[4,3]],[[6490,30071],[16,10]],[[6726,30113],[11,-3]],[[6737,30110],[0,-7]],[[6737,30103],[-5,-3]],[[6732,30100],[-16,-3]],[[6716,30097],[-4,6]],[[6712,30103],[0,7]],[[6712,30110],[8,3]],[[6720,30113],[6,0]],[[9001,30168],[11,-3]],[[9012,30165],[9,-29]],[[9021,30136],[-12,-3]],[[9009,30133],[0,-3]],[[9009,30130],[-5,-4]],[[9004,30126],[-17,20]],[[8987,30146],[-5,3]],[[8982,30149],[19,19]],[[9202,30229],[8,-6]],[[9210,30223],[5,-26]],[[9215,30197],[3,-7]],[[9218,30190],[2,-9]],[[9220,30181],[4,-7]],[[9224,30174],[5,-25]],[[9229,30149],[0,-10]],[[9229,30139],[-14,-3]],[[9215,30136],[-11,3]],[[9204,30139],[-23,-3]],[[9181,30136],[-4,13]],[[9177,30149],[0,38]],[[9177,30187],[4,3]],[[9181,30190],[4,30]],[[9185,30220],[5,3]],[[9190,30223],[12,6]],[[9099,30262],[14,-20]],[[9113,30242],[7,-6]],[[9120,30236],[0,-3]],[[9120,30233],[-5,-7]],[[9115,30226],[-28,39]],[[9087,30265],[12,-3]],[[5285,30262],[7,-10]],[[5292,30252],[0,-13]],[[5292,30239],[-5,-3]],[[5287,30236],[-2,26]],[[5896,30340],[0,-27]],[[5896,30313],[-35,0]],[[5861,30313],[-7,4]],[[5854,30317],[-22,10]],[[5832,30327],[-11,6]],[[5821,30333],[-58,87],[117,39],[-11,-52],[27,-67]],[[5749,30400],[-5,-5]],[[5744,30395],[-23,-23]],[[5721,30372],[-6,3]],[[5715,30375],[0,3]],[[5715,30378],[-2,10]],[[5713,30388],[2,51]],[[5715,30439],[4,7]],[[5719,30446],[0,6]],[[5719,30452],[0,7]],[[5719,30459],[0,7]],[[5719,30466],[-4,2]],[[5715,30468],[0,20]],[[5715,30488],[9,3]],[[5724,30491],[42,-39],[-17,-52]],[[10654,30530],[0,-10]],[[10654,30520],[4,-3]],[[10658,30517],[0,-19]],[[10658,30498],[-4,-7]],[[10654,30491],[-21,-36]],[[10633,30455],[-15,4]],[[10618,30459],[4,9]],[[10622,30468],[7,14]],[[10629,30482],[22,61]],[[10651,30543],[3,-13]],[[10240,30608],[-5,2]],[[10235,30610],[5,-2]],[[8976,30695],[5,-3]],[[8981,30692],[1,-7]],[[8982,30685],[14,0]],[[8996,30685],[13,-6]],[[9009,30679],[8,-3]],[[9017,30676],[0,-23]],[[9017,30653],[-5,-10]],[[9012,30643],[-3,-19]],[[9009,30624],[0,-10]],[[9009,30614],[25,-42]],[[9034,30572],[5,-3]],[[9039,30569],[3,-46]],[[9042,30523],[-10,-3]],[[9032,30520],[-43,-22]],[[8989,30498],[-7,-4]],[[8982,30494],[-1,-3]],[[8981,30491],[-5,-3]],[[8976,30488],[-39,-22]],[[8937,30466],[-6,2]],[[8931,30468],[-25,36]],[[8906,30504],[-5,3]],[[8901,30507],[-4,30]],[[8897,30537],[0,2]],[[8897,30539],[4,20]],[[8901,30559],[0,19]],[[8901,30578],[0,7]],[[8901,30585],[5,9]],[[8906,30594],[1,82],[32,12]],[[8939,30688],[4,0]],[[8943,30688],[0,-3]],[[8943,30685],[16,3]],[[8959,30688],[17,7]],[[5655,30704],[3,-3]],[[5658,30701],[10,-39]],[[5668,30662],[-5,-9]],[[5663,30653],[-5,-20]],[[5658,30633],[2,-16]],[[5660,30617],[3,7]],[[5663,30624],[6,-3]],[[5669,30621],[14,-52],[-15,-52]],[[5668,30517],[-16,-3]],[[5652,30514],[-17,-16]],[[5635,30498],[0,-13]],[[5635,30485],[-12,-65]],[[5623,30420],[12,-6]],[[5635,30414],[0,-26]],[[5635,30388],[-6,-7]],[[5629,30381],[-14,-16]],[[5615,30365],[-5,-6]],[[5610,30359],[-3,-13]],[[5607,30346],[-8,-3]],[[5599,30343],[-45,45]],[[5554,30388],[-5,-4]],[[5549,30384],[-4,-9]],[[5545,30375],[-7,-3]],[[5538,30372],[-14,26]],[[5524,30398],[-3,2]],[[5521,30400],[-19,11],[-59,-101]],[[5443,30310],[-16,3]],[[5427,30313],[-15,30]],[[5412,30343],[-6,6]],[[5406,30349],[-3,10]],[[5403,30359],[-7,3]],[[5396,30362],[2,71]],[[5398,30433],[5,3]],[[5403,30436],[0,23]],[[5403,30459],[-5,3]],[[5398,30462],[-22,75]],[[5376,30537],[11,-4]],[[5387,30533],[36,52]],[[5423,30585],[44,-3]],[[5467,30582],[54,45]],[[5521,30627],[3,10]],[[5524,30637],[25,28]],[[5549,30665],[5,4]],[[5554,30669],[0,3]],[[5554,30672],[5,7]],[[5559,30679],[28,16]],[[5587,30695],[12,-3]],[[5599,30692],[56,12]],[[9647,31619],[-9,-3]],[[9638,31616],[9,3]],[[9717,31616],[30,6]],[[9747,31622],[6,-6]],[[9753,31616],[-40,-13],[9,39]],[[9722,31642],[2,-7]],[[9724,31635],[-2,-13]],[[9722,31622],[-5,-6]],[[8422,31754],[5,-3]],[[8427,31751],[22,-48]],[[8449,31703],[6,0]],[[8455,31703],[19,10]],[[8474,31713],[15,-3]],[[8489,31710],[66,-33]],[[8555,31677],[4,-6]],[[8559,31671],[5,-13]],[[8564,31658],[5,-3]],[[8569,31655],[45,-46]],[[8614,31609],[13,-6]],[[8627,31603],[18,-10]],[[8645,31593],[5,-3]],[[8650,31590],[19,-52],[-14,-68],[21,-61],[29,-16]],[[8705,31393],[1,-7]],[[8706,31386],[-30,-39],[-1,-167],[14,-27]],[[8689,31153],[6,-2]],[[8695,31151],[2,-7]],[[8697,31144],[4,-3]],[[8701,31141],[24,-13]],[[8725,31128],[20,-4]],[[8745,31124],[2,7]],[[8747,31131],[18,3]],[[8765,31134],[22,-3]],[[8787,31131],[-1,-10]],[[8786,31121],[-7,-45]],[[8779,31076],[4,-3]],[[8783,31073],[4,-13]],[[8787,31060],[5,-13]],[[8792,31047],[16,-26]],[[8808,31021],[7,-3]],[[8815,31018],[5,-61]],[[8820,30957],[-5,0]],[[8815,30957],[0,-4]],[[8815,30953],[0,-6]],[[8815,30947],[0,-13]],[[8815,30934],[-4,-20]],[[8811,30914],[0,-16]],[[8811,30898],[0,-6]],[[8811,30892],[0,-10]],[[8811,30882],[0,-12]],[[8811,30870],[-19,-36]],[[8792,30834],[-5,-3]],[[8787,30831],[0,-11]],[[8787,30820],[0,-16]],[[8787,30804],[-4,-19]],[[8783,30785],[-4,-16]],[[8779,30769],[-12,-32]],[[8767,30737],[-25,-4]],[[8742,30733],[-131,20],[5,32]],[[8616,30785],[4,10]],[[8620,30795],[3,20]],[[8623,30815],[4,5]],[[8627,30820],[9,30]],[[8636,30850],[5,3]],[[8641,30853],[4,10]],[[8645,30863],[5,3]],[[8650,30866],[0,16]],[[8650,30882],[-5,4]],[[8645,30886],[-1,6]],[[8644,30892],[-8,3]],[[8636,30895],[-5,-16]],[[8631,30879],[-11,3]],[[8620,30882],[-4,0]],[[8616,30882],[-11,4]],[[8605,30886],[-11,6]],[[8594,30892],[-16,3]],[[8578,30895],[-4,7]],[[8574,30902],[-13,3]],[[8561,30905],[-28,42]],[[8533,30947],[-8,-4]],[[8525,30943],[-9,-9]],[[8516,30934],[-3,3]],[[8513,30937],[0,3]],[[8513,30940],[3,3]],[[8516,30943],[0,14]],[[8516,30957],[-28,-4]],[[8488,30953],[-60,-26]],[[8428,30927],[-9,4]],[[8419,30931],[0,3]],[[8419,30934],[-6,3]],[[8413,30937],[-5,6]],[[8408,30943],[-11,4]],[[8397,30947],[-9,13]],[[8388,30960],[-5,3]],[[8383,30963],[-11,65],[6,84],[-14,55]],[[8364,31167],[0,13]],[[8364,31180],[19,119]],[[8383,31299],[0,16]],[[8383,31315],[0,87]],[[8383,31402],[0,10]],[[8383,31412],[14,33]],[[8397,31445],[13,-4]],[[8410,31441],[32,45]],[[8442,31486],[5,10]],[[8447,31496],[-1,13]],[[8446,31509],[-4,7]],[[8442,31516],[-3,83]],[[8439,31599],[16,4]],[[8455,31603],[19,48],[-25,36]],[[8449,31687],[-7,3]],[[8442,31690],[-15,6]],[[8427,31696],[-5,3]],[[8422,31699],[-5,16]],[[8417,31715],[-4,7]],[[8413,31722],[-10,36]],[[8403,31758],[0,6]],[[8403,31764],[19,-10]],[[9410,31706],[16,-23]],[[9426,31683],[4,0]],[[9430,31683],[6,-6]],[[9436,31677],[0,-3]],[[9436,31674],[-4,-13]],[[9432,31661],[0,-3]],[[9432,31658],[4,-3]],[[9436,31655],[4,0]],[[9440,31655],[4,3]],[[9444,31658],[0,-7]],[[9444,31651],[-4,-13]],[[9440,31638],[-4,-6]],[[9436,31632],[0,-4]],[[9436,31628],[0,-35]],[[9436,31593],[-1,3]],[[9435,31596],[-30,36]],[[9405,31632],[-4,3]],[[9401,31635],[-16,29]],[[9385,31664],[-5,3]],[[9380,31667],[-26,65]],[[9354,31732],[0,3]],[[9354,31735],[45,46]],[[9399,31781],[8,3]],[[9407,31784],[-2,-10]],[[9405,31774],[-4,-4]],[[9401,31770],[9,-64]],[[6974,33009],[30,-33]],[[7004,32976],[4,-6]],[[7008,32970],[5,-11]],[[7013,32959],[-14,4]],[[6999,32963],[-30,42]],[[6969,33005],[5,4]],[[6949,33112],[0,-23]],[[6949,33089],[0,-16]],[[6949,33073],[5,-23]],[[6954,33050],[-10,-3]],[[6944,33047],[-32,-6]],[[6912,33041],[-5,-4]],[[6907,33037],[-14,42]],[[6893,33079],[6,3]],[[6899,33082],[14,17]],[[6913,33099],[3,9]],[[6916,33108],[16,10]],[[6932,33118],[17,-6]],[[8644,33260],[6,-3]],[[8650,33257],[-23,-38]],[[8627,33219],[-4,9]],[[8623,33228],[-3,10]],[[8620,33238],[-4,2]],[[8616,33240],[0,23]],[[8616,33263],[4,4]],[[8620,33267],[24,-7]],[[8574,33286],[0,-19]],[[8574,33267],[-13,-4]],[[8561,33263],[0,-3]],[[8561,33260],[-6,-3]],[[8555,33257],[-39,-10]],[[8516,33247],[3,10]],[[8519,33257],[45,33]],[[8564,33290],[10,-4]],[[8499,33577],[14,-36]],[[8513,33541],[6,-6]],[[8519,33535],[42,-68]],[[8561,33467],[14,-3]],[[8575,33464],[23,3]],[[8598,33467],[16,3]],[[8614,33470],[6,-3]],[[8620,33467],[0,-49]],[[8620,33418],[-9,-12]],[[8611,33406],[0,-4]],[[8611,33402],[-6,-12]],[[8605,33390],[-5,3]],[[8600,33393],[-16,3]],[[8584,33396],[0,3]],[[8584,33399],[-9,3]],[[8575,33402],[0,4]],[[8575,33406],[-11,6]],[[8564,33412],[-3,6]],[[8561,33418],[-8,4]],[[8553,33422],[-37,35]],[[8516,33457],[-13,-9]],[[8503,33448],[0,-3]],[[8503,33445],[-9,3]],[[8494,33448],[-11,80],[11,45]],[[8494,33573],[5,4]],[[8499,33732],[4,-13]],[[8503,33719],[0,-3]],[[8503,33716],[-4,-26]],[[8499,33690],[-5,-3]],[[8494,33687],[0,48]],[[8494,33735],[5,-3]],[[8697,33939],[-11,-3]],[[8686,33936],[11,3]],[[9919,35354],[4,-3]],[[9923,35351],[18,-10]],[[9941,35341],[4,-3]],[[9945,35338],[5,-10]],[[9950,35328],[5,-10]],[[9955,35318],[0,-9]],[[9955,35309],[0,-3]],[[9955,35306],[0,-14]],[[9955,35292],[-5,-9]],[[9950,35283],[-5,-29]],[[9945,35254],[-4,-3]],[[9941,35251],[-57,0]],[[9884,35251],[-6,-4]],[[9878,35247],[-20,65]],[[9858,35312],[6,6]],[[9864,35318],[23,20]],[[9887,35338],[13,3]],[[9900,35341],[19,13]],[[9980,35454],[4,7]],[[9984,35461],[-4,-7]],[[11192,35710],[8,2]],[[11200,35712],[-8,-2]],[[9522,35945],[8,-3]],[[9530,35942],[6,-10]],[[9536,35932],[11,-3]],[[9547,35929],[10,-45]],[[9557,35884],[-25,0]],[[9532,35884],[-10,61]],[[9341,36168],[14,-3]],[[9355,36165],[44,-33]],[[9399,36132],[17,7]],[[9416,36139],[10,7]],[[9426,36146],[18,-7]],[[9444,36139],[8,-77]],[[9452,36062],[-12,-3]],[[9440,36059],[-4,-7]],[[9436,36052],[-4,-7]],[[9432,36045],[-41,-45]],[[9391,36000],[-12,4]],[[9379,36004],[-24,38]],[[9355,36042],[-18,-3]],[[9337,36039],[-33,20]],[[9304,36059],[-13,5]],[[9291,36064],[25,27]],[[9316,36091],[8,3]],[[9324,36094],[5,36]],[[9329,36130],[4,2]],[[9333,36132],[-39,52]],[[9294,36184],[10,3]],[[9304,36187],[37,-19]],[[9227,37160],[7,-3]],[[9234,37157],[0,-7]],[[9234,37150],[-7,-3]],[[9227,37147],[-3,-10]],[[9224,37137],[-4,-6]],[[9220,37131],[0,-26]],[[9220,37105],[-5,-7]],[[9215,37098],[-5,-16]],[[9210,37082],[-4,-25]],[[9206,37057],[-2,-26]],[[9204,37031],[6,-13]],[[9210,37018],[0,-10]],[[9210,37008],[-4,-6]],[[9206,37002],[-38,-4]],[[9168,36998],[0,17]],[[9168,37015],[0,10]],[[9168,37025],[-5,6]],[[9163,37031],[0,6]],[[9163,37037],[5,7]],[[9168,37044],[9,29]],[[9177,37073],[4,13]],[[9181,37086],[0,29]],[[9181,37115],[0,16]],[[9181,37131],[4,13]],[[9185,37144],[5,3]],[[9190,37147],[37,13]],[[9129,37073],[0,-10]],[[9129,37063],[0,-6]],[[9129,37057],[-6,-4]],[[9123,37053],[-3,-9]],[[9120,37044],[-13,-10]],[[9107,37034],[-8,45]],[[9099,37079],[0,23]],[[9099,37102],[4,16]],[[9103,37118],[-8,3]],[[9095,37121],[-3,43]],[[9092,37164],[7,2]],[[9099,37166],[0,-2]],[[9099,37164],[21,2]],[[9120,37166],[23,-64],[-14,-29]],[[14699,39032],[56,-132],[82,-156],[47,-114]],[[14884,38630],[70,-159]],[[14954,38471],[16,-70],[14,-223],[-5,-914]],[[14979,37264],[-123,-136],[-56,-11]],[[14800,37117],[-103,-47]],[[14697,37070],[-64,-57],[-92,-115]],[[14541,36898],[-28,-51]],[[14513,36847],[-77,-158]],[[14436,36689],[-39,-40],[-71,-42],[-138,-30],[-103,-46],[-123,-123],[-69,-134],[-15,-92]],[[13878,36182],[-111,-33],[-73,-35]],[[13694,36114],[-103,-48],[-191,-53]],[[13400,36013],[-176,-80],[-97,-16],[-301,-10],[-159,-28],[-178,-79],[-98,-17]],[[12391,35783],[-158,-11],[-47,-104]],[[12186,35668],[-48,-149],[-67,-161]],[[12071,35358],[-22,-102],[-17,-176],[-30,-129],[-62,-165],[-36,-221],[-25,-94]],[[11879,34471],[218,-57],[80,-30]],[[12177,34384],[118,-69],[105,-48]],[[12400,34267],[240,-136],[63,-56],[45,-74],[19,-67],[18,-208],[28,-130],[44,-107],[30,-130],[15,-176],[32,-130],[43,-106]],[[12977,32947],[30,-129],[17,-176]],[[13024,32642],[31,-130],[46,-106],[32,-154],[11,-196]],[[13144,32056],[91,45],[136,54]],[[13371,32155],[140,76]],[[13511,32231],[108,13]],[[13619,32244],[71,-24]],[[13690,32220],[35,-35]],[[13725,32185],[23,-66]],[[13748,32119],[275,2],[148,-13],[81,-27],[120,-64],[166,-42],[81,-35],[140,-125],[523,-588],[136,-134]],[[15418,31093],[153,-87]],[[15571,31006],[142,-82],[172,-56]],[[15885,30868],[168,-71],[148,-30],[192,-8],[156,-21],[163,-54]],[[16712,30684],[148,-61],[114,-74],[65,-97],[63,-134],[120,-169]],[[17222,30149],[58,-104]],[[17280,30045],[32,-86]],[[17312,29959],[78,-156],[44,-115]],[[17434,29688],[117,-207]],[[17551,29481],[162,-142],[47,-33]],[[17760,29306],[53,-23]],[[17813,29283],[145,-7],[57,18]],[[18015,29294],[120,94],[173,186]],[[18308,29574],[117,102],[77,27]],[[18502,29703],[142,83],[103,52],[132,109]],[[18879,29947],[134,101]],[[19013,30048],[63,22]],[[19076,30070],[201,17],[584,2]],[[19861,30089],[165,-13]],[[20026,30076],[91,-40]],[[20117,30036],[86,-106],[20,-59],[58,-240]],[[20281,29631],[78,-64],[99,-52],[141,-89],[103,-48],[118,-71],[189,-66],[100,-41]],[[21109,29200],[56,-51]],[[21165,29149],[181,-28]],[[21346,29121],[110,-33],[121,-61],[60,-17],[124,-12]],[[21761,28998],[317,-10]],[[22078,28988],[116,-31],[120,-62],[165,-42],[108,-52],[70,-64]],[[22657,28737],[63,-74],[51,-82]],[[22771,28581],[114,-275]],[[22885,28306],[14,-62],[22,-226],[17,-94]],[[22938,27924],[66,-161],[54,-246],[72,-158],[44,-115],[76,-156],[47,-114],[70,-106],[63,-73]],[[23430,26795],[134,-130]],[[13046,24155],[-5,10]],[[13041,24165],[0,9]],[[13041,24174],[5,20]],[[13046,24194],[25,6]],[[13071,24200],[9,75]],[[13080,24275],[-8,6]],[[13072,24281],[-1,7]],[[13071,24288],[0,3]],[[13071,24291],[0,3]],[[13071,24294],[-5,3]],[[13066,24297],[-4,7]],[[13062,24304],[-5,0]],[[13057,24304],[-6,-4]],[[13051,24300],[-5,-3]],[[13046,24297],[-3,-3]],[[13043,24294],[-13,3]],[[13030,24297],[0,3]],[[13030,24300],[-14,-3]],[[13016,24297],[-26,87]],[[12990,24384],[0,7]],[[12990,24391],[33,68]],[[13023,24459],[4,7]],[[13027,24466],[24,35],[56,-3],[15,48],[-9,94]],[[13113,24640],[0,25]],[[13113,24665],[-12,91]],[[13101,24756],[-4,7]],[[13097,24763],[-17,61]],[[13080,24824],[0,3]],[[13080,24827],[0,7]],[[13080,24834],[-4,3]],[[13076,24837],[-5,10]],[[13071,24847],[-8,3]],[[13063,24850],[-26,25]],[[13037,24875],[-7,4]],[[13030,24879],[-3,7]],[[13027,24886],[-4,3]],[[13023,24889],[-32,77]],[[12991,24966],[-6,3]],[[12985,24969],[-25,97]],[[12960,25066],[-5,3]],[[12955,25069],[-51,98],[-48,16]],[[12856,25183],[-10,-4]],[[12846,25179],[0,-3]],[[12846,25176],[-4,-3]],[[12842,25173],[-21,53]],[[12821,25226],[-17,12]],[[12804,25238],[-23,-7]],[[12781,25231],[-25,-16]],[[12756,25215],[-2,-4]],[[12754,25211],[-89,56]],[[12665,25267],[-28,9]],[[12637,25276],[-94,33]],[[12543,25309],[-4,-20]],[[12539,25289],[0,-3]],[[12539,25286],[-6,-3]],[[12533,25283],[-21,-13]],[[12512,25270],[-6,3]],[[12506,25273],[-8,10]],[[12498,25283],[-6,3]],[[12492,25286],[-64,-7]],[[12428,25279],[-5,4]],[[12423,25283],[-48,0],[-33,-49],[-36,4]],[[12306,25238],[-14,3]],[[12292,25241],[-62,-62],[-80,36]],[[12150,25215],[-15,-4]],[[12135,25211],[-14,36]],[[12121,25247],[-13,-3]],[[12108,25244],[-30,-6]],[[12078,25238],[-9,-4]],[[12069,25234],[-23,-26]],[[12046,25208],[-11,3]],[[12035,25211],[-7,0]],[[12028,25211],[-4,4]],[[12024,25215],[-3,10]],[[12021,25225],[-3,6]],[[12018,25231],[-18,39],[-51,-13],[-22,42]],[[11927,25299],[-8,7]],[[11919,25306],[-4,6]],[[11915,25312],[-11,3]],[[11904,25315],[-10,10]],[[11894,25325],[-26,3]],[[11868,25328],[-6,3]],[[11862,25331],[-18,0]],[[11844,25331],[-28,36]],[[11816,25367],[-9,3]],[[11807,25370],[-39,42],[0,52]],[[11768,25464],[-6,3]],[[11762,25467],[-50,52],[-16,41],[-40,27]],[[11656,25587],[-13,3]],[[11643,25590],[-65,6]],[[11578,25596],[-8,-6]],[[11570,25590],[-28,-16]],[[11542,25574],[-7,6]],[[11535,25580],[-23,-3]],[[11512,25577],[-3,3]],[[11509,25580],[-69,48]],[[11440,25628],[11,3]],[[11451,25631],[0,7]],[[11451,25638],[-5,4]],[[11446,25642],[-7,25]],[[11439,25667],[15,3]],[[11454,25670],[-3,36]],[[11451,25706],[-5,13]],[[11446,25719],[-15,42]],[[11431,25761],[-5,7]],[[11426,25768],[-33,51]],[[11393,25819],[-4,3]],[[11389,25822],[-5,14]],[[11384,25836],[-9,3]],[[11375,25839],[-5,-10]],[[11370,25829],[-11,-4]],[[11359,25825],[-19,43]],[[11340,25868],[-4,3]],[[11336,25871],[-18,36]],[[11318,25907],[-4,2]],[[11314,25909],[-31,49]],[[11283,25958],[-8,3]],[[11275,25961],[-33,30]],[[11242,25991],[-14,3]],[[11228,25994],[-30,16]],[[11198,26010],[-6,3]],[[11192,26013],[-28,6]],[[11164,26019],[-11,4]],[[11153,26023],[-125,9]],[[11028,26032],[-25,3]],[[11003,26035],[-28,20]],[[10975,26055],[-9,3]],[[10966,26058],[-8,10]],[[10958,26068],[-8,3]],[[10950,26071],[-58,58]],[[10892,26129],[-1,7]],[[10891,26136],[-36,22]],[[10855,26158],[-9,4]],[[10846,26162],[-16,19]],[[10830,26181],[-8,13]],[[10822,26194],[-11,23]],[[10811,26217],[-22,6]],[[10789,26223],[-3,6]],[[10786,26229],[-4,4]],[[10782,26233],[-28,19]],[[10754,26252],[-19,4]],[[10735,26256],[-2,5]],[[10733,26261],[-23,7]],[[10710,26268],[-88,4],[-17,-43]],[[10605,26229],[-15,7]],[[10590,26236],[-27,45],[-45,0]],[[10518,26281],[-11,-3]],[[10507,26278],[-37,3]],[[10470,26281],[-13,-3]],[[10457,26278],[-14,0]],[[10443,26278],[-16,-10]],[[10427,26268],[-20,0]],[[10407,26268],[-23,-3]],[[10384,26265],[-11,-4]],[[10373,26261],[-80,-35]],[[10293,26226],[-11,-3]],[[10282,26223],[-75,-29]],[[10207,26194],[-4,-4]],[[10203,26190],[-2,-6]],[[10201,26184],[-22,-3]],[[10179,26181],[-39,-16]],[[10140,26165],[-14,-3]],[[10126,26162],[-36,-20]],[[10090,26142],[-6,-3]],[[10084,26139],[-48,-22]],[[10036,26117],[-5,-4]],[[10031,26113],[-22,-23]],[[10009,26090],[-8,-3]],[[10001,26087],[-17,-25]],[[9984,26062],[-1,-4]],[[9983,26058],[-2,-3]],[[9981,26055],[-11,-9]],[[9970,26046],[-9,-4]],[[9961,26042],[-6,-16]],[[9955,26026],[-7,-3]],[[9948,26023],[-25,-23]],[[9923,26000],[-4,-6]],[[9919,25994],[0,-3]],[[9919,25991],[3,-4]],[[9922,25987],[-28,-116]],[[9894,25871],[-5,-3]],[[9889,25868],[-5,-10]],[[9884,25858],[-9,-3]],[[9875,25855],[-16,-26]],[[9859,25829],[5,-7]],[[9864,25822],[0,-22]],[[9864,25800],[-5,-3]],[[9859,25797],[-17,-13]],[[9842,25784],[-4,-3]],[[9838,25781],[-5,-17]],[[9833,25764],[-5,-3]],[[9828,25761],[-5,-13]],[[9823,25748],[-18,3]],[[9805,25751],[-25,-13]],[[9780,25738],[-13,-3]],[[9767,25735],[7,33]],[[9774,25768],[-10,6]],[[9764,25774],[0,7]],[[9764,25781],[0,12]],[[9764,25793],[13,23]],[[9777,25816],[3,3]],[[9780,25819],[-3,52]],[[9777,25871],[-30,3]],[[9747,25874],[-41,61],[-4,65]],[[9702,26000],[-8,3]],[[9694,26003],[0,4]],[[9694,26007],[-2,16]],[[9692,26023],[-1,12]],[[9691,26035],[-5,4]],[[9686,26039],[5,35]],[[9691,26074],[-5,10]],[[9686,26084],[-17,36]],[[9669,26120],[-6,9]],[[9663,26129],[-2,20]],[[9661,26149],[-4,3]],[[9657,26152],[-16,36]],[[9641,26188],[-9,2]],[[9632,26190],[-15,11]],[[9617,26201],[-4,16]],[[9613,26217],[-5,19]],[[9608,26236],[-5,4]],[[9603,26240],[0,51]],[[9603,26291],[0,9]],[[9603,26300],[10,43]],[[9613,26343],[4,3]],[[9617,26346],[25,22],[4,103],[-13,43]],[[9633,26514],[5,3]],[[9638,26517],[3,91]],[[9641,26608],[-3,3]],[[9638,26611],[-21,45]],[[9617,26656],[-4,4]],[[9613,26660],[-5,16]],[[9608,26676],[-5,3]],[[9603,26679],[-7,16]],[[9596,26695],[-8,3]],[[9588,26698],[-13,45]],[[9575,26743],[5,4]],[[9580,26747],[0,3]],[[9580,26750],[-5,6]],[[9575,26756],[-34,62]],[[9541,26818],[-5,6]],[[9536,26824],[-9,16]],[[9527,26840],[-9,3]],[[9518,26843],[18,75]],[[9536,26918],[0,6]],[[9536,26924],[-36,13],[-23,77]],[[9477,27014],[-8,4]],[[9469,27018],[-33,13]],[[9436,27031],[-4,3]],[[9432,27034],[-17,10]],[[9415,27044],[-8,3]],[[9407,27047],[0,3]],[[9407,27050],[-6,10]],[[9401,27060],[26,135]],[[9427,27195],[9,4]],[[9436,27199],[0,26]],[[9436,27225],[-4,16]],[[9432,27241],[-16,22]],[[9416,27263],[-9,4]],[[9407,27267],[-102,67]],[[9305,27334],[-9,7]],[[9296,27341],[-31,48]],[[9265,27389],[-11,4]],[[9254,27393],[-11,9]],[[9243,27402],[-6,3]],[[9237,27405],[-19,7]],[[9218,27412],[-19,3]],[[9199,27415],[-15,-3]],[[9184,27412],[-11,-3]],[[9173,27409],[-5,-16]],[[9168,27393],[-5,-7]],[[9163,27386],[-34,-52]],[[9129,27334],[-5,-6]],[[9124,27328],[-1,-19]],[[9123,27309],[-16,-3]],[[9107,27306],[-37,22]],[[9070,27328],[-11,-3]],[[9059,27325],[-11,-23]],[[9048,27302],[-5,-7]],[[9043,27295],[-22,130]],[[9021,27425],[-12,3]],[[9009,27428],[-22,-6]],[[8987,27422],[-5,3]],[[8982,27425],[-1,7]],[[8981,27432],[-5,3]],[[8976,27435],[16,25],[6,166],[19,32]],[[9017,27658],[-5,9]],[[9012,27667],[0,30]],[[9012,27697],[6,-4]],[[9018,27693],[46,6]],[[9064,27699],[4,-2]],[[9068,27697],[5,-7]],[[9073,27690],[5,-3]],[[9078,27687],[15,-52]],[[9093,27635],[6,7]],[[9099,27642],[0,6]],[[9099,27648],[-4,19]],[[9095,27667],[0,3]],[[9095,27670],[8,4]],[[9103,27674],[49,32],[-28,32]],[[9124,27738],[-9,4]],[[9115,27742],[-16,-7]],[[9099,27735],[-4,7]],[[9095,27742],[-25,16]],[[9070,27758],[-6,-4]],[[9064,27754],[-16,13]],[[9048,27767],[-5,3]],[[9043,27770],[-26,23]],[[9017,27793],[-5,4]],[[9012,27797],[-3,12]],[[9009,27809],[0,10]],[[9009,27819],[-31,55]],[[8978,27874],[-2,3]],[[8976,27877],[-14,42]],[[8962,27919],[-9,-3]],[[8953,27916],[-7,-13]],[[8946,27903],[-7,-3]],[[8939,27900],[-27,26]],[[8912,27926],[-11,3]],[[8901,27929],[-4,7]],[[8897,27936],[-5,3]],[[8892,27939],[-2,29]],[[8890,27968],[7,3]],[[8897,27971],[0,4]],[[8897,27975],[-7,3]],[[8890,27978],[-20,9]],[[8870,27987],[-5,0]],[[8865,27987],[-18,0]],[[8847,27987],[-7,-3]],[[8840,27984],[-40,-52],[-8,-64],[-61,25]],[[8731,27893],[-5,4]],[[8726,27897],[-15,0]],[[8711,27897],[-5,-10]],[[8706,27887],[-9,-39]],[[8697,27848],[9,-3]],[[8706,27845],[0,-3]],[[8706,27842],[5,-6]],[[8711,27836],[0,-4]],[[8711,27832],[-5,-7]],[[8706,27825],[-11,-16]],[[8695,27809],[-20,-3]],[[8675,27806],[-45,16]],[[8630,27822],[-16,-3]],[[8614,27819],[-25,36]],[[8589,27855],[-5,-7]],[[8584,27848],[-3,-10]],[[8581,27838],[-3,-2]],[[8578,27836],[-19,12]],[[8559,27848],[-4,4]],[[8555,27852],[-21,-10]],[[8534,27842],[-9,-4]],[[8525,27838],[-12,10]],[[8513,27848],[-21,4]],[[8492,27852],[-45,-46]],[[8447,27806],[-9,3]],[[8438,27809],[-11,20]],[[8427,27829],[-14,3]],[[8413,27832],[-10,20]],[[8403,27852],[-9,3]],[[8394,27855],[-11,-30]],[[8383,27825],[0,-9]],[[8383,27816],[-23,-26]],[[8360,27790],[-11,-3]],[[8349,27787],[-45,-29]],[[8304,27758],[-5,3]],[[8299,27761],[8,64],[-24,30]],[[8283,27855],[-9,3]],[[8274,27858],[-61,-77]],[[8213,27781],[-5,3]],[[8208,27784],[-15,22]],[[8193,27806],[-5,3]],[[8188,27809],[-26,-3]],[[8162,27806],[-10,-3]],[[8152,27803],[-42,33]],[[8110,27836],[-17,6]],[[8093,27842],[-13,-26]],[[8080,27816],[-7,-3]],[[8073,27813],[0,-4]],[[8073,27809],[-7,4]],[[8066,27813],[-15,25]],[[8051,27838],[-7,7]],[[8044,27845],[-24,-75]],[[8020,27770],[-5,-3]],[[8015,27767],[-10,-13]],[[8005,27754],[-24,-3]],[[7981,27751],[-5,-3]],[[7976,27748],[-5,3]],[[7971,27751],[-25,10],[-25,32],[-11,10],[-9,3]],[[7901,27806],[8,-3]],[[7909,27803],[1,-16],[7,-6]],[[7917,27781],[4,-7]],[[7921,27774],[3,-16]],[[7924,27758],[5,-4]],[[7929,27754],[0,-19]],[[7929,27735],[-5,-3]],[[7924,27732],[-3,-6]],[[7921,27726],[-4,-4]],[[7917,27722],[-21,-16]],[[7896,27706],[-3,0]],[[7893,27706],[-33,-23],[-4,-80]],[[7856,27603],[-5,-4]],[[7851,27599],[0,-35]],[[7851,27564],[5,-4]],[[7856,27560],[4,-83],[21,-62]],[[7881,27415],[-2,0]],[[7879,27415],[-19,-58],[19,-32],[-31,-100]],[[7848,27225],[-5,-7]],[[7843,27218],[-19,-126]],[[7824,27092],[-4,-3]],[[7820,27089],[-11,-68],[-44,-23]],[[7765,26998],[-20,-3]],[[7745,26995],[-28,13]],[[7717,27008],[-17,-3]],[[7700,27005],[-25,32]],[[7675,27037],[-3,0]],[[7672,27037],[-19,10]],[[7653,27047],[-5,6]],[[7648,27053],[0,-48]],[[7648,27005],[5,-3]],[[7653,27002],[9,-13]],[[7662,26989],[5,-4]],[[7667,26985],[31,-6]],[[7698,26979],[8,3]],[[7706,26982],[8,-29]],[[7714,26953],[-3,0]],[[7711,26953],[-7,-12]],[[7704,26941],[0,-11]],[[7704,26930],[0,-9]],[[7704,26921],[-4,-10]],[[7700,26911],[0,-36]],[[7700,26875],[4,-5]],[[7704,26870],[3,-59]],[[7707,26811],[7,-3]],[[7714,26808],[18,-65],[-18,-74]],[[7714,26669],[-5,-7]],[[7709,26662],[-5,-9]],[[7704,26653],[-4,-7]],[[7700,26646],[-47,-42]],[[7653,26604],[-5,-3]],[[7648,26601],[-45,32]],[[7603,26633],[-6,7]],[[7597,26640],[-25,-16]],[[7572,26624],[-5,-7]],[[7567,26617],[-28,-19]],[[7539,26598],[-6,3]],[[7533,26601],[-52,48]],[[7481,26649],[-5,4]],[[7476,26653],[-15,23]],[[7461,26676],[-8,9]],[[7453,26685],[0,13]],[[7453,26698],[5,6]],[[7458,26704],[23,49]],[[7481,26753],[-5,3]],[[7476,26756],[0,55]],[[7476,26811],[0,26]],[[7476,26837],[0,16]],[[7476,26853],[0,6]],[[7476,26859],[-18,16]],[[7458,26875],[-5,17]],[[7453,26892],[-3,16]],[[7450,26908],[-5,10]],[[7445,26918],[-9,23]],[[7436,26941],[-5,16]],[[7431,26957],[-3,9]],[[7428,26966],[-3,7]],[[7425,26973],[-3,12]],[[7422,26985],[-10,4]],[[7412,26989],[-10,16]],[[7402,27005],[-10,7]],[[7392,27012],[-1,9]],[[7391,27021],[-7,3]],[[7384,27024],[-45,45]],[[7339,27069],[-5,4]],[[7334,27073],[-23,-10]],[[7311,27063],[5,-6]],[[7316,27057],[0,-4]],[[7316,27053],[11,-3]],[[7327,27050],[7,-22]],[[7334,27028],[5,-4]],[[7339,27024],[-5,-58]],[[7334,26966],[5,-3]],[[7339,26963],[0,-10]],[[7339,26953],[0,-10]],[[7339,26943],[-1,-29]],[[7338,26914],[-4,-6]],[[7334,26908],[-3,-16]],[[7331,26892],[8,-3]],[[7339,26889],[0,-26]],[[7339,26863],[-5,-4]],[[7334,26859],[-7,-19]],[[7327,26840],[-7,-6]],[[7320,26834],[-3,-36]],[[7317,26798],[-6,-3]],[[7311,26795],[-25,-29]],[[7286,26766],[-22,-3]],[[7264,26763],[-50,48]],[[7214,26811],[-11,-3]],[[7203,26808],[-59,-6]],[[7144,26802],[-5,2]],[[7139,26804],[0,14]],[[7139,26818],[5,3]],[[7144,26821],[-9,65]],[[7135,26886],[0,12]],[[7135,26898],[0,4]],[[7135,26902],[-11,3]],[[7124,26905],[-16,-10]],[[7108,26895],[-9,0]],[[7099,26895],[-45,-16]],[[7054,26879],[-10,3]],[[7044,26882],[-14,107]],[[7030,26989],[3,9]],[[7033,26998],[-15,26]],[[7018,27024],[-14,4]],[[7004,27028],[-35,19]],[[6969,27047],[-4,3]],[[6965,27050],[4,133]],[[6969,27183],[0,9]],[[6969,27192],[0,3]],[[6969,27195],[-4,4]],[[6965,27199],[-16,52]],[[6949,27251],[-5,3]],[[6944,27254],[0,3]],[[6944,27257],[-15,3]],[[6929,27260],[-17,33]],[[6912,27293],[-8,6]],[[6904,27299],[-6,13]],[[6898,27312],[-5,10]],[[6893,27322],[0,39]],[[6893,27361],[5,3]],[[6898,27364],[39,6]],[[6937,27370],[4,-4]],[[6941,27366],[3,-16]],[[6944,27350],[5,-19]],[[6949,27331],[8,58]],[[6957,27389],[-3,0]],[[6954,27389],[-5,13]],[[6949,27402],[-5,3]],[[6944,27405],[-1,7]],[[6943,27412],[-6,3]],[[6937,27415],[0,71]],[[6937,27486],[4,10]],[[6941,27496],[3,10]],[[6944,27506],[8,3]],[[6952,27509],[0,29]],[[6952,27538],[-8,3]],[[6944,27541],[-28,-6]],[[6916,27535],[-3,-7]],[[6913,27528],[-1,-6]],[[6912,27522],[-5,-6]],[[6907,27516],[-19,-27]],[[6888,27489],[-6,-3]],[[6882,27486],[-24,-32]],[[6858,27454],[-4,-3]],[[6854,27451],[-31,-3],[-16,64]],[[6807,27512],[-9,16]],[[6798,27528],[0,-3]],[[6798,27525],[-5,-16]],[[6793,27509],[-6,-13]],[[6787,27496],[-7,-10]],[[6780,27486],[-43,23]],[[6737,27509],[-16,3]],[[6721,27512],[-31,16],[0,52],[37,39],[-26,58],[-34,-49]],[[6667,27628],[-18,0]],[[6649,27628],[-14,-9]],[[6635,27619],[-18,-4]],[[6617,27615],[-72,-3],[-20,36]],[[6525,27648],[-7,10]],[[6518,27658],[-75,9],[22,51]],[[6465,27718],[-4,72],[-61,-36]],[[6400,27754],[0,11]],[[6400,27765],[0,2]],[[6400,27767],[0,17]],[[6400,27784],[0,25]],[[6400,27809],[-5,7]],[[6395,27816],[0,6]],[[6395,27822],[0,3]],[[6395,27825],[-83,36]],[[6312,27861],[-7,3]],[[6305,27864],[9,39]],[[6314,27903],[6,4]],[[6320,27907],[0,38],[-76,16]],[[6244,27961],[-7,7]],[[6237,27968],[-50,16]],[[6187,27984],[-20,0]],[[6167,27984],[-20,-4]],[[6147,27980],[-5,-2]],[[6142,27978],[11,-52],[49,-84]],[[6202,27842],[6,-4]],[[6208,27838],[20,-51],[-2,-61],[-49,16]],[[6177,27742],[-5,3]],[[6172,27745],[-5,6]],[[6167,27751],[-3,7]],[[6164,27758],[-8,23],[-93,83]],[[6063,27864],[-5,10]],[[6058,27874],[-38,33]],[[6020,27907],[-7,2]],[[6013,27909],[-32,14]],[[5981,27923],[-4,3]],[[5977,27926],[-5,6]],[[5972,27932],[-8,4]],[[5964,27936],[-12,12]],[[5952,27948],[-5,4]],[[5947,27952],[-1,6]],[[5946,27958],[-10,3]],[[5936,27961],[-40,74]],[[5896,28035],[4,4]],[[5900,28039],[0,74]],[[5900,28113],[-4,26]],[[5896,28139],[0,19]],[[5896,28158],[6,7]],[[5902,28165],[37,42]],[[5939,28207],[7,3]],[[5946,28210],[0,3]],[[5946,28213],[11,-3]],[[5957,28210],[4,-6]],[[5961,28204],[11,-3]],[[5972,28201],[9,3]],[[5981,28204],[-4,3]],[[5977,28207],[14,19],[-10,110]],[[5981,28336],[-4,3]],[[5977,28339],[-70,97],[-88,-16]],[[5819,28420],[13,-3]],[[5832,28417],[3,-10]],[[5835,28407],[0,-7]],[[5835,28400],[0,-5]],[[5835,28395],[15,-7]],[[5850,28388],[7,-10]],[[5857,28378],[4,-3]],[[5861,28375],[3,-110]],[[5864,28265],[-7,-6]],[[5857,28259],[-3,6]],[[5854,28265],[-8,0]],[[5846,28265],[-31,-16],[-55,-107]],[[5760,28142],[-6,-3]],[[5754,28139],[-5,-12]],[[5749,28127],[-5,-4]],[[5744,28123],[-25,-49]],[[5719,28074],[-4,-3]],[[5715,28071],[-46,-3]],[[5669,28068],[-6,3]],[[5663,28071],[-28,-9]],[[5635,28062],[-3,3]],[[5632,28065],[-70,0]],[[5562,28065],[-14,-7]],[[5548,28058],[-35,4],[-62,-36],[-39,39]],[[5412,28065],[-5,6]],[[5407,28071],[-19,10]],[[5388,28081],[-28,0]],[[5360,28081],[-29,36]],[[5331,28117],[-5,2]],[[5326,28119],[-25,27]],[[5301,28146],[-14,3]],[[5287,28149],[-65,45],[-13,84]],[[5209,28278],[-17,-3]],[[5192,28275],[-13,32]],[[5179,28307],[0,16]],[[5179,28323],[2,23]],[[5181,28346],[8,3]],[[5189,28349],[0,16]],[[5189,28365],[-5,7]],[[5184,28372],[-5,9]],[[5179,28381],[-4,3]],[[5175,28384],[-56,33]],[[5119,28417],[-5,-3]],[[5114,28414],[-14,25]],[[5100,28439],[-6,-3]],[[5094,28436],[-54,52]],[[5040,28488],[-17,3]],[[5023,28491],[-68,26]],[[4955,28517],[-5,6]],[[4950,28523],[-101,4],[-60,-13]],[[4789,28514],[-20,-4]],[[4769,28510],[-45,-6],[-52,-38]],[[4672,28466],[-9,3]],[[4663,28469],[-53,29],[-10,39]],[[4600,28537],[0,22]],[[4600,28559],[0,3]],[[4600,28562],[0,4]],[[4600,28566],[0,12]],[[4600,28578],[0,23]],[[4600,28601],[16,9],[2,188],[14,23]],[[4632,28821],[15,-3]],[[4647,28818],[19,0]],[[4666,28818],[5,9]],[[4671,28827],[71,-107]],[[4742,28720],[19,-3]],[[4761,28717],[16,-3]],[[4777,28714],[6,3]],[[4783,28717],[3,7]],[[4786,28724],[6,7]],[[4792,28731],[25,12]],[[4817,28743],[11,-3]],[[4828,28740],[66,29]],[[4894,28769],[15,3]],[[4909,28772],[61,26]],[[4970,28798],[5,3]],[[4975,28801],[5,14]],[[4980,28815],[4,9]],[[4984,28824],[25,48]],[[5009,28872],[5,7]],[[5014,28879],[9,26]],[[5023,28905],[0,6]],[[5023,28911],[-9,49]],[[5014,28960],[-5,6]],[[5009,28966],[-14,149],[14,42]],[[5009,29157],[7,10]],[[5016,29167],[0,3]],[[5016,29170],[14,3]],[[5030,29173],[31,-81]],[[5061,29092],[4,4]],[[5065,29096],[49,51]],[[5114,29147],[6,4]],[[5120,29151],[14,9]],[[5134,29160],[9,3]],[[5143,29163],[38,-35]],[[5181,29128],[8,3]],[[5189,29131],[0,6]],[[5189,29137],[-8,7]],[[5181,29144],[-41,64]],[[5140,29208],[-4,4]],[[5136,29212],[-10,12]],[[5126,29224],[-4,10]],[[5122,29234],[-3,26]],[[5119,29260],[-5,7]],[[5114,29267],[-16,51]],[[5098,29318],[-4,10]],[[5094,29328],[-49,52],[-17,97]],[[5028,29477],[-5,9]],[[5023,29486],[0,3]],[[5023,29489],[5,7]],[[5028,29496],[8,187],[-8,65]],[[5028,29748],[0,6]],[[5028,29754],[31,-55]],[[5059,29699],[6,-3]],[[5065,29696],[0,-3]],[[5065,29693],[4,-3]],[[5069,29690],[4,-19]],[[5073,29671],[6,-4]],[[5079,29667],[30,-48]],[[5109,29619],[11,-3]],[[5120,29616],[16,-20]],[[5136,29596],[0,-3]],[[5136,29593],[0,-3]],[[5136,29590],[4,-7]],[[5140,29583],[0,-23]],[[5140,29560],[0,-3]],[[5140,29557],[49,-25],[-2,77]],[[5187,29609],[2,13]],[[5189,29622],[0,3]],[[5189,29625],[-5,3]],[[5184,29628],[16,10]],[[5200,29638],[9,7]],[[5209,29645],[45,65],[-12,55],[45,12]],[[5287,29777],[5,-3]],[[5292,29774],[0,3]],[[5292,29777],[8,-16]],[[5300,29761],[-5,-35]],[[5295,29726],[0,-20]],[[5295,29706],[-8,-51]],[[5287,29655],[-2,-10]],[[5285,29645],[32,-26]],[[5317,29619],[4,-3]],[[5321,29616],[0,-7]],[[5321,29609],[-3,-13]],[[5318,29596],[38,-58]],[[5356,29538],[4,-3]],[[5360,29535],[0,-7]],[[5360,29528],[5,-3]],[[5365,29525],[0,-9]],[[5365,29516],[3,-7]],[[5368,29509],[0,-4]],[[5368,29505],[-22,-16]],[[5346,29489],[-15,-57]],[[5331,29432],[-8,2]],[[5323,29434],[0,4]],[[5323,29438],[-6,3]],[[5317,29441],[-17,-9]],[[5300,29432],[-5,-4]],[[5295,29428],[0,-3]],[[5295,29425],[6,-7]],[[5301,29418],[14,-54],[-20,-39]],[[5295,29325],[6,-3]],[[5301,29322],[16,-68]],[[5317,29254],[6,-13]],[[5323,29241],[0,-3]],[[5323,29238],[9,-4]],[[5332,29234],[28,-26]],[[5360,29208],[8,-6]],[[5368,29202],[8,-13]],[[5376,29189],[36,-3]],[[5412,29186],[15,-10]],[[5427,29176],[10,-3]],[[5437,29173],[59,10],[8,84],[28,23],[17,-191]],[[5549,29099],[13,-7]],[[5562,29092],[37,-39],[61,-3],[8,-55]],[[5668,28995],[4,-3]],[[5672,28992],[58,-13],[94,35]],[[5824,29014],[8,4]],[[5832,29018],[3,6]],[[5835,29024],[4,4]],[[5839,29028],[16,38],[6,188]],[[5861,29254],[-4,6]],[[5857,29260],[-18,52],[15,145]],[[5854,29457],[15,4]],[[5869,29461],[27,-117]],[[5896,29344],[4,6]],[[5900,29350],[27,39],[40,-51]],[[5967,29338],[8,-4]],[[5975,29334],[2,-6]],[[5977,29328],[4,-3]],[[5981,29325],[0,-74]],[[5981,29251],[-9,-4]],[[5972,29247],[-30,-19]],[[5942,29228],[-3,-10]],[[5939,29218],[7,-55]],[[5946,29163],[9,4]],[[5955,29167],[20,6]],[[5975,29173],[11,-3]],[[5986,29170],[30,38]],[[6016,29208],[6,4]],[[6022,29212],[69,64]],[[6091,29276],[4,3]],[[6095,29279],[32,-25]],[[6127,29254],[9,-7]],[[6136,29247],[28,23]],[[6164,29270],[3,3]],[[6167,29273],[0,3]],[[6167,29276],[11,3]],[[6178,29279],[0,36]],[[6178,29315],[-25,0]],[[6153,29315],[-5,-6]],[[6148,29309],[-12,-3]],[[6136,29306],[50,61],[51,29]],[[6237,29396],[11,3]],[[6248,29399],[0,3]],[[6248,29402],[10,10]],[[6258,29412],[0,3]],[[6258,29415],[0,3]],[[6258,29418],[26,-6]],[[6284,29412],[8,-6]],[[6292,29406],[61,42]],[[6353,29448],[9,3]],[[6362,29451],[0,3]],[[6362,29454],[3,-3]],[[6365,29451],[28,-7]],[[6393,29444],[7,7]],[[6400,29451],[3,13]],[[6403,29464],[-8,9]],[[6395,29473],[0,30]],[[6395,29503],[5,2]],[[6400,29505],[14,11]],[[6414,29516],[15,0]],[[6429,29516],[0,3]],[[6429,29519],[5,0]],[[6434,29519],[19,38]],[[6453,29557],[8,0]],[[6461,29557],[26,30]],[[6487,29587],[3,9]],[[6490,29596],[0,29]],[[6490,29625],[0,3]],[[6490,29628],[25,17]],[[6515,29645],[11,-3]],[[6526,29642],[20,38]],[[6546,29680],[8,3]],[[6554,29683],[2,16]],[[6556,29699],[4,11]],[[6560,29710],[25,35]],[[6585,29745],[19,3]],[[6604,29748],[6,6]],[[6610,29754],[19,4]],[[6629,29758],[13,42]],[[6642,29800],[-22,6]],[[6620,29806],[-16,16]],[[6604,29822],[-5,3]],[[6599,29825],[-4,11]],[[6595,29836],[-5,16]],[[6590,29852],[-16,112]],[[6574,29964],[-4,4]],[[6570,29968],[0,19]],[[6570,29987],[4,9]],[[6574,29996],[16,36]],[[6590,30032],[5,20]],[[6595,30052],[0,22]],[[6595,30074],[-5,4]],[[6590,30078],[-16,19]],[[6574,30097],[-4,10]],[[6570,30107],[-10,35]],[[6560,30142],[-4,4]],[[6556,30146],[-5,19]],[[6551,30165],[-5,3]],[[6546,30168],[-31,26]],[[6515,30194],[-6,-4]],[[6509,30190],[-30,78],[-79,45]],[[6400,30313],[0,4]],[[6400,30317],[0,3]],[[6400,30320],[-7,7]],[[6393,30327],[0,48]],[[6393,30375],[8,6]],[[6401,30381],[85,-38]],[[6486,30343],[4,-3]],[[6490,30340],[19,12]],[[6509,30352],[5,4]],[[6514,30356],[1,9]],[[6515,30365],[19,3]],[[6534,30368],[22,-16]],[[6556,30352],[4,-3]],[[6560,30349],[10,-26]],[[6570,30323],[4,-3]],[[6574,30320],[16,-23]],[[6590,30297],[6,-3]],[[6596,30294],[3,-6]],[[6599,30288],[7,-7]],[[6606,30281],[14,-25]],[[6620,30256],[6,-4]],[[6626,30252],[0,-3]],[[6626,30249],[11,-4]],[[6637,30245],[23,-32]],[[6660,30213],[0,-3]],[[6660,30210],[0,-9]],[[6660,30201],[5,-7]],[[6665,30194],[0,-7]],[[6665,30187],[5,0]],[[6670,30187],[6,-87],[31,-32]],[[6707,30068],[13,-3]],[[6720,30065],[7,6]],[[6727,30071],[13,3]],[[6740,30074],[0,4]],[[6740,30078],[6,-4]],[[6746,30074],[45,36]],[[6791,30110],[11,0]],[[6802,30110],[19,29],[-14,62]],[[6807,30201],[-5,3]],[[6802,30204],[0,25]],[[6802,30229],[5,4]],[[6807,30233],[47,9]],[[6854,30242],[4,3]],[[6858,30245],[25,36]],[[6883,30281],[5,3]],[[6888,30284],[0,13]],[[6888,30297],[-6,4]],[[6882,30301],[1,58]],[[6883,30359],[25,3]],[[6908,30362],[7,6]],[[6915,30368],[1,4]],[[6916,30372],[6,45]],[[6922,30417],[-3,0]],[[6919,30417],[-17,13]],[[6902,30430],[-9,3]],[[6893,30433],[-5,-3]],[[6888,30430],[-5,6]],[[6883,30436],[-21,23]],[[6862,30459],[-8,3]],[[6854,30462],[-27,36]],[[6827,30498],[-4,3]],[[6823,30501],[-22,52]],[[6801,30553],[-8,3]],[[6793,30556],[-6,10]],[[6787,30566],[-7,3]],[[6780,30569],[-29,48],[-44,4],[-42,51]],[[6665,30672],[-5,4]],[[6660,30676],[-22,16]],[[6638,30692],[-9,3]],[[6629,30695],[0,3]],[[6629,30698],[-8,3]],[[6621,30701],[-25,39],[-45,-20]],[[6551,30720],[-3,4]],[[6548,30724],[-33,48]],[[6515,30772],[-6,4]],[[6509,30776],[-8,16]],[[6501,30792],[-17,-4]],[[6484,30788],[-70,68]],[[6414,30856],[-6,0]],[[6408,30856],[-29,10]],[[6379,30866],[-6,4]],[[6373,30870],[-3,5]],[[6370,30875],[-5,4]],[[6365,30879],[-7,13]],[[6358,30892],[-5,3]],[[6353,30895],[-44,45],[-42,10]],[[6267,30950],[-28,3]],[[6239,30953],[-27,-6]],[[6212,30947],[-10,-4]],[[6202,30943],[-60,-3],[-9,-42]],[[6133,30898],[-5,-3]],[[6128,30895],[-33,-42]],[[6095,30853],[0,-10]],[[6095,30843],[0,-35]],[[6095,30808],[0,-4]],[[6095,30804],[0,-48]],[[6095,30756],[0,-7]],[[6095,30749],[0,-6]],[[6095,30743],[-4,-6]],[[6091,30737],[-28,-33]],[[6063,30704],[-5,-3]],[[6058,30701],[-38,3]],[[6020,30704],[-4,-6]],[[6016,30698],[-35,-116],[-21,16]],[[5960,30598],[-13,-4]],[[5947,30594],[-25,0],[-20,149],[33,84]],[[5935,30827],[7,4]],[[5942,30831],[5,12]],[[5947,30843],[5,4]],[[5952,30847],[15,48]],[[5967,30895],[10,13]],[[5977,30908],[0,3]],[[5977,30911],[4,7]],[[5981,30918],[35,129]],[[6016,31047],[4,16]],[[6020,31063],[43,55]],[[6063,31118],[14,6]],[[6077,31124],[-61,81]],[[6016,31205],[0,7]],[[6016,31212],[-41,58]],[[5975,31270],[-8,-3]],[[5967,31267],[-15,-7]],[[5952,31260],[-6,-3]],[[5946,31257],[-50,33],[31,90],[-27,22]],[[5900,31402],[-4,4]],[[5896,31406],[0,19]],[[5896,31425],[4,3]],[[5900,31428],[0,39]],[[5900,31467],[-14,3]],[[5886,31470],[-47,-22]],[[5839,31448],[-4,-3]],[[5835,31445],[-3,-7]],[[5832,31438],[-7,3]],[[5825,31441],[-57,126]],[[5768,31567],[-17,-7]],[[5751,31560],[3,36]],[[5754,31596],[4,4]],[[5758,31600],[5,74],[62,-114]],[[5825,31560],[5,7]],[[5830,31567],[0,16]],[[5830,31583],[-5,7]],[[5825,31590],[-1,139],[-53,64]],[[5771,31793],[3,10]],[[5774,31803],[-14,16]],[[5760,31819],[-6,16]],[[5754,31835],[-28,23],[12,62],[-70,60]],[[5668,31980],[-10,4]],[[5658,31984],[0,3]],[[5658,31987],[-3,10]],[[5655,31997],[0,3]],[[5655,32000],[5,3]],[[5660,32003],[0,-3]],[[5660,32000],[12,-3]],[[5672,31997],[0,13]],[[5672,32010],[-12,9]],[[5660,32019],[-2,49]],[[5658,32068],[-3,27]],[[5655,32095],[0,5]],[[5655,32100],[3,3]],[[5658,32103],[0,13]],[[5658,32116],[-3,3]],[[5655,32119],[8,55]],[[5663,32174],[0,4]],[[5663,32178],[5,97]],[[5668,32275],[1,16]],[[5669,32291],[-11,42]],[[5658,32333],[-3,13]],[[5655,32346],[0,38]],[[5655,32384],[3,4]],[[5658,32388],[0,9]],[[5658,32397],[-3,10]],[[5655,32407],[-20,71]],[[5635,32478],[-3,4]],[[5632,32482],[-9,48]],[[5623,32530],[-13,3]],[[5610,32533],[0,17]],[[5610,32550],[0,12]],[[5610,32562],[-3,13]],[[5607,32575],[2,3]],[[5609,32578],[0,4]],[[5609,32582],[6,3]],[[5615,32585],[17,25]],[[5632,32610],[3,7]],[[5635,32617],[0,26]],[[5635,32643],[-3,6]],[[5632,32649],[0,7]],[[5632,32656],[0,6]],[[5632,32662],[-17,110]],[[5615,32772],[-6,10]],[[5609,32782],[-2,16]],[[5607,32798],[-8,3]],[[5599,32801],[3,58]],[[5602,32859],[7,20]],[[5609,32879],[1,48]],[[5610,32927],[5,7]],[[5615,32934],[17,32]],[[5632,32966],[3,4]],[[5635,32970],[13,71],[32,55],[144,54]],[[5824,33150],[11,-3]],[[5835,33147],[0,3]],[[5835,33150],[4,3]],[[5839,33153],[16,-6]],[[5855,33147],[19,-6]],[[5874,33141],[23,16]],[[5897,33157],[13,-7]],[[5910,33150],[57,23]],[[5967,33173],[8,3]],[[5975,33176],[0,4]],[[5975,33180],[6,9]],[[5981,33189],[35,32]],[[6016,33221],[4,3]],[[6020,33224],[71,75]],[[6091,33299],[4,3]],[[6095,33302],[47,10]],[[6142,33312],[20,-3]],[[6162,33309],[36,-13]],[[6198,33296],[8,-17]],[[6206,33279],[33,-51]],[[6239,33228],[8,-4]],[[6247,33224],[11,-9]],[[6258,33215],[34,-10]],[[6292,33205],[22,30],[44,-14]],[[6358,33221],[17,-6]],[[6375,33215],[53,13],[87,-36]],[[6515,33192],[11,4]],[[6526,33196],[19,16]],[[6545,33212],[11,3]],[[6556,33215],[0,4]],[[6556,33219],[4,2]],[[6560,33221],[7,17]],[[6567,33238],[7,2]],[[6574,33240],[11,11]],[[6585,33251],[11,-4]],[[6596,33247],[24,-28]],[[6620,33219],[9,-4]],[[6629,33215],[0,-3]],[[6629,33212],[3,-16]],[[6632,33196],[44,-29],[36,-55]],[[6712,33112],[4,3]],[[6716,33115],[16,-30]],[[6732,33085],[8,-3]],[[6740,33082],[0,-3]],[[6740,33079],[8,-3]],[[6748,33076],[32,-19]],[[6780,33057],[11,-4]],[[6791,33053],[2,-9]],[[6793,33044],[0,-23]],[[6793,33021],[0,-3]],[[6793,33018],[8,-7]],[[6801,33011],[0,-2]],[[6801,33009],[6,-4]],[[6807,33005],[11,-13]],[[6818,32992],[20,-3]],[[6838,32989],[41,-39]],[[6879,32950],[12,-3]],[[6891,32947],[2,-7]],[[6893,32940],[5,-3]],[[6898,32937],[0,-6]],[[6898,32931],[20,0]],[[6918,32931],[15,51]],[[6933,32982],[10,-3]],[[6943,32979],[0,-13]],[[6943,32966],[15,-7]],[[6958,32959],[66,-64],[-2,-29]],[[7022,32866],[-4,-3]],[[7018,32863],[-46,-16],[46,-130]],[[7018,32717],[4,-3]],[[7022,32714],[32,-55]],[[7054,32659],[-10,-3]],[[7044,32656],[3,-7]],[[7047,32649],[8,-3]],[[7055,32646],[34,3],[41,-110],[30,-28]],[[7160,32511],[4,-13]],[[7164,32498],[5,-32]],[[7169,32466],[6,-4]],[[7175,32462],[31,-65],[68,23]],[[7274,32420],[3,-3]],[[7277,32417],[32,-45],[2,-78]],[[7311,32294],[5,-6]],[[7316,32288],[9,-30]],[[7325,32258],[0,-6]],[[7325,32252],[9,-42]],[[7334,32210],[5,-16]],[[7339,32194],[-5,-29]],[[7334,32165],[11,-3]],[[7345,32162],[-6,-55]],[[7339,32107],[0,-7]],[[7339,32100],[-5,-32]],[[7334,32068],[5,-3]],[[7339,32065],[20,-156],[53,-41]],[[7412,31868],[19,-7]],[[7431,31861],[14,-19]],[[7445,31842],[5,-7]],[[7450,31835],[1,-9]],[[7451,31826],[7,-4]],[[7458,31822],[40,-45]],[[7498,31777],[13,-3]],[[7511,31774],[22,-10]],[[7533,31764],[6,-3]],[[7539,31761],[19,-29]],[[7558,31732],[4,-6]],[[7562,31726],[2,-11]],[[7564,31715],[8,-16]],[[7572,31699],[0,-3]],[[7572,31696],[29,3]],[[7601,31699],[47,-87]],[[7648,31612],[5,-6]],[[7653,31606],[11,-10]],[[7664,31596],[3,-3]],[[7667,31593],[31,-20]],[[7698,31573],[11,-2]],[[7709,31571],[0,-4]],[[7709,31567],[8,-3]],[[7717,31564],[73,16]],[[7790,31580],[5,-3]],[[7795,31577],[25,-136]],[[7820,31441],[4,-3]],[[7824,31438],[10,-16]],[[7834,31422],[-14,-4]],[[7820,31418],[31,-3]],[[7851,31415],[5,-9]],[[7856,31406],[20,-146],[-6,-52],[34,-142]],[[7904,31066],[5,-9]],[[7909,31057],[8,-59]],[[7917,30998],[4,-6]],[[7921,30992],[3,-13]],[[7924,30979],[5,-6]],[[7929,30973],[5,-26]],[[7934,30947],[4,-4]],[[7938,30943],[0,-16]],[[7938,30927],[-4,-9]],[[7934,30918],[0,-20]],[[7934,30898],[4,-6]],[[7938,30892],[0,-49]],[[7938,30843],[-4,-6]],[[7934,30837],[-27,-17]],[[7907,30820],[-3,-2]],[[7904,30818],[-48,-30]],[[7856,30788],[-5,4]],[[7851,30792],[-3,19]],[[7848,30811],[-3,9]],[[7845,30820],[-21,36]],[[7824,30856],[-14,3]],[[7810,30859],[-12,16]],[[7798,30875],[-8,4]],[[7790,30879],[-1,7]],[[7789,30886],[-10,3]],[[7779,30889],[-65,-3]],[[7714,30886],[-19,-4]],[[7695,30882],[-13,-23]],[[7682,30859],[-10,-3]],[[7672,30856],[-63,14]],[[7609,30870],[-25,-4]],[[7584,30866],[-73,4]],[[7511,30870],[0,-4]],[[7511,30866],[25,-13]],[[7536,30853],[12,-3]],[[7548,30850],[44,-16]],[[7592,30834],[-8,-10]],[[7584,30824],[-6,-9]],[[7578,30815],[-14,-4]],[[7564,30811],[-13,-19]],[[7551,30792],[-7,-4]],[[7544,30788],[-5,0]],[[7539,30788],[-6,-3]],[[7533,30785],[3,-26]],[[7536,30759],[22,-3]],[[7558,30756],[29,10]],[[7587,30766],[5,6]],[[7592,30772],[26,-20]],[[7618,30752],[30,-99],[-47,-62],[36,-71],[-36,-81]],[[7601,30439],[-4,-3]],[[7597,30436],[-35,-3]],[[7562,30433],[-4,-3]],[[7558,30430],[-7,-19]],[[7551,30411],[-9,-4]],[[7542,30407],[-59,-23],[18,-51]],[[7501,30333],[11,7]],[[7512,30340],[32,-49]],[[7544,30291],[7,-3]],[[7551,30288],[0,-4]],[[7551,30284],[13,-3]],[[7564,30281],[0,-3]],[[7564,30278],[14,-3]],[[7578,30275],[9,-13]],[[7587,30262],[10,-4]],[[7597,30258],[0,-2]],[[7597,30256],[4,-4]],[[7601,30252],[49,36]],[[7650,30288],[3,0]],[[7653,30288],[47,25]],[[7700,30313],[0,-6]],[[7700,30307],[0,-19]],[[7700,30288],[4,-7]],[[7704,30281],[5,-9]],[[7709,30272],[5,-7]],[[7714,30265],[25,-23],[9,-84]],[[7748,30158],[5,-3]],[[7753,30155],[0,-42]],[[7753,30113],[-5,-3]],[[7748,30110],[11,-26]],[[7759,30084],[6,-3]],[[7765,30081],[17,-16]],[[7782,30065],[3,3]],[[7785,30068],[35,-120]],[[7820,29948],[4,-3]],[[7824,29945],[19,-64]],[[7843,29881],[5,-4]],[[7848,29877],[3,-13]],[[7851,29864],[0,-9]],[[7851,29855],[0,-17]],[[7851,29838],[9,-2]],[[7860,29836],[53,-27]],[[7913,29809],[16,7]],[[7929,29816],[0,-3]],[[7929,29813],[9,-4]],[[7938,29809],[24,-51]],[[7962,29758],[4,-10]],[[7966,29748],[5,-26]],[[7971,29722],[5,-7]],[[7976,29715],[0,-183]],[[7976,29532],[-5,-7]],[[7971,29525],[-5,-36]],[[7966,29489],[-6,-6]],[[7960,29483],[-15,-26],[17,-80]],[[7962,29377],[4,-4]],[[7966,29373],[13,-26]],[[7979,29347],[12,-3]],[[7991,29344],[46,-16]],[[8037,29328],[4,-6]],[[8041,29322],[0,-29]],[[8041,29293],[-15,2]],[[8026,29295],[20,-54]],[[8046,29241],[5,-3]],[[8051,29238],[25,-43]],[[8076,29195],[4,-6]],[[8080,29189],[47,-32]],[[8127,29157],[8,-4]],[[8135,29153],[2,-13]],[[8137,29140],[4,-3]],[[8141,29137],[16,-52]],[[8157,29085],[6,-3]],[[8163,29082],[25,-35],[78,-35],[78,16]],[[8344,29028],[16,3]],[[8360,29031],[59,29]],[[8419,29060],[8,3]],[[8427,29063],[15,52]],[[8442,29115],[5,3]],[[8447,29118],[0,13]],[[8447,29131],[-5,3]],[[8442,29134],[-12,13]],[[8430,29147],[-8,6]],[[8422,29153],[0,14]],[[8422,29167],[5,6]],[[8427,29173],[0,58]],[[8427,29231],[-5,36]],[[8422,29267],[0,3]],[[8422,29270],[-9,3]],[[8413,29273],[-16,13]],[[8397,29286],[-19,4]],[[8378,29290],[5,64],[-19,32]],[[8364,29386],[-4,7]],[[8360,29393],[-2,6]],[[8358,29399],[-9,7]],[[8349,29406],[-45,32]],[[8304,29438],[-7,0]],[[8297,29438],[-51,23]],[[8246,29461],[-8,3]],[[8238,29464],[-16,-16]],[[8222,29448],[-4,16]],[[8218,29464],[0,3]],[[8218,29467],[0,3]],[[8218,29470],[0,7]],[[8218,29477],[4,9]],[[8222,29486],[0,62]],[[8222,29548],[-4,12]],[[8218,29560],[0,4]],[[8218,29564],[8,7]],[[8226,29571],[10,19]],[[8236,29590],[16,0]],[[8252,29590],[27,-36]],[[8279,29554],[4,-3]],[[8283,29551],[11,-68],[28,33]],[[8322,29516],[-3,0]],[[8319,29516],[-15,35]],[[8304,29551],[-5,6]],[[8299,29557],[-16,46]],[[8283,29603],[-4,6]],[[8279,29609],[-18,55],[16,78],[-31,55]],[[8246,29797],[-5,3]],[[8241,29800],[-19,42]],[[8222,29842],[-4,6]],[[8218,29848],[0,7]],[[8218,29855],[4,13]],[[8222,29868],[0,6]],[[8222,29874],[-4,3]],[[8218,29877],[0,39]],[[8218,29916],[4,4]],[[8222,29920],[24,87]],[[8246,30007],[-5,6]],[[8241,30013],[0,3]],[[8241,30016],[5,7]],[[8246,30023],[0,3]],[[8246,30026],[6,3]],[[8252,30029],[19,13]],[[8271,30042],[11,4]],[[8282,30046],[17,28]],[[8299,30074],[5,4]],[[8304,30078],[-21,68]],[[8283,30146],[-4,9]],[[8279,30155],[0,13]],[[8279,30168],[4,6]],[[8283,30174],[16,36]],[[8299,30210],[5,7]],[[8304,30217],[28,51]],[[8332,30268],[17,4]],[[8349,30272],[9,6]],[[8358,30278],[6,3]],[[8364,30281],[30,75],[28,0]],[[8422,30356],[5,3]],[[8427,30359],[0,6]],[[8427,30365],[0,13]],[[8427,30378],[14,10]],[[8441,30388],[17,3]],[[8458,30391],[9,9]],[[8467,30400],[2,23]],[[8469,30423],[5,23]],[[8474,30446],[4,3]],[[8478,30449],[16,-3]],[[8494,30446],[3,-3]],[[8497,30443],[11,-4]],[[8508,30439],[8,-6]],[[8516,30433],[9,-16]],[[8525,30417],[8,-3]],[[8533,30414],[20,-39]],[[8553,30375],[6,3]],[[8559,30378],[46,-6]],[[8605,30372],[6,3]],[[8611,30375],[-22,74]],[[8589,30449],[-5,6]],[[8584,30455],[-3,11]],[[8581,30466],[0,6]],[[8581,30472],[25,10]],[[8606,30482],[7,-4]],[[8613,30478],[68,-71],[-9,-32]],[[8672,30375],[-3,-3]],[[8669,30372],[0,-20]],[[8669,30352],[3,-3]],[[8672,30349],[8,0]],[[8680,30349],[1,0]],[[8681,30349],[8,39]],[[8689,30388],[3,7]],[[8692,30395],[34,-27]],[[8726,30368],[5,-3]],[[8731,30365],[19,-52]],[[8750,30313],[0,-16]],[[8750,30297],[-8,-9]],[[8742,30288],[-16,-4]],[[8726,30284],[-15,-12]],[[8711,30272],[-5,-4]],[[8706,30268],[0,-6]],[[8706,30262],[0,-4]],[[8706,30258],[0,-2]],[[8706,30256],[5,-14]],[[8711,30242],[39,-103]],[[8750,30139],[5,-3]],[[8755,30136],[4,-29]],[[8759,30107],[3,-4]],[[8762,30103],[44,-38]],[[8806,30065],[9,-3]],[[8815,30062],[18,-7]],[[8833,30055],[12,3]],[[8845,30058],[13,4]],[[8858,30062],[15,-7]],[[8873,30055],[-26,-29]],[[8847,30026],[-10,3]],[[8837,30029],[-22,10]],[[8815,30039],[0,-7]],[[8815,30032],[21,-16]],[[8836,30016],[9,-13]],[[8845,30003],[2,-48]],[[8847,29955],[1,-13]],[[8848,29942],[19,-26]],[[8867,29916],[6,-3]],[[8873,29913],[16,-10]],[[8889,29903],[9,-3]],[[8898,29900],[0,-3]],[[8898,29897],[14,-4]],[[8912,29893],[19,-19]],[[8931,29874],[5,-3]],[[8936,29871],[0,-19]],[[8936,29852],[-8,-4]],[[8928,29848],[8,-61]],[[8936,29787],[-5,-3]],[[8931,29784],[-3,-36]],[[8928,29748],[9,-3]],[[8937,29745],[-1,-16]],[[8936,29729],[0,-3]],[[8936,29726],[3,-20]],[[8939,29706],[4,-7]],[[8943,29699],[10,-16]],[[8953,29683],[4,-3]],[[8957,29680],[52,-32]],[[9009,29648],[8,-6]],[[9017,29642],[15,-10]],[[9032,29632],[14,-4]],[[9046,29628],[18,0]],[[9064,29628],[14,4]],[[9078,29632],[25,-33],[81,-48]],[[9184,29551],[9,-3]],[[9193,29548],[103,-7]],[[9296,29541],[5,-3]],[[9301,29538],[15,6]],[[9316,29544],[8,4]],[[9324,29548],[5,9]],[[9329,29557],[4,3]],[[9333,29560],[16,23]],[[9349,29583],[5,4]],[[9354,29587],[26,51],[52,39],[34,0]],[[9466,29677],[5,3]],[[9471,29680],[14,3]],[[9485,29683],[5,10]],[[9490,29693],[12,6]],[[9502,29699],[84,23]],[[9586,29722],[27,4]],[[9613,29726],[68,25]],[[9681,29751],[43,-6]],[[9724,29745],[20,6]],[[9744,29751],[8,3]],[[9752,29754],[25,11]],[[9777,29765],[6,-4]],[[9783,29761],[133,42]],[[9916,29803],[9,3]],[[9925,29806],[20,-3]],[[9945,29803],[35,3]],[[9980,29806],[0,3]],[[9980,29809],[18,4]],[[9998,29813],[52,-4],[117,39]],[[10167,29848],[15,4]],[[10182,29852],[0,3]],[[10182,29855],[19,3]],[[10201,29858],[61,23],[55,-17]],[[10317,29864],[14,0]],[[10331,29864],[37,17]],[[10368,29881],[14,3]],[[10382,29884],[25,13]],[[10407,29897],[14,6]],[[10421,29903],[33,26]],[[10454,29929],[16,3]],[[10470,29932],[18,13]],[[10488,29945],[5,3]],[[10493,29948],[215,68],[25,23]],[[10733,30039],[11,3]],[[10744,30042],[11,13]],[[10755,30055],[6,3]],[[10761,30058],[21,23]],[[10782,30081],[9,10]],[[10791,30091],[55,58]],[[10846,30149],[6,3]],[[10852,30152],[19,0]],[[10871,30152],[26,6]],[[10897,30158],[44,-3]],[[10941,30155],[4,7]],[[10945,30162],[11,6]],[[10956,30168],[5,10]],[[10961,30178],[5,3]],[[10966,30181],[1,6]],[[10967,30187],[8,3]],[[10975,30190],[6,14]],[[10981,30204],[5,3]],[[10986,30207],[34,38]],[[11020,30245],[4,-6]],[[11024,30239],[4,-6]],[[11028,30233],[8,-4]],[[11036,30229],[22,-9]],[[11058,30220],[36,3],[48,-36]],[[11142,30187],[9,-2]],[[11151,30185],[0,-4]],[[11151,30181],[25,-3]],[[11176,30178],[113,29],[44,22],[32,-22]],[[11365,30207],[5,-3]],[[11370,30204],[5,-14]],[[11375,30190],[4,-5]],[[11379,30185],[0,-4]],[[11379,30181],[5,-3]],[[11384,30178],[5,-13]],[[11389,30165],[4,-3]],[[11393,30162],[11,-16]],[[11404,30146],[11,-4]],[[11415,30142],[0,-3]],[[11415,30139],[14,-3]],[[11429,30136],[38,-62],[48,-19]],[[11515,30055],[31,-3]],[[11546,30052],[14,-17]],[[11560,30035],[18,4]],[[11578,30039],[17,13]],[[11595,30052],[3,0]],[[11598,30052],[3,3]],[[11601,30055],[6,3]],[[11607,30058],[5,13]],[[11612,30071],[5,3]],[[11617,30074],[31,39]],[[11648,30113],[6,4]],[[11654,30117],[3,2]],[[11657,30119],[5,0]],[[11662,30119],[0,4]],[[11662,30123],[4,0]],[[11666,30123],[177,71]],[[11843,30194],[6,3]],[[11849,30197],[5,10]],[[11854,30207],[4,3]],[[11858,30210],[16,32]],[[11874,30242],[5,7]],[[11879,30249],[25,48]],[[11904,30297],[6,4]],[[11910,30301],[0,16]],[[11910,30317],[-3,6]],[[11907,30323],[0,4]],[[11907,30327],[6,3]],[[11913,30330],[5,10]],[[11918,30340],[6,-4]],[[11924,30336],[16,52],[48,67]],[[11988,30455],[6,4]],[[11994,30459],[3,7]],[[11997,30466],[3,2]],[[12000,30468],[18,43]],[[12018,30511],[3,12]],[[12021,30523],[4,23]],[[12025,30546],[21,0]],[[12046,30546],[23,59]],[[12069,30605],[6,3]],[[12075,30608],[8,-26]],[[12083,30582],[-8,-4]],[[12075,30578],[-6,-22]],[[12069,30556],[5,-3]],[[12074,30553],[31,25]],[[12105,30578],[6,4]],[[12111,30582],[70,-4],[8,-55]],[[12189,30523],[8,-3]],[[12197,30520],[53,10]],[[12250,30530],[5,3]],[[12255,30533],[0,23]],[[12255,30556],[-5,13]],[[12250,30569],[0,9]],[[12250,30578],[5,7]],[[12255,30585],[1,31]],[[12256,30616],[-1,8]],[[12255,30624],[-5,3]],[[12250,30627],[-19,58]],[[12231,30685],[-1,7]],[[12230,30692],[-5,12]],[[12225,30704],[-5,4]],[[12220,30708],[-4,9]],[[12216,30717],[-3,3]],[[12213,30720],[-16,52]],[[12197,30772],[-6,4]],[[12191,30776],[-31,55],[-71,-27]],[[12089,30804],[-11,0]],[[12078,30804],[0,-3]],[[12078,30801],[-14,3]],[[12064,30804],[-101,4],[-75,-91]],[[11888,30717],[-6,-3]],[[11882,30714],[-114,-87],[-72,32],[-40,0]],[[11656,30659],[-5,6]],[[11651,30665],[-77,75]],[[11574,30740],[-4,3]],[[11570,30743],[-28,52]],[[11542,30795],[-5,3]],[[11537,30798],[-25,33]],[[11512,30831],[-20,3]],[[11492,30834],[-61,-23]],[[11431,30811],[-5,-7]],[[11426,30804],[-1,-6]],[[11425,30798],[-11,3]],[[11414,30801],[4,-16]],[[11418,30785],[3,-6]],[[11421,30779],[33,-7]],[[11454,30772],[6,-9]],[[11460,30763],[0,-4]],[[11460,30759],[0,-6]],[[11460,30753],[0,-4]],[[11460,30749],[-4,-2]],[[11456,30747],[-21,-7]],[[11435,30740],[-14,-3]],[[11421,30737],[-46,0],[-35,45]],[[11340,30782],[-4,13]],[[11336,30795],[-18,-7]],[[11318,30788],[-7,4]],[[11311,30792],[-32,12]],[[11279,30804],[-4,-9]],[[11275,30795],[-47,20]],[[11228,30815],[-23,3]],[[11205,30818],[-7,-14]],[[11198,30804],[-4,-3]],[[11194,30801],[-46,30]],[[11148,30831],[-9,3]],[[11139,30834],[-62,0],[4,-42]],[[11081,30792],[-26,3]],[[11055,30795],[-22,3]],[[11033,30798],[-5,-6]],[[11028,30792],[-4,-10]],[[11024,30782],[-4,-6]],[[11020,30776],[-50,-20]],[[10970,30756],[-3,-3]],[[10967,30753],[-137,-26]],[[10830,30727],[-5,-3]],[[10825,30724],[-14,-48]],[[10811,30676],[-9,-4]],[[10802,30672],[-16,-7]],[[10786,30665],[-4,-3]],[[10782,30662],[0,23]],[[10782,30685],[4,3]],[[10786,30688],[0,13]],[[10786,30701],[-4,10]],[[10782,30711],[-41,-23]],[[10741,30688],[13,-3]],[[10754,30685],[-10,-16]],[[10744,30669],[-9,-10]],[[10735,30659],[0,-26]],[[10735,30633],[0,-9]],[[10735,30624],[0,-3]],[[10735,30621],[-6,3]],[[10729,30624],[-10,29]],[[10719,30653],[-4,6]],[[10715,30659],[-27,-6]],[[10688,30653],[-5,12]],[[10683,30665],[-17,27]],[[10666,30692],[-12,0]],[[10654,30692],[0,-20]],[[10654,30672],[4,-3]],[[10658,30669],[-4,-59]],[[10654,30610],[-3,-9]],[[10651,30601],[-46,-29]],[[10605,30572],[-4,19]],[[10601,30591],[-24,-52]],[[10577,30539],[-14,-2]],[[10563,30537],[-23,45],[-41,-10],[-36,-120]],[[10463,30452],[-4,-6]],[[10459,30446],[-5,-13]],[[10454,30433],[-2,-6]],[[10452,30427],[-3,22]],[[10449,30449],[5,6]],[[10454,30455],[5,13]],[[10459,30468],[4,7]],[[10463,30475],[0,32]],[[10463,30507],[-4,4]],[[10459,30511],[-5,64]],[[10454,30575],[-6,3]],[[10448,30578],[-24,7]],[[10424,30585],[-1,9]],[[10423,30594],[-11,-5]],[[10412,30589],[0,-14]],[[10412,30575],[-5,-3]],[[10407,30572],[-25,17]],[[10382,30589],[-14,5]],[[10368,30594],[0,14]],[[10368,30608],[5,2]],[[10373,30610],[-21,46]],[[10352,30656],[-9,3]],[[10343,30659],[-17,13]],[[10326,30672],[-13,4]],[[10313,30676],[-78,6]],[[10235,30682],[5,3]],[[10240,30685],[-14,26]],[[10226,30711],[5,-3]],[[10231,30708],[9,71]],[[10240,30779],[-5,9]],[[10235,30788],[-4,55]],[[10231,30843],[-5,7]],[[10226,30850],[-19,32]],[[10207,30882],[-4,4]],[[10203,30886],[-2,9]],[[10201,30895],[-5,3]],[[10196,30898],[-4,13]],[[10192,30911],[-5,3]],[[10187,30914],[-8,20]],[[10179,30934],[-4,3]],[[10175,30937],[-25,74]],[[10150,31011],[-5,7]],[[10145,31018],[-9,16]],[[10136,31034],[-5,3]],[[10131,31037],[-5,13]],[[10126,31050],[-4,3]],[[10122,31053],[-25,27]],[[10097,31080],[-7,2]],[[10090,31082],[-1,7]],[[10089,31089],[-5,3]],[[10084,31092],[-19,16]],[[10065,31108],[-6,4]],[[10059,31112],[-14,19]],[[10045,31131],[-5,3]],[[10040,31134],[-4,7]],[[10036,31141],[-7,3]],[[10029,31144],[-20,26]],[[10009,31170],[-8,3]],[[10001,31173],[-17,23]],[[9984,31196],[-4,3]],[[9980,31199],[-5,6]],[[9975,31205],[-6,3]],[[9969,31208],[0,4]],[[9969,31212],[-5,3]],[[9964,31215],[-19,16]],[[9945,31231],[-4,4]],[[9941,31235],[-18,22]],[[9923,31257],[-4,3]],[[9919,31260],[0,13]],[[9919,31273],[4,3]],[[9923,31276],[0,3]],[[9923,31279],[2,0]],[[9925,31279],[0,1]],[[9925,31280],[3,2]],[[9928,31282],[-3,24]],[[9925,31306],[-6,3]],[[9919,31309],[-30,22]],[[9889,31331],[-11,3]],[[9878,31334],[-40,27]],[[9838,31361],[-15,2]],[[9823,31363],[0,4]],[[9823,31367],[-18,3]],[[9805,31370],[-25,13]],[[9780,31383],[-27,7]],[[9753,31390],[-26,9]],[[9727,31399],[-16,7]],[[9711,31406],[-34,16]],[[9677,31422],[-20,6]],[[9657,31428],[-54,20]],[[9603,31448],[-15,3]],[[9588,31451],[-111,65]],[[9477,31516],[-2,0]],[[9475,31516],[-1,3]],[[9474,31519],[-3,3]],[[9471,31522],[-5,16]],[[9466,31538],[-5,6]],[[9461,31544],[-4,20]],[[9457,31564],[9,-4]],[[9466,31560],[24,-22]],[[9490,31538],[6,-3]],[[9496,31535],[25,-42]],[[9521,31493],[9,-4]],[[9530,31489],[5,-6]],[[9535,31483],[31,-3]],[[9566,31480],[20,-13]],[[9586,31467],[11,-3]],[[9597,31464],[95,-23]],[[9692,31441],[10,-3]],[[9702,31438],[97,-52]],[[9799,31386],[15,-3]],[[9814,31383],[0,-3]],[[9814,31380],[14,-3]],[[9828,31377],[59,-36]],[[9887,31341],[16,-3]],[[9903,31338],[5,6]],[[9908,31344],[20,-3]],[[9928,31341],[13,0]],[[9941,31341],[14,13]],[[9955,31354],[0,9]],[[9955,31363],[-5,10]],[[9950,31373],[-27,26]],[[9923,31399],[-53,-3]],[[9870,31396],[24,58]],[[9894,31454],[-5,26]],[[9889,31480],[-5,58]],[[9884,31538],[-11,3]],[[9873,31541],[-14,10]],[[9859,31551],[5,3]],[[9864,31554],[20,-3]],[[9884,31551],[10,3]],[[9894,31554],[15,45]],[[9909,31599],[3,0]],[[9912,31599],[-15,23]],[[9897,31622],[-13,-3]],[[9884,31619],[-37,3]],[[9847,31622],[-19,13]],[[9828,31635],[-20,13]],[[9808,31648],[-9,0]],[[9799,31648],[-11,7]],[[9788,31655],[-50,9]],[[9738,31664],[-5,3]],[[9733,31667],[-20,4]],[[9713,31671],[-19,12]],[[9694,31683],[-11,4]],[[9683,31687],[-42,23]],[[9641,31710],[-8,3]],[[9633,31713],[-12,19]],[[9621,31732],[-8,3]],[[9613,31735],[-5,13]],[[9608,31748],[0,10]],[[9608,31758],[5,23]],[[9613,31781],[8,9]],[[9621,31790],[-18,75]],[[9603,31865],[19,9]],[[9622,31874],[-1,35]],[[9621,31909],[-30,4]],[[9591,31913],[-11,-55]],[[9580,31858],[-5,-4]],[[9575,31854],[7,-45]],[[9582,31809],[-11,7]],[[9571,31816],[-13,10]],[[9558,31826],[-6,3]],[[9552,31829],[-2,13]],[[9550,31842],[-9,3]],[[9541,31845],[0,-3]],[[9541,31842],[-14,-4]],[[9527,31838],[0,4]],[[9527,31842],[-5,6]],[[9522,31848],[-47,20]],[[9475,31868],[-4,-3]],[[9471,31865],[-27,-52]],[[9444,31813],[-4,-4]],[[9440,31809],[-8,10]],[[9432,31819],[4,3]],[[9436,31822],[4,10]],[[9440,31832],[4,3]],[[9444,31835],[17,36]],[[9461,31871],[8,3]],[[9469,31874],[2,10]],[[9471,31884],[4,3]],[[9475,31887],[16,10]],[[9491,31897],[5,-10]],[[9496,31887],[67,-16],[-5,54]],[[9558,31925],[38,-2]],[[9596,31923],[17,-7]],[[9613,31916],[4,4]],[[9617,31920],[0,12]],[[9617,31932],[-4,4]],[[9613,31936],[-6,6]],[[9607,31942],[-16,3]],[[9591,31945],[0,16]],[[9591,31961],[0,10]],[[9591,31971],[-11,36]],[[9580,32007],[0,3]],[[9580,32010],[11,22]],[[9591,32032],[6,4]],[[9597,32036],[5,16]],[[9602,32052],[6,3]],[[9608,32055],[9,75]],[[9617,32130],[-4,5]],[[9613,32135],[-17,33]],[[9596,32168],[-10,3]],[[9586,32171],[-28,65]],[[9558,32236],[-6,3]],[[9552,32239],[-25,-3]],[[9527,32236],[-5,-10]],[[9522,32226],[-25,-64]],[[9497,32162],[-1,-10]],[[9496,32152],[0,-3]],[[9496,32149],[0,-3]],[[9496,32146],[0,-4]],[[9496,32142],[-5,-3]],[[9491,32139],[-16,16]],[[9475,32155],[-14,3]],[[9461,32158],[-25,110]],[[9436,32268],[-1,-6]],[[9435,32262],[-30,-23]],[[9405,32239],[-4,-3]],[[9401,32236],[-25,-7],[-47,91]],[[9329,32320],[-13,6]],[[9316,32326],[-7,17]],[[9309,32343],[-8,19]],[[9301,32362],[-5,10]],[[9296,32372],[-25,16]],[[9271,32388],[-3,-4]],[[9268,32384],[-23,-12]],[[9245,32372],[-2,12]],[[9243,32384],[16,30]],[[9259,32414],[-10,6]],[[9249,32420],[-6,78]],[[9243,32498],[-5,3]],[[9238,32501],[-70,6]],[[9168,32507],[-8,4]],[[9160,32511],[-1,6]],[[9159,32517],[-7,3]],[[9152,32520],[-85,58]],[[9067,32578],[-14,4]],[[9053,32582],[-36,-36]],[[9017,32546],[-5,10]],[[9012,32556],[-67,10]],[[8945,32566],[-6,-4]],[[8939,32562],[-2,-6]],[[8937,32556],[-9,-3]],[[8928,32553],[-16,0]],[[8912,32553],[-15,3]],[[8897,32556],[-7,35]],[[8890,32591],[8,3]],[[8898,32594],[-1,23]],[[8897,32617],[-5,10]],[[8892,32627],[-22,87]],[[8870,32714],[6,3]],[[8876,32717],[13,10]],[[8889,32727],[8,3]],[[8897,32730],[4,19]],[[8901,32749],[5,4]],[[8906,32753],[78,39]],[[8984,32792],[8,-4]],[[8992,32788],[-14,23]],[[8978,32811],[-2,4]],[[8976,32815],[-17,25]],[[8959,32840],[-6,3]],[[8953,32843],[-2,10]],[[8951,32853],[-14,-3]],[[8937,32850],[0,-3]],[[8937,32847],[-11,-7]],[[8926,32840],[-45,-36]],[[8881,32804],[-11,-3]],[[8870,32801],[-25,-22],[-59,32]],[[8786,32811],[-7,4]],[[8779,32815],[-14,96]],[[8765,32911],[-18,4]],[[8747,32915],[-16,-13]],[[8731,32902],[-11,-4]],[[8720,32898],[-11,10]],[[8709,32908],[-3,3]],[[8706,32911],[-11,20]],[[8695,32931],[-6,3]],[[8689,32934],[0,29]],[[8689,32963],[3,3]],[[8692,32966],[5,7]],[[8697,32973],[4,3]],[[8701,32976],[0,19]],[[8701,32995],[-4,7]],[[8697,33002],[-25,3]],[[8672,33005],[-6,-3]],[[8666,33002],[-25,3]],[[8641,33005],[-5,-3]],[[8636,33002],[0,-4]],[[8636,32998],[5,-3]],[[8641,32995],[0,-16]],[[8641,32979],[-5,-6]],[[8636,32973],[-5,-16]],[[8631,32957],[-8,2]],[[8623,32959],[-3,7]],[[8620,32966],[-6,4]],[[8614,32970],[-8,51]],[[8606,33021],[5,7]],[[8611,33028],[12,2]],[[8623,33030],[29,-5]],[[8652,33025],[12,9]],[[8664,33034],[11,3]],[[8675,33037],[14,26]],[[8689,33063],[3,3]],[[8692,33066],[9,42]],[[8701,33108],[-4,4]],[[8697,33112],[0,16]],[[8697,33128],[4,3]],[[8701,33131],[0,19]],[[8701,33150],[16,7]],[[8717,33157],[9,-23]],[[8726,33134],[7,-3]],[[8733,33131],[12,-13]],[[8745,33118],[11,3]],[[8756,33121],[3,32]],[[8759,33153],[3,-3]],[[8762,33150],[17,30]],[[8779,33180],[4,3]],[[8783,33183],[4,-3]],[[8787,33180],[5,-4]],[[8792,33176],[0,-29]],[[8792,33147],[-5,-6]],[[8787,33141],[83,78],[-78,71],[-61,-20]],[[8731,33270],[-9,-10]],[[8722,33260],[-6,-6]],[[8716,33254],[-19,-3]],[[8697,33251],[-11,3]],[[8686,33254],[6,6]],[[8692,33260],[5,16]],[[8697,33276],[12,3]],[[8709,33279],[16,20]],[[8725,33299],[9,-4]],[[8734,33295],[16,7]],[[8750,33302],[5,7]],[[8755,33309],[0,29]],[[8755,33338],[-5,3]],[[8750,33341],[-41,16]],[[8709,33357],[-3,6]],[[8706,33363],[-1,7]],[[8705,33370],[-8,3]],[[8697,33373],[0,10]],[[8697,33383],[12,7]],[[8709,33390],[-4,35]],[[8705,33425],[-16,4]],[[8689,33429],[-17,41]],[[8672,33470],[-6,3]],[[8666,33473],[23,100],[-17,49]],[[8672,33622],[-3,10]],[[8669,33632],[-2,94]],[[8667,33726],[8,-7]],[[8675,33719],[9,55],[-43,7]],[[8641,33781],[0,12]],[[8641,33793],[4,13]],[[8645,33806],[7,4]],[[8652,33810],[12,51]],[[8664,33861],[8,4]],[[8672,33865],[17,16]],[[8689,33881],[3,0]],[[8692,33881],[0,3]],[[8692,33884],[3,0]],[[8695,33884],[2,9]],[[8697,33893],[4,4]],[[8701,33897],[74,12],[-13,49]],[[8762,33958],[-6,6]],[[8756,33964],[0,-9]],[[8756,33955],[-6,6]],[[8750,33961],[0,49]],[[8750,34010],[0,6]],[[8750,34016],[0,13]],[[8750,34029],[12,-6]],[[8762,34023],[39,-7]],[[8801,34016],[16,-3]],[[8817,34013],[44,-32],[45,-4]],[[8906,33977],[-5,14]],[[8901,33991],[20,19]],[[8921,34010],[15,0]],[[8936,34010],[0,3]],[[8936,34013],[7,-3]],[[8943,34010],[10,-17]],[[8953,33993],[4,-6]],[[8957,33987],[19,49]],[[8976,34036],[2,3]],[[8978,34039],[9,-48]],[[8987,33991],[-5,-4]],[[8982,33987],[0,-13]],[[8982,33974],[7,-3]],[[8989,33971],[15,-3]],[[9004,33968],[8,3]],[[9012,33971],[17,22]],[[9029,33993],[19,4]],[[9048,33997],[20,3]],[[9068,34000],[-4,-3]],[[9064,33997],[45,3]],[[9109,34000],[0,10]],[[9109,34010],[0,35]],[[9109,34045],[14,3]],[[9123,34048],[0,4]],[[9123,34052],[6,29]],[[9129,34081],[30,10]],[[9159,34091],[0,6]],[[9159,34097],[18,10]],[[9177,34107],[4,-4]],[[9181,34103],[4,-6]],[[9185,34097],[5,-6]],[[9190,34091],[25,16]],[[9215,34107],[3,3]],[[9218,34110],[6,4]],[[9224,34114],[10,0]],[[9234,34114],[11,2]],[[9245,34116],[51,33]],[[9296,34149],[17,3]],[[9313,34152],[0,-3]],[[9313,34149],[11,-3]],[[9324,34146],[56,67]],[[9380,34213],[7,4]],[[9387,34217],[4,22]],[[9391,34239],[16,3]],[[9407,34242],[3,10]],[[9410,34252],[6,3]],[[9416,34255],[19,10]],[[9435,34265],[1,-3]],[[9436,34262],[4,-7]],[[9440,34255],[6,3]],[[9446,34258],[25,4]],[[9471,34262],[15,-4]],[[9486,34258],[5,-9]],[[9491,34249],[5,-23]],[[9496,34226],[25,-52]],[[9521,34174],[6,-3]],[[9527,34171],[14,-29]],[[9541,34142],[-5,4]],[[9536,34146],[-1,6]],[[9535,34152],[-17,-3]],[[9518,34149],[-18,-42],[21,-68]],[[9521,34039],[9,-3]],[[9530,34036],[20,-10]],[[9550,34026],[13,6]],[[9563,34032],[28,36]],[[9591,34068],[5,3]],[[9596,34071],[7,10]],[[9603,34081],[5,3]],[[9608,34084],[0,3]],[[9608,34087],[9,4]],[[9617,34091],[11,9]],[[9628,34100],[14,3]],[[9642,34103],[15,39]],[[9657,34142],[6,4]],[[9663,34146],[56,3]],[[9719,34149],[3,-7]],[[9722,34142],[0,-3]],[[9722,34139],[6,-4]],[[9728,34135],[31,-57]],[[9759,34078],[5,-3]],[[9764,34075],[5,-13]],[[9769,34062],[8,-4]],[[9777,34058],[25,-19]],[[9802,34039],[11,-3]],[[9813,34036],[1,-7]],[[9814,34029],[5,-3]],[[9819,34026],[6,-10]],[[9825,34016],[8,-3]],[[9833,34013],[5,-16]],[[9838,33997],[4,-10]],[[9842,33987],[36,-42]],[[9878,33945],[17,-3]],[[9895,33942],[69,-22],[67,51]],[[10031,33971],[5,6]],[[10036,33977],[4,16]],[[10040,33993],[5,7]],[[10045,34000],[0,29]],[[10045,34029],[0,3]],[[10045,34032],[9,23]],[[10054,34055],[-9,48]],[[10045,34103],[-6,4]],[[10039,34107],[36,35]],[[10075,34142],[22,4]],[[10097,34146],[-8,45]],[[10089,34191],[-5,3]],[[10084,34194],[0,10]],[[10084,34204],[13,38]],[[10097,34242],[0,36]],[[10097,34278],[-5,3]],[[10092,34281],[53,20]],[[10145,34301],[16,-4]],[[10161,34297],[6,-19]],[[10167,34278],[19,3]],[[10186,34281],[10,-13]],[[10196,34268],[7,-3]],[[10203,34265],[0,-3]],[[10203,34262],[7,-4]],[[10210,34258],[13,-25]],[[10223,34233],[12,-3]],[[10235,34230],[0,-7]],[[10235,34223],[5,-3]],[[10240,34220],[42,-23]],[[10282,34197],[14,-3]],[[10296,34194],[50,52]],[[10346,34246],[5,3]],[[10351,34249],[17,61],[-55,65]],[[10313,34375],[-6,3]],[[10307,34378],[0,94]],[[10307,34472],[5,7]],[[10312,34479],[0,6]],[[10312,34485],[-11,3]],[[10301,34488],[-9,-13]],[[10292,34475],[-5,-3]],[[10287,34472],[-16,7]],[[10271,34479],[-6,-14]],[[10265,34465],[-3,-22]],[[10262,34443],[-9,3]],[[10253,34446],[-22,49]],[[10231,34495],[-8,3]],[[10223,34498],[-16,25]],[[10207,34523],[-4,4]],[[10203,34527],[-2,7]],[[10201,34534],[-6,2]],[[10195,34536],[0,3]],[[10195,34539],[-8,4]],[[10187,34543],[-8,26]],[[10179,34569],[-4,3]],[[10175,34572],[-39,65]],[[10136,34637],[6,9]],[[10142,34646],[-6,26]],[[10136,34672],[-7,10]],[[10129,34682],[0,6]],[[10129,34688],[-7,4]],[[10122,34692],[-22,45]],[[10100,34737],[-8,16]],[[10092,34753],[-3,23]],[[10089,34776],[-5,3]],[[10084,34779],[-12,16]],[[10072,34795],[-13,-7]],[[10059,34788],[-5,13]],[[10054,34801],[-15,3]],[[10039,34804],[-3,11]],[[10036,34815],[-5,2]],[[10031,34817],[-25,49]],[[10006,34866],[-1,6]],[[10005,34872],[-21,65]],[[9984,34937],[0,6]],[[9984,34943],[0,4]],[[9984,34947],[0,7]],[[9984,34954],[17,44]],[[10001,34998],[19,4]],[[10020,35002],[11,-13]],[[10031,34989],[5,-13]],[[10036,34976],[4,-17]],[[10040,34959],[5,-2]],[[10045,34957],[75,-39]],[[10120,34918],[17,-7]],[[10137,34911],[8,0]],[[10145,34911],[20,-3]],[[10165,34908],[10,23]],[[10175,34931],[6,3]],[[10181,34934],[22,42]],[[10203,34976],[4,6]],[[10207,34982],[19,16]],[[10226,34998],[0,4]],[[10226,35002],[-3,6]],[[10223,35008],[9,3]],[[10232,35011],[30,39]],[[10262,35050],[11,3]],[[10273,35053],[12,-12]],[[10285,35041],[8,3]],[[10293,35044],[13,16]],[[10306,35060],[7,9]],[[10313,35069],[33,27]],[[10346,35096],[5,6]],[[10351,35102],[26,13]],[[10377,35115],[10,3]],[[10387,35118],[6,3]],[[10393,35121],[11,4]],[[10404,35125],[0,3]],[[10404,35128],[8,3]],[[10412,35131],[6,-33]],[[10418,35098],[3,-2]],[[10421,35096],[0,-7]],[[10421,35089],[0,-3]],[[10421,35086],[0,-10]],[[10421,35076],[3,-3]],[[10424,35073],[0,-39]],[[10424,35034],[0,-9]],[[10424,35025],[0,-33]],[[10424,34992],[-3,-3]],[[10421,34989],[-5,-13]],[[10416,34976],[-4,-3]],[[10412,34973],[0,-3]],[[10412,34970],[-5,-16]],[[10407,34954],[-5,-39]],[[10402,34915],[-4,-4]],[[10398,34911],[0,-64]],[[10398,34847],[4,-4]],[[10402,34843],[10,-12]],[[10412,34831],[6,-4]],[[10418,34827],[0,-3]],[[10418,34824],[6,-4]],[[10424,34820],[28,-22]],[[10452,34798],[2,-3]],[[10454,34795],[5,-23]],[[10459,34772],[4,-3]],[[10463,34769],[61,-29]],[[10524,34740],[24,4]],[[10548,34744],[45,16]],[[10593,34760],[8,3]],[[10601,34763],[0,-7]],[[10601,34756],[12,-3]],[[10613,34753],[9,13]],[[10622,34766],[7,3]],[[10629,34769],[25,13]],[[10654,34782],[6,3]],[[10660,34785],[3,10]],[[10663,34795],[6,3]],[[10669,34798],[14,29]],[[10683,34827],[5,23]],[[10688,34850],[27,61]],[[10715,34911],[4,4]],[[10719,34915],[10,42]],[[10729,34957],[4,2]],[[10733,34959],[2,11]],[[10735,34970],[0,9]],[[10735,34979],[-2,29]],[[10733,35008],[-4,3]],[[10729,35011],[-30,36],[-109,19]],[[10590,35066],[-30,-3]],[[10560,35063],[9,33]],[[10569,35096],[11,2]],[[10580,35098],[13,36]],[[10593,35134],[4,13]],[[10597,35147],[2,13]],[[10599,35160],[6,7]],[[10605,35167],[17,61]],[[10622,35228],[7,3]],[[10629,35231],[54,36]],[[10683,35267],[8,6]],[[10691,35273],[50,-22],[28,16],[0,68]],[[10769,35335],[5,3]],[[10774,35338],[8,19]],[[10782,35357],[4,3]],[[10786,35360],[10,0]],[[10796,35360],[18,-3]],[[10814,35357],[61,10]],[[10875,35367],[10,3]],[[10885,35370],[1,7]],[[10886,35377],[5,2]],[[10891,35379],[11,11]],[[10902,35390],[11,6]],[[10913,35396],[0,10]],[[10913,35406],[-3,6]],[[10910,35412],[0,10]],[[10910,35422],[3,12]],[[10913,35434],[8,39],[85,20],[57,55]],[[11063,35548],[15,3]],[[11078,35551],[3,-32]],[[11081,35519],[-12,-3]],[[11069,35516],[-35,-36]],[[11034,35480],[-6,-3]],[[11028,35477],[-4,-32]],[[11024,35445],[0,-11]],[[11024,35434],[3,-9]],[[11027,35425],[6,-7]],[[11033,35418],[23,-25]],[[11056,35393],[7,0]],[[11063,35393],[48,-30]],[[11111,35363],[3,-3]],[[11114,35360],[33,-3],[8,65]],[[11155,35422],[4,7]],[[11159,35429],[33,22]],[[11192,35451],[11,3]],[[11203,35454],[25,48],[31,-6]],[[11259,35496],[25,-3]],[[11284,35493],[81,9]],[[11365,35502],[8,4]],[[11373,35506],[0,3]],[[11373,35509],[6,7]],[[11379,35516],[0,16]],[[11379,35532],[0,35]],[[11379,35567],[-20,16]],[[11359,35583],[-3,0]],[[11356,35583],[9,29]],[[11365,35612],[10,4]],[[11375,35616],[4,3]],[[11379,35619],[0,-3]],[[11379,35616],[5,-16]],[[11384,35600],[9,41]],[[11393,35641],[-4,3]],[[11389,35644],[-5,11]],[[11384,35655],[-5,5]],[[11379,35660],[0,4]],[[11379,35664],[-4,7]],[[11375,35671],[-5,35]],[[11370,35706],[-5,16]],[[11365,35722],[-25,36]],[[11340,35758],[-4,3]],[[11336,35761],[-18,13]],[[11318,35774],[-10,3]],[[11308,35777],[-29,16]],[[11279,35793],[-4,17]],[[11275,35810],[4,3]],[[11279,35813],[-21,3]],[[11258,35816],[0,-10]],[[11258,35806],[-21,-25]],[[11237,35781],[-4,-4]],[[11233,35777],[-5,-13]],[[11228,35764],[-9,-3]],[[11219,35761],[-27,71]],[[11192,35832],[8,3]],[[11200,35835],[23,68]],[[11223,35903],[5,19]],[[11228,35922],[0,23]],[[11228,35945],[-5,3]],[[11223,35948],[25,33]],[[11248,35981],[14,3]],[[11262,35984],[49,23]],[[11311,36007],[7,3]],[[11318,36010],[0,84]],[[11318,36094],[-4,3]],[[11314,36097],[-39,110]],[[11275,36207],[4,-6]],[[11279,36201],[25,29],[-21,44]],[[11283,36274],[-8,7]],[[11275,36281],[-36,29]],[[11239,36310],[-2,10]],[[11237,36320],[0,3]],[[11237,36323],[-7,10]],[[11230,36333],[0,3]],[[11230,36336],[-7,4]],[[11223,36340],[-25,-14]],[[11198,36326],[-6,3]],[[11192,36329],[-33,-3]],[[11159,36326],[-6,-3]],[[11153,36323],[-39,-51]],[[11114,36272],[-8,-3]],[[11106,36269],[-29,-43]],[[11077,36226],[-8,-6]],[[11069,36220],[-42,-13]],[[11027,36207],[-10,-4]],[[11017,36203],[-14,-25]],[[11003,36178],[-6,-7]],[[10997,36171],[-19,-6]],[[10978,36165],[-20,-3]],[[10958,36162],[0,-4]],[[10958,36158],[-6,-3]],[[10952,36155],[0,-3]],[[10952,36152],[0,-3]],[[10952,36149],[6,-49]],[[10958,36100],[-6,7]],[[10952,36107],[0,-13]],[[10952,36094],[3,-6]],[[10955,36088],[-39,-4]],[[10916,36084],[5,-6]],[[10921,36078],[0,-3]],[[10921,36075],[-8,-4]],[[10913,36071],[3,-12]],[[10916,36059],[14,-4]],[[10930,36055],[11,13]],[[10941,36068],[22,-4]],[[10963,36064],[40,17],[8,-55],[-80,-6],[-76,25]],[[10855,36045],[-16,7]],[[10839,36052],[0,3]],[[10839,36055],[-25,7]],[[10814,36062],[-23,9]],[[10791,36071],[-14,4]],[[10777,36075],[-37,22]],[[10740,36097],[-7,3]],[[10733,36100],[-9,23]],[[10724,36123],[-13,3]],[[10711,36126],[-45,49]],[[10666,36175],[-6,3]],[[10660,36178],[-55,39]],[[10605,36217],[-4,6]],[[10601,36223],[0,3]],[[10601,36226],[-11,7]],[[10590,36233],[-13,22]],[[10577,36255],[-4,3]],[[10573,36258],[-58,49],[20,22]],[[10535,36329],[9,4]],[[10544,36333],[49,32]],[[10593,36365],[4,7]],[[10597,36372],[-74,-3]],[[10523,36369],[-5,-4]],[[10518,36365],[-9,-3]],[[10509,36362],[-5,-16]],[[10504,36346],[14,-6]],[[10518,36340],[-25,-20]],[[10493,36320],[-5,-13]],[[10488,36307],[-34,-29]],[[10454,36278],[-5,3]],[[10449,36281],[-12,39]],[[10437,36320],[-44,3]],[[10393,36323],[-42,-19]],[[10351,36304],[-5,-3]],[[10346,36301],[2,-23]],[[10348,36278],[-2,-4]],[[10346,36274],[0,-25]],[[10346,36249],[5,-3]],[[10351,36246],[17,-35]],[[10368,36211],[5,-14]],[[10373,36197],[-52,26]],[[10321,36223],[-4,23]],[[10317,36246],[4,7]],[[10321,36253],[-4,2]],[[10317,36255],[-4,10]],[[10313,36265],[-4,4]],[[10309,36269],[-38,41]],[[10271,36310],[-9,3]],[[10262,36313],[-11,7]],[[10251,36320],[-16,3]],[[10235,36323],[-25,6]],[[10210,36329],[-9,-3]],[[10201,36326],[-6,-9]],[[10195,36317],[-8,-4]],[[10187,36313],[-8,-12]],[[10179,36301],[-4,-4]],[[10175,36297],[-38,-28]],[[10137,36269],[-11,-4]],[[10126,36265],[-14,-10]],[[10112,36255],[-23,-2]],[[10089,36253],[-105,-56]],[[9984,36197],[-9,-3]],[[9975,36194],[0,-3]],[[9975,36191],[-5,-4]],[[9970,36187],[0,-3]],[[9970,36184],[5,-6]],[[9975,36178],[0,-13]],[[9975,36165],[-5,-3]],[[9970,36162],[-1,-7]],[[9969,36155],[-5,-6]],[[9964,36149],[-36,-6]],[[9928,36143],[-9,-4]],[[9919,36139],[-25,-16]],[[9894,36123],[-5,-4]],[[9889,36119],[-5,-41]],[[9884,36078],[-4,-19]],[[9880,36059],[-36,16]],[[9844,36075],[-11,3]],[[9833,36078],[-10,6]],[[9823,36084],[-10,-3]],[[9813,36081],[-33,-26]],[[9780,36055],[-3,-7]],[[9777,36048],[-66,-19],[-42,19]],[[9669,36048],[-6,4]],[[9663,36052],[3,32]],[[9666,36084],[3,7]],[[9669,36091],[14,16]],[[9683,36107],[8,3]],[[9691,36110],[0,3]],[[9691,36113],[3,0]],[[9694,36113],[0,3]],[[9694,36116],[5,3]],[[9699,36119],[3,13]],[[9702,36132],[-3,4]],[[9699,36136],[-8,13]],[[9691,36149],[-14,3]],[[9677,36152],[-8,32]],[[9669,36184],[0,7]],[[9669,36191],[0,32]],[[9669,36223],[-3,10]],[[9666,36233],[-3,9]],[[9663,36242],[-6,4]],[[9657,36246],[-36,28]],[[9621,36274],[-25,4]],[[9596,36278],[-21,-9]],[[9575,36269],[-40,-4]],[[9535,36265],[0,-3]],[[9535,36262],[-24,0]],[[9511,36262],[-36,-4]],[[9475,36258],[-6,4]],[[9469,36262],[-25,19]],[[9444,36281],[-25,4]],[[9419,36285],[-9,6]],[[9410,36291],[-11,3]],[[9399,36294],[-14,16]],[[9385,36310],[-5,7]],[[9380,36317],[-20,48],[-6,84]],[[9354,36449],[-5,3]],[[9349,36452],[-16,23]],[[9333,36475],[-3,7]],[[9330,36482],[-6,2]],[[9324,36484],[-5,4]],[[9319,36488],[-4,7]],[[9315,36495],[-19,-4]],[[9296,36491],[-53,-16]],[[9243,36475],[-5,4]],[[9238,36479],[-4,12]],[[9234,36491],[-5,4]],[[9229,36495],[-11,67]],[[9218,36562],[-3,4]],[[9215,36566],[-5,9]],[[9210,36575],[-4,13]],[[9206,36588],[0,19]],[[9206,36607],[9,4]],[[9215,36611],[0,-7]],[[9215,36604],[9,3]],[[9224,36607],[5,7]],[[9229,36614],[5,3]],[[9234,36617],[4,49]],[[9238,36666],[2,6]],[[9240,36672],[-6,39]],[[9234,36711],[0,3]],[[9234,36714],[4,13]],[[9238,36727],[0,3]],[[9238,36730],[-6,16]],[[9232,36746],[-6,3]],[[9226,36749],[-2,14]],[[9224,36763],[-4,6]],[[9220,36769],[0,10]],[[9220,36779],[0,3]],[[9220,36782],[-2,3]],[[9218,36785],[-3,3]],[[9215,36788],[-5,23]],[[9210,36811],[-4,6]],[[9206,36817],[0,46]],[[9206,36863],[4,6]],[[9210,36869],[5,16]],[[9215,36885],[3,3]],[[9218,36888],[2,4]],[[9220,36892],[4,3]],[[9224,36895],[-9,55]],[[9215,36950],[3,4]],[[9218,36954],[0,9]],[[9218,36963],[-3,7]],[[9215,36970],[0,19]],[[9215,36989],[3,6]],[[9218,36995],[11,7]],[[9229,37002],[5,3]],[[9234,37005],[4,9]],[[9238,37014],[5,4]],[[9243,37018],[0,26]],[[9243,37044],[-5,9]],[[9238,37053],[0,23]],[[9238,37076],[5,6]],[[9243,37082],[12,71]],[[9255,37153],[16,4]],[[9271,37157],[25,45]],[[9296,37202],[5,10]],[[9301,37212],[43,29]],[[9344,37241],[10,6]],[[9354,37247],[-21,59]],[[9333,37306],[-4,-7]],[[9329,37299],[0,-26]],[[9329,37273],[-3,-10]],[[9326,37263],[-46,-32]],[[9280,37231],[-25,-3]],[[9255,37228],[-31,-13]],[[9224,37215],[0,13]],[[9224,37228],[5,7]],[[9229,37235],[5,2]],[[9234,37237],[0,4]],[[9234,37241],[-4,13]],[[9230,37254],[-6,16]],[[9224,37270],[0,3]],[[9224,37273],[0,23]],[[9224,37296],[-18,-4]],[[9206,37292],[23,68]],[[9229,37360],[5,3]],[[9234,37363],[0,14]],[[9234,37377],[-5,9]],[[9229,37386],[9,26]],[[9238,37412],[5,10]],[[9243,37422],[16,6]],[[9259,37428],[4,3]],[[9263,37431],[5,10]],[[9268,37441],[3,10]],[[9271,37451],[20,19]],[[9291,37470],[14,-3]],[[9305,37467],[14,-3]],[[9319,37464],[10,-3]],[[9329,37461],[0,3]],[[9329,37464],[6,3]],[[9335,37467],[-2,32]],[[9333,37499],[0,3]],[[9333,37502],[16,14]],[[9349,37516],[5,-4]],[[9354,37512],[26,-48]],[[9380,37464],[21,-3]],[[9401,37461],[0,3]],[[9401,37464],[25,6]],[[9426,37470],[4,7]],[[9430,37477],[10,3]],[[9440,37480],[35,38]],[[9475,37518],[0,4]],[[9475,37522],[10,19]],[[9485,37541],[20,-3]],[[9505,37538],[47,46]],[[9552,37584],[5,5]],[[9557,37589],[34,27]],[[9591,37616],[5,3]],[[9596,37619],[6,9]],[[9602,37628],[15,4]],[[9617,37632],[35,74],[34,-16]],[[9686,37690],[10,-3]],[[9696,37687],[6,3]],[[9702,37690],[12,6]],[[9714,37696],[13,7]],[[9727,37703],[42,39]],[[9769,37742],[3,3]],[[9772,37745],[5,3]],[[9777,37748],[3,7]],[[9780,37755],[23,22]],[[9803,37777],[22,-6]],[[9825,37771],[0,-4]],[[9825,37767],[17,-3]],[[9842,37764],[8,10]],[[9850,37774],[45,9]],[[9895,37783],[46,75]],[[9941,37858],[4,10]],[[9945,37868],[0,58]],[[9945,37926],[0,3]],[[9945,37929],[0,13]],[[9945,37942],[-4,3]],[[9941,37945],[-18,71]],[[9923,38016],[-4,7]],[[9919,38023],[-25,84]],[[9894,38107],[-5,9]],[[9889,38116],[-25,59]],[[9864,38175],[6,9]],[[9870,38184],[-6,17]],[[9864,38201],[-6,2]],[[9858,38203],[-16,17]],[[9842,38220],[-8,3]],[[9834,38223],[0,3]],[[9834,38226],[-6,4]],[[9828,38230],[-9,16]],[[9819,38246],[-6,3]],[[9813,38249],[0,3]],[[9813,38252],[-5,6]],[[9808,38258],[-56,104]],[[9752,38362],[-5,3]],[[9747,38365],[-19,10]],[[9728,38375],[-6,-3]],[[9722,38372],[0,3]],[[9722,38375],[-8,3]],[[9714,38378],[-15,23]],[[9699,38401],[-7,3]],[[9692,38404],[-1,7]],[[9691,38411],[-5,2]],[[9686,38413],[-17,33]],[[9669,38446],[-3,6]],[[9666,38452],[-5,36]],[[9661,38488],[-4,7]],[[9657,38495],[-16,38]],[[9641,38533],[-8,3]],[[9633,38536],[-25,33]],[[9608,38569],[-5,3]],[[9603,38572],[-7,13]],[[9596,38585],[-5,3]],[[9591,38588],[-11,16]],[[9580,38604],[-5,3]],[[9575,38607],[-28,49]],[[9547,38656],[-4,3]],[[9543,38659],[-2,7]],[[9541,38666],[-5,3]],[[9536,38669],[-67,61]],[[9469,38730],[-9,3]],[[9460,38733],[-24,23]],[[9436,38756],[-4,4]],[[9432,38760],[-27,28]],[[9405,38788],[-6,4]],[[9399,38792],[-50,55],[-73,38]],[[9276,38885],[-11,3]],[[9265,38888],[-55,27],[-101,25]],[[9109,38940],[-25,3]],[[9084,38943],[-35,11]],[[9049,38954],[-62,2]],[[8987,38956],[-5,7]],[[8982,38963],[-6,3]],[[8976,38966],[-19,58]],[[8957,39024],[-4,7]],[[8953,39031],[-5,16]],[[14184,41470],[156,-262],[139,-330],[46,-214],[74,-195],[17,-141],[1,-367],[8,-145],[20,-101],[66,-161],[23,-137],[-3,-216]],[[14731,39201],[-32,-169]],[[92756,32126],[93,29],[194,39],[59,23]],[[93102,32217],[117,58],[66,17]],[[93285,32292],[68,10],[177,6]],[[93530,32308],[788,-3],[142,8],[158,19]],[[94618,32332],[12,-134],[-22,-101]],[[94608,32097],[-62,-161],[-46,-87]],[[94500,31849],[-84,-106]],[[94416,31743],[-140,-145]],[[94276,31598],[-75,-61]],[[94201,31537],[-127,-70],[-64,-53],[-51,-69],[-126,-266]],[[93833,31079],[-19,-95]],[[93814,30984],[8,-124],[23,-55]],[[93845,30805],[34,-41],[67,-31],[46,7],[111,48]],[[94103,30788],[149,23]],[[94252,30811],[192,5]],[[94444,30816],[770,-2],[153,-21]],[[95367,30793],[173,-82]],[[95540,30711],[153,-28],[192,-10],[92,-14]],[[95977,30659],[54,-21],[119,-69]],[[96150,30569],[103,-49],[115,-75],[128,-63],[141,-87]],[[96637,30295],[104,-48]],[[96741,30247],[141,-87],[103,-49],[140,-87]],[[97125,30024],[105,-48],[140,-87],[103,-51],[69,-47]],[[97542,29791],[125,-100],[118,-45]],[[97785,29646],[177,-80],[75,-55],[117,-104]],[[98154,29407],[48,-38],[128,-69]],[[98330,29300],[120,-100]],[[98450,29200],[95,-130]],[[98545,29070],[24,-62],[17,-203]],[[98586,28805],[-3,-593],[-13,-170]],[[98570,28042],[-15,-64]],[[98555,27978],[-74,-158]],[[98481,27820],[-45,-115],[-73,-157]],[[98363,27548],[-28,-122]],[[98335,27426],[-28,-123],[-57,-133]],[[98250,27170],[-31,-130],[-22,-211],[-15,-68]],[[98182,26761],[-72,-194]],[[98110,26567],[-13,-69]],[[98097,26498],[-28,-245]],[[98069,26253],[-75,-194]],[[97994,26059],[-46,-215]],[[97948,25844],[-83,-188]],[[97865,25656],[-44,-116],[-73,-157]],[[97748,25383],[-39,-186]],[[97709,25197],[-16,-60],[-73,-158]],[[97620,24979],[-44,-116]],[[97576,24863],[-73,-158],[-17,-61]],[[97486,24644],[-30,-154],[-19,-57]],[[97437,24433],[-62,-131],[-44,-117],[-79,-154],[-44,-116],[-78,-155]],[[97130,23760],[-47,-114],[-98,-146]],[[96985,23500],[-72,-96],[-58,-109],[-42,-119]],[[90059,16980],[-157,146]],[[89902,17126],[-242,267],[-83,86]],[[89577,17479],[-148,128],[-70,228],[-153,258]],[[89206,18093],[-85,150],[-90,120],[-84,77]],[[88947,18440],[-47,31]],[[88900,18471],[-84,24]],[[88816,18495],[-88,-3],[-79,-32]],[[88649,18460],[-46,-37]],[[88603,18423],[-54,-66],[-77,-124]],[[88472,18233],[-164,-37]],[[88308,18196],[-71,-43],[-128,-93]],[[88109,18060],[-217,30],[-166,-16]],[[87726,18074],[-61,-24]],[[87665,18050],[-112,-66],[-103,-51],[-112,-67],[-61,-24]],[[87277,17842],[-66,-14],[-137,-8]],[[87074,17820],[-276,2],[-172,9]],[[86626,17831],[-98,14]],[[86528,17845],[-102,42]],[[86426,17887],[-196,93],[-64,56],[-46,74]],[[86120,18110],[-21,92],[-16,191],[-26,121],[-55,134]],[[86002,18648],[-16,66],[-9,137]],[[85977,18851],[-5,282],[-25,168]],[[85947,19301],[-78,190],[-14,96]],[[85855,19587],[-3,98],[9,98]],[[85861,19783],[14,62],[74,158]],[[85949,20003],[48,114],[75,109],[217,260]],[[86289,20486],[33,57],[109,244]],[[86431,20787],[27,89],[29,155],[75,190]],[[86562,21221],[28,123]],[[88129,29080],[42,11]],[[88171,29091],[101,65]],[[88272,29156],[125,128]],[[88397,29284],[94,117]],[[88491,29401],[45,76],[47,114],[81,123]],[[88664,29714],[176,206],[50,73]],[[88890,29993],[24,49]],[[88914,30042],[47,118],[67,129]],[[89028,30289],[43,114]],[[89071,30403],[44,74],[109,144]],[[89224,30621],[32,49],[60,140],[89,128]],[[89405,30938],[166,193],[54,77],[63,142]],[[89688,31350],[62,130]],[[89750,31480],[27,123],[11,331],[32,123]],[[89820,32057],[85,119]],[[89905,32176],[107,83]],[[90012,32259],[47,15]],[[90059,32274],[31,2]],[[90090,32276],[211,38]],[[90301,32314],[109,35]],[[90410,32349],[121,64]],[[90531,32413],[221,63],[175,82]],[[90927,32558],[92,15],[190,10],[94,12]],[[91303,32595],[61,17],[118,63]],[[91482,32675],[139,36],[89,2]],[[91710,32713],[117,-16]],[[91827,32697],[172,-84],[222,-63],[142,-80]],[[92363,32470],[154,-88]],[[92517,32382],[70,-66],[169,-190]],[[34427,33655],[-14,243]],[[34413,33898],[0,551],[-13,142],[-15,68]],[[34385,34659],[-13,33]],[[34372,34692],[-105,239]],[[34267,34931],[-70,158]],[[34197,35089],[-20,94],[-8,164],[-232,5]],[[33937,35352],[-64,8]],[[33873,35360],[-61,18],[-145,72]],[[33667,35450],[-197,53],[-172,83]],[[33298,35586],[-137,47],[-37,56]],[[33124,35689],[3,24]],[[33127,35713],[-216,40],[-162,6],[-159,-6]],[[32590,35753],[-122,-27]],[[32468,35726],[-120,-61],[-109,-32],[-175,-20]],[[32064,35613],[-84,-25]],[[31980,35588],[-52,-31]],[[31928,35557],[-165,-143],[-153,-89]],[[31610,35325],[-139,-88],[-105,-49],[-118,-68]],[[31248,35120],[-52,-21],[-170,-36],[-168,-54]],[[30858,35009],[-198,-80]],[[30660,34929],[-52,-24]],[[30608,34905],[-117,-71],[-105,-49],[-138,-88]],[[30248,34697],[-249,-127],[-84,-21]],[[29915,34549],[-175,-18],[-110,-30]],[[29630,34501],[-224,-119]],[[29406,34382],[-73,-58]],[[29333,34324],[-104,-123]],[[29229,34201],[-80,-160],[-59,-85],[-41,-25],[-89,6]],[[28960,33937],[-92,37],[-156,22],[-198,5],[-627,0],[-97,-8],[-117,-32],[-120,-64],[-110,-32]],[[27443,33865],[0,502]],[[27443,34367],[-1,689],[-11,153]],[[27431,35209],[-17,94],[-39,114]],[[27375,35417],[-53,112],[-28,30],[-61,-1]],[[27233,35558],[-24,211],[-3,187]],[[27206,35956],[-101,222],[-17,95],[-16,195],[-28,122],[-63,131]],[[26981,36721],[-42,115],[-79,155]],[[26860,36991],[-61,142],[-166,238],[-62,141],[-108,156],[-171,185],[-74,54],[-103,51]],[[26115,37958],[-142,80],[-57,16]],[[25916,38054],[-58,7],[-333,7],[-117,17],[-171,83],[-222,60],[-246,130],[-99,78],[-64,73],[-70,108],[-45,115],[-95,206]],[[59487,66347],[56,-142],[78,-155],[44,-116],[78,-156],[42,-115],[78,-155]],[[59863,65508],[45,-115]],[[59908,65393],[44,-77],[120,-176]],[[60072,65140],[-76,-156]],[[59996,64984],[-74,-128],[-59,-141]],[[59863,64715],[-67,-106],[-83,-97],[-110,-113],[-71,-57]],[[59532,64342],[-148,-83]],[[59384,64259],[-75,-82],[-28,-52]],[[59281,64125],[-45,-111],[-66,-129],[-54,-142]],[[59116,63743],[-69,-131]],[[59047,63612],[-42,-112],[17,-190]],[[59022,63310],[3,-373]],[[59025,62937],[10,-146],[21,-104]],[[59056,62687],[24,-50]],[[59080,62637],[37,-70],[94,-29]],[[59211,62538],[50,-20],[142,-87]],[[59403,62431],[103,-49],[132,-113],[164,-179],[116,-139]],[[59918,61951],[73,-123]],[[59991,61828],[34,-91],[82,-122]],[[60107,61615],[171,-206],[58,-80]],[[52316,60510],[-14,144]],[[52302,60654],[-3,323],[8,104]],[[52307,61081],[20,100]],[[52327,61181],[57,134],[28,120],[23,225],[23,91],[108,245]],[[52566,61996],[92,132]],[[52658,62128],[116,107]],[[52774,62235],[151,85],[111,91]],[[53036,62411],[181,190]],[[53217,62601],[100,70]],[[53317,62671],[100,50],[117,73]],[[53534,62794],[104,48],[141,88]],[[53779,62930],[103,49],[142,81]],[[54024,63060],[56,16]],[[54080,63076],[89,10],[122,-1],[157,-15]],[[59102,66739],[157,-39]],[[59259,66700],[63,-49]],[[59322,66651],[62,-81],[36,-93],[67,-130]],[[66461,18207],[109,-247],[56,-78]],[[66626,17882],[91,-92],[73,-55],[103,-51],[120,-99],[61,-75],[57,-116]],[[67131,17394],[32,-185],[17,-58],[77,-149],[70,-80]],[[67327,16922],[53,-20],[180,-27]],[[67560,16875],[61,-15],[117,-56]],[[67738,16804],[145,-36]],[[67883,16768],[118,-8],[111,-31]],[[68112,16729],[120,-64],[109,-32]],[[68341,16633],[177,-16],[84,-20],[144,-81]],[[68746,16516],[103,-50]],[[68849,16466],[114,-95]],[[68963,16371],[357,-395],[136,-134]],[[69456,15842],[-61,-96]],[[69395,15746],[-55,-65]],[[69340,15681],[-61,-57],[-78,-51],[-235,-138]],[[68966,15435],[-194,-54]],[[68772,15381],[-171,-83],[-119,-25]],[[68482,15273],[-94,-4],[-348,3],[-126,-2]],[[67914,15270],[-150,-28],[-143,-79]],[[67621,15163],[-103,-48],[-118,-74]],[[67400,15041],[-151,-83],[-72,-61]],[[67177,14897],[-118,-147],[-56,-97]],[[67003,14653],[-57,-54],[-131,-91]],[[66815,14508],[-151,-76]],[[66664,14432],[-144,-78],[-112,-30]],[[66408,14324],[-111,-31],[-171,-85],[-139,-36]],[[65987,14172],[-172,-77],[-106,-13],[-53,15],[-216,116]],[[65440,14213],[-117,71],[-54,22]],[[65269,14306],[-123,20]],[[65146,14326],[-130,2],[-159,-8]],[[64857,14320],[-94,-16],[-86,-82],[-159,-109]],[[64518,14113],[-128,-118],[-95,-63]],[[64295,13932],[-175,-82]],[[64120,13850],[-101,-46]],[[64019,13804],[-91,-12],[-154,-7]],[[63774,13785],[-629,4],[-215,-13]],[[62930,13776],[-83,-29],[-117,-69]],[[62730,13678],[-105,-49],[-139,-87]],[[62486,13542],[-103,-52],[-75,-55]],[[62308,13435],[-165,-145]],[[62143,13290],[-175,-105]],[[61968,13185],[-68,-63]],[[61900,13122],[-200,-202],[-72,-54]],[[61628,12866],[-150,-88]],[[61478,12778],[-68,-62],[-200,-201]],[[61210,12515],[-70,-54],[-103,-54]],[[61037,12407],[-49,-35]],[[60988,12372],[-68,-63],[-178,-185],[-92,-72]],[[60650,12052],[-245,-131],[-169,-41]],[[60236,11880],[-54,-17],[-143,-81],[-104,-49]],[[59935,11733],[-142,-82]],[[59793,11651],[-226,-52],[-97,-31]],[[59470,11568],[-73,-18],[46,-261]],[[59443,11289],[28,-89]],[[59471,11200],[64,-130],[43,-115],[79,-155]],[[59657,10800],[44,-115],[78,-155],[44,-117]],[[59823,10413],[76,-155],[45,-115]],[[59944,10143],[89,-131],[323,-366],[138,-131]],[[60494,9515],[51,-31]],[[60545,9484],[167,-42]],[[60712,9442],[103,-41]],[[60815,9401],[94,-56],[104,-50],[69,-50]],[[61082,9245],[173,-152],[98,-53]],[[61353,9040],[49,-30],[76,-83]],[[61478,8927],[91,-208]],[[61569,8719],[15,-77],[-9,-52]],[[61575,8590],[-37,-98],[-44,-150],[-52,-126]],[[61442,8216],[-112,0]],[[61330,8216],[-80,-22],[-118,-67]],[[61132,8127],[-103,-48],[-141,-89]],[[60888,7990],[-104,-49],[-141,-87],[-103,-49],[-140,-88],[-103,-48]],[[60297,7669],[-144,-79]],[[60153,7590],[-85,-21]],[[60068,7569],[-175,-20],[-109,-31]],[[59784,7518],[-149,-73]],[[59635,7445],[-259,-64],[-142,33]],[[59234,7414],[-129,-10],[-61,-21]],[[59044,7383],[-145,-67]],[[58899,7316],[-283,-49],[-145,-68]],[[58471,7199],[-61,-24],[-196,-23]],[[58214,7152],[-169,1],[-131,16],[-62,19],[-145,71]],[[57707,7259],[-97,24],[-136,9]],[[57474,7292],[-379,5]],[[57095,7297],[-170,29]],[[55397,10874],[201,149]],[[55598,11023],[58,33],[94,24]],[[55750,11080],[316,13]],[[56066,11093],[200,99]],[[56266,11192],[170,38],[55,20]],[[56491,11250],[26,14]],[[56517,11264],[71,57],[174,182],[69,61]],[[56831,11564],[78,41]],[[56909,11605],[83,21],[37,95]],[[57029,11721],[38,35],[129,90]],[[57196,11846],[47,29],[272,117],[142,43]],[[57657,12035],[115,173]],[[57772,12208],[58,71]],[[57830,12279],[215,252]],[[58045,12531],[42,64],[72,138]],[[58159,12733],[-197,85],[-56,16]],[[57906,12834],[-168,40]],[[57738,12874],[-144,75],[-84,21]],[[57510,12970],[-233,32],[-199,92]],[[57078,13094],[-88,14],[-207,7],[-117,18]],[[56666,13133],[-82,42]],[[56584,13175],[-71,62],[-180,193]],[[56333,13430],[-107,124],[-53,81]],[[56173,13635],[-13,31]],[[56160,13666],[-17,63],[-3,97],[20,95]],[[56160,13921],[67,110],[66,73]],[[56293,14104],[203,218],[82,102]],[[56578,14424],[50,84]],[[56628,14508],[59,137],[24,8]],[[56711,14653],[28,24]],[[56739,14677],[103,179],[56,142],[72,160]],[[56970,15158],[26,124],[100,148]],[[57096,15430],[55,171],[-25,129]],[[57126,15730],[-11,141],[0,173],[16,95],[26,55]],[[57157,16194],[39,38],[106,71]],[[57302,16303],[127,57],[140,33]],[[57569,16393],[147,70],[109,28]],[[57825,16491],[116,-11],[53,-19],[115,-70]],[[58109,16391],[103,-51],[116,-71]],[[58328,16269],[87,-29],[95,-13]],[[58510,16227],[230,6],[154,22]],[[58894,16255],[-120,176],[-44,77]],[[58730,16508],[-45,114],[-75,158]],[[58610,16780],[-20,128],[1,131]],[[58591,17039],[33,153]],[[58624,17192],[67,163],[33,152]],[[58724,17507],[147,365]],[[58871,17872],[36,54]],[[58907,17926],[60,75],[121,102]],[[59088,18103],[103,50]],[[59191,18153],[143,80]],[[59334,18233],[119,24]],[[59453,18257],[93,4],[381,-9],[123,4]],[[60050,18256],[89,17],[75,44]],[[60214,18317],[70,88]],[[60284,18405],[61,138],[160,241],[48,111]],[[60553,18895],[62,96],[99,64]],[[60714,19055],[60,14],[135,8],[242,-10]],[[61151,19067],[195,-25],[53,-88],[76,-99]],[[61475,18855],[529,-595]],[[62004,18260],[116,-101]],[[62120,18159],[112,-39]],[[62232,18120],[119,-10]],[[62351,18110],[151,6],[86,19]],[[62588,18135],[92,62]],[[62680,18197],[104,149]],[[62784,18346],[86,44]],[[62870,18390],[8,165],[19,94]],[[62897,18649],[67,161],[16,60]],[[62980,18870],[39,186]],[[63019,19056],[120,271]],[[63139,19327],[50,83],[131,183]],[[63320,19593],[62,141],[50,80]],[[63432,19814],[120,148],[113,111]],[[63665,20073],[73,53],[103,51]],[[63841,20177],[140,85],[105,48],[140,86],[105,49]],[[64331,20445],[140,86]],[[64471,20531],[128,63],[116,74]],[[64715,20668],[103,49],[143,81]],[[64961,20798],[152,27]],[[65113,20825],[351,4],[95,6]],[[65559,20835],[59,8],[138,-248],[25,-54]],[[65781,20541],[17,-61]],[[65798,20480],[37,-185],[56,-133]],[[65891,20162],[19,-57],[45,-217]],[[65955,19888],[74,-157],[43,-116],[74,-157]],[[66146,19458],[37,-186]],[[66183,19272],[16,-61],[69,-160],[15,-61]],[[66283,18990],[38,-185]],[[66321,18805],[57,-132],[28,-122]],[[66406,18551],[16,-194],[39,-150]],[[146032,60088],[91,-107],[109,-112],[78,-68]],[[146310,59801],[86,-91]],[[146396,59710],[184,-188],[36,-67]],[[146616,59455],[-35,-135]],[[146581,59320],[69,-147]],[[146650,59173],[-37,-123]],[[146613,59050],[-27,-177],[53,-193]],[[146639,58680],[-23,-114],[0,-80],[59,-110]],[[146675,58376],[50,-45],[140,-159]],[[146865,58172],[50,-64],[30,-99],[212,-587]],[[147157,57422],[49,-198]],[[147206,57224],[-16,-116],[-50,-125]],[[147140,56983],[-34,-85],[45,-112],[11,-67]],[[147162,56719],[9,-50]],[[147171,56669],[27,-49]],[[147198,56620],[18,-39],[-76,-155]],[[147140,56426],[-9,-25]],[[147131,56401],[-106,-5]],[[147025,56396],[-50,-114],[-8,-98],[-30,-101]],[[146937,56083],[-87,-203],[-150,-319],[-92,-158],[-95,-74]],[[146513,55329],[-63,-108],[-112,-55],[9,-58]],[[146347,55108],[39,-262],[-64,4],[-67,64],[-15,-21]],[[146240,54893],[15,-56],[-40,-130]],[[146215,54707],[-43,22]],[[146172,54729],[-53,27]],[[146119,54756],[-56,-68]],[[146063,54688],[-159,-143],[-106,-86]],[[145798,54459],[-159,-87],[-11,-130]],[[145628,54242],[-75,-29],[8,-104]],[[145561,54109],[59,-46],[27,-50]],[[145647,54013],[104,-38],[45,-1]],[[145796,53974],[130,-121]],[[145926,53853],[51,-77],[88,-65],[34,-59]],[[146099,53652],[50,-125],[-45,-53],[62,-165],[-59,-119],[-42,-56]],[[146065,53134],[-41,-64],[-58,-142]],[[145966,52928],[-1,-99],[-14,-95]],[[145951,52734],[-6,-147],[190,-273]],[[146135,52314],[122,-219],[36,-109]],[[146293,51986],[28,-38],[0,-66],[115,-68]],[[146436,51814],[109,-33],[36,-27]],[[146581,51754],[80,-83],[5,-48]],[[146666,51623],[-8,-106],[15,-27]],[[146673,51490],[-21,-56],[6,-58]],[[146658,51376],[4,-38],[-73,-20],[-53,14]],[[146536,51332],[-53,0]],[[146483,51332],[-5,-87]],[[146478,51245],[28,-37]],[[143395,62427],[302,113]],[[143697,62540],[308,97],[30,4]],[[144035,62641],[93,5]],[[144128,62646],[106,-28]],[[144234,62618],[19,-13]],[[144253,62605],[158,-120]],[[144411,62485],[39,-15]],[[144450,62470],[9,-4]],[[144459,62466],[16,-5]],[[144475,62461],[196,-79],[113,-142],[70,-170],[26,-131]],[[144880,61939],[67,-133]],[[144947,61806],[-112,-237]],[[144835,61569],[-42,-111],[-20,-91],[14,-98],[26,-72],[42,-60]],[[144855,61137],[66,-92]],[[144921,61045],[22,-54]],[[144943,60991],[9,-173],[-11,-136]],[[144941,60682],[14,-60],[70,-76]],[[145025,60546],[155,-52]],[[145180,60494],[81,-32],[279,-181],[61,-32],[214,-45],[64,-5],[109,-68]],[[145988,60131],[44,-43]],[[62472,72158],[11,-3]],[[62483,72155],[10,3]],[[62493,72158],[11,0]],[[62504,72158],[20,-3]],[[62524,72155],[37,-3]],[[62561,72152],[14,-3]],[[62575,72149],[0,-3]],[[62575,72146],[21,-7]],[[62596,72139],[0,-3]],[[62596,72136],[18,3]],[[62614,72139],[0,-3]],[[62614,72136],[14,-6]],[[62628,72130],[7,0]],[[62635,72130],[0,9]],[[62635,72139],[-21,13]],[[62614,72152],[16,3]],[[62630,72155],[0,-3]],[[62630,72152],[16,-3]],[[62646,72149],[0,-3]],[[62646,72146],[3,-7]],[[62649,72139],[-3,-13]],[[62646,72126],[15,-10]],[[62661,72116],[24,0]],[[62685,72116],[20,7]],[[62705,72123],[17,-4]],[[62722,72119],[3,-3]],[[62725,72116],[11,3]],[[62736,72119],[20,0]],[[62756,72119],[10,17]],[[62766,72136],[18,-3]],[[62784,72133],[33,-10]],[[62817,72123],[21,-9]],[[62838,72114],[60,2]],[[62898,72116],[14,-6]],[[62912,72110],[0,-3]],[[62912,72107],[21,0]],[[62933,72107],[14,-39]],[[62947,72068],[17,16]],[[62964,72084],[3,0]],[[62967,72084],[22,3]],[[62989,72087],[33,-6]],[[63022,72081],[26,-26]],[[63048,72055],[24,-26]],[[63072,72029],[35,0]],[[63107,72029],[0,7]],[[63107,72036],[7,-4]],[[63114,72032],[-2,-9]],[[63112,72023],[13,3]],[[63125,72026],[0,3]],[[63125,72029],[29,7]],[[63154,72036],[11,3]],[[63165,72039],[19,0]],[[63184,72039],[0,-3]],[[63184,72036],[41,-4]],[[63225,72032],[10,16]],[[63235,72048],[14,4]],[[63249,72052],[0,3]],[[63249,72055],[39,7]],[[63288,72062],[0,2]],[[63288,72064],[16,4]],[[63304,72068],[2,7]],[[63306,72075],[20,-11]],[[63326,72064],[8,-5]],[[63334,72059],[12,-4]],[[63346,72055],[0,-3]],[[63346,72052],[10,-4]],[[63356,72048],[0,-3]],[[63356,72045],[25,0]],[[63381,72045],[6,10]],[[63387,72055],[12,4]],[[63399,72059],[0,3]],[[63399,72062],[7,2]],[[63406,72064],[0,4]],[[63406,72068],[25,-13]],[[63431,72055],[39,-7]],[[63470,72048],[-8,-32]],[[63462,72016],[0,-3]],[[63462,72013],[20,-6]],[[63482,72007],[30,0]],[[63512,72007],[6,3]],[[63518,72010],[0,-3]],[[63518,72007],[20,-4]],[[63538,72003],[14,0]],[[63552,72003],[14,4]],[[63566,72007],[0,-4]],[[63566,72003],[47,-6]],[[63613,71997],[0,-4]],[[63613,71993],[55,-9]],[[63668,71984],[0,-3]],[[63668,71981],[23,3]],[[63691,71984],[0,-3]],[[63691,71981],[27,0]],[[63718,71981],[15,-10]],[[63733,71971],[10,3]],[[63743,71974],[11,3]],[[63754,71977],[18,-3]],[[63772,71974],[0,-3]],[[63772,71971],[21,10]],[[63793,71981],[10,-4]],[[63803,71977],[7,-3]],[[63810,71974],[12,-6]],[[63822,71968],[5,0]],[[63827,71968],[11,3]],[[63838,71971],[20,3]],[[63858,71974],[17,3]],[[63875,71977],[0,-3]],[[63875,71974],[25,-3]],[[63900,71971],[8,0]],[[63908,71971],[8,-3]],[[63916,71968],[0,-4]],[[63916,71964],[8,-3]],[[63924,71961],[4,-6]],[[63928,71955],[21,-10]],[[63949,71945],[20,-9]],[[63969,71936],[36,9]],[[64005,71945],[6,-3]],[[64011,71942],[8,-6]],[[64019,71936],[0,-4]],[[64019,71932],[33,7]],[[64052,71939],[0,-3]],[[64052,71936],[18,-10]],[[64070,71926],[0,-3]],[[64070,71923],[21,-3]],[[64091,71920],[0,-4]],[[64091,71916],[18,-7]],[[64109,71909],[0,-3]],[[64109,71906],[28,-3]],[[64137,71903],[0,-3]],[[64137,71900],[25,0],[13,-3]],[[64175,71897],[0,-7]],[[64175,71890],[12,10]],[[64187,71900],[5,0]],[[64192,71900],[16,-7]],[[64208,71893],[4,0]],[[64212,71893],[21,-6]],[[64233,71887],[9,-6]],[[64242,71881],[19,-7]],[[64261,71874],[51,-25]],[[64312,71849],[11,-14]],[[64323,71835],[0,-3]],[[64323,71832],[16,-6]],[[64339,71826],[18,0]],[[64357,71826],[7,-7]],[[64364,71819],[0,-3]],[[64364,71816],[32,0]],[[64396,71816],[29,0]],[[64425,71816],[17,-13]],[[64442,71803],[4,-3]],[[64446,71800],[22,-3]],[[64468,71797],[0,-4]],[[64468,71793],[105,-3]],[[64573,71790],[15,-3]],[[64588,71787],[14,3]],[[64602,71790],[0,-3]],[[64602,71787],[21,3]],[[64623,71790],[0,-3]],[[64623,71787],[90,-10]],[[64713,71777],[0,-3]],[[64713,71774],[16,13]],[[64729,71787],[5,6]],[[64734,71793],[-4,-10]],[[64730,71783],[0,-16]],[[64730,71767],[14,-3]],[[64744,71764],[22,-10]],[[64766,71754],[91,7]],[[64857,71761],[9,-13]],[[64866,71748],[16,3]],[[64882,71751],[3,0]],[[64885,71751],[42,-9]],[[64927,71742],[19,6]],[[64946,71748],[15,-3]],[[64961,71745],[2,-7]],[[64963,71738],[33,7]],[[64996,71745],[0,3]],[[64996,71748],[17,0]],[[65013,71748],[0,3]],[[65013,71751],[25,-6]],[[65038,71745],[0,3]],[[65038,71748],[25,-3]],[[65063,71745],[3,0]],[[65066,71745],[26,3]],[[65092,71748],[0,-3]],[[65092,71745],[22,-7]],[[65114,71738],[0,-3]],[[65114,71735],[30,-6]],[[65144,71729],[8,-7]],[[65152,71722],[17,-3]],[[65169,71719],[0,-4]],[[65169,71715],[40,-5]],[[65209,71710],[0,-4]],[[65209,71706],[21,-3]],[[65230,71703],[0,-4]],[[65230,71699],[15,4]],[[65245,71703],[0,-4]],[[65245,71699],[35,4]],[[65280,71703],[54,-4]],[[65334,71699],[7,4]],[[65341,71703],[0,-4]],[[65341,71699],[12,-3]],[[65353,71696],[0,3]],[[65353,71699],[28,0]],[[65381,71699],[0,4]],[[65381,71703],[44,-7]],[[65425,71696],[31,-6]],[[65456,71690],[20,3]],[[65476,71693],[0,-3]],[[65476,71690],[21,3]],[[65497,71693],[7,6]],[[65504,71699],[63,0]],[[65567,71699],[0,-3]],[[65567,71696],[14,-6]],[[65581,71690],[0,-3]],[[65581,71687],[25,-4]],[[65606,71683],[14,-3]],[[65620,71680],[16,3]],[[65636,71683],[0,-3]],[[65636,71680],[24,-6]],[[65660,71674],[27,0]],[[65687,71674],[25,0]],[[65712,71674],[30,-10]],[[65742,71664],[34,3]],[[65776,71667],[23,4]],[[65799,71671],[24,-4]],[[65823,71667],[19,7]],[[65842,71674],[26,6]],[[65868,71680],[0,3]],[[65868,71683],[19,7]],[[65887,71690],[36,16]],[[65923,71706],[12,9]],[[65935,71715],[0,4]],[[65935,71719],[59,-13]],[[65994,71706],[14,4]],[[66008,71710],[0,-4]],[[66008,71706],[-9,-10]],[[65999,71696],[-30,7]],[[65969,71703],[-26,-4]],[[65943,71699],[0,-9]],[[65943,71690],[20,-10]],[[65963,71680],[6,10]],[[65969,71690],[0,-3]],[[65969,71687],[25,-36]],[[65994,71651],[10,-7]],[[66004,71644],[9,-2]],[[66013,71642],[0,-3]],[[66013,71639],[11,-4]],[[66024,71635],[0,4]],[[66024,71639],[25,-4]],[[66049,71635],[9,-16]],[[66058,71619],[41,3]],[[66099,71622],[2,-6]],[[66101,71616],[53,6]],[[66154,71622],[6,3]],[[66160,71625],[11,7]],[[66171,71632],[0,3]],[[66171,71635],[6,4]],[[66177,71639],[9,5]],[[66186,71644],[16,17]],[[66202,71661],[8,-6]],[[66210,71655],[29,-11]],[[66239,71644],[0,4]],[[66239,71648],[16,3]],[[66255,71651],[5,-12]],[[66260,71639],[15,5]],[[66275,71644],[36,7]],[[66311,71651],[22,-7]],[[66333,71644],[13,-9]],[[66346,71635],[42,-10]],[[66388,71625],[0,-3]],[[66388,71622],[53,-6]],[[66441,71616],[1,3]],[[66442,71619],[47,-7]],[[66489,71612],[0,4]],[[66489,71616],[30,12]],[[66519,71628],[0,-3]],[[66519,71625],[53,-9]],[[66572,71616],[1,6]],[[66573,71622],[44,3]],[[66617,71625],[20,7]],[[66637,71632],[52,-4]],[[66689,71628],[6,0]],[[66695,71628],[58,7]],[[66753,71635],[23,-7]],[[66776,71628],[14,4]],[[66790,71632],[21,-7]],[[66811,71625],[15,3]],[[66826,71628],[0,-3]],[[66826,71625],[86,7]],[[66912,71632],[0,3]],[[66912,71635],[45,9]],[[66957,71644],[5,4]],[[66962,71648],[0,-9]],[[66962,71639],[-2,-20]],[[66960,71619],[14,-3]],[[66974,71616],[0,-4]],[[66974,71612],[7,-3]],[[66981,71609],[62,-6]],[[67043,71603],[14,0]],[[67057,71603],[0,3]],[[67057,71606],[19,3]],[[67076,71609],[17,10]],[[67093,71619],[19,3]],[[67112,71622],[0,3]],[[67112,71625],[26,-3]],[[67138,71622],[25,0]],[[67163,71622],[25,-3]],[[67188,71619],[16,0]],[[67204,71619],[6,-3]],[[67210,71616],[6,3]],[[67216,71619],[22,3]],[[67238,71622],[14,6]],[[67252,71628],[17,4]],[[67269,71632],[0,3]],[[67269,71635],[21,0]],[[67290,71635],[82,-3]],[[67372,71632],[41,-4]],[[67413,71628],[33,16]],[[67446,71644],[28,4]],[[67474,71648],[0,3]],[[67474,71651],[15,4]],[[67489,71655],[43,0]],[[67532,71655],[20,6]],[[67552,71661],[0,3]],[[67552,71664],[23,16]],[[67575,71680],[10,19]],[[67585,71699],[21,7]],[[67606,71706],[0,-3]],[[67606,71703],[39,-7]],[[67645,71696],[15,-9]],[[67660,71687],[65,6]],[[67725,71693],[0,-3]],[[67725,71690],[33,6]],[[67758,71696],[59,7]],[[67817,71703],[20,0]],[[67837,71703],[0,3]],[[67837,71706],[44,0]],[[67881,71706],[0,-3]],[[67881,71703],[63,0]],[[67944,71703],[20,3]],[[67964,71706],[29,4]],[[67993,71710],[50,16]],[[68043,71726],[2,-30],[66,-9]],[[68111,71687],[63,6]],[[68174,71693],[10,0]],[[68184,71693],[20,0]],[[68204,71693],[0,3]],[[68204,71696],[11,3]],[[68215,71699],[0,7]],[[68215,71706],[6,4]],[[68221,71710],[8,5]],[[68229,71715],[5,-3]],[[68234,71712],[0,-2]],[[68234,71710],[15,-14]],[[68249,71696],[2,-6]],[[68251,71690],[16,3]],[[68267,71693],[17,6]],[[68284,71699],[20,4]],[[68304,71703],[2,0]],[[68306,71703],[14,-7]],[[68320,71696],[26,-6]],[[68346,71690],[44,-7]],[[68390,71683],[1,7]],[[68391,71690],[39,-7]],[[68430,71683],[5,-6]],[[68435,71677],[22,3]],[[68457,71680],[0,-3]],[[68457,71677],[76,3]],[[68533,71680],[58,3]],[[68591,71683],[22,0]],[[68613,71683],[0,4]],[[68613,71687],[25,-7]],[[68638,71680],[0,3]],[[68638,71683],[25,-3]],[[68663,71680],[19,-6]],[[68682,71674],[36,-7]],[[68718,71667],[29,-16]],[[68747,71651],[22,-3]],[[68769,71648],[9,-9]],[[68778,71639],[66,-17]],[[68844,71622],[6,-6]],[[68850,71616],[49,-16]],[[68899,71600],[10,-4]],[[68909,71596],[46,-16]],[[68955,71580],[6,0]],[[68961,71580],[59,-3]],[[69020,71577],[0,-6]],[[69020,71571],[10,-4]],[[69030,71567],[0,-3]],[[69030,71564],[22,0]],[[69052,71564],[70,-13]],[[69122,71551],[34,-3]],[[69156,71548],[0,-3]],[[69156,71545],[17,-17]],[[69173,71528],[17,7]],[[69190,71535],[46,0]],[[69236,71535],[0,-16]],[[69236,71519],[-24,6]],[[69212,71525],[0,-45]],[[69212,71480],[21,9]],[[69233,71489],[18,-25]],[[69251,71464],[13,-3]],[[69264,71461],[0,-4]],[[69264,71457],[25,-3]],[[69289,71454],[73,-13]],[[69362,71441],[78,-12]],[[69440,71429],[0,-4]],[[69440,71425],[30,-3]],[[69470,71422],[0,-4]],[[69470,71418],[53,-6]],[[69523,71412],[0,-3]],[[69523,71409],[50,-3]],[[69573,71406],[57,-10]],[[69630,71396],[50,-3]],[[69680,71393],[2,6]],[[69682,71399],[9,7]],[[69691,71406],[-12,-122],[-6,-230],[-2,-411]],[[69671,70643],[5,-109]],[[69676,70534],[34,-169],[106,-244],[80,-155]],[[69896,69966],[107,-244]],[[70003,69722],[32,-133],[6,-110]],[[70041,69479],[-3,-587],[381,2]],[[70419,68894],[204,22],[268,-30]],[[70891,68886],[58,-10]],[[70949,68876],[80,-28],[120,-61]],[[71149,68787],[93,-23],[130,-8],[331,-1]],[[71703,68755],[159,-28],[144,-79]],[[72006,68648],[103,-49],[117,-73]],[[72226,68526],[151,-85]],[[72377,68441],[70,-62],[103,-120]],[[72550,68259],[92,-136]],[[72642,68123],[85,-46],[-4,-269],[-7,-65]],[[72716,67743],[-36,-117]],[[72680,67626],[-52,-104],[-56,-141]],[[72572,67381],[-108,-194],[-36,-39]],[[72428,67148],[-131,-101]],[[72297,67047],[-198,-202],[-92,-81]],[[72007,66764],[-246,-136],[-127,-41],[-11,-335]],[[71623,66252],[-3,-626]],[[71620,65626],[3,-194],[19,-149],[61,-164],[33,-144]],[[71736,64975],[7,-116]],[[71743,64859],[-1,-718],[-8,-158]],[[71734,63983],[-14,-153]],[[57110,70000],[5,10]],[[57115,70010],[20,16]],[[57135,70026],[21,10]],[[57156,70036],[42,3]],[[57198,70039],[0,3]],[[57198,70042],[8,0]],[[57206,70042],[0,3]],[[57206,70045],[28,3]],[[57234,70048],[32,0]],[[57266,70048],[11,0]],[[57277,70048],[19,-6]],[[57296,70042],[0,-3]],[[57296,70039],[20,0]],[[57316,70039],[13,6]],[[57329,70045],[17,26]],[[57346,70071],[0,4]],[[57346,70075],[16,41]],[[57362,70116],[36,49]],[[57398,70165],[21,-13]],[[57419,70152],[13,0]],[[57432,70152],[8,-19]],[[57440,70133],[0,-7]],[[57440,70126],[9,0]],[[57449,70126],[0,4]],[[57449,70130],[44,3]],[[57493,70133],[11,9]],[[57504,70142],[20,16]],[[57524,70158],[11,13]],[[57535,70171],[50,7]],[[57585,70178],[15,-10]],[[57600,70168],[35,-3]],[[57635,70165],[25,6]],[[57660,70171],[23,-9]],[[57683,70162],[-3,-7]],[[57680,70155],[30,-3]],[[57710,70152],[0,3]],[[57710,70155],[25,7]],[[57735,70162],[-4,23]],[[57731,70185],[29,-4]],[[57760,70181],[0,4]],[[57760,70185],[50,-11]],[[57810,70174],[0,4]],[[57810,70178],[1,7]],[[57811,70185],[9,12]],[[57820,70197],[14,13]],[[57834,70210],[7,13]],[[57841,70223],[6,3]],[[57847,70226],[0,3]],[[57847,70229],[14,7]],[[57861,70236],[6,10]],[[57867,70246],[13,3]],[[57880,70249],[8,19]],[[57888,70268],[-8,17]],[[57880,70285],[6,6]],[[57886,70291],[31,-10]],[[57917,70281],[0,4]],[[57917,70285],[14,6]],[[57931,70291],[0,3]],[[57931,70294],[14,3]],[[57945,70297],[0,4]],[[57945,70301],[22,-4]],[[57967,70297],[0,-3]],[[57967,70294],[24,-6]],[[57991,70288],[6,6]],[[57997,70294],[45,-3]],[[58042,70291],[0,-3]],[[58042,70288],[59,-3]],[[58101,70285],[0,-4]],[[58101,70281],[97,-9]],[[58198,70272],[6,-10]],[[58204,70262],[11,-6]],[[58215,70256],[0,-4]],[[58215,70252],[17,4]],[[58232,70256],[5,6]],[[58237,70262],[6,3]],[[58243,70265],[0,3]],[[58243,70268],[10,4]],[[58253,70272],[0,3]],[[58253,70275],[22,29]],[[58275,70304],[14,9]],[[58289,70313],[40,11]],[[58329,70324],[19,0]],[[58348,70324],[6,-4]],[[58354,70320],[0,-3]],[[58354,70317],[25,-10]],[[58379,70307],[11,-3]],[[58390,70304],[6,6]],[[58396,70310],[3,0]],[[58399,70310],[32,3]],[[58431,70313],[4,-3]],[[58435,70310],[24,-6]],[[58459,70304],[11,0]],[[58470,70304],[12,3]],[[58482,70307],[5,6]],[[58487,70313],[14,-6]],[[58501,70307],[14,-3]],[[58515,70304],[37,3]],[[58552,70307],[0,-3]],[[58552,70304],[14,-19]],[[58566,70285],[0,3]],[[58566,70288],[21,9]],[[58587,70297],[4,4]],[[58591,70301],[0,3]],[[58591,70304],[-18,13]],[[58573,70317],[7,9]],[[58580,70326],[0,7]],[[58580,70333],[10,7]],[[58590,70340],[1,6]],[[58591,70346],[25,10]],[[58616,70356],[27,9]],[[58643,70365],[23,13]],[[58666,70378],[11,13]],[[58677,70391],[66,0]],[[58743,70391],[4,-7]],[[58747,70384],[39,-3]],[[58786,70381],[13,10]],[[58799,70391],[39,6]],[[58838,70397],[11,7]],[[58849,70404],[54,16]],[[58903,70420],[0,3]],[[58903,70423],[21,4]],[[58924,70427],[0,3]],[[58924,70430],[29,6]],[[58953,70436],[0,3]],[[58953,70439],[55,17]],[[59008,70456],[0,3]],[[59008,70459],[22,7]],[[59030,70466],[9,6]],[[59039,70472],[16,6]],[[59055,70478],[25,13]],[[59080,70491],[25,10]],[[59105,70501],[6,6]],[[59111,70507],[19,7]],[[59130,70514],[14,9]],[[59144,70523],[15,4]],[[59159,70527],[2,7]],[[59161,70534],[20,9]],[[59181,70543],[28,16]],[[59209,70559],[32,3]],[[59241,70562],[24,10]],[[59265,70572],[22,6]],[[59287,70578],[0,4]],[[59287,70582],[16,3]],[[59303,70585],[9,6]],[[59312,70591],[25,10]],[[59337,70601],[39,13]],[[59376,70614],[14,3]],[[59390,70617],[7,7]],[[59397,70624],[20,6]],[[59417,70630],[6,7]],[[59423,70637],[48,16]],[[59471,70653],[13,13]],[[59484,70666],[9,3]],[[59493,70669],[5,7]],[[59498,70676],[23,12]],[[59521,70688],[11,10]],[[59532,70698],[5,3]],[[59537,70701],[0,4]],[[59537,70705],[12,3]],[[59549,70708],[0,3]],[[59549,70711],[-1,36]],[[59548,70747],[-2,6]],[[59546,70753],[3,16]],[[59549,70769],[0,-3]],[[59549,70766],[25,-13]],[[59574,70753],[8,3]],[[59582,70756],[8,10]],[[59590,70766],[0,19]],[[59590,70785],[-16,7]],[[59574,70792],[0,-4]],[[59574,70788],[-25,7]],[[59549,70795],[-1,-7]],[[59548,70788],[-9,-6]],[[59539,70782],[-2,-10]],[[59537,70772],[-8,-3]],[[59529,70769],[3,19]],[[59532,70788],[5,4]],[[59537,70792],[2,6]],[[59539,70798],[7,3]],[[59546,70801],[3,7]],[[59549,70808],[41,55]],[[59590,70863],[0,3]],[[59590,70866],[13,3]],[[59603,70869],[0,-3]],[[59603,70866],[18,10]],[[59621,70876],[8,3]],[[59629,70879],[11,-7]],[[59640,70872],[0,4]],[[59640,70876],[9,3]],[[59649,70879],[3,0]],[[59652,70879],[22,0]],[[59674,70879],[5,0]],[[59679,70879],[27,7]],[[59706,70886],[3,2]],[[59709,70888],[51,10]],[[59760,70898],[3,7]],[[59763,70905],[7,3]],[[59770,70908],[10,10]],[[59780,70918],[24,32]],[[59804,70950],[26,3]],[[59830,70953],[25,4]],[[59855,70957],[5,6]],[[59860,70963],[14,0]],[[59874,70963],[2,7]],[[59876,70970],[6,3]],[[59882,70973],[5,9]],[[59887,70982],[7,7]],[[59894,70989],[0,3]],[[59894,70992],[13,10]],[[59907,71002],[8,9]],[[59915,71011],[11,3]],[[59926,71014],[0,4]],[[59926,71018],[6,3]],[[59932,71021],[0,4]],[[59932,71025],[-5,3]],[[59927,71028],[0,51]],[[59927,71079],[17,7]],[[59944,71086],[0,-4]],[[59944,71082],[17,0]],[[59961,71082],[4,7]],[[59965,71089],[12,3]],[[59977,71092],[0,4]],[[59977,71096],[20,3]],[[59997,71099],[0,3]],[[59997,71102],[19,-3]],[[60016,71099],[0,3]],[[60016,71102],[25,13]],[[60041,71115],[0,3]],[[60041,71118],[47,7]],[[60088,71125],[14,25]],[[60102,71150],[19,-6]],[[60121,71144],[0,3]],[[60121,71147],[21,3]],[[60142,71150],[11,7]],[[60153,71157],[75,3]],[[60228,71160],[24,7]],[[60252,71167],[0,3]],[[60252,71170],[1,6]],[[60253,71176],[10,4]],[[60263,71180],[1,0]],[[60264,71180],[10,3]],[[60274,71183],[9,16]],[[60283,71199],[17,-3]],[[60300,71196],[0,3]],[[60300,71199],[28,6]],[[60328,71205],[0,3]],[[60328,71208],[56,7]],[[60384,71215],[19,9]],[[60403,71224],[22,7]],[[60425,71231],[19,13]],[[60444,71244],[12,3]],[[60456,71247],[0,4]],[[60456,71251],[24,6]],[[60480,71257],[9,6]],[[60489,71263],[6,4]],[[60495,71267],[10,-7]],[[60505,71260],[34,10]],[[60539,71270],[28,3]],[[60567,71273],[14,17]],[[60581,71290],[0,2]],[[60581,71292],[19,7]],[[60600,71299],[15,7]],[[60615,71306],[22,6]],[[60637,71312],[0,3]],[[60637,71315],[24,3]],[[60661,71318],[0,4]],[[60661,71322],[25,3]],[[60686,71325],[0,3]],[[60686,71328],[34,7]],[[60720,71335],[11,3]],[[60731,71338],[34,9]],[[60765,71347],[5,-3]],[[60770,71344],[17,3]],[[60787,71347],[2,-6]],[[60789,71341],[25,-3]],[[60814,71338],[20,-3]],[[60834,71335],[9,-4]],[[60843,71331],[10,7]],[[60853,71338],[15,-13]],[[60868,71325],[5,19]],[[60873,71344],[19,16]],[[60892,71360],[26,26]],[[60918,71386],[30,0]],[[60948,71386],[15,-3]],[[60963,71383],[7,3]],[[60970,71386],[4,-6]],[[60974,71380],[21,19]],[[60995,71399],[18,-9]],[[61013,71390],[10,3]],[[61023,71393],[0,3]],[[61023,71396],[26,3]],[[61049,71399],[0,3]],[[61049,71402],[36,10]],[[61085,71412],[0,3]],[[61085,71415],[19,33]],[[61104,71448],[4,9]],[[61108,71457],[8,26]],[[61116,71483],[3,3]],[[61119,71486],[5,0]],[[61124,71486],[0,3]],[[61124,71489],[2,0]],[[61126,71489],[3,13]],[[61129,71502],[22,10]],[[61151,71512],[7,16]],[[61158,71528],[4,4]],[[61162,71532],[9,9]],[[61171,71541],[8,-3]],[[61179,71538],[4,-10]],[[61183,71528],[25,7]],[[61208,71535],[0,3]],[[61208,71538],[22,3]],[[61230,71541],[11,13]],[[61241,71554],[16,-3]],[[61257,71551],[3,20]],[[61260,71571],[22,25]],[[61282,71596],[28,4]],[[61310,71600],[26,16]],[[61336,71616],[7,16]],[[61343,71632],[17,-4]],[[61360,71628],[11,-3]],[[61371,71625],[15,7]],[[61386,71632],[0,3]],[[61386,71635],[16,20]],[[61402,71655],[14,16]],[[61416,71671],[22,19]],[[61438,71690],[3,6]],[[61441,71696],[34,-13]],[[61475,71683],[16,0]],[[61491,71683],[15,4]],[[61506,71687],[0,6]],[[61506,71693],[10,3]],[[61516,71696],[0,3]],[[61516,71699],[62,-3]],[[61578,71696],[0,3]],[[61578,71699],[5,4]],[[61583,71703],[0,3]],[[61583,71706],[11,4]],[[61594,71710],[3,0]],[[61597,71710],[20,5]],[[61617,71715],[11,11]],[[61628,71726],[9,3]],[[61637,71729],[0,3]],[[61637,71732],[7,3]],[[61644,71735],[3,10]],[[61647,71745],[40,13]],[[61687,71758],[0,-4]],[[61687,71754],[10,-3]],[[61697,71751],[1,7]],[[61698,71758],[32,3]],[[61730,71761],[0,3]],[[61730,71764],[12,3]],[[61742,71767],[13,7]],[[61755,71774],[4,3]],[[61759,71777],[0,4]],[[61759,71781],[14,6]],[[61773,71787],[2,0]],[[61775,71787],[4,3]],[[61779,71790],[29,0]],[[61808,71790],[0,3]],[[61808,71793],[46,13]],[[61854,71806],[7,10]],[[61861,71816],[9,3]],[[61870,71819],[0,-3]],[[61870,71816],[6,3]],[[61876,71819],[5,13]],[[61881,71832],[20,17]],[[61901,71849],[19,5]],[[61920,71854],[9,7]],[[61929,71861],[5,10]],[[61934,71871],[20,16]],[[61954,71887],[11,16]],[[61965,71903],[6,10]],[[61971,71913],[8,19]],[[61979,71932],[27,7]],[[62006,71939],[29,16]],[[62035,71955],[10,3]],[[62045,71958],[0,3]],[[62045,71961],[31,7]],[[62076,71968],[0,3]],[[62076,71971],[6,3]],[[62082,71974],[11,7]],[[62093,71981],[3,10]],[[62096,71991],[19,2]],[[62115,71993],[0,4]],[[62115,71997],[25,23]],[[62140,72020],[22,9]],[[62162,72029],[25,13]],[[62187,72042],[1,-6]],[[62188,72036],[25,3]],[[62213,72039],[5,13]],[[62218,72052],[28,-4]],[[62246,72048],[5,14]],[[62251,72062],[6,2]],[[62257,72064],[2,7]],[[62259,72071],[7,4]],[[62266,72075],[2,12]],[[62268,72087],[23,7]],[[62291,72094],[8,16]],[[62299,72110],[9,4]],[[62308,72114],[19,0]],[[62327,72114],[16,2]],[[62343,72116],[5,10]],[[62348,72126],[26,10]],[[62374,72136],[5,0]],[[62379,72136],[9,3]],[[62388,72139],[0,3]],[[62388,72142],[34,4]],[[62422,72146],[16,0]],[[62438,72146],[12,3]],[[62450,72149],[0,6]],[[62450,72155],[22,3]],[[83753,39290],[181,-215]],[[83934,39075],[211,-233],[87,-87]],[[84232,38755],[70,-53],[103,-51]],[[84405,38651],[142,-82]],[[84547,38569],[135,-25],[252,2]],[[84934,38546],[125,10]],[[85059,38556],[150,-10],[175,-3]],[[85384,38543],[1077,-4],[170,8],[65,14]],[[86696,38561],[63,23],[114,64]],[[86873,38648],[128,63],[173,106]],[[87174,38817],[165,-35]],[[87339,38782],[49,-26]],[[87388,38756],[196,-108]],[[87584,38648],[92,-56]],[[87676,38592],[105,-40]],[[87781,38552],[143,6]],[[87924,38558],[149,71]],[[88073,38629],[50,22],[140,35]],[[88263,38686],[55,18],[142,81],[104,50],[139,88],[103,50]],[[88806,38973],[119,69],[115,34],[95,7]],[[89135,39083],[347,-5]],[[89482,39078],[775,5],[100,-3]],[[90357,39080],[99,-11],[93,-31],[216,-118],[192,-146],[96,-36]],[[91053,38738],[225,-104]],[[91278,38634],[87,-74],[103,-110]],[[91468,38450],[77,-94],[73,-123]],[[91618,38233],[35,-92],[81,-155]],[[91734,37986],[71,-187]],[[91805,37799],[15,-102]],[[91820,37697],[-50,-146]],[[91770,37551],[-21,-98]],[[91749,37453],[-28,-123],[-56,-133]],[[91665,37197],[-19,-58],[-47,-215],[-74,-158],[-44,-115],[-73,-158],[-16,-60]],[[91392,36433],[-50,-213]],[[91342,36220],[-73,-194]],[[91269,36026],[-30,-155],[-76,-191]],[[91163,35680],[-38,-184]],[[91125,35496],[-17,-61],[-73,-158]],[[91035,35277],[-44,-115],[-75,-158]],[[90916,35004],[-16,-61]],[[90900,34943],[-39,-185],[-67,-160]],[[90794,34598],[-47,-216]],[[90747,34382],[-76,-190],[-27,-123]],[[90644,34069],[-18,-93]],[[90626,33976],[-83,-188],[-44,-115],[-79,-154],[-95,-219]],[[90325,33300],[-43,-156]],[[90282,33144],[-12,-281],[-14,-103]],[[90256,32760],[-77,-193],[-50,-181]],[[90129,32386],[-39,-110]],[[78151,24926],[109,229],[47,114]],[[78307,25269],[78,155],[45,114],[63,131]],[[78493,25669],[26,97],[10,108]],[[78529,25874],[3,112],[1,1198]],[[78533,27184],[-12,182]],[[78521,27366],[-25,98],[-61,130],[-44,115],[-79,155]],[[78312,27864],[-49,113],[-51,85]],[[78212,28062],[-108,130]],[[78104,28192],[-90,96]],[[78014,28288],[-103,76]],[[77911,28364],[-127,31]],[[77784,28395],[-100,5],[-538,-6]],[[77146,28394],[-162,20]],[[76984,28414],[-57,21],[-118,67]],[[76809,28502],[-103,48],[-200,134]],[[76506,28684],[-50,63],[-100,202]],[[76356,28949],[-51,246]],[[76305,29195],[-66,162]],[[76239,29357],[-54,246],[-57,134]],[[76128,29737],[-18,58],[-44,216],[-101,243]],[[75965,30254],[-64,96]],[[75901,30350],[-43,37],[-84,35],[-61,9]],[[75713,30431],[-64,4],[-291,-6]],[[75358,30429],[-29,120],[-59,134]],[[75270,30683],[-25,90]],[[75245,30773],[-12,132],[-2,201],[8,166],[19,96]],[[75258,31368],[118,269],[95,105]],[[75471,31742],[77,34],[111,24]],[[75659,31800],[54,16],[147,70]],[[75860,31886],[195,48]],[[76055,31934],[80,43]],[[76135,31977],[70,65],[80,101]],[[76285,32143],[79,168],[52,81]],[[76416,32392],[64,74],[79,71]],[[76559,32537],[17,160],[7,149],[7,975]],[[76590,33821],[-11,183],[-17,69]],[[76562,34073],[-45,87],[-108,117]],[[76409,34277],[-79,50]],[[76330,34327],[-61,19],[-222,24]],[[76047,34370],[-87,26],[-192,107]],[[75768,34503],[-45,32]],[[75723,34535],[-60,64],[-56,87]],[[75607,34686],[0,361],[14,177],[16,68]],[[75637,35292],[73,193]],[[75710,35485],[16,102]],[[75726,35587],[22,314]],[[75748,35901],[14,66],[54,134]],[[75816,36101],[33,162]],[[75849,36263],[20,316],[16,66]],[[75885,36645],[70,195]],[[75955,36840],[27,243]],[[75982,37083],[23,103],[30,59]],[[76035,37245],[59,77]],[[76094,37322],[72,68],[126,85]],[[76292,37475],[348,-4]],[[76640,37471],[94,-8],[115,-35],[119,-69],[103,-50]],[[77071,37309],[142,-80],[92,-24],[159,-20],[116,-35],[120,-61]],[[77700,37089],[84,-18]],[[77784,37071],[86,3],[81,24],[117,68]],[[78068,37166],[127,68],[165,127]],[[78360,37361],[300,130],[142,87],[103,48]],[[78905,37626],[140,87],[105,48]],[[79150,37761],[117,74],[128,62],[140,85]],[[79535,37982],[106,47],[119,69],[97,46]],[[79857,38144],[62,47]],[[79919,38191],[41,67]],[[79960,38258],[-10,101]],[[79950,38359],[-76,180],[-78,156],[-17,62]],[[79779,38757],[-15,98]],[[79764,38855],[-4,131],[19,150]],[[79779,39136],[28,50],[98,44]],[[79905,39230],[112,2],[189,-20],[70,47]],[[80276,39259],[197,134]],[[80473,39393],[226,-29]],[[80699,39364],[614,-6],[82,8]],[[81395,39366],[53,10]],[[81448,39376],[52,20],[245,137],[68,59]],[[81813,39592],[66,67],[534,593]],[[82413,40252],[101,124],[89,139]],[[82603,40515],[165,-136]],[[82768,40379],[128,-63]],[[82896,40316],[142,-27],[158,-42],[89,-195]],[[83285,40052],[70,-170],[53,-77],[222,-270]],[[83630,39535],[76,-167],[47,-78]],[[96409,9761],[-53,-71]],[[96356,9690],[-139,-96],[-101,-36],[-92,2],[-119,38]],[[95905,9598],[-158,51],[-301,61]],[[95446,9710],[-143,29]],[[95303,9739],[-309,19],[-18,5]],[[94976,9763],[-240,70]],[[94736,9833],[-298,39],[-332,-19],[-239,-106]],[[93867,9747],[-148,0]],[[93719,9747],[-30,4],[-133,72]],[[93556,9823],[-57,31],[-52,-2]],[[93447,9852],[-95,-12]],[[93352,9840],[-91,-33]],[[93261,9807],[-76,-153],[-73,-224],[-60,-40]],[[93052,9390],[-42,2],[-90,66]],[[92920,9458],[-125,150],[-131,127]],[[92664,9735],[-139,52],[-28,34],[0,57],[42,151],[190,398],[13,94],[-52,71]],[[92690,10592],[-259,118]],[[92431,10710],[-86,71],[-85,142]],[[92260,10923],[-82,78],[-362,224]],[[91816,11225],[-340,-42]],[[91476,11183],[-187,43]],[[91289,11226],[-613,200],[-166,92]],[[68290,47558],[25,-150],[73,-192]],[[68388,47216],[21,-105],[9,-257]],[[68418,46854],[-9,-419]],[[68409,46435],[-64,-88]],[[68345,46347],[-139,-147]],[[68206,46200],[-150,-82]],[[68056,46118],[-184,-112]],[[67872,46006],[-92,-97]],[[67780,45909],[-163,-114]],[[67617,45795],[-68,-66],[-309,-335],[-119,-152]],[[67121,45242],[-37,-87],[-30,-155]],[[67054,45000],[-16,-60],[-67,-160],[-45,-217]],[[66926,44563],[-78,-189]],[[66848,44374],[-26,-124]],[[66822,44250],[-29,-122],[-74,-192]],[[66719,43936],[-27,-257],[-19,-95],[-106,-242],[-84,-115]],[[66483,43227],[-161,-102]],[[66322,43125],[-92,-106]],[[66230,43019],[-119,-269],[-43,-216],[-21,-58],[-151,-272]],[[65896,42204],[-178,16]],[[65718,42220],[-274,5]],[[65444,42225],[-177,-20]],[[65267,42205],[-103,-61]],[[65164,42144],[-67,-64],[-320,-362],[-132,-138]],[[64645,41580],[-97,-76]],[[64548,41504],[-80,-39],[-72,-201]],[[64396,41264],[-43,-220],[-19,-58]],[[64334,40986],[-58,-132],[-42,-171]],[[64234,40683],[-61,-104]],[[64173,40579],[-23,-43],[-52,-196]],[[64098,40340],[-65,-161],[-16,-62]],[[64017,40117],[-11,-121]],[[12935,73153],[69,-21],[73,32],[114,-85],[106,-30],[88,-71]],[[13385,72978],[112,-57]],[[13497,72921],[48,-16],[61,-100]],[[13606,72805],[24,-113]],[[13630,72692],[0,-41],[123,-18]],[[13753,72633],[81,-30],[56,-43]],[[13890,72560],[42,-56],[60,-176],[23,-112],[59,-134],[135,-157],[18,-35]],[[14227,71890],[24,-77],[31,-15]],[[14282,71798],[69,12],[29,-35],[35,-141]],[[14415,71634],[43,-56],[92,-17]],[[14550,71561],[88,-2],[61,-106],[79,-79],[75,-16],[125,24],[86,-106],[82,-169]],[[15146,71107],[36,-106],[41,-84]],[[15223,70917],[50,-65]],[[15273,70852],[81,-92]],[[15354,70760],[101,21],[28,56],[-15,47],[-66,22]],[[15402,70906],[38,35]],[[15440,70941],[58,30],[-5,30],[-63,19],[64,110],[24,60],[75,-66],[131,155],[44,-21],[3,-75],[45,19],[117,88]],[[15933,71290],[-38,39]],[[15895,71329],[-31,54]],[[15864,71383],[88,-17]],[[15952,71366],[61,31],[12,-47],[73,58],[55,15],[33,-59],[78,71],[17,-64],[69,72]],[[16350,71443],[18,76],[42,23]],[[16410,71542],[100,-23]],[[16510,71519],[14,12]],[[16524,71531],[-26,57]],[[16498,71588],[5,25],[184,-26],[57,-43],[55,66],[94,-58],[-46,-61],[22,-26],[134,-5],[52,-41]],[[17055,71419],[39,-9]],[[17094,71410],[39,32],[70,-47],[-50,-92],[41,-4],[45,-56],[95,32],[31,-26],[7,-58],[48,6],[9,77],[66,11],[16,-39],[65,11],[25,35],[-5,70],[-57,-6]],[[17539,71356],[-44,36]],[[17495,71392],[9,124]],[[17504,71516],[-40,70]],[[17464,71586],[19,106],[65,80],[66,-34],[59,-4],[12,93],[36,3],[8,-96],[55,31],[-7,103]],[[17777,71868],[58,14]],[[17835,71882],[162,-129],[103,-10],[15,-26],[-10,-95],[59,-57],[50,-3],[55,45],[52,-31],[26,90],[100,-32],[53,35],[16,-63],[143,76],[25,53]],[[18684,71735],[44,7]],[[18728,71742],[83,-84],[146,-6]],[[18957,71652],[17,3]],[[18974,71655],[156,25],[33,27],[-17,57],[114,13]],[[19260,71777],[25,-55]],[[19285,71722],[-19,-3]],[[19266,71719],[-6,3]],[[19260,71722],[-28,-7]],[[19232,71715],[-5,-5]],[[19227,71710],[0,-85]],[[19227,71625],[5,-3]],[[19232,71622],[5,-16]],[[19237,71606],[4,-3]],[[19241,71603],[49,-65]],[[19290,71538],[6,3]],[[19296,71541],[22,-9]],[[19318,71532],[4,-4]],[[19322,71528],[19,-19]],[[19341,71509],[5,-3]],[[19346,71506],[1,-6]],[[19347,71500],[5,-4]],[[19352,71496],[-14,-84]],[[19338,71412],[8,-3]],[[19346,71409],[0,-3]],[[19346,71406],[6,-4]],[[19352,71402],[30,-32]],[[19382,71370],[1,-13]],[[19383,71357],[30,-67],[-8,-59],[-48,-67],[15,-43]],[[19372,71121],[3,-9]],[[19375,71112],[7,-16]],[[19382,71096],[1,-4]],[[19383,71092],[0,-119]],[[19383,70973],[-3,-16]],[[19380,70957],[-8,-52]],[[19372,70905],[3,-3]],[[19375,70902],[7,-49]],[[19382,70853],[1,-3]],[[19383,70850],[17,-10]],[[19400,70840],[5,-3]],[[19405,70837],[0,-3]],[[19405,70834],[-5,-7]],[[19400,70827],[0,-3]],[[19400,70824],[8,-4]],[[19408,70820],[24,-60]],[[19432,70760],[4,-4]],[[19436,70756],[16,-94]],[[19452,70662],[5,-3]],[[19457,70659],[20,-90],[-20,-16]],[[19457,70553],[-5,-7]],[[19452,70546],[-11,4]],[[19441,70550],[-13,3]],[[19428,70553],[-90,-14],[-97,88]],[[19241,70627],[-6,3]],[[19235,70630],[-19,7]],[[19216,70637],[-11,3]],[[19205,70640],[-29,38]],[[19176,70678],[-14,4]],[[19162,70682],[-72,10]],[[19090,70692],[-5,-4]],[[19085,70688],[-11,-6]],[[19074,70682],[-11,-4]],[[19063,70678],[-29,-12]],[[19034,70666],[-14,-4]],[[19020,70662],[-11,-16]],[[19009,70646],[-5,0]],[[19004,70646],[-6,-9]],[[18998,70637],[-5,0]],[[18993,70637],[-14,-13]],[[18979,70624],[-9,-3]],[[18970,70621],[-13,-27]],[[18957,70594],[-8,-3]],[[18949,70591],[-29,-48],[-25,-84]],[[18895,70459],[-3,-3]],[[18892,70456],[-10,-36]],[[18882,70420],[-29,3]],[[18853,70423],[-10,-22]],[[18843,70401],[-4,-4]],[[18839,70397],[-7,-32]],[[18832,70365],[-3,-32]],[[18829,70333],[-12,-87],[0,-111],[15,-109]],[[18832,70026],[2,-16]],[[18834,70010],[5,-39]],[[18839,69971],[4,-10]],[[18843,69961],[16,-77]],[[18859,69884],[8,-7]],[[18867,69877],[25,-96]],[[18892,69781],[3,-7]],[[18895,69774],[25,-81]],[[18920,69693],[4,-3]],[[18924,69690],[19,-48]],[[18943,69642],[5,-7]],[[18948,69635],[5,-23]],[[18953,69612],[4,-3]],[[18957,69609],[16,-42]],[[18973,69567],[4,-6]],[[18977,69561],[5,-13]],[[18982,69548],[3,-4]],[[18985,69544],[19,-39]],[[19004,69505],[14,0]],[[19018,69505],[6,-28]],[[19024,69477],[7,-4]],[[19031,69473],[34,-64]],[[19065,69409],[3,-3]],[[19068,69406],[16,-26]],[[19084,69380],[9,-3]],[[19093,69377],[2,-14]],[[19095,69363],[4,-2]],[[19099,69361],[25,-43]],[[19124,69318],[2,-6]],[[19126,69312],[20,-45]],[[19146,69267],[9,-4]],[[19155,69263],[10,-19]],[[19165,69244],[6,-3]],[[19171,69241],[34,-33]],[[19205,69208],[5,-6]],[[19210,69202],[14,-6]],[[19224,69196],[11,3]],[[19235,69199],[2,-7]],[[19237,69192],[4,-3]],[[19241,69189],[19,-19]],[[19260,69170],[-3,-3]],[[19257,69167],[33,-23]],[[19290,69144],[4,-16]],[[19294,69128],[16,-29]],[[19310,69099],[5,-3]],[[19315,69096],[26,-36]],[[19341,69060],[5,-7]],[[19346,69053],[1,-9]],[[19347,69044],[5,-7]],[[19352,69037],[0,-6]],[[19352,69031],[-5,-6]],[[19347,69025],[0,-16]],[[19347,69009],[-6,-4]],[[19341,69005],[-3,-13]],[[19338,68992],[8,-3]],[[19346,68989],[-5,-7]],[[19341,68982],[6,-3]],[[19347,68979],[0,-3]],[[19347,68976],[8,-3]],[[19355,68973],[-3,-78]],[[19352,68895],[-14,-3]],[[19338,68892],[3,-61]],[[19341,68831],[-3,-13]],[[19338,68818],[34,-23]],[[19372,68795],[3,-3]],[[19375,68792],[0,-36]],[[19375,68756],[0,-7]],[[19375,68749],[7,-12]],[[19382,68737],[4,-4]],[[19386,68733],[46,-71]],[[19432,68662],[4,-3]],[[19436,68659],[16,-6]],[[19452,68653],[6,-4]],[[19458,68649],[59,-71]],[[19517,68578],[0,-12]],[[19517,68566],[0,-39]],[[19517,68527],[0,-13]],[[19517,68514],[5,-10]],[[19522,68504],[5,-6]],[[19527,68498],[15,-43]],[[19542,68455],[5,-3]],[[19547,68452],[27,-22]],[[19574,68430],[7,-3]],[[19581,68427],[13,-39]],[[19594,68388],[5,-7]],[[19599,68381],[28,-19]],[[19627,68362],[6,-6]],[[19633,68356],[26,-27]],[[19659,68329],[25,-2]],[[19684,68327],[25,-7]],[[19709,68320],[16,-3]],[[19725,68317],[28,-37]],[[19753,68280],[11,-51],[45,-16]],[[19809,68213],[2,-3]],[[19811,68210],[9,-84],[36,-39]],[[19856,68087],[8,-3]],[[19864,68084],[0,-16]],[[19864,68068],[-5,-6]],[[19859,68062],[-4,-10]],[[19855,68052],[-7,-4]],[[19848,68048],[0,-2]],[[19848,68046],[-23,-4]],[[19825,68042],[-6,-6]],[[19819,68036],[-14,-4]],[[19805,68032],[-2,-9]],[[19803,68023],[-5,-7]],[[19798,68016],[-43,-3]],[[19755,68013],[-14,-3]],[[19741,68010],[0,-3]],[[19741,68007],[-4,-10]],[[19737,67997],[-17,-61]],[[19720,67936],[-4,-4]],[[19716,67932],[0,-12]],[[19716,67920],[4,-7]],[[19720,67913],[17,-107]],[[19737,67806],[4,-6]],[[19741,67800],[4,-16]],[[19745,67784],[5,-3]],[[19750,67781],[0,-46]],[[19750,67735],[0,-13]],[[19750,67722],[50,-9]],[[19800,67713],[6,-3]],[[19806,67710],[3,-4]],[[19809,67706],[-3,-10]],[[19806,67696],[3,-6]],[[19809,67690],[2,-13]],[[19811,67677],[-2,-42]],[[19809,67635],[2,-16]],[[19811,67619],[9,-29]],[[19820,67590],[11,3]],[[19831,67593],[19,-19]],[[19850,67574],[5,-3]],[[19855,67571],[1,-7]],[[19856,67564],[9,3]],[[19865,67567],[14,-10]],[[19879,67557],[5,-6]],[[19884,67551],[27,-39]],[[19911,67512],[4,-16]],[[19915,67496],[55,-51]],[[19970,67445],[16,-4]],[[19986,67441],[46,-52]],[[20032,67389],[4,-3]],[[20036,67386],[15,-32]],[[20051,67354],[14,-36]],[[20065,67318],[47,-25]],[[20112,67293],[9,2]],[[20121,67295],[11,-32]],[[20132,67263],[10,-3]],[[20142,67260],[31,-13]],[[20173,67247],[0,-3]],[[20173,67244],[0,-32]],[[20173,67212],[5,-4]],[[20178,67208],[18,-19]],[[20196,67189],[0,-10]],[[20196,67179],[-33,-45]],[[20163,67134],[5,-6]],[[20168,67128],[5,-39]],[[20173,67089],[11,-4]],[[20184,67085],[12,-3]],[[20196,67082],[7,-2]],[[20203,67080],[20,-32]],[[20223,67048],[-145,-22],[-174,-81],[-223,-62],[-145,-73],[-84,-21],[-175,-19]],[[19277,66770],[-111,-31]],[[19166,66739],[-120,-63],[-221,-60],[-142,-82],[-105,-48],[-140,-87]],[[18438,66399],[-103,-50],[-141,-88]],[[18194,66261],[-276,-140]],[[17918,66121],[-155,-21]],[[17763,66100],[-256,6],[-121,22],[-144,70],[-51,15],[-108,-13],[-217,-116],[-123,-106],[-211,-221],[-175,-137]],[[16357,65620],[60,-192]],[[16417,65428],[-35,-146],[-34,-218],[-75,-191],[-56,-245],[-73,-158],[-44,-115],[-78,-155]],[[16022,64200],[-45,-115],[-86,-155],[-77,-160]],[[15814,63770],[-146,-222],[-89,-191],[-139,-190],[-69,-120],[-56,-54],[-181,-115]],[[15134,62878],[-86,-22]],[[15048,62856],[-90,-5],[-147,20],[-98,59]],[[14713,62930],[-169,164],[-129,111]],[[14415,63205],[-61,104]],[[14354,63309],[-150,210]],[[14204,63519],[-61,142],[-70,108],[-136,133],[-153,81],[-117,73],[-105,47],[-142,82]],[[13420,64185],[-166,43]],[[13254,64228],[-55,17],[-144,76],[-56,16],[-148,12],[-153,-1]],[[12698,64348],[-654,5],[-198,-8],[-116,-25],[-145,-73],[-164,-43]],[[11421,64204],[-323,14],[-224,-8],[-120,-28],[-175,-84],[-94,-17],[-97,0],[-95,16],[-125,73],[-131,116]],[[10644,71995],[83,132],[8,84],[-8,103],[37,49],[122,37]],[[10886,72400],[97,65],[41,51]],[[11024,72516],[51,81],[37,87],[-23,162],[5,26],[84,30],[101,1],[78,37],[75,61],[66,23],[204,-50],[92,2],[80,-38],[67,-85],[61,-52],[72,-33],[187,-25],[89,47],[64,-13],[28,-40],[78,-53],[50,-1],[25,54],[-27,54],[-10,114],[65,27],[47,38],[65,133],[82,25]],[[12817,73128],[67,40],[51,-15]],[[69939,45602],[119,14]],[[70058,45616],[80,27],[120,63]],[[70258,45706],[89,22]],[[70347,45728],[156,11],[254,0],[125,-9]],[[70882,45730],[91,-21],[143,-74]],[[71116,45635],[153,-48]],[[71269,45587],[76,-70],[93,-170],[53,-142]],[[71491,45205],[75,-158],[45,-115]],[[71611,44932],[51,-82]],[[71662,44850],[63,-74],[118,-99],[130,-69],[51,-40]],[[72024,44568],[50,-43]],[[72074,44525],[138,-147]],[[72212,44378],[73,-110]],[[72285,44268],[19,-93]],[[72304,44175],[-8,-62]],[[72296,44113],[-72,-151]],[[72224,43962],[-48,-112]],[[72176,43850],[-64,-124],[-16,-121]],[[72096,43605],[30,-85]],[[72126,43520],[89,-115]],[[72215,43405],[112,-96],[142,-83]],[[72469,43226],[5,-30]],[[72474,43196],[62,-112]],[[72536,43084],[41,-35],[98,-53]],[[72675,42996],[45,-32],[174,-153]],[[72894,42811],[99,-54]],[[72993,42757],[127,-47],[73,-18]],[[73193,42692],[-20,-206],[-16,-96]],[[73157,42390],[-75,-191]],[[73082,42199],[-57,-245],[-119,-271]],[[72906,41683],[-62,-131],[-35,-162]],[[72809,41390],[-4,-106],[3,-445],[61,-49]],[[72869,40790],[124,-61]],[[72993,40729],[189,-10]],[[73182,40719],[130,41],[70,58]],[[73382,40818],[86,92],[206,242]],[[73674,41152],[114,92],[45,11]],[[73833,41255],[65,-8]],[[73898,41247],[77,-72],[12,-81]],[[73987,41094],[-50,-117]],[[73937,40977],[-60,-136],[-53,-73]],[[73824,40768],[-180,-204],[-86,-122]],[[73558,40442],[-47,-113],[-64,-129]],[[73447,40200],[-21,-84]],[[73426,40116],[0,-114]],[[73426,40002],[17,-81],[47,-100]],[[73490,39821],[28,-100]],[[73518,39721],[-17,-101],[-99,-140],[-132,-142]],[[73270,39338],[-86,-60],[-125,-64]],[[73059,39214],[-66,-59]],[[72993,39155],[-56,-103],[-19,-172]],[[72918,38880],[8,-176]],[[72926,38704],[28,-135],[61,-130]],[[73015,38439],[25,-88]],[[73040,38351],[5,-96],[-19,-93]],[[73026,38162],[-12,-27]],[[73014,38135],[-80,-84]],[[72934,38051],[-23,-13]],[[72911,38038],[-92,-21]],[[72819,38017],[-213,3]],[[72606,38020],[-104,-24]],[[72502,37996],[-35,-44]],[[72467,37952],[-4,-80]],[[72463,37872],[19,-46]],[[72482,37826],[62,-154]],[[72544,37672],[16,-128]],[[72560,37544],[-2,-66]],[[72558,37478],[-14,-96]],[[72544,37382],[-41,-81],[-81,-76]],[[72422,37225],[-125,-67],[-137,-128]],[[72160,37030],[-73,-107],[-116,-274]],[[71971,36649],[-40,-184]],[[71931,36465],[-64,-143]],[[71867,36322],[-111,-156],[-39,-88],[-13,-64]],[[71704,36014],[-6,-300]],[[71698,35714],[-109,-34],[-144,-73],[-56,-14],[-115,2]],[[71274,35595],[-55,14]],[[71219,35609],[-144,72],[-154,31]],[[70921,35712],[-98,3]],[[70823,35715],[-211,-14]],[[70612,35701],[-145,-131],[-59,-79]],[[70408,35491],[-46,-122]],[[70362,35369],[-6,-64],[-3,-231]],[[70353,35074],[-16,-126]],[[70337,34948],[-56,-105]],[[70281,34843],[-86,-69],[-98,-52]],[[70097,34722],[-112,-90]],[[68409,46435],[184,-30]],[[68593,46405],[126,-66]],[[68719,46339],[127,-117],[93,-65],[77,-37]],[[69016,46120],[140,-88],[78,-37]],[[69234,45995],[94,-63],[150,-136]],[[69478,45796],[45,-33]],[[69523,45763],[126,-68]],[[69649,45695],[108,-94],[182,1]],[[37512,62756],[0,-3]],[[37512,62753],[8,-3]],[[37520,62750],[0,-3]],[[37520,62747],[6,-4]],[[37526,62743],[6,-12]],[[37532,62731],[9,-23]],[[37541,62708],[4,-13]],[[37545,62695],[6,-3]],[[37551,62692],[5,-4]],[[37556,62688],[9,-3]],[[37565,62685],[0,-3]],[[37565,62682],[20,-3]],[[37585,62679],[0,-3]],[[37585,62676],[38,-7]],[[37623,62669],[7,-4]],[[37630,62665],[13,-2]],[[37643,62663],[0,-4]],[[37643,62659],[19,-3]],[[37662,62656],[11,-7]],[[37673,62649],[34,-3]],[[37707,62646],[0,-3]],[[37707,62643],[26,-6]],[[37733,62637],[5,-10]],[[37738,62627],[19,3]],[[37757,62630],[4,-6]],[[37761,62624],[16,9]],[[37777,62633],[0,4]],[[37777,62637],[30,-4]],[[37807,62633],[11,-13]],[[37818,62620],[39,-9]],[[37857,62611],[0,-3]],[[37857,62608],[22,-23]],[[37879,62585],[0,3]],[[37879,62588],[18,13]],[[37897,62601],[11,16]],[[37908,62617],[11,13]],[[37919,62630],[0,3]],[[37919,62633],[39,7]],[[37958,62640],[25,-7]],[[37983,62633],[6,-6]],[[37989,62627],[0,-3]],[[37989,62624],[-11,-16]],[[37978,62608],[5,-7]],[[37983,62601],[6,-9]],[[37989,62592],[10,-14]],[[37999,62578],[6,-3]],[[38005,62575],[5,-6]],[[38010,62569],[34,-10]],[[38044,62559],[5,-6]],[[38049,62553],[7,-4]],[[38056,62549],[18,-9]],[[38074,62540],[0,-3]],[[38074,62537],[7,0]],[[38081,62537],[0,3]],[[38081,62540],[18,6]],[[38099,62546],[0,-3]],[[38099,62543],[15,-13]],[[38114,62530],[0,3]],[[38114,62533],[8,4]],[[38122,62537],[0,3]],[[38122,62540],[12,-3]],[[38134,62537],[0,-4]],[[38134,62533],[5,-3]],[[38139,62530],[0,-20]],[[38139,62510],[-5,-3]],[[38134,62507],[13,-32]],[[38147,62475],[0,-3]],[[38147,62472],[0,-3]],[[38147,62469],[-6,-10]],[[38141,62459],[0,-4]],[[38141,62455],[11,-2]],[[38152,62453],[0,-3]],[[38152,62450],[14,-4]],[[38166,62446],[0,-3]],[[38166,62443],[18,-7]],[[38184,62436],[7,-6]],[[38191,62430],[14,-3]],[[38205,62427],[0,-4]],[[38205,62423],[11,-6]],[[38216,62417],[20,-6]],[[38236,62411],[5,-7]],[[38241,62404],[14,-3]],[[38255,62401],[17,-10]],[[38272,62391],[14,-7]],[[38286,62384],[0,-2]],[[38286,62382],[3,0]],[[38289,62382],[3,-4]],[[38292,62378],[28,-31],[39,-159],[10,-100]],[[38369,62088],[-16,-161]],[[38353,61927],[-58,-103],[-40,-37]],[[38255,61787],[-149,-82],[-117,-104]],[[37989,61601],[-93,-131],[-117,-273]],[[37779,61197],[-19,-95]],[[37760,61102],[-30,-256]],[[37730,60846],[-18,-58]],[[37712,60788],[-60,-131],[-12,-61]],[[37640,60596],[-2,-128]],[[37638,60468],[16,-62]],[[37654,60406],[83,-133]],[[37737,60273],[184,-219]],[[37921,60054],[48,-79],[64,-133],[78,-78],[48,-26]],[[38159,59738],[82,-20]],[[38241,59718],[-4,-376],[11,-185],[24,-104],[58,-130],[28,-151],[-21,-125]],[[38337,58647],[-12,-26]],[[38325,58621],[-55,-66],[-73,-42]],[[38197,58513],[-136,-33]],[[38061,58480],[-301,-136],[-98,-101],[-32,-93]],[[37630,58150],[-11,-175],[19,-210]],[[37638,57765],[16,-65],[64,-154],[6,-92]],[[37724,57454],[-41,-109]],[[37683,57345],[-127,-201],[-40,-174],[-32,-188],[-77,-190],[-47,-216]],[[37360,56376],[-76,-190],[-16,-61]],[[37268,56125],[-12,-62]],[[37256,56063],[-109,-89]],[[37147,55974],[-83,-33]],[[37064,55941],[-125,-13]],[[36939,55928],[-284,-4],[-62,-9]],[[36593,55915],[-110,-40]],[[36483,55875],[-315,-174]],[[36168,55701],[-51,-22],[-139,-34]],[[35978,55645],[-55,-19],[-142,-80]],[[35781,55546],[-104,-50],[-117,-68]],[[35560,55428],[-119,-34]],[[35441,55394],[-97,-8],[-465,1],[-204,-5]],[[30655,55181],[-3,1209]],[[30652,56390],[6,107],[22,103],[69,114]],[[30749,56714],[23,17]],[[30772,56731],[11,3]],[[30783,56734],[0,3]],[[30783,56737],[26,6]],[[30809,56743],[0,4]],[[30809,56747],[13,3]],[[30822,56750],[11,0]],[[30833,56750],[14,-3]],[[30847,56747],[0,3]],[[30847,56750],[37,0]],[[30884,56750],[14,9]],[[30898,56759],[10,4]],[[30908,56763],[4,6]],[[30912,56769],[11,6]],[[30923,56775],[2,7]],[[30925,56782],[8,7]],[[30933,56789],[0,2]],[[30933,56791],[7,11]],[[30940,56802],[5,6]],[[30945,56808],[5,3]],[[30950,56811],[0,3]],[[30950,56814],[14,10]],[[30964,56824],[0,6]],[[30964,56830],[9,13]],[[30973,56843],[0,10]],[[30973,56853],[11,55]],[[30984,56908],[20,32]],[[31004,56940],[19,13]],[[31023,56953],[0,4]],[[31023,56957],[11,6]],[[31034,56963],[2,6]],[[31036,56969],[4,4]],[[31040,56973],[5,9]],[[31045,56982],[5,3]],[[31050,56985],[6,14]],[[31056,56999],[19,19]],[[31075,57018],[0,3]],[[31075,57021],[4,3]],[[31079,57024],[16,10]],[[31095,57034],[5,3]],[[31100,57037],[0,7]],[[31100,57044],[26,6]],[[31126,57050],[16,13]],[[31142,57063],[23,4]],[[31165,57067],[2,5]],[[31167,57072],[9,7]],[[31176,57079],[20,13]],[[31196,57092],[14,3]],[[31210,57095],[0,4]],[[31210,57099],[10,3]],[[31220,57102],[0,3]],[[31220,57105],[6,10]],[[31226,57115],[11,13]],[[31237,57128],[11,10]],[[31248,57138],[0,3]],[[31248,57141],[12,6]],[[31260,57147],[2,7]],[[31262,57154],[8,3]],[[31270,57157],[0,3]],[[31270,57160],[6,7]],[[31276,57167],[5,9]],[[31281,57176],[4,3]],[[31285,57179],[5,10]],[[31290,57189],[12,20]],[[31302,57209],[0,2]],[[31302,57211],[5,4]],[[31307,57215],[0,3]],[[31307,57218],[5,10]],[[31312,57228],[0,6]],[[31312,57234],[9,13]],[[31321,57247],[14,19]],[[31335,57266],[0,7]],[[31335,57273],[7,7]],[[31342,57280],[9,-58]],[[31351,57222],[1,-39]],[[31352,57183],[7,-39]],[[31359,57144],[0,-10]],[[31359,57134],[9,-26]],[[31368,57108],[13,-36]],[[31381,57072],[10,-22]],[[31391,57050],[-23,29]],[[31368,57079],[-16,13]],[[31352,57092],[0,3]],[[31352,57095],[-10,-3]],[[31342,57092],[-5,-25]],[[31337,57067],[-6,-7]],[[31331,57060],[-10,-7]],[[31321,57053],[-34,-9]],[[31287,57044],[-2,-7]],[[31285,57037],[-4,-9]],[[31281,57028],[0,-27]],[[31281,57001],[6,-2]],[[31287,56999],[0,-3]],[[31287,56996],[15,-7]],[[31302,56989],[0,-4]],[[31302,56985],[19,-9]],[[31321,56976],[14,-10]],[[31335,56966],[2,-3]],[[31337,56963],[5,-6]],[[31342,56957],[35,-10]],[[31377,56947],[0,3]],[[31377,56950],[36,19]],[[31413,56969],[19,7]],[[31432,56976],[11,-7]],[[31443,56969],[0,-3]],[[31443,56966],[11,-3]],[[31454,56963],[14,0]],[[31468,56963],[5,3]],[[31473,56966],[0,3]],[[31473,56969],[4,4]],[[31477,56973],[0,-4]],[[31477,56969],[5,-3]],[[31482,56966],[2,-6]],[[31484,56960],[4,-3]],[[31488,56957],[0,-4]],[[31488,56953],[5,-3]],[[31493,56950],[1,-20]],[[31494,56930],[8,-2]],[[31502,56928],[5,-20]],[[31507,56908],[5,-3]],[[31512,56905],[11,-23]],[[31523,56882],[4,-3]],[[31527,56879],[2,-10]],[[31529,56869],[4,-7]],[[31533,56862],[4,-5]],[[31537,56857],[10,-14]],[[31547,56843],[7,-6]],[[31554,56837],[6,-7]],[[31560,56830],[14,-22]],[[31574,56808],[11,-22]],[[31585,56786],[0,-11]],[[31585,56775],[9,-9]],[[31594,56766],[3,-7]],[[31597,56759],[7,-3]],[[31604,56756],[1,-9]],[[31605,56747],[5,-4]],[[31610,56743],[5,-12]],[[31615,56731],[4,-4]],[[31619,56727],[0,-3]],[[31619,56724],[0,-4]],[[31619,56720],[0,-2]],[[31619,56718],[7,-4]],[[31626,56714],[0,-3]],[[31626,56711],[12,-13]],[[31638,56698],[0,-3]],[[31638,56695],[6,-3]],[[31644,56692],[5,-10]],[[31649,56682],[9,-7]],[[31658,56675],[7,-12]],[[31665,56663],[6,-7]],[[31671,56656],[25,0]],[[31696,56656],[54,-3]],[[31750,56653],[10,13]],[[31760,56666],[42,9]],[[31802,56675],[17,7]],[[31819,56682],[25,0]],[[31844,56682],[8,3]],[[31852,56685],[43,-6]],[[31895,56679],[5,-10]],[[31900,56669],[6,-3]],[[31906,56666],[0,3]],[[31906,56669],[24,3]],[[31930,56672],[0,3]],[[31930,56675],[11,4]],[[31941,56679],[4,6]],[[31945,56685],[38,19]],[[31983,56704],[0,4]],[[31983,56708],[55,3]],[[32038,56711],[15,7]],[[32053,56718],[64,16]],[[32117,56734],[0,3]],[[32117,56737],[17,-3]],[[32134,56734],[8,6]],[[32142,56740],[20,7]],[[32162,56747],[0,6]],[[32162,56753],[14,10]],[[32176,56763],[16,0]],[[32192,56763],[16,3]],[[32208,56766],[26,-7]],[[32234,56759],[14,4]],[[32248,56763],[0,3]],[[32248,56766],[10,-3]],[[32258,56763],[0,3]],[[32258,56766],[32,-10]],[[32290,56756],[0,3]],[[32290,56759],[28,-3]],[[32318,56756],[0,3]],[[32318,56759],[7,4]],[[32325,56763],[7,-7]],[[32332,56756],[38,-9]],[[32370,56747],[5,9]],[[32375,56756],[34,10]],[[32409,56766],[0,3]],[[32409,56769],[16,6]],[[32425,56775],[1,7]],[[32426,56782],[13,9]],[[32439,56791],[0,4]],[[32439,56795],[12,10]],[[32451,56805],[0,3]],[[32451,56808],[9,6]],[[32460,56814],[0,4]],[[32460,56818],[21,6]],[[32481,56824],[0,3]],[[32481,56827],[31,10]],[[32512,56837],[22,6]],[[32534,56843],[8,7]],[[32542,56850],[3,7]],[[32545,56857],[25,9]],[[32570,56866],[0,-4]],[[32570,56862],[25,-12]],[[32595,56850],[0,-4]],[[32595,56846],[90,-6]],[[32685,56840],[0,3]],[[32685,56843],[8,3]],[[32693,56846],[0,4]],[[32693,56850],[5,3]],[[32698,56853],[0,4]],[[32698,56857],[4,2]],[[32702,56859],[8,10]],[[32710,56869],[28,-3]],[[32738,56866],[0,3]],[[32738,56869],[8,0]],[[32746,56869],[0,4]],[[32746,56873],[6,3]],[[32752,56876],[5,6]],[[32757,56882],[30,3]],[[32787,56885],[0,4]],[[32787,56889],[10,3]],[[32797,56892],[0,3]],[[32797,56895],[27,3]],[[32824,56898],[5,3]],[[32829,56901],[25,-3]],[[32854,56898],[0,-3]],[[32854,56895],[28,3]],[[32882,56898],[26,16]],[[32908,56914],[21,14]],[[32929,56928],[43,12]],[[32972,56940],[50,-10]],[[33022,56930],[0,-2]],[[33022,56928],[8,2]],[[33030,56930],[3,7]],[[33033,56937],[16,-7]],[[33049,56930],[0,4]],[[33049,56934],[4,6]],[[33053,56940],[0,4]],[[33053,56944],[7,3]],[[33060,56947],[0,10]],[[33060,56957],[31,-7]],[[33091,56950],[45,16]],[[33136,56966],[30,7]],[[33166,56973],[25,0]],[[33191,56973],[20,9]],[[33211,56982],[5,17]],[[33216,56999],[9,2]],[[33225,57001],[20,17]],[[33245,57018],[10,10]],[[33255,57028],[0,-7]],[[33255,57021],[26,-6]],[[33281,57015],[0,-3]],[[33281,57012],[105,16]],[[33386,57028],[0,3]],[[33386,57031],[22,-10]],[[33408,57021],[0,-3]],[[33408,57018],[14,3]],[[33422,57021],[11,7]],[[33433,57028],[35,9]],[[33468,57037],[8,10]],[[33476,57047],[0,6]],[[33476,57053],[0,3]],[[33476,57056],[33,7]],[[33509,57063],[0,4]],[[33509,57067],[33,-4]],[[33542,57063],[0,4]],[[33542,57067],[37,-4]],[[33579,57063],[0,4]],[[33579,57067],[14,9]],[[33593,57076],[0,3]],[[33593,57079],[7,4]],[[33600,57083],[0,6]],[[33600,57089],[14,19]],[[33614,57108],[15,10]],[[33629,57118],[13,3]],[[33642,57121],[0,3]],[[33642,57124],[20,7]],[[33662,57131],[0,3]],[[33662,57134],[47,10]],[[33709,57144],[14,6]],[[33723,57150],[30,4]],[[33753,57154],[0,3]],[[33753,57157],[10,-7]],[[33763,57150],[-10,-22]],[[33753,57128],[-15,-7]],[[33738,57121],[0,-3]],[[33738,57118],[-14,-3]],[[33724,57115],[36,-23]],[[33760,57092],[14,23]],[[33774,57115],[52,9]],[[33826,57124],[20,-13]],[[33846,57111],[0,-3]],[[33846,57108],[10,-9]],[[33856,57099],[4,-4]],[[33860,57095],[0,-3]],[[33860,57092],[5,-3]],[[33865,57089],[0,-3]],[[33865,57086],[20,-7]],[[33885,57079],[0,-3]],[[33885,57076],[16,-6]],[[33901,57070],[0,-3]],[[33901,57067],[15,-4]],[[33916,57063],[0,-3]],[[33916,57060],[21,10]],[[33937,57070],[0,2]],[[33937,57072],[12,11]],[[33949,57083],[6,6]],[[33955,57089],[0,10]],[[33955,57099],[14,3]],[[33969,57102],[38,13]],[[34007,57115],[20,9]],[[34027,57124],[0,4]],[[34027,57128],[59,3]],[[34086,57131],[25,-7]],[[34111,57124],[71,-3]],[[34182,57121],[0,3]],[[34182,57124],[20,-3]],[[34202,57121],[0,-6]],[[34202,57115],[9,-10]],[[34211,57105],[2,-10]],[[34213,57095],[9,-6]],[[34222,57089],[0,-6]],[[34222,57083],[10,-7]],[[34232,57076],[9,-20]],[[34241,57056],[12,-9]],[[34253,57047],[0,-3]],[[34253,57044],[8,-13]],[[34261,57031],[0,-7]],[[34261,57024],[3,-6]],[[34264,57018],[0,-6]],[[34264,57012],[5,-7]],[[34269,57005],[0,-6]],[[34269,56999],[64,0]],[[34333,56999],[0,-3]],[[34333,56996],[22,-14]],[[34355,56982],[0,-3]],[[34355,56979],[42,-3]],[[34397,56976],[0,3]],[[34397,56979],[6,3]],[[34403,56982],[46,26]],[[34449,57008],[15,-7]],[[34464,57001],[11,-9]],[[34475,56992],[9,-3]],[[34484,56989],[0,-4]],[[34484,56985],[7,-1]],[[34491,56984],[9,-5]],[[34500,56979],[0,-3]],[[34500,56976],[48,3]],[[34548,56979],[4,6]],[[34552,56985],[57,-16]],[[34609,56969],[5,13]],[[34614,56982],[5,3]],[[34619,56985],[6,7]],[[34625,56992],[15,7]],[[34640,56999],[0,2]],[[34640,57001],[10,4]],[[34650,57005],[0,-4]],[[34650,57001],[31,4]],[[34681,57005],[20,10]],[[34701,57015],[55,9]],[[34756,57024],[0,4]],[[34756,57028],[11,3]],[[34767,57031],[0,3]],[[34767,57034],[5,3]],[[34772,57037],[1,16]],[[34773,57053],[8,10]],[[34781,57063],[5,16]],[[34786,57079],[15,45]],[[34801,57124],[0,7]],[[34801,57131],[5,10]],[[34806,57141],[0,42]],[[34806,57183],[-5,3]],[[34801,57186],[0,3]],[[34801,57189],[-19,17]],[[34782,57206],[4,12]],[[34786,57218],[0,10]],[[34786,57228],[0,3]],[[34786,57231],[20,19]],[[34806,57250],[0,30]],[[34806,57280],[-5,6]],[[34801,57286],[0,3]],[[34801,57289],[0,39]],[[34801,57328],[0,3]],[[34801,57331],[5,10]],[[34806,57341],[6,10]],[[34812,57351],[0,45]],[[34812,57396],[-6,13]],[[34806,57409],[-20,45]],[[34786,57454],[-33,10]],[[34753,57464],[-6,3]],[[34747,57467],[0,4]],[[34747,57471],[-5,5]],[[34742,57476],[0,4]],[[34742,57480],[-6,10]],[[34736,57490],[-3,3]],[[34733,57493],[-4,3]],[[34729,57496],[-7,7]],[[34722,57503],[0,3]],[[34722,57506],[-25,0]],[[34697,57506],[0,-3]],[[34697,57503],[-35,-4]],[[34662,57499],[0,4]],[[34662,57503],[-12,-4]],[[34650,57499],[0,-3]],[[34650,57496],[-11,-6]],[[34639,57490],[0,3]],[[34639,57493],[-8,3]],[[34631,57496],[-6,10]],[[34625,57506],[-14,-10]],[[34611,57496],[0,3]],[[34611,57499],[-11,4]],[[34600,57503],[0,3]],[[34600,57506],[-52,-10]],[[34548,57496],[0,-3]],[[34548,57493],[-28,-6]],[[34520,57487],[0,-4]],[[34520,57483],[-90,0]],[[34430,57483],[0,4]],[[34430,57487],[-13,6]],[[34417,57493],[0,3]],[[34417,57496],[-9,3]],[[34408,57499],[-5,7]],[[34403,57506],[-25,3]],[[34378,57509],[0,-3]],[[34378,57506],[-6,-7]],[[34372,57499],[0,-3]],[[34372,57496],[-9,3]],[[34363,57499],[-60,-9]],[[34303,57490],[-11,-3]],[[34292,57487],[0,-4]],[[34292,57483],[-39,-12]],[[34253,57471],[0,-4]],[[34253,57467],[-21,4]],[[34232,57471],[-8,5]],[[34224,57476],[-42,-38]],[[34182,57438],[0,-3]],[[34182,57435],[-24,-3]],[[34158,57432],[-20,-7]],[[34138,57425],[-8,-3]],[[34130,57422],[0,-3]],[[34130,57419],[-12,-3]],[[34118,57416],[-7,-7]],[[34111,57409],[-10,-13]],[[34101,57396],[-29,-7]],[[34072,57389],[-21,-3]],[[34051,57386],[-14,10]],[[34037,57396],[-27,13]],[[34010,57409],[-16,3]],[[33994,57412],[-37,-10]],[[33957,57402],[-6,-13]],[[33951,57389],[-14,-12]],[[33937,57377],[-2,-7]],[[33935,57370],[-19,-16]],[[33916,57354],[0,-3]],[[33916,57351],[-12,-7]],[[33904,57344],[-44,26]],[[33860,57370],[-11,10]],[[33849,57380],[0,3]],[[33849,57383],[-15,3]],[[33834,57386],[-10,-6]],[[33824,57380],[-20,3]],[[33804,57383],[0,-3]],[[33804,57380],[-70,-3]],[[33734,57377],[0,-4]],[[33734,57373],[-14,-3]],[[33720,57370],[-2,0]],[[33718,57370],[-45,-3]],[[33673,57367],[-3,-10]],[[33670,57357],[-52,-42]],[[33618,57315],[-4,0]],[[33614,57315],[-14,6]],[[33600,57321],[0,4]],[[33600,57325],[-38,0]],[[33562,57325],[-8,-10]],[[33554,57315],[-3,-10]],[[33551,57305],[0,-6]],[[33551,57299],[-25,-13]],[[33526,57286],[-9,0]],[[33517,57286],[-11,3]],[[33506,57289],[0,4]],[[33506,57293],[22,35]],[[33528,57328],[-6,-10]],[[33522,57318],[-8,-3]],[[33514,57315],[0,-3]],[[33514,57312],[-5,-3]],[[33509,57309],[0,-4]],[[33509,57305],[-3,-3]],[[33506,57302],[0,-3]],[[33506,57299],[-34,-6]],[[33472,57293],[0,3]],[[33472,57296],[-21,9]],[[33451,57305],[0,4]],[[33451,57309],[-43,0]],[[33408,57309],[0,3]],[[33408,57312],[-21,13]],[[33387,57325],[-6,9]],[[33381,57334],[-25,20]],[[33356,57354],[0,3]],[[33356,57357],[-5,0],[-1,7],[-3,0],[0,3]],[[33347,57367],[-11,6]],[[33336,57373],[0,4]],[[33336,57377],[-6,12]],[[33330,57389],[0,7]],[[33330,57396],[-5,6]],[[33325,57402],[0,7]],[[33325,57409],[-9,32]],[[33316,57441],[0,7]],[[33316,57448],[-19,6]],[[33297,57454],[0,3]],[[33297,57457],[-11,3]],[[33286,57460],[-11,36]],[[33275,57496],[-11,16]],[[33264,57512],[0,3]],[[33264,57515],[-8,13]],[[33256,57528],[0,7]],[[33256,57535],[-15,7]],[[33241,57542],[-11,22]],[[33230,57564],[-14,10]],[[33216,57574],[0,3]],[[33216,57577],[-5,3]],[[33211,57580],[0,7]],[[33211,57587],[-17,9]],[[33194,57596],[-14,7]],[[33180,57603],[-6,3]],[[33174,57606],[0,-3]],[[33174,57603],[-21,6]],[[33153,57609],[-39,17]],[[33114,57626],[-11,6]],[[33103,57632],[-20,6]],[[33083,57638],[-30,-12]],[[33053,57626],[-7,-11]],[[33046,57615],[-57,7]],[[32989,57622],[0,4]],[[32989,57626],[-9,12]],[[32980,57638],[0,4]],[[32980,57642],[-8,3]],[[32972,57645],[0,3]],[[32972,57648],[-12,10]],[[32960,57658],[-6,23]],[[32954,57681],[-15,5]],[[32939,57686],[0,4]],[[32939,57690],[-20,3]],[[32919,57693],[-25,-3]],[[32894,57690],[-15,-4]],[[32879,57686],[-30,-5]],[[32849,57681],[-20,2]],[[32829,57683],[0,3]],[[32829,57686],[-13,7]],[[32816,57693],[-12,7]],[[32804,57700],[-58,6]],[[32746,57706],[0,3]],[[32746,57709],[-8,4]],[[32738,57713],[0,3]],[[32738,57716],[-26,-3]],[[32712,57713],[-10,-4]],[[32702,57709],[-9,-3]],[[32693,57706],[0,-6]],[[32693,57700],[-81,3]],[[32612,57703],[-10,10]],[[32602,57713],[-42,0]],[[32560,57713],[-18,-7]],[[32542,57706],[-61,3]],[[32481,57709],[-21,0]],[[32460,57709],[-20,-3]],[[32440,57706],[0,-3]],[[32440,57703],[-14,3]],[[32426,57706],[0,-3]],[[32426,57703],[-37,-10]],[[32389,57693],[0,-3]],[[32389,57690],[-5,-4]],[[32384,57686],[0,-3]],[[32384,57683],[-6,-2]],[[32378,57681],[-8,5]],[[32370,57686],[-20,-3]],[[32350,57683],[0,-2]],[[32350,57681],[-63,12]],[[32287,57693],[-12,16]],[[32275,57709],[-16,16]],[[32259,57725],[-1,7]],[[32258,57732],[-13,9]],[[32245,57741],[0,4]],[[32245,57745],[-12,7]],[[32233,57752],[-25,9]],[[32208,57761],[-44,7]],[[32164,57768],[-2,0]],[[32162,57768],[-25,-4]],[[32137,57764],[-39,-10]],[[32098,57754],[-6,-6]],[[32092,57748],[0,-7]],[[32092,57741],[0,-6]],[[32092,57735],[0,-3]],[[32092,57732],[-5,-3]],[[32087,57729],[-34,-10]],[[32053,57719],[-11,-6]],[[32042,57713],[-20,-7]],[[32022,57706],[0,-3]],[[32022,57703],[-9,-10]],[[32013,57693],[-18,-3]],[[31995,57690],[-12,-4]],[[31983,57686],[-2,-5]],[[31981,57681],[-6,-4]],[[31975,57677],[0,-3]],[[31975,57674],[-14,-13]],[[31961,57661],[-16,-7]],[[31945,57654],[-15,-3]],[[31930,57651],[-10,-13]],[[31920,57638],[-10,-3]],[[31910,57635],[-15,-6]],[[31895,57629],[-24,-16]],[[31871,57613],[0,-4]],[[31871,57609],[-15,-6]],[[31856,57603],[-4,-7]],[[31852,57596],[-6,-3]],[[31846,57593],[-27,-3]],[[31819,57590],[-19,-10]],[[31800,57580],[0,-3]],[[31800,57577],[-20,0]],[[31780,57577],[0,3]],[[31780,57580],[-16,7]],[[31764,57587],[-14,16]],[[31750,57603],[-15,6]],[[31735,57609],[0,4]],[[31735,57613],[-19,6]],[[31716,57619],[-3,7]],[[31713,57626],[-50,16]],[[31663,57642],[0,3]],[[31663,57645],[-53,-16]],[[31610,57629],[-5,-7]],[[31605,57622],[-8,-3]],[[31597,57619],[0,-4]],[[31597,57615],[-12,-2]],[[31585,57613],[0,-4]],[[31585,57609],[-11,-3]],[[31574,57606],[-6,0]],[[31568,57606],[-35,-7]],[[31533,57599],[-26,-19]],[[31507,57580],[-95,0]],[[31412,57580],[0,7]],[[31412,57587],[0,3]],[[31412,57590],[0,6]],[[31412,57596],[-35,-3]],[[31377,57593],[-15,-13]],[[31362,57580],[-10,7]],[[31352,57587],[0,3]],[[31352,57590],[-10,6]],[[31342,57596],[-7,13]],[[31335,57609],[-4,4]],[[31331,57613],[-10,13]],[[31321,57626],[-14,16]],[[31307,57642],[-5,12]],[[31302,57654],[-12,13]],[[31290,57667],[-5,10]],[[31285,57677],[-4,4]],[[31281,57681],[-5,9]],[[31276,57690],[-6,7]],[[31270,57697],[0,3]],[[31270,57700],[-8,6]],[[31262,57706],[-2,7]],[[31260,57713],[-23,16]],[[31237,57729],[-5,0]],[[31232,57729],[-40,-7]],[[31192,57722],[-7,7]],[[31185,57729],[-18,3]],[[31167,57732],[-8,6]],[[31159,57738],[-53,-16]],[[31106,57722],[0,-3]],[[31106,57719],[-11,-3]],[[31095,57716],[-11,-10]],[[31084,57706],[-41,-3]],[[31043,57703],[0,-3]],[[31043,57700],[-18,-14]],[[31025,57686],[0,-3]],[[31025,57683],[-10,-2]],[[31015,57681],[-25,-7]],[[30990,57674],[-17,-13]],[[30973,57661],[0,-7]],[[30973,57654],[-9,-9]],[[30964,57645],[0,-3]],[[30964,57642],[-11,-4]],[[30953,57638],[0,-3]],[[30953,57635],[-28,7]],[[30925,57642],[0,3]],[[30925,57645],[-17,-3]],[[30908,57642],[0,-7]],[[30908,57635],[-5,-3]],[[30903,57632],[-11,-10]],[[30892,57622],[-44,0]],[[30848,57622],[-11,-13]],[[30837,57609],[-4,-3]],[[30833,57606],[-5,0]],[[30828,57606],[-56,-3]],[[30772,57603],[0,3]],[[30772,57606],[-14,7]],[[30758,57613],[0,2]],[[30758,57615],[-19,4]],[[30739,57619],[-1,7]],[[30738,57626],[-19,6]],[[30719,57632],[-11,0]],[[30708,57632],[-45,-13]],[[30663,57619],[-25,-10]],[[30638,57609],[-10,-3]],[[30628,57606],[0,-3]],[[30628,57603],[-31,-20]],[[30597,57583],[-47,-16]],[[30550,57567],[-32,-9]],[[30518,57558],[0,-4]],[[30518,57554],[-13,-3]],[[30505,57551],[0,-3]],[[30505,57548],[-9,-4]],[[30496,57544],[-10,-6]],[[30486,57538],[-14,-3]],[[30472,57535],[-3,-10]],[[30469,57525],[-12,-3]],[[30457,57522],[-2,-7]],[[30455,57515],[-23,-12]],[[30432,57503],[0,-4]],[[30432,57499],[-11,-9]],[[30421,57490],[-2,-7]],[[30419,57483],[-15,0]],[[30404,57483],[0,-3]],[[30404,57480],[-10,-4]],[[30394,57476],[0,-3]],[[30394,57473],[-12,-6]],[[30382,57467],[-28,-16]],[[30354,57451],[-10,-3]],[[30344,57448],[-3,-10]],[[30341,57438],[-3,-3]],[[30338,57435],[-14,-10]],[[30324,57425],[-8,3]],[[30316,57428],[0,-3]],[[30316,57425],[-15,3]],[[30301,57428],[0,4]],[[30301,57432],[-11,6]],[[30290,57438],[0,3]],[[30290,57441],[-31,10]],[[30259,57451],[0,3]],[[30259,57454],[-30,3]],[[30229,57457],[-10,0]],[[30219,57457],[-10,-3]],[[30209,57454],[0,3]],[[30209,57457],[-24,7]],[[30185,57464],[-8,0]],[[30177,57464],[-29,0]],[[30148,57464],[-21,7]],[[30127,57471],[-59,2]],[[30068,57473],[0,-2]],[[30068,57471],[-15,-14]],[[30053,57457],[-7,-3]],[[30046,57454],[-9,-6]],[[30037,57448],[-11,3]],[[30026,57451],[0,3]],[[30026,57454],[-8,17]],[[30018,57471],[-1,16]],[[30017,57487],[-10,28]],[[30007,57515],[0,13]],[[30007,57528],[0,42]],[[30007,57570],[-14,33]],[[29993,57603],[10,3]],[[30003,57606],[4,9]],[[30007,57615],[10,43]],[[30017,57658],[0,23]],[[30017,57681],[-10,22]],[[30007,57703],[-6,45]],[[30001,57748],[-8,4]],[[29993,57752],[-9,35]],[[29984,57787],[-6,6]],[[29978,57793],[-11,13]],[[29967,57806],[-5,3]],[[29962,57809],[-11,10]],[[29951,57819],[-16,-3]],[[29935,57816],[0,-3]],[[29935,57813],[-7,-10]],[[29928,57803],[0,-3]],[[29928,57800],[-5,-4]],[[29923,57796],[0,-6]],[[29923,57790],[-20,3]],[[29903,57793],[0,-3]],[[29903,57790],[-8,3]],[[29895,57793],[-5,7]],[[29890,57800],[-28,3]],[[29862,57803],[3,13]],[[29865,57816],[8,3]],[[29873,57819],[3,6]],[[29876,57825],[0,10]],[[29876,57835],[0,4]],[[29876,57839],[-14,3]],[[29862,57842],[0,6]],[[29862,57848],[14,10]],[[29876,57858],[0,-3]],[[29876,57855],[11,-3]],[[29887,57852],[20,32]],[[29907,57884],[28,-13]],[[29935,57871],[0,-3]],[[29935,57868],[13,-10]],[[29948,57858],[44,22],[-5,43]],[[29987,57923],[-6,3]],[[29981,57926],[-8,0]],[[29973,57926],[-17,3]],[[29956,57929],[0,10]],[[29956,57939],[11,9]],[[29967,57948],[0,7]],[[29967,57955],[9,7]],[[29976,57962],[-3,9]],[[29973,57971],[-6,36]],[[29967,58007],[0,9]],[[29967,58016],[0,3]],[[29967,58019],[0,4]],[[29967,58023],[-5,3]],[[29962,58026],[0,3]],[[29962,58029],[-6,4]],[[29956,58033],[-10,22]],[[29946,58055],[-29,26]],[[29917,58081],[0,3]],[[29917,58084],[-10,3]],[[29907,58087],[0,7]],[[29907,58094],[-12,3]],[[29895,58097],[-8,9]],[[29887,58106],[-5,4]],[[29882,58110],[0,3]],[[29882,58113],[-6,7]],[[29876,58120],[-5,13]],[[29871,58133],[-6,3]],[[29865,58136],[-8,9]],[[29857,58145],[-4,4]],[[29853,58149],[-3,6]],[[29850,58155],[-18,3]],[[29832,58158],[0,3]],[[29832,58161],[-24,4]],[[29808,58165],[-22,13]],[[29786,58178],[-14,3]],[[29772,58181],[0,3]],[[29772,58184],[-41,7]],[[29731,58191],[0,-3]],[[29731,58188],[-9,-7]],[[29722,58181],[-11,-29]],[[29711,58152],[4,-3]],[[29715,58149],[0,-4]],[[29715,58145],[0,-3]],[[29715,58142],[-15,-13]],[[29700,58129],[-6,-12]],[[29694,58117],[-4,-7]],[[29690,58110],[-6,-4]],[[29684,58106],[0,-2]],[[29684,58104],[-25,-7]],[[29659,58097],[0,4]],[[29659,58101],[-14,3]],[[29645,58104],[0,2]],[[29645,58106],[-9,4]],[[29636,58110],[0,3]],[[29636,58113],[-6,4]],[[29630,58117],[-2,6]],[[29628,58123],[-28,13]],[[29600,58136],[0,16]],[[29600,58152],[-9,3]],[[29591,58155],[-25,3]],[[29566,58158],[-8,3]],[[29558,58161],[-13,-12]],[[29545,58149],[-6,-29]],[[29539,58120],[-19,0]],[[29520,58120],[-45,0]],[[29475,58120],[-11,-10]],[[29464,58110],[-20,7]],[[29444,58117],[-6,6]],[[29438,58123],[-35,3]],[[29403,58126],[0,3]],[[29403,58129],[-18,-6]],[[29385,58123],[-21,-13]],[[29364,58110],[-7,-4]],[[29357,58106],[0,-2]],[[29357,58104],[-35,6]],[[29322,58110],[0,-4]],[[29322,58106],[-11,-2]],[[29311,58104],[-8,-7]],[[29303,58097],[-1,-16]],[[29302,58081],[0,-16]],[[29302,58065],[-6,-23]],[[29296,58042],[-3,-9]],[[29293,58033],[-11,-10]],[[29282,58023],[0,-4]],[[29282,58019],[-5,-3]],[[29277,58016],[-23,-9]],[[29254,58007],[-13,28]],[[29241,58035],[2,7]],[[29243,58042],[0,32]],[[29243,58074],[-2,20]],[[29241,58094],[-9,12]],[[29232,58106],[0,4]],[[29232,58110],[-10,7]],[[29222,58117],[0,3]],[[29222,58120],[-4,6]],[[29218,58126],[0,3]],[[29218,58129],[-5,4]],[[29213,58133],[0,6]],[[29213,58139],[30,3]],[[29243,58142],[0,3]],[[29243,58145],[11,4]],[[29254,58149],[3,9]],[[29257,58158],[4,3]],[[29261,58161],[5,11]],[[29266,58172],[6,3]],[[29272,58175],[13,13]],[[29285,58188],[3,3]],[[29288,58191],[0,3]],[[29288,58194],[14,0]],[[29302,58194],[0,-19]],[[29302,58175],[-9,-7]],[[29293,58168],[0,-7]],[[29293,58161],[0,-6]],[[29293,58155],[0,-3]],[[29293,58152],[10,-3]],[[29303,58149],[4,0]],[[29307,58149],[6,-4]],[[29313,58145],[0,4]],[[29313,58149],[9,-4]],[[29322,58145],[5,10]],[[29327,58155],[6,3]],[[29333,58158],[0,3]],[[29333,58161],[0,20]],[[29333,58181],[0,13]],[[29333,58194],[34,13]],[[29367,58207],[7,3]],[[29374,58210],[11,0]],[[29385,58210],[0,3]],[[29385,58213],[12,36]],[[29397,58249],[0,3]],[[29397,58252],[17,13]],[[29414,58265],[3,7]],[[29417,58272],[0,22]],[[29417,58294],[7,13]],[[29424,58307],[11,-16]],[[29435,58291],[3,-7]],[[29438,58284],[9,-3]],[[29447,58281],[0,-6]],[[29447,58275],[8,-3]],[[29455,58272],[3,-7]],[[29458,58265],[41,3]],[[29499,58268],[0,4]],[[29499,58272],[9,12]],[[29508,58284],[0,4]],[[29508,58288],[6,9]],[[29514,58297],[0,81]],[[29514,58378],[-15,10]],[[29499,58388],[0,3]],[[29499,58391],[-25,7]],[[29474,58398],[-19,-39]],[[29455,58359],[-8,-10]],[[29447,58349],[-3,-6]],[[29444,58343],[-6,-4]],[[29438,58339],[0,-3]],[[29438,58336],[-16,-9]],[[29422,58327],[-8,-7]],[[29414,58320],[-11,13]],[[29403,58333],[-31,6]],[[29372,58339],[-5,-3]],[[29367,58336],[0,3]],[[29367,58339],[-23,4]],[[29344,58343],[0,3]],[[29344,58346],[-17,9]],[[29327,58355],[-5,11]],[[29322,58366],[-9,5]],[[29313,58371],[-2,11]],[[29311,58382],[-4,3]],[[29307,58385],[6,19]],[[29313,58404],[9,-10]],[[29322,58394],[-3,16]],[[29319,58410],[-12,4]],[[29307,58414],[0,3]],[[29307,58417],[-11,16]],[[29296,58433],[0,10]],[[29296,58443],[6,6]],[[29302,58449],[9,16]],[[29311,58465],[11,4]],[[29322,58469],[5,13]],[[29327,58482],[17,3]],[[29344,58485],[13,3]],[[29357,58488],[7,-3]],[[29364,58485],[33,-91]],[[29397,58394],[25,4]],[[29422,58398],[2,9]],[[29424,58407],[11,20]],[[29435,58427],[3,6]],[[29438,58433],[6,3]],[[29444,58436],[0,7]],[[29444,58443],[3,6]],[[29447,58449],[0,4]],[[29447,58453],[-3,9]],[[29444,58462],[0,7]],[[29444,58469],[11,13]],[[29455,58482],[12,12]],[[29467,58494],[41,16]],[[29508,58510],[0,7]],[[29508,58517],[-20,13]],[[29488,58530],[0,7]],[[29488,58537],[-5,11]],[[34174,61948],[14,-16]],[[34188,61932],[23,16]],[[34211,61948],[2,7]],[[34213,61955],[15,9]],[[34228,61964],[0,-3]],[[34228,61961],[5,-3]],[[34233,61958],[5,0]],[[34238,61958],[34,0]],[[34272,61958],[0,-3]],[[34272,61955],[-8,-7]],[[34264,61948],[-1,-6]],[[34263,61942],[-10,-10]],[[34253,61932],[0,-6]],[[34253,61926],[10,-7]],[[34263,61919],[19,0]],[[34282,61919],[6,4]],[[34288,61923],[0,3]],[[34288,61926],[15,3]],[[34303,61929],[0,3]],[[34303,61932],[11,3]],[[34314,61935],[19,13]],[[34333,61948],[25,4]],[[34358,61952],[80,9]],[[34438,61961],[7,-3]],[[34445,61958],[4,6]],[[34449,61964],[9,-3]],[[34458,61961],[25,-3]],[[34483,61958],[40,-3]],[[34523,61955],[0,3]],[[34523,61958],[22,3]],[[34545,61961],[0,3]],[[34545,61964],[21,4]],[[34566,61968],[0,-4]],[[34566,61964],[31,-3]],[[34597,61961],[125,-16]],[[34722,61945],[11,7]],[[34733,61952],[0,-4]],[[34733,61948],[24,-9]],[[34757,61939],[10,0]],[[34767,61939],[15,-4]],[[34782,61935],[0,4]],[[34782,61939],[18,-4]],[[34800,61935],[12,-9]],[[34812,61926],[6,-3]],[[34818,61923],[13,-13]],[[34831,61910],[5,3]],[[34836,61913],[7,3]],[[34843,61916],[0,-3]],[[34843,61913],[7,3]],[[34850,61916],[14,3]],[[34864,61919],[9,7]],[[34873,61926],[9,-3]],[[34882,61923],[21,-10]],[[34903,61913],[6,-13]],[[34909,61900],[19,10]],[[34928,61910],[18,-3]],[[34946,61907],[7,-11]],[[34953,61896],[20,4]],[[34973,61900],[0,10]],[[34973,61910],[0,19]],[[34973,61929],[0,3]],[[34973,61932],[14,-13]],[[34987,61919],[0,-3]],[[34987,61916],[6,3]],[[34993,61919],[2,16]],[[34995,61935],[22,-3]],[[35017,61932],[1,-3]],[[35018,61929],[0,-3]],[[35018,61926],[27,3]],[[35045,61929],[0,-3]],[[35045,61926],[14,-7]],[[35059,61919],[0,-3]],[[35059,61916],[18,-13]],[[35077,61903],[0,-3]],[[35077,61900],[8,-4]],[[35085,61896],[5,-22]],[[35090,61874],[28,-6]],[[35118,61868],[0,-4]],[[35118,61864],[11,-3]],[[35129,61861],[0,3]],[[35129,61864],[6,0]],[[35135,61864],[5,13]],[[35140,61877],[20,-3]],[[35160,61874],[0,-3]],[[35160,61871],[20,0]],[[35180,61871],[0,-3]],[[35180,61868],[14,0]],[[35194,61868],[0,-4]],[[35194,61864],[19,-3]],[[35213,61861],[0,10]],[[35213,61871],[16,13]],[[35229,61884],[9,26]],[[35238,61910],[13,-7]],[[35251,61903],[0,4]],[[35251,61907],[11,6]],[[35262,61913],[0,-3]],[[35262,61910],[17,-3]],[[35279,61907],[11,-33]],[[35290,61874],[31,6]],[[35321,61880],[15,13]],[[35336,61893],[8,3]],[[35344,61896],[0,4]],[[35344,61900],[8,3]],[[35352,61903],[0,4]],[[35352,61907],[20,-4]],[[35372,61903],[10,0]],[[35382,61903],[25,7]],[[35407,61910],[0,3]],[[35407,61913],[7,-3]],[[35414,61910],[0,-3]],[[35414,61907],[11,0]],[[35425,61907],[10,-49]],[[35435,61858],[11,-10]],[[35446,61848],[9,-3]],[[35455,61845],[8,10]],[[35463,61855],[0,6]],[[35463,61861],[8,3]],[[35471,61864],[0,32]],[[35471,61896],[0,7]],[[35471,61903],[9,13]],[[35480,61916],[6,3]],[[35486,61919],[0,4]],[[35486,61923],[19,-7]],[[35505,61916],[0,7]],[[35505,61923],[11,3]],[[35516,61926],[9,-7]],[[35525,61919],[21,-3]],[[35546,61916],[10,-6]],[[35556,61910],[7,-3]],[[35563,61907],[9,-4]],[[35572,61903],[16,7]],[[35588,61910],[0,-3]],[[35588,61907],[11,3]],[[35599,61910],[0,-3]],[[35599,61907],[7,-4]],[[35606,61903],[22,-10]],[[35628,61893],[11,7]],[[35639,61900],[0,-4]],[[35639,61896],[10,-12]],[[35649,61884],[7,-4]],[[35656,61880],[7,-28]],[[35663,61852],[11,12]],[[35674,61864],[4,7]],[[35678,61871],[0,6]],[[35678,61877],[0,3]],[[35678,61880],[0,7]],[[35678,61887],[0,6]],[[35678,61893],[6,3]],[[35684,61896],[4,-3]],[[35688,61893],[0,-2]],[[35688,61891],[17,-4]],[[35705,61887],[14,16]],[[35719,61903],[23,-7]],[[35742,61896],[8,4]],[[35750,61900],[14,-4]],[[35764,61896],[3,-16]],[[35767,61880],[13,4]],[[35780,61884],[25,9]],[[35805,61893],[11,3]],[[35816,61896],[0,-3]],[[35816,61893],[4,-2]],[[35820,61891],[0,-7]],[[35820,61884],[0,-10]],[[35820,61874],[0,-6]],[[35820,61868],[20,-7]],[[35840,61861],[0,3]],[[35840,61864],[21,0]],[[35861,61864],[9,-6]],[[35870,61858],[14,-6]],[[35884,61852],[0,3]],[[35884,61855],[10,13]],[[35894,61868],[9,-4]],[[35903,61864],[3,-3]],[[35906,61861],[3,55]],[[35909,61916],[14,-6]],[[35923,61910],[8,3]],[[35931,61913],[9,3]],[[35940,61916],[3,3]],[[35943,61919],[32,4]],[[35975,61923],[9,-7]],[[35984,61916],[0,3]],[[35984,61919],[16,4]],[[36000,61923],[4,-16]],[[36004,61907],[21,12]],[[36025,61919],[11,-6]],[[36036,61913],[4,-6]],[[36040,61907],[0,-4]],[[36040,61903],[11,-3]],[[36051,61900],[5,0]],[[36056,61900],[9,3]],[[36065,61903],[2,7]],[[36067,61910],[8,-3]],[[36075,61907],[1,6]],[[36076,61913],[9,13]],[[36085,61926],[0,3]],[[36085,61929],[10,-10]],[[36095,61919],[0,-45]],[[36095,61874],[9,-10]],[[36104,61864],[16,0]],[[36120,61864],[0,10]],[[36120,61874],[1,3]],[[36121,61877],[-4,23]],[[36117,61900],[14,-4]],[[36131,61896],[4,-3]],[[36135,61893],[11,20]],[[36146,61913],[21,3]],[[36167,61916],[3,7]],[[36170,61923],[8,16]],[[36178,61939],[0,3]],[[36178,61942],[18,3]],[[36196,61945],[0,-3]],[[36196,61942],[11,6]],[[36207,61948],[36,16]],[[36243,61964],[5,-6]],[[36248,61958],[39,-6]],[[36287,61952],[0,3]],[[36287,61955],[14,3]],[[36301,61958],[0,3]],[[36301,61961],[11,3]],[[36312,61964],[0,-6]],[[36312,61958],[47,-10]],[[36359,61948],[0,4]],[[36359,61952],[45,-7]],[[36404,61945],[23,7]],[[36427,61952],[11,3]],[[36438,61955],[5,-3]],[[36443,61952],[0,-4]],[[36443,61948],[6,-6]],[[36449,61942],[8,-10]],[[36457,61932],[6,-3]],[[36463,61929],[0,-3]],[[36463,61926],[10,-3]],[[36473,61923],[0,-4]],[[36473,61919],[4,-6]],[[36477,61913],[2,-6]],[[36479,61907],[36,3]],[[36515,61910],[0,-3]],[[36515,61907],[7,-4]],[[36522,61903],[0,-3]],[[36522,61900],[7,-4]],[[36529,61896],[0,4]],[[36529,61900],[15,3]],[[36544,61903],[0,4]],[[36544,61907],[10,3]],[[36554,61910],[0,3]],[[36554,61913],[9,6]],[[36563,61919],[6,10]],[[36569,61929],[16,19]],[[36585,61948],[0,-3]],[[36585,61945],[9,-6]],[[36594,61939],[0,-4]],[[36594,61935],[11,7]],[[36605,61942],[0,3]],[[36605,61945],[10,10]],[[36615,61955],[10,9]],[[36625,61964],[21,14]],[[36646,61978],[0,3]],[[36646,61981],[9,3]],[[36655,61984],[0,-3]],[[36655,61981],[6,-3]],[[36661,61978],[3,-7]],[[36664,61971],[2,-3]],[[36666,61968],[5,3]],[[36671,61971],[7,3]],[[36678,61974],[0,4]],[[36678,61978],[8,3]],[[36686,61981],[3,10]],[[36689,61991],[21,-4]],[[36710,61987],[6,13]],[[36716,62000],[23,39]],[[36739,62039],[-3,7]],[[36736,62046],[-9,22]],[[36727,62068],[0,6]],[[36727,62074],[28,-12]],[[36755,62062],[6,-30]],[[36761,62032],[3,-2]],[[36764,62030],[5,-7]],[[36769,62023],[28,3]],[[36797,62026],[3,6]],[[36800,62032],[14,-2]],[[36814,62030],[0,-4]],[[36814,62026],[0,-13]],[[36814,62013],[0,-10]],[[36814,62003],[0,-9]],[[36814,61994],[0,-3]],[[36814,61991],[24,3]],[[36838,61994],[0,3]],[[36838,61997],[9,6]],[[36847,62003],[11,48]],[[36858,62051],[22,11]],[[36880,62062],[3,9]],[[36883,62071],[0,13]],[[36883,62084],[-3,42]],[[36880,62126],[-3,3]],[[36877,62129],[-30,0]],[[36847,62129],[0,4]],[[36847,62133],[-9,3]],[[36838,62136],[0,9]],[[36838,62145],[0,7]],[[36838,62152],[0,10]],[[36838,62162],[9,10]],[[36847,62172],[5,9]],[[36852,62181],[29,-3]],[[36881,62178],[0,3]],[[36881,62181],[14,3]],[[36895,62184],[2,-3]],[[36897,62181],[14,3]],[[36911,62184],[11,-10]],[[36922,62174],[0,4]],[[36922,62178],[19,10]],[[36941,62188],[1,6]],[[36942,62194],[6,3]],[[36948,62197],[0,-3]],[[36948,62194],[4,-13]],[[36952,62181],[-4,-3]],[[36948,62178],[4,-4]],[[36952,62174],[17,4]],[[36969,62178],[-6,6]],[[36963,62184],[-5,7]],[[36958,62191],[-2,3]],[[36956,62194],[5,13]],[[36961,62207],[12,-3]],[[36973,62204],[0,-3]],[[36973,62201],[14,0]],[[36987,62201],[4,-4]],[[36991,62197],[11,0]],[[37002,62197],[10,-23]],[[37012,62174],[0,-2]],[[37012,62172],[27,-7]],[[37039,62165],[14,-7]],[[37053,62158],[30,-16]],[[37083,62142],[0,3]],[[37083,62145],[6,4]],[[37089,62149],[5,6]],[[37094,62155],[11,7]],[[37105,62162],[0,6]],[[37105,62168],[9,10]],[[37114,62178],[0,3]],[[37114,62181],[3,-3]],[[37117,62178],[8,3]],[[37125,62181],[8,3]],[[37133,62184],[9,17]],[[37142,62201],[0,12]],[[37142,62213],[-9,16]],[[37133,62229],[-16,4]],[[37117,62233],[0,9]],[[37117,62242],[6,17]],[[37123,62259],[0,19]],[[37123,62278],[-6,3]],[[37117,62281],[0,-3]],[[37117,62278],[-14,-3]],[[37103,62275],[-2,16]],[[37101,62291],[-17,3]],[[37084,62294],[0,3]],[[37084,62297],[-8,3]],[[37076,62300],[0,7]],[[37076,62307],[4,20]],[[37080,62327],[3,19]],[[37083,62346],[1,9]],[[37084,62355],[8,4]],[[37092,62359],[2,6]],[[37094,62365],[7,3]],[[37101,62368],[0,4]],[[37101,62372],[22,-4]],[[37123,62368],[0,4]],[[37123,62372],[14,6]],[[37137,62378],[-4,-13]],[[37133,62365],[-8,-16]],[[37125,62349],[0,-3]],[[37125,62346],[4,-3]],[[37129,62343],[15,-4]],[[37144,62339],[0,-3]],[[37144,62336],[20,3]],[[37164,62339],[0,4]],[[37164,62343],[11,3]],[[37175,62346],[0,3]],[[37175,62349],[8,3]],[[37183,62352],[0,23]],[[37183,62375],[-16,7]],[[37167,62382],[-3,32]],[[37164,62414],[-22,22]],[[37142,62436],[-8,10]],[[37134,62446],[-20,20]],[[37114,62466],[3,6]],[[37117,62472],[17,3]],[[37134,62475],[3,0]],[[37137,62475],[17,3]],[[37154,62478],[0,7]],[[37154,62485],[36,3]],[[37190,62488],[8,6]],[[37198,62494],[0,-3]],[[37198,62491],[10,-3]],[[37208,62488],[0,-3]],[[37208,62485],[6,-3]],[[37214,62482],[31,-20]],[[37245,62462],[12,0]],[[37257,62462],[2,-7]],[[37259,62455],[19,-2]],[[37278,62453],[8,-3]],[[37286,62450],[12,3]],[[37298,62453],[0,-3]],[[37298,62450],[8,5]],[[37306,62455],[0,4]],[[37306,62459],[19,3]],[[37325,62462],[4,20]],[[37329,62482],[2,-4]],[[37331,62478],[8,4]],[[37339,62482],[17,12]],[[37356,62494],[4,16]],[[37360,62510],[10,7]],[[37370,62517],[0,4]],[[37370,62521],[4,2]],[[37374,62523],[5,23]],[[37379,62546],[0,3]],[[37379,62549],[0,20]],[[37379,62569],[6,3]],[[37385,62572],[0,3]],[[37385,62575],[14,3]],[[37399,62578],[2,7]],[[37401,62585],[8,13]],[[37409,62598],[1,6]],[[37410,62604],[10,10]],[[37420,62614],[9,78]],[[37429,62692],[0,3]],[[37429,62695],[0,19]],[[37429,62714],[20,0]],[[37449,62714],[11,10]],[[37460,62724],[10,3]],[[37470,62727],[11,13]],[[37481,62740],[7,26]],[[37488,62766],[4,3]],[[37492,62769],[0,3]],[[37492,62772],[20,-16]],[[37435,62827],[0,-9]],[[37435,62818],[-9,-14]],[[37426,62804],[0,-2]],[[37426,62802],[-25,-10]],[[37401,62792],[0,-4]],[[37401,62788],[-12,4]],[[37389,62792],[0,3]],[[37389,62795],[-15,3]],[[37374,62798],[0,-3]],[[37374,62795],[-4,-3]],[[37370,62792],[0,6]],[[37370,62798],[4,6]],[[37374,62804],[5,20]],[[37379,62824],[11,3]],[[37390,62827],[0,-3]],[[37390,62824],[45,3]],[[68870,25561],[136,-44]],[[69006,25517],[109,-93]],[[69115,25424],[206,-218],[152,-128]],[[69473,25078],[117,-203]],[[69590,24875],[79,-149],[49,-15]],[[69718,24711],[25,-13]],[[69743,24698],[136,-116]],[[69879,24582],[84,-95]],[[69963,24487],[92,-129]],[[70055,24358],[26,-56]],[[70081,24302],[33,-85],[49,-79]],[[70163,24138],[57,-74]],[[70220,24064],[211,-236],[78,-97]],[[70509,23731],[48,-78],[47,-114]],[[70604,23539],[28,-51],[122,-167]],[[70754,23321],[31,-50],[75,-164]],[[70860,23107],[137,-193]],[[70997,22914],[33,-49],[75,-165],[137,-191]],[[71242,22509],[32,-50]],[[71274,22459],[61,-140],[79,-155],[44,-115],[62,-129]],[[71520,21920],[31,-146]],[[71551,21774],[5,-123],[-19,-349]],[[71537,21302],[-25,-94],[-59,-129],[-44,-115],[-78,-155]],[[71331,20809],[-57,-141],[-67,-129],[-107,-247],[-31,-129],[-17,-177]],[[71052,19986],[-30,-128]],[[71022,19858],[-56,-134],[-23,-134],[-6,-142]],[[70937,19448],[4,-179],[11,-106],[24,-113]],[[70976,19050],[149,-5],[99,-44],[111,-103],[333,-376],[57,-73]],[[71725,18449],[48,-78]],[[71773,18371],[44,-115],[78,-156]],[[71895,18100],[40,-118]],[[71935,17982],[63,-150]],[[71998,17832],[34,-188]],[[72032,17644],[-86,-102]],[[71946,17542],[-67,-123],[-36,-43]],[[71843,17376],[-40,-38]],[[71803,17338],[-147,-81]],[[71656,17257],[-92,-59],[-130,-60]],[[71434,17138],[-140,-86],[-103,-51]],[[71191,17001],[-67,-49],[-131,-119]],[[70993,16833],[-44,-35],[-128,-64],[-117,-71]],[[70704,16663],[-100,-49],[-87,-71]],[[70517,16543],[-55,-102],[-15,-90],[-150,-7]],[[70297,16344],[-84,-23]],[[70213,16321],[-72,-45],[-128,-118],[-67,-50]],[[69946,16108],[-103,-52]],[[69843,16056],[-141,-87],[-104,-46]],[[69598,15923],[-142,-81]],[[94618,32332],[37,44],[83,47]],[[94738,32423],[146,35],[49,23]],[[94933,32481],[131,115],[284,318]],[[95348,32914],[125,127]],[[95473,33041],[68,49],[103,52]],[[95644,33142],[111,90]],[[95755,33232],[166,173],[110,91]],[[96031,33496],[83,39]],[[96114,33535],[111,80],[125,130]],[[96350,33745],[93,117],[46,76],[45,115]],[[96534,34053],[81,125]],[[96615,34178],[58,69]],[[96673,34247],[101,107],[64,51]],[[96838,34405],[103,26]],[[96941,34431],[89,294],[80,194],[14,106]],[[97124,35025],[-8,177]],[[97116,35202],[-16,68],[-65,161],[-60,243]],[[96975,35674],[-73,158]],[[96902,35832],[-45,115],[-63,130]],[[96794,36077],[-34,163]],[[96760,36240],[-5,105],[7,215]],[[96762,36560],[14,105],[42,147],[50,35],[148,266]],[[97016,37113],[91,52],[107,-5],[197,-94],[128,-22],[139,-6],[210,0]],[[97888,37038],[283,19]],[[98171,37057],[179,-17],[152,-3],[120,8],[134,46]],[[98756,37091],[197,106]],[[98953,37197],[117,74]],[[99070,37271],[126,63],[142,86],[103,49]],[[99441,37469],[141,88],[104,48]],[[99686,37605],[142,83],[89,32]],[[99917,37720],[183,-3],[100,7]],[[100200,37724],[95,23]],[[100295,37747],[146,71],[60,17]],[[100501,37835],[128,14],[220,2]],[[100849,37851],[775,-5],[198,13],[94,31]],[[101916,37890],[114,65]],[[102030,37955],[103,52],[245,188],[42,77]],[[102420,38272],[38,54]],[[102458,38326],[107,120],[74,57]],[[102639,38503],[220,120],[140,35]],[[102999,38658],[120,4],[177,-4]],[[27443,33865],[-112,-27]],[[27331,33838],[-112,-85]],[[27219,33753],[-158,-179],[-94,-155]],[[26967,33419],[-229,-108],[-67,-42],[-86,-81]],[[26585,33188],[-203,-226],[-83,-82]],[[26299,32880],[-98,-60],[-42,-5]],[[26159,32815],[-39,-109],[-51,-182]],[[26069,32524],[-77,-157]],[[25992,32367],[-78,-212],[-8,-50]],[[25906,32105],[2,-24]],[[25908,32081],[31,-120],[5,-57]],[[25944,31904],[-14,-85],[-43,-103],[-29,-124],[-11,-210],[-2,-176],[11,-208],[21,-98],[74,-190],[18,-130]],[[25969,30580],[9,-478],[-3,-110]],[[25975,29992],[-20,-140]],[[25955,29852],[-29,-63]],[[25926,29789],[-43,-52]],[[25883,29737],[-106,-57]],[[25777,29680],[-52,-11]],[[25725,29669],[0,-135]],[[25725,29534],[184,-203],[97,-115],[48,-73],[60,-140]],[[26114,29003],[100,-147]],[[26214,28856],[196,-229],[92,-139]],[[131945,22379],[122,-135]],[[132067,22244],[40,-149],[82,-122]],[[132189,21973],[121,-136],[44,-151]],[[132354,21686],[147,-210]],[[132501,21476],[33,-55]],[[132534,21421],[76,-185],[16,-77]],[[132626,21159],[-4,-26]],[[132622,21133],[-90,-233],[-77,-156],[-24,-160],[1,-98]],[[132432,20486],[14,-96]],[[132446,20390],[78,-191]],[[132524,20199],[25,-158],[8,-159]],[[132557,19882],[-142,-114],[-164,-152],[-78,-50]],[[132173,19566],[-120,-28]],[[132053,19538],[-317,-7],[-123,-17],[-150,-69]],[[131463,19445],[-117,-32]],[[131346,19413],[-158,-19],[-92,-24],[-50,-26]],[[131046,19344],[-185,-127],[-16,-134]],[[130845,19083],[-6,-158],[-3,-999],[11,-236],[11,-77]],[[130858,17613],[18,-82]],[[130876,17531],[86,-257],[27,-54]],[[130989,17220],[54,-63]],[[131043,17157],[74,-36],[56,-2]],[[131173,17119],[51,16],[169,85]],[[131393,17220],[137,40]],[[131530,17260],[156,80]],[[131686,17340],[73,-6],[40,-34]],[[131799,17300],[49,-185]],[[131848,17115],[71,-195]],[[131919,16920],[11,-67]],[[131930,16853],[28,-248]],[[131958,16605],[18,-62]],[[131976,16543],[46,-106],[29,-128]],[[132051,16309],[8,-106],[-1,-141],[-11,-105]],[[132047,15957],[-16,-66],[-76,-194]],[[131955,15697],[-49,-311]],[[131906,15386],[-900,-251]],[[131006,15135],[-245,-46],[-339,11]],[[130422,15100],[-240,-23],[-55,-18]],[[130127,15059],[-86,-30]],[[130041,15029],[-110,-37],[-300,-148]],[[129631,14844],[-258,-84],[-113,-16]],[[129260,14744],[-352,-50],[-927,5],[-822,3]],[[127159,14702],[-142,-20]],[[127017,14682],[-90,-40],[-71,-69]],[[126856,14573],[-98,-49],[-150,-15]],[[126608,14509],[-53,40],[-34,110],[-27,32],[-282,151],[-303,10],[-111,17]],[[125798,14869],[-36,6],[-447,120],[-220,23],[-260,54]],[[124835,15072],[-229,63],[-61,28]],[[124545,15163],[-122,53],[-235,31]],[[124188,15247],[-247,-28]],[[123941,15219],[-39,-5],[-126,-72],[-100,-113],[-31,-9]],[[123645,15020],[-31,-10],[-135,31],[-46,78]],[[123433,15119],[-14,13]],[[123419,15132],[-33,30],[-333,9],[-235,-169],[-99,-41]],[[122719,14961],[-132,-14]],[[122587,14947],[-134,-42]],[[122453,14905],[-158,-117],[-83,-78]],[[122212,14710],[-28,-28],[-236,-126]],[[121948,14556],[-87,-56],[-268,-102]],[[121593,14398],[-161,-149],[-295,-170]],[[121137,14079],[-111,-33],[-243,-44]],[[120783,14002],[-333,-60],[-193,-70]],[[120257,13872],[-42,-30]],[[120215,13842],[-113,-82],[-176,-208],[-94,-78],[-134,-84],[-354,-180]],[[119344,13210],[-315,-244]],[[119029,12966],[-72,-56],[-137,-66]],[[118820,12844],[-11,-6]],[[118809,12838],[-42,-44]],[[118767,12794],[-147,85]],[[118620,12879],[-130,58]],[[118490,12937],[-240,136]],[[118250,13073],[-81,77],[-45,76]],[[118124,13226],[-33,84],[-77,156],[-43,115],[-78,155]],[[117893,13736],[-44,115]],[[117849,13851],[-62,130],[-19,60]],[[117768,14041],[-17,169]],[[117751,14210],[3,456],[-8,172]],[[117746,14838],[-19,98],[-56,150],[-20,116]],[[117651,15202],[-47,148],[-73,149]],[[117531,15499],[-44,115],[-80,155],[-42,116],[-82,188],[-29,155],[-26,89]],[[117228,16317],[-63,131],[-42,114]],[[117123,16562],[-79,156],[-44,115]],[[117000,16833],[-78,156]],[[116922,16989],[-44,115],[-78,156],[-43,115]],[[116757,17375],[-78,156],[-44,115]],[[116635,17646],[-78,155],[-44,116]],[[116513,17917],[-78,156],[-45,115],[-78,155],[-44,115],[-62,131]],[[116206,18589],[-19,58],[-45,215]],[[116142,18862],[-77,191],[-28,156]],[[116037,19209],[-17,60],[-65,162],[-16,61]],[[115939,19492],[-22,126]],[[115917,19618],[-39,114],[-86,157],[-50,34]],[[115742,19923],[-31,172],[14,145]],[[64030,3635],[1,-7]],[[64031,3628],[8,-9]],[[64039,3619],[0,-7]],[[64039,3612],[13,-26]],[[64052,3586],[3,-51]],[[64055,3535],[-35,0]],[[64020,3535],[0,3]],[[64020,3538],[-1,-6]],[[64019,3532],[0,-3]],[[64019,3529],[-8,-4]],[[64011,3525],[-2,16]],[[64009,3541],[11,10]],[[64020,3551],[0,3]],[[64020,3554],[0,7]],[[64020,3561],[0,12]],[[64020,3573],[11,4]],[[64031,3577],[0,3]],[[64031,3580],[0,9]],[[64031,3589],[-4,7]],[[64027,3596],[-7,4]],[[64020,3600],[-1,19]],[[64019,3619],[11,16]],[[65369,4009],[22,-19]],[[65391,3990],[-29,-3]],[[65362,3987],[-9,6]],[[65353,3993],[-5,7]],[[65348,4000],[-7,4]],[[65341,4004],[0,3]],[[65341,4007],[0,2]],[[65341,4009],[0,4]],[[65341,4013],[28,-4]],[[66060,4459],[5,-3]],[[66065,4456],[0,-4]],[[66065,4452],[11,-42]],[[66076,4410],[-2,-22]],[[66074,4388],[-8,-13]],[[66066,4375],[-17,-42]],[[66049,4333],[-3,-10]],[[66046,4323],[0,-16]],[[66046,4307],[-22,-29]],[[66024,4278],[-19,-13]],[[66005,4265],[3,-3]],[[66008,4262],[-14,-4]],[[65994,4258],[-20,-3]],[[65974,4255],[-5,0]],[[65969,4255],[-14,-6]],[[65955,4249],[-6,3]],[[65949,4252],[-26,-16]],[[65923,4236],[-5,-6]],[[65918,4230],[-16,0]],[[65902,4230],[0,6]],[[65902,4236],[-4,0]],[[65898,4236],[-14,6]],[[65884,4242],[-11,10]],[[65873,4252],[0,42]],[[65873,4294],[11,16]],[[65884,4310],[20,32]],[[65904,4342],[14,10]],[[65918,4352],[5,6]],[[65923,4358],[20,23]],[[65943,4381],[11,13]],[[65954,4394],[20,10]],[[65974,4404],[0,4]],[[65974,4408],[20,21]],[[65994,4429],[14,30]],[[66008,4459],[5,3]],[[66013,4462],[0,6]],[[66013,4468],[13,4]],[[66026,4472],[34,-13]],[[66453,5260],[0,-23]],[[66453,5237],[-9,-12]],[[66444,5225],[-3,-10]],[[66441,5215],[-5,45]],[[66436,5260],[2,10]],[[66438,5270],[15,-10]],[[75298,10568],[-39,-5]],[[75259,10563],[-8,-4]],[[75251,10559],[-6,-3]],[[75245,10556],[-1,16]],[[75244,10572],[11,23]],[[75255,10595],[6,6]],[[75261,10601],[3,6]],[[75264,10607],[-13,0]],[[75251,10607],[-7,-16]],[[75244,10591],[-21,-12]],[[75223,10579],[-4,-11]],[[75219,10568],[-14,0]],[[75205,10568],[-10,7]],[[75195,10575],[-4,16]],[[75191,10591],[0,88]],[[75191,10679],[-21,12]],[[75170,10691],[-1,11]],[[75169,10702],[0,19]],[[75169,10721],[-3,13]],[[75166,10734],[-8,19]],[[75158,10753],[0,3]],[[75158,10756],[-5,3]],[[75153,10759],[-14,36]],[[75139,10795],[-20,35]],[[75119,10830],[-5,10]],[[75114,10840],[-6,10]],[[75108,10850],[0,3]],[[75108,10853],[-9,3]],[[75099,10856],[-11,33]],[[75088,10889],[-8,9]],[[75080,10898],[0,3]],[[75080,10901],[-31,46]],[[75049,10947],[0,9]],[[75049,10956],[-10,4]],[[75039,10960],[-4,12]],[[75035,10972],[-5,4]],[[75030,10976],[0,3]],[[75030,10979],[-11,7]],[[75019,10986],[-9,16]],[[75010,11002],[-21,16]],[[74989,11018],[-4,13]],[[74985,11031],[-2,3]],[[74983,11034],[-5,3]],[[74978,11037],[-1,6]],[[74977,11043],[-10,4]],[[74967,11047],[-9,13]],[[74958,11060],[-20,19]],[[74938,11079],[-5,7]],[[74933,11086],[-6,3]],[[74927,11089],[0,6]],[[74927,11095],[-13,4]],[[74914,11099],[-3,9]],[[74911,11108],[-29,23]],[[74882,11131],[0,3]],[[74882,11134],[-10,4]],[[74872,11138],[-18,19]],[[74854,11157],[-22,16]],[[74832,11173],[-3,6]],[[74829,11179],[-13,7]],[[74816,11186],[-8,16]],[[74808,11202],[-25,16]],[[74783,11218],[-1,7]],[[74782,11225],[-21,9]],[[74761,11234],[-15,13]],[[74746,11247],[-11,6]],[[74735,11253],[-8,7]],[[74727,11260],[-25,16]],[[74702,11276],[-9,10]],[[74693,11286],[-11,3]],[[74682,11289],[-6,10]],[[74676,11299],[-24,13]],[[74652,11312],[-1,6]],[[74651,11318],[-11,3]],[[74640,11321],[0,4]],[[74640,11325],[-10,3]],[[74630,11328],[-9,0]],[[74621,11328],[-42,16]],[[74579,11344],[-9,10]],[[74570,11354],[-21,10]],[[74549,11364],[0,3]],[[74549,11367],[-23,9]],[[74526,11376],[-2,4]],[[74524,11380],[-8,7]],[[74516,11387],[-17,5]],[[74499,11392],[-6,4]],[[74493,11396],[0,3]],[[74493,11399],[-17,7]],[[74476,11406],[-16,9]],[[74460,11415],[-15,4]],[[74445,11419],[-5,6]],[[74440,11425],[-22,6]],[[74418,11431],[-5,7]],[[74413,11438],[-15,3]],[[74398,11441],[-8,6]],[[74390,11447],[-26,7]],[[74364,11454],[0,4]],[[74364,11458],[-16,2]],[[74348,11460],[-5,7]],[[74343,11467],[-26,7]],[[74317,11474],[-5,6]],[[74312,11480],[-20,3]],[[74292,11483],[-5,7]],[[74287,11490],[-25,3]],[[74262,11493],[-28,13]],[[74234,11506],[-27,6]],[[74207,11512],[-26,10]],[[74181,11522],[-25,3]],[[74156,11525],[-14,6]],[[74142,11531],[-20,4]],[[74122,11535],[-32,10]],[[74090,11545],[-28,3]],[[74062,11548],[-56,10]],[[74006,11558],[-31,3]],[[73975,11561],[-73,13]],[[73902,11574],[-25,-10]],[[73877,11564],[0,3]],[[73877,11567],[-22,3]],[[73855,11570],[-5,0]],[[73850,11570],[-26,4]],[[73824,11574],[-19,0]],[[73805,11574],[-27,-4]],[[73778,11570],[-9,4]],[[73769,11574],[-23,-4]],[[73746,11570],[-5,4]],[[73741,11574],[-6,-4]],[[73735,11570],[-21,-12]],[[73714,11558],[-25,-13]],[[73689,11545],[0,-4]],[[73689,11541],[-9,4]],[[73680,11545],[-6,-10]],[[73674,11535],[-31,-4]],[[73643,11531],[0,4]],[[73643,11535],[-19,3]],[[73624,11538],[-10,-3]],[[73614,11535],[-25,-4]],[[73589,11531],[-4,0]],[[73585,11531],[-16,0]],[[73569,11531],[-11,0]],[[73558,11531],[-15,0]],[[73543,11531],[0,-2]],[[73543,11529],[-24,-4]],[[73519,11525],[-11,0]],[[73508,11525],[-51,6]],[[73457,11531],[0,4]],[[73457,11535],[-120,-4]],[[73337,11531],[-10,-16]],[[73327,11515],[-26,-3]],[[73301,11512],[-50,-3]],[[73251,11509],[-16,-26]],[[73235,11483],[0,-13]],[[73235,11470],[0,-3]],[[73235,11467],[-20,32]],[[73215,11499],[-9,-3]],[[73206,11496],[-10,-6]],[[73196,11490],[-20,35]],[[73176,11525],[-5,4]],[[73171,11529],[-6,-4]],[[73165,11525],[-2,-6]],[[73163,11519],[-4,-10]],[[73159,11509],[-14,-49]],[[73145,11460],[-5,-2]],[[73140,11458],[0,-4]],[[73140,11454],[-16,-13]],[[73124,11441],[-4,17]],[[73120,11458],[-16,-4]],[[73104,11454],[-9,20]],[[73095,11474],[-22,-33]],[[73073,11441],[-5,-16]],[[73068,11425],[-8,-13]],[[73060,11412],[0,-6]],[[73060,11406],[-6,-10]],[[73054,11396],[-14,10]],[[73040,11406],[-6,13]],[[73034,11419],[0,3]],[[73034,11422],[-16,0]],[[73018,11422],[-3,-7]],[[73015,11415],[-12,-7]],[[73003,11408],[-13,-16]],[[72990,11392],[-6,-3]],[[72984,11389],[-2,-9]],[[72982,11380],[-12,-13]],[[72970,11367],[-6,-13]],[[72964,11354],[18,-29]],[[72982,11325],[2,-7]],[[72984,11318],[0,-3]],[[72984,11315],[0,-3]],[[72984,11312],[-14,-7]],[[72970,11305],[0,-3]],[[72970,11302],[-31,-3]],[[72939,11299],[0,-3]],[[72939,11296],[-19,-4]],[[72920,11292],[-2,-6]],[[72918,11286],[-20,-16]],[[72898,11270],[-6,-6]],[[72892,11264],[-3,-7]],[[72889,11257],[-10,-4]],[[72879,11253],[-10,-9]],[[72869,11244],[-32,-3]],[[72837,11241],[0,-4]],[[72837,11237],[-9,-3]],[[72828,11234],[0,-3]],[[72828,11231],[-9,-3]],[[72819,11228],[-11,-10]],[[72808,11218],[-39,-6]],[[72769,11212],[0,-3]],[[72769,11209],[-66,-7]],[[72703,11202],[-22,-6]],[[72681,11196],[-18,-3]],[[72663,11193],[-10,-7]],[[72653,11186],[-20,-4]],[[72633,11182],[0,-3]],[[72633,11179],[-27,-6]],[[72606,11173],[0,-3]],[[72606,11170],[-25,-7]],[[72581,11163],[-6,-6]],[[72575,11157],[-25,-7]],[[72550,11150],[-23,-12]],[[72527,11138],[-14,-4]],[[72513,11134],[-13,-7]],[[72500,11127],[0,-2]],[[72500,11125],[-9,-4]],[[72491,11121],[-16,-10]],[[72475,11111],[-29,-16]],[[72446,11095],[0,-3]],[[72446,11092],[-16,-6]],[[72430,11086],[-19,-13]],[[72411,11073],[-7,-7]],[[72404,11066],[-10,-16]],[[72394,11050],[-14,-23]],[[72380,11027],[0,-6]],[[72380,11021],[-9,0]],[[72371,11021],[-11,-19]],[[72360,11002],[-14,-14]],[[72346,10988],[-3,-9]],[[72343,10979],[-14,-13]],[[72329,10966],[0,-6]],[[72329,10960],[-8,-7]],[[72321,10953],[-3,-9]],[[72318,10944],[-8,-13]],[[72310,10931],[0,-36]],[[72310,10895],[0,-6]],[[72310,10889],[0,-4]],[[72310,10885],[8,-3]],[[72318,10882],[1,-19]],[[72319,10863],[-9,3]],[[72310,10866],[0,-3]],[[72310,10863],[-2,-3]],[[72308,10860],[0,-7]],[[72308,10853],[-7,-7]],[[72301,10846],[-11,-57]],[[72290,10789],[-21,-20]],[[72269,10769],[-4,-10]],[[72265,10759],[-7,-3]],[[72258,10756],[-3,-10]],[[72255,10746],[-6,-3]],[[72249,10743],[-11,-13]],[[72238,10730],[-20,-12]],[[72218,10718],[-5,-7]],[[72213,10711],[-20,-4]],[[72193,10707],[-6,0]],[[72187,10707],[-43,-12]],[[72144,10695],[-1,-4]],[[72143,10691],[-6,0]],[[72137,10691],[0,-3]],[[72137,10688],[-21,-6]],[[72116,10682],[-4,-7]],[[72112,10675],[-19,-6]],[[72093,10669],[-41,-19]],[[72052,10650],[-9,-7]],[[72043,10643],[0,-3]],[[72043,10640],[-9,-4]],[[72034,10636],[-11,-9]],[[72023,10627],[-11,-3]],[[72012,10624],[-6,-13]],[[72006,10611],[-25,-16]],[[71981,10595],[0,-7]],[[71981,10588],[-8,0]],[[71973,10588],[-2,-13]],[[71971,10575],[0,-7]],[[71971,10568],[0,-5]],[[71971,10563],[-4,-4]],[[71967,10559],[-14,-19]],[[71953,10540],[-25,-10]],[[71928,10530],[-25,-13]],[[71903,10517],[-22,-9]],[[71881,10508],[0,-4]],[[71881,10504],[-19,-7]],[[71862,10497],[-11,-9]],[[71851,10488],[-20,-10]],[[71831,10478],[-5,-6]],[[71826,10472],[-15,-7]],[[71811,10465],[0,-3]],[[71811,10462],[-10,-3]],[[71801,10459],[-5,-6]],[[71796,10453],[-6,-4]],[[71790,10449],[0,-3]],[[71790,10446],[-9,-3]],[[71781,10443],[-10,-10]],[[71771,10433],[-12,-7]],[[71759,10426],[0,-2]],[[71759,10424],[-8,-4]],[[71751,10420],[-4,-6]],[[71747,10414],[-8,-4]],[[71739,10410],[-19,-19]],[[71720,10391],[-20,-16]],[[71700,10375],[-5,0]],[[71695,10375],[-6,-10]],[[71689,10365],[-3,-7]],[[71686,10358],[-8,-3]],[[71678,10355],[-10,-19]],[[71668,10336],[-20,-19]],[[71648,10317],[-4,-10]],[[71644,10307],[-8,-6]],[[71636,10301],[-2,-7]],[[71634,10294],[-5,-3]],[[71629,10291],[-14,-23]],[[71615,10268],[-37,-26]],[[71578,10242],[-11,-19]],[[71567,10223],[-9,-7]],[[71558,10216],[0,-3]],[[71558,10213],[-14,-16]],[[71544,10197],[-5,-6]],[[71539,10191],[-16,-10]],[[71523,10181],[-11,-22]],[[71512,10159],[-18,-16]],[[71494,10143],[-7,-17]],[[71487,10126],[-14,-16]],[[71473,10110],[0,-3]],[[71473,10107],[-6,-3]],[[71467,10104],[-8,-13]],[[71459,10091],[-3,-3]],[[71456,10088],[-3,-7]],[[71453,10081],[-9,-9]],[[71444,10072],[-6,-23]],[[71438,10049],[-16,-29]],[[71422,10020],[0,-4]],[[71422,10016],[-8,-10]],[[71414,10006],[-1,-12]],[[71413,9994],[-10,-7]],[[71403,9987],[0,-10]],[[71403,9977],[-6,-6]],[[71397,9971],[-5,-3]],[[71392,9968],[-6,-23]],[[71386,9945],[-23,-58]],[[71363,9887],[-5,-9]],[[71358,9878],[-6,3]],[[71352,9881],[0,-3]],[[71352,9878],[-3,-4]],[[71349,9874],[0,-12]],[[71349,9862],[-7,-4]],[[71342,9858],[-11,-7]],[[71331,9851],[-40,-12]],[[71291,9839],[-13,-10]],[[71278,9829],[-40,-13]],[[71238,9816],[-17,-10]],[[71221,9806],[-11,-3]],[[71210,9803],[-8,-7]],[[71202,9796],[-16,-6]],[[71186,9790],[-29,-16]],[[71157,9774],[-21,-10]],[[71136,9764],[0,-3]],[[71136,9761],[-6,3]],[[71130,9764],[-5,-9]],[[71125,9755],[-6,-4]],[[71119,9751],[-17,-6]],[[71102,9745],[-23,-13]],[[71079,9732],[-4,3]],[[71075,9735],[-9,-3]],[[71066,9732],[0,-4]],[[71066,9728],[0,-3]],[[71066,9725],[0,-6]],[[71066,9719],[-17,-3]],[[71049,9716],[0,-4]],[[71049,9712],[-28,-16]],[[71021,9696],[0,-3]],[[71021,9693],[-9,-3]],[[71012,9690],[-18,-17]],[[70994,9673],[-20,-12]],[[70974,9661],[-3,-7]],[[70971,9654],[-20,-9]],[[70951,9645],[-8,-16]],[[70943,9629],[-19,-10]],[[70924,9619],[-5,-6]],[[70919,9613],[-18,-7]],[[70901,9606],[-11,-10]],[[70890,9596],[-16,-3]],[[70874,9593],[-6,-3]],[[70868,9590],[-34,-10]],[[70834,9580],[-2,0]],[[70832,9580],[-9,-6]],[[70823,9574],[-10,-17]],[[70813,9557],[-20,-12]],[[70793,9545],[-3,-7]],[[70790,9538],[-11,-7]],[[70779,9531],[0,-2]],[[70779,9529],[-5,-4]],[[70774,9525],[-12,-7]],[[70762,9518],[-24,-16]],[[70738,9502],[0,-3]],[[70738,9499],[-9,-3]],[[70729,9496],[-20,-19]],[[70709,9477],[-21,-17]],[[70688,9460],[0,-2]],[[70688,9458],[-10,-4]],[[70678,9454],[0,-7]],[[70678,9447],[-7,-3]],[[70671,9444],[-12,-13]],[[70659,9431],[-24,-22]],[[70635,9409],[-3,-6]],[[70632,9403],[-14,-13]],[[70618,9390],[0,-4]],[[70618,9386],[-6,-3]],[[70612,9383],[-5,-10]],[[70607,9373],[-6,-3]],[[70601,9370],[0,-3]],[[70601,9367],[-11,-7]],[[70590,9360],[-9,-13]],[[70581,9347],[-20,-16]],[[70561,9331],[-8,-10]],[[70553,9321],[-5,-2]],[[70548,9319],[-2,-7]],[[70546,9312],[-6,-7]],[[70540,9305],[-12,-22]],[[70528,9283],[-21,-33]],[[70507,9250],[-4,-9]],[[70503,9241],[-6,-4]],[[70497,9237],[0,-3]],[[70497,9234],[0,-3]],[[70497,9231],[-21,-38]],[[70476,9193],[-20,-30]],[[70456,9163],[-5,-9]],[[70451,9154],[-14,-4]],[[70437,9150],[-12,-3]],[[70425,9147],[-21,-9]],[[70404,9138],[-12,-4]],[[70392,9134],[-6,-3]],[[70386,9131],[-21,-10]],[[70365,9121],[-15,0]],[[70350,9121],[-3,-6]],[[70347,9115],[-22,-13]],[[70325,9102],[-11,-7]],[[70314,9095],[-9,-6]],[[70305,9089],[-10,-10]],[[70295,9079],[-9,0]],[[70286,9079],[-5,-6]],[[70281,9073],[-8,-7]],[[70273,9066],[-3,-6]],[[70270,9060],[-9,-3]],[[70261,9057],[0,-3]],[[70261,9054],[-8,-4]],[[70253,9050],[-9,-10]],[[70244,9040],[-24,-13]],[[70220,9027],[0,-3]],[[70220,9024],[-11,-6]],[[70209,9018],[0,-3]],[[70209,9015],[-4,-4]],[[70205,9011],[-11,-12]],[[70194,8999],[-25,-13]],[[70169,8986],[-30,-20]],[[70139,8966],[-25,-16]],[[70114,8950],[0,-10]],[[70114,8940],[-12,-9]],[[70102,8931],[-8,-16]],[[70094,8915],[-27,-23]],[[70067,8892],[-4,-7]],[[70063,8885],[-19,-13]],[[70044,8872],[-16,-19]],[[70028,8853],[-11,-9]],[[70017,8844],[-6,-14]],[[70011,8830],[-17,-13]],[[69994,8817],[0,-3]],[[69994,8814],[-3,-3]],[[69991,8811],[-8,-13]],[[69983,8798],[-6,-3]],[[69977,8795],[0,-3]],[[69977,8792],[-11,-7]],[[69966,8785],[-8,-26]],[[69958,8759],[-12,-13]],[[69946,8746],[0,-3]],[[69946,8743],[-8,-9]],[[69938,8734],[-2,-23]],[[69936,8711],[-18,-20]],[[69918,8691],[-11,-6]],[[69907,8685],[-21,-26]],[[69886,8659],[-4,-13]],[[69882,8646],[-7,-3]],[[69875,8643],[-20,-42]],[[69855,8601],[-20,-26]],[[69835,8575],[-5,-19]],[[69830,8556],[-8,-7]],[[69822,8549],[-20,-41]],[[69802,8508],[-6,-13]],[[69796,8495],[0,-4]],[[69796,8491],[-14,-26]],[[69782,8465],[-5,-19]],[[69777,8446],[0,-26]],[[69777,8420],[0,-3]],[[69777,8417],[-12,-29]],[[69765,8388],[-39,-46]],[[69726,8342],[-21,-9]],[[69705,8333],[-6,-35]],[[69699,8298],[-5,-13]],[[69694,8285],[-3,-17]],[[69691,8268],[-11,-6]],[[69680,8262],[-6,-13]],[[69674,8249],[-20,-23]],[[69654,8226],[0,4]],[[69654,8230],[-13,-7]],[[69641,8223],[0,-7]],[[69641,8216],[-7,-6]],[[69634,8210],[-13,-16]],[[69621,8194],[-22,-19]],[[69599,8175],[-3,6]],[[69596,8181],[-8,13]],[[69588,8194],[-18,-26]],[[69570,8168],[-32,-16]],[[69538,8152],[0,3]],[[69538,8155],[-9,-3]],[[69529,8152],[-9,-13]],[[69520,8139],[-25,-78]],[[69495,8061],[-10,-6]],[[69485,8055],[-6,3]],[[69479,8058],[-14,-29]],[[69465,8029],[-6,3]],[[69459,8032],[0,-3]],[[69459,8029],[0,-9]],[[69459,8020],[0,-4]],[[69459,8016],[-11,-6]],[[69448,8010],[-8,-13]],[[69440,7997],[0,-10]],[[69440,7987],[0,-16]],[[69440,7971],[-12,-3]],[[69428,7968],[0,-3]],[[69428,7965],[-19,-4]],[[69409,7961],[-2,-7]],[[69407,7954],[-15,-9]],[[69392,7945],[-3,-16]],[[69389,7929],[-14,-3]],[[69375,7926],[0,-4]],[[69375,7922],[-7,-6]],[[69368,7916],[-4,0]],[[69364,7916],[-2,-3]],[[69362,7913],[-16,-3]],[[69346,7910],[-7,-23]],[[69339,7887],[-22,-81]],[[69317,7806],[-5,-23]],[[69312,7783],[-8,4]],[[69304,7787],[-1,-68]],[[69303,7719],[-5,-3]],[[69298,7716],[-11,3]],[[69287,7719],[-23,-3]],[[69264,7716],[-3,-26]],[[69261,7690],[-8,-3]],[[69253,7687],[-20,-36]],[[69233,7651],[0,-10]],[[69233,7641],[0,-22]],[[69233,7619],[-21,-52]],[[69212,7567],[-4,-10]],[[69208,7557],[-18,10]],[[69190,7567],[-4,-16]],[[69186,7551],[-13,-3]],[[69173,7548],[0,-3]],[[69173,7545],[-37,6]],[[69136,7551],[-5,-6]],[[69131,7545],[-6,-4]],[[69125,7541],[0,-3]],[[69125,7538],[-14,-16]],[[69111,7522],[-6,16]],[[69105,7538],[-22,-16]],[[69083,7522],[-13,0]],[[69070,7522],[-18,3]],[[69052,7525],[0,-3]],[[69052,7522],[-22,-20]],[[69030,7502],[-3,-6]],[[69027,7496],[-7,-6]],[[69020,7490],[-3,-13]],[[69017,7477],[0,-10]],[[69017,7467],[0,-9]],[[69017,7458],[-8,-7]],[[69009,7451],[-7,0]],[[69002,7451],[-5,0]],[[68997,7451],[-17,0]],[[68980,7451],[-31,29]],[[68949,7480],[-22,-3]],[[68927,7477],[-2,-14]],[[68925,7463],[2,-25]],[[68927,7438],[-2,-16]],[[68925,7422],[24,-10]],[[68949,7412],[0,-3]],[[68949,7409],[-24,3]],[[68925,7412],[0,3]],[[68925,7415],[-9,4]],[[68916,7419],[0,3]],[[68916,7422],[-11,6]],[[68905,7428],[-10,-19]],[[68895,7409],[0,-29]],[[68895,7380],[0,-23]],[[68895,7357],[-6,-10]],[[68889,7347],[0,-3]],[[68889,7344],[-14,-16]],[[68875,7328],[0,7]],[[68875,7335],[-20,19]],[[68855,7354],[0,3]],[[68855,7357],[-5,3]],[[68850,7360],[-6,13]],[[68844,7373],[-5,3]],[[68839,7376],[0,4]],[[68839,7380],[-11,-52]],[[68828,7328],[0,-3]],[[68828,7325],[0,-4]],[[68828,7321],[-7,-2]],[[68821,7319],[0,2]],[[68821,7321],[-16,0]],[[68805,7321],[0,-2]],[[68805,7319],[-6,-7]],[[68799,7312],[-14,-7]],[[68785,7305],[-7,-6]],[[68778,7299],[-3,-7]],[[68775,7292],[50,-12]],[[68825,7280],[-6,-36]],[[68819,7244],[0,-3]],[[68819,7241],[0,-13]],[[68819,7228],[-14,3]],[[68805,7231],[-9,3]],[[68796,7234],[-29,-3]],[[68767,7231],[0,-6]],[[68767,7225],[2,-52]],[[68769,7173],[6,0]],[[68775,7173],[10,-3]],[[68785,7170],[3,-7]],[[68788,7163],[0,-3]],[[68788,7160],[0,-13]],[[68788,7147],[-10,-3]],[[68778,7144],[-9,-19]],[[68769,7125],[-22,-14]],[[68747,7111],[0,-13]],[[68747,7098],[0,-9]],[[68747,7089],[0,-3]],[[68747,7086],[-12,6]],[[68735,7092],[-21,-22]],[[68714,7070],[-21,-27]],[[68693,7043],[-4,7]],[[68689,7050],[-15,7]],[[68674,7057],[-11,32]],[[68663,7089],[-20,-65]],[[68643,7024],[-5,0]],[[68638,7024],[-8,-3]],[[68630,7021],[-6,3]],[[68624,7024],[0,3]],[[68624,7027],[-6,0]],[[68618,7027],[-7,-9]],[[68611,7018],[-23,0]],[[68588,7018],[0,-10]],[[68588,7008],[14,-3]],[[68602,7005],[2,-3]],[[68604,7002],[0,-7]],[[68604,6995],[-13,-23]],[[68591,6972],[-5,-6]],[[68586,6966],[-14,3]],[[68572,6969],[-14,20]],[[68558,6989],[-4,3]],[[68554,6992],[-2,7]],[[68552,6999],[-11,0]],[[68541,6999],[-8,-13]],[[68533,6986],[-12,-17]],[[68521,6969],[0,-3]],[[68521,6966],[-8,-6]],[[68513,6960],[-6,-20]],[[68507,6940],[-5,-6]],[[68502,6934],[-1,-10]],[[68501,6924],[-10,-23]],[[68491,6901],[-9,-80]],[[68482,6821],[0,-20]],[[68482,6801],[0,-3]],[[68482,6798],[-3,-110]],[[68479,6688],[3,-65]],[[68482,6623],[0,-3]],[[68482,6620],[0,-9]],[[68482,6611],[0,-4]],[[68482,6607],[0,-87]],[[68482,6520],[0,-9]],[[68482,6511],[0,-14]],[[68482,6497],[1,-9]],[[68483,6488],[-7,-68],[15,-100]],[[68491,6320],[-4,-29]],[[68487,6291],[4,-6]],[[68491,6285],[0,-39]],[[68491,6246],[7,-52],[-7,-181]],[[68491,6013],[-9,-55]],[[68482,5958],[-14,-55]],[[68468,5903],[0,-3]],[[68468,5900],[-6,-6]],[[68462,5894],[-5,-13]],[[68457,5881],[-6,-14]],[[68451,5867],[-3,-12]],[[68448,5855],[-7,-7]],[[68441,5848],[-9,-16]],[[68432,5832],[-2,-3]],[[68430,5829],[0,-7]],[[68430,5822],[-20,-32]],[[68410,5790],[-5,-10]],[[68405,5780],[-7,-6]],[[68398,5774],[-2,-7]],[[68396,5767],[-6,-3]],[[68390,5764],[-13,-16]],[[68377,5748],[-20,-16]],[[68357,5732],[0,-4]],[[68357,5728],[-12,-9]],[[68345,5719],[-25,-19]],[[68320,5700],[-14,-13]],[[68306,5687],[-5,-10]],[[68301,5677],[-14,-23]],[[68287,5654],[-13,-29]],[[68274,5625],[-4,-3]],[[68270,5622],[0,-3]],[[68270,5619],[-16,-13]],[[68254,5606],[-5,19]],[[68249,5625],[-14,23]],[[68235,5648],[-1,9]],[[68234,5657],[-5,4]],[[68229,5661],[-8,13]],[[68221,5674],[-3,3]],[[68218,5677],[0,-13]],[[68218,5664],[3,-10]],[[68221,5654],[0,-64]],[[68221,5590],[-6,-4]],[[68215,5586],[0,-2]],[[68215,5584],[-9,-4]],[[68206,5580],[-22,-10]],[[68184,5570],[0,3]],[[68184,5573],[0,4]],[[68184,5577],[-8,3]],[[68176,5580],[-2,6]],[[68174,5586],[-9,4]],[[68165,5590],[-1,10]],[[68164,5600],[-10,6]],[[68154,5606],[-6,3]],[[68148,5609],[-23,13]],[[68125,5622],[-5,7]],[[68120,5629],[-9,3]],[[68111,5632],[-8,13]],[[68103,5645],[-41,0]],[[68062,5645],[-19,0]],[[68043,5645],[-23,-7]],[[68020,5638],[-3,0]],[[68017,5638],[-14,10]],[[68003,5648],[-3,32]],[[68000,5680],[3,20]],[[68003,5700],[-20,16]],[[67983,5716],[-11,12]],[[67972,5728],[-8,14]],[[67964,5742],[0,-19]],[[67964,5723],[8,-11]],[[67972,5712],[11,-16]],[[67983,5696],[0,-3]],[[67983,5693],[6,-3]],[[67989,5690],[4,-33]],[[67993,5657],[-10,10]],[[67983,5667],[0,7]],[[67983,5674],[-11,19]],[[67972,5693],[-8,10]],[[67964,5703],[-16,9]],[[67948,5712],[0,4]],[[67948,5716],[-4,3]],[[67944,5719],[-5,0]],[[67939,5719],[-20,4]],[[67919,5723],[-7,0]],[[67912,5723],[-20,-7]],[[67892,5716],[-3,-7]],[[67889,5709],[-20,-3]],[[67869,5706],[-2,-6]],[[67867,5700],[-30,-16]],[[67837,5684],[0,-4]],[[67837,5680],[-9,-3]],[[67828,5677],[0,-3]],[[67828,5674],[-6,-7]],[[67822,5667],[-14,-22]],[[67808,5645],[-25,-29]],[[67783,5616],[0,-4]],[[67783,5612],[-10,-3]],[[67773,5609],[0,-3]],[[67773,5606],[-3,-6]],[[67770,5600],[-14,-23]],[[67756,5577],[-20,-78]],[[67736,5499],[0,-19]],[[67736,5480],[-23,-6]],[[67713,5474],[-7,-7]],[[67706,5467],[-20,-10]],[[67686,5457],[-6,-22]],[[67680,5435],[-14,-23]],[[67666,5412],[-3,-16]],[[67663,5396],[-3,-20]],[[67660,5376],[6,-29]],[[67666,5347],[14,10]],[[67680,5357],[4,6]],[[67684,5363],[13,7]],[[67697,5370],[0,3]],[[67697,5373],[11,3]],[[67708,5376],[5,7]],[[67713,5383],[20,7]],[[67733,5390],[0,3]],[[67733,5393],[28,16]],[[67761,5409],[12,16]],[[67773,5425],[13,6]],[[67786,5431],[0,4]],[[67786,5435],[26,9]],[[67812,5444],[14,13]],[[67826,5457],[11,4]],[[67837,5461],[0,-17]],[[67837,5444],[-9,-6]],[[67828,5438],[-2,-7]],[[67826,5431],[-4,-3]],[[67822,5428],[-14,-19]],[[67808,5409],[-21,-23]],[[67787,5386],[-4,-10]],[[67783,5376],[-6,-6]],[[67777,5370],[-4,-7]],[[67773,5363],[-3,-3]],[[67770,5360],[-14,-19]],[[67756,5341],[-20,-22]],[[67736,5319],[-5,-11]],[[67731,5308],[-6,-6]],[[67725,5302],[0,-3]],[[67725,5299],[-8,-3]],[[67717,5296],[-12,-23]],[[67705,5273],[-8,-6]],[[67697,5267],[0,-3]],[[67697,5264],[-11,-11]],[[67686,5253],[-6,-12]],[[67680,5241],[-14,-13]],[[67666,5228],[-3,-7]],[[67663,5221],[-3,-3]],[[67660,5218],[-8,-26]],[[67652,5192],[-5,-3]],[[67647,5189],[-2,-13]],[[67645,5176],[-9,-19]],[[67636,5157],[-9,-36]],[[67627,5121],[-13,-35]],[[67614,5086],[0,-7]],[[67614,5079],[-8,-13]],[[67606,5066],[-6,-28]],[[67600,5038],[-4,-7]],[[67596,5031],[-2,-16]],[[67594,5015],[-8,-20]],[[67586,4995],[-11,-52]],[[67575,4943],[-20,-74]],[[67555,4869],[-5,-25]],[[67550,4844],[-6,-7]],[[67544,4837],[0,-4]],[[67544,4833],[-53,7]],[[67491,4840],[0,4]],[[67491,4844],[-8,3]],[[67483,4847],[-9,9]],[[67474,4856],[-24,23]],[[67450,4879],[-4,20]],[[67446,4899],[-7,12]],[[67439,4911],[0,7]],[[67439,4918],[-6,22]],[[67433,4940],[-14,84],[14,46]],[[67433,5070],[6,16]],[[67439,5086],[0,6]],[[67439,5092],[0,55]],[[67439,5147],[0,29]],[[67439,5176],[-6,49]],[[67433,5225],[-14,61]],[[67419,5286],[-6,19]],[[67413,5305],[0,7]],[[67413,5312],[-14,45]],[[67399,5357],[-5,16]],[[67394,5373],[-14,26]],[[67380,5399],[-1,10]],[[67379,5409],[-3,3]],[[67376,5412],[-8,19]],[[67368,5431],[-5,7]],[[67363,5438],[-3,9]],[[67360,5447],[-8,14]],[[67352,5461],[-3,6]],[[67349,5467],[3,10]],[[67352,5477],[-8,3]],[[67344,5480],[-1,6]],[[67343,5486],[-24,20]],[[67319,5506],[-4,12]],[[67315,5518],[-5,4]],[[67310,5522],[-2,7]],[[67308,5529],[-14,3]],[[67294,5532],[-4,13]],[[67290,5545],[-21,12]],[[67269,5557],[-4,10]],[[67265,5567],[-7,6]],[[67258,5573],[-1,11]],[[67257,5584],[-8,2]],[[67249,5586],[-6,14]],[[67243,5600],[-30,19]],[[67213,5619],[0,3]],[[67213,5622],[-6,7]],[[67207,5629],[0,6]],[[67207,5635],[0,6]],[[67207,5641],[0,-3]],[[67207,5638],[-8,3]],[[67199,5641],[-12,10]],[[67187,5651],[-24,16]],[[67163,5667],[-1,7]],[[67162,5674],[-8,3]],[[67154,5677],[-20,16]],[[67134,5693],[-7,3]],[[67127,5696],[0,4]],[[67127,5700],[-14,6]],[[67113,5706],[-4,6]],[[67109,5712],[-13,11]],[[67096,5723],[-8,12]],[[67088,5735],[-26,4]],[[67062,5739],[-5,9]],[[67057,5748],[-26,42]],[[67031,5790],[0,4]],[[67031,5794],[-60,6]],[[66971,5800],[0,3]],[[66971,5803],[-6,3]],[[66965,5806],[-11,0]],[[66954,5806],[-23,10]],[[66931,5816],[0,3]],[[66931,5819],[-10,3]],[[66921,5822],[-20,0]],[[66901,5822],[-25,13]],[[66876,5835],[0,-3]],[[66876,5832],[-12,-3]],[[66864,5829],[-3,-7]],[[66861,5822],[-32,-3]],[[66829,5819],[-56,-13]],[[66773,5806],[-17,-6]],[[66756,5800],[0,-4]],[[66756,5796],[-3,-2]],[[66753,5794],[-8,-14]],[[66745,5780],[-6,-3]],[[66739,5777],[0,-3]],[[66739,5774],[-10,-16]],[[66729,5758],[-9,-19]],[[66720,5739],[-12,-16]],[[66708,5723],[0,-4]],[[66708,5719],[-10,-7]],[[66698,5712],[-11,-9]],[[66687,5703],[-7,-7]],[[66680,5696],[-11,-9]],[[66669,5687],[-21,-55]],[[66648,5632],[-4,-20]],[[66644,5612],[-10,-3]],[[66634,5609],[-15,-13]],[[66619,5596],[-36,-55]],[[66583,5541],[-16,-16]],[[66567,5525],[-23,7]],[[66544,5532],[-5,-7]],[[66539,5525],[-6,-7]],[[66533,5518],[0,-3]],[[66533,5515],[-6,-2]],[[66527,5513],[-14,-20]],[[66513,5493],[-7,-10]],[[66506,5483],[0,-3]],[[66506,5480],[-14,-13]],[[66492,5467],[-4,-13]],[[66488,5454],[0,-39]],[[66488,5415],[6,-9]],[[66494,5406],[23,-4]],[[66517,5402],[6,-6]],[[66523,5396],[10,-20]],[[66533,5376],[0,-3]],[[66533,5373],[-6,-10]],[[66527,5363],[17,-3]],[[66544,5360],[23,16]],[[66567,5376],[-3,-22]],[[66564,5354],[-20,-23]],[[66544,5331],[-5,-7]],[[66539,5324],[-26,-5]],[[66513,5319],[0,3]],[[66513,5322],[-7,6]],[[66506,5328],[0,7]],[[66506,5335],[-17,6]],[[66489,5341],[0,3]],[[66489,5344],[-26,3]],[[66463,5347],[-80,-6]],[[66383,5341],[-22,-17]],[[66361,5324],[-15,-67]],[[66346,5257],[6,-6]],[[66352,5251],[20,-7]],[[66372,5244],[20,0]],[[66392,5244],[0,-3]],[[66392,5241],[11,-7]],[[66403,5234],[0,-19]],[[66403,5215],[0,-13]],[[66403,5202],[-1,-10]],[[66402,5192],[-7,-19]],[[66395,5173],[-12,-29]],[[66383,5144],[-20,-26]],[[66363,5118],[-5,-6]],[[66358,5112],[-6,-3]],[[66352,5109],[-20,6]],[[66332,5115],[-21,-3]],[[66311,5112],[-4,-20]],[[66307,5092],[-19,-6]],[[66288,5086],[22,-48]],[[66310,5038],[-10,-14]],[[66300,5024],[0,3]],[[66300,5027],[-7,-3]],[[66293,5024],[0,-3]],[[66293,5021],[-2,-3]],[[66291,5018],[2,-10]],[[66293,5008],[0,-9]],[[66293,4999],[-13,-33]],[[66280,4966],[6,-16]],[[66286,4950],[0,-3]],[[66286,4947],[11,-4]],[[66297,4943],[0,-3]],[[66297,4940],[-4,-6]],[[66293,4934],[-8,-7]],[[66285,4927],[-28,-9]],[[66257,4918],[0,-3]],[[66257,4915],[-10,-4]],[[66247,4911],[0,-3]],[[66247,4908],[-6,-20]],[[66241,4888],[-9,-16]],[[66232,4872],[-22,-9]],[[66210,4863],[-8,-13]],[[66202,4850],[-12,-26]],[[66190,4824],[-21,-16]],[[66169,4808],[-9,-3]],[[66160,4805],[0,-4]],[[66160,4801],[-24,-12]],[[66136,4789],[0,-4]],[[66136,4785],[-6,-9]],[[66130,4776],[-31,-23]],[[66099,4753],[-20,-16]],[[66079,4737],[-30,3]],[[66049,4740],[-26,-13]],[[66023,4727],[0,-3]],[[66023,4724],[-10,-3]],[[66013,4721],[-19,-10]],[[65994,4711],[-39,-22]],[[65955,4689],[-12,-20]],[[65943,4669],[-20,-7]],[[65923,4662],[-5,-6]],[[65918,4656],[-16,-3]],[[65902,4653],[-18,-23]],[[65884,4630],[-14,-7]],[[65870,4623],[0,-3]],[[65870,4620],[-21,-6]],[[65849,4614],[-17,-16]],[[65832,4598],[-9,-3]],[[65823,4595],[-10,-13]],[[65813,4582],[-14,-39]],[[65799,4543],[-6,-3]],[[65793,4540],[-1,-7]],[[65792,4533],[-10,-3]],[[65782,4530],[-9,6]],[[65773,4536],[-25,-3]],[[65748,4533],[-3,-3]],[[65745,4530],[-6,-7]],[[65739,4523],[-8,-6]],[[65731,4517],[-21,-22]],[[65710,4495],[-32,-49]],[[65678,4446],[0,-10]],[[65678,4436],[-7,-7]],[[65671,4429],[-9,-5]],[[65662,4424],[-30,3]],[[65632,4427],[0,-3]],[[65632,4424],[-12,-4]],[[65620,4420],[-14,-42]],[[65606,4378],[-5,-3]],[[65601,4375],[-1,-6]],[[65600,4369],[-13,-17]],[[65587,4352],[-5,-6]],[[65582,4346],[-15,-13]],[[65567,4333],[-17,-16]],[[65550,4317],[-13,-7]],[[65537,4310],[-3,-6]],[[65534,4304],[-25,-16]],[[65509,4288],[-5,-7]],[[65504,4281],[-7,-6]],[[65497,4275],[-2,-7]],[[65495,4268],[-6,-6]],[[65489,4262],[-13,-16]],[[65476,4246],[-20,-23]],[[65456,4223],[0,-4]],[[65456,4219],[-12,-5]],[[65444,4214],[0,-7]],[[65444,4207],[-5,-4]],[[65439,4203],[-14,-16]],[[65425,4187],[-24,-22]],[[65401,4165],[0,-3]],[[65401,4162],[-7,-3]],[[65394,4159],[-3,-11]],[[65391,4148],[-5,-6]],[[65386,4142],[-13,-22]],[[65373,4120],[-20,-55]],[[65353,4065],[-5,-10]],[[65348,4055],[-14,-13]],[[65334,4042],[-14,-26]],[[65320,4016],[-6,-7]],[[65314,4009],[0,-2]],[[65314,4007],[-11,-10]],[[65303,3997],[0,-7]],[[65303,3990],[11,-6]],[[65314,3984],[0,-10]],[[65314,3974],[0,-6]],[[65314,3968],[0,3]],[[65314,3971],[6,3]],[[65320,3974],[28,3]],[[65348,3977],[25,-9]],[[65373,3968],[0,-13]],[[65373,3955],[-20,-17]],[[65353,3938],[0,-2]],[[65353,3936],[20,-10]],[[65373,3926],[18,-10]],[[65391,3916],[0,-6]],[[65391,3910],[0,-4]],[[65391,3906],[9,-9]],[[65400,3897],[1,-98]],[[65401,3799],[-7,-3]],[[65394,3796],[0,-22]],[[65394,3774],[0,-7]],[[65394,3767],[-3,-9]],[[65391,3758],[-7,-3]],[[65384,3755],[0,-4]],[[65384,3751],[-31,-12]],[[65353,3739],[-5,-13]],[[65348,3726],[-7,-4]],[[65341,3722],[0,-3]],[[65341,3719],[-8,-3]],[[65333,3716],[-13,-13]],[[65320,3703],[-17,3]],[[65303,3706],[0,-3]],[[65303,3703],[-22,-10]],[[65281,3693],[-1,-3]],[[65280,3690],[-16,3]],[[65264,3693],[0,16]],[[65264,3709],[5,3]],[[65269,3712],[6,10]],[[65275,3722],[5,4]],[[65280,3726],[0,6]],[[65280,3732],[-16,-4]],[[65264,3728],[0,-2]],[[65264,3726],[-6,-4]],[[65258,3722],[-14,6]],[[65244,3728],[-20,-19]],[[65224,3709],[-5,19]],[[65219,3728],[-16,49]],[[65203,3777],[-11,42]],[[65192,3819],[0,39]],[[65192,3858],[11,45]],[[65203,3903],[6,7]],[[65209,3910],[4,6]],[[65213,3916],[6,10]],[[65219,3926],[11,10]],[[65230,3936],[15,2]],[[65245,3938],[18,36]],[[65263,3974],[-13,-3]],[[65250,3971],[-5,-10]],[[65245,3961],[-15,-3]],[[65230,3958],[0,-3]],[[65230,3955],[-6,3]],[[65224,3958],[0,-3]],[[65224,3955],[-11,0]],[[65213,3955],[-4,6]],[[65209,3961],[0,4]],[[65209,3965],[0,3]],[[65209,3968],[-6,19]],[[65203,3987],[-1,6]],[[65202,3993],[-5,0]],[[65197,3993],[-6,4]],[[65191,3997],[-33,3]],[[65158,4000],[-19,-7]],[[65139,3993],[-20,-3]],[[65119,3990],[-5,-6]],[[65114,3984],[-12,3]],[[65102,3987],[-8,0]],[[65094,3987],[-6,42]],[[65088,4029],[0,19]],[[65088,4048],[-21,59]],[[65067,4107],[0,55]],[[65067,4162],[0,6]],[[65067,4168],[0,3]],[[65067,4171],[0,20]],[[65067,4191],[0,42]],[[65067,4233],[21,68]],[[65088,4301],[0,13]],[[65088,4314],[-21,19]],[[65067,4333],[-4,6]],[[65063,4339],[-14,13]],[[65049,4352],[-13,10]],[[65036,4362],[-40,23]],[[64996,4385],[0,3]],[[64996,4388],[-35,-3]],[[64961,4385],[0,-4]],[[64961,4381],[-15,-6]],[[64946,4375],[0,-3]],[[64946,4372],[-8,-3]],[[64938,4369],[-3,-7]],[[64935,4362],[-8,-4]],[[64927,4358],[0,-2]],[[64927,4356],[-9,-4]],[[64918,4352],[-11,-10]],[[64907,4342],[-25,-3]],[[64882,4339],[0,-3]],[[64882,4336],[-16,-3]],[[64866,4333],[-6,-7]],[[64860,4326],[-45,-6]],[[64815,4320],[-10,-6]],[[64805,4314],[-25,0]],[[64780,4314],[0,-4]],[[64780,4310],[-9,-3]],[[64771,4307],[-27,-19]],[[64744,4288],[-31,-7]],[[64713,4281],[-14,-6]],[[64699,4275],[-19,13]],[[64680,4288],[0,3]],[[64680,4291],[-29,-13]],[[64651,4278],[-11,-10]],[[64640,4268],[-6,-3]],[[64634,4265],[-5,-10]],[[64629,4255],[-27,-9]],[[64602,4246],[-4,-13]],[[64598,4233],[-8,-3]],[[64590,4230],[-20,-11]],[[64570,4219],[-21,-21]],[[64549,4198],[-4,-7]],[[64545,4191],[-14,-7]],[[64531,4184],[-13,-58]],[[64518,4126],[-20,-29]],[[64498,4097],[-5,-10]],[[64493,4087],[-14,-26]],[[64479,4061],[-12,-57]],[[64467,4004],[-21,-36]],[[64446,3968],[-4,-7]],[[64442,3961],[-14,7]],[[64428,3968],[-19,9]],[[64409,3977],[-13,-12]],[[64396,3965],[-7,-16]],[[64389,3949],[0,-59]],[[64389,3890],[7,-52]],[[64396,3838],[0,-19]],[[64396,3819],[-7,-13]],[[64389,3806],[-13,-7]],[[64376,3799],[-14,-16]],[[64362,3783],[-5,-12]],[[64357,3771],[-1,-7]],[[64356,3764],[-9,-9]],[[64347,3755],[-10,-27]],[[64337,3728],[-34,-6]],[[64303,3722],[3,-10]],[[64306,3712],[8,-6]],[[64314,3706],[3,-19]],[[64317,3687],[0,-23]],[[64317,3664],[-19,-3]],[[64298,3661],[-1,3]],[[64297,3664],[-11,-55]],[[64286,3609],[-21,-9]],[[64265,3600],[-32,0]],[[64233,3600],[-18,6]],[[64215,3606],[-32,13]],[[64183,3619],[-27,-10]],[[64156,3609],[0,-3]],[[64156,3606],[-14,-6]],[[64142,3600],[-20,-4]],[[64122,3596],[-11,-7]],[[64111,3589],[-6,7]],[[64105,3596],[-14,10]],[[64091,3606],[-2,6]],[[64089,3612],[-5,7]],[[64084,3619],[-7,9]],[[64077,3628],[-5,4]],[[64072,3632],[0,23]],[[64072,3655],[5,2]],[[64077,3657],[0,4]],[[64077,3661],[-5,10]],[[64072,3671],[0,6]],[[64072,3677],[5,3]],[[64077,3680],[3,13]],[[64080,3693],[-10,7]],[[64070,3700],[0,3]],[[64070,3703],[7,3]],[[64077,3706],[7,13]],[[64084,3719],[52,3]],[[64136,3722],[5,-10]],[[64141,3712],[20,10]],[[64161,3722],[0,4]],[[64161,3726],[0,9]],[[64161,3735],[-2,16]],[[64159,3751],[-22,0]],[[64137,3751],[-12,20]],[[64125,3771],[5,3]],[[64130,3774],[1,20]],[[64131,3794],[-6,2]],[[64125,3796],[0,3]],[[64125,3799],[-20,-3]],[[64105,3796],[0,-2]],[[64105,3794],[-14,-17]],[[64091,3777],[0,-6]],[[64091,3771],[-7,-7]],[[64084,3764],[-3,10]],[[64081,3774],[-1,0]],[[64080,3774],[-28,3]],[[64052,3777],[-33,-3]],[[64019,3774],[-8,20]],[[64011,3794],[20,2]],[[64031,3796],[0,3]],[[64031,3799],[-1,14]],[[64030,3813],[-3,6]],[[64027,3819],[-7,3]],[[64020,3822],[-17,-6]],[[64003,3816],[-23,-6]],[[63980,3810],[0,-4]],[[63980,3806],[-14,-3]],[[63966,3803],[-17,3]],[[63949,3806],[-21,1]],[[63928,3807],[-12,-1]],[[63916,3806],[-6,4]],[[63910,3810],[-10,35]],[[63900,3845],[-51,16]],[[63849,3861],[-5,6]],[[63844,3867],[-20,7]],[[63824,3874],[-5,7]],[[63819,3881],[-16,0]],[[63803,3881],[-18,0]],[[63785,3881],[-11,3]],[[63774,3884],[-5,-16]],[[63769,3868],[-15,9]],[[63754,3877],[0,4]],[[63754,3881],[-7,6]],[[63747,3887],[-3,6]],[[63744,3893],[-8,4]],[[63736,3897],[-3,6]],[[63733,3903],[-9,3]],[[63724,3906],[-8,4]],[[63716,3910],[-23,0]],[[63693,3910],[-30,19]],[[63663,3929],[-22,13]],[[63641,3942],[-3,7]],[[63638,3949],[-9,6]],[[63629,3955],[-17,13]],[[63612,3968],[-39,16]],[[63573,3984],[-7,6]],[[63566,3990],[-28,-13]],[[63538,3977],[-3,-6]],[[63535,3971],[-20,-3]],[[63515,3968],[-3,6]],[[63512,3974],[-11,3]],[[63501,3977],[0,4]],[[63501,3981],[-14,6]],[[63487,3987],[-5,6]],[[63482,3993],[-31,-3]],[[63451,3990],[-19,-32]],[[63432,3958],[-22,-16]],[[63410,3942],[0,-4]],[[63410,3938],[-14,4]],[[63396,3942],[-17,-16]],[[63379,3926],[-20,-4]],[[63359,3922],[-5,-6]],[[63354,3916],[-16,6]],[[63338,3922],[-4,4]],[[63334,3926],[-8,6]],[[63326,3932],[-20,4]],[[63306,3936],[0,-4]],[[63306,3932],[0,-61]],[[63306,3871],[-30,0]],[[63276,3871],[-8,-6]],[[63268,3865],[0,-4]],[[63268,3861],[-14,-10]],[[63254,3851],[-3,-6]],[[63251,3845],[-16,-10]],[[63235,3835],[-20,0]],[[63215,3835],[-12,42]],[[63203,3877],[0,-3]],[[63203,3874],[-25,-9]],[[63178,3865],[-8,-20]],[[63170,3845],[-6,-7]],[[63164,3838],[0,-3]],[[63164,3835],[-7,-6]],[[63157,3829],[-12,-10]],[[63145,3819],[-20,-42]],[[63125,3777],[-22,-3]],[[63103,3774],[-30,-26]],[[63073,3748],[0,-3]],[[63073,3745],[-11,-3]],[[63062,3742],[-20,-20]],[[63042,3722],[-39,0]],[[63003,3722],[0,-29]],[[63003,3693],[6,-10]],[[63009,3683],[0,-6]],[[63009,3677],[-6,-13]],[[63003,3664],[-11,-64]],[[62992,3600],[-23,0]],[[62969,3600],[-5,9]],[[62964,3609],[-16,7]],[[62948,3616],[-11,3]],[[62937,3619],[-4,-3]],[[62933,3616],[0,-4]],[[62933,3612],[-14,-16]],[[62919,3596],[0,-7]],[[62919,3589],[-21,27]],[[62898,3616],[-1,19]],[[62897,3635],[-5,6]],[[62892,3641],[-6,46]],[[62886,3687],[-5,3]],[[62881,3690],[-3,19]],[[62878,3709],[-8,10]],[[62870,3719],[-4,20]],[[62866,3739],[-19,12]],[[62847,3751],[-34,7]],[[62813,3758],[-36,-3]],[[62777,3755],[-21,3]],[[62756,3758],[-21,22]],[[62735,3780],[0,-3]],[[62735,3777],[-19,-3]],[[62716,3774],[0,3]],[[62716,3777],[-31,-32]],[[62685,3745],[-5,-6]],[[62680,3739],[-14,12]],[[62666,3751],[-20,16]],[[62646,3767],[-18,7]],[[62628,3774],[0,3]],[[62628,3777],[-14,6]],[[62614,3783],[0,7]],[[62614,3790],[0,26]],[[62614,3816],[0,10]],[[62614,3826],[21,6]],[[62635,3832],[0,3]],[[62635,3835],[0,23]],[[62635,3858],[-3,9]],[[62632,3867],[-18,17]],[[62614,3884],[-3,13]],[[62611,3897],[-4,3]],[[62607,3900],[-4,10]],[[62603,3910],[-7,3]],[[62596,3913],[-2,6]],[[62594,3919],[-11,7]],[[62583,3926],[-22,0]],[[62561,3926],[-6,-10]],[[62555,3916],[-5,-13]],[[62550,3903],[-9,-6]],[[62541,3897],[-16,9]],[[62525,3906],[-26,0]],[[62499,3906],[0,-22]],[[62499,3884],[-24,-3]],[[62475,3881],[-3,3]],[[62472,3884],[-32,6]],[[62440,3890],[-18,-13]],[[62422,3877],[-23,-12]],[[62399,3865],[-2,-10]],[[62397,3855],[-25,-7]],[[62372,3848],[-4,-26]],[[62368,3822],[-6,-16]],[[62362,3806],[0,-10]],[[62362,3796],[-14,-2]],[[62348,3794],[-4,-11]],[[62344,3783],[-15,-3]],[[62329,3780],[0,-3]],[[62329,3777],[-6,-3]],[[62323,3774],[-5,-7]],[[62318,3767],[-22,-16]],[[62296,3751],[-3,-9]],[[62293,3742],[-27,-7]],[[62266,3735],[-3,-7]],[[62263,3728],[-6,-2]],[[62257,3726],[0,-4]],[[62257,3722],[-6,-3]],[[62251,3719],[-10,-13]],[[62241,3706],[-34,-19]],[[62207,3687],[-2,-10]],[[62205,3677],[-12,-3]],[[62193,3674],[-6,-7]],[[62187,3667],[-24,-10]],[[62163,3657],[-23,-6]],[[62140,3651],[-25,4]],[[62115,3655],[0,16]],[[62115,3671],[0,29]],[[62115,3700],[-5,0]],[[62110,3700],[-14,-13]],[[62096,3687],[-11,-13]],[[62085,3674],[-9,3]],[[62076,3677],[0,3]],[[62076,3680],[-11,-9]],[[62065,3671],[0,-10]],[[62065,3661],[-3,-20]],[[62062,3641],[0,-3]],[[62062,3638],[-20,10]],[[62042,3648],[0,3]],[[62042,3651],[-18,-3]],[[62024,3648],[0,3]],[[62024,3651],[-53,4]],[[61971,3655],[0,-4]],[[61971,3651],[-6,-3]],[[61965,3648],[-9,-7]],[[61956,3641],[-22,-3]],[[61934,3638],[-13,-6]],[[61921,3632],[-12,-4]],[[61909,3628],[-3,10]],[[61906,3638],[-25,0]],[[61881,3638],[0,3]],[[61881,3641],[-5,16]],[[61876,3657],[0,10]],[[61876,3667],[-8,4]],[[61868,3671],[0,3]],[[61868,3674],[-7,3]],[[61861,3677],[-7,-6]],[[61854,3671],[-50,3]],[[61804,3674],[0,3]],[[61804,3677],[-45,-13]],[[61759,3664],[-9,0]],[[61750,3664],[-30,0]],[[61720,3664],[0,-3]],[[61720,3661],[-20,-10]],[[61700,3651],[-3,-16]],[[61697,3635],[-22,-3]],[[61675,3632],[-2,0]],[[61673,3632],[-25,9]],[[61648,3641],[-29,14]],[[61619,3655],[-22,-39]],[[61597,3616],[-14,-4]],[[61583,3612],[-5,4]],[[61578,3616],[0,9]],[[61578,3625],[-9,7]],[[61569,3632],[-2,6]],[[61567,3638],[-25,7]],[[61542,3645],[-26,-4]],[[61516,3641],[-6,-3]],[[61510,3638],[-18,-13]],[[61492,3625],[-1,-6]],[[61491,3619],[-16,0]],[[61475,3619],[-14,6]],[[61461,3625],[-39,7]],[[61422,3632],[0,3]],[[61422,3635],[-6,3]],[[61416,3638],[-5,6]],[[61411,3644],[-25,-3]],[[61386,3641],[0,-3]],[[61386,3638],[-25,-10]],[[61361,3628],[-1,0]],[[61360,3628],[-10,-3]],[[61350,3625],[-15,3]],[[61335,3628],[-24,-9]],[[61311,3619],[-17,7]],[[61294,3626],[-12,9]],[[61282,3635],[-27,10]],[[61255,3645],[0,6]],[[61255,3651],[-6,-3]],[[61249,3648],[0,-3]],[[61249,3645],[-3,3]],[[61246,3648],[-16,13]],[[61230,3661],[-25,10]],[[61205,3671],[0,3]],[[61205,3674],[-20,3]],[[61185,3677],[-6,10]],[[61179,3687],[-24,3]],[[61155,3690],[0,3]],[[61155,3693],[-31,-3]],[[61124,3690],[0,3]],[[61124,3693],[-16,3]],[[61108,3696],[-4,10]],[[61104,3706],[-25,6]],[[61079,3712],[-30,23]],[[61049,3735],[-26,7]],[[61023,3742],[0,3]],[[61023,3745],[-16,-3]],[[61007,3742],[0,-3]],[[61007,3739],[-108,3]],[[60899,3742],[-46,-14]],[[60853,3728],[-10,-2]],[[60843,3726],[-9,-10]],[[60834,3716],[-33,-4]],[[60801,3712],[-14,-9]],[[60787,3703],[-14,-7]],[[60773,3696],[-11,-16]],[[60762,3680],[-34,-25]],[[60728,3655],[0,-4]],[[60728,3651],[-5,-10]],[[60723,3641],[-12,-22]],[[60711,3619],[-21,-33]],[[60690,3586],[-4,-13]],[[60686,3573],[-8,-9]],[[60678,3564],[-21,-42]],[[60657,3522],[-20,-36]],[[60637,3486],[-5,-12]],[[60632,3474],[-6,-10]],[[60626,3464],[0,-7]],[[60626,3457],[0,-3]],[[60626,3454],[0,-7]],[[60626,3447],[-6,-6]],[[60620,3441],[-14,-87]],[[60606,3354],[-6,-10]],[[60600,3344],[0,-6]],[[60600,3338],[-14,-7]],[[60586,3331],[0,-3]],[[60586,3328],[-19,-4]],[[60567,3324],[-20,-19]],[[60547,3305],[-8,-16]],[[60539,3289],[-8,-16]],[[60531,3273],[-16,-9]],[[60515,3264],[0,-4]],[[60515,3260],[0,-9]],[[60515,3251],[0,-4]],[[60515,3247],[-29,-10]],[[60486,3237],[-10,4]],[[60476,3241],[0,-13]],[[60476,3228],[0,-59]],[[60476,3169],[-20,-28]],[[60456,3141],[-1,-7]],[[60455,3134],[-10,3]],[[60445,3137],[-20,-12]],[[60425,3125],[5,-39]],[[60430,3086],[-5,-68]],[[60425,3018],[-20,-29]],[[60405,2989],[-5,-13]],[[60400,2976],[-9,-6]],[[60391,2970],[-18,-20]],[[60373,2950],[-23,-3]],[[60350,2947],[0,3]],[[60350,2950],[-2,32]],[[60348,2982],[5,13]],[[60353,2995],[20,16]],[[60373,3011],[0,4]],[[60373,3015],[0,48]],[[60373,3063],[0,10]],[[60373,3073],[-20,13]],[[60353,3086],[-31,7]],[[60322,3093],[-44,-4]],[[60278,3089],[-9,13]],[[60269,3102],[0,16]],[[60269,3118],[-6,48]],[[60263,3166],[-8,7]],[[60255,3173],[-11,16]],[[60244,3189],[-25,-6]],[[60219,3183],[-8,3]],[[60211,3186],[-8,6]],[[60203,3192],[0,4]],[[60203,3196],[-34,-4]],[[60169,3192],[-25,-6]],[[60144,3186],[-2,19]],[[60142,3205],[-1,29]],[[60141,3234],[-33,7]],[[60108,3241],[-15,-4]],[[60093,3237],[-10,-3]],[[60083,3234],[-20,-3]],[[60063,3231],[0,-2]],[[60063,3229],[-16,2]],[[60047,3231],[0,-3]],[[60047,3228],[-1,0]],[[60046,3228],[-10,6]],[[60036,3234],[-23,3]],[[60013,3237],[-28,14]],[[59985,3251],[-19,3]],[[59966,3254],[-5,0]],[[59961,3254],[-15,-7]],[[59946,3247],[0,4]],[[59946,3251],[-11,-4]],[[59935,3247],[-3,-6]],[[59932,3241],[-5,-7]],[[59927,3234],[-1,-6]],[[59926,3228],[0,-3]],[[59926,3225],[0,-4]],[[59926,3221],[-10,-19]],[[59916,3202],[-6,-13]],[[59910,3189],[-16,-3]],[[59894,3186],[-12,16]],[[59882,3202],[-6,6]],[[59876,3208],[0,4]],[[59876,3212],[-14,13]],[[59862,3225],[-7,0]],[[59855,3225],[-20,19]],[[59835,3244],[-5,-7]],[[59830,3237],[-6,-3]],[[59824,3234],[0,-3]],[[59824,3231],[-70,0]],[[59754,3231],[0,3]],[[59754,3234],[-23,17]],[[59731,3251],[-5,13]],[[59726,3264],[0,3]],[[59726,3267],[0,13]],[[59726,3280],[-17,6]],[[59709,3286],[-5,3]],[[59704,3289],[-9,-3]],[[59695,3286],[-16,-19]],[[59679,3267],[0,-3]],[[59679,3264],[-47,-10]],[[59632,3254],[-4,3]],[[59628,3257],[-80,13]],[[59548,3270],[-30,-3]],[[59518,3267],[-20,9]],[[59498,3276],[-2,7]],[[59496,3283],[-18,6]],[[59478,3289],[-10,10]],[[59468,3299],[-22,6]],[[59446,3305],[-12,10]],[[59434,3315],[-20,4]],[[59414,3319],[0,3]],[[59414,3322],[-21,2]],[[59393,3324],[0,4]],[[59393,3328],[-20,10]],[[59373,3338],[-28,6]],[[59345,3344],[-53,-3]],[[59292,3341],[0,-3]],[[59292,3338],[-30,-7]],[[59262,3331],[0,-3]],[[59262,3328],[-15,-4]],[[59247,3324],[-13,-16]],[[59234,3308],[-1,-35]],[[59233,3273],[1,-19]],[[59234,3254],[-34,-13]],[[59200,3241],[0,3]],[[59200,3244],[-8,3]],[[59192,3247],[-3,-28]],[[59189,3219],[-3,0]],[[59186,3219],[-5,-14]],[[59181,3205],[-20,-19]],[[59161,3186],[-11,-6]],[[59150,3180],[-20,-17]],[[59130,3163],[0,-3]],[[59130,3160],[-21,3]],[[59109,3163],[0,3]],[[59109,3166],[-20,-9]],[[59089,3157],[-9,-20]],[[59080,3137],[-6,-3]],[[59074,3134],[-4,-6]],[[59070,3128],[-9,-3]],[[59061,3125],[-3,6]],[[59058,3131],[-39,13]],[[59019,3144],[0,3]],[[59019,3147],[-11,3]],[[59008,3150],[0,3]],[[59008,3153],[-5,0]],[[59003,3153],[-11,-6]],[[58992,3147],[-12,-6]],[[58980,3141],[-5,-7]],[[58975,3134],[-6,-3]],[[58969,3131],[-20,10]],[[58949,3141],[-21,-10]],[[58928,3131],[0,-3]],[[58928,3128],[-11,-3]],[[58917,3125],[0,-4]],[[58917,3121],[-7,-3]],[[58910,3118],[-13,-16]],[[58897,3102],[-22,-9]],[[58875,3093],[-3,-7]],[[58872,3086],[-15,-13]],[[58857,3073],[-5,-7]],[[58852,3066],[-45,4]],[[58807,3070],[-19,-16]],[[58788,3054],[-14,-11]],[[58774,3043],[0,-2]],[[58774,3041],[-2,0]],[[58772,3041],[-4,-10]],[[58768,3031],[-14,-10]],[[58754,3021],[0,-3]],[[58754,3018],[-8,-3]],[[58746,3015],[-5,-13]],[[58741,3002],[-8,-4]],[[58733,2998],[0,-3]],[[58733,2995],[-7,-3]],[[58726,2992],[-10,3]],[[58716,2995],[-12,3]],[[58704,2998],[-11,-3]],[[58693,2995],[-10,-6]],[[58683,2989],[0,-3]],[[58683,2986],[-6,-4]],[[58677,2982],[-14,-6]],[[58663,2976],[-25,-17]],[[58638,2959],[0,-3]],[[58638,2956],[-8,-6]],[[58630,2950],[0,-3]],[[58630,2947],[-4,-4]],[[58626,2943],[-14,-12]],[[58612,2931],[-21,-27]],[[58591,2904],[-4,-5]],[[58587,2899],[-14,-14]],[[58573,2885],[-13,-22]],[[58560,2863],[-8,-7]],[[58552,2856],[0,-3]],[[58552,2853],[-31,-39]],[[58521,2814],[-14,-32]],[[58507,2782],[-3,-6]],[[58504,2776],[-22,-14]],[[58482,2762],[-12,-25]],[[58470,2737],[0,-4]],[[58470,2733],[-10,-3]],[[58460,2730],[-1,-9]],[[58459,2721],[-8,-4]],[[58451,2717],[0,-16]],[[58451,2701],[-14,-3]],[[58437,2698],[-6,-16]],[[58431,2682],[-21,-16]],[[58410,2666],[0,-4]],[[58410,2662],[-14,-9]],[[58396,2653],[0,-7]],[[58396,2646],[0,-3]],[[58396,2643],[0,-3]],[[58396,2640],[-8,-6]],[[58388,2634],[-4,-7]],[[58384,2627],[-28,-10]],[[58356,2617],[0,-3]],[[58356,2614],[-17,-3]],[[58339,2611],[-5,0]],[[58334,2611],[-28,-10]],[[58306,2601],[-13,-6]],[[58293,2595],[-4,-4]],[[58289,2591],[-11,-3]],[[58278,2588],[-41,-9]],[[58237,2579],[-14,-13]],[[58223,2566],[-8,-7]],[[58215,2559],[0,-3]],[[58215,2556],[-11,-26]],[[58204,2530],[0,-3]],[[58204,2527],[-20,-16]],[[58184,2511],[-14,-30]],[[58170,2481],[-3,-2]],[[58167,2479],[-3,-7]],[[58164,2472],[-10,-16]],[[58154,2456],[-7,-16]],[[58147,2440],[-14,-16]],[[58133,2424],[0,-4]],[[58133,2420],[-7,-10]],[[58126,2410],[0,-16]],[[58126,2394],[-12,-9]],[[58114,2385],[0,-7]],[[58114,2378],[8,-13]],[[58122,2365],[0,-16]],[[58122,2349],[0,-3]],[[58122,2346],[1,-13]],[[58123,2333],[-9,-3]],[[58114,2330],[0,-4]],[[58114,2326],[-10,-6]],[[58104,2320],[-10,6]],[[58094,2326],[-21,16]],[[58073,2342],[-14,26]],[[58059,2368],[-3,7]],[[58056,2375],[-14,19]],[[58042,2394],[-6,3]],[[58036,2397],[-17,16]],[[58019,2413],[-2,7]],[[58017,2420],[-6,4]],[[58011,2424],[0,3]],[[58011,2427],[-17,3]],[[57994,2430],[0,3]],[[57994,2433],[-24,-6]],[[57970,2427],[-4,6]],[[57966,2433],[-8,7]],[[57958,2440],[0,3]],[[57958,2443],[-16,0]],[[57942,2443],[-3,-3]],[[57939,2440],[-23,6]],[[57916,2446],[0,-3]],[[57916,2443],[-16,6]],[[57900,2449],[-20,7]],[[57880,2456],[-10,6]],[[57870,2462],[-7,10]],[[57863,2472],[-49,7]],[[57814,2479],[-4,-7]],[[57810,2472],[-24,-4]],[[57786,2468],[0,-3]],[[57786,2465],[-30,3]],[[57756,2468],[0,4]],[[57756,2472],[-32,7]],[[57724,2479],[0,-4]],[[57724,2475],[-5,-7]],[[57719,2468],[-14,7]],[[57705,2475],[-39,23]],[[57666,2498],[-13,0]],[[57653,2498],[-18,16]],[[57635,2514],[-30,-3]],[[57605,2511],[-5,6]],[[57600,2517],[-15,3]],[[57585,2520],[-6,-6]],[[57579,2514],[-16,-10]],[[57563,2504],[0,-3]],[[57563,2501],[-8,-3]],[[57555,2498],[-31,25]],[[57524,2523],[-25,23]],[[57499,2546],[-27,4]],[[57472,2550],[-40,0]],[[57432,2550],[-3,-7]],[[57429,2543],[-30,7]],[[57399,2550],[0,-4]],[[57399,2546],[-20,6]],[[57379,2552],[-6,-6]],[[57373,2546],[-11,4]],[[57362,2550],[0,2]],[[57362,2552],[-14,-6]],[[57348,2546],[-5,-10]],[[57343,2536],[-14,4]],[[57329,2540],[-8,16]],[[57321,2556],[-50,6]],[[57271,2562],[-45,26]],[[57226,2588],[-19,3]],[[57207,2591],[0,4]],[[57207,2595],[-1,6]],[[57206,2601],[0,3]],[[57206,2604],[-8,3]],[[57198,2607],[-3,7]],[[57195,2614],[-30,13]],[[57165,2627],[0,3]],[[57165,2630],[-50,-19]],[[57115,2611],[-5,-13]],[[57110,2598],[-14,-13]],[[57096,2585],[0,13]],[[57096,2598],[0,3]],[[57096,2601],[-36,29]],[[57060,2630],[-20,4]],[[57040,2634],[-9,19]],[[57031,2653],[-25,-3]],[[57006,2650],[0,-4]],[[57006,2646],[-13,10]],[[56993,2656],[0,3]],[[56993,2659],[-7,3]],[[56986,2662],[-7,10]],[[56979,2672],[-18,17]],[[56961,2689],[-7,5]],[[56954,2694],[-14,23]],[[56940,2717],[0,4]],[[56940,2721],[-6,16]],[[56934,2737],[-5,9]],[[56929,2746],[-9,7]],[[56920,2753],[0,3]],[[56920,2756],[-16,4]],[[56904,2760],[-21,22]],[[56883,2782],[-29,6]],[[56854,2788],[-42,26]],[[56812,2814],[-14,30]],[[56798,2844],[-25,9]],[[56773,2853],[0,3]],[[56773,2856],[-15,10]],[[56758,2866],[-10,6]],[[56748,2872],[-21,7]],[[56727,2879],[-5,6]],[[56722,2885],[-16,3]],[[56706,2888],[-19,14]],[[56687,2902],[-9,9]],[[56678,2911],[-9,13]],[[56669,2924],[-31,16]],[[56638,2940],[-2,7]],[[56636,2947],[0,3]],[[56636,2950],[-8,9]],[[56628,2959],[-11,17]],[[56617,2976],[-43,6]],[[56574,2982],[-7,7]],[[56567,2989],[-25,9]],[[56542,2998],[0,4]],[[56542,3002],[-11,6]],[[56531,3008],[0,3]],[[56531,3011],[-6,4]],[[56525,3015],[-4,9]],[[56521,3024],[-29,-9]],[[56492,3015],[-42,12]],[[56450,3027],[-8,10]],[[56442,3037],[-3,10]],[[56439,3047],[-14,-4]],[[56425,3043],[-15,7]],[[56410,3050],[-16,7]],[[56394,3057],[-9,16]],[[56385,3073],[-14,9]],[[56371,3082],[0,4]],[[56371,3086],[-7,9]],[[56364,3095],[-7,10]],[[56357,3105],[-5,4]],[[56352,3109],[-2,9]],[[56350,3118],[-6,10]],[[56344,3128],[-12,16]],[[56332,3144],[-22,22]],[[56310,3166],[0,3]],[[56310,3169],[-11,7]],[[56299,3176],[0,4]],[[56299,3180],[-8,3]],[[56291,3183],[0,13]],[[56291,3196],[-33,3]],[[56258,3199],[-3,13]],[[56255,3212],[-9,3]],[[56246,3215],[0,3]],[[56246,3218],[-5,7]],[[56241,3225],[-12,19]],[[56229,3244],[-24,23]],[[56205,3267],[0,3]],[[56205,3270],[-8,3]],[[56197,3273],[0,3]],[[56197,3276],[-7,7]],[[56190,3283],[-16,16]],[[71998,17832],[569,4]],[[72567,17836],[99,8],[126,36]],[[72792,17880],[214,117],[75,58],[115,107],[99,71],[220,119]],[[73515,18352],[90,22],[94,7]],[[73699,18381],[526,-6]],[[27765,8575],[-19,4]],[[27746,8579],[0,-4]],[[27746,8575],[-6,-3]],[[27740,8572],[-14,-9]],[[27726,8563],[-5,-4]],[[27721,8559],[-40,20]],[[27681,8579],[-7,3]],[[27674,8582],[27,9]],[[27701,8591],[26,4]],[[27727,8595],[38,-20]],[[19297,8640],[0,-52]],[[19297,8588],[-7,3]],[[19290,8591],[0,45]],[[19290,8636],[7,4]],[[19327,8672],[-9,-3]],[[19318,8669],[0,-3]],[[19318,8666],[-22,-4]],[[19296,8662],[31,10]],[[20057,9073],[-9,-7]],[[20048,9066],[-41,13]],[[20007,9079],[-6,3]],[[20001,9082],[0,23]],[[20001,9105],[14,3]],[[20015,9108],[42,-35]],[[19474,9325],[0,-4]],[[19474,9321],[-8,-25]],[[19466,9296],[-5,-4]],[[19461,9292],[-9,16]],[[19452,9308],[5,23]],[[19457,9331],[17,-6]],[[19436,9392],[-9,4]],[[19427,9396],[9,-4]],[[25224,9441],[5,-3]],[[25229,9438],[0,-13]],[[25229,9425],[-6,-3]],[[25223,9422],[1,19]],[[19452,9690],[9,-3]],[[19461,9687],[0,-7]],[[19461,9680],[17,0]],[[19478,9680],[-42,-12]],[[19436,9668],[-4,5]],[[19432,9673],[20,17]],[[27963,9687],[-9,-3]],[[27954,9684],[0,-13]],[[27954,9671],[0,-3]],[[27954,9668],[4,-11]],[[27958,9657],[-9,-6]],[[27949,9651],[-8,3]],[[27941,9654],[0,7]],[[27941,9661],[3,29]],[[27944,9690],[5,3]],[[27949,9693],[0,23]],[[27949,9716],[-6,3]],[[27943,9719],[54,16]],[[27997,9735],[10,-3]],[[28007,9732],[-44,-45]],[[15023,9845],[6,-3]],[[15029,9842],[2,-7]],[[15031,9835],[0,-9]],[[15031,9826],[-5,-49]],[[15026,9777],[-6,-3]],[[15020,9774],[-14,-16]],[[15006,9758],[0,9]],[[15006,9767],[3,23]],[[15009,9790],[-9,3]],[[15000,9793],[23,52]],[[27526,9851],[5,-6]],[[27531,9845],[15,-13]],[[27546,9832],[8,-6]],[[27554,9826],[31,0]],[[27585,9826],[-4,-7]],[[27581,9819],[-22,-52]],[[27559,9767],[-5,-3]],[[27554,9764],[-23,-32]],[[27531,9732],[-5,3]],[[27526,9735],[0,10]],[[27526,9745],[-8,-4]],[[27518,9741],[-25,0],[8,88],[25,22]],[[19121,9894],[-11,-4]],[[19110,9890],[11,4]],[[26326,9910],[5,-7]],[[26331,9903],[34,-13]],[[26365,9890],[11,-3]],[[26376,9887],[0,-4]],[[26376,9883],[9,-2]],[[26385,9881],[21,-75],[0,-74],[-29,-16]],[[26377,9716],[-12,-4]],[[26365,9712],[0,4]],[[26365,9716],[-12,3]],[[26353,9719],[-13,39]],[[26340,9758],[-5,19]],[[26335,9777],[-4,16]],[[26331,9793],[-5,7]],[[26326,9800],[-61,58]],[[26265,9858],[-8,6]],[[26257,9864],[-6,10]],[[26251,9874],[-6,7]],[[26245,9881],[12,25]],[[26257,9906],[5,-3]],[[26262,9903],[64,7]],[[19318,9871],[4,-4]],[[19322,9867],[5,-16]],[[19327,9851],[19,-6]],[[19346,9845],[0,-3]],[[19346,9842],[6,-3]],[[19352,9839],[0,-65],[28,-35],[-25,-39]],[[19355,9700],[-33,-7]],[[19322,9693],[-28,58]],[[19294,9751],[-4,20]],[[19290,9771],[-41,19]],[[19249,9790],[-8,-3]],[[19241,9787],[0,3]],[[19241,9790],[-4,3]],[[19237,9793],[-5,19]],[[19232,9812],[0,7]],[[19232,9819],[5,13]],[[19237,9832],[4,10]],[[19241,9842],[0,3]],[[19241,9845],[5,6]],[[19246,9851],[20,32]],[[19266,9883],[11,4]],[[19277,9887],[13,35]],[[19290,9922],[4,10]],[[19294,9932],[24,-61]],[[27390,9949],[19,-4]],[[27409,9945],[5,-23]],[[27414,9922],[20,-12]],[[27434,9910],[2,6]],[[27436,9916],[4,-6]],[[27440,9910],[-26,-16],[-35,38]],[[27379,9932],[-4,13]],[[27375,9945],[15,4]],[[19347,9965],[-6,-13]],[[19341,9952],[0,-20]],[[19341,9932],[5,-3]],[[19346,9929],[0,-13]],[[19346,9916],[-14,-3]],[[19332,9913],[-7,42],[22,10]],[[26559,10016],[9,-6]],[[26568,10010],[64,-13],[12,-32]],[[26644,9965],[-4,-4]],[[26640,9961],[-33,-39]],[[26607,9922],[-5,-3]],[[26602,9919],[-8,3]],[[26594,9922],[-7,4]],[[26587,9926],[0,13]],[[26587,9939],[-10,0]],[[26577,9939],[-29,-4],[1,-71],[-53,-68]],[[26496,9796],[-5,-3]],[[26491,9793],[-3,-6]],[[26488,9787],[-6,-3]],[[26482,9784],[0,-10]],[[26482,9774],[-6,-3]],[[26476,9771],[0,-7]],[[26476,9764],[-8,-9]],[[26468,9755],[-16,-4]],[[26452,9751],[-9,4]],[[26443,9755],[-22,158]],[[26421,9913],[-4,6]],[[26417,9919],[0,68]],[[26417,9987],[4,7]],[[26421,9994],[16,12]],[[26437,10006],[6,-6]],[[26443,10000],[3,-10]],[[26446,9990],[5,-3]],[[26451,9987],[0,19]],[[26451,10006],[-5,7]],[[26446,10013],[-3,7]],[[26443,10020],[-5,2]],[[26438,10022],[38,43],[83,-49]],[[24689,10216],[5,-9]],[[24694,10207],[-39,-16]],[[24655,10191],[-2,-4]],[[24653,10187],[0,-3]],[[24653,10184],[-9,-3]],[[24644,10181],[-14,3]],[[24630,10184],[-5,3]],[[24625,10187],[0,7]],[[24625,10194],[5,3]],[[24630,10197],[9,13]],[[24639,10210],[11,3]],[[24650,10213],[39,3]],[[26599,10246],[8,-4]],[[26607,10242],[0,-29]],[[26607,10213],[-14,-3]],[[26593,10210],[6,36]],[[27194,10265],[28,-13]],[[27222,10252],[-36,-22]],[[27186,10230],[-5,9]],[[27181,10239],[-3,13]],[[27178,10252],[9,3]],[[27187,10255],[7,10]],[[26569,10278],[-3,-58]],[[26566,10220],[-7,-4]],[[26559,10216],[0,-3]],[[26559,10213],[-2,-6]],[[26557,10207],[-3,-7]],[[26554,10200],[-11,-3]],[[26543,10197],[-9,16]],[[26534,10213],[-5,3]],[[26529,10216],[0,62]],[[26529,10278],[40,0]],[[18920,10317],[4,-3]],[[18924,10314],[0,-20]],[[18924,10294],[-7,-3]],[[18917,10291],[3,26]],[[26607,10271],[-8,-3]],[[26599,10268],[8,71]],[[26607,10339],[0,26]],[[26607,10365],[15,-42],[-15,-52]],[[18988,10385],[-3,-4]],[[18985,10381],[0,-6]],[[18985,10375],[-3,-6]],[[18982,10369],[-14,22]],[[18968,10391],[9,3]],[[18977,10394],[11,-9]],[[26602,10417],[0,-3]],[[26602,10414],[-9,-13]],[[26593,10401],[0,-4]],[[26593,10397],[5,-32]],[[26598,10365],[-11,4]],[[26587,10369],[-8,41],[23,7]],[[19024,10501],[10,-4]],[[19034,10497],[0,-3]],[[19034,10494],[4,-3]],[[19038,10491],[10,-48]],[[19048,10443],[0,-3]],[[19048,10440],[-19,13]],[[19029,10453],[-5,12]],[[19024,10465],[-15,20]],[[19009,10485],[-5,3]],[[19004,10488],[0,16]],[[19004,10504],[5,0]],[[19009,10504],[15,-3]],[[19276,10556],[-5,-7]],[[19271,10549],[-6,-61],[-91,-42]],[[19174,10446],[-9,-3]],[[19165,10443],[-39,-26]],[[19126,10417],[-2,36]],[[19124,10453],[-3,6]],[[19121,10459],[-6,6]],[[19115,10465],[-6,43]],[[19109,10508],[32,-4]],[[19141,10504],[24,64],[111,-12]],[[19449,10675],[29,-3]],[[19478,10672],[61,7]],[[19539,10679],[8,-4]],[[19547,10675],[0,-3]],[[19547,10672],[-5,-6]],[[19542,10666],[-15,-39]],[[19527,10627],[-5,-7]],[[19522,10620],[-5,-9]],[[19517,10611],[-4,-4]],[[19513,10607],[-55,-39]],[[19458,10568],[-9,-3]],[[19449,10565],[-56,-2],[29,87],[27,25]],[[26694,10659],[3,-3]],[[26697,10656],[13,-16]],[[26710,10640],[-5,-4]],[[26705,10636],[38,-48],[-46,-48]],[[26697,10540],[-14,-7]],[[26683,10533],[-6,-16]],[[26677,10517],[-5,-6]],[[26672,10511],[-28,-17]],[[26644,10494],[-6,3]],[[26638,10497],[-20,139],[22,59]],[[26640,10695],[4,3]],[[26644,10698],[50,-39]],[[14176,10762],[23,-9]],[[14199,10753],[16,-13]],[[14215,10740],[6,-3]],[[14221,10737],[3,-7]],[[14224,10730],[10,-3]],[[14234,10727],[1,-9]],[[14235,10718],[-11,3]],[[14224,10721],[-31,19]],[[14193,10740],[-9,3]],[[14184,10743],[-8,19]],[[18703,10892],[-2,-19]],[[18701,10873],[-4,6]],[[18697,10879],[-2,16]],[[18695,10895],[8,-3]],[[17308,10898],[-2,-19]],[[17306,10879],[-8,-3]],[[17298,10876],[3,19]],[[17301,10895],[7,3]],[[17085,10889],[-10,-4]],[[17075,10885],[0,-3]],[[17075,10882],[-19,-3]],[[17056,10879],[0,-3]],[[17056,10876],[-10,-3]],[[17046,10873],[0,16]],[[17046,10889],[14,3]],[[17060,10892],[25,-3]],[[17181,10937],[0,-16]],[[17181,10921],[-17,-32]],[[17164,10889],[-5,26]],[[17159,10915],[22,22]],[[17414,10956],[5,10]],[[17419,10966],[-5,-10]],[[19461,10986],[5,2]],[[19466,10988],[-5,-2]],[[14677,11082],[-5,4]],[[14672,11086],[5,-4]],[[14633,11134],[5,-3]],[[14638,11131],[-5,3]],[[22614,11118],[-5,-3]],[[22609,11115],[-24,-16]],[[22585,11099],[-12,3]],[[22573,11102],[-9,-3]],[[22564,11099],[-32,3]],[[22532,11102],[0,-3]],[[22532,11099],[-9,-4]],[[22523,11095],[11,23]],[[22534,11118],[6,3]],[[22540,11121],[3,6]],[[22543,11127],[5,4]],[[22548,11131],[0,3]],[[22548,11134],[5,4]],[[22553,11138],[7,44],[44,4]],[[22604,11186],[-5,-4]],[[22599,11182],[15,-64]],[[23882,11412],[0,-4]],[[23882,11408],[0,4]],[[21119,11548],[4,-7]],[[21123,11541],[2,-10]],[[21125,11531],[3,0]],[[21128,11531],[-3,-25]],[[21125,11506],[-6,-4]],[[21119,11502],[-4,-28]],[[21115,11474],[4,-7]],[[21119,11467],[0,-42]],[[21119,11425],[-7,-6]],[[21112,11419],[-26,64]],[[21086,11483],[-8,3]],[[21078,11486],[0,4]],[[21078,11490],[-9,3]],[[21069,11493],[-21,36]],[[21048,11529],[19,0]],[[21067,11529],[11,9]],[[21078,11538],[9,7]],[[21087,11545],[32,3]],[[21351,11690],[5,-6]],[[21356,11684],[0,-10]],[[21356,11674],[-77,-13]],[[21279,11661],[-8,3]],[[21271,11664],[30,23]],[[21301,11687],[50,3]],[[22621,12178],[0,13]],[[22621,12191],[0,-13]],[[19232,12213],[-52,-3]],[[19180,12210],[52,3]],[[19310,12271],[0,-9]],[[19310,12262],[-39,-16]],[[19271,12246],[5,3]],[[19276,12249],[9,16]],[[19285,12265],[11,3]],[[19296,12268],[14,3]],[[19372,12330],[-12,-36]],[[19360,12294],[-13,4]],[[19347,12298],[-1,16]],[[19346,12314],[-5,6]],[[19341,12320],[0,6]],[[19341,12326],[6,4]],[[19347,12330],[0,3]],[[19347,12333],[25,-3]],[[19290,12433],[7,-3]],[[19297,12430],[-7,3]],[[20273,13040],[9,-3]],[[20282,13037],[5,-19]],[[20287,13018],[0,-10]],[[20287,13008],[-5,-9]],[[20282,12999],[-16,-4]],[[20266,12995],[7,45]],[[20282,13125],[-5,-3]],[[20277,13122],[5,3]],[[20624,13332],[3,-4]],[[20627,13328],[8,-39],[-86,-13],[33,52],[42,4]],[[15580,13499],[-11,4]],[[15569,13503],[0,12]],[[15569,13515],[7,4]],[[15576,13519],[20,-7]],[[15596,13512],[-6,-3]],[[15590,13509],[-10,-10]],[[16211,13522],[7,-7]],[[16218,13515],[0,-3]],[[16218,13512],[-7,-3]],[[16211,13509],[0,13]],[[15672,13535],[10,-7]],[[15682,13528],[4,-6]],[[15686,13522],[10,-13]],[[15696,13509],[4,6]],[[15700,13515],[0,4]],[[15700,13519],[19,-4]],[[15719,13515],[16,-16]],[[15735,13499],[6,-3]],[[15741,13496],[3,-6]],[[15744,13490],[3,-4]],[[15747,13486],[-12,-48]],[[15735,13438],[0,-10]],[[15735,13428],[0,-16]],[[15735,13412],[6,-4]],[[15741,13408],[0,-2]],[[15741,13406],[16,-3]],[[15757,13403],[-25,-11],[-13,23]],[[15719,13415],[-5,4]],[[15714,13419],[-14,-7]],[[15700,13412],[-6,-4]],[[15694,13408],[-12,11]],[[15682,13419],[0,12]],[[15682,13431],[-25,26]],[[15657,13457],[-3,26]],[[15654,13483],[0,45]],[[15654,13528],[3,7]],[[15657,13535],[0,3]],[[15657,13538],[15,-3]],[[12760,13574],[-4,-20]],[[12756,13554],[0,7]],[[12756,13561],[-2,3]],[[12754,13564],[-20,3]],[[12734,13567],[-5,7]],[[12729,13574],[0,12]],[[12729,13586],[5,11]],[[12734,13597],[26,-23]],[[20677,13690],[34,3]],[[20711,13693],[2,-16]],[[20713,13677],[4,-7]],[[20717,13670],[0,-2]],[[20717,13668],[-4,-4]],[[20713,13664],[0,-3]],[[20713,13661],[-27,3]],[[20686,13664],[-42,23]],[[20644,13687],[3,3]],[[20647,13690],[30,0]],[[14407,13709],[9,-3]],[[14416,13706],[19,-19]],[[14435,13687],[12,-3]],[[14447,13684],[14,-10]],[[14461,13674],[7,-4]],[[14468,13670],[84,-71]],[[14552,13599],[14,3]],[[14566,13602],[8,-9]],[[14574,13593],[12,-3]],[[14586,13590],[42,-20]],[[14628,13570],[11,-3]],[[14639,13567],[39,-16]],[[14678,13551],[16,-4]],[[14694,13547],[0,-2]],[[14694,13545],[5,-4]],[[14699,13541],[49,-13]],[[14748,13528],[11,-3]],[[14759,13525],[69,-39]],[[14828,13486],[5,-3]],[[14833,13483],[0,-3]],[[14833,13480],[6,-6]],[[14839,13474],[27,-36]],[[14866,13438],[4,-13]],[[14870,13425],[5,-22]],[[14875,13403],[0,-4]],[[14875,13399],[-5,-19]],[[14870,13380],[-4,-7]],[[14866,13373],[-27,-25]],[[14839,13348],[-3,-11]],[[14836,13337],[-3,-28]],[[14833,13309],[-5,-4]],[[14828,13305],[0,-3]],[[14828,13302],[-8,3]],[[14820,13305],[-4,13]],[[14816,13318],[-8,-3]],[[14808,13315],[-49,-22]],[[14759,13293],[-4,-7]],[[14755,13286],[-33,19]],[[14722,13305],[-8,-3]],[[14714,13302],[-25,33]],[[14689,13335],[-6,2]],[[14683,13337],[-6,27]],[[14677,13364],[-13,6]],[[14664,13370],[-1,0]],[[14663,13370],[-44,3]],[[14619,13373],[-11,-25]],[[14608,13348],[-5,3]],[[14603,13351],[-21,25]],[[14582,13376],[-8,4]],[[14574,13380],[-72,39]],[[14502,13419],[-11,3]],[[14491,13422],[0,64]],[[14491,13486],[0,10]],[[14491,13496],[-25,51]],[[14466,13547],[-8,4]],[[14458,13551],[-6,10]],[[14452,13561],[-5,3]],[[14447,13564],[-1,6]],[[14446,13570],[-8,4]],[[14438,13574],[-22,44]],[[14416,13618],[-20,4]],[[14396,13622],[-52,26]],[[14344,13648],[-18,3]],[[14326,13651],[-2,26]],[[14324,13677],[-5,3]],[[14319,13680],[0,45]],[[14319,13725],[0,4]],[[14319,13729],[46,9],[42,-29]],[[20686,13755],[10,3]],[[20696,13758],[-10,-3]],[[13978,13670],[-7,4]],[[13971,13674],[-14,22]],[[13957,13696],[2,13]],[[13959,13709],[14,16]],[[13973,13725],[5,7]],[[13978,13732],[14,52]],[[13992,13784],[3,3]],[[13995,13787],[17,-55],[-34,-62]],[[20972,13807],[1,-20]],[[20973,13787],[-29,3]],[[20944,13790],[23,19]],[[20967,13809],[5,-2]],[[13797,13894],[0,-7]],[[13797,13887],[6,-3]],[[13803,13884],[12,-26]],[[13815,13858],[-4,-7]],[[13811,13851],[-8,-6]],[[13803,13845],[-11,-3]],[[13792,13842],[0,-3]],[[13792,13839],[-6,3]],[[13786,13842],[1,48]],[[13787,13890],[10,4]],[[12654,13926],[28,-32],[-43,-49],[-16,-68]],[[12623,13777],[-5,-6]],[[12618,13771],[0,-3]],[[12618,13768],[5,-10]],[[12623,13758],[0,-3]],[[12623,13755],[-11,-3]],[[12612,13752],[-40,-23]],[[12572,13729],[-39,-4]],[[12533,13725],[0,4]],[[12533,13729],[-5,3]],[[12528,13732],[-9,23]],[[12519,13755],[24,-7]],[[12543,13748],[10,16]],[[12553,13764],[19,4]],[[12572,13768],[0,3]],[[12572,13771],[6,3]],[[12578,13774],[51,68],[8,71]],[[12637,13913],[6,3]],[[12643,13916],[2,7]],[[12645,13923],[9,3]],[[12528,14355],[0,-3]],[[12528,14352],[-36,-3]],[[12492,14349],[5,10]],[[12497,14359],[9,0]],[[12506,14359],[6,-4]],[[12512,14355],[16,0]],[[12575,14724],[-3,-6]],[[12572,14718],[0,-4]],[[12572,14714],[-14,4]],[[12558,14718],[-15,-7]],[[12543,14711],[-9,3]],[[12534,14714],[-1,7]],[[12533,14721],[-5,3]],[[12528,14724],[0,29]],[[12528,14753],[11,3]],[[12539,14756],[15,52]],[[12554,14808],[8,3]],[[12562,14811],[50,-6],[-5,-46],[-32,-35]],[[12793,14824],[8,-13]],[[12801,14811],[9,-3]],[[12810,14808],[-51,-7]],[[12759,14801],[-3,13]],[[12756,14814],[23,7]],[[12779,14821],[14,3]],[[14722,15160],[-5,-3]],[[14717,15157],[-26,-13]],[[14691,15144],[-6,3]],[[14685,15147],[7,19]],[[14692,15166],[7,4]],[[14699,15170],[23,-10]],[[12960,15296],[-9,3]],[[12951,15299],[9,-3]],[[14073,15403],[-30,-4]],[[14043,15399],[30,4]],[[15210,15674],[7,0]],[[15217,15674],[9,-16]],[[15226,15658],[5,-4]],[[15231,15654],[-17,-13]],[[15214,15641],[-7,4]],[[15207,15645],[7,-43]],[[15214,15602],[-2,0]],[[15212,15602],[14,-71],[-39,-80]],[[15187,15451],[-5,-3]],[[15182,15448],[-26,-45]],[[15156,15403],[-11,2]],[[15145,15405],[-24,10]],[[15121,15415],[-21,16]],[[15100,15431],[-13,23]],[[15087,15454],[-5,3]],[[15082,15457],[-10,58]],[[15072,15515],[-18,-3]],[[15054,15512],[-17,-22]],[[15037,15490],[-25,-3]],[[15012,15487],[-28,-27]],[[14984,15460],[-5,-3]],[[14979,15457],[-3,-6]],[[14976,15451],[-7,-3]],[[14969,15448],[-15,-23]],[[14954,15425],[-7,-16]],[[14947,15409],[-42,6]],[[14905,15415],[-25,-3]],[[14880,15412],[0,-3]],[[14880,15409],[-25,0]],[[14855,15409],[4,29]],[[14859,15438],[5,3]],[[14864,15441],[0,3]],[[14864,15444],[9,4]],[[14873,15448],[2,9]],[[14875,15457],[5,3]],[[14880,15460],[0,7]],[[14880,15467],[6,3]],[[14886,15470],[3,4]],[[14889,15474],[5,2]],[[14894,15476],[17,59],[-17,26]],[[14894,15561],[-5,6]],[[14889,15567],[0,23]],[[14889,15590],[6,3]],[[14895,15593],[16,16]],[[14911,15609],[36,-3]],[[14947,15606],[23,-36]],[[14970,15570],[5,-9]],[[14975,15561],[26,9]],[[15001,15570],[5,4]],[[15006,15574],[16,19]],[[15022,15593],[7,3]],[[15029,15596],[53,42]],[[15082,15638],[5,13]],[[15087,15651],[95,26]],[[15182,15677],[5,3]],[[15187,15680],[23,-6]],[[13868,15780],[5,-3]],[[13873,15777],[31,-45]],[[13904,15732],[13,-3]],[[13917,15729],[0,-4]],[[13917,15725],[15,-3]],[[13932,15722],[0,-3]],[[13932,15719],[11,0]],[[13943,15719],[-17,-65]],[[13926,15654],[-25,-3]],[[13901,15651],[-5,-6]],[[13896,15645],[-28,3]],[[13868,15648],[-25,68]],[[13843,15716],[-4,3]],[[13839,15719],[-2,10]],[[13837,15729],[-6,3]],[[13831,15732],[-20,71],[57,-23]],[[13762,15829],[35,-26]],[[13797,15803],[-4,-10]],[[13793,15793],[0,-3]],[[13793,15790],[-12,-3]],[[13781,15787],[-31,39]],[[13750,15826],[12,3]],[[15107,16061],[13,-3]],[[15120,16058],[-17,-6]],[[15103,16052],[-3,3]],[[15100,16055],[7,6]],[[15349,16077],[-3,11]],[[15346,16088],[0,2]],[[15346,16090],[0,17]],[[15346,16107],[-3,13]],[[15343,16120],[-5,3]],[[15338,16123],[5,3],[14,-19],[-8,-30]],[[15362,16698],[11,3]],[[15373,16701],[4,-6]],[[15377,16695],[7,-4]],[[15384,16691],[23,-28]],[[15407,16663],[6,-4]],[[15413,16659],[0,-3]],[[15413,16656],[7,-4]],[[15420,16652],[4,-5]],[[15424,16647],[10,-4]],[[15434,16643],[4,-29]],[[15438,16614],[-11,3]],[[15427,16617],[-43,42]],[[15384,16659],[-16,4]],[[15368,16663],[-22,16]],[[15346,16679],[-9,3]],[[15337,16682],[25,16]],[[15429,16727],[5,-7]],[[15434,16720],[-5,7]],[[13847,17031],[-8,-3]],[[13839,17028],[0,-4]],[[13839,17024],[-8,4]],[[13831,17028],[0,25]],[[13831,17053],[5,3]],[[13836,17056],[3,14]],[[13839,17070],[4,6]],[[13843,17076],[4,-45]],[[29282,5638],[-10,29]],[[29272,5667],[-6,10]],[[29266,5677],[-12,23]],[[29254,5700],[-4,3]],[[29250,5703],[0,3]],[[29250,5706],[-7,3]],[[29243,5709],[0,3]],[[29243,5712],[-16,23]],[[29227,5735],[-5,7]],[[29222,5742],[-9,16]],[[29213,5758],[0,6]],[[29213,5764],[-5,3]],[[29208,5767],[0,4]],[[29208,5771],[-6,6]],[[29202,5777],[0,3]],[[29202,5780],[-11,23]],[[29191,5803],[-11,19]],[[29180,5822],[-4,10]],[[29176,5832],[-30,0]],[[29146,5832],[-14,3]],[[29132,5835],[0,4]],[[29132,5839],[-6,3]],[[29126,5842],[0,3]],[[29126,5845],[-8,3]],[[29118,5848],[0,3]],[[29118,5851],[-6,14]],[[29112,5865],[-5,9]],[[29107,5874],[-10,7]],[[29097,5881],[-3,6]],[[29094,5887],[-14,3]],[[29080,5890],[0,4]],[[29080,5894],[-18,6]],[[29062,5900],[0,3]],[[29062,5903],[-27,13]],[[29035,5916],[0,-3]],[[29035,5913],[-14,6]],[[29021,5919],[-5,14]],[[29016,5933],[-6,2]],[[29010,5935],[-6,10]],[[29004,5945],[-10,7]],[[28994,5952],[-7,9]],[[28987,5961],[-21,-12]],[[28966,5949],[-28,-11]],[[28938,5938],[-7,-3]],[[28931,5935],[0,-2]],[[28931,5933],[-16,-4]],[[28915,5929],[-22,-7]],[[28893,5922],[-14,11]],[[28879,5933],[0,-4]],[[28879,5929],[-14,-10]],[[28865,5919],[0,-3]],[[28865,5916],[-5,-3]],[[28860,5913],[0,-3]],[[28860,5910],[-4,-4]],[[28856,5906],[-22,0]],[[28834,5906],[0,7]],[[28834,5913],[1,0]],[[28835,5913],[8,3]],[[28843,5916],[5,6]],[[28848,5922],[4,11]],[[28852,5933],[0,9]],[[28852,5942],[-7,-4]],[[28845,5938],[-2,7]],[[28843,5945],[-15,10]],[[28828,5955],[-19,13]],[[28809,5968],[-5,3]],[[28804,5971],[0,13]],[[28804,5984],[-9,9]],[[28795,5993],[-10,7]],[[28785,6000],[-11,13]],[[28774,6013],[0,3]],[[28774,6016],[-6,4]],[[28768,6020],[-11,6]],[[28757,6026],[-9,10]],[[28748,6036],[-30,0]],[[28718,6036],[-14,-4]],[[28704,6032],[-26,-16],[-50,61]],[[28628,6077],[4,14]],[[28632,6091],[2,29]],[[28634,6120],[-8,3]],[[28626,6123],[-64,20]],[[28562,6143],[-6,-4]],[[28556,6139],[-5,-13]],[[28551,6126],[-9,-3]],[[28542,6123],[-30,-19],[-61,71],[-18,96]],[[28433,6271],[-8,7]],[[28425,6278],[-39,-13]],[[28386,6265],[-5,-3]],[[28381,6262],[-25,23]],[[28356,6285],[-6,2]],[[28350,6287],[-5,4]],[[28345,6291],[-26,-4]],[[28319,6287],[-14,4]],[[28305,6291],[-16,16]],[[28289,6307],[-9,3]],[[28280,6310],[-14,65],[25,19]],[[28291,6394],[6,-3]],[[28297,6391],[8,0]],[[28305,6391],[-3,13]],[[28302,6404],[3,55]],[[28305,6459],[4,3]],[[28309,6462],[16,29]],[[28325,6491],[5,6]],[[28330,6497],[-11,39]],[[28319,6536],[-10,4]],[[28309,6540],[-12,-10]],[[28297,6530],[-11,-3]],[[28286,6527],[0,-7]],[[28286,6520],[-9,4]],[[28277,6524],[-28,0]],[[28249,6524],[-8,3]],[[28241,6527],[-36,-20]],[[28205,6507],[0,4]],[[28205,6511],[0,6]],[[28205,6517],[-5,3]],[[28200,6520],[-58,-9]],[[28142,6511],[-25,-4]],[[28117,6507],[0,-3]],[[28117,6504],[-9,3]],[[28108,6507],[6,23]],[[28114,6530],[10,3]],[[28124,6533],[0,3]],[[28124,6536],[6,4]],[[28130,6540],[0,3]],[[28130,6543],[9,9]],[[28139,6552],[10,16]],[[28149,6568],[4,4]],[[28153,6572],[2,13]],[[28155,6585],[-20,3]],[[28135,6588],[0,7]],[[28135,6595],[0,19]],[[28135,6614],[-5,13]],[[28130,6627],[-6,3]],[[28124,6630],[-3,16]],[[28121,6646],[0,7]],[[28121,6653],[3,29]],[[28124,6682],[-19,3]],[[28105,6685],[-2,6]],[[28103,6691],[-18,7]],[[28085,6698],[-75,-64]],[[28010,6634],[-13,3]],[[27997,6637],[-39,45]],[[27958,6682],[0,16]],[[27958,6698],[16,55]],[[27974,6753],[0,3]],[[27974,6756],[0,6]],[[27974,6762],[8,4]],[[27982,6766],[0,35]],[[27982,6801],[-3,13]],[[27979,6814],[15,39]],[[27994,6853],[10,3]],[[28004,6856],[43,7],[38,74]],[[28085,6937],[9,3]],[[28094,6940],[3,0]],[[28097,6940],[3,3]],[[28100,6943],[17,0]],[[28117,6943],[36,0]],[[28153,6943],[0,4]],[[28153,6947],[27,3]],[[28180,6950],[15,10]],[[28195,6960],[13,3]],[[28208,6963],[3,23]],[[28211,6986],[-12,3]],[[28199,6989],[0,26]],[[28199,7015],[1,9]],[[28200,7024],[-20,8]],[[28180,7032],[-14,2]],[[28166,7034],[-24,23]],[[28142,7057],[-21,6]],[[28121,7063],[-4,7]],[[28117,7070],[-7,3]],[[28110,7073],[34,13]],[[28144,7086],[14,3]],[[28158,7089],[2,6]],[[28160,7095],[15,3]],[[28175,7098],[56,33],[-26,58]],[[28205,7189],[-5,16]],[[28200,7205],[-6,29]],[[28194,7234],[14,3]],[[28208,7237],[2,36]],[[28210,7273],[-15,3]],[[28195,7276],[-12,43]],[[28183,7319],[-3,2]],[[28180,7321],[0,-2]],[[28180,7319],[-16,-4]],[[28164,7315],[-11,-19]],[[28153,7296],[-4,-4]],[[28149,7292],[-19,-12]],[[28130,7280],[5,12]],[[28135,7292],[0,7]],[[28135,7299],[0,16]],[[28135,7315],[0,4]],[[28135,7319],[4,6]],[[28139,7325],[10,32]],[[28149,7357],[0,3]],[[28149,7360],[-14,13]],[[28135,7373],[-11,3]],[[28124,7376],[0,4]],[[28124,7380],[-3,6]],[[28121,7386],[0,4]],[[28121,7390],[-4,2]],[[28117,7392],[0,7]],[[28117,7399],[4,7]],[[28121,7406],[0,3]],[[28121,7409],[-4,3]],[[28117,7412],[-3,10]],[[28114,7422],[7,3]],[[28121,7425],[9,16]],[[28130,7441],[14,10]],[[28144,7451],[5,7]],[[28149,7458],[4,3]],[[28153,7461],[2,51]],[[28155,7512],[-11,3]],[[28144,7515],[-19,-9]],[[28125,7506],[-11,-7]],[[28114,7499],[-40,13],[-19,65]],[[28055,7577],[-11,-3]],[[28044,7574],[-61,26],[-17,68],[31,28]],[[27997,7696],[7,4]],[[28004,7700],[45,83]],[[28049,7783],[4,7]],[[28053,7790],[21,129],[34,7]],[[28108,7926],[16,-4]],[[28124,7922],[1,-9]],[[28125,7913],[10,-10]],[[28135,7903],[34,10]],[[28169,7913],[-3,22]],[[28166,7935],[-36,19]],[[28130,7954],[-5,14]],[[28125,7968],[0,6]],[[28125,7974],[0,7]],[[28125,7981],[-11,23]],[[28114,8004],[0,12]],[[28114,8016],[0,4]],[[28114,8020],[0,3]],[[28114,8023],[0,6]],[[28114,8029],[0,3]],[[28114,8032],[11,20]],[[28125,8052],[5,9]],[[28130,8061],[0,10]],[[28130,8071],[5,6]],[[28135,8077],[0,20]],[[28135,8097],[4,7]],[[28139,8104],[10,74]],[[28149,8178],[9,9]],[[28158,8187],[8,0]],[[28166,8187],[8,7]],[[28174,8194],[0,9]],[[28174,8203],[-5,13]],[[28169,8216],[14,65],[-9,49]],[[28174,8330],[-5,19]],[[28169,8349],[0,97],[-34,45]],[[28135,8491],[-5,4]],[[28130,8495],[-6,9]],[[28124,8504],[-7,4]],[[28117,8508],[-3,6]],[[28114,8514],[-11,3]],[[28103,8517],[0,3]],[[28103,8520],[-9,4]],[[28094,8524],[-36,64]],[[28058,8588],[-12,3]],[[28046,8591],[-49,-19]],[[27997,8572],[7,0]],[[28004,8572],[45,-58]],[[28049,8514],[4,-6]],[[28053,8508],[0,-4]],[[28053,8504],[-4,-7]],[[28049,8497],[0,-22]],[[28049,8475],[-5,-13]],[[28044,8462],[-65,19]],[[27979,8481],[-25,-3]],[[27954,8478],[-71,123]],[[27883,8601],[-11,10]],[[27872,8611],[5,9]],[[27877,8620],[5,3]],[[27882,8623],[0,27]],[[27882,8650],[-10,3]],[[27872,8653],[-4,54]],[[27868,8707],[-16,4]],[[27852,8711],[-14,-16]],[[27838,8695],[-6,-4]],[[27832,8691],[-9,-45]],[[27823,8646],[-10,-10]],[[27813,8636],[-123,-19]],[[27690,8617],[-25,6]],[[27665,8623],[0,4]],[[27665,8627],[-9,3]],[[27656,8630],[-11,6]],[[27645,8636],[-8,-2]],[[27637,8634],[-2,-11]],[[27635,8623],[7,-9]],[[27642,8614],[0,-3]],[[27642,8611],[-7,-4]],[[27635,8607],[0,4]],[[27635,8611],[-9,0]],[[27626,8611],[-27,16]],[[27599,8627],[-29,3]],[[27570,8630],[-16,-19]],[[27554,8611],[6,-10]],[[27560,8601],[0,-6]],[[27560,8595],[0,-4]],[[27560,8591],[0,-42]],[[27560,8549],[5,-3]],[[27565,8546],[5,-6]],[[27570,8540],[0,-20]],[[27570,8520],[11,-35]],[[27581,8485],[11,-4]],[[27592,8481],[-2,-22]],[[27590,8459],[-5,-3]],[[27585,8456],[-20,-26]],[[27565,8430],[-5,-4]],[[27560,8426],[0,-6]],[[27560,8420],[7,-3]],[[27567,8417],[0,3]],[[27567,8420],[14,-13]],[[27581,8407],[-22,-3]],[[27559,8404],[-8,3]],[[27551,8407],[-16,17]],[[27535,8424],[-11,-4]],[[27524,8420],[-3,-6]],[[27521,8414],[-7,3]],[[27514,8417],[-25,-16],[-80,25]],[[27409,8426],[-5,-9]],[[27404,8417],[-25,-7]],[[27379,8410],[-9,-3]],[[27370,8407],[0,-3]],[[27370,8404],[-11,-3]],[[27359,8401],[-22,25],[-61,7],[-39,26]],[[27237,8459],[-11,6]],[[27226,8465],[11,30]],[[27237,8495],[11,16]],[[27248,8511],[91,-10]],[[27339,8501],[20,3]],[[27359,8504],[6,16]],[[27365,8520],[5,10]],[[27370,8530],[66,42]],[[27436,8572],[4,3]],[[27440,8575],[86,55],[-2,20]],[[27524,8650],[-10,6]],[[27514,8656],[0,3]],[[27514,8659],[-5,3]],[[27509,8662],[0,10]],[[27509,8672],[6,3]],[[27515,8675],[3,26]],[[27518,8701],[-12,10]],[[27506,8711],[-63,16]],[[27443,8727],[-9,3]],[[27434,8730],[-25,16]],[[27409,8746],[0,7]],[[27409,8753],[2,13]],[[27411,8766],[-7,3]],[[27404,8769],[24,97],[-71,26]],[[27357,8892],[-4,3]],[[27353,8895],[-25,71],[59,52],[-12,97]],[[27375,9115],[-5,3]],[[27370,9118],[33,97]],[[27403,9215],[8,3]],[[27411,9218],[25,10]],[[27436,9228],[0,25]],[[27436,9253],[0,27]],[[27436,9280],[7,3]],[[27443,9283],[30,64]],[[27473,9347],[16,0]],[[27489,9347],[0,4]],[[27489,9351],[4,3]],[[27493,9354],[25,6]],[[27518,9360],[3,-3]],[[27521,9357],[5,-13]],[[27526,9344],[5,-3]],[[27531,9341],[14,-22]],[[27545,9319],[11,-4]],[[27556,9315],[14,-10]],[[27570,9305],[4,-3]],[[27574,9302],[58,13]],[[27632,9315],[10,4]],[[27642,9319],[57,-30]],[[27699,9289],[22,3]],[[27721,9292],[34,23]],[[27755,9315],[-4,4]],[[27751,9319],[-3,45]],[[27748,9364],[7,-4]],[[27755,9360],[30,23]],[[27785,9383],[-5,3]],[[27780,9386],[-23,49]],[[27757,9435],[-11,3]],[[27746,9438],[34,9]],[[27780,9447],[0,7]],[[27780,9454],[0,4]],[[27780,9458],[-3,2]],[[27777,9460],[3,20]],[[27780,9480],[0,10]],[[27780,9490],[-25,93]],[[27755,9583],[-7,3]],[[27748,9586],[3,33]],[[27751,9619],[11,10]],[[27762,9629],[15,25]],[[27777,9654],[8,-6]],[[27785,9648],[31,-13]],[[27816,9635],[16,-6]],[[27832,9629],[0,-7]],[[27832,9622],[5,-6]],[[27837,9616],[25,0]],[[27862,9616],[9,3]],[[27871,9619],[6,13]],[[27877,9632],[6,3]],[[27883,9635],[61,-55]],[[27944,9580],[5,6]],[[27949,9586],[5,7]],[[27954,9593],[9,7]],[[27963,9600],[-5,-33]],[[27958,9567],[0,-10]],[[27958,9557],[0,-3]],[[27958,9554],[-6,-6]],[[27952,9548],[-3,-7]],[[27949,9541],[3,-3]],[[27952,9538],[0,-3]],[[27952,9535],[9,-4]],[[27961,9531],[0,-54],[-53,9],[-20,-55]],[[27888,9431],[-5,-6]],[[27883,9425],[-1,-13]],[[27882,9412],[-6,3]],[[27876,9415],[-8,-16]],[[27868,9399],[-5,-7]],[[27863,9392],[0,-32]],[[27863,9360],[5,-3]],[[27868,9357],[8,-10]],[[27876,9347],[6,4]],[[27882,9351],[61,16]],[[27943,9367],[9,3]],[[27952,9370],[77,20],[59,35]],[[28088,9425],[5,10]],[[28093,9435],[4,12]],[[28097,9447],[3,7]],[[28100,9454],[8,32]],[[28108,9486],[6,7]],[[28114,9493],[3,9]],[[28117,9502],[4,4]],[[28121,9506],[4,9]],[[28125,9515],[5,3]],[[28130,9518],[0,7]],[[28130,9525],[5,20]],[[28135,9545],[0,6]],[[28135,9551],[-5,29]],[[28130,9580],[0,45]],[[28130,9625],[5,13]],[[28135,9638],[0,7]],[[28135,9645],[4,6]],[[28139,9651],[0,17]],[[28139,9668],[-4,5]],[[28135,9673],[0,4]],[[28135,9677],[-10,3]],[[28125,9680],[-4,10]],[[28121,9690],[-4,3]],[[28117,9693],[-23,48],[-47,-2],[-4,54],[-41,104]],[[28002,9897],[-5,9]],[[27997,9906],[-36,59]],[[27961,9965],[-7,3]],[[27954,9968],[-2,6]],[[27952,9974],[-8,3]],[[27944,9977],[-3,7]],[[27941,9984],[-8,3]],[[27933,9987],[-37,46],[-34,0]],[[27862,10033],[-32,-4]],[[27830,10029],[-3,-9]],[[27827,10020],[-14,0]],[[27813,10020],[-28,22]],[[27785,10042],[-8,3]],[[27777,10045],[-61,10]],[[27716,10055],[-26,-10]],[[27690,10045],[0,-3]],[[27690,10042],[-34,0]],[[27656,10042],[-64,23]],[[27592,10065],[-7,3]],[[27585,10068],[-11,13]],[[27574,10081],[-7,3]],[[27567,10084],[-2,7]],[[27565,10091],[-6,2]],[[27559,10093],[-3,4]],[[27556,10097],[-2,7]],[[27554,10104],[-8,3]],[[27546,10107],[-25,32]],[[27521,10139],[-12,13]],[[27509,10152],[-14,10]],[[27495,10162],[-2,6]],[[27493,10168],[0,3]],[[27493,10171],[-4,4]],[[27489,10175],[-46,61],[-29,10],[-10,74]],[[27404,10320],[5,3]],[[27409,10323],[-34,-3]],[[27375,10320],[-10,3]],[[27365,10323],[-8,13]],[[27357,10336],[-4,3]],[[27353,10339],[-25,-9]],[[27328,10330],[-5,-4]],[[27323,10326],[-14,-32],[-53,32],[62,81],[-51,23]],[[27267,10430],[-25,-4]],[[27242,10426],[-5,-9]],[[27237,10417],[-4,-7]],[[27233,10410],[-64,20]],[[27169,10430],[-3,3]],[[27166,10433],[-19,13]],[[27147,10446],[-14,-3]],[[27133,10443],[0,-13]],[[27133,10430],[0,-4]],[[27133,10426],[9,-29]],[[27142,10397],[5,0]],[[27147,10397],[-2,-16]],[[27145,10381],[-12,4]],[[27133,10385],[0,-4]],[[27133,10381],[-10,-3]],[[27123,10378],[-46,46],[-35,90]],[[27042,10514],[-12,0]],[[27030,10514],[-49,10]],[[26981,10524],[-4,3]],[[26977,10527],[0,22]],[[26977,10549],[0,14]],[[26977,10563],[-30,22]],[[26947,10585],[-8,-3]],[[26939,10582],[-15,45]],[[26924,10627],[-8,3]],[[26916,10630],[-45,6],[-10,-41]],[[26861,10595],[0,-10]],[[26861,10585],[5,-45]],[[26866,10540],[-9,3]],[[26857,10543],[-32,103],[-67,49]],[[26758,10695],[-9,3]],[[26749,10698],[-30,71]],[[26719,10769],[-6,4]],[[26713,10773],[-20,25]],[[26693,10798],[-10,3]],[[26683,10801],[-6,10]],[[26677,10811],[0,10]],[[26677,10821],[0,23]],[[26677,10844],[0,9]],[[26677,10853],[2,13]],[[26679,10866],[-7,3]],[[26672,10869],[-28,48]],[[26644,10917],[-9,4]],[[26635,10921],[-6,13]],[[26629,10934],[-14,-3]],[[26615,10931],[-49,-10],[-42,-42]],[[26524,10879],[59,-3],[0,-55],[-49,-48]],[[26534,10773],[0,-4]],[[26534,10769],[15,-26]],[[26549,10743],[5,-3]],[[26554,10740],[5,-13]],[[26559,10727],[4,-9]],[[26563,10718],[6,-43]],[[26569,10675],[-21,7]],[[26548,10682],[-44,-16],[-8,-62]],[[26496,10604],[-19,0]],[[26477,10604],[-4,7]],[[26473,10611],[-7,3]],[[26466,10614],[-4,3]],[[26462,10617],[-16,-3]],[[26446,10614],[-3,-13]],[[26443,10601],[-8,-6]],[[26435,10595],[-14,-23]],[[26421,10572],[-4,-7]],[[26417,10565],[-11,-16]],[[26406,10549],[15,3]],[[26421,10552],[22,0]],[[26443,10552],[9,-3]],[[26452,10549],[0,-3]],[[26452,10546],[-1,-3]],[[26451,10543],[0,-7]],[[26451,10536],[-13,-3]],[[26438,10533],[-17,-42]],[[26421,10491],[-4,-3]],[[26417,10488],[0,-3]],[[26417,10485],[0,-4]],[[26417,10481],[0,-3]],[[26417,10478],[0,-13]],[[26417,10465],[-35,-32]],[[26382,10433],[-17,3]],[[26365,10436],[-3,-6]],[[26362,10430],[-9,-4]],[[26353,10426],[-8,14]],[[26345,10440],[-5,0]],[[26340,10440],[-5,-55]],[[26335,10385],[5,-4]],[[26340,10381],[37,4]],[[26377,10385],[5,-4]],[[26382,10381],[-6,-71]],[[26376,10310],[-8,7]],[[26368,10317],[-26,3]],[[26342,10320],[-18,-3]],[[26324,10317],[16,-65]],[[26340,10252],[-16,3]],[[26324,10255],[-53,26]],[[26271,10281],[-29,-3]],[[26242,10278],[-61,3]],[[26181,10281],[-9,-3]],[[26172,10278],[-11,-32]],[[26161,10246],[4,-4]],[[26165,10242],[-26,-38],[-33,29]],[[26106,10233],[-6,6]],[[26100,10239],[-2,7]],[[26098,10246],[-14,0]],[[26084,10246],[-9,-10]],[[26075,10236],[-10,3]],[[26065,10239],[5,-32]],[[26070,10207],[5,-7]],[[26075,10200],[0,-16]],[[26075,10184],[-5,-6]],[[26070,10178],[0,-39]],[[26070,10139],[5,-3]],[[26075,10136],[0,-7]],[[26075,10129],[-5,-9]],[[26070,10120],[-12,-62],[-30,-13]],[[26028,10045],[-5,-3]],[[26023,10042],[0,-3]],[[26023,10039],[-4,-10]],[[26019,10029],[-25,-26]],[[25994,10003],[0,-3]],[[25994,10000],[11,-10]],[[26005,9990],[9,0]],[[26014,9990],[55,-35]],[[26069,9955],[6,-3]],[[26075,9952],[0,-17]],[[26075,9935],[-5,-9]],[[26070,9926],[-31,-36],[-106,-35],[9,-52]],[[25942,9803],[8,-3]],[[25950,9800],[34,-7]],[[25984,9793],[14,-16]],[[25998,9777],[16,-22]],[[26014,9755],[11,-4]],[[26025,9751],[8,-39],[-49,-32]],[[25984,9680],[-1,-3]],[[25983,9677],[-41,-36]],[[25942,9641],[-8,-3]],[[25934,9638],[-1,-6]],[[25933,9632],[-8,-7]],[[25925,9625],[0,-6]],[[25925,9619],[8,3]],[[25933,9622],[1,-6]],[[25934,9616],[8,-3]],[[25942,9613],[6,-11]],[[25948,9602],[14,-2]],[[25962,9600],[22,6]],[[25984,9606],[11,3]],[[25995,9609],[50,-9],[25,-65]],[[26070,9535],[5,-4]],[[26075,9531],[15,-25],[71,9]],[[26161,9515],[7,3]],[[26168,9518],[-21,36],[4,119]],[[26151,9673],[19,4]],[[26170,9677],[44,-16]],[[26214,9661],[6,-4]],[[26220,9657],[1,-12]],[[26221,9645],[4,-4]],[[26225,9641],[20,-12]],[[26245,9629],[5,3]],[[26250,9632],[40,9],[9,43],[74,16]],[[26373,9700],[12,-4]],[[26385,9696],[5,-42]],[[26390,9654],[-23,-3]],[[26367,9651],[10,-55]],[[26377,9596],[5,-6]],[[26382,9590],[-9,-13]],[[26373,9577],[-20,3]],[[26353,9580],[-66,0]],[[26287,9580],[-5,0]],[[26282,9580],[-31,-35]],[[26251,9545],[-14,-4]],[[26237,9541],[-12,-26]],[[26225,9515],[-5,-3]],[[26220,9512],[1,-19]],[[26221,9493],[4,-3]],[[26225,9490],[-60,-23]],[[26165,9467],[-4,-4]],[[26161,9463],[-10,-9]],[[26151,9454],[35,-3]],[[26186,9451],[-18,-45]],[[26168,9406],[-9,3]],[[26159,9409],[-23,3]],[[26136,9412],[-10,-3]],[[26126,9409],[0,-3]],[[26126,9406],[-6,-3]],[[26120,9403],[3,-11]],[[26123,9392],[3,-6]],[[26126,9386],[10,-16]],[[26136,9370],[-5,-6]],[[26131,9364],[-56,-33]],[[26075,9331],[-17,-3]],[[26058,9328],[3,-16]],[[26061,9312],[20,3]],[[26081,9315],[20,-3]],[[26101,9312],[5,-4]],[[26106,9308],[-31,-58]],[[26075,9250],[-5,-6]],[[26070,9244],[0,-29]],[[26070,9215],[5,-3]],[[26075,9212],[6,-42],[37,-26]],[[26118,9144],[13,-6]],[[26131,9138],[-5,-7]],[[26126,9131],[-3,-3]],[[26123,9128],[-17,0]],[[26106,9128],[-36,3]],[[26070,9131],[-41,-6]],[[26029,9125],[-14,-4]],[[26015,9121],[-21,-55]],[[25994,9066],[-10,-3]],[[25984,9063],[0,-3]],[[25984,9060],[-1,-3]],[[25983,9057],[-36,-23]],[[25947,9034],[-5,-3]],[[25942,9031],[0,-4]],[[25942,9027],[-5,-6]],[[25937,9021],[-3,-10]],[[25934,9011],[-6,-3]],[[25928,9008],[-14,-9]],[[25914,8999],[-6,-4]],[[25908,8995],[-3,-7]],[[25905,8988],[-8,-2]],[[25897,8986],[-14,93],[-31,20]],[[25852,9099],[-5,3]],[[25847,9102],[-5,3]],[[25842,9105],[-6,3]],[[25836,9108],[-14,20]],[[25822,9128],[-9,6]],[[25813,9134],[-10,13]],[[25803,9147],[-11,-3]],[[25792,9144],[-31,29]],[[25761,9173],[-5,4]],[[25756,9177],[0,19]],[[25756,9196],[5,3]],[[25761,9199],[0,10]],[[25761,9209],[-5,6]],[[25756,9215],[-3,19]],[[25753,9234],[13,3]],[[25766,9237],[0,7]],[[25766,9244],[-10,4]],[[25756,9248],[-34,16]],[[25722,9264],[0,22]],[[25722,9286],[5,16]],[[25727,9302],[4,10]],[[25731,9312],[14,39],[-20,48]],[[25725,9399],[-8,4]],[[25717,9403],[0,16]],[[25717,9419],[5,3]],[[25722,9422],[5,6]],[[25727,9428],[20,3]],[[25747,9431],[9,4]],[[25756,9435],[18,6]],[[25774,9441],[40,0]],[[25814,9441],[8,3]],[[25822,9444],[0,14]],[[25822,9458],[-3,2]],[[25819,9460],[9,26]],[[25828,9486],[8,4]],[[25836,9490],[0,3]],[[25836,9493],[6,3]],[[25842,9496],[5,6]],[[25847,9502],[5,4]],[[25852,9506],[73,39]],[[25925,9545],[8,3]],[[25933,9548],[-21,26]],[[25912,9574],[-6,3]],[[25906,9577],[-70,23]],[[25836,9600],[-5,-4]],[[25831,9596],[-4,-6]],[[25827,9590],[-16,-4]],[[25811,9586],[-5,-6]],[[25806,9580],[-12,-6]],[[25794,9574],[-16,-7]],[[25778,9567],[-12,3]],[[25766,9570],[-5,62]],[[25761,9632],[0,3]],[[25761,9635],[5,22]],[[25766,9657],[0,7]],[[25766,9664],[-6,7]],[[25760,9671],[-4,6]],[[25756,9677],[-25,42]],[[25731,9719],[-4,3]],[[25727,9722],[-5,19]],[[25722,9741],[-5,4]],[[25717,9745],[0,3]],[[25717,9748],[0,7]],[[25717,9755],[-36,41]],[[25681,9796],[-6,4]],[[25675,9800],[-57,-33]],[[25618,9767],[-7,-3]],[[25611,9764],[-65,0],[-11,-36],[-70,-16],[6,43]],[[25471,9755],[5,3]],[[25476,9758],[4,9]],[[25480,9767],[0,10]],[[25480,9777],[0,49]],[[25480,9826],[5,3]],[[25485,9829],[0,19]],[[25485,9848],[0,16]],[[25485,9864],[36,23]],[[25521,9887],[9,7]],[[25530,9894],[25,16]],[[25555,9910],[14,3]],[[25569,9913],[-42,42]],[[25527,9955],[-3,-3]],[[25524,9952],[-3,6]],[[25521,9958],[-6,3]],[[25515,9961],[0,20]],[[25515,9981],[0,9]],[[25515,9990],[-10,32]],[[25505,10022],[-5,7]],[[25500,10029],[-14,20]],[[25486,10049],[-7,3]],[[25479,10052],[-3,9]],[[25476,10061],[-5,4]],[[25471,10065],[-45,55]],[[25426,10120],[-7,3]],[[25419,10123],[-39,25]],[[25380,10148],[-17,4]],[[25363,10152],[0,3]],[[25363,10155],[-5,4]],[[25358,10159],[-15,3]],[[25343,10162],[-5,6]],[[25338,10168],[-28,19]],[[25310,10187],[-20,4]],[[25290,10191],[-10,-10]],[[25280,10181],[-6,3]],[[25274,10184],[0,3]],[[25274,10187],[-1,2]],[[25273,10189],[-16,18]],[[25257,10207],[-3,3]],[[25254,10210],[-25,16]],[[25229,10226],[-9,4]],[[25220,10230],[-5,6]],[[25215,10236],[-20,10]],[[25195,10246],[-16,3]],[[25179,10249],[-6,6]],[[25173,10255],[-16,4]],[[25157,10259],[-8,9]],[[25149,10268],[-17,3]],[[25132,10271],[-34,16]],[[25098,10287],[-27,4]],[[25071,10291],[-93,29]],[[24978,10320],[-11,-3]],[[24967,10317],[0,3]],[[24967,10320],[-5,3]],[[24962,10323],[-22,26]],[[24940,10349],[-9,4]],[[24931,10353],[-9,25]],[[24922,10378],[0,13]],[[24922,10391],[0,13]],[[24922,10404],[-5,-7]],[[24917,10397],[-2,-9]],[[24915,10388],[0,-3]],[[24915,10385],[0,-7]],[[24915,10378],[0,-13]],[[24915,10365],[2,-7]],[[24917,10358],[5,-3]],[[24922,10355],[3,-16]],[[24925,10339],[-19,3]],[[24906,10342],[-105,0]],[[24801,10342],[-12,4]],[[24789,10346],[-25,-29]],[[24764,10317],[-8,6]],[[24756,10323],[-126,-45]],[[24630,10278],[-7,-7]],[[24623,10271],[-43,-35]],[[24580,10236],[-17,-3]],[[24563,10233],[-13,-10]],[[24550,10223],[-15,3]],[[24535,10226],[-43,-29]],[[24492,10197],[-11,-3]],[[24481,10194],[-25,16]],[[24456,10210],[11,16]],[[24467,10226],[16,16]],[[24483,10242],[5,4]],[[24488,10246],[0,9]],[[24488,10255],[-5,4]],[[24483,10259],[0,58]],[[24483,10317],[5,3]],[[24488,10320],[-10,45],[-51,23]],[[24427,10388],[-5,13]],[[24422,10401],[0,45]],[[24422,10446],[5,10]],[[24427,10456],[0,13]],[[24427,10469],[-11,-7]],[[24416,10462],[0,7]],[[24416,10469],[-22,-7]],[[24394,10462],[-3,-9]],[[24391,10453],[-5,-4]],[[24386,10449],[-54,-9]],[[24332,10440],[4,6]],[[24336,10446],[-7,39]],[[24329,10485],[-24,6]],[[24305,10491],[-12,33]],[[24293,10524],[-10,3]],[[24283,10527],[-42,-74]],[[24241,10453],[-5,-4]],[[24236,10449],[-1,-9]],[[24235,10440],[-8,-4]],[[24227,10436],[-5,-10]],[[24222,10426],[-4,-2]],[[24218,10424],[-16,-49]],[[24202,10375],[-6,-10]],[[24196,10365],[-14,-58]],[[24182,10307],[-6,-4]],[[24176,10303],[0,-5]],[[24176,10298],[-10,-4]],[[24166,10294],[-47,-26]],[[24119,10268],[-4,-3]],[[24115,10265],[-11,3]],[[24104,10268],[-24,13]],[[24080,10281],[-20,29]],[[24060,10310],[-14,4]],[[24046,10314],[-6,6]],[[24040,10320],[-6,3]],[[24034,10323],[-21,101],[27,41]],[[24040,10465],[11,-3]],[[24051,10462],[14,68]],[[24065,10530],[-5,10]],[[24060,10540],[25,55]],[[24085,10595],[-1,6]],[[24084,10601],[-22,10]],[[24062,10611],[-7,3]],[[24055,10614],[-17,36]],[[24038,10650],[-4,6]],[[24034,10656],[0,23]],[[24034,10679],[4,3]],[[24038,10682],[-29,-3]],[[24009,10679],[-5,-7]],[[24004,10672],[-48,-19]],[[23956,10653],[-5,3]],[[23951,10656],[25,62]],[[23976,10718],[0,9]],[[23976,10727],[50,26]],[[24026,10753],[29,3]],[[24055,10756],[35,107]],[[24090,10863],[9,10]],[[24099,10873],[0,9]],[[24099,10882],[8,13]],[[24107,10895],[1,3]],[[24108,10898],[4,3]],[[24112,10901],[34,10]],[[24146,10911],[6,4]],[[24152,10915],[0,38]],[[24152,10953],[-11,-3]],[[24141,10950],[0,-3]],[[24141,10947],[-15,3]],[[24126,10950],[-14,3]],[[24112,10953],[-18,-3]],[[24094,10950],[-3,-3]],[[24091,10947],[-7,-3]],[[24084,10944],[-15,-7]],[[24069,10937],[-45,7]],[[24024,10944],[-23,22]],[[24001,10966],[-5,3]],[[23996,10969],[13,46]],[[24009,11015],[-5,3]],[[24004,11018],[-8,16]],[[23996,11034],[3,3]],[[23999,11037],[2,20]],[[24001,11057],[8,19]],[[24009,11076],[20,35]],[[24029,11111],[12,0]],[[24041,11111],[39,10]],[[24080,11121],[10,4]],[[24090,11125],[42,29]],[[24132,11154],[9,12]],[[24141,11166],[0,23]],[[24141,11189],[-4,13]],[[24137,11202],[-18,58]],[[24119,11260],[-4,4]],[[24115,11264],[-3,9]],[[24112,11273],[-5,3]],[[24107,11276],[-3,13]],[[24104,11289],[-5,7]],[[24099,11296],[0,3]],[[24099,11299],[-5,3]],[[24094,11302],[-4,10]],[[24090,11312],[-5,6]],[[24085,11318],[-37,55]],[[24048,11373],[-7,3]],[[24041,11376],[-6,11]],[[24035,11387],[-1,2]],[[24034,11389],[-24,14]],[[24010,11403],[-6,3]],[[24004,11406],[-5,6]],[[23999,11412],[-3,3]],[[23996,11415],[-15,39]],[[23981,11454],[-2,4]],[[23979,11458],[-6,2]],[[23973,11460],[-42,20],[-33,-20]],[[23898,11460],[-19,4]],[[23879,11464],[-45,97]],[[23834,11561],[-5,6]],[[23829,11567],[-1,7]],[[23828,11574],[-5,0]],[[23823,11574],[-16,23]],[[23807,11597],[-7,2]],[[23800,11599],[-11,23]],[[23789,11622],[-14,3]],[[23775,11625],[0,4]],[[23775,11629],[-4,3]],[[23771,11632],[-70,16]],[[23701,11648],[-19,-3]],[[23682,11645],[-46,6]],[[23636,11651],[-10,3]],[[23626,11654],[-11,14]],[[23615,11668],[-20,2]],[[23595,11670],[16,39]],[[23611,11709],[0,3]],[[23611,11712],[0,17]],[[23611,11729],[-5,3]],[[23606,11732],[-5,19]],[[23601,11751],[-4,4]],[[23597,11755],[-16,6]],[[23581,11761],[-9,-3]],[[23572,11758],[0,3]],[[23572,11761],[-5,3]],[[23567,11764],[-42,52]],[[23525,11816],[-10,-4]],[[23515,11812],[0,-2]],[[23515,11810],[-18,-4]],[[23497,11806],[-17,-113],[-21,-6]],[[23459,11687],[-4,-7]],[[23455,11680],[-3,-10]],[[23452,11670],[0,-13]],[[23452,11657],[3,-12]],[[23455,11645],[4,-4]],[[23459,11641],[2,-44]],[[23461,11597],[-6,-4]],[[23455,11593],[-21,-16]],[[23434,11577],[-7,-3]],[[23427,11574],[-36,-4]],[[23391,11570],[-22,-3]],[[23369,11567],[-45,-22]],[[23324,11545],[-4,-4]],[[23320,11541],[-1,-6]],[[23319,11535],[-8,-10]],[[23311,11525],[0,-16]],[[23311,11509],[17,-7]],[[23328,11502],[0,-22]],[[23328,11480],[-8,-3]],[[23320,11477],[-4,-17]],[[23316,11460],[3,-16]],[[23319,11444],[36,-19]],[[23355,11425],[1,-3]],[[23356,11422],[13,-23]],[[23369,11399],[20,4]],[[23389,11403],[13,-7]],[[23402,11396],[14,-7]],[[23416,11389],[-5,-87]],[[23411,11302],[-11,-10]],[[23400,11292],[-11,-6]],[[23389,11286],[-8,-3]],[[23381,11283],[-25,-3]],[[23356,11280],[-7,-4]],[[23349,11276],[-21,13]],[[23328,11289],[-8,3]],[[23320,11292],[-4,20]],[[23316,11312],[-5,3]],[[23311,11315],[-37,6]],[[23274,11321],[-8,-3]],[[23266,11318],[0,-3]],[[23266,11315],[-6,-3]],[[23260,11312],[-16,3]],[[23244,11315],[0,10]],[[23244,11325],[-6,19]],[[23238,11344],[-8,4]],[[23230,11348],[-2,25]],[[23228,11373],[7,3]],[[23235,11376],[9,20]],[[23244,11396],[-6,3]],[[23238,11399],[0,13]],[[23238,11412],[-8,19]],[[23230,11431],[-61,7],[-25,-51]],[[23144,11387],[-5,-4]],[[23139,11383],[-4,-19]],[[23135,11364],[-13,-4]],[[23122,11360],[0,-3]],[[23122,11357],[-4,-6]],[[23118,11351],[-16,-16]],[[23102,11335],[-9,-4]],[[23093,11331],[0,7]],[[23093,11338],[-10,3]],[[23083,11341],[-14,19]],[[23069,11360],[-4,7]],[[23065,11367],[0,32]],[[23065,11399],[4,7]],[[23069,11406],[0,6]],[[23069,11412],[-4,3]],[[23065,11415],[-77,23]],[[22988,11438],[-5,3]],[[22983,11441],[0,19]],[[22983,11460],[5,7]],[[22988,11467],[14,10]],[[23002,11477],[9,-3]],[[23011,11474],[25,12]],[[23036,11486],[5,7]],[[23041,11493],[0,6]],[[23041,11499],[-5,23]],[[23036,11522],[33,39]],[[23069,11561],[-4,9]],[[23065,11570],[0,4]],[[23065,11574],[6,6]],[[23071,11580],[1,3]],[[23072,11583],[16,-3]],[[23088,11580],[3,33]],[[23091,11613],[-3,3]],[[23088,11616],[-6,16]],[[23082,11632],[-13,6]],[[23069,11638],[0,3]],[[23069,11641],[-6,4]],[[23063,11645],[-20,6]],[[23043,11651],[-10,-3]],[[23033,11648],[-79,-13]],[[22954,11635],[-8,-3]],[[22946,11632],[-13,-26]],[[22933,11606],[-12,3]],[[22921,11609],[0,4]],[[22921,11613],[-5,3]],[[22916,11616],[-48,-7]],[[22868,11609],[-3,4]],[[22865,11613],[-78,-33]],[[22787,11580],[-7,-3]],[[22780,11577],[-6,0]],[[22774,11577],[-8,-3]],[[22766,11574],[-1,6]],[[22765,11580],[-5,3]],[[22760,11583],[-4,19]],[[22756,11602],[-5,7]],[[22751,11609],[-30,81]],[[22721,11690],[0,10]],[[22721,11700],[-12,12]],[[22709,11712],[-24,4]],[[22685,11716],[5,32]],[[22690,11748],[6,3]],[[22696,11751],[3,7]],[[22699,11758],[5,3]],[[22704,11761],[-9,32]],[[22695,11793],[-5,3]],[[22690,11796],[-16,20]],[[22674,11816],[-4,-4]],[[22670,11812],[0,20]],[[22670,11832],[4,3]],[[22674,11835],[0,29]],[[22674,11864],[0,10]],[[22674,11874],[13,-3]],[[22687,11871],[8,3]],[[22695,11874],[25,48],[-36,23],[6,61]],[[22690,12006],[5,7]],[[22695,12013],[4,16]],[[22699,12029],[5,7]],[[22704,12036],[47,9]],[[22751,12045],[9,-3]],[[22760,12042],[0,-3]],[[22760,12039],[5,3]],[[22765,12042],[1,7]],[[22766,12049],[19,-7]],[[22785,12042],[17,23]],[[22802,12065],[5,9]],[[22807,12074],[13,19]],[[22820,12093],[-8,14]],[[22812,12107],[-5,13]],[[22807,12120],[-5,6]],[[22802,12126],[0,10]],[[22802,12136],[5,3]],[[22807,12139],[5,49]],[[22812,12188],[4,3]],[[22816,12191],[4,19]],[[22820,12210],[-22,3]],[[22798,12213],[-13,0]],[[22785,12213],[-8,3]],[[22777,12216],[-3,11]],[[22774,12227],[-23,3]],[[22751,12230],[-22,-7]],[[22729,12223],[-17,4]],[[22712,12227],[-8,25]],[[22704,12252],[0,7]],[[22704,12259],[37,35],[-15,61]],[[22726,12355],[-9,4]],[[22717,12359],[-66,19]],[[22651,12378],[-5,3]],[[22646,12381],[-15,-9],[-7,-168]],[[22624,12204],[-9,-7]],[[22615,12197],[-31,13]],[[22584,12210],[-5,-13]],[[22579,12197],[-14,-26]],[[22565,12171],[-9,-3]],[[22556,12168],[-3,-13]],[[22553,12155],[-5,-3]],[[22548,12152],[0,-3]],[[22548,12149],[-8,-7]],[[22540,12142],[0,-3]],[[22540,12139],[-6,-3]],[[22534,12136],[0,-4]],[[22534,12132],[0,-3]],[[22534,12129],[-2,-13]],[[22532,12116],[-9,-3]],[[22523,12113],[-44,19]],[[22479,12132],[-4,-6]],[[22475,12126],[-18,-10]],[[22457,12116],[-14,-3]],[[22443,12113],[-1,0]],[[22442,12113],[-8,-3]],[[22434,12110],[-6,-19],[-91,-17]],[[22337,12074],[-15,-3]],[[22322,12071],[-8,45]],[[22314,12116],[-6,7]],[[22308,12123],[1,36]],[[22309,12159],[8,2]],[[22317,12161],[5,49]],[[22322,12210],[-13,3]],[[22309,12213],[-6,3]],[[22303,12216],[-9,-3]],[[22294,12213],[-18,-9]],[[22276,12204],[-7,-4]],[[22269,12200],[-2,-9]],[[22267,12191],[-6,-7]],[[22261,12184],[-14,-23]],[[22247,12161],[-5,-6]],[[22242,12155],[-20,-100],[-59,-19]],[[22163,12036],[-7,-3]],[[22156,12033],[0,-4]],[[22156,12029],[-1,-3]],[[22155,12026],[-52,-26]],[[22103,12000],[3,-78]],[[22106,11922],[5,-3]],[[22111,11919],[14,-16]],[[22125,11903],[-5,-16]],[[22120,11887],[10,-4]],[[22130,11883],[3,4]],[[22133,11887],[22,13]],[[22155,11900],[1,-3]],[[22156,11897],[2,-17]],[[22158,11880],[5,-13]],[[22163,11867],[28,-9]],[[22191,11858],[11,-7]],[[22202,11851],[59,32]],[[22261,11883],[6,4]],[[22267,11887],[5,7]],[[22272,11894],[6,3]],[[22278,11897],[53,13]],[[22331,11910],[6,-4]],[[22337,11906],[77,-35]],[[22414,11871],[4,3]],[[22418,11874],[46,9]],[[22464,11883],[6,-5]],[[22470,11878],[5,-11]],[[22475,11867],[4,-9]],[[22479,11858],[0,-3]],[[22479,11855],[-4,-4]],[[22475,11851],[0,-55]],[[22475,11796],[4,-3]],[[22479,11793],[0,-3]],[[22479,11790],[5,-3]],[[22484,11787],[-11,-16]],[[22473,11771],[-9,-3]],[[22464,11768],[-14,-68]],[[22450,11700],[4,0]],[[22454,11700],[11,-13]],[[22465,11687],[0,-10]],[[22465,11677],[0,-3]],[[22465,11674],[0,-4]],[[22465,11670],[-12,-29]],[[22453,11641],[-11,-3]],[[22442,11638],[0,-9]],[[22442,11629],[-5,-4]],[[22437,11625],[-48,-55]],[[22389,11570],[-6,-3]],[[22383,11567],[1,-38]],[[22384,11529],[5,-4]],[[22389,11525],[0,-29]],[[22389,11496],[-5,-6]],[[22384,11490],[-26,-39]],[[22358,11451],[1,-16]],[[22359,11435],[0,-36]],[[22359,11399],[-11,-7]],[[22348,11392],[-9,-12]],[[22339,11380],[-6,-4]],[[22333,11376],[-5,-55],[-30,-25]],[[22298,11296],[-15,-7]],[[22283,11289],[0,-3]],[[22283,11286],[-14,-3]],[[22269,11283],[-32,-13],[-42,39]],[[22195,11309],[-8,6]],[[22187,11315],[-54,-10]],[[22133,11305],[-6,-3]],[[22127,11302],[0,-3]],[[22127,11299],[-14,3]],[[22113,11302],[3,30]],[[22116,11332],[4,6]],[[22120,11338],[0,3]],[[22120,11341],[0,3]],[[22120,11344],[0,7]],[[22120,11351],[-4,16]],[[22116,11367],[-32,52],[-39,-7]],[[22045,11412],[-6,-6]],[[22039,11406],[-48,-19]],[[21991,11387],[-5,2]],[[21986,11389],[-22,17]],[[21964,11406],[-9,0]],[[21955,11406],[-44,58]],[[21911,11464],[-6,10]],[[21905,11474],[-5,12]],[[21900,11486],[-4,4]],[[21896,11490],[0,6]],[[21896,11496],[-5,3]],[[21891,11499],[-3,20]],[[21888,11519],[-13,3]],[[21875,11522],[-26,-3]],[[21849,11519],[-20,0]],[[21829,11519],[-61,10]],[[21768,11529],[-19,2]],[[21749,11531],[-14,17]],[[21735,11548],[-8,3]],[[21727,11551],[-48,19]],[[21679,11570],[-35,4]],[[21644,11574],[-17,23]],[[21627,11597],[-9,2]],[[21618,11599],[-17,17]],[[21601,11616],[-14,3]],[[21587,11619],[-8,6]],[[21579,11625],[-6,-3]],[[21573,11622],[-69,7]],[[21504,11629],[-6,-4]],[[21498,11625],[-16,-94]],[[21482,11531],[-5,-9]],[[21477,11522],[-10,-55]],[[21467,11467],[9,-3]],[[21476,11464],[0,-4]],[[21476,11460],[9,-2]],[[21485,11458],[22,-27]],[[21507,11431],[5,-3]],[[21512,11428],[39,-16],[-5,-42],[-61,26]],[[21485,11396],[-12,3]],[[21473,11399],[-5,0]],[[21468,11399],[-8,-7]],[[21460,11392],[0,-5]],[[21460,11387],[-4,-4]],[[21456,11383],[-46,9]],[[21410,11392],[-23,-3]],[[21387,11389],[-41,-48]],[[21346,11341],[-4,-3]],[[21342,11338],[-30,42]],[[21312,11380],[-37,3]],[[21275,11383],[-71,32],[19,43]],[[21223,11458],[3,2]],[[21226,11460],[5,14]],[[21231,11474],[0,16]],[[21231,11490],[-5,25]],[[21226,11515],[-6,4]],[[21220,11519],[-22,45]],[[21198,11564],[-5,3]],[[21193,11567],[-4,10]],[[21189,11577],[-3,3]],[[21186,11580],[37,13]],[[21223,11593],[3,4]],[[21226,11597],[5,-4]],[[21231,11593],[5,-3]],[[21236,11590],[9,9]],[[21245,11599],[5,3]],[[21250,11602],[21,-12]],[[21271,11590],[13,-4]],[[21284,11586],[17,4]],[[21301,11590],[11,3]],[[21312,11593],[28,36]],[[21340,11629],[16,3]],[[21356,11632],[29,29]],[[21385,11661],[10,3]],[[21395,11664],[17,-19]],[[21412,11645],[19,0]],[[21431,11645],[37,12]],[[21468,11657],[5,-6]],[[21473,11651],[75,52],[23,58],[-58,-3]],[[21513,11758],[-6,-3]],[[21507,11755],[0,16]],[[21507,11771],[-17,3]],[[21490,11774],[-69,42]],[[21421,11816],[-4,3]],[[21417,11819],[-18,78],[-50,38]],[[21349,11935],[-7,7]],[[21342,11942],[-33,58]],[[21309,12000],[-14,3]],[[21295,12003],[-69,23]],[[21226,12026],[-6,3]],[[21220,12029],[-31,20]],[[21189,12049],[-5,0]],[[21184,12049],[-16,-20]],[[21168,12029],[-7,-3]],[[21161,12026],[-38,-42]],[[21123,11984],[-8,-3]],[[21115,11981],[-31,-46]],[[21084,11935],[-4,-3]],[[21080,11932],[-5,-10]],[[21075,11922],[-5,-3]],[[21070,11919],[-15,-22]],[[21055,11897],[-5,-3]],[[21050,11894],[-56,-94],[0,-139],[-22,-71]],[[20972,11590],[-8,-7]],[[20964,11583],[-22,-25]],[[20942,11558],[-8,-4]],[[20934,11554],[-1,-6]],[[20933,11548],[-3,-3]],[[20930,11545],[-28,-30],[21,-55]],[[20923,11460],[5,-2]],[[20928,11458],[10,-14]],[[20938,11444],[9,-3]],[[20947,11441],[58,10],[45,-87]],[[21050,11364],[5,-4]],[[21055,11360],[29,-42]],[[21084,11318],[3,-3]],[[21087,11315],[-7,-29]],[[21080,11286],[-10,-3]],[[21070,11283],[3,-62]],[[21073,11221],[5,-6]],[[21078,11215],[-3,-26]],[[21075,11189],[-5,0]],[[21070,11189],[-40,-19],[20,-62]],[[21050,11108],[9,-3]],[[21059,11105],[10,13]],[[21069,11118],[6,-3]],[[21075,11115],[3,-7]],[[21078,11108],[6,-3]],[[21084,11105],[41,-42],[59,-13],[-9,-67],[34,-46]],[[21209,10937],[-5,0]],[[21204,10937],[-6,-9]],[[21198,10928],[-8,-4]],[[21190,10924],[3,-84]],[[21193,10840],[5,-6]],[[21198,10834],[61,-36],[22,36],[75,22]],[[21356,10856],[4,-6]],[[21360,10850],[25,-10]],[[21385,10840],[7,-3]],[[21392,10837],[25,-87]],[[21417,10750],[4,-7]],[[21421,10743],[5,-9]],[[21426,10734],[5,-4]],[[21431,10730],[1,-28]],[[21432,10702],[-6,-4]],[[21426,10698],[-3,-7]],[[21423,10691],[-6,-3]],[[21417,10688],[-14,-13]],[[21403,10675],[-11,-6]],[[21392,10669],[81,-42]],[[21473,10627],[-6,-3]],[[21467,10624],[-7,-7]],[[21460,10617],[-4,-3]],[[21456,10614],[-30,-29]],[[21426,10585],[-9,-3]],[[21417,10582],[-36,-19],[-11,-52]],[[21370,10511],[-16,3]],[[21354,10514],[-8,3]],[[21346,10517],[-11,-3]],[[21335,10514],[-34,42]],[[21301,10556],[-5,7]],[[21296,10563],[5,12]],[[21301,10575],[3,4]],[[21304,10579],[0,3]],[[21304,10582],[5,13]],[[21309,10595],[0,3]],[[21309,10598],[-5,3]],[[21304,10601],[-3,33]],[[21301,10634],[-5,12]],[[21296,10646],[-7,26]],[[21289,10672],[-8,3]],[[21281,10675],[-42,7]],[[21239,10682],[-8,-3]],[[21231,10679],[-5,-10]],[[21226,10669],[-11,-3]],[[21215,10666],[-17,-23]],[[21198,10643],[-8,-3]],[[21190,10640],[-20,-10]],[[21170,10630],[-16,-3]],[[21154,10627],[-1,7]],[[21153,10634],[-5,2]],[[21148,10636],[5,17]],[[21153,10653],[-19,10]],[[21134,10663],[-11,-10]],[[21123,10653],[-9,-3]],[[21114,10650],[-27,-14]],[[21087,10636],[-9,-2]],[[21078,10634],[-23,-46]],[[21055,10588],[-5,-3]],[[21050,10585],[-31,-123],[-60,23]],[[20959,10485],[-3,0]],[[20956,10485],[2,-68],[-25,-23]],[[20933,10394],[-14,-3]],[[20919,10391],[-33,-58],[-33,-19]],[[20853,10314],[-11,-7]],[[20842,10307],[3,-23]],[[20845,10284],[11,3]],[[20856,10287],[27,-12]],[[20883,10275],[-6,-4]],[[20877,10271],[-11,0]],[[20866,10271],[-13,-3]],[[20853,10268],[-31,-9]],[[20822,10259],[-5,-4]],[[20817,10255],[0,-51]],[[20817,10204],[5,-4]],[[20822,10200],[14,-13]],[[20836,10187],[9,0]],[[20845,10187],[7,-22]],[[20852,10165],[-5,-3]],[[20847,10162],[-50,-26],[-19,32]],[[20778,10168],[-12,3]],[[20766,10171],[0,4]],[[20766,10175],[-14,3]],[[20752,10178],[-35,-26]],[[20717,10152],[-6,-4]],[[20711,10148],[-6,0]],[[20705,10148],[-8,4]],[[20697,10152],[-50,19]],[[20647,10171],[-3,-3]],[[20644,10168],[-30,-48],[-53,6],[-51,-35]],[[20510,10091],[-11,2]],[[20499,10093],[-9,-35]],[[20490,10058],[-10,3]],[[20480,10061],[-12,-9]],[[20468,10052],[-5,-7]],[[20463,10045],[-78,20]],[[20385,10065],[-12,-7]],[[20373,10058],[-53,-19]],[[20320,10039],[-5,3]],[[20315,10042],[-2,-6]],[[20313,10036],[-9,-3]],[[20304,10033],[-13,-20]],[[20291,10013],[-6,-3]],[[20285,10010],[-3,-10]],[[20282,10000],[-5,-3]],[[20277,9997],[25,-58]],[[20302,9939],[18,0]],[[20320,9939],[12,-58],[-41,-23]],[[20291,9858],[-4,-3]],[[20287,9855],[-44,-45]],[[20243,9810],[-6,-7]],[[20237,9803],[-5,-39]],[[20232,9764],[-15,-3]],[[20217,9761],[-10,-61]],[[20207,9700],[-11,-4]],[[20196,9696],[-28,10]],[[20168,9706],[0,-3]],[[20168,9703],[28,-39]],[[20196,9664],[5,-7]],[[20201,9657],[0,-12]],[[20201,9645],[-5,-13]],[[20196,9632],[-18,-39]],[[20178,9593],[-5,-7]],[[20173,9586],[-5,-12]],[[20168,9574],[-5,-7]],[[20163,9567],[-46,-97]],[[20117,9470],[-5,-3]],[[20112,9467],[-25,-48]],[[20087,9419],[-5,-4]],[[20082,9415],[-42,-48],[-34,-91]],[[20006,9276],[-6,-3]],[[20000,9273],[-3,-6]],[[19997,9267],[-7,-3]],[[19990,9264],[-25,-82]],[[19965,9182],[2,0]],[[19967,9182],[-13,-35]],[[19954,9147],[-4,-6]],[[19950,9141],[-13,-30]],[[19937,9111],[-17,-3]],[[19920,9108],[-25,-22]],[[19895,9086],[-6,-4]],[[19889,9082],[-5,-16]],[[19884,9066],[-5,-3]],[[19879,9063],[-14,-42]],[[19865,9021],[-9,-3]],[[19856,9018],[0,-3]],[[19856,9015],[-11,-4]],[[19845,9011],[-50,-16],[-22,-35]],[[19773,8960],[-7,3]],[[19766,8963],[-47,-42],[-21,19]],[[19698,8940],[0,4]],[[19698,8944],[-15,19]],[[19683,8963],[-19,3]],[[19664,8966],[-9,42]],[[19655,9008],[0,3]],[[19655,9011],[-102,49]],[[19553,9060],[-11,-6]],[[19542,9054],[-15,-59]],[[19527,8995],[-5,-3]],[[19522,8992],[-3,-9]],[[19519,8983],[-6,-4]],[[19513,8979],[-47,-68]],[[19466,8911],[-8,-3]],[[19458,8908],[0,-3]],[[19458,8905],[-11,-4]],[[19447,8901],[-11,-3]],[[19436,8898],[-4,-9]],[[19432,8889],[-16,-97],[-45,-3],[-58,-62]],[[19313,8727],[-3,-3]],[[19310,8724],[0,-7]],[[19310,8717],[-8,0]],[[19302,8717],[-1,-6]],[[19301,8711],[-4,0]],[[19297,8711],[-17,-29]],[[19280,8682],[-15,3]],[[19265,8685],[-19,0]],[[19246,8685],[-19,-3]],[[19227,8682],[-22,-3]],[[19205,8679],[5,6]],[[19210,8685],[0,65]],[[19210,8750],[-5,3]],[[19205,8753],[-31,13]],[[19174,8766],[-9,3]],[[19165,8769],[-45,55]],[[19120,8824],[-5,13]],[[19115,8837],[-20,-39]],[[19095,8798],[0,-3]],[[19095,8795],[-2,-22]],[[19093,8773],[11,-4]],[[19104,8769],[-28,-45],[-38,-17]],[[19038,8707],[2,-9]],[[19040,8698],[-31,26]],[[19009,8724],[-5,3]],[[19004,8727],[-16,19]],[[18988,8746],[-6,-3]],[[18982,8743],[0,-3]],[[18982,8740],[0,-3]],[[18982,8737],[-34,-46]],[[18948,8691],[-5,-3]],[[18943,8688],[-48,-54]],[[18895,8634],[-3,-4]],[[18892,8630],[-53,10],[7,90],[-12,29]],[[18834,8759],[-11,3]],[[18823,8762],[-6,16]],[[18817,8778],[-10,4]],[[18807,8782],[0,3]],[[18807,8785],[-6,4]],[[18801,8789],[-19,16]],[[18782,8805],[-9,-4]],[[18773,8801],[-51,91],[46,26]],[[18768,8918],[24,-3]],[[18792,8915],[4,6]],[[18796,8921],[13,3]],[[18809,8924],[0,4]],[[18809,8928],[5,16]],[[18814,8944],[18,12]],[[18832,8956],[-11,4]],[[18821,8960],[-15,23]],[[18806,8983],[-5,3]],[[18801,8986],[-19,19]],[[18782,9005],[-4,3]],[[18778,9008],[-31,49]],[[18747,9057],[-8,3]],[[18739,9060],[-21,6]],[[18718,9066],[-7,7]],[[18711,9073],[-10,22]],[[18701,9095],[-15,4]],[[18686,9099],[-3,64],[56,36]],[[18739,9199],[11,3]],[[18750,9202],[32,26]],[[18782,9228],[-4,3]],[[18778,9231],[0,6]],[[18778,9237],[4,7]],[[18782,9244],[19,0]],[[18801,9244],[5,-7]],[[18806,9237],[56,13]],[[18862,9250],[5,3]],[[18867,9253],[25,-16]],[[18892,9237],[3,-3]],[[18895,9234],[25,-35]],[[18920,9199],[8,-3]],[[18928,9196],[6,13]],[[18934,9209],[9,3]],[[18943,9212],[0,-3]],[[18943,9209],[5,-4]],[[18948,9205],[29,-6]],[[18977,9199],[13,3]],[[18990,9202],[39,-16]],[[19029,9186],[11,-4]],[[19040,9182],[8,0]],[[19048,9182],[8,4]],[[19056,9186],[54,0]],[[19110,9186],[16,-4]],[[19126,9182],[64,-28],[120,-4]],[[19310,9150],[5,4]],[[19315,9154],[21,12]],[[19336,9166],[19,0]],[[19355,9166],[106,23]],[[19461,9189],[5,-7]],[[19466,9182],[56,0]],[[19522,9182],[0,4]],[[19522,9186],[-15,64],[67,39]],[[19574,9289],[7,3]],[[19581,9292],[7,13]],[[19588,9305],[6,3]],[[19594,9308],[40,46],[21,87]],[[19655,9441],[4,3]],[[19659,9444],[5,10]],[[19664,9454],[5,4]],[[19669,9458],[14,12]],[[19683,9470],[9,4]],[[19692,9474],[6,9]],[[19698,9483],[5,3]],[[19703,9486],[5,13]],[[19708,9499],[5,3]],[[19713,9502],[21,23]],[[19734,9525],[7,4]],[[19741,9529],[4,9]],[[19745,9538],[5,7]],[[19750,9545],[34,51],[-11,68]],[[19773,9664],[-4,4]],[[19769,9668],[-16,32]],[[19753,9700],[-8,3]],[[19745,9703],[-32,55]],[[19713,9758],[-5,3]],[[19708,9761],[-16,29]],[[19692,9790],[-8,6]],[[19684,9796],[0,7]],[[19684,9803],[0,7]],[[19684,9810],[-60,6]],[[19624,9816],[-22,0]],[[19602,9816],[-10,0]],[[19592,9816],[-4,-10]],[[19588,9806],[9,-13]],[[19597,9793],[-9,-3]],[[19588,9790],[-10,-49]],[[19578,9741],[0,-2]],[[19578,9739],[-31,-133]],[[19547,9606],[-5,-4]],[[19542,9602],[-15,-32]],[[19527,9570],[-5,-3]],[[19522,9567],[-56,-6]],[[19466,9561],[-8,3]],[[19458,9564],[-1,10]],[[19457,9574],[-5,3]],[[19452,9577],[6,32]],[[19458,9609],[10,-3]],[[19468,9606],[31,-10],[18,104]],[[19517,9700],[-4,3]],[[19513,9703],[-2,13]],[[19511,9716],[20,6]],[[19531,9722],[0,58]],[[19531,9780],[-20,4]],[[19511,9784],[-43,-36]],[[19468,9748],[-11,3]],[[19457,9751],[-21,26]],[[19436,9777],[0,10]],[[19436,9787],[25,19]],[[19461,9806],[5,-3]],[[19466,9803],[9,-3]],[[19475,9800],[3,3]],[[19478,9803],[24,-3],[20,71]],[[19522,9871],[5,10]],[[19527,9881],[15,32]],[[19542,9913],[5,6]],[[19547,9919],[47,75]],[[19594,9994],[-6,-4]],[[19588,9990],[-36,-16],[-81,10],[-44,-23],[-27,23],[32,97],[-49,35],[-31,62]],[[19352,10178],[-6,6]],[[19346,10184],[0,3]],[[19346,10187],[-5,7]],[[19341,10194],[-19,-32]],[[19322,10162],[-4,-3]],[[19318,10159],[-2,-16]],[[19316,10143],[-15,-7]],[[19301,10136],[9,-36]],[[19310,10100],[5,-7]],[[19315,10093],[7,-57]],[[19322,10036],[-4,-3]],[[19318,10033],[0,-39]],[[19318,9994],[4,-4]],[[19322,9990],[3,-19]],[[19325,9971],[-9,-3]],[[19316,9968],[-20,3]],[[19296,9971],[-6,-3]],[[19290,9968],[-49,-13]],[[19241,9955],[-6,-3]],[[19235,9952],[0,-3]],[[19235,9949],[-9,-10]],[[19226,9939],[-16,-26],[-56,9],[-25,36],[-39,-13]],[[19090,9945],[-5,-3]],[[19085,9942],[-25,-7]],[[19060,9935],[-4,10]],[[19056,9945],[-22,26]],[[19034,9971],[0,6]],[[19034,9977],[-49,4]],[[18985,9981],[-6,-4]],[[18979,9977],[-2,-19]],[[18977,9958],[-7,-3]],[[18970,9955],[-16,-16]],[[18954,9939],[-20,-4]],[[18934,9935],[-10,10]],[[18924,9945],[-4,4]],[[18920,9949],[-21,38],[-70,-10]],[[18829,9977],[-23,-3]],[[18806,9974],[0,3]],[[18806,9977],[-5,4]],[[18801,9981],[-29,45],[-29,-26]],[[18743,10000],[-4,3]],[[18739,10003],[-21,-6]],[[18718,9997],[-7,3]],[[18711,10000],[0,36]],[[18711,10036],[4,3]],[[18715,10039],[0,35]],[[18715,10074],[-7,7]],[[18708,10081],[28,42]],[[18736,10123],[11,-3]],[[18747,10120],[20,-10]],[[18767,10110],[15,3]],[[18782,10113],[0,7]],[[18782,10120],[5,0]],[[18787,10120],[11,67]],[[18798,10187],[16,7]],[[18814,10194],[9,-16]],[[18823,10178],[16,-3]],[[18839,10175],[-11,-82]],[[18828,10093],[6,-12]],[[18834,10081],[58,42],[-5,29]],[[18887,10152],[-3,1]],[[18884,10153],[-16,22]],[[18868,10175],[-9,6]],[[18859,10181],[-2,32]],[[18857,10213],[10,3]],[[18867,10216],[51,36]],[[18918,10252],[2,-10]],[[18920,10242],[23,-12]],[[18943,10230],[5,6]],[[18948,10236],[15,6]],[[18963,10242],[16,4]],[[18979,10246],[3,16]],[[18982,10262],[3,6]],[[18985,10268],[17,39]],[[19002,10307],[11,3]],[[19013,10310],[16,13]],[[19029,10323],[19,-3]],[[19048,10320],[0,3]],[[19048,10323],[6,3]],[[19054,10326],[0,4]],[[19054,10330],[6,-4]],[[19060,10326],[25,-61]],[[19085,10265],[14,3]],[[19099,10268],[16,62]],[[19115,10330],[5,3]],[[19120,10333],[10,32],[75,-19]],[[19205,10346],[5,-4]],[[19210,10342],[14,-6]],[[19224,10336],[11,3]],[[19235,10339],[2,0]],[[19237,10339],[12,3]],[[19249,10342],[37,33]],[[19286,10375],[10,3]],[[19296,10378],[14,-29]],[[19310,10349],[12,-3]],[[19322,10346],[16,-23]],[[19338,10323],[17,3]],[[19355,10326],[-3,75]],[[19352,10401],[0,6]],[[19352,10407],[0,13]],[[19352,10420],[0,4]],[[19352,10424],[14,45],[47,45],[70,13],[20,22]],[[19503,10549],[30,7]],[[19533,10556],[0,3]],[[19533,10559],[20,4]],[[19553,10563],[10,5]],[[19563,10568],[29,4]],[[19592,10572],[58,23]],[[19650,10595],[23,6]],[[19673,10601],[52,3],[12,-39]],[[19737,10565],[4,3]],[[19741,10568],[0,4]],[[19741,10572],[12,3]],[[19753,10575],[13,10]],[[19766,10585],[25,3]],[[19791,10588],[-38,-61]],[[19753,10527],[-9,-3]],[[19744,10524],[-3,-7]],[[19741,10517],[-13,0]],[[19728,10517],[-14,-9]],[[19714,10508],[-6,-4]],[[19708,10504],[-5,-10]],[[19703,10494],[0,-9]],[[19703,10485],[5,-10]],[[19708,10475],[5,-6]],[[19713,10469],[20,-91],[36,-9]],[[19769,10369],[6,3]],[[19775,10372],[61,-23],[14,45]],[[19850,10394],[5,3]],[[19855,10397],[4,20]],[[19859,10417],[6,3]],[[19865,10420],[10,10]],[[19875,10430],[9,10]],[[19884,10440],[41,51]],[[19925,10491],[11,6]],[[19936,10497],[-14,101],[75,-13]],[[19997,10585],[28,-3]],[[20025,10582],[32,16]],[[20057,10598],[-4,6]],[[20053,10604],[-56,75]],[[19997,10679],[-5,3]],[[19992,10682],[-100,23]],[[19892,10705],[-23,0]],[[19869,10705],[-5,0]],[[19864,10705],[-5,2]],[[19859,10707],[-93,55],[-61,16]],[[19705,10778],[-10,4]],[[19695,10782],[3,74]],[[19698,10856],[15,0]],[[19713,10856],[32,36]],[[19745,10892],[0,3]],[[19745,10895],[2,22]],[[19747,10917],[3,17]],[[19750,10934],[19,10]],[[19769,10944],[4,6]],[[19773,10950],[0,3]],[[19773,10953],[-4,26]],[[19769,10979],[-14,23],[81,71],[23,-16]],[[19859,11057],[5,-3]],[[19864,11054],[12,-20]],[[19876,11034],[8,-7]],[[19884,11027],[42,4]],[[19926,11031],[5,3]],[[19931,11034],[0,9]],[[19931,11043],[5,7]],[[19936,11050],[-5,26]],[[19931,11076],[-5,3]],[[19926,11079],[-6,68]],[[19920,11147],[11,-20]],[[19931,11127],[19,-19]],[[19950,11108],[4,-9]],[[19954,11099],[38,-42]],[[19992,11057],[5,-10]],[[19997,11047],[0,-10]],[[19997,11037],[-5,-6]],[[19992,11031],[0,-36]],[[19992,10995],[5,-3]],[[19997,10992],[49,-58],[19,42],[-8,64]],[[20057,11040],[0,7]],[[20057,11047],[0,3]],[[20057,11050],[0,23]],[[20057,11073],[0,3]],[[20057,11076],[-6,3]],[[20051,11079],[-44,48]],[[20007,11127],[-7,4]],[[20000,11131],[1,23]],[[20001,11154],[5,9]],[[20006,11163],[14,107],[33,29]],[[20053,11299],[0,16]],[[20053,11315],[1,39]],[[20054,11354],[13,3]],[[20067,11357],[-10,58]],[[20057,11415],[-6,7]],[[20051,11422],[-50,42]],[[20001,11464],[-9,3]],[[19992,11467],[-10,13]],[[19982,11480],[-15,3]],[[19967,11483],[-8,0]],[[19959,11483],[-12,-3]],[[19947,11480],[-7,0]],[[19940,11480],[-9,3]],[[19931,11483],[-42,0]],[[19889,11483],[-17,-3]],[[19872,11480],[-13,-3]],[[19859,11477],[-75,-46],[-11,-32]],[[19773,11399],[-4,-3]],[[19769,11396],[-16,-16]],[[19753,11380],[-16,-7]],[[19737,11373],[-18,19]],[[19719,11392],[-24,4]],[[19695,11396],[-26,-7]],[[19669,11389],[-5,-13]],[[19664,11376],[0,-3]],[[19664,11373],[16,-3]],[[19680,11370],[-11,-22]],[[19669,11348],[-10,-4]],[[19659,11344],[0,-3]],[[19659,11341],[-6,-3]],[[19653,11338],[-20,3]],[[19633,11341],[-6,-3]],[[19627,11338],[28,-55]],[[19655,11283],[6,-4]],[[19661,11279],[2,-67],[-29,-62]],[[19634,11150],[-1,-3]],[[19633,11147],[0,-3]],[[19633,11144],[-9,3]],[[19624,11147],[-32,-3]],[[19592,11144],[-7,6]],[[19585,11150],[-22,-9]],[[19563,11141],[-7,0]],[[19556,11141],[-28,-33]],[[19528,11108],[-9,-3]],[[19519,11105],[-2,-16]],[[19517,11089],[-6,-3]],[[19511,11086],[2,-10]],[[19513,11076],[18,3]],[[19531,11079],[-4,-36]],[[19527,11043],[-8,-6]],[[19519,11037],[0,-6]],[[19519,11031],[-6,-4]],[[19513,11027],[-41,4]],[[19472,11031],[-14,3]],[[19458,11034],[-67,-29],[-45,87]],[[19346,11092],[-5,7]],[[19341,11099],[-5,32]],[[19336,11131],[5,16]],[[19341,11147],[-3,35]],[[19338,11182],[8,4]],[[19346,11186],[-24,-9]],[[19322,11177],[-4,-27]],[[19318,11150],[-3,-12]],[[19315,11138],[-5,-4]],[[19310,11134],[-28,-35]],[[19282,11099],[-11,-4]],[[19271,11095],[-36,-41]],[[19235,11054],[-23,3]],[[19212,11057],[0,-3]],[[19212,11054],[-7,3]],[[19205,11057],[-34,-46]],[[19171,11011],[-11,4]],[[19160,11015],[-59,-49]],[[19101,10966],[-6,3]],[[19095,10969],[-5,19]],[[19090,10988],[0,7]],[[19090,10995],[5,13]],[[19095,11008],[-2,13]],[[19093,11021],[0,3]],[[19093,11024],[-9,3]],[[19084,11027],[-36,0]],[[19048,11027],[0,-3]],[[19048,11024],[-39,-32]],[[19009,10992],[-5,-9]],[[19004,10983],[-14,-4]],[[18990,10979],[-20,-3]],[[18970,10976],[-41,-13]],[[18929,10963],[-17,6]],[[18912,10969],[-33,-22]],[[18879,10947],[3,-10]],[[18882,10937],[-14,3]],[[18868,10940],[-15,4]],[[18853,10944],[-25,32]],[[18828,10976],[-2,3]],[[18826,10979],[2,4]],[[18828,10983],[-5,12]],[[18823,10995],[-16,0]],[[18807,10995],[-6,-3]],[[18801,10992],[-17,-58]],[[18784,10934],[-11,-3]],[[18773,10931],[-72,45]],[[18701,10976],[-25,-4]],[[18676,10972],[-3,-6]],[[18673,10966],[-6,-3]],[[18667,10963],[-59,13],[-27,-55]],[[18581,10921],[0,-10]],[[18581,10911],[0,-10]],[[18581,10901],[-5,-3]],[[18576,10898],[-31,-6]],[[18545,10892],[5,-3]],[[18550,10889],[0,-20]],[[18550,10869],[-5,-3]],[[18545,10866],[-23,16]],[[18522,10882],[-11,-9]],[[18511,10873],[3,-10]],[[18514,10863],[0,-10]],[[18514,10853],[-20,-19]],[[18494,10834],[3,-4]],[[18497,10830],[0,-6]],[[18497,10824],[-3,-16]],[[18494,10808],[-25,-7]],[[18469,10801],[-5,-3]],[[18464,10798],[-25,-29]],[[18439,10769],[-11,4]],[[18428,10773],[-22,2]],[[18406,10775],[-6,-2]],[[18400,10773],[-42,0]],[[18358,10773],[-3,5]],[[18355,10778],[31,33]],[[18386,10811],[-3,6]],[[18383,10817],[-33,36],[5,55]],[[18355,10908],[-6,7]],[[18349,10915],[-21,-26]],[[18328,10889],[-7,-4]],[[18321,10885],[-25,26]],[[18296,10911],[-16,10]],[[18280,10921],[-13,7]],[[18267,10928],[-12,-4]],[[18255,10924],[0,4]],[[18255,10928],[-25,-4]],[[18230,10924],[-42,4]],[[18188,10928],[-14,3]],[[18174,10931],[-42,-14]],[[18132,10917],[-5,-2]],[[18127,10915],[-5,-7]],[[18122,10908],[-4,-7]],[[18118,10901],[0,-3]],[[18118,10898],[4,-6]],[[18122,10892],[5,-19]],[[18127,10873],[9,-4]],[[18136,10869],[13,-29]],[[18149,10840],[12,-6]],[[18161,10834],[19,-4]],[[18180,10830],[-1,-3]],[[18179,10827],[-7,-71],[-54,17]],[[18118,10773],[4,5]],[[18122,10778],[0,4]],[[18122,10782],[-4,7]],[[18118,10789],[-16,22]],[[18102,10811],[-6,3]],[[18096,10814],[-13,23]],[[18083,10837],[-4,7]],[[18079,10844],[-2,35]],[[18077,10879],[6,-3]],[[18083,10876],[14,3]],[[18097,10879],[7,3]],[[18104,10882],[-2,46]],[[18102,10928],[-6,3]],[[18096,10931],[-10,9]],[[18086,10940],[-12,4]],[[18074,10944],[-6,6]],[[18068,10950],[-17,3]],[[18051,10953],[0,-3]],[[18051,10950],[-14,0]],[[18037,10950],[-16,3]],[[18021,10953],[-16,-3]],[[18005,10950],[-25,-19]],[[17980,10931],[2,-7]],[[17982,10924],[-2,-13]],[[17980,10911],[-7,-3]],[[17973,10908],[-16,-42]],[[17957,10866],[3,0]],[[17960,10866],[-30,-81]],[[17930,10785],[-9,-3]],[[17921,10782],[-6,19]],[[17915,10801],[-14,7]],[[17901,10808],[-30,-26]],[[17871,10782],[0,-13]],[[17871,10769],[-34,13]],[[17837,10782],[-5,10]],[[17832,10792],[-58,45],[-39,-10]],[[17735,10827],[-6,-3]],[[17729,10824],[-55,-13]],[[17674,10811],[0,6]],[[17674,10817],[-1,20]],[[17673,10837],[-5,3]],[[17668,10840],[6,71]],[[17674,10911],[-4,4]],[[17670,10915],[-16,19]],[[17654,10934],[-6,3]],[[17648,10937],[-13,10]],[[17635,10947],[-7,3]],[[17628,10950],[0,3]],[[17628,10953],[-10,3]],[[17618,10956],[-3,7]],[[17615,10963],[-6,3]],[[17609,10966],[-34,22]],[[17575,10988],[-11,0]],[[17564,10988],[-11,14]],[[17553,11002],[-36,3]],[[17517,11005],[-13,6]],[[17504,11011],[-7,-3]],[[17497,11008],[-49,3]],[[17448,11011],[-4,7]],[[17444,11018],[-16,9]],[[17428,11027],[-16,-3]],[[17412,11024],[-20,-48]],[[17392,10976],[-6,-4]],[[17386,10972],[-66,-28]],[[17320,10944],[-4,6]],[[17316,10950],[0,3]],[[17316,10953],[4,3]],[[17320,10956],[0,16]],[[17320,10972],[-4,4]],[[17316,10976],[-39,-23]],[[17277,10953],[-7,-3]],[[17270,10950],[-17,-6]],[[17253,10944],[-3,-4]],[[17250,10940],[-34,-12]],[[17216,10928],[-5,28]],[[17211,10956],[-9,10]],[[17202,10966],[-14,-2]],[[17188,10964],[-24,8]],[[17164,10972],[-5,4]],[[17159,10976],[-74,23]],[[17085,10999],[-16,3]],[[17069,11002],[-25,9]],[[17044,11011],[-9,4]],[[17035,11015],[-27,16]],[[17008,11031],[-12,3]],[[16996,11034],[-5,-7]],[[16991,11027],[-8,-3]],[[16983,11024],[-20,7]],[[16963,11031],[-5,-4]],[[16958,11027],[-25,0]],[[16933,11027],[-8,4]],[[16925,11031],[-67,-7]],[[16858,11024],[-4,-3]],[[16854,11021],[-66,-22]],[[16788,10999],[-5,-4]],[[16783,10995],[-40,-23]],[[16743,10972],[-11,-3]],[[16732,10969],[-14,-19]],[[16718,10950],[-9,-3]],[[16709,10947],[0,-3]],[[16709,10944],[-7,-7]],[[16702,10937],[-18,-20]],[[16684,10917],[-5,-2]],[[16679,10915],[-2,-7]],[[16677,10908],[-4,-3]],[[16673,10905],[-5,-10]],[[16668,10895],[-5,-3]],[[16663,10892],[-6,-13]],[[16657,10879],[-9,-3]],[[16648,10876],[-2,-7]],[[16646,10869],[-5,-3]],[[16641,10866],[-15,-32]],[[16626,10834],[-5,-7]],[[16621,10827],[-19,-38]],[[16602,10789],[-4,-11]],[[16598,10778],[-32,-103]],[[16566,10675],[-9,-3]],[[16557,10672],[-75,-48]],[[16482,10624],[-4,-7]],[[16478,10617],[-22,-38],[34,-46]],[[16490,10533],[-17,-3]],[[16473,10530],[-8,-26]],[[16465,10504],[22,0]],[[16487,10504],[39,-10]],[[16526,10494],[5,-3]],[[16531,10491],[0,-51]],[[16531,10440],[0,-26]],[[16531,10414],[0,-4]],[[16531,10410],[0,-3]],[[16531,10407],[-19,-19]],[[16512,10388],[-5,-3]],[[16507,10385],[-4,-39]],[[16503,10346],[-4,-4]],[[16499,10342],[-12,-39]],[[16487,10303],[-13,4]],[[16474,10307],[-17,-9]],[[16457,10298],[-12,3]],[[16445,10301],[-24,19]],[[16421,10320],[-11,6]],[[16410,10326],[-4,0]],[[16406,10326],[-16,-3]],[[16390,10323],[-11,-25]],[[16379,10298],[-4,-4]],[[16375,10294],[17,-39]],[[16392,10255],[8,-3]],[[16400,10252],[0,-6]],[[16400,10246],[-5,-7]],[[16395,10239],[-16,-23]],[[16379,10216],[-4,-6]],[[16375,10210],[-11,-94],[-24,-28],[6,-107]],[[16346,9981],[-1,0]],[[16345,9981],[-5,-29]],[[16340,9952],[-4,-10]],[[16336,9942],[0,-7]],[[16336,9935],[15,-3]],[[16351,9932],[5,-58]],[[16356,9874],[0,-12]],[[16356,9862],[-16,-36]],[[16340,9826],[-4,-7]],[[16336,9819],[0,-3]],[[16336,9816],[14,-4]],[[16350,9812],[25,-12]],[[16375,9800],[14,-4]],[[16389,9796],[-78,7]],[[16311,9803],[-7,3]],[[16304,9806],[0,4]],[[16304,9810],[-4,6]],[[16300,9816],[-2,7]],[[16298,9823],[-14,6]],[[16284,9829],[-51,26]],[[16233,9855],[-10,3]],[[16223,9858],[0,4]],[[16223,9862],[-9,-7]],[[16214,9855],[-47,9]],[[16167,9864],[-5,3]],[[16162,9867],[-7,14]],[[16155,9881],[-16,-3]],[[16139,9878],[3,19]],[[16142,9897],[3,6]],[[16145,9903],[-31,16]],[[16114,9919],[-5,3]],[[16109,9922],[-25,33]],[[16084,9955],[-4,6]],[[16080,9961],[0,4]],[[16080,9965],[-2,6]],[[16078,9971],[-2,6]],[[16076,9977],[-4,4]],[[16072,9981],[0,3]],[[16072,9984],[-5,3]],[[16067,9987],[0,3]],[[16067,9990],[-25,4]],[[16042,9994],[-9,-17]],[[16033,9977],[-5,-6]],[[16028,9971],[-75,-3]],[[15953,9968],[-17,3]],[[15936,9971],[-20,10]],[[15916,9981],[-10,-4]],[[15906,9977],[-15,10]],[[15891,9987],[-10,3]],[[15881,9990],[0,4]],[[15881,9994],[-6,6]],[[15875,10000],[2,22]],[[15877,10022],[4,4]],[[15881,10026],[-10,23]],[[15871,10049],[-8,0]],[[15863,10049],[-2,3]],[[15861,10052],[-3,3]],[[15858,10055],[-11,3]],[[15847,10058],[-6,0]],[[15841,10058],[0,-3]],[[15841,10055],[-30,3]],[[15811,10058],[-61,-6]],[[15750,10052],[-9,-3]],[[15741,10049],[-2,-10]],[[15739,10039],[-4,-10]],[[15735,10029],[-30,39]],[[15705,10068],[-11,4]],[[15694,10072],[-59,-23]],[[15635,10049],[-6,-7]],[[15629,10042],[0,-3]],[[15629,10039],[-5,-3]],[[15624,10036],[-19,3]],[[15605,10039],[-4,6]],[[15601,10045],[-5,10]],[[15596,10055],[-6,3]],[[15590,10058],[-7,7]],[[15583,10065],[-14,3]],[[15569,10068],[2,13]],[[15571,10081],[-2,10]],[[15569,10091],[-23,9]],[[15546,10100],[-6,-3]],[[15540,10097],[-10,-4]],[[15530,10093],[3,-2]],[[15533,10091],[-3,-17]],[[15530,10074],[-11,-6]],[[15519,10068],[-4,-10]],[[15515,10058],[-5,-6]],[[15510,10052],[-45,-55]],[[15465,9997],[-21,-3]],[[15444,9994],[-15,19]],[[15429,10013],[5,13]],[[15434,10026],[0,19]],[[15434,10045],[-7,4]],[[15427,10049],[-4,6]],[[15423,10055],[-10,3]],[[15413,10058],[-26,7]],[[15387,10065],[-19,3]],[[15368,10068],[-22,-16]],[[15346,10052],[-8,-3]],[[15338,10049],[-17,-33]],[[15321,10016],[-4,-3]],[[15317,10013],[-24,-26]],[[15293,9987],[-6,-6]],[[15287,9981],[-49,-4]],[[15238,9977],[0,10]],[[15238,9987],[-31,-13]],[[15207,9974],[-4,-9]],[[15203,9965],[1,-7]],[[15204,9958],[-1,-13]],[[15203,9945],[-16,0]],[[15187,9945],[-5,4]],[[15182,9949],[-34,45]],[[15148,9994],[-6,6]],[[15142,10000],[-105,3]],[[15037,10003],[-6,-3]],[[15031,10000],[-2,-6]],[[15029,9994],[-9,-4]],[[15020,9990],[-14,-13]],[[15006,9977],[-6,-3]],[[15000,9974],[-5,-13]],[[14995,9961],[-6,-3]],[[14989,9958],[-14,-16]],[[14975,9942],[-6,-3]],[[14969,9939],[-15,-33]],[[14954,9906],[-4,-3]],[[14950,9903],[-5,-13]],[[14945,9890],[-6,-7]],[[14939,9883],[-39,-41]],[[14900,9842],[-14,-3]],[[14886,9839],[0,-4]],[[14886,9835],[-14,-6]],[[14872,9829],[-13,-9]],[[14859,9820],[5,-8]],[[14864,9812],[2,-6]],[[14866,9806],[4,-3]],[[14870,9803],[0,-3]],[[14870,9800],[-6,-7]],[[14864,9793],[-44,0],[-17,-52]],[[14803,9741],[-5,-2]],[[14798,9739],[-54,9],[-42,-23]],[[14702,9725],[-21,-3]],[[14681,9722],[2,19]],[[14683,9741],[6,7]],[[14689,9748],[0,7]],[[14689,9755],[-4,6]],[[14685,9761],[0,6]],[[14685,9767],[-7,10]],[[14678,9777],[0,3]],[[14678,9780],[-1,4]],[[14677,9784],[8,22]],[[14685,9806],[0,6]],[[14685,9812],[-25,17]],[[14660,9829],[-38,-3]],[[14622,9826],[-51,0]],[[14571,9826],[-19,-3]],[[14552,9823],[-44,22],[-62,-10],[-30,27]],[[14416,9862],[-9,2]],[[14407,9864],[0,-2]],[[14407,9862],[-11,-4]],[[14396,9858],[-5,0]],[[14391,9858],[-11,4]],[[14380,9862],[0,5]],[[14380,9867],[5,4]],[[14385,9871],[0,12]],[[14385,9883],[-8,0]],[[14377,9883],[-1,4]],[[14376,9887],[-4,3]],[[14372,9890],[-40,26]],[[14332,9916],[-5,3]],[[14327,9919],[-3,10]],[[14324,9929],[-5,3]],[[14319,9932],[-20,3]],[[14299,9935],[-20,-6]],[[14279,9929],[-17,-19]],[[14262,9910],[-4,-4]],[[14258,9906],[-17,-39]],[[14241,9867],[-4,-3]],[[14237,9864],[-44,-9]],[[14193,9855],[-9,-4]],[[14184,9851],[-36,104]],[[14148,9955],[3,16]],[[14151,9971],[0,65]],[[14151,10036],[-3,3]],[[14148,10039],[-46,6]],[[14102,10045],[-9,4]],[[14093,10049],[-45,19]],[[14048,10068],[-8,-16]],[[14040,10052],[0,3]],[[14040,10055],[-6,6]],[[14034,10061],[-36,43]],[[13998,10104],[-14,-4]],[[13984,10100],[0,4]],[[13984,10104],[-11,-4]],[[13973,10100],[-16,-3]],[[13957,10097],[-3,3]],[[13954,10100],[-47,-9]],[[13907,10091],[5,-3]],[[13912,10088],[14,-30]],[[13926,10058],[-5,-3]],[[13921,10055],[0,-3]],[[13921,10052],[-20,3]],[[13901,10055],[-58,36]],[[13843,10091],[-15,2]],[[13828,10093],[-13,30]],[[13815,10123],[0,3]],[[13815,10126],[72,3],[11,75],[-20,58]],[[13878,10262],[-10,3]],[[13868,10265],[-25,16]],[[13843,10281],[-4,3]],[[13839,10284],[-3,17]],[[13836,10301],[-8,6]],[[13828,10307],[-13,13]],[[13815,10320],[-8,3]],[[13807,10323],[8,35]],[[13815,10358],[0,7]],[[13815,10365],[0,7]],[[13815,10372],[-4,3]],[[13811,10375],[0,3]],[[13811,10378],[4,10]],[[13815,10388],[3,6]],[[13818,10394],[19,3]],[[13837,10397],[0,-3]],[[13837,10394],[6,-6]],[[13843,10388],[0,-10]],[[13843,10378],[5,0]],[[13848,10378],[44,-39],[61,7]],[[13953,10346],[6,3]],[[13959,10349],[12,-26]],[[13971,10323],[7,-3]],[[13978,10320],[42,38]],[[14020,10358],[8,4]],[[14028,10362],[6,-9]],[[14034,10353],[4,-7]],[[14038,10346],[25,-13]],[[14063,10333],[5,-3]],[[14068,10330],[38,-46],[68,42]],[[14174,10326],[6,4]],[[14180,10330],[5,12]],[[14185,10342],[8,4]],[[14193,10346],[22,39]],[[14215,10385],[6,3]],[[14221,10388],[3,6]],[[14224,10394],[5,3]],[[14229,10397],[6,7]],[[14235,10404],[11,3]],[[14246,10407],[50,33],[16,80]],[[14312,10520],[-13,0]],[[14299,10520],[-5,7]],[[14294,10527],[0,13]],[[14294,10540],[7,58]],[[14301,10598],[-14,3]],[[14287,10601],[-8,19]],[[14279,10620],[-14,4]],[[14265,10624],[-10,35]],[[14255,10659],[16,4]],[[14271,10663],[3,64],[38,-6],[7,71]],[[14319,10792],[16,0]],[[14335,10792],[5,3]],[[14340,10795],[0,6]],[[14340,10801],[0,7]],[[14340,10808],[-5,9]],[[14335,10817],[0,7]],[[14335,10824],[6,3]],[[14341,10827],[25,3]],[[14366,10830],[5,0]],[[14371,10830],[0,7]],[[14371,10837],[6,9]],[[14377,10846],[20,-2]],[[14397,10844],[8,-4]],[[14405,10840],[56,-3]],[[14461,10837],[5,-3]],[[14466,10834],[14,-29]],[[14480,10805],[22,-4]],[[14502,10801],[61,39],[-5,42]],[[14558,10882],[-6,3]],[[14552,10885],[0,32]],[[14552,10917],[6,4]],[[14558,10921],[33,45],[78,29]],[[14669,10995],[8,-3]],[[14677,10992],[8,-6]],[[14685,10986],[7,6]],[[14692,10992],[42,-42],[8,-84]],[[14742,10866],[22,-3]],[[14764,10863],[52,26]],[[14816,10889],[12,3]],[[14828,10892],[0,3]],[[14828,10895],[3,3]],[[14831,10898],[5,17]],[[14836,10915],[12,-4]],[[14848,10911],[16,-13]],[[14864,10898],[11,-3]],[[14875,10895],[14,0]],[[14889,10895],[14,3]],[[14903,10898],[16,-22]],[[14919,10876],[4,-3]],[[14923,10873],[8,-10]],[[14931,10863],[14,6]],[[14945,10869],[0,4]],[[14945,10873],[9,-4]],[[14954,10869],[22,0]],[[14976,10869],[39,4]],[[15015,10873],[42,6]],[[15057,10879],[13,3]],[[15070,10882],[2,0]],[[15072,10882],[9,0]],[[15081,10882],[67,13]],[[15148,10895],[23,3]],[[15171,10898],[55,7]],[[15226,10905],[0,10]],[[15226,10915],[0,13]],[[15226,10928],[6,3]],[[15232,10931],[0,3]],[[15232,10934],[11,3]],[[15243,10937],[111,26],[14,20]],[[15368,10983],[6,3]],[[15374,10986],[0,2]],[[15374,10988],[38,7]],[[15412,10995],[3,13]],[[15415,11008],[5,3]],[[15420,11011],[34,13]],[[15454,11024],[9,-3]],[[15463,11021],[0,3]],[[15463,11024],[14,-3]],[[15477,11021],[53,10]],[[15530,11031],[14,3]],[[15544,11034],[27,16]],[[15571,11050],[5,4]],[[15576,11054],[0,3]],[[15576,11057],[0,6]],[[15576,11063],[4,10]],[[15580,11073],[28,-3]],[[15608,11070],[28,-13]],[[15636,11057],[8,-3]],[[15644,11054],[2,0]],[[15646,11054],[11,3]],[[15657,11057],[73,-30]],[[15730,11027],[9,-3]],[[15739,11024],[91,0],[17,23]],[[15847,11047],[5,3]],[[15852,11050],[25,23]],[[15877,11073],[4,6]],[[15881,11079],[0,3]],[[15881,11082],[16,4]],[[15897,11086],[11,19]],[[15908,11105],[5,3]],[[15913,11108],[3,10]],[[15916,11118],[4,0]],[[15920,11118],[25,55]],[[15945,11173],[7,4]],[[15952,11177],[15,28]],[[15967,11205],[5,4]],[[15972,11209],[1,58]],[[15973,11267],[-17,3]],[[15956,11270],[-4,16]],[[15952,11286],[0,10]],[[15952,11296],[15,19]],[[15967,11315],[5,23]],[[15972,11338],[0,6]],[[15972,11344],[-5,4]],[[15967,11348],[-14,12]],[[15953,11360],[-6,4]],[[15947,11364],[-9,32]],[[15938,11396],[4,3]],[[15942,11399],[0,4]],[[15942,11403],[0,12]],[[15942,11415],[27,23]],[[15969,11438],[3,6]],[[15972,11444],[41,16]],[[16013,11460],[26,4]],[[16039,11464],[48,-13],[13,51],[-16,46]],[[16084,11548],[-4,3]],[[16080,11551],[29,13]],[[16109,11564],[5,-6]],[[16114,11558],[19,-33]],[[16133,11525],[15,-3]],[[16148,11522],[11,-3]],[[16159,11519],[49,-7]],[[16208,11512],[6,-13]],[[16214,11499],[6,-6]],[[16220,11493],[0,-3]],[[16220,11490],[25,-4]],[[16245,11486],[8,-9]],[[16253,11477],[3,-3]],[[16256,11474],[55,-10]],[[16311,11464],[4,-4]],[[16315,11460],[16,0]],[[16331,11460],[12,-2]],[[16343,11458],[28,2]],[[16371,11460],[8,-6]],[[16379,11454],[36,-26],[2,-58]],[[16417,11370],[4,-6]],[[16421,11364],[5,-13]],[[16426,11351],[6,-7]],[[16432,11344],[8,-19]],[[16440,11325],[5,-4]],[[16445,11321],[1,-6]],[[16446,11315],[8,-3]],[[16454,11312],[24,-16]],[[16478,11296],[14,-4]],[[16492,11292],[7,-6]],[[16499,11286],[4,-3]],[[16503,11283],[28,-7]],[[16531,11276],[6,-3]],[[16537,11273],[59,16]],[[16596,11289],[6,-3]],[[16602,11286],[75,3],[25,-16]],[[16702,11273],[7,-3]],[[16709,11270],[0,-3]],[[16709,11267],[9,-3]],[[16718,11264],[5,-7]],[[16723,11257],[20,4]],[[16743,11261],[76,6]],[[16819,11267],[8,3]],[[16827,11270],[156,26],[49,22]],[[17032,11318],[21,3]],[[17053,11321],[74,-9]],[[17127,11312],[20,-3]],[[17147,11309],[34,32]],[[17181,11341],[5,3]],[[17186,11344],[0,4]],[[17186,11348],[9,3]],[[17195,11351],[10,16]],[[17205,11367],[4,3]],[[17209,11370],[0,3]],[[17209,11373],[7,3]],[[17216,11376],[4,16]],[[17220,11392],[5,11]],[[17225,11403],[17,74]],[[17242,11477],[5,3]],[[17247,11480],[0,3]],[[17247,11483],[9,-3]],[[17256,11480],[2,-10]],[[17258,11470],[8,0]],[[17266,11470],[0,-3]],[[17266,11467],[11,-3]],[[17277,11464],[34,0]],[[17311,11464],[9,3]],[[17320,11467],[38,32]],[[17358,11499],[11,3]],[[17369,11502],[14,13]],[[17383,11515],[9,4]],[[17392,11519],[22,26]],[[17414,11545],[8,3]],[[17422,11548],[17,3]],[[17439,11551],[12,3]],[[17451,11554],[52,39],[61,-7]],[[17564,11586],[14,4]],[[17578,11590],[45,-10]],[[17623,11580],[25,-3]],[[17648,11577],[17,-13]],[[17665,11564],[11,-3]],[[17676,11561],[98,-49]],[[17774,11512],[22,-3]],[[17796,11509],[53,-19]],[[17849,11490],[33,3]],[[17882,11493],[98,-3]],[[17980,11490],[11,3]],[[17991,11493],[41,16]],[[18032,11509],[25,6]],[[18057,11515],[39,4],[31,39]],[[18127,11558],[6,3]],[[18133,11561],[16,-36]],[[18149,11525],[5,6]],[[18154,11531],[84,10],[54,-42]],[[18292,11499],[7,-6]],[[18299,11493],[31,-42]],[[18330,11451],[5,-4]],[[18335,11447],[40,-39]],[[18375,11408],[5,7]],[[18380,11415],[0,4]],[[18380,11419],[39,0]],[[18419,11419],[22,12]],[[18441,11431],[18,4]],[[18459,11435],[47,12]],[[18506,11447],[14,0]],[[18520,11447],[35,-28]],[[18555,11419],[6,3]],[[18561,11422],[61,-10]],[[18622,11412],[18,-4]],[[18640,11408],[16,11]],[[18656,11419],[6,3]],[[18662,11422],[25,9]],[[18687,11431],[10,-3]],[[18697,11428],[14,-3]],[[18711,11425],[4,-6]],[[18715,11419],[24,-20]],[[18739,11399],[4,-3]],[[18743,11396],[53,-7]],[[18796,11389],[11,3]],[[18807,11392],[55,39]],[[18862,11431],[13,4]],[[18875,11435],[43,9]],[[18918,11444],[6,3]],[[18924,11447],[4,7]],[[18928,11454],[10,-3]],[[18938,11451],[22,-43],[44,0]],[[19004,11408],[5,4]],[[19009,11412],[15,-9]],[[19024,11403],[21,3]],[[19045,11406],[11,-17]],[[19056,11389],[4,-2]],[[19060,11387],[25,-4]],[[19085,11383],[8,4]],[[19093,11387],[20,-36]],[[19113,11351],[7,-3]],[[19120,11348],[0,-4]],[[19120,11344],[-5,-3]],[[19115,11341],[-5,-20]],[[19110,11321],[11,-3]],[[19121,11318],[14,36],[75,0],[55,-55]],[[19265,11299],[11,3]],[[19276,11302],[0,52]],[[19276,11354],[-5,3]],[[19271,11357],[44,51],[32,-16]],[[19347,11392],[8,-3]],[[19355,11389],[-3,52]],[[19352,11441],[-5,3]],[[19347,11444],[85,7]],[[19432,11451],[4,-4]],[[19436,11447],[61,7],[-19,97]],[[19478,11551],[-4,3]],[[19474,11554],[0,4]],[[19474,11558],[9,3]],[[19483,11561],[-22,41]],[[19461,11602],[0,23]],[[19461,11625],[11,7]],[[19472,11632],[16,-3]],[[19488,11629],[0,1]],[[19488,11630],[34,24]],[[19522,11654],[5,7]],[[19527,11661],[6,61],[-51,26]],[[19482,11748],[-11,3]],[[19471,11751],[-3,0]],[[19468,11751],[-7,-10]],[[19461,11741],[-14,14]],[[19447,11755],[5,13]],[[19452,11768],[0,3]],[[19452,11771],[-20,3]],[[19432,11774],[17,26]],[[19449,11800],[8,3]],[[19457,11803],[4,26]],[[19461,11829],[0,3]],[[19461,11832],[-61,-48],[-78,12]],[[19322,11796],[-15,-6]],[[19307,11790],[-55,16],[-26,-32]],[[19226,11774],[-22,3]],[[19204,11777],[-84,46]],[[19120,11823],[-16,3]],[[19104,11826],[0,-3]],[[19104,11823],[-9,3]],[[19095,11826],[-35,9]],[[19060,11835],[-12,4]],[[19048,11839],[-24,16]],[[19024,11855],[5,6]],[[19029,11861],[9,13]],[[19038,11874],[64,-3]],[[19102,11871],[110,26]],[[19212,11897],[-13,3]],[[19199,11900],[-25,32]],[[19174,11932],[-9,-3]],[[19165,11929],[-41,26]],[[19124,11955],[-11,3]],[[19113,11958],[13,45]],[[19126,12003],[-6,-3]],[[19120,12000],[1,65],[-78,-16]],[[19043,12049],[-14,3]],[[19029,12052],[-20,9]],[[19009,12061],[20,4]],[[19029,12065],[9,-7]],[[19038,12058],[13,3]],[[19051,12061],[62,39]],[[19113,12100],[17,4]],[[19130,12104],[36,57]],[[19166,12161],[5,-6]],[[19171,12155],[0,-16]],[[19171,12139],[0,-10]],[[19171,12129],[56,-9]],[[19227,12120],[8,3]],[[19235,12123],[51,9]],[[19286,12132],[10,4]],[[19296,12136],[11,64],[34,-9]],[[19341,12191],[5,-3]],[[19346,12188],[42,25],[40,-9]],[[19428,12204],[13,3]],[[19441,12207],[-58,45],[64,26]],[[19447,12278],[19,0]],[[19466,12278],[0,9]],[[19466,12287],[-5,4]],[[19461,12291],[-4,12]],[[19457,12303],[-5,4]],[[19452,12307],[9,32]],[[19461,12339],[5,10]],[[19466,12349],[5,6]],[[19471,12355],[9,4]],[[19480,12359],[-8,26]],[[19472,12385],[6,3]],[[19478,12388],[8,26]],[[19486,12414],[-15,-4]],[[19471,12410],[-5,-6]],[[19466,12404],[-8,-6]],[[19458,12398],[0,-7]],[[19458,12391],[-1,-3]],[[19457,12388],[0,-3]],[[19457,12385],[-5,-4]],[[19452,12381],[-16,-6]],[[19436,12375],[-9,-3]],[[19427,12372],[-75,48]],[[19352,12420],[-9,0]],[[19343,12420],[-2,45]],[[19341,12465],[5,7]],[[19346,12472],[1,3]],[[19347,12475],[5,3]],[[19352,12478],[55,35],[-7,69],[-85,-13]],[[19315,12569],[-25,3]],[[19290,12572],[-44,26]],[[19246,12598],[-5,3]],[[19241,12601],[-9,13]],[[19232,12614],[-5,3]],[[19227,12617],[-6,23],[-86,13],[-1,32],[90,0]],[[19224,12685],[8,3]],[[19232,12688],[3,7]],[[19235,12695],[14,3]],[[19249,12698],[22,-19],[64,23]],[[19335,12702],[17,5]],[[19352,12707],[0,23]],[[19352,12730],[-5,-3]],[[19347,12727],[-20,58]],[[19327,12785],[-9,4]],[[19318,12789],[-3,25]],[[19315,12814],[-8,-3]],[[19307,12811],[-6,10]],[[19301,12821],[-11,-4]],[[19290,12817],[-14,0]],[[19276,12817],[-5,4]],[[19271,12821],[-30,-4]],[[19241,12817],[-6,4]],[[19235,12821],[-39,23]],[[19196,12844],[16,-4]],[[19212,12840],[-7,65]],[[19205,12905],[10,-4]],[[19215,12901],[12,-6]],[[19227,12895],[25,-3]],[[19252,12892],[-6,-13]],[[19246,12879],[1,-16]],[[19247,12863],[7,-7]],[[19254,12856],[17,7]],[[19271,12863],[70,-10]],[[19341,12853],[6,-3]],[[19347,12850],[61,19],[39,43]],[[19447,12912],[22,-7]],[[19469,12905],[3,3]],[[19472,12908],[10,4]],[[19482,12912],[10,32],[82,0]],[[19574,12944],[4,-7]],[[19578,12937],[3,-6]],[[19581,12931],[13,3]],[[19594,12934],[-2,32]],[[19592,12966],[-9,-3]],[[19583,12963],[-6,3]],[[19577,12966],[-3,-3]],[[19574,12963],[-32,13],[-96,-4]],[[19446,12972],[-18,-3]],[[19428,12969],[-57,30],[25,32],[87,-16],[30,16]],[[19513,13031],[18,3]],[[19531,13034],[5,22]],[[19536,13056],[13,-2]],[[19549,13054],[34,19]],[[19583,13073],[9,3]],[[19592,13076],[145,-20]],[[19737,13056],[4,-2]],[[19741,13054],[93,16],[66,-33],[36,-48]],[[19936,12989],[18,-4]],[[19954,12985],[108,14],[20,-27]],[[20082,12972],[5,-6]],[[20087,12966],[30,-6]],[[20117,12960],[-5,6]],[[20112,12966],[0,10]],[[20112,12976],[16,9]],[[20128,12985],[20,-84],[25,-19]],[[20173,12882],[5,-3]],[[20178,12879],[0,-16]],[[20178,12863],[0,-13]],[[20178,12850],[18,-23]],[[20196,12827],[7,3]],[[20203,12830],[21,33],[-11,74],[49,-3],[45,-39]],[[20307,12895],[6,-3]],[[20313,12892],[-1,-19]],[[20312,12873],[-5,3]],[[20307,12876],[-16,-13]],[[20291,12863],[-4,6]],[[20287,12869],[0,-32]],[[20287,12837],[11,-3]],[[20298,12834],[17,-20]],[[20315,12814],[5,-6]],[[20320,12808],[-8,-30]],[[20312,12778],[0,-5]],[[20312,12773],[0,-4]],[[20312,12769],[-5,-3]],[[20307,12766],[0,-7]],[[20307,12759],[5,-9]],[[20312,12750],[0,-29]],[[20312,12721],[-5,-3]],[[20307,12718],[0,-23]],[[20307,12695],[5,-4]],[[20312,12691],[0,-3]],[[20312,12688],[8,-3]],[[20320,12685],[53,0],[-4,74],[29,71]],[[20398,12830],[4,4]],[[20402,12834],[-4,51]],[[20398,12885],[4,4]],[[20402,12889],[2,35]],[[20404,12924],[-10,4]],[[20394,12928],[-29,96],[-45,-13]],[[20320,13011],[0,13]],[[20320,13024],[32,68]],[[20352,13092],[-39,3]],[[20313,13095],[2,62]],[[20315,13157],[5,13]],[[20320,13170],[39,23],[65,-36]],[[20424,13157],[-5,6]],[[20419,13163],[10,36]],[[20429,13199],[11,-3]],[[20440,13196],[11,-36]],[[20451,13160],[28,6]],[[20479,13166],[1,-9]],[[20480,13157],[14,-3]],[[20494,13154],[7,9]],[[20501,13163],[7,3]],[[20508,13166],[7,-51]],[[20515,13115],[0,-4]],[[20515,13111],[25,-22]],[[20540,13089],[11,-16]],[[20551,13073],[29,35],[-5,52],[77,19]],[[20652,13179],[5,4]],[[20657,13183],[23,29],[6,81],[-29,87]],[[20657,13380],[-5,3]],[[20652,13383],[-5,13]],[[20647,13396],[-3,3]],[[20644,13399],[52,45]],[[20696,13444],[9,10]],[[20705,13454],[0,6]],[[20705,13460],[17,4]],[[20722,13464],[13,10]],[[20735,13474],[12,3]],[[20747,13477],[0,42]],[[20747,13519],[-17,3]],[[20730,13522],[-34,9]],[[20696,13531],[-5,4]],[[20691,13535],[-14,16]],[[20677,13551],[-8,0]],[[20669,13551],[-28,0]],[[20641,13551],[-22,3]],[[20619,13554],[61,20]],[[20680,13574],[41,6]],[[20721,13580],[14,6]],[[20735,13586],[3,4]],[[20738,13590],[18,51],[-15,59],[20,55]],[[20761,13755],[10,-4]],[[20771,13751],[46,-3]],[[20817,13748],[5,-19]],[[20822,13729],[25,-23]],[[20847,13706],[6,-3]],[[20853,13703],[19,-13]],[[20872,13690],[11,-3]],[[20883,13687],[70,-7]],[[20953,13680],[14,4]],[[20967,13684],[52,-36],[51,22]],[[21070,13670],[5,7]],[[21075,13677],[19,48],[-89,55],[70,71]],[[21075,13851],[9,4]],[[21084,13855],[35,23]],[[21119,13878],[4,2]],[[21123,13880],[10,10]],[[21133,13890],[32,7]],[[21165,13897],[24,35]],[[21189,13932],[-3,3]],[[21186,13935],[1,21]],[[21187,13956],[2,2]],[[21189,13958],[31,16]],[[21220,13974],[19,-3]],[[21239,13971],[40,23]],[[21279,13994],[11,-4]],[[21290,13990],[81,-3],[44,30]],[[21415,14017],[13,5]],[[21428,14022],[40,7]],[[21468,14029],[17,-7]],[[21485,14022],[13,-3]],[[21498,14019],[4,3]],[[21502,14022],[5,11]],[[21507,14033],[6,3]],[[21513,14036],[69,3]],[[21582,14039],[11,-3]],[[21593,14036],[19,19]],[[21612,14055],[4,3]],[[21616,14058],[42,16]],[[21658,14074],[8,3]],[[21666,14077],[7,13]],[[21673,14090],[4,4]],[[21677,14094],[2,10]],[[21679,14104],[3,3]],[[21682,14107],[12,38],[-11,82]],[[21683,14227],[-4,16]],[[21679,14243],[-2,16]],[[21677,14259],[-4,25]],[[21673,14284],[-10,58]],[[21663,14342],[-6,4]],[[21657,14346],[-27,23]],[[21630,14369],[-12,-10]],[[21618,14359],[-6,-4]],[[21612,14355],[-30,-13]],[[21582,14342],[-23,-3]],[[21559,14339],[-138,-6]],[[21421,14333],[-6,-3]],[[21415,14330],[-50,-13]],[[21365,14317],[-64,3]],[[21301,14320],[-12,6]],[[21289,14326],[-5,-3]],[[21284,14323],[-45,19],[-39,-32]],[[21200,14310],[-7,-3]],[[21193,14307],[-68,-39]],[[21125,14268],[-6,-3]],[[21119,14265],[-64,-26]],[[21055,14239],[-10,4]],[[21045,14243],[-58,-23]],[[20987,14220],[-34,-4]],[[20953,14216],[-76,33]],[[20877,14249],[-32,-3]],[[20845,14246],[-124,-7]],[[20721,14239],[-24,4]],[[20697,14243],[-97,-13],[-54,-42]],[[20546,14188],[-16,-4]],[[20530,14184],[-20,-25],[-77,-7]],[[20433,14152],[-4,-3]],[[20429,14149],[-3,-7]],[[20426,14142],[-11,-3]],[[20415,14139],[-13,-10]],[[20402,14129],[-4,-3]],[[20398,14126],[-78,-19]],[[20320,14107],[-21,0]],[[20299,14107],[-50,19]],[[20249,14126],[-12,3]],[[20237,14129],[-141,0],[-90,32]],[[20006,14161],[-6,4]],[[20000,14165],[-174,7],[-26,-49],[48,-46]],[[19848,14077],[21,-3]],[[19869,14074],[17,-19]],[[19886,14055],[6,-3]],[[19892,14052],[33,-10]],[[19925,14042],[6,-3]],[[19931,14039],[0,-3]],[[19931,14036],[5,-3]],[[19936,14033],[-10,-49]],[[19926,13984],[10,-13]],[[19936,13971],[4,-32]],[[19940,13939],[-9,-4]],[[19931,13935],[-39,-6]],[[19892,13929],[-17,-3]],[[19875,13926],[-70,-20],[10,116],[-60,-5]],[[19755,14017],[-14,35]],[[19741,14052],[4,9]],[[19745,14061],[0,16]],[[19745,14077],[-32,20]],[[19713,14097],[-5,-3]],[[19708,14094],[-5,-6]],[[19703,14088],[-5,-7]],[[19698,14081],[-9,-20]],[[19689,14061],[-11,-6]],[[19678,14055],[-31,-36],[-78,10],[-22,23]],[[19547,14052],[-8,3]],[[19539,14055],[-51,-10]],[[19488,14045],[-42,-3]],[[19446,14042],[-91,-6]],[[19355,14036],[-33,3]],[[19322,14039],[-26,-10]],[[19296,14029],[-6,4]],[[19290,14033],[-14,-4]],[[19276,14029],[-10,-3]],[[19266,14026],[-137,13]],[[19129,14039],[-16,-3]],[[19113,14036],[-59,9]],[[19054,14045],[-6,-3]],[[19048,14042],[-33,16]],[[19015,14058],[-16,7]],[[18999,14065],[-14,19]],[[18985,14084],[-6,4]],[[18979,14088],[-39,9]],[[18940,14097],[-6,3]],[[18934,14100],[-17,4]],[[18917,14104],[-10,6]],[[18907,14110],[-20,3]],[[18887,14113],[0,3]],[[18887,14116],[-3,4]],[[18884,14120],[-13,9]],[[18871,14129],[-14,-3]],[[18857,14126],[-50,3]],[[18807,14129],[-6,-3]],[[18801,14126],[-19,-38]],[[18782,14088],[-4,-17]],[[18778,14071],[-30,-58]],[[18748,14013],[-11,-3]],[[18737,14010],[-15,-13]],[[18722,13997],[-46,-7]],[[18676,13990],[0,-3]],[[18676,13987],[-20,-6]],[[18656,13981],[-90,-23]],[[18566,13958],[-15,4]],[[18551,13962],[0,3]],[[18551,13965],[-6,3]],[[18545,13968],[-23,45]],[[18522,14013],[-6,4]],[[18516,14017],[-5,5]],[[18511,14022],[-5,4]],[[18506,14026],[-9,19]],[[18497,14045],[-6,7]],[[18491,14052],[-14,22]],[[18477,14074],[-4,3]],[[18473,14077],[-4,7]],[[18469,14084],[-8,4]],[[18461,14088],[-50,38],[-51,-13],[-60,-52]],[[18300,14061],[-11,-6]],[[18289,14055],[-22,-10]],[[18267,14045],[-9,-3]],[[18258,14042],[-14,-3]],[[18244,14039],[-11,3]],[[18233,14042],[-50,26]],[[18183,14068],[-6,3]],[[18177,14071],[-9,13]],[[18168,14084],[-11,4]],[[18157,14088],[0,2]],[[18157,14090],[-13,4]],[[18144,14094],[-92,-23]],[[18052,14071],[-6,-3]],[[18046,14068],[-25,-13]],[[18021,14055],[-9,-3]],[[18012,14052],[-24,-10]],[[17988,14042],[-20,-3]],[[17968,14039],[-38,-20]],[[17930,14019],[-9,-2]],[[17921,14017],[-92,-27]],[[17829,13990],[-19,4]],[[17810,13994],[-61,-4],[-45,-32]],[[17704,13958],[-5,-3]],[[17699,13955],[-4,-10]],[[17695,13945],[-6,-3]],[[17689,13942],[-15,-23]],[[17674,13919],[-4,-3]],[[17670,13916],[-125,-10],[-36,-45]],[[17509,13861],[-5,-3]],[[17504,13858],[-4,-16]],[[17500,13842],[-3,-7]],[[17497,13835],[-18,-16]],[[17479,13819],[-6,-3]],[[17473,13816],[-1,-9]],[[17472,13807],[-5,-4]],[[17467,13803],[-48,-32]],[[17419,13771],[-5,-10]],[[17414,13761],[-56,-42]],[[17358,13719],[0,6]],[[17358,13725],[4,23]],[[17362,13748],[5,4]],[[17367,13752],[14,48],[-53,26]],[[17328,13826],[-5,2]],[[17323,13828],[0,4]],[[17323,13832],[-25,-4]],[[17298,13828],[-26,-2]],[[17272,13826],[5,-3]],[[17277,13823],[0,-14]],[[17277,13809],[-7,0]],[[17270,13809],[-8,-19]],[[17262,13790],[16,0]],[[17278,13790],[-16,-68]],[[17262,13722],[-6,-3]],[[17256,13719],[-3,-10]],[[17253,13709],[-3,-3]],[[17250,13706],[0,-3]],[[17250,13703],[-12,3]],[[17238,13706],[-29,-22]],[[17209,13684],[0,9]],[[17209,13693],[-45,-6]],[[17164,13687],[-5,3]],[[17159,13690],[-63,0]],[[17096,13690],[-5,3]],[[17091,13693],[-5,7]],[[17086,13700],[-12,3]],[[17074,13703],[0,-3]],[[17074,13700],[-5,-13]],[[17069,13687],[-13,-19]],[[17056,13668],[-10,-4]],[[17046,13664],[-16,65],[-30,39]],[[17000,13768],[-4,-7]],[[16996,13761],[-5,-6]],[[16991,13755],[-5,-3]],[[16986,13752],[-23,-14]],[[16963,13738],[-13,3]],[[16950,13741],[-40,-9]],[[16910,13732],[-6,-3]],[[16904,13729],[-44,-33],[-16,49]],[[16844,13745],[0,13]],[[16844,13758],[-4,26]],[[16840,13784],[-25,-7]],[[16815,13777],[-11,-3]],[[16804,13774],[-7,6]],[[16797,13780],[-4,4]],[[16793,13784],[-81,0]],[[16712,13784],[-13,-4]],[[16699,13780],[-15,-9]],[[16684,13771],[-5,-7]],[[16679,13764],[-2,-6]],[[16677,13758],[-6,-3]],[[16671,13755],[-69,-20]],[[16602,13735],[-15,0]],[[16587,13735],[-14,17]],[[16573,13752],[-7,-4]],[[16566,13748],[-6,-10]],[[16560,13738],[-23,3]],[[16537,13741],[-2,11]],[[16535,13752],[-14,3]],[[16521,13755],[-6,41]],[[16515,13796],[-16,4]],[[16499,13800],[-53,9]],[[16446,13809],[-9,-2]],[[16437,13807],[-37,-30]],[[16400,13777],[-11,3]],[[16389,13780],[-74,-48]],[[16315,13732],[-4,-3]],[[16311,13729],[0,-4]],[[16311,13725],[-21,4]],[[16290,13729],[-57,-23]],[[16233,13706],[-22,0]],[[16211,13706],[-41,42]],[[16170,13748],[-8,-3]],[[16162,13745],[-17,3]],[[16145,13748],[-6,-3]],[[16139,13745],[-5,-7]],[[16134,13738],[-6,-19]],[[16128,13719],[5,-6]],[[16133,13713],[-16,-43]],[[16117,13670],[-14,-2]],[[16103,13668],[-11,-85],[41,-25]],[[16133,13558],[4,-4]],[[16137,13554],[0,-16]],[[16137,13538],[-4,-3]],[[16133,13535],[-44,-10]],[[16089,13525],[-11,3]],[[16078,13528],[-2,7]],[[16076,13535],[-18,3]],[[16058,13538],[0,-7]],[[16058,13531],[4,-3]],[[16062,13528],[0,-9]],[[16062,13519],[-4,-4]],[[16058,13515],[0,-3]],[[16058,13512],[-14,-3]],[[16044,13509],[-21,10]],[[16023,13519],[-4,3]],[[16019,13522],[-16,16]],[[16003,13538],[-9,3]],[[15994,13541],[0,-3]],[[15994,13538],[-5,-16]],[[15989,13522],[-17,13]],[[15972,13535],[-14,3]],[[15958,13538],[-16,7]],[[15942,13545],[-6,-4]],[[15936,13541],[-55,10]],[[15881,13551],[-6,3]],[[15875,13554],[-14,20]],[[15861,13574],[-6,3]],[[15855,13577],[-24,16]],[[15831,13593],[-6,4]],[[15825,13597],[-25,64]],[[15800,13661],[-8,3]],[[15792,13664],[-42,4],[-76,38]],[[15674,13706],[-24,-3]],[[15650,13703],[-14,3]],[[15636,13706],[-12,3]],[[15624,13709],[-19,-3]],[[15605,13706],[-6,-6]],[[15599,13700],[-75,-13]],[[15524,13687],[-5,-3]],[[15519,13684],[-4,-14]],[[15515,13670],[-7,-2]],[[15508,13668],[-31,-11]],[[15477,13657],[-4,0]],[[15473,13657],[-16,-6]],[[15457,13651],[-9,-3]],[[15448,13648],[20,-39]],[[15468,13609],[11,-3]],[[15479,13606],[45,-7]],[[15524,13599],[11,-2]],[[15535,13597],[-11,-36]],[[15524,13561],[-14,-3]],[[15510,13558],[-25,0]],[[15485,13558],[-5,3]],[[15480,13561],[8,-75]],[[15488,13486],[-9,-6]],[[15479,13480],[-10,-6]],[[15469,13474],[-10,3]],[[15459,13477],[-5,16]],[[15454,13493],[-5,6]],[[15449,13499],[-29,87]],[[15420,13586],[-5,11]],[[15415,13597],[-67,-30]],[[15348,13567],[-2,3]],[[15346,13570],[-25,59],[-54,0]],[[15267,13629],[-49,3]],[[15218,13632],[-50,52],[-48,-7]],[[15120,13677],[-13,3]],[[15107,13680],[-4,10]],[[15103,13690],[-3,3]],[[15100,13693],[-4,7]],[[15096,13700],[-4,3]],[[15092,13703],[-2,6]],[[15090,13709],[-25,4]],[[15065,13713],[-29,-36]],[[15036,13677],[-5,-3]],[[15031,13674],[-5,-10]],[[15026,13664],[-9,-3]],[[15017,13661],[-8,-10]],[[15009,13651],[-8,-3]],[[15001,13648],[0,-10]],[[15001,13638],[5,-6]],[[15006,13632],[-27,-30]],[[14979,13602],[-10,4]],[[14969,13606],[-15,7]],[[14954,13613],[-7,-30]],[[14947,13583],[-2,14]],[[14945,13597],[-5,2]],[[14940,13599],[-54,26]],[[14886,13625],[-6,4]],[[14880,13629],[0,3]],[[14880,13632],[-7,3]],[[14873,13635],[-3,6]],[[14870,13641],[-4,4]],[[14866,13645],[-25,0]],[[14841,13645],[-5,-4]],[[14836,13641],[-3,-12]],[[14833,13629],[-5,-4]],[[14828,13625],[-3,-9]],[[14825,13616],[-5,-3]],[[14820,13613],[-45,80],[-53,32]],[[14722,13725],[-8,4]],[[14714,13729],[-70,16],[-6,55]],[[14638,13800],[-5,3]],[[14633,13803],[-25,20]],[[14608,13823],[-14,16]],[[14594,13839],[-37,25]],[[14557,13864],[-5,7]],[[14552,13871],[-20,84],[-36,29]],[[14496,13984],[-5,3]],[[14491,13987],[-20,16]],[[14471,14003],[-10,3]],[[14461,14006],[-6,36]],[[14455,14042],[-8,3]],[[14447,14045],[-4,13]],[[14443,14058],[-5,7]],[[14438,14065],[0,3]],[[14438,14068],[5,3]],[[14443,14071],[6,6]],[[14449,14077],[3,7]],[[14452,14084],[0,6]],[[14452,14090],[-5,7]],[[14447,14097],[-17,39],[-40,13]],[[14390,14149],[-14,-4]],[[14376,14145],[0,-6]],[[14376,14139],[-7,-3]],[[14369,14136],[-28,0]],[[14341,14136],[-9,0]],[[14332,14136],[0,6]],[[14332,14142],[9,7]],[[14341,14149],[3,35]],[[14344,14184],[-25,0]],[[14319,14184],[0,-3]],[[14319,14181],[5,-3]],[[14324,14178],[2,-10]],[[14326,14168],[1,-13]],[[14327,14155],[-33,-39]],[[14294,14116],[-4,-3]],[[14290,14113],[-14,-13]],[[14276,14100],[-10,-3]],[[14266,14097],[0,-26]],[[14266,14071],[5,-6]],[[14271,14065],[-36,-43]],[[14235,14022],[-11,-5]],[[14224,14017],[0,-20]],[[14224,13997],[5,-7]],[[14229,13990],[0,-3]],[[14229,13987],[5,-3]],[[14234,13984],[0,-3]],[[14234,13981],[-5,-7]],[[14229,13974],[0,-3]],[[14229,13971],[-5,-3]],[[14224,13968],[-28,71],[-42,-26]],[[14154,14013],[-9,-3]],[[14145,14010],[3,39]],[[14148,14049],[3,3]],[[14151,14052],[34,38]],[[14185,14090],[5,7]],[[14190,14097],[-47,42],[-55,-29],[-18,-45]],[[14070,14065],[-10,-13]],[[14060,14052],[-12,-46]],[[14048,14006],[-5,-3]],[[14043,14003],[-3,-9]],[[14040,13994],[-6,-4]],[[14034,13990],[0,-25]],[[14034,13965],[0,-10]],[[14034,13955],[0,-6]],[[14034,13949],[6,-4]],[[14040,13945],[-2,-26]],[[14038,13919],[-4,-9]],[[14034,13910],[0,-36]],[[14034,13874],[0,-29]],[[14034,13845],[-2,-6]],[[14032,13839],[-17,3]],[[14015,13842],[-36,-10]],[[13979,13832],[-8,-4]],[[13971,13828],[-14,-51]],[[13957,13777],[-4,-3]],[[13953,13774],[-39,-3]],[[13914,13771],[-2,6]],[[13912,13777],[6,58]],[[13918,13835],[21,4]],[[13939,13839],[14,74]],[[13953,13913],[0,3]],[[13953,13916],[-5,33]],[[13948,13949],[9,2]],[[13957,13951],[0,23]],[[13957,13974],[-4,7]],[[13953,13981],[0,25]],[[13953,14006],[4,4]],[[13957,14010],[32,32]],[[13989,14042],[6,3]],[[13995,14045],[0,13]],[[13995,14058],[-3,3]],[[13992,14061],[-50,29],[-30,-41]],[[13912,14049],[-8,-4]],[[13904,14045],[-26,-26]],[[13878,14019],[-10,3]],[[13868,14022],[-25,11]],[[13843,14033],[-4,-30]],[[13839,14003],[-2,-6]],[[13837,13997],[-6,-3]],[[13831,13994],[-16,12]],[[13815,14006],[-4,4]],[[13811,14010],[-19,19]],[[13792,14029],[-16,4]],[[13776,14033],[-23,-14]],[[13753,14019],[-6,-2]],[[13747,14017],[-105,-27]],[[13642,13990],[-8,-3]],[[13634,13987],[-20,-19]],[[13614,13968],[-8,-3]],[[13606,13965],[-34,-23]],[[13572,13942],[-13,-3]],[[13559,13939],[-4,-13]],[[13555,13926],[9,0]],[[13564,13926],[-28,-55],[14,-52],[64,-16]],[[13614,13803],[11,4]],[[13625,13807],[0,-4]],[[13625,13803],[5,0]],[[13630,13803],[6,-29]],[[13636,13774],[0,-6]],[[13636,13768],[-25,-27]],[[13611,13741],[-5,4]],[[13606,13745],[-4,10]],[[13602,13755],[-2,0]],[[13600,13755],[-39,-42]],[[13561,13713],[9,-4]],[[13570,13709],[-1,-74]],[[13569,13635],[-5,-3]],[[13564,13632],[-34,-14]],[[13530,13618],[-5,-2]],[[13525,13616],[-20,-33]],[[13505,13583],[-5,-3]],[[13500,13580],[-36,-71],[-75,-16]],[[13389,13493],[-6,-3]],[[13383,13490],[-69,-33],[-1,-49],[36,-9],[9,-94],[-19,-32],[-57,32],[-8,68]],[[13274,13373],[-5,7]],[[13269,13380],[-9,12]],[[13260,13392],[-2,4]],[[13258,13396],[-36,-26]],[[13222,13370],[-4,-3]],[[13218,13367],[-32,-42],[22,-29]],[[13208,13296],[-1,-10]],[[13207,13286],[-14,-6]],[[13193,13280],[-7,3]],[[13186,13283],[-39,81]],[[13147,13364],[-9,3]],[[13138,13367],[-33,-30]],[[13105,13337],[-8,-2]],[[13097,13335],[-26,-3]],[[13071,13332],[-5,3]],[[13066,13335],[-15,6]],[[13051,13341],[-5,3]],[[13046,13344],[0,4]],[[13046,13348],[-36,3]],[[13010,13351],[-20,90]],[[12990,13441],[-8,10]],[[12982,13451],[-42,42],[15,71],[-6,61],[13,201]],[[12962,13826],[-7,2]],[[12955,13828],[-10,82],[-49,135],[-5,104],[-40,16]],[[12851,14165],[-9,3]],[[12842,14168],[-43,7]],[[12799,14175],[-9,3]],[[12790,14178],[-5,6]],[[12785,14184],[-4,4]],[[12781,14188],[-13,12]],[[12768,14200],[-9,4]],[[12759,14204],[-24,26],[10,70],[34,46]],[[12779,14346],[9,3]],[[12788,14349],[7,16]],[[12795,14365],[0,13]],[[12795,14378],[-10,23]],[[12785,14401],[-4,6]],[[12781,14407],[-27,26]],[[12754,14433],[2,-3]],[[12756,14430],[0,-23]],[[12756,14407],[-2,-3]],[[12754,14404],[-20,-13]],[[12734,14391],[-6,3]],[[12728,14394],[-28,55],[40,23],[-6,45]],[[12734,14517],[6,10]],[[12740,14527],[9,-16]],[[12749,14511],[11,2]],[[12760,14513],[0,7]],[[12760,14520],[10,4]],[[12770,14524],[34,12]],[[12804,14536],[5,4]],[[12809,14540],[0,55]],[[12809,14595],[-5,13]],[[12804,14608],[-5,9]],[[12799,14617],[-4,10]],[[12795,14627],[-5,32]],[[12790,14659],[-5,13]],[[12785,14672],[19,49]],[[12804,14721],[0,3]],[[12804,14724],[0,6]],[[12804,14730],[5,4]],[[12809,14734],[33,-16]],[[12842,14718],[9,-4]],[[12851,14714],[14,-16]],[[12865,14698],[11,4]],[[12876,14702],[39,19],[36,142]],[[12951,14863],[11,-3]],[[12962,14860],[23,-10]],[[12985,14850],[5,-7]],[[12990,14843],[42,17]],[[13032,14860],[5,3]],[[13037,14863],[0,10]],[[13037,14873],[4,3]],[[13041,14876],[5,9]],[[13046,14885],[5,4]],[[13051,14889],[15,32]],[[13066,14921],[10,0]],[[13076,14921],[20,-7]],[[13096,14914],[9,3]],[[13105,14917],[103,59]],[[13208,14976],[5,3]],[[13213,14979],[5,10]],[[13218,14989],[4,3]],[[13222,14992],[30,32],[0,55],[-39,91],[-20,-13]],[[13193,15157],[-7,-7]],[[13186,15150],[0,7]],[[13186,15157],[-9,3]],[[13177,15160],[-31,10]],[[13146,15170],[-8,3]],[[13138,15173],[-36,-42]],[[13102,15131],[-5,7]],[[13097,15138],[-15,16]],[[13082,15154],[-16,-4]],[[13066,15150],[-29,-71]],[[13037,15079],[-7,7]],[[13030,15086],[-39,22]],[[12991,15108],[-6,-3]],[[12985,15105],[5,-13]],[[12990,15092],[-5,-9]],[[12985,15083],[-48,-16],[4,161]],[[12941,15228],[-11,0]],[[12930,15228],[25,42]],[[12955,15270],[0,-4]],[[12955,15266],[30,-87]],[[12985,15179],[17,-6]],[[13002,15173],[21,52],[-11,100],[20,10]],[[13032,15335],[20,0]],[[13052,15335],[24,16]],[[13076,15351],[3,3]],[[13079,15354],[64,-29]],[[13143,15325],[0,-4]],[[13143,15321],[34,-9]],[[13177,15312],[2,-36]],[[13179,15276],[-2,-42]],[[13177,15234],[11,-3]],[[13188,15231],[19,-22]],[[13207,15209],[6,6]],[[13213,15215],[5,-6]],[[13218,15209],[4,-7]],[[13222,15202],[32,-7]],[[13254,15195],[7,7]],[[13261,15202],[0,7]],[[13261,15209],[14,6]],[[13275,15215],[24,-88],[45,-12],[36,55]],[[13380,15170],[8,-7]],[[13388,15163],[47,-25]],[[13435,15138],[14,3]],[[13449,15141],[0,61]],[[13449,15202],[-4,10]],[[13445,15212],[0,42]],[[13445,15254],[-6,3]],[[13439,15257],[-31,16]],[[13408,15273],[-5,-3]],[[13403,15270],[-14,16],[14,94]],[[13403,15380],[7,3]],[[13410,15383],[3,-7]],[[13413,15376],[4,-3]],[[13417,15373],[16,32]],[[13433,15405],[25,-2]],[[13458,15403],[26,41]],[[13484,15444],[16,-9]],[[13500,15435],[34,9],[-4,84]],[[13530,15528],[-7,3]],[[13523,15531],[-29,88]],[[13494,15619],[5,3]],[[13499,15622],[24,-3]],[[13523,15619],[7,-3]],[[13530,15616],[29,-20]],[[13559,15596],[10,0]],[[13569,15596],[37,-51]],[[13606,15545],[5,-10]],[[13611,15535],[48,-20],[6,-93],[-24,-33]],[[13641,15389],[-5,-9]],[[13636,15380],[0,-23]],[[13636,15357],[5,-3]],[[13641,15354],[0,-13]],[[13641,15341],[-5,-16]],[[13636,15325],[0,-16]],[[13636,15309],[5,-4]],[[13641,15305],[60,-19],[19,46]],[[13720,15332],[0,5]],[[13720,15337],[0,27]],[[13720,15364],[5,6]],[[13725,15370],[-5,78]],[[13720,15448],[14,6]],[[13734,15454],[22,13]],[[13756,15467],[6,3]],[[13762,15470],[0,-55]],[[13762,15415],[0,-3]],[[13762,15412],[24,-7],[36,59],[-5,58]],[[13817,15522],[-6,3]],[[13811,15525],[-4,58]],[[13807,15583],[10,3]],[[13817,15586],[22,4]],[[13839,15590],[9,-4]],[[13848,15586],[16,-55],[37,-3]],[[13901,15528],[2,0]],[[13903,15528],[1,7]],[[13904,15535],[22,-7]],[[13926,15528],[2,-87],[25,-13]],[[13953,15428],[4,7]],[[13957,15435],[11,13]],[[13968,15448],[11,3]],[[13979,15451],[8,6]],[[13987,15457],[12,7]],[[13999,15464],[33,3]],[[14032,15467],[6,-3]],[[14038,15464],[0,-26]],[[14038,15438],[-6,-3]],[[14032,15435],[-8,-13]],[[14024,15422],[-15,0]],[[14009,15422],[-10,-7]],[[13999,15415],[-7,-3]],[[13992,15412],[-14,-58]],[[13978,15354],[-5,-3]],[[13973,15351],[-44,-23],[-1,-55],[61,-39]],[[13989,15234],[6,-3]],[[13995,15231],[14,-58],[79,-16],[5,64]],[[14093,15221],[2,4]],[[14095,15225],[50,80]],[[14145,15305],[10,-3]],[[14155,15302],[21,-6]],[[14176,15296],[4,6]],[[14180,15302],[5,10]],[[14185,15312],[5,6]],[[14190,15318],[25,10]],[[14215,15328],[0,-7]],[[14215,15321],[0,-6]],[[14215,15315],[9,-3]],[[14224,15312],[0,-68]],[[14224,15244],[20,-3]],[[14244,15241],[14,16]],[[14258,15257],[8,3]],[[14266,15260],[5,-48]],[[14271,15212],[-5,-3]],[[14266,15209],[-4,-7]],[[14262,15202],[-7,-3]],[[14255,15199],[-14,-58]],[[14241,15141],[5,-10]],[[14246,15131],[12,10]],[[14258,15141],[24,0]],[[14282,15141],[37,58]],[[14319,15199],[5,3]],[[14324,15202],[3,13]],[[14327,15215],[6,3]],[[14333,15218],[2,3]],[[14335,15221],[6,4]],[[14341,15225],[30,32]],[[14371,15257],[5,-3]],[[14376,15254],[4,-13]],[[14380,15241],[5,-3]],[[14385,15238],[15,-17]],[[14400,15221],[5,-3]],[[14405,15218],[0,-25]],[[14405,15193],[-5,-7]],[[14400,15186],[-10,-13]],[[14390,15173],[-10,-3]],[[14380,15170],[0,-4]],[[14380,15166],[-9,-3]],[[14371,15163],[76,-41]],[[14447,15122],[5,-7]],[[14452,15115],[-5,-23]],[[14447,15092],[-9,-3]],[[14438,15089],[0,-6]],[[14438,15083],[5,-4]],[[14443,15079],[14,-51]],[[14457,15028],[18,-4]],[[14475,15024],[13,-93],[39,-33],[47,0]],[[14574,14898],[20,3]],[[14594,14901],[9,-9]],[[14603,14892],[5,-7]],[[14608,14885],[0,-35]],[[14608,14850],[-5,-10]],[[14603,14840],[-31,-32],[2,-46]],[[14574,14762],[4,-3]],[[14578,14759],[14,-35]],[[14592,14724],[19,-3]],[[14611,14721],[41,9]],[[14652,14730],[6,4]],[[14658,14734],[14,0]],[[14672,14734],[5,-4]],[[14677,14730],[6,-16]],[[14683,14714],[9,-3]],[[14692,14711],[30,7],[8,74],[25,3]],[[14755,14795],[8,-3]],[[14763,14792],[40,54]],[[14803,14846],[16,4]],[[14819,14850],[1,7]],[[14820,14857],[14,3]],[[14834,14860],[25,19]],[[14859,14879],[0,3]],[[14859,14882],[-6,68]],[[14853,14950],[22,0]],[[14875,14950],[0,-3]],[[14875,14947],[9,0]],[[14884,14947],[27,-7]],[[14911,14940],[12,4]],[[14923,14944],[17,25]],[[14940,14969],[5,4]],[[14945,14973],[0,22]],[[14945,14995],[0,13]],[[14945,15008],[5,7]],[[14950,15015],[4,3]],[[14954,15018],[21,13]],[[14975,15031],[25,6]],[[15000,15037],[11,3]],[[15011,15040],[25,-6]],[[15036,15034],[25,19]],[[15061,15053],[4,3]],[[15065,15056],[27,30]],[[15092,15086],[4,3]],[[15096,15089],[4,6]],[[15100,15095],[3,7]],[[15103,15102],[62,32]],[[15165,15134],[6,4]],[[15171,15138],[36,51]],[[15207,15189],[7,0]],[[15214,15189],[17,39]],[[15231,15228],[-5,6]],[[15226,15234],[5,7]],[[15231,15241],[7,23]],[[15238,15264],[35,0]],[[15273,15264],[19,-4]],[[15292,15260],[20,-35]],[[15312,15225],[9,3]],[[15321,15228],[16,13]],[[15337,15241],[17,3]],[[15354,15244],[12,-6]],[[15366,15238],[7,3]],[[15373,15241],[42,16]],[[15415,15257],[9,-3]],[[15424,15254],[44,6]],[[15468,15260],[11,-3]],[[15479,15257],[29,-3]],[[15508,15254],[11,3]],[[15519,15257],[-1,23]],[[15518,15280],[8,-4]],[[15526,15276],[14,10]],[[15540,15286],[4,3]],[[15544,15289],[19,20]],[[15563,15309],[5,3]],[[15568,15312],[0,9]],[[15568,15321],[-3,0],[-2,14]],[[15563,15335],[-17,51]],[[15546,15386],[-8,-3]],[[15538,15383],[-19,0]],[[15519,15383],[-14,-3]],[[15505,15380],[-7,-13]],[[15498,15367],[-19,-3]],[[15479,15364],[-59,-10]],[[15420,15354],[-5,3]],[[15415,15357],[0,3]],[[15415,15360],[-3,-12]],[[15412,15348],[0,-11]],[[15412,15337],[-8,-2]],[[15404,15335],[-2,-5]],[[15402,15330],[-25,3]],[[15377,15333],[-29,8]],[[15348,15341],[-2,3]],[[15346,15344],[0,4]],[[15346,15348],[0,6]],[[15346,15354],[0,3]],[[15346,15357],[2,3]],[[15348,15360],[29,-6]],[[15377,15354],[11,3]],[[15388,15357],[-6,29]],[[15382,15386],[-5,6]],[[15377,15392],[-4,23]],[[15373,15415],[-5,7]],[[15368,15422],[0,3]],[[15368,15425],[5,10]],[[15373,15435],[4,45]],[[15377,15480],[-4,0]],[[15373,15480],[0,7]],[[15373,15487],[-5,6]],[[15368,15493],[0,10]],[[15368,15503],[5,3]],[[15373,15506],[4,13]],[[15377,15519],[7,6]],[[15384,15525],[14,29]],[[15398,15554],[6,1]],[[15404,15555],[25,-1]],[[15429,15554],[0,13]],[[15429,15567],[0,3]],[[15429,15570],[-16,0]],[[15413,15570],[-1,7]],[[15412,15577],[-5,3]],[[15407,15580],[-19,26]],[[15388,15606],[-14,-4]],[[15374,15602],[3,-16]],[[15377,15586],[5,-6]],[[15382,15580],[0,-10]],[[15382,15570],[-8,-6]],[[15374,15564],[0,-3]],[[15374,15561],[-6,-10]],[[15368,15551],[-19,-23]],[[15349,15528],[-3,-6]],[[15346,15522],[-54,25]],[[15292,15547],[-5,4]],[[15287,15551],[-28,94]],[[15259,15645],[19,9]],[[15278,15654],[9,20]],[[15287,15674],[5,3]],[[15292,15677],[35,16]],[[15327,15693],[16,4]],[[15343,15697],[-70,19],[-5,84],[25,16]],[[15293,15816],[-9,3]],[[15284,15819],[-2,36]],[[15282,15855],[11,3]],[[15293,15858],[3,71],[-34,10]],[[15262,15939],[-24,3]],[[15238,15942],[0,3]],[[15238,15945],[-3,3]],[[15235,15948],[-28,30]],[[15207,15978],[-4,3]],[[15203,15981],[-35,25]],[[15168,16006],[-11,-3]],[[15157,16003],[39,16]],[[15196,16019],[18,-2]],[[15214,16017],[12,-11]],[[15226,16006],[12,-3]],[[15238,16003],[58,-6]],[[15296,15997],[-9,3]],[[15287,16000],[0,22]],[[15287,16022],[5,4]],[[15292,16026],[6,12]],[[15298,16038],[26,-2]],[[15324,16036],[13,-17]],[[15337,16019],[20,-2]],[[15357,16017],[42,19]],[[15399,16036],[21,9]],[[15420,16045],[0,10]],[[15420,16055],[-5,29]],[[15415,16084],[-3,16]],[[15412,16100],[1,4]],[[15413,16104],[16,19]],[[15429,16123],[15,3]],[[15444,16126],[0,-3]],[[15444,16123],[21,6]],[[15465,16129],[-2,13]],[[15463,16142],[-4,3]],[[15459,16145],[4,20]],[[15463,16165],[2,1]],[[15465,16166],[54,57]],[[15519,16223],[14,-10]],[[15533,16213],[0,-3]],[[15533,16210],[11,-3]],[[15544,16207],[57,-49]],[[15601,16158],[4,-3]],[[15605,16155],[16,-26]],[[15621,16129],[14,-9]],[[15635,16120],[5,-16]],[[15640,16104],[4,-4]],[[15644,16100],[6,-10]],[[15650,16090],[11,-2]],[[15661,16088],[0,-23]],[[15661,16065],[5,-4]],[[15666,16061],[14,-64],[-47,6]],[[15633,16003],[-12,-3]],[[15621,16000],[-25,-49]],[[15596,15951],[-6,-3]],[[15590,15948],[-11,3]],[[15579,15951],[-8,-3]],[[15571,15948],[-3,-22]],[[15568,15926],[-3,-3]],[[15565,15923],[-14,-7]],[[15551,15916],[-11,-3]],[[15540,15913],[0,-45]],[[15540,15868],[0,-7]],[[15540,15861],[0,-3]],[[15540,15858],[9,-7]],[[15549,15851],[72,10]],[[15621,15861],[8,-3]],[[15629,15858],[1,-7]],[[15630,15851],[6,-3]],[[15636,15848],[0,3]],[[15636,15851],[10,4]],[[15646,15855],[8,0]],[[15654,15855],[15,0]],[[15669,15855],[63,74]],[[15732,15929],[7,3]],[[15739,15932],[5,10]],[[15744,15942],[3,9]],[[15747,15951],[0,7]],[[15747,15958],[-6,4]],[[15741,15962],[3,16]],[[15744,15978],[6,-4]],[[15750,15974],[-6,45]],[[15744,16019],[6,3]],[[15750,16022],[-3,23]],[[15747,16045],[0,4]],[[15747,16049],[45,-55]],[[15792,15994],[8,-4]],[[15800,15990],[38,-39]],[[15838,15951],[33,4]],[[15871,15955],[-24,26]],[[15847,15981],[-9,3]],[[15838,15984],[-8,13]],[[15830,15997],[-8,6]],[[15822,16003],[-20,23]],[[15802,16026],[-6,3]],[[15796,16029],[11,52]],[[15807,16081],[-2,-4]],[[15805,16077],[-30,33]],[[15775,16110],[-14,3]],[[15761,16113],[-14,-16]],[[15747,16097],[-3,3]],[[15744,16100],[-44,-10]],[[15700,16090],[-4,-2]],[[15696,16088],[-10,16]],[[15686,16104],[-4,6]],[[15682,16110],[-22,39]],[[15660,16149],[-10,6]],[[15650,16155],[-6,36]],[[15644,16191],[0,3]],[[15644,16194],[-8,10]],[[15636,16204],[-6,3]],[[15630,16207],[0,3]],[[15630,16210],[-6,3]],[[15624,16213],[-28,26]],[[15596,16239],[-6,4]],[[15590,16243],[-5,6]],[[15585,16249],[-16,3]],[[15569,16252],[-6,46]],[[15563,16298],[5,6]],[[15568,16304],[3,6]],[[15571,16310],[6,4]],[[15577,16314],[22,-10]],[[15599,16304],[6,3]],[[15605,16307],[27,48]],[[15632,16355],[3,4]],[[15635,16359],[0,-4]],[[15635,16355],[9,4]],[[15644,16359],[10,35]],[[15654,16394],[1,10]],[[15655,16404],[6,26]],[[15661,16430],[4,12]],[[15665,16442],[-4,23]],[[15661,16465],[5,4]],[[15666,16469],[0,12]],[[15666,16481],[-5,4]],[[15661,16485],[8,32]],[[15669,16517],[-8,3]],[[15661,16520],[35,13]],[[15696,16533],[4,3]],[[15700,16536],[11,23]],[[15711,16559],[8,3]],[[15719,16562],[25,17]],[[15744,16579],[0,2]],[[15744,16581],[6,43]],[[15750,16624],[-6,3]],[[15744,16627],[0,6]],[[15744,16633],[3,3]],[[15747,16636],[14,16]],[[15761,16652],[10,4]],[[15771,16656],[25,26]],[[15796,16682],[4,13]],[[15800,16695],[36,64],[5,81]],[[15841,16840],[6,6]],[[15847,16846],[8,14]],[[15855,16860],[-19,6]],[[15836,16866],[-6,7]],[[15830,16873],[-8,9]],[[15822,16882],[-1,32]],[[15821,16914],[12,3]],[[15833,16917],[9,11]],[[15842,16928],[19,3]],[[15861,16931],[14,9]],[[15875,16940],[6,4]],[[15881,16944],[-26,12]],[[15855,16956],[-14,4]],[[15841,16960],[6,48]],[[15847,17008],[8,4]],[[15855,17012],[-42,35],[-42,-65]],[[15771,16982],[-5,-3]],[[15766,16979],[-16,-3]],[[15750,16976],[-6,16]],[[15744,16992],[0,20]],[[15744,17012],[3,6]],[[15747,17018],[19,42]],[[15766,17060],[0,19]],[[15766,17079],[-22,23]],[[15744,17102],[-14,3]],[[15730,17105],[-25,3]],[[15705,17108],[-31,-6]],[[15674,17102],[0,-3]],[[15674,17099],[-14,-4]],[[15660,17095],[-3,-6]],[[15657,17089],[-3,-6]],[[15654,17083],[-5,-20]],[[15649,17063],[-9,-3]],[[15640,17060],[0,-20]],[[15640,17040],[9,-3]],[[15649,17037],[0,-3]],[[15649,17034],[11,-3]],[[15660,17031],[-3,-49]],[[15657,16982],[-3,-3]],[[15654,16979],[-25,-23]],[[15629,16956],[-5,4]],[[15624,16960],[-19,35]],[[15605,16995],[-4,-10]],[[15601,16985],[0,-16]],[[15601,16969],[4,-6]],[[15605,16963],[0,-10]],[[15605,16953],[-4,-13]],[[15601,16940],[-25,4]],[[15576,16944],[-5,3]],[[15571,16947],[-67,9],[-19,23],[-65,6]],[[15420,16985],[-5,4]],[[15415,16989],[-3,6]],[[15412,16995],[-14,4]],[[15398,16999],[-14,-71],[-35,-46]],[[15349,16882],[-3,-3]],[[15346,16879],[-3,-22]],[[15343,16857],[-6,-14]],[[15337,16843],[-41,-13],[-20,-41],[-5,-94],[42,-16]],[[15313,16679],[8,-4]],[[15321,16675],[25,-25]],[[15346,16650],[3,-3]],[[15349,16647],[-6,-39]],[[15343,16608],[-6,-4]],[[15337,16604],[-61,36],[-50,10]],[[15226,16650],[5,-7]],[[15231,16643],[4,-13]],[[15235,16630],[-14,-10]],[[15221,16620],[-14,-19]],[[15207,16601],[-4,-3]],[[15203,16598],[-53,-17]],[[15150,16581],[-5,-2]],[[15145,16579],[-20,-14]],[[15125,16565],[-14,-3]],[[15111,16562],[-4,-22]],[[15107,16540],[10,-7]],[[15117,16533],[28,-64]],[[15145,16469],[3,-4]],[[15148,16465],[0,-42]],[[15148,16423],[-11,-3]],[[15137,16420],[-17,-13]],[[15120,16407],[-9,3]],[[15111,16410],[-11,13]],[[15100,16423],[-8,3]],[[15092,16426],[-2,-9]],[[15090,16417],[-11,-3]],[[15079,16414],[-43,12]],[[15036,16426],[-10,-6]],[[15026,16420],[-47,39]],[[14979,16459],[5,6]],[[14984,16465],[2,13]],[[14986,16478],[-7,-3]],[[14979,16475],[-43,16],[33,55],[53,-3]],[[15022,16543],[4,3]],[[15026,16546],[5,10]],[[15031,16556],[5,3]],[[15036,16559],[15,58],[30,19]],[[15081,16636],[9,4]],[[15090,16640],[2,7]],[[15092,16647],[11,3]],[[15103,16650],[0,9]],[[15103,16659],[-7,7]],[[15096,16666],[0,9]],[[15096,16675],[7,4]],[[15103,16679],[3,0]],[[15106,16679],[11,3]],[[15117,16682],[0,16]],[[15117,16698],[-11,3]],[[15106,16701],[-3,-6]],[[15103,16695],[-24,-7]],[[15079,16688],[-12,-9]],[[15067,16679],[-6,3]],[[15061,16682],[18,52]],[[15079,16734],[21,0]],[[15100,16734],[20,41]],[[15120,16775],[-30,0]],[[15090,16775],[2,23]],[[15092,16798],[4,3]],[[15096,16801],[4,10]],[[15100,16811],[0,3]],[[15100,16814],[0,4]],[[15100,16818],[-24,-4]],[[15076,16814],[6,81]],[[15082,16895],[14,6]],[[15096,16901],[4,7]],[[15100,16908],[6,3]],[[15106,16911],[6,39]],[[15112,16950],[5,6]],[[15117,16956],[0,7]],[[15117,16963],[-6,3]],[[15111,16966],[-24,19]],[[15087,16985],[-5,4]],[[15082,16989],[-46,-19]],[[15036,16970],[-8,3]],[[15028,16973],[-44,39]],[[14984,17012],[-5,-4]],[[14979,17008],[-53,-19]],[[14926,16989],[-7,-10]],[[14919,16979],[0,-32]],[[14919,16947],[4,-7]],[[14923,16940],[0,-6]],[[14923,16934],[-4,-13]],[[14919,16921],[-25,-32]],[[14894,16889],[-5,-4]],[[14889,16885],[-9,4]],[[14880,16889],[0,9]],[[14880,16898],[0,13]],[[14880,16911],[-7,0]],[[14873,16911],[-3,-6]],[[14870,16905],[-4,-4]],[[14866,16901],[-2,-6]],[[14864,16895],[-5,-3]],[[14859,16892],[-14,-16]],[[14845,16876],[-26,3]],[[14819,16879],[0,-17]],[[14819,16862],[-14,7]],[[14805,16869],[-38,23]],[[14767,16892],[-12,3]],[[14755,16895],[12,-74],[-23,-81],[-86,16],[-20,-22]],[[14638,16734],[-5,-7]],[[14633,16727],[-25,-29]],[[14608,16698],[-6,-3]],[[14602,16695],[-24,3]],[[14578,16698],[-4,9]],[[14574,16707],[0,68]],[[14574,16775],[4,7]],[[14578,16782],[19,32]],[[14597,16814],[11,4]],[[14608,16818],[0,6]],[[14608,16824],[0,16]],[[14608,16840],[25,45]],[[14633,16885],[9,4]],[[14642,16889],[27,19]],[[14669,16908],[9,-3]],[[14678,16905],[5,12]],[[14683,16917],[6,4]],[[14689,16921],[28,116]],[[14717,17037],[5,3]],[[14722,17040],[0,7]],[[14722,17047],[-5,6]],[[14717,17053],[0,26]],[[14717,17079],[5,10]],[[14722,17089],[31,42]],[[14753,17131],[10,0]],[[14763,17131],[32,26]],[[14795,17157],[17,-3]],[[14812,17154],[8,12]],[[14820,17166],[5,4]],[[14825,17170],[3,6]],[[14828,17176],[5,3]],[[14833,17179],[0,4]],[[14833,17183],[-8,6]],[[14825,17189],[0,3]],[[14825,17192],[0,13]],[[14825,17205],[0,4]],[[14825,17209],[8,3]],[[14833,17212],[3,22]],[[14836,17234],[3,4]],[[14839,17238],[0,55]],[[14839,17293],[-3,12]],[[14836,17305],[0,10]],[[14836,17315],[3,6]],[[14839,17321],[20,30]],[[14859,17351],[5,6]],[[14864,17357],[2,10]],[[14866,17367],[4,3]],[[14870,17370],[5,10]],[[14875,17380],[0,9]],[[14875,17389],[0,33]],[[14875,17422],[11,3]],[[14886,17425],[33,65]],[[14919,17490],[0,3]],[[14919,17493],[-25,93]],[[14894,17586],[-5,7]],[[14889,17593],[-5,26]],[[14884,17619],[-4,7]],[[14880,17626],[-39,-4]],[[14841,17622],[-5,-7]],[[14836,17615],[-3,-19]],[[14833,17596],[-8,-3]],[[14825,17593],[0,-3]],[[14825,17590],[-5,-4]],[[14820,17586],[-6,4]],[[14814,17590],[-6,3]],[[14808,17593],[-13,61]],[[14795,17654],[25,4]],[[14820,17658],[0,3]],[[14820,17661],[13,3]],[[14833,17664],[0,10]],[[14833,17674],[-5,3]],[[14828,17677],[-69,39]],[[14759,17716],[-4,-3]],[[14755,17713],[0,22]],[[14755,17735],[4,3]],[[14759,17738],[0,23]],[[14759,17761],[-4,7]],[[14755,17768],[-31,6]],[[14724,17774],[-15,3]],[[14709,17777],[-10,-9]],[[14699,17768],[0,-13]],[[14699,17755],[23,-58]],[[14722,17697],[-5,-7]],[[14717,17690],[0,-4]],[[14717,17686],[7,-2]],[[14724,17684],[20,-14],[9,-77],[-48,-71]],[[14705,17522],[-13,-3]],[[14692,17519],[7,-26]],[[14699,17493],[-5,-10]],[[14694,17483],[-2,0]],[[14692,17483],[-25,4]],[[14667,17487],[-11,-13]],[[14656,17474],[0,-23]],[[14656,17451],[-7,3]],[[14649,17454],[-41,-55]],[[14608,17399],[-5,-3]],[[14603,17396],[-21,-23]],[[14582,17373],[-10,-3]],[[14572,17370],[-69,-16],[-31,-68]],[[14472,17286],[-11,3]],[[14461,17289],[-76,-6]],[[14385,17283],[-8,3]],[[14377,17286],[-1,7]],[[14376,17293],[-5,3]],[[14371,17296],[-39,29]],[[14332,17325],[-6,3]],[[14326,17328],[-14,13]],[[14312,17341],[-33,-4]],[[14279,17337],[-8,-16]],[[14271,17321],[-9,-3]],[[14262,17318],[-16,-3]],[[14246,17315],[-31,6]],[[14215,17321],[-20,49]],[[14195,17370],[-10,-6]],[[14185,17364],[-1,-10]],[[14184,17354],[-8,3]],[[14176,17357],[0,16]],[[14176,17373],[4,10]],[[14180,17383],[-45,91],[-58,32]],[[14077,17506],[-9,0]],[[14068,17506],[-19,13]],[[14049,17519],[-9,-4]],[[14040,17515],[33,46]],[[14073,17561],[-13,3]],[[14060,17564],[-56,13],[24,58]],[[14028,17635],[-24,3]],[[14004,17638],[-9,46]],[[13995,17684],[-6,35]],[[13989,17719],[0,29]],[[13989,17748],[3,9]],[[13992,17757],[0,20]],[[13992,17777],[3,3]],[[13995,17780],[-3,152]],[[13992,17932],[6,3]],[[13998,17935],[9,7]],[[14007,17942],[8,0]],[[14015,17942],[8,13]],[[14023,17955],[1,7]],[[14024,17962],[11,22]],[[14035,17984],[3,3]],[[14038,17987],[5,10]],[[14043,17997],[5,6]],[[14048,18003],[4,16]],[[14052,18019],[32,4]],[[14084,18023],[67,19],[25,42]],[[14176,18084],[4,3]],[[14180,18087],[5,13]],[[14185,18100],[5,4]],[[14190,18104],[23,41]],[[14213,18145],[8,4]],[[14221,18149],[3,7]],[[14224,18156],[5,9]],[[14229,18165],[0,10]],[[14229,18175],[-8,2]],[[14221,18177],[3,46]],[[14224,18223],[17,10]],[[14241,18233],[46,-39]],[[14287,18194],[9,3]],[[14296,18197],[80,0]],[[14376,18197],[9,3]],[[14385,18200],[1,65]],[[14386,18265],[-9,3]],[[14377,18268],[-1,55]],[[14376,18323],[-5,10]],[[14371,18333],[0,10]],[[14371,18343],[6,42]],[[14377,18385],[-1,35]],[[14376,18420],[-5,6]],[[14371,18426],[-47,84]],[[14324,18510],[-5,10]],[[14319,18520],[-18,55]],[[14301,18575],[-11,3]],[[14290,18578],[-49,26]],[[74816,41270],[178,-106],[129,-57]],[[75123,41107],[178,-112]],[[75301,40995],[38,-36]],[[75339,40959],[28,-81]],[[75367,40878],[-14,-149]],[[75353,40729],[-70,-156],[-16,-62]],[[75267,40511],[-12,-97]],[[75255,40414],[-10,-199],[-25,-159]],[[75220,40056],[-70,-157],[-19,-157],[32,-125],[51,-80]],[[75214,39537],[62,-73],[266,-286],[106,-122]],[[75648,39056],[76,-104],[81,-136],[63,-38],[89,-107]],[[75957,38671],[12,-28]],[[75969,38643],[35,-105],[-16,-121]],[[75988,38417],[-3,-99],[22,-161]],[[76007,38157],[64,-160],[15,-60]],[[76086,37937],[42,-184],[39,-79],[125,-199]],[[75358,30429],[0,-135],[-7,-167]],[[75351,30127],[-17,-95],[-98,-202]],[[75236,29830],[-73,-79],[-183,-109]],[[74980,29642],[-195,-49],[-172,-86],[-86,-21]],[[74527,29486],[-118,-6],[-116,16]],[[74293,29496],[-54,21]],[[74239,29517],[-194,109]],[[74045,29626],[-97,70]],[[73948,29696],[-218,229]],[[73730,29925],[-69,60],[-243,141]],[[73418,30126],[-53,20]],[[73365,30146],[-116,9]],[[73249,30155],[-84,-19],[-142,-83]],[[73023,30053],[-103,-50],[-117,-71],[-136,-42]],[[72667,29890],[-120,-10],[-87,-17],[-170,-80]],[[72290,29783],[-52,-13]],[[72238,29770],[-94,5],[-42,33]],[[72102,29808],[-4,22]],[[72098,29830],[-277,87]],[[71821,29917],[-142,82],[-103,51]],[[71576,30050],[-95,76],[-173,185]],[[71308,30311],[-115,106]],[[71193,30417],[-135,89]],[[73193,42692],[167,-137],[69,-48],[104,-50]],[[73533,42457],[141,-86],[104,-48]],[[73778,42323],[141,-86]],[[73919,42237],[104,-47],[119,-71]],[[74142,42119],[100,-47]],[[74242,42072],[47,-30],[54,-63]],[[74343,41979],[33,-112]],[[74376,41867],[-9,-57],[-60,-139],[-4,-52]],[[74303,41619],[14,-52]],[[74317,41567],[34,-37],[148,-99]],[[74499,41431],[130,-59],[187,-102]],[[93666,62019],[0,-3]],[[93666,62016],[9,-3]],[[93675,62013],[0,-3]],[[93675,62010],[12,-13]],[[93687,61997],[29,-10]],[[93716,61987],[23,-6]],[[93739,61981],[5,3]],[[93744,61984],[28,-6]],[[93772,61978],[1,0]],[[93773,61978],[46,3]],[[93819,61981],[9,-3]],[[93828,61978],[6,-4]],[[93834,61974],[63,0]],[[93897,61974],[25,-3]],[[93922,61971],[0,3]],[[93922,61974],[23,-6]],[[93945,61968],[0,3]],[[93945,61971],[28,-3]],[[93973,61968],[5,0]],[[93978,61968],[29,3]],[[94007,61971],[0,3]],[[94007,61974],[94,7]],[[94101,61981],[5,0]],[[94106,61981],[14,3]],[[94120,61984],[1,3]],[[94121,61987],[8,-3]],[[94129,61984],[0,-3]],[[94129,61981],[30,-3]],[[94159,61978],[22,3]],[[94181,61981],[29,3]],[[94210,61984],[55,3]],[[94265,61987],[51,10]],[[94316,61997],[32,0]],[[94348,61997],[31,-3]],[[94379,61994],[18,-7]],[[94397,61987],[21,-6]],[[94418,61981],[0,-3]],[[94418,61978],[28,-4]],[[94446,61974],[0,4]],[[94446,61978],[53,3]],[[94499,61981],[12,0]],[[94511,61981],[18,3]],[[94529,61984],[0,3]],[[94529,61987],[14,4]],[[94543,61991],[9,12]],[[94552,62003],[16,-6]],[[94568,61997],[14,-6]],[[94582,61991],[15,-7]],[[94597,61984],[0,-3]],[[94597,61981],[22,6]],[[94619,61987],[8,-6]],[[94627,61981],[20,3]],[[94647,61984],[2,7]],[[94649,61991],[23,-46]],[[94672,61945],[0,-10]],[[94672,61935],[-23,-35]],[[94649,61900],[-2,-9]],[[94647,61891],[-8,-7]],[[94639,61884],[0,-7]],[[94639,61877],[-6,-6]],[[94633,61871],[-9,-7]],[[94624,61864],[-11,-3]],[[94613,61861],[0,-3]],[[94613,61858],[0,-38]],[[94613,61820],[0,-14]],[[94613,61806],[9,-13]],[[94622,61793],[11,-16]],[[94633,61777],[14,-23]],[[94647,61754],[5,-6]],[[94652,61748],[22,-16]],[[94674,61732],[15,-13]],[[94689,61719],[10,-6]],[[94699,61713],[4,-7]],[[94703,61706],[25,-9]],[[94728,61697],[7,-7]],[[94735,61690],[15,-7]],[[94750,61683],[0,-3]],[[94750,61680],[25,-6]],[[94775,61674],[5,-7]],[[94780,61667],[23,-6]],[[94803,61661],[0,-3]],[[94803,61658],[11,-4]],[[94814,61654],[41,-9]],[[94855,61645],[0,-3]],[[94855,61642],[26,-4]],[[94881,61638],[3,-7]],[[94884,61631],[72,-2]],[[94956,61629],[11,2]],[[94967,61631],[20,-2]],[[94987,61629],[0,2]],[[94987,61631],[21,20]],[[95008,61651],[14,19]],[[95022,61670],[43,-6]],[[95065,61664],[0,-3]],[[95065,61661],[25,-3]],[[95090,61658],[0,3]],[[95090,61661],[22,-7]],[[95112,61654],[0,-3]],[[95112,61651],[-40,-3]],[[95072,61648],[0,3]],[[95072,61651],[-52,7]],[[95020,61658],[-12,-36]],[[95008,61622],[12,-7]],[[95020,61615],[9,-9]],[[95029,61606],[36,-7]],[[95065,61599],[2,-6]],[[95067,61593],[5,10]],[[95072,61603],[0,16]],[[95072,61619],[6,7]],[[95078,61626],[12,-43]],[[95090,61583],[25,-3]],[[95115,61580],[36,-6]],[[95151,61574],[16,-3]],[[95167,61571],[1,-11]],[[95168,61560],[14,-2]],[[95182,61558],[19,-7]],[[95201,61551],[33,-3]],[[95234,61548],[0,3]],[[95234,61551],[20,-3]],[[95254,61548],[0,-4]],[[95254,61544],[69,-3]],[[95323,61541],[0,-3]],[[95323,61538],[42,3]],[[95365,61541],[0,3]],[[95365,61544],[9,4]],[[95374,61548],[3,0]],[[95377,61548],[38,0]],[[95415,61548],[12,-7]],[[95427,61541],[8,-3]],[[95435,61538],[0,-3]],[[95435,61535],[14,-19]],[[95449,61516],[2,-10]],[[95451,61506],[33,-3]],[[95484,61503],[21,-10]],[[95505,61493],[15,-20]],[[95520,61473],[0,-3]],[[95520,61470],[9,-3]],[[95529,61467],[11,-19]],[[95540,61448],[14,-13]],[[95554,61435],[1,-10]],[[95555,61425],[32,-13]],[[95587,61412],[0,-3]],[[95587,61409],[3,0]],[[95590,61409],[9,-42]],[[95599,61367],[6,-13]],[[95605,61354],[5,-10]],[[95610,61344],[20,-22]],[[95630,61322],[21,-16]],[[95651,61306],[31,-23]],[[95682,61283],[12,-52]],[[95694,61231],[7,-3]],[[95701,61228],[14,-13]],[[95715,61215],[28,-7]],[[95743,61208],[0,-2]],[[95743,61206],[9,0]],[[95752,61206],[19,-7]],[[95771,61199],[54,-7]],[[95825,61192],[0,3]],[[95825,61195],[7,-3]],[[95832,61192],[0,-3]],[[95832,61189],[42,3]],[[95874,61192],[3,-6]],[[95877,61186],[19,-3]],[[95896,61183],[0,-4]],[[95896,61179],[20,-22]],[[95916,61157],[12,-20]],[[95928,61137],[8,-3]],[[95936,61134],[11,-6]],[[95947,61128],[38,-10]],[[95985,61118],[14,-6]],[[95999,61112],[23,-4]],[[96022,61108],[22,-6]],[[96044,61102],[28,-7]],[[96072,61095],[6,-12]],[[96078,61083],[11,-20]],[[96089,61063],[0,-6]],[[96089,61057],[6,-4]],[[96095,61053],[8,-13]],[[96103,61040],[22,-3]],[[96125,61037],[3,-6]],[[96128,61031],[38,-7]],[[96166,61024],[0,-3]],[[96166,61021],[9,-3]],[[96175,61018],[0,-22]],[[96175,60996],[-6,-14]],[[96169,60982],[-3,-13]],[[96166,60969],[-5,-3]],[[96161,60966],[0,-9]],[[96161,60957],[0,-20]],[[96161,60937],[5,-7]],[[96166,60930],[3,-6]],[[96169,60924],[6,-10]],[[96175,60914],[5,-16]],[[96180,60898],[20,-29]],[[96200,60869],[14,-10]],[[96214,60859],[14,-3]],[[96228,60856],[0,-3]],[[96228,60853],[23,-67]],[[96251,60786],[13,-39]],[[96264,60747],[15,-11]],[[96279,60736],[2,-5]],[[96281,60731],[23,-7]],[[96304,60724],[7,-7]],[[96311,60717],[11,-2]],[[96322,60715],[0,-7]],[[96322,60708],[14,-4]],[[96336,60704],[0,-3]],[[96336,60701],[6,-9]],[[96342,60692],[0,-16]],[[96342,60676],[14,-13]],[[96356,60663],[6,-14]],[[96362,60649],[24,-16]],[[96386,60633],[6,-6]],[[96392,60627],[44,-10]],[[96436,60617],[0,-3]],[[96436,60614],[15,0]],[[96451,60614],[0,-3]],[[96451,60611],[34,-3]],[[96485,60608],[7,-7]],[[96492,60601],[25,-6]],[[96517,60595],[0,-3]],[[96517,60592],[25,-7]],[[96542,60585],[21,-13]],[[96563,60572],[30,-7]],[[96593,60565],[0,-3]],[[96593,60562],[24,-3]],[[96617,60559],[10,-6]],[[96627,60553],[19,-13]],[[96646,60540],[0,6]],[[96646,60546],[20,3]],[[96666,60549],[8,7]],[[96674,60556],[21,3]],[[96695,60559],[0,3]],[[96695,60562],[23,3]],[[96718,60565],[11,7]],[[96729,60572],[19,9]],[[96748,60581],[0,4]],[[96748,60585],[34,3]],[[96782,60588],[6,7]],[[96788,60595],[31,6]],[[96819,60601],[35,16]],[[96854,60617],[31,10]],[[96885,60627],[16,3]],[[96901,60630],[9,3]],[[96910,60633],[20,10]],[[96930,60643],[14,3]],[[96944,60646],[16,10]],[[96960,60656],[20,9]],[[96980,60665],[0,4]],[[96980,60669],[25,10]],[[97005,60679],[9,9]],[[97014,60688],[21,7]],[[97035,60695],[0,3]],[[97035,60698],[20,13]],[[97055,60711],[0,9]],[[97055,60720],[2,16]],[[97057,60736],[28,4]],[[97085,60740],[31,16]],[[97116,60756],[1,7]],[[97117,60763],[8,3]],[[97125,60766],[0,3]],[[97125,60769],[24,19]],[[97149,60788],[11,20]],[[97160,60808],[3,13]],[[97163,60821],[14,3]],[[97177,60824],[14,19]],[[97191,60843],[25,13]],[[97216,60856],[1,0]],[[97217,60856],[11,3]],[[97228,60859],[3,17]],[[97231,60876],[0,3]],[[97231,60879],[0,7]],[[97231,60886],[0,19]],[[97231,60905],[0,3]],[[97231,60908],[7,3]],[[97238,60911],[11,8]],[[97249,60919],[0,2]],[[97249,60921],[14,58]],[[97263,60979],[4,65]],[[97267,61044],[14,35]],[[97281,61079],[0,4]],[[97281,61083],[7,3]],[[97288,61086],[0,16]],[[97288,61102],[0,3]],[[97288,61105],[10,16]],[[97298,61121],[10,7]],[[97308,61128],[0,3]],[[97308,61131],[6,3]],[[97314,61134],[5,13]],[[97319,61147],[20,39]],[[97339,61186],[20,32]],[[97359,61218],[8,4]],[[97367,61222],[5,6]],[[97372,61228],[22,32]],[[97394,61260],[15,23]],[[97409,61283],[13,3]],[[97422,61286],[0,10]],[[97422,61296],[22,32]],[[97444,61328],[9,22]],[[97453,61350],[9,7]],[[97462,61357],[2,13]],[[97464,61370],[0,7]],[[97464,61377],[0,3]],[[97464,61380],[5,13]],[[97469,61393],[6,12]],[[97475,61405],[8,4]],[[97483,61409],[0,3]],[[97483,61412],[12,20]],[[97495,61432],[9,25]],[[97504,61457],[10,10]],[[97514,61467],[19,20]],[[97533,61487],[15,22]],[[97548,61509],[6,16]],[[97554,61525],[11,26]],[[97565,61551],[0,4]],[[97565,61555],[13,3]],[[97578,61558],[15,16]],[[97593,61574],[0,6]],[[97593,61580],[0,3]],[[97593,61583],[-7,7]],[[97586,61590],[0,55]],[[97586,61645],[7,6]],[[97593,61651],[0,3]],[[97593,61654],[7,7]],[[97600,61661],[4,9]],[[97604,61670],[27,10]],[[97631,61680],[14,29]],[[97645,61709],[6,7]],[[97651,61716],[0,3]],[[97651,61719],[25,10]],[[97676,61729],[8,6]],[[97684,61735],[22,3]],[[97706,61738],[0,4]],[[97706,61742],[23,19]],[[97729,61761],[11,32]],[[97740,61793],[9,4]],[[97749,61797],[0,-4]],[[97749,61793],[7,-3]],[[97756,61790],[0,-3]],[[97756,61787],[11,3]],[[97767,61790],[0,3]],[[97767,61793],[14,13]],[[97781,61806],[9,23]],[[97790,61829],[9,3]],[[97799,61832],[13,16]],[[97812,61848],[5,7]],[[97817,61855],[3,25]],[[97820,61880],[12,0]],[[97832,61880],[0,-12]],[[97832,61868],[0,-52]],[[97832,61816],[8,-16]],[[97840,61800],[11,-3]],[[97851,61797],[0,3]],[[97851,61800],[1,-3]],[[97852,61797],[19,-16]],[[97871,61781],[6,-4]],[[97877,61777],[0,-3]],[[97877,61774],[8,-4]],[[97885,61770],[5,-6]],[[97890,61764],[12,4]],[[97902,61768],[29,-26]],[[97931,61742],[6,-36]],[[97937,61706],[4,-32]],[[97941,61674],[22,-7]],[[97963,61667],[8,-9]],[[97971,61658],[8,-7]],[[97979,61651],[0,-3]],[[97979,61648],[0,-3]],[[97979,61645],[3,-7]],[[97982,61638],[9,-3]],[[97991,61635],[0,-6]],[[97991,61629],[44,-7]],[[98035,61622],[55,-3]],[[98090,61619],[14,-7]],[[98104,61612],[14,7]],[[98118,61619],[6,10]],[[98124,61629],[11,6]],[[98135,61635],[0,3]],[[98135,61638],[59,16]],[[98194,61654],[14,-16]],[[98208,61638],[46,0]],[[98254,61638],[10,10]],[[98264,61648],[10,3]],[[98274,61651],[0,3]],[[98274,61654],[31,13]],[[98305,61667],[5,-6]],[[98310,61661],[43,13]],[[98353,61674],[8,0]],[[98361,61674],[8,3]],[[98369,61677],[0,3]],[[98369,61680],[9,3]],[[98378,61683],[0,4]],[[98378,61687],[27,0]],[[98405,61687],[36,-4]],[[98441,61683],[59,-19]],[[98500,61664],[0,-3]],[[98500,61661],[9,-7]],[[98509,61654],[-12,-6]],[[98497,61648],[3,-3]],[[98500,61645],[6,-7]],[[98506,61638],[0,-3]],[[98506,61635],[5,0]],[[98511,61635],[0,-4]],[[98511,61631],[20,-9]],[[98531,61622],[21,-7]],[[98552,61615],[31,0]],[[98583,61615],[14,14]],[[98597,61629],[6,2]],[[98603,61631],[0,4]],[[98603,61635],[42,3]],[[98645,61638],[2,7]],[[98647,61645],[15,6]],[[98662,61651],[5,7]],[[98667,61658],[20,-27]],[[98687,61631],[0,-5]],[[98687,61626],[0,-17]],[[98687,61609],[0,-3]],[[98687,61606],[2,0]],[[98689,61606],[-2,-35]],[[98687,61571],[-20,-55]],[[98667,61516],[-6,-27]],[[98661,61489],[-5,-9]],[[98656,61480],[-3,-29]],[[98653,61451],[-6,-16]],[[98647,61435],[-11,-10]],[[98636,61425],[0,-61]],[[98636,61364],[0,-10]],[[98636,61354],[-20,-61]],[[98616,61293],[-5,-14]],[[98611,61279],[-16,-41]],[[98595,61238],[-9,-7]],[[98586,61231],[-23,-80]],[[98563,61151],[-5,-23]],[[98558,61128],[0,-13]],[[98558,61115],[3,-7]],[[98561,61108],[22,-58]],[[98583,61050],[14,-35]],[[98597,61015],[5,-3]],[[98602,61012],[1,-7]],[[98603,61005],[8,-9]],[[98611,60996],[1,-7]],[[98612,60989],[24,-16]],[[98636,60973],[0,-7]],[[98636,60966],[0,-13]],[[98636,60953],[0,-6]],[[98636,60947],[5,0]],[[98641,60947],[6,-36]],[[98647,60911],[6,-6]],[[98653,60905],[0,-3]],[[98653,60902],[8,-7]],[[98661,60895],[12,-13]],[[98673,60882],[19,-16]],[[98692,60866],[0,-3]],[[98692,60863],[16,-13]],[[98708,60850],[15,-20]],[[98723,60830],[16,-16]],[[98739,60814],[8,-9]],[[98747,60805],[11,-13]],[[98758,60792],[20,-17]],[[98778,60775],[6,-3]],[[98784,60772],[0,-6]],[[98784,60766],[9,-26]],[[98793,60740],[4,-6]],[[98797,60734],[20,-107]],[[98817,60627],[8,-7]],[[98825,60620],[3,0]],[[98828,60620],[0,-6]],[[98828,60614],[1,0]],[[98829,60614],[0,-3]],[[98829,60611],[5,0]],[[98834,60611],[0,-3]],[[98834,60608],[9,-4]],[[98843,60604],[5,-9]],[[98848,60595],[34,-10]],[[98882,60585],[7,-10]],[[98889,60575],[34,-3]],[[98923,60572],[27,-16]],[[98950,60556],[29,-7]],[[98979,60549],[0,-3]],[[98979,60546],[50,-3]],[[99029,60543],[0,-3]],[[99029,60540],[14,-3]],[[99043,60537],[27,-13]],[[99070,60524],[3,-3]],[[99073,60521],[42,-7]],[[99115,60514],[16,-7]],[[99131,60507],[29,-2]],[[99160,60505],[14,2]],[[99174,60507],[6,7]],[[99180,60514],[5,12]],[[99185,60526],[31,7]],[[99216,60533],[0,4]],[[99216,60537],[35,-4],[-8,-12]],[[99243,60521],[0,3]],[[99243,60524],[-47,0],[-14,-14]],[[99182,60510],[3,-12]],[[99185,60498],[20,7]],[[99205,60505],[30,-14]],[[99235,60491],[30,-3]],[[99265,60488],[1,-6]],[[99266,60482],[19,3]],[[99285,60485],[3,-7]],[[99288,60478],[5,-3]],[[99293,60475],[0,-3]],[[99293,60472],[17,0]],[[99310,60472],[6,3]],[[99316,60475],[11,-22]],[[99327,60453],[3,-7]],[[99330,60446],[16,-3]],[[99346,60443],[1,-7]],[[99347,60436],[7,-9]],[[99354,60427],[8,-13]],[[99362,60414],[4,-71]],[[99366,60343],[13,-20]],[[99379,60323],[0,-9]],[[99379,60314],[0,-36]],[[99379,60278],[7,-3]],[[99386,60275],[18,-19]],[[99404,60256],[3,-13]],[[99407,60243],[-3,-17]],[[99404,60226],[-5,-13]],[[99399,60213],[0,-29]],[[99399,60184],[3,0],[2,-23]],[[99404,60161],[0,-3]],[[99404,60158],[9,-3]],[[99413,60155],[5,-6]],[[99418,60149],[22,-4]],[[99440,60145],[4,-6]],[[99444,60139],[3,0]],[[99447,60139],[2,-6]],[[99449,60133],[8,0]],[[99457,60133],[32,-10]],[[99489,60123],[80,-10]],[[99569,60113],[56,-3]],[[99625,60110],[21,7]],[[99646,60117],[0,-4]],[[99646,60113],[24,-7]],[[99670,60106],[4,11]],[[99674,60117],[29,-4]],[[99703,60113],[0,4]],[[99703,60117],[78,3]],[[99781,60120],[14,9]],[[99795,60129],[50,0]],[[99845,60129],[10,-12]],[[99855,60117],[11,-4]],[[99866,60113],[0,-7]],[[99866,60106],[0,-3]],[[99866,60103],[0,-13]],[[99866,60090],[14,-44]],[[99880,60046],[0,32]],[[99880,60078],[1,45]],[[99881,60123],[5,-10]],[[99886,60113],[47,-10]],[[99933,60103],[0,-2]],[[99933,60101],[28,-4]],[[99961,60097],[26,4]],[[99987,60101],[49,-4]],[[100036,60097],[0,-3]],[[100036,60094],[42,-4]],[[100078,60090],[59,-6]],[[100137,60084],[63,-3]],[[100200,60081],[113,-10]],[[100313,60071],[32,3]],[[100345,60074],[14,-6]],[[100359,60068],[51,3]],[[100410,60071],[5,0]],[[100415,60071],[20,-9]],[[100435,60062],[19,-7]],[[100454,60055],[1,-6]],[[100455,60049],[24,-7]],[[100479,60042],[1,-7]],[[100480,60035],[55,-2]],[[100535,60033],[42,-7]],[[100577,60026],[5,0]],[[100582,60026],[9,-19]],[[100591,60007],[5,-4]],[[100596,60003],[1,-6]],[[100597,59997],[8,-6]],[[100605,59991],[58,-7]],[[100663,59984],[5,-3]],[[100668,59981],[17,6]],[[100685,59987],[58,-25]],[[100743,59962],[15,-7]],[[100758,59955],[33,3]],[[100791,59958],[-28,-6]],[[100763,59952],[0,-10]],[[100763,59942],[25,0]],[[100788,59942],[5,-10]],[[100793,59932],[14,0]],[[100807,59932],[0,-3]],[[100807,59929],[34,-3]],[[100841,59926],[1,-7]],[[100842,59919],[14,4]],[[100856,59923],[0,9]],[[100856,59932],[7,-3]],[[100863,59929],[29,-3]],[[100892,59926],[22,-7]],[[100914,59919],[14,4]],[[100928,59923],[5,6]],[[100933,59929],[2,19]],[[100935,59948],[7,-3]],[[100942,59945],[0,-3]],[[100942,59942],[-7,-29]],[[100935,59913],[7,-13]],[[100942,59900],[46,-4]],[[100988,59896],[0,-3]],[[100988,59893],[40,-6]],[[101028,59887],[0,-7]],[[101028,59880],[10,-3]],[[101038,59877],[0,-3]],[[101038,59874],[6,-3]],[[101044,59871],[11,-3]],[[101055,59868],[36,-4]],[[101091,59864],[113,4],[68,-36]],[[101272,59832],[12,-3]],[[101284,59829],[0,-4]],[[101284,59825],[23,-9]],[[101307,59816],[8,-7]],[[101315,59809],[50,-3]],[[101365,59806],[0,-3]],[[101365,59803],[21,-13]],[[101386,59790],[4,-6]],[[101390,59784],[2,-3]],[[101392,59781],[0,-4]],[[101392,59777],[18,-9]],[[101410,59768],[2,3]],[[101676,54581],[-139,-109],[-91,-88]],[[101446,54384],[-413,-457],[-301,-339]],[[100732,53588],[-114,-107],[-53,-31],[-144,-28]],[[100421,53422],[-179,-4],[-89,-10]],[[100153,53408],[-56,-15]],[[100097,53393],[-121,-62],[-107,-31]],[[99869,53300],[-175,-17],[-111,-36]],[[99583,53247],[-115,-98]],[[99468,53149],[-333,-376],[-112,-103]],[[99023,52670],[-77,-42],[-138,-33]],[[98808,52595],[-55,-18],[-119,-65],[-81,-26]],[[98553,52486],[-115,-1],[-57,15]],[[98381,52500],[-243,133]],[[98138,52633],[-81,78]],[[98057,52711],[-151,317],[-43,116],[-65,130],[-56,141]],[[97742,53415],[-78,156]],[[97664,53571],[-121,333]],[[97543,53904],[-49,186],[-57,134],[-31,130]],[[97406,54354],[-17,176],[-30,129],[-64,165],[-46,251]],[[97249,55075],[-107,77]],[[97142,55152],[-90,27],[-161,11]],[[96891,55190],[-229,-8]],[[96662,55182],[-453,5],[-145,27]],[[96064,55214],[-270,150],[-212,186]],[[95582,55550],[-151,88],[-69,60],[-195,204]],[[95167,55902],[-72,56],[-55,23]],[[95040,55981],[-145,4]],[[94895,55985],[-82,-18],[14,165]],[[94827,56132],[-13,96],[-22,56]],[[94792,56284],[-31,45]],[[94761,56329],[-100,97]],[[94661,56426],[-86,28]],[[94575,56454],[-146,91],[-50,68],[-267,96]],[[94112,56709],[-144,78],[-174,67]],[[93794,56854],[-122,-22],[-237,-33]],[[93435,56799],[-80,-27],[-120,-62],[-95,-23],[-99,-9]],[[93041,56678],[-235,2]],[[92806,56680],[-99,13]],[[92707,56693],[-62,18],[-120,61]],[[92525,56772],[-147,35]],[[92378,56807],[-251,14],[-61,15]],[[92066,56836],[-112,84]],[[91954,56920],[-81,152]],[[91873,57072],[-83,116],[-75,78]],[[91715,57266],[-164,60]],[[91551,57326],[-148,28],[-223,10],[-124,25]],[[91056,57389],[-246,129],[-139,88],[-105,49],[-115,74],[-128,62],[-140,86]],[[90183,57877],[-107,47],[-117,70],[-126,62]],[[89833,58056],[-64,54]],[[89769,58110],[-33,48]],[[89736,58158],[-23,57],[-6,126]],[[89707,58341],[25,87]],[[89732,58428],[68,82]],[[89800,58510],[233,150],[76,36]],[[90109,58696],[194,51],[121,61],[110,31],[145,14],[114,28],[78,50]],[[90871,58931],[164,144]],[[91035,59075],[176,106]],[[91211,59181],[190,171],[91,61],[53,178]],[[91545,59591],[64,135],[106,142]],[[91715,59868],[31,50],[100,248]],[[91846,60166],[78,161]],[[91924,60327],[158,218]],[[92082,60545],[31,50],[89,191]],[[92202,60786],[73,93]],[[92275,60879],[84,81]],[[92359,60960],[46,33]],[[92405,60993],[104,49],[141,85]],[[92650,61127],[128,60],[117,73]],[[92895,61260],[104,49],[141,86]],[[93140,61395],[104,49],[267,186],[-15,333]],[[93496,61963],[0,53]],[[93496,62016],[10,0]],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment