Skip to content

Instantly share code, notes, and snippets.

@markmarkoh
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markmarkoh/8851722 to your computer and use it in GitHub Desktop.
Save markmarkoh/8851722 to your computer and use it in GitHub Desktop.
Texas vs the North East

If my hometown in Montgomery, New York were to overlay my current location in Austin, Texas.

Experimenting with qGIS, ogr2ogr and TopoJSON.

<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("mystates.topo.json", function(error, map) {
var projection = d3.geo.albers().scale(2600).translate([width/2, 0])
var path = d3.geo.path().projection(projection);
var colors = d3.scale.category20b();
svg.append("g")
.attr("transform", "translate(0,-85)")
.attr("clip-path", "url(#texas)")
.selectAll('path')
.data(topojson.feature(map, map.objects.mystates).features)
.enter()
.append("path")
.attr("d", path)
.attr("id", function(d) {
return d.id;
})
.attr("fill", function(d, idx) {
if ( d.id === "TX" ) return 'none';
return colors(idx)
})
.style("stroke", "#666")
.style("stroke-width", function(d) {
if ( d.id === "TX" ) return 1.5;
return 0.5;
})
//apply mask
svg.append("defs")
.append("clipPath")
.attr("id", "texas")
.append("path")
.attr("d", function() {
return d3.select("#TX").attr("d");
});
var montgomery = {
lat: 41.523333,
lng: -74.236944,
id: "MON"
};
var austin = {
lat: 30.25,
lng: -97.75,
id: "AUS"
};
svg.select("g").selectAll("circle").data([montgomery,austin])
.enter()
.append("circle")
.attr("id", function(d) {
return d.id;
})
.attr("r", function(d) {
if ( d.id === "MON" ) return 3;
return 2000;
})
.attr("fill", "none")
.style("stroke", "#fa0fa0")
.attr("cx", function(d) {
return projection([d.lng, d.lat])[0]
})
.attr("cy", function(d) {
return projection([d.lng, d.lat])[1]
}).transition()
.delay(200)
.duration(2000)
.attr("r", 3)
//move other states in
svg.select("g").selectAll("path:not(#TX),circle:not(#AUS)")
.transition()
.delay(2000)
.duration(4000)
.attr("transform", "translate(-814,404)rotate(9)")
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"mystates":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"name":"Massachusetts"},"id":"MA","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7,8,9,10,11,12,13,14]]]},{"type":"MultiPolygon","properties":{"name":"Texas"},"id":"TX","arcs":[[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]]]},{"type":"Polygon","properties":{"name":"Connecticut"},"id":"CT","arcs":[[22,23,24,-12]]},{"type":"Polygon","properties":{"name":"New Hampshire"},"id":"NH","arcs":[[25,-15,26,27,28]]},{"type":"MultiPolygon","properties":{"name":"Rhode Island"},"id":"RI","arcs":[[[29]],[[30]],[[31]],[[32]],[[33,-9]],[[34,-23,-11]]]},{"type":"Polygon","properties":{"name":"Vermont"},"id":"VT","arcs":[[-14,35,36,-27]]},{"type":"Polygon","properties":{"name":"Ohio"},"id":"OH","arcs":[[37,38]]},{"type":"Polygon","properties":{"name":"Delaware"},"id":"DE","arcs":[[39,40,41,42,43]]},{"type":"MultiPolygon","properties":{"name":"Maryland"},"id":"MD","arcs":[[[44]],[[45]],[[46]],[[47]],[[48]],[[-41,49]],[[50]],[[-43,51,52]]]},{"type":"MultiPolygon","properties":{"name":"New Jersey"},"id":"NJ","arcs":[[[53]],[[54]],[[55,56,57]]]},{"type":"MultiPolygon","properties":{"name":"New York"},"id":"NY","arcs":[[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[-36,-13,-25,66,-57,67,68]]]},{"type":"Polygon","properties":{"name":"Pennsylvania"},"id":"PA","arcs":[[-56,69,-44,-53,70,-39,71,-68]]},{"type":"MultiPolygon","properties":{"name":"Maine"},"id":"ME","arcs":[[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[-29,98]]]}]}},"arcs":[[[9016,7126],[-2,0],[-3,1],[-3,3],[1,1],[2,0],[2,2],[1,-2],[2,-1],[0,-4]],[[9213,7182],[3,-13],[8,-18],[4,-13],[-2,-12],[-9,-4],[-10,1],[-14,0],[-10,2],[-24,17],[-6,4],[-5,7],[1,2],[4,-1],[4,-4],[6,-2],[14,-2],[9,2],[5,-1],[2,-2],[2,0],[2,1],[3,4],[6,3],[4,5],[3,6],[1,6],[-5,-2],[-7,-11],[-4,-2],[8,18],[2,10],[-4,10],[0,1],[4,-1],[2,-4],[3,-7]],[[9105,7181],[-1,-4],[-3,1],[-4,4],[-4,6],[-1,5],[3,4],[4,8],[4,5],[2,-8],[1,-14],[-1,-7]],[[8984,7205],[-2,-4],[-3,1],[2,4],[4,3],[3,1],[4,3],[7,1],[2,4],[1,-2],[2,-4],[-1,-3],[-6,-3],[-4,0],[-3,0],[-6,-1]],[[9068,7229],[-2,-11],[4,3],[2,5],[2,4],[4,-2],[2,-7],[0,-5],[-2,-3],[-5,-4],[3,-4],[3,-2],[8,-1],[3,-23],[-4,-2],[-36,-1],[-7,-3],[-7,-4],[-6,-5],[-8,-12],[-2,0],[-5,3],[-2,4],[-5,9],[-3,3],[0,4],[16,0],[7,8],[3,6],[7,16],[3,4],[3,2],[8,11],[13,8],[3,-1]],[[9024,7223],[-5,-4],[-5,-1],[-6,-2],[-2,3],[3,3],[4,-1],[3,4],[5,7],[10,11],[4,4],[4,4],[4,-1],[4,-3],[-5,-4],[-5,-5],[-6,-4],[-4,-3],[0,-3],[-3,-5]],[[9217,7267],[-5,-1],[10,35],[2,12],[2,-1],[1,-2],[1,-3],[0,-3],[-4,-10],[-7,-27]],[[9013,7879],[0,-3],[2,-16],[-1,-4],[-2,-1],[-12,1],[3,-5],[2,-2],[6,-3],[2,0],[1,0],[1,-2],[1,-4],[-1,-6],[8,-29],[-2,-4],[-8,16],[-2,3],[1,-14],[5,-8],[14,-9],[-4,-3],[-2,-1],[-2,1],[4,-9],[14,-1],[1,-6],[4,-4],[1,4],[0,12],[2,5],[3,3],[7,5],[-1,-7],[1,-4],[2,-1],[4,-1],[2,-1],[0,-3],[-1,-4],[1,-4],[0,-3],[-3,0],[-2,-3],[-1,-4],[-2,-3],[-3,-3],[-1,-1],[-5,1],[0,1],[-1,1],[-1,1],[-3,-3],[-2,-4],[-2,-4],[-2,-3],[-25,-9],[-13,-8],[-4,-4],[2,-3],[-2,-2],[-2,-3],[-1,-4],[-1,-4],[4,2],[3,5],[3,3],[1,-5],[2,-4],[1,-3],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-5,-7],[-2,-1],[-2,-1],[-4,1],[-1,-2],[-1,-6],[2,-5],[3,-4],[3,-2],[-6,-3],[-7,11],[-5,-4],[-2,-6],[0,-4],[2,-7],[0,-11],[1,-4],[2,-4],[-4,0],[-4,8],[-3,2],[-3,-2],[1,-3],[2,-3],[2,-2],[-4,-1],[-5,4],[-3,3],[-3,-6],[3,-1],[2,-2],[2,-3],[1,-4],[-3,0],[-3,-3],[-2,-5],[2,-6],[3,-4],[3,0],[6,5],[-2,-12],[4,-2],[5,0],[3,-6],[-1,-2],[-2,-4],[0,-2],[1,-2],[1,-1],[2,0],[1,1],[1,0],[4,2],[4,3],[3,4],[3,-7],[2,2],[3,5],[0,3],[-4,2],[-3,7],[-1,7],[0,6],[10,-16],[7,-7],[12,-4],[5,-5],[5,-7],[6,-11],[1,-3],[0,-13],[0,-2],[1,0],[4,-4],[4,-9],[6,-16],[6,-8],[-1,-8],[2,-7],[7,-17],[2,-1],[0,-2],[-1,-3],[-3,-2],[-3,-1],[-2,1],[-3,2],[1,1],[3,2],[1,0],[-3,13],[-2,7],[-2,3],[-2,-4],[-3,-22],[-2,2],[-2,1],[-2,-1],[-6,-5],[15,-21],[8,-1],[4,-1],[10,1],[6,-7],[3,-16],[2,-17],[-2,-13],[0,-12],[7,-12],[16,-15],[10,-5],[31,-5],[-3,-2],[-10,0],[-3,-2],[1,-3],[5,-2],[10,0],[8,4],[13,10],[23,9],[8,4],[8,5],[4,3],[6,11],[-1,14],[0,17],[-5,11],[3,0],[2,1],[4,3],[0,3],[-5,1],[-3,3],[-3,4],[-2,1],[-3,-2],[-2,-15],[-3,-5],[0,16],[-1,9],[-1,22],[-1,8],[-5,12],[-9,9],[-7,3],[-6,-7],[-1,-5],[4,0],[1,0],[1,-5],[-5,-4],[-3,4],[-6,11],[-2,3],[-2,1],[-1,1],[0,3],[2,4],[2,2],[3,2],[6,0],[6,-1],[6,-1],[7,-3],[9,-8],[8,-8],[9,-19],[8,-21],[10,-44],[5,-9],[-1,-2],[-1,-1],[-1,0],[-1,0],[-4,4],[-2,1],[-2,-2],[-1,-13],[-1,-6],[5,5],[4,-1],[2,-6],[1,-24],[-2,-31],[-10,3],[-40,-10],[-12,0],[-8,-5],[-3,-1],[-3,-2],[-2,-3],[-4,-9],[-2,-3],[0,5],[3,12],[-4,-1],[-7,-4],[-4,-1],[-8,1],[-3,-1],[-4,-5],[-3,-2],[-3,9],[-4,1],[-2,-4],[-8,-18],[-5,-9],[-6,-4],[-7,-2],[-9,-1],[-7,-2],[-16,-15],[-7,4],[6,10],[3,12],[0,36],[-2,7],[0,7],[2,4],[3,4],[2,4],[-2,5],[3,3],[1,0],[-2,5],[-2,1],[-2,-3],[-1,-6],[-2,0],[-8,8],[-5,4],[-2,-1],[-1,-15],[0,-6],[2,-6],[-6,1],[-3,-5],[-2,-7],[-4,-8],[-3,6],[-3,0],[-2,-4],[0,-2],[0,-2],[-4,-3],[-5,-3],[-2,0],[1,-12],[0,-5],[-3,0],[-1,2],[-2,9],[-1,3],[-2,2],[-6,6],[-1,-12],[-3,-7],[-3,-9],[2,-13],[-6,-7],[-3,-2],[-3,-1],[0,2],[0,2],[-11,-12],[-6,-3],[-7,5],[5,3],[1,6],[-1,7],[-4,6],[1,-10],[-3,-2],[-10,2],[3,-7],[1,-2],[-6,-5],[-1,0]],[[8935,7248],[0,4],[0,12],[-1,11],[-1,11],[-1,2],[0,1],[-1,1],[-1,1],[1,7],[1,6],[0,6],[1,7],[-4,2],[-4,2],[-4,1],[-4,2]],[[8917,7324],[1,4],[14,32],[6,20],[-4,-3],[-3,-5],[-7,-22],[-2,-3],[-3,-2],[-5,3],[-3,1],[-2,-2],[0,-3],[-2,-5]],[[8907,7339],[-8,19],[-5,5],[-2,1],[-3,2],[-4,5],[-3,5],[-2,4],[0,2],[0,3],[1,16],[0,4],[0,2],[0,4],[1,3],[0,4],[-1,5],[-1,2],[-2,0],[-4,0],[-2,0],[-1,3],[-1,3],[0,29],[-1,15],[0,6],[-13,0],[-23,-1],[-23,0],[-22,-1],[-23,0]],[[8765,7479],[0,4],[-29,1],[-37,1],[-37,1],[-38,1],[-37,1],[-12,0],[-5,-3],[-2,0],[-3,1],[-6,2],[-35,1],[-1,-11],[-11,-1],[0,12],[-14,1],[-16,1],[-17,1],[-31,2],[-30,1],[-31,2],[-31,2]],[[8342,7499],[-6,11],[1,8],[4,17],[6,34],[7,33],[6,34],[7,33],[7,33],[6,34],[7,33],[6,34],[2,11],[2,4]],[[8397,7818],[15,0],[14,0],[13,0],[12,-1],[12,-1],[12,0],[11,1],[13,-1],[12,-1],[12,0],[13,-1],[12,-1],[12,0],[13,-1],[12,-1],[12,0]],[[8597,7811],[1,0],[18,-1],[18,-1],[17,-1],[18,0],[18,-1],[18,-1],[18,-1],[18,-1],[17,0],[18,-1],[18,-1],[18,-1],[18,-1],[18,0],[17,-1],[18,-1],[6,0],[3,0],[2,2],[3,3],[4,5],[3,6],[2,2],[3,2],[5,2],[3,1],[2,4],[1,3],[3,9],[2,5],[1,2],[2,4],[1,2],[2,1],[2,1],[2,0],[5,0],[2,-1],[3,0],[3,1],[3,4],[2,2],[3,7],[2,1],[2,3],[25,15],[2,0],[3,-1],[9,-5],[5,-2],[9,3]],[[2388,125],[-1,-5],[-3,8],[-2,13],[-6,67],[-4,20],[-3,13],[-2,12],[-3,36],[-2,10],[-6,18],[-3,10],[-2,26],[-2,4],[-3,8],[-2,10],[-3,20],[-3,11],[2,3],[-2,3],[-1,3],[-1,3],[0,4],[1,2],[2,1],[1,1],[-1,3],[-1,4],[0,2],[-1,3],[-8,19],[3,16],[0,16],[-2,43],[-2,17],[-1,9],[2,18],[0,8],[-2,9],[2,9],[2,22],[3,7],[-1,-9],[2,-119],[8,-81],[26,-144],[0,-5],[2,-6],[2,-10],[3,-27],[2,-20],[1,-10],[4,-21],[2,-12],[1,-12],[2,-22],[0,-8]],[[2385,837],[-21,-73],[-15,-64],[-7,-38],[-1,-18],[-4,-5],[-5,-1],[-3,3],[2,7],[5,48],[8,28],[4,22],[3,10],[3,14],[4,15],[3,12],[4,12],[3,14],[0,4],[-1,6],[-2,7],[6,-4],[3,-3],[2,-5],[2,0],[13,49],[7,14],[11,16],[1,5],[2,12],[4,1],[2,-4],[-3,-5],[-30,-79]],[[2422,938],[-1,-9],[-3,8],[4,14],[9,22],[7,14],[1,3],[2,5],[0,3],[-5,2],[0,2],[15,41],[3,2],[2,3],[2,5],[1,5],[4,2],[3,-2],[2,-5],[1,-3],[-1,-5],[0,-10],[-1,-5],[-22,-40],[-11,-26],[-8,-17],[-4,-9]],[[2578,1157],[-2,-6],[0,-2],[-18,-14],[-9,-4],[-7,-8],[-14,-20],[-24,-20],[-6,-11],[-14,-16],[-7,-11],[-3,-7],[-2,-8],[-1,0],[0,8],[2,9],[3,8],[3,4],[0,3],[-2,5],[-1,9],[2,8],[4,4],[5,1],[8,4],[4,1],[3,2],[10,9],[2,3],[2,8],[11,10],[2,4],[2,3],[12,8],[5,9],[3,3],[6,1],[9,-1],[3,2],[3,9],[0,4],[0,9],[1,2],[2,1],[2,1],[1,0],[1,-5],[0,-12],[0,-4],[-1,-3]],[[2593,1187],[-5,-1],[0,3],[14,20],[9,10],[11,5],[0,-3],[-2,-1],[-1,-1],[-1,-1],[1,-1],[-2,-2],[-6,-6],[-2,-5],[-6,-2],[-6,-11],[-4,-4]],[[2979,1623],[22,-9],[-42,-50],[-14,-14],[-32,-37],[-8,-12],[-2,0],[3,10],[6,12],[12,12],[16,21],[6,7],[4,7],[2,6],[1,2],[10,14],[3,7],[1,2],[5,3],[1,0],[2,3],[2,6],[-1,6],[-4,1],[0,3],[1,0],[1,1],[0,1],[0,1],[0,1],[1,-1],[1,-2],[3,-1]],[[989,4929],[47,0],[56,0],[62,0],[67,0],[68,0],[69,0],[67,0],[62,0],[56,0],[47,0],[36,0],[24,0],[8,0],[14,0],[2,0],[0,-23],[0,-52],[1,-53],[0,-52],[0,-53],[0,-53],[0,-52],[0,-53],[0,-52],[0,-53],[0,-52],[0,-53],[0,-53],[0,-52],[0,-53],[0,-52],[0,-53],[0,-21],[0,-5],[4,1],[11,2],[4,-2],[3,-2],[5,-1],[3,-3],[42,-62],[5,-11],[3,-6],[5,-2],[15,-2],[5,2],[1,2],[3,5],[3,3],[2,1],[12,-3],[10,-8],[5,-3],[6,-1],[4,3],[2,7],[1,23],[3,5],[3,0],[5,-5],[1,-3],[1,-3],[1,-4],[2,-3],[2,-2],[3,0],[5,-1],[5,-3],[2,-7],[2,-8],[2,-7],[8,-11],[4,-8],[-1,-4],[-1,-5],[1,-25],[1,-8],[4,-5],[6,-2],[12,1],[5,-1],[9,-5],[5,-1],[6,2],[4,2],[4,2],[5,-2],[19,-19],[5,-3],[32,-10],[3,-3],[17,11],[5,1],[3,0],[9,-2],[2,-3],[4,-11],[2,-3],[3,-3],[9,-15],[3,-3],[13,0],[6,1],[2,5],[3,7],[3,9],[4,6],[7,3],[33,-6],[8,1],[12,7],[6,1],[4,-5],[0,-12],[-1,-14],[1,-10],[1,-15],[9,-8],[12,-4],[9,-4],[3,1],[2,-4],[0,-5],[-1,-5],[1,-5],[0,-5],[-1,-9],[-1,-5],[0,-3],[-1,-7],[3,-4],[5,-5],[11,-5],[11,3],[10,9],[22,33],[8,11],[10,5],[10,-7],[2,-8],[0,-17],[2,-8],[4,-4],[16,2],[6,-2],[3,-3],[2,-6],[1,-10],[1,-10],[5,-4],[16,1],[3,2],[2,2],[1,2],[2,2],[2,2],[0,2],[2,5],[0,1],[4,4],[3,-1],[7,-9],[2,3],[4,12],[1,3],[1,2],[1,2],[3,2],[2,1],[3,-3],[3,-5],[2,-5],[1,-6],[-2,-7],[-4,-12],[-1,-8],[1,-11],[3,-12],[5,-11],[6,-5],[8,0],[5,8],[2,11],[0,14],[2,5],[4,4],[1,4],[0,4],[-2,3],[-2,3],[-1,7],[9,-4],[6,2],[4,8],[4,13],[0,11],[0,6],[2,4],[1,1],[2,1],[8,2],[2,0],[3,-1],[3,-2],[2,-2],[1,-2],[1,-5],[2,-13],[1,-4],[2,-4],[3,-5],[1,-1],[2,-1],[2,-1],[9,2],[2,0],[3,-2],[6,-8],[2,-1],[2,-1],[2,0],[5,1],[3,1],[2,2],[1,1],[1,2],[1,2],[0,2],[3,14],[2,4],[1,2],[1,1],[3,0],[3,-1],[7,-4],[2,-3],[0,-3],[-2,-9],[-1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[3,-5],[11,-5],[5,-4],[2,-2],[0,-3],[1,-5],[1,-3],[2,-2],[17,2],[4,-2],[6,-11],[8,-17],[7,-11],[7,8],[1,9],[0,7],[2,4],[6,2],[11,-2],[5,1],[4,4],[3,6],[4,16],[3,3],[3,1],[5,5],[2,1],[13,0],[4,0],[8,6],[5,5],[4,3],[1,0],[1,3],[3,5],[3,3],[3,-2],[3,-4],[14,-14],[3,-1],[7,2],[1,3],[2,2],[2,1],[1,-3],[1,-2],[2,-1],[3,3],[-1,13],[2,3],[8,0],[4,0],[2,0],[2,3],[2,3],[3,2],[3,1],[6,5],[0,1],[5,-2],[2,0],[3,9],[3,4],[3,-2],[3,-4],[4,-3],[2,-4],[2,-7],[-2,-6],[3,-3],[8,0],[0,-1],[1,-2],[1,-2],[0,-2],[1,1],[2,2],[1,1],[2,0],[2,-1],[2,-2],[2,-4],[2,1],[21,-1],[2,0],[2,2],[1,1],[1,2],[0,3],[1,5],[1,-1],[3,-2],[3,2],[2,2],[2,2],[2,3],[3,-2],[1,5],[0,8],[2,7],[5,6],[4,1],[16,-9],[3,-3],[1,-3],[1,-3],[2,-2],[8,-3],[4,-5],[8,-13],[4,-4],[4,-2],[9,0],[2,-1],[2,-2],[1,-3],[1,-2],[0,-7],[2,-3],[2,-1],[3,-3],[1,-3],[4,-10],[9,-14],[17,-5],[6,-3],[3,0],[4,-2],[4,-11],[4,-4],[2,-4],[2,-1],[1,1],[3,2],[2,0],[3,-1],[4,-2],[3,-3],[2,-3],[6,1],[6,-1],[-1,-1],[-1,-3],[4,-3],[12,-6],[0,3],[4,-3],[6,-1],[2,0],[4,-2],[3,-8],[1,-10],[5,-6],[6,-3],[6,1],[0,-3],[-3,-4],[2,-5],[5,-1],[5,4],[5,-5],[3,4],[1,8],[3,5],[4,1],[12,-10],[4,2],[3,5],[4,2],[8,-8],[5,-2],[6,1],[4,3],[7,-8],[4,-3],[3,-1],[0,-1],[0,-30],[0,-55],[0,-55],[1,-55],[0,-56],[0,-54],[0,-54],[0,-55],[0,-54],[0,-54],[0,-54],[0,-55],[0,-54],[0,-34],[0,-1],[0,-2],[2,-2],[3,-4],[2,-2],[3,-3],[1,-3],[5,-15],[1,-1],[1,-2],[1,-1],[9,-6],[2,-3],[5,-8],[3,-7],[2,-7],[1,-4],[1,-4],[2,-6],[7,-15],[0,-4],[2,-18],[1,-6],[1,-3],[1,-2],[1,-1],[0,-2],[0,-2],[0,-3],[-1,-7],[0,-5],[-1,-13],[0,-3],[0,-3],[-1,-3],[-1,-5],[-1,-3],[1,-4],[0,-4],[1,-3],[2,-4],[2,-6],[7,-11],[2,-3],[1,-1],[2,-2],[6,-2],[1,-1],[1,-2],[1,-2],[0,-2],[0,-3],[-1,-1],[0,-1],[-3,-2],[-1,-2],[0,-2],[1,-4],[0,-2],[1,-2],[1,-1],[1,-1],[3,-2],[1,-1],[1,-1],[1,-3],[1,-4],[1,-7],[0,-4],[1,-3],[3,-5],[3,-7],[4,-4],[0,-1],[0,-2],[-3,-6],[-1,-2],[-1,-4],[0,-3],[-1,-3],[1,-5],[1,-3],[1,-2],[6,-8],[3,-5],[1,-2],[1,-2],[0,-3],[1,-4],[0,-3],[1,-2],[1,-4],[1,-2],[1,-12],[0,-3],[1,-1],[1,-2],[1,-1],[1,0],[1,0],[5,2],[4,-2],[1,-7],[0,-21],[-1,-5],[-2,-6],[-1,-5],[7,-17],[3,-5],[2,-3],[-1,-5],[-2,-2],[-7,-4],[-3,0],[-3,-5],[2,-11],[4,-9],[2,-4],[2,-6],[-1,-2],[-1,-5],[-4,-5],[-2,-4],[-1,-5],[0,-5],[1,-9],[1,-5],[-1,-5],[0,-5],[-1,-7],[-9,-27],[-3,-22],[-2,-7],[-9,-11],[-2,-7],[-3,-23],[-1,-5],[-5,-2],[-4,-6],[-2,-8],[0,-9],[1,-2],[2,-2],[1,-3],[0,-9],[3,-14],[0,-4],[-1,-8],[-2,-6],[-6,-13],[-3,-10],[-1,-9],[1,-20],[2,-7],[3,-6],[4,-7],[1,-10],[0,-5],[-3,-9],[0,-5],[0,-5],[3,-6],[0,-3],[1,-9],[1,-7],[0,-7],[-2,-11],[-3,-9],[0,-4],[2,-6],[-15,-26],[-5,-15],[-1,-2],[-5,0],[-4,-1],[-5,1],[-1,-8],[-2,-9],[-14,-39],[-4,-27],[1,-14],[15,-24],[4,-15],[-4,-8],[-3,0],[-8,3],[-30,1],[-6,-1],[-10,-5],[-8,-5],[-21,-19],[-30,-19],[-80,-58],[-9,-11],[-13,-25],[-5,-4],[-6,2],[-1,5],[2,6],[20,32],[7,6],[6,1],[3,2],[2,2],[2,2],[8,12],[2,3],[3,1],[12,-1],[5,1],[3,4],[2,8],[-1,7],[-2,-4],[-4,-4],[-5,3],[-4,6],[-4,3],[-11,-10],[-22,-7],[-11,-5],[-4,-2],[-6,3],[-2,5],[0,3],[3,-2],[3,1],[3,7],[4,9],[4,15],[4,18],[2,21],[0,10],[-2,8],[0,8],[-2,4],[-2,7],[-4,3],[-3,0],[-4,-3],[-3,-2],[-5,0],[-3,5],[-5,-7],[0,-8],[-6,-15],[-3,-16],[-4,-8],[-7,-4],[-4,-1],[-3,5],[-1,11],[-3,2],[-4,5],[-9,5],[-4,2],[-3,7],[-1,6],[-5,1],[-3,-17],[3,-3],[4,-1],[2,-3],[2,-1],[3,-1],[2,-3],[4,-6],[-6,-7],[-2,-7],[2,-9],[6,-9],[-1,-5],[-4,-7],[-3,-5],[-2,-12],[10,-13],[19,-8],[-2,-4],[-2,-6],[-3,2],[-3,-3],[-4,-2],[0,-3],[4,-5],[0,-8],[1,-6],[7,0],[0,3],[-1,2],[0,1],[0,1],[1,0],[0,2],[0,1],[7,-20],[3,-3],[3,-1],[11,-8],[-1,-1],[-1,0],[0,-1],[-1,-2],[-4,5],[-5,2],[-5,-2],[-2,-9],[-1,-10],[-3,-9],[-4,-4],[-4,5],[-2,0],[-1,-5],[-2,-4],[-5,-6],[-1,-1],[-2,1],[-1,0],[0,-2],[0,-3],[0,-2],[-16,-31],[-6,-7],[-7,-6],[-2,8],[-3,3],[-4,1],[-5,4],[2,-4],[3,-12],[-2,-11],[0,-9],[2,-20],[0,-8],[0,-6],[-2,-6],[-18,-23],[-7,-6],[-14,-25],[-13,-19],[-3,-3],[-6,-1],[-4,-3],[-17,-20],[-29,-30],[-11,-9],[-11,-4],[-11,-1],[-12,1],[-9,-2],[-34,-20],[1,-6],[0,-4],[-1,-5],[0,-7],[-1,-2],[0,-2],[1,-3],[1,0],[2,0],[1,1],[1,1],[35,32],[9,6],[9,1],[-29,-32],[-17,-13],[-26,-10],[-15,-19],[-14,-8],[-17,-17],[-7,-5],[6,12],[8,10],[36,30],[6,2],[2,3],[1,7],[-1,8],[-5,4],[-5,-1],[-10,-10],[-3,-2],[-5,-1],[-15,-12],[-12,-5],[-5,0],[1,7],[4,4],[12,2],[4,5],[1,0],[0,3],[-4,1],[-4,-1],[-3,-2],[-3,-1],[-5,2],[-2,3],[2,5],[5,15],[1,5],[-1,2],[-5,0],[-4,-1],[-4,-3],[-5,-5],[1,6],[-5,-4],[-7,-13],[-5,-6],[-4,-2],[-1,1],[0,3],[-2,5],[-7,12],[-1,4],[2,5],[1,7],[-2,7],[-3,6],[-2,-2],[-2,-2],[-1,-2],[-5,12],[-1,4],[-1,0],[0,-7],[1,-8],[2,-7],[2,-4],[2,1],[2,3],[2,1],[1,-3],[-1,-5],[-2,-2],[-1,-2],[-1,-2],[0,-4],[1,-3],[1,-3],[-1,-4],[-1,-7],[3,-4],[9,-4],[-15,-14],[-9,-6],[-7,-2],[4,6],[4,1],[4,2],[1,9],[-2,8],[-9,-10],[-2,11],[-1,4],[-3,-1],[-3,-1],[-3,1],[-1,1],[-4,0],[-1,1],[-1,3],[0,3],[0,3],[-1,4],[-1,6],[0,4],[-1,2],[-2,5],[-3,4],[-3,1],[-4,-1],[-3,-3],[-1,3],[-1,1],[-3,3],[0,-12],[1,-8],[2,-7],[8,-16],[1,-3],[0,-5],[0,-4],[-1,-11],[0,-4],[2,-5],[2,1],[2,4],[3,-1],[8,-9],[5,-4],[2,-2],[1,-3],[2,-4],[2,-8],[-13,-11],[-3,-1],[2,-8],[4,1],[4,3],[3,4],[8,4],[9,-6],[7,-10],[1,-11],[-18,-16],[-5,-2],[-8,-9],[-4,-2],[-28,-25],[-4,6],[-4,-2],[-3,4],[-1,7],[-1,17],[-1,5],[-2,3],[-4,1],[-2,1],[0,4],[0,5],[-1,3],[-1,1],[-3,3],[-1,2],[-5,11],[-2,3],[-2,-2],[-2,-3],[-1,-5],[1,-3],[2,2],[6,-8],[2,-5],[1,-8],[-2,-4],[-5,3],[-5,6],[-4,4],[-4,-6],[5,-13],[8,-15],[3,-11],[-1,-8],[-3,-8],[-1,-9],[5,-17],[-3,-6],[-9,-9],[-4,-7],[-9,-20],[-4,-4],[-8,-4],[-4,-3],[3,17],[2,7],[4,8],[-4,8],[2,9],[2,7],[0,7],[-3,0],[-4,-7],[-6,-15],[4,-5],[0,-6],[-1,-8],[-3,-10],[-3,-9],[-3,-2],[-9,5],[1,1],[1,1],[1,2],[1,2],[-2,5],[1,14],[-1,7],[-2,0],[-4,-10],[-9,-9],[-9,-7],[-7,-2],[1,4],[-2,4],[-3,2],[-3,-1],[-2,-4],[-1,-5],[1,-5],[4,-2],[-11,-17],[-4,-10],[2,-5],[5,-1],[5,-3],[3,-5],[3,-7],[0,-4],[-1,-5],[0,-2],[3,2],[2,3],[1,5],[2,7],[0,6],[3,7],[12,8],[4,8],[-1,2],[0,2],[1,1],[2,2],[2,-4],[1,-5],[-2,-18],[1,-7],[0,-2],[-1,-3],[-2,-4],[-2,-4],[-4,-14],[-1,0],[-1,1],[0,1],[0,2],[-9,-28],[-20,-46],[-6,-7],[-6,1],[0,4],[5,0],[-3,8],[-3,6],[-4,5],[-4,3],[-6,-2],[-10,-7],[-6,-1],[2,3],[0,2],[0,2],[1,3],[-6,-3],[-14,1],[-7,-1],[-2,-2],[0,-4],[-2,-1],[-2,1],[-2,2],[-1,1],[-1,1],[0,2],[-1,2],[-2,1],[-1,-1],[-4,-2],[4,-11],[5,-7],[6,-1],[8,3],[2,-3],[3,0],[3,2],[2,4],[1,-7],[-2,-13],[1,-5],[5,-17],[4,-6],[22,-16],[2,-6],[-1,-7],[-2,-7],[-3,-7],[-1,-3],[-1,-5],[-1,-11],[-1,-3],[-8,-24],[-4,-20],[-1,-9],[0,-5],[-4,-7],[-10,-48],[-1,-10],[-3,-4],[-16,-11],[-6,-10],[-3,-1],[-5,5],[9,8],[3,5],[-1,1],[-1,2],[0,1],[-1,2],[5,0],[2,0],[2,2],[2,4],[0,1],[-1,0],[-2,2],[0,-1],[-2,-1],[-2,2],[-1,5],[1,9],[1,9],[-5,-4],[-6,-9],[-3,-3],[2,-7],[-3,-1],[-2,-2],[-4,-6],[-1,7],[-3,-2],[-4,-11],[0,-3],[0,-3],[-1,-3],[-3,0],[-3,1],[-1,3],[0,4],[-1,4],[-20,48],[-7,10],[-7,9],[1,-12],[8,-14],[3,-9],[-4,0],[9,-15],[3,-10],[-5,-4],[1,-3],[0,-2],[1,-1],[5,3],[3,-2],[1,-4],[-2,-6],[-6,-6],[-6,1],[-6,4],[-6,1],[3,-9],[11,-6],[10,4],[5,0],[4,-4],[3,-10],[8,-1],[10,-4],[9,-1],[5,5],[6,6],[10,8],[3,-4],[0,-7],[-2,-5],[-3,-1],[1,-6],[0,-8],[-1,-8],[-1,-4],[-2,-2],[1,-7],[1,-7],[1,-6],[-2,-5],[-3,-4],[-4,-2],[-4,-1],[0,-3],[3,-5],[1,-7],[-3,-5],[3,-11],[0,-8],[-3,-4],[-14,-2],[-3,-2],[0,-5],[0,-20],[2,-8],[2,-7],[3,-5],[10,-8],[3,-6],[-3,-9],[-11,17],[-3,2],[-1,-4],[-2,-9],[0,-9],[0,-6],[2,-6],[3,-1],[3,-1],[4,-2],[3,-5],[2,-7],[1,-7],[2,-20],[6,-30],[3,-31],[5,-30],[2,-16],[-1,4],[-2,4],[0,2],[-2,-6],[-2,-3],[-7,-3],[9,-5],[0,-4],[-2,-7],[0,-13],[-1,-5],[1,-1],[3,-1],[4,-2],[2,-5],[0,-6],[1,-6],[2,-1],[6,-1],[1,-1],[0,-3],[-2,-10],[0,-3],[2,0],[2,2],[1,2],[1,1],[1,3],[2,-2],[1,-4],[-2,-2],[-2,-4],[-2,-10],[0,-10],[3,-4],[2,1],[2,1],[1,1],[2,-3],[2,-5],[-1,-4],[-2,-3],[-1,-4],[1,-5],[1,-4],[4,-10],[-2,-9],[0,-14],[1,-13],[3,-5],[2,-1],[1,-2],[3,-2],[3,-1],[7,0],[3,-1],[3,-3],[-1,-6],[-2,-5],[-2,-1],[-4,3],[0,-8],[-3,-11],[0,-7],[1,-7],[1,-3],[1,-2],[3,-2],[1,1],[0,2],[1,2],[7,5],[2,3],[2,5],[1,7],[0,8],[1,7],[3,3],[3,-1],[2,-13],[1,-13],[1,-21],[-1,-4],[-16,-2],[-12,1],[-4,-1],[0,-8],[-5,-7],[-6,-3],[-4,5],[-6,-7],[-1,-2],[1,-9],[1,-10],[0,-9],[-5,-4],[-2,1],[-1,3],[-1,4],[-2,2],[-2,0],[0,-2],[0,-3],[-1,-2],[-6,2],[-2,7],[-2,7],[-1,3],[-6,1],[-4,1],[-4,3],[-5,5],[-11,19],[-7,6],[-3,6],[-2,7],[-2,6],[-5,7],[-5,3],[-5,2],[-22,3],[-3,1],[0,7],[-5,3],[-20,0],[-15,-4],[-15,4],[-3,0],[-8,-7],[-6,-3],[-2,2],[-2,11],[-5,2],[-12,-5],[-9,0],[-9,5],[-20,17],[-2,4],[-6,15],[-1,3],[-7,0],[-3,2],[0,5],[2,9],[-7,3],[-8,8],[-7,4],[-4,-9],[-5,11],[-7,5],[-8,3],[-7,7],[-15,-10],[-4,1],[-2,3],[-5,8],[-2,1],[-3,1],[0,2],[3,6],[-3,5],[-2,2],[-4,0],[-3,-1],[1,8],[-3,6],[-8,9],[-4,8],[-2,1],[-2,0],[-2,-1],[-2,-1],[-2,2],[-2,-3],[-2,0],[-3,1],[-2,2],[-6,-2],[-9,12],[-4,-7],[-2,7],[-2,3],[-6,0],[-5,-3],[-1,0],[-2,1],[-1,4],[-2,1],[-5,0],[-4,-1],[-5,2],[-5,7],[-1,5],[2,6],[2,6],[1,5],[-1,6],[-2,13],[-4,6],[-6,3],[-6,4],[-2,11],[-1,23],[-1,8],[-10,49],[-3,22],[-4,20],[-4,8],[-4,7],[-3,8],[-9,16],[-2,6],[-10,13],[-3,4],[-1,5],[0,10],[0,5],[-2,4],[-2,1],[-2,0],[-2,1],[-4,5],[-1,3],[-5,10],[5,15],[1,4],[-1,5],[-1,3],[-1,3],[0,2],[0,9],[4,20],[1,9],[-1,9],[-1,8],[-3,8],[-4,7],[-3,3],[-1,1],[0,4],[-1,1],[-2,2],[-7,5],[2,5],[4,8],[1,4],[0,5],[2,6],[1,9],[2,11],[1,5],[-1,17],[1,2],[-1,7],[-1,4],[-2,2],[-4,0],[-2,2],[0,5],[1,11],[0,18],[-2,7],[-5,8],[-5,4],[-4,2],[-2,2],[-3,9],[-2,2],[-4,-1],[-5,-5],[-3,-1],[-1,2],[-2,8],[-2,3],[-9,0],[-1,2],[-1,3],[-3,8],[-2,2],[-1,5],[-1,5],[-1,4],[-1,2],[-5,2],[-2,2],[-3,6],[-3,6],[-2,5],[-1,0],[-6,2],[0,3],[-3,5],[-3,4],[-2,1],[0,4],[1,11],[-1,4],[-2,4],[-2,2],[-2,3],[-1,5],[2,7],[1,5],[0,2],[-4,3],[-4,7],[-4,9],[-3,6],[3,7],[-3,4],[-5,2],[-4,2],[-4,7],[-2,6],[-2,6],[-2,8],[1,3],[0,3],[0,2],[-1,1],[-4,5],[-3,6],[-1,4],[0,6],[-2,10],[-5,8],[-24,20],[-5,1],[-2,3],[-1,6],[0,7],[-1,4],[-2,1],[-7,2],[-4,5],[-4,8],[-2,9],[1,8],[0,8],[-4,10],[-7,15],[-2,17],[-2,16],[-1,3],[-2,3],[-1,4],[-1,5],[2,3],[7,6],[-11,7],[-5,6],[-3,9],[0,5],[0,12],[-1,4],[-2,3],[-6,5],[-3,3],[0,8],[-9,20],[-3,10],[-7,45],[-1,4],[-1,3],[-1,4],[-1,3],[-2,1],[-4,1],[-1,1],[-1,3],[1,6],[0,4],[-2,1],[-3,3],[-1,2],[-2,7],[-3,5],[-3,4],[-1,3],[0,6],[-1,5],[-1,4],[-1,3],[2,10],[-1,9],[-5,19],[-2,26],[-2,7],[-3,1],[-3,1],[-3,1],[-1,3],[0,3],[-14,17],[-2,7],[2,9],[-5,16],[-3,7],[-5,6],[-12,9],[-2,3],[-5,10],[-6,9],[-18,13],[-3,3],[-2,4],[-3,4],[-1,5],[-1,7],[-1,13],[-2,8],[-8,4],[-16,9],[-8,6],[-4,10],[-3,2],[-2,1],[-3,1],[-2,4],[-1,6],[2,14],[0,12],[-4,6],[-6,-1],[-7,-6],[-4,-6],[-3,2],[0,6],[2,10],[1,7],[-2,3],[-7,0],[-3,2],[-2,4],[-2,4],[-3,11],[-2,8],[-4,11],[-2,5],[0,6],[1,6],[-3,-2],[-2,-1],[-3,-1],[-3,1],[-2,2],[-2,6],[-2,1],[-5,-3],[-4,-5],[-4,-4],[-5,3],[1,3],[2,8],[1,3],[-1,4],[-2,3],[-2,1],[-1,-2],[-1,-9],[-2,-4],[-4,-3],[-13,-2],[-41,9],[-2,3],[-1,5],[-2,0],[-3,-4],[-8,0],[-5,3],[-3,1],[-2,-2],[-1,-2],[-2,-2],[-3,-1],[-2,0],[-3,3],[-4,5],[-4,1],[-4,-6],[-7,3],[-23,-4],[-9,6],[-3,4],[-12,10],[-9,2],[-4,3],[-1,8],[-4,-2],[-4,4],[-3,5],[-5,2],[-2,-2],[-2,-8],[-3,-2],[-3,-1],[-2,-3],[-1,-5],[-1,-12],[0,-5],[-6,-14],[-1,-2],[-27,4],[-2,-1],[-2,-6],[-3,-3],[0,-1],[-1,-1],[-2,-1],[-1,1],[-1,5],[-1,1],[-5,-3],[-9,-8],[-4,-2],[-10,0],[-2,0],[-2,-3],[0,-4],[-1,-4],[0,-5],[-8,-21],[-1,-6],[-1,-1],[-4,-12],[0,-1],[-2,-8],[-2,-3],[-3,-2],[2,-6],[-1,-2],[-2,-2],[1,-6],[-2,-3],[-2,-3],[-8,-34],[-2,-5],[-1,-4],[0,-6],[0,-6],[1,-5],[0,-5],[-2,-6],[0,-3],[1,-7],[1,-2],[-3,-2],[-2,0],[-1,0],[-1,-1],[-3,-4],[-2,-3],[0,-5],[0,-8],[-4,-18],[0,-6],[2,-4],[6,-7],[2,-5],[-3,-2],[-6,-2],[-12,-14],[-1,-4],[-6,5],[-4,-7],[-7,-23],[-2,-5],[-2,-3],[-10,-9],[-3,-3],[-1,-4],[-1,-8],[-1,1],[-3,-1],[-1,-16],[-3,-13],[-6,-5],[-10,2],[-14,7],[-15,-1],[-4,4],[1,7],[1,2],[-4,-2],[-1,-1],[-3,8],[-3,-1],[-2,-4],[-3,-3],[-3,2],[-8,11],[-2,3],[-3,1],[-11,10],[-12,21],[-2,3],[-1,4],[0,3],[-3,2],[-2,1],[-6,-1],[-22,9],[-8,7],[-12,16],[-2,2],[-3,1],[-2,3],[2,10],[-1,5],[-2,3],[-3,1],[-18,2],[-16,5],[-22,13],[-10,9],[-12,21],[-9,7],[-5,8],[-9,15],[-4,16],[-2,3],[-2,1],[-6,7],[-4,9],[-6,2],[-7,0],[-5,-4],[-2,7],[-21,21],[-2,1],[-1,1],[-1,4],[-1,5],[-1,3],[-4,5],[-12,14],[-3,6],[-1,4],[0,5],[-1,7],[-1,6],[-5,14],[-2,19],[-3,7],[-5,6],[-4,8],[-2,4],[-3,22],[-5,9],[-1,5],[0,2],[-4,6],[-1,3],[0,4],[0,8],[0,4],[-4,25],[-1,11],[1,9],[3,17],[1,11],[1,16],[-1,11],[-4,7],[-5,16],[-2,4],[-4,4],[-2,2],[-3,9],[-3,13],[-4,11],[-5,5],[-1,2],[-1,4],[0,6],[0,4],[-2,3],[-3,3],[-2,3],[-2,5],[-1,3],[1,3],[0,7],[-1,4],[-2,6],[-1,5],[1,4],[1,5],[0,3],[-1,2],[-4,4],[0,4],[-1,10],[-1,5],[-2,8],[-8,14],[-2,5],[-1,2],[-8,1],[-3,2],[-1,4],[-1,5],[0,5],[-1,5],[-3,7],[-5,6],[-6,4],[-4,2],[-5,3],[-12,22],[-1,-3],[-4,6],[-1,1],[-1,-1],[0,5],[-1,3],[-2,1],[-3,0],[-2,2],[-3,7],[-1,1],[-2,1],[-3,1],[-1,0],[-1,-4],[-1,-1],[-2,0],[-2,2],[-2,2],[-1,3],[-2,3],[-14,11],[-8,3],[-3,4],[-10,20],[-20,25],[-9,16],[-6,5],[-2,7],[-4,16],[-3,9],[-3,5],[-5,4],[-5,6],[-6,11],[-2,2],[-4,3],[-19,19],[-3,6],[-1,9],[-20,35],[-4,6],[-5,3],[0,1],[-3,4],[-4,4],[-2,4],[-2,8],[-2,4],[-3,5],[-11,12],[-4,2],[-6,1],[-5,3],[-9,8],[-10,5],[-6,4],[-2,6],[-9,8],[-2,3],[0,2],[-1,3],[-1,5],[-2,7],[-11,19],[-2,8],[-7,32],[-5,16],[-7,16],[-8,13],[-9,6],[-11,-2],[-5,2],[-3,4],[-1,1],[-12,20],[-3,3],[-3,1],[-3,3],[-3,4],[-1,5],[2,4],[-7,14],[-2,8],[0,10],[-2,10],[-5,17],[0,8],[4,0],[7,0],[56,0],[55,0],[56,0],[56,0],[56,0],[56,0],[56,0],[55,0],[56,0],[56,0],[56,0],[56,0],[56,0],[56,0],[55,0],[56,0],[0,65],[1,64],[0,64],[0,65],[0,64],[0,64],[1,65],[0,64],[0,64],[0,65],[0,64],[0,64],[1,64],[0,65],[0,64],[0,64],[0,65],[1,64],[0,64],[0,65],[0,64],[0,64],[1,65],[0,64],[0,64],[0,64],[0,65],[0,64],[1,64],[0,65],[0,64],[0,64],[0,15],[0,8],[11,0],[8,0],[23,0],[37,0]],[[8765,7479],[0,-27],[0,-27],[0,-27],[0,-26],[1,-27],[0,-27],[0,-26],[0,-27],[0,-14],[-1,-19],[-1,-29],[-3,-1],[-2,-4],[-1,-6],[-3,-23],[-1,-9],[-1,-5]],[[8753,7155],[-6,-4],[-2,4],[6,5],[-2,5],[-2,3],[-3,2],[-4,1],[-16,0],[-2,-1],[-16,-12],[-12,16],[-3,-3],[-2,-11],[-2,-5],[-6,0],[-9,5],[-6,1],[-2,-13],[-6,7],[-16,-13],[-8,5],[-1,2],[-4,2],[-2,2],[0,3],[0,4],[1,3],[0,4],[-1,5],[-2,4],[-4,4],[-5,0],[3,-7],[4,-6],[3,-8],[-3,-11],[3,-2],[1,-1],[-5,-6],[-6,0],[-10,6],[-5,-1],[-6,-3],[-5,-5],[-3,-7],[-1,3],[-1,1],[-1,0],[-1,3],[-1,0],[-3,-3],[-11,7],[-5,2],[-15,-4],[-2,-3],[-2,-4],[-2,-2],[-3,1],[-3,1],[-2,3],[-2,2],[-4,1],[-9,-1],[-3,-1],[-4,-5],[-2,1],[-3,-1],[-4,0],[-4,-6],[-9,0],[0,5],[0,5],[-2,5],[-1,11],[-1,2],[-2,-3],[-2,-5],[-1,-2],[-9,-13],[-7,-12],[-2,-4],[-3,-6],[-6,-1],[-4,3],[-3,-3],[-5,-4],[-2,-3],[-3,-5],[-1,-2],[0,-6],[0,-6],[-6,-1],[-6,5],[-2,3],[-1,2],[-4,2],[0,-5],[-6,-3],[-2,3],[-1,2],[-1,-2],[0,-6],[-1,-3],[-1,-3],[-3,-4],[-5,-4],[-2,-1],[-2,6],[-2,2],[-2,-5],[-2,-3],[-3,-1],[-4,-1],[-5,-3],[-3,0],[-2,-2],[-2,-1],[-11,-10],[-4,-2],[-9,-9],[-3,0],[-4,-5],[-5,-10],[-4,4],[-2,-1],[-5,-4],[-6,-2],[-2,4],[-2,-1],[-1,-5],[-2,-1],[-4,-1],[-2,-2],[0,-1]],[[8302,7011],[-1,6],[-1,3],[-1,4],[-1,1],[-1,1],[-1,1],[-1,1],[-6,14],[-6,13],[-1,4],[3,3],[11,10],[14,12],[15,13],[13,10],[4,5],[-4,7],[-3,8],[-4,9],[-5,11],[1,9],[1,21],[1,22],[1,21],[1,22],[1,21],[1,22],[1,21],[1,21],[1,22],[1,21],[1,22],[1,21],[1,21],[1,22],[1,21],[0,22]],[[9030,7975],[-2,-12],[5,2],[6,1],[2,-3],[-2,-6],[-1,-6],[-1,-2],[-3,-8],[-13,-28],[-5,-17],[-3,-9],[0,-8]],[[8597,7811],[-1,13],[-5,10],[-11,15],[-2,5],[-2,5],[-1,5],[0,7],[0,9],[1,5],[2,5],[2,6],[2,21],[2,8],[4,3],[6,3],[2,8],[1,21],[5,26],[0,11],[-1,12],[0,5],[1,19],[2,3],[1,2],[1,3],[0,2],[-1,2],[-1,1],[0,1],[0,6],[2,5],[2,4],[2,4],[3,9],[1,10],[-1,18],[2,79],[1,12],[3,7],[8,11],[4,8],[2,9],[2,19],[1,16],[2,5],[7,8],[3,6],[13,16],[3,7],[2,9],[1,10],[1,11],[1,9],[4,10],[16,31],[1,4],[-2,2],[-2,3],[-1,4],[2,7],[10,26],[4,15],[1,18],[0,40],[2,24],[6,17],[9,10],[13,3],[12,-1],[6,1],[5,5],[8,14],[4,5],[22,18],[7,4],[2,4],[4,10],[9,10],[5,8],[0,8],[-1,8],[2,9],[2,2],[4,0],[3,1],[2,5],[0,4],[-2,5],[-3,7],[-8,26],[-1,7],[-1,8],[-4,7],[-3,7],[2,12],[6,16],[12,23],[11,21],[2,11],[-2,7],[-4,7],[-1,11],[0,12],[3,5],[4,2]],[[8839,8868],[0,10],[0,8],[2,6],[10,21],[2,4],[1,9],[1,5],[7,16],[2,9],[-4,6],[-7,4],[3,3],[11,4],[3,4],[8,13],[4,5],[6,2],[4,-1],[22,-17],[6,-3],[6,-1],[5,3],[7,16],[4,6],[3,2]],[[8945,9002],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[0,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-25],[1,-24],[1,-25],[1,-25],[1,-14],[-1,-14],[0,-7],[-1,-7],[0,-2],[-1,-3],[0,-4],[1,-7],[0,-7],[0,-6],[-3,-11],[0,-3],[0,-3],[0,-3],[1,-6],[1,-4],[2,-3],[8,-13],[8,-16],[8,-16],[9,-8],[2,-3],[1,-3],[1,-7],[0,-4],[0,-3],[-3,-14],[0,-5],[0,-3],[5,-12],[8,-13],[7,-11]],[[8822,7080],[-7,-2],[-3,5],[0,5],[1,6],[3,4],[2,4],[2,3],[0,5],[1,5],[1,2],[2,-2],[3,-5],[-2,-6],[-1,-3],[1,-5],[2,-4],[2,-6],[-1,-5],[-6,-1]],[[8867,7225],[-1,0],[-1,3],[2,10],[-1,6],[2,1],[0,1],[1,2],[0,2],[-2,4],[0,8],[4,16],[3,-1],[1,-1],[1,-3],[0,-4],[0,-10],[0,-10],[-2,-9],[-1,-6],[-1,-2],[-2,-4],[-3,-3]],[[8906,7242],[1,-5],[-7,3],[-6,-6],[-4,-7],[-5,1],[-3,-5],[-3,-2],[-2,2],[-1,6],[2,3],[8,5],[3,3],[-4,6],[-1,5],[1,5],[3,5],[0,2],[1,4],[0,7],[0,1],[4,3],[1,2],[2,5],[1,13],[2,6],[2,3],[7,6],[3,3],[0,-9],[-3,-16],[-1,-35],[0,-5],[-1,-4],[0,-5]],[[8887,7280],[-4,-3],[-2,3],[0,5],[2,8],[-1,8],[-6,2],[0,5],[1,8],[3,5],[2,-6],[1,-5],[3,-6],[4,-3],[0,-11],[-3,-10]],[[8935,7248],[-16,-20],[-3,11],[-1,4],[2,5],[0,4],[-3,17],[-1,20],[0,12],[1,9],[3,14]],[[8907,7339],[-1,-1],[0,-4],[0,-6],[0,-2],[-1,0],[-4,-14],[-7,4],[-4,0],[-1,5],[0,7],[1,8],[2,8],[4,10],[-1,3],[-2,3],[-2,1],[-1,-2],[0,-10],[-1,-4],[-3,1],[-5,4],[-4,6],[-2,6],[-1,9],[-1,6],[-2,6],[-3,7],[-1,-6],[0,-11],[0,-11],[1,-8],[1,-3],[3,-2],[2,-3],[1,-6],[-1,-4],[-3,-9],[-2,-4],[-1,4],[-2,3],[-2,2],[-3,0],[-3,-1],[-3,-4],[-1,-3],[6,-4],[2,-7],[1,-9],[-1,-10],[-2,-8],[-4,-5],[-1,-4],[3,-10],[1,-7],[1,-24],[-1,-8],[-7,-29],[-4,-7],[-4,-5],[-1,-5],[-2,-2],[-3,1],[-5,4],[-7,-1],[-10,-3],[-39,-17],[-19,-6],[-5,-3]],[[8397,7818],[-3,1],[-3,23],[2,7],[3,16],[0,8],[0,5],[0,3],[1,10],[0,15],[0,19],[0,23],[1,26],[0,27],[1,29],[0,28],[1,27],[0,26],[0,23],[1,19],[0,15],[0,10],[0,3],[0,10],[-2,4],[-2,3],[-1,1],[-2,4],[-4,17],[-1,3],[-1,2],[-2,1],[-4,1],[-2,0],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[0,-3],[-1,-8],[-1,-2],[-1,-3],[-1,-1],[-3,-3],[-3,-2],[-1,0],[-1,1],[-2,5],[-1,5],[-1,6],[0,10],[1,5],[1,4],[13,46],[0,5],[1,10],[0,4],[-1,4],[0,2],[-5,11],[0,3],[0,3],[2,7],[0,6],[0,4],[0,3],[-1,2],[0,2],[-2,4],[-1,4],[-1,6],[-3,20],[0,7],[0,12],[0,5],[-1,3],[0,2],[-4,5],[-1,3],[-1,4],[0,3],[1,3],[3,7],[8,37],[1,6],[1,10],[1,3],[0,2],[1,2],[3,3],[3,3],[3,3],[2,2],[2,4],[1,5],[1,9],[0,9],[-1,5],[-3,21],[0,4],[0,3],[0,3],[1,2],[5,12],[1,6],[2,8],[0,6],[1,5],[-1,4],[0,3],[-1,7],[-3,7],[-10,24],[-4,10],[-1,4],[-2,17],[0,10],[0,3],[1,2],[4,18],[0,6],[1,10],[1,6],[2,9],[1,4],[1,7],[0,4],[0,3],[-1,2],[0,2],[-1,2],[-5,7],[-1,2],[-1,3],[-1,4],[-1,3],[0,3],[1,5],[0,3],[2,6],[0,3],[5,9],[1,3],[1,4],[1,6],[0,3],[0,4],[-2,6],[-1,11],[-1,5]],[[8375,8863],[13,0],[25,1],[25,0],[25,0],[25,0],[25,1],[25,0],[26,0],[25,0],[25,1],[25,0],[25,0],[25,0],[25,0],[25,1],[25,0],[25,0],[25,0],[25,1]],[[6573,6847],[-4,-1],[-12,-11],[-4,3],[-6,0],[-7,-3],[-4,-5],[-3,-9],[2,-8],[8,-16],[6,-16],[2,-8],[1,-7],[-1,-10],[-5,-18],[-1,-11],[1,0],[2,0],[1,-1],[1,-2],[1,-2],[-1,-5],[0,-3],[2,-10],[0,-6],[-1,-3],[-2,-14],[-2,-3],[-6,-8],[-3,-4],[-5,-18],[-2,-10],[-2,-17],[-2,-8],[-6,-16],[-3,-12],[0,-9],[0,-19],[-1,-10],[-2,-7],[-2,-5],[-2,-8],[0,-3],[1,-4],[1,-4],[-2,-5],[-3,0],[-4,2],[-2,1],[-1,-7],[0,-5],[2,-6],[1,-5],[-1,-3],[-5,-9],[-1,-4],[-2,-5],[-1,-5],[-1,-9],[-1,-5],[-6,-5],[-2,-4],[2,-5],[4,-7],[2,-5],[1,-6],[-1,-9],[-4,-5],[-1,-2],[0,-2],[0,-5],[0,-2],[-3,-13],[-1,-4],[-17,-15],[-28,-31],[-8,-13],[-6,-15],[-4,-7],[-10,-6],[-4,-5],[-7,-11],[-4,-4],[-5,-3],[-6,-2],[-5,-1],[-5,-3],[-9,-12],[-6,-1],[-5,5],[-3,9],[-2,8],[-3,4],[-10,0],[-4,-3],[-19,-26],[-2,-8],[-2,-18],[-3,-6],[-2,3],[-2,0],[-1,0],[-2,-3],[-2,4],[-5,-4],[-7,0],[-5,-2],[-4,-16],[-12,-20],[-2,-7],[0,-6],[1,-17],[-1,-11],[-2,-4],[-12,-7],[-2,0],[0,-2],[1,-6],[1,-3],[2,-3],[2,-3],[1,-1],[4,-3],[0,-8],[-1,-17],[1,-8],[3,-7],[0,-5],[-5,-2],[-3,1],[-4,7],[-3,2],[-3,-3],[-1,-5],[-2,-11],[-3,-7],[-5,-7],[-6,-4],[-4,3],[-2,5],[0,2],[2,3],[0,6],[1,1],[1,1],[1,1],[1,3],[0,3],[-1,3],[-1,2],[-1,8],[-2,7],[-4,5],[-8,5],[-4,5],[-4,5],[-6,0],[-8,-9],[-9,-16],[-7,-18],[-4,-14],[-1,-19],[-2,-4],[-3,-8],[-3,-11],[-5,-5],[-4,-5],[-1,-11],[2,-8],[2,-6],[2,-8],[1,-12],[-1,-6],[-1,-5],[2,-8],[2,-6],[0,-6],[0,-5],[-4,-7],[-6,-2],[-12,3],[-3,-5],[-3,-10],[-5,-40],[-2,-9],[-4,-8],[-4,-2],[-19,-3],[-21,-11],[-11,-1],[-10,6],[-2,6],[-4,15],[-3,6],[-18,27],[-10,9],[-11,6],[-11,8],[-8,18],[-6,31],[-1,9],[1,9],[-1,7],[-3,3],[-7,-2],[-15,-11],[-6,-1],[-6,-3],[-4,-5],[-3,-7],[-4,-5],[-7,-3],[-1,-3],[-2,-3],[-2,-10],[-2,-4],[-5,-5],[-5,0],[-12,3],[-6,-1],[-3,-3],[-4,-4],[-9,-3],[-2,2],[-3,5],[-6,14],[-1,3],[-4,3],[-7,5],[-3,1],[-9,0],[-3,2],[-4,6],[-4,5],[-6,3],[-5,0],[-18,-8],[-3,-3],[-1,-9],[-3,-7],[-4,-6],[-6,-2],[-10,4],[-10,9],[-17,25],[-4,8],[-4,8],[-4,7],[-10,4],[-10,7],[-6,1],[-23,-6],[-5,1],[-28,15],[-6,6],[-2,8],[-1,11],[-1,10],[-1,8],[-3,8],[-2,4],[-4,4],[-3,6],[-1,6],[0,8],[-2,9],[-2,8],[-4,5],[-11,8],[-6,4],[-5,1],[-3,4],[-2,8],[-4,9],[-5,4],[-11,-3],[-22,-14],[-11,1],[-12,19],[-4,3],[-1,2],[-4,7],[-2,1],[-3,-1],[-2,-2],[-4,-7],[-14,-12],[0,37],[0,38],[0,38],[1,37],[0,38],[0,38],[0,37],[0,38],[1,37],[0,38],[0,38],[0,37],[0,38],[1,38],[0,37],[0,38],[0,37],[1,38],[0,38],[0,37],[0,38],[0,38],[1,37],[0,38],[0,37],[0,38],[0,38],[0,34],[0,37],[-1,41],[0,37],[0,37],[17,1],[24,2],[22,0],[21,1],[21,1],[21,0],[21,2],[21,0],[21,2],[22,1],[19,1],[22,1],[20,2],[21,1],[22,0],[35,3],[39,51],[32,43],[2,-8],[7,-21],[7,-13],[21,-18],[30,-26],[39,-33],[11,-6],[54,2],[7,2],[36,31],[36,30],[36,31],[36,31],[36,31],[36,30],[36,31],[36,31],[33,9],[32,9],[33,9],[32,9],[32,9],[29,8]],[[6573,7623],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49],[0,-48],[0,-49]],[[7854,6459],[-1,-2],[-9,-8],[-3,-6],[-3,-19],[-3,-8],[-12,-20],[-1,-2],[-9,-5],[-1,-3],[-1,-5],[-2,-5],[-1,-5],[1,-4],[7,-10],[2,-4],[3,-9],[0,-8],[-2,-8],[-3,-9],[-2,-10],[-1,-9],[4,-11],[4,-6],[7,-11],[9,-23],[1,-3],[1,-1],[6,-7],[6,-7],[2,-11],[5,-9],[2,-10],[1,-11],[-2,-25],[-1,-9],[1,-10],[0,-6],[2,-7],[-1,-11],[1,-11],[7,-7],[6,-9],[7,-17],[1,-7],[0,-9],[0,-10],[4,-6],[13,-25],[12,-21],[8,-9],[9,-6],[7,3],[1,4],[0,4],[1,1],[2,-6],[5,-54],[0,-21],[-2,2],[-1,23],[-2,3],[-9,-5],[-5,2],[5,-13],[-3,1],[-2,0],[-1,0],[-1,-1],[-1,0],[3,-4],[3,-3],[3,-3],[5,0],[-6,-7],[-17,-7],[-5,-8],[5,0],[-1,-3],[-1,-3],[-1,-2],[-2,-1],[4,-2],[10,10],[7,1],[1,-3],[2,-4],[3,-4],[1,0],[6,9],[1,4],[0,7],[1,3],[1,-2],[1,-3],[0,-8],[0,-16],[1,-12],[1,-13],[1,-11],[0,-10]],[[7949,5833],[-3,0]],[[7946,5833],[-1,2],[-2,1],[-2,0],[-2,0],[0,-3]],[[7939,5833],[-6,0],[-14,0],[-19,0],[-20,0],[-19,0],[-20,0],[-20,1],[-19,1],[-16,1],[-1,19],[-1,25],[-1,31],[-2,35],[-1,34],[-2,32],[-1,34],[-1,35],[-2,33],[-1,34],[-2,36],[-1,32],[-2,34],[-1,32],[-2,35],[-1,34],[-2,34],[0,34]],[[7762,6419],[1,0],[2,0],[1,1],[4,14],[7,14],[7,9],[6,6],[7,5],[5,2],[7,3],[7,1],[11,-1],[9,-2],[6,-3],[6,-4],[4,-3],[2,-2]],[[7714,5620],[-2,-9],[-2,-13],[-2,2],[-1,5],[-3,0],[1,-5],[-1,-3],[0,-3],[1,-4],[-2,0],[-1,-7],[0,1],[-1,7],[1,5],[0,4],[-1,2],[-1,-2],[-2,0],[0,7],[0,7],[-2,6],[1,3],[4,0],[5,-4],[2,5],[-2,4],[-7,5],[0,4],[3,2],[3,2],[1,-1],[2,-5],[4,-3],[2,-12]],[[7705,5672],[2,-6],[1,-8],[-3,-2],[-2,5],[-4,-1],[-4,6],[2,1],[3,-1],[0,5],[-2,4],[5,7],[1,1],[0,-6],[1,-5]],[[7703,5694],[-2,-2],[-8,5],[-5,0],[1,11],[4,5],[4,3],[3,-5],[3,-5],[-1,-6],[1,-6]],[[7678,5732],[-3,-1],[-4,2],[-7,5],[-2,8],[-1,8],[-1,3],[3,3],[1,-1],[1,-3],[-1,-5],[1,-7],[3,-5],[3,-1],[5,-2],[2,-4]],[[7899,5635],[-5,-1],[2,3],[1,3],[6,15],[7,16],[1,5],[2,13],[2,12],[7,18],[10,34],[4,10],[1,0],[-2,-14],[-9,-25],[-9,-32],[-4,-27],[-10,-20],[-1,-4],[-3,-6]],[[7949,5833],[0,-13],[-1,-17],[-4,-16],[-3,-8],[0,14],[5,26],[0,14]],[[7617,6197],[-2,-1],[-1,1],[-1,1],[0,1],[0,2],[1,0],[1,1],[2,-5]],[[7939,5833],[1,-3],[-2,-7],[-3,3],[-4,0],[5,-14],[-2,-6],[-2,2],[-4,3],[-5,4],[-4,1],[-4,-4],[10,-4],[2,-3],[0,-4],[0,-3],[2,0],[0,-3],[-1,-1],[-2,-2],[-1,0],[4,-2],[3,1],[3,0],[2,-5],[0,-8],[-3,-9],[-3,-8],[-3,-6],[-6,-20],[-3,-4],[-8,0],[-1,3],[3,10],[-8,-6],[-3,-4],[-3,-6],[-3,-27],[-3,-4],[-1,-3],[-3,-15],[-2,-5],[-1,0],[-5,3],[-2,0],[-2,-2],[-5,-8],[-1,-2],[1,-4],[-5,-23],[-1,-4],[0,-4],[-1,0],[-3,-1],[-8,0],[-9,-2],[-12,-2],[-10,-1],[-11,-2],[-6,-1],[-2,0],[-2,-5],[-3,-5],[-1,-4],[-2,1],[-5,2],[-22,3],[-6,-1],[-6,-6],[-7,-10],[-5,-5],[-3,3],[0,3],[-1,2],[-1,2],[1,4],[1,3],[3,3],[2,3],[1,6],[-2,0],[-2,-1],[-2,-2],[-1,-3],[-2,0],[0,2],[0,1],[-1,0],[0,1],[2,3],[5,12],[1,5],[2,3],[7,2],[1,1],[3,6],[11,16],[4,8],[-4,2],[-3,-4],[-3,-5],[-3,-2],[-6,0],[-4,-1],[-3,-2],[-1,1],[0,1],[-1,1],[0,3],[3,2],[2,3],[2,4],[2,4],[-2,3],[3,2],[7,2],[2,2],[-1,5],[-3,2],[-5,-1],[-3,1],[-6,-3],[-11,1],[-5,-2],[-2,-3],[0,-4],[-1,-4],[-2,-1],[-1,1],[-1,4],[0,9],[3,18],[8,8],[10,4],[10,6],[-4,3],[-11,1],[-5,4],[-2,10],[1,10],[2,10],[9,20],[2,7],[1,10],[1,3],[-1,1],[-3,1],[-2,-2],[0,-4],[-1,-6],[-1,-4],[-13,-22],[-2,-3],[-6,-28],[-2,-4],[-1,3],[0,4],[0,4],[0,5],[-1,2],[-3,4],[-2,4],[-1,4],[2,6],[7,5],[1,7],[-2,10],[-7,-5],[-7,-13],[-4,-12],[2,-2],[2,-5],[1,-5],[0,-7],[-3,-12],[-2,-4],[-3,3],[-8,21],[-3,3],[-6,3],[-2,3],[-2,9],[-15,27],[-5,4],[-2,-3],[3,-21],[-1,-10],[-1,0],[-2,12],[-4,11],[-8,18],[-1,3],[-2,4],[-2,6],[-1,10],[-2,3],[-3,3],[-1,2],[0,10],[3,4],[5,-1],[2,-5],[1,-11],[3,-1],[2,7],[1,12],[2,7],[5,4],[5,3],[5,3],[-1,5],[4,6],[-1,5],[-1,2],[-1,1],[-2,0],[-2,0],[-3,0],[-1,-2],[0,-2],[-1,-4],[-3,-3],[-3,-1],[-8,0],[-3,2],[2,7],[6,9],[0,4],[-2,1],[-1,2],[-3,6],[12,-3],[4,0],[3,1],[7,4],[4,1],[-4,-5],[-2,-1],[3,-4],[3,-2],[4,1],[7,-9],[6,3],[10,-12],[10,-1],[4,8],[3,3],[4,8],[1,14],[2,7],[-1,1],[-1,2],[-1,0],[-5,-16],[-3,-10],[-6,-5],[-9,7],[-4,4],[-7,4],[3,16],[-4,-2],[-3,-3],[-4,-1],[-5,3],[0,3],[3,3],[6,5],[3,1],[0,4],[-5,-1],[-5,-2],[-5,0],[-2,6],[2,3],[1,4],[0,4],[-1,5],[-2,-6],[-2,-6],[-1,-5],[-3,-8],[-3,6],[-4,6],[-2,7],[2,9],[6,-1],[-5,9],[-3,3],[-5,-4],[-5,-16],[-4,3],[-2,14],[3,7],[0,4],[-2,-1],[-4,-6],[0,-12],[-4,-8],[0,-9],[1,-4],[-1,-5],[-4,-2],[-1,7],[1,12],[0,6],[3,8],[5,27],[1,5],[0,4],[7,8],[5,8],[1,-1],[-1,-8],[5,-8],[4,-3],[3,-3],[0,-9],[3,-6],[4,-5],[3,-4],[7,5],[3,3],[4,5],[2,8],[-1,7],[-4,-7],[-5,-5],[-7,-2],[-5,13],[2,15],[8,6],[7,3],[5,5],[-10,7],[-2,1],[2,10],[0,4],[-3,1],[-1,-3],[-2,-11],[-2,-2],[-5,-6],[1,15],[1,8],[-1,3],[-3,4],[-6,4],[-3,-1],[-1,0],[-2,-3],[-2,-4],[0,-1],[-3,-3],[-1,0],[-8,-1],[-2,-1],[-3,-3],[0,-4],[0,-6],[1,-6],[-1,-8],[-4,-4],[-3,-4],[-4,-3],[2,26],[2,24],[5,13],[1,4],[3,10],[2,10],[2,1],[3,-1],[0,-9],[2,-9],[11,-5],[7,-2],[4,2],[8,8],[4,6],[1,9],[-2,2],[-1,3],[-1,4],[-1,4],[6,2],[3,1],[-2,3],[4,11],[12,16],[3,8],[-6,-3],[-5,-6],[-6,-4],[-6,3],[4,4],[0,3],[-9,-7],[-2,-14],[-5,-6],[-2,-13],[1,-10],[1,-8],[-4,0],[-4,5],[-2,4],[3,12],[-1,18],[-2,8],[0,5],[-2,3],[-6,9],[1,7],[4,10],[5,19],[6,15],[8,12],[0,9],[1,4],[3,3],[5,2],[3,2],[1,3],[2,10],[1,2],[3,4],[11,-1],[8,-4],[7,0],[17,2],[12,-2],[6,0],[5,5],[-6,3],[-10,-2],[-26,3],[-7,5],[6,11],[10,16],[5,7],[4,4],[6,1],[12,-5],[6,-2],[0,3],[-7,6],[-4,5],[-2,8],[6,5],[4,9],[3,10],[2,11],[-6,-3],[-4,-7],[-4,-8],[-4,-11],[-15,-18],[-9,-14],[0,15],[2,9],[7,13],[2,7],[2,8],[3,18],[-4,-1],[-3,-5],[-4,-11],[-7,-8],[-8,3],[-6,0],[-5,1],[-2,-4],[-7,-25],[2,-5],[10,-5],[2,-2],[-1,-5],[-2,-5],[-12,-17],[-15,-13],[-7,-9],[-4,7],[-1,9],[2,19],[2,9],[0,4],[-2,3],[-2,0],[-2,-3],[-2,-4],[-2,-2],[-3,-35],[4,-8],[1,-6],[0,-2],[-2,-2],[-7,-14],[-2,22],[-5,21],[-4,2],[-19,-7],[4,-4],[7,-3],[5,-3],[0,-9],[1,0],[-2,-5],[-2,-1],[-3,0],[-3,-3],[2,-6],[-1,-2],[-14,4],[-1,-2],[2,-6],[8,-16],[0,-3],[-3,-4],[-4,4],[-2,4],[-4,11],[-2,2],[-8,4],[3,-12],[5,-13],[7,-8],[6,0],[-1,-5],[-8,-10],[-4,-5],[0,6],[1,5],[-2,1],[-2,-3],[-2,-3],[-3,0],[-4,0],[1,9],[-4,4],[-6,4],[-8,9],[-1,4],[-3,-3],[-3,-1],[-6,-1],[-2,-1],[4,-3],[2,-2],[4,0],[4,-2],[1,-6],[0,-7],[7,-2],[2,-4],[0,-6],[1,-3],[2,-4],[4,-5],[2,-2],[3,3],[3,-6],[7,-9],[2,-2],[1,-11],[3,-8],[-2,-7],[-2,-3],[-2,4],[0,6],[-4,1],[-3,-4],[-2,-1],[-5,-1],[-4,4],[-2,-1],[1,-4],[4,-4],[6,-2],[12,-8],[5,-4],[4,-6],[-1,-5],[-4,-2],[-6,0],[-2,-2],[-2,-7],[-5,2],[-10,13],[-3,11],[-4,8],[-3,6],[-3,-1],[-1,-4],[0,-4],[-1,-8],[3,-2],[4,-2],[4,-4],[4,-8],[7,-9],[2,-5],[2,-10],[4,-4],[-3,-5],[1,-10],[-10,7],[-6,11],[-8,4],[-3,-3],[9,-7],[2,-5],[3,-7],[5,-6],[-1,-9],[-3,0],[-3,4],[-4,2],[0,-2],[0,-2],[2,-3],[1,-3],[0,-4],[-3,-3],[1,-8],[3,2],[4,1],[3,0],[0,-9],[-3,-8],[-6,-12],[-6,-3],[1,-10],[3,-8],[4,-6],[-1,-10],[-1,-12],[2,-12],[3,-10],[-1,-26],[0,-21],[4,-14],[16,-27],[5,-12],[4,-10],[4,-3],[-3,-14],[-6,-15],[-9,1],[-4,5],[0,14],[-1,4],[0,3],[-1,2],[-1,3],[-5,4],[-3,2],[-7,3],[-5,6],[-10,10],[-9,13],[-3,15],[-6,69],[-2,11],[-1,-3],[0,-3],[0,-6],[1,-33],[1,-11],[0,-10],[0,-12],[1,-11],[4,-16],[9,-13],[9,-11],[16,-12],[3,-3],[1,-8],[3,-9],[4,-8],[7,-9],[4,0],[2,4],[5,3],[5,-1],[3,-4],[-3,-7],[-3,-7],[1,-10],[2,-9],[1,-3],[6,-12],[6,-14],[3,-12],[-2,-4],[-3,-4],[2,-14],[2,-7],[0,-5],[1,-10],[-4,5],[-3,2],[-11,21],[-5,2],[-5,11],[2,13],[-2,14],[-6,8],[1,-4],[1,-7],[0,-3],[0,-5],[-2,-4],[-1,-2],[-2,-7],[-3,4],[-6,9],[-1,-12],[-2,-4],[-3,3],[-1,4],[-2,6],[-2,11],[-3,7],[-7,6],[-7,5],[-7,1],[-8,5],[-5,1],[-15,-5],[-5,5],[-7,7],[1,11],[-2,6],[-1,5],[-1,17],[-3,12],[-5,9],[-8,8],[6,-21],[2,-11],[2,-13],[0,-21],[-7,7],[-7,5],[-7,4],[0,11],[-6,7],[-7,6],[-3,13],[-7,32],[-2,10],[-2,9],[-1,-5],[0,-4],[-1,-4],[-2,-3],[-3,-9],[-4,-3],[-5,-6],[-3,1],[1,11],[-1,5],[2,4],[0,3],[-1,1],[-1,1],[0,2],[-4,-3],[-3,-4],[2,-2],[1,-2],[2,-6],[-5,-15],[-3,-5],[-6,-4],[-2,-3],[-7,-4],[-7,4],[-6,9],[-1,15],[1,12],[-2,10],[-1,10],[3,8],[2,5],[3,7],[2,9],[5,-1],[6,1],[4,9],[-2,1],[-3,-5],[-4,-1],[0,4],[3,8],[2,6],[2,1],[1,1],[2,3],[2,0],[5,0],[3,1],[1,3],[2,8],[2,7],[1,8],[1,4],[2,3],[2,2],[5,2],[4,1],[2,-2],[4,0],[3,1],[-1,1],[-2,0],[-2,1],[-1,3],[1,3],[0,8],[1,4],[2,1],[2,0],[0,2],[-2,2],[-1,1],[-1,5],[0,5],[1,3],[1,4],[-1,2],[0,3],[14,21],[14,21],[-17,26],[-16,22],[-9,-14],[-10,-15],[-4,8],[-3,6],[-7,3],[-8,4],[-4,1],[-3,3],[-2,6],[-1,7],[-1,6],[-6,9],[-7,6],[-8,3],[-22,3],[-6,5],[-9,13],[-4,5],[-3,6],[-2,7],[2,8],[8,11],[4,7],[1,9],[-3,7],[-5,4],[-5,2],[-5,5],[-5,11],[-3,4],[-11,4],[-11,6],[-4,1],[-13,1],[-5,3],[-4,9],[0,8],[2,9],[1,9],[-2,7],[-12,8],[-3,4],[5,6],[-1,6],[0,5],[1,3],[4,2],[0,3],[-5,-1],[-4,-1],[-4,0],[-3,5],[0,3],[2,3],[1,3],[-2,5],[-2,2],[-2,-3],[-1,-5],[-1,-5],[-2,0],[-3,18],[-2,5],[6,2],[5,6],[1,7],[-3,7],[-3,1],[-3,1],[-3,-1],[-2,-3],[-1,-2],[-7,3],[-3,-1],[-4,-3],[-5,0],[-6,3],[-4,5],[-20,27],[-11,11],[-13,2],[-3,-2],[-2,-1],[-2,-3],[-8,-12],[-3,-4],[-4,-8],[-2,-2],[-5,-1],[-10,4],[-5,-2],[-7,-5],[-2,0],[-5,1],[-2,0],[-3,-3],[7,-13],[-3,-2],[-5,0],[-4,-2],[-1,-7],[5,-2],[1,-2],[-1,-5],[-8,-8],[-18,3],[-8,-4],[-1,-2],[-20,5],[-7,3],[-1,2],[-1,1],[-4,4],[-9,7],[-1,1],[-1,0],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[2,1],[1,1],[1,1],[-1,2],[-3,3],[-2,3],[-1,2],[-1,2],[-2,1],[-1,-1],[0,-1],[-1,-2],[-1,-4],[-1,-3],[-4,-8],[-1,-3],[0,-2],[-1,-2],[1,-2],[1,-3],[0,-1],[-1,-2],[-1,0],[-5,-2],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-6],[-3,-6],[-15,-22],[-3,-6],[-1,-2],[-2,-1],[-2,-2],[-3,0],[-1,0],[-3,3],[-5,6],[-4,4],[-4,2],[-3,0],[-1,0],[-10,-7],[-1,-2],[-1,-2],[-1,-2],[-3,-11],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-5,-6],[-3,-6],[-1,-1],[-1,-2],[-12,-9],[-7,-7],[-3,-5],[-2,-4],[-3,-10],[-1,-2],[-2,-1],[-11,-3],[-2,-1],[-28,-36],[-3,-3],[-2,-2],[-1,0],[-1,2],[3,237]],[[6835,6420],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,-1],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[29,0],[28,0]],[[8122,6271],[-9,-5],[-8,2],[-6,12],[5,2],[2,-3],[2,-6],[3,-3],[4,4],[3,14],[4,5],[-3,8],[4,2],[13,-2],[-1,-3],[-2,-2],[-1,0],[-3,-13],[-7,-12]],[[8154,6342],[-7,-15],[1,4],[0,2],[0,6],[4,13],[20,51],[6,13],[4,11],[2,5],[3,3],[-2,-12],[-6,-13],[-4,-16],[-9,-24],[-12,-28]],[[7955,6556],[8,6],[4,3],[10,16],[3,3],[10,5],[2,1],[9,11],[3,2],[6,2],[8,3],[8,7],[3,9],[-3,10],[-6,10],[-14,16],[-8,14],[-8,17],[-1,3],[-2,4],[-13,16],[-4,18],[-3,8],[-10,-5],[-6,5],[-4,10],[-3,8],[-2,36],[-4,13],[-13,5],[-7,-2],[-3,2],[-2,13],[-1,5],[-1,5],[1,4],[-1,15],[1,4],[0,4],[-1,5],[0,5],[1,7],[3,13],[-1,0],[-1,3],[0,4],[1,2],[2,2],[2,3],[2,8],[5,-3],[5,1],[4,4],[2,9],[1,11],[3,4],[3,4],[3,8],[-1,9],[-4,8],[-3,6],[-2,4],[-1,3],[-1,1],[-1,1],[-2,0],[-1,0],[0,2],[1,2],[-1,2],[-3,6],[-1,3],[-1,4],[3,7],[6,7],[6,6],[3,2],[6,2],[5,6],[10,18],[1,0],[0,1],[0,6],[1,2],[2,3],[3,2],[2,1],[3,4],[13,25],[6,20],[2,13],[1,3],[2,6],[13,18],[1,1],[1,5],[1,2],[1,1],[3,0],[3,5],[3,1],[5,0],[5,5],[0,1]],[[8036,7176],[25,-21],[25,-22],[25,-21],[25,-21],[25,-21],[24,-21],[25,-21],[25,-21]],[[8235,7007],[0,-9],[-3,-19],[-9,-34],[-9,-27],[-4,-9],[-2,-6],[-1,-7],[0,-4],[-2,-7],[-1,-6],[-4,-7],[-6,-6],[-5,-8],[-1,-7],[-4,-2],[-5,-2],[-3,0],[1,6],[8,22],[-1,5],[-4,-6],[-2,-6],[-2,-7],[-2,-5],[-3,-1],[-4,-4],[-3,-2],[-5,-7],[-1,-20],[-2,-9],[-3,-3],[-4,-1],[-3,-5],[1,-7],[-1,-11],[-2,-4],[-3,-4],[3,-6],[3,-11],[9,-4],[4,-4],[2,-1],[13,3],[7,-1],[22,-11],[10,-9],[1,3],[-2,6],[-1,9],[-5,19],[8,-6],[2,-9],[1,-9],[1,-16],[0,-31],[-2,-22],[-3,-25],[-5,-27],[-2,-13],[-2,-13],[-1,-15],[-1,-14],[-1,-10],[-2,-14],[-3,-20],[-1,-10],[-1,-13],[-1,-13],[-5,-46],[-2,3],[5,65],[2,23],[1,9],[2,9],[2,11],[0,9],[-2,3],[-5,-5],[0,-3],[3,-1],[1,-5],[-3,-3],[-2,-7],[-5,2],[-2,-5],[-3,-3],[-1,-7],[5,2],[1,-7],[-2,-10],[-6,-7],[5,-2],[1,-4],[-4,-7],[-3,-7],[2,-9],[1,-7],[0,-4],[-5,-8],[-5,-11],[-5,-16],[-1,-13],[7,-4],[0,-7],[-1,-8],[0,-2],[-4,-3],[-4,-8],[-3,-11],[-8,-4],[-2,-5],[1,-5],[-3,-4],[-5,-2],[-3,-1],[-4,-5],[-6,-9],[0,-6],[7,-10],[3,-8],[-2,-7],[-3,-1],[-2,4],[0,4],[-1,3],[-9,9],[-4,-3],[-3,1],[-3,2],[-2,3],[0,-17],[1,-8],[3,-3],[2,-4],[-1,-7],[-3,-11],[-4,1],[-2,2],[-3,1],[-4,-4],[-1,-4],[-2,-6],[-2,-7],[0,-6],[5,4],[4,-6],[3,-9],[2,-8],[-8,-5],[-15,-13],[-6,-4],[0,3],[2,7],[3,6],[7,9],[-7,7],[-8,-15],[-4,-8],[1,-6],[0,-3],[-16,1],[-7,-2],[-4,-8],[4,-1],[4,-2],[2,-2],[4,-2],[13,7],[0,-4],[-7,-6],[-10,-21],[-6,-4],[-3,-6],[-11,-36],[-3,3],[-3,1],[-2,-2],[-3,-5],[1,0],[1,0],[0,-1],[0,-2],[3,2],[2,0],[1,-3],[1,-5],[-2,-3],[-5,-10],[-3,-7],[-2,-3],[-2,-2],[-6,-2],[-1,-4],[1,-4],[1,-3],[-5,-13],[-8,-11],[-10,-9],[-15,-8],[-3,-1],[-2,1],[-3,4],[-1,5],[1,5],[1,6],[1,8],[1,9],[2,8],[13,39],[2,18],[-5,15],[-4,4],[-4,2],[-10,0],[-2,0],[-4,-2],[-3,-1],[-2,1],[0,3],[0,3],[-1,4],[-4,2],[-5,0],[-8,-3],[-3,-4],[-3,-3],[-3,-2],[-4,-1],[0,2],[-4,4],[-2,4],[0,4],[1,5],[-1,3],[-2,4],[-9,10],[-3,2],[-2,2],[-2,9],[-2,2],[-10,0],[-4,3],[-2,7],[-2,7],[-3,5],[-2,0],[-2,-1],[-2,-2],[-1,0],[-2,2],[-1,3],[-1,2],[-26,41],[-7,7],[-6,10],[-3,14],[1,-3],[2,-2],[2,-1],[0,9],[3,21],[-1,6],[-8,13],[-3,6],[0,3],[6,8],[5,4],[1,3],[1,4],[1,6],[0,6],[4,4],[1,3],[2,4],[3,1],[0,3],[0,13],[6,13],[8,12],[10,10],[14,9],[11,3],[6,1],[4,1],[9,6],[6,2],[0,1],[1,0],[1,2],[4,-2],[4,5],[4,6],[4,4],[-4,7],[-2,9],[1,5],[5,-2],[3,6],[2,-3],[10,23],[4,6]],[[8365,6834],[-46,-20],[2,7],[31,14],[11,5],[5,2],[5,3],[5,1],[5,1],[13,2],[5,-1],[-2,-4],[-16,-2],[-18,-8]],[[8193,6842],[1,-5],[2,-4],[2,-6],[-12,-22],[-8,-10],[-1,1],[-2,0],[-4,-4],[-4,-3],[-3,-4],[-5,-1],[-5,-3],[-3,-2],[-2,1],[-1,3],[1,3],[3,1],[0,5],[-1,6],[2,4],[4,2],[3,3],[1,5],[1,7],[1,13],[1,7],[2,4],[3,3],[4,-3],[7,-2],[4,2],[3,3],[4,3],[2,-1],[1,-2],[0,-3],[-1,-1]],[[8426,6846],[-24,-9],[-13,-1],[-2,4],[12,0],[9,4],[11,5],[18,8],[16,7],[7,4],[16,11],[9,4],[8,5],[12,6],[14,9],[5,1],[0,-4],[-12,-4],[-6,-5],[-21,-13],[-20,-11],[-12,-8],[-27,-13]],[[8211,6874],[-3,-2],[1,14],[2,12],[4,11],[12,34],[2,7],[1,4],[3,-1],[0,-5],[-3,-9],[-3,-8],[0,-6],[2,-8],[-4,-9],[-6,-17],[0,-6],[-1,-6],[-7,-5]],[[8645,7038],[-1,-5],[1,-4],[0,-3],[-2,1],[-3,3],[-5,3],[-6,0],[-4,-1],[-4,4],[0,7],[3,5],[5,5],[0,6],[3,0],[2,-4],[4,-5],[2,-1],[4,-2],[0,-4],[1,-5]],[[8695,7055],[-2,-2],[0,-3],[1,-4],[-1,-4],[-2,-3],[-2,-3],[0,6],[0,7],[-1,4],[-4,1],[-3,0],[-2,2],[2,2],[2,3],[-1,6],[5,-7],[5,-2],[3,-1],[0,-2]],[[8653,7074],[-4,-5],[-4,-4],[-3,-2],[-4,9],[-10,-8],[-17,-23],[-1,-5],[4,-1],[2,-2],[2,-2],[-1,-6],[-6,2],[-5,-2],[-1,-2],[-1,-5],[1,-4],[1,-6],[-1,-4],[-3,3],[-2,6],[-3,0],[-1,-7],[-6,0],[-1,0],[-3,-2],[-2,0],[-4,-5],[-2,-4],[0,-4],[-5,-6],[-4,-5],[-5,-1],[-4,-2],[-2,-9],[3,1],[2,0],[3,-2],[2,-2],[5,5],[5,-1],[5,-3],[6,-3],[5,1],[6,5],[2,5],[1,5],[1,6],[3,1],[5,2],[6,10],[4,10],[7,3],[4,0],[1,3],[-3,11],[3,2],[4,0],[1,-7],[1,-6],[7,-2],[1,6],[4,1],[2,5],[0,4],[2,3],[5,-2],[7,-14],[1,9],[0,9],[4,4],[3,-1],[8,-17],[1,-5],[2,-2],[6,1],[9,6],[10,11],[5,4],[4,-3],[4,1],[0,11],[3,2],[3,-4],[4,-3],[0,3],[-3,6],[7,3],[7,-4],[5,-2],[-2,-4],[-5,-8],[-12,-4],[-20,-14],[-19,-11],[-18,-13],[-16,-10],[-24,-17],[-14,-10],[-9,-6],[-8,-3],[-5,-1],[3,7],[0,5],[-3,3],[-6,1],[-3,-2],[-1,-3],[0,-5],[2,-5],[0,-4],[-3,-4],[-9,-8],[-16,-9],[-25,-12],[-5,-2],[-2,-1],[-2,2],[2,2],[1,0],[12,6],[7,3],[-3,2],[-4,0],[-5,-1],[-7,4],[-4,-5],[-6,-6],[-9,-1],[-6,4],[3,-4],[-1,-6],[-4,-4],[-5,-5],[-6,-2],[-3,9],[-5,-3],[-4,-1],[-5,-7],[-17,4],[-2,-1],[-3,-7],[-6,-1],[-7,-2],[-4,-2],[-4,3],[-3,1],[-3,-2],[0,-4],[-1,-5],[-3,-3],[-6,2],[-8,1],[-5,4],[-4,-4],[-4,-5],[-3,-4],[-11,-1],[-13,-10],[-8,-2],[-26,-7],[-14,-3],[-16,-10],[-4,-5],[-3,-2],[-3,2],[2,2],[1,4],[-4,4],[-7,-2],[-3,-5],[0,-7],[26,-1],[8,0],[-2,-4],[-32,-1],[-11,1],[-4,2],[-11,-3],[-21,-13],[-11,-6],[0,6],[22,12],[16,9],[3,5],[2,3],[-1,3],[-2,2],[-4,4],[-5,4],[-3,1],[-6,-2],[-4,-2],[-2,-1],[-2,-2],[-2,-4],[0,-5],[2,-6],[2,-8],[-4,-3],[-1,3],[-4,0],[-4,0],[-1,-2],[-2,-2],[-12,-2],[-4,0],[-2,4],[3,2],[0,3],[-1,4],[-7,3],[-2,7],[1,9],[3,5],[3,7],[-1,6],[3,6],[1,2],[2,2],[3,2],[3,2],[2,8],[1,8],[6,14],[6,7],[5,-4],[5,1],[2,-3],[9,10],[11,-2],[6,-10],[2,9],[-4,9],[2,11],[4,0],[3,-4],[2,-6],[2,-3],[3,2],[1,5],[-1,6],[-8,5],[0,5],[3,5],[4,0],[8,-4],[2,-9],[3,-7],[2,4],[-2,17],[5,14],[17,7],[11,2],[2,-6],[0,-2],[-4,-4],[-3,1],[-2,-2],[4,-5],[6,-1],[0,4],[1,4],[3,-1],[0,-5],[4,-2],[2,2],[-1,4],[2,2],[-1,3],[-4,8],[-2,4],[2,9],[6,-5],[8,-1],[-3,-9],[3,-3],[3,-3],[3,1],[5,1],[4,-2],[3,0],[1,6],[-1,5],[-5,0],[-5,0],[-3,7],[1,3],[1,4],[2,0],[4,-4],[1,-5],[6,-2],[6,-1],[9,-2],[7,-5],[5,-2],[2,-1],[3,0],[11,5],[5,6],[3,7],[-1,8],[4,2],[6,3],[3,-2],[-1,-10],[3,0],[3,2],[0,3],[-1,5],[2,1],[7,-4],[10,2],[27,-2],[18,3],[12,-2],[22,7],[17,1],[5,3],[17,16],[17,15],[5,8],[2,6],[8,1],[7,9],[7,11],[3,4],[14,9],[3,1],[4,-1],[4,-2],[1,-4],[-1,-5]],[[8722,7137],[-4,-6],[-3,-4],[-6,1],[-4,-2],[1,6],[2,2],[1,5],[3,0],[2,-5],[1,4],[1,4],[5,1],[5,1],[4,2],[5,0],[-2,-5],[-5,-2],[-6,-2]],[[8302,7011],[-2,-2],[0,-2],[-1,-4],[-5,-11],[-1,-2],[-5,0],[-3,-1],[-3,-3],[-11,-17],[-3,-7],[-2,-8],[-1,-2],[-3,0],[-3,-1],[-1,-4],[-1,-11],[4,-6],[2,-6],[-8,-1],[-9,1],[-7,-4],[-9,1],[-1,6],[0,3],[2,5],[2,10],[2,5],[-1,6],[-2,3],[6,20],[2,19],[3,19],[1,9],[0,38],[-1,18],[-2,16],[-3,7],[-3,5],[-8,10],[-4,10],[1,8],[2,7],[-1,10],[-5,-5],[-2,-4],[-2,-4],[0,-6],[0,-4],[2,-4],[1,-16],[2,-6],[3,-8],[5,-5],[4,-6],[0,-9],[-1,-20],[3,-40],[0,-11]],[[8036,7176],[-1,9],[-4,10],[-2,4],[-2,8],[-2,3],[-1,2],[-3,-1],[-3,-2],[-2,0],[-4,4],[-5,5],[-12,-2],[-6,2],[-3,5],[-3,5],[-3,4],[-11,4],[-5,5],[-3,8],[-13,38],[-3,4],[-1,5],[2,24],[0,9],[-3,18],[0,4],[4,4],[1,4],[-2,10],[-3,5],[-4,2],[-5,4],[6,10],[1,4],[-4,2],[-2,2],[-4,8],[-6,4],[-6,6],[-3,2],[-14,-3],[-4,4],[-2,10],[0,12],[-2,8],[-5,6],[-8,5],[-6,6],[0,6],[-3,0],[-5,0],[-35,0],[-34,0],[-34,0],[-34,0],[-34,0],[-35,0],[-34,1],[-34,0],[-34,0],[-34,0],[-35,0],[-34,0],[-34,0],[-34,0],[-34,0],[-35,0],[-34,0],[-34,0],[-34,0],[-34,0],[-35,0],[-34,0],[-34,0],[-34,0],[-34,0],[-35,0],[-34,0],[-34,0],[-34,0],[-34,0],[-35,0],[-34,0],[-9,0],[0,16],[0,14],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,14],[0,16],[0,15],[0,16],[0,16],[0,15],[0,16],[0,16],[0,15]],[[6763,7722],[33,22],[38,25],[39,25],[38,25],[39,26],[14,17],[11,23],[3,19],[-2,8],[-5,6],[-6,2],[-6,5],[-6,7],[-4,5],[-2,5],[1,10],[1,7],[0,4],[-2,4],[-3,4],[-3,6],[-2,4],[-1,4],[0,7],[1,4],[2,4],[1,4],[0,6],[1,5],[-2,41],[-1,9],[-8,29],[-21,57],[24,16],[33,22],[49,32],[16,7],[58,0],[58,0],[58,-1],[58,0],[58,-1],[58,0],[58,0],[58,-1],[2,2],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,2],[10,25],[11,25],[11,26],[11,25],[10,25],[11,26],[11,25],[11,26],[6,8],[20,23],[1,3],[1,3],[1,4],[3,4],[2,1],[28,15],[5,4],[4,8],[0,2],[-2,12],[0,3],[7,11],[21,21],[43,24],[7,4],[3,6],[3,8],[4,11],[10,15],[9,15],[14,25],[30,37],[31,37],[29,34],[18,22],[35,29],[13,4],[5,3],[11,11],[4,3],[15,8],[9,8],[4,2],[5,0],[31,-5],[8,0],[4,-1],[25,1],[25,0],[25,0],[25,0],[25,0],[25,1],[25,0],[26,0],[25,0],[25,1],[25,0],[25,0],[25,0],[12,0]],[[7955,6556],[-6,-3],[-9,-11],[-5,-2],[-5,-4],[-3,-8],[-1,-10],[1,-10],[-4,-5],[-15,-8],[-10,-8],[-6,-2],[-6,4],[-16,-11],[-4,-1],[-4,-3],[-8,-15]],[[6835,6420],[-33,0],[-33,0],[-32,0],[-33,0],[-33,0],[-33,-1],[-32,0],[-33,0],[0,33],[0,32],[0,32],[0,32],[0,37],[0,38],[0,37],[0,37],[0,37],[0,37],[0,37],[0,37],[0,1],[0,1]],[[6573,7623],[4,1],[32,9],[32,10],[39,25],[39,25],[38,25],[6,4]],[[9064,7929],[1,0],[1,0],[0,-2],[-1,-1],[-1,1],[-2,1],[0,1],[0,2],[2,1],[0,-2],[0,-1]],[[9391,8288],[-3,-3],[-1,3],[1,4],[2,2],[3,-1],[-2,-5]],[[9305,8302],[-3,-1],[-5,10],[-1,8],[4,12],[6,-8],[0,-8],[-1,-13]],[[9498,8332],[-4,-3],[-1,3],[2,5],[0,3],[3,0],[0,-8]],[[9360,8356],[-3,0],[0,7],[2,6],[1,7],[3,-6],[-3,-14]],[[9289,8334],[-1,6],[-3,8],[2,8],[6,9],[2,8],[3,11],[3,-6],[0,-6],[-3,-4],[-3,-13],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[9372,8389],[-1,-4],[-1,2],[-1,6],[2,4],[1,3],[2,0],[-1,-7],[-1,-4]],[[9561,8407],[-6,-4],[-1,5],[0,6],[2,9],[1,6],[2,6],[4,6],[5,-1],[1,-9],[1,-11],[-2,-11],[-7,-2]],[[9517,8416],[-2,-3],[-4,2],[-9,6],[2,8],[-2,6],[-5,5],[-5,3],[2,8],[4,0],[9,-8],[5,-3],[12,-2],[2,-1],[0,-10],[-3,-4],[-4,-3],[-2,-4]],[[9597,8452],[-3,-7],[-4,4],[1,6],[2,2],[2,-1],[2,-4]],[[9630,8447],[-3,-3],[-1,7],[3,4],[4,3],[2,-3],[2,-5],[-1,-1],[-6,-2]],[[9509,8462],[-3,-6],[-3,-2],[-6,5],[-3,2],[-5,-5],[-4,-9],[-2,6],[1,3],[3,8],[10,11],[8,7],[9,-1],[2,-4],[0,-10],[-3,-1],[-4,-4]],[[9609,8482],[1,-3],[3,1],[3,3],[3,-3],[3,-6],[0,-8],[-3,-5],[-7,-3],[-3,8],[-3,3],[-2,-1],[-7,-4],[-3,3],[-1,6],[4,4],[4,-1],[1,5],[3,3],[4,-2]],[[9661,8508],[-4,-2],[-5,2],[-2,3],[0,7],[3,2],[5,-1],[1,-3],[2,-8]],[[9566,8502],[1,-5],[-2,-2],[-7,-2],[-3,-2],[2,-4],[2,-3],[5,-3],[0,-3],[-10,-7],[-5,-2],[-9,7],[-1,2],[2,4],[1,5],[-1,5],[-3,8],[2,0],[5,0],[2,0],[-1,4],[-1,5],[1,5],[1,5],[3,4],[3,1],[6,-5],[5,-5],[1,-6],[1,-6]],[[9547,8526],[-4,-1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,3],[1,3],[2,-1],[7,-5],[5,-4],[-2,-5]],[[9498,8537],[-4,-9],[-5,-20],[-3,0],[0,3],[1,11],[1,7],[-4,0],[-1,4],[5,8],[6,2],[4,-6]],[[9612,8552],[-3,-3],[0,3],[-2,4],[0,6],[2,4],[5,6],[1,-3],[1,-6],[-3,-4],[-1,-1],[0,-6]],[[9601,8549],[-2,-5],[-4,3],[-3,1],[-3,0],[-2,4],[0,6],[1,7],[2,4],[2,5],[2,1],[2,-2],[1,-6],[0,-8],[1,-6],[3,-4]],[[9498,8552],[-5,-6],[-3,6],[0,6],[1,10],[3,5],[4,7],[4,-5],[2,-11],[-2,-5],[-4,-7]],[[9670,8541],[-10,-6],[-11,-1],[-6,7],[-1,0],[-2,-11],[3,-6],[3,-5],[0,-5],[-3,-5],[-5,-6],[-3,-1],[-2,8],[-1,-1],[-3,-2],[-1,-1],[-3,7],[-9,5],[-2,7],[4,2],[0,4],[-1,3],[-4,1],[-2,2],[0,6],[2,6],[4,16],[2,6],[3,2],[3,1],[3,3],[1,4],[-3,5],[5,8],[10,7],[11,1],[7,-7],[1,-9],[14,-22],[2,-14],[-6,-9]],[[9829,8612],[-4,-8],[-2,6],[-3,12],[-3,10],[0,5],[4,1],[4,-1],[1,-11],[3,-6],[0,-8]],[[9902,8678],[-6,-3],[-5,3],[1,4],[4,6],[4,-3],[4,-3],[-2,-4]],[[9975,8819],[-1,-5],[-5,1],[-2,4],[-7,9],[0,8],[2,4],[2,-4],[7,-9],[4,-8]],[[9992,8792],[0,-6],[-5,1],[-4,3],[-5,7],[-2,5],[6,3],[1,5],[0,5],[2,7],[2,5],[2,7],[2,3],[5,4],[0,-4],[0,-6],[3,-6],[0,-7],[-2,-8],[-4,-5],[-4,-4],[3,-9]],[[9977,8832],[-2,-5],[-4,10],[-3,7],[0,8],[3,4],[3,6],[4,8],[5,4],[4,-1],[0,-6],[-1,-6],[-1,-8],[-4,-10],[-4,-11]],[[8945,9002],[5,1],[2,2],[5,6],[2,5],[3,4],[6,2],[6,-1],[4,-6],[12,-40],[3,-5],[5,5],[1,4],[-1,9],[1,4],[2,4],[5,5],[2,4],[0,8],[0,21],[0,9],[2,8],[3,6],[5,3],[6,0],[4,-3],[9,-12],[5,-4],[6,0],[5,3],[3,6],[-2,9],[-4,5],[-10,8],[-4,7],[-2,10],[0,7],[11,30],[24,37],[5,5],[14,9],[8,8],[3,2],[5,0],[3,1],[5,5],[3,7],[1,8],[0,10],[-1,5],[-1,3],[-1,2],[0,5],[2,3],[5,7],[19,20],[7,10],[6,15],[1,12],[-2,4],[-4,1],[-6,4],[-3,7],[0,7],[3,17],[0,2],[3,3],[0,1],[0,3],[-1,2],[-1,1],[-1,2],[-2,3],[0,4],[3,4],[9,8],[4,7],[1,9],[-1,10],[-4,10],[-5,4],[1,9],[7,18],[4,17],[3,6],[6,2],[0,5],[1,10],[2,10],[5,4],[4,2],[20,22],[3,12],[3,30],[4,46],[3,24],[4,19],[4,9],[23,41],[22,42],[23,41],[23,42],[23,41],[22,42],[23,41],[23,42],[4,6],[3,3],[4,0],[38,-13],[4,-6],[0,-14],[-3,-27],[1,-16],[0,-2],[2,-10],[4,-9],[34,-28],[4,1],[32,21],[11,4],[12,-1],[6,1],[5,4],[5,7],[5,6],[12,8],[5,2],[7,2],[6,-1],[8,-7],[3,1],[3,2],[6,2],[1,2],[0,4],[0,6],[9,14],[12,5],[13,-4],[13,-9],[3,-4],[7,-12],[3,-2],[7,-4],[4,-3],[16,-19],[11,-10],[8,-12],[2,-5],[1,-7],[2,-4],[11,-11],[7,-15],[4,-4],[10,-8],[2,-3],[0,-18],[1,-62],[1,-63],[0,-62],[1,-62],[1,-62],[0,-62],[1,-62],[1,-63],[0,-4],[2,-4],[2,-3],[2,-3],[0,-4],[-3,-8],[-4,-6],[-3,-7],[2,-7],[4,-9],[1,-6],[-2,-5],[-4,-8],[-3,-8],[-1,-7],[1,-25],[2,-6],[3,-4],[6,-5],[4,-1],[2,2],[1,4],[2,0],[2,-3],[2,-4],[2,-6],[3,-4],[8,-8],[13,-8],[14,-4],[12,-1],[7,2],[7,-1],[4,-6],[3,-14],[-1,-16],[-5,-5],[-6,-7],[-6,-7],[3,-17],[13,-32],[-1,-17],[-7,-15],[-2,-7],[-2,-9],[1,-8],[11,-13],[10,-20],[8,-13],[10,-6],[8,8],[2,4],[0,4],[0,3],[3,4],[3,1],[3,-1],[6,-5],[3,-1],[8,-5],[-4,1],[-4,-1],[-1,-4],[2,-6],[1,0],[5,0],[1,-1],[1,-3],[1,-3],[2,-5],[1,-6],[1,-1],[1,-1],[2,-1],[3,-4],[3,-8],[4,-8],[-3,-7],[2,-7],[3,-6],[3,-2],[2,-3],[5,-14],[3,-5],[-3,-6],[-1,-7],[-2,-7],[-5,-2],[-3,3],[-3,6],[-3,1],[-2,-10],[3,-5],[1,-5],[-3,-5],[-4,-1],[-3,2],[-9,10],[-3,1],[-1,-7],[3,-6],[5,-7],[2,-4],[3,-24],[1,5],[1,13],[0,4],[3,1],[4,-9],[4,2],[-2,3],[3,3],[-1,2],[-1,5],[-1,2],[5,2],[3,-8],[2,-12],[0,-10],[6,5],[0,10],[-4,20],[4,-2],[3,-4],[5,-13],[1,0],[3,0],[1,-1],[0,-1],[0,-2],[0,-2],[3,-12],[1,-1],[-2,-5],[-9,-14],[-3,-4],[-3,0],[-5,1],[-3,-1],[0,-1],[-2,-8],[-1,-3],[-2,3],[-2,-8],[-3,-6],[-14,-21],[-2,-2],[-4,-2],[-2,-2],[0,-2],[1,-4],[-7,0],[-2,1],[-4,4],[0,1],[-3,0],[-2,-1],[0,-4],[3,-8],[-6,1],[-3,4],[-4,4],[-4,4],[0,3],[4,8],[-1,9],[-5,4],[-7,-5],[3,-3],[-3,-3],[-3,0],[-3,2],[-3,4],[2,-8],[3,-5],[1,-6],[-2,-10],[4,-4],[-1,-3],[-3,0],[0,1],[-4,-5],[-2,-3],[-1,-5],[-3,9],[-1,11],[-2,10],[-6,2],[1,-8],[0,-7],[1,-6],[3,-4],[-4,-3],[-5,0],[-4,0],[-4,3],[1,6],[-1,5],[-3,0],[-2,-5],[-2,0],[-2,11],[-4,-1],[-9,-13],[5,0],[2,-3],[-1,-15],[0,-3],[-1,-4],[-1,-4],[1,-4],[1,-3],[-2,-2],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,1],[-3,2],[0,1],[0,2],[0,4],[0,3],[-1,4],[-1,3],[-3,-1],[-2,-3],[-4,-6],[-8,-22],[-3,1],[-3,4],[-2,5],[-1,8],[3,23],[-1,3],[-3,-3],[-8,-22],[1,-2],[-1,-4],[-1,2],[-2,4],[1,6],[2,8],[2,7],[-1,7],[-2,-1],[-2,-5],[-2,-6],[-3,4],[-2,0],[-3,-3],[-2,-12],[-3,-3],[-3,0],[-1,-2],[1,-5],[5,-10],[1,-5],[-1,-7],[-3,-2],[-4,2],[-3,2],[1,-9],[-3,-21],[-1,-12],[-5,7],[0,12],[2,13],[3,10],[-4,-3],[-2,-6],[-2,-8],[-1,-7],[1,-9],[-1,-3],[-2,2],[-2,3],[-1,1],[-1,2],[-1,4],[0,30],[-3,0],[-1,-3],[-1,-3],[0,-5],[-1,-5],[-2,0],[-5,3],[-3,-2],[3,-4],[8,-6],[0,-3],[3,-12],[1,-1],[-1,-4],[0,-4],[-1,-3],[-2,-2],[-2,0],[-1,3],[0,3],[-2,0],[-2,-1],[0,-2],[0,-2],[-2,-4],[-7,-17],[-3,-6],[-3,5],[-1,5],[1,6],[2,7],[-4,-2],[-2,-2],[-2,8],[-3,14],[-1,12],[1,10],[-1,8],[-7,3],[-1,1],[0,3],[0,2],[-1,0],[-2,-2],[-1,-2],[0,-3],[-1,-3],[1,-2],[0,-3],[1,-3],[-2,-1],[-4,0],[-2,1],[0,4],[0,13],[-1,10],[-2,3],[-4,-12],[-1,-7],[0,-6],[0,-3],[-9,13],[-1,5],[0,7],[-4,0],[-5,4],[-3,0],[-1,-8],[8,-5],[3,-7],[-5,-9],[2,-1],[0,-2],[1,-2],[1,-1],[-11,-1],[-5,2],[-5,5],[-2,-9],[-6,-10],[1,-6],[-6,-3],[-4,0],[-1,6],[1,24],[-2,8],[-5,3],[-7,0],[5,-15],[0,-6],[0,-3],[-1,-1],[0,-2],[0,-3],[2,-2],[1,-1],[0,-2],[0,-3],[-1,-5],[-2,-5],[-3,-3],[-1,2],[0,11],[0,5],[-2,4],[-4,-8],[-6,-4],[-6,0],[-6,3],[3,-5],[3,-11],[2,-5],[0,-4],[-3,-13],[-1,-5],[1,-6],[2,-1],[3,-1],[2,-3],[1,-7],[0,-5],[-2,-1],[-4,3],[1,-4],[2,-4],[3,-2],[2,-2],[-7,-5],[-23,28],[-8,1],[-4,-2],[-6,5],[-7,10],[-6,3],[-9,-8],[-7,-1],[2,17],[2,8],[4,4],[2,-1],[3,-4],[2,-1],[2,2],[0,4],[-2,6],[-1,3],[3,4],[3,4],[2,0],[5,-4],[2,0],[2,2],[-5,10],[0,7],[-10,-7],[-2,-3],[-5,-10],[-3,-5],[-3,-1],[-2,6],[1,7],[1,7],[2,6],[1,1],[3,3],[1,2],[1,3],[1,7],[0,3],[8,23],[-1,8],[-9,3],[-4,1],[-1,-1],[-2,-12],[-5,-26],[2,0],[3,-3],[-4,-5],[-5,-3],[-3,1],[2,7],[-4,2],[-4,-4],[-7,-9],[-3,-3],[-11,-5],[-6,-5],[1,-3],[3,-4],[-1,-5],[1,-5],[7,-16],[2,-8],[-2,-7],[-5,-4],[-5,-3],[-4,-3],[-5,-22],[-4,-7],[-4,-22],[-4,-12],[-3,-6],[-2,-4],[0,-3],[1,-7],[-2,-8],[1,-5],[9,1],[-3,-10],[-3,-7],[-4,-4],[-7,-1],[-2,-5],[-1,-9],[-3,-6],[-7,4],[0,-5],[-1,-2],[-2,-1],[-2,1],[-2,-5],[-1,-5],[0,-5],[3,-4],[-9,-7],[-3,-2],[-5,-2],[-1,1],[1,12],[7,16],[3,9],[-5,-1],[-15,-26],[-3,-4],[-1,5],[3,13],[-3,2],[-4,-1],[-6,-5],[-4,0],[4,10],[2,6],[-1,3],[-5,1],[0,3],[5,7],[1,6],[-2,5],[-3,0],[-1,-8],[-2,-3],[-3,-3],[-3,-2],[2,-11],[-4,-4],[-4,-1],[-1,0],[-3,-5],[-2,-6],[-7,-41],[-4,-13],[-5,-8],[0,10],[-2,7],[-2,6],[-1,6],[-2,0],[-1,-6],[-1,-8],[0,-15],[-3,7],[2,3],[-4,6],[0,4],[1,4],[1,5],[0,3],[1,6],[1,2],[-1,3],[-2,3],[-1,4],[2,10],[8,19],[-1,7],[-3,-4],[-2,-6],[-4,-12],[-3,-7],[-1,-4],[0,-3],[1,-4],[-1,-4],[-1,-4],[-2,-2],[2,-3],[0,-4],[0,-3],[-2,-3],[3,-6],[2,-7],[0,-8],[-1,-8],[-3,-6],[-1,3],[0,16],[-3,-5],[-4,0],[-4,3],[-4,5],[-3,5],[0,3],[5,11],[-1,4],[-1,2],[1,3],[1,4],[1,-2],[4,-1],[1,-1],[-2,6],[-3,2],[-2,2],[-1,8],[1,6],[4,16],[2,2],[2,5],[1,4],[-3,0],[-4,-3],[-3,-5],[-24,-50],[-2,-7],[2,-3],[3,-2],[2,-3],[1,-6],[-1,-7],[-4,-12],[3,3],[3,11],[3,2],[2,-3],[-1,-7],[-6,-24],[-3,-8],[-4,0],[-2,13],[0,4],[1,2],[1,1],[0,1],[0,3],[-2,1],[-1,0],[0,1],[-2,22],[-1,5],[-2,6],[-1,5],[0,6],[0,6],[0,5],[-1,5],[-1,9],[-1,9],[1,6],[0,8],[3,7],[3,4],[2,4],[1,3],[0,3],[-2,0],[-2,-1],[-1,-3],[-3,-3],[-5,-3],[-6,-13],[-5,-6],[-3,-4],[-2,-5],[0,-6],[3,-3],[4,0],[4,4],[2,4],[1,-2],[1,-4],[2,-13],[3,-34],[1,-16],[2,-16],[2,-8],[1,-5],[-2,-12],[-1,-2],[-3,-1],[-3,-4],[-2,-6],[-1,-5],[-3,5],[-1,14],[-2,3],[-2,4],[0,8],[1,10],[1,3],[1,2],[1,2],[0,4],[0,4],[-4,5],[-1,4],[1,5],[1,3],[-1,2],[-3,1],[-2,1],[-2,-1],[-2,-2],[-2,-4],[3,-2],[2,-4],[2,-5],[0,-8],[-2,-7],[-3,-5],[-3,-1],[-1,7],[-10,-19],[-2,-2],[-2,-1],[-1,-1],[-1,-8],[-1,-3],[-2,-1],[-2,0],[17,47],[-1,10],[-3,-4],[-4,-9],[-4,-10],[-1,-7],[-1,-8],[-3,-7],[-4,-5],[-4,-1],[4,13],[12,25],[3,13],[-6,-1],[-8,-9],[-3,0],[2,3],[2,3],[3,5],[1,5],[-3,0],[-3,-3],[-3,-4],[-4,-8],[-3,-3],[-6,-4],[-4,-2],[-2,0],[-3,-2],[-13,-18],[-5,-5],[-7,-19],[-8,-7],[1,-6],[1,-7],[0,-4],[-3,-4],[-3,-2],[-8,0],[0,-3],[8,-2],[6,1],[6,-3],[3,-12],[0,-5],[-1,-14],[-1,-3],[-4,-1],[-6,-5],[-4,-1],[1,3],[1,4],[-5,-2],[-5,-11],[-4,-3],[-1,10],[-3,0],[-5,-4],[-3,-6],[-3,-10],[-1,-9],[1,-9],[1,-10],[5,4],[3,2],[3,0],[0,-3],[-4,-2],[-3,-4],[-5,-8],[0,-3],[-1,-6],[-1,-2],[-2,-2],[-3,0],[-2,-2],[-5,-6],[-3,-6],[-5,-6],[-6,-3],[-7,-1],[-3,-1],[-3,-3],[-8,-15],[-2,-1],[-3,-11],[0,-11],[4,-10],[-4,-7],[-3,-9],[3,-3],[-4,-3],[-3,-4],[-5,-12],[-7,-24],[-3,-4],[-4,3],[-4,7],[-3,6],[-5,0],[1,-3],[-3,-12],[-1,-2]]],"transform":{"scale":[0.003977423750975434,0.002161794833483353],"translate":[-106.66217655600326,25.84390167300002]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment