Skip to content

Instantly share code, notes, and snippets.

@LuisSevillano
Last active January 30, 2017 02:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuisSevillano/b51c795f7d68aedfb24485fbdb570c3c to your computer and use it in GitHub Desktop.
Save LuisSevillano/b51c795f7d68aedfb24485fbdb570c3c to your computer and use it in GitHub Desktop.
Testing map labels with background
license: mit
height: 600
border: none
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Testing map labels</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
body {
font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
font-size: 62.5%;
}
path {
stroke-linejoin: round;
}
.land-glow {
fill-opacity: .2;
filter: url(#blur);
fill: #1e1e1e;
}
.land-fill {
fill-opacity: 0;
stroke: rgb(70, 70, 70);
stroke-width: .35px;
}
.region {
stroke: rgb(70, 70, 70);
stroke-width: 0.01rem;
}
.label-bg {
pointer-events: none;
text-anchor: middle;
fill: none;
stroke: white;
font-size: 0.9rem;
stroke-width: 0.2rem;
opacity: 0.9;
}
.label {
z-index: 10;
pointer-events: none;
text-anchor: middle;
font-size: 0.9rem;
text-shadow: 0 0 3px #fff;
fill: rgb(70, 70, 70);
}
</style>
</head>
<body>
<script type="text/javascript">
var width = 960,
height = 600;
var path = d3.geo.path()
.projection(d3.geo.robinson()
.scale(2700)
.center([3.582022, 40.9582426])
.translate([width / 7, height / 1.8]));
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.append('g');
var defs = svg.append("defs");
defs.append("filter")
.attr("id", "blur")
.append("feGaussianBlur")
.attr("stdDeviation", 5);
d3.json("italy.json", function(error, italy) {
var map = topojson.feature(italy, italy.objects.reg2011);
defs.append("path")
.datum(map)
.attr("id", "land")
.attr("d", path);
svg.append("use")
.attr("class", "land-glow")
.attr("xlink:href", "#land");
svg.append("use")
.attr("class", "land-fill")
.attr("xlink:href", "#land");
var color = d3.scale.quantize()
.domain(d3.extent(map.features, function(d) {
return d.properties.SHAPE_Leng;
}))
.range(["#fff7fb", "#ece7f2", "#d0d1e6", "#a6bddb", "#74a9cf"]);
var region = svg.append("g").attr("class", "polygons");
region.selectAll(".region").data(map.features)
.enter().insert("path")
.attr("class", "region")
.attr("d", path)
.style("fill", function(d, i) {
return color(d.properties.SHAPE_Leng);
});
var labelsBg = svg.append("g").attr("class", "label-group-bg");
labelsBg.selectAll(".label-bg")
.data(map.features)
.enter()
.append("text")
.attr("class", "label-bg")
.attr("x", function(d) {
return path.centroid(d)[0];
})
.attr("y", function(d) {
return path.centroid(d)[1];
})
.text(function(d) {
return d.properties.NOME_REG;
});
var labels = svg.append("g").attr("class", "label-group");
labels.selectAll(".label")
.data(map.features)
.enter()
.append("text")
.attr("class", "label")
.attr("x", function(d) {
return path.centroid(d)[0];
})
.attr("y", function(d) {
return path.centroid(d)[1];
})
.text(function(d) {
return d.properties.NOME_REG;
});
})
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0011894605993974438,0.0011599775042248476],"translate":[6.62773062275904,35.494025092575626]},"objects":{"reg2011":{"type":"GeometryCollection","bbox":[-180,-89.99892578124998,180.00000000000003,83.59960937500006],"geometries":[{"type":"Polygon","id":1,"arcs":[[0,1,2,3,4,5],[6],[7]],"properties":{"COD_REG":1,"NOME_REG":"Piemonte","SHAPE_Leng":1333367.84555,"SHAPE_Area":25387078076.7}},{"type":"Polygon","id":2,"arcs":[[-5,8]],"properties":{"COD_REG":2,"NOME_REG":"Valle D'Aosta","SHAPE_Leng":325841.79661,"SHAPE_Area":3260902257.97}},{"type":"MultiPolygon","id":3,"arcs":[[[9,10,11,-1,12],[13],[14]],[[15]],[[16]],[[17]]],"properties":{"COD_REG":3,"NOME_REG":"Lombardia","SHAPE_Leng":1511138.58178,"SHAPE_Area":23863373670}},{"type":"Polygon","id":4,"arcs":[[18,-10,19]],"properties":{"COD_REG":4,"NOME_REG":"Trentino Alto-Adige","SHAPE_Leng":859832.34523,"SHAPE_Area":13604646912}},{"type":"Polygon","id":5,"arcs":[[20,21,22,-11,-19,23]],"properties":{"COD_REG":5,"NOME_REG":"Veneto","SHAPE_Leng":1141613.61928,"SHAPE_Area":18407166944.4}},{"type":"MultiPolygon","id":6,"arcs":[[[-21,24,25,26]],[[27]],[[28]],[[29]]],"properties":{"COD_REG":6,"NOME_REG":"Friuli-Venezia-Giulia","SHAPE_Leng":764140.66989,"SHAPE_Area":7862283303.89}},{"type":"MultiPolygon","id":7,"arcs":[[[-3,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60,61,62]],[[63,64,65]],[[66,67]],[[68,69]],[[70,71]]],"properties":{"COD_REG":7,"NOME_REG":"Liguria","SHAPE_Leng":1066676.40892,"SHAPE_Area":5416171599.53}},{"type":"MultiPolygon","id":8,"arcs":[[[72,73,74,75,76,77,78,-31,-2,-12,-23,79],[80]],[[81]],[[82]]],"properties":{"COD_REG":8,"NOME_REG":"Emilia-Romagna","SHAPE_Leng":1259933.72359,"SHAPE_Area":22452443862.9}},{"type":"MultiPolygon","id":9,"arcs":[[[-32,-79,83,84,85,86]],[[87]],[[88,89]],[[90,91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102,103]],[[104]],[[105]],[[106,-103,107]],[[108]],[[-91,109]],[[110]],[[111]],[[112]],[[113]],[[-89,114]]],"properties":{"COD_REG":9,"NOME_REG":"Toscana","SHAPE_Leng":1541173.08656,"SHAPE_Area":22986953346.1}},{"type":"MultiPolygon","id":10,"arcs":[[[115,-85,116]],[[117]]],"properties":{"COD_REG":10,"NOME_REG":"Umbria","SHAPE_Leng":671080.6699,"SHAPE_Area":8464247692.4}},{"type":"MultiPolygon","id":11,"arcs":[[[118,119,120,-117,-84,-78,121,122,123],[124]]],"properties":{"COD_REG":11,"NOME_REG":"Marche","SHAPE_Leng":708821.73323,"SHAPE_Area":9401304323.37}},{"type":"MultiPolygon","id":12,"arcs":[[[-86,-116,-121,125,126,127,128,129],[130],[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138,139]],[[140,141]],[[142]],[[143]],[[144]],[[145,146]]],"properties":{"COD_REG":12,"NOME_REG":"Lazio","SHAPE_Leng":1193848.48444,"SHAPE_Area":17232071733.6}},{"type":"MultiPolygon","id":13,"arcs":[[[147,-127,-126,-119,148]]],"properties":{"COD_REG":13,"NOME_REG":"Abruzzo","SHAPE_Leng":662279.5213,"SHAPE_Area":10831672109.6}},{"type":"Polygon","id":14,"arcs":[[149,150,151,152,-128,-148,153]],"properties":{"COD_REG":14,"NOME_REG":"Molise","SHAPE_Leng":471201.613651,"SHAPE_Area":4460510722.13}},{"type":"MultiPolygon","id":15,"arcs":[[[-129,-153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169]],[[170]],[[171]],[[172]],[[173]],[[-158,174,175]],[[176]],[[177]],[[178]],[[179]],[[-166,180]],[[181]],[[182,183]],[[-164,184]],[[185]]],"properties":{"COD_REG":15,"NOME_REG":"Campania","SHAPE_Leng":1085218.07918,"SHAPE_Area":13670826953.7}},{"type":"MultiPolygon","id":16,"arcs":[[[186,187,188,189,190,-155,191,192,193,194],[195,196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]]],"properties":{"COD_REG":16,"NOME_REG":"Puglia","SHAPE_Leng":1501574.24519,"SHAPE_Area":19540824184.2}},{"type":"MultiPolygon","id":17,"arcs":[[[218,-191,-190,-189,219,220,221]],[[-196,-197]],[[222]]],"properties":{"COD_REG":17,"NOME_REG":"Basilicata","SHAPE_Leng":675616.383994,"SHAPE_Area":10073287867.2}},{"type":"MultiPolygon","id":18,"arcs":[[[223,224,225,226,227,228]],[[229]],[[230]],[[231,232]]],"properties":{"COD_REG":18,"NOME_REG":"Calabria","SHAPE_Leng":933013.465433,"SHAPE_Area":15221893179.9}},{"type":"MultiPolygon","id":19,"arcs":[[[233]],[[234]],[[235]],[[236]],[[237,238]],[[239,240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253,254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270,271]],[[272]],[[273,274]],[[275,276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]]],"properties":{"COD_REG":19,"NOME_REG":"Sicilia","SHAPE_Leng":1725060.16968,"SHAPE_Area":25832379739.5}},{"type":"MultiPolygon","id":20,"arcs":[[[283,284,285,286,287,288,289,290,291,292,293,294,295,296]],[[297]],[[298]],[[299]],[[300,301,302,303]],[[304]],[[305,306]],[[307]],[[308]],[[309,310,311,312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320,-312,321,322,323,324]],[[325]],[[326,327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338,339]],[[340,341]],[[342,343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353,354]],[[355,356]],[[357]],[[358]],[[359]],[[-339,360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370,371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379,380]],[[381]],[[382]],[[383,-303,384]],[[385]],[[-324,386,387]],[[-310,388]],[[389]],[[390,391]],[[-371,392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399,400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413,414]],[[415]],[[416]],[[417,418,419]],[[-327,420]],[[-288,421]],[[422]],[[423]],[[-354,424]],[[425,426]],[[427]],[[428,429,430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439,440]],[[441]],[[442]],[[443]],[[444]],[[445,446]],[[447]],[[448,449]],[[450]]],"properties":{"COD_REG":20,"NOME_REG":"Sardegna","SHAPE_Leng":2113774.90003,"SHAPE_Area":24100057467.9}}]}},"arcs":[[[1755,9142],[-6,-6],[-2,-8],[4,-5],[5,-15],[1,-1],[3,-15],[7,-14],[-2,-5],[-10,-9],[-5,-2],[-22,-16],[-24,-18],[-31,-24],[-25,-18],[-8,-10],[-4,-2],[-3,-8],[4,-10],[5,-6],[2,-6],[7,-12],[3,-8],[0,-14],[-6,-9],[-6,-5],[-14,-5],[-5,-3],[-3,-5],[-1,-9],[1,-9],[5,-6],[8,-6],[8,-10],[4,-3],[9,-16],[6,-3],[28,-3],[7,1],[5,-4],[5,-7],[-5,-7],[-2,-8],[-5,-5],[0,-10],[23,-1],[11,2],[-1,-8],[-8,-2],[-1,-4],[13,-12],[3,-9],[-5,-3],[-8,3],[-3,5],[-9,-2],[6,-8],[-3,-6],[3,-3],[12,1],[5,-3],[2,-8],[4,-5],[8,-2],[2,-5],[-1,-7],[-4,-1],[-5,-8],[10,-5],[1,-17],[5,-11],[6,-6],[-6,-8],[1,-3],[5,-3],[7,-11],[7,-1],[4,-3],[5,1],[11,-1],[7,-8],[4,-3],[9,2],[6,-17],[-2,-4],[19,-15],[1,-5],[-4,-3],[1,-3],[12,3],[3,-3],[-5,-4],[3,-2],[12,-18],[4,-9],[-10,-3],[-4,1],[-10,-1],[-3,-7],[-11,-3],[-18,4],[-8,4],[-2,-4],[-3,-1],[2,-4],[-5,1],[-8,-4],[-7,1],[-14,4],[-4,-2],[1,-5],[7,-2],[13,-10],[3,-3],[3,2],[10,-8],[-17,-8],[1,-3],[-3,-2],[-13,3],[2,-3],[-3,-9],[1,-3],[-7,-14],[-21,-9],[-1,2],[-13,-2],[-9,9],[-3,5],[3,1],[-7,8],[1,4],[-9,5],[-12,7],[-2,12],[-5,1],[-1,4],[-10,-4],[-6,0],[-4,-3],[-5,-1],[1,3],[-9,0],[-2,-3],[-10,1],[-9,4],[-3,7],[-3,-8],[-10,-6],[-10,-1],[0,-7],[5,0],[3,-8],[1,-8],[-5,2],[-4,-5],[-4,-2],[-8,1],[-4,-4],[-2,-6],[-5,-4],[-1,-3],[16,-2],[-4,-9],[1,-5],[6,-1],[1,5],[12,-4],[-5,-6],[4,-3],[-1,-4],[8,-4],[-6,-6],[-4,5],[-8,0],[1,-5],[7,-3],[15,-2],[5,1],[1,-3],[-7,-2],[-3,2],[-13,-2],[12,-4],[-2,-2],[-12,-1],[-3,-7],[5,-4],[10,-4],[6,-6],[-14,-5],[-5,2],[-1,-3],[4,-4],[15,1],[4,2],[-1,4],[23,5],[1,-4],[-5,-4],[-6,1],[-11,-7],[-1,-5],[-7,-3],[0,-8],[7,-5],[1,-8],[6,1],[4,-3],[7,-3],[6,1],[5,-5],[2,-10],[3,-4],[6,1],[3,-3],[9,-1],[1,-2],[-5,-3],[3,-7],[-3,-2],[10,-11],[3,-1],[-2,-6],[5,-2],[6,1],[1,-6],[3,-5],[5,-1],[-7,-7],[5,-4],[3,-5],[-7,-5],[2,-5],[-5,-4],[4,-4],[14,-5],[-4,-5],[5,-5],[7,2],[0,6],[14,1],[8,-4],[0,-4],[3,5],[6,1],[-2,5],[11,5],[5,-9],[7,-5],[13,2],[7,-4],[2,-4],[-5,-5],[10,1],[4,3],[2,-6],[7,1],[3,6],[-3,6],[2,2],[7,-1],[8,-3],[6,7],[-7,6],[9,1],[7,-5],[-4,5],[3,2],[9,-1],[-3,7],[3,2],[5,-6],[5,5],[6,-3],[-1,6],[5,1],[5,-3],[9,3],[2,1],[5,0],[7,7],[5,1],[2,-3],[-6,-3],[5,-4],[9,1],[2,-6],[-5,-3],[5,-1],[3,-6],[0,-11],[-2,-10],[1,-3],[4,-1],[6,-11],[2,-3],[7,-4],[19,5],[10,0],[4,-7],[8,-6],[3,-7],[-1,-5],[4,-3],[-1,-3],[-6,2],[-3,-9],[7,-3],[4,-8],[8,0],[-2,-5],[5,-6],[5,-3],[-3,-1],[4,-3],[-2,-1],[5,-5],[13,-4],[7,-9],[8,0],[1,-3],[13,3],[5,-16],[7,-5],[-3,-4],[-6,-1],[-9,-7],[1,-3],[12,-11],[6,-3],[3,-8],[-2,-4],[7,-2],[10,4],[11,-5],[1,-5],[16,-1],[15,3],[2,-1],[8,6],[-1,-5],[8,-6],[2,-3],[6,-1],[-1,-5],[2,-1],[-2,-4],[2,-3],[-4,-3],[1,-7],[6,-5],[6,-2],[3,-4],[15,-3],[6,-10],[-3,-4],[-1,-8],[-6,-6],[2,-3],[-2,-2],[5,-10],[-4,-12],[-3,-4]],[[2163,7925],[-1,-7],[2,-6],[3,-2],[1,-10],[-7,-6],[2,-6],[-1,-8],[2,-7],[-1,-9],[2,-2]],[[2165,7862],[2,-13],[-3,-4],[-14,-1],[-9,-4],[-2,-2],[-16,-10],[-22,3],[-6,4],[-5,-1],[-4,6],[-5,4],[1,15],[-5,4],[-11,0],[-6,6],[0,4],[-5,-3],[-14,-1],[-7,-6],[-3,1],[2,11],[-6,5],[0,6],[-6,1],[1,4],[-6,2],[-2,8],[-6,6],[-4,2],[-9,0],[-9,-5],[-17,2],[-6,9],[-19,0],[-8,1],[-7,-3],[2,-5],[-7,-6],[-8,-12],[-11,-4],[-9,-2],[9,-12],[8,-2],[2,-6],[4,-3],[-7,-2],[4,-5],[2,-12],[4,-1],[-2,-7],[2,-1],[3,-7],[2,1],[2,-4],[-7,-8],[-16,-3],[-5,-4],[-5,2],[-6,8],[-5,3],[-5,-4],[-12,-1],[-3,2],[-10,1],[-7,-3],[-2,-3],[1,-8],[4,-2],[-18,-8],[-7,-6],[0,-3],[-4,-2],[2,-15],[4,-4],[-13,-4],[2,-7],[-16,1],[-2,4],[5,11],[-4,4],[0,11],[-5,5],[-7,-5],[-4,1],[6,3],[0,7],[-5,3],[-2,9],[-7,-1],[0,8],[-4,4],[-2,6],[-4,1],[-5,7],[-3,1],[-19,-1],[-4,2],[-9,-6],[-6,5],[-7,1],[-2,-2],[-12,3],[-5,-4],[-4,2],[-11,4],[-4,-1],[-1,-3],[3,-3],[-6,-2],[-5,1],[1,-3],[6,1],[-1,-4],[-4,1],[-9,-2],[3,-4],[-3,-1],[-2,-6],[3,-1],[9,-10],[-7,-4],[-4,1],[-10,-5],[2,-5],[-5,-4],[-6,2],[-3,-2],[2,-7],[-5,-7],[-8,-3],[-8,0],[-3,2],[-3,6],[-27,-2],[-3,-2],[-6,2],[-16,1],[-3,-1],[-4,5],[2,1],[-4,5],[-6,-3],[-10,-9],[0,-5],[-2,-5],[-3,1],[-4,6],[-12,-3],[-1,4],[-7,5],[-11,-3],[-4,-6],[1,-8],[-5,-2],[-4,-4],[4,-5],[-6,-3],[-3,1],[-8,-3],[-1,-3],[-11,-5],[-5,8],[-3,1],[1,4],[-2,5],[-24,2],[-6,8],[-5,1],[-3,5],[-11,-2],[-4,2],[-3,4],[-10,-2],[-3,7],[-5,3],[-2,5],[-6,4],[-12,-9],[-10,-2],[-3,-4],[-5,-11],[5,-7],[1,-4],[-15,-8],[-3,2],[-3,-9],[-2,-4],[8,-4],[7,-16],[7,-7],[-1,-4],[-11,-9],[0,-11],[-15,-7],[-4,-1],[-6,4],[-7,-3],[1,-2],[-4,-5],[-12,-2],[-2,-6],[-7,-6],[0,-5],[3,-2],[3,-9],[-11,-17],[-5,-3],[-15,3],[-4,-1],[-2,-5],[4,-10],[-4,-4],[-2,-8],[-14,4],[-5,6],[-3,1],[-5,-3],[-3,-5],[-7,-3],[4,-3],[1,-8],[11,-1],[4,-7],[6,-5],[-1,-5],[-7,-6],[-11,-4],[5,-7],[-1,-4],[8,-1],[-2,-7],[-10,-11],[2,-2],[-3,-2],[8,-4],[0,-5],[12,-3],[4,-5],[-1,-11],[4,-5],[-3,-3],[-11,-7],[-1,-5],[-4,-5],[-4,-8],[-9,-1],[-4,-2],[-14,5],[-22,7],[-11,-6],[-9,-4],[-8,-10],[11,-1],[0,-4],[13,-1],[5,-5],[-8,-5],[10,-3],[-2,-5],[-7,-3],[-17,6],[-3,2],[-9,2],[-6,-6],[-5,-3],[-17,-3],[-7,8],[-21,0],[-16,-4],[-2,6],[-21,6],[-22,2],[-9,3],[-4,-1],[-6,5],[-16,5],[-10,2],[-2,3],[-10,1],[-15,-5],[-4,-5],[-11,-2],[-3,-3],[-1,-8],[-6,-7],[4,-2],[18,-18],[12,2],[2,-2],[-6,-1],[-10,-4],[-5,-4],[-4,-6],[-1,-5],[-6,1],[-5,0]],[[914,7386],[0,10],[3,8],[-7,8],[-4,1],[-7,5],[-8,11],[-13,8],[-1,7],[-3,4],[8,7],[1,6],[-6,5],[2,6],[5,1],[4,8],[-8,5],[-10,-1],[-17,1],[-8,-3],[-4,-12],[-5,-7],[-17,-1],[-3,2],[-6,-2],[-17,2],[-5,3],[-1,-5],[-22,-4],[-4,2],[-6,-8],[-8,-1],[-7,6],[-12,-3],[-1,-3],[-18,-4],[-4,-4],[-7,-2],[-9,3],[-6,-1],[-10,2],[1,-4],[-4,-6],[1,-5],[-17,5],[-1,-1],[-8,6],[-17,-4],[-5,-3],[-4,1],[-5,-2],[-3,7],[-3,2],[-6,17],[-10,-2],[-6,0],[-12,4],[-3,-4],[-17,2],[-2,-4],[-11,6],[-12,6],[-7,2],[-4,7],[-1,5],[-5,3],[-3,-4],[-5,-2],[-6,0],[-5,7],[-6,3],[-1,4],[-10,2],[-2,4],[-3,9],[-9,-3],[-2,3],[-6,3],[-6,2],[-8,-3],[-8,-3],[-8,5],[-5,5],[-22,8],[-7,0],[-1,4],[-9,5],[-9,2],[-6,-6],[-3,2],[-13,-2],[-7,-3],[-5,6],[-7,3],[-5,-1],[-7,3],[-7,11],[0,14],[-2,3],[1,10],[-12,6],[-9,-3],[-1,5],[2,3],[-11,1],[-2,3],[1,6],[3,3],[-6,6],[-2,4],[-11,4],[-1,3],[-10,5],[-4,8],[1,7],[-9,2],[-12,4],[-9,4],[6,5],[3,6],[-1,5],[1,20],[-4,10],[0,4],[19,3],[3,3],[4,-4],[8,1],[1,5],[11,-2],[1,2],[-15,9],[-3,3],[-10,4],[-7,13],[0,4],[-13,3],[-13,8],[1,6],[-8,5],[-5,9],[-4,17],[-3,4],[3,5],[11,3],[7,14],[5,-2],[7,3],[9,0],[11,5],[-3,6],[7,1],[10,3],[1,4],[-2,6],[1,9],[5,8],[7,2],[2,11],[6,3],[10,-3],[0,6],[-14,10],[1,6],[-5,8],[10,9],[-1,7],[5,5],[6,-1],[6,6],[8,5],[9,1],[5,-4],[23,4],[4,-1],[9,-6],[9,-2],[11,-1],[4,3],[0,6],[-4,9],[-4,11],[-8,1],[-11,3],[-13,10],[2,3],[-6,6],[2,4],[-4,5],[3,5],[-4,11],[2,2],[-2,4],[-7,7],[-10,4],[8,8],[9,18],[2,5],[-10,1],[-1,6],[-2,6],[-5,3],[-6,-1],[-20,4],[-17,8],[-4,3],[-7,1],[-4,3],[-4,-7],[-5,-5],[-12,-5],[-2,3],[-16,-1],[-8,4],[-10,-1],[-4,2],[-4,5],[-12,1],[-9,8],[-11,3],[-11,6],[-3,4],[1,6],[-5,-1],[-12,3],[-7,9],[-4,-1],[-14,3],[-1,3],[1,8],[-2,3],[4,8],[6,2],[-8,4],[-2,-2],[-4,1],[7,4],[4,4],[7,11],[-1,11],[-11,5],[-2,7],[-9,4],[9,4],[2,5],[-4,7],[-2,6],[-5,1],[-15,4],[-28,-1],[-1,1],[-9,-2],[-4,8],[-5,5],[1,5],[5,1],[-10,9],[3,16],[-1,1],[-12,2],[0,9],[-6,2],[1,2],[-8,9],[-4,6],[5,4],[1,4],[11,-1],[8,6],[5,-1],[8,3],[2,8],[19,7],[3,2],[11,1],[9,-5],[13,-2],[10,7],[2,4],[6,3],[5,6],[9,-1],[6,-4],[15,-4],[9,-1],[4,-3],[9,-3],[5,-5],[10,0],[-2,-5],[5,-2],[35,8],[5,4],[-1,2],[-7,3],[1,3],[-5,6],[7,5],[-1,4],[12,0],[2,-2],[5,3],[5,-2],[9,4],[14,-1],[-3,4],[3,3],[7,2],[-2,8],[5,3],[7,2],[-3,5],[-3,1],[13,4],[11,3],[3,-1],[8,8],[16,-3],[1,3],[4,-3],[10,6],[10,3],[13,-13],[14,5],[1,7],[3,1],[8,7],[6,2],[2,6],[4,3],[11,-2],[5,6],[6,4],[-5,12],[-2,3],[6,4],[-13,17],[-1,6],[-4,8],[-5,4],[2,6],[4,2],[11,0],[5,6],[-4,4],[6,10],[10,1],[6,5],[7,2],[-4,3],[-1,8],[6,10],[10,4],[0,6],[6,9],[-9,2],[-10,4],[-7,4],[-2,4],[-32,9],[1,6],[-3,5],[-3,1],[-8,12],[4,4],[1,1]],[[401,8598],[6,3],[3,4],[3,18],[3,2],[-1,7],[14,8],[1,-4],[5,-2],[-3,-4],[2,-7],[-5,-3],[4,-12],[3,-1],[4,5],[6,3],[10,-3],[13,-1],[25,-10],[13,4],[6,10],[13,9],[9,1],[2,11],[3,3],[13,-2],[6,3],[10,1],[13,-2],[13,6],[12,0],[10,4],[5,-2],[3,-6],[7,0],[11,7],[3,6],[10,2],[8,3],[-1,7],[9,0],[18,8],[7,11],[6,4],[14,5],[19,4],[8,-2],[16,-4],[6,4],[3,4],[5,3],[18,2],[6,-3],[6,-6],[3,2],[11,-5],[5,-3],[1,-9],[2,-1],[13,4],[10,3],[7,-1],[10,-5],[5,-4],[10,-6],[11,5],[2,-2],[20,1],[5,2],[8,-7],[12,5],[2,3],[10,5],[12,2],[8,5],[2,0],[10,8],[-1,3],[15,5],[20,5],[4,-1],[7,5],[1,-2],[7,-3],[17,3],[9,-3],[4,-6],[5,1],[-5,15],[11,14],[3,1],[3,6],[14,3],[4,-1],[2,6],[-15,15],[1,5],[-9,4],[-6,10],[3,12],[4,5],[2,-1],[12,11],[-1,4],[7,6],[-6,8],[-2,1],[3,5],[-7,1],[-9,5],[-16,5],[-3,5],[-7,6],[2,4],[-9,7],[-8,12],[3,5],[-2,15],[-2,3],[6,5],[4,0],[-8,14],[2,6],[7,5],[1,6],[-6,5],[-2,18],[-3,9],[4,6],[-5,2],[2,7]],[[1040,8985],[1,3],[10,6],[-7,8],[1,10],[5,1],[2,4],[2,9],[-3,7],[2,3],[11,2],[3,6],[8,6],[7,5],[16,-1],[24,1],[15,2],[8,-3],[4,3],[6,11],[10,0],[-2,6],[5,5],[-3,6],[4,2],[3,4],[11,4],[-7,13],[-3,11],[1,4],[5,12],[3,4],[1,5],[20,1],[4,3],[23,1],[7,2],[1,2],[12,6],[1,11],[24,5],[9,9],[-2,7],[-2,1],[1,8],[5,3],[2,5],[5,2],[-1,6],[-9,7],[-3,12],[-5,4],[-1,5],[-6,8],[-9,3],[-3,6],[-6,1],[-2,3],[-1,7],[-8,1],[-16,6],[-1,3],[4,1],[1,5],[7,2],[7,5],[1,3],[7,1],[5,8],[8,4],[2,3],[13,4],[22,-5],[8,1],[15,4],[10,6],[3,9],[7,4],[0,9],[13,5],[9,0],[2,5],[9,-1],[2,5],[-4,8],[1,2],[11,3],[9,-2],[4,5],[19,6],[1,4],[4,5],[-4,3],[3,3],[-6,8],[-3,-1],[-10,2],[-5,3],[7,4],[4,9],[3,2],[10,-1],[6,1],[13,7],[2,3],[5,2],[5,6],[9,5],[8,1],[4,-2],[12,1],[2,3],[10,3],[17,2],[3,2],[8,0],[12,-9],[4,-1],[5,-8],[-7,-8],[2,-2],[-2,-8],[5,-3],[4,-6],[-4,-4],[6,-10],[-4,-2],[-4,-6],[7,-21],[-4,-2],[-2,-9],[1,-11],[1,-3],[-9,-10],[-9,-1],[-1,-7],[-3,-3],[-2,-4],[-7,-3],[5,-11],[9,-7],[5,-5],[0,-2],[5,-6],[-7,-3],[-5,-6],[16,-7],[4,-3],[1,-6],[8,-4],[14,-1],[20,-8],[7,1],[6,-3],[2,-10],[9,-8],[7,-5],[0,-4],[6,-1],[7,-7],[3,-11],[11,-2],[2,-4],[12,-3],[-8,-7],[0,-3],[8,-3],[17,-15],[2,1],[19,1],[9,-10],[9,-3],[9,1],[1,-4],[17,-3],[11,-3]],[[1747,8207],[1,9],[-3,-8],[2,-1]],[[1841,8214],[-6,-2],[4,-2],[2,3],[0,1]],[[401,8598],[-37,6],[-1,-2],[-11,1],[-1,4],[4,8],[5,5],[-12,4],[-12,-1],[-15,3],[-1,2],[-7,2],[1,6],[3,8],[-8,7],[-4,2],[5,11],[-5,11],[0,7],[3,1],[1,9],[-11,6],[-2,11],[4,7],[0,12],[5,7],[10,9],[-6,4],[-2,-1],[-3,4],[-14,2],[-1,5],[-9,2],[-2,-2],[-24,-4],[-12,4],[1,7],[-11,3],[3,5],[-1,7],[-5,2],[-5,-4],[-8,4],[-9,-1],[-5,4],[-8,0],[-10,7],[-3,6],[-3,2],[-7,0],[-9,15],[-9,8],[7,10],[-10,7],[-1,6],[2,5],[-2,4],[1,5],[-3,3],[-1,5],[4,11],[6,1],[-2,8],[2,5],[-7,5],[6,9],[5,5],[2,5],[10,0],[8,4],[9,-3],[6,-4],[11,5],[5,9],[14,-6],[11,1],[5,-3],[1,2],[12,4],[9,-1],[2,1],[7,11],[5,0],[29,7],[7,5],[0,5],[5,3],[-2,7],[13,20],[6,2],[6,4],[12,0],[4,-5],[11,-6],[-1,-7],[6,-3],[4,-6],[16,-12],[-2,-3],[8,-12],[14,0],[4,4],[9,4],[6,6],[15,3],[5,-2],[-3,-5],[5,-2],[7,-5],[12,-4],[8,4],[-2,7],[8,8],[2,0],[7,8],[7,0],[6,2],[6,-2],[9,3],[2,-4],[12,8],[9,4],[6,12],[9,5],[5,-4],[12,0],[1,-4],[5,-2],[17,4],[6,-3],[8,-7],[5,1],[9,-3],[4,-4],[7,2],[7,6],[4,5],[6,-3],[11,6],[5,1],[12,13],[11,1],[2,3],[8,-2],[6,3],[-3,7],[5,7],[13,2],[4,6],[11,-3],[4,3],[6,-4],[14,-2],[6,6],[-4,13],[5,7],[12,0],[5,2],[8,-1],[4,-7],[1,-6],[18,-1],[18,1],[1,-1],[22,3],[1,2],[11,-2],[11,-15],[13,-1],[10,-5],[0,-11],[3,-7],[8,-5],[12,1],[2,5],[5,2],[3,7],[18,-3],[7,-6],[12,-5],[1,-3],[8,-3],[6,5],[15,3],[27,-5],[4,-4]],[[3216,9515],[0,-2],[2,-9],[2,-7],[13,-8],[3,-5],[8,-1],[4,4],[17,-2],[15,-1],[11,-3],[6,1],[5,-2],[1,-3],[6,-5],[24,-8],[7,-3],[18,-17],[-4,-4],[2,-9],[-2,-3],[1,-13],[3,-1],[7,-5],[-1,-4],[3,-2],[-13,-7],[-7,-6],[0,-5],[-24,-2],[-2,-2],[-10,2],[-11,-9],[-8,-1],[-2,-4],[2,-5],[-8,-1],[-1,2],[-11,-1],[-3,-8],[9,-3],[10,-4],[8,-3],[8,-5],[7,-2],[-1,-12],[12,-9],[1,-3],[-9,-6],[-8,-7],[6,-5],[7,-1],[1,-7],[2,-2],[4,-13],[2,-3],[-3,-3],[-2,-5],[-8,-2],[-2,-2],[2,-11],[-3,-1],[-4,-6],[-6,-2],[-4,-4],[-2,-9],[-5,-6],[13,-9],[7,-10],[-7,-9],[-2,-1],[-7,-8],[0,-5],[4,-14],[-2,-7],[-6,-7],[0,-4],[-7,-6],[-3,-1],[-12,-14],[-12,-5],[-3,-3],[-7,-3],[-6,-7],[-4,-5],[6,-4],[1,-17],[-2,-5],[-11,0],[-1,-2],[-10,-8],[-4,-17],[1,-12],[9,-2],[2,-2],[4,1],[7,-3],[6,1],[2,-8],[-2,-1],[-3,-9],[1,-5],[6,-2],[5,-11],[9,-4],[2,-8],[-3,-2],[0,-7],[-11,-4],[-1,-4],[3,-2],[-6,-7],[5,-5],[7,-2],[-1,-18],[3,-1],[-1,-9],[2,-4],[-4,-3],[3,-9],[6,-1],[14,2],[3,-3],[9,-5],[-6,-6],[-6,-1],[-3,-4],[6,0],[1,-4],[-4,-3],[5,-3],[-3,-4],[5,-2],[22,-2],[8,2],[6,3],[4,6],[11,3],[2,3],[9,2],[19,1],[5,-4],[7,5],[4,11],[3,1],[-3,4],[0,5],[10,-1],[4,1],[7,-1],[12,5],[6,4],[6,-3],[0,-2],[24,6],[8,-2],[5,-3],[2,-5],[3,-1],[4,8],[14,3],[3,-6],[8,-2],[3,2],[18,-1],[3,2],[17,-4]],[[3542,8913],[-5,-12],[-3,-5],[-5,-2],[-9,-6],[-16,-21],[-9,-11],[-10,-14],[-1,0],[-30,-35],[-7,-7],[-7,-9],[-6,-6],[-8,-10],[-11,-9],[-8,-8],[-44,-40],[2,-9],[0,-5],[5,-46],[2,-31],[2,-19],[3,-21],[3,-3],[-20,-11],[15,5],[8,-16],[-3,-1],[-3,-6],[9,-1],[1,5],[13,3],[17,-1],[9,-2],[12,-5],[0,-8],[2,-1],[0,-6],[-9,-10],[-1,-4],[-8,-2],[7,-9],[7,-2],[-9,-8],[-10,-4],[-4,-10],[10,-2],[4,1],[6,-5],[4,-1],[-2,-9],[3,-6],[8,2],[6,-13],[-4,-6],[7,-8],[39,24],[20,-14],[8,-3],[5,-9],[6,0],[3,-8],[6,-2],[-1,-5],[6,-10],[7,1],[1,-2],[20,-2],[8,-3],[8,-1],[3,-5],[-1,-4],[30,-4],[-5,-6],[12,-13],[2,-4],[15,0],[4,-1],[13,-5],[6,-5],[5,-7],[-6,-3],[6,-20],[-4,-7],[6,0],[5,2],[3,-4],[10,8],[6,1],[2,-8],[13,3],[3,-3],[-7,-4],[-2,-10],[-10,-5],[4,-8],[15,-7],[21,-10],[8,1],[9,-3],[-2,5],[1,4],[5,6],[4,-5],[8,-3],[10,-1],[4,2],[6,13],[-1,3],[8,2],[5,-2],[5,-5],[13,-2],[15,-5],[9,2],[-1,-4],[-21,-9],[6,-8],[3,-5],[-4,-1],[-8,-7],[1,-12],[3,2],[33,-6],[12,-7],[7,-3],[8,2],[6,8],[8,2],[4,-10],[-7,-10],[5,-3],[4,-5],[13,-7],[1,-1],[13,-1],[7,-3],[3,-5],[20,-14],[11,-2],[17,-7],[18,-5],[0,-1],[22,-6],[5,-9],[-1,-3]],[[4035,8152],[0,2],[-10,-1],[-11,-3],[-1,5],[-3,2],[-11,0],[-9,2],[-14,-7],[-9,5],[-6,0],[-10,6],[-11,-4],[-10,4],[1,-4],[-4,1],[-12,-2],[-10,-16],[-1,3],[-20,9],[-5,-6],[-28,-2],[-15,-4],[-17,0],[-9,1],[-8,-5],[-7,8],[-9,1],[-6,7],[-12,4],[-14,1],[-4,2],[-8,0],[-3,2],[-4,-2],[-8,-9],[-10,0],[-1,2],[-5,-1],[-23,1],[-5,2],[-12,0],[-22,-17],[-14,-1],[1,-5],[-9,-3],[0,-2],[-19,2],[-24,-10],[-1,4],[7,4],[-11,-2],[-7,-2],[-1,4],[-5,-1],[-3,8],[-4,-2],[-3,1],[-8,-3],[-6,4],[-1,4],[-4,1],[-7,-3],[-7,4],[-6,1],[-5,-3],[-3,7],[-7,-3],[-8,1],[-30,6],[-3,1],[-1,5],[4,6],[-5,17],[-3,5],[-11,4],[-10,-4],[-1,-11],[-8,-8],[-8,-3],[-4,3],[5,4],[2,4],[-8,11],[-5,-8],[-15,-8],[-4,-5],[-6,-12],[-6,-4],[-11,-11],[-2,-6],[-6,1],[-18,-9],[-24,-6],[-18,2],[-25,2],[-12,8],[-13,5],[-6,1],[-16,7],[-19,3],[-7,3],[-11,21],[-7,12],[-5,2],[-17,-3],[-6,-4],[-2,-3],[-9,-6],[-9,0],[-7,3],[-19,12],[-13,3],[1,6],[-5,5],[-9,1],[-16,-3],[-8,6],[-3,8],[-3,3],[-29,12],[-7,2],[-5,0],[-10,-3],[-3,-2],[-8,1],[-7,3],[-2,7],[-4,3],[-10,0],[-8,-8],[-9,-2],[-3,-2],[-18,-5],[-14,-1],[-9,9],[-1,12],[-7,-2],[-12,-2],[-8,1],[2,6],[-8,11],[-8,1],[-9,7],[-2,4],[6,6],[2,7],[-2,4],[-11,7],[-17,20],[-9,5],[-13,-4],[-14,-11],[-13,-11],[-17,-4],[-2,8],[7,5],[4,15],[-8,6],[-8,-3],[-23,-7],[-4,-4],[6,-12],[10,-6],[5,-14],[-5,-6],[-7,-3],[-10,3],[-4,8],[-9,6],[-14,2],[-9,-6],[0,-10],[3,-10],[-7,-12],[-9,1],[0,18],[-7,5],[-14,1],[-3,3],[-9,5],[-4,8],[-8,9],[-6,2],[-9,-1],[2,-14],[5,-7],[-2,-8],[-3,-3],[-7,-1],[-5,-4],[-3,-6],[-12,-4],[-11,6],[-10,2],[-6,3],[-6,7],[-11,3],[-19,-1],[-4,2],[-3,8],[5,8],[3,13],[-4,9],[-7,5],[-7,1],[-6,-19],[-14,-9],[-8,-1],[-1,4],[-7,-3],[-7,4],[-3,8],[-5,8],[-5,5],[-4,2],[-5,-1],[-5,-5],[0,-9],[12,-18],[-5,-9],[-15,-5],[-4,6],[-12,13],[-6,3],[-8,-1],[-17,-6],[-1,-1],[-27,-7],[-1,-4],[-10,2],[-12,-1],[4,-6],[-5,-3],[-7,1],[-1,-4],[-8,-3],[-4,-6],[-12,-9],[4,-3],[-2,-4],[-3,-14],[2,-3],[-3,-11],[-2,-4],[-4,-3],[-8,1],[-6,-5],[-2,-8],[-6,-16],[1,-3],[-8,-3],[-4,-13],[-8,-8],[-10,0],[-8,-3],[-3,2],[-3,-3],[3,-4],[6,-4],[-5,-4],[3,-4],[-5,0],[-1,-8],[-6,-6],[2,0],[10,-5],[-3,-7],[11,-3],[5,-3],[11,4],[7,-8],[10,-8],[5,-18],[6,-6],[3,-8],[4,-3],[-5,-6],[-13,-8],[-8,-2],[-10,-5],[-2,-10],[-13,-5],[-1,-2],[-9,-2],[-3,-2],[-2,-5],[1,-6],[7,-5],[11,-4],[14,-5],[4,-6],[3,-1],[-1,-4],[-5,-7],[-9,-3],[-1,-9],[-4,-4],[4,-2],[4,-6],[6,-4],[-18,-1],[-13,-7],[-4,0],[2,4],[-15,-1],[-6,-4],[-3,1],[-2,5],[-1,9],[-5,3],[-6,10],[-3,1],[-3,-3],[-1,-7],[9,-13],[-22,-3],[-13,3],[-1,0]],[[1755,9142],[2,2],[5,7],[16,12],[6,-8],[10,-10],[9,-2],[10,-5],[14,1],[7,5],[5,-2],[3,-4],[12,-9],[8,-2],[2,-3],[6,-2],[3,-12],[-9,-11],[-8,3],[-3,-5],[3,-2],[-4,-2],[-3,-9],[-6,-5],[-6,-1],[-13,-10],[-5,-8],[-4,-12],[5,2],[18,-1],[15,-2],[7,-3],[3,-6],[19,-11],[1,-3],[10,-5],[13,3],[4,-12],[-6,-10],[6,-8],[13,-6],[9,-15],[-3,-3],[2,-4],[6,-4],[4,-16],[6,1],[2,-3],[-9,-3],[-14,-14],[-4,-5],[-1,-9],[9,4],[1,-1],[8,5],[11,3],[13,-3],[-1,-3],[11,-3],[3,4],[5,-1],[2,2],[6,-4],[4,1],[-2,-3],[-2,-8],[5,1],[15,-5],[8,4],[6,0],[-1,5],[5,6],[-2,5],[4,5],[4,1],[4,6],[-1,8],[6,10],[12,5],[5,2],[8,11],[1,5],[-9,-2],[0,10],[-15,4],[1,4],[-8,-1],[-7,7],[-11,-1],[-8,4],[2,6],[-7,6],[3,4],[-2,9],[-10,4],[-6,1],[-6,4],[6,1],[10,7],[6,7],[7,4],[5,1],[-4,6],[-1,14],[-9,7],[-3,1],[0,9],[7,6],[0,6],[11,2],[3,3],[11,3],[1,2],[13,-1],[11,2],[2,3],[0,8],[4,2],[5,10],[-7,10],[-3,7],[-5,8],[9,2],[5,3],[10,2],[2,3],[14,4],[14,16],[7,4],[10,3],[2,7],[16,1],[4,-1],[12,15],[-2,6],[2,2],[3,9],[11,3],[5,4],[3,7],[-2,5],[14,4],[1,-1],[10,7],[-1,7],[2,1],[-2,4],[9,16],[0,4],[7,3],[6,9],[8,8],[-3,7],[12,7],[4,8],[-6,4],[-1,5],[6,7],[-3,9],[-11,2],[-4,8],[-1,6],[7,9],[-5,3],[-2,7],[4,3],[0,11],[-6,6],[-4,-1],[-9,7],[-9,6],[-1,12],[12,2],[9,4],[5,6],[-3,2],[2,7],[-2,9],[8,13],[14,2],[25,5],[6,1],[4,-2],[12,1],[5,4],[4,-4],[5,-1],[1,-4],[-4,-2],[2,-7],[6,-5],[6,-1],[8,-10],[15,-3],[10,9],[0,10],[8,8],[14,1],[2,6],[7,2],[-1,-15],[-1,-6],[2,-4],[2,-9],[-4,-4],[-2,-7],[2,-5],[0,-6],[-5,-19],[6,-7],[3,-6],[2,-13],[-4,-13],[15,-5],[17,-9],[0,-4],[7,-4],[1,-6],[4,-10],[3,-1],[11,-13],[3,-4],[8,-6],[6,-2],[6,4],[4,-4],[18,-7],[22,0],[9,-6],[3,1],[13,-2],[8,3],[1,3],[11,4],[4,-1],[1,3],[5,3],[4,-5],[8,-4],[6,-1],[15,1],[0,7],[8,7],[1,9],[-6,1],[-1,4],[5,5],[3,1],[-3,6],[1,3],[13,7],[9,-4],[5,-1],[18,-9],[5,5],[6,2],[9,1],[4,3],[10,2],[18,11],[5,-1],[4,3],[13,-1],[4,-1],[7,4],[4,5],[12,3],[7,4],[8,-9],[12,-3],[0,5],[23,5],[-2,-5],[7,-8],[14,-7],[5,-4],[7,1],[1,-9],[-3,-1],[-6,-5],[-4,-10],[16,-8],[0,-4],[-3,-2],[4,-5],[-7,-3],[3,-11],[30,-7],[15,-8],[5,-5],[4,-10],[-2,-5],[-4,-2],[1,-5],[-8,-6],[7,-2],[12,-8],[12,6],[20,3],[12,-2],[3,-2],[4,2],[4,-1],[11,5],[4,8],[6,3],[9,7],[6,3],[1,4],[-8,10],[-5,5],[1,5],[-7,3],[2,4],[-10,5],[-5,7],[-4,1],[-11,6],[-2,0],[-4,8],[-8,10],[2,8],[2,2],[-1,6],[18,7],[-2,11],[1,4],[11,7],[16,0],[3,10],[-1,6],[4,3],[-9,7],[-6,-3],[-1,7],[-13,7],[-2,3],[-16,-5],[-3,1],[-5,-3],[-17,-2],[-1,4],[-4,2],[-10,-2],[-3,1],[-2,11],[-14,3],[2,9],[8,6],[-1,8],[-7,8],[3,7],[2,10],[-5,6],[7,6],[2,6],[-3,5],[2,4],[-8,6],[3,4],[9,2],[9,6],[4,7],[8,3],[2,4],[-5,4],[15,5],[4,4],[0,6],[-4,3],[3,7],[-1,3],[2,5],[13,-4],[11,-1],[29,9],[7,4],[13,5],[6,-3],[12,-2],[1,-2],[6,1],[4,8],[8,4],[7,2],[0,-7],[7,-8],[8,-7],[-4,-3],[-10,-16],[2,-8],[2,-3],[6,-3],[8,5],[11,-4],[11,-4],[6,-10],[-2,-3],[3,-3],[13,-1],[10,3],[5,-2],[7,-6],[9,6],[2,5],[38,-10],[12,6],[6,0],[28,-17]],[[2238,7938],[11,1],[-8,3],[-3,-4]],[[2246,7930],[0,0]],[[1973,9043],[2,0],[0,-13],[-7,-6],[-8,5],[7,15],[6,-1]],[[1748,8207],[-3,1],[2,8],[1,-1],[0,-8]],[[1839,8210],[-3,0],[-1,2],[6,2],[-2,-4]],[[4918,9643],[-1,0],[-4,-2],[-15,-3],[-16,-4],[-5,-6],[-7,-5],[-4,-5],[-8,-6],[-11,-1],[-11,1],[-1,-6],[10,-8],[-20,-7],[-17,4],[-4,5],[-22,0],[1,-5],[-9,-4],[-9,-1],[-20,2],[-3,5],[-5,3],[-12,-6],[-2,1],[-4,-7],[-7,-1],[-17,-5],[-8,-9],[-9,-3],[4,11],[-3,7],[2,5],[-12,0],[-8,11],[-11,2],[-11,-2],[-5,4],[-3,5],[-12,2],[-9,5],[-1,3],[-16,8],[-1,2],[-10,5],[-8,1],[3,-13],[-4,-6],[6,-9],[-3,-1],[-6,-18],[-10,-5],[1,-3],[-7,-3],[5,-12],[-6,-11],[-7,-3],[-1,-4],[-3,-2],[-2,-8],[-5,-1],[-13,-17],[-6,-6],[-2,1],[-6,9],[-30,-3],[-5,-5],[-1,-5],[-16,-1],[-3,2],[-10,2],[-9,-3],[-42,-10],[-16,-7],[-2,0],[-5,-6],[-8,-3],[-2,-12],[1,-7],[37,-2],[15,-2],[9,-6],[2,-8],[-2,-2],[3,-10],[-6,-2],[-8,-6],[-19,1],[-3,-7],[-7,-9],[4,-5],[-3,-4],[-4,-8],[-2,-9],[2,-2],[-2,-4],[0,-11],[-12,9],[-7,-9],[-9,-1],[-2,2],[-6,-3],[-9,-1],[-2,-5],[3,-6],[8,-1],[10,-4],[0,-5],[8,-6],[1,1],[17,-6],[-1,-2],[2,-8],[-2,-1],[9,-5],[-8,-8],[-2,-9],[-3,-3],[7,-7],[3,-5],[21,1],[6,4],[13,3],[2,-10],[-3,-4],[1,-4],[7,-6],[10,4],[17,-7],[1,-2],[-12,-12],[-3,-5],[1,-2],[13,-7],[1,-6],[5,-3],[8,-5],[16,0],[1,-8],[-4,-5],[-6,-1],[-1,-4],[1,-7],[-10,2],[-9,3],[0,-8],[-5,-3],[-4,-7],[3,-5],[-10,-8],[-7,-3],[4,-2],[-12,-12],[-6,-3],[-8,1],[-11,-3],[-12,-1],[-11,-2],[-3,-3],[-18,-5],[-12,2],[-15,-1],[-4,3],[-6,-7],[-8,-2],[-4,8],[-11,0],[-19,-2],[-8,-7],[-2,-4],[-14,4],[-3,-2],[0,-11],[2,-12],[3,-3],[7,-2],[5,-11],[-17,-3],[-3,2],[-12,-8],[7,-7],[6,-3],[-7,-5],[-5,-2],[4,-2],[-1,-3],[4,-2],[12,-17],[-6,-11],[3,-4],[-10,-6],[-17,0],[-10,-1],[-4,-2],[-8,-1],[2,8],[-8,2],[-5,-4],[-17,4],[-6,-2],[-8,32],[-5,1],[-4,-2],[-11,5],[-9,0],[-4,2],[-16,-2],[-1,-2],[-16,2],[-10,-4],[-4,-7],[-12,-1],[-5,-3],[-7,-8],[-6,-3],[-9,1],[-16,-2],[-9,2],[-9,-2],[-16,4],[-3,-1],[0,-9],[2,-11],[6,-6],[-1,-9],[-4,1],[-8,-2],[-8,0],[2,-7],[-3,-4],[1,-3],[-11,-4],[5,-7],[-5,-3],[-4,2],[-3,4],[-10,1],[-5,3],[-5,8],[-7,-3],[-5,8],[0,-5],[2,-2],[-2,-8],[-10,-2],[-13,3],[-7,-2],[-2,-11],[-9,-4],[5,-14],[-9,2],[-8,-5],[8,-3],[-5,-18],[-8,-4],[-1,-2],[-7,-1],[-1,-13],[-9,-3],[-8,-4],[0,-5],[-6,-1],[-2,-6],[1,-7],[8,-2],[-5,-6],[8,-8],[-4,-2],[-17,6],[-3,-5],[4,-14],[1,-4],[-5,-11],[2,-3],[1,-8],[-8,-7],[-12,-5],[-1,-4],[-13,-8],[-2,-12],[-10,-4],[-1,5],[-18,0],[-5,-2],[-6,4],[-14,7],[-11,8],[-1,3],[-6,-4],[-7,-7],[-7,1],[-9,-2],[-6,7],[-3,5],[-3,-7],[-8,-3],[-5,1],[1,-4],[4,-4],[-8,-4],[1,-3],[-9,-5],[-8,-2],[-1,4],[5,7],[-2,5],[-6,-7],[-3,-7],[-10,0],[-3,-3],[-1,-7],[-7,0],[-13,5],[-8,10],[10,5],[1,3],[-11,3],[-1,2],[-10,2],[-4,4],[-17,4],[-1,-2],[-22,2],[-3,2],[1,4],[3,2],[2,8],[7,6],[4,0],[2,16],[2,3],[7,-1],[7,7],[1,4],[-4,4],[-6,12],[3,7],[9,7],[-8,6],[-16,7],[-16,5]],[[3216,9515],[5,5],[11,5],[0,6],[5,6],[-3,7],[9,11],[-1,4],[3,7],[-3,2],[3,4],[-2,5],[6,7],[-5,4],[-3,4],[-6,3],[-7,6],[-12,7],[-6,2],[-15,-2],[-9,-1],[-10,-2],[-3,1],[-1,6],[-7,13],[0,12],[-2,4],[-7,6],[2,3],[8,1],[5,10],[14,7],[2,9],[-7,5],[-1,4],[-7,3],[9,4],[2,3],[13,6],[11,4],[2,5],[-2,6],[-1,8],[-6,4],[-8,6],[3,3],[-1,4],[13,3],[10,9],[5,14],[-2,4],[2,5],[6,1],[-2,6],[6,5],[-2,5],[8,4],[3,-1],[7,-7],[4,-1],[16,-1],[8,-2],[18,3],[7,1],[3,-8],[11,1],[2,4],[15,3],[1,3],[15,4],[6,4],[27,2],[6,2],[5,6],[5,1],[4,-5],[16,-2],[4,-4],[-3,-4],[0,-5],[8,-2],[2,-3],[10,0],[14,-8],[16,-3],[4,-5],[6,-5],[-15,-15],[-15,-5],[-2,-1],[2,-7],[7,-2],[18,-2],[11,3],[1,2],[11,5],[7,-5],[1,1],[14,-13],[14,-2],[11,6],[1,-3],[18,-4],[3,-1],[1,-6],[16,-2],[4,5],[4,1],[7,-2],[8,6],[19,-1],[17,1],[8,-1],[12,-3],[5,-2],[11,0],[10,4],[8,-6],[2,1],[7,15],[3,8],[6,8],[-3,2],[17,7],[19,7],[-1,6],[-5,7],[-4,3],[3,8],[-3,2],[1,6],[8,5],[7,14],[4,2],[4,13],[-1,5],[-3,3],[1,5],[11,3],[1,8],[3,5],[8,-2],[14,-1],[8,3],[12,7],[4,5],[-5,4],[2,5],[0,9],[10,-3],[11,7],[2,-2],[9,0],[4,-5],[29,6],[12,4],[1,3],[5,3],[10,-1],[9,3],[1,2],[10,-2],[9,1],[5,6],[4,1],[5,-3],[7,-1],[2,-3],[4,4],[14,1],[13,-8],[5,-8],[11,-2],[10,-4],[11,2],[7,2],[2,2],[10,3],[3,8],[3,1],[4,6],[7,-1],[7,5],[-1,2],[8,10],[20,-1],[-1,-3],[11,-2],[8,-7],[16,-8],[8,3],[16,2],[9,4],[-1,4],[8,3],[21,5],[11,1],[5,-5],[2,-4],[19,-5],[5,-4],[8,2],[5,-1],[11,2],[16,-2],[10,-11],[2,-6],[20,-3],[1,2],[12,1],[1,5],[5,6],[7,6],[11,-2],[22,0],[13,2],[3,5],[6,2],[5,-1],[6,7],[8,4],[4,-2],[3,5],[14,4],[7,4],[10,3],[1,4],[11,2],[8,2],[8,-4],[2,4],[5,5],[4,-3],[18,8],[2,-2],[12,2],[20,-2],[6,2],[4,7],[6,2],[13,1],[1,-2],[13,1],[3,-1],[1,5],[8,5],[3,2],[2,4],[8,0],[10,-3],[19,6],[13,-1],[12,4],[1,2],[8,3],[10,1],[21,-4],[9,-3],[2,-4],[6,-4],[2,-7],[-5,-1],[-6,-4],[-7,-1],[0,-12],[-4,-7],[-6,-8],[-21,-2],[-10,-3],[-1,-2],[-18,4],[-5,-5],[-11,-4],[-4,-7],[4,-7],[2,-1],[1,-7],[-2,-2],[9,-2],[-2,-13],[1,-3],[-5,-2],[4,-3],[14,-5],[8,-5],[5,-13],[-4,-1],[-6,-7],[-10,-8],[13,-4],[1,-2],[8,3],[6,-3],[11,0],[8,-9],[2,-9],[10,-10],[5,4],[10,1],[3,7],[7,2],[4,-2],[16,-1],[6,-3],[3,-4],[-3,-4],[4,-4],[10,-3],[-2,-2],[2,-12],[13,-7],[-1,-6],[-8,-8],[-3,-1],[-8,-7],[0,-2],[5,-4],[3,-5],[-4,-8],[-6,-5],[2,-5],[20,0],[1,2],[13,-2],[11,-3],[6,-3],[7,1],[5,-2],[1,-9],[6,-9],[2,-11],[7,-16],[5,-5],[6,-3],[8,-3],[1,-2],[8,-1],[3,-5],[11,-1],[1,-4],[14,-5],[0,1],[17,-3],[6,1],[4,-4],[0,-3]],[[5132,9604],[-1,-1],[-3,-2],[4,-5],[-3,-10],[1,-3],[6,-4],[1,-6],[4,-2],[-3,-4],[3,-13],[-9,-5],[4,-4],[-3,-2],[3,-9],[10,-8],[-7,0],[-11,-4],[-5,4],[-7,1],[-10,-4],[-2,1],[-10,-5],[-3,-5],[-13,-4],[-16,-5],[-15,-6],[0,-11],[5,-3],[6,-6],[7,-4],[5,-10],[4,-3],[-5,-4],[-5,1],[-6,5],[-15,2],[-1,1],[-9,-3],[-7,-7],[-9,6],[-16,2],[-6,3],[-2,-3],[-4,-1],[-17,-13],[-9,7],[-3,-4],[-5,-10],[-14,-7],[-10,-13],[1,-6],[4,-5],[-3,0],[-12,-9],[-9,-10],[-4,-2],[-8,3],[6,-19],[-9,1],[3,-5],[-5,-4],[-18,-8],[-9,3],[3,-7],[-8,-13],[-24,-2],[-2,2],[-8,-5],[-15,-6],[3,-7],[-4,-3],[0,-5],[2,-5],[-8,-3],[-4,-6],[-3,1],[-10,-8],[-3,-6],[2,-13],[8,-1],[0,-6],[4,-7],[5,2],[8,-4],[5,-6],[8,-1],[3,-4],[17,4],[10,-1],[3,-7],[-5,-3],[-2,-4],[11,-3],[16,2],[10,-1],[1,-4],[-2,-3],[5,-15],[-1,-3],[6,-2],[1,-5],[6,-2],[2,-3],[9,-1],[13,-6],[4,-4],[-1,-5],[2,-15],[-4,-2],[1,-4],[-6,-10],[-4,-8],[-12,-3],[3,-2],[-22,-10],[-14,-7],[-9,-14],[-7,-1],[-3,-13],[-2,-6],[6,-3],[4,-5],[0,-6],[3,-4],[0,-7],[4,-8],[4,-7],[-2,-18],[-2,-12],[2,-7],[10,-2],[7,2],[3,-3],[2,3],[10,-5],[0,-8],[12,-5],[20,-1],[5,-4],[-2,-4],[3,-6],[6,-4],[6,0],[-2,-3],[-12,-2],[8,-6],[4,-6],[11,0],[-4,-6],[6,-6],[-6,-5],[4,-3],[10,1],[4,-3],[2,-4],[-3,-4],[8,-4],[-8,-5],[6,-3],[-2,-4],[6,-5],[4,5],[6,-6],[7,1],[1,-4],[10,-5],[-2,4],[5,3],[-3,3],[5,8],[4,2],[5,-6],[10,-3],[2,2],[5,0],[-2,-3],[7,-8],[7,2],[1,-5],[6,-6],[-4,-4],[18,-10],[3,1],[17,13],[6,7],[12,8],[10,10],[5,0],[4,-6],[4,-2],[13,11],[8,5],[-2,2],[12,6],[9,-5],[2,-3],[8,0],[0,-4],[-4,-7],[2,-7],[5,-4],[10,4],[0,8],[4,2],[5,-1],[1,3],[25,10],[8,-4],[5,4],[0,-9],[-5,-4],[6,-9],[7,1],[5,-2],[2,-3],[5,2],[3,5],[4,1],[6,-4],[5,6],[7,-12],[25,4],[-7,6],[3,14],[3,2],[4,-1],[4,-9],[10,-2],[-7,-5],[3,-4],[2,3],[4,-2],[-7,-4],[11,-1],[6,-3],[-1,-4],[-5,-1],[-2,5],[-5,-1],[-3,-5],[6,-7],[0,-4],[8,5],[1,-3],[-14,-4],[-2,-4],[7,-1],[2,-9],[8,-1],[5,-7],[6,-1],[5,-3],[-1,-2],[-10,-1],[5,-4],[-3,-4],[4,-5],[8,-3],[-6,-7],[-1,-6],[7,-1],[10,11],[0,-9],[7,-3],[2,-12],[-2,-7],[7,-7],[7,3],[-8,-10],[18,-7],[2,-6],[-4,-11],[3,-2],[11,4],[5,-2],[-4,-3],[6,-2],[12,-7]],[[5443,8750],[-7,-7],[-58,-4],[-18,-2],[-14,-3],[-7,1],[-7,-3],[-22,-3],[-20,-5],[-7,1],[-10,-5],[-5,-7],[-4,-3],[-9,-2],[-11,-6],[0,0],[-7,-2],[-5,-3],[-11,-3],[-7,-4],[-9,-3],[-12,-5],[-19,-9],[-1,-2],[-8,-3],[-7,-4],[-36,-16],[-26,-6],[-22,-8],[-12,-3],[-3,-2],[-38,-14],[-11,-5],[-3,-3],[-12,-1],[-16,-5],[-12,-6],[-38,-10],[-5,-3],[-4,1],[-15,-6],[-17,-10],[-6,-6],[0,-3],[-6,-2],[-3,1],[-10,7],[-10,2],[-11,-7],[-15,-14],[-10,-11],[-8,-12],[-7,-12],[-7,-10],[-2,-14],[12,-3],[-5,-2],[-4,1],[-7,-2],[-7,-14],[-2,-9],[-5,-10],[0,-3],[-4,-12],[-3,-16],[1,-7],[-3,-3],[1,-8],[14,-6],[-10,1],[-3,-12],[4,-14],[7,-16],[4,3],[6,-9],[5,-5],[1,-4],[3,-2],[-4,-7],[-3,-20],[1,-8],[3,-10],[3,-8],[-3,-8],[8,-1],[15,-13],[-2,-6],[8,1],[20,-13],[10,-9],[8,0],[7,-10],[17,-13],[15,-8],[7,-3],[8,-5],[9,-4],[24,-4],[25,-11],[4,-1],[0,-4],[3,-4],[-1,-4],[-8,-3],[-10,-8],[-21,-22],[1,-4],[-9,-17],[-10,-21],[-3,-2],[-1,-7],[-10,-16],[-5,-1],[-13,-8],[-11,-3],[-2,1],[-12,-10],[7,-5],[-3,-7],[-8,-7],[-6,7],[-8,-10]],[[4848,8018],[-11,5],[-11,8],[-11,5],[-7,12],[-2,7],[-1,9],[-5,4],[-26,2],[-10,5],[-6,8],[-2,7],[1,17],[-3,9],[11,15],[-11,14],[-6,2],[-10,-6],[-6,5],[-1,-7],[-7,1],[-7,-1],[-7,-9],[-7,-1],[-7,3],[-20,-1],[-10,7],[-4,7],[-10,-3],[-1,-6],[-8,0],[-6,-3],[-4,3],[-9,2],[-6,9],[-2,9],[-6,6],[-10,1],[1,7],[-4,1],[-9,-4],[-3,5],[-3,1],[-9,-4],[-11,2],[-4,4],[-44,5],[-11,2],[-19,2],[-26,-10],[-16,0],[-16,2],[-17,-3],[-1,1],[-31,-2],[-8,3],[-15,1],[-8,-3],[-4,-5],[-21,-7],[-14,-1],[-8,-5],[-1,-6],[4,-11],[-32,-8],[-7,-4],[-24,-5],[-12,-6],[-10,-7],[-11,-6],[-18,-3],[-13,2],[-4,6],[-4,14],[-4,3],[-12,1],[-5,2],[-8,7],[-10,5],[-16,2],[-37,0],[-2,-1],[-22,-4],[-10,-2],[-8,3],[2,15]],[[4918,9643],[3,-2],[14,0],[6,3],[1,-3],[9,1],[11,-5],[-1,-2],[8,-3],[8,-7],[9,-1],[1,-3],[9,-3],[36,6],[4,3],[14,-6],[9,-2],[19,5],[7,0],[7,-2],[5,1],[9,-5],[13,-2],[4,-6],[5,-1],[4,-5]],[[5132,9604],[10,3],[5,6],[12,3],[16,-2],[10,-3],[3,-5],[9,-5],[8,-2],[7,1],[9,-2],[-3,-4],[1,-11],[19,-4],[7,4],[23,-2],[4,2],[6,-2],[8,2],[6,-1],[5,2],[16,-7],[10,3],[2,-2],[5,1],[9,-4],[3,2],[4,-3],[11,3],[6,-3],[9,2],[7,-1],[2,-3],[19,-1],[9,1],[17,2],[1,2],[10,-2],[8,-4],[6,1],[9,-4],[18,-3],[21,1],[3,-5],[8,-5],[12,-5],[14,-2],[2,1],[15,-10],[6,-6],[3,4],[8,4],[11,-2],[7,2],[10,-3],[3,2],[8,0],[7,-5],[11,-1],[12,8],[4,1],[5,6],[7,-3],[9,3],[6,-2],[-3,5],[4,5],[13,-2],[0,-1],[11,-4],[6,0],[-1,-3],[19,-9],[5,2],[6,-3],[9,2],[14,-1],[8,3],[21,4],[2,-9],[4,-4],[5,-3],[13,2],[8,4],[17,-2],[5,-5],[0,-6],[7,-1],[5,2],[3,4],[9,1],[4,-2],[16,-1],[18,-9],[2,1],[10,-3],[2,-2],[12,-4],[16,-1],[4,2],[7,-2],[7,1],[2,-8],[0,-6],[-11,-4],[0,-6],[2,-2],[-2,-5],[1,-3],[4,-3],[-6,-3],[-6,-7],[3,-11],[-4,-10],[-8,-4],[-7,1],[-13,0],[-4,-1],[-1,3],[-7,3],[-8,-2],[-2,-2],[-12,1],[-4,-3],[-5,2],[-15,-4],[-5,-6],[-3,1],[-4,-19],[-9,-9],[-11,-5],[-10,-1],[-9,-5],[-3,2],[-9,-5],[-15,-10],[-11,0],[-9,-7],[-7,-2],[-4,2],[-19,-2],[-2,-5],[4,-5],[6,-14],[-4,-2],[-4,-7],[-20,-6],[2,-8],[-8,-1],[-2,1],[-3,-5],[-22,-2],[3,-8],[5,0],[6,-16],[2,-8],[4,-7],[4,-7],[5,-5],[2,1],[8,-5],[-6,-5],[-4,-1],[4,-2],[0,-5],[-6,-3],[12,-5],[1,-3],[10,5],[10,6],[-3,6],[11,0],[8,-2],[15,1],[11,-3],[-1,-3],[5,-2],[22,3],[0,-5],[11,0],[9,-3],[9,-10],[4,-1],[-2,-2],[4,-6],[3,-3],[13,6],[7,-3],[10,-1],[4,-2],[15,6],[10,-2],[9,-5],[2,1],[5,-3],[1,-9],[-9,-10],[1,-7],[-4,-6],[-9,-8],[-13,-9],[-12,-7],[-1,1],[-10,-11],[-6,-3],[-9,-3],[-5,-7],[-8,-1],[-4,-3],[-12,-1],[-1,-5],[-4,-1],[-4,-6],[-3,-2],[-11,-4],[-12,0],[-4,-5],[0,-8],[10,-1],[-1,-9],[-3,-7],[-3,-2],[-5,-9],[-16,-7],[7,-5],[4,-7],[4,-3],[18,-8],[1,-4],[8,-2],[1,-5],[14,-2],[18,4],[2,-1],[8,13],[15,5],[6,-1],[4,-3],[11,-1],[12,5],[7,-5],[-2,-7],[-5,-20],[0,-8],[3,-6],[-1,-2],[-17,-17],[-5,-11],[-8,-4],[-5,-5],[1,-3],[-5,1],[2,-12],[-7,-5],[-1,-7],[-9,-11],[1,-3],[5,-3],[7,-6],[3,-9],[4,-3],[-1,-8],[7,-6],[9,0],[13,-5],[4,2],[5,-2],[12,2],[14,-2],[3,-6],[11,-1],[13,-10],[10,-6],[10,-3],[5,-3],[0,-3],[17,-5],[8,1],[2,-4],[17,-3],[9,-4],[7,-11],[6,-7],[18,-12],[2,-9],[-4,-5],[2,-4],[13,-9],[9,-11],[13,-8],[18,-10],[7,-1],[12,-8],[-8,-6],[-7,-3],[-8,-5],[-7,-2],[-11,-4],[-2,-8],[-13,-8],[-1,-6],[-27,-2],[-4,-1],[-25,2],[-5,1],[-26,12],[-9,-1],[-6,-2],[-9,7],[6,2],[5,4],[4,1],[16,-2],[13,-3],[5,-2],[0,-2],[7,-2],[10,8],[13,4],[-4,1],[-8,-3],[-9,2],[-11,7],[1,2],[-4,2],[2,4],[4,1],[-3,4],[-7,-4],[-7,-2],[-3,2],[7,2],[0,2],[-16,5],[9,6],[5,-2],[4,6],[3,-1],[-3,7],[-2,0],[-4,9],[-4,3],[0,6],[-6,6],[-8,6],[-8,4],[-13,4],[1,5],[-4,3],[-1,0]],[[5952,8810],[-1,1]],[[5951,8811],[-7,6],[-14,10],[-3,4],[-8,3],[-16,12],[-6,2],[-12,12],[-1,-2],[-7,2],[-16,1],[0,2],[-10,4],[-9,1],[-6,2],[-11,1],[-4,4],[-7,10],[-1,-5],[5,-3],[-5,1],[-8,-6],[5,-3],[2,4],[4,-2],[-10,-5],[-2,-4],[-3,-1],[-5,-8],[-1,-4],[2,-7],[-3,-5],[9,0],[5,-8],[11,-3],[4,-2],[0,-4],[-19,-1],[-17,-8],[-19,-8],[-13,-1],[-6,6],[2,-4],[1,-3],[-6,-2],[-1,-5],[-19,-10],[-5,-1],[1,-4],[-28,-1],[-9,-1],[-14,12],[-6,0],[-4,3],[-8,-3],[-6,0],[-9,3],[-6,4],[-26,10],[-9,2],[-10,-2],[-16,7],[-4,-2],[-3,5],[-10,-5],[-21,-1],[-19,-2],[-2,1],[-4,-5],[-7,-3],[-18,-3],[3,-5],[-8,-7],[-3,-1],[-26,-18],[-5,-10],[-1,-5],[0,-2]],[[5994,8768],[0,0]],[[5977,8733],[0,0]],[[5951,8811],[0,0]],[[2165,7862],[13,2],[0,1],[24,2],[8,-8],[-9,-9],[22,-3],[11,2],[2,8],[6,1],[6,-1],[6,-10],[4,3],[9,-8],[9,-5],[3,-4],[5,-2],[5,5],[4,1],[23,-7],[2,7],[4,5],[3,-2],[16,7],[8,-4],[-2,-12],[8,-2],[5,-5],[4,-2],[10,4],[4,-9],[6,4],[20,-4],[6,-5],[-5,-6],[2,-5],[8,-3],[4,-7],[-4,-11],[2,-5],[-6,-8],[1,-10],[-11,-10],[-12,2],[2,-13],[-5,-1],[-7,-16],[1,-5],[-11,-3],[-2,-5],[-3,-2],[-1,-10],[4,-1],[15,2],[3,5],[7,-5],[5,-9],[3,2],[1,6],[9,5],[8,-1],[7,3],[7,-2],[11,4],[6,-3],[9,2],[4,9],[8,-1],[16,-8],[8,4],[4,4],[7,-6],[11,-5],[1,-2],[11,-4],[1,-3],[7,-2],[10,0],[7,-10],[0,-10],[3,-1],[0,-5],[4,-4],[-1,-5],[3,-6],[3,-1],[7,3]],[[2572,7649],[6,-2],[8,2],[11,-8],[2,-9],[3,-3],[2,-7],[4,-6],[7,0],[12,-4],[9,-9],[3,-8],[5,-3],[15,-6],[1,-2],[12,-7],[8,3],[5,-4],[12,-2],[1,-4],[13,-3],[4,-13],[4,-5],[-2,-2],[-2,-11],[5,-6],[8,-2],[2,-3],[-4,-3],[-2,-8],[-2,-1],[-6,-15],[5,-4],[0,-5],[6,4],[3,9],[3,3],[12,6],[13,3],[1,-5],[5,-4],[11,0],[4,-3],[-11,-4],[-1,-4],[-5,-2],[-1,-3],[-6,-2],[-10,-10],[5,-3],[8,4],[12,2],[5,-4],[6,2],[17,-3],[4,3],[7,1],[5,-2],[3,-5],[-1,-3],[3,-13],[-4,-3],[6,-12],[10,-4],[0,-12],[-9,-4],[1,-4],[7,-4],[10,16],[21,7],[6,-1],[16,-7],[3,-6],[8,-5],[1,-4],[-8,-8],[1,-3],[-5,-1],[-18,-13],[-2,2],[-12,-18]],[[2851,7372],[0,0]],[[2851,7372],[-6,3],[-15,2],[-9,-7],[-7,-6],[-2,2],[-7,0],[-7,3],[-8,8],[-9,3],[-16,10],[-1,4],[-4,-2],[-1,6],[-2,6],[-10,1],[-6,-2],[-5,0],[-2,6],[-5,0],[-8,3],[1,4],[-8,4],[2,1],[-6,7]],[[2710,7428],[-1,0]],[[2709,7428],[-2,0],[-1,-5],[-2,4],[-7,1],[-8,-6],[3,-2],[-2,-2]],[[2690,7418],[-5,-2],[-5,3],[1,-4],[4,0],[-1,-3],[5,-2],[-3,-1],[0,-3],[8,-4],[1,-5],[8,1],[-6,-7],[1,-2],[6,4],[-1,-4],[7,2],[-4,-4],[5,-2],[-9,-1],[-3,-6],[-5,-3],[-1,3],[-9,7],[-16,4],[-15,6],[-7,3],[-12,7],[-2,7],[-16,0],[2,5],[-4,0],[0,3],[-8,6],[0,2],[-18,8],[-2,1],[-2,6],[-8,1],[-8,7],[-16,5],[-4,3],[-12,-1],[-7,-10],[-2,3],[-10,5],[-2,6],[-8,4],[-3,4],[4,7],[-6,5],[-7,0],[-9,8],[-11,-1],[-4,4],[3,5],[-4,4],[-10,5],[-4,5],[-6,-1],[-11,1],[-9,6],[-14,7],[-3,9],[-9,6],[-6,1],[-3,-5],[-7,-1],[-17,5],[-4,-1],[-8,13],[-11,5],[-6,-1],[-8,-6],[-3,10],[-5,6],[-8,-2],[8,5],[-18,16],[-1,2],[-11,4],[-6,4],[-12,2]],[[2278,7597],[1,2]],[[2279,7599],[-1,0]],[[2278,7599],[0,0]],[[2278,7599],[0,-2]],[[2278,7597],[0,0]],[[2278,7597],[-3,5],[-9,-1],[1,2],[-17,9],[-12,2],[-1,2],[-7,1],[-8,5],[-12,2],[-11,4],[-2,3],[-8,3],[0,-5],[-6,-2],[2,-5],[-10,0],[-1,-5],[3,-6],[-4,-2],[2,-6],[-4,-4],[7,-8],[-12,3],[-13,6],[-7,-1],[-7,6],[-5,-2],[-1,4],[-10,-1],[-2,5],[4,23],[-5,2],[-1,4],[-6,5],[-1,-1],[-10,1],[-2,2],[-10,3],[-17,4],[-6,0],[-3,3],[-17,2],[-6,2],[-13,0],[-15,2],[0,1],[-20,2],[-9,5],[-16,-2],[-4,2],[-7,-1],[-11,2],[-9,3],[-6,3],[4,3],[-9,3],[8,3],[-5,3],[-8,-1],[-2,-5],[7,-3],[-15,-2],[-3,4],[-1,-3],[-4,4],[-3,-3],[-6,2],[-12,0],[-10,3],[-10,1],[-6,2],[-11,2],[1,2],[14,-2],[0,0],[11,4],[-12,1],[-2,3],[-3,-2]],[[1854,7697],[0,0]],[[1854,7697],[-3,2],[-33,0],[7,-2],[-1,-4],[-5,1],[-13,2],[-10,3],[-19,2],[-8,-4],[-15,-5],[-7,-2],[-10,-4],[-6,-5],[1,-5],[-31,-6],[-10,-4],[-2,-5],[-12,-8],[-9,-4],[-21,-5],[-14,-3],[-3,-5],[3,-2],[-10,-4],[-13,-5],[0,-2],[-20,-5],[-7,-1],[-11,-7],[-7,-6],[0,-5],[3,4],[4,-2],[-3,-3],[-27,-10],[-2,-2]],[[1540,7586],[-9,-7],[-7,-9],[2,-8],[7,-2],[5,-4],[-7,-6],[-4,-6],[0,-6],[-10,-2],[-7,-4],[-6,-7],[1,-20],[6,-4],[-7,-3],[-8,-5],[-20,-4],[-10,-2],[0,-3],[-13,-3],[-11,-3],[-4,-2],[-1,-3],[-28,-5],[-7,-2],[-9,-6],[-10,-4],[-6,-6],[-3,-8],[-3,-1],[-4,-5],[-10,-10],[-4,-8],[-4,-4],[-5,-13],[-1,-17],[2,-12],[-1,-2],[-12,-5],[-7,-4],[-10,-11],[2,-3],[-10,-2],[-10,-9],[-7,-11],[-2,-14],[1,-3],[6,-7],[5,-3],[-1,-5],[-19,-2],[-8,-4],[-4,-4],[-4,-11],[-12,-3],[-5,-2],[-14,-5],[-6,-8],[-4,0],[-4,-5],[3,-4],[-20,-8],[-11,-1],[-14,-4],[0,0],[-7,-5],[9,-2],[-9,1],[-2,-3],[-7,-2],[-8,-1],[-23,-6],[-4,-4],[0,-5],[-10,-1],[-4,-3],[-26,-2],[-9,-6],[-8,-1],[-6,2],[-8,-2],[-12,-1],[-6,-3],[-12,-2],[-5,-4],[-11,-7],[-9,5],[-11,1],[-7,-3],[-1,-2],[-4,0]],[[977,7176],[-1,0]],[[976,7176],[-1,0]],[[975,7176],[-4,1],[-5,-4],[-7,-1],[-2,-3],[-11,-2],[-4,-5],[-7,-5],[-16,3],[-4,2],[-13,-2],[-5,-4],[-4,-6],[-7,-2],[-4,-5],[-10,-2],[-23,6],[-16,1],[-20,5],[-22,1],[-1,-2],[-5,-1],[-4,-8],[-8,2],[-2,2],[-12,0],[-4,11],[-9,15],[-3,8],[-4,17],[-6,2],[-3,10],[4,9],[-2,4],[11,6],[-1,2],[4,3],[1,-2],[4,4],[5,-1],[4,4],[4,2],[13,1],[8,3],[2,3],[-1,10],[-2,4],[10,16],[-5,6],[7,5],[7,0],[5,6],[8,0],[4,2],[8,-1],[16,6],[4,5],[7,4],[7,-1],[3,3],[-1,7],[8,2],[-1,4],[6,6],[-4,12],[-3,4],[0,9],[3,3],[8,-2],[3,5],[10,5],[8,0],[2,8],[7,9],[3,1]],[[2714,7377],[-3,-2],[-6,-13],[-2,5],[-6,3],[-2,4],[8,1],[2,-2],[9,4]],[[1891,7682],[22,-5],[11,-1],[9,-3],[11,-5],[-8,2],[-4,3],[-32,6],[-9,3]],[[2708,7358],[0,0]],[[1346,7355],[0,0]],[[1886,7681],[-24,4],[-3,1],[27,-5]],[[1834,7697],[0,0]],[[1528,7535],[0,0]],[[2711,7354],[0,0]],[[1540,7586],[0,0]],[[1854,7697],[0,0]],[[2690,7418],[0,0]],[[2277,7598],[1,1]],[[2278,7599],[0,-1]],[[2278,7598],[-1,0]],[[2278,7598],[1,1]],[[2279,7599],[-1,-2]],[[2278,7597],[0,1]],[[976,7176],[-1,0]],[[975,7176],[1,0]],[[976,7176],[1,0]],[[977,7176],[-1,0]],[[2709,7428],[1,-1]],[[2710,7427],[-1,1]],[[5148,7307],[0,-1]],[[5148,7306],[0,1]],[[5148,7307],[0,-1]],[[5148,7306],[4,-6],[-5,-3],[1,-3],[-3,-7],[-7,-9],[-5,-2],[0,-5],[-4,-3],[-1,-11],[2,-6],[2,-1],[3,-7],[-8,-4],[-3,-9],[9,-7],[-5,-8],[-3,-2],[-20,-2],[-2,-5],[-16,-12],[2,-3],[-1,-4],[3,-2],[-6,-1],[-2,-3],[-11,4],[-4,-3],[-11,2],[-16,-5],[-4,5],[-6,2],[2,7],[5,6],[-3,2],[-5,-1],[-8,4],[2,4],[0,7],[-6,0],[-6,3],[3,8],[-2,7],[-15,1],[-6,-2],[-1,-10],[-6,-3],[-13,-3],[-9,9],[6,7],[4,4],[-4,4],[-2,6],[-13,0],[-4,2],[-8,7],[-3,4],[-7,1]],[[4932,7260],[0,5],[8,3],[2,6],[4,5],[4,8],[-5,8],[0,5],[-2,8],[5,2],[-2,8],[5,2],[-2,6],[-8,-1],[-8,-4],[-1,-2],[-13,-2],[-6,-2],[-12,-6],[-9,-5],[-18,-8],[-4,1],[-7,-5],[-6,2],[0,-9],[2,-3],[4,-1],[3,-9],[-6,-7],[4,-10],[-4,-6],[7,-2]],[[4867,7247],[1,-6],[3,-2],[3,-9],[6,-7],[-10,0],[-9,3],[-5,0],[-2,-2],[-3,2],[-3,7],[1,4],[-2,7],[-2,-8],[-3,-5],[-7,-1],[-5,-3],[-5,1],[-6,-2],[-1,-2],[-9,-5],[-2,-13],[2,-1],[-5,-11],[-3,-2],[-1,-10],[-9,-4],[-7,-4],[-2,-9],[-8,-5],[-12,-2],[-6,-2],[-1,-5],[4,-14],[-4,-5],[0,-1]],[[4755,7131],[-7,-1],[-10,-4],[-6,1],[-4,-3],[3,-4],[-11,-1],[-2,4],[-7,2],[-8,-2],[-6,2],[-4,-1],[-10,-12],[3,-2],[-4,-7],[-8,2],[-2,6],[-10,4],[-11,13],[-32,-11],[-14,4],[-19,-8],[-13,-3],[-5,6],[1,4],[-8,4],[-7,-3],[-9,3],[-4,4],[-2,-1],[-13,2],[-1,2],[-9,0],[-11,-3],[-10,6],[-13,5],[-6,2],[1,5],[-4,7],[-17,3],[-8,-1],[-5,6],[2,7],[-3,5],[-12,-5],[-10,0],[-8,2],[-4,5],[-15,-2],[-5,-5],[-5,0],[-25,15],[-12,7],[-7,10],[-7,2],[-5,3],[-12,2],[-2,3],[-9,1],[-4,3],[-14,7],[-4,5],[-7,1],[-2,3],[-1,7],[1,5],[4,4],[1,4],[-3,7],[2,9],[-19,6],[-8,7],[3,3],[2,8],[3,2],[-9,7],[-8,5],[-6,7],[-12,4],[-4,8],[6,9],[-1,6],[10,0],[-3,12],[12,2],[6,-1],[5,9],[7,4],[-2,5],[5,5],[-2,4],[7,6],[5,8],[14,13],[8,4],[-1,3],[3,7],[8,4],[1,11],[2,3],[-6,5],[-11,-1],[-9,-4],[-8,2],[-7,-3],[-22,3],[1,-3],[-8,-7],[-6,-4],[-8,-3],[-2,-3],[-6,5],[-2,5],[-13,3],[-18,4],[-11,-5],[-6,-1],[5,11],[12,12],[9,2],[3,3],[-2,7],[-2,2],[2,3],[-6,3],[-4,-4],[-7,1],[-3,3],[-11,-1],[-14,6],[-8,-4],[0,-4],[-6,-5],[-15,5],[-5,-3],[-5,6],[-5,2],[-6,-1],[-11,10],[-6,1],[5,5],[-5,3],[-8,-1],[-4,1],[2,4],[-4,3],[-5,-5],[-1,4],[-5,1],[-2,6],[-4,1],[4,6],[4,3],[-4,5],[1,3],[-5,2],[-5,4],[-13,8],[-10,-5],[-2,-3],[-13,-7],[-6,-13],[-11,-5],[-23,4],[-3,2],[-5,-5],[-11,-5],[-1,-12],[-23,-7],[1,-4],[-9,-4],[-5,-7],[-3,2],[-36,1],[-4,-4],[-21,-3],[-7,1],[-2,-4],[5,-6],[19,-11],[5,1],[10,-4],[9,-7],[8,0],[3,-10],[-19,-6],[-3,4],[-10,0],[-9,-3],[-15,3],[-3,3],[-15,1],[-9,2],[-2,3],[-22,-4],[-8,2],[-1,-2],[-15,-7],[-3,0],[-19,-9],[-5,3],[-4,-1],[-19,-1],[1,4],[-11,2],[-1,-2],[-11,2],[-10,6],[-7,7],[2,8],[9,10],[-11,4],[-8,-2],[2,-3],[-18,-13],[-3,-1],[-2,-11],[-4,-1],[-6,-11],[-11,-8],[-7,-1],[-11,-9],[-3,-5],[-15,2],[-1,2],[3,4],[2,11],[-14,9],[-6,3],[-20,1],[-7,-1],[-4,10],[-12,6],[-9,-3],[-13,6],[-7,7],[-8,0],[-7,3],[-9,7],[-5,9],[-7,4],[-27,1],[-7,1],[-1,-2],[-13,2],[-15,-1],[-9,-4],[-6,4],[-6,1],[-4,-2],[-2,4],[-8,-5],[-1,-6],[-11,-6],[3,-5],[0,-5],[-15,-9],[-1,-3],[-17,3],[-3,6],[-8,6],[-7,7],[-9,2],[-7,6],[-10,3],[-1,2],[-9,6],[-1,4],[3,7],[-11,10],[-10,5],[-12,10],[7,11],[-8,6],[-15,6],[-6,-2],[-13,1],[-2,-3],[-12,4],[-10,4],[-6,12],[-5,1],[-21,16],[-11,1],[-3,2],[-13,-3],[-23,6],[-11,8],[-16,-3],[-13,-5],[-14,-6],[-15,13],[-3,9],[-6,6],[-5,3],[-7,-3],[-2,1],[-4,8],[-6,4],[-5,-2],[-9,10],[-9,3],[-5,6],[1,5],[-24,10],[-13,0],[-12,-3],[-5,-3],[-6,5],[-9,4],[-21,13],[-11,1],[-7,6],[-11,2],[-12,8],[-9,4],[-4,6],[-2,1],[2,7],[9,8],[-1,3],[4,6],[-2,1],[-5,11],[-4,-1],[-19,6],[-2,6],[2,5],[-6,2],[-13,2],[-9,-1],[-15,3],[-7,-3],[-10,4],[-26,-3],[-1,1],[-33,-2],[-7,-2],[-2,-11],[-6,-2],[-8,-5],[-11,-10],[-11,-13],[-11,-9],[-3,-1],[-4,-5],[2,-9],[-10,-1],[0,-8],[-11,-1],[-4,3],[-8,1],[-9,-5],[-3,-4],[-12,-5],[-1,-1]],[[4848,8018],[4,-1],[-3,-4],[-8,-3],[-4,1],[-15,3],[-13,5],[-21,1],[-8,2],[-6,4],[12,-1],[8,9],[5,4],[1,5],[-3,1],[-5,7],[-8,4],[0,5],[-8,-1],[-20,-1],[1,-3],[-10,-6],[-3,-4],[-5,-3],[-3,-7],[15,8],[1,-3],[5,-2],[-4,-6],[-5,-3],[-2,-8],[-7,-7],[-6,-8],[-7,-15],[-2,-15],[-3,-11],[-2,-38],[3,-9],[6,-2],[-1,-13],[2,-1],[2,-8],[7,-12],[7,-10],[2,-1],[3,-15],[1,-8],[3,0],[0,-28],[2,-9],[-2,-5],[-2,-10],[0,-19],[2,-9],[8,-14],[-5,-1],[1,-12],[4,-16],[2,-2],[4,-10],[3,-10],[10,-19],[2,-10],[2,-5],[4,-21],[2,-4],[6,-21],[5,-6],[4,-9],[1,-8],[2,-4],[3,-16],[3,-6],[9,-23],[5,-7],[4,-8],[12,-17],[9,-8],[2,2],[14,-18],[5,-5],[9,-7],[5,-5],[12,-10],[9,-8],[3,-1],[10,-10],[6,-5],[10,-11],[8,-5],[3,-4],[10,-8],[4,-1],[11,-9],[9,-4],[2,-2],[12,-2],[2,3],[6,-5],[16,-18],[7,-6],[0,0],[14,-13],[4,-2],[11,-10],[5,-2],[14,-10],[1,-2],[15,-10],[13,-7],[11,-5],[17,-4],[11,-1],[0,1],[3,0]],[[4663,7168],[-1,0],[-2,-1],[4,-5],[-4,-6],[4,-5],[3,-1],[5,-5],[5,-8],[7,-2],[0,3],[14,9],[15,3],[8,0],[-5,9],[1,3],[-6,6],[-6,1],[-4,-6],[-13,2],[0,1],[-14,-1],[-7,6],[-4,-3]],[[2243,7941],[6,-2],[-10,-1],[4,3]],[[2247,7930],[0,0]],[[4755,7131],[0,-1],[18,-7],[10,0],[9,-4],[6,-11],[8,-5],[10,-10],[7,-2],[6,-6],[-2,-5],[-10,-4],[-1,2],[-15,4],[-7,-1],[4,-21],[2,-4],[-6,-4],[-2,2],[-10,1],[1,6],[4,9],[-5,3],[-2,18],[1,2],[-4,8],[-4,-2],[-3,-6],[3,-7],[0,-15],[-5,-3],[-1,-6],[-5,2],[2,-3],[-7,-2],[-4,-4],[-5,-1],[-11,3],[-4,4],[-5,-5],[-5,0],[5,-6],[-2,-3],[-7,-4],[-5,-4],[-1,-3],[-10,-4],[-11,1],[-7,-1],[-4,-6],[-8,-4],[1,-3],[8,-6],[7,-2],[4,-4],[4,-9]],[[4697,6998],[-9,-4],[-6,-7],[-4,-10],[-6,-2],[-3,-7],[-9,-9],[-7,-5],[-3,-8],[-4,-19],[-8,3],[-1,3],[-6,-1],[-1,-3],[-6,1],[-6,-1],[-4,-3],[-5,4],[-6,-3],[-6,-5],[-4,-10],[1,-9],[8,-3],[1,1],[7,-4],[7,-2],[4,-4],[4,2],[1,-5],[10,-1],[2,-10],[-8,-2],[-4,4],[-4,-5],[-11,-4],[-5,-1],[-6,-7],[1,-5],[-5,-2],[-5,-6],[-6,-4],[-11,3],[-9,1],[-4,-7],[-7,-4],[-9,-1],[-4,-3],[-2,-6],[5,-12],[18,-2],[16,6],[4,-7],[-4,-6],[0,-17],[4,-4],[14,1],[8,5],[16,-10],[6,-7],[5,-18],[-2,-11],[2,-1],[-8,-8],[6,-14],[11,-4],[9,-1],[4,-3],[13,-1],[4,8],[3,3],[-2,2],[4,10],[6,5],[6,-4],[2,-4],[13,-5],[3,-4],[-7,-3],[-2,-5],[-10,-4],[-12,-6],[-17,-4],[-12,-10],[-12,-4],[-15,2],[-14,-12],[-11,-4],[-28,10],[-8,4],[-12,-5],[1,-5],[7,-10],[-6,-3],[0,-10],[-5,-9],[-4,-3],[0,-6],[2,-1],[-4,-5],[-18,-6],[-5,0],[-5,2],[-21,-13],[-16,-5],[-14,-7],[-4,-4],[-4,-15],[-6,-2],[8,-19],[8,-15],[-7,-5],[1,-8],[2,1],[11,-19],[8,2],[1,8],[10,3],[10,-4],[4,-4],[3,-10],[-5,-4],[-4,-19],[-6,-10],[-3,-8],[-5,-18],[-5,-1],[1,-2],[-1,-13],[4,-4],[-1,-5],[-7,-10],[-4,-1],[-3,-29],[7,1],[10,-8],[2,-3],[0,-18],[-8,-1],[-5,2],[-8,-3],[-3,1],[-4,-3],[-2,-6],[-10,-9],[-13,-4],[-2,-6],[2,-2]],[[4429,6329],[-5,-1],[-6,2],[-9,-2],[-12,1],[-8,3],[-2,-3],[-7,-5],[-7,-3],[-5,1],[-7,-3],[0,-8],[-3,-5],[-4,-12],[-3,9],[-7,1],[-3,6],[-11,4],[-2,3],[-6,-1],[1,-3],[-9,-7],[-5,-5],[-2,-11],[-4,-4],[5,-3],[13,-5],[6,-7],[7,-1],[-3,-5],[20,-5],[6,-2],[8,-6],[-12,-28],[-3,-1],[-2,-5],[-19,0],[5,-1],[3,-13],[-2,-8],[1,-7],[14,-4],[4,-4],[3,-9],[-4,-6],[-14,-5],[-5,-4],[-20,2],[-8,1],[2,-12],[-9,-9],[-5,-2],[1,-5],[-8,0],[-7,4],[-7,-1],[-10,-8],[-10,-2],[-6,-3],[5,-8],[-3,-4],[-4,-2],[-18,-3],[-10,-8],[-8,-1],[-7,4],[-7,-8],[-4,-2],[-3,7],[-3,2],[-11,4],[-11,-4],[-1,-3],[2,-10],[5,-1],[-5,-2],[1,-3],[6,-4],[-8,0],[-16,-23],[7,-5],[5,2],[10,-5],[-2,-5],[3,-4],[18,-2],[6,-4],[0,-4],[3,-10],[-5,-5],[5,-7],[-4,-5],[3,-7],[0,-7],[-37,1],[-8,2],[-3,-1],[-11,1],[-1,2],[-21,-7],[-14,3],[-11,0],[-3,2],[-6,-4],[0,-14],[-4,-5],[-4,-1],[-12,-7],[-2,-5],[-5,-6],[5,-2],[-3,-6]],[[4056,5938],[-2,-3],[-6,1],[-32,9],[-9,3],[-14,2],[0,1],[-42,6],[-8,1],[-20,3],[-1,-2],[-9,1],[-2,8],[-25,3],[-7,-1],[-14,-3],[-12,-5],[-4,-4],[5,-6],[1,-9],[-16,-5],[-4,-7],[0,-8],[-6,-1],[-15,4],[-9,-5],[-3,3],[1,5],[-7,6],[-9,2],[-6,5],[-8,4],[-4,-1],[-12,3],[0,5],[-7,6],[3,4],[-2,6],[0,8],[5,2],[5,12],[3,4],[9,-3],[0,-4],[5,-4],[11,3],[4,-4],[9,3],[8,-3],[11,8],[3,4],[8,15],[6,37],[-1,7],[-4,9],[-5,9],[-5,5],[-9,7],[-5,10],[-13,0],[-6,-4],[-2,-6],[-10,9],[-5,5],[1,2],[-6,7],[-2,4],[1,5],[-3,3],[0,6],[-4,6],[-8,1],[-7,6],[5,3],[0,6],[-2,2],[-12,8],[-9,4],[-13,4],[-25,9],[-4,3],[-5,15],[-4,5],[-2,7],[-8,14],[-5,7],[-21,17],[-35,15],[-3,2],[-97,19],[-10,-1],[-7,6],[-8,3],[-30,16],[5,2],[2,3],[9,-3],[9,3],[1,3],[8,14],[4,16],[-4,3],[3,2],[-6,5],[3,7],[-2,2],[7,6],[6,6],[1,5],[-6,12],[0,0],[-4,5],[-6,5],[-25,13],[-6,1],[-9,5],[-5,1],[-21,8],[-9,2],[-14,2],[-25,1],[-12,1],[0,0],[-22,0],[-12,-1],[-13,-2],[-12,-6],[4,-1],[-1,-4],[-7,-3],[1,-4],[4,-3],[-3,-5],[-9,-1],[-10,2],[-13,9],[-9,-1],[3,3],[-7,13],[-4,12],[-1,7],[2,6],[-3,9],[4,1],[6,4],[4,-1],[7,-3],[7,9],[-6,4],[1,6],[8,4],[6,20],[1,1],[5,21],[2,15],[1,25],[1,43],[-1,12],[-1,9],[-2,13],[-5,26],[-3,10],[-4,10],[-8,18],[-6,11],[-2,1],[-14,11],[-4,5],[-13,7],[-8,10],[1,12],[-1,3],[-6,8],[-3,-1],[-5,11],[2,5],[-2,1],[-2,6],[-5,1],[1,2],[-4,12],[-6,5],[-13,-2],[3,4],[-4,4],[-3,9],[0,5],[-6,1],[-6,9],[-2,6],[-5,2],[-1,3],[-12,9],[-11,3],[-4,-1],[-11,8],[2,9],[-3,1],[-4,5],[-3,5],[-1,10],[-5,10],[-4,6],[-9,7],[2,6],[-5,3],[5,0],[1,5],[-6,1],[7,10],[5,3],[6,7],[-6,-1],[-2,5],[-2,-1],[1,-10],[-7,-4],[-1,6],[5,3],[-2,7],[-5,8],[-2,7],[-3,31],[-1,7],[-2,2],[-1,7],[-6,13],[-6,8],[7,2],[5,4],[-3,21],[-3,9],[3,5],[-2,6],[1,6],[-2,10],[-2,9],[-8,35],[-3,10],[-8,18],[-12,22],[4,-4],[-3,18],[-2,1],[-18,26],[-3,5],[-6,6],[-1,3],[-14,14],[-1,2],[-9,7],[-15,15],[-7,6],[-13,8],[-13,10],[-2,3],[-6,2],[-8,7],[-12,8],[-7,2],[-7,6],[-12,4],[-5,0],[0,2],[-9,0],[-3,3],[-11,6]],[[3151,6229],[0,1],[2,1],[-5,5],[2,4],[-6,-1],[0,9],[-6,5],[-3,5],[1,5],[-15,5],[-18,-3],[3,-10],[3,-3],[-7,-8],[-2,5],[0,6],[-2,8],[-2,1],[-10,-3],[-5,-1],[-3,-7],[1,-8],[-6,-2],[0,2],[-11,0],[-5,7],[-6,-2],[-7,3],[-5,3],[-6,-4],[4,-2],[-4,-7],[4,-1],[1,-6],[-2,-1],[-22,4],[-5,4],[-16,-1],[-1,3],[-6,-3],[-19,-2],[-3,1],[4,-6],[-8,4],[-10,1],[-1,3],[-11,5],[-6,8],[-6,8],[-3,17],[-1,4],[7,10],[4,0],[5,4],[0,3],[15,5],[1,-2],[20,0],[5,-1],[6,1],[6,3],[14,-4],[4,1],[7,-9],[8,-5],[11,-1],[3,-2],[7,6],[0,5],[11,-1],[6,3],[-6,8],[7,1],[4,4],[-5,6],[-7,2],[1,3],[13,-7],[9,1],[4,-4],[12,0],[7,2],[2,-3],[14,-1],[-6,-3],[-4,0],[0,-3],[-5,1],[1,-6],[12,-2],[15,-4],[6,2],[0,2],[5,9],[-4,4],[12,9],[4,-1],[7,6],[0,4],[3,12],[5,6],[7,3],[0,5],[6,5],[11,-5],[-3,-6],[4,-3],[8,-4],[7,-9],[-7,-11],[-3,-3],[-2,-7],[1,-11],[6,-5],[-6,-6],[4,-14],[-1,-1],[-11,-1],[-4,-5],[-8,1],[-9,-6],[-2,1],[-6,-4],[14,-1],[6,-2],[-3,-7],[4,-3],[15,-5],[3,-4],[2,-10],[-3,-8],[-10,-4],[-5,7],[-4,1],[-6,-2],[-4,-4],[-4,4],[-8,0],[-5,4],[-1,0]],[[3578,5910],[0,1]],[[3578,5911],[-14,3],[-2,9],[4,4],[5,-3],[5,1],[2,11],[-3,3],[0,4],[8,2],[5,-5],[7,0],[3,-2],[5,-11],[6,0],[-1,-3],[6,-9],[-4,0],[1,-7],[6,-7],[1,-9],[-7,-5],[-2,-5],[-2,3],[-12,5],[-8,11],[-7,3],[1,3],[-3,3]],[[2666,6498],[0,1]],[[2666,6499],[0,5],[3,13],[10,7],[3,6],[6,4],[5,-2],[5,-4],[-2,-8],[6,-6],[3,2],[3,-7],[-4,-9],[-8,-6],[-5,-4],[0,-3],[-5,-2],[-3,-3],[-3,-7],[-5,0],[-8,5],[-3,8],[-4,2],[4,3],[2,5]],[[4673,7165],[15,1],[9,-3],[12,6],[4,-2],[4,-5],[-1,-3],[6,-11],[-9,2],[-4,-2],[-13,-1],[-6,-6],[-6,-3],[1,-2],[-8,1],[-5,2],[-5,11],[-7,5],[4,3],[-4,9],[5,4],[8,-6]],[[3099,5912],[8,-5],[0,-2],[6,-1],[-3,-4],[4,-7],[-2,-3],[3,-2],[-4,-4],[-7,2],[-1,-7],[-2,2],[-8,-1],[-4,3],[-1,-2],[-5,1],[-3,3],[-2,10],[4,3],[-1,8],[6,5],[6,-1],[6,2]],[[2902,6143],[7,-2],[-1,-12],[6,-12],[5,0],[2,-4],[-4,-4],[0,-5],[-4,-1],[1,-3],[-5,-2],[-30,6],[-3,1],[-2,4],[4,5],[5,4],[9,-3],[1,2],[11,12],[1,5],[-3,9]],[[3768,5836],[5,-5],[0,-5],[-6,3],[-5,-8],[9,-3],[-2,-4],[-11,5],[0,6],[-4,1],[1,6],[11,1],[2,2],[0,1]],[[2753,6850],[6,-4],[-2,-9],[-4,-1],[-2,-2],[-9,2],[2,10],[9,2],[0,2]],[[3575,6108],[0,0]],[[3297,6351],[0,0]],[[3236,6356],[0,0]],[[3852,5939],[0,0]],[[3588,6096],[0,0]],[[3149,6228],[1,0]],[[3150,6228],[-1,0]],[[2925,6113],[0,0]],[[3434,6297],[0,0]],[[3151,6229],[-1,-1]],[[3149,6228],[2,1]],[[3745,5970],[0,0]],[[2666,6498],[0,1]],[[3786,5935],[0,0]],[[3113,6323],[0,0]],[[3593,6089],[0,0]],[[3020,6943],[0,0]],[[3578,5910],[0,1]],[[5517,6241],[0,-2],[-2,-9],[3,-9],[-4,-3],[-4,-8],[-4,-2],[-3,-6],[7,-4],[1,-3],[-8,-4],[1,-8],[-13,-10],[-12,-7],[-13,12],[-10,-2],[1,-6],[-8,-5],[1,-2],[-15,-6],[-24,-10],[-6,-1],[-17,4],[-4,9],[-7,1],[-3,-4],[-4,-2],[-2,-6],[2,-4],[-9,-5],[-10,2],[-1,-1],[-10,1],[-15,2],[-8,-1],[-15,-5],[-4,-8],[-9,0],[-6,7],[-7,1],[-6,3],[-13,-6],[-1,-8],[4,-3],[2,-7],[7,-9],[-2,-12],[-17,-2],[-10,-4],[-8,-4],[-2,1],[-5,-6],[-15,-7],[-5,-5],[-8,3],[-21,-2],[-9,-2],[-3,-7],[3,-2],[0,-7],[-18,0],[-6,-3],[-21,-5],[-7,-2],[4,-10],[7,-6],[14,-10],[-9,-4],[-5,-5],[-12,3],[-6,-3],[0,-2],[-7,-5],[-1,-3],[-16,-6],[-9,-1],[-12,2],[1,4],[-8,5],[-1,6],[2,4],[-3,3],[-20,-3],[3,-3],[1,-9],[-4,-10],[-3,-11],[3,-5],[-2,-7],[-6,-4],[1,-5],[-8,-1],[-11,-8],[-20,-7],[-1,-3],[-7,2],[-4,-2],[-1,-3],[-10,-6],[-5,-5],[-8,4],[-4,8],[1,2],[-1,12],[4,3],[-14,4],[-6,-4],[-4,0],[-6,5],[-10,-3],[-16,-3],[-5,2],[8,2],[3,2],[2,7],[-1,5],[7,5],[-7,5],[-7,-5],[-8,3],[-17,-5],[-4,1],[-3,4],[5,11],[-4,2],[1,5],[-2,5],[6,4],[8,-1],[-2,6],[-12,3],[0,10],[3,2],[10,5],[-4,3],[-5,6],[-6,1],[-4,-1],[-2,2],[-3,-2],[-8,1],[-3,-2],[1,-6],[-7,-3],[-4,0],[-8,-5],[-4,-4],[-8,-1],[-17,16],[-6,2],[-6,-6],[-14,-1],[-9,5],[8,2],[4,-3],[3,5],[-9,9],[-6,-1],[1,3],[-9,-3],[-4,8],[12,2],[1,1],[-12,3],[-8,8],[6,4],[3,4],[1,10],[-3,6],[-7,-1],[-5,4],[-16,5],[-3,3],[3,3],[-5,7],[4,3],[2,4],[-3,2],[3,3],[2,-2],[-1,8],[-9,2],[-3,5],[8,8],[3,5],[-3,3],[-10,2],[0,8],[-10,5],[-5,6],[-5,4],[-5,2],[-7,-1],[-2,3],[-11,7],[-8,3],[-13,-8],[0,-6],[-6,-4],[-7,2],[-1,2],[-5,-5],[-6,-5],[-8,8],[-2,5],[-4,-1],[-7,-7],[-18,1],[-36,-11],[-23,18],[-25,11],[-24,4],[-3,2],[3,2],[4,8],[-4,2],[-15,6],[4,5],[-1,2],[11,5],[2,6],[10,0],[4,6],[6,1],[-2,2],[4,2],[2,10],[7,3],[-4,9],[-12,3],[-4,5],[-8,3],[-7,-1],[-8,2],[-6,6],[1,5],[-4,3],[-3,12],[-6,4],[-5,16],[-7,3]],[[4697,6998],[6,-12],[3,-3],[10,2],[7,-4],[10,-2],[13,4],[3,-1],[10,2],[4,-8],[6,0],[4,2],[4,5],[1,5],[5,3],[8,-1],[3,4],[3,0],[5,4],[10,-3],[6,8],[7,-5],[3,1],[-7,-9],[3,-7],[2,-6],[5,-2],[-6,-7],[-4,-1],[-2,-5],[-5,-6],[-6,-4],[-3,-4],[-9,1],[-4,-2],[-7,1],[-5,-9],[9,-5],[2,-7],[17,-7],[4,1],[2,4],[8,3],[4,3],[3,-3],[14,-7],[-4,-5],[5,-6],[9,0],[0,4],[4,8],[10,10],[6,0],[12,3],[4,-6],[4,-1],[9,-13],[4,3],[10,-2],[-2,3],[4,2],[1,4],[5,1],[3,-4],[4,1],[21,-13],[5,-11],[10,-8],[16,-16],[9,-8],[6,-4],[6,-6],[6,-3],[14,-4],[11,-8],[5,-5],[1,-3],[-4,-2],[1,-2],[6,5],[4,1],[4,7],[8,2],[3,-2],[5,3],[6,2],[5,-3],[22,-5],[11,-2],[4,8],[2,10],[6,6],[9,6],[0,3],[16,-1],[2,-3],[16,-2],[3,-5],[-9,-5],[1,-7],[5,-3],[-6,0],[-1,-6],[11,-9],[0,-5],[-7,-8],[-6,-4],[-10,-1],[-4,-5],[6,-3],[-3,-6],[6,-4],[2,-9],[10,-3],[1,-8],[9,-5],[-1,-4],[9,-4],[1,-7],[4,-7],[3,-20],[-2,-6],[-7,-2],[-2,-3],[13,-11],[17,-4],[5,-8],[-3,-3],[-1,-7],[3,-4],[0,-7],[5,-3],[1,-10],[2,-2],[21,-5],[4,-19],[-3,-1],[-2,-18],[-5,-2],[-5,-9],[-14,-4],[-4,-2],[1,-4],[6,-5],[5,-12],[13,4],[14,-2],[5,-2],[2,-4],[1,-16],[6,-5],[4,1],[-2,-16],[-2,-10],[-2,-3],[2,-11],[6,-4],[5,-6],[-1,-2],[1,-11],[-6,4],[-8,-14],[10,-15],[6,-4],[-2,-7],[-4,-2],[-3,-5],[-1,-5],[14,-7],[4,-3],[3,2],[7,-2],[4,-7],[6,-3],[8,-3],[-1,-7],[14,-1],[7,-1],[2,-4],[-3,-4],[-4,-16],[1,-7],[5,-5],[-2,-8],[2,-6],[12,0],[4,12],[7,10],[-4,3],[-5,1],[5,3],[3,9],[3,-7],[4,-3],[23,4],[4,6],[11,5],[8,-9],[12,-8],[8,-3],[16,-5],[7,-7],[2,-5],[3,-1],[9,-11],[5,-4],[4,-9],[9,-11],[8,-3],[11,3],[4,2],[5,-2],[9,5],[7,-1],[5,1],[7,8],[10,4],[2,11],[7,-7],[0,-6],[6,-10],[-1,-3],[5,-13],[7,-6],[-3,-15],[-7,-3],[4,-3],[-5,-2],[-2,-10],[-3,-2],[1,-7],[-6,-5],[-2,10],[-9,-2],[-2,2],[-8,-5],[-5,-3],[-6,1],[-6,-5],[5,-4],[-3,-9],[-6,-4],[1,-5]],[[4874,6996],[2,0],[6,-8],[-2,-7],[-11,6],[-8,2],[4,5],[9,2]],[[6128,6380],[-13,0],[-11,-3],[-9,-1],[-7,-2],[-25,-3],[-14,-3],[-8,-4],[-1,-3],[-7,-4],[-10,-2],[-10,-4],[-19,-2],[-19,-3],[-9,1],[-4,-3],[-11,-4],[4,-5],[-3,-6],[-4,-2],[-2,-9],[-11,-3],[-5,-3],[-12,-4],[-2,-3],[-8,-2],[-13,-1],[-10,4],[-4,7],[-7,-5],[-10,-4],[-16,1],[-2,-4],[-9,-2],[-1,3],[-12,0],[-8,11],[-11,-4],[1,-2],[-3,-12],[-10,-4],[-4,-6],[-4,-2],[-5,-9],[1,-12],[-2,-5],[3,-2],[-12,-13],[-6,-2],[-17,3],[-10,-1],[-9,-6],[-3,-11],[0,-6],[3,-5],[-2,-2],[-10,6],[-10,-6],[-1,-2],[-20,-9],[-13,6],[-10,0],[-4,1]],[[5658,6208],[0,0]],[[5658,6208],[-2,0],[-15,8],[-8,7],[-10,10],[-1,2],[-16,3],[-3,2],[-4,7],[-19,0],[-4,-11],[-4,-5],[-4,1],[-15,3],[-4,2],[-17,2],[-8,4],[-7,-2]],[[4867,7247],[7,3],[7,-1],[8,3],[6,-8],[11,-2],[26,15],[0,3]],[[4932,7260],[5,0],[12,-11],[12,-3],[12,-8],[-5,-7],[-5,-6],[9,-9],[13,3],[5,2],[2,11],[6,2],[11,-1],[4,1],[0,-6],[2,-7],[-3,-4],[12,-3],[0,-6],[-2,-4],[3,-4],[10,1],[2,-4],[-7,-4],[1,-7],[8,-3],[8,-4],[14,5],[7,-2],[3,3],[6,-4],[14,5],[-3,1],[1,15],[1,4],[15,5],[29,10],[-3,4],[-7,5],[3,9],[8,4],[-5,12],[-1,13],[4,3],[12,16],[3,7],[0,4],[4,4],[-4,4],[0,1]],[[5148,7307],[10,-3],[31,-1],[20,-9],[14,-6],[22,-9],[16,-8],[5,-4],[6,-1],[6,2],[-3,1],[2,-8],[2,6],[6,-5],[12,-7],[3,-4],[7,-4],[3,-4],[7,-4],[2,-3],[5,-2],[16,-12],[4,-4],[12,-6],[5,-4],[9,-3],[6,2],[2,-5],[13,-9],[10,-4],[11,-7],[13,-12],[5,-3],[23,-18],[9,-5],[9,-7],[6,-3],[8,-6],[13,-8],[5,-1],[20,-14],[4,-4],[8,-5],[6,-2],[2,-4],[11,-7],[22,-13],[3,-3],[14,-7],[7,-5],[16,-8],[2,0],[23,-11],[2,0],[12,-6],[10,-2],[2,-2],[7,0],[9,-4],[8,-7],[4,-2],[25,-10],[9,-3],[18,-4],[16,-2],[10,6],[-1,4],[5,3],[3,-5],[4,3],[0,5],[-2,0],[2,5],[4,-5],[14,-3],[5,-6],[9,-5],[8,-10],[9,-7],[1,-8],[6,-8],[6,-4],[8,-2],[3,2],[9,-6],[11,-5],[8,-11],[-5,-5],[-1,-4],[3,-13],[2,-5],[-3,-5],[11,-16],[7,-13],[6,-9],[5,-12],[3,-3],[8,-15],[1,0],[4,-10],[8,-22],[10,-19],[3,-10],[2,-2],[5,-13],[7,-11],[3,-4],[12,-7],[0,-3],[5,-10],[8,-13],[7,-15],[8,-12],[0,-2],[7,-9],[3,-7],[8,-25],[6,-13],[5,-11],[6,-7],[8,-20],[6,-10],[2,-1],[4,-10],[6,-9],[0,-2],[5,-8],[-1,-12],[1,-5],[2,-10],[2,-4],[7,-27],[1,-6],[2,-2],[3,-12],[2,-2],[1,-8],[5,-11],[2,-11],[5,-8],[4,-3],[3,3],[-5,-7],[10,-21],[4,-7],[2,-1],[2,-8],[6,-10]],[[4864,6991],[-1,0],[-2,-2],[8,-2],[11,-6],[2,7],[-3,6],[-12,2],[-3,-5]],[[5658,6208],[0,-1]],[[5658,6207],[-6,-17],[-3,-2],[11,-9],[1,-4],[4,-1],[5,-6],[7,2],[8,-4],[11,0],[5,-3],[-1,-12],[-5,-1],[-1,-3],[-5,-2],[2,-7],[-5,-3],[-1,-10],[1,-4],[3,-2],[-4,-4],[-5,-1],[-1,-4],[-14,0],[-16,-3],[-6,-2],[-4,3],[-10,1],[-10,-6],[-12,-1],[-4,-2],[-1,3],[-10,9],[-21,-1],[-8,-8],[-12,5],[-9,3],[-1,2],[-5,-2],[-5,1],[-13,4],[1,-9],[-7,-5],[-8,-4],[2,-17],[-5,0],[-4,-8],[-8,2],[4,-9],[2,-9],[11,-5],[1,-5],[-3,-14],[-2,-3],[6,-8],[-19,-13],[-9,-2],[-6,1],[-19,-16],[9,-3],[6,-6],[6,-3],[12,-14],[24,-9],[5,-3],[-1,-2],[5,-7],[-4,-7],[-17,-10],[-14,-11],[4,-3],[12,-4],[7,-5],[5,-7],[9,-4],[4,1],[21,-11],[1,-9],[-1,-2],[1,-13],[11,-19],[13,-3],[12,-9],[4,-5],[-1,-5],[6,-5],[13,-6],[25,-5],[8,-2],[4,-5],[-7,-7],[5,-5],[1,-3],[10,-6],[7,0],[3,-3],[14,-7],[-16,-2],[-4,-3],[-12,1],[11,-8],[-7,-2],[-10,2],[-10,-5],[4,-5],[-4,-2],[-5,1],[-4,-4],[-6,-11],[-21,-4],[-2,5],[-11,-1],[-10,-7],[-13,0],[-2,4],[-10,9],[-8,1],[-9,4],[-6,7],[-10,1],[-6,-6],[-17,5],[-2,3],[-17,7],[-10,7],[-10,-2],[-17,2],[-3,-3],[6,-13],[-6,-8],[-2,-7],[-6,-2],[-3,-6],[-22,-9],[-2,-5],[-12,4],[0,-7],[2,-5],[-3,-5],[-4,-3],[1,-2],[-6,-18],[2,-5],[4,-5],[1,-11],[9,-6],[5,-5],[3,-1],[6,-17],[6,-1],[5,-3],[9,-2],[20,-1],[-5,10],[2,6],[11,-2],[6,-4],[13,-2],[9,-3],[1,-2],[13,-9],[14,-4],[0,-1],[18,-8],[14,1],[1,-2],[13,-3],[5,-7],[7,-3],[17,-3],[2,-4],[6,-4],[4,-1],[2,-4],[11,-2],[1,5],[14,-5],[7,-3],[10,-11],[1,-5],[13,-5],[4,4],[8,-1],[6,-8],[3,-1],[6,-11],[-6,-11],[-9,-8],[-7,-9],[8,-9],[-2,-3],[4,-4],[-2,-3],[2,-9],[-2,-5],[6,-4],[3,-6],[7,-2],[5,3],[3,11],[11,4],[7,-2],[8,-5],[14,-3],[9,-3],[6,-6],[1,-4],[17,-7],[21,-2],[1,-5],[6,-9],[5,-4],[-1,-6],[9,-2],[8,-4],[7,-4],[10,1],[7,-6],[4,-1],[6,7],[17,6],[7,4],[17,7],[11,9],[-2,7],[-3,2],[7,6],[13,1],[13,-3],[6,-3],[2,-6],[6,-5],[9,-3],[11,9],[12,-10],[9,-4],[5,-6],[2,-13],[9,-3],[3,-7],[8,1],[10,-5],[6,0],[5,5],[6,-1],[2,4],[5,1],[7,-11],[25,-4],[4,-5],[21,-2],[8,6],[4,-2],[4,-9],[3,-4],[10,1],[2,-1],[10,-20],[9,-6]],[[6149,5340],[1,-3],[12,-4],[7,-4],[7,-8],[7,-6],[5,-2],[5,-14],[2,-14],[13,-13],[-2,-13],[1,-5],[-11,-8],[1,-4],[4,-1],[1,-6],[12,-2],[4,-2],[2,-4],[-2,-3],[-1,-8],[-8,-2],[-5,-5],[13,-8],[4,-1],[-9,-4],[-2,-5],[-15,-1],[-8,-7],[-7,-4],[-4,-6],[8,-8],[7,-1],[-4,-7],[-4,-2],[-3,-9]],[[6180,5146],[-4,1],[-12,-4],[-7,-5],[-5,-2],[-8,-7],[-12,-5],[-12,-8],[-4,-5],[-2,4],[-7,-2],[-7,2],[-9,-2],[1,-2],[-10,-4],[1,-7],[10,-5],[2,-2],[3,3],[7,-3],[-1,-2],[-4,2],[-6,-6],[5,-10],[-7,-6],[-3,-12],[6,-1],[-4,-2],[0,-9],[3,-2],[2,-5],[-4,-1],[5,-10],[6,-4],[7,-10],[-5,-7],[1,-5],[-5,-5],[-13,2],[-6,-6],[-6,5],[-4,-5],[-5,1],[-6,-6],[-8,-1],[4,-6],[-5,-5],[7,0],[3,-3],[-1,-4],[-4,4],[-1,-5],[3,-4],[-4,-3],[-4,3],[-6,-8],[-4,5],[-5,-4],[-2,3],[-12,-3],[-6,-3],[-7,2],[-3,-2],[-2,-8],[-5,-7],[-1,-1]],[[5998,4939],[-5,3],[-10,8],[-17,10],[-11,5],[-7,1],[-3,-5],[-3,2],[-5,-4],[-5,-2],[-13,5],[-3,4],[-6,2],[-11,3],[-20,1],[-6,-5],[-3,1],[-8,-5],[-6,0],[-12,-5],[-6,-6],[-3,-9],[3,-4],[1,-7],[5,0],[4,-4],[6,-2],[-8,0],[-4,-3],[-6,0],[0,4],[-12,2],[-5,-4],[-6,3],[1,3],[-7,0],[0,3],[-13,7],[-6,0],[0,-3],[-7,4],[-7,4],[-8,6],[-9,2],[-2,-2],[-20,10],[-1,2],[-13,4],[-3,3],[-22,9],[-2,2],[-13,4],[-6,3],[-13,4],[-20,5],[-41,6],[-15,-1],[-5,-2],[-1,-4],[-10,-7],[-34,2],[-9,-3],[-18,-2],[-9,-3],[-10,-5],[-11,-4],[-1,-2],[-7,-4],[-11,-5],[-7,-4],[-9,-8],[-7,-12],[-23,-2],[-10,2],[-8,2],[-5,4],[-2,7],[-3,1],[2,6],[-2,7],[-5,9],[-7,15],[-7,12],[-11,14],[-3,6],[-8,8],[-5,7],[-15,14],[-17,13],[-9,5],[-10,7],[-10,5],[-27,14],[-10,4],[-22,5],[-17,-1],[-34,3],[-7,-4],[-1,-4],[-8,6],[-22,13],[-10,7],[-13,7],[-7,3],[-21,5],[-5,1],[-10,-1],[-9,-2],[-10,-6],[1,-2],[-9,2],[-1,5],[-4,6],[-4,3],[-7,12],[-10,8],[-3,8],[-14,17],[-2,4],[-6,5],[-2,4],[-23,24],[-6,4],[-6,7],[-12,11],[-22,22],[-25,22],[-1,0],[-14,12],[-14,10],[-21,14],[-9,7],[-15,9],[-12,6],[-30,14],[-7,2],[-30,11],[0,1],[-13,3],[-11,1],[-3,2],[-1,11],[-8,12],[2,4],[0,14],[-2,1],[-4,13],[-9,20],[-4,6],[-7,15],[-4,5],[-24,35],[-16,16],[-12,8],[-13,5],[-16,3],[-10,9],[-7,2],[-4,3],[-10,2],[-9,6],[-3,6],[-10,11],[-15,8],[-31,9],[-4,8],[-6,5],[-3,-1],[-4,4],[-10,4],[-7,6],[-13,5],[-3,3],[-23,-1],[-13,-3],[-4,-3],[-5,1],[-6,-2],[-15,-2],[-11,15],[-3,9],[-6,11],[-4,2],[1,7],[-10,6],[-1,2],[-15,5],[-2,3],[12,-8],[0,4],[-6,1],[1,5],[-6,1],[-5,4],[2,3],[-4,5],[0,4],[-16,12],[-4,5],[0,8],[-8,10],[5,9],[-14,11],[-3,8],[-10,14],[0,7],[-6,10],[-7,8],[-8,4],[-3,5],[-6,6],[-7,12],[-6,4],[-6,7],[-10,7],[-7,6],[-23,10],[-2,3],[-14,8],[-4,4],[-12,7],[-14,7],[-12,5],[-11,3],[-34,14],[-15,4],[-9,3],[1,4]],[[5065,5388],[-3,4],[4,-10],[3,-2],[3,2],[-7,6]],[[4901,5524],[1,4],[-5,1],[-5,-5],[9,0]],[[5345,4691],[3,0],[5,-2],[-15,-5],[-2,-5],[-5,1],[-3,-7],[0,-6],[-4,0],[2,-6],[-2,-5],[9,0],[-8,-10],[-7,-4],[-2,8],[3,5],[-1,3],[-6,-1],[-2,2],[0,7],[4,4],[-1,2],[4,3],[-2,3],[4,2],[7,-2],[5,7],[-2,2],[9,3],[7,1]],[[5720,4578],[0,-1],[2,-3],[-1,-5],[-11,-6],[-7,-2],[11,10],[1,4],[5,3]],[[5235,4703],[0,1],[4,-2],[2,-5],[0,-10],[-9,-4],[2,3],[2,9],[-1,7],[0,1]],[[5405,4725],[2,0],[5,-7],[-6,-1],[-8,1],[-1,3],[8,4]],[[5739,4568],[1,0],[3,-1],[-1,-3],[-4,4],[1,0]],[[5361,4691],[-6,-1],[3,3],[3,-2]],[[5230,4680],[-1,0]],[[5229,4680],[1,0]],[[5229,4679],[1,1]],[[5230,4680],[-1,-1]],[[5232,4699],[0,0]],[[5234,4698],[0,0]],[[5329,4648],[0,0]],[[5229,4680],[0,-1]],[[5229,4679],[0,1]],[[6854,5669],[-7,-6],[-6,-14],[-3,-2],[18,-8],[0,-2],[-8,-8],[-16,-7],[-6,-6],[-18,-5],[-7,-7],[-5,-8],[-4,-2],[-5,-7],[0,-2],[-8,-4],[-14,-15],[-7,-6],[1,-6],[-2,-17],[-9,-5],[-5,-6],[-5,-4],[-14,-3],[-8,-4],[-3,-8],[-11,-17],[0,-7],[-3,-4],[-7,-3],[-13,-19],[-2,-4],[-10,-1],[-13,-8],[-5,-5],[-5,-13],[-7,-2],[-4,-4],[-10,-3],[-7,-6],[-4,-7],[-7,-1],[-25,4],[3,5],[7,7],[-6,6],[-4,8],[-3,22],[-3,5],[1,5],[-3,6],[-12,1],[-18,20],[-6,2],[-7,3],[-10,-4],[-4,2],[-1,10],[-9,-2],[-3,-2],[2,-7],[-5,-6],[-19,14],[-8,16],[-8,-1],[-14,6],[-7,1],[-5,8],[-6,-1],[-2,-4],[-7,-8],[-3,1],[-9,-4],[-9,-10],[-8,-2],[-6,-3],[2,-5],[-6,-4],[-1,-5],[-4,-4],[-11,-2],[-6,-9],[-7,3],[0,3],[-21,-8],[-2,2],[-2,-6],[-7,-4],[0,-3],[5,-12],[5,3],[4,-5],[5,-14],[-2,-6],[2,-7],[4,-4],[17,-1],[5,-5],[-7,-9],[1,-7],[-16,3],[-5,12],[-7,-8],[-2,-8],[-17,-1],[-4,-3],[-3,2],[-8,1],[-5,-9],[7,-5],[-5,-13],[-7,-5],[-3,7],[-4,3],[-5,8],[-3,8],[-12,-2],[-7,0],[-7,-10],[-5,-3],[-1,-17],[-19,0],[-3,1],[-3,-5],[1,-4],[-4,-8],[-9,2],[-5,4],[-28,4],[0,1],[-18,-2],[-6,-5]],[[6128,6380],[1,0],[2,-1],[8,-40],[3,-7],[6,-22],[3,-8],[7,-13],[8,-18],[10,-13],[3,-8],[3,-2],[2,-8],[12,-23],[5,-7],[5,-5],[3,-6],[8,-9],[3,-6],[12,-12],[3,-7],[10,-16],[5,-7],[6,-6],[14,-18],[8,-8],[5,-8],[24,-24],[6,-4],[7,-7],[7,-4],[12,-13],[3,-1],[14,-16],[5,-2],[10,-8],[5,-5],[9,-5],[5,0],[1,-3],[6,-7],[5,-2],[21,-15],[1,-2],[10,-5],[8,-5],[1,-2],[14,-7],[5,-4],[10,-4],[14,-9],[9,-3],[15,-8],[2,-2],[5,0],[10,-4],[7,-9],[8,-4],[2,-8],[7,-10],[6,-2],[-2,-3],[1,-5],[8,-6],[6,-7],[10,-7],[14,-7],[2,-3],[9,-4],[8,-8],[8,-5],[-2,-9],[7,-8],[3,-2],[12,-6],[16,-6],[8,-7],[34,-15],[2,-2],[18,-7],[9,-2],[15,-4],[13,-6],[21,-5],[6,-4],[18,-2],[3,-14],[-3,-5],[2,-10],[-1,-4],[4,-4],[-1,-5],[-3,-16],[6,-7],[4,-2],[5,-5],[11,-6],[20,-8],[6,-3]],[[7155,5547],[0,0]],[[7155,5547],[0,-1]],[[7155,5546],[-2,-12],[-2,-1],[-2,-10],[1,-4],[5,-4],[-1,-6],[4,-3],[-12,-7],[-3,-11],[-3,-5],[-5,-3],[-7,0],[-2,-3],[-3,-11],[5,-5],[1,-4],[8,-7],[-2,-8],[3,-6],[-3,-6],[1,-3],[-9,-4],[-6,-16],[4,-1],[2,-6],[5,-4],[-7,-10],[4,-2],[14,-17],[6,-2],[10,-5],[5,1],[4,-2],[3,2],[4,-2],[-12,-4],[-4,-3],[-9,-4],[-12,-2],[-8,-6],[-4,-5],[1,-7],[-4,-2],[-7,9],[-4,-3],[3,-6],[-10,-5],[-8,-7],[-7,2],[-9,-2],[-6,-12],[2,-6],[-12,2],[-5,-4],[-1,-7],[2,-3],[-11,-1],[-6,1],[-6,6],[1,-3],[-9,9],[-3,2],[-14,1],[-7,5],[-5,-6],[-3,-2],[-2,-5],[-12,-12],[4,-4],[9,-2],[-4,-7],[4,-7],[-2,-3],[-2,-12],[3,-4],[-4,-10],[-6,-9],[-2,-8],[2,-2],[3,-13],[18,-2],[3,-1],[7,-8],[10,-8],[17,-11],[1,-2]],[[7045,5166],[-2,0],[-6,-5],[-13,-4],[2,-1],[-7,-5],[-14,-3],[-6,-6],[-9,-3],[-9,-2],[-17,-1],[-16,-3],[-3,-3],[-3,1],[-4,-6],[-5,-2],[1,-2],[-6,-5],[-8,-1],[-1,-2],[-17,4],[-2,3],[-19,6],[-2,5],[-8,4],[-13,2],[-6,-3],[-5,-5],[1,-5],[-2,-6],[-6,-5],[2,-3],[-7,-5],[-5,-6],[-11,-1],[-23,-5],[-5,3],[-4,5],[-12,1],[-3,-2],[-18,-7],[4,-1],[-5,-6],[-4,4],[-16,-7],[-5,-5],[-1,-5],[-6,-3],[-6,-6],[-5,1],[-4,-4],[-9,3],[-7,4],[3,1],[-1,5],[-7,5],[-1,3],[-10,3],[-11,-10],[-12,1],[-15,3],[-12,-3],[-5,6],[-9,1],[-6,14],[-4,4],[3,1],[-3,6],[-10,1],[-17,7],[-1,-1],[-14,2],[-6,2],[-9,8],[-9,-3],[-8,5],[-33,6],[-9,4],[-5,-1],[-9,1],[-9,5],[-2,3],[-9,4],[-13,3],[5,1],[-1,5],[-6,3],[-13,3],[-2,-2],[-9,0],[-5,2],[-5,10],[-18,0],[-15,1],[-10,-3],[-6,1],[-8,4],[-5,-6],[-1,-13],[-15,6],[-3,4],[-6,3],[-15,11],[-5,-10],[-3,-5],[3,-2],[-8,-2],[-1,-3],[-6,-5],[1,-2],[-7,-3],[-6,-4],[4,-6],[-6,-2],[-1,-9],[11,-10],[2,-4],[6,-4],[4,-1],[1,-6],[-3,-12],[4,-3],[5,-7],[-2,-4],[-13,3],[-9,8],[-4,0],[-12,-3],[-3,2],[-13,-4],[-8,3],[-2,6],[-6,2],[1,6],[-11,10],[-3,-1],[-8,3],[-2,3],[6,11],[0,7],[-3,2],[-21,6],[-1,2]],[[6854,5669],[1,0],[13,-4],[5,-5],[6,-2],[8,-5],[19,-8],[27,-10],[15,-6],[20,-4],[10,-2],[0,-1],[34,-5],[24,-4],[7,2],[-4,-3],[3,-11],[8,-4],[6,-1],[9,-5],[8,-8],[9,-4],[8,-5],[0,-4],[7,-3],[1,-3],[8,-5],[7,-3],[20,-6],[10,-2],[9,-1],[3,0]],[[7045,5166],[4,-4],[10,-4],[2,-6],[3,-2],[0,-10],[2,-3],[10,3],[-1,-8],[17,-5],[4,-4],[6,-3],[13,2],[5,-1],[4,-4],[0,-7],[-8,-3],[-4,-12],[6,-5],[3,-7],[-2,1],[-14,-3],[-5,-8],[-6,-2],[-5,-6],[4,-10],[3,-8],[-1,-1],[4,-12],[23,-4],[12,-8],[12,-1],[1,-9],[2,-6],[5,-2],[3,-5],[-3,-4],[11,-4],[22,1],[8,2],[1,-2],[12,2],[-2,-5],[18,-13],[8,1],[3,4],[13,0],[4,-2],[15,-15],[4,-7],[-3,-4],[-10,-2],[-3,2],[-9,-2],[-1,-11],[4,-6],[3,-2],[8,-15],[-12,-2],[-8,-4],[-9,-4],[-6,-10],[-10,-7],[2,-4],[-3,-7],[9,-9],[7,0],[4,-4],[4,2],[4,-4],[-1,-2],[8,-6],[8,-9],[4,-2],[-1,-7],[4,1],[5,-4],[6,-2],[1,-2],[5,0],[3,-5],[5,1],[5,5],[9,5],[10,-4],[4,-3],[13,-1],[10,-6],[8,-3],[14,7],[4,7],[6,5],[7,-4],[5,-2],[9,-4],[4,-1],[5,-5],[8,-4],[2,-4],[5,-2],[24,2],[0,-4],[8,-4],[12,-4],[14,-2],[8,-4],[12,-2]],[[7495,4795],[7,-14],[3,-1],[7,-8],[-4,-6],[3,-6],[4,-2],[5,-11],[-3,-7],[-1,-19],[-7,-8],[-8,-5],[-6,-7],[1,-3],[-3,-6],[-4,-10],[0,-4],[-6,-5],[-1,-6],[-9,-3],[-8,1],[-6,-5],[-25,-7],[-2,-4],[2,-1],[-2,-5],[4,-4],[-8,-6],[-8,0],[-1,3],[-9,5],[-6,-1],[-3,3],[-13,2],[-9,0],[-6,-4],[-3,2],[-8,-3],[-3,4],[-4,1],[-2,4],[-3,-2],[-8,-2],[-5,1],[0,-10],[10,1],[10,-6],[-4,-5],[3,-21],[-18,3],[-13,-2],[-4,-2],[11,-5],[15,-14],[11,0],[1,-2],[-11,-7],[-1,-3],[12,-3],[2,2],[4,-3],[-3,-8],[-3,-2],[4,-9],[5,-3],[-7,-4],[-3,-8],[3,-22],[-2,-3],[10,-7],[10,0],[9,-7],[0,-2],[6,-5],[2,-4],[13,-5],[5,-3],[4,0],[4,-6],[10,-4],[17,-2],[1,-7],[9,1],[2,-3],[0,-7],[-8,-6],[-6,-3],[-15,-4],[-2,-10],[-7,-5],[-2,-7],[-4,-3],[2,-3],[9,-2],[5,-6],[10,-4],[7,-1],[12,-5],[3,1],[8,-7],[-2,-1],[6,-7],[10,3],[5,-5],[-4,-2],[0,-3],[-4,-1],[-2,-3],[4,-2],[0,-3],[5,-10],[-2,-3],[8,-6],[-4,-5],[-4,-1],[4,-6],[6,-1],[2,-4],[-7,-6],[-5,-2],[3,-11],[17,-9],[11,-5],[6,-2],[-2,-6],[8,-8],[4,-6],[1,-3],[14,-7],[5,-4],[9,-2],[6,-3],[4,-6],[4,-1],[9,-9],[8,-11],[7,5],[5,-1],[6,-4],[18,-12],[4,-1],[-2,-9],[-4,-3],[2,-13],[-1,-5],[9,-8],[5,-8],[8,-2],[-3,-3],[8,-10],[11,-7],[5,2],[8,-2],[2,-6],[11,1],[10,-2],[4,-8],[8,-6],[-6,-7],[1,-9],[4,-3],[-13,-7],[-2,-7],[3,-6],[5,-3],[-6,-7],[-14,0],[-5,-2],[-4,-5],[-9,-3],[-1,-4],[-3,-1],[-7,3],[-4,-1],[-3,-8],[0,-5],[-11,-4],[-3,-2],[2,-10],[-5,-1],[-8,-6],[7,-21],[-3,-1],[-2,-9],[2,-6],[-5,-7],[-7,-6],[-7,-12],[-6,-4],[-9,-2],[-2,-2],[-8,1],[-1,-2],[12,-3],[5,-3],[3,-5],[0,-9],[-11,-5],[-15,-5],[0,0]],[[7581,3922],[-3,3],[-12,8],[0,6],[5,4],[-2,4],[-4,2],[-6,-5],[-7,3],[-26,5],[-12,-2],[-33,-4],[-3,1],[-6,-2],[-3,-4],[-9,-6],[-3,-1],[-5,-7],[-3,-2],[-3,-7],[-5,2],[-16,-6],[-4,-7],[-8,-7],[-1,1],[-5,-8],[-6,-6],[-5,-3],[2,-2],[-5,-5],[-8,2],[1,3],[-6,-1],[-10,1],[-2,2],[-4,-3],[-1,4],[-12,-3],[-3,3],[-9,-1],[-4,2],[-3,4],[-6,-1],[-10,11],[-1,3],[-10,9],[-14,-1],[-6,-2],[-1,-4],[-12,1],[-6,-2],[-2,8],[11,-1],[3,5],[-2,17],[-4,6],[-4,9],[-7,8],[-11,5],[-7,1],[-7,8],[-8,4],[-15,17],[-13,2],[-5,-1],[-35,33],[-12,9],[-7,3],[-7,1],[-8,-2],[-2,-2],[-7,1],[-10,-3],[-15,-5],[-7,5],[-11,-1],[-10,7],[-5,1],[0,5],[-6,11],[-8,7],[-6,3],[-5,5],[-1,3],[-17,2],[-3,1],[-7,7],[-6,3],[-19,-3],[-2,2],[-17,10],[-3,9],[4,1],[12,7],[2,3],[15,8],[1,16],[1,10],[-2,7],[-5,4],[3,1],[2,10],[8,7],[13,0],[4,7],[9,3],[1,3],[7,-1],[4,4],[2,15],[-1,10],[-6,16],[-10,18],[-8,14],[-5,7],[-5,5],[-2,4],[-6,7],[-6,11],[-3,2],[-10,21],[-7,14],[-3,4],[-5,11],[-10,14],[-5,9],[-9,10],[-2,4],[-14,16],[-17,16],[-12,12],[-2,1],[-12,11],[-17,12],[-12,6],[-7,1],[-2,2],[-9,2],[-2,-3],[-5,3],[-3,-5],[-9,-1],[-12,-3],[-10,-12],[-2,-6],[-5,-2],[-6,-9],[-13,0],[-3,3],[-8,4],[-19,6],[-15,-1],[-3,-5],[-9,-6],[-7,-1],[-19,-13],[0,-4],[-6,2],[-10,-2],[-15,0],[-13,-5],[-5,8],[-20,9],[-12,-1],[0,-2],[-11,-5],[-14,1],[-9,-4],[-1,-2],[-17,-2],[-1,-3],[-17,-10],[-10,-3],[-7,0],[0,-2]],[[6515,4393],[-1,0]],[[6514,4393],[-10,-3],[1,-2],[-8,0],[-7,-3],[-1,-7],[-7,-2],[-2,6],[-10,-6],[-1,10],[4,3],[-4,4],[4,3],[0,4],[5,9],[5,4],[2,13],[5,-1],[4,7],[13,-6],[10,1],[19,8],[6,10],[-5,5],[5,4],[12,2],[1,3],[5,0],[4,9],[4,6],[7,4],[14,5],[5,1],[1,-3],[4,4]],[[6599,4485],[0,0]],[[6599,4485],[0,0]],[[6599,4485],[1,0]],[[6600,4485],[3,3],[-6,20],[-5,9],[-5,7],[-8,6],[-5,6],[-3,-2],[-7,2],[-18,-3],[-5,2],[-2,3],[-8,1],[-9,10],[-19,13],[-3,5],[-9,6],[-10,6],[-2,7],[-8,4],[-13,9],[-1,2],[-9,0],[1,3],[-4,3],[-13,5],[-7,-4],[2,4],[-13,-3],[-3,-4],[1,-2],[-3,-5],[-5,3],[-12,1],[-8,-3],[-6,-8],[-7,-10],[1,-3],[0,-1]],[[6372,4577],[1,-1]],[[6373,4576],[-2,-2],[-13,-4],[-2,-2]],[[6356,4568],[-1,0]],[[6355,4568],[-2,3],[-8,3],[-4,-1],[-5,-5],[-4,2],[1,3],[7,0]],[[6340,4573],[0,0]],[[6340,4573],[1,0],[3,2],[-7,9],[0,2],[-6,4],[-11,0],[-16,3],[-6,-1],[-1,6],[-12,4],[-14,-1],[-6,-3],[-2,-4],[-4,-1],[0,-4],[7,-4],[1,-9],[2,-5],[3,-3],[-8,-3],[5,0],[5,-9],[-2,0],[-3,6],[-5,2],[-13,0],[-15,2],[-4,7]],[[6232,4573],[0,1],[2,2],[1,10],[3,5],[0,17],[-2,24],[-1,0],[-5,18],[-5,9],[1,1],[-8,14],[-2,5],[-16,23],[-2,5],[-6,5],[-4,6],[-10,10],[-2,-1],[-10,13],[-16,15],[-5,3],[-3,5],[-10,11],[-3,5],[1,2],[-9,22],[-9,16],[-4,9],[-12,15],[-8,8],[-7,10],[-16,18],[-5,9],[-19,19],[-10,7],[-7,7],[-12,9],[-5,2],[-9,7]],[[6091,4541],[5,-3],[0,2],[6,0],[0,-5],[19,-5],[11,2],[8,-4],[4,1],[5,-4],[2,4],[2,-3],[7,-1],[2,-8],[5,-1],[-3,-8],[4,-2],[1,-7],[-6,-1],[-3,-2],[1,-6],[-4,3],[-6,-1],[-2,2],[-9,-5],[-8,-2],[-11,3],[-11,-2],[-1,-6],[-2,1],[0,5],[-13,-2],[-9,6],[-3,-1],[-1,3],[-8,4],[6,3],[3,4],[-3,9],[-3,1],[5,6],[7,12],[-6,5],[8,3],[1,0]],[[6417,4368],[1,0],[4,-5],[-6,-2],[-1,-6],[-5,-3],[-4,4],[-12,-1],[-1,-3],[-9,-2],[-6,1],[-4,-3],[-9,0],[-2,5],[1,5],[4,3],[-3,7],[16,1],[14,-2],[4,-3],[15,4],[3,0]],[[6213,4549],[4,-4],[11,0],[1,-4],[-4,-2],[-7,1],[-3,-7],[-5,-2],[-2,-8],[-4,8],[-2,-4],[-4,3],[-4,-4],[2,-3],[-6,2],[1,4],[10,1],[5,8],[-1,3],[2,7],[5,1],[1,0]],[[6563,4388],[0,0]],[[6515,4393],[0,0]],[[6515,4393],[-1,0]],[[6232,4573],[0,0]],[[6560,4386],[0,0]],[[6560,4386],[0,0]],[[6411,4351],[0,0]],[[6356,4568],[-1,0]],[[7286,3906],[0,0]],[[6600,4485],[-1,0]],[[6599,4485],[1,0]],[[6372,4577],[1,-1]],[[6340,4573],[0,0]],[[9563,4449],[-2,-2],[-1,-3],[7,-5],[7,-3],[-1,-8],[2,-6],[11,-11],[3,-4],[9,-6],[-2,-5],[1,-10],[-7,-6],[2,-9],[18,-15],[8,-4],[9,-8],[5,-9],[20,-11],[3,0],[4,-6],[6,-3],[2,-5],[7,-2],[4,-3],[16,-4],[19,-10],[13,-3],[1,1],[11,-4],[3,-4],[8,-7],[12,-4],[10,-8],[1,-4],[7,-8],[9,-4],[5,-8],[19,-13],[2,1],[5,-4],[-2,-5],[5,-4],[3,-5],[15,-10],[16,-9],[2,-3],[7,-5],[4,-6],[16,-19],[8,-4],[4,-5],[4,0],[4,-5],[6,-1],[7,-4],[5,-5],[1,-7],[-2,-5],[10,-3],[3,-13],[4,-8],[10,-10],[3,-10],[-6,-9],[6,-17],[4,-1],[2,-5],[6,-5],[-2,-2],[5,-5],[-2,-3],[6,-5],[0,-9],[6,-5],[7,2],[12,-11],[-7,-3],[-2,-6],[11,-13],[-1,-5],[-7,-3],[-18,-17],[-3,0],[-1,-6],[-5,-11],[0,-8],[-2,-6],[-11,-6],[-6,-2],[-5,-5],[-3,3],[-5,-6],[-4,-1],[-4,-11],[1,-11],[-6,1],[-6,-4],[-3,-4],[-3,-10],[-2,-1],[-2,-12],[-2,-1],[-2,-17],[-2,-7],[-2,-1],[-5,-22],[4,-5],[2,-8],[2,-4],[-2,-2],[2,-6],[-4,-15],[-4,-13],[-4,-5],[3,-12],[2,-8],[-7,-6],[-5,-9],[-4,-2],[-3,-4],[-7,3],[-14,-5],[-3,4],[-7,1],[-3,8],[-16,4],[1,4],[-14,5],[-9,4],[-5,4],[-11,4],[-13,0],[-1,-1],[-20,1],[-11,3],[-5,0],[-17,8],[-1,2],[-16,7],[-11,2],[-9,8],[-6,4],[-15,10],[-2,-1],[-2,4],[-14,8],[-8,4],[-7,3],[-6,7],[0,3],[-14,8],[-4,0],[-2,7],[-9,9],[-4,9],[-3,5],[-11,7],[-4,4],[-6,9],[-6,11],[11,-3],[8,8],[3,7],[-4,20],[-2,3],[-18,12],[-10,2],[-5,-3],[-1,2],[4,2],[7,0],[5,3],[12,11],[2,8],[3,2],[0,5],[-3,18],[-8,7],[-5,8],[3,2],[-8,7],[-6,-1],[-3,2],[-2,6],[-9,0],[-3,8],[-19,12],[-6,8],[-4,3],[1,2],[-7,7],[2,10],[2,1],[-2,7],[4,3],[1,4],[-3,3],[-7,3],[-5,4],[1,3],[-4,4],[-8,7],[9,-5],[4,-3],[-2,9],[-6,6],[-6,1],[-3,-5]],[[9469,4104],[0,1],[-1,6],[-9,9],[-12,8],[-11,4],[-10,-5],[-5,3],[-7,0],[-16,5],[-7,-1],[-6,4],[-20,1],[-7,3],[-2,-3],[-15,1],[-1,2],[-6,2],[-20,1],[-4,2],[-18,1],[-24,-2],[-18,-1],[-24,-1],[0,-1],[-25,0],[-28,-2],[-26,-2],[-3,7],[-7,6],[-14,2],[-19,6],[-13,10],[-7,1],[-15,1],[-8,-1],[-6,2],[-3,-1],[-4,4],[-8,2],[1,5],[-5,0],[-11,4],[1,2],[-12,1],[-2,3],[-9,4],[-9,-1],[-2,2],[-17,8],[-5,7],[-1,-2],[-6,2],[-8,-1],[-8,5],[-6,5],[-2,-2],[-3,6],[-12,2],[-4,4],[-5,-1],[-4,5],[-6,2],[-14,-1],[-1,4],[15,9],[11,1],[7,6],[4,2],[0,7],[3,1],[4,-2],[-5,17],[-8,8],[-9,4],[-1,5],[-14,-1],[2,-4],[-2,-1],[-2,5],[-8,0],[0,-3],[-6,3],[-10,-1],[3,5],[-1,7],[-4,-2],[-9,10],[-8,-5],[-1,1],[8,6],[-2,2],[-15,-9],[4,8],[-1,3],[-12,7],[-15,3],[-28,0],[-1,-1],[-18,-2],[0,-1],[-24,-5],[-14,-5],[-2,-2],[-39,-18],[-8,-6],[-10,-5],[-4,-4],[-8,-4],[-2,-3],[-6,-3],[-7,-7],[-3,-1],[-29,-29],[-7,-9]],[[8608,4228],[-7,3],[0,4],[-4,-4],[-11,10],[-3,-2],[-4,4],[-6,4],[-2,4],[-11,7],[0,11],[-4,9],[-6,4],[-13,3],[-18,-1],[-3,5],[-3,2],[-3,-5],[-5,-1],[-7,3],[-3,4],[-10,6],[11,16],[3,12],[-10,2],[-2,4],[-5,4],[0,2],[5,10],[-5,6],[-9,5],[1,11],[5,8],[4,13],[-5,6],[6,0],[3,4],[4,1],[-6,8],[-7,10],[0,5],[-2,6],[6,16],[8,25],[1,6],[-12,1],[-14,12],[7,7],[3,-5],[14,7],[-13,6],[-16,8],[-6,4],[-7,2],[-8,9],[-2,1],[-1,-10],[-10,1],[-2,5],[-8,-1],[-2,5],[3,2],[-3,2]],[[8414,4534],[-2,1]],[[8412,4535],[-3,-4],[0,4],[-18,-2],[-6,3],[-7,-2],[-6,8],[-5,1],[-11,-8],[10,-10],[-5,-5],[-2,6],[-2,-6],[-6,6],[1,3],[-3,7],[-3,2],[-5,0],[-10,-4],[-2,-7],[5,-2],[-4,-8],[6,-3],[-4,-4],[-7,7],[-10,1],[5,9],[-3,2],[-8,2],[-1,6],[-7,5],[-8,-8],[-5,-8],[-3,-2],[-12,-12],[-11,-6],[-24,-17],[-13,1],[-10,5],[-3,8],[-3,1],[-4,11],[-7,6],[-14,6],[-10,3],[-12,13],[-11,10],[-3,5],[-5,4],[-9,4],[-10,6],[-11,4],[-5,9],[-7,6],[-3,1],[-6,11],[-8,4],[-3,7],[2,1],[-9,6],[-6,25],[-4,6],[-5,14],[1,2],[-9,6],[-2,3],[-13,2],[-15,6],[-8,-4],[-11,0],[-8,-6],[-6,-12],[-7,-3],[-11,7],[-4,6],[-8,6],[-20,4],[-7,2],[-7,5],[-21,8],[-9,1],[-16,5],[-18,7],[-3,11],[25,-1],[13,12],[6,4],[2,6],[3,11],[-3,2],[0,12],[10,4],[1,6],[-11,8],[-2,6],[-4,-1],[-11,7],[-7,-5],[-2,7],[-6,4],[-8,11],[3,7],[-16,6],[-9,-1],[5,5],[-1,4],[-13,8],[-5,1],[-5,-4],[-4,3],[-5,-1],[-5,3],[-12,10],[-6,-3],[-12,14],[-4,-2],[-3,3],[-4,-8],[-8,0],[-6,3],[-3,-9],[-5,5],[-9,-3],[1,-7],[-4,-1],[-11,0],[-12,-5],[4,-6],[-1,-7],[-2,-3],[-9,-4],[-7,1],[-1,-2],[-10,-3],[-7,3],[1,4],[-6,0],[-2,6],[-12,1],[-8,-3],[-1,-5],[-12,0],[-6,-3],[-5,2],[-6,-3],[-4,2],[-4,-2],[-4,3],[-5,-3],[-12,6],[-2,-3],[-7,0],[-8,2],[-2,4],[-6,0],[-8,2],[-8,-2],[-8,2],[-5,-2],[-4,2],[-4,-2],[-4,1],[-16,-8],[-8,-12],[-7,-1],[-1,-5],[4,-2],[-4,-2],[3,-2],[-1,-4]],[[7045,5166],[-7,8],[-4,1],[-12,8],[-12,12],[-12,1],[-9,2],[-3,3],[-2,12],[2,8],[2,1],[2,7],[3,2],[0,6],[4,3],[-4,6],[2,10],[2,3],[-4,7],[4,6],[-9,3],[-4,8],[11,7],[6,11],[5,3],[5,-4],[16,-2],[3,-2],[9,-9],[-1,3],[6,-6],[12,0],[4,-1],[-1,8],[1,3],[17,5],[-2,5],[5,9],[5,3],[12,-2],[1,6],[13,4],[4,3],[-3,1],[1,6],[3,1],[7,-9],[4,2],[0,9],[6,5],[12,5],[0,1],[28,9],[2,2],[-5,2],[-2,-2],[-5,2],[-4,-1],[-3,3],[-15,5],[-12,16],[-4,8],[11,0],[-1,4],[-8,4],[-2,6],[-4,1],[0,5],[3,9],[9,4],[3,4],[2,7],[-3,6],[2,6],[-3,6],[-4,1],[-7,11],[4,12],[8,2],[4,6],[4,2],[2,5],[-1,4],[14,8],[-3,4],[-6,16],[4,9],[2,13]],[[7155,5547],[0,0]],[[7155,5547],[0,-1]],[[7155,5546],[15,-2],[0,-1],[42,-3],[0,-1],[37,1],[45,0],[33,-3],[6,-7],[8,-4],[24,-2],[21,-1],[0,1],[31,1],[11,1],[26,3],[40,6],[14,2],[0,1],[25,3],[7,1],[18,4],[2,2],[6,-2],[21,-3],[2,-2],[10,-2],[1,1],[14,-5],[22,1],[39,1],[12,1],[1,1],[23,1],[19,2],[17,3],[27,2],[4,2],[14,0],[24,2],[13,2],[12,3],[12,2],[17,3],[6,3],[7,-2],[5,2],[9,1],[5,-3],[14,1],[16,-1],[5,-2],[3,2],[2,-4],[8,0],[8,-2],[-2,-2],[2,-3],[6,-1],[-1,-2],[9,-2],[4,-7],[16,-6],[1,2],[6,0],[7,-3],[7,-14],[5,-5],[8,-2],[5,0],[-2,-5],[-2,-13],[1,-9],[3,-7],[4,-7],[6,-1],[-3,-2],[6,-6],[3,-1],[-4,-10],[3,-2],[-3,-2],[2,-8],[-3,-1],[2,-7],[-7,-5],[4,-2],[0,-3],[-3,-1],[-1,-6],[-4,-1],[-3,-4],[-9,0],[-4,-11],[-16,-10],[-13,-4],[-6,1],[-9,-7],[-6,-1],[-5,-7],[-21,-9],[-3,-4],[-3,-11],[-4,-2],[-8,-1],[-1,-3],[-18,-8],[-12,-7],[-20,-5],[-18,-9],[-1,-2],[-21,-7],[-16,-13],[-1,1],[-14,-9],[-4,-2],[-4,-10],[-2,-12],[3,-35],[3,-10],[4,-9],[7,-12],[3,-8],[6,-8],[3,-6],[13,-14],[10,-9],[7,-4],[6,-5],[9,-5],[1,-2],[10,-4],[12,-6],[14,-6],[14,-3],[33,-14],[19,-6],[0,0],[13,-7],[17,-6],[23,-12],[9,-2],[4,-2],[18,-4],[9,-3],[2,-2],[26,-17],[19,-8],[12,-1],[4,-2],[4,2],[11,-6],[12,-3],[4,0],[36,-12],[8,-5],[9,-3],[2,-2],[12,-2],[15,-5],[1,-4],[11,-4],[3,-4],[7,-5],[23,-4],[3,1],[2,-4],[5,-2],[13,-3],[-2,-2],[13,-1],[13,-4],[5,-7],[4,-2],[11,-1],[2,-3],[12,-5],[4,-5],[8,3],[1,-1],[-8,-2],[8,-5],[6,0],[-5,6],[12,-9],[14,-4],[3,-3],[7,-1],[5,2],[13,-3],[15,-1],[6,-4],[19,-8],[3,-2],[12,-3],[21,-2],[9,-3],[4,-3],[15,-1],[4,-5],[3,-1],[6,-6],[26,-7],[1,-1],[17,2],[0,-5],[4,-4],[11,1],[6,10],[-1,-10],[2,-4],[5,-3],[15,-3],[0,-1],[11,-2],[16,-3],[6,-5],[22,-8],[13,-2],[6,0],[1,-2],[8,-3],[5,1],[3,-2],[21,-3],[15,-3],[10,-5],[15,-6],[15,-5],[0,-3],[9,-3],[3,-3],[19,-7],[4,-3],[14,-6],[18,-3],[8,-8],[7,-4],[7,-5],[0,-5],[30,-9],[8,-7],[7,-2],[11,-8],[4,1],[8,-4],[2,-5],[8,-2],[-1,-2],[5,-1],[2,-4],[3,0],[3,-6],[7,-4],[1,-3],[6,-1],[4,-4],[1,-4],[4,0],[1,-6],[5,-3],[2,-7],[4,-4],[7,-3],[21,-5],[4,-2],[7,-6],[3,-4],[9,-5],[1,-4],[10,-5],[1,-2],[14,-6],[1,-2],[6,-1],[6,-3],[1,-3],[8,-2],[1,-8],[9,-5],[7,-2],[32,-14],[12,-3],[1,-2],[22,-7],[5,0],[10,-3],[1,-2],[16,-4],[7,0],[20,-5],[14,-4],[8,-4],[5,0],[3,-3],[5,1],[9,-3],[1,-2],[10,-5],[3,1],[12,-5],[1,-3],[10,-3],[6,-4],[1,-4],[11,-4],[3,-3],[14,-7],[13,-1],[7,-2],[-3,-2],[17,-12],[9,-4],[6,-1],[2,-2],[12,-1],[14,-3],[14,-2],[20,-2],[20,-2],[1,5],[8,-6],[3,-8],[4,-4],[17,-2],[-3,-6],[0,6],[-6,-6],[-4,-2],[-5,-8],[-5,1],[-12,-2],[4,-3],[11,2],[3,-4],[0,6],[5,0],[3,3],[5,-2],[2,5],[2,-4],[4,1],[5,-3],[14,4],[3,5]],[[8412,4535],[2,-1]],[[8414,4534],[2,0],[7,0],[-8,3],[-3,-2]],[[7453,5715],[3,-1],[-2,-8],[-6,-4],[-3,-4],[-5,2],[-1,5],[8,5],[2,6],[4,-1]],[[8855,4276],[5,-4],[-11,-4],[-10,6],[4,-1],[12,3]],[[9522,3929],[1,0],[0,-2],[-8,-3],[7,5]],[[7472,5730],[1,-4],[-6,-4],[1,7],[3,1],[1,0]],[[7470,5715],[-4,0],[8,5],[-4,-5]],[[9463,4109],[0,0]],[[7664,5804],[0,0]],[[9448,4119],[0,0]],[[8867,4265],[0,0]],[[8033,5515],[0,0]],[[7460,5715],[0,0]],[[8048,5451],[0,0]],[[8039,5475],[0,0]],[[9397,4501],[0,0]],[[7973,5548],[0,0]],[[9555,4451],[0,0]],[[9535,3932],[0,0]],[[9563,4449],[0,0]],[[9469,4104],[0,0]],[[9642,3795],[0,0]],[[9555,4451],[0,0]],[[7581,3922],[10,3],[2,2],[10,5],[4,9],[-3,5],[-5,3],[-10,2],[-1,3],[8,-1],[13,5],[9,10],[2,5],[9,8],[3,5],[-2,6],[2,9],[3,1],[-7,21],[4,3],[9,4],[-4,8],[5,4],[11,4],[-2,3],[4,5],[1,5],[10,-2],[4,1],[13,9],[1,3],[20,3],[5,6],[-5,3],[-3,7],[2,6],[6,2],[7,5],[-5,5],[0,10],[6,4],[-22,16],[-11,-1],[-2,6],[-9,2],[-3,-2],[-4,1],[-16,16],[3,3],[-8,2],[-14,19],[1,4],[-2,11],[4,3],[2,9],[-6,3],[-5,3],[-17,11],[-5,1],[-7,-5],[-3,5],[-7,8],[-2,6],[-9,2],[-4,6],[-15,5],[-5,4],[-6,1],[-8,6],[-5,1],[4,2],[-12,12],[2,8],[-6,1],[-5,6],[-9,1],[-7,6],[-7,2],[1,5],[-4,4],[10,7],[2,3],[-8,5],[-4,6],[4,4],[-4,8],[2,3],[-1,7],[-4,1],[0,5],[-3,4],[6,3],[-1,2],[4,2],[-5,5],[-9,-2],[-6,2],[1,5],[-4,5],[-19,3],[-4,5],[-4,0],[-9,3],[-5,6],[-9,2],[6,15],[5,3],[1,9],[11,3],[11,5],[2,2],[7,13],[-12,0],[-1,7],[-17,2],[-9,3],[-7,8],[-2,-1],[-15,5],[-5,7],[-5,3],[-1,4],[-9,7],[-5,-1],[-7,2],[-8,6],[2,3],[-3,13],[3,11],[4,8],[-3,10],[-3,4],[6,10],[-1,3],[-8,-2],[-8,2],[-1,3],[5,4],[6,1],[1,4],[-7,2],[-5,-1],[-6,6],[0,4],[-9,4],[-10,4],[3,3],[20,2],[11,-3],[1,6],[-2,14],[-2,3],[4,5],[-12,4],[-7,-2],[-2,6],[1,5],[5,-1],[10,3],[7,-4],[3,-4],[8,3],[7,-2],[-1,3],[12,1],[13,-2],[9,-3],[3,1],[7,-8],[6,-1],[10,7],[-4,4],[0,9],[9,2],[5,3],[13,3],[12,5],[2,-1],[9,3],[6,15],[5,10],[3,4],[-1,5],[19,17],[3,22],[3,7],[-5,11],[-6,5],[-1,4],[4,7],[-3,1],[-4,5],[-3,1],[-5,13],[-2,1]],[[8608,4228],[-1,-3],[-12,-16],[-1,-3],[-15,-16],[-12,-16],[-16,-16],[-4,-6],[-6,-5],[-10,-19],[-7,-9],[-3,-6],[-5,-6],[-8,-14],[-3,-13],[-4,-7],[-2,-8],[-13,-16],[-5,-4],[-5,-6],[-16,-25],[-8,-7],[-14,-8],[-16,-12]],[[8422,3987],[-5,4],[-8,2],[-2,4],[-6,2],[-9,-3],[-18,3],[-10,-2],[-7,-3],[-6,3],[-6,-1],[-10,-3],[-10,-6],[-5,5],[-19,5],[-3,-4],[-10,1],[-2,2],[-19,5],[-9,0],[-14,-6],[-5,10],[-7,-11],[-8,-4],[5,-12],[-2,-6],[-1,-10],[2,-8],[-7,-6],[-2,-4],[-1,-9],[-7,-7],[-1,-4],[1,-14],[4,-10],[-6,-6],[-9,-13],[-3,-6],[-4,-1],[-4,-9],[-7,-8],[2,-7],[-3,-5],[-8,-2],[-5,-11],[-4,-2],[9,-11],[9,-3],[-4,-17],[-8,0],[-4,4],[-1,6],[-19,15],[-8,5],[-9,-3],[-4,1],[-8,-2],[-2,2],[-8,3],[-4,-3],[-16,-2],[-2,-3],[-12,-2],[-11,3],[-2,-1],[4,-7],[-4,-20],[-11,3],[-9,5],[-3,4],[-8,1],[-8,5],[-8,3],[-9,-5],[-1,-4],[-7,-7],[-5,5],[-17,-2],[-8,2],[-7,-2],[-11,-8],[-16,2],[-11,-1],[-5,11],[-5,6],[-9,2],[-1,4],[-8,2],[5,8],[-8,6],[-2,10],[-3,4],[8,7],[6,10],[5,-1],[4,4],[-2,10],[-20,3],[-10,-8],[-1,-2],[-10,1],[-8,3],[-11,2],[-8,2],[-10,4],[-10,1],[-16,-12],[-9,-4],[-4,10],[-14,3],[-4,-8],[-4,5],[-8,8],[-8,3],[-7,-2],[-5,1],[-7,-2],[-4,-5],[-7,-2],[-3,-8],[-6,-2],[-3,-8],[-19,-10],[-3,-6],[0,-10],[-3,-5],[-1,-6],[-4,-4],[-5,-2]],[[7674,3819],[0,1],[-3,7],[-8,1],[-2,4],[-5,5],[4,2],[-4,4],[1,6],[-4,7],[-6,2],[-3,8],[-6,2],[-3,8],[-6,0],[-15,11],[-4,4],[-2,6],[1,13],[-6,0],[-4,8],[-16,1],[-2,2],[0,1]],[[7641,3857],[0,0]],[[7693,3753],[1,1]],[[7694,3754],[7,0],[4,10],[-3,9],[-3,1],[-2,13],[-5,10],[-13,14],[-4,7],[0,1]],[[7675,3819],[-1,0]],[[7674,3819],[5,2],[4,4],[5,20],[0,5],[7,6],[9,2],[5,4],[3,8],[9,10],[6,1],[1,6],[11,2],[5,-2],[8,4],[5,-2],[2,-7],[7,-3],[5,-5],[4,8],[13,-2],[2,-7],[4,-4],[11,6],[10,10],[13,0],[8,-3],[20,-5],[5,-7],[24,5],[-1,5],[2,2],[20,-3],[0,-5],[2,-5],[-7,-5],[-3,1],[-6,-10],[-7,-6],[3,-4],[2,-6],[8,-10],[-5,-7],[8,-3],[1,-4],[12,-5],[7,-16],[11,3],[16,-2],[7,6],[12,4],[19,-2],[5,2],[5,-5],[7,7],[1,4],[8,4],[9,-2],[3,-3],[11,-2],[5,-5],[7,-4],[12,-4],[2,1],[3,19],[-4,5],[2,3],[11,-3],[12,2],[4,4],[14,1],[4,3],[8,-3],[2,-2],[12,2],[5,-1],[4,3],[13,-10],[10,-10],[5,-1],[10,-10],[2,1],[1,10],[3,7],[-10,4],[-8,8],[4,4],[4,10],[9,3],[3,5],[0,10],[7,5],[0,6],[7,5],[2,5],[9,7],[6,12],[-2,8],[-3,5],[0,11],[1,4],[4,6],[3,4],[1,6],[9,14],[-2,4],[1,10],[2,3],[-3,6],[-2,10],[7,2],[8,12],[7,-10],[12,6],[3,-1],[16,0],[11,-6],[10,-1],[3,4],[14,-1],[5,-7],[7,-2],[8,6],[16,4],[11,-3],[2,3],[10,2],[20,-3],[8,3],[15,-8],[4,-3]],[[8421,3988],[1,-1]],[[8422,3987],[-12,-9],[-9,-9],[-12,-14],[-2,-12],[0,-12],[-4,-7],[6,-15],[4,-28],[6,-16],[10,-11],[-3,-8],[-5,-2],[-7,-11],[-8,-10],[-4,-2],[-13,-14],[-7,-3],[-6,-5],[-7,-8],[-16,-16],[-11,-14],[-2,-6],[-11,-10],[-11,-15],[-4,-8],[-2,-9],[-3,-30],[2,-8],[3,-6],[11,-12],[10,-5],[10,-4],[-4,-39],[-1,-5],[-5,-3],[4,-4],[1,-3],[4,0],[-3,5],[12,-10],[14,-7],[7,-6],[14,-5],[13,-7],[9,-3],[21,-4],[56,1],[16,-2],[17,-2],[2,2],[15,5],[14,-4],[4,-3],[9,-10],[10,-4],[1,-2],[12,-8],[3,-10],[3,-6],[14,-13],[12,-6],[6,-6],[5,-3],[22,-8],[7,-4],[1,-2],[8,-4],[12,-3],[1,-2],[8,-2],[4,-6],[5,-2],[31,-7],[24,-3],[5,-2],[5,-4],[7,-14],[2,-8],[6,-8],[5,-5],[5,-3],[14,-7],[6,-6],[23,-8],[14,-6],[27,-3],[-2,-6],[-10,-10],[-5,-6],[-3,-15],[-4,-7],[-3,-9],[-4,-8],[-3,-3],[-4,-8],[-2,-10],[1,-19],[-5,-16],[1,-10],[4,-8],[5,-3],[6,-8],[3,-6],[5,-5],[7,-4],[6,-10],[-5,-12],[-6,-8],[-2,-5],[-11,-19],[-5,-13],[-3,-14],[-2,-12],[2,-9],[11,-10],[11,-1],[1,-2],[-5,-3],[-1,-8],[14,-20],[9,-5],[8,-2],[5,-4],[11,-2],[2,1],[6,-4],[8,3],[0,-8],[-12,1],[-2,-4],[-4,-1],[-8,-7],[-9,-12],[-3,-9],[1,-16],[5,-1],[2,-7],[-5,-5],[-4,1],[-8,-6],[-9,-9],[-19,-16],[0,-3],[-14,-7],[-2,-8],[-3,-2],[-3,2],[3,9],[-1,2],[-16,6],[-15,3],[-13,1],[-7,-2],[-2,-6],[-4,-3],[-5,4],[-10,3],[-2,6],[-5,7],[-20,8],[-17,0],[-23,-4],[-8,-1],[-30,-5],[-39,-10],[-17,-5],[-12,-4],[-14,-5],[-3,-2],[-14,-5],[-13,-6],[-18,-9],[-8,-5],[-13,-6],[-13,-9],[-15,-7],[0,-1],[-12,-5],[-4,-3],[-13,-6],[-8,1],[-11,-7],[-7,-8],[-6,-10],[-21,-21],[-4,-7],[4,-2],[-1,-8],[-5,0],[-5,-7],[1,-2],[-7,-8],[-6,-4],[-7,-13],[-1,0],[9,-16],[1,-3],[10,-16],[-2,-16],[1,-9],[2,-15],[1,-7],[4,-10],[3,-23],[1,-8],[2,-3],[-1,-29],[1,0],[2,-22],[4,-5],[2,-44],[-5,-13],[-4,-8],[-10,-11],[-10,-10],[-6,-4],[-11,-10],[-10,-10],[-5,-3],[-4,-5],[-10,-8],[-18,-12],[-14,-7],[-15,-5],[-3,1],[-18,-7],[-5,0],[-48,-14],[-12,-4],[-15,-11],[-4,-8],[-7,-6],[-3,-4],[-11,-7],[-8,-13],[-13,-13],[-14,-15],[-14,-13],[-7,-8],[-6,-5],[-1,-3],[-22,-22],[-7,-6],[-11,-8],[-3,-6],[-3,-30],[-3,-11],[-2,-4],[-2,-17],[-2,-2],[-3,-12],[2,-1],[-2,-10],[-5,-9],[-2,-1],[-4,-9],[-2,-1],[-10,-21],[-23,-29],[-18,-15],[-3,-4],[-12,-1],[-4,-3],[-4,3],[-18,-1],[-11,-3],[-8,-3],[-1,2],[-11,-1],[-22,2],[-17,5],[-2,3],[-15,1],[-21,-2],[-10,0],[-15,-3],[-1,-1],[-22,-3],[-2,-1],[-23,2],[-27,-4],[-9,1],[-12,8],[-18,5],[-12,4],[-8,9],[-15,4],[-5,3],[-6,7],[-1,3],[-10,9],[-3,7],[-7,6],[-4,6],[-5,17],[12,6],[6,11],[1,3],[-6,9],[2,12],[-2,2],[-13,6],[-1,11],[-2,12],[10,6],[5,6],[-1,8],[1,2],[3,-5],[0,7],[4,4],[-4,6],[1,7],[2,2],[-8,11],[-5,5],[1,9],[-6,4],[-1,5],[1,11],[-1,16],[2,7],[14,3],[15,4],[2,3],[6,4],[8,1],[1,2],[11,2],[4,-2],[4,3],[13,0],[8,-1],[10,3],[12,6],[5,4],[12,5],[5,5],[11,8],[5,3],[7,7],[0,6],[4,5],[6,15],[0,8],[3,8],[2,0],[-2,6],[4,7],[13,12],[5,2],[3,9],[1,8],[3,3],[5,12],[2,1],[3,7],[10,11],[-2,3],[7,4],[5,12],[5,11],[1,0],[5,16],[2,12],[4,9],[7,24],[-1,3],[-6,2],[-1,2],[-8,2],[-1,3],[-9,4],[-6,12],[-10,5],[-2,4],[-8,2],[-17,13],[-2,6],[-16,4],[0,6],[4,9],[3,8],[5,8],[3,1],[2,4],[6,4],[5,1],[12,7],[10,1],[9,6],[11,0],[9,5],[8,1],[5,3],[9,-1],[8,6],[10,13],[13,9],[14,1],[1,-2],[22,4],[0,1],[13,-1],[1,-2],[7,2],[3,-4],[16,-2],[9,-4],[18,-2],[7,5],[7,2],[5,-4],[7,3],[13,11],[4,5],[19,8],[8,12],[10,24],[5,9],[6,20],[3,14],[1,21],[-1,1],[0,21],[-3,31],[-11,7],[-6,0],[-6,2],[-6,5],[-8,5],[-10,1],[-6,5],[-8,18],[-3,3],[-6,15],[-3,5],[-13,8],[-12,14],[-5,13],[-3,19],[-4,8],[-1,14],[-4,5],[-3,15],[-3,9],[-3,2],[-3,18],[-1,0],[-4,56],[-1,19],[-1,10],[-1,0],[-1,15],[-1,18],[-2,13],[-4,5],[-5,15],[1,5],[-2,0],[1,5],[-3,4],[0,9],[-6,7],[-6,21],[-13,31],[-2,2],[-9,22],[-5,5],[-10,11],[-5,6],[-8,4],[-4,6],[-5,12],[-4,4],[-8,12],[-6,6],[-3,5],[-7,0],[-9,9],[-12,1],[-6,4],[-7,8],[-3,2],[-4,16],[-5,8],[0,5],[-3,6],[-6,20],[-7,9],[-4,19],[-3,3],[-3,13],[-4,1],[-5,4],[-5,13],[-4,7],[-5,14],[4,10],[0,4],[-4,10],[-1,7],[-9,27],[-2,16],[-2,9],[-9,8],[-2,5],[3,5],[-7,1],[2,8],[5,4]],[[7690,3778],[4,-1],[1,-3],[-5,0],[-4,3],[4,1]],[[7713,3627],[0,0]],[[7694,3754],[-1,-1]],[[7693,3753],[1,1]],[[7291,2032],[-1,0],[-1,-5],[-6,2],[-5,0],[-3,-4],[-10,-9],[3,-7],[2,1],[-2,-6],[-7,-3],[-14,-14],[-3,-2],[-29,-39],[-4,-14],[6,-10],[5,-5],[0,-9],[-14,-21],[-1,-9],[-3,-9],[3,-4],[-11,-13],[-5,-2],[-6,-6],[2,-5],[-1,-9],[-2,-13],[1,-7],[3,-7],[-2,-9],[-5,0],[-5,-7],[1,-4],[-13,-4],[-1,-6],[-3,-5],[-10,-4],[-3,-4],[-11,-6],[1,-5],[-7,-3],[0,-3],[-15,-13],[0,-7],[4,-1],[-7,-3],[-1,-12],[1,-27],[3,-19],[1,-33],[-1,0],[1,-29],[1,0],[2,-18],[3,-8],[5,-7],[2,1],[14,-2],[11,0],[12,-9],[-1,-2],[9,-6],[6,3],[9,-1],[6,-5],[0,-5],[10,11],[8,1],[4,-8],[12,-12],[5,-5],[6,-2],[3,-4],[2,-9],[9,-6],[-3,-2],[1,-4],[-11,1],[-4,6],[-7,1],[-4,-10],[1,-3],[4,-5],[-3,-5],[-4,1],[-3,15],[3,1],[-3,3],[-2,7],[-8,-6],[-4,-1],[-1,-3],[-3,1],[-4,-5],[4,-5],[-6,-7],[-4,-2],[-1,-5],[2,-3],[1,-11],[9,-10],[4,-2],[-2,-13],[4,-7],[4,-4],[11,-1],[5,3],[6,5],[4,-7],[4,-5],[-6,1],[-5,5],[-4,0],[-5,-20],[8,-6],[2,1],[4,-7],[11,-2],[6,-3],[2,1],[3,-4],[8,1],[5,-1],[4,3],[9,-1],[4,-6],[2,-7],[0,-11],[-4,-1],[-3,-10],[5,-5],[-3,-4],[-8,4],[-2,3],[-6,-1],[-5,-10],[5,-7],[1,-7],[5,-3],[7,3],[10,6],[5,-5],[5,0],[8,-16],[7,-5],[2,-4],[1,-6],[-14,1],[0,1],[-14,10],[-9,-5],[-15,-2],[-4,-2],[-5,-6],[0,-7],[4,-4],[-4,-1],[-3,-4],[1,-5],[-17,-3],[-1,2],[-10,-2],[-1,-3],[-10,-4],[-1,2],[-7,-2],[1,-8],[-10,-1],[-8,-6],[-3,-2],[-5,-6],[-7,-12],[-9,-2],[-7,-10],[-3,-6],[-4,-13],[-3,-8],[1,-2],[-14,-10],[-9,-14],[-2,-2],[-3,-8],[3,-7],[-2,-17],[-8,-3],[-2,-3],[4,-8],[-2,-2],[-2,-9],[4,-3],[2,-5],[0,-6],[7,-9],[0,-2],[9,-6],[-3,-1],[1,-5],[3,-2],[-2,-9],[3,-5],[-2,-2],[3,-6],[1,-7],[8,-5],[0,-3],[5,-4],[-5,-12],[-4,-4],[-6,7],[-8,0],[-6,-11],[-5,1],[-1,-4],[-15,-9],[-4,3],[-7,8],[-5,2],[-7,1],[2,2],[-3,9],[-9,11],[-19,11],[-5,1],[-18,-2],[-1,-6],[-7,2],[-9,-4],[-13,2],[-9,6],[-5,5],[-9,6],[-11,7],[-14,6],[-8,0],[-5,2],[-21,-1],[-13,-6],[-7,0],[-3,-5],[-8,-2],[-4,2],[-9,-4],[-3,-3],[-19,-5],[2,3],[-22,7],[-6,4],[-9,1],[-5,-3],[-3,4],[-3,-2],[-13,0],[-8,-2],[-13,5],[1,3],[-13,14],[-4,1],[-6,4],[-10,4],[-5,6],[-25,8],[-9,0],[-5,2],[-9,5],[-8,0],[-7,3],[-20,1],[-2,-2],[-11,2],[-1,2],[-19,3],[-4,-1],[-11,9],[-5,2],[-1,5],[-10,9],[-7,3],[1,11],[-2,7],[-4,2],[-2,12],[-4,9],[-5,7],[-2,9],[-6,4],[-4,0],[1,6],[-4,8],[-7,9],[-5,4],[-9,14],[-3,6],[-5,5],[-4,7],[-4,3],[-5,7],[-22,22],[-2,1],[-10,10],[-13,12],[-1,0],[-11,10],[-5,2],[-8,6],[-11,6],[-2,3],[-5,1],[-6,4],[-9,2],[-12,5],[-2,-3],[-9,6],[-20,9],[-3,2],[-29,10],[-14,2],[-6,0],[-9,2],[-12,4],[-9,2],[-18,2],[-1,1],[-15,0],[-15,-2],[-3,-2],[-21,2],[0,1],[-44,-5],[-10,-4],[-12,-3],[-14,3],[-10,-3],[-15,4],[-5,3],[-1,-2],[-3,4],[-5,3],[-9,3],[-2,8],[-9,9],[-11,6],[-5,4],[-12,1],[-3,-1],[-26,2],[0,-1],[-10,2],[-13,2],[-2,3],[-10,5],[-2,5],[-7,5],[-13,1],[-3,4],[-8,2],[0,2],[-7,3],[-7,5],[-10,3],[-6,0],[0,8],[-7,12],[-6,4],[-8,9],[-14,4],[-17,14],[-5,5],[-9,1],[-5,7],[-14,13],[-15,3],[-3,-4],[-3,5],[-2,-4],[-2,4],[-5,-1],[0,-1],[-5,3],[-9,3],[-24,-4],[-6,4],[-16,2],[-4,-2],[-6,8],[-11,2],[-1,5],[-3,4],[-7,6],[-10,10],[-7,0],[-4,2],[-1,-2],[-4,7],[-9,6],[-7,0],[-7,7],[-5,3],[-7,-1],[-19,6],[-4,7],[-8,7],[-11,7],[-11,1],[-6,-2],[-11,26],[-9,7],[-2,4],[-7,1],[-7,9],[-10,14],[-6,4],[-13,2],[-6,11],[-10,5],[-10,8],[-6,2],[-10,1],[-9,-2],[-2,-3],[-18,5],[-3,2],[-11,2],[0,1],[-17,2],[0,-1],[-19,-1],[-9,-7],[-8,2],[-5,-2],[-10,3],[2,8],[-3,5],[-6,5],[-1,3],[-10,13],[-16,13],[-11,10],[-7,4],[-9,3],[-11,1],[-14,2],[-7,-3],[-4,3],[-11,1],[-5,2],[-23,2],[0,-1],[-23,1],[-36,-2],[-14,-2],[-14,-2],[-21,-7],[-5,-1],[-22,-3],[-11,-3],[-5,1],[-3,5],[-10,8],[-5,4],[-9,9],[-4,6],[-6,5],[-7,12],[-3,7],[-11,16],[-9,5],[-10,1],[-1,-3],[-3,8],[-11,5],[-5,1],[-13,-2],[-6,-3],[-4,2],[-9,5],[-5,1],[-11,7],[-4,10],[-9,5],[-7,6],[-3,4],[3,6],[-7,6],[4,6],[1,8],[-1,9],[-6,9],[-4,3],[-6,17],[-9,10],[-8,2],[-6,9],[3,3],[9,5],[2,4],[2,-2],[-3,-4],[10,2],[1,2],[6,1],[3,4],[4,14],[-5,4],[3,7],[8,3],[-1,5],[9,16],[-16,12],[2,6],[-6,3],[-3,6],[9,7],[3,8],[5,4],[5,7],[6,11],[3,2],[1,8],[2,1],[-2,9],[-2,9],[10,7],[2,10],[-1,5],[11,-1],[-3,4],[-2,-1],[-13,1],[-1,4],[11,-1],[12,7],[3,4],[18,14],[-1,2],[5,2],[-1,3],[6,9],[6,1],[3,3],[19,-3],[3,2],[10,-3],[16,6],[2,-1],[14,12],[9,4],[4,6],[-4,2],[-1,9],[4,2],[15,2],[3,-5],[17,-2],[4,2],[11,11],[7,5],[-3,4],[4,4],[5,1],[-7,16],[-4,3],[-7,15],[8,9],[4,2],[2,-8],[10,-4],[6,3],[8,-1],[6,2],[3,-10],[-3,-3],[2,-12],[9,-1],[2,-9],[5,-1],[1,-5],[-1,-11],[5,-15],[8,-7],[0,-5],[6,-8],[5,1],[4,-8],[5,-5],[9,-4],[1,-4],[6,1],[8,-6],[1,-2],[5,4],[4,-1],[2,-5],[2,-10],[11,-4],[4,-3],[16,-1],[8,1],[6,2],[27,6],[21,6],[12,5],[1,3],[10,3],[13,6],[10,9],[14,1],[17,12],[2,0],[-3,10],[-4,3],[1,9],[-6,11],[-5,4],[-5,7],[9,3],[0,2],[8,-2],[-1,6],[9,5],[3,5],[-6,8],[0,4],[5,0],[16,11],[18,4],[5,-2],[5,-4],[7,-2],[3,4],[4,0],[7,-3],[1,-11],[27,-1],[3,2],[11,2],[12,4],[9,5],[6,12],[2,4],[7,-4],[10,1],[3,3],[5,-4],[1,4],[5,3],[0,2],[9,4],[6,6],[15,3],[4,-9],[5,-5],[-3,-4],[5,-5],[4,0],[7,-5],[12,0],[7,-11],[0,-9],[5,-10],[2,-2],[-3,-5],[-3,-5],[4,-9],[-5,3],[-4,-2],[1,-5],[5,-2],[-2,-6],[6,1],[5,-7],[13,-7],[18,-4],[0,0],[15,-3],[48,6],[11,5],[1,8],[3,2],[7,-4],[9,-2],[1,-2],[7,2],[-4,-8],[5,-5],[1,-9],[-3,-7],[6,-2],[-7,-5],[4,-12],[7,-3],[8,-6],[6,-7],[17,-5],[5,-5],[10,-1],[2,-4],[9,-7],[19,-5],[3,-4],[7,-4],[9,-3],[15,-2],[8,1],[3,-2],[11,1],[13,-4],[0,-1],[-11,4],[-4,-1],[1,-3],[6,-2],[-5,0],[4,-6],[8,0],[16,-3],[11,-3],[19,3],[16,1],[0,0],[15,3],[5,3],[19,2],[0,1],[29,9],[5,3],[13,4],[9,5],[10,4],[21,11],[1,2],[6,2],[1,-2],[11,1],[1,2],[7,0],[2,-3],[11,1],[7,4],[7,-2],[8,3],[3,5],[10,-1],[-1,-4],[7,0],[-1,-4],[6,-2],[1,-2],[7,-1],[6,-6],[21,2],[5,-3],[12,-3],[15,2],[13,5],[7,6],[4,-5],[13,-5],[4,2],[11,-1],[19,-3],[13,-3],[21,-2],[4,-1],[14,4],[4,-3],[7,-2],[12,1],[22,3],[10,6],[20,-4],[10,1],[17,6],[15,8],[3,3],[9,5],[15,-2],[2,-4],[7,-1],[13,1],[4,-1],[16,3],[5,2],[23,3],[11,6],[10,8],[4,2],[20,-2],[10,2],[7,3],[3,3],[10,3],[3,2],[2,-3],[16,5],[14,11],[11,4],[1,2],[17,14],[24,24],[6,7],[7,6],[4,5],[8,5],[1,-4],[18,-7],[2,1],[8,-3],[12,4],[23,5],[16,2],[4,3],[6,1],[12,-1],[9,2],[7,2],[8,9],[7,3],[6,6],[6,-2],[5,-6],[15,-5],[2,-7],[4,-2],[6,-7],[7,-6],[11,-2],[14,1],[1,-1],[26,0],[12,2],[2,-5],[13,-2],[-7,0],[0,-9],[5,-5],[14,-5],[8,-2],[9,1],[9,3],[2,2],[13,6],[5,4],[14,3],[11,5],[0,1],[11,4],[5,4],[11,11],[14,12],[12,16],[4,11],[5,9],[5,15],[-4,1],[-1,8],[2,6],[-1,3],[-11,5],[8,1],[4,-2],[6,-6],[-1,-2],[5,-3],[3,-10],[-4,-7],[0,-6],[-5,-3],[1,-10],[6,-4],[13,-3],[43,4],[25,4],[26,7],[10,3],[26,12],[8,1],[11,6],[6,2],[20,14],[6,5],[7,3],[10,7],[14,10],[14,2],[4,2],[8,-1],[7,-3],[5,-5],[11,-6],[5,-2],[28,-8],[31,-4],[-1,-2],[-8,-1],[-2,-2],[-13,-2],[0,-1],[-16,-3],[0,-1],[-14,-4],[-7,-9],[-8,-5],[-4,-8],[1,-7],[-5,-3],[1,-7],[-4,-4],[3,-10],[3,5],[-3,4],[12,-3],[-9,-8],[-10,-11],[-4,-7],[-6,-6],[-11,-18],[-4,-4],[-3,-10],[-6,-6],[-1,-6],[-5,-8],[-3,-8],[-5,-5],[-2,-7],[-8,-7],[-6,-10],[-8,-7],[-7,-4],[-6,-7],[-9,-8],[-32,-36],[0,-1],[-18,-19],[-4,-6],[-15,-15],[-3,-5],[-5,-4],[-4,-9],[1,-4],[-6,-1],[-13,-13],[-3,-4],[-12,-10],[-8,-11],[6,-6],[-2,-3],[4,-2],[-5,0],[0,-1]],[[4478,1160],[0,0],[12,-2],[7,-2],[0,-3],[9,-7],[13,-3],[1,5],[8,0],[8,-6],[3,-6],[4,0],[6,-7],[6,0],[0,-4],[5,1],[-1,-4],[6,-15],[-12,-28],[-9,-3],[-2,-5],[-25,0],[-7,1],[-2,5],[-9,4],[0,5],[-8,12],[-11,3],[-2,8],[-6,4],[-3,6],[-5,1],[-9,12],[1,1],[0,6],[-2,1],[6,10],[1,4],[8,-1],[0,5],[8,2],[1,0]],[[7005,2612],[0,-4],[4,-10],[-3,-7],[1,-7],[6,-5],[7,1],[3,-3],[-3,-4],[-9,-1],[-7,1],[-1,-16],[3,-7],[-4,-10],[-3,-1],[-8,4],[0,5],[-6,4],[1,2],[-3,4],[-14,2],[-7,6],[-4,5],[-3,1],[-1,11],[14,26],[11,2],[2,-2],[23,3],[1,0]],[[6927,2664],[3,-1],[1,-12],[3,-6],[-2,-1],[-4,-7],[3,-12],[-16,-3],[-13,6],[-4,4],[-10,1],[-15,6],[-6,8],[9,14],[0,2],[11,0],[28,-2],[3,2],[9,1]],[[6988,2506],[0,0]],[[6988,2506],[0,1],[-3,2],[2,5],[7,6],[8,2],[-2,9],[7,2],[6,-5],[-1,-3],[-7,-3],[2,-6],[7,1],[0,-3],[5,-2],[5,3],[13,-13],[2,-5],[-1,-7],[6,-5],[-9,-5],[-2,-3],[-15,2],[-4,5],[-15,6],[-7,13],[-2,4],[-2,-1]],[[4761,2088],[-1,0]],[[4760,2088],[-7,3],[-3,10],[-3,5],[4,8],[9,-3],[6,4],[3,0],[2,5],[3,1],[6,-4],[3,-11],[6,-6],[11,5],[10,0],[3,-7],[7,-4],[5,2],[3,-4],[-3,-12],[-6,2],[-6,-4],[-4,7],[-7,4],[-2,3],[-5,0],[-1,-2],[-13,3],[-7,-4],[-2,2],[-11,-3]],[[4986,16],[-4,0],[-15,4],[-1,-1],[-9,2],[-3,3],[5,6],[11,0],[24,-4],[20,-2],[6,0],[7,4],[3,-4],[15,-1],[4,-2],[-1,-2],[-7,-2],[6,-8],[-2,-6],[2,-2],[-9,-1],[-6,2],[-8,-1],[5,4],[-4,3],[-2,-4],[-7,3],[-11,1],[-8,3],[-2,5],[-8,0],[-1,0]],[[7225,2861],[1,-1],[17,-5],[-11,-15],[-4,-10],[-4,0],[-3,-4],[-24,14],[1,7],[9,2],[11,11],[4,1],[3,0]],[[4569,2155],[1,0],[1,-3],[-3,-1],[3,-10],[8,-8],[6,-8],[1,-7],[8,-1],[-6,-3],[-4,4],[-8,0],[-8,2],[-4,-1],[-9,6],[1,5],[-5,5],[-2,4],[1,4],[-3,1],[-2,8],[-3,-2],[-1,5],[17,-1],[9,-1],[2,2]],[[6663,2666],[2,0],[12,-4],[7,-1],[3,-8],[-2,-2],[1,-6],[3,-2],[8,0],[-5,-5],[-3,2],[-14,3],[-10,-1],[-2,4],[-6,4],[-5,7],[3,9],[6,0],[2,0]],[[5510,2781],[14,-5],[-3,-4],[1,-2],[-8,-6],[-11,-8],[-16,2],[0,5],[5,8],[-1,4],[8,2],[7,4],[4,0]],[[4899,2079],[0,-6],[-6,-2],[-2,-4],[3,-5],[2,-10],[-2,-11],[3,-7],[-5,-7],[-7,23],[-1,10],[-7,7],[2,4],[10,1],[10,7]],[[4793,2150],[-6,10],[1,9],[6,0],[3,10],[7,-15],[9,-8],[-1,-5],[-10,-3],[-7,2],[-2,0]],[[5252,329],[2,0],[2,-2],[3,-10],[-7,-5],[-1,2],[-13,-2],[-4,5],[-3,9],[7,3],[8,0],[6,0]],[[6502,2639],[4,-8],[-3,-9],[-12,-4],[-7,6],[-1,3],[2,8],[12,4],[5,0]],[[7098,2719],[6,-3],[-3,-12],[-8,-5],[-8,2],[4,15],[2,-1],[6,4],[1,0]],[[4913,2049],[1,-3],[-5,-3],[-2,4],[2,2],[4,0]],[[7166,1031],[1,0],[-2,-4],[-5,-1],[1,4],[5,1]],[[7131,2733],[0,1]],[[7131,2734],[2,0],[5,0],[-7,-3],[0,2]],[[5555,2344],[0,0]],[[4899,2064],[0,0]],[[4934,2171],[1,-2],[-7,2],[6,0]],[[4787,49],[0,0]],[[4867,2150],[0,0]],[[4770,2088],[0,0]],[[4873,2152],[0,0]],[[7128,1118],[0,0]],[[7135,2712],[0,0]],[[4986,16],[0,0]],[[7121,2713],[0,0]],[[7178,1783],[0,0]],[[7291,2032],[0,0]],[[7260,1281],[0,0]],[[4793,2150],[0,0]],[[4760,2088],[1,0]],[[4761,2088],[-1,0]],[[4767,2086],[0,0]],[[7131,2734],[-1,-1]],[[7130,2733],[1,1]],[[6987,2506],[1,0]],[[6988,2506],[-1,0]],[[6078,1396],[0,0]],[[7093,2718],[0,0]],[[4928,2172],[0,0]],[[4901,2042],[0,0]],[[4911,1929],[0,0]],[[7128,2708],[0,0]],[[1275,4405],[2,0],[2,1],[-2,8],[-3,1],[2,9],[12,1],[12,6],[2,3],[7,0],[1,4],[6,10],[-3,4],[5,7],[0,4],[3,3],[-3,3],[8,2],[-2,8],[-5,-1],[-9,3],[-8,2],[-2,3],[1,5],[-3,4],[-13,6],[-6,9],[-14,5],[4,1],[-1,5],[9,1],[-1,5],[9,9],[9,11],[1,4],[-3,4],[3,2],[-4,6],[-2,4],[1,4],[6,4],[6,0],[2,3],[1,6],[7,2],[-3,4],[5,2],[0,4],[4,4],[-4,3],[7,3],[0,4],[4,6],[3,1],[4,10],[6,8],[0,4],[-1,3],[4,6],[-1,7],[-5,3],[4,3],[-10,2],[0,3],[-6,5],[-8,1],[-2,4],[3,4],[-13,9],[6,6],[-2,3],[3,7],[4,2],[-1,3],[6,2],[4,11],[4,-1]],[[1327,4722],[0,-1]],[[1327,4721],[6,-6],[1,-3],[7,-4],[13,-1],[0,-3],[-5,-7],[-3,-9],[5,-7],[1,-8],[-2,-4],[9,-10],[4,-6],[6,-3],[9,-10],[16,-12],[7,-6],[13,-7],[14,-3],[19,-2],[1,8],[17,2],[-16,-2],[-2,-9],[8,-3],[3,2],[7,-1],[6,3],[2,3],[11,-6],[1,2],[17,-1],[3,2],[3,-5],[7,-2],[1,-3],[11,-4],[4,-3],[29,-2],[1,1],[28,2],[2,1],[22,3],[12,3],[22,9],[2,0],[14,7],[6,6],[6,3],[8,16],[19,11],[14,4],[14,8],[5,2],[0,2],[6,3],[5,-1],[10,5],[1,-4],[11,2],[6,0],[6,3],[13,-3],[5,2],[2,-2],[12,3],[7,4],[11,8],[11,6],[23,22],[16,16],[2,4],[7,7],[-2,3],[4,3],[0,4],[-5,6],[10,1],[4,-1],[-6,8],[0,4],[10,-3],[5,6],[15,3],[3,-2],[1,6],[5,3],[4,-2],[2,5],[6,6],[8,3],[2,6],[7,6],[3,1],[2,4],[10,5],[0,4],[9,13],[6,1],[3,6],[7,9],[16,4],[6,6],[5,3],[6,1],[8,-5],[0,-4],[10,1],[9,-1],[6,2],[17,3],[13,11],[-3,7],[3,2],[3,-3],[16,2],[4,-1],[2,4],[8,3],[1,4],[5,2],[2,7],[-5,2],[1,2],[-7,3],[3,5],[-6,1],[0,8],[3,1],[4,6],[2,5],[-1,6],[2,7],[-9,4],[-5,-4],[-8,2],[0,9],[5,3],[5,-1],[8,-4],[0,-5],[5,5],[12,6],[2,0]],[[2150,4961],[2,-3],[6,2],[1,-6],[9,9],[4,-3],[1,5],[2,2],[15,3],[3,-1],[-1,-8],[3,-3],[3,2],[17,-6],[1,-3],[5,2],[8,-7],[2,-13],[-6,-11],[-3,-2],[-1,-4],[6,-3],[2,6],[4,10],[4,7],[6,-11],[3,-1],[0,-4],[-8,-2],[-1,-4],[15,-3],[10,2],[0,8]],[[2262,4921],[1,0]],[[2263,4921],[3,-2],[-3,-3],[10,-9],[8,4],[-2,1],[-3,0]],[[2276,4912],[-3,2],[7,6],[-1,3],[11,3],[3,-4],[6,3],[3,-2],[-1,-9],[2,-5],[7,-4],[5,4],[7,-8],[3,3],[5,-5],[18,2],[3,-1],[-3,-11],[-8,-1],[-5,-4],[1,-2],[11,-1],[11,-3],[-3,-6],[7,-4],[-1,-4],[3,-2],[6,2],[-3,-6],[-3,-3],[2,-5],[-1,-9],[5,-7],[3,1],[-1,5],[4,4],[7,4],[3,7],[5,2],[1,6],[-7,5],[2,3],[4,-3],[5,3],[4,-3],[4,5],[7,-6],[6,4],[6,-2],[0,-2],[7,4],[-3,6],[10,5],[4,-4],[-4,-5],[6,-2],[4,-4],[-10,-4],[8,0],[2,2],[7,-3],[-4,-6],[-1,-11],[7,-1],[8,6],[5,-1],[5,-7],[-5,-7],[1,-5],[0,-6],[-5,-6],[-8,-3],[-6,2],[1,7],[-3,1],[-5,-7],[-2,-7],[-3,-3],[2,-4],[7,0],[-4,-3],[-6,-5],[-4,-7],[3,-6],[-3,-1],[3,-6],[-5,-3],[-4,-8],[1,-3],[-8,-2],[-1,-3],[8,-3],[2,2],[6,0],[4,8],[-5,0],[3,2],[0,7],[4,-3],[4,2],[15,7],[6,0],[1,-3],[-6,-2],[6,-5],[-4,-4],[-2,-7],[-4,-4],[4,-4],[7,5],[9,-6],[3,1],[0,8],[7,-2],[4,7],[14,0],[3,-6],[8,-2],[11,-7],[19,3],[6,-6],[-9,-11],[-24,8],[-2,-1],[-1,8],[-11,0],[1,-4],[-9,-2],[1,-3],[-10,-2],[-3,-3],[2,-2],[-4,-3],[10,-10],[-5,-8]],[[2489,4712],[-5,1],[-3,-5],[0,-8],[-3,1],[-2,-3],[-4,-6],[5,-3],[1,-3],[-10,-5],[-5,5],[-12,-3],[-7,6],[-6,0],[-16,-4],[-5,1],[19,-4],[0,-2],[-8,1],[-11,-2],[-1,-3],[8,-4],[11,3],[1,0]],[[2436,4675],[0,0]],[[2436,4675],[0,0]],[[2436,4675],[3,-2],[6,2],[12,2],[8,-1],[4,2],[4,-7],[8,2],[-6,-5],[14,-8],[4,2],[6,4],[8,11],[14,1],[10,-2],[6,2],[-2,-4],[-13,-11],[-2,-6],[-6,0],[-2,-5],[10,-1],[9,-6],[7,-6],[0,5],[6,-1],[3,-5],[-3,-2],[1,-6],[-1,-5],[9,-2],[3,-3],[7,8],[10,-4],[0,-4],[6,-6],[4,2],[4,-6],[2,2],[7,1],[6,-4],[4,4],[-1,-5],[-8,-5],[-6,-2],[-2,3],[-4,-1],[-6,3],[-7,-1],[0,-6],[-5,-2],[5,-6],[-1,-3],[5,-2],[-14,-7],[-4,-15],[1,-3],[6,-9],[8,-7],[16,-9],[7,-2],[2,-4],[-3,-7],[-4,0],[4,-4],[-1,-5],[4,-1],[-4,-9],[2,-8],[6,-8],[12,-5],[1,1],[6,-5],[5,-15],[-2,-11],[1,-4],[-5,-3],[-2,-16],[3,-9],[7,-5],[-2,-5],[3,-12],[11,-11],[10,-1],[3,-2],[0,-4],[6,-7],[3,-12],[-2,-3],[6,-7],[14,-4],[10,-6],[0,-12],[-5,-18],[-4,-8],[-5,-6],[-2,-8],[-3,-3],[-9,-20],[-11,-6],[-3,-7],[-4,-2],[1,-16],[-4,-6],[-1,-6],[-4,-2],[-5,-5],[-2,-4],[-11,1],[-11,-6],[-2,-3],[-5,-2],[-13,-12],[-9,-6],[-5,-6],[-6,-5],[-1,-3],[-21,-27],[-9,-8],[-3,-6],[-4,-2],[-4,-6],[-4,-12],[-2,-20],[2,-10],[2,-1],[0,-10],[-2,-3],[2,-15],[2,-6],[3,-6],[8,-4],[2,-8],[4,-3],[3,-16],[7,-4],[2,-5],[4,0],[4,-7],[8,-7],[1,-5],[3,-2],[16,-6],[1,-2],[13,-5],[0,-2],[8,-4],[1,-9],[-7,-4],[0,-9],[-5,-5],[0,-5],[-4,-2],[-7,-8],[-7,-16],[2,-8],[-2,-1],[-1,-7],[-7,-11],[-3,-2],[1,-7],[-2,-22],[8,-11],[9,-2],[2,3],[-4,4],[8,-5],[-2,-2],[4,-2],[-2,-11],[-4,3],[-5,-6],[-2,3],[-5,-1],[-9,-15],[-2,-10],[0,-8],[4,-3],[-3,-6],[5,-5],[-1,-3],[6,-1],[-1,-4],[3,-1],[-3,-5],[-9,-12],[-4,-12],[-4,-21],[-1,0],[-2,-25],[3,-5],[2,-8],[-1,-15],[1,-11],[-1,-1],[3,-9],[-6,-4],[0,-5],[-9,-8],[2,-1],[2,-7],[-3,-13],[-6,-2],[-5,-13],[0,-5],[4,-6],[-2,-7],[3,-3],[-1,-6],[3,-4],[-1,-5],[2,-2],[-1,-14],[1,-9],[-1,-7],[-5,-9],[1,-10],[-7,-2],[-4,-15],[-4,-14],[-1,0],[10,-17],[1,-5],[-3,-4],[1,-9],[2,-1],[1,-9],[-6,-10],[3,-2],[-10,-14],[-2,-1],[-6,-12],[-3,-9],[-2,-1],[-5,-12],[-9,-28],[-1,-13],[1,-10],[5,-11],[9,-6],[5,0],[0,-4],[4,1],[1,0]],[[2522,3288],[1,-3],[4,-1],[-6,-6],[-6,2],[-6,-1],[-17,-15],[-5,-9],[-4,-5],[-2,-6],[-3,-3],[-3,-7],[0,-7],[-2,-5],[-1,-14],[2,-1],[-1,-5],[-5,-14],[11,-4],[2,-2],[1,-6],[-3,-5],[-5,0],[-2,-8],[-1,-10],[-2,-8],[-4,-3],[-1,-6],[-7,1],[-10,0],[-6,-3],[-8,-9],[-2,-6],[4,-1],[-4,-3],[3,-9],[-9,4],[-1,5],[-7,1],[3,5],[-2,2],[5,1],[0,7],[-5,5],[-16,4],[-3,-3],[-11,-3],[-7,-1],[-6,2],[-4,-4],[-6,-2],[-5,1],[-1,7],[-9,2],[-4,-1],[-11,9],[-3,-2],[-8,3],[3,7],[-1,3],[-9,1],[1,5],[-4,3],[-8,2],[1,3],[-6,4],[-12,0],[-7,7],[-2,7],[-17,10],[-15,-1],[-1,6],[-2,2],[-23,0],[-4,3],[-6,-1],[-12,1],[-9,9],[-19,0],[-10,-3],[-10,-4],[-11,-6],[-9,-8],[-2,-9],[7,-2],[-4,-7],[-5,-1],[-3,4],[-4,0],[-2,-3],[-5,3],[-11,12],[0,0],[-3,1],[-3,6],[-5,1],[0,2],[-7,2],[-7,-3],[-2,3],[-5,-2],[2,-2],[-11,-4],[0,-2],[-7,-1],[-11,-8],[-17,-16],[-4,-7],[-5,-3],[-7,-11],[-1,0],[-3,-15],[-5,-9],[2,-5],[4,-5],[-1,-13],[1,-6],[7,-6],[1,-3],[5,-4],[3,-5],[5,-3],[4,-7],[-10,-20],[-4,-2],[-4,-9],[-1,-17],[-5,-2],[-3,-8],[6,-3],[-4,-2],[-3,5],[-7,-2],[-6,1],[-2,-4],[3,-4],[-6,-1],[-23,-20],[-5,-2],[-12,-10],[-16,-9],[-10,-9],[-5,-9],[-3,0],[-8,-5],[-2,-3]],[[1903,2935],[-1,0]],[[1902,2935],[-1,0],[-2,-3],[-5,1],[-8,-8],[-2,1],[-8,-8],[-11,-2],[-6,4],[-1,-2],[-7,2],[-2,3],[1,6],[-6,-1],[-1,4],[-10,-3],[-4,7],[-3,-1],[2,-10],[-3,4],[-9,4],[0,2],[-9,5],[4,7],[-17,4],[-18,10],[-7,2],[-9,6],[2,-4],[-5,-3],[-9,-9],[-5,-3],[-4,3],[-5,-2],[-6,-6],[-11,-1],[-3,4],[-2,-5],[4,-1],[0,-5],[2,-1],[-5,-5],[-5,1],[-4,3],[-4,-3],[-1,-4],[9,-6],[-2,-11],[-5,-3],[-6,1],[1,-3],[-7,3],[5,2],[5,5],[-6,6],[6,8],[-3,3],[-17,-2],[-2,-3],[-11,1],[-3,4],[1,7],[6,8],[6,3],[-2,10],[4,4],[-1,9],[-4,8],[-10,9],[-8,-1],[1,-3],[-8,-3],[-2,3],[3,4],[-7,7],[-2,4],[-4,1],[3,3],[-1,4],[-3,6],[-6,6],[1,11],[8,5],[0,6],[-9,18],[-2,1],[-10,-2],[-11,5],[-2,2],[1,5],[-9,1],[-5,2],[-22,1],[-11,-2],[-9,-6],[-2,2],[0,-8],[-4,-7],[-3,-2],[-5,-12],[-1,0],[-1,-15],[-2,-5],[2,-1],[-1,-5],[2,-2],[-7,-6],[-2,-4],[3,-7],[-6,-2],[-4,-6],[-13,0],[-2,-5],[-6,2],[-4,4],[-1,11],[-3,0],[-4,12],[-5,3],[-3,6],[1,8],[-7,2],[-1,4],[-8,12],[-2,1],[-3,6],[1,5],[-1,9],[-2,2],[-1,9],[-6,14],[3,-2],[5,6],[-5,3],[-1,8],[4,-3],[3,1],[1,9],[3,0],[2,4],[5,-1],[5,-10],[6,-1],[8,2],[5,3],[8,-2],[11,6],[12,-14],[10,-4],[5,-4],[2,-10],[3,-10],[3,-2],[9,1],[1,10],[6,7],[0,8],[-6,4],[-5,12],[1,5],[-2,0],[-4,6],[-7,1],[-12,-3],[-5,-5],[2,6],[-4,3],[1,6],[-3,1],[5,10],[-3,1],[2,8],[-1,4],[-9,8],[-7,5],[-5,2],[-3,-10],[5,-1],[-1,-3],[4,-3],[-3,-4],[-6,16],[-2,1],[-3,9],[0,12],[-4,5],[-6,-5],[1,4],[-3,2],[-9,7],[-5,1],[-2,4],[2,3],[-3,9],[6,3],[2,3],[7,4],[6,6],[7,3],[4,7],[6,5],[12,4],[3,8],[2,1],[4,8],[0,5],[-5,17],[-4,4],[-5,1],[0,10],[-3,4],[-18,2],[-2,3],[2,6],[-4,0],[-3,5],[1,7],[2,2],[-12,3],[-2,5],[5,-1],[0,9],[4,2],[1,7],[9,3],[0,4],[6,2],[8,27],[-2,5],[-17,6],[-6,5],[0,7],[3,1],[-2,6],[2,3],[11,10],[4,0],[2,4],[4,3],[4,6],[3,2],[8,13],[4,2],[4,7],[10,13],[3,7],[-2,3],[4,4],[-1,3],[3,3],[1,6],[3,1],[2,12],[-1,3],[5,5],[-4,9],[0,6],[-6,0],[0,4],[-6,1],[-1,12],[2,7],[-1,8],[-2,4],[8,10],[-6,1],[-1,4],[-6,6],[7,8],[3,17],[-2,2],[-6,-1],[3,7],[1,6],[-5,3],[2,4],[-1,11],[-2,9],[13,9],[2,-5],[10,-14],[5,-6],[12,-15],[3,-1],[-6,-6],[11,-1],[4,7],[-3,5],[5,4],[9,12],[-7,6],[9,8],[8,9],[6,9],[5,10],[3,19],[2,4],[3,28],[1,7],[-5,4],[-5,-1],[-4,3],[5,6],[-4,4],[-2,9],[-8,7],[-17,8],[-13,-2],[-1,3],[-4,-5],[-18,0],[4,-3],[-6,-3],[-17,-14],[-3,-14],[-2,-4],[-3,-1],[-2,5],[6,3],[-2,4],[2,3],[-9,13],[-15,9],[-7,-2],[-3,8],[1,2],[-1,10],[3,9],[-1,1],[2,9],[-3,4],[1,11],[-4,8],[-4,3],[6,10],[6,8],[5,3],[-1,3],[3,14],[-5,4],[-3,7],[-7,1],[-1,-2],[-14,-1],[0,8],[5,2],[1,3],[4,-2],[8,4],[-1,3],[4,2],[3,-8],[2,-1],[14,2],[7,7],[4,0],[3,-4],[11,3],[9,7],[19,17],[2,7],[-4,7],[1,5],[3,2],[-4,4],[-1,5],[-6,9],[-9,14],[-6,8],[-1,10],[2,7],[-3,12],[3,1],[4,7],[0,7],[-4,9],[2,9],[2,3],[-4,3],[11,15],[0,6],[3,4],[1,10],[4,6],[-1,9],[-12,6],[-4,11],[-2,10],[-6,3],[-10,-2],[-8,12],[-8,2],[-3,2],[-2,-2],[-8,0],[-1,2],[-13,0],[-7,1],[3,9],[-7,8],[1,3],[9,3],[-2,7],[4,5],[2,8],[-2,2],[3,2],[4,7],[-1,10],[-1,15],[-4,6],[1,2],[-9,14],[0,8],[-3,2],[-1,7],[-3,5],[-2,8],[-4,5],[-12,2],[-4,4],[-5,-3],[-5,6],[-5,15],[-6,7],[-2,10],[-3,7],[-3,11],[2,0],[-7,15],[-9,8],[-5,2],[-5,-2],[-8,1],[-7,-2],[-2,-7],[-9,0],[-4,2],[-4,-2],[-6,-11],[-19,0],[-2,2],[-9,-1],[-4,1],[-1,4],[6,4],[3,8],[-4,2],[8,0],[5,6],[0,4],[-7,9],[-15,3],[-3,-4],[1,-6],[-12,-11],[-7,-2],[2,-2],[1,-8],[-4,4],[-4,-5],[3,-14],[-3,0],[-4,7],[2,3],[-3,5],[-4,-2],[-1,12],[-4,6],[2,3],[-3,1]],[[1343,4778],[-3,4],[3,3],[9,-1],[2,4],[11,2],[5,5],[1,9],[6,2],[0,3],[7,1],[2,3],[8,2],[-3,8],[-7,7],[-1,4],[3,4],[24,0],[6,3],[-1,4],[2,4],[6,2],[8,-8],[-3,-9],[16,-3],[4,-8],[-9,-7],[-1,-3],[-2,-2],[5,-3],[-2,-9],[-8,-2],[3,-7],[-6,5],[-17,3],[-6,0],[-4,3],[-11,3],[-1,-6],[-5,-4],[-6,1],[-1,-3],[-4,-2],[7,-3],[-9,-3],[-1,-4],[-5,-5],[-4,1],[-6,-5],[-1,-4],[10,3],[-1,-9],[1,-3],[6,-2],[2,-5],[4,-4],[-1,-5],[-2,-4],[-11,-3],[-8,2],[-6,0],[-1,-2],[-6,3],[-10,-2],[3,6],[3,1],[-5,4],[-1,3],[9,8],[3,1],[4,10],[-10,-1],[3,4],[2,6],[1,0]],[[1359,3166],[8,4],[1,-2],[10,6],[0,6],[6,-3],[11,3],[8,-3],[1,3],[6,4],[5,0],[-2,-3],[1,-12],[-2,-7],[4,-9],[-3,-4],[5,-6],[-5,-7],[1,-3],[1,-14],[-2,-6],[-8,-3],[-1,-5],[-3,-1],[-5,2],[-12,0],[-9,4],[-7,2],[-1,3],[-5,1],[4,6],[4,1],[-10,7],[4,1],[2,4],[-17,11],[-7,-2],[-3,6],[5,9],[-1,2],[5,2],[-1,3],[12,0]],[[2347,4932],[0,1],[-10,-2],[-1,-2],[-21,-1],[3,4],[-4,1],[-3,5],[6,11],[3,-2],[3,7],[7,1],[4,8],[-4,9],[5,-1],[4,-8],[5,5],[-2,3],[1,7],[12,-3],[1,-8],[-2,-6],[7,1],[-1,-5],[2,-3],[-4,-12],[4,7],[6,2],[0,-6],[-6,-1],[3,-5],[-1,-3],[-4,-1],[-2,-3],[-5,-1],[-6,1]],[[2367,4920],[2,2],[9,-3],[0,3],[-7,0],[3,5],[0,10],[-1,2]],[[2373,4939],[0,0]],[[2373,4939],[-1,0]],[[2372,4939],[4,2],[5,-2],[-1,8],[1,5],[0,4],[8,0],[2,3],[3,-6],[6,-1],[2,-15],[3,1],[-2,-3],[-5,0],[1,-6],[-2,-2],[0,-8],[-4,-4],[-6,-3],[-2,-4],[3,-3],[11,3],[-10,-16],[-1,7],[2,1],[-3,4],[-12,4],[3,3],[-7,1],[-4,-4],[1,-3],[-6,-2],[1,5],[-4,1],[9,2],[-2,1],[1,7],[0,1]],[[2613,4682],[-3,-6],[5,3],[3,-4],[0,-5],[-11,-3],[-15,-7],[-8,-6],[-7,-4],[-9,6],[-4,-3],[0,3],[8,1],[7,6],[6,2],[8,6],[11,4],[4,2],[5,5]],[[2279,4944],[0,1]],[[2279,4945],[-5,5],[2,2],[-1,9],[5,4],[7,-2],[6,-1],[5,-6],[-2,-5],[-8,-6],[-6,1],[-2,-2],[-1,0]],[[2608,4641],[12,-5],[-4,-5],[1,-3],[-8,-2],[-17,7],[4,7],[10,-1],[0,2],[2,0]],[[2329,4917],[9,4],[2,5],[12,-9],[-2,-6],[-11,-3],[-2,6],[-1,-3],[-6,6],[-1,0]],[[2303,4995],[-1,0]],[[2302,4995],[1,3],[-5,5],[6,1],[-1,3],[6,0],[4,3],[0,3]],[[2313,5013],[1,0]],[[2314,5013],[4,-9],[-7,-5],[-2,2],[-6,-6]],[[2287,4997],[7,-1],[3,-2],[-2,-8],[-8,-1],[0,2],[-5,0],[-6,4],[9,2],[2,4]],[[2282,5013],[7,-6],[4,0],[0,-7],[-2,2],[-13,1],[10,2],[-10,2],[-2,4],[6,2]],[[1335,4732],[1,0],[9,-6],[-6,0],[4,-5],[-4,-2],[-5,1],[1,3],[-3,7],[3,2]],[[1416,3882],[1,0],[0,-5],[-4,-3],[-6,-1],[9,9]],[[2507,4818],[0,-4],[-5,-2],[5,-2],[-2,-2],[-9,4],[2,2],[9,4]],[[2482,4805],[-8,-5],[3,3],[1,3],[4,-1]],[[2440,3100],[3,0],[2,-6],[-7,1],[2,5],[0,0]],[[2314,5013],[0,0]],[[2313,5013],[-7,0]],[[2306,5013],[0,0]],[[2306,5013],[0,1]],[[2306,5014],[8,2],[0,-2],[0,-1]],[[2505,3147],[1,-6],[-3,-3],[0,9],[2,0]],[[2431,4889],[-1,0]],[[2430,4889],[7,1],[1,-3],[-7,2]],[[1424,3191],[0,0]],[[2535,4732],[0,0]],[[2541,4652],[1,0],[4,-1],[-7,-2],[2,3]],[[1275,4405],[-1,0],[-4,-1],[1,3],[4,-2]],[[2330,5004],[0,0]],[[1499,2905],[2,-1],[-4,-3],[1,4],[1,0]],[[2332,4994],[0,0]],[[1757,2951],[0,0]],[[1532,2967],[0,0]],[[2267,4965],[0,0]],[[2473,4857],[0,-1]],[[2473,4856],[0,1]],[[2404,4905],[0,0]],[[2404,4905],[0,0]],[[2347,4932],[0,0]],[[2347,4932],[0,0]],[[2336,5000],[0,0]],[[2488,4808],[0,0]],[[1880,4760],[0,0]],[[2383,4898],[0,0]],[[2586,3864],[0,0]],[[2150,4961],[0,0]],[[1283,4378],[0,0]],[[1838,2929],[0,0]],[[2603,4616],[0,0]],[[2195,4967],[1,0]],[[2196,4967],[-1,0]],[[2482,4805],[0,0]],[[2482,4805],[0,0]],[[2276,4912],[0,0]],[[1334,4644],[0,0]],[[1490,3311],[0,0]],[[2473,4857],[0,-1]],[[2685,4351],[0,0]],[[2416,4880],[0,0]],[[2597,4519],[0,0]],[[1367,4773],[0,0]],[[2503,3151],[0,0]],[[2590,4599],[0,0]],[[2472,4861],[0,0]],[[2559,4642],[0,0]],[[2425,4677],[0,0]],[[2474,4849],[0,-1]],[[2474,4848],[0,1]],[[2022,3025],[0,0]],[[2649,4640],[0,0]],[[2533,4649],[0,0]],[[2639,4475],[0,0]],[[2331,4966],[0,0]],[[2486,4665],[0,0]],[[2426,4680],[0,0]],[[1327,4721],[0,1]],[[1327,4722],[0,-1]],[[2489,4712],[0,0]],[[2329,4917],[0,0]],[[2372,4939],[0,0]],[[2373,4939],[-1,0]],[[2470,4853],[0,0]],[[2306,5013],[0,0]],[[2306,5013],[0,1]],[[2303,4995],[-1,0]],[[1423,3183],[0,0]],[[1902,2935],[1,0]],[[1903,2935],[-1,0]],[[2474,4849],[0,-1]],[[2197,4969],[0,0]],[[2436,4675],[0,0]],[[2437,4687],[0,0]],[[2503,3151],[0,0]],[[2503,3154],[0,0]],[[1537,4066],[0,0]],[[2449,3095],[0,0]],[[2449,3095],[0,0]],[[1343,4718],[0,0]],[[1494,3931],[0,0]],[[2564,4630],[0,0]],[[2446,3093],[0,0]],[[1533,2972],[0,0]],[[2527,4679],[0,0]],[[1359,3166],[0,0]],[[2539,4676],[0,0]],[[2332,5007],[0,0]],[[2449,3095],[0,0]],[[1471,4196],[0,0]],[[1454,3218],[0,0]],[[2367,4920],[0,0]],[[2367,4920],[0,0]],[[1522,3113],[0,0]],[[1301,4695],[0,0]],[[2279,4944],[0,0]],[[2279,4944],[0,0]],[[2279,4944],[0,0]],[[2431,4889],[-1,0]],[[2262,4921],[1,0]],[[2590,4640],[0,0]],[[2527,4679],[0,0]],[[2195,4967],[1,0]],[[2404,4905],[0,1]],[[2404,4906],[0,-1]],[[2488,4811],[0,0]],[[2332,4994],[-1,0]],[[2331,4994],[0,1]],[[2331,4995],[1,-1]],[[1333,4735],[0,0]],[[1848,2921],[0,0]],[[1332,4735],[0,0]],[[2095,4883],[0,0]],[[2482,4826],[0,0]],[[2557,4655],[0,0]],[[1543,3093],[0,0]],[[2371,4927],[0,0]],[[2301,4991],[0,0]],[[2301,4991],[0,0]],[[2306,5017],[0,0]],[[2430,4936],[0,0]],[[1437,4316],[0,0]],[[2522,3288],[0,0]],[[2301,4991],[0,1]],[[2301,4992],[0,-1]],[[1563,3965],[0,0]],[[2331,4995],[0,-1]],[[2331,4994],[0,1]],[[2274,5001],[0,0]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment