Basic US map using D3 and topojson. Each state gets colored and neighbors should never be the same color. Also has some mousein/mouseout functions for highlighting the state your cursor is over
forked from ericcoopey's block: D3 US Map with Hover
license: mit |
Basic US map using D3 and topojson. Each state gets colored and neighbors should never be the same color. Also has some mousein/mouseout functions for highlighting the state your cursor is over
forked from ericcoopey's block: D3 US Map with Hover
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.states { | |
stroke: #000; | |
fill-opacity: .7; | |
} | |
.symbol { | |
fill: steelblue; | |
fill-opacity: .8; | |
stroke: #fff; | |
} | |
.labs { | |
fill: #444; | |
pointer-events: none; | |
font-family: "Helvetica","Arial"; | |
font-weight: bold; | |
paint-order:"stroke"; | |
stroke: #cfe0e7; | |
stroke-width: .18; | |
stroke-opacity": .9; | |
stroke-linecap": butt; | |
stroke-linejoin: miter; | |
} | |
</style> | |
<body> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="https://d3js.org/topojson.v3.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-queue/3.0.7/d3-queue.js"></script> | |
<script> | |
function wrap(text, width) { | |
text.each(function() { | |
var text = d3.select(this), | |
words = text.text().split(/\s+/).reverse(), | |
word, | |
line = [], | |
lineNumber = 0, | |
lineHeight = 1.1, // ems | |
y = text.attr("y"), | |
dy = parseFloat(text.attr("dy")), | |
tspan = text.text(null).append("tspan").attr("x", 0).attr("y", y).attr("dy", dy + "em"); | |
while (word = words.pop()) { | |
line.push(word); | |
tspan.text(line.join(" ")); | |
if (tspan.node().getComputedTextLength() > width) { | |
line.pop(); | |
tspan.text(line.join(" ")); | |
line = [word]; | |
tspan = text.append("tspan").attr("x", -18).attr("y", y).attr("dy", ++lineNumber * lineHeight + dy + "em").text(word); | |
} | |
} | |
}); | |
} | |
var width = 635, | |
height = 600; | |
var radius = d3.scaleSqrt() | |
.domain([0, 1e6]) | |
.range([0, 10]); | |
var projection = d3.geoMercator() | |
.scale(width / 0.027 / Math.PI) | |
//.scale(100) | |
.translate([width / 0.36, height / 2.68855296]) | |
.rotate([0, 0, 35]) | |
// var projection = d3.geoMercator() | |
// .scale(width / 0.45 / Math.PI) | |
// .scale(500) | |
// .translate([width / 500, height / 840]) | |
// .rotate([74 + 30 / 60, -38 - 50 / 60]) | |
var path = d3.geoPath() | |
.projection(projection) | |
var color = d3.scaleOrdinal(d3.schemeCategory10); | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
d3.queue() | |
.defer(d3.json, "latestverion.json") | |
.defer(d3.json, "county-labels-2.json") | |
.defer(d3.json, "https://www.staging2.liberianobserver.com/wp-json/wp/v2/county?per_page=100") | |
.await(ready); | |
function ready(error, us, labels,wordpress) { | |
var countries = topojson.feature(us, us.objects.latestverion).features, | |
neighbors = topojson.neighbors(us.objects.latestverion.geometries); | |
// Compute the feature bounds and centroid | |
// var bounds = d3.geoBounds(countries), | |
// center = d3.geoCentroid(countries); | |
// // Compute the angular distance between bound corners | |
// var distance = d3.geoDistance(bounds[0], bounds[1]), | |
// scale = height / distance / Math.sqrt(2); | |
// Update the projection scale and centroid | |
// projection.scale(scale).center(center); | |
svg.selectAll("states") | |
.data(countries) | |
.enter().insert("path", ".graticule") | |
.attr("class", "states") | |
.attr("d", path) | |
.style("fill", function(d, i) { | |
return color(d.color = d3.max(neighbors[i], function(n) { return countries[n].color; }) + 1 | 0); | |
}) | |
.on('mouseover', function(d, i) { | |
console.log(wordpress) | |
var currentState = this; | |
d3.select(this). | |
style('fill-opacity', 1); | |
}) | |
.on('mouseout', function(d, i) { | |
d3.selectAll('path') | |
.style( | |
'fill-opacity',0.7 | |
); | |
}) | |
.on('click', function(d, i) { | |
console.log('yo', this); | |
}); | |
/* Calculated using https://github.com/andrewharvey/geojson-polygon-labels and tweaked*/ | |
svg.selectAll(".labs") | |
.data(labels.features) | |
.enter().append("text") | |
.attr("class", "labs") | |
.attr("transform", function(d) { return "translate(" + projection(d.geometry.coordinates) + ")"; }) | |
.attr("dy", "-0.15em") | |
.attr("dx", "-0.85em") | |
.text(function(d,i) { return (d.properties.CCNAME).toString(); }) | |
.call(wrap, 60); | |
} | |
</script> |
{"type":"Topology","arcs":[[[44329,110845],[-287,-1520],[-141,-30],[-3127,-835],[-257,-1262],[-457,-920],[311,-688],[-313,-631],[-484,-890],[-201,-832],[-1110,-1494],[-1027,-1981],[509,-1863],[1078,-832],[965,-1002],[-287,-977],[-768,-431],[-1505,-59],[-1449,313],[-1333,832],[-681,543],[-654,717],[-878,859],[-825,-30],[-854,-975],[-455,-1120],[-229,-403],[-513,-574],[-85,-287],[28,-660],[596,-85],[312,-287],[198,-544],[255,-373],[56,-315],[313,-402],[312,-199],[-1,-86],[-938,-375],[-682,-316],[-163,-94]],[[29558,90737],[0,173],[-24,0],[0,13],[-13,0],[0,36],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,37],[-12,0],[0,50],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-25,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,25],[-36,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,37],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,37],[-12,0],[0,25],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-7,0],[-5,0],[0,9],[0,16],[-12,0],[0,12],[-6,0],[-7,0],[0,7],[0,18],[-12,0],[0,49],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,50],[-12,0],[0,36],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,49],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,24],[-12,0],[0,25],[12,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,36],[-37,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-37,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,25],[-48,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-36,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-61,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-36,0],[0,25],[-25,0],[0,12],[-12,0],[0,25],[-24,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,24],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,25],[-12,0],[0,12],[-25,0],[0,24],[-24,0],[0,13],[12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-25,0],[0,24],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,37],[-12,0],[0,12],[-12,0],[0,49],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,-12],[-13,0],[0,12],[-24,0],[0,25],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-49,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-16,0],[-45,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,25],[12,0],[0,24],[13,0],[0,62],[12,0],[0,12],[24,0],[0,12],[12,0],[0,25],[-12,0],[0,12],[-24,0],[0,-12],[-25,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-24],[-36,0],[0,-12],[-12,0],[0,61],[-12,0],[0,12],[-110,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,24],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,24],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,24],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[12,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-25,0],[0,13],[-36,0],[0,24],[-24,0],[0,13],[-25,0],[0,24],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-25,0],[0,24],[-36,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-48,0],[0,12],[-13,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,-12],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-25,1],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[-37,0],[0,12],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-73,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-60,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-48,0],[0,12],[-25,0],[0,12],[-36,0],[0,25],[-37,0],[0,12],[-97,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-48,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,-12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[-1,12],[-12,0],[0,13],[-36,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,-13],[-73,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-21,0]],[[18596,98592],[-113,371],[-56,344],[-313,546],[-255,486],[-197,374],[28,344],[314,87],[227,229],[456,517],[-198,831],[171,231],[740,1349],[285,460],[1282,2008],[683,633],[683,660],[-422,2382],[33,2324],[229,1291],[428,1435],[1337,919]],[[23938,116413],[2272,-915],[1816,-1087],[1646,-1060],[993,-630],[2014,-2637],[538,-830],[1477,-745],[6767,2993],[1163,-1060],[1137,31],[568,372]],[[104636,127779],[-44,14],[-2710,-6889],[-1313,-3386],[112,-1177],[113,-745],[198,143],[993,-1462],[-200,-28],[1161,-2236],[396,-2065],[-344,-1894],[-59,-431],[-28,-115],[-574,-3070],[-200,-1694],[-1,-113],[-201,-1407]],[[101935,101224],[-3553,-1038],[-1876,-317],[-1335,830],[-1050,28],[-484,-146],[-882,-1120],[-1395,-1578],[-1424,-1982],[-512,-431],[-1366,-1150],[-1763,-575],[-1221,-232],[-3214,-1468],[-654,-316],[-1506,-316],[-56,831],[542,1090],[2167,4451],[142,286],[486,1980],[-2099,1662],[-2072,1662],[-1646,714]],[[77164,104089],[-167,1979],[-1617,1633],[-1619,285],[-3698,-2127],[-3383,-1324],[-711,-144],[-2302,-348],[-1248,543],[-1818,830],[-1530,2896],[-681,85],[-1676,256],[-597,-144],[-2104,-462],[-2303,-1065]],[[51710,106982],[-1134,917],[-681,543],[-2160,199],[-227,0],[-1932,427],[-736,1062],[-511,715]],[[44329,110845],[655,862],[1737,2384],[569,287],[2446,1294],[940,1464],[429,1378],[113,201],[999,2527],[57,114],[2191,2528],[1621,604],[1447,-945],[255,-516],[340,-659],[1559,-2321],[426,-86],[455,-85],[740,574],[1963,1552],[3070,1324],[1280,575],[853,345],[2956,1181],[1023,-27],[910,58],[113,0]],[[73476,125458],[3694,120],[2190,1294],[967,746],[371,488],[541,1006],[882,633],[882,171],[994,404],[2303,1007],[1792,949],[141,116],[115,487],[-84,487],[-10,15],[65,150]],[[88319,133531],[174,125],[28,34],[226,280],[255,701],[199,171],[236,204],[637,365],[402,231],[277,159],[40,22],[213,254],[95,-18],[16,-3],[33,-37],[88,-95],[106,-271],[36,-90],[67,-169],[119,-610],[49,-256],[132,10],[83,55],[129,86],[42,-4],[117,-12],[53,-5],[102,45],[60,26],[25,40],[143,226],[177,282],[377,231],[149,92],[23,215],[19,182],[426,334],[212,-11],[89,-43],[180,-87],[73,-35],[59,-9],[264,-43],[242,70],[63,71],[110,122],[47,-4],[437,-39],[99,-73],[314,-234],[77,8],[133,15],[5,0],[13,-26],[214,-436],[79,-438],[-73,-427],[60,-203],[614,-379],[113,6],[79,4],[151,8],[336,154],[889,168],[357,67],[148,28],[566,-154],[116,-32],[157,-74],[20,-10],[150,-72],[98,-46],[-5,-49],[-70,-836],[-66,-151],[-36,-82],[-1,-183],[211,-418],[0,-80],[6,-856],[481,-776],[362,-195],[288,-302],[496,-520],[150,-158],[92,-44],[210,-100],[868,27],[586,109],[201,-123],[7,-47],[97,-679],[4,-28],[130,-196],[250,-93],[44,-322],[136,-241],[32,-55]],[[23938,116413],[-170,631],[1479,691],[2133,806],[1450,748],[967,517],[2561,2357],[4380,3247],[3046,2873],[1138,1436],[315,1090],[-766,601],[-2528,1116],[-1619,314],[-964,515],[-313,344],[-170,200],[115,804],[32,1750],[87,1062],[57,631],[-27,1032],[-430,901],[-1158,418],[-2984,-149],[-1734,-202],[-823,-59],[-853,171],[-170,29],[-208,-30]],[[26781,140257],[-11,50],[-8,36],[218,117],[265,142],[44,76],[71,125],[454,316],[341,202],[18,10],[238,133],[1,3],[28,142],[22,14],[23,15],[126,86],[9,67],[20,162],[86,143],[426,-201],[14,160],[8,98],[5,59],[-20,62],[-17,53],[-19,57],[120,106],[80,71],[27,25],[-17,53],[-11,33],[-56,170],[30,37],[12,13],[128,152],[42,58],[102,143],[-33,136],[-9,35],[-14,60],[6,-1],[27,-7],[279,-71],[364,-93],[4,-1],[122,37],[163,51],[115,343],[85,115],[28,101],[29,99],[-114,172],[56,114],[29,58],[-26,203],[353,356],[73,74],[228,344],[141,315],[-37,90],[-30,71],[-17,41],[79,107],[6,8],[70,-81],[17,-19],[84,-97],[28,-33],[78,137],[37,64],[321,179],[247,137],[72,37],[213,108],[-85,258],[171,315],[198,316],[229,115],[100,-76],[12,-10],[16,37],[70,165],[199,0],[-4,46],[-24,240],[114,231],[64,28],[192,87],[-13,52],[-43,177],[198,28],[0,172],[169,39],[87,20],[1,172],[44,45],[41,41],[29,229],[0,4],[0,4],[0,37],[1,127],[7,42],[23,131],[232,141],[31,20],[19,11],[127,0],[16,1],[1,128],[1,15],[140,58],[44,0],[41,0],[57,86],[228,57],[7,9],[164,220],[24,-10],[174,-75],[228,115],[2,7],[24,99],[2,10],[28,10],[80,29],[206,74],[170,87],[-13,28],[-15,30],[79,213],[6,16],[59,79],[27,37],[56,-11],[255,-47],[83,111],[3,4],[172,109],[57,36],[48,-5],[207,-24],[397,-58],[882,318],[0,35],[5,915],[1,109],[33,6112]],[[38838,158605],[85,0],[157,-70],[951,-359],[57,-457],[794,-459],[681,-200],[315,430],[853,778],[654,458],[568,-85],[1251,145],[1365,375],[620,-2122],[568,-946],[1277,-974],[1362,-773],[653,-343],[1505,-286],[741,1063],[1136,547],[1024,460],[253,-1864],[168,-1119],[510,-803],[1306,-1002],[766,-1032],[709,-860],[880,-227],[341,114],[200,632],[541,345],[880,-28],[937,-113],[1677,-228],[1335,89],[1336,489],[1280,661],[1447,-1318],[1562,-657],[1929,-1031],[1847,-944],[681,-486],[141,-86],[3578,-1402],[169,-946],[424,-1635],[395,-1032],[-995,-604],[-910,-805],[-1822,-2125],[-1339,-2240],[-1083,-1722],[-626,-1034],[-460,-2784],[-6,-3930],[-30,-602]],[[18596,98592],[-16,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[12,0],[0,24],[12,0],[0,25],[-24,0],[0,12],[-12,0],[0,-49],[-12,0],[0,-12],[-49,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-85,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-36,0],[0,12],[-49,0],[0,25],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-61,0],[0,12],[-36,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-60,0],[0,13],[-13,0],[0,12],[-61,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-49,0],[0,24],[-61,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-37,0],[0,12],[-24,1],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-61,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,24],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-48,1],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-110,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-49,0],[0,-13],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-85,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,62],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,-13],[-36,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,62],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[-12,0],[0,13],[-12,0],[0,24],[8,0],[4,0],[0,12],[12,0],[0,13],[25,0],[0,12],[-13,0],[0,12],[13,0],[0,148],[-13,0],[0,-12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,37],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,5],[0,7],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,24],[-12,0],[0,50],[-12,0],[0,37],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,28],[0,9],[-5,0],[-7,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,111],[-12,0],[0,62],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,37],[12,0],[0,12],[13,0],[0,62],[12,0],[0,24],[12,0],[0,17],[0,8],[12,0],[0,24],[12,0],[0,25],[13,0],[0,12],[24,0],[0,25],[24,0],[0,12],[25,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,37],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[37,0],[0,12],[12,0],[0,13],[24,0],[0,24],[13,0],[0,25],[12,0],[0,24],[24,0],[0,25],[12,0],[0,25],[13,0],[0,37],[24,0],[0,12],[12,0],[0,37],[12,0],[0,12],[12,0],[0,37],[25,0],[0,25],[12,0],[0,12],[24,0],[0,25],[13,0],[0,12],[12,0],[0,25],[12,0],[0,12],[24,0],[0,37],[12,0],[0,24],[13,0],[0,37],[12,0],[0,25],[12,0],[0,37],[12,0],[0,74],[12,0],[0,12],[25,0],[0,25],[12,0],[0,-86],[12,0],[0,12],[37,0],[0,-25],[18,0],[67,0],[0,13],[61,0],[0,98],[-12,0],[0,12],[12,0],[0,37],[12,0],[0,12],[-12,0],[0,185],[-12,0],[0,136],[-12,0],[0,61],[12,0],[0,25],[-12,0],[0,24],[-13,0],[0,161],[-12,0],[0,110],[-12,0],[0,49],[-12,0],[0,50],[-12,0],[0,24],[-13,0],[0,25],[13,0],[0,123],[-13,0],[0,37],[-12,0],[0,37],[-12,0],[0,37],[-24,0],[0,49],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,37],[-12,0],[0,50],[-12,0],[0,36],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,50],[-13,0],[0,12],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,49],[12,0],[0,62],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,37],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,49],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,37],[-12,0],[0,49],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,49],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,37],[-12,0],[0,13],[-12,0],[0,24],[12,0],[0,37],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,10],[0,15],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,25],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-5,0],[-7,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,25],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-36,0],[0,25],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,25],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,25],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,-12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-30,0],[-7,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-10,0],[-14,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,24],[12,0],[0,50],[12,0],[0,16],[0,21],[-12,0],[0,8],[0,16],[-7,0],[-5,0],[0,14],[0,11],[-5,0],[-8,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[12,0],[0,24],[12,0],[0,99],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,25],[-24,0],[0,24],[-37,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,9],[55,3],[213,11],[83,4],[483,173],[228,0],[72,-73],[126,-128],[72,61],[98,82],[30,202],[142,201],[284,144],[255,118],[116,54],[283,1],[110,-22],[138,-28],[36,-7],[256,-144],[-6,64],[-39,403],[-8,84],[-2,14],[-1,10],[-322,379],[-18,21],[-226,402],[141,43],[142,43],[64,-22],[82,-27],[110,-37],[190,135],[95,67],[-78,343],[-7,30],[113,344],[119,-17],[280,-41],[126,-27],[131,-27],[20,47],[92,209],[-18,113],[-3,21],[-6,38],[0,169],[0,90],[18,22],[162,212],[18,24],[71,20],[192,52],[51,15],[283,29],[12,12],[30,31],[129,130],[48,95],[96,191],[27,73],[38,104],[20,53],[-57,517],[4,2],[110,55],[-43,29],[-42,29],[167,224],[4,5],[59,95],[8,14],[17,71],[20,85],[-17,16],[-342,321],[-140,487],[105,212],[66,133],[273,75],[39,11],[186,-56],[58,21],[67,24],[109,39],[6,2],[84,-5],[843,-52],[11,0],[-13,78],[-12,73],[-25,150],[-35,215],[-47,352],[-37,280],[115,373],[-199,143],[-18,179],[-11,108],[-278,249],[-204,181],[-141,315],[228,230],[114,115],[136,-85],[45,-28],[187,-116],[148,60],[137,54],[4,16],[52,186],[-8,12],[-10,15],[-237,346],[194,194],[19,19],[16,16],[102,62],[325,197],[-3,15],[-3,16],[-11,58],[-4,25],[-2,10],[-35,191],[20,23],[196,231],[99,118],[27,31],[-7,70],[-17,186],[-3,30],[12,20],[96,161],[30,51],[11,19],[14,24],[8,12],[-9,64],[-3,22],[-4,35],[-41,310],[23,23],[23,23],[210,212],[170,-56],[0,-10],[0,-8],[-1,-385],[220,0],[176,0],[31,0],[-141,-342],[270,104],[99,39],[57,430],[0,259],[200,57],[48,294],[8,50],[200,0],[13,105],[15,124],[114,145],[-21,97],[-35,161],[198,0],[80,-121],[90,-136],[228,0],[342,28],[23,19],[289,239],[11,64],[15,91],[3,17],[22,14],[89,54],[31,19],[131,118],[15,14],[110,99],[50,0],[177,0],[170,-115],[143,29],[110,69],[159,99],[100,62],[159,-27],[182,-30],[313,114],[125,127],[133,132],[30,3],[123,12],[58,5],[100,10],[182,184],[7,7],[152,153],[32,7],[24,5],[-255,303],[86,15],[67,11],[18,4],[33,87],[4,10],[10,24],[97,252],[-17,17],[-153,157],[112,170],[56,16],[14,4],[130,37],[47,175],[33,119],[3,13],[2,9],[0,6],[1,82],[0,23],[0,31],[0,25],[0,65],[0,55],[66,-7],[79,-9],[48,-6],[63,-7],[329,29],[12,1],[106,129],[35,43],[171,288],[341,172],[59,173],[-3,14],[-2,13],[-12,73],[-68,416],[86,129],[85,129],[200,82],[45,18],[38,16],[-55,84],[139,54],[87,33],[47,78],[39,66],[13,160],[7,78],[9,107],[107,108],[11,11],[24,24],[114,143],[115,0],[69,70],[101,102],[28,114],[14,56],[15,61],[171,86],[45,38],[96,78],[10,19],[190,382],[117,0],[139,0],[49,60],[93,113],[228,57],[169,0],[114,0],[229,57],[283,145],[427,201],[270,215],[129,102],[313,286],[114,202],[15,8],[188,105],[53,30],[171,174],[-18,52],[-18,56],[-49,148],[85,59],[10,-11],[128,-147],[89,-98],[55,333],[2,9],[17,6],[54,18],[10,4],[260,86],[64,17],[90,23],[74,19],[165,110],[6,4],[17,174],[0,5],[11,109],[92,42],[52,23],[170,78],[198,145],[18,20],[22,23],[402,430],[14,14],[7,3],[325,110],[9,3],[25,6],[89,22],[12,148],[10,125],[1,17],[5,54],[164,166],[7,6],[342,203],[228,258],[166,187],[90,101],[312,143],[218,60],[94,26],[115,288],[141,0],[85,-172],[27,-13],[80,-40],[39,-20],[25,-13],[86,-137],[1,-2],[112,-177],[28,44],[28,42],[225,152],[31,21],[232,117],[53,27],[41,18],[158,69],[266,122],[47,21],[4,14],[52,188],[229,286],[312,0],[6,-4],[127,-82]],[[101935,101224],[-260,-2582],[425,-632],[-62,-3098],[-236,-5164]],[[101802,89748],[-2698,513],[-2983,426],[-3411,-1123],[-1848,-1149],[-769,-834],[-685,-1922],[-318,-2755],[-143,-632],[-29,-258],[-457,-1951],[-1310,-1723],[-2077,-1094],[-1734,-1207],[-1395,-1264],[-683,-1149],[-542,-947],[-343,-947],[-712,-1981],[-118,-2066],[-58,-1348],[-260,-2439],[-688,-3673],[-287,-1434],[-201,-833],[-627,-2239],[-424,-878]],[[77002,54841],[-12,1],[0,49],[-13,0],[0,49],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[12,0],[0,37],[12,0],[0,37],[12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,-37],[-12,0],[0,-86],[12,0],[0,-12],[12,0],[0,-12],[13,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-25],[12,0],[0,-25],[12,0],[0,-49],[13,0],[0,-37],[12,0],[0,-12],[-12,0],[0,-62],[-13,0],[0,-24],[-24,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-37],[-12,0],[0,-49],[-13,0],[0,-25],[-12,0],[0,-135],[-12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-13],[13,0],[0,-24],[12,0],[0,-13],[24,0],[0,-12],[12,0],[0,-12],[12,0],[0,-25],[13,0],[0,-24],[12,0],[0,-25],[12,0],[0,-37],[12,0],[0,-37],[12,0],[0,-37],[13,0],[0,-49],[-25,0],[0,12],[-36,0],[0,-12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-43,0],[-6,0],[0,-12],[-24,0],[0,-12],[-49,0],[0,12],[-24,0],[0,12],[-49,0],[0,25],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,24],[-12,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,-12],[-12,0],[0,12],[-24,0],[0,25],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,24],[-24,0],[0,13],[-13,0],[0,24],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,37],[-12,0],[0,12],[-13,0],[0,13],[13,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,25],[-12,0],[0,74],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,-12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[13,0],[0,13],[-13,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,24],[-13,0],[0,37],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-24,0],[0,37],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-12,3],[0,10],[-13,0],[0,12],[-24,0],[0,25],[-24,0],[0,24],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,24],[-25,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-36,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-24,0],[0,24],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,37],[12,0],[0,12],[13,0],[0,25],[12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-36,0],[0,25],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,50],[36,0],[0,-13],[13,0],[0,-12],[12,0],[0,-12],[24,0],[0,-13],[107,0],[27,0],[0,13],[24,0],[0,12],[13,0],[0,25],[12,0],[0,12],[12,0],[0,74],[-12,0],[0,-12],[-25,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-61,0],[0,-13],[-49,0],[-60,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-36,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-24],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,37],[-12,0],[0,24],[12,0],[0,25],[13,0],[0,14],[0,23],[-13,0],[0,25],[-24,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-19,0],[-5,0],[0,5],[0,8],[-8,0],[-3,2],[-1,10],[-10,0],[-15,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-5,0],[-32,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,20],[0,5],[-5,0],[-7,0],[0,6],[0,18],[-24,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-36,0],[0,37],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-9,0],[-3,12],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,37],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-61,0],[0,50],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,25],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-73,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,-12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,-12],[-25,0],[0,12],[-24,0],[0,12],[-18,1],[-6,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-18,0],[-6,0],[0,13],[-12,0],[0,12],[12,0],[0,37],[12,0],[0,12],[12,0],[0,13],[25,0],[0,-13],[24,0],[0,-12],[24,0],[0,-12],[12,0],[0,-13],[25,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,-12],[-12,0],[0,-12],[-13,0],[0,-12],[-24,0],[0,-13],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,25],[-7,0],[-54,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-51,0],[-10,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,24],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,25],[-48,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,25],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,24],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,24],[-12,0],[0,25],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,21],[0,15],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-12,0],[0,24],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-31,0],[-6,0],[0,6],[0,6],[-6,0],[-18,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,25],[-12,0],[0,24],[-25,0],[0,13],[-24,0],[0,24],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,37],[-13,0],[0,25],[-24,0],[0,12],[-12,0],[0,24],[-25,0],[0,37],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,25],[-12,0],[0,49],[0,25],[-13,0],[0,24],[-24,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,25],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,24],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-10,0],[-15,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[12,0],[0,37],[12,0],[0,12],[12,0],[0,62],[-12,0],[0,24],[-12,0],[0,50],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,111],[12,0],[0,24],[12,0],[0,50],[25,0],[0,24],[12,0],[0,25],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[13,0],[0,37],[24,0],[0,12],[24,0],[0,12],[13,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[13,0],[0,12],[24,0],[0,13],[12,0],[0,-13],[24,0],[0,-12],[25,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[37,0],[0,-12],[24,0],[0,12],[13,0],[0,37],[12,0],[0,13],[12,0],[0,12],[12,0],[0,74],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,37],[-12,0],[0,13],[-12,0],[0,-13],[-12,0],[0,-37],[12,0],[0,-36],[12,0],[0,-13],[12,0],[0,-12],[13,0],[0,-62],[-13,0],[0,-24],[-12,0],[0,-13],[-36,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,-13],[-49,0],[0,-12],[-12,0],[0,-37],[-12,0],[0,-12],[-12,0],[0,-13],[-25,0],[0,-12],[-12,0],[0,-12],[-37,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-24],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-86],[-13,0],[0,-49],[-12,0],[0,-49],[12,0],[0,-13],[13,0],[0,-24],[12,0],[0,-74],[-61,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[-24,0],[0,13],[-12,0],[0,24],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[13,0],[0,37],[-13,0],[0,50],[13,0],[0,49],[-13,0],[0,49],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,37],[-24,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,37],[-73,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-10,0],[-14,0],[0,13],[-6,0],[-18,0],[0,12],[-13,0],[0,7],[0,5],[-8,0],[-4,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-97,0],[0,-12],[-25,0],[0,-7],[0,-5],[-36,0],[0,-13],[-25,0],[0,13],[-12,0],[0,12],[-85,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-98,0],[0,24],[85,0],[0,13],[74,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[24,0],[0,-13],[25,0],[0,-12],[24,0],[0,-12],[24,0],[0,-13],[13,0],[0,-12],[36,0],[0,-12],[24,0],[0,-13],[25,0],[0,-12],[12,0],[0,-12],[61,0],[0,-12],[24,0],[0,-13],[25,0],[0,13],[24,0],[0,12],[37,0],[0,12],[12,0],[0,12],[24,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-24,0],[0,12],[-41,0],[-8,0],[0,15],[0,10],[-12,0],[0,49],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,25],[-24,0],[0,-12],[-7,0],[-6,0],[0,4],[0,8],[-7,0],[-5,0],[0,5],[0,7],[-7,0],[-17,0],[0,-160],[-49,0],[0,25],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,13],[13,0],[0,86],[12,0],[0,24],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,49],[25,0],[0,-12],[24,0],[0,-12],[12,0],[0,-25],[12,0],[0,-12],[13,0],[0,-12],[24,0],[0,-13],[12,0],[0,-12],[49,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[37,0],[0,12],[24,0],[0,25],[12,0],[0,12],[12,0],[0,13],[37,0],[0,24],[49,0],[0,13],[49,0],[0,12],[12,0],[0,12],[12,0],[0,12],[12,0],[0,99],[12,0],[0,24],[12,0],[0,13],[13,0],[0,24],[12,0],[0,333],[-12,0],[0,37],[12,0],[0,12],[12,0],[0,49],[12,0],[0,37],[-12,0],[0,49],[-12,0],[0,37],[-12,0],[0,13],[-13,0],[0,130],[0,5],[-12,0],[0,74],[-12,0],[0,4],[0,21],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-4,0],[-8,0],[0,8],[0,16],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-12,0],[0,24],[-36,0],[0,49],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[-2,12],[-10,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[12,0],[0,37],[-12,0],[0,24],[-12,0],[0,160],[-12,0],[0,37],[-12,0],[0,13],[-13,0],[0,49],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,-25],[12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,37],[-25,0],[0,12],[-24,0],[0,13],[24,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-49,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[12,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-25,0],[0,-12],[-36,0],[0,49],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,25],[-24,0],[0,12],[-61,0],[0,13],[-13,0],[0,24],[-61,0],[0,25],[-24,0],[0,-12],[-24,0],[0,24],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-24,0],[0,37],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-32,0],[-16,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[12,0],[0,25],[-12,0],[0,8],[0,29],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-61,0],[0,13],[-12,0],[0,24],[-49,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-32,0],[-5,0],[0,5],[0,8],[-7,0],[-3,2],[-2,22],[-24,0],[0,12],[-13,0],[0,13],[-10,0],[-14,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,8],[0,4],[-12,0],[0,7],[0,5],[-4,0],[-20,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-23,0],[-2,12],[-12,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,11],[0,38],[-12,0],[0,25],[-12,0],[0,24],[-24,0],[0,13],[-13,0],[0,36],[13,0],[0,74],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-110,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-73,0],[0,12],[-85,0],[0,12],[-25,0],[0,13],[-61,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,-12],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-15,0],[-9,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,24],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-13,0],[0,49],[-12,0],[0,62],[12,0],[0,12],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,86],[-12,0],[0,87],[-12,0],[0,36],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,62],[-12,0],[0,49],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[12,0],[0,13],[-12,0],[0,9],[0,15],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,12],[12,0],[0,25],[24,0],[0,12],[12,0],[0,12],[12,0],[0,49],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,37],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-24,0],[0,24],[-12,0],[0,25],[-13,0],[0,25],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,49],[-12,0],[0,37],[-25,0],[0,24],[-12,0],[0,25],[-12,0],[0,35],[0,26],[-12,0],[0,25],[12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[12,0],[0,37],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,25],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[1,5],[1,6],[-14,1],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,25],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-49,0],[0,25],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,-13],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-48,0],[0,24],[-25,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[-1,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-49,1],[0,12],[-24,0],[0,24],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-61,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-60,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-13,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-49,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,-12],[-36,0],[0,12],[-13,0],[0,12],[-61,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-73,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-98,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-61,0],[0,12],[-39,0],[-22,0],[0,13],[-12,0],[-24,0],[0,8],[0,4],[-12,0],[0,12],[-33,0],[-4,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-37,0],[0,25],[61,0],[0,-13],[25,0],[0,-12],[36,0],[0,-12],[37,0],[0,-13],[12,0],[0,-12],[24,0],[0,-12],[49,0],[0,-13],[61,0],[0,-12],[36,0],[0,-12],[13,0],[0,-12],[24,0],[0,-13],[49,0],[0,-12],[24,0],[0,12],[12,0],[0,25],[-12,0],[0,12],[12,0],[0,37],[13,0],[0,-12],[12,0],[0,-13],[36,0],[0,13],[12,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-61,0],[0,12],[-48,0],[0,13],[-25,0],[0,-13],[-12,0],[0,-12],[12,0],[0,-37],[-12,0],[0,-12],[-24,0],[0,-13],[-12,0],[0,-12],[-37,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-48,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-85,0],[0,12],[-37,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-25],[12,0],[0,-12],[24,0],[0,-12],[13,0],[0,-25],[-13,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-37,0],[0,-12],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-13,0],[0,12],[-24,3],[0,10],[-61,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-73,0],[0,13],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-49,0],[0,12],[-12,0],[0,-6],[0,-6],[-12,0],[0,12],[-49,0],[0,25],[-12,0],[0,22],[0,52],[12,0],[0,37],[12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-5,0]],[[49096,77948],[865,2151],[58,200],[714,2641],[-169,1090],[541,659],[342,490],[712,660],[-340,287],[343,1176],[-341,401],[1136,375],[742,805],[284,888],[-169,1119],[1,373],[797,518],[768,832],[-28,115],[257,918],[1139,1465],[1451,1265],[483,-58],[1790,433],[2130,-772],[3126,-281],[3495,61],[3298,1610],[684,1120],[1905,777],[1680,2154],[374,2669]],[[179825,52323],[-460,87],[-143,-114],[-1194,-203],[-2244,-232],[-2104,-32],[-1902,170],[-1648,428],[-1648,113],[-1476,84],[-1677,284],[-2016,514],[-681,687],[-737,774],[-1052,-115],[-880,572],[-1250,-31],[-1393,27],[-2897,599],[-1987,312],[-797,-316],[-1392,228],[-1903,-117],[-1875,141],[-1337,-575],[-313,-403],[-455,-144],[-113,-172],[-114,-143],[-1109,26],[-881,144],[-1675,111],[-1108,-2],[-910,-746]],[[138454,54279],[-2018,342],[-2301,225],[-2072,859],[-112,1061],[627,1149],[2105,1638],[1394,977],[1110,1063],[-453,917],[-1418,1375],[-1277,1319],[-1958,1202],[-1393,-145],[-1622,-1265],[-2874,-2872],[-2305,-2299],[-2559,-1351],[-1023,28],[-143,27],[-1193,28],[-3578,1257],[-3350,1058],[-1762,342],[-1477,113],[-623,1576],[-624,860],[-2185,1260]],[[105370,65023],[2130,-486],[2868,-655],[455,-86],[881,-141],[113,-30],[1081,289],[967,1207],[-84,543],[-592,3071],[-253,1433],[1053,1005],[1451,1379],[142,115],[543,1494],[628,1550],[1140,2783],[1993,1954],[2335,3129],[997,1408],[256,315],[1426,3531],[457,1120],[570,1436],[922,3752]],[[126849,95139],[54,-57],[322,-114],[171,-31],[24,8],[441,152],[156,-83],[75,-40],[212,-9],[554,-25],[49,-21],[273,-113],[552,-604],[540,-878],[501,-594],[85,-80],[527,-493],[248,-102],[53,-22],[102,112],[332,-63],[172,162],[77,653],[70,170],[325,395],[100,411],[-53,695],[99,84],[168,0],[130,-71],[556,-301],[391,-441],[573,-471],[895,-542],[127,-44],[209,-71],[0,-63],[-1,-79],[-15,-23],[-44,-66],[-110,-165],[-440,-140],[-263,-84],[-104,-177],[39,-214],[348,47],[16,2],[30,-90],[218,-644],[21,-308],[16,-232],[430,-624],[-57,-101],[-85,-153],[-219,-6],[-83,-2],[-135,-111],[-98,-81],[-61,-2],[-242,-7],[-303,-141],[566,-446],[97,-77],[199,-367],[282,-22],[75,139],[16,30],[154,288],[312,-32],[25,126],[37,189],[112,81],[150,-103],[16,-23],[62,-92],[102,-151],[141,-10],[153,253],[111,40],[302,-72],[81,218],[52,137],[142,162],[12,-10],[249,-205],[432,-226],[311,-328],[191,-42],[164,145],[8,7],[43,-109],[186,-483],[100,-102],[101,61],[72,203],[715,-65],[72,-126],[7,-13],[61,-106],[90,-123],[252,9],[76,-91],[34,-42],[-11,-173],[-91,-91],[-283,-101],[-77,-81],[-95,-101],[134,-136],[16,-18],[96,-6],[76,-5],[537,-62],[17,-2],[333,90],[251,-103],[232,29],[1065,-657],[202,-22],[190,183],[73,70],[120,-246],[69,-142],[142,10],[94,113],[58,69],[81,-54],[181,-119],[49,-32],[135,-192],[95,-135],[200,-159],[18,-15],[143,-114],[129,-459],[85,-13],[116,-18],[374,140],[582,5],[134,1],[383,120],[271,-46],[162,-27],[222,49],[283,238],[173,147],[137,-13],[206,-20],[161,101],[55,100],[200,367],[152,-63],[321,-133],[292,-42],[354,222],[363,28],[282,39],[213,137],[243,156],[22,2],[431,36],[1080,238],[231,-134],[350,-511],[38,-387],[151,-103],[183,254],[181,-73],[190,-235],[172,172],[131,30],[129,-520],[271,-73],[172,91],[254,385],[115,61],[77,40],[24,-18],[167,-126],[360,-552],[251,-73],[90,234],[135,356],[150,-68],[31,-15],[90,-153],[41,-255],[47,-295],[171,-12],[44,128],[89,258],[10,2],[202,28],[90,-123],[107,-327],[121,-367],[199,-398],[382,-176],[210,-347],[592,-360],[382,-135],[559,-602],[453,-488],[460,-497],[54,-117],[16,-36],[-125,-60],[-44,-20],[-43,-21],[-393,13],[-171,1],[-99,-92],[-74,-70],[201,-270],[72,-95],[17,-24],[-41,-315],[-12,-92],[160,-296],[-32,-53],[-60,-99],[-465,-323],[-17,-46],[-75,-208],[28,-286],[-21,-355],[-32,-547],[-18,-298],[-36,-618],[-5,-86],[24,-77],[26,-86],[173,-89],[28,-14],[29,-132],[-103,-366],[22,-119],[17,-96],[404,202],[107,570],[8,40],[29,21],[112,80],[192,19],[251,-93],[325,-254],[57,-45],[90,-70],[17,106],[46,290],[141,25],[30,5],[241,-195],[153,-204],[166,-222],[71,-94],[40,-53],[-22,-183],[-74,-133],[-170,-304],[-11,-152],[59,-137],[60,-139],[542,-299],[241,-225],[179,-348],[-14,-32],[-98,-212],[-455,-231],[-132,-213],[131,-268],[78,-161],[-180,-205],[-202,-230],[-54,-61],[-62,-163],[104,-280],[25,-67],[200,-119],[41,-25],[407,-140],[317,-109],[110,-174],[108,-510],[35,-78],[84,-187],[138,-114],[578,-478],[116,-96],[603,-187],[311,-236],[36,-66],[184,-333],[248,-175],[466,-328],[188,-134],[382,-185],[191,8],[132,112],[41,152],[-267,725],[62,224],[304,303],[184,539],[273,151],[121,-21],[37,-143],[81,-316],[8,-295],[-114,-601],[29,-173],[191,-32],[60,22],[141,52],[72,26],[81,-32],[100,-40],[320,-318],[105,12],[147,17],[82,-19],[311,-75],[403,18],[27,-126],[71,-323],[110,-21],[97,51],[96,50],[50,-193],[48,-185],[120,-102],[123,90],[29,21],[113,386],[71,71],[353,-12],[382,-156],[260,-278],[416,-442],[314,-335],[-31,-183],[-674,177],[-142,-203],[89,-184],[111,-18],[272,-45],[106,-58],[44,-25],[78,-274],[70,-246],[42,-50],[47,-56],[161,-191],[129,-347],[148,-7],[77,-3],[37,-2],[61,163],[7,234],[6,254],[363,-2],[128,117],[61,55],[277,253],[291,-134],[10,-30],[69,-226],[-61,-182],[-180,-118],[-144,-94],[70,-113],[359,-9],[155,-4],[160,-83],[113,-186],[65,-107],[146,-240],[146,-239],[7,-12],[52,-85],[290,-236],[152,-23],[85,-12],[126,-18],[6,42],[78,507],[193,414],[11,23],[-109,316],[143,325],[-18,296],[82,254],[152,70],[58,-19],[201,-67],[7,-3],[76,-25],[19,-51],[172,-22],[68,55],[175,137],[21,-22],[249,-254],[138,-378],[282,-140],[10,-5],[122,3],[200,5],[-8,-173],[-4,-91],[-180,-139],[-134,-104],[-44,-672],[-368,-731],[-1,-183],[150,-205],[299,-460],[69,-266],[-82,-284],[-396,-436],[-132,-233],[229,-409],[106,-673],[209,-460],[3,-215],[1,-58],[10,-674],[100,-133],[401,-166],[57,-663],[180,-205],[107,-520],[218,-521],[16,-22],[293,-410],[21,-28],[71,-208],[720,-388],[159,-419],[-137,-586],[-8,-35],[28,-275],[279,-521],[-64,-104],[-48,-79],[-323,-18],[-427,78],[-35,6],[-102,-111],[-61,-193],[125,-826],[-37,-93],[-17,-41],[-14,-33],[-106,-260],[210,-287],[267,-205]],[[160863,3609],[0,35],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,50],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,32],[0,4],[-12,0],[0,13],[-12,0],[0,14],[0,23],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,86],[37,0],[0,-12],[24,0],[0,-12],[12,0],[0,-25],[12,0],[0,-12],[13,0],[0,-13],[36,0],[0,-24],[12,0],[0,-13],[12,0],[0,-12],[13,0],[0,-25],[12,0],[0,-37],[12,0],[0,-24],[12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-12],[13,0],[0,-13],[12,0],[0,-12],[49,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[49,0],[0,-12],[122,0],[0,-13],[73,0],[0,13],[12,0],[0,12],[12,0],[0,12],[24,0],[0,13],[13,0],[0,12],[24,0],[0,12],[12,0],[0,86],[12,0],[0,13],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,135],[-13,0],[0,49],[-12,0],[0,50],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,12],[-25,0],[0,-12],[-12,0],[0,-37],[12,0],[0,-12],[13,0],[0,-12],[12,0],[0,-13],[12,0],[0,-24],[24,0],[0,-13],[13,0],[0,-24],[12,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[13,0],[0,-12],[12,0],[0,-49],[12,0],[0,-136],[12,0],[0,-61],[12,0],[0,-99],[-24,0],[0,-12],[-12,0],[0,-12],[-25,0],[0,-13],[-60,0],[0,13],[-86,0],[0,12],[-85,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,62],[-12,0],[0,12],[-12,0],[0,62],[-12,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,-13],[-25,0],[0,-12],[-12,0],[0,-12],[-73,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-12],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-11,0],[-14,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-7,0],[-29,0],[0,12],[-5,0],[-20,0],[0,7],[0,5],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-73,0],[0,12],[-97,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-13,0],[0,12],[-36,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-49,0],[0,12],[-25,0],[0,13],[-60,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-36,0],[0,9],[-13,3],[0,-12],[-36,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-134,0],[0,12],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,12],[-73,0],[0,13],[-48,0],[0,12],[-74,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-61,0],[0,12],[-61,0],[0,13],[-86,0],[0,12],[-12,0],[0,12],[-49,0],[0,-12],[-60,0],[0,12],[-13,0],[0,25],[13,0],[0,25],[12,0],[0,37],[12,0],[0,12],[24,0],[0,12],[8,0],[17,0],[0,13],[12,0],[0,12],[49,0],[0,12],[12,0],[0,37],[12,0],[0,25],[12,0],[0,12],[24,0],[0,12],[13,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,37],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-61,0],[0,-12],[-85,0],[0,12],[-13,0],[0,25],[-12,0],[0,61],[-12,0],[0,74],[-12,0],[0,74],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-12,0],[0,37],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[12,0],[0,24],[12,0],[0,25],[12,0],[0,209],[-12,0],[0,25],[-12,0],[0,24],[12,0],[0,25],[12,0],[0,25],[12,0],[0,12],[13,0],[0,12],[12,0],[0,62],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-37],[12,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-24],[12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-25],[-13,0],[0,-12],[-24,0],[0,-13],[-12,0],[0,-24],[12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-12],[13,0],[0,-13],[12,0],[0,-135],[-12,0],[0,-37],[-13,0],[0,-25],[-12,0],[0,-24],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-37],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-12],[49,0],[0,-13],[49,0],[0,-12],[24,0],[0,-12],[12,0],[0,-62],[12,0],[0,-74],[13,0],[0,-61],[12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[13,0],[0,-12],[60,0],[0,-12],[37,0],[0,-13],[61,0],[0,13],[24,0],[0,-62],[-12,0],[0,-12],[-85,0],[0,-13],[-12,0],[0,-24],[-13,0],[0,-49],[-28,0],[-8,0],[0,12],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,16],[0,8],[-12,0],[0,37],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-61,0],[0,13],[-49,0],[0,12],[-49,0],[0,12],[-48,0],[0,13],[-37,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-85,0],[0,12],[-61,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-122,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-85,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-61,0],[0,12],[-49,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-61,0],[0,12],[-61,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-13,0],[0,-12],[-24,0],[0,12],[-24,0],[0,13],[-61,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[-37,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-97,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-61,0],[0,12],[-159,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-73,0],[0,12],[-24,0],[0,13],[-97,0],[-1,12],[-24,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-24,0],[0,13],[-73,0],[0,12],[-61,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-97,0],[0,12],[-61,0],[0,13],[-56,0],[-30,0],[0,12],[-36,0],[0,12],[-61,0],[0,12],[-61,0],[0,13],[-73,0],[0,12],[-49,0],[0,12],[-122,0],[0,13],[-60,0],[0,12],[-74,0],[0,12],[-24,0],[0,13],[-37,0],[0,-13],[-24,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-73,0],[0,12],[-13,0],[0,13],[-24,0],[0,24],[-12,0],[0,25],[12,0],[0,12],[49,0],[0,25],[12,0],[0,25],[12,0],[0,12],[25,0],[0,12],[24,0],[0,13],[24,0],[0,12],[13,0],[0,12],[12,0],[0,49],[12,0],[0,25],[12,0],[0,12],[12,0],[0,37],[12,0],[0,25],[13,0],[0,12],[12,0],[0,49],[12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[-12,0],[0,74],[12,0],[0,61],[-12,0],[0,62],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[24,0],[0,12],[12,0],[0,12],[-12,0],[0,25],[12,0],[0,12],[-12,0],[0,13],[-48,0],[0,12],[-13,0],[0,-62],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[12,0],[0,-98],[12,0],[0,-13],[12,0],[0,-24],[13,0],[0,-12],[12,0],[0,-13],[12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-24],[12,0],[0,-13],[13,0],[0,-24],[12,0],[0,-74],[12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-25],[-13,0],[0,-12],[-12,0],[0,-49],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-49],[-13,0],[0,-24],[13,0],[0,-13],[-25,0],[0,-12],[-24,0],[0,-25],[-37,0],[0,-12],[-24,0],[0,-12],[-12,0],[0,-13],[-37,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-25,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,-12],[-36,0],[0,-13],[-24,0],[0,-12],[-13,0],[0,-12],[-61,0],[0,12],[-61,0],[0,-12],[-24,0],[0,24],[-97,0],[0,13],[-37,0],[0,12],[-49,0],[0,12],[-61,0],[0,13],[-73,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-73,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-85,0],[0,12],[-98,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-74,0],[0,12],[-36,0],[0,13],[-24,0],[0,12],[-61,0],[0,12],[-86,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-85,0],[0,13],[-61,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-86,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-110,0],[0,12],[-49,0],[0,12],[-61,0],[0,12],[-61,0],[0,13],[-36,0],[0,12],[-98,0],[0,12],[-48,0],[0,13],[-98,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-122,0],[0,12],[-25,0],[0,12],[-73,0],[0,12],[-49,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-61,0],[0,-13],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-109,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-61,0],[0,-13],[-24,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-85,0],[0,12],[-98,0],[0,12],[-49,0],[0,-12],[-73,0],[0,12],[-85,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-49,0],[0,-12],[-85,0],[0,12],[-36,0],[0,12],[-25,0],[0,-12],[-49,0],[0,12],[-109,0],[0,13],[-25,0],[0,12],[-12,0],[0,25],[-24,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,-12],[-170,0],[0,12],[-159,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-110,0],[0,13],[-73,0],[0,12],[-158,0],[0,12],[-12,0],[0,-12],[-61,0],[0,12],[-25,0],[0,-12],[-12,0],[0,12],[-12,0],[0,-12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-31,0],[-55,0],[0,12],[-36,0],[0,-12],[-12,0],[0,12],[-61,0],[0,13],[-110,0],[0,12],[-280,0],[0,-12],[-25,0],[0,-13],[-12,0],[0,-12],[-36,0],[0,7],[0,5],[-12,0],[0,-12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,61],[-13,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-13,0],[0,12],[-85,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-85,0],[0,12],[-61,0],[0,13],[-61,0],[0,12],[-73,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-49,0],[0,12],[-73,0],[0,12],[-49,0],[0,13],[-73,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-98,0],[0,-13],[-24,0],[0,-12],[-24,0],[0,12],[-13,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-97,0],[0,12],[-85,0],[0,13],[-61,0],[0,24],[-12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[24,0],[0,12],[12,0],[0,12],[13,0],[0,50],[-13,0],[0,12],[-48,0],[0,-12],[-12,0],[-1,-25],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-37],[-12,0],[0,-24],[-61,0],[0,12],[-98,0],[0,-12],[-24,0],[0,12],[-12,0],[0,12],[-20,0],[-5,0],[0,13],[-23,0],[-13,0],[0,6],[0,6],[-15,0],[-82,0],[0,12],[-25,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-12,0],[0,-12],[-17,0],[-7,0],[0,12],[-49,0],[0,13],[-97,0],[0,-13],[-98,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,74],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[12,0],[0,13],[-12,0],[0,49],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-36,0],[0,12],[-37,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,78],[0,32],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-38,0],[-22,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-49,0],[0,24],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,37],[12,0],[0,12],[13,0],[0,99],[-25,0],[0,25],[12,0],[0,36],[-12,1],[0,61],[-12,0],[0,25],[-24,0],[0,-13],[-13,0],[0,13],[-36,0],[0,37],[-12,0],[0,12],[12,0],[0,29],[0,20],[-12,0],[0,12],[-13,0],[0,25],[-36,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-13,0],[-12,0],[0,12],[-48,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-61,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-5,0],[-19,0],[0,6],[0,6],[-22,0],[-39,0],[0,12],[-25,0],[0,7],[0,6],[-19,0],[-5,0],[0,12],[-36,0],[-13,0],[0,12],[-28,0],[-21,0],[0,6],[0,7],[-21,0],[-15,0],[0,4],[0,8],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-73,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,-13],[-26,0],[-23,0],[0,7],[0,6],[-12,0],[0,37],[12,0],[0,12],[37,0],[0,12],[12,0],[0,13],[12,0],[0,24],[-12,0],[0,62],[12,0],[0,37],[12,0],[0,24],[12,0],[0,74],[-12,0],[0,49],[-12,0],[0,25],[-12,0],[0,99],[-12,0],[0,61],[12,0],[0,12],[24,0],[0,13],[12,0],[0,-13],[25,0],[0,-12],[24,0],[0,-12],[49,0],[0,-13],[12,0],[0,-12],[24,0],[0,-12],[25,0],[0,12],[73,0],[0,12],[12,0],[0,-12],[12,0],[0,-74],[-12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-12],[-13,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[24,0],[0,12],[37,0],[0,13],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[12,0],[0,24],[12,0],[0,50],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-37,0],[0,-13],[-24,0],[0,13],[-24,0],[0,24],[-13,0],[0,-12],[-36,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-37],[12,0],[0,-12],[13,0],[0,-13],[12,0],[0,-12],[12,0],[0,-24],[-12,0],[0,-62],[12,0],[0,-37],[12,0],[0,-25],[12,0],[0,-123],[-12,0],[0,-12],[-12,0],[0,-25],[-61,0],[0,-12],[-24,0],[0,-12],[-12,0],[0,-49],[-13,0],[0,-13],[-12,0],[0,-12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-86,0],[0,12],[-48,0],[0,12],[-73,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-13,0],[0,-12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,-13],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,-13],[-85,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-85,0],[0,9],[-37,3],[0,12],[-12,0],[0,13],[-24,0],[0,-13],[-13,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-37,0],[0,-13],[-12,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-61,0],[0,-12],[-37,0],[0,12],[-73,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-110,0],[0,12],[-24,0],[0,-12],[-13,0],[0,12],[-12,0],[0,25],[-73,0],[0,12],[-73,0],[0,-12],[-37,0],[0,12],[-48,0],[0,12],[-12,0],[0,13],[-25,0],[0,-13],[-24,0],[0,13],[-61,0],[0,-13],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-73,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-182,0],[0,12],[-25,0],[0,12],[-36,0],[0,25],[-12,0],[0,37],[-13,0],[0,24],[-12,0],[0,25],[-24,0],[0,25],[-10,0],[-14,0],[0,5],[-1,7],[-19,0],[-5,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-61,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-49,0],[0,12],[-48,0],[0,13],[-37,0],[0,12],[-61,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-37,0],[0,-12],[-15,0],[-46,0],[0,12],[-24,0],[0,12],[-12,0],[0,6],[0,7],[-19,0],[-6,0],[0,12],[-28,0],[-8,0],[0,37],[12,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-85,0],[0,12],[-49,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,12],[-12,0],[0,74],[-12,0],[0,11],[0,14],[-12,0],[0,12],[-17,0],[-8,0],[0,6],[0,6],[-6,0],[-18,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,37],[12,0],[0,12],[13,0],[0,13],[12,0],[0,49],[12,0],[0,12],[-12,0],[0,37],[-12,0],[0,20],[0,29],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-107,1],[-3,11],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-61,0],[0,-12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-5,0],[-20,0],[0,12],[-12,0],[0,86],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[-1,50],[-11,0],[0,49],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[24,0],[0,13],[12,0],[0,12],[5,0],[20,0],[0,25],[12,0],[0,24],[12,0],[0,12],[12,1],[0,24],[12,0],[0,37],[13,0],[0,62],[-13,0],[0,24],[-24,0],[0,-49],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-24],[-13,0],[0,-25],[-12,0],[0,-24],[-9,0],[-15,0],[0,-13],[-25,0],[0,13],[-24,0],[0,36],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,7],[0,6],[-11,0],[-37,0],[0,-13],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-6,0],[-18,0],[0,12],[-6,0],[-43,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-16,0],[-9,0],[0,12],[-15,0],[-33,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-122,0],[0,12],[-12,0],[0,13],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-73,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,34],[0,27],[-12,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-13,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,25],[-37,0],[0,12],[-36,0],[0,12],[-19,0],[-6,0],[0,5],[0,8],[-11,0],[-13,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,25],[-49,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-37,0],[0,12],[-36,0],[0,12],[-73,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,-13],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-24,0],[0,24],[-49,0],[0,-12],[-24,0],[0,25],[-73,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-12,0],[0,7],[0,30],[12,0],[0,12],[37,0],[0,12],[61,0],[0,13],[12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-74,0],[0,-12],[-24,0],[0,-25],[-12,0],[0,-12],[-98,0],[0,12],[-73,0],[0,12],[-73,0],[0,-12],[-25,0],[-11,0],[0,12],[-19,0],[-18,0],[0,13],[-36,0],[0,12],[-37,0],[0,-12],[-12,0],[0,12],[-49,0],[0,12],[-37,0],[0,50],[-12,0],[0,29],[0,20],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-24,0],[-73,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-61,0],[0,12],[-158,0],[0,12],[-24,0],[0,37],[-13,0],[0,9],[0,3],[-12,0],[0,13],[-24,0],[0,37],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-48,0],[0,-12],[-25,0],[0,12],[-12,0],[0,-8],[0,-4],[-73,0],[0,12],[-25,0],[0,25],[-24,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,11],[0,14],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,25],[-12,0],[0,12],[-37,0],[0,25],[-36,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-25,0],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,5],[0,7],[-60,0],[0,12],[-98,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,-74],[-25,0],[0,-12],[-60,0],[0,-13],[-61,0],[0,13],[-49,0],[0,12],[-25,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-85,0],[0,13],[-85,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-85,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-85,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-73,0],[0,12],[-109,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-73,0],[0,12],[-12,0],[0,13],[-12,0],[0,-13],[-25,0],[0,13],[-8,0],[-28,0],[0,24],[-24,0],[0,13],[-110,0],[0,12],[-24,0],[0,49],[73,0],[0,49],[-70,0]],[[123450,19745],[31,58],[1937,3504],[1876,834],[2246,462],[1478,662],[-54,1347],[-28,632],[1679,1264],[2929,2300]],[[135544,30808],[3976,-2004],[4413,6031],[1620,59],[990,-2237],[1789,-799],[539,-602],[992,-1147],[2529,-484]],[[152392,29625],[-768,-805],[-914,-2182],[-685,-1607],[1078,-2236],[1076,-1577],[4174,-1687],[3207,-1774],[2042,-2522],[339,-1234],[762,-2781],[57,-575],[193,-3184],[-1026,-1865],[-1026,-1895],[-38,-92]],[[38838,158605],[31,2334],[2,135],[-55,371],[55,0],[57,0],[-26,312],[-1,5],[-40,745],[-16,288],[57,26],[67,32],[673,315],[251,58],[119,28],[625,547],[416,686],[838,1381],[711,1149],[196,308],[4,7],[683,345],[31,1],[25,0],[1,225],[0,47],[0,72],[106,-36],[67,-22],[79,-26],[174,-58],[23,12],[171,96],[62,35],[114,115],[145,-48],[111,-38],[5,8],[194,251],[284,86],[234,-99],[106,-45],[145,82],[111,63],[229,0],[255,-201],[3,2],[25,12],[153,73],[245,-172],[368,-29],[474,-24],[67,-3],[170,28],[8,-29],[8,-28],[126,57],[170,-113],[18,34],[11,23],[115,143],[272,-137],[20,5],[160,192],[-252,140],[168,58],[115,202],[89,50],[167,93],[199,30],[170,-202],[368,-228],[49,-22],[86,-39],[121,-54],[5,-4],[160,-125],[-48,96],[-3,6],[341,315],[398,316],[208,233],[49,56],[29,141],[57,232],[114,228],[109,141],[92,118],[367,115],[314,1],[112,86],[1,37],[0,20],[139,211],[31,47],[1,136],[0,295],[86,229],[19,85],[39,173],[-13,17],[-186,241],[30,258],[-82,194],[-4,7],[-255,29],[-142,517],[-85,328],[-10,38],[-75,293],[-15,31],[-126,256],[-27,316],[284,257],[85,173],[427,116],[47,110],[38,89],[30,374],[-85,344],[12,42],[45,160],[0,45],[0,18],[0,50],[-160,116],[-19,14],[-20,14],[2,144],[339,161],[143,68],[113,234],[1,255],[-34,137],[-51,207],[-141,229],[171,258],[142,288],[-77,441],[-2,12],[-6,34],[45,129],[32,33],[38,39],[29,58],[27,56],[171,86],[66,67],[77,79],[-142,314],[86,229],[16,7],[183,82],[29,256],[86,258],[-199,202],[-29,257],[86,229],[25,61],[46,108],[73,176],[-40,297],[-17,133],[-6,10],[-164,307],[6,29],[52,229],[8,28],[22,77],[6,23],[77,273],[-102,270],[-39,103],[86,259],[32,48],[18,29],[6,9],[15,-3],[-90,185],[16,-9],[267,-148],[52,18],[404,142],[106,3],[88,3],[42,1],[57,2],[19,-22],[142,-162],[20,22],[192,210],[205,224],[77,-28],[34,-13],[20,-183],[-93,-336],[52,-105],[4,-8],[14,-30],[441,-32],[61,-5],[242,-20],[249,321],[162,209],[152,30],[285,283],[974,586],[9,2],[316,88],[103,396],[142,122],[117,-72],[98,-59],[309,-188],[121,106],[42,36],[182,-21],[135,36],[120,32],[180,49],[122,33],[212,-113],[96,-14],[69,-10],[351,-50],[363,-257],[90,36],[45,18],[169,67],[205,-1],[99,-1],[124,-73],[55,-33],[83,-48],[109,-316],[426,-48],[141,-16],[141,-138],[322,-313],[100,-112],[30,-163],[-208,-1057],[-265,-457],[-66,-368],[-143,-791],[29,-255],[130,-73],[19,-11],[33,-18],[323,-12],[199,109],[573,314],[111,11],[293,27],[53,23],[180,78],[296,365],[152,9],[75,-32],[197,-82],[30,0],[265,-1],[59,-1],[162,81],[305,273],[364,455],[166,208],[102,127],[169,51],[226,69],[834,687],[232,40],[255,324],[660,281],[1022,96],[152,-98],[52,-33],[10,-6],[109,-69],[35,0],[126,-1],[416,49],[49,20],[221,94],[84,36],[28,2],[347,26],[145,-158],[24,-27],[279,-306],[61,-66],[24,-26],[11,4],[70,26],[61,112],[42,79],[122,225],[113,90],[202,81],[951,40],[294,13],[396,262],[51,173],[-69,153],[-182,72],[-6,223],[-2,72],[-22,1],[-140,1],[-30,91],[194,366],[112,70],[96,-90],[17,-17],[16,-15],[12,-11],[121,9],[17,17],[301,306],[100,102],[126,226],[267,169],[153,-27],[443,-78],[253,-144],[10,-21],[330,-653],[413,-438],[50,-53],[19,-153],[-296,-436],[-154,-559],[99,-316],[847,-992],[18,-21],[4,-24],[133,-699],[111,-143],[212,-1],[140,203],[13,20],[87,1088],[38,102],[75,203],[560,475],[0,-41],[911,127],[230,-108],[234,-109],[85,-103],[267,-327],[827,-575],[241,-327],[139,-327],[-325,-303],[-133,-223],[-366,-262],[-529,-567],[-155,-416],[69,-316],[131,-82],[201,14],[195,13],[9,1],[497,210],[31,2],[55,3],[410,23],[738,-66],[225,108],[131,63],[346,354],[235,497],[224,131],[242,-53],[3,-4],[167,-312],[89,-479],[227,-336],[83,-124],[681,-494],[146,-105],[392,-285],[680,-35],[188,-10],[1165,-60],[153,-94],[149,-91],[120,-205],[-23,-396],[-46,-132],[-57,-160],[-262,-356],[-143,-182],[-1147,-643],[-201,-170],[246,-280],[242,-159],[269,-177],[31,-20],[52,-34],[2,-21],[36,-366],[-175,-498],[39,-244],[180,-246],[92,-56],[261,-160],[35,-93],[94,-254],[-49,-136],[-1198,-955],[26,-213],[-1,-41],[271,-276],[-56,-915],[-133,-305],[-244,-222],[-84,-447],[78,-387],[222,-154],[304,97],[162,52],[141,-42],[8,-10],[253,-317],[232,-52],[354,79],[535,-96],[216,-127],[35,-21],[11,-6],[1,-9],[76,-622],[-66,-763],[39,-224],[222,-185],[-87,-874],[148,-520],[301,-328],[59,-254],[121,-134],[8,-274],[-257,-578],[-228,-334],[-98,-142],[-103,-274],[19,-234],[140,-164],[142,-21],[128,114],[431,380],[456,221],[121,-11],[-5,-153],[-8,-254],[-145,-548],[59,-204],[363,-206],[18,-204],[-6,-553],[419,-603],[89,-306],[-90,-297],[-2,-7],[-496,-334],[-407,-761],[168,-1027],[179,-469],[-255,-710],[279,-1131],[21,-458],[283,-448],[268,-247],[188,-486],[160,-166],[80,-83],[233,-241],[239,-682],[141,-133],[167,-27],[25,-4],[181,-113],[404,32],[103,-78],[259,-195],[82,-62],[8,-30],[174,-603],[20,-67],[-33,-55],[-21,-37],[-34,-58],[-28,-81],[66,-74],[12,-14],[13,-14],[30,7],[176,38],[67,15],[24,-112],[2,-11],[13,-60],[-103,-457],[21,-83],[35,-138],[8,-32],[6,-22],[27,-26],[194,-189],[-23,-44],[-36,-69],[-256,-486],[-31,-690],[-3,-52],[-149,-175],[-152,-177],[-176,-205],[-236,-438],[-48,-90],[-2,-15],[-25,-206],[-36,-307],[108,-733],[-51,-255],[-52,-259],[-38,-191],[-34,-169],[46,-119],[84,-217],[169,-234],[12,-18],[70,-95],[243,-82],[59,-21],[82,-92],[8,-10],[-4,-24],[-109,-575],[-61,-95],[-21,-34],[-47,-72],[-544,-851],[-5,-9],[-166,-258],[-45,-363],[-18,-146],[-15,-120],[-15,-123],[-916,-1624],[-5,-214],[0,-5],[-6,-239],[-87,-151],[-168,-295],[-19,-55],[-563,-1570],[-85,-78],[-319,-293],[-82,-75],[-183,-335],[-51,-26],[-384,-196],[-24,-23],[-300,-291],[-224,-365],[-197,-661],[-220,-734],[-187,-626],[-40,-133],[-15,-14],[-269,-240],[-21,-66],[-30,-96],[5,-74],[33,-537],[139,100],[97,68],[15,11]],[[49096,77948],[-7,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-48,0],[-37,0],[0,12],[-12,0],[0,12],[-61,0],[0,12],[-12,0],[0,37],[12,0],[0,13],[12,0],[0,37],[12,0],[0,12],[12,0],[0,62],[-12,0],[0,36],[-12,0],[0,25],[-12,0],[0,25],[12,0],[0,24],[12,0],[0,25],[25,0],[0,12],[12,0],[0,25],[12,0],[0,12],[24,0],[0,37],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,36],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,16],[0,8],[-13,0],[0,13],[-27,0],[-9,0],[0,4],[0,8],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-37,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-98,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-36,0],[0,13],[-86,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-12,0],[0,12],[-12,1],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-85,0],[0,12],[-12,0],[0,25],[12,0],[0,12],[12,0],[0,12],[73,0],[0,13],[37,0],[0,-13],[12,0],[0,-12],[12,0],[0,37],[-36,0],[0,25],[-12,0],[0,61],[36,0],[0,50],[-12,0],[0,73],[-12,0],[0,25],[-25,0],[0,12],[-24,0],[0,-12],[-12,0],[0,-25],[12,0],[0,-37],[-24,0],[0,-12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,25],[-36,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-36,0],[0,-50],[12,0],[0,-12],[24,0],[0,-12],[37,0],[0,-13],[24,0],[0,-12],[25,0],[0,-12],[24,0],[0,-13],[49,0],[0,-12],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[13,0],[0,-12],[24,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-12],[-13,0],[0,-25],[-48,0],[0,-12],[-13,0],[0,-13],[-12,0],[0,-12],[-48,0],[0,12],[-61,0],[0,13],[-61,0],[0,12],[-25,0],[0,12],[-39,0],[-9,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,-12],[-12,0],[0,5],[0,7],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-85,0],[0,13],[-61,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-61,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-43,0],[-18,0],[0,6],[0,6],[-15,0],[-9,0],[0,12],[-13,0],[0,13],[-12,0],[0,49],[-12,0],[0,12],[-61,0],[0,-12],[-12,0],[0,-13],[-42,0],[-7,0],[0,13],[-25,0],[-24,0],[0,12],[-8,0],[-53,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-74,0],[0,13],[-24,0],[0,12],[-36,0],[0,12],[-74,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[12,0],[0,25],[13,0],[0,61],[73,0],[0,-12],[48,0],[0,-13],[25,0],[0,-12],[24,0],[0,-12],[12,0],[0,-12],[61,0],[0,12],[13,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[12,0],[0,12],[-12,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,-12],[-48,0],[0,12],[-61,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-48,0],[0,12],[-25,0],[0,12],[-36,0],[0,-12],[-13,0],[0,-12],[13,0],[0,-12],[24,0],[0,-13],[37,0],[0,-12],[36,0],[0,-12],[12,0],[0,-13],[13,0],[0,-12],[24,0],[0,-12],[-12,0],[0,-37],[-12,0],[0,-49],[-13,0],[0,-9],[0,-4],[-24,0],[0,13],[-6,0],[-43,0],[0,12],[-36,0],[0,12],[-6,0],[-31,0],[0,12],[-11,0],[-13,0],[0,13],[-30,0],[-19,0],[0,5],[0,7],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-37,0],[0,-13],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,111],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-136],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-61,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-13,0],[0,86],[13,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,-12],[-12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[25,0],[0,-12],[12,0],[0,-49],[-12,0],[0,-25],[-12,0],[0,12],[-37,0],[0,-24],[-12,0],[0,37],[-73,0],[0,12],[-61,0],[0,12],[-25,0],[0,13],[-73,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-85,0],[0,12],[-61,0],[0,13],[-37,0],[0,12],[-49,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-73,0],[0,12],[-12,0],[0,13],[-98,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-109,0],[0,12],[-49,0],[0,12],[-37,0],[0,13],[-73,0],[0,12],[-73,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-110,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-73,0],[0,12],[-24,0],[0,13],[-61,0],[0,12],[-37,0],[0,12],[-48,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-60,0],[0,12],[-37,0],[0,12],[-61,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-61,0],[0,12],[-85,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-86,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-85,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-34,0],[-3,12],[-109,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-98,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-24,0],[0,12],[-73,0],[0,13],[-25,0],[0,12],[12,0],[0,12],[98,0],[0,-12],[12,0],[0,-12],[61,0],[0,-13],[49,0],[0,-12],[85,0],[0,-12],[73,0],[0,-25],[12,0],[0,-12],[37,0],[0,-12],[24,0],[0,12],[13,0],[0,-12],[24,0],[0,-13],[24,0],[0,-12],[60,0],[13,0],[0,-12],[37,0],[0,-13],[49,0],[0,-12],[12,0],[0,-12],[97,0],[0,-13],[61,0],[0,-12],[12,0],[0,-12],[37,0],[0,-12],[85,-1],[0,-12],[12,0],[0,-12],[61,0],[0,-12],[49,0],[0,-13],[24,0],[0,-12],[13,0],[0,-12],[24,0],[0,-13],[85,0],[0,-12],[49,0],[0,-12],[37,0],[0,-13],[48,0],[0,-12],[13,0],[0,-12],[48,0],[0,-13],[12,0],[0,-12],[86,0],[0,-12],[48,0],[0,-13],[25,0],[0,-12],[36,0],[0,-12],[49,0],[0,-12],[49,0],[0,-13],[36,0],[0,-12],[61,0],[0,-12],[12,0],[0,-13],[61,0],[0,-12],[37,0],[0,-12],[36,0],[0,-13],[86,0],[0,-12],[12,0],[0,-12],[36,0],[0,-13],[49,0],[0,-12],[25,0],[0,-12],[24,0],[0,-12],[24,0],[0,-13],[37,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-74,0],[0,12],[-36,0],[0,12],[-98,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-74,0],[0,13],[-24,0],[0,12],[-85,0],[0,12],[-25,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-13,0],[0,49],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-37],[-24,0],[0,12],[-25,0],[0,74],[-12,0],[0,13],[-12,0],[0,-13],[-12,0],[0,-49],[-49,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,-13],[-12,0],[0,-12],[-37,0],[0,37],[-12,0],[0,12],[-97,0],[0,74],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,-13],[-12,0],[0,-37],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,-12],[-13,0],[0,-25],[-73,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-12],[-49,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-73,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,25],[13,0],[0,12],[12,0],[0,25],[-12,0],[0,12],[-86,0],[0,13],[-13,0],[-11,0],[0,12],[-36,0],[0,-12],[-25,0],[0,12],[-110,0],[0,12],[-48,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-24,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-37],[12,0],[0,-12],[61,0],[0,-13],[37,0],[0,-12],[-13,0],[0,-37],[-36,0],[0,12],[-49,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-62,0],[-47,0],[0,12],[-12,0],[0,13],[-73,0],[0,-13],[-13,0],[0,-12],[-24,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-24,0],[0,12],[-74,0],[0,13],[-60,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-86,0],[0,12],[-24,0],[0,12],[-110,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-73,0],[0,12],[-36,0],[0,12],[-73,0],[0,13],[-37,0],[0,12],[-85,0],[0,12],[-37,0],[0,13],[-61,0],[0,12],[-48,0],[0,12],[-49,0],[0,13],[-73,0]],[[37307,82712],[-239,754],[-680,1290],[-312,516],[-425,774],[-170,403],[-112,286],[-57,774],[172,661],[285,431],[512,459],[768,317],[682,144],[994,31],[143,0],[853,58],[1390,-114],[541,1],[1534,-256],[455,202],[909,116],[1137,-84],[568,315],[626,-85],[453,87],[-509,1175],[144,546],[312,258],[884,1150],[740,1147],[116,1350],[1,344],[-111,2380],[87,689],[372,1520],[86,259],[685,1722],[912,2039],[657,2611]],[[170845,20584],[35,-14],[-2,-327],[-12,-44],[-40,-150],[41,-49],[359,-442],[835,-225],[59,-15],[140,-134],[-5,-60],[-17,-225],[-174,-458],[4,-19],[51,-219],[64,-276],[224,-965],[-51,-274],[-70,-380],[-14,-79],[210,-750],[36,-128],[-66,-299],[-17,-78],[-383,-18],[-38,-83],[-64,-140],[109,-256],[212,-279],[137,-182],[-71,-142],[-124,-13],[-228,-25],[-110,-91],[-62,-51],[-112,-274],[89,-164],[92,-57],[108,-67],[73,-7],[249,-25],[100,-103],[128,-418],[46,-745],[103,-250],[95,-230],[-221,-561],[-55,-140],[-115,-107],[-27,-25],[-362,-28],[-111,-81],[-72,-193],[27,-67],[82,-209],[433,-444],[27,-28],[89,-286],[-143,-366],[12,-32],[111,-291],[45,-116],[-273,-222],[-82,-204],[100,-264],[79,-46],[93,-54],[190,-570],[16,-49],[-6,-69],[-66,-768],[-13,-154],[-242,-343],[-104,-404],[-49,-192],[36,-567],[198,-366],[154,-113],[213,-157],[280,-205],[19,-14],[79,-257],[-61,-173],[-649,-832],[-133,-325],[19,-235],[189,-317],[300,-236],[972,-577],[119,-184],[-55,-64],[-37,0],[0,-13],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-61,0],[-61,0],[0,13],[-45,0],[-137,0],[0,12],[-86,0],[0,12],[-12,0],[0,-12],[-73,0],[0,-12],[-12,0],[0,-13],[-37,0],[0,-12],[-195,0],[0,-12],[-97,0],[0,12],[-146,0],[0,-12],[-195,0],[0,12],[-232,0],[0,-12],[-317,0],[0,-13],[-109,0],[0,-12],[-25,0],[0,-12],[-134,0],[0,-13],[-73,0],[0,-12],[-12,0],[0,12],[-37,0],[0,-12],[-36,0],[0,-12],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,-12],[-195,0],[0,-12],[-12,0],[0,12],[-73,0],[0,12],[-24,0],[0,-12],[-25,0],[0,12],[-24,0],[0,-12],[-24,0],[0,12],[-13,0],[0,-12],[-48,0],[0,-12],[-25,0],[0,-13],[-61,0],[0,-12],[-48,0],[0,-12],[-25,0],[0,-12],[-36,0],[0,-13],[-37,0],[0,-12],[-36,0],[0,-12],[-110,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-25],[-13,0],[0,-49],[13,0],[0,-12],[12,0],[0,-25],[-12,0],[0,-12],[-13,0],[0,-13],[-12,0],[0,-12],[-61,0],[0,25],[13,0],[0,12],[-13,0],[0,12],[-12,0],[0,-12],[-61,0],[0,-12],[-49,0],[0,-13],[-12,0],[0,-12],[-90,0],[-44,0],[0,12],[-12,0],[0,13],[-85,0],[0,12],[-37,0],[0,-12],[-97,0],[0,-13],[-37,0],[0,-12],[-85,0],[0,12],[-12,0],[0,13],[-195,0],[0,-13],[-12,0],[0,-49],[-12,0],[-1,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-49,0],[0,-12],[-12,0],[0,25],[12,0],[0,24],[25,0],[0,13],[12,0],[0,12],[12,0],[0,37],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-48,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-110,0],[0,12],[-85,0],[0,12],[-49,0],[0,13],[-122,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-61,0],[0,12],[-12,0],[0,-12],[-36,0],[0,12],[-223,0],[-57,0],[0,12],[-98,0],[0,13],[-73,0],[0,12],[-61,0],[0,12],[-219,0],[0,13],[-159,0],[0,12],[-12,0],[0,12],[-73,0],[0,12],[-61,0],[0,-12],[-12,0],[0,25],[-12,0],[0,-13],[-25,0],[0,13],[-48,0],[0,12],[-49,0],[0,-12],[-24,0],[0,12],[-86,0],[0,12],[-73,0],[0,13],[-73,0],[0,12],[-244,0],[0,12],[-61,0],[0,-12],[-12,0],[0,12],[-85,0],[0,13],[-49,0],[0,-13],[-24,0],[0,13],[-49,0],[0,-13],[-36,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-13,0],[0,-12],[-73,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-85,0],[0,13],[-61,0],[0,12],[-85,0],[0,12],[-49,0],[0,-12],[-24,0],[0,12],[-159,0],[0,12],[-49,0],[0,-12],[-36,0],[0,12],[-49,0],[0,-12],[-24,0],[0,12],[-159,0],[0,13],[-12,0],[0,-13],[-61,0],[0,13],[-36,0],[0,-13],[-12,0],[0,13],[-74,0],[0,12],[-231,0],[0,-12],[-24,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-12],[-37,0],[0,-13],[-24,0],[0,-12],[-15,0],[-9,0],[0,-12],[-37,0],[0,-13],[-12,0],[0,-12],[-61,0],[0,-12],[-12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[25,0],[0,-49],[-25,0],[0,-12],[-48,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-85,0],[0,12],[-24,0],[0,12],[-13,0],[0,37],[13,0],[0,25],[36,0],[0,12],[12,0],[0,12],[12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[12,0],[0,25],[12,0],[0,12],[12,0],[0,13],[13,0],[0,12],[12,0],[0,12],[49,0],[0,12],[12,0],[0,13],[24,0],[0,12],[37,0],[0,12],[46,0],[39,0],[0,13],[24,0],[0,12],[12,0],[0,37],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[13,0],[0,12],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,24],[13,0],[0,13],[12,0],[0,86],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,24],[0,13],[12,0],[0,12],[13,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,24],[12,0],[0,13],[13,0],[0,86],[12,0],[0,74],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-98,0],[0,-13],[-12,0],[0,-24],[-61,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-49,0],[0,12],[-24,0],[0,-12],[-24,0],[0,-12],[-13,0],[0,-37],[-12,0],[0,-37],[12,0],[0,-25],[37,0],[0,-12],[24,0],[0,-12],[49,0],[0,-13],[12,0],[0,-12],[12,0],[0,-25],[13,0],[0,-24],[12,0],[0,-13],[12,0],[0,-12],[24,0],[0,-12],[49,0],[0,-12],[37,0],[0,12],[24,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[25,0],[0,-86],[-13,0],[0,-99],[13,0],[0,-37],[12,0],[0,-24],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[13,0],[0,-12],[24,0],[0,-13],[12,0],[0,-12],[12,0],[0,-62],[-12,0],[0,-74],[-12,0],[0,-12],[-24,0],[0,-12],[-13,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-37],[-12,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-18,0],[-18,0],[0,51],[0,11],[-13,0],[0,22],[0,15],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,-13],[-12,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-60,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-61,0],[0,12],[-48,0],[0,12],[-122,0],[0,13],[-49,0],[0,12],[-49,0],[0,12],[-170,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-121,0],[0,13],[-49,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-73,0],[0,12],[-85,0],[0,12],[-73,0],[0,13],[-49,0],[0,12],[-73,0],[0,12],[-85,0],[0,13],[-49,0],[0,12],[-73,0],[0,12],[-55,0],[-6,0],[0,9],[0,4],[-37,0],[0,12],[-73,0],[0,12],[-256,0],[0,12],[-12,0],[0,13],[-12,0],[0,49],[12,0],[0,12],[12,0],[0,13],[13,0],[0,61],[-13,0],[0,37],[13,0],[0,25],[12,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,37],[13,0],[0,24],[12,0],[0,37],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-49,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-61,0],[0,12],[-61,0],[0,37],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,62],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-73,0],[0,13],[-85,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,-12],[-12,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-73,0],[0,12],[-73,0],[0,12],[-18,0],[-165,0],[0,49],[25,0],[0,13],[12,0],[0,24],[-12,0],[0,13],[12,0],[0,37],[12,0],[0,12],[12,0],[0,12],[12,0],[0,37],[13,0],[0,12],[24,0],[0,13],[37,0],[0,12],[48,0],[0,12],[25,0],[0,25],[12,0],[0,25],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[25,0],[0,12],[14,0],[22,0],[0,12],[37,0],[0,25],[12,0],[0,24],[12,0],[0,13],[12,0],[0,24],[13,0],[0,25],[12,0],[0,12],[12,0],[0,13],[12,0],[0,24],[12,0],[0,74],[-12,0],[0,74],[-12,2]],[[152392,29625],[769,803],[341,345],[1508,1494],[884,1637],[1280,690],[1876,261],[1561,-343],[369,-459],[-542,-861],[-369,-574],[-1140,-1895],[-1,-201],[28,-716],[567,-230],[682,-228],[907,-601],[-370,-1407],[-1257,-3415],[84,-1033],[255,-142],[484,-403],[255,59],[283,-29],[541,-28],[1053,576],[684,1779],[711,948],[625,-373],[735,-1777],[595,-1463],[1306,-829],[2812,-485],[937,-141]],[[29521,88461],[0,-13],[13,0],[0,-24],[12,0],[0,-37],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[13,0],[0,-12],[109,0],[0,12],[49,0],[0,-12],[12,0],[0,-49],[-12,0],[0,-12],[-36,0],[0,-13],[-25,0],[0,-37],[12,0],[0,-24],[13,0],[0,-25],[12,0],[0,-12],[12,0],[0,-25],[24,0],[0,-12],[49,0],[0,-25],[24,0],[0,-12],[13,0],[0,-12],[12,0],[0,-13],[24,0],[0,-12],[37,0],[0,25],[12,0],[0,12],[24,0],[0,24],[12,0],[0,25],[13,0],[0,12],[12,0],[0,25],[36,0],[0,-25],[-12,0],[0,-24],[-12,0],[0,-25],[-12,0],[0,-24],[-12,0],[0,-13],[-13,0],[0,-24],[-12,0],[0,-50],[-12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[-12,0],[0,-12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-37],[12,0],[0,-12],[12,0],[0,-25],[12,0],[0,-25],[12,0],[0,-12],[13,0],[0,-49],[-13,0],[0,-12],[-12,0],[0,-13],[-24,0],[0,13],[-12,0],[0,37],[-13,0],[0,61],[-12,0],[0,12],[-12,0],[0,62],[-12,0],[0,37],[-12,0],[0,49],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0]],[[29631,88547],[0,-13],[-24,0],[0,13],[-13,0],[0,12],[13,0],[0,12],[24,0],[0,13],[24,0],[0,12],[25,0],[0,12],[24,0],[0,12],[61,0],[0,13],[12,0],[0,12],[37,0],[0,13],[12,0],[0,12],[49,0],[0,12],[12,0],[0,12],[37,0],[0,13],[36,0],[0,12],[24,0],[0,12],[25,0],[0,13],[12,0],[0,12],[24,0],[0,12],[12,0],[0,13],[61,0],[0,12],[37,0],[0,12],[36,0],[0,12],[25,0],[0,-36],[-25,0],[0,-13],[-36,0],[0,-12],[-37,0],[0,-12],[-48,0],[0,-13],[-25,0],[0,-12],[-12,0],[0,-12],[-24,0],[0,-13],[-25,0],[0,-12],[-24,0],[0,-12],[-36,0],[0,-12],[-37,0],[0,-13],[-12,0],[0,-12],[-49,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,-12],[-24,0],[0,-12],[-61,0],[0,-13],[-24,0],[0,-12],[-25,0],[0,-12],[-24,0]],[[37307,82712],[-25,0],[0,12],[-60,0],[0,12],[-61,0],[0,13],[-110,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-61,0],[0,12],[-85,0],[0,12],[-49,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,-12],[-48,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-85,0],[0,12],[-36,0],[0,13],[-13,0],[0,24],[13,0],[0,13],[12,0],[0,-13],[48,0],[0,-12],[61,0],[0,-12],[49,0],[0,24],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[12,0],[0,50],[-49,0],[0,-25],[-12,0],[0,-12],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,-12],[-61,0],[0,37],[49,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,-37],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-13,0],[0,-24],[25,0],[0,-13],[24,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[13,0],[0,-12],[36,0],[0,-12],[37,0],[0,-13],[49,0],[0,-12],[12,0],[0,-12],[-12,0],[0,-12],[-61,0],[0,12],[-25,0],[0,12],[-48,0],[-1,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-61,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-61,0],[0,13],[-12,0],[0,12],[-158,0],[0,12],[-37,0],[0,12],[-12,0],[0,-12],[-49,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,25],[-122,0],[0,12],[-48,0],[0,13],[-73,0],[0,73],[-25,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-98,0],[0,12],[-12,0],[0,25],[-61,0],[0,-12],[-73,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-15,0],[-9,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-12,0],[0,36],[0,13],[-7,0],[-5,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,49],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-13,0],[0,24],[13,0],[0,50],[12,0],[0,37],[-12,0],[0,24],[-13,0],[0,49],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,24],[-8,0],[-17,0],[0,5],[0,8],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,-12],[-61,0],[0,25],[-12,0],[0,12],[-13,0],[0,-12],[-12,0],[0,-13],[-49,0],[0,25],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,-49],[-12,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,-13],[-12,0],[0,13],[-49,0],[0,12],[-73,0],[0,12],[-12,0],[0,25],[-61,0],[0,12],[-49,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,-12],[-48,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-48,0],[0,12],[-37,0],[0,12],[-73,0],[0,-12],[-12,0],[0,8],[0,4],[-11,0],[-14,0],[0,6],[0,7],[-15,0],[-21,0],[0,12],[-8,0],[-4,0],[0,25],[-13,0],[0,12],[-73,0],[0,12],[-27,0],[-9,0],[0,13],[-20,0],[-29,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[6,0],[6,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,-12],[-24,0],[0,36],[-12,1],[0,24],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,24],[-12,0],[0,25],[-49,0],[0,12],[-73,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,25],[-49,0],[0,37],[-73,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,25],[-85,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-73,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-10,0],[-15,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,43],[0,31],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,61],[-12,0],[0,12],[-13,0],[0,37],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-9,0],[-3,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,73],[-12,0],[0,13],[12,0],[0,49],[12,0],[0,49],[12,0],[0,86],[12,0],[0,37],[-12,0],[0,74],[12,0],[0,37],[12,0],[0,12],[25,0],[0,13],[12,0],[0,12],[12,0],[0,-12],[12,0],[0,12],[25,0],[0,12],[48,0],[0,-12],[86,0],[0,-12],[36,0],[0,12],[37,0],[0,12],[12,0],[0,13],[12,0],[0,61],[25,0],[0,25],[12,0],[0,12],[12,0],[0,25],[12,0],[0,24],[12,0],[0,74],[13,0],[0,25],[12,0],[0,12],[12,0],[0,12],[36,0],[0,13],[25,0],[0,12],[12,0],[0,12],[12,0],[0,13],[25,0],[0,12],[24,0],[0,12],[37,0],[0,-12],[12,0],[0,-25],[12,0],[0,-12],[12,0],[0,-61],[-12,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-24,0],[0,-13],[-12,0],[0,-12],[-13,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-86],[12,0],[0,-12],[12,0],[0,-13],[24,0],[0,-12],[13,0],[0,-12],[-13,0],[0,-13],[13,0],[0,-24],[12,0],[0,-12],[24,0],[0,12],[12,0],[0,12],[37,0],[0,-12],[12,0],[0,-12],[85,0],[0,-13],[25,0],[0,-61],[-13,0],[0,-13],[-24,0],[0,-24],[24,0],[0,-13],[37,0],[0,-12],[24,0],[0,-12],[25,0],[0,-12],[24,0],[0,-25],[12,0],[0,-12],[12,0],[0,-25],[13,0],[0,-25],[12,0],[0,-49],[12,0],[0,-172],[12,0],[0,-25],[25,0],[0,-25],[12,0],[0,-24],[24,0],[0,-37],[12,0],[0,-25],[13,0],[0,-12],[24,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-86],[-12,0],[0,-12],[12,0],[0,-25],[13,0],[0,-37],[12,0],[0,-12],[-12,0],[0,-25],[12,0],[0,-24],[12,0],[0,-13],[12,0],[0,13],[12,0],[0,135],[13,0],[0,49],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[73,0],[0,-13],[37,0],[0,-12],[12,0],[0,-12],[25,0],[0,-12],[24,0],[0,-13],[36,0],[0,-24],[13,0],[0,-50],[-13,0],[0,-12],[-12,0],[0,-49],[-12,0],[0,-62],[-12,0],[0,-61],[-12,0],[0,-13],[-12,0],[0,-12],[12,0],[0,-12],[24,0],[0,12],[12,0],[0,12],[12,0],[0,13],[13,0],[0,12],[48,0],[0,12],[13,0],[0,13],[12,0],[0,12],[12,0],[0,12],[49,0],[0,13],[48,0],[0,12],[13,0],[0,12],[36,0],[0,13],[12,0],[0,12],[12,0],[0,49],[13,0],[0,12],[12,0],[0,37],[12,0],[0,37],[12,0],[0,62],[25,0],[0,24],[12,0],[0,25],[12,0],[0,37],[24,0],[0,37],[13,0],[0,12],[24,0],[0,25],[24,0],[0,-13],[12,0],[0,13],[49,0],[0,12],[12,0],[0,-12],[73,0],[0,-13],[25,0],[0,13],[36,0],[0,12],[37,0],[0,-12],[85,0],[0,-13],[49,0],[0,-12],[24,0],[0,-12],[37,0],[0,-13],[24,0],[0,-24],[12,0],[0,-49],[13,0],[0,-13],[-13,0],[0,-37],[13,0],[0,-12],[-13,0],[0,-24],[-12,0],[0,-62],[12,0],[0,-49],[13,0],[0,-25],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-25],[12,0],[0,-12],[25,0],[0,-13],[24,0],[0,-12],[12,0],[0,-12],[25,0],[0,-13],[12,0],[0,-12],[36,0],[0,12],[61,0],[0,13],[12,0],[0,12],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[24,0],[0,-13],[24,0],[0,-37],[12,0],[0,-12],[13,0],[0,-12],[12,0],[0,12],[12,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,49],[-13,0],[0,12],[-12,0],[0,62],[-12,0],[0,12],[-37,0],[0,-12],[-12,0],[0,-99],[12,0],[0,-49],[-12,0],[0,-74],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-25,0],[0,-12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[12,0],[0,37],[12,0],[0,172],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,37],[-13,0],[0,25],[13,0],[0,25],[-13,0],[0,12],[13,0],[0,86],[-25,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-13,0],[0,-12],[-60,0],[0,12],[-13,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-61,0],[0,-12],[-12,0],[0,-13],[12,0],[0,-12],[25,0],[0,-12],[24,0],[0,-25],[12,0],[0,-12],[-24,0],[0,-12],[-86,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-110,0],[0,12],[-12,0],[0,-12],[-36,0],[0,-13],[-25,0],[0,13],[-24,0],[0,-13],[-37,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-24,0],[0,-24],[-25,0],[0,-13],[-12,0],[0,-12],[-49,0],[0,-12],[-36,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,-12],[-24,0],[0,-13],[-24,0],[0,-12],[-13,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-61,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,-12],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,49],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,25],[-12,0],[0,36],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,37],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,61],[-12,0],[0,25],[12,0],[0,12],[-12,0],[0,12],[12,0],[0,25],[12,0],[0,25],[25,0],[0,12],[12,0],[0,12],[24,0],[0,25],[37,0],[0,12],[24,0],[0,12],[12,0],[0,13],[13,0],[0,12],[12,0],[0,12],[48,0],[0,13],[13,0],[0,24],[12,0],[0,13],[-49,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-12],[-37,0],[0,-13],[-36,0],[0,-12],[-13,0],[0,-12],[-49,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-12],[-24,0],[0,-12],[-25,0],[0,-13],[-24,0],[0,-24],[-25,0],[0,-13],[-12,0],[0,-24],[-24,0],[0,-25],[-12,0],[0,-12],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-28,0],[-9,0],[0,86],[13,0],[0,24],[12,0],[0,25],[12,0],[0,25],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[12,0],[0,24],[12,0],[0,37],[12,0],[0,25],[12,0],[0,12],[12,0],[0,37],[13,0],[0,25],[12,0],[0,98],[12,0],[0,37],[12,0],[0,25],[-12,0],[0,12],[-24,0],[0,37],[24,0],[0,12],[12,0],[0,25],[12,0],[0,12],[13,0],[0,13],[12,0],[0,12],[-12,0],[0,24],[24,0],[0,37],[12,0],[0,37],[12,0],[0,50],[12,0],[0,24],[-12,0],[0,12],[12,0],[0,37],[13,0],[0,13],[12,0],[0,12],[12,0],[0,25],[12,0],[0,74],[-24,0],[0,12],[-37,0],[0,74],[25,0],[0,12],[12,0],[0,12],[85,0],[0,25],[12,0],[0,12],[25,0],[0,37],[-12,0],[0,62],[-13,0],[0,12],[-12,0],[0,12],[-48,0],[0,13],[-13,0],[0,24],[13,0],[0,-12],[12,0],[0,37],[24,0],[0,24],[12,0],[0,13],[25,0],[0,12],[12,0],[0,13],[12,0],[0,24],[12,0],[0,49],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-60,0],[0,25],[-13,0],[0,12],[49,0],[0,12],[12,0],[0,25],[37,0],[0,25],[12,0],[0,12],[12,0],[0,44],[0,5],[-12,0],[0,13],[-37,0],[0,61],[13,0],[0,14],[0,109],[-13,0],[0,12],[13,0],[0,25],[-13,0],[0,86],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,49],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,37],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,37],[-12,0],[0,123],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,37],[-13,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,37],[-12,0],[0,25],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,62],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,86],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,74],[-12,0],[0,37],[-36,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,11]],[[105370,65023],[-56,172],[286,1750],[656,804],[-1021,1032],[-84,1033],[939,488],[-1107,1061],[-27,917],[1449,375],[-1162,1175],[-228,115],[-1246,2179],[-83,1377],[543,1865],[655,1378],[1111,1723],[486,1808],[-1646,1001],[-2469,1661],[-851,803],[287,2008]],[[104636,127779],[36,-64],[225,-398],[-65,-126],[-14,-76],[-25,-131],[-169,-227],[-186,-250],[-51,-284],[6,-38],[53,-298],[38,24],[204,130],[74,47],[210,132],[270,53],[59,12],[24,5],[52,-5],[755,-70],[91,69],[41,32],[69,52],[356,272],[160,94],[155,91],[252,148],[192,193],[152,379],[32,78],[171,126],[487,359],[280,-16],[270,-16],[25,-1],[68,43],[59,38],[349,222],[15,-1],[289,-26],[412,-37],[319,86],[71,19],[165,45],[233,111],[60,119],[22,43],[-7,86],[-12,168],[172,274],[212,-21],[93,-139],[78,-116],[80,-22],[71,-20],[55,44],[87,68],[1,254],[17,10],[175,101],[-17,37],[-173,371],[31,132],[251,-44],[102,-19],[17,8],[98,43],[240,105],[80,36],[75,-11],[76,-10],[71,-121],[213,-356],[117,-197],[-5,-39],[-27,-246],[70,-163],[121,-71],[51,-4],[591,-45],[115,-9],[968,-73],[337,115],[268,92],[72,24],[640,892],[1,184],[-100,188],[-110,209],[16,181],[5,53],[16,21],[177,223],[10,193],[1,10],[-201,306],[22,305],[-159,224],[-52,72],[-179,459],[3,49],[7,130],[1,24],[458,761],[822,974],[51,60],[42,136],[142,463],[86,21],[116,29],[112,98],[5,4],[85,75],[56,50],[178,157],[67,-20],[135,-42],[162,101],[262,-52],[34,19],[77,42],[248,1128],[-90,254],[42,204],[131,101],[303,81],[364,99],[478,638],[468,506],[384,416],[238,223],[183,171],[86,81],[77,99],[198,256],[102,264],[-162,443],[-47,129],[-40,111],[49,287],[24,139],[-30,248],[-9,78],[-191,-33],[-153,-26],[-100,82],[-39,224],[78,279],[312,1112],[94,763],[327,751],[-8,284],[-129,469],[21,234],[115,125],[138,151],[28,19],[57,39],[102,70],[402,277],[481,594],[39,118],[135,413],[103,317],[183,228],[297,137],[38,-2],[1922,-68],[613,-22],[726,-26],[535,-20],[526,-19],[10,0],[26,-120],[2,-7],[48,-221],[80,-364],[63,-1192],[-372,-851],[-6,-13],[-83,-189],[269,-274],[226,-230],[411,-418],[2520,-1502],[656,-737],[338,-804],[339,-437],[999,-418],[141,-166],[199,-237],[531,-631],[9,-170],[10,-190],[251,-428],[-73,-305],[179,-571],[48,-468],[-236,-741],[3,-6],[477,-872],[23,-73],[152,-475],[43,-134],[8,-377],[-8,-49],[-70,-424],[-15,-96],[165,-1217],[7,-54],[88,-647],[2,-16],[169,-408],[581,-777],[106,-180],[234,-397],[200,-341],[19,-306],[28,-5],[264,-47],[71,-102],[25,-333],[3,-44],[-52,-233],[-173,-233],[-11,-184],[-193,-222],[48,-113],[112,-265],[493,-206],[452,-460],[160,-206],[30,-39],[12,-107],[27,-250],[241,-225],[288,86],[15,4],[171,-72],[291,-297],[172,9],[61,-245],[18,-70],[150,-10],[183,-12],[160,-225],[151,-21],[132,172],[252,-1],[100,-194],[-85,-385],[-18,-83],[117,-621],[-50,-117],[-42,-96],[-599,-488],[-59,-48],[-62,-193],[22,-142],[13,-86],[51,-335],[31,-201],[-52,-198],[-38,-140],[-171,-646],[-79,-296],[-1,-285],[199,-459],[-33,-458],[348,-999],[27,-672],[90,-153],[62,-16],[220,-57],[110,-102],[-91,-142],[150,-123],[50,-174],[-122,-202],[-14,-9],[-19,-11],[-281,-172],[-50,-416],[-3,-21],[-91,-92],[-113,-37],[-160,-53],[-68,-75],[-24,-28],[-324,-363],[-26,4],[-168,23],[-119,16],[-162,-152],[-363,-49],[-142,-162],[149,-296],[-31,-213],[96,-220],[73,-168],[18,-478],[28,-135],[90,-436],[270,-470],[9,-234],[-82,-172],[-9,-7],[-163,-125],[-274,-11],[-160,-7],[-71,-101],[128,-225],[12,-20],[-200,-120],[-104,-62],[-62,-254],[-31,-81],[610,-1072],[84,-48],[10,1],[101,160],[31,48],[58,92],[141,50],[23,-300],[20,-267],[4,-54],[-254,-365],[-365,-365],[-91,-208],[-11,-25],[220,-487],[89,-197],[-61,-61],[-262,12],[-10,-36],[-29,-100],[-95,-332],[-187,-122],[-400,-261],[-102,-244],[0,-132],[-1,-102],[197,-856],[-29,-84],[-43,-120],[-120,83],[-19,86],[-5,26],[-15,71],[-111,21],[-142,-70],[-161,41],[-122,-101],[-10,-58],[-31,-166],[15,-113],[33,-243],[-223,-284],[-160,194],[-142,-20],[-41,-153],[-36,-137],[-15,-55],[-233,-152],[-182,-39],[-60,-58],[-112,-104],[122,-133],[18,-21],[188,-17],[44,-4],[-153,-295],[-191,62],[-14,14],[-126,120],[-142,-10],[-6,-10],[-85,-152],[93,-161],[37,-64],[-753,-262],[-25,-9],[-72,-193],[220,-357],[-9,-21],[-43,-94],[-40,-88],[114,-322],[6,-15],[-112,-132],[-202,-70],[-264,-365],[-142,-30],[-95,65],[-28,19],[-88,60],[-111,-101],[-19,-54],[-143,-406],[-17,-49],[-15,-41],[-21,-60],[-91,-81],[-121,21],[-201,215],[-141,-10],[-191,-200],[21,-21],[-74,-225],[29,-232],[19,-155],[-15,-49],[-46,-155],[-172,-121],[-343,63],[-65,-41],[-16,-9],[-48,-143],[-44,-132],[-251,266],[-111,-20],[-8,-20],[-77,-179],[-58,-136],[-272,-29],[-101,-132],[-12,-52],[-9,-39],[113,-267],[16,-39],[-253,-213],[-81,-30],[-90,72],[5,102],[2,37],[4,95],[-100,82],[-145,-28],[-118,-22],[-129,-98],[-43,-33],[-81,-224],[63,-376],[5,-31],[-92,-285],[-112,-81],[-200,195],[-344,-100],[-70,122],[30,121],[43,174],[-12,11],[-320,306],[-182,-162],[-10,-65],[-11,-67],[129,-418],[-33,-682],[210,-256],[-25,-33],[-442,-585],[-38,-13],[-83,-27],[-301,276],[-423,74],[-192,-111],[-100,-275],[-33,-91],[29,-102],[333,-94],[49,-122],[-73,-81],[-292,-324],[-121,-368],[-145,-435],[-142,0],[-281,2],[-246,260],[-35,37],[-111,41],[-202,-101],[-280,-706],[-47,-117],[247,-260]],[[90932,40377],[-16,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-36,0],[0,25],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-11,0],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,24],[-24,0],[0,25],[-12,0],[0,12],[-49,0],[0,25],[-24,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-24,0],[0,49],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,12],[-13,0],[0,37],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,74],[-13,0],[0,37],[-12,0],[0,62],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,24],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[12,0],[0,24],[-12,0],[0,10],[0,15],[-20,0],[-5,0],[0,25],[-12,0],[0,12],[-24,0],[0,24],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,25],[-24,0],[0,12],[-20,0],[-4,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,49],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[48,0],[0,-12],[13,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,24],[-12,0],[0,49],[-12,0],[0,13],[12,0],[0,49],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,24],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-36,0],[0,13],[-13,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[61,0],[0,62],[-13,0],[0,49],[-12,0],[0,12],[-12,0],[0,37],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,25],[-24,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,25],[-12,0],[0,24],[-12,0],[0,12],[36,0],[0,13],[25,0],[0,12],[12,0],[0,25],[12,0],[0,86],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,12],[-12,0],[0,50],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,37],[12,0],[0,13],[25,0],[0,12],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[12,0],[0,49],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,37],[-12,0],[0,37],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,49],[12,0],[0,25],[12,0],[0,24],[12,0],[0,37],[12,0],[0,50],[13,0],[0,24],[12,0],[0,13],[-12,0],[0,73],[-13,0],[0,74],[-12,0],[0,13],[-12,0],[0,49],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[-1,24],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-25,0],[0,24],[-12,0],[0,12],[-12,1],[0,12],[-12,0],[0,12],[-25,0],[0,25],[-12,0],[0,37],[55,0],[18,0],[0,-13],[13,0],[0,-12],[12,0],[1,-10],[4,-2],[7,0],[0,-6],[0,-7],[8,0],[4,0],[0,-12],[12,0],[0,-12],[15,0],[10,0],[0,-7],[0,-18],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[13,0],[0,-12],[12,0],[0,-13],[12,0],[0,-24],[12,0],[0,-13],[12,0],[0,-24],[13,0],[0,-37],[12,0],[0,-37],[12,0],[0,-12],[12,0],[0,-13],[66,0],[19,0],[0,13],[25,0],[0,12],[24,0],[0,12],[12,0],[0,25],[12,0],[0,12],[13,0],[0,12],[12,0],[0,25],[12,0],[0,12],[24,0],[0,-12],[86,0],[0,12],[12,0],[0,25],[-12,0],[0,12],[-13,0],[0,-12],[-36,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,-12],[-24,0],[0,-12],[-13,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-12],[-25,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-36,0],[-25,0],[0,32],[0,5],[-4,0],[-8,0],[0,10],[0,15],[-12,0],[0,61],[-12,0],[0,37],[-12,0],[0,37],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,25],[-25,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-97,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,25],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-33,0],[-4,0],[0,13],[-12,0],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-6,0],[-6,0],[0,6],[0,7],[-9,0],[-40,0],[0,24],[-12,0],[0,13],[-25,0],[0,24],[-36,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,25],[-12,0],[0,24],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-37,0],[0,25],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,24],[-24,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,24],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-12,0],[0,24],[-37,0],[0,13],[-49,0],[0,24],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,-12],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-25,0],[0,12],[-24,0],[0,-12],[-61,0],[0,12],[-24,0],[0,13],[-13,0],[0,-13],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-61,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-61,0],[0,-12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,-12],[-12,0],[0,12],[-13,0],[0,12],[-27,0],[-58,0],[0,13],[-61,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,37],[13,0],[0,12],[48,0],[0,13],[49,0],[0,49],[12,0],[0,12],[13,0],[0,25],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[24,0],[0,24],[13,0],[0,123],[-13,0],[0,99],[-12,0],[0,24],[12,0],[0,25],[49,0],[0,-12],[122,0],[0,12],[24,0],[0,12],[37,0],[0,13],[12,0],[0,12],[12,0],[0,25],[12,0],[0,12],[13,0],[0,25],[12,0],[0,24],[12,0],[0,25],[12,0],[0,24],[12,0],[0,87],[-12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[-12,0],[0,49],[-13,0],[0,30],[0,56],[-12,0],[0,25],[-12,0],[0,61],[-12,0],[0,12],[-12,0],[0,62],[12,0],[0,37],[12,0],[0,61],[-12,0],[0,37],[12,0],[0,13],[-12,0],[0,37],[-12,0],[0,86],[-13,0],[0,12],[13,0],[0,37],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,24],[-24,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-25,0],[0,13],[-24,0],[0,36],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,-12],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,25],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-13,0],[-11,0],[0,10],[0,15],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-25,0],[0,24],[-24,0],[0,12],[-36,0],[0,25],[-25,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,1],[0,12],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,-13],[-25,0],[0,-12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,74],[-12,0],[0,25],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-61,0],[0,12],[-25,0],[0,-12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,37],[-12,0],[0,24],[-24,0],[0,50],[-12,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-15,0],[-10,0],[0,10],[0,15],[-14,0],[-10,0],[0,10],[0,14],[-12,0],[0,12],[-14,0],[-23,0],[0,13],[-24,0],[0,24],[-12,0],[0,13],[-25,0],[0,24],[-24,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,24],[-7,0],[-5,0],[0,25],[-24,0],[0,12],[-25,0],[0,25],[-12,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,25],[-12,0],[0,61],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-37,0],[0,37],[-36,0],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,49],[12,0],[0,12],[-12,0],[0,25],[-74,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-37,0],[0,24],[-36,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-37,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-12,0],[0,12],[-27,0],[-9,0],[0,8],[0,5],[-6,0],[-7,0],[0,5],[0,7],[-7,2],[-4,1],[-1,9],[-11,0],[-13,0],[0,11],[0,14],[-17,0],[-8,0],[0,6],[0,19],[-24,0],[0,12],[-13,0],[-23,0],[0,12],[-25,0],[0,13],[-61,0],[0,37],[-12,0],[0,12],[12,0],[0,7],[0,5],[13,0],[0,12],[12,0],[0,37],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[12,0],[0,36],[-12,0],[0,37],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[12,0],[0,111],[-12,0],[0,25],[-24,0],[0,36],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,37],[-12,0],[0,25],[-12,0],[0,49],[-12,0],[0,12],[-12,0],[0,160],[12,0],[0,25],[-12,0],[0,27],[0,10],[-13,0],[0,25],[13,0],[0,24],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,6],[0,6],[13,0],[0,19],[0,18],[12,0],[0,12]],[[105370,65023],[-739,-173],[-485,-632],[-1111,-1838],[-342,-717],[-115,-1320],[-570,-574],[-1279,-203],[-1279,-145],[-596,-87],[-2842,-1181],[-1707,-1005],[-826,-805],[-115,-1378],[308,-2151],[508,-2122],[509,-1491],[-289,-2984],[-1309,-1494],[-2159,-4346]],[[179825,52323],[254,-195],[69,-205],[-43,-97],[-39,-85],[-141,-101],[-405,84],[-299,63],[-51,-40],[-91,-71],[90,-144],[391,-206],[110,-194],[-70,-101],[-22,-31],[-66,-2],[-165,-7],[-142,-111],[-11,-51],[-16,-80],[-87,-428],[-59,-59],[-15,-15],[-18,-17],[-504,-119],[-213,-223],[-93,-356],[59,-327],[239,-419],[111,-543],[15,-74],[-75,-338],[-28,-125],[-122,-203],[-242,12],[-412,166],[-299,389],[-108,-80],[-44,-32],[-19,-59],[-29,-87],[-55,-169],[59,-316],[470,-523],[229,-409],[186,-724],[259,-389],[683,-331],[24,-40],[185,-318],[171,-41],[111,70],[184,366],[6,47],[57,401],[32,31],[191,181],[201,29],[71,-144],[19,-40],[-67,-186],[-138,-383],[28,-346],[-16,-74],[-31,-148],[-26,-124],[59,-264],[54,-245],[14,-63],[200,-195],[312,-53],[25,-186],[4,-28],[-340,-529],[-310,-394],[-121,-40],[-99,122],[-51,63],[-172,-111],[3,-158],[11,-708],[-19,-32],[-123,-192],[-334,-211],[-8,-31],[-63,-233],[-42,-154],[-193,-314],[-345,-324],[-261,43],[-39,122],[2,6],[161,350],[-16,28],[-273,493],[59,80],[53,72],[201,9],[192,101],[124,396],[-95,159],[-15,25],[-171,32],[-292,-100],[-497,-476],[-403,-38],[-222,-110],[-295,-447],[-88,80],[-150,134],[-252,228],[-196,-688],[402,-210],[26,-61],[76,-172],[46,-105],[-6,-99],[-7,-132],[-9,-145],[-34,-87],[-150,-381],[-71,-37],[-212,-114],[-204,-304],[39,-347],[299,-481],[8,-78],[32,-312],[-50,-59],[-19,-32],[-112,-177],[-66,-105],[159,-337],[-6,-331],[-3,-116],[-6,-287],[-94,-600],[-264,-375],[-11,-39],[-90,-319],[-115,-405],[-140,-175],[-21,-26],[-385,-577],[-43,-64],[-77,-140],[-147,-266],[-117,-74],[-106,-68],[-179,85],[-61,29],[-3,7],[-28,57],[-158,335],[-80,38],[-51,24],[-87,-41],[-256,-120],[-95,-153],[-278,-269],[-54,-51],[-86,-55],[-236,-150],[-13,-22],[-60,-95],[-110,-177],[-263,-203],[-49,-115],[-12,-27],[-52,-224],[79,-214],[231,-190],[20,-16],[2,-11],[37,-203],[-42,-183],[226,-400],[23,-40],[-11,-16],[-110,-159],[-194,-281],[-27,-103],[-76,-284],[39,-153],[78,-101],[89,-115],[243,-316],[72,-226],[16,-50],[-112,-346],[-173,-254],[-456,-445],[80,-215],[83,-26],[184,-58],[164,-51],[5,-5],[445,-517],[49,-133],[-122,-305],[9,-184],[159,-306],[58,-39],[222,-147],[90,-153],[3,-62],[6,-142],[-102,-152],[-564,-88],[-300,226],[-93,16],[-149,26],[-91,-43],[-121,-57],[-121,-129],[-31,-33],[-141,-461],[-2,-7],[-9,0],[-313,2],[-311,195],[-282,-39],[-295,-178],[-10,-6],[-28,-17],[-225,-458],[30,-163],[286,-269],[74,-69],[40,-51],[-4,-16],[-69,-320],[68,-337],[-90,-61],[179,-245],[-144,-499],[2,-7],[77,-330],[165,-262],[132,-211],[11,-18],[-6,-7],[-176,-185],[-272,-141],[-112,-173],[17,-61],[68,-26]],[[135544,30808],[1822,1810],[1057,2984],[998,2183],[456,918],[-107,4246],[-1185,5077],[-282,1634],[-225,1319],[374,2181],[2,1119]],[[123450,19745],[-3,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-61,0],[0,12],[-37,0],[0,7],[0,6],[-12,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-49,0],[0,12],[-110,0],[0,13],[-85,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,-12],[-24,0],[0,-12],[-13,0],[0,12],[-36,0],[0,-12],[-12,0],[0,12],[-122,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-73,0],[0,12],[-49,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-12,0],[0,-12],[-13,0],[0,12],[-60,0],[0,12],[-37,0],[0,12],[-61,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-25,0],[0,-12],[-24,0],[0,12],[-49,0],[0,13],[-121,0],[-1,-13],[-24,0],[0,13],[-19,0],[-5,0],[0,12],[-17,0],[-20,0],[0,12],[-12,0],[0,-12],[-61,0],[0,12],[-12,0],[0,25],[12,0],[0,15],[0,22],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-61,0],[0,37],[36,0],[0,12],[73,0],[0,12],[25,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[12,0],[0,49],[-12,0],[0,25],[12,0],[0,24],[-12,0],[0,25],[-12,0],[0,37],[-12,0],[0,25],[-12,0],[0,24],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,49],[24,0],[0,12],[12,0],[0,25],[-12,0],[0,5],[0,7],[-24,0],[0,13],[-37,0],[0,24],[-24,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-12,0],[0,24],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,-12],[-49,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-61,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-61,0],[0,12],[-85,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-60,0],[0,12],[-49,0],[0,12],[-61,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-122,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-73,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,-12],[-48,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-110,0],[0,13],[-52,0],[-9,0],[0,7],[0,5],[-5,0],[-7,0],[0,6],[0,6],[-7,0],[-54,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-97,0],[0,12],[-13,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,8],[0,5],[-8,0],[-4,0],[0,12],[-13,0],[0,12],[-12,0],[0,12],[-36,0],[0,13],[-19,0],[-6,0],[0,12],[-15,0],[-33,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-4,0],[-8,0],[0,12],[-12,0],[0,13],[-22,0],[-15,0],[0,12],[-6,0],[-18,0],[0,25],[-122,0],[0,-13],[-73,0],[0,25],[24,0],[0,12],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,74],[12,0],[0,25],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,24],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-48,0],[0,12],[-13,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,49],[-12,0],[0,25],[-12,0],[0,62],[-13,0],[0,98],[-12,0],[0,25],[-12,0],[0,37],[-24,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,37],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,12],[-61,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,7],[0,6],[-14,0],[-11,0],[0,12],[-19,0],[-5,0],[0,12],[-25,0],[-12,0],[0,5],[0,8],[-18,0],[-6,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-73,0],[0,12],[-12,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-25,0],[0,13],[-12,0],[0,24],[-12,0],[0,37],[24,0],[0,13],[25,0],[0,12],[60,0],[0,12],[10,0],[15,0],[0,12],[12,0],[0,25],[12,0],[0,37],[13,0],[0,25],[-13,0],[0,12],[13,0],[0,25],[-13,0],[0,56],[0,5],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,36],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,13],[-12,0],[0,37],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-24,0],[0,25],[-25,0],[0,12],[-24,0],[0,24],[-12,0],[0,13],[-12,0],[0,12],[-73,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-15,0],[-22,0],[0,12],[-12,0],[0,13],[6,0],[6,0],[0,12],[-12,0],[0,24],[12,0],[0,25],[12,0],[0,12],[13,0],[0,50],[-74,0],[0,24],[-12,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-5,0],[-19,0],[0,25],[-12,0],[0,12],[-13,0],[0,13],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,24],[-49,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,-13],[-12,0],[0,13],[-24,0],[0,-13],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,25],[-49,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-122,0],[0,13],[-61,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-97,0],[0,13],[-13,0],[0,12],[-48,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-109,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-37,0],[0,25],[-36,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-24,1],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-13,0],[0,74],[13,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,-24],[-12,0],[0,-13],[-24,0],[0,-12],[-25,0],[0,-12],[-24,0],[0,-25],[-24,0],[0,-12],[-73,0],[0,12],[-37,0],[0,-12],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-61,0],[0,13],[-16,0],[-21,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-73,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-73,0],[0,12],[-49,0],[0,12],[-37,0],[0,13],[-36,0],[0,-13],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-13,0],[0,-12],[-12,0],[0,12],[-49,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-73,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,-13],[-12,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-12,0],[0,-13],[-24,0],[0,13],[-37,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-61,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-73,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-61,0],[0,-12],[-12,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-13,0],[-11,0],[0,8],[0,4],[-8,0],[-41,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-49,0],[0,12],[-73,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,-13],[-49,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-49,0],[0,13],[-48,0],[0,12],[-49,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-24,0],[0,-12],[-25,0],[0,12],[-36,0],[0,12],[-98,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-36,0],[0,25],[-49,0],[-36,0],[0,12],[-74,0],[0,-12],[-36,0],[0,12],[-49,0],[0,12],[-49,0],[0,-12],[-12,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-37,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-24,0],[-1,-12],[-12,0],[0,-25],[-61,0],[0,12],[-24,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[12,0],[0,12],[-12,0],[0,12],[-98,0],[0,12],[-24,0],[0,-12],[-13,0],[0,12],[-24,0],[0,13],[-73,0],[0,12],[-73,0],[0,12],[-24,0],[0,-12],[-13,0],[0,12],[-36,0],[0,13],[-73,0],[0,-13],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-24,0],[0,-13],[-25,0],[0,13],[-12,0],[0,-13],[-73,0],[0,13],[-12,0],[0,24],[-12,0],[0,13],[-25,0],[0,12],[-61,0],[0,-12],[-12,0],[0,12],[-49,0],[0,12],[-73,0],[0,-7],[0,-5],[-12,0],[0,-12],[-12,0],[0,-13],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,25],[12,0],[0,12],[-12,0],[0,61],[-13,0],[0,25],[-24,0],[0,12],[-36,0],[0,13],[-61,0],[0,12],[-61,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,24],[-13,0],[0,50],[-24,0],[0,49],[-12,0],[0,49],[-12,0],[0,12],[12,0],[0,13],[24,0],[0,-49],[12,0],[0,-25],[13,0],[0,-12],[12,0],[0,-13],[24,0],[0,13],[12,0],[0,12],[13,0],[0,12],[24,0],[0,13],[12,0],[0,-13],[12,0],[0,13],[13,0],[0,12],[12,0],[0,49],[12,0],[0,25],[-12,0],[0,24],[-25,0],[0,25],[-12,0],[0,37],[12,0],[0,37],[13,0],[0,37],[12,0],[0,37],[24,0],[0,-13],[12,0],[0,13],[12,0],[0,24],[25,0],[0,-12],[12,0],[0,-74],[-12,0],[0,-24],[12,0],[0,-13],[36,0],[0,-12],[13,0],[0,-12],[12,0],[0,12],[12,0],[0,25],[24,0],[0,12],[74,0],[0,-12],[24,0],[0,12],[49,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,133],[0,64],[12,0],[0,12],[13,0],[0,25],[24,0],[0,12],[0,37],[12,0],[0,49],[12,0],[0,13],[12,0],[0,12],[13,0],[0,25],[24,0],[0,12],[61,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[25,0],[0,12],[12,0],[0,173],[12,0],[0,37],[12,0],[0,12],[12,0],[0,62],[13,0],[0,12],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-13,0],[0,-13],[-12,0],[0,-12],[-24,0],[0,-12],[-12,0],[0,-13],[-25,0],[0,-12],[-36,0],[0,-12],[-12,0],[0,24],[-13,0],[0,13],[-12,0],[0,24],[12,0],[0,37],[13,0],[0,37],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,12],[25,0],[0,13],[24,0],[0,12],[24,0],[0,12],[49,0],[0,13],[25,0],[0,-13],[85,0],[0,-12],[48,0],[0,-12],[49,0],[0,-13],[159,0],[0,13],[24,0],[0,12],[12,0],[0,12],[12,0],[0,13],[13,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[12,0],[0,24],[12,0],[0,25],[13,0],[0,12],[12,0],[0,12],[49,0],[0,13],[24,0],[0,12],[110,0],[0,-12],[36,0],[0,-13],[49,0],[0,-12],[24,0],[0,-12],[25,0],[0,-13],[36,0],[0,-12],[12,0],[0,-12],[25,0],[0,12],[12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,-12],[-24,0],[0,-12],[-25,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-36,0],[0,12],[-110,0],[0,-12],[-37,0],[0,-13],[-36,0],[0,-12],[-25,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-37],[-13,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-24],[-24,0],[0,-13],[-159,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-61,0],[0,-12],[-25,0],[0,-12],[-36,0],[0,-13],[-25,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-25],[-13,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-37],[-12,0],[0,-98],[24,0],[0,-13],[12,0],[0,-12],[37,0],[0,-12],[85,0],[0,12],[24,0],[0,-12],[13,0],[0,-12],[12,0],[0,-13],[12,0],[0,-24],[12,0],[0,-13],[12,0],[0,-49],[-12,0],[0,-25],[-12,0],[0,-24],[-12,0],[0,-25],[-12,0],[0,-24],[-86,0],[0,-13],[-24,0],[0,-12],[-24,0],[0,-12],[-13,0],[0,-74],[-12,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-12],[-13,0],[0,-13],[-24,0],[0,-12],[-12,0],[0,-12],[0,-13],[-12,0],[0,-12],[-25,0],[0,-16],[0,-21],[-12,0],[0,-25],[-12,0],[0,-24],[12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-62],[-12,0],[0,-37],[-13,0],[0,-12],[-12,0],[0,-25],[-36,0],[0,25],[-13,0],[0,12],[13,0],[0,50],[12,0],[0,12],[12,0],[0,49],[12,0],[0,13],[-12,0],[0,12],[12,0],[0,12],[-12,0],[0,86],[-12,0],[0,13],[-12,0],[0,53],[0,8],[-13,0],[0,49],[-12,0],[0,62],[-12,0],[0,61],[-12,0],[0,13],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-5,0],[-7,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,22],[-36,2],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-10,0],[-26,0],[0,13],[-12,0],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-61,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-39,0],[-21,0],[0,12],[-13,0],[0,5],[0,7],[-15,0],[-21,0],[0,13],[-12,0],[0,4],[0,8],[-13,0],[0,12],[-24,0],[0,13],[-17,0],[-12,0],[-8,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-36,0],[0,-5],[0,-7],[-13,0],[0,12],[0,12],[-24,0],[0,25],[-36,0],[0,12],[-13,0],[0,13],[-48,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-49,0],[0,12],[-36,0],[0,12],[-33,0],[-4,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,-12],[-24,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-10,0],[-39,0],[0,12],[-24,0],[0,6],[0,6],[-23,0],[-14,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-48,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-12,0],[0,-13],[-37,0],[0,-12],[-61,0],[0,12],[-12,0],[0,36],[0,38],[-12,0],[0,25],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,-12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,37],[-12,0],[0,13],[-25,0],[-12,0],[0,12],[-37,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-12,0],[0,61],[24,0],[0,13],[25,0],[0,-13],[24,0],[0,13],[12,0],[0,24],[12,0],[0,25],[13,0],[0,25],[12,0],[0,12],[12,0],[0,86],[-12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[25,0],[0,12],[24,0],[0,25],[36,0],[0,40],[0,9],[-36,0],[0,12],[-12,0],[0,37],[-12,0],[0,25],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,24],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,24],[-7,0],[-17,0],[0,12],[-6,0],[-6,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-49,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-49,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-48,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-36,0],[0,13],[-15,0],[-46,0],[0,12],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-61,0],[0,12],[-24,0],[0,13],[-61,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-49,0],[0,13],[-25,0],[0,12],[-17,0],[-31,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-24,0],[0,12],[-6,0],[-55,0],[0,12],[-12,0],[0,7],[0,6],[-13,0],[0,12],[-24,0],[0,12],[-49,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,24],[-12,0],[0,6],[0,44],[-12,0],[0,24],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,24],[-25,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-30,0],[-19,0],[0,20],[-2,3],[-10,2],[0,8],[0,4],[-12,0],[0,10],[0,15],[-12,0],[0,12],[-13,0],[-12,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-12,0],[0,12],[-12,0],[-1,12],[-24,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-49,0],[0,12],[-12,0],[0,37],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,37],[-12,0],[0,25],[49,0],[0,-12],[42,0],[7,0],[0,12],[97,0],[0,-84],[0,-15],[12,0],[0,-24],[12,0],[0,-13],[13,0],[0,-12],[12,0],[0,-12],[12,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[12,0],[0,-12],[13,0],[0,-13],[24,0],[0,-12],[24,0],[0,-12],[25,0],[0,-13],[12,0],[0,-12],[24,0],[0,-12],[12,0],[0,-13],[25,0],[0,-12],[24,0],[0,-12],[12,0],[0,-13],[61,0],[0,8],[0,5],[25,0],[0,12],[12,0],[0,12],[12,0],[0,25],[12,0],[0,12],[12,0],[0,25],[13,0],[0,37],[12,0],[0,24],[12,0],[0,25],[12,0],[0,12],[12,0],[0,13],[13,0],[0,12],[36,0],[0,12],[12,0],[0,-12],[37,0],[0,-12],[36,0],[0,12],[25,0],[0,12],[24,0],[0,13],[12,0],[0,49],[-12,0],[0,37],[-12,0],[0,49],[-12,0],[0,12],[-13,0],[0,-12],[-12,0],[0,-86],[-12,0],[0,-25],[-12,0],[0,-12],[-49,0],[0,12],[-12,0],[0,13],[-36,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-25],[-12,0],[0,-12],[-12,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-12,0],[0,-13],[-12,0],[0,-24],[-12,0],[0,-12],[-13,0],[0,-13],[-12,0],[0,-24],[-36,0],[0,-13],[-61,0],[-12,0],[0,13],[-6,0],[-6,0],[-1,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,37],[-24,0],[0,24],[-12,0],[0,13],[-13,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-12,0],[0,12],[-24,0],[0,37],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-49,0],[0,-13],[-61,0],[0,-12],[-24,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-61,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-49,0],[0,-13],[-12,0],[0,13],[-36,0],[0,12],[-25,0],[0,12],[-49,0],[0,12],[-12,0],[0,-12],[-24,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-13,0],[0,13],[-97,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-37,0],[0,-13],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,25],[-25,0],[0,12],[-24,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-22,0],[-14,0],[0,12],[-13,0],[0,12],[-48,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,-13],[-13,0],[0,13],[-24,0],[0,-13],[-49,0],[0,13],[-61,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-13,0],[0,-12],[-24,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-97,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-97,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-13,0],[0,37],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,24],[-12,0],[0,13],[-24,0],[0,24],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-36,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-49,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-73,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,-12],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-61,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-24,0],[0,24],[-24,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-12,0],[0,25],[-37,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-49,0],[0,37],[12,0],[0,12],[12,0],[0,12],[12,0],[0,12],[13,0],[0,13],[48,0],[0,-62],[13,0],[0,-12],[24,0],[0,-12],[85,0],[0,12],[49,0],[0,12],[12,0],[0,13],[12,0],[0,12],[25,0],[0,12],[12,0],[0,12],[24,0],[0,13],[12,0],[0,12],[13,0],[0,12],[12,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[12,0],[0,-12],[13,0],[0,-13],[12,0],[0,-12],[12,0],[0,-12],[37,0],[0,-50],[-13,0],[0,-24],[13,0],[0,-12],[24,0],[0,12],[12,0],[0,12],[12,0],[0,12],[12,0],[0,25],[13,0],[0,12],[24,0],[0,13],[12,0],[0,12],[12,0],[0,12],[13,0],[0,13],[12,0],[0,12],[12,0],[0,12],[12,0],[0,13],[12,0],[0,12],[8,0],[4,0],[0,12],[13,0],[0,25],[12,0],[0,12],[12,0],[0,25],[12,0],[0,24],[-12,0],[0,91],[0,20],[4,0],[8,0],[-2,25],[-10,0],[0,12],[8,0],[4,0],[0,74],[-12,0],[0,25],[-13,0],[-11,0],[0,24],[-13,0],[0,25],[-12,0],[0,12],[-12,0],[0,48],[0,26],[12,0],[0,25],[12,0],[0,24],[13,0],[0,13],[12,0],[0,24],[12,0],[0,25],[12,0],[0,12],[49,0],[0,-12],[24,0],[0,-13],[12,0],[0,-24],[13,0],[0,-25],[12,0],[0,-49],[-12,0],[0,-37],[24,0],[0,12],[12,0],[0,37],[12,0],[0,37],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,24],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,-12],[-24,0],[0,-13],[-12,0],[0,-12],[-12,0],[0,-24],[-25,-1],[0,-12],[-12,0],[0,-24],[-12,0],[0,-25],[-12,0],[0,-42],[0,-7],[-12,0],[0,-74],[12,0],[0,-12],[12,0],[0,-87],[12,0],[0,-12],[12,0],[0,-62],[-12,0],[0,-147],[-12,0],[0,-25],[-12,0],[0,-24],[-12,0],[0,-13],[-13,0],[0,-12],[-12,0],[0,-12],[-24,0],[0,-13],[-12,0],[0,-12],[-49,0],[0,86],[12,0],[0,25],[12,0],[0,12],[12,0],[0,12],[13,0],[0,13],[12,0],[0,37],[12,0],[0,12],[12,0],[0,37],[12,0],[0,135],[13,0],[0,50],[-13,0],[0,98],[-12,0],[0,37],[-12,0],[0,16],[0,33],[-12,0],[0,12],[-12,1],[0,73],[-25,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,36],[-12,0],[0,25],[-13,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-12,0],[0,37],[-25,0],[0,13],[-24,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,24],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-25,0],[0,24],[-24,0],[0,13],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-36,0],[0,12],[-25,0],[0,13],[-12,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-49,0],[0,24],[-36,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,25],[-24,0],[0,12],[-61,0],[0,13],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,-13],[-13,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,-12],[-12,0],[0,12],[-37,0],[0,13],[-12,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-25,0],[0,12],[-36,0],[0,12],[-37,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-25,0],[0,12],[-73,0],[0,13],[-12,0],[0,12],[-25,0],[0,12],[-24,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-25,0],[0,25],[-24,0],[0,12],[-12,0],[0,12],[-49,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-37,0],[0,37],[-12,0],[0,-12],[-73,0],[0,12],[-24,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-98,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,12],[-61,0],[-12,0],[0,13],[-62,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-48,0],[0,12],[-12,0],[0,25],[36,0],[0,-12],[37,0],[0,12],[-13,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,25],[-37,0],[0,12],[-12,0],[0,-12],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,12],[-25,0],[0,13],[-36,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-24,0],[0,12],[-24,0],[0,12],[-61,0],[0,13],[-25,0],[0,12],[-24,0],[0,25],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,12],[-73,0],[0,13],[-13,0],[0,12],[-36,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-13,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,61],[-13,0],[0,13],[-24,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-85,0],[0,12],[-12,0],[0,12],[-25,0],[0,13],[-24,0],[0,12],[-37,0],[0,12],[-36,0],[0,13],[-37,0],[0,12],[-61,0],[0,12],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-12,0],[0,49],[-13,0],[0,12],[-12,0],[0,37],[12,0],[0,13],[25,0],[0,-25],[12,0],[0,-12],[12,0],[0,-13],[73,0],[0,13],[12,0],[0,12],[25,0],[0,25],[12,0],[0,98],[12,0],[0,49],[-12,0],[0,62],[-12,0],[0,24],[-12,0],[0,25],[-13,0],[0,10],[0,27],[-12,0],[0,25],[-12,0],[0,24],[-12,0],[0,25],[-12,0],[0,12],[-12,0],[0,25],[-25,0],[0,24],[-12,0],[0,13],[-24,0],[0,12],[-13,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-49,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-24,0],[0,13],[-49,0],[0,12],[-12,0],[0,12],[-47,0],[-51,0],[0,12],[-36,0],[0,13],[-12,0],[0,12],[-37,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-12,0],[0,25],[-37,0],[0,12],[-36,0],[0,12],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-37,0],[0,12],[-24,0],[0,12],[-25,0],[0,12],[-12,0],[0,13],[-12,0],[0,37],[-12,0],[0,24],[-12,0],[0,13],[-13,0],[0,12],[-12,0],[0,24],[-24,0],[0,13],[-25,0],[0,12],[-12,0],[0,12],[-24,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,13],[-24,0],[0,12],[-49,0],[0,12],[-12,0],[0,-12],[-25,0],[0,25],[-12,0],[0,12],[-12,0],[0,12],[-37,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-36,0],[0,25],[-13,0],[0,12],[13,0],[0,12],[-13,0],[0,25],[-6,0],[-6,0],[0,12],[-12,0],[0,25],[-24,0],[0,25],[-13,0],[0,12],[-24,0],[0,12],[-24,0],[0,25],[-13,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-12,0],[0,12],[-12,0],[0,12],[-12,0],[0,13],[-13,0],[0,12],[-48,0],[0,12],[-25,0],[0,13],[-12,0],[0,24],[-8,0]]],"transform":{"scale":[0.00002279890062704271,0.000022565009880598206],"translate":[-11.48569488525385,4.352915763854924]},"objects":{"LBR_adm1":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":1,"NAME_1":"Bomi","HASC_1":"LR.BM","CCN_1":0,"CCA_1":"03","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[4,5,6,7,8,9,10]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":2,"NAME_1":"Bong","HASC_1":"LR.BG","CCN_1":0,"CCA_1":"06","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[-9,-4,11,12,13]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":3,"NAME_1":"Gbapolu","HASC_1":"LR.GP","CCN_1":0,"CCA_1":"45","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":"Gbarpolu"}},{"arcs":[[-3,14,-12]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":4,"NAME_1":"Grand Cape Mount","HASC_1":"LR.CM","CCN_1":0,"CCA_1":"12","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[15,16,17,18,-6]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":5,"NAME_1":"GrandBassa","HASC_1":"LR.GB","CCN_1":0,"CCA_1":"09","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":"Grand Bassa"}},{"arcs":[[19,20,21,22]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":6,"NAME_1":"GrandGedeh","HASC_1":"LR.GD","CCN_1":0,"CCA_1":"15","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":"Grand Gedeh"}},{"arcs":[[23,24,25,26]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":7,"NAME_1":"GrandKru","HASC_1":"LR.GK","CCN_1":0,"CCA_1":"18","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":"Grand Kru"}},{"arcs":[[-10,-14,27]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":8,"NAME_1":"Lofa","HASC_1":"LR.LF","CCN_1":0,"CCA_1":"21","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[-19,28,29,-7]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":9,"NAME_1":"Margibi","HASC_1":"LR.MG","CCN_1":0,"CCA_1":"24","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[30,-27,31]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":10,"NAME_1":"Maryland","HASC_1":"LR.MY","CCN_1":0,"CCA_1":"27","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[[32]],[[33]],[[-30,34,-1,-8]]],"type":"MultiPolygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":11,"NAME_1":"Montserrado","HASC_1":"LR.MO","CCN_1":0,"CCA_1":"30","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[-22,35,-16,-5,36]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":12,"NAME_1":"Nimba","HASC_1":"LR.NI","CCN_1":0,"CCA_1":"33","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[37,-17,-36,38]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":13,"NAME_1":"River Cess","HASC_1":"LR.RI","CCN_1":0,"CCA_1":"36","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":"Rivercess"}},{"arcs":[[39,-32,-26,40,-20]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":14,"NAME_1":"River Gee","HASC_1":"LR.RG","CCN_1":0,"CCA_1":"42","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}},{"arcs":[[-41,-25,41,-39,-21]],"type":"Polygon","properties":{"ID_0":127,"ISO":"LBR","NAME_0":"Liberia","ID_1":15,"NAME_1":"Sinoe","HASC_1":"LR.SI","CCN_1":0,"CCA_1":"39","TYPE_1":"County","ENGTYPE_1":"County","NL_NAME_1":"","VARNAME_1":""}}]}}} |